forked from Vector35/deprecated_python_debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdb.py
215 lines (180 loc) · 6.33 KB
/
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
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
#!/usr/bin/env python3
import os
import re
import shutil
import shlex
import socket
import subprocess
from struct import pack, unpack
from . import rsp
from . import utils
from . import gdblike
from . import DebugAdapter
class DebugAdapterGdb(gdblike.DebugAdapterGdbLike):
def __init__(self, **kwargs):
gdblike.DebugAdapterGdbLike.__init__(self, **kwargs)
self.rsp = None
self.module_cache = {}
#--------------------------------------------------------------------------
# API
#--------------------------------------------------------------------------
def exec(self, path, args=[], **kwargs):
if not os.access(path, os.X_OK):
raise DebugAdapter.NotExecutableError(path)
# resolve path to gdbserver
path_gdbserver = shutil.which('gdbserver')
if not os.path.exists(path_gdbserver):
raise DebugAdapter.NotInstalledError('gdbserver')
# get available port
port = gdblike.get_available_port()
if port == None:
raise Exception('no available ports')
# invoke gdbserver
try:
if kwargs.get('terminal', False):
dbg_args = [path_gdbserver, '--once', '--no-startup-with-shell', 'localhost:%d'%port, shlex.quote(path)]
dbg_args.extend([shlex.quote(arg) for arg in args])
DebugAdapter.new_terminal(' '.join(dbg_args))
else:
dbg_args = [path_gdbserver, '--once', '--no-startup-with-shell', 'localhost:%d'%port, path]
dbg_args.extend(args)
subprocess.Popen(dbg_args, stdin=None, stdout=None, stderr=None, preexec_fn=gdblike.preexec)
except Exception:
raise Exception('invoking gdbserver (used path: %s)' % path_gdbserver)
# connect to gdbserver
self.connect('localhost', port)
def connect_continued(self, sock, rsp_connect):
self.sock = sock
self.rspConn = rsp_connect
self.reg_info_load()
# acquire pid as first tid
reply = self.rspConn.tx_rx('?')
tdict = rsp.packet_T_to_dict(reply)
self.tid = tdict.get('thread', None)
self.target_pid_ = self.tid
def connect(self, address, port):
# connect to gdbserver
sock = gdblike.connect(address, port)
rspConn = rsp.RspConnection(sock)
# initial commands
rspConn.tx_rx('Hg0')
# if 'multiprocess+' in list here, thread reply is like 'pX.Y' where X is core id, Y is thread id
# negotiate server capabilities
# TODO: replace these with something sensible, not something copied from a packet dump
capabilities = 'swbreak+;hwbreak+;qRelocInsn+;fork-events+;vfork-events+;exec-events+;vContSupported+;QThreadEvents+;no-resumed+;xmlRegisters=i386'
rspConn.negotiate(capabilities)
self.connect_continued(sock, rspConn)
def mem_modules(self, cache_ok=True):
if cache_ok and self.module_cache:
return self.module_cache
self.module_cache = {}
fpath = '/proc/%d/maps' % self.target_pid_
# TODO: prefer local open() if debuggee is on same filesystem as debugger
#with open(fpath, 'r') as fp:
# lines = fp.readlines()
data = self.get_remote_file(fpath)
data = data.decode('utf-8')
lines = data.split('\n')
for line in lines:
line = line.strip()
m = re.match(r'^([0-9a-f]+)-[0-9a-f]+ [rwxp-]{4} .* (/.*)$', line)
if not m: continue
(addr, module) = m.group(1,2)
if module in self.module_cache: continue
self.module_cache[module] = int(addr, 16)
return self.module_cache
#--------------------------------------------------------------------------
# NON-DEBUGADAPTER API
#--------------------------------------------------------------------------
def thread_stop_pkt_to_reason(self, tdict):
linux_signal_to_name = {
# ISO C99
2: 'SIGINT',
4: 'SIGILL',
6: 'SIGABRT',
8: 'SIGFPE',
11: 'SIGSEGV',
15: 'SIGTERM',
# historical POSIX
1: 'SIGHUP',
3: 'SIGQUIT',
5: 'SIGTRAP',
9: 'SIGKILL',
10: 'SIGUSR1', # differs from macos
12: 'SIGUSR2', # differs from macos
13: 'SIGPIPE',
14: 'SIGALRM',
# newer POSIX
16: 'SIGSTKFLT',
17: 'SIGCHLD', # differs from macos
18: 'SIGCONT', # differs from macos
19: 'SIGSTOP', # differs
20: 'SIGTSTP', # differs
21: 'SIGTTIN',
22: 'SIGTTOU',
23: 'SIGURG', # differs from macos
24: 'SIGXCPU',
25: 'SIGXFSZ',
26: 'SIGVTALRM',
27: 'SIGPROF',
30: 'SIGUSR1',
31: 'SIGUSR2',
# nonstandard POSIX
28: 'SIGWINCH',
# unallocated posix
7: 'SIGBUX', # differs from macos
29: 'SIGPOLL',
30: 'SIGSTKFLT',
31: 'SIGSYS'
}
# TODO: detect OS and adjust away from hardcoded Ubuntu 4.15.0-51-generic
lookup = {
1: DebugAdapter.STOP_REASON.SIGNAL_HUP,
2: DebugAdapter.STOP_REASON.SIGNAL_INT,
4: DebugAdapter.STOP_REASON.ILLEGAL_INSTRUCTION,
6: DebugAdapter.STOP_REASON.SIGNAL_ABRT,
8: DebugAdapter.STOP_REASON.CALCULATION,
11: DebugAdapter.STOP_REASON.ACCESS_VIOLATION,
15: DebugAdapter.STOP_REASON.SIGNAL_TERM,
3: DebugAdapter.STOP_REASON.SIGNAL_QUIT,
5: DebugAdapter.STOP_REASON.SINGLE_STEP,
9: DebugAdapter.STOP_REASON.SIGNAL_KILL,
10: DebugAdapter.STOP_REASON.SIGNAL_USR1,
12: DebugAdapter.STOP_REASON.SIGNAL_USR2,
13: DebugAdapter.STOP_REASON.SIGNAL_PIPE,
14: DebugAdapter.STOP_REASON.SIGNAL_ALRM,
16: DebugAdapter.STOP_REASON.SIGNAL_STKFLT,
17: DebugAdapter.STOP_REASON.SIGNAL_CHLD,
18: DebugAdapter.STOP_REASON.SIGNAL_CONT,
19: DebugAdapter.STOP_REASON.SIGNAL_STOP,
20: DebugAdapter.STOP_REASON.SIGNAL_TSTP,
21: DebugAdapter.STOP_REASON.SIGNAL_TTIN,
22: DebugAdapter.STOP_REASON.SIGNAL_TTOU,
23: DebugAdapter.STOP_REASON.SIGNAL_URG,
24: DebugAdapter.STOP_REASON.SIGNAL_XCPU,
25: DebugAdapter.STOP_REASON.SIGNAL_XFSZ,
26: DebugAdapter.STOP_REASON.SIGNAL_VTALRM,
27: DebugAdapter.STOP_REASON.SIGNAL_PROF,
30: DebugAdapter.STOP_REASON.SIGNAL_USR1,
31: DebugAdapter.STOP_REASON.SIGNAL_USR2,
28: DebugAdapter.STOP_REASON.SIGNAL_WINCH,
7: DebugAdapter.STOP_REASON.SIGNAL_BUX,
29: DebugAdapter.STOP_REASON.SIGNAL_POLL,
30: DebugAdapter.STOP_REASON.SIGNAL_STKFLT,
31: DebugAdapter.STOP_REASON.SIGNAL_SYS
}
dreason = DebugAdapter.STOP_REASON.UNKNOWN
result = (dreason, None)
if 'signal' in tdict:
signal = tdict['signal']
# breakpoint and trap flag exception are both reported as SIGTRAP
# use presence of 'swbreak' to differentiate, if possible
if linux_signal_to_name[signal] == 'SIGTRAP' and 'swbreak' in tdict:
result = (DebugAdapter.STOP_REASON.BREAKPOINT, 0)
else:
if signal in lookup:
result = (lookup[signal], None)
else:
result = (dreason, signal)
#print('returning: ', result)
return result