crash_handler_osx.mm 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 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/config/project_settings.h"
  32. #include "core/os/os.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;
  70. const ProjectSettings *proj_settings = ProjectSettings::get_singleton();
  71. if (proj_settings) {
  72. msg = proj_settings->get("debug/settings/crash_handler/message");
  73. }
  74. // Dump the backtrace to stderr with a message to the user
  75. fprintf(stderr, "%s: Program crashed with signal %d\n", __FUNCTION__, sig);
  76. if (OS::get_singleton()->get_main_loop())
  77. OS::get_singleton()->get_main_loop()->notification(MainLoop::NOTIFICATION_CRASH);
  78. fprintf(stderr, "Dumping the backtrace. %s\n", msg.utf8().get_data());
  79. char **strings = backtrace_symbols(bt_buffer, size);
  80. if (strings) {
  81. void *load_addr = (void *)load_address();
  82. for (size_t i = 1; i < size; i++) {
  83. char fname[1024];
  84. Dl_info info;
  85. snprintf(fname, 1024, "%s", strings[i]);
  86. // Try to demangle the function name to provide a more readable one
  87. if (dladdr(bt_buffer[i], &info) && info.dli_sname) {
  88. if (info.dli_sname[0] == '_') {
  89. int status;
  90. char *demangled = abi::__cxa_demangle(info.dli_sname, NULL, 0, &status);
  91. if (status == 0 && demangled) {
  92. snprintf(fname, 1024, "%s", demangled);
  93. }
  94. if (demangled)
  95. free(demangled);
  96. }
  97. }
  98. String output = fname;
  99. // Try to get the file/line number using atos
  100. if (bt_buffer[i] > (void *)0x0 && OS::get_singleton()) {
  101. List<String> args;
  102. char str[1024];
  103. args.push_back("-o");
  104. args.push_back(_execpath);
  105. args.push_back("-arch");
  106. args.push_back("x86_64");
  107. args.push_back("-l");
  108. snprintf(str, 1024, "%p", load_addr);
  109. args.push_back(str);
  110. snprintf(str, 1024, "%p", bt_buffer[i]);
  111. args.push_back(str);
  112. int ret;
  113. String out = "";
  114. Error err = OS::get_singleton()->execute(String("atos"), args, &out, &ret);
  115. if (err == OK && out.substr(0, 2) != "0x") {
  116. out.erase(out.length() - 1, 1);
  117. output = out;
  118. }
  119. }
  120. fprintf(stderr, "[%zu] %s\n", i, output.utf8().get_data());
  121. }
  122. free(strings);
  123. }
  124. fprintf(stderr, "-- END OF BACKTRACE --\n");
  125. // Abort to pass the error to the OS
  126. abort();
  127. }
  128. #endif
  129. CrashHandler::CrashHandler() {
  130. disabled = false;
  131. }
  132. CrashHandler::~CrashHandler() {
  133. disable();
  134. }
  135. void CrashHandler::disable() {
  136. if (disabled)
  137. return;
  138. #ifdef CRASH_HANDLER_ENABLED
  139. signal(SIGSEGV, NULL);
  140. signal(SIGFPE, NULL);
  141. signal(SIGILL, NULL);
  142. #endif
  143. disabled = true;
  144. }
  145. void CrashHandler::initialize() {
  146. #ifdef CRASH_HANDLER_ENABLED
  147. signal(SIGSEGV, handle_crash);
  148. signal(SIGFPE, handle_crash);
  149. signal(SIGILL, handle_crash);
  150. #endif
  151. }