-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgdt.py
executable file
·528 lines (406 loc) · 21.6 KB
/
gdt.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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
#!/usr/bin/python
from collections import OrderedDict
import argparse
import json
import os
import re
import socket
import sys
import subprocess
import telnetlib
GDT_VERSION = "v2.0.0"
GDT_DIR = os.path.dirname(os.path.abspath(__file__))
GDT_CONFIG_DIRNAME = 'gdt_files'
GDT_CONFIG_DIR = os.path.join(GDT_DIR, GDT_CONFIG_DIRNAME)
GDT_CONFIG_FILENAME = 'config.json'
GDT_CONFIG_FILE = os.path.join(GDT_CONFIG_DIR, GDT_CONFIG_FILENAME)
COMMANDS_FILENAME = 'commands.txt'
DEFAULT_COMMANDS_FILE = os.path.join(GDT_CONFIG_DIR, COMMANDS_FILENAME)
GDBINIT_FILE = os.path.join(GDT_CONFIG_DIR, 'gdbinit')
CORE_COMMANDS_FILENAME = 'core_report_commands'
CORE_COMMANDS_FILE = os.path.join(GDT_CONFIG_DIR, CORE_COMMANDS_FILENAME)
DEFAULT_CORE_REPORT_FILE = os.path.join(os.getcwd(), 'coredump_report.log')
UNITTEST_OUTPUT_DIR = '/tmp/unittests'
DEFAULT_IP = "192.168.33.42"
DEFAULT_USER = "vagrant"
DEFAULT_PASSWORD = "vagrant"
DEFAULT_DEBUG_PORT = "8000"
DEFAULT_PROMPT = "# "
DEFAULT_EXCLUDED_DIRS = ['.git', '.svn', '.code']
IPV4_REGEX = re.compile(r"^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$")
PORT_REGEX = re.compile(r"^([0-9]{1,4}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])$")
SHARED_LIB_REGEX = re.compile(r'\.so(\.\d+)?$')
CPP_REGEX = re.compile(r'\.h$|\.hpp$|\.c$|\.cc$|\.cpp$')
def get_str_repr(path_string):
return repr(str(os.path.abspath(path_string)))[1:-1] if len(path_string) > 0 else ""
def verify_required_files_exist():
if not os.path.isdir(GDT_CONFIG_DIR):
raise RequiredFileMissing("configuration directory: " + GDT_CONFIG_DIR)
elif not os.path.isfile(CORE_COMMANDS_FILE):
raise RequiredFileMissing("core dump commands file: " + CORE_COMMANDS_FILE)
def validate_ipv4_address(ip):
ip_match = re.search(IPV4_REGEX, ip)
return ip_match.group() if ip_match else None
def validate_port(port):
port_match = re.search(PORT_REGEX, port)
return port_match.group() if port_match else None
def validate_dir(directory):
return os.path.abspath(directory) if os.path.isdir(directory) else None
def is_shared_library(path):
return re.search(SHARED_LIB_REGEX, path) is not None
def is_cpp_file(path):
return re.search(CPP_REGEX, path) is not None
def extract_filename(filepath):
return os.path.splitext(os.path.split(filepath)[1])[0]
class GDTException(Exception):
def __init__(self, message):
self.message = message
def __str__(self):
return str(self.message)
class RequiredFileMissing(GDTException):
def __init__(self, missing_file):
self.message = "ERROR: missing required file: " + missing_file + "\nPlease copy gdt_files directory from repository to " + GDT_DIR
class ConfigFileMissing(GDTException):
def __init__(self, missing_file):
self.message = "ERROR: config file does not exist: " + missing_file + "\nPlease ensure the file path is correct or run 'python " + os.path.split(__file__)[1] + " init'."
class InvalidConfig(GDTException):
def __init__(self, name, value, config_file):
self.message = "VALIDATION ERROR: invalid '" + name + "' in " + config_file + ": " + value
class InvalidArgs(GDTException):
def __init__(self, message):
self.message = "ARGUMENTS ERROR: " + message
class TelnetError(GDTException):
def __init__(self, message):
self.message = "TELNET ERROR: " + message
class Target:
def __init__(self, ip, user, password, port):
self.ip = ip
self.user = user
self.password = password
self.port = port
def full_address(self):
return self.ip + ":" + self.port
class GDBCommand:
def __init__(self, prefix, value):
self.prefix = prefix
self.value = value
def __str__(self):
return self.prefix + ' ' + self.value
class ConfigFileOption:
key = ""
value = ""
def __init__(self, key, desc="", error_str="", validate_func=None, default_value=None, ask_user=True, value=None):
self.key = key
self.default_value = default_value
self.value = value
self.desc = desc
self.validate_func = validate_func
self.error_str = error_str
self.ask_user = ask_user
self.init_description()
self.init_value()
def init_description(self):
if self.default_value:
self.desc = self.desc + ' [Default: "' + self.default_value + '"]: '
else:
self.desc = self.desc + ': '
def init_value(self):
if self.ask_user:
self.value = raw_input(self.desc).strip('"\'')
if self.value == "" and self.default_value:
self.value = self.default_value
elif self.validate_func:
self.get_valid_value()
def get_valid_value(self):
value = self.validate_func(self.value)
while not value:
print '"{}" {} Enter again...'.format(self.value, self.error_str)
value = raw_input(self.desc).strip('"\'')
self.value = self.default_value if (value == "" and self.default_value) else value
value = self.validate_func(self.value)
self.value = value
class ConfigFileGenerator:
def __init__(self):
verify_required_files_exist()
def run(self):
print 'This utility will walk you through creating a ' + GDT_CONFIG_FILENAME + ' file\n'
options = [ConfigFileOption('gdb_path', 'GDB path', 'is not a file.', lambda file_path: os.path.abspath(file_path) if os.path.isfile(file_path) else None),
ConfigFileOption('project_root_path', 'Project root path', 'is not a directory.', validate_dir),
ConfigFileOption('symbol_root_path', 'Symbol root path', ' is not a directory.', validate_dir),
ConfigFileOption('target_ip', 'Remote target IP', 'is an invalid IPv4 address.', validate_ipv4_address, default_value=DEFAULT_IP),
ConfigFileOption('excluded_dir_names', ask_user=False, value=DEFAULT_EXCLUDED_DIRS),
ConfigFileOption('target_user', 'Remote target username', default_value=DEFAULT_USER),
ConfigFileOption('target_password', 'Remote target password', default_value=DEFAULT_PASSWORD),
ConfigFileOption('target_debug_port', 'Remote target debug port', "is an invalid port.", validate_port, DEFAULT_DEBUG_PORT),
ConfigFileOption('target_prompt', 'Remote target prompt', default_value=DEFAULT_PROMPT)]
option_dict = {option.key: option.value for option in options}
with open(GDT_CONFIG_FILE, 'w') as config_file:
json.dump(option_dict, config_file, sort_keys=True, indent=3)
print '\nCreated gdt configuration: ' + GDT_CONFIG_FILE
class BaseCommand:
def __init__(self, args):
verify_required_files_exist()
self.config_file = os.path.abspath(args.config)
self.check_config_file_exists()
with open(self.config_file, 'r') as config_file:
self.json_data = json.load(config_file)
self.gdb_path = os.path.abspath(self.json_data["gdb_path"])
self.target = Target(self.json_data["target_ip"], self.json_data["target_user"], self.json_data["target_password"], self.json_data["target_debug_port"])
self.excluded_dir_names = [str(d) for d in self.json_data["excluded_dir_names"]]
self.command_file = DEFAULT_COMMANDS_FILE
self.validate_config_data()
def check_config_file_exists(self):
if not os.path.isfile(self.config_file):
raise ConfigFileMissing(self.config_file)
print "Using config file: " + self.config_file
def validate_config_data(self):
if not os.path.isfile(self.json_data["gdb_path"]):
raise InvalidConfig("gdb_path", self.json_data["gdb_path"], self.config_file)
elif not os.path.isdir(self.json_data["project_root_path"]):
raise InvalidConfig("project_root_path", self.json_data["project_root_path"], self.config_file)
elif not os.path.isdir(self.json_data["symbol_root_path"]):
raise InvalidConfig("symbol_root_path", self.json_data["symbol_root_path"], self.config_file)
elif not validate_ipv4_address(self.json_data["target_ip"]):
raise InvalidConfig("target_ip", self.json_data["target_ip"], self.config_file)
elif not validate_port(self.json_data["target_debug_port"]):
raise InvalidConfig("target_debug_port", self.json_data["target_debug_port"], self.config_file)
def run(self):
returncode = None
process = None
try:
process = subprocess.Popen(args=[self.gdb_path, '--command=' + self.command_file, '-q'])
while returncode is None:
try:
returncode = process.wait()
except KeyboardInterrupt:
continue # ignore interrupt to allow GDB child process to handle it
except OSError as error:
raise error
finally:
if process is not None and returncode is None:
process.kill()
class GeneratedCommand(BaseCommand):
def __init__(self, args):
BaseCommand.__init__(self, args)
self.project_path = os.path.abspath(args.root) if args.root else os.path.abspath(self.json_data["project_root_path"])
self.symbol_root_path = os.path.abspath(args.symbols) if args.symbols else os.path.abspath(self.json_data["symbol_root_path"])
self.path_separator = ";"
self.program_path = os.path.abspath(args.program.name)
self.opts = OrderedDict([("program", GDBCommand('file', get_str_repr(self.program_path)))])
self.program_name = extract_filename(self.opts['program'].value)
self.check_dir_exists(self.project_path, 'project')
self.check_dir_exists(self.symbol_root_path, 'symbol')
def check_dir_exists(self, directory, name):
if not validate_dir(directory):
raise IOError("ERROR: " + name + " root path does not exist or is not a directory: " + directory)
def add_search_path_commands(self):
print "Generating search paths..."
solib_search_path = []
source_search_path = []
if self.symbol_root_path == self.project_path:
solib_search_path, source_search_path = self.generate_search_paths()
else:
source_search_path = self.generate_search_path(self.project_path, self.update_source_list)
solib_search_path = self.generate_search_path(self.symbol_root_path, self.update_solib_list)
self.add_option('solib_path', GDBCommand('set solib-search-path', self.path_separator.join(solib_search_path)))
self.add_option('source_path', GDBCommand('dir', self.path_separator.join(source_search_path)))
def update_source_list(self, files, root, source_search_path):
has_cpp_file = any(is_cpp_file(f) for f in files)
if has_cpp_file and self.program_name in root:
source_search_path.insert(0, get_str_repr(root))
elif has_cpp_file:
source_search_path.append(get_str_repr(root))
def update_solib_list(self, files, root, search_path):
if any(is_shared_library(f) for f in files):
search_path.insert(0, get_str_repr(root))
def update_dirs(self, dirs):
dirs[:] = [d for d in dirs if os.path.basename(d) not in self.excluded_dir_names]
dirs.sort()
def generate_search_paths(self):
solib_search_path = []
source_search_path = []
for root, dirs, files in os.walk(self.project_path, topdown=True):
self.update_dirs(dirs)
self.update_source_list(files, root, source_search_path)
self.update_solib_list(files, root, solib_search_path)
return (solib_search_path, source_search_path)
def generate_search_path(self, root_search_path, update_func):
search_path = []
for root, dirs, files in os.walk(root_search_path, topdown=True):
self.update_dirs(dirs)
update_func(files, root, search_path)
return search_path
def generate_command_file(self):
with open(self.command_file, 'w') as cmd_file:
if os.path.isfile(GDBINIT_FILE):
cmd_file.write(open(GDBINIT_FILE, 'r').read())
for key, option in self.opts.iteritems():
cmd_file.write("\n" + str(option))
def add_option(self, key, option):
self.opts[key] = option
class CoreDumpCommand(GeneratedCommand):
def __init__(self, args):
self.validate_args(args)
GeneratedCommand.__init__(self, args)
self.add_search_path_commands()
self.add_option('core', GDBCommand('core-file', get_str_repr(args.core_dump.name)))
self.report_file = args.report_out
self.init(args)
def init(self, args):
self.generate_command_file()
if args.report:
self.add_core_dump_report_commands()
def validate_args(self, args):
if not args.report and args.report_out != DEFAULT_CORE_REPORT_FILE:
raise InvalidArgs("ERROR: Need to specify --report when using --report-out")
def add_core_dump_report_commands(self):
with open(self.command_file, 'r+') as cmd_file:
old_contents = cmd_file.read()
cmd_file.seek(0)
cmd_file.write('set logging overwrite on\n')
cmd_file.write('set logging file ' + self.report_file + '\n')
cmd_file.write('set logging on\n')
cmd_file.write('set logging redirect on\n')
cmd_file.write(old_contents + '\n')
with open(CORE_COMMANDS_FILE, 'r') as core_cmd_file:
cmd_file.write(core_cmd_file.read())
print "Creating core dump report: " + os.path.abspath(self.report_file) + "..."
class RemoteTargetCommand(GeneratedCommand):
def __init__(self, args):
GeneratedCommand.__init__(self, args)
self.is_qnx_target = not args.other_target
self.is_unit_test = self.program_name.find('_unit_test_') != -1
self.telnet = TelnetConnection(self.target, self.json_data["target_prompt"])
self.init(args)
def init(self, args):
self.add_search_path_commands()
self.add_target_command()
if self.is_unit_test:
self.add_unit_test_commands()
else:
self.add_pid_command()
self.add_breakpoint_command(args.breakpoints)
self.generate_command_file()
def add_unit_test_commands(self):
self.telnet.send_command('rm -rf ' + UNITTEST_OUTPUT_DIR)
self.telnet.send_command('mkdir -p ' + UNITTEST_OUTPUT_DIR)
self.add_option('upload', GDBCommand('upload', self.program_path + " " + os.path.join(UNITTEST_OUTPUT_DIR, os.path.basename(self.program_path))))
self.add_option('gtest_args', GDBCommand('set args', '--gtest_color=yes --gtest_log_to_console'))
def add_breakpoint_command(self, breakpoint_file):
if breakpoint_file:
self.add_option('breakpoint', GDBCommand('source', get_str_repr(breakpoint_file.name)))
def add_target_command(self):
self.add_option('target', GDBCommand('target qnx' if self.is_qnx_target else 'target extended-remote', self.target.full_address()))
def add_pid_command(self):
print 'Getting pid of ' + self.program_name + '...'
pid = self.telnet.get_pid_of(self.program_name)
if pid:
self.add_option('pid', GDBCommand('attach', pid))
print 'pid of ' + self.program_name + ' = ' + str(pid)
class CmdFileCommand(BaseCommand):
def __init__(self, args):
BaseCommand.__init__(self, args)
self.command_file = os.path.abspath(args.input.name)
print "Using " + self.command_file
if args.reload:
self.reload_commands_file()
def reload_commands_file(self):
print "Updating " + self.command_file + "..."
with open(self.command_file, 'r+') as f:
new_content = ''
program_name = ''
for line in f.readlines():
if line.lower().startswith('file'):
program_name = extract_filename(line.split()[1])
if line.lower().startswith('attach'):
pid = TelnetConnection(self.target, self.json_data["target_prompt"]).get_pid_of(program_name)
if pid:
new_content += 'attach ' + pid + '\n'
else:
new_content += line
f.seek(0)
f.write(new_content)
# thanks to Blayne Dennis for this class
class TelnetConnection:
def __init__(self, target, prompt):
self.PORT = 23
self.TIMEOUT = 10
self.PID_CMD = 'ps -A | grep '
self.session = None
self.prompt = prompt
self.target = target
self.connect()
def __del__(self):
self.close()
def close(self):
if self.session is not None:
self.session.close()
def read_response(self, prompt):
return self.session.read_until(prompt, self.TIMEOUT)
def connect(self):
print 'Connecting to ' + self.target.ip + ':' + str(self.PORT)
try:
self.session = telnetlib.Telnet(self.target.ip, self.PORT, self.TIMEOUT)
except (socket.timeout, socket.error):
raise TelnetError('Server didn\'t respond')
self.read_response('login: ')
self.session.write('{}\n'.format(self.target.user))
self.read_response('Password:')
self.session.write('{}\n'.format(self.target.password))
resp = self.read_response(self.prompt)
if resp[-len(self.prompt):] != self.prompt:
raise TelnetError('Invalid username or password')
def change_prompt(self, new_prompt):
self.prompt = new_prompt
self.send_command('PS1="{}"'.format(new_prompt))
self.read_response(self.prompt)
def send_command(self, cmd):
self.session.write('{}\n'.format(cmd))
return self.read_response(self.prompt)
def get_pid_of(self, service):
output = self.send_command(self.PID_CMD + service)
match = re.search(r'\d+ .*' + service, output)
return match.group().split()[0] if match else None
def close_files(args):
for arg in vars(args).iteritems():
if type(arg[1]) == file:
arg[1].close()
def parse_args():
parser = argparse.ArgumentParser(description='GDB Developer Tool: developer script to quickly and easily debug a remote target or core file.')
parser.add_argument('--version', action='version', version=GDT_VERSION)
subparsers = parser.add_subparsers()
base_parser = argparse.ArgumentParser(add_help=False)
base_parser.add_argument('-cfg', '--config', default=GDT_CONFIG_FILE, help='Absolute or relative path to gdt\'s config file')
generated_parser = argparse.ArgumentParser(add_help=False, parents=[base_parser])
generated_parser.add_argument('program', type=argparse.FileType(), help='Absolute or relative path to program exectuable (usually ends in .full)')
generated_parser.add_argument('-r', '--root', help='Absolute or relative path to root project directory (project_root_path in ' + GDT_CONFIG_FILENAME + ' will be ignored)')
generated_parser.add_argument('-s', '--symbols', help='Absolute or relative path to root symbols directory (symbol_root_path in ' + GDT_CONFIG_FILENAME + ' will be ignored)')
core_dump_parser = subparsers.add_parser('core', help='Use when debugging a core file', parents=[generated_parser], formatter_class=argparse.ArgumentDefaultsHelpFormatter)
core_dump_parser.add_argument('core_dump', type=argparse.FileType(), help='Absolute or relative path to core file')
core_dump_parser.add_argument('-rp', '--report', action='store_true', help='Generate a core dump report')
core_dump_parser.add_argument('-ro', '--report-out', default=DEFAULT_CORE_REPORT_FILE, help='Output file for core dump report (requires -rp option)')
core_dump_parser.set_defaults(func=lambda args: CoreDumpCommand(args))
remote_target_parser = subparsers.add_parser('remote', help='Use when debugging a remote program', parents=[generated_parser], formatter_class=argparse.ArgumentDefaultsHelpFormatter)
remote_target_parser.add_argument('-b', '--breakpoints', type=argparse.FileType(), help='Absolute or relative path to breakpoint file')
remote_target_parser.add_argument('-ot', '--other-target', action='store_true', default=False, help="Use when the remote target is run on a non-QNX OS")
remote_target_parser.set_defaults(func=lambda args: RemoteTargetCommand(args))
cmd_file_parser = subparsers.add_parser('cmd', help='Use to run gdb with a command file', parents=[base_parser], formatter_class=argparse.ArgumentDefaultsHelpFormatter)
cmd_file_parser.add_argument('-r', '--reload', action='store_true', help='Reuse the previously generated ' + COMMANDS_FILENAME + ' file and update PID if necessary. This is useful when you debug the same process over the same boot cycle or multiple boot cycles. It saves you time since gdt doesn\'t have to regenerate the solib/source search paths.' )
cmd_file_parser.add_argument('-i', '--input', default=DEFAULT_COMMANDS_FILE, type=argparse.FileType(), help='Absolute or relative path to command file')
cmd_file_parser.set_defaults(func=lambda args: CmdFileCommand(args))
init_parser = subparsers.add_parser('init', help='Use to initialize ' + GDT_CONFIG_FILENAME, formatter_class=argparse.ArgumentDefaultsHelpFormatter)
init_parser.set_defaults(func=lambda args: ConfigFileGenerator())
args = parser.parse_args()
close_files(args)
return args
def main():
try:
args = parse_args()
args.func(args).run()
except KeyboardInterrupt:
pass
except (GDTException, IOError, OSError, EOFError, TelnetError) as err:
print err
sys.exit(1)
if __name__ == '__main__':
main()