1//===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines some helpful functions for dealing with the possibility of
11// Unix signals occurring while your program is running.
12//
13//===----------------------------------------------------------------------===//
14//
15// This file is extremely careful to only do signal-safe things while in a
16// signal handler. In particular, memory allocation and acquiring a mutex
17// while in a signal handler should never occur. ManagedStatic isn't usable from
18// a signal handler for 2 reasons:
19//
20//  1. Creating a new one allocates.
21//  2. The signal handler could fire while llvm_shutdown is being processed, in
22//     which case the ManagedStatic is in an unknown state because it could
23//     already have been destroyed, or be in the process of being destroyed.
24//
25// Modifying the behavior of the signal handlers (such as registering new ones)
26// can acquire a mutex, but all this guarantees is that the signal handler
27// behavior is only modified by one thread at a time. A signal handler can still
28// fire while this occurs!
29//
30// Adding work to a signal handler requires lock-freedom (and assume atomics are
31// always lock-free) because the signal handler could fire while new work is
32// being added.
33//
34//===----------------------------------------------------------------------===//
35
36#include "Unix.h"
37#include "llvm/ADT/STLExtras.h"
38#include "llvm/Config/config.h"
39#include "llvm/Demangle/Demangle.h"
40#include "llvm/Support/FileSystem.h"
41#include "llvm/Support/FileUtilities.h"
42#include "llvm/Support/Format.h"
43#include "llvm/Support/MemoryBuffer.h"
44#include "llvm/Support/Mutex.h"
45#include "llvm/Support/Program.h"
46#include "llvm/Support/UniqueLock.h"
47#include "llvm/Support/raw_ostream.h"
48#include <algorithm>
49#include <string>
50#include <sysexits.h>
51#ifdef HAVE_BACKTRACE
52# include BACKTRACE_HEADER         // For backtrace().
53#endif
54#if HAVE_SIGNAL_H
55#include <signal.h>
56#endif
57#if HAVE_SYS_STAT_H
58#include <sys/stat.h>
59#endif
60#if HAVE_DLFCN_H
61#include <dlfcn.h>
62#endif
63#if HAVE_MACH_MACH_H
64#include <mach/mach.h>
65#endif
66#if HAVE_LINK_H
67#include <link.h>
68#endif
69#ifdef HAVE__UNWIND_BACKTRACE
70// FIXME: We should be able to use <unwind.h> for any target that has an
71// _Unwind_Backtrace function, but on FreeBSD the configure test passes
72// despite the function not existing, and on Android, <unwind.h> conflicts
73// with <link.h>.
74#ifdef __GLIBC__
75#include <unwind.h>
76#else
77#undef HAVE__UNWIND_BACKTRACE
78#endif
79#endif
80
81using namespace llvm;
82
83static RETSIGTYPE SignalHandler(int Sig);  // defined below.
84
85/// The function to call if ctrl-c is pressed.
86using InterruptFunctionType = void (*)();
87static std::atomic<InterruptFunctionType> InterruptFunction =
88    ATOMIC_VAR_INIT(nullptr);
89
90namespace {
91/// Signal-safe removal of files.
92/// Inserting and erasing from the list isn't signal-safe, but removal of files
93/// themselves is signal-safe. Memory is freed when the head is freed, deletion
94/// is therefore not signal-safe either.
95class FileToRemoveList {
96  std::atomic<char *> Filename = ATOMIC_VAR_INIT(nullptr);
97  std::atomic<FileToRemoveList *> Next = ATOMIC_VAR_INIT(nullptr);
98
99  FileToRemoveList() = default;
100  // Not signal-safe.
101  FileToRemoveList(const std::string &str) : Filename(strdup(str.c_str())) {}
102
103public:
104  // Not signal-safe.
105  ~FileToRemoveList() {
106    if (FileToRemoveList *N = Next.exchange(nullptr))
107      delete N;
108    if (char *F = Filename.exchange(nullptr))
109      free(F);
110  }
111
112  // Not signal-safe.
113  static void insert(std::atomic<FileToRemoveList *> &Head,
114                     const std::string &Filename) {
115    // Insert the new file at the end of the list.
116    FileToRemoveList *NewHead = new FileToRemoveList(Filename);
117    std::atomic<FileToRemoveList *> *InsertionPoint = &Head;
118    FileToRemoveList *OldHead = nullptr;
119    while (!InsertionPoint->compare_exchange_strong(OldHead, NewHead)) {
120      InsertionPoint = &OldHead->Next;
121      OldHead = nullptr;
122    }
123  }
124
125  // Not signal-safe.
126  static void erase(std::atomic<FileToRemoveList *> &Head,
127                    const std::string &Filename) {
128    // Use a lock to avoid concurrent erase: the comparison would access
129    // free'd memory.
130    static ManagedStatic<sys::SmartMutex<true>> Lock;
131    sys::SmartScopedLock<true> Writer(*Lock);
132
133    for (FileToRemoveList *Current = Head.load(); Current;
134         Current = Current->Next.load()) {
135      if (char *OldFilename = Current->Filename.load()) {
136        if (OldFilename != Filename)
137          continue;
138        // Leave an empty filename.
139        OldFilename = Current->Filename.exchange(nullptr);
140        // The filename might have become null between the time we
141        // compared it and we exchanged it.
142        if (OldFilename)
143          free(OldFilename);
144      }
145    }
146  }
147
148  // Signal-safe.
149  static void removeAllFiles(std::atomic<FileToRemoveList *> &Head) {
150    // If cleanup were to occur while we're removing files we'd have a bad time.
151    // Make sure we're OK by preventing cleanup from doing anything while we're
152    // removing files. If cleanup races with us and we win we'll have a leak,
153    // but we won't crash.
154    FileToRemoveList *OldHead = Head.exchange(nullptr);
155
156    for (FileToRemoveList *currentFile = OldHead; currentFile;
157         currentFile = currentFile->Next.load()) {
158      // If erasing was occuring while we're trying to remove files we'd look
159      // at free'd data. Take away the path and put it back when done.
160      if (char *path = currentFile->Filename.exchange(nullptr)) {
161        // Get the status so we can determine if it's a file or directory. If we
162        // can't stat the file, ignore it.
163        struct stat buf;
164        if (stat(path, &buf) != 0)
165          continue;
166
167        // If this is not a regular file, ignore it. We want to prevent removal
168        // of special files like /dev/null, even if the compiler is being run
169        // with the super-user permissions.
170        if (!S_ISREG(buf.st_mode))
171          continue;
172
173        // Otherwise, remove the file. We ignore any errors here as there is
174        // nothing else we can do.
175        unlink(path);
176
177        // We're done removing the file, erasing can safely proceed.
178        currentFile->Filename.exchange(path);
179      }
180    }
181
182    // We're done removing files, cleanup can safely proceed.
183    Head.exchange(OldHead);
184  }
185};
186static std::atomic<FileToRemoveList *> FilesToRemove = ATOMIC_VAR_INIT(nullptr);
187
188/// Clean up the list in a signal-friendly manner.
189/// Recall that signals can fire during llvm_shutdown. If this occurs we should
190/// either clean something up or nothing at all, but we shouldn't crash!
191struct FilesToRemoveCleanup {
192  // Not signal-safe.
193  ~FilesToRemoveCleanup() {
194    FileToRemoveList *Head = FilesToRemove.exchange(nullptr);
195    if (Head)
196      delete Head;
197  }
198};
199} // namespace
200
201static StringRef Argv0;
202
203// Signals that represent requested termination. There's no bug or failure, or
204// if there is, it's not our direct responsibility. For whatever reason, our
205// continued execution is no longer desirable.
206static const int IntSigs[] = {
207  SIGHUP, SIGINT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2
208};
209
210// Signals that represent that we have a bug, and our prompt termination has
211// been ordered.
212static const int KillSigs[] = {
213  SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGQUIT
214#ifdef SIGSYS
215  , SIGSYS
216#endif
217#ifdef SIGXCPU
218  , SIGXCPU
219#endif
220#ifdef SIGXFSZ
221  , SIGXFSZ
222#endif
223#ifdef SIGEMT
224  , SIGEMT
225#endif
226};
227
228static std::atomic<unsigned> NumRegisteredSignals = ATOMIC_VAR_INIT(0);
229static struct {
230  struct sigaction SA;
231  int SigNo;
232} RegisteredSignalInfo[array_lengthof(IntSigs) + array_lengthof(KillSigs)];
233
234#if defined(HAVE_SIGALTSTACK)
235// Hold onto both the old and new alternate signal stack so that it's not
236// reported as a leak. We don't make any attempt to remove our alt signal
237// stack if we remove our signal handlers; that can't be done reliably if
238// someone else is also trying to do the same thing.
239static stack_t OldAltStack;
240static void* NewAltStackPointer;
241
242static void CreateSigAltStack() {
243  const size_t AltStackSize = MINSIGSTKSZ + 64 * 1024;
244
245  // If we're executing on the alternate stack, or we already have an alternate
246  // signal stack that we're happy with, there's nothing for us to do. Don't
247  // reduce the size, some other part of the process might need a larger stack
248  // than we do.
249  if (sigaltstack(nullptr, &OldAltStack) != 0 ||
250      OldAltStack.ss_flags & SS_ONSTACK ||
251      (OldAltStack.ss_sp && OldAltStack.ss_size >= AltStackSize))
252    return;
253
254  stack_t AltStack = {};
255  AltStack.ss_sp = static_cast<char *>(safe_malloc(AltStackSize));
256  NewAltStackPointer = AltStack.ss_sp; // Save to avoid reporting a leak.
257  AltStack.ss_size = AltStackSize;
258  if (sigaltstack(&AltStack, &OldAltStack) != 0)
259    free(AltStack.ss_sp);
260}
261#else
262static void CreateSigAltStack() {}
263#endif
264
265static void RegisterHandlers() { // Not signal-safe.
266  // The mutex prevents other threads from registering handlers while we're
267  // doing it. We also have to protect the handlers and their count because
268  // a signal handler could fire while we're registeting handlers.
269  static ManagedStatic<sys::SmartMutex<true>> SignalHandlerRegistrationMutex;
270  sys::SmartScopedLock<true> Guard(*SignalHandlerRegistrationMutex);
271
272  // If the handlers are already registered, we're done.
273  if (NumRegisteredSignals.load() != 0)
274    return;
275
276  // Create an alternate stack for signal handling. This is necessary for us to
277  // be able to reliably handle signals due to stack overflow.
278  CreateSigAltStack();
279
280  auto registerHandler = [&](int Signal) {
281    unsigned Index = NumRegisteredSignals.load();
282    assert(Index < array_lengthof(RegisteredSignalInfo) &&
283           "Out of space for signal handlers!");
284
285    struct sigaction NewHandler;
286
287    NewHandler.sa_handler = SignalHandler;
288    NewHandler.sa_flags = SA_NODEFER | SA_RESETHAND | SA_ONSTACK;
289    sigemptyset(&NewHandler.sa_mask);
290
291    // Install the new handler, save the old one in RegisteredSignalInfo.
292    sigaction(Signal, &NewHandler, &RegisteredSignalInfo[Index].SA);
293    RegisteredSignalInfo[Index].SigNo = Signal;
294    ++NumRegisteredSignals;
295  };
296
297  for (auto S : IntSigs)
298    registerHandler(S);
299  for (auto S : KillSigs)
300    registerHandler(S);
301}
302
303static void UnregisterHandlers() {
304  // Restore all of the signal handlers to how they were before we showed up.
305  for (unsigned i = 0, e = NumRegisteredSignals.load(); i != e; ++i) {
306    sigaction(RegisteredSignalInfo[i].SigNo,
307              &RegisteredSignalInfo[i].SA, nullptr);
308    --NumRegisteredSignals;
309  }
310}
311
312/// Process the FilesToRemove list.
313static void RemoveFilesToRemove() {
314  FileToRemoveList::removeAllFiles(FilesToRemove);
315}
316
317// The signal handler that runs.
318static RETSIGTYPE SignalHandler(int Sig) {
319  // Restore the signal behavior to default, so that the program actually
320  // crashes when we return and the signal reissues.  This also ensures that if
321  // we crash in our signal handler that the program will terminate immediately
322  // instead of recursing in the signal handler.
323  UnregisterHandlers();
324
325  // Unmask all potentially blocked kill signals.
326  sigset_t SigMask;
327  sigfillset(&SigMask);
328  sigprocmask(SIG_UNBLOCK, &SigMask, nullptr);
329
330  {
331    RemoveFilesToRemove();
332
333    if (std::find(std::begin(IntSigs), std::end(IntSigs), Sig)
334        != std::end(IntSigs)) {
335      if (auto OldInterruptFunction = InterruptFunction.exchange(nullptr))
336        return OldInterruptFunction();
337
338      // Send a special return code that drivers can check for, from sysexits.h.
339      if (Sig == SIGPIPE)
340        exit(EX_IOERR);
341
342      raise(Sig);   // Execute the default handler.
343      return;
344   }
345  }
346
347  // Otherwise if it is a fault (like SEGV) run any handler.
348  llvm::sys::RunSignalHandlers();
349
350#ifdef __s390__
351  // On S/390, certain signals are delivered with PSW Address pointing to
352  // *after* the faulting instruction.  Simply returning from the signal
353  // handler would continue execution after that point, instead of
354  // re-raising the signal.  Raise the signal manually in those cases.
355  if (Sig == SIGILL || Sig == SIGFPE || Sig == SIGTRAP)
356    raise(Sig);
357#endif
358}
359
360void llvm::sys::RunInterruptHandlers() {
361  RemoveFilesToRemove();
362}
363
364void llvm::sys::SetInterruptFunction(void (*IF)()) {
365  InterruptFunction.exchange(IF);
366  RegisterHandlers();
367}
368
369// The public API
370bool llvm::sys::RemoveFileOnSignal(StringRef Filename,
371                                   std::string* ErrMsg) {
372  // Ensure that cleanup will occur as soon as one file is added.
373  static ManagedStatic<FilesToRemoveCleanup> FilesToRemoveCleanup;
374  *FilesToRemoveCleanup;
375  FileToRemoveList::insert(FilesToRemove, Filename.str());
376  RegisterHandlers();
377  return false;
378}
379
380// The public API
381void llvm::sys::DontRemoveFileOnSignal(StringRef Filename) {
382  FileToRemoveList::erase(FilesToRemove, Filename.str());
383}
384
385/// Add a function to be called when a signal is delivered to the process. The
386/// handler can have a cookie passed to it to identify what instance of the
387/// handler it is.
388void llvm::sys::AddSignalHandler(sys::SignalHandlerCallback FnPtr,
389                                 void *Cookie) { // Signal-safe.
390  insertSignalHandler(FnPtr, Cookie);
391  RegisterHandlers();
392}
393
394#if defined(HAVE_BACKTRACE) && ENABLE_BACKTRACES && HAVE_LINK_H &&    \
395    (defined(__linux__) || defined(__FreeBSD__) ||                             \
396     defined(__FreeBSD_kernel__) || defined(__NetBSD__))
397struct DlIteratePhdrData {
398  void **StackTrace;
399  int depth;
400  bool first;
401  const char **modules;
402  intptr_t *offsets;
403  const char *main_exec_name;
404};
405
406static int dl_iterate_phdr_cb(dl_phdr_info *info, size_t size, void *arg) {
407  DlIteratePhdrData *data = (DlIteratePhdrData*)arg;
408  const char *name = data->first ? data->main_exec_name : info->dlpi_name;
409  data->first = false;
410  for (int i = 0; i < info->dlpi_phnum; i++) {
411    const auto *phdr = &info->dlpi_phdr[i];
412    if (phdr->p_type != PT_LOAD)
413      continue;
414    intptr_t beg = info->dlpi_addr + phdr->p_vaddr;
415    intptr_t end = beg + phdr->p_memsz;
416    for (int j = 0; j < data->depth; j++) {
417      if (data->modules[j])
418        continue;
419      intptr_t addr = (intptr_t)data->StackTrace[j];
420      if (beg <= addr && addr < end) {
421        data->modules[j] = name;
422        data->offsets[j] = addr - info->dlpi_addr;
423      }
424    }
425  }
426  return 0;
427}
428
429/// If this is an ELF platform, we can find all loaded modules and their virtual
430/// addresses with dl_iterate_phdr.
431static bool findModulesAndOffsets(void **StackTrace, int Depth,
432                                  const char **Modules, intptr_t *Offsets,
433                                  const char *MainExecutableName,
434                                  StringSaver &StrPool) {
435  DlIteratePhdrData data = {StackTrace, Depth,   true,
436                            Modules,    Offsets, MainExecutableName};
437  dl_iterate_phdr(dl_iterate_phdr_cb, &data);
438  return true;
439}
440#else
441/// This platform does not have dl_iterate_phdr, so we do not yet know how to
442/// find all loaded DSOs.
443static bool findModulesAndOffsets(void **StackTrace, int Depth,
444                                  const char **Modules, intptr_t *Offsets,
445                                  const char *MainExecutableName,
446                                  StringSaver &StrPool) {
447  return false;
448}
449#endif // defined(HAVE_BACKTRACE) && ENABLE_BACKTRACES && ...
450
451#if ENABLE_BACKTRACES && defined(HAVE__UNWIND_BACKTRACE)
452static int unwindBacktrace(void **StackTrace, int MaxEntries) {
453  if (MaxEntries < 0)
454    return 0;
455
456  // Skip the first frame ('unwindBacktrace' itself).
457  int Entries = -1;
458
459  auto HandleFrame = [&](_Unwind_Context *Context) -> _Unwind_Reason_Code {
460    // Apparently we need to detect reaching the end of the stack ourselves.
461    void *IP = (void *)_Unwind_GetIP(Context);
462    if (!IP)
463      return _URC_END_OF_STACK;
464
465    assert(Entries < MaxEntries && "recursively called after END_OF_STACK?");
466    if (Entries >= 0)
467      StackTrace[Entries] = IP;
468
469    if (++Entries == MaxEntries)
470      return _URC_END_OF_STACK;
471    return _URC_NO_REASON;
472  };
473
474  _Unwind_Backtrace(
475      [](_Unwind_Context *Context, void *Handler) {
476        return (*static_cast<decltype(HandleFrame) *>(Handler))(Context);
477      },
478      static_cast<void *>(&HandleFrame));
479  return std::max(Entries, 0);
480}
481#endif
482
483// In the case of a program crash or fault, print out a stack trace so that the
484// user has an indication of why and where we died.
485//
486// On glibc systems we have the 'backtrace' function, which works nicely, but
487// doesn't demangle symbols.
488void llvm::sys::PrintStackTrace(raw_ostream &OS) {
489#if ENABLE_BACKTRACES
490  static void *StackTrace[256];
491  int depth = 0;
492#if defined(HAVE_BACKTRACE)
493  // Use backtrace() to output a backtrace on Linux systems with glibc.
494  if (!depth)
495    depth = backtrace(StackTrace, static_cast<int>(array_lengthof(StackTrace)));
496#endif
497#if defined(HAVE__UNWIND_BACKTRACE)
498  // Try _Unwind_Backtrace() if backtrace() failed.
499  if (!depth)
500    depth = unwindBacktrace(StackTrace,
501                        static_cast<int>(array_lengthof(StackTrace)));
502#endif
503  if (!depth)
504    return;
505
506  if (printSymbolizedStackTrace(Argv0, StackTrace, depth, OS))
507    return;
508#if HAVE_DLFCN_H && HAVE_DLADDR
509  int width = 0;
510  for (int i = 0; i < depth; ++i) {
511    Dl_info dlinfo;
512    dladdr(StackTrace[i], &dlinfo);
513    const char* name = strrchr(dlinfo.dli_fname, '/');
514
515    int nwidth;
516    if (!name) nwidth = strlen(dlinfo.dli_fname);
517    else       nwidth = strlen(name) - 1;
518
519    if (nwidth > width) width = nwidth;
520  }
521
522  for (int i = 0; i < depth; ++i) {
523    Dl_info dlinfo;
524    dladdr(StackTrace[i], &dlinfo);
525
526    OS << format("%-2d", i);
527
528    const char* name = strrchr(dlinfo.dli_fname, '/');
529    if (!name) OS << format(" %-*s", width, dlinfo.dli_fname);
530    else       OS << format(" %-*s", width, name+1);
531
532    OS << format(" %#0*lx", (int)(sizeof(void*) * 2) + 2,
533                 (unsigned long)StackTrace[i]);
534
535    if (dlinfo.dli_sname != nullptr) {
536      OS << ' ';
537      int res;
538      char* d = itaniumDemangle(dlinfo.dli_sname, nullptr, nullptr, &res);
539      if (!d) OS << dlinfo.dli_sname;
540      else    OS << d;
541      free(d);
542
543      // FIXME: When we move to C++11, use %t length modifier. It's not in
544      // C++03 and causes gcc to issue warnings. Losing the upper 32 bits of
545      // the stack offset for a stack dump isn't likely to cause any problems.
546      OS << format(" + %u",(unsigned)((char*)StackTrace[i]-
547                                      (char*)dlinfo.dli_saddr));
548    }
549    OS << '\n';
550  }
551#elif defined(HAVE_BACKTRACE)
552  backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
553#endif
554#endif
555}
556
557static void PrintStackTraceSignalHandler(void *) {
558  sys::PrintStackTrace(llvm::errs());
559}
560
561void llvm::sys::DisableSystemDialogsOnCrash() {}
562
563/// When an error signal (such as SIGABRT or SIGSEGV) is delivered to the
564/// process, print a stack trace and then exit.
565void llvm::sys::PrintStackTraceOnErrorSignal(StringRef Argv0,
566                                             bool DisableCrashReporting) {
567  ::Argv0 = Argv0;
568
569  AddSignalHandler(PrintStackTraceSignalHandler, nullptr);
570
571#if defined(__APPLE__) && ENABLE_CRASH_OVERRIDES
572  // Environment variable to disable any kind of crash dialog.
573  if (DisableCrashReporting || getenv("LLVM_DISABLE_CRASH_REPORT")) {
574    mach_port_t self = mach_task_self();
575
576    exception_mask_t mask = EXC_MASK_CRASH;
577
578    kern_return_t ret = task_set_exception_ports(self,
579                             mask,
580                             MACH_PORT_NULL,
581                             EXCEPTION_STATE_IDENTITY | MACH_EXCEPTION_CODES,
582                             THREAD_STATE_NONE);
583    (void)ret;
584  }
585#endif
586}
587