Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
31
rated 0 times [  31] [ 0]  / answers: 1 / hits: 47275  / 3 Years ago, tue, august 24, 2021, 12:40:42

When I run my C program on Ubuntu 20.04, I get this run-time error:



Segmentation fault (core dumped)


I really need to find and view the core file, but I can't find it anywhere. Where is it, and how do I view the backtrace in it?


More From » debugging

 Answers
3

Tested in Ubuntu 20.04.


1. Enable core files


First off, run ulimit -c to see what the max allowed size is for core files on your system. On Ubuntu 20.04 for me, mine returns 0, which means no core file can be created.


ulimit --help shows the meaning of -c:


-c  the maximum size of core files created

So, set the allowed core file size to unlimited, as shown below. Note that I think this only applies to the one terminal you run this in, and I do not think it's persistent across reboots, so you have to run this each time you want core files to be created, and in each terminal you want it to work in:


# set max core dump file size to unlimited
ulimit -c unlimited
# verify it is now set to "unlimited"
ulimit -c

That's it! Now, run your program and if it crashes and does a "core dump" it will dump the core as a core file into the same directory you were in when you called the executable. The name of the file is simply "core".


UPDATE: wait, where are the core files again?


I tested all of my code and examples here, and they work for me. However, if you do not get a core file locally as described above, apparently you are not alone. So, try the following:



  1. (As of Ubuntu 21.10 and 22.04): Look inside /var/lib/apport/coredump, as explained in this other answer by @guyr here.

  2. Look for answers here:

    1. Where do I find the core dump in ubuntu 16.04LTS?. Possibilities (or commands to run) include:

      1. /var/crash/

      2. cat /var/log/apport.log



    2. [Lots of votes on this one!] Stack Overflow: Core dumped, but core file is not in the current directory?

      1. systemd may be causing some problems here





  3. If your core dump files don't work like mine, leave a comment with what version of Linux you have (ex: Ubuntu 22.04), what kernel version you have (run cat /proc/version), and where your core dump files are.

    1. Here are my own answers: on Linux Ubuntu 18.04 and 20.04, ulimit -c unlimited causes core dump files to appear right in the dir where I am. I have to manually delete old ones for new ones to be created. On my Ubuntu 18.04 machine, cat /proc/version shows Linux version 4.15.0-194-generic (buildd@lcy02-amd64-052) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)).




2. View the backtrace in gdb


You should have built your C or C++ program with debug symbols on, in order to see useful information in your core file. Without debug symbols, you can only see the addresses of the functions called, not the actual names or line numbers.


In gcc, use -ggdb -O0 to turn on debug symbols optimized for the gdb GNU debugger. You can also use -g -O0, -g3 -O0, etc, but -ggdb -O0 is best. Do we really need optimization level 0 (-O0) for this? Yes, yes we do. See my answer here: Stack Overflow: What's the difference between a compiler's -O0 option and -Og option?


Example build and run commands in C and C++: so, your full build and run commands in C or C++ might look like this:


# C build and run command for "hello_world.c"
gcc -Wall -Wextra -Werror -ggdb -O0 -std=c11 -o hello_world hello_world.c
&& ./hello_world

# C++ build and run command for "hello_world.c"
g++ -Wall -Wextra -Werror -ggdb -O0 -std=c++17 -o hello_world hello_world.c
&& ./hello_world

Open the core file in gdb like this:


gdb path/to/my/executable path/to/core

Assuming you just ran path/to/my/executable, then the core file will be in the same directory you were just in when the core was dumped, so you can just run this:


gdb path/to/my/executable core

In gdb, view the backtrace (function call stack at the time of the crash) with:


bt
# or (exact same command)
where

# OR (for even more details, such as seeing all arguments to the functions--
# thanks to Peter Cordes in the comments below)
bt full

# For gdb help and details, see:
help bt
# or
help where

IMPORTANT: when a core dump occurs, it does NOT automatically overwrite any pre-existing core file in your current directory with a new one, so you must manually remove the old core file with rm core PRIOR TO generating the new core file when your program crashes, in order to always have the latest core file to analyze.


3. Try it out



  1. In a terminal, run sleep 30 to start a process sleeping for 30 seconds.

  2. While it is running, press Ctrl + to force a core dump. You'll now see a core file in the directory you are in.

  3. Since we don't have an executable for this with debugging symbols in it, we will just open up the core file in gdb instead of the executable file with symbols + the core file. So, run gdb -c core to open the core file just created by the forced crash.

  4. You'll see this. Notice it knows what command you called (sleep 30) when the core dump occurred:

    Core was generated by `sleep 30'.
    Program terminated with signal SIGQUIT, Quit.
    #0 0x00007f93ed32d334 in ?? ()
    (gdb)



  5. Run bt or where to see the backtrace. You'll see this:

    (gdb) bt
    #0 0x00007f93ed32d334 in ?? ()
    #1 0x000000000000000a in ?? ()
    #2 0x00007f93ed2960a5 in ?? ()
    #3 0x0000000000000000 in ?? ()
    (gdb)



  6. Those are the addresses to the functions called on the call stack. If you had debugging symbols on, you'd see a lot more info, including function names and line numbers, like this (pulled from a C program of mine):

    #10 0x00007fc1152b8ebf in __printf (format=<optimized out>) at printf.c:33
    #11 0x0000562bca17b3eb in fast_malloc (num_bytes=1024) at src/fast_malloc.c:225
    #12 0x0000562bca17bb66 in malloc (num_bytes=1024) at src/fast_malloc.c:496




4. Forget about core files and just run the program to the crash point in gdb directly!


As @Peter Cordes states in the comments below, you can also just run the program inside gdb directly, letting it crash there, so you have no need to open up a core file after-the-fact! He stated:



Those GDB commands are not specific to core files, they work any time you're stopped at a breakpoint. If you have a reproducible crash, it's often easier / better to run your program under GDB (like gdb ./a.out) so GDB will have the process in memory instead of a core file. The main advantage is that you can set a breakpoint or watchpoint somewhere before the thing that crashed, and single-step to see what's happening. Or with GDB's record facilities, you may be able to step backwards and see what led up to the crash, but that can be flaky, slow, and memory-intensive.



As stated above, you should have compiled your program with debugging symbols on and with Optimization Level 0, using -ggdb -O0. See the full example build and run commands in C and C++ above.


Now run the program in gdb:


# Open the executable in gdb
gdb path/to/my/executable
# Run it (if it's still crashing, you'll see it crash)
r
# View the backtrace (call stack)
bt
# Quit when done
q

And if you ever need to manually log the backtrace to a log file to analyze later, you can do so like this (adapted from notes in my eRCaGuy_dotfiles repo here):


set logging file gdb_log.txt
set logging on
set trace-commands on
show logging # prove logging is on
flush
set pretty print on
bt # view the backtrace
set logging off
show logging # prove logging is back off

Done! You've now saved the gdb backtrace in file "gdb_log.txt".


References:



  1. [the answer I needed is in this question itself] https://stackoverflow.com/questions/2065912/core-dumped-but-core-file-is-not-in-the-current-directory

  2. https://stackoverflow.com/questions/5115613/core-dump-file-analysis

  3. https://stackoverflow.com/questions/8305866/how-do-i-analyze-a-programs-core-dump-file-with-gdb-when-it-has-command-line-pa/30524347#30524347

  4. [very useful info, incl. the Ctrl + trick to force a core dump!] https://unix.stackexchange.com/questions/277331/segmentation-fault-core-dumped-to-where-what-is-it-and-why/409776#409776

  5. [referenced by the answer above] https://unix.stackexchange.com/questions/179998/where-to-search-for-the-core-file-generated-by-the-crash-of-a-linux-application/180004#180004

  6. [answer is in the question itself] Where do I find the core dump in ubuntu 16.04LTS?

  7. [my answer] Stack Overflow: What's the difference between a compiler's -O0 option and -Og option?


Additional reading to do



  1. [I STILL NEED TO STUDY & TRY THIS] How to use LD_PRELOAD with gdb: https://stackoverflow.com/questions/10448254/how-to-use-gdb-with-ld-preload


[#1391] Thursday, August 26, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
hamostic

Total Points: 403
Total Questions: 142
Total Answers: 112

Location: Iceland
Member since Sat, Sep 17, 2022
2 Years ago
hamostic questions
;