Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: tools/CrashHandler.cpp

Issue 340523007: CrashHandler for Windows. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: if elif Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/core/SkPostConfig.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "CrashHandler.h" 1 #include "CrashHandler.h"
2 2
3 #include "SkTypes.h" 3 #include "SkTypes.h"
4 4
5 #include <stdio.h>
6 #include <stdlib.h> 5 #include <stdlib.h>
7 #include <signal.h>
8 6
9 #if defined(SK_BUILD_FOR_MAC) 7 #if defined(SK_BUILD_FOR_MAC)
10 8
11 // We only use local unwinding, so we can define this to select a faster impleme ntation. 9 // We only use local unwinding, so we can define this to select a faster impleme ntation.
12 #define UNW_LOCAL_ONLY 10 #define UNW_LOCAL_ONLY
13 #include <libunwind.h> 11 #include <libunwind.h>
14 #include <cxxabi.h> 12 #include <cxxabi.h>
15 13
16 static void handler(int sig) { 14 static void handler(int sig) {
17 unw_context_t context; 15 unw_context_t context;
18 unw_getcontext(&context); 16 unw_getcontext(&context);
19 17
20 unw_cursor_t cursor; 18 unw_cursor_t cursor;
21 unw_init_local(&cursor, &context); 19 unw_init_local(&cursor, &context);
22 20
23 fprintf(stderr, "\nSignal %d:\n", sig); 21 SkDebugf("\nSignal %d:\n", sig);
24 while (unw_step(&cursor) > 0) { 22 while (unw_step(&cursor) > 0) {
25 static const size_t kMax = 256; 23 static const size_t kMax = 256;
26 char mangled[kMax], demangled[kMax]; 24 char mangled[kMax], demangled[kMax];
27 unw_word_t offset; 25 unw_word_t offset;
28 unw_get_proc_name(&cursor, mangled, kMax, &offset); 26 unw_get_proc_name(&cursor, mangled, kMax, &offset);
29 27
30 int ok; 28 int ok;
31 size_t len = kMax; 29 size_t len = kMax;
32 abi::__cxa_demangle(mangled, demangled, &len, &ok); 30 abi::__cxa_demangle(mangled, demangled, &len, &ok);
33 31
34 fprintf(stderr, "%s (+0x%zx)\n", ok == 0 ? demangled : mangled, (size_t) offset); 32 SkDebugf("%s (+0x%zx)\n", ok == 0 ? demangled : mangled, (size_t)offset) ;
35 } 33 }
36 fprintf(stderr, "\n"); 34 SkDebugf("\n");
37 35
38 // Exit NOW. Don't notify other threads, don't call anything registered wit h atexit(). 36 // Exit NOW. Don't notify other threads, don't call anything registered wit h atexit().
39 _Exit(sig); 37 _Exit(sig);
40 } 38 }
41 39
42 #elif defined(SK_BUILD_FOR_UNIX) && !defined(SK_BUILD_FOR_NACL) // NACL doesn' t have backtrace(). 40 #elif defined(SK_BUILD_FOR_UNIX) && !defined(SK_BUILD_FOR_NACL) // NACL doesn' t have backtrace().
43 41
44 // We'd use libunwind here too, but it's a pain to get installed for both 32 and 64 bit on bots. 42 // We'd use libunwind here too, but it's a pain to get installed for both 32 and 64 bit on bots.
45 // Doesn't matter much: catchsegv is best anyway. 43 // Doesn't matter much: catchsegv is best anyway.
46 #include <execinfo.h> 44 #include <execinfo.h>
47 45
48 static void handler(int sig) { 46 static void handler(int sig) {
49 static const int kMax = 64; 47 static const int kMax = 64;
50 void* stack[kMax]; 48 void* stack[kMax];
51 const int count = backtrace(stack, kMax); 49 const int count = backtrace(stack, kMax);
52 50
53 fprintf(stderr, "\nSignal %d:\n", sig); 51 SkDebugf("\nSignal %d:\n", sig);
54 backtrace_symbols_fd(stack, count, 2/*stderr*/); 52 backtrace_symbols_fd(stack, count, 2/*stderr*/);
55 53
56 // Exit NOW. Don't notify other threads, don't call anything registered wit h atexit(). 54 // Exit NOW. Don't notify other threads, don't call anything registered wit h atexit().
57 _Exit(sig); 55 _Exit(sig);
58 } 56 }
59 57
60 #endif 58 #endif
61 59
62 #if defined(SK_BUILD_FOR_MAC) || (defined(SK_BUILD_FOR_UNIX) && !defined(SK_BUIL D_FOR_NACL)) 60 #if defined(SK_BUILD_FOR_MAC) || (defined(SK_BUILD_FOR_UNIX) && !defined(SK_BUIL D_FOR_NACL))
61 #include <signal.h>
63 62
64 void SetupCrashHandler() { 63 void SetupCrashHandler() {
65 static const int kSignals[] = { 64 static const int kSignals[] = {
66 SIGABRT, 65 SIGABRT,
67 SIGBUS, 66 SIGBUS,
68 SIGFPE, 67 SIGFPE,
69 SIGILL, 68 SIGILL,
70 SIGSEGV, 69 SIGSEGV,
71 }; 70 };
72 71
73 for (size_t i = 0; i < sizeof(kSignals) / sizeof(kSignals[0]); i++) { 72 for (size_t i = 0; i < sizeof(kSignals) / sizeof(kSignals[0]); i++) {
74 // Register our signal handler unless something's already done so (e.g. catchsegv). 73 // Register our signal handler unless something's already done so (e.g. catchsegv).
75 void (*prev)(int) = signal(kSignals[i], handler); 74 void (*prev)(int) = signal(kSignals[i], handler);
76 if (prev != SIG_DFL) { 75 if (prev != SIG_DFL) {
77 signal(kSignals[i], prev); 76 signal(kSignals[i], prev);
78 } 77 }
79 } 78 }
80 } 79 }
81 80
82 // TODO: #elif defined(SK_BUILD_FOR_WIN) when I find a Windows machine to work f rom. 81 #elif defined(SK_BUILD_FOR_WIN)
82
83 #include <DbgHelp.h>
84
85 static const struct {
86 const char* name;
87 int code;
88 } kExceptions[] = {
89 #define _(E) {#E, E}
90 _(EXCEPTION_ACCESS_VIOLATION),
91 _(EXCEPTION_BREAKPOINT),
92 _(EXCEPTION_INT_DIVIDE_BY_ZERO),
93 _(EXCEPTION_STACK_OVERFLOW),
94 // TODO: more?
95 #undef _
96 };
97
98 static LONG WINAPI handler(EXCEPTION_POINTERS* e) {
99 const DWORD code = e->ExceptionRecord->ExceptionCode;
100 SkDebugf("\nCaught exception %u", code);
101 for (size_t i = 0; i < SK_ARRAY_COUNT(kExceptions); i++) {
102 if (kExceptions[i].code == code) {
103 SkDebugf(" %s", kExceptions[i].name);
104 }
105 }
106 SkDebugf("\n");
107
108 // We need to run SymInitialize before doing any of the stack walking below.
109 HANDLE hProcess = GetCurrentProcess();
110 SymInitialize(hProcess, 0, true);
111
112 STACKFRAME64 frame;
113 sk_bzero(&frame, sizeof(frame));
114 // Start frame off from the frame that triggered the exception.
115 CONTEXT* c = e->ContextRecord;
116 frame.AddrPC.Mode = AddrModeFlat;
117 frame.AddrStack.Mode = AddrModeFlat;
118 frame.AddrFrame.Mode = AddrModeFlat;
119 #if defined(_X86_)
120 frame.AddrPC.Offset = c->Eip;
121 frame.AddrStack.Offset = c->Esp;
122 frame.AddrFrame.Offset = c->Ebp;
123 const DWORD machineType = IMAGE_FILE_MACHINE_I386;
124 #elif defined(_AMD64_)
125 frame.AddrPC.Offset = c->Rip;
126 frame.AddrStack.Offset = c->Rsp;
127 frame.AddrFrame.Offset = c->Rbp;
128 const DWORD machineType = IMAGE_FILE_MACHINE_AMD64;
129 #endif
130
131 while (StackWalk64(machineType,
132 GetCurrentProcess(),
133 GetCurrentThread(),
134 &frame,
135 c,
136 NULL,
137 SymFunctionTableAccess64,
138 SymGetModuleBase64,
139 NULL)) {
140 // Buffer to store symbol name in.
141 static const int kMaxNameLength = 1024;
142 uint8_t buffer[sizeof(IMAGEHLP_SYMBOL64) + kMaxNameLength];
143 sk_bzero(buffer, sizeof(buffer));
144
145 // We have to place IMAGEHLP_SYMBOL64 at the front, and fill in how much space it can use.
146 IMAGEHLP_SYMBOL64* symbol = reinterpret_cast<IMAGEHLP_SYMBOL64*>(&buffer );
147 symbol->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL64);
148 symbol->MaxNameLength = kMaxNameLength - 1;
149
150 // Translate the current PC into a symbol and byte offset from the symbo l.
151 DWORD64 offset;
152 SymGetSymFromAddr64(hProcess, frame.AddrPC.Offset, &offset, symbol);
153
154 SkDebugf("%s +%x\n", symbol->Name, offset);
155 }
156
157 // Exit NOW. Don't notify other threads, don't call anything registered wit h atexit().
158 _exit(1);
159
160 // The compiler wants us to return something. This is what we'd do if we di dn't _exit().
161 return EXCEPTION_EXECUTE_HANDLER;
162 }
163
164 void SetupCrashHandler() {
165 SetUnhandledExceptionFilter(handler);
166 }
83 167
84 #else 168 #else
85 169
86 void SetupCrashHandler() { } 170 void SetupCrashHandler() { }
87 171
88 #endif 172 #endif
OLDNEW
« no previous file with comments | « include/core/SkPostConfig.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698