How can I include/view the source code of malloc
in gdb?
I want to do a step by step execution in gdb
, and step into malloc.c
source code when any of the malloc functions is called.
Currently what gdb says is:
malloc.c: No such file or directory.
This guy here faced the same problem, but they do not mention a solution, ie how to actually step into the source code of malloc.
I am on Ubuntu server 14.04
, and I have already tried to install the following:
libc6-dbg
, libc6-dev
, and libc6-dbgsym
.
I don't even know if one of these packages might help, but installing the libc-dbgsym
gives me the following error:
dpkg: error processing archive /var/cache/apt/archives/libc6-dbgsym_2.19-0ubuntu6.6_amd64.ddeb (--unpack): trying to overwrite
'/usr/lib/debug/usr/lib/x86_64-linux-gnu/audit/sotruss-lib.so', which
is also in package libc6-dbg:amd64 2.19-0ubuntu6.6 dpkg-deb: error:
subprocess paste was killed by signal (Broken pipe)
The following worked for me. Not sure whether there is a better way.
sudo apt-get install libc6-dbg
sudo apt-get install eglibc-source
./usr/src/glibc $ sudo tar xvf eglibc-2.19.tar.xz
(gdb) dir /usr/src/glibc/eglibc-2.19/malloc
Gdb can only show the source codes because the debug-compiled binaries contain references between the binary code and the source files.
malloc()
is in the C library. On normal systems, it is not compiled with debug metadata, and its sources are also not installed in the system.But they are reachable, you only need to install the debug versions of these libraries. For example, on debian an
apt-get install glibc-debug
or similar will do it. On SuSE, azipper in libc6-debug
(afaik, maybe the exact package names could be a little bit differ).