(gdb) break sometimes_crashes if !f Breakpoint 1 at 0x401132: fileprog.c, line 5. (gdb) run [...] Breakpoint 1, sometimes_crashes (f=0x0) at prog.c:5 5 fprintf(stderr, (gdb)
(gdb) define hexdump Type commands for definition of"hexdump". End with a line saying just "end". >dump binary memory /tmp/dump.bin $arg0 $arg0+$arg1 >shell hexdump -C /tmp/dump.bin >end
disassemble 命令可让你查看实现函数的 CPU 指令。但是有时输出可能很难跟踪。通常,我想查看与该函数源代码的特定部分相对应的指令。为此,请使用 /s 修饰符在反汇编中包括源代码行。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
(gdb) disassemble/s main Dump of assembler code for function main: prog.c: 11 { 0x0000000000401158 <+0>: push%rbp 0x0000000000401159 <+1>: mov %rsp,%rbp 0x000000000040115c <+4>: sub $0x10,%rsp
(gdb) b main Breakpoint 1at0x401160: file prog.c, line 12. (gdb) r Starting program: /home/twaugh/Documents/GDB/prog [...]
Breakpoint 1, main () at prog.c:12 12 int n = 0; (gdb) target record-full (gdb) c Continuing.
Program received signal SIGSEGV, Segmentation fault. 0x0000000000401154in sometimes_crashes (f=0x0) at prog.c:7 7return *f; (gdb) reverse-finish Run backto call of#0 0x0000000000401154 in sometimes_crashes (f=0x0) at prog.c:7 0x0000000000401190in main () at prog.c:16 16 sometimes_crashes(0);
这些只是 GNU 调试器可以做的一些有用的事情。还有更多有待发现。你最喜欢 gdb 的哪个隐藏的、鲜为人知或令人吃惊的功能?请在评论中分享。