【Linux】调试常见的应用程序奔溃“Segmentation fault (core dumped)”

发布时间 2023-12-15 21:50:58作者: 独上兰舟1

https://blog.csdn.net/hello_nofail/article/details/129994481?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522170264661316800227454508%2522%252C%2522scm%2522%253A%252220140713.130102334.pc%255Fall.%2522%257D&request_id=170264661316800227454508&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2~all~first_rank_ecpm_v1~rank_v31_ecpm-9-129994481-null-null.142^v96^pc_search_result_base6&utm_term=linux%20%E4%B8%ADSegmentation%20fault&spm=1018.2226.3001.4187

 

前言
Linux程序开发者,日常遇到程序奔溃时,应该如何调试,如何寻找原因和解决呢?本文就介绍了遇到Segmentation fault (core dumped)问题时最常规的定位方法。

一、确保产生core文件
当你在命令行执行一个程序时,遇到Segmentation fault (core dumped)后,第一时间查看当前目录下是否产生了core-xxxxx文件。

如果没有产生core文件,以ubuntu20.0为例:

查询OS当前最core file size的配置:
root@x-System-Product-Name:~# ulimit -a
core file size (blocks, -c) unlimited
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 62634
max locked memory (kbytes, -l) 65536
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 62634
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
如果上图结果中的core file size是0,则需要进行步骤2设置。否则略过步骤2。

放开core file size(非永久生效)
ulimit -c unlimited
1
设置core文件名格式
echo "core-%e-%p-%t" > /proc/sys/kernel/core_pattern
1
禁用OS自带的apport服务(ubuntu专有)
sudo systemctl disable apport.service
1
运行你的程序,比如:
./build/example/testing
1
二、利用core文件,调试确认terminated位置
root@Name:/home# gdb build/examples/testing core-testing-1119167-1680772401
GNU gdb (Ubuntu 9.2-0ubuntu1~20.04.1) 9.2
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from build/examples/testing...
[New LWP 1119167]
[New LWP 1119250]
[New LWP 1119251]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `./build/examples/testing'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0 printf (__fmt=0x564c2c7d48e0 "data miscompare! lba[%lu]. rmt data[%xh]. local data[%xh]\n")
at /usr/include/x86_64-linux-gnu/bits/stdio2.h:107
107 return __printf_chk (__USE_FORTIFY_LEVEL - 1, __fmt, __va_arg_pack ());
[Current thread is 1 (Thread 0x7f89a7611980 (LWP 1119167))]
(gdb) Quit

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
由上图,一目了然,程序奔溃在一行printf语句。另外可以还可以敲bt查看调用栈!你学会了吗?

附上gdb常用方法

l(list) ,显示源代码,并且可以看到对应的行号;
b(break)x, x是行号,表示在对应的行号位置设置断点;
p(print)x, x是变量名,表示打印变量x的值
r(run), 表示继续执行到断点的位置
n(next),表示执行下一步
c(continue),表示继续执行
q(quit),表示退出gdb 启动gdb,注意该程序编译需要-g选项进行。
————————————————
版权声明:本文为CSDN博主「hello_nofail」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/hello_nofail/article/details/129994481