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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
#
# Copyright (C) 2011 EADS France, Fabrice Desclaux <fabrice.desclaux@eads.net>
#
# 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.
#
class bin_stream(object):
def __init__(self, *args, **kargs):
pass
def __repr__(self):
return "<%s !!>" % self.__class__.__name__
def hexdump(self, offset, l):
return
def getbytes(self, start, l=1):
return self.bin[start:start + l]
def getbits(self, start, n):
if not n:
return 0
o = 0
if n > self.getlen() * 8:
raise ValueError('not enought bits %r %r' % (n, len(self.bin) * 8))
while n:
# print 'xxx', n, start
i = start / 8
c = self.getbytes(i)
if not c:
raise IOError
c = ord(c)
# print 'o', hex(c)
r = 8 - start % 8
c &= (1 << r) - 1
# print 'm', hex(c)
l = min(r, n)
# print 'd', r-l
c >>= (r - l)
o <<= l
o |= c
n -= l
start += l
return o
class bin_stream_str(bin_stream):
def __init__(self, bin="", offset=0L, shift=0):
bin_stream.__init__(self)
if offset > len(bin):
raise IOError
self.bin = bin
self.offset = offset
self.shift = shift
self.l = len(bin)
def getbytes(self, start, l=1):
if start + l + self.shift > self.l:
raise IOError
return super(bin_stream_str, self).getbytes(start + self.shift, l)
def readbs(self, l=1):
if self.offset + l + self.shift > self.l:
raise IOError
self.offset += l
return self.bin[self.offset - l + self.shift:self.offset + self.shift]
def writebs(self, l=1):
raise ValueError('writebs unsupported')
def __str__(self):
out = self.bin[self.offset + self.shift:]
return out
def setoffset(self, val):
self.offset = val
def __len__(self):
return len(self.bin) - (self.offset + self.shift)
def getlen(self):
return len(self.bin) - (self.offset + self.shift)
class bin_stream_file(bin_stream):
def __init__(self, bin, offset=0L):
bin_stream.__init__(self)
self.bin = bin
self.bin.seek(0, 2)
self.l = self.bin.tell()
self.offset = offset
def getoffset(self):
return self.bin.tell()
def setoffset(self, val):
self.bin.seek(val)
offset = property(getoffset, setoffset)
def readbs(self, l=1):
if self.offset + l > self.l:
raise IOError
return self.bin.read(l)
def writebs(self, l=1):
if self.offset + l > self.l:
raise IOError
return self.bin.write(l)
def __str__(self):
return str(self.bin)
class bin_stream_pe(bin_stream):
def __init__(self, bin="", offset=0L):
bin_stream.__init__(self)
# print 'ELF/PE'
self.mylen = len(bin)
if offset > bin.__len__():
raise IOError
self.bin = bin
self.offset = offset
self.l = bin.__len__()
def is_addr_in(self, ad):
return self.bin.is_addr_in(ad)
def getlen(self):
return self.mylen
# s = self.bin.parent.SHList[-1]
# l = self.bin.parent.rva2virt(s.addr+s.size)
# return l
def readbs(self, l=1):
if self.offset + l > self.l:
raise IOError
self.offset += l
return self.bin(self.offset - l, self.offset)
def writebs(self, l=1):
raise ValueError('writebs unsupported')
def getbytes(self, start, l=1):
return self.bin(start, start + l)
def __str__(self):
out = self.bin[self.offset:]
return out
def setoffset(self, val):
self.offset = val
class bin_stream_elf(bin_stream_pe):
pass
class bin_stream_vm(bin_stream):
def __init__(self, vm, offset=0L, base_offset=0L):
self.offset = offset
self.base_offset = base_offset
self.vm = vm
def getlen(self):
return 0xFFFFFFFFFFFFFFFF
def getbytes(self, start, l=1):
try:
s = self.vm.get_mem(start + self.base_offset, l)
except:
raise IOError('cannot get mem ad', hex(start))
return s
def readbs(self, l=1):
try:
s = self.vm.get_mem(self.offset + self.base_offset, l)
except:
raise IOError('cannot get mem ad', hex(self.offset))
self.offset += l
return s
def writebs(self, l=1):
raise ValueError('writebs unsupported')
def setoffset(self, val):
self.offset = val
|