crash_handler_windows.cpp 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*************************************************************************/
  2. /* crash_handler_windows.cpp */
  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_windows.h"
  31. #include "core/config/project_settings.h"
  32. #include "core/os/os.h"
  33. #include "main/main.h"
  34. #ifdef CRASH_HANDLER_EXCEPTION
  35. // Backtrace code code based on: https://stackoverflow.com/questions/6205981/windows-c-stack-trace-from-a-running-app
  36. #include <algorithm>
  37. #include <iterator>
  38. #include <string>
  39. #include <vector>
  40. #include <psapi.h>
  41. #pragma comment(lib, "psapi.lib")
  42. #pragma comment(lib, "dbghelp.lib")
  43. // Some versions of imagehlp.dll lack the proper packing directives themselves
  44. // so we need to do it.
  45. #pragma pack(push, before_imagehlp, 8)
  46. #include <imagehlp.h>
  47. #pragma pack(pop, before_imagehlp)
  48. struct module_data {
  49. std::string image_name;
  50. std::string module_name;
  51. void *base_address = nullptr;
  52. DWORD load_size;
  53. };
  54. class symbol {
  55. typedef IMAGEHLP_SYMBOL64 sym_type;
  56. sym_type *sym;
  57. static const int max_name_len = 1024;
  58. public:
  59. symbol(HANDLE process, DWORD64 address) :
  60. sym((sym_type *)::operator new(sizeof(*sym) + max_name_len)) {
  61. memset(sym, '\0', sizeof(*sym) + max_name_len);
  62. sym->SizeOfStruct = sizeof(*sym);
  63. sym->MaxNameLength = max_name_len;
  64. DWORD64 displacement;
  65. SymGetSymFromAddr64(process, address, &displacement, sym);
  66. }
  67. std::string name() { return std::string(sym->Name); }
  68. std::string undecorated_name() {
  69. if (*sym->Name == '\0')
  70. return "<couldn't map PC to fn name>";
  71. std::vector<char> und_name(max_name_len);
  72. UnDecorateSymbolName(sym->Name, &und_name[0], max_name_len, UNDNAME_COMPLETE);
  73. return std::string(&und_name[0], strlen(&und_name[0]));
  74. }
  75. };
  76. class get_mod_info {
  77. HANDLE process;
  78. public:
  79. get_mod_info(HANDLE h) :
  80. process(h) {}
  81. module_data operator()(HMODULE module) {
  82. module_data ret;
  83. char temp[4096];
  84. MODULEINFO mi;
  85. GetModuleInformation(process, module, &mi, sizeof(mi));
  86. ret.base_address = mi.lpBaseOfDll;
  87. ret.load_size = mi.SizeOfImage;
  88. GetModuleFileNameEx(process, module, temp, sizeof(temp));
  89. ret.image_name = temp;
  90. GetModuleBaseName(process, module, temp, sizeof(temp));
  91. ret.module_name = temp;
  92. std::vector<char> img(ret.image_name.begin(), ret.image_name.end());
  93. std::vector<char> mod(ret.module_name.begin(), ret.module_name.end());
  94. SymLoadModule64(process, 0, &img[0], &mod[0], (DWORD64)ret.base_address, ret.load_size);
  95. return ret;
  96. }
  97. };
  98. DWORD CrashHandlerException(EXCEPTION_POINTERS *ep) {
  99. HANDLE process = GetCurrentProcess();
  100. HANDLE hThread = GetCurrentThread();
  101. DWORD offset_from_symbol = 0;
  102. IMAGEHLP_LINE64 line = { 0 };
  103. std::vector<module_data> modules;
  104. DWORD cbNeeded;
  105. std::vector<HMODULE> module_handles(1);
  106. if (OS::get_singleton() == nullptr || OS::get_singleton()->is_disable_crash_handler() || IsDebuggerPresent()) {
  107. return EXCEPTION_CONTINUE_SEARCH;
  108. }
  109. fprintf(stderr, "%s: Program crashed\n", __FUNCTION__);
  110. if (OS::get_singleton()->get_main_loop())
  111. OS::get_singleton()->get_main_loop()->notification(MainLoop::NOTIFICATION_CRASH);
  112. // Load the symbols:
  113. if (!SymInitialize(process, nullptr, false))
  114. return EXCEPTION_CONTINUE_SEARCH;
  115. SymSetOptions(SymGetOptions() | SYMOPT_LOAD_LINES | SYMOPT_UNDNAME);
  116. EnumProcessModules(process, &module_handles[0], module_handles.size() * sizeof(HMODULE), &cbNeeded);
  117. module_handles.resize(cbNeeded / sizeof(HMODULE));
  118. EnumProcessModules(process, &module_handles[0], module_handles.size() * sizeof(HMODULE), &cbNeeded);
  119. std::transform(module_handles.begin(), module_handles.end(), std::back_inserter(modules), get_mod_info(process));
  120. void *base = modules[0].base_address;
  121. // Setup stuff:
  122. CONTEXT *context = ep->ContextRecord;
  123. STACKFRAME64 frame;
  124. bool skip_first = false;
  125. frame.AddrPC.Mode = AddrModeFlat;
  126. frame.AddrStack.Mode = AddrModeFlat;
  127. frame.AddrFrame.Mode = AddrModeFlat;
  128. #ifdef _M_X64
  129. frame.AddrPC.Offset = context->Rip;
  130. frame.AddrStack.Offset = context->Rsp;
  131. frame.AddrFrame.Offset = context->Rbp;
  132. #else
  133. frame.AddrPC.Offset = context->Eip;
  134. frame.AddrStack.Offset = context->Esp;
  135. frame.AddrFrame.Offset = context->Ebp;
  136. // Skip the first one to avoid a duplicate on 32-bit mode
  137. skip_first = true;
  138. #endif
  139. line.SizeOfStruct = sizeof(line);
  140. IMAGE_NT_HEADERS *h = ImageNtHeader(base);
  141. DWORD image_type = h->FileHeader.Machine;
  142. String msg;
  143. const ProjectSettings *proj_settings = ProjectSettings::get_singleton();
  144. if (proj_settings) {
  145. msg = proj_settings->get("debug/settings/crash_handler/message");
  146. }
  147. fprintf(stderr, "Dumping the backtrace. %s\n", msg.utf8().get_data());
  148. int n = 0;
  149. do {
  150. if (skip_first) {
  151. skip_first = false;
  152. } else {
  153. if (frame.AddrPC.Offset != 0) {
  154. std::string fnName = symbol(process, frame.AddrPC.Offset).undecorated_name();
  155. if (SymGetLineFromAddr64(process, frame.AddrPC.Offset, &offset_from_symbol, &line))
  156. fprintf(stderr, "[%d] %s (%s:%d)\n", n, fnName.c_str(), line.FileName, line.LineNumber);
  157. else
  158. fprintf(stderr, "[%d] %s\n", n, fnName.c_str());
  159. } else
  160. fprintf(stderr, "[%d] ???\n", n);
  161. n++;
  162. }
  163. if (!StackWalk64(image_type, process, hThread, &frame, context, nullptr, SymFunctionTableAccess64, SymGetModuleBase64, nullptr))
  164. break;
  165. } while (frame.AddrReturn.Offset != 0 && n < 256);
  166. fprintf(stderr, "-- END OF BACKTRACE --\n");
  167. SymCleanup(process);
  168. // Pass the exception to the OS
  169. return EXCEPTION_CONTINUE_SEARCH;
  170. }
  171. #endif
  172. CrashHandler::CrashHandler() {
  173. disabled = false;
  174. }
  175. CrashHandler::~CrashHandler() {
  176. }
  177. void CrashHandler::disable() {
  178. if (disabled)
  179. return;
  180. disabled = true;
  181. }
  182. void CrashHandler::initialize() {
  183. }