2009-01-18 18:12:38 +03:00
|
|
|
// stacktrace.h (c) 2008, Timo Bingmann from http://idlebox.net/
|
|
|
|
// published under the WTFPL v2.0
|
|
|
|
|
|
|
|
#ifndef _STACKTRACE_H_
|
|
|
|
#define _STACKTRACE_H_
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <execinfo.h>
|
|
|
|
#include <cxxabi.h>
|
|
|
|
|
2017-04-27 15:32:02 +03:00
|
|
|
#include <vector>
|
|
|
|
|
2009-01-18 18:12:38 +03:00
|
|
|
/** Print a demangled stack backtrace of the caller function to FILE* out. */
|
2022-04-02 11:37:30 +03:00
|
|
|
static inline void print_stacktrace(FILE *out = stderr, const int max_frames = 63)
|
2009-01-18 18:12:38 +03:00
|
|
|
{
|
2017-10-25 13:49:30 +03:00
|
|
|
fprintf(out, "Stack trace:\n");
|
2009-01-18 18:12:38 +03:00
|
|
|
|
|
|
|
// storage array for stack trace address data
|
2017-04-27 15:32:02 +03:00
|
|
|
std::vector<void *> addrlist(max_frames + 1);
|
2009-01-18 18:12:38 +03:00
|
|
|
|
|
|
|
// retrieve current stack addresses
|
2017-04-27 15:32:02 +03:00
|
|
|
int addrlen = backtrace(addrlist.data(), addrlist.size());
|
2009-01-18 18:12:38 +03:00
|
|
|
|
2020-11-16 10:02:11 +03:00
|
|
|
if (addrlen == 0)
|
|
|
|
{
|
2016-12-17 19:29:43 +03:00
|
|
|
fprintf(out, " <empty, possibly corrupt>\n");
|
|
|
|
return;
|
2009-01-18 18:12:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// resolve addresses into strings containing "filename(function+address)",
|
|
|
|
// this array must be free()-ed
|
2017-04-27 15:32:02 +03:00
|
|
|
char * *symbollist = backtrace_symbols(addrlist.data(), addrlen);
|
2009-01-18 18:12:38 +03:00
|
|
|
|
|
|
|
// allocate string which will be filled with the demangled function name
|
|
|
|
size_t funcnamesize = 256;
|
2017-05-29 15:10:31 +03:00
|
|
|
char *funcname = static_cast<char *>(malloc(funcnamesize));
|
2009-01-18 18:12:38 +03:00
|
|
|
|
2016-12-17 19:35:40 +03:00
|
|
|
int functionNamesFound = 0;
|
2009-01-18 18:12:38 +03:00
|
|
|
// iterate over the returned symbol lines. skip the first, it is the
|
|
|
|
// address of this function.
|
2020-11-16 10:02:11 +03:00
|
|
|
for (int i = 2; i < addrlen; i++)
|
|
|
|
{
|
2016-12-17 19:29:43 +03:00
|
|
|
char *begin_name = 0, *begin_offset = 0, *end_offset = 0;
|
2009-01-18 18:12:38 +03:00
|
|
|
|
2016-12-17 19:29:43 +03:00
|
|
|
// find parentheses and +address offset surrounding the mangled name:
|
|
|
|
// ./module(function+0x15c) [0x8048a6d]
|
|
|
|
// fprintf(out, "%s TT\n", symbollist[i]);
|
2020-11-16 10:02:11 +03:00
|
|
|
for (char *p = symbollist[i]; *p; ++p)
|
|
|
|
{
|
|
|
|
if (*p == '(')
|
|
|
|
{
|
2016-12-17 19:29:43 +03:00
|
|
|
begin_name = p;
|
|
|
|
}
|
2020-11-16 10:02:11 +03:00
|
|
|
else if (*p == '+')
|
|
|
|
{
|
2016-12-17 19:29:43 +03:00
|
|
|
begin_offset = p;
|
|
|
|
}
|
2020-11-16 10:02:11 +03:00
|
|
|
else if ((*p == ')') && begin_offset)
|
|
|
|
{
|
2016-12-17 19:29:43 +03:00
|
|
|
end_offset = p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-01-18 18:12:38 +03:00
|
|
|
|
2016-12-17 19:29:43 +03:00
|
|
|
if (begin_name && begin_offset && end_offset
|
2020-11-16 10:02:11 +03:00
|
|
|
&& (begin_name < begin_offset))
|
|
|
|
{
|
2016-12-17 19:29:43 +03:00
|
|
|
*begin_name++ = '\0';
|
|
|
|
*begin_offset++ = '\0';
|
|
|
|
*end_offset = '\0';
|
2009-01-18 18:12:38 +03:00
|
|
|
|
2016-12-17 19:29:43 +03:00
|
|
|
// mangled name is now in [begin_name, begin_offset) and caller
|
|
|
|
// offset in [begin_offset, end_offset). now apply
|
|
|
|
// __cxa_demangle():
|
2009-01-18 18:12:38 +03:00
|
|
|
|
2016-12-17 19:29:43 +03:00
|
|
|
int status;
|
|
|
|
char *ret = abi::__cxa_demangle(begin_name,
|
|
|
|
funcname, &funcnamesize, &status);
|
2020-11-16 10:02:11 +03:00
|
|
|
if (status == 0)
|
|
|
|
{
|
2016-12-17 19:29:43 +03:00
|
|
|
funcname = ret; // use possibly realloc()-ed string
|
|
|
|
fprintf(out, " %s : %s+%s %s\n",
|
|
|
|
symbollist[i], funcname, begin_offset, ++end_offset);
|
|
|
|
}
|
2020-11-16 10:02:11 +03:00
|
|
|
else
|
|
|
|
{
|
2016-12-17 19:29:43 +03:00
|
|
|
// demangling failed. Output function name as a C function with
|
|
|
|
// no arguments.
|
|
|
|
fprintf(out, " %s : %s()+%s %s\n",
|
|
|
|
symbollist[i], begin_name, begin_offset, ++end_offset);
|
|
|
|
}
|
2016-12-17 19:35:40 +03:00
|
|
|
++functionNamesFound;
|
2016-12-17 19:29:43 +03:00
|
|
|
}
|
2020-11-16 10:02:11 +03:00
|
|
|
else
|
|
|
|
{
|
2016-12-17 19:29:43 +03:00
|
|
|
// couldn't parse the line? print the whole line.
|
|
|
|
fprintf(out, " %s\n", symbollist[i]);
|
|
|
|
}
|
2009-01-18 18:12:38 +03:00
|
|
|
}
|
|
|
|
|
2020-11-16 10:02:11 +03:00
|
|
|
if (!functionNamesFound)
|
|
|
|
{
|
2016-12-17 19:35:40 +03:00
|
|
|
fprintf(out, "There were no function names found in the stack trace\n."
|
|
|
|
"Seems like debug symbols are not installed, and the stack trace is useless.\n");
|
|
|
|
}
|
2020-11-16 10:02:11 +03:00
|
|
|
if (functionNamesFound < addrlen - 2)
|
|
|
|
{
|
2016-12-17 19:35:40 +03:00
|
|
|
fprintf(out, "Consider installing debug symbols for packages containing files with empty"
|
|
|
|
" function names (i.e. empty braces \"()\") to make your stack trace more useful\n");
|
|
|
|
}
|
2009-01-18 18:12:38 +03:00
|
|
|
free(funcname);
|
|
|
|
free(symbollist);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // _STACKTRACE_H_
|