Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get the name of the calling function?

I am using gnu tool chain. How can I, at run time, find caller of a function? i.e for example function B() gets called by many functions using function pointers. Now, whenever B gets called, I want to print the callers name. I need this for debugging a certain issue.

like image 776
binW Avatar asked Jun 06 '11 12:06

binW


2 Answers

If you're using GNU, you can use the backtrace functions. There's an example of the use on that man page.

like image 114
richq Avatar answered Oct 24 '22 03:10

richq


The code location of the call to your function is kept by gcc in the __builtin_return_address() intrinsic. To retrieve the name for that, you have to parse the program's symbol table; while that is possible to do, via dladdr(), there are limits to this:

  1. it might not be safe in all contexts to call backtrace()/dladdr() (like, from signal handlers, or concurrently in a multithreaded program, or from contexts where you can't call malloc().).
  2. the operation is not instant but might require putting the calling thread to sleep; this is a bad thing if at the point of the call any locks are held.
  3. there's limits to how well "resolvable" a return address is into a name; e.g. if there are inlined functions calling your function then the caller of your caller would show up (the backtrace() manpage states this as well, as does the one for dladdr() in the "BUGS" section).
  4. In C++, there's the additional challenge of calls through con/destructors/initializers, where the "caller" of your function may end up being some compiler-generated metacode, and the actual place you're interested in could be elsewhere (caller of caller, or even deeper in the call stack).

It's often a better way to decouple tracing and function name resolving; i.e. just output the return addresses (as hex / binary) and then postprocess the resulting log against a symbol table retrieved when the program was running.

like image 41
FrankH. Avatar answered Oct 24 '22 03:10

FrankH.