Tracing internal function calls in a binary

Dear everyone who likes Unix,

I have a binary (which uses glib and was compiled from C) and I’d like to get output with the function name each time any function in that binary is called. So, I’d like the output of ltrace(1), but for function calls rather than dynamic library calls. I am bored of adding g_debug("%s", G_STRFUNC); to the top of all my functions.

You’d think this would be easy, given that incredibly similar tools have existed for twenty years, but so far the shortest answer I’ve heard starts “well, you could write a gcc profile function stub that..”. It would be nice not have to recompile, since gdb certainly doesn’t have to, but I’d welcome the way to achieve this with a recompile as well.

Any ideas? Thanks!

Update: jmbr wins, with the only solution that doesn’t require anything more than gdb, and no recompile. Here’s his script: http://superadditive.com/software/callgraph. I’d like to work on it to add support for modules loaded with dlopen().

Comments

  1. Dtrace can do this.

    I’m not sure if Systemtap can dive into userspace these days, or if they have a related tool for that.

    Reply
  2. You might want to check out frysk
    http://www.sourceware.org/frysk/

    It very recently (read today) got various function and syscall tracing options merged in by Petr Machata:
    http://sourceware.org/ml/frysk/2007-q4/msg00164.html

    man page explaining the different options of call tracing:
    http://sourceware.org/git/?p=frysk.git;a=blob;f=frysk-core/frysk/bindir/ftrace.xml;hb=HEAD

    I am afraid you will have to build it from a current git checkout for now though:
    http://sourceware.org/frysk/build/

    And you might find some bugs, but we welcome reports!
    http://sourceware.org/bugzilla/

    Reply
  3. jmbr, thanks so much! This looks perfect, and works.

    My process opens some shared libraries with the glib module_open() call, though, and those obviously don’t get breakpoints set ahead of time.

    Those libraries have individual debuginfo files in /usr/lib/debug; I’m going to try doing `nm /usr/lib/debug/foo/*.debug` and massaging the output so that it fits into the trace.gdb style, then I’ll hope that gdb can resolve the functions once they’re dynamically loaded. Can anyone think of a reason this won’t work, or a better way? 🙂

    Thanks!

    Reply
  4. Hi Toby!

    Yes, your example is what one of my coworkers recommended (but he didn’t have code handy, so thanks for that).

    It’s clear that a gdb solution is preferable, though. I wonder if a patch to accomplish jmbr’s hack through a “trace *”-like syntax would be accepted upstream.

    Reply
  5. > I thought that oprofile could do this.

    So, are you surprised to learn that it can’t, or are you trying to be helpful but in a smug oh-look-I-know-more-than-someone-else-on-the-internet way?

    If you are trying to be helpful, the grown up way to do that is saying “oprofile will do want you want”.

    Thanks.

    Reply
  6. oprofile can’t do this, because it’s a statistical profiler. If you have a function which is called frequently but very short, it may never notice it being called.

    Reply
  7. Like Mark said, ftrace — part of frysk — can do this. frysk has a lot of potential for fun stuff like this; last year I was playing around writing jython scripts to debug things. Back then frysk wasn’t mature enough to do much interesting, but this has changed.

    Also ltrace can do it for things loaded from shared libraries. Unfortunately this doesn’t work with the main executable. You could hack around this, though, by having a small main and then putting the rest of your program into a .so.

    Pace Federico, but systemtap can’t do userspace yet. However, that is also coming.

    Finally, I wonder if a valgrind skin exists to do this.

    Reply

Leave a Reply to Ian McKellar Cancel reply

Your email address will not be published. Required fields are marked *