crash_handler_osx.mm 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*************************************************************************/
  2. /* crash_handler_osx.mm */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
  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 "core/project_settings.h"
  31. #include "main/main.h"
  32. #include "os_osx.h"
  33. #include <string.h>
  34. #include <unistd.h>
  35. #if defined(DEBUG_ENABLED)
  36. #define CRASH_HANDLER_ENABLED 1
  37. #endif
  38. #ifdef CRASH_HANDLER_ENABLED
  39. #include <cxxabi.h>
  40. #include <dlfcn.h>
  41. #include <execinfo.h>
  42. #include <signal.h>
  43. #include <stdlib.h>
  44. #include <mach-o/dyld.h>
  45. #include <mach-o/getsect.h>
  46. static uint64_t load_address() {
  47. const struct segment_command_64 *cmd = getsegbyname("__TEXT");
  48. char full_path[1024];
  49. uint32_t size = sizeof(full_path);
  50. if (cmd && !_NSGetExecutablePath(full_path, &size)) {
  51. uint32_t dyld_count = _dyld_image_count();
  52. for (uint32_t i = 0; i < dyld_count; i++) {
  53. const char *image_name = _dyld_get_image_name(i);
  54. if (image_name && strncmp(image_name, full_path, 1024) == 0) {
  55. return cmd->vmaddr + _dyld_get_image_vmaddr_slide(i);
  56. }
  57. }
  58. }
  59. return 0;
  60. }
  61. static void handle_crash(int sig) {
  62. if (OS::get_singleton() == NULL) {
  63. abort();
  64. }
  65. void *bt_buffer[256];
  66. size_t size = backtrace(bt_buffer, 256);
  67. String _execpath = OS::get_singleton()->get_executable_path();
  68. String msg = GLOBAL_GET("debug/settings/crash_handler/message");
  69. // Dump the backtrace to stderr with a message to the user
  70. fprintf(stderr, "%s: Program crashed with signal %d\n", __FUNCTION__, sig);
  71. if (OS::get_singleton()->get_main_loop())
  72. OS::get_singleton()->get_main_loop()->notification(MainLoop::NOTIFICATION_CRASH);
  73. fprintf(stderr, "Dumping the backtrace. %ls\n", msg.c_str());
  74. char **strings = backtrace_symbols(bt_buffer, size);
  75. if (strings) {
  76. void *load_addr = (void *)load_address();
  77. for (int i = 1; i < size; i++) {
  78. char fname[1024];
  79. Dl_info info;
  80. snprintf(fname, 1024, "%s", strings[i]);
  81. // Try to demangle the function name to provide a more readable one
  82. if (dladdr(bt_buffer[i], &info) && info.dli_sname) {
  83. if (info.dli_sname[0] == '_') {
  84. int status;
  85. char *demangled = abi::__cxa_demangle(info.dli_sname, NULL, 0, &status);
  86. if (status == 0 && demangled) {
  87. snprintf(fname, 1024, "%s", demangled);
  88. }
  89. if (demangled)
  90. free(demangled);
  91. }
  92. }
  93. String output = fname;
  94. // Try to get the file/line number using atos
  95. if (bt_buffer[i] > (void *)0x0 && OS::get_singleton()) {
  96. List<String> args;
  97. char str[1024];
  98. args.push_back("-o");
  99. args.push_back(_execpath);
  100. args.push_back("-arch");
  101. args.push_back("x86_64");
  102. args.push_back("-l");
  103. snprintf(str, 1024, "%p", load_addr);
  104. args.push_back(str);
  105. snprintf(str, 1024, "%p", bt_buffer[i]);
  106. args.push_back(str);
  107. int ret;
  108. String out = "";
  109. Error err = OS::get_singleton()->execute(String("atos"), args, true, NULL, &out, &ret);
  110. if (err == OK && out.substr(0, 2) != "0x") {
  111. out.erase(out.length() - 1, 1);
  112. output = out;
  113. }
  114. }
  115. fprintf(stderr, "[%d] %ls\n", i, output.c_str());
  116. }
  117. free(strings);
  118. }
  119. fprintf(stderr, "-- END OF BACKTRACE --\n");
  120. // Abort to pass the error to the OS
  121. abort();
  122. }
  123. #endif
  124. CrashHandler::CrashHandler() {
  125. disabled = false;
  126. }
  127. CrashHandler::~CrashHandler() {
  128. disable();
  129. }
  130. void CrashHandler::disable() {
  131. if (disabled)
  132. return;
  133. #ifdef CRASH_HANDLER_ENABLED
  134. signal(SIGSEGV, NULL);
  135. signal(SIGFPE, NULL);
  136. signal(SIGILL, NULL);
  137. #endif
  138. disabled = true;
  139. }
  140. void CrashHandler::initialize() {
  141. #ifdef CRASH_HANDLER_ENABLED
  142. signal(SIGSEGV, handle_crash);
  143. signal(SIGFPE, handle_crash);
  144. signal(SIGILL, handle_crash);
  145. #endif
  146. }