ErrorHandling.cpp 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. //===- lib/Support/ErrorHandling.cpp - Callbacks for errors ---------------===//
  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 an API used to indicate fatal error conditions. Non-fatal
  11. // errors (most of them) should be handled through LLVMContext.
  12. //
  13. //===----------------------------------------------------------------------===//
  14. #include "llvm/Support/ErrorHandling.h"
  15. #include "llvm-c/Core.h"
  16. #include "llvm/ADT/SmallVector.h"
  17. #include "llvm/ADT/Twine.h"
  18. #include "llvm/Config/config.h"
  19. #include "llvm/Support/Debug.h"
  20. #include "llvm/Support/Errc.h"
  21. #include "llvm/Support/ManagedStatic.h"
  22. #include "llvm/Support/Mutex.h"
  23. #include "llvm/Support/MutexGuard.h"
  24. #include "llvm/Support/Signals.h"
  25. #include "llvm/Support/Threading.h"
  26. #include "llvm/Support/WindowsError.h"
  27. #include "llvm/Support/raw_ostream.h"
  28. #include <cassert>
  29. #include <cstdlib>
  30. #include "windows.h" // HLSL Change
  31. #if defined(HAVE_UNISTD_H)
  32. # include <unistd.h>
  33. #endif
  34. #if defined(_MSC_VER)
  35. # include <io.h>
  36. # include <fcntl.h>
  37. #endif
  38. using namespace llvm;
  39. // HLSL Change - mark these as thread_local
  40. thread_local static fatal_error_handler_t ErrorHandler = nullptr;
  41. thread_local static void *ErrorHandlerUserData = nullptr;
  42. static ManagedStatic<sys::Mutex> ErrorHandlerMutex;
  43. void llvm::install_fatal_error_handler(fatal_error_handler_t handler,
  44. void *user_data) {
  45. llvm::MutexGuard Lock(*ErrorHandlerMutex);
  46. assert(!ErrorHandler && "Error handler already registered!\n");
  47. ErrorHandler = handler;
  48. ErrorHandlerUserData = user_data;
  49. }
  50. void llvm::remove_fatal_error_handler() {
  51. llvm::MutexGuard Lock(*ErrorHandlerMutex);
  52. ErrorHandler = nullptr;
  53. ErrorHandlerUserData = nullptr;
  54. }
  55. void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) {
  56. report_fatal_error(Twine(Reason), GenCrashDiag);
  57. }
  58. void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) {
  59. report_fatal_error(Twine(Reason), GenCrashDiag);
  60. }
  61. void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) {
  62. report_fatal_error(Twine(Reason), GenCrashDiag);
  63. }
  64. void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) {
  65. llvm::fatal_error_handler_t handler = nullptr;
  66. void* handlerData = nullptr;
  67. {
  68. // Only acquire the mutex while reading the handler, so as not to invoke a
  69. // user-supplied callback under a lock.
  70. llvm::MutexGuard Lock(*ErrorHandlerMutex);
  71. handler = ErrorHandler;
  72. handlerData = ErrorHandlerUserData;
  73. }
  74. #if 0 // HLSL Change - unwind if necessary, but don't terminate the process
  75. if (handler) {
  76. handler(handlerData, Reason.str(), GenCrashDiag);
  77. } else {
  78. // Blast the result out to stderr. We don't try hard to make sure this
  79. // succeeds (e.g. handling EINTR) and we can't use errs() here because
  80. // raw ostreams can call report_fatal_error.
  81. SmallVector<char, 64> Buffer;
  82. raw_svector_ostream OS(Buffer);
  83. OS << "LLVM ERROR: " << Reason << "\n";
  84. StringRef MessageStr = OS.str();
  85. ssize_t written = ::_write(2, MessageStr.data(), MessageStr.size());
  86. (void)written; // If something went wrong, we deliberately just give up.
  87. }
  88. // If we reached here, we are failing ungracefully. Run the interrupt handlers
  89. // to make sure any special cleanups get done, in particular that we remove
  90. // files registered with RemoveFileOnSignal.
  91. sys::RunInterruptHandlers();
  92. exit(1);
  93. #else
  94. if (handler) {
  95. handler(handlerData, Reason.str(), GenCrashDiag);
  96. }
  97. RaiseException(STATUS_LLVM_FATAL, 0, 0, 0);
  98. #endif
  99. }
  100. void llvm::llvm_unreachable_internal(const char *msg, const char *file,
  101. unsigned line) {
  102. // This code intentionally doesn't call the ErrorHandler callback, because
  103. // llvm_unreachable is intended to be used to indicate "impossible"
  104. // situations, and not legitimate runtime errors.
  105. if (msg)
  106. dbgs() << msg << "\n";
  107. dbgs() << "UNREACHABLE executed";
  108. if (file)
  109. dbgs() << " at " << file << ":" << line;
  110. dbgs() << "!\n";
  111. #if 0 // HLSL Change - unwind if necessary, but don't terminate the process
  112. abort();
  113. #else
  114. RaiseException(STATUS_LLVM_UNREACHABLE, 0, 0, 0);
  115. #endif
  116. }
  117. static void bindingsErrorHandler(void *user_data, const std::string& reason,
  118. bool gen_crash_diag) {
  119. LLVMFatalErrorHandler handler =
  120. LLVM_EXTENSION reinterpret_cast<LLVMFatalErrorHandler>(user_data);
  121. handler(reason.c_str());
  122. }
  123. void LLVMInstallFatalErrorHandler(LLVMFatalErrorHandler Handler) {
  124. install_fatal_error_handler(bindingsErrorHandler,
  125. LLVM_EXTENSION reinterpret_cast<void *>(Handler));
  126. }
  127. void LLVMResetFatalErrorHandler() {
  128. remove_fatal_error_handler();
  129. }
  130. #ifdef LLVM_ON_WIN32
  131. #include <winerror.h>
  132. // I'd rather not double the line count of the following.
  133. #define MAP_ERR_TO_COND(x, y) \
  134. case x: \
  135. return make_error_code(errc::y)
  136. std::error_code llvm::mapWindowsError(unsigned EV) {
  137. switch (EV) {
  138. MAP_ERR_TO_COND(ERROR_ACCESS_DENIED, permission_denied);
  139. MAP_ERR_TO_COND(ERROR_ALREADY_EXISTS, file_exists);
  140. MAP_ERR_TO_COND(ERROR_BAD_UNIT, no_such_device);
  141. MAP_ERR_TO_COND(ERROR_BUFFER_OVERFLOW, filename_too_long);
  142. MAP_ERR_TO_COND(ERROR_BUSY, device_or_resource_busy);
  143. MAP_ERR_TO_COND(ERROR_BUSY_DRIVE, device_or_resource_busy);
  144. MAP_ERR_TO_COND(ERROR_CANNOT_MAKE, permission_denied);
  145. MAP_ERR_TO_COND(ERROR_CANTOPEN, io_error);
  146. MAP_ERR_TO_COND(ERROR_CANTREAD, io_error);
  147. MAP_ERR_TO_COND(ERROR_CANTWRITE, io_error);
  148. MAP_ERR_TO_COND(ERROR_CURRENT_DIRECTORY, permission_denied);
  149. MAP_ERR_TO_COND(ERROR_DEV_NOT_EXIST, no_such_device);
  150. MAP_ERR_TO_COND(ERROR_DEVICE_IN_USE, device_or_resource_busy);
  151. MAP_ERR_TO_COND(ERROR_DIR_NOT_EMPTY, directory_not_empty);
  152. MAP_ERR_TO_COND(ERROR_DIRECTORY, invalid_argument);
  153. MAP_ERR_TO_COND(ERROR_DISK_FULL, no_space_on_device);
  154. MAP_ERR_TO_COND(ERROR_FILE_EXISTS, file_exists);
  155. MAP_ERR_TO_COND(ERROR_FILE_NOT_FOUND, no_such_file_or_directory);
  156. MAP_ERR_TO_COND(ERROR_HANDLE_DISK_FULL, no_space_on_device);
  157. MAP_ERR_TO_COND(ERROR_INVALID_ACCESS, permission_denied);
  158. MAP_ERR_TO_COND(ERROR_INVALID_DRIVE, no_such_device);
  159. MAP_ERR_TO_COND(ERROR_INVALID_FUNCTION, function_not_supported);
  160. MAP_ERR_TO_COND(ERROR_INVALID_HANDLE, invalid_argument);
  161. MAP_ERR_TO_COND(ERROR_INVALID_NAME, invalid_argument);
  162. MAP_ERR_TO_COND(ERROR_LOCK_VIOLATION, no_lock_available);
  163. MAP_ERR_TO_COND(ERROR_LOCKED, no_lock_available);
  164. MAP_ERR_TO_COND(ERROR_NEGATIVE_SEEK, invalid_argument);
  165. MAP_ERR_TO_COND(ERROR_NOACCESS, permission_denied);
  166. MAP_ERR_TO_COND(ERROR_NOT_ENOUGH_MEMORY, not_enough_memory);
  167. MAP_ERR_TO_COND(ERROR_NOT_READY, resource_unavailable_try_again);
  168. MAP_ERR_TO_COND(ERROR_OPEN_FAILED, io_error);
  169. MAP_ERR_TO_COND(ERROR_OPEN_FILES, device_or_resource_busy);
  170. MAP_ERR_TO_COND(ERROR_OUTOFMEMORY, not_enough_memory);
  171. MAP_ERR_TO_COND(ERROR_PATH_NOT_FOUND, no_such_file_or_directory);
  172. MAP_ERR_TO_COND(ERROR_BAD_NETPATH, no_such_file_or_directory);
  173. MAP_ERR_TO_COND(ERROR_READ_FAULT, io_error);
  174. MAP_ERR_TO_COND(ERROR_RETRY, resource_unavailable_try_again);
  175. MAP_ERR_TO_COND(ERROR_SEEK, io_error);
  176. MAP_ERR_TO_COND(ERROR_SHARING_VIOLATION, permission_denied);
  177. MAP_ERR_TO_COND(ERROR_TOO_MANY_OPEN_FILES, too_many_files_open);
  178. MAP_ERR_TO_COND(ERROR_WRITE_FAULT, io_error);
  179. MAP_ERR_TO_COND(ERROR_WRITE_PROTECT, permission_denied);
  180. MAP_ERR_TO_COND(WSAEACCES, permission_denied);
  181. MAP_ERR_TO_COND(WSAEBADF, bad_file_descriptor);
  182. MAP_ERR_TO_COND(WSAEFAULT, bad_address);
  183. MAP_ERR_TO_COND(WSAEINTR, interrupted);
  184. MAP_ERR_TO_COND(WSAEINVAL, invalid_argument);
  185. MAP_ERR_TO_COND(WSAEMFILE, too_many_files_open);
  186. MAP_ERR_TO_COND(WSAENAMETOOLONG, filename_too_long);
  187. default:
  188. return std::error_code(EV, std::system_category());
  189. }
  190. }
  191. #endif