crash_handler_osx.mm 5.6 KB

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