2013-04-11 19:54:35 +02:00
|
|
|
#include "util/stack_trace.h"
|
|
|
|
|
|
|
|
#ifdef OS_LINUX
|
|
|
|
|
|
|
|
#include <execinfo.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
static const char* GetExecutableName()
|
|
|
|
{
|
|
|
|
static char name[1024];
|
|
|
|
|
|
|
|
char link[1024];
|
|
|
|
snprintf(link, sizeof(link), "/proc/%d/exe", getpid());
|
|
|
|
auto read = readlink(link, name, sizeof(name));
|
|
|
|
if (-1 == read) {
|
|
|
|
return nullptr;
|
|
|
|
} else {
|
|
|
|
name[read] = 0;
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void StackTraceHandler(int sig) {
|
|
|
|
// reset to default handler
|
|
|
|
signal(sig, SIG_DFL);
|
|
|
|
|
2013-04-22 19:14:54 +02:00
|
|
|
fprintf(stderr, "Received signal %d (%s)\n", sig, strsignal(sig));
|
2013-04-11 19:54:35 +02:00
|
|
|
|
|
|
|
const int kMaxFrames = 100;
|
|
|
|
void *frames[kMaxFrames];
|
|
|
|
|
|
|
|
auto num_frames = backtrace(frames, kMaxFrames);
|
|
|
|
auto symbols = backtrace_symbols(frames, num_frames);
|
|
|
|
|
|
|
|
auto executable = GetExecutableName();
|
|
|
|
|
|
|
|
const int kSkip = 2; // skip the top two signal handler related frames
|
|
|
|
|
|
|
|
for (int i = kSkip; i < num_frames; ++i)
|
|
|
|
{
|
2013-04-22 19:14:54 +02:00
|
|
|
fprintf(stderr, "#%-2d %p ", i - kSkip, frames[i]);
|
2013-04-11 19:54:35 +02:00
|
|
|
if (symbols) {
|
2013-04-22 19:14:54 +02:00
|
|
|
fprintf(stderr, "%s ", symbols[i]);
|
2013-04-11 19:54:35 +02:00
|
|
|
}
|
|
|
|
if (executable) {
|
|
|
|
// out source to addr2line, for the address translation
|
|
|
|
const int kLineMax = 256;
|
|
|
|
char cmd[kLineMax];
|
|
|
|
sprintf(cmd,"addr2line %p -e %s 2>&1", frames[i] , executable);
|
|
|
|
auto f = popen(cmd, "r");
|
|
|
|
if (f) {
|
|
|
|
char line[kLineMax];
|
|
|
|
while (fgets(line, sizeof(line), f)) {
|
2013-04-22 19:14:54 +02:00
|
|
|
fprintf(stderr, "%s", line);
|
2013-04-11 19:54:35 +02:00
|
|
|
}
|
|
|
|
pclose(f);
|
|
|
|
} else {
|
2013-04-22 19:14:54 +02:00
|
|
|
fprintf(stderr, "\n");
|
2013-04-11 19:54:35 +02:00
|
|
|
}
|
|
|
|
} else {
|
2013-04-22 19:14:54 +02:00
|
|
|
fprintf(stderr, "\n");
|
2013-04-11 19:54:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// re-signal to default handler (so we still get core dump if needed...)
|
|
|
|
raise(sig);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstallStackTraceHandler() {
|
|
|
|
// just use the plain old signal as it's simple and sufficient
|
|
|
|
// for this use case
|
|
|
|
signal(SIGILL, StackTraceHandler);
|
|
|
|
signal(SIGSEGV, StackTraceHandler);
|
|
|
|
signal(SIGBUS, StackTraceHandler);
|
|
|
|
signal(SIGABRT, StackTraceHandler);
|
2013-04-22 19:14:54 +02:00
|
|
|
|
|
|
|
printf("Installed stack trace handler for SIGILL SIGSEGV SIGBUS SIGABRT\n");
|
|
|
|
|
2013-04-11 19:54:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace leveldb
|
|
|
|
|
|
|
|
#else // no-op for non-linux system for now
|
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
void InstallStackTraceHandler() {}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // OS_LINUX
|