2016-01-01 00:45:01 +01:00
|
|
|
/*
|
|
|
|
* stacktrace.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Gioacchino Mazzurco <gio@eigenlab.org>
|
|
|
|
* Copyright (C) 2008 Timo Bingmann http://idlebox.net/
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
*/
|
2015-12-31 19:56:50 +01:00
|
|
|
|
|
|
|
#ifndef _STACKTRACE_H_
|
|
|
|
#define _STACKTRACE_H_
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2016-01-01 00:45:01 +01:00
|
|
|
|
2016-07-18 18:51:27 +02:00
|
|
|
#if !defined(WINDOWS_SYS) && !defined(__ANDROID__)
|
2016-01-01 00:45:01 +01:00
|
|
|
|
2015-12-31 19:56:50 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <execinfo.h>
|
|
|
|
#include <cxxabi.h>
|
|
|
|
|
|
|
|
/** Print a demangled stack backtrace of the caller function to FILE* out. */
|
|
|
|
static inline void print_stacktrace(FILE *out = stderr, unsigned int max_frames = 63)
|
|
|
|
{
|
2016-01-01 00:45:01 +01:00
|
|
|
fprintf(out, "stack trace:\n");
|
2015-12-31 19:56:50 +01:00
|
|
|
|
2016-01-01 00:45:01 +01:00
|
|
|
// storage array for stack trace address data
|
|
|
|
void* addrlist[max_frames+1];
|
2015-12-31 19:56:50 +01:00
|
|
|
|
2016-01-01 00:45:01 +01:00
|
|
|
// retrieve current stack addresses
|
|
|
|
int addrlen = backtrace(addrlist, sizeof(addrlist) / sizeof(void*));
|
2015-12-31 19:56:50 +01:00
|
|
|
|
2016-01-01 00:45:01 +01:00
|
|
|
if (addrlen == 0)
|
|
|
|
{
|
|
|
|
fprintf(out, " <empty, possibly corrupt>\n");
|
|
|
|
return;
|
|
|
|
}
|
2015-12-31 19:56:50 +01:00
|
|
|
|
2016-01-01 00:45:01 +01:00
|
|
|
// resolve addresses into strings containing "filename(function+address)",
|
|
|
|
// this array must be free()-ed
|
|
|
|
char** symbollist = backtrace_symbols(addrlist, addrlen);
|
2015-12-31 19:56:50 +01:00
|
|
|
|
2016-01-01 00:45:01 +01:00
|
|
|
// allocate string which will be filled with the demangled function name
|
|
|
|
size_t funcnamesize = 256;
|
|
|
|
char* funcname = (char*)malloc(funcnamesize);
|
2015-12-31 19:56:50 +01:00
|
|
|
|
2016-01-01 00:45:01 +01:00
|
|
|
// iterate over the returned symbol lines. skip the first, it is the
|
|
|
|
// address of this function.
|
|
|
|
for (int i = 1; i < addrlen; i++)
|
2015-12-31 19:56:50 +01:00
|
|
|
{
|
2016-01-01 00:45:01 +01:00
|
|
|
char *begin_name = 0, *begin_offset = 0, *end_offset = 0;
|
2015-12-31 19:56:50 +01:00
|
|
|
|
2016-01-01 00:45:01 +01:00
|
|
|
// find parentheses and +address offset surrounding the mangled name:
|
|
|
|
// ./module(function+0x15c) [0x8048a6d]
|
|
|
|
for (char *p = symbollist[i]; *p; ++p)
|
|
|
|
{
|
|
|
|
if (*p == '(') begin_name = p;
|
|
|
|
else if (*p == '+') begin_offset = p;
|
|
|
|
else if (*p == ')' && begin_offset)
|
|
|
|
{
|
|
|
|
end_offset = p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (begin_name && begin_offset && end_offset && begin_name < begin_offset)
|
|
|
|
{
|
|
|
|
*begin_name++ = '\0';
|
|
|
|
*begin_offset++ = '\0';
|
|
|
|
*end_offset = '\0';
|
|
|
|
|
|
|
|
// mangled name is now in [begin_name, begin_offset) and caller
|
|
|
|
// offset in [begin_offset, end_offset). now apply
|
|
|
|
// __cxa_demangle():
|
|
|
|
|
|
|
|
int status;
|
|
|
|
char* ret = abi::__cxa_demangle(begin_name, funcname, &funcnamesize, &status);
|
|
|
|
if (status == 0)
|
|
|
|
{
|
|
|
|
funcname = ret; // use possibly realloc()-ed string
|
|
|
|
fprintf(out, " %s : %s+%s\n", symbollist[i], funcname, begin_offset);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// demangling failed. Output function name as a C function with
|
|
|
|
// no arguments.
|
|
|
|
fprintf(out, " %s : %s()+%s\n", symbollist[i], begin_name, begin_offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// couldn't parse the line? print the whole line.
|
|
|
|
fprintf(out, " %s\n", symbollist[i]);
|
|
|
|
}
|
2015-12-31 19:56:50 +01:00
|
|
|
}
|
|
|
|
|
2016-01-01 00:45:01 +01:00
|
|
|
free(funcname);
|
|
|
|
free(symbollist);
|
|
|
|
}
|
|
|
|
|
2016-07-18 18:51:27 +02:00
|
|
|
#else // !defined(WINDOWS_SYS) && !defined(__ANDROID__)
|
2016-01-01 00:45:01 +01:00
|
|
|
static inline void print_stacktrace(FILE *out = stderr, unsigned int max_frames = 63)
|
|
|
|
{
|
|
|
|
(void) max_frames;
|
|
|
|
|
2016-07-18 18:51:27 +02:00
|
|
|
fprintf(out, "TODO: 2016/01/01 print_stacktrace not implemented yet for WINDOWS_SYS and ANDROID\n");
|
2015-12-31 19:56:50 +01:00
|
|
|
}
|
2016-07-18 18:51:27 +02:00
|
|
|
#endif // !defined(WINDOWS_SYS) && !defined(__ANDROID__)
|
2015-12-31 19:56:50 +01:00
|
|
|
|
|
|
|
#endif // _STACKTRACE_H_
|