-
Notifications
You must be signed in to change notification settings - Fork 75
/
debugbreak-gdb.py
183 lines (159 loc) · 5.92 KB
/
debugbreak-gdb.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
# Copyright (c) 2013, Scott Tsai
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# Usage: gdb -x debugbreak-gdb.py
# (gdb) debugbreak-step
# (gdb) debugbreak-continue
#
# To debug:
# (gdb) set python print-stack full
import gdb
import re
def _gdb_show_version_parse(version_str):
'''
>>> s0 = 'This GDB was configured as "x86_64-redhat-linux-gnu".'
>>> s1 = 'This GDB was configured as "--host=i686-build_pc-linux-gnu --target=arm-linux-gnueabihf".'
>>> s2 = 'This GDB was configured as "x86_64-unknown-linux-gnu".'
>>> _gdb_show_version_parse(s0) == dict(target='x86_64-redhat-linux-gnu')
True
>>> _gdb_show_version_parse(s1) == dict(host='i686-build_pc-linux-gnu', target='arm-linux-gnueabihf')
True
>>> _gdb_show_version_parse(s2) == dict(target='x86_64-unknown-linux-gnu')
True
'''
t = version_str
msg = 'This GDB was configured as "'
s = t.find(msg)
if s == -1:
raise ValueError
s += len(msg)
e = t.find('".', s)
if e == -1:
raise ValueError
config = t[s:e]
d = {}
for i in config.split():
i = i.strip()
if i.startswith('--'):
(k, v) = i[2:].split('=')
d[k] = v
else:
if not i:
continue
d['target'] = i
return d
def _target_triplet():
'''
-> 'arm-linux-gnueabihf' or 'x86_64-redhat-linux-gnu' or ...
>>> import re
>>> not not re.match(r'\w*-\w*-\w*', target_triplet())
True
'''
t = gdb.execute('show version', to_string=True)
return _gdb_show_version_parse(t)['target']
temp_breakpoint_num = None
def on_stop_event(e):
global temp_breakpoint_num
if not isinstance(e, gdb.BreakpointEvent):
return
for bp in e.breakpoints:
if bp.number == temp_breakpoint_num:
bp.delete()
gdb.events.stop.disconnect(on_stop_event)
l = gdb.find_pc_line(int(gdb.parse_and_eval('$pc'))).line
gdb.execute('list %d, %d' % (l, l))
break
def _next_instn_jump_len(gdb_frame):
'-> None means don\'t jump'
try:
arch_name = gdb_frame.architecture().name()
except AttributeError:
arch_name = None
if arch_name.startswith('powerpc:'):
# 'powerpc:common64' on ppc64 big endian
i = bytes(gdb.selected_inferior().read_memory(gdb.parse_and_eval('$pc'), 4))
if (i == b'\x7d\x82\x10\x08') or (i == b'\x08\x10\x82\x7d'):
return 4
else: # not stopped on a breakpoint instruction
return None
triplet = _target_triplet()
if re.match(r'^arm-', triplet):
i = bytes(gdb.selected_inferior().read_memory(gdb.parse_and_eval('$pc'), 4))
if i == b'\xf0\x01\xf0\xe7':
return 4
elif i.startswith(b'\x01\xde'):
return 2
elif i == b'\xf0\xf7\x00\xa0 ':
# 'arm_linux_thumb2_le_breakpoint' from arm-linux-tdep.c in GDB
return 4
else: # not stopped on a breakpoint instruction
return None
return None
def _debugbreak_step():
global temp_breakpoint_num
try:
frame = gdb.selected_frame()
except gdb.error as e:
# 'No frame is currently selected.'
gdb.write(e.args[0] + '\n', gdb.STDERR)
return
instn_len = _next_instn_jump_len(frame)
if instn_len is None:
gdb.execute('stepi')
else:
loc = '*($pc + %d)' % (instn_len,)
bp = gdb.Breakpoint(loc, gdb.BP_BREAKPOINT, internal=True)
bp.silent = True
temp_breakpoint_num = bp.number
gdb.events.stop.connect(on_stop_event)
gdb.execute('jump ' + loc)
def _debugbreak_continue():
try:
frame = gdb.selected_frame()
except gdb.error as e:
# 'No frame is currently selected.'
gdb.write(e.args[0] + '\n', gdb.STDERR)
return
instn_len = _next_instn_jump_len(frame)
if instn_len is None:
gdb.execute('continue')
else:
loc = '*($pc + %d)' % (instn_len,)
gdb.execute('jump ' + loc)
class _DebugBreakStep(gdb.Command):
'''Usage: debugbreak-step
Step one instruction after a debug_break() breakpoint hit'''
def __init__(self):
gdb.Command.__init__(self, 'debugbreak-step', gdb.COMMAND_BREAKPOINTS, gdb.COMPLETE_NONE)
def invoke(self, arg, from_tty):
_debugbreak_step()
class _DebugBreakContinue(gdb.Command):
'''Usage: debugbreak-continue
Continue execution after a debug_break() breakpoint hit'''
def __init__(self):
gdb.Command.__init__(self, 'debugbreak-continue', gdb.COMMAND_BREAKPOINTS, gdb.COMPLETE_NONE)
def invoke(self, arg, from_tty):
_debugbreak_continue()
_DebugBreakStep()
_DebugBreakContinue()