add new sys subdir with basic MBR struct

This commit is contained in:
mitshell 2018-06-20 18:44:57 +02:00
parent 209cefe4c1
commit 27a3fa25d1
3 changed files with 91 additions and 0 deletions

59
pycrate_sys/MBR.py Normal file
View File

@ -0,0 +1,59 @@
# -*- coding: UTF-8 -*-
#/**
# * Software Name : pycrate
# * Version : 0.3
# *
# * Copyright 2018. Benoit Michau. ANSSI.
# *
# * This program is free software; you can redistribute it and/or
# * modify it under the terms of the GNU General Public License
# * as published by the Free Software Foundation; either version 2
# * of the License, or (at your option) any later version.
# *
# * This program is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# * GNU General Public License for more details.
# *
# * You should have received a copy of the GNU General Public License
# * along with this program; if not, write to the Free Software
# * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# * 02110-1301, USA.
# *
# *--------------------------------------------------------
# * File Name : pycrate_sys/MBR.py
# * Created : 2018-06-01
# * Authors : Benoit Michau
# *--------------------------------------------------------
#*/
from pycrate_core.elt import *
from pycrate_core.base import *
from pycrate_core.repr import *
Buf.REPR_MAXLEN = 1024
class PTE(Envelope):
"""Partition Table Entry
"""
_GEN = (
Uint('Active', bl=1),
Uint('Status', bl=7, repr=REPR_HEX),
Uint24('CHSAddrFirst', repr=REPR_HEX),
Uint8('Type'),
Uint24('CHSAddrLast', repr=REPR_HEX),
Uint32('LBA'),
Uint32('NumOfSectors')
)
class MBR(Envelope):
"""Master Boot Record
"""
_GEN = (
Buf('Code', bl=0xDF0, rep=REPR_HD),
PTE('PTE_1'),
PTE('PTE_2'),
PTE('PTE_3'),
PTE('PTE_4'),
Uint16('55AA', rep=REPR_HEX)
)

31
pycrate_sys/__init__.py Normal file
View File

@ -0,0 +1,31 @@
# -*- coding: UTF-8 -*-
#/**
# * Software Name : pycrate
# * Version : 0.3
# *
# * Copyright 2018. Benoit Michau. ANSSI.
# *
# * This library is free software; you can redistribute it and/or
# * modify it under the terms of the GNU Lesser General Public
# * License as published by the Free Software Foundation; either
# * version 2.1 of the License, or (at your option) any later version.
# *
# * This library is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# * Lesser General Public License for more details.
# *
# * You should have received a copy of the GNU Lesser General Public
# * License along with this library; if not, write to the Free Software
# * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# * MA 02110-1301 USA
# *
# *--------------------------------------------------------
# * File Name : pycrate_sys/__init__.py
# * Created : 2018-06-01
# * Authors : Benoit Michau
# *--------------------------------------------------------
#*/
#
__all__ = ['MBR']
__version__ = '0.3.0'

View File

@ -17,6 +17,7 @@ setup(
"pycrate_csn1dir",
"pycrate_mobile",
"pycrate_corenet",
"pycrate_sys",
],
test_suite="test.test_pycrate",