1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
/* Copyright 2012-present Facebook, Inc.
* Licensed under the Apache License, Version 2.0 */
#include "watchman.h"
#include <array>
#include <limits>
#include <sstream>
#ifdef __APPLE__
#include <pthread.h>
#endif
#include "Logging.h"
#include "watchman_scopeguard.h"
int log_level = W_LOG_ERR;
#ifdef __APPLE__
static pthread_key_t thread_name_key;
#else
static thread_local std::string thread_name_str;
#endif
static constexpr size_t kMaxFrames = 64;
namespace {
template <typename String>
void write_stderr(const String& str) {
w_string_piece piece = str;
ignore_result(write(STDERR_FILENO, piece.data(), piece.size()));
}
template <typename String, typename... Strings>
void write_stderr(const String& str, Strings&&... strings) {
write_stderr(str);
write_stderr(strings...);
}
}
static void log_stack_trace(void) {
#if defined(HAVE_BACKTRACE) && defined(HAVE_BACKTRACE_SYMBOLS)
std::array<void*, kMaxFrames> array;
size_t size;
char **strings;
size_t i;
size = backtrace(array.data(), array.size());
strings = backtrace_symbols(array.data(), size);
write_stderr("Fatal error detected at:\n");
for (i = 0; i < size; i++) {
write_stderr(strings[i], "\n");
}
free(strings);
#endif
}
namespace watchman {
namespace {
struct levelMaps {
// Actually a map of LogLevel, w_string, but it is relatively high friction
// to define the hasher for an enum key :-p
std::unordered_map<int, w_string> levelToLabel;
std::unordered_map<w_string, enum LogLevel> labelToLevel;
levelMaps()
: levelToLabel{{FATAL, "fatal"},
{ERR, "error"},
{OFF, "off"},
{DBG, "debug"}} {
// Create the reverse map
for (auto& it : levelToLabel) {
labelToLevel.insert(
std::make_pair(it.second, static_cast<enum LogLevel>(it.first)));
}
}
};
// Meyers singleton for holding the log level maps
levelMaps& getLevelMaps() {
static levelMaps maps;
return maps;
}
}
const w_string& logLevelToLabel(enum LogLevel level) {
return getLevelMaps().levelToLabel.at(static_cast<int>(level));
}
enum LogLevel logLabelToLevel(const w_string& label) {
return getLevelMaps().labelToLevel.at(label);
}
Log::Log()
: errorPub_(std::make_shared<Publisher>()),
debugPub_(std::make_shared<Publisher>()) {
setStdErrLoggingLevel(ERR);
}
Log& getLog() {
static Log log;
return log;
}
char* Log::currentTimeString(char* buf, size_t bufsize) {
struct timeval tv;
char timebuf[64];
struct tm tm;
gettimeofday(&tv, NULL);
#ifdef _WIN32
tm = *localtime(&tv.tv_sec);
#else
localtime_r(&tv.tv_sec, &tm);
#endif
strftime(timebuf, sizeof(timebuf), "%Y-%m-%dT%H:%M:%S", &tm);
snprintf(buf, bufsize, "%s,%03d", timebuf, (int)tv.tv_usec / 1000);
return buf;
}
const char* Log::getThreadName() {
#ifdef __APPLE__
auto thread_name = (char*)pthread_getspecific(thread_name_key);
#else
auto thread_name = thread_name_str.c_str();
#endif
if (thread_name) {
return thread_name;
}
std::stringstream ss;
ss << std::this_thread::get_id();
return w_set_thread_name(ss.str().c_str());
}
void Log::setStdErrLoggingLevel(enum LogLevel level) {
auto notify = [this]() { doLogToStdErr(); };
switch (level) {
case OFF:
errorSub_.reset();
debugSub_.reset();
return;
case DBG:
if (!debugSub_) {
debugSub_ = debugPub_->subscribe(notify);
}
if (!errorSub_) {
errorSub_ = errorPub_->subscribe(notify);
}
return;
default:
debugSub_.reset();
if (!errorSub_) {
errorSub_ = errorPub_->subscribe(notify);
}
return;
}
}
void Log::doLogToStdErr() {
std::vector<std::shared_ptr<const watchman::Publisher::Item>> items;
{
std::lock_guard<std::mutex> lock(stdErrPrintMutex_);
getPending(items, errorSub_, debugSub_);
}
bool fatal = false;
static w_string kFatal("fatal");
for (auto& item : items) {
auto& log = json_to_w_string(item->payload.get("log"));
ignore_result(write(STDERR_FILENO, log.data(), log.size()));
if (json_to_w_string(item->payload.get("level")) == kFatal) {
fatal = true;
}
}
if (fatal) {
log_stack_trace();
abort();
}
}
} // namespace watchman
#ifndef _WIN32
static void crash_handler(int signo, siginfo_t* si, void*) {
const char *reason = "";
if (si) {
switch (si->si_signo) {
case SIGILL:
switch (si->si_code) {
case ILL_ILLOPC: reason = "illegal opcode"; break;
case ILL_ILLOPN: reason = "illegal operand"; break;
case ILL_ILLADR: reason = "illegal addressing mode"; break;
case ILL_ILLTRP: reason = "illegal trap"; break;
case ILL_PRVOPC: reason = "privileged opcode"; break;
case ILL_PRVREG: reason = "privileged register"; break;
case ILL_COPROC: reason = "co-processor error"; break;
case ILL_BADSTK: reason = "internal stack error"; break;
}
break;
case SIGFPE:
switch (si->si_code) {
case FPE_INTDIV: reason = "integer divide by zero"; break;
case FPE_INTOVF: reason = "integer overflow"; break;
case FPE_FLTDIV: reason = "floating point divide by zero"; break;
case FPE_FLTOVF: reason = "floating point overflow"; break;
case FPE_FLTUND: reason = "floating point underflow"; break;
case FPE_FLTRES: reason = "floating point inexact result"; break;
case FPE_FLTINV: reason = "invalid floating point operation"; break;
case FPE_FLTSUB: reason = "subscript out of range"; break;
}
break;
case SIGSEGV:
switch (si->si_code) {
case SEGV_MAPERR: reason = "address not mapped to object"; break;
case SEGV_ACCERR: reason = "invalid permissions for mapped object";
break;
}
break;
#ifdef SIGBUS
case SIGBUS:
switch (si->si_code) {
case BUS_ADRALN: reason = "invalid address alignment"; break;
case BUS_ADRERR: reason = "non-existent physical address"; break;
}
break;
#endif
}
}
if (si) {
dprintf(STDERR_FILENO,
"Terminating due to signal %d %s "
"generated by pid=%d uid=%d. %s (%p)\n",
signo, w_strsignal(signo), si->si_pid, si->si_uid,
reason, si->si_value.sival_ptr);
} else {
dprintf(STDERR_FILENO, "Terminating due to signal %d %s. %s\n",
signo, w_strsignal(signo), reason);
}
#if defined(HAVE_BACKTRACE) && defined(HAVE_BACKTRACE_SYMBOLS_FD)
{
void *array[24];
size_t size = backtrace(array, sizeof(array)/sizeof(array[0]));
backtrace_symbols_fd(array, size, STDERR_FILENO);
}
#endif
if (signo == SIGTERM) {
w_request_shutdown();
return;
}
abort();
}
#endif
#ifdef _WIN32
static LONG WINAPI exception_filter(LPEXCEPTION_POINTERS excep) {
std::array<void*, kMaxFrames> array;
size_t size;
char** strings;
size_t i;
char timebuf[64];
size = backtrace_from_exception(excep, array.data(), array.size());
strings = backtrace_symbols(array.data(), size);
write_stderr(
watchman::Log::currentTimeString(timebuf, sizeof(timebuf)),
": [",
watchman::Log::getThreadName(),
"] Unhandled win32 exception. Fatal error detected at:\n");
for (i = 0; i < size; i++) {
write_stderr(strings[i], "\n");
}
free(strings);
write_stderr("the stack trace for the exception filter call is:\n");
size = backtrace(array.data(), array.size());
strings = backtrace_symbols(array.data(), size);
for (i = 0; i < size; i++) {
write_stderr(strings[i], "\n");
}
free(strings);
// Terminate the process
abort();
return EXCEPTION_CONTINUE_SEARCH;
}
#endif
void w_setup_signal_handlers(void) {
#ifndef _WIN32
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_sigaction = crash_handler;
sa.sa_flags = SA_SIGINFO|SA_RESETHAND;
sigaction(SIGSEGV, &sa, NULL);
#ifdef SIGBUS
sigaction(SIGBUS, &sa, NULL);
#endif
sigaction(SIGFPE, &sa, NULL);
sigaction(SIGILL, &sa, NULL);
sigaction(SIGTERM, &sa, NULL);
#else
// Don't show error dialogs for background service failures
SetErrorMode(SEM_FAILCRITICALERRORS);
// also tell the C runtime that we should just abort when
// we abort; don't do the crash reporting dialog.
_set_abort_behavior(_WRITE_ABORT_MSG, ~0);
// Force error output to stderr, don't use a msgbox.
_set_error_mode(_OUT_TO_STDERR);
// bridge OS exceptions into our FATAL logger so that we can
// capture a stack trace.
SetUnhandledExceptionFilter(exception_filter);
#endif
std::set_terminate(
[]() { watchman::log(watchman::FATAL, "std::terminate was called\n"); });
}
#ifdef __APPLE__
static w_ctor_fn_type(register_thread_name) {
pthread_key_create(&thread_name_key, free);
}
w_ctor_fn_reg(register_thread_name);
#endif
const char *w_set_thread_name(const char *fmt, ...) {
va_list ap;
#ifdef __APPLE__
auto thread_name = (char*)pthread_getspecific(thread_name_key);
free(thread_name);
#else
char* thread_name = nullptr;
SCOPE_EXIT {
free(thread_name);
};
#endif
va_start(ap, fmt);
ignore_result(vasprintf(&thread_name, fmt, ap));
va_end(ap);
#ifdef __APPLE__
pthread_setspecific(thread_name_key, thread_name);
return thread_name;
#else
thread_name_str = thread_name;
return thread_name_str.c_str();
#endif
}
void w_log(int level, WATCHMAN_FMT_STRING(const char *fmt), ...)
{
va_list ap;
va_start(ap, fmt);
watchman::getLog().logVPrintf(
static_cast<enum watchman::LogLevel>(level), fmt, ap);
va_end(ap);
}
/* vim:ts=2:sw=2:et:
*/
|