strace for library calls

9,130

Solution 1

ltrace -- A library call tracer.

It only works on Linux and in a small subset of architectures. Calls to dlopen()ed libraries will not be traced. Further pointers from man page and /etc/ltrace.conf

Solution 2

Sometimes ltrace works. In general, this calls for a debugger such as GDB. You can get an idea of which functions to put trace points or break points on by looking at the call structure in the disassembly (objdump -d /path/to/executable).

Share:
9,130
Mauricio
Author by

Mauricio

Updated on September 18, 2022

Comments

  • Mauricio
    Mauricio over 1 year

    I know of strace, which is super handy for watching system calls. Is there an equivalent that can trace calls to external libraries?

    For example, I'm trying to debug some SSLeay misbehavior with a third-party binary that I cannot access the code for (and who's developer is unresponsive). I believe I have nailed down the problem, but I can't test this without seeing exactly how the data being signature-checked is being formatted for sending off to SSLeay.

  • Mauricio
    Mauricio over 12 years
    Is there any solution available for dlopen()ed libraries?