crash_handler_osx.mm 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /**************************************************************************/
  2. /* crash_handler_osx.mm */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "crash_handler_osx.h"
  31. #include "core/os/os.h"
  32. #include "core/print_string.h"
  33. #include "core/project_settings.h"
  34. #include "core/version.h"
  35. #include "main/main.h"
  36. #include <string.h>
  37. #include <unistd.h>
  38. #if defined(DEBUG_ENABLED)
  39. #define CRASH_HANDLER_ENABLED 1
  40. #endif
  41. #ifdef CRASH_HANDLER_ENABLED
  42. #include <cxxabi.h>
  43. #include <dlfcn.h>
  44. #include <execinfo.h>
  45. #include <signal.h>
  46. #include <stdlib.h>
  47. #include <mach-o/dyld.h>
  48. #include <mach-o/getsect.h>
  49. static uint64_t load_address() {
  50. const struct segment_command_64 *cmd = getsegbyname("__TEXT");
  51. char full_path[1024];
  52. uint32_t size = sizeof(full_path);
  53. if (cmd && !_NSGetExecutablePath(full_path, &size)) {
  54. uint32_t dyld_count = _dyld_image_count();
  55. for (uint32_t i = 0; i < dyld_count; i++) {
  56. const char *image_name = _dyld_get_image_name(i);
  57. if (image_name && strncmp(image_name, full_path, 1024) == 0) {
  58. return cmd->vmaddr + _dyld_get_image_vmaddr_slide(i);
  59. }
  60. }
  61. }
  62. return 0;
  63. }
  64. static void handle_crash(int sig) {
  65. if (OS::get_singleton() == nullptr) {
  66. abort();
  67. }
  68. void *bt_buffer[256];
  69. size_t size = backtrace(bt_buffer, 256);
  70. String _execpath = OS::get_singleton()->get_executable_path();
  71. String msg;
  72. const ProjectSettings *proj_settings = ProjectSettings::get_singleton();
  73. if (proj_settings) {
  74. msg = proj_settings->get("debug/settings/crash_handler/message");
  75. }
  76. // Tell MainLoop about the crash. This can be handled by users too in Node.
  77. if (OS::get_singleton()->get_main_loop()) {
  78. OS::get_singleton()->get_main_loop()->notification(MainLoop::NOTIFICATION_CRASH);
  79. }
  80. // Dump the backtrace to stderr with a message to the user
  81. print_error("\n================================================================");
  82. print_error(vformat("%s: Program crashed with signal %d", __FUNCTION__, sig));
  83. // Print the engine version just before, so that people are reminded to include the version in backtrace reports.
  84. if (String(VERSION_HASH).empty()) {
  85. print_error(vformat("Engine version: %s", VERSION_FULL_NAME));
  86. } else {
  87. print_error(vformat("Engine version: %s (%s)", VERSION_FULL_NAME, VERSION_HASH));
  88. }
  89. print_error(vformat("Dumping the backtrace. %s", msg));
  90. char **strings = backtrace_symbols(bt_buffer, size);
  91. if (strings) {
  92. void *load_addr = (void *)load_address();
  93. for (size_t i = 1; i < size; i++) {
  94. char fname[1024];
  95. Dl_info info;
  96. snprintf(fname, 1024, "%s", strings[i]);
  97. // Try to demangle the function name to provide a more readable one
  98. if (dladdr(bt_buffer[i], &info) && info.dli_sname) {
  99. if (info.dli_sname[0] == '_') {
  100. int status;
  101. char *demangled = abi::__cxa_demangle(info.dli_sname, nullptr, 0, &status);
  102. if (status == 0 && demangled) {
  103. snprintf(fname, 1024, "%s", demangled);
  104. }
  105. if (demangled) {
  106. free(demangled);
  107. }
  108. }
  109. }
  110. String output = fname;
  111. // Try to get the file/line number using atos
  112. if (bt_buffer[i] > (void *)0x0 && OS::get_singleton()) {
  113. List<String> args;
  114. char str[1024];
  115. args.push_back("-o");
  116. args.push_back(_execpath);
  117. #if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__)
  118. args.push_back("-arch");
  119. args.push_back("x86_64");
  120. #elif defined(__aarch64__)
  121. args.push_back("-arch");
  122. args.push_back("arm64");
  123. #endif
  124. args.push_back("-l");
  125. snprintf(str, 1024, "%p", load_addr);
  126. args.push_back(str);
  127. snprintf(str, 1024, "%p", bt_buffer[i]);
  128. args.push_back(str);
  129. int ret;
  130. String out = "";
  131. Error err = OS::get_singleton()->execute(String("atos"), args, true, nullptr, &out, &ret);
  132. if (err == OK && out.substr(0, 2) != "0x") {
  133. out.erase(out.length() - 1, 1);
  134. output = out;
  135. }
  136. }
  137. print_error(vformat("[%d] %s", (int64_t)i, output));
  138. }
  139. free(strings);
  140. }
  141. print_error("-- END OF BACKTRACE --");
  142. print_error("================================================================");
  143. // Abort to pass the error to the OS
  144. abort();
  145. }
  146. #endif
  147. CrashHandler::CrashHandler() {
  148. disabled = false;
  149. }
  150. CrashHandler::~CrashHandler() {
  151. disable();
  152. }
  153. void CrashHandler::disable() {
  154. if (disabled) {
  155. return;
  156. }
  157. #ifdef CRASH_HANDLER_ENABLED
  158. signal(SIGSEGV, nullptr);
  159. signal(SIGFPE, nullptr);
  160. signal(SIGILL, nullptr);
  161. #endif
  162. disabled = true;
  163. }
  164. void CrashHandler::initialize() {
  165. #ifdef CRASH_HANDLER_ENABLED
  166. signal(SIGSEGV, handle_crash);
  167. signal(SIGFPE, handle_crash);
  168. signal(SIGILL, handle_crash);
  169. #endif
  170. }