ClickHouse/src/Common/StackTrace.cpp

346 lines
9.4 KiB
C++
Raw Normal View History

2019-07-29 22:26:44 +00:00
#include <Common/StackTrace.h>
2019-07-29 22:26:44 +00:00
#include <Common/Dwarf.h>
#include <Common/Elf.h>
#include <Common/SymbolIndex.h>
#include <Common/MemorySanitizer.h>
#include <common/SimpleCache.h>
#include <common/demangle.h>
2019-09-21 18:30:01 +00:00
#include <Core/Defines.h>
#include <cstring>
2019-07-29 22:26:44 +00:00
#include <filesystem>
#include <sstream>
2019-07-29 22:26:44 +00:00
#include <unordered_map>
2019-06-28 18:06:38 +00:00
#if !defined(ARCADIA_BUILD)
# include <Common/config.h>
#endif
#if USE_UNWIND
# include <libunwind.h>
#endif
2019-06-28 18:06:38 +00:00
std::string signalToErrorMessage(int sig, const siginfo_t & info, const ucontext_t & context)
{
std::stringstream error;
switch (sig)
{
case SIGSEGV:
{
/// Print info about address and reason.
if (nullptr == info.si_addr)
error << "Address: NULL pointer.";
else
error << "Address: " << info.si_addr;
#if defined(__x86_64__) && !defined(__FreeBSD__) && !defined(__APPLE__) && !defined(__arm__)
2019-06-28 18:06:38 +00:00
auto err_mask = context.uc_mcontext.gregs[REG_ERR];
if ((err_mask & 0x02))
error << " Access: write.";
else
error << " Access: read.";
#else
UNUSED(context);
2019-06-28 18:06:38 +00:00
#endif
switch (info.si_code)
{
case SEGV_ACCERR:
error << " Attempted access has violated the permissions assigned to the memory area.";
break;
case SEGV_MAPERR:
error << " Address not mapped to object.";
break;
default:
error << " Unknown si_code.";
break;
}
break;
}
case SIGBUS:
{
switch (info.si_code)
{
case BUS_ADRALN:
error << "Invalid address alignment.";
break;
case BUS_ADRERR:
error << "Non-existant physical address.";
break;
case BUS_OBJERR:
error << "Object specific hardware error.";
break;
// Linux specific
#if defined(BUS_MCEERR_AR)
case BUS_MCEERR_AR:
error << "Hardware memory error: action required.";
break;
#endif
#if defined(BUS_MCEERR_AO)
case BUS_MCEERR_AO:
error << "Hardware memory error: action optional.";
break;
#endif
default:
error << "Unknown si_code.";
break;
}
break;
}
case SIGILL:
{
switch (info.si_code)
{
case ILL_ILLOPC:
error << "Illegal opcode.";
break;
case ILL_ILLOPN:
error << "Illegal operand.";
break;
case ILL_ILLADR:
error << "Illegal addressing mode.";
break;
case ILL_ILLTRP:
error << "Illegal trap.";
break;
case ILL_PRVOPC:
error << "Privileged opcode.";
break;
case ILL_PRVREG:
error << "Privileged register.";
break;
case ILL_COPROC:
error << "Coprocessor error.";
break;
case ILL_BADSTK:
error << "Internal stack error.";
break;
default:
error << "Unknown si_code.";
break;
}
break;
}
case SIGFPE:
{
switch (info.si_code)
{
case FPE_INTDIV:
error << "Integer divide by zero.";
break;
case FPE_INTOVF:
error << "Integer overflow.";
break;
case FPE_FLTDIV:
error << "Floating point divide by zero.";
break;
case FPE_FLTOVF:
error << "Floating point overflow.";
break;
case FPE_FLTUND:
error << "Floating point underflow.";
break;
case FPE_FLTRES:
error << "Floating point inexact result.";
break;
case FPE_FLTINV:
error << "Floating point invalid operation.";
break;
case FPE_FLTSUB:
error << "Subscript out of range.";
break;
default:
error << "Unknown si_code.";
break;
}
break;
}
2019-12-02 17:29:19 +00:00
case SIGTSTP:
{
error << "This is a signal used for debugging purposes by the user.";
break;
}
}
2019-12-02 11:29:52 +00:00
2019-06-28 18:06:38 +00:00
return error.str();
}
static void * getCallerAddress(const ucontext_t & context)
2019-06-28 18:06:38 +00:00
{
#if defined(__x86_64__)
/// Get the address at the time the signal was raised from the RIP (x86-64)
#if defined(__FreeBSD__)
return reinterpret_cast<void *>(context.uc_mcontext.mc_rip);
#elif defined(__APPLE__)
return reinterpret_cast<void *>(context.uc_mcontext->__ss.__rip);
#else
return reinterpret_cast<void *>(context.uc_mcontext.gregs[REG_RIP]);
#endif
#elif defined(__aarch64__)
return reinterpret_cast<void *>(context.uc_mcontext.pc);
2019-07-29 22:26:44 +00:00
#else
2019-06-28 18:06:38 +00:00
return nullptr;
2019-07-29 22:26:44 +00:00
#endif
2019-06-28 18:06:38 +00:00
}
2019-07-01 22:11:11 +00:00
StackTrace::StackTrace()
{
tryCapture();
}
2019-06-28 18:06:38 +00:00
2019-07-01 22:11:11 +00:00
StackTrace::StackTrace(const ucontext_t & signal_context)
2019-06-28 18:06:38 +00:00
{
2019-07-01 22:11:11 +00:00
tryCapture();
2019-06-28 18:06:38 +00:00
void * caller_address = getCallerAddress(signal_context);
if (size == 0 && caller_address)
2019-07-01 22:11:11 +00:00
{
frames[0] = caller_address;
size = 1;
}
else
{
/// Skip excessive stack frames that we have created while finding stack trace.
for (size_t i = 0; i < size; ++i)
{
if (frames[i] == caller_address)
{
offset = i;
break;
}
}
2019-06-28 18:06:38 +00:00
}
}
2019-07-01 22:11:11 +00:00
StackTrace::StackTrace(NoCapture)
{
2019-06-28 18:06:38 +00:00
}
2019-07-01 22:11:11 +00:00
void StackTrace::tryCapture()
{
size = 0;
#if USE_UNWIND
size = unw_backtrace(frames.data(), capacity);
2020-01-06 06:19:12 +00:00
__msan_unpoison(frames.data(), size * sizeof(frames[0]));
2019-07-01 22:11:11 +00:00
#endif
}
size_t StackTrace::getSize() const
{
2019-06-28 18:06:38 +00:00
return size;
}
size_t StackTrace::getOffset() const
2019-07-01 22:11:11 +00:00
{
return offset;
2019-06-28 18:06:38 +00:00
}
const StackTrace::Frames & StackTrace::getFrames() const
2019-06-28 18:06:38 +00:00
{
return frames;
2019-06-28 18:06:38 +00:00
}
static void toStringEveryLineImpl(const StackTrace::Frames & frames, size_t offset, size_t size, std::function<void(const std::string &)> callback)
2019-06-28 18:06:38 +00:00
{
if (size == 0)
return callback("<Empty trace>");
2019-06-28 18:06:38 +00:00
#if defined(__ELF__) && !defined(__FreeBSD__)
2019-07-29 22:26:44 +00:00
const DB::SymbolIndex & symbol_index = DB::SymbolIndex::instance();
std::unordered_map<std::string, DB::Dwarf> dwarfs;
std::stringstream out;
2019-06-28 18:06:38 +00:00
for (size_t i = offset; i < size; ++i)
2019-06-28 18:06:38 +00:00
{
2019-12-24 20:07:44 +00:00
const void * virtual_addr = frames[i];
2020-04-22 00:29:38 +00:00
auto * object = symbol_index.findObject(virtual_addr);
2019-12-24 20:07:44 +00:00
uintptr_t virtual_offset = object ? uintptr_t(object->address_begin) : 0;
const void * physical_addr = reinterpret_cast<const void *>(uintptr_t(virtual_addr) - virtual_offset);
2020-01-28 14:39:24 +00:00
out << i << ". ";
2019-06-28 18:06:38 +00:00
2019-12-24 20:07:44 +00:00
if (object)
2019-07-29 22:26:44 +00:00
{
if (std::filesystem::exists(object->name))
2019-06-28 18:06:38 +00:00
{
2019-07-29 22:26:44 +00:00
auto dwarf_it = dwarfs.try_emplace(object->name, *object->elf).first;
2019-06-28 18:06:38 +00:00
2019-07-29 22:26:44 +00:00
DB::Dwarf::LocationInfo location;
2019-12-24 20:07:44 +00:00
if (dwarf_it->second.findAddress(uintptr_t(physical_addr), location, DB::Dwarf::LocationInfoMode::FAST))
2020-01-28 14:39:24 +00:00
out << location.file.toString() << ":" << location.line << ": ";
2019-07-29 22:26:44 +00:00
}
2020-01-28 14:39:24 +00:00
}
2020-04-22 00:29:38 +00:00
auto * symbol = symbol_index.findSymbol(virtual_addr);
2020-01-28 14:39:24 +00:00
if (symbol)
{
int status = 0;
out << demangle(symbol->name, status);
2019-06-28 18:06:38 +00:00
}
2019-07-29 22:26:44 +00:00
else
out << "?";
2020-01-28 14:39:24 +00:00
out << " @ " << physical_addr;
out << " in " << (object ? object->name : "?");
callback(out.str());
out.str({});
2019-06-28 18:06:38 +00:00
}
2019-08-21 00:48:34 +00:00
#else
std::stringstream out;
for (size_t i = offset; i < size; ++i)
{
const void * addr = frames[i];
out << i << ". " << addr;
callback(out.str());
out.str({});
}
#endif
}
2019-06-28 18:06:38 +00:00
static std::string toStringImpl(const StackTrace::Frames & frames, size_t offset, size_t size)
{
std::stringstream out;
toStringEveryLineImpl(frames, offset, size, [&](const std::string & str) { out << str << '\n'; });
2019-07-29 22:26:44 +00:00
return out.str();
2019-06-28 18:06:38 +00:00
}
void StackTrace::toStringEveryLine(std::function<void(const std::string &)> callback) const
{
toStringEveryLineImpl(frames, offset, size, std::move(callback));
}
std::string StackTrace::toString() const
{
/// Calculation of stack trace text is extremely slow.
/// We use simple cache because otherwise the server could be overloaded by trash queries.
static SimpleCache<decltype(toStringImpl), &toStringImpl> func_cached;
return func_cached(frames, offset, size);
}
std::string StackTrace::toString(void ** frames_, size_t offset, size_t size)
{
__msan_unpoison(frames_, size * sizeof(*frames_));
StackTrace::Frames frames_copy{};
for (size_t i = 0; i < size; ++i)
frames_copy[i] = frames_[i];
static SimpleCache<decltype(toStringImpl), &toStringImpl> func_cached;
return func_cached(frames_copy, offset, size);
}