TranslateProject/published/201709/GDB-common-commands.md

420 lines
16 KiB
Markdown
Raw Normal View History

常用 GDB 命令中文速览
============
2017-08-22 23:00:04 +08:00
### 目录
2017-08-22 23:00:04 +08:00
2017-09-20 08:34:43 +08:00
- [break](#break) -- 在指定的行或函数处设置断点,缩写为 `b`
- [info breakpoints](#info-breakpoints) -- 打印未删除的所有断点,观察点和捕获点的列表,缩写为 `i b`
- [disable](#disable) -- 禁用断点,缩写为 `dis`
2017-08-22 23:00:04 +08:00
- [enable](#enable) -- 启用断点
- [clear](#clear) -- 清除指定行或函数处的断点
2017-09-20 08:34:43 +08:00
- [delete](#delete) -- 删除断点,缩写为 `d`
2017-08-22 23:00:04 +08:00
- [tbreak](#tbreak) -- 设置临时断点,参数同 `break`,但在程序第一次停住后会被自动删除
2017-09-20 08:34:43 +08:00
- [watch](#watch) -- 为表达式(或变量)设置观察点,当表达式(或变量)的值有变化时,暂停程序执行
- [step](#step) -- 单步跟踪,如果有函数调用,会进入该函数,缩写为 `s`
2017-08-22 23:00:04 +08:00
- [reverse-step](#reverse-step) -- 反向单步跟踪,如果有函数调用,会进入该函数
2017-09-20 08:34:43 +08:00
- [next](#next) -- 单步跟踪,如果有函数调用,不会进入该函数,缩写为 `n`
2017-08-22 23:00:04 +08:00
- [reverse-next](#reverse-next) -- 反向单步跟踪,如果有函数调用,不会进入该函数
- [return](#return) -- 使选定的栈帧返回到其调用者
2017-09-20 08:34:43 +08:00
- [finish](#finish) -- 执行直到选择的栈帧返回,缩写为 `fin`
- [until](#until) -- 执行直到达到当前栈帧中当前行后的某一行(用于跳过循环、递归函数调用),缩写为 `u`
- [continue](#continue) -- 恢复程序执行,缩写为 `c`
- [print](#print) -- 打印表达式 EXP 的值,缩写为 `p`
2017-08-22 23:00:04 +08:00
- [x](#x) -- 查看内存
- [display](#display) -- 每次程序停止时打印表达式 EXP 的值(自动显示)
- [info display](#info-display) -- 打印早先设置为自动显示的表达式列表
- [disable display](#disable-display) -- 禁用自动显示
- [enable display](#enable-display) -- 启用自动显示
- [undisplay](#undisplay) -- 删除自动显示项
2017-09-20 08:34:43 +08:00
- [help](#help) -- 打印命令列表(带参数时查找命令的帮助),缩写为 `h`
2017-08-22 23:00:04 +08:00
- [attach](#attach) -- 挂接到已在运行的进程来调试
2017-09-20 08:34:43 +08:00
- [run](#run) -- 启动被调试的程序,缩写为 `r`
- [backtrace](#backtrace) -- 查看程序调用栈的信息,缩写为 `bt`
2017-08-22 23:00:04 +08:00
- [ptype](#ptype) -- 打印类型 TYPE 的定义
------
### break
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
使用 `break` 命令(缩写 `b`)来设置断点。
2017-08-22 23:00:04 +08:00
用法:
2017-08-22 23:00:04 +08:00
- `break` 当不带参数时,在所选栈帧中执行的下一条指令处设置断点。
- `break <function-name>` 在函数体入口处打断点,在 C++ 中可以使用 `class::function``function(type, ...)` 格式来指定函数名。
- `break <line-number>` 在当前源码文件指定行的开始处打断点。
- `break -N` `break +N` 在当前源码行前面或后面的 `N` 行开始处打断点,`N` 为正整数。
- `break <filename:linenum>` 在源码文件 `filename``linenum` 行处打断点。
- `break <filename:function>` 在源码文件 `filename``function` 函数入口处打断点。
- `break <address>` 在程序指令的地址处打断点。
2017-09-20 08:34:43 +08:00
- `break ... if <cond>` 设置条件断点,`...` 代表上述参数之一(或无参数),`cond` 为条件表达式,仅在 `cond` 值非零时暂停程序执行。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][1]。
### info breakpoints
查看断点,观察点和捕获点的列表。
用法:
2017-08-22 23:00:04 +08:00
- `info breakpoints [list...]`
- `info break [list...]`
- `list...` 用来指定若干个断点的编号(可省略),可以是 `2` `1-3` `2 5` 等。
2017-08-22 23:00:04 +08:00
### disable
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
禁用一些断点。参数是用空格分隔的断点编号。要禁用所有断点,不加参数。
2017-09-20 08:34:43 +08:00
禁用的断点不会被忘记,但直到重新启用才有效。
2017-09-22 05:36:41 +08:00
用法:
- `disable [breakpoints] [list...]`
- `breakpoints``disable` 的子命令(可省略),`list...` 同 `info breakpoints` 中的描述。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][2]。
### enable
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
启用一些断点。给出断点编号(以空格分隔)作为参数。没有参数时,所有断点被启用。
2017-08-22 23:00:04 +08:00
用法:
- `enable [breakpoints] [list...]` 启用指定的断点(或所有定义的断点)。
- `enable [breakpoints] once list...` 临时启用指定的断点。GDB 在停止您的程序后立即禁用这些断点。
- `enable [breakpoints] delete list...` 使指定的断点启用一次然后删除。一旦您的程序停止GDB 就会删除这些断点。等效于用 `tbreak` 设置的断点。
2017-08-22 23:00:04 +08:00
`breakpoints``disable` 中的描述。
2017-09-22 05:36:41 +08:00
详见[官方文档][2]。
### clear
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
在指定行或函数处清除断点。参数可以是行号,函数名称或 `*` 跟一个地址。
2017-08-22 23:00:04 +08:00
用法:
2017-08-22 23:00:04 +08:00
- `clear` 当不带参数时,清除所选栈帧在执行的源码行中的所有断点。
- `clear <function>`, `clear <filename:function>` 删除在命名函数的入口处设置的任何断点。
- `clear <linenum>`, `clear <filename:linenum>` 删除在指定的文件指定的行号的代码中设置的任何断点。
- `clear <address>` 清除指定程序指令的地址处的断点。
2017-09-22 05:36:41 +08:00
详见[官方文档][3]。
### delete
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
删除一些断点或自动显示表达式。参数是用空格分隔的断点编号。要删除所有断点,不加参数。
用法: `delete [breakpoints] [list...]`
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][3]。
### tbreak
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
设置临时断点。参数形式同 `break` 一样。
2017-09-20 08:34:43 +08:00
除了断点是临时的之外,其他同 `break` 一样,所以在命中时会被删除。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][1]。
### watch
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
为表达式设置观察点。
用法: `watch [-l|-location] <expr>` 每当一个表达式的值改变时,观察点就会暂停程序执行。
如果给出了 `-l` 或者 `-location`,则它会对 `expr` 求值并观察它所指向的内存。例如,`watch *(int *)0x12345678` 将在指定的地址处观察一个 4 字节的区域(假设 int 占用 4 个字节)。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][4]。
### step
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
单步执行程序,直到到达不同的源码行。
用法: `step [N]` 参数 `N` 表示执行 N 次(或由于另一个原因直到程序停止)。
2017-09-20 08:34:43 +08:00
警告:如果当控制在没有调试信息的情况下编译的函数中使用 `step` 命令,则执行将继续进行,直到控制到达具有调试信息的函数。 同样,它不会进入没有调试信息编译的函数。
2017-09-20 08:34:43 +08:00
要执行没有调试信息的函数,请使用 `stepi` 命令,详见后文。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][5]。
### reverse-step
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
反向单步执行程序,直到到达另一个源码行的开头。
用法: `reverse-step [N]` 参数 `N` 表示执行 N 次(或由于另一个原因直到程序停止)。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][6]。
### next
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
单步执行程序,执行完子程序调用。
2017-09-20 08:34:43 +08:00
用法: `next [N]`
2017-09-20 08:34:43 +08:00
`step` 不同,如果当前的源代码行调用子程序,则此命令不会进入子程序,而是将其视为单个源代码行,继续执行。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][5]。
### reverse-next
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
反向步进程序,执行完子程序调用。
2017-09-20 08:34:43 +08:00
用法: `reverse-next [N]`
2017-09-20 08:34:43 +08:00
如果要执行的源代码行调用子程序,则此命令不会进入子程序,调用被视为一个指令。
2017-08-22 23:00:04 +08:00
参数 `N` 表示执行 N 次(或由于另一个原因直到程序停止)。
2017-09-22 05:36:41 +08:00
详见[官方文档][6]。
### return
2017-08-22 23:00:04 +08:00
您可以使用 `return` 命令取消函数调用的执行。如果你给出一个表达式参数,它的值被用作函数的返回值。
2017-09-22 05:36:41 +08:00
用法: `return <expression>``expression` 的值作为函数的返回值并使函数直接返回。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][7]。
### finish
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
执行直到选定的栈帧返回。
用法: `finish` 返回后,返回的值将被打印并放入到值历史记录中。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][5]。
### until
2017-08-22 23:00:04 +08:00
执行直到程序到达当前栈帧中当前行之后(与 [break](#break) 命令相同的参数)的源码行。此命令用于通过一个多次的循环,以避免单步执行。
用法:`until <location>` 或 `u <location>` 继续运行程序,直到达到指定的位置,或者当前栈帧返回。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][5]。
### continue
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
在信号或断点之后,继续运行被调试的程序。
用法: `continue [N]` 如果从断点开始,可以使用数字 `N` 作为参数,这意味着将该断点的忽略计数设置为 `N - 1`(以便断点在第 N 次到达之前不会中断)。如果启用了非停止模式(使用 `show non-stop` 查看),则仅继续当前线程,否则程序中的所有线程都将继续。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][5]。
### print
求值并打印表达式 EXP 的值。可访问的变量是所选栈帧的词法环境,以及范围为全局或整个文件的所有变量。
用法:
2017-08-22 23:00:04 +08:00
- `print [expr]``print /f [expr]` `expr` 是一个(在源代码语言中的)表达式。
2017-09-22 05:36:41 +08:00
2017-09-20 08:34:43 +08:00
默认情况下,`expr` 的值以适合其数据类型的格式打印;您可以通过指定 `/f` 来选择不同的格式,其中 `f` 是一个指定格式的字母;详见[输出格式][9]。
2017-09-20 08:34:43 +08:00
如果省略 `expr`GDB 再次显示最后一个值。
2017-09-20 08:34:43 +08:00
要以每行一个成员带缩进的格式打印结构体变量请使用命令 `set print pretty on`,取消则使用命令 `set print pretty off`
2017-08-22 23:00:04 +08:00
可使用命令 `show print` 查看所有打印的设置。
2017-09-22 05:36:41 +08:00
详见[官方文档][8]。
### x
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
检查内存。
用法: `x/nfu <addr>``x <addr>` `n`、`f` 和 `u` 都是可选参数,用于指定要显示的内存以及如何格式化。`addr` 是要开始显示内存的地址的表达式。
2017-09-20 08:34:43 +08:00
`n` 重复次数(默认值是 1指定要显示多少个单位`u` 指定)的内存值。
2017-09-20 08:34:43 +08:00
`f` 显示格式(初始默认值是 `x`),显示格式是 `print('x''d''u''o''t''a''c''f''s')` 使用的格式之一,再加 `i`(机器指令)。
2017-09-20 08:34:43 +08:00
`u` 单位大小,`b` 表示单字节,`h` 表示双字节,`w` 表示四字节,`g` 表示八字节。
2017-09-20 08:34:43 +08:00
例如:
2017-09-20 08:34:43 +08:00
`x/3uh 0x54320` 表示从地址 0x54320 开始以无符号十进制整数的格式,双字节为单位来显示 3 个内存值。
2017-09-20 08:34:43 +08:00
`x/16xb 0x7f95b7d18870` 表示从地址 0x7f95b7d18870 开始以十六进制整数的格式,单字节为单位显示 16 个内存值。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][10]。
### display
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
每次程序暂停时,打印表达式 EXP 的值。
用法: `display <expr>`, `display/fmt <expr>``display/fmt <addr>` `fmt` 用于指定显示格式。像 [print](#print) 命令里的 `/f` 一样。
2017-08-22 23:00:04 +08:00
对于格式 `i``s`,或者包括单位大小或单位数量,将表达式 `addr` 添加为每次程序停止时要检查的内存地址。
2017-09-22 05:36:41 +08:00
详见[官方文档][11]。
### info display
2017-08-22 23:00:04 +08:00
2017-09-20 08:34:43 +08:00
打印自动显示的表达式列表,每个表达式都带有项目编号,但不显示其值。
2017-08-22 23:00:04 +08:00
包括被禁用的表达式和不能立即显示的表达式(当前不可用的自动变量)。
### undisplay
取消某些表达式在程序暂停时的自动显示。参数是表达式的编号(使用 `info display` 查询编号)。不带参数表示取消所有自动显示表达式。
2017-08-22 23:00:04 +08:00
`delete display` 具有与此命令相同的效果。
### disable display
2017-08-22 23:00:04 +08:00
禁用某些表达式在程序暂停时的自动显示。禁用的显示项目不会被自动打印,但不会被忘记。 它可能稍后再次被启用。
2017-08-22 23:00:04 +08:00
参数是表达式的编号(使用 `info display` 查询编号)。不带参数表示禁用所有自动显示表达式。
### enable display
2017-08-22 23:00:04 +08:00
2017-09-20 08:34:43 +08:00
启用某些表达式在程序暂停时的自动显示。
2017-08-22 23:00:04 +08:00
参数是重新显示的表达式的编号(使用 `info display` 查询编号)。不带参数表示启用所有自动显示表达式。
### help
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
打印命令列表。
2017-09-20 08:34:43 +08:00
您可以使用不带参数的 `help`(缩写为 `h`)来显示命令的类别名的简短列表。
2017-09-22 05:36:41 +08:00
使用 `help <class>` 您可以获取该类中的各个命令的列表。使用 `help <command>` 显示如何使用该命令。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][12]。
### attach
挂接到 GDB 之外的进程或文件。该命令可以将进程 ID 或设备文件作为参数。
2017-08-22 23:00:04 +08:00
2017-09-20 08:34:43 +08:00
对于进程 ID您必须具有向进程发送信号的权限并且必须具有与调试器相同的有效的 uid。
2017-09-22 05:36:41 +08:00
用法: `attach <process-id>` GDB 在安排调试指定的进程之后做的第一件事是暂停该进程。
2017-09-20 08:34:43 +08:00
无论是通过 `attach` 命令挂接的进程还是通过 `run` 命令启动的进程,您都可以使用的 GDB 命令来检查和修改挂接的进程。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][13]。
### run
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
启动被调试的程序。
2017-09-20 08:34:43 +08:00
可以直接指定参数,也可以用 [set args][15] 设置(启动所需的)参数。
2017-09-20 08:34:43 +08:00
例如: `run arg1 arg2 ...` 等效于
2017-08-22 23:00:04 +08:00
```
set args arg1 arg2 ...
run
```
还允许使用 `>``<``>>` 进行输入和输出重定向。
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
详见[官方文档][14]。
### backtrace
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
打印整体栈帧信息。
2017-08-22 23:00:04 +08:00
2017-09-20 08:34:43 +08:00
- `bt` 打印整体栈帧信息,每个栈帧一行。
2017-08-22 23:00:04 +08:00
- `bt n` 类似于上,但只打印最内层的 n 个栈帧。
- `bt -n` 类似于上,但只打印最外层的 n 个栈帧。
- `bt full n` 类似于 `bt n`,还打印局部变量的值。
2017-09-20 08:34:43 +08:00
`where``info stack`(缩写 `info s`) 是 `backtrace` 的别名。调用栈信息类似如下:
2017-08-22 23:00:04 +08:00
```
2017-09-20 08:34:43 +08:00
(gdb) where
2017-08-22 23:00:04 +08:00
#0 vconn_stream_run (vconn=0x99e5e38) at lib/vconn-stream.c:232
#1 0x080ed68a in vconn_run (vconn=0x99e5e38) at lib/vconn.c:276
#2 0x080dc6c8 in rconn_run (rc=0x99dbbe0) at lib/rconn.c:513
#3 0x08077b83 in ofconn_run (ofconn=0x99e8070, handle_openflow=0x805e274 <handle_openflow>) at ofproto/connmgr.c:1234
#4 0x08075f92 in connmgr_run (mgr=0x99dc878, handle_openflow=0x805e274 <handle_openflow>) at ofproto/connmgr.c:286
#5 0x08057d58 in ofproto_run (p=0x99d9ba0) at ofproto/ofproto.c:1159
#6 0x0804f96b in bridge_run () at vswitchd/bridge.c:2248
#7 0x08054168 in main (argc=4, argv=0xbf8333e4) at vswitchd/ovs-vswitchd.c:125
```
2017-09-22 05:36:41 +08:00
详见[官方文档][16]。
### ptype
2017-08-22 23:00:04 +08:00
2017-09-22 05:36:41 +08:00
打印类型 TYPE 的定义。
2017-09-20 08:34:43 +08:00
用法: `ptype[/FLAGS] TYPE-NAME | EXPRESSION`
2017-09-20 08:34:43 +08:00
参数可以是由 `typedef` 定义的类型名, 或者 `struct STRUCT-TAG` 或者 `class CLASS-NAME` 或者 `union UNION-TAG` 或者 `enum ENUM-TAG`
2017-09-20 08:34:43 +08:00
根据所选的栈帧的词法上下文来查找该名字。
2017-09-20 08:34:43 +08:00
类似的命令是 `whatis`,区别在于 `whatis` 不展开由 `typedef` 定义的数据类型,而 `ptype` 会展开,举例如下:
2017-08-22 23:00:04 +08:00
```
/* 类型声明与变量定义 */
typedef double real_t;
struct complex {
real_t real;
double imag;
};
typedef struct complex complex_t;
complex_t var;
real_t *real_pointer_var;
```
2017-09-20 08:34:43 +08:00
这两个命令给出了如下输出:
2017-08-22 23:00:04 +08:00
```
(gdb) whatis var
type = complex_t
(gdb) ptype var
type = struct complex {
real_t real;
double imag;
}
(gdb) whatis complex_t
type = struct complex
(gdb) whatis struct complex
type = struct complex
(gdb) ptype struct complex
type = struct complex {
real_t real;
double imag;
}
(gdb) whatis real_pointer_var
type = real_t *
(gdb) ptype real_pointer_var
type = double *
```
2017-09-22 05:36:41 +08:00
详见[官方文档][17]。
2017-08-22 23:00:04 +08:00
------
### 参考资料
2017-08-22 23:00:04 +08:00
- [Debugging with GDB](https://sourceware.org/gdb/current/onlinedocs/gdb/)
------
译者:[robot527](https://github.com/robot527)
校对:[mudongliang](https://github.com/mudongliang) [wxy](https://github.com/wxy)
2017-08-22 23:00:04 +08:00
[1]: https://sourceware.org/gdb/current/onlinedocs/gdb/Set-Breaks.html
[2]: https://sourceware.org/gdb/current/onlinedocs/gdb/Disabling.html
[3]: https://sourceware.org/gdb/current/onlinedocs/gdb/Delete-Breaks.html
[4]: https://sourceware.org/gdb/current/onlinedocs/gdb/Set-Watchpoints.html
[5]: https://sourceware.org/gdb/current/onlinedocs/gdb/Continuing-and-Stepping.html
[6]: https://sourceware.org/gdb/current/onlinedocs/gdb/Reverse-Execution.html
[7]: https://sourceware.org/gdb/current/onlinedocs/gdb/Returning.html
[8]: https://sourceware.org/gdb/current/onlinedocs/gdb/Data.html
[9]: https://sourceware.org/gdb/current/onlinedocs/gdb/Output-Formats.html
[10]: https://sourceware.org/gdb/current/onlinedocs/gdb/Memory.html
[11]: https://sourceware.org/gdb/current/onlinedocs/gdb/Auto-Display.html
[12]: https://sourceware.org/gdb/current/onlinedocs/gdb/Help.html
[13]: https://sourceware.org/gdb/current/onlinedocs/gdb/Attach.html
[14]: https://sourceware.org/gdb/current/onlinedocs/gdb/Starting.html
[15]: https://sourceware.org/gdb/current/onlinedocs/gdb/Arguments.html
[16]: https://sourceware.org/gdb/current/onlinedocs/gdb/Backtrace.html
[17]: https://sourceware.org/gdb/current/onlinedocs/gdb/Symbols.html