-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathSparseMemoryImage.py
114 lines (88 loc) · 3.78 KB
/
SparseMemoryImage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#=========================================================================
# SparseMemoryImage
#=========================================================================
# This is a basic class representing a sparse memory image using
# "sections" and "symbols". Sections are tuples of <name,addr,data> where
# the addr specifies where the data lives in a flat memory space. Symbols
# are simply name to address mappings.
#
# Author : Christopher Batten
# Date : May 20, 2014
import binascii
import struct
class SparseMemoryImage :
#-----------------------------------------------------------------------
# Nested Class: Section
#-----------------------------------------------------------------------
class Section :
def __init__( self, name="", addr=0x00000000, data=bytearray() ):
self.name = name
self.addr = addr
self.data = data
def __str__( self ):
return "{}: addr={} data={}" \
.format( self.name, hex(self.addr), binascii.hexlify(self.data) )
def __eq__( self, other ):
return self.name == other.name \
and self.addr == other.addr \
and self.data == other.data
#-----------------------------------------------------------------------
# Constructor
#-----------------------------------------------------------------------
def __init__( self ):
self.sections = []
self.symbols = {}
#-----------------------------------------------------------------------
# add/get sections
#-----------------------------------------------------------------------
def add_section( self, section, addr=None, data=None ):
if isinstance( section, SparseMemoryImage.Section ):
self.sections.append( section )
else:
sec = SparseMemoryImage.Section( section, addr, data )
self.sections.append( sec )
def get_section( self, section_name ):
for section in self.sections:
if section_name == section.name:
return section
raise KeyError( "Could not find section {}!", section_name )
def get_sections( self ):
return self.sections
#-----------------------------------------------------------------------
# print_section_table
#-----------------------------------------------------------------------
def print_section_table( self ):
idx = 0
print( "Idx Name Addr Size" )
for section in self.sections:
print( "{:>3} {:<14} {:0>8x} {}" \
.format( idx, section.name, section.addr, len(section.data) ) )
idx += 1
#-----------------------------------------------------------------------
# add/get symbols
#-----------------------------------------------------------------------
def add_symbol( self, symbol_name, symbol_addr ):
self.symbols[ symbol_name ] = symbol_addr
def get_symbol( self, symbol_name ):
return self.symbols[ symbol_name ]
#-----------------------------------------------------------------------
# equality
#-----------------------------------------------------------------------
def __eq__( self, other ):
return self.sections == other.sections \
and self.symbols == other.symbols
#-----------------------------------------------------------------------
# print_symbol_table
#-----------------------------------------------------------------------
def print_symbol_table( self ):
for key,value in self.symbols.items():
print( " {:0>8x} {}".format( value, key ) )
#-------------------------------------------------------------------------
# mk_section
#-------------------------------------------------------------------------
# Helper function to make a section from a list of words.
def mk_section( name, addr, words ):
data = bytearray()
for word in words:
data.extend(struct.pack("<I",word))
return SparseMemoryImage.Section( name, addr, data )