[1505] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Christoph Renner |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
[2030] | 30 | @file |
---|
[1505] | 31 | @brief Implementation of the SignalHandler class. |
---|
| 32 | */ |
---|
| 33 | |
---|
| 34 | #include "SignalHandler.h" |
---|
| 35 | |
---|
| 36 | #include <iostream> |
---|
[1837] | 37 | #include <cstdlib> |
---|
| 38 | #include <cstring> |
---|
[3196] | 39 | #include "Debug.h" |
---|
[1505] | 40 | |
---|
[2171] | 41 | namespace orxonox |
---|
| 42 | { |
---|
[3370] | 43 | SignalHandler* SignalHandler::singletonPtr_s = NULL; |
---|
[2171] | 44 | } |
---|
[1505] | 45 | |
---|
[7449] | 46 | #if defined(ORXONOX_PLATFORM_LINUX) |
---|
[1505] | 47 | |
---|
| 48 | #include <wait.h> |
---|
| 49 | #include <X11/Xlib.h> |
---|
| 50 | #include <X11/Xutil.h> |
---|
| 51 | #include <X11/keysym.h> |
---|
| 52 | |
---|
[2171] | 53 | namespace orxonox |
---|
[1505] | 54 | { |
---|
[2171] | 55 | /** |
---|
| 56 | * register signal handlers for SIGSEGV and SIGABRT |
---|
| 57 | * @param appName path to executable eg argv[0] |
---|
| 58 | * @param filename filename to append backtrace to |
---|
| 59 | */ |
---|
| 60 | void SignalHandler::doCatch( const std::string & appName, const std::string & filename ) |
---|
| 61 | { |
---|
| 62 | this->appName = appName; |
---|
| 63 | this->filename = filename; |
---|
[1505] | 64 | |
---|
[2171] | 65 | // make sure doCatch is only called once without calling dontCatch |
---|
| 66 | assert( sigRecList.size() == 0 ); |
---|
[1505] | 67 | |
---|
[2171] | 68 | catchSignal( SIGSEGV ); |
---|
| 69 | catchSignal( SIGABRT ); |
---|
| 70 | catchSignal( SIGILL ); |
---|
| 71 | } |
---|
[1505] | 72 | |
---|
[2171] | 73 | /** |
---|
| 74 | * restore previous signal handlers |
---|
| 75 | */ |
---|
| 76 | void SignalHandler::dontCatch() |
---|
| 77 | { |
---|
| 78 | for ( SignalRecList::iterator it = sigRecList.begin(); it != sigRecList.end(); it++ ) |
---|
| 79 | { |
---|
| 80 | signal( it->signal, it->handler ); |
---|
| 81 | } |
---|
[1505] | 82 | |
---|
[2171] | 83 | sigRecList.clear(); |
---|
| 84 | } |
---|
[1505] | 85 | |
---|
[2171] | 86 | /** |
---|
| 87 | * catch signal sig |
---|
| 88 | * @param sig signal to catch |
---|
| 89 | */ |
---|
| 90 | void SignalHandler::catchSignal( int sig ) |
---|
| 91 | { |
---|
| 92 | sig_t handler = signal( sig, SignalHandler::sigHandler ); |
---|
[1505] | 93 | |
---|
[2171] | 94 | assert( handler != SIG_ERR ); |
---|
[1505] | 95 | |
---|
[2171] | 96 | SignalRec rec; |
---|
| 97 | rec.signal = sig; |
---|
| 98 | rec.handler = handler; |
---|
[1505] | 99 | |
---|
[2171] | 100 | sigRecList.push_front( rec ); |
---|
| 101 | } |
---|
[1505] | 102 | |
---|
[2171] | 103 | /** |
---|
| 104 | * sigHandler is called when receiving signals |
---|
| 105 | * @param sig |
---|
| 106 | */ |
---|
| 107 | void SignalHandler::sigHandler( int sig ) |
---|
| 108 | { |
---|
| 109 | std::string sigName = "UNKNOWN"; |
---|
[1505] | 110 | |
---|
[2171] | 111 | switch ( sig ) |
---|
| 112 | { |
---|
| 113 | case SIGSEGV: |
---|
| 114 | sigName = "SIGSEGV"; |
---|
| 115 | break; |
---|
| 116 | case SIGABRT: |
---|
| 117 | sigName = "SIGABRT"; |
---|
| 118 | break; |
---|
| 119 | case SIGILL: |
---|
| 120 | sigName = "SIGILL"; |
---|
| 121 | break; |
---|
| 122 | } |
---|
[3198] | 123 | // if the signalhandler has already been destroyed then don't do anything |
---|
[3370] | 124 | if( SignalHandler::singletonPtr_s == 0 ) |
---|
[3198] | 125 | { |
---|
[7449] | 126 | COUT(0) << "Received signal " << sigName.c_str() << std::endl << "Can't write backtrace because SignalHandler is already destroyed" << std::endl; |
---|
[3198] | 127 | exit(EXIT_FAILURE); |
---|
| 128 | } |
---|
[1505] | 129 | |
---|
[3198] | 130 | for ( SignalCallbackList::iterator it = SignalHandler::getInstance().callbackList.begin(); it != SignalHandler::getInstance().callbackList.end(); it++ ) |
---|
| 131 | { |
---|
| 132 | (*(it->cb))( it->someData ); |
---|
| 133 | } |
---|
| 134 | |
---|
| 135 | |
---|
[7449] | 136 | COUT(0) << "Received signal " << sigName.c_str() << std::endl << "Try to write backtrace to file orxonox_crash.log" << std::endl; |
---|
[1505] | 137 | |
---|
[2171] | 138 | int sigPipe[2]; |
---|
| 139 | if ( pipe(sigPipe) == -1 ) |
---|
| 140 | { |
---|
| 141 | perror("pipe failed!\n"); |
---|
| 142 | exit(EXIT_FAILURE); |
---|
| 143 | } |
---|
[1505] | 144 | |
---|
[2171] | 145 | int sigPid = fork(); |
---|
[1505] | 146 | |
---|
[2171] | 147 | if ( sigPid == -1 ) |
---|
| 148 | { |
---|
| 149 | perror("fork failed!\n"); |
---|
| 150 | exit(EXIT_FAILURE); |
---|
| 151 | } |
---|
[1505] | 152 | |
---|
[2171] | 153 | // gdb will be attached to this process |
---|
| 154 | if ( sigPid == 0 ) |
---|
| 155 | { |
---|
[2662] | 156 | getInstance().dontCatch(); |
---|
[2171] | 157 | // wait for message from parent when it has attached gdb |
---|
| 158 | int someData; |
---|
[1505] | 159 | |
---|
[2171] | 160 | read( sigPipe[0], &someData, sizeof(someData) ); |
---|
[1505] | 161 | |
---|
[2171] | 162 | if ( someData != 0x12345678 ) |
---|
| 163 | { |
---|
| 164 | COUT(0) << "something went wrong :(" << std::endl; |
---|
| 165 | } |
---|
[1505] | 166 | |
---|
[2171] | 167 | return; |
---|
| 168 | } |
---|
[1505] | 169 | |
---|
[2171] | 170 | int gdbIn[2]; |
---|
| 171 | int gdbOut[2]; |
---|
| 172 | int gdbErr[2]; |
---|
[1505] | 173 | |
---|
[2171] | 174 | if ( pipe(gdbIn) == -1 || pipe(gdbOut) == -1 || pipe(gdbErr) == -1 ) |
---|
| 175 | { |
---|
| 176 | perror("pipe failed!\n"); |
---|
| 177 | kill( sigPid, SIGTERM ); |
---|
| 178 | waitpid( sigPid, NULL, 0 ); |
---|
| 179 | exit(EXIT_FAILURE); |
---|
| 180 | } |
---|
[1505] | 181 | |
---|
[2171] | 182 | int gdbPid = fork(); |
---|
| 183 | // this process will run gdb |
---|
[1505] | 184 | |
---|
[2171] | 185 | if ( gdbPid == -1 ) |
---|
| 186 | { |
---|
| 187 | perror("fork failed\n"); |
---|
| 188 | kill( sigPid, SIGTERM ); |
---|
| 189 | waitpid( sigPid, NULL, 0 ); |
---|
| 190 | exit(EXIT_FAILURE); |
---|
| 191 | } |
---|
[1505] | 192 | |
---|
[2171] | 193 | if ( gdbPid == 0 ) |
---|
| 194 | { |
---|
| 195 | // start gdb |
---|
[1505] | 196 | |
---|
[2171] | 197 | close(gdbIn[1]); |
---|
| 198 | close(gdbOut[0]); |
---|
| 199 | close(gdbErr[0]); |
---|
[1505] | 200 | |
---|
[2171] | 201 | dup2( gdbIn[0], STDIN_FILENO ); |
---|
| 202 | dup2( gdbOut[1], STDOUT_FILENO ); |
---|
| 203 | dup2( gdbErr[1], STDERR_FILENO ); |
---|
[1505] | 204 | |
---|
[3301] | 205 | execlp( "sh", "sh", "-c", "gdb", static_cast<void*>(NULL)); |
---|
[2171] | 206 | } |
---|
[1505] | 207 | |
---|
[2171] | 208 | char cmd[256]; |
---|
[2662] | 209 | snprintf( cmd, 256, "file %s\nattach %d\nc\n", getInstance().appName.c_str(), sigPid ); |
---|
[2171] | 210 | write( gdbIn[1], cmd, strlen(cmd) ); |
---|
[1505] | 211 | |
---|
[2171] | 212 | int charsFound = 0; |
---|
| 213 | int promptFound = 0; |
---|
| 214 | char byte; |
---|
| 215 | while ( read( gdbOut[0], &byte, 1 ) == 1 ) |
---|
| 216 | { |
---|
| 217 | if ( |
---|
[3196] | 218 | (charsFound == 0 && byte == '(') || |
---|
| 219 | (charsFound == 1 && byte == 'g') || |
---|
| 220 | (charsFound == 2 && byte == 'd') || |
---|
| 221 | (charsFound == 3 && byte == 'b') || |
---|
| 222 | (charsFound == 4 && byte == ')') || |
---|
| 223 | (charsFound == 5 && byte == ' ') |
---|
[2171] | 224 | ) |
---|
| 225 | charsFound++; |
---|
| 226 | else |
---|
| 227 | charsFound = 0; |
---|
[1505] | 228 | |
---|
[2171] | 229 | if ( charsFound == 6 ) |
---|
| 230 | { |
---|
| 231 | promptFound++; |
---|
| 232 | charsFound = 0; |
---|
| 233 | } |
---|
[1505] | 234 | |
---|
[2171] | 235 | if ( promptFound == 3 ) |
---|
| 236 | { |
---|
| 237 | break; |
---|
| 238 | } |
---|
| 239 | } |
---|
[1505] | 240 | |
---|
[2171] | 241 | int someData = 0x12345678; |
---|
| 242 | write( sigPipe[1], &someData, sizeof(someData) ); |
---|
[1505] | 243 | |
---|
[2171] | 244 | write( gdbIn[1], "bt\nk\nq\n", 7 ); |
---|
[1505] | 245 | |
---|
| 246 | |
---|
| 247 | charsFound = 0; |
---|
[2171] | 248 | promptFound = 0; |
---|
| 249 | std::string bt; |
---|
| 250 | while ( read( gdbOut[0], &byte, 1 ) == 1 ) |
---|
| 251 | { |
---|
| 252 | bt += std::string( &byte, 1 ); |
---|
[1505] | 253 | |
---|
[2171] | 254 | if ( |
---|
[3196] | 255 | (charsFound == 0 && byte == '(') || |
---|
| 256 | (charsFound == 1 && byte == 'g') || |
---|
| 257 | (charsFound == 2 && byte == 'd') || |
---|
| 258 | (charsFound == 3 && byte == 'b') || |
---|
| 259 | (charsFound == 4 && byte == ')') || |
---|
| 260 | (charsFound == 5 && byte == ' ') |
---|
[2171] | 261 | ) |
---|
| 262 | charsFound++; |
---|
| 263 | else |
---|
| 264 | charsFound = 0; |
---|
[1505] | 265 | |
---|
[2171] | 266 | if ( charsFound == 6 ) |
---|
| 267 | { |
---|
| 268 | promptFound++; |
---|
| 269 | charsFound = 0; |
---|
| 270 | bt += "\n"; |
---|
| 271 | } |
---|
[1505] | 272 | |
---|
[2171] | 273 | if ( promptFound == 3 ) |
---|
| 274 | { |
---|
| 275 | break; |
---|
| 276 | } |
---|
| 277 | } |
---|
[1505] | 278 | |
---|
| 279 | |
---|
[2171] | 280 | waitpid( sigPid, NULL, 0 ); |
---|
| 281 | waitpid( gdbPid, NULL, 0 ); |
---|
[1505] | 282 | |
---|
[2171] | 283 | int wsRemoved = 0; |
---|
[1505] | 284 | |
---|
[2171] | 285 | while ( wsRemoved < 2 && bt.length() > 0 ) |
---|
| 286 | { |
---|
| 287 | if ( bt[1] == '\n' ) |
---|
| 288 | wsRemoved++; |
---|
| 289 | bt.erase(0, 1); |
---|
| 290 | } |
---|
[1505] | 291 | |
---|
[2171] | 292 | if ( bt.length() > 0 ) |
---|
| 293 | bt.erase(0, 1); |
---|
[1505] | 294 | |
---|
[2171] | 295 | time_t now = time(NULL); |
---|
[1505] | 296 | |
---|
[2731] | 297 | std::string timeString = |
---|
[2171] | 298 | "=======================================================\n" |
---|
| 299 | "= time: " + std::string(ctime(&now)) + |
---|
[2731] | 300 | "=======================================================\n"; |
---|
[2171] | 301 | bt.insert(0, timeString); |
---|
[1505] | 302 | |
---|
[2753] | 303 | FILE * f = fopen( getInstance().filename.c_str(), "w" ); |
---|
[1505] | 304 | |
---|
[2171] | 305 | if ( !f ) |
---|
| 306 | { |
---|
[2662] | 307 | perror( ( std::string( "could not append to " ) + getInstance().filename ).c_str() ); |
---|
[2171] | 308 | exit(EXIT_FAILURE); |
---|
| 309 | } |
---|
[1505] | 310 | |
---|
[2171] | 311 | if ( fwrite( bt.c_str(), 1, bt.length(), f ) != bt.length() ) |
---|
| 312 | { |
---|
[2662] | 313 | COUT(0) << "could not write " << bt.length() << " byte to " << getInstance().filename << std::endl; |
---|
[2171] | 314 | exit(EXIT_FAILURE); |
---|
| 315 | } |
---|
[1505] | 316 | |
---|
[2171] | 317 | exit(EXIT_FAILURE); |
---|
| 318 | } |
---|
[1505] | 319 | |
---|
[2171] | 320 | void SignalHandler::registerCallback( SignalCallback cb, void * someData ) |
---|
| 321 | { |
---|
| 322 | SignalCallbackRec rec; |
---|
| 323 | rec.cb = cb; |
---|
| 324 | rec.someData = someData; |
---|
| 325 | |
---|
| 326 | callbackList.push_back(rec); |
---|
| 327 | } |
---|
[1505] | 328 | } |
---|
| 329 | |
---|
[7449] | 330 | #elif defined(ORXONOX_PLATFORM_WINDOWS) && defined(DBGHELP_FOUND) |
---|
| 331 | |
---|
| 332 | #include <iostream> |
---|
| 333 | #include <iomanip> |
---|
| 334 | #include <fstream> |
---|
| 335 | #include <dbghelp.h> |
---|
| 336 | |
---|
| 337 | namespace orxonox |
---|
| 338 | { |
---|
| 339 | /// Constructor: Initializes the values, but doesn't register the exception handler. |
---|
| 340 | SignalHandler::SignalHandler() |
---|
| 341 | { |
---|
| 342 | this->prevExceptionFilter_ = NULL; |
---|
| 343 | } |
---|
| 344 | |
---|
| 345 | /// Destructor: Removes the exception handler. |
---|
| 346 | SignalHandler::~SignalHandler() |
---|
| 347 | { |
---|
| 348 | if (this->prevExceptionFilter_ != NULL) |
---|
| 349 | { |
---|
| 350 | // Remove the unhandled exception filter function |
---|
| 351 | SetUnhandledExceptionFilter(this->prevExceptionFilter_); |
---|
| 352 | this->prevExceptionFilter_ = NULL; |
---|
| 353 | } |
---|
| 354 | } |
---|
| 355 | |
---|
| 356 | /// Registers an exception handler and initializes the filename of the crash log. |
---|
| 357 | void SignalHandler::doCatch(const std::string&, const std::string& filename) |
---|
| 358 | { |
---|
| 359 | this->filename_ = filename; |
---|
| 360 | |
---|
| 361 | // don't register twice |
---|
| 362 | assert(this->prevExceptionFilter_ == NULL); |
---|
| 363 | |
---|
| 364 | if (this->prevExceptionFilter_ == NULL) |
---|
| 365 | { |
---|
| 366 | // Install the unhandled exception filter function |
---|
| 367 | this->prevExceptionFilter_ = SetUnhandledExceptionFilter(&SignalHandler::exceptionFilter); |
---|
| 368 | } |
---|
| 369 | } |
---|
| 370 | |
---|
| 371 | /// Exception handler: Will be called by Windows if an unhandled exceptions occurs. |
---|
| 372 | /* static */ LONG WINAPI SignalHandler::exceptionFilter(PEXCEPTION_POINTERS pExceptionInfo) |
---|
| 373 | { |
---|
| 374 | // avoid loops |
---|
| 375 | static bool bExecuting = false; |
---|
| 376 | |
---|
| 377 | if (!bExecuting) |
---|
| 378 | { |
---|
| 379 | bExecuting = true; |
---|
| 380 | |
---|
| 381 | |
---|
| 382 | // if the signalhandler has already been destroyed then don't do anything |
---|
| 383 | if (SignalHandler::singletonPtr_s == 0) |
---|
| 384 | { |
---|
[7450] | 385 | COUT(1) << "Caught an unhandled exception" << std::endl << "Can't write backtrace because SignalHandler is already destroyed" << std::endl; |
---|
[7449] | 386 | exit(EXIT_FAILURE); |
---|
| 387 | } |
---|
| 388 | |
---|
[7450] | 389 | COUT(1) << "Caught an unhandled exception" << std::endl << "Try to write backtrace to orxonox_crash.log..." << std::endl; |
---|
[7449] | 390 | |
---|
| 391 | // write the crash log |
---|
| 392 | std::ofstream crashlog(SignalHandler::getInstance().filename_.c_str()); |
---|
| 393 | |
---|
| 394 | time_t now = time(NULL); |
---|
| 395 | |
---|
| 396 | crashlog << "=======================================================" << std::endl; |
---|
| 397 | crashlog << "= Time: " << std::string(ctime(&now)); |
---|
| 398 | crashlog << "=======================================================" << std::endl; |
---|
| 399 | crashlog << std::endl; |
---|
| 400 | |
---|
| 401 | const std::string& error = SignalHandler::getExceptionType(pExceptionInfo); |
---|
| 402 | |
---|
| 403 | crashlog << error << std::endl; |
---|
| 404 | crashlog << std::endl; |
---|
| 405 | |
---|
| 406 | const std::string& callstack = SignalHandler::getStackTrace(pExceptionInfo); |
---|
| 407 | |
---|
| 408 | crashlog << "Call stack:" << std::endl; |
---|
| 409 | crashlog << callstack << std::endl; |
---|
| 410 | |
---|
| 411 | crashlog.close(); |
---|
| 412 | |
---|
| 413 | // print the same information also to the console |
---|
| 414 | COUT(1) << std::endl; |
---|
| 415 | COUT(1) << error << std::endl; |
---|
| 416 | COUT(1) << std::endl; |
---|
| 417 | COUT(1) << "Call stack:" << std::endl; |
---|
| 418 | COUT(1) << callstack << std::endl; |
---|
| 419 | |
---|
| 420 | bExecuting = false; |
---|
| 421 | } |
---|
| 422 | else |
---|
| 423 | { |
---|
| 424 | COUT(1) << "An error occurred while writing the backtrace" << std::endl; |
---|
| 425 | } |
---|
| 426 | |
---|
| 427 | if (SignalHandler::getInstance().prevExceptionFilter_) |
---|
| 428 | return SignalHandler::getInstance().prevExceptionFilter_(pExceptionInfo); |
---|
| 429 | else |
---|
| 430 | return EXCEPTION_CONTINUE_SEARCH; |
---|
| 431 | } |
---|
| 432 | |
---|
| 433 | /// Returns the stack trace for either the current function, or, if @a pExceptionInfo is not NULL, for the given exception context. |
---|
| 434 | /* static */ std::string SignalHandler::getStackTrace(PEXCEPTION_POINTERS pExceptionInfo) |
---|
| 435 | { |
---|
| 436 | // Initialise the symbol table to get function names: |
---|
| 437 | SymInitialize(GetCurrentProcess(), 0, true); |
---|
| 438 | |
---|
| 439 | // Store the current stack frame here: |
---|
| 440 | STACKFRAME frame; |
---|
| 441 | memset(&frame, 0, sizeof(STACKFRAME)); |
---|
| 442 | |
---|
| 443 | // Get processor information for the current thread: |
---|
| 444 | CONTEXT context; |
---|
| 445 | memset(&context, 0, sizeof(CONTEXT)); |
---|
| 446 | |
---|
| 447 | if (pExceptionInfo) |
---|
| 448 | { |
---|
| 449 | // get the context of the exception |
---|
| 450 | context = *pExceptionInfo->ContextRecord; |
---|
| 451 | } |
---|
| 452 | else |
---|
| 453 | { |
---|
| 454 | context.ContextFlags = CONTEXT_FULL; |
---|
| 455 | |
---|
| 456 | // Load the RTLCapture context function: |
---|
| 457 | HINSTANCE kernel32 = LoadLibrary("Kernel32.dll"); |
---|
| 458 | typedef void (*RtlCaptureContextFunc) (CONTEXT* ContextRecord); |
---|
| 459 | RtlCaptureContextFunc rtlCaptureContext = (RtlCaptureContextFunc) GetProcAddress(kernel32, "RtlCaptureContext"); |
---|
| 460 | |
---|
| 461 | // Capture the thread context |
---|
| 462 | rtlCaptureContext(&context); |
---|
| 463 | } |
---|
| 464 | |
---|
| 465 | DWORD type; |
---|
| 466 | |
---|
| 467 | // set the flags and initialize the stackframe struct |
---|
| 468 | #ifdef _M_IX86 |
---|
| 469 | type = IMAGE_FILE_MACHINE_I386; |
---|
| 470 | |
---|
| 471 | frame.AddrPC.Offset = context.Eip; // Current location in program |
---|
| 472 | frame.AddrPC.Mode = AddrModeFlat; // Address mode for this pointer: flat 32 bit addressing |
---|
| 473 | frame.AddrStack.Offset = context.Esp; // Stack pointers current value |
---|
| 474 | frame.AddrStack.Mode = AddrModeFlat; // Address mode for this pointer: flat 32 bit addressing |
---|
| 475 | frame.AddrFrame.Offset = context.Ebp; // Value of register used to access local function variables. |
---|
| 476 | frame.AddrFrame.Mode = AddrModeFlat; // Address mode for this pointer: flat 32 bit addressing |
---|
| 477 | #elif _M_X64 |
---|
| 478 | type = IMAGE_FILE_MACHINE_AMD64; |
---|
| 479 | |
---|
| 480 | frame.AddrPC.Offset = context.Rip; // Current location in program |
---|
| 481 | frame.AddrPC.Mode = AddrModeFlat; // Address mode for this pointer: flat 32 bit addressing |
---|
| 482 | frame.AddrStack.Offset = context.Rsp; // Stack pointers current value |
---|
| 483 | frame.AddrStack.Mode = AddrModeFlat; // Address mode for this pointer: flat 32 bit addressing |
---|
| 484 | frame.AddrFrame.Offset = context.Rsp; // Value of register used to access local function variables. |
---|
| 485 | frame.AddrFrame.Mode = AddrModeFlat; // Address mode for this pointer: flat 32 bit addressing |
---|
| 486 | #elif _M_IA64 |
---|
| 487 | type = IMAGE_FILE_MACHINE_IA64; |
---|
| 488 | |
---|
| 489 | frame.AddrPC.Offset = context.StIIP; // Current location in program |
---|
| 490 | frame.AddrPC.Mode = AddrModeFlat; // Address mode for this pointer: flat 32 bit addressing |
---|
| 491 | frame.AddrStack.Offset = context.IntSp; // Stack pointers current value |
---|
| 492 | frame.AddrStack.Mode = AddrModeFlat; // Address mode for this pointer: flat 32 bit addressing |
---|
| 493 | frame.AddrFrame.Offset = context.IntSp; // Value of register used to access local function variables. |
---|
| 494 | frame.AddrFrame.Mode = AddrModeFlat; // Address mode for this pointer: flat 32 bit addressing |
---|
| 495 | frame.AddrBStore.Offset = context.RsBSP; // |
---|
| 496 | frame.AddrBStore.Mode = AddrModeFlat; // |
---|
| 497 | #else |
---|
| 498 | return |
---|
| 499 | #endif |
---|
| 500 | |
---|
| 501 | std::string output; |
---|
| 502 | |
---|
| 503 | // Keep getting stack frames from windows till there are no more left: |
---|
| 504 | for (int i = 0; |
---|
| 505 | StackWalk |
---|
| 506 | ( |
---|
| 507 | type , // MachineType |
---|
| 508 | GetCurrentProcess() , // Process to get stack trace for |
---|
| 509 | GetCurrentThread() , // Thread to get stack trace for |
---|
| 510 | &frame , // Where to store next stack frame |
---|
| 511 | &context , // Pointer to processor context record |
---|
| 512 | 0 , // Routine to read process memory: use the default ReadProcessMemory |
---|
| 513 | &SymFunctionTableAccess , // Routine to access the modules symbol table |
---|
| 514 | &SymGetModuleBase , // Routine to access the modules base address |
---|
| 515 | 0 // Something to do with 16-bit code. Not needed. |
---|
| 516 | ); |
---|
| 517 | ++i |
---|
| 518 | ) |
---|
| 519 | { |
---|
| 520 | //------------------------------------------------------------------ |
---|
| 521 | // Declare an image help symbol structure to hold symbol info and |
---|
| 522 | // name up to 256 chars This struct is of variable lenght though so |
---|
| 523 | // it must be declared as a raw byte buffer. |
---|
| 524 | //------------------------------------------------------------------ |
---|
| 525 | static char symbolBuffer[sizeof(IMAGEHLP_SYMBOL) + 255]; |
---|
| 526 | memset(symbolBuffer, 0, sizeof(IMAGEHLP_SYMBOL) + 255); |
---|
| 527 | |
---|
| 528 | // Cast it to a symbol struct: |
---|
| 529 | IMAGEHLP_SYMBOL * symbol = (IMAGEHLP_SYMBOL*) symbolBuffer; |
---|
| 530 | |
---|
| 531 | // Need to set the first two fields of this symbol before obtaining name info: |
---|
| 532 | symbol->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL) + 255; |
---|
| 533 | symbol->MaxNameLength = 254; |
---|
| 534 | |
---|
| 535 | // The displacement from the beginning of the symbol is stored here: pretty useless |
---|
| 536 | unsigned displacement = 0; |
---|
| 537 | |
---|
| 538 | output += multi_cast<std::string>(i) + ": "; |
---|
| 539 | |
---|
| 540 | // Get the symbol information from the address of the instruction pointer register: |
---|
| 541 | if |
---|
| 542 | ( |
---|
| 543 | SymGetSymFromAddr |
---|
| 544 | ( |
---|
| 545 | GetCurrentProcess() , // Process to get symbol information for |
---|
| 546 | frame.AddrPC.Offset , // Address to get symbol for: instruction pointer register |
---|
| 547 | (DWORD*) &displacement , // Displacement from the beginning of the symbol: what is this for ? |
---|
| 548 | symbol // Where to save the symbol |
---|
| 549 | ) |
---|
| 550 | ) |
---|
| 551 | { |
---|
| 552 | // Add the name of the function to the function list: |
---|
| 553 | output += SignalHandler::pointerToString(frame.AddrPC.Offset) + " " + symbol->Name; |
---|
| 554 | } |
---|
| 555 | else |
---|
| 556 | { |
---|
| 557 | // Print an unknown location: |
---|
| 558 | output += SignalHandler::pointerToString(frame.AddrPC.Offset); |
---|
| 559 | } |
---|
| 560 | |
---|
| 561 | // output += " (" + SignalHandler::pointerToString(displacement) + ")"; |
---|
| 562 | output += "\n"; |
---|
| 563 | } |
---|
| 564 | |
---|
| 565 | // Cleanup the symbol table: |
---|
| 566 | SymCleanup(GetCurrentProcess()); |
---|
| 567 | |
---|
| 568 | return output; |
---|
| 569 | } |
---|
| 570 | |
---|
| 571 | /// Returns a description of the given exception. |
---|
| 572 | // Based on code from Dr. Mingw by José Fonseca |
---|
| 573 | /* static */ std::string SignalHandler::getExceptionType(PEXCEPTION_POINTERS pExceptionInfo) |
---|
| 574 | { |
---|
| 575 | PEXCEPTION_RECORD pExceptionRecord = pExceptionInfo->ExceptionRecord; |
---|
| 576 | TCHAR szModule[MAX_PATH]; |
---|
| 577 | HMODULE hModule; |
---|
| 578 | |
---|
| 579 | std::string output = (GetModuleFileName(NULL, szModule, MAX_PATH) ? SignalHandler::getModuleName(szModule) : "Application"); |
---|
| 580 | output += " caused "; |
---|
| 581 | |
---|
| 582 | switch(pExceptionRecord->ExceptionCode) |
---|
| 583 | { |
---|
| 584 | case EXCEPTION_ACCESS_VIOLATION: output += "an Access Violation"; break; |
---|
| 585 | case EXCEPTION_ARRAY_BOUNDS_EXCEEDED: output += "an Array Bound Exceeded"; break; |
---|
| 586 | case EXCEPTION_BREAKPOINT: output += "a Breakpoint"; break; |
---|
| 587 | case EXCEPTION_DATATYPE_MISALIGNMENT: output += "a Datatype Misalignment"; break; |
---|
| 588 | case EXCEPTION_FLT_DENORMAL_OPERAND: output += "a Float Denormal Operand"; break; |
---|
| 589 | case EXCEPTION_FLT_DIVIDE_BY_ZERO: output += "a Float Divide By Zero"; break; |
---|
| 590 | case EXCEPTION_FLT_INEXACT_RESULT: output += "a Float Inexact Result"; break; |
---|
| 591 | case EXCEPTION_FLT_INVALID_OPERATION: output += "a Float Invalid Operation"; break; |
---|
| 592 | case EXCEPTION_FLT_OVERFLOW: output += "a Float Overflow"; break; |
---|
| 593 | case EXCEPTION_FLT_STACK_CHECK: output += "a Float Stack Check"; break; |
---|
| 594 | case EXCEPTION_FLT_UNDERFLOW: output += "a Float Underflow"; break; |
---|
| 595 | case EXCEPTION_GUARD_PAGE: output += "a Guard Page"; break; |
---|
| 596 | case EXCEPTION_ILLEGAL_INSTRUCTION: output += "an Illegal Instruction"; break; |
---|
| 597 | case EXCEPTION_IN_PAGE_ERROR: output += "an In Page Error"; break; |
---|
| 598 | case EXCEPTION_INT_DIVIDE_BY_ZERO: output += "an Integer Divide By Zero"; break; |
---|
| 599 | case EXCEPTION_INT_OVERFLOW: output += "an Integer Overflow"; break; |
---|
| 600 | case EXCEPTION_INVALID_DISPOSITION: output += "an Invalid Disposition"; break; |
---|
| 601 | case EXCEPTION_INVALID_HANDLE: output += "an Invalid Handle"; break; |
---|
| 602 | case EXCEPTION_NONCONTINUABLE_EXCEPTION: output += "a Noncontinuable Exception"; break; |
---|
| 603 | case EXCEPTION_PRIV_INSTRUCTION: output += "a Privileged Instruction"; break; |
---|
| 604 | case EXCEPTION_SINGLE_STEP: output += "a Single Step"; break; |
---|
| 605 | case EXCEPTION_STACK_OVERFLOW: output += "a Stack Overflow"; break; |
---|
| 606 | case DBG_CONTROL_C: output += "a Control+C"; break; |
---|
| 607 | case DBG_CONTROL_BREAK: output += "a Control+Break"; break; |
---|
| 608 | case DBG_TERMINATE_THREAD: output += "a Terminate Thread"; break; |
---|
| 609 | case DBG_TERMINATE_PROCESS: output += "a Terminate Process"; break; |
---|
| 610 | case RPC_S_UNKNOWN_IF: output += "an Unknown Interface"; break; |
---|
| 611 | case RPC_S_SERVER_UNAVAILABLE: output += "a Server Unavailable"; break; |
---|
| 612 | default: output += "an Unknown Exception (" + SignalHandler::pointerToString(pExceptionRecord->ExceptionCode) + ")"; break; |
---|
| 613 | } |
---|
| 614 | |
---|
| 615 | // Now print information about where the fault occured |
---|
| 616 | output += " at location " + SignalHandler::pointerToString(pExceptionRecord->ExceptionAddress); |
---|
| 617 | if ((hModule = (HMODULE) SignalHandler::getModuleBase((DWORD) pExceptionRecord->ExceptionAddress)) && GetModuleFileName(hModule, szModule, MAX_PATH)) |
---|
| 618 | { |
---|
| 619 | output += " in module "; |
---|
| 620 | output += SignalHandler::getModuleName(szModule); |
---|
| 621 | } |
---|
| 622 | |
---|
| 623 | // If the exception was an access violation, print out some additional information, to the error log and the debugger. |
---|
| 624 | if(pExceptionRecord->ExceptionCode == EXCEPTION_ACCESS_VIOLATION && pExceptionRecord->NumberParameters >= 2) |
---|
| 625 | { |
---|
| 626 | output += " "; |
---|
| 627 | output += pExceptionRecord->ExceptionInformation[0] ? "writing to" : "reading from"; |
---|
| 628 | output += " location "; |
---|
| 629 | output += SignalHandler::pointerToString(pExceptionRecord->ExceptionInformation[1]); |
---|
| 630 | } |
---|
| 631 | |
---|
| 632 | return output; |
---|
| 633 | } |
---|
| 634 | |
---|
| 635 | /// Strips the directories from the path to the module and returns the module's name only. |
---|
| 636 | /* static */ std::string SignalHandler::getModuleName(const std::string& path) |
---|
| 637 | { |
---|
| 638 | return path.substr(path.find_last_of('\\') + 1); |
---|
| 639 | } |
---|
| 640 | |
---|
| 641 | /// Retrieves the base address of the module that contains the specified address. |
---|
| 642 | // Code from Dr. Mingw by José Fonseca |
---|
| 643 | /* static */ DWORD SignalHandler::getModuleBase(DWORD dwAddress) |
---|
| 644 | { |
---|
| 645 | MEMORY_BASIC_INFORMATION Buffer; |
---|
| 646 | |
---|
| 647 | return VirtualQuery((LPCVOID) dwAddress, &Buffer, sizeof(Buffer)) ? (DWORD) Buffer.AllocationBase : 0; |
---|
| 648 | } |
---|
| 649 | |
---|
| 650 | /// Converts a value to string, formatted as pointer. |
---|
| 651 | template <typename T> |
---|
| 652 | /* static */ std::string SignalHandler::pointerToString(T pointer) |
---|
| 653 | { |
---|
| 654 | std::ostringstream oss; |
---|
| 655 | |
---|
| 656 | oss << std::setw(8) << std::setfill('0') << std::hex << pointer; |
---|
| 657 | |
---|
| 658 | return std::string("0x") + oss.str(); |
---|
| 659 | } |
---|
| 660 | |
---|
| 661 | /// Converts a pointer to string. |
---|
| 662 | template <typename T> |
---|
| 663 | /* static */ std::string SignalHandler::pointerToString(T* pointer) |
---|
| 664 | { |
---|
| 665 | std::ostringstream oss; |
---|
| 666 | |
---|
| 667 | oss << pointer; |
---|
| 668 | |
---|
| 669 | return oss.str(); |
---|
| 670 | } |
---|
| 671 | } |
---|
| 672 | |
---|
| 673 | #endif |
---|