Click here to Skip to main content
Click here to Skip to main content

SetUnhandledExceptionFilter and the C/C++ Runtime Library

By , 7 Feb 2011
 

Introduction

Windows provides a way for applications to override the default application "crash" handling functionality by the means of the SetUnhandledExceptionFilter function.

Usually, the SetUndhandledExceptionFilter function is used in conjunction with the crash reporting activity. Having the ability of pinpointing the line of code which caused a crash is invaluable in post mortem debugging.

Post mortem debugging has been discussed in other articles on CodeProject and is not the scope of this article.

Here is how a simple unhandled exception filter (which displays only "Gotcha!" in the console) looks like:

bool g_showCrashDialog = false;

LONG WINAPI OurCrashHandler(EXCEPTION_POINTERS * /*ExceptionInfo*/)
{
    std::cout << "Gotcha!" << std::endl;

    return g_showCrashDialog ? EXCEPTION_CONTINUE_SEARCH : EXCEPTION_EXECUTE_HANDLER;
}

If the crash handling function returns EXCEPTION_EXECUTE_HANDLER, the Operating System will display the default crash dialog or call the Just in time (JIT) debugger if such a debugger is installed on the system.

In order to test the code, we will simulate a null pointer invalid access like this:

int main()
{
    ::SetUnhandledExceptionFilter(OurCrashHandler);

    std::cout << "Normal null pointer crash" << std::endl;

    char *p = 0;
    *p = 5;
}

The program should then display:

Normal null pointer crash
Gotcha!

The C/C++ Runtime Library

The C/C++ Runtime Library will remove any custom crash handler in certain circumstances, and our crash handler will never be called.

Circumstances such as:

abort() function

void AbortCrash()
{
    std::cout << "Calling Abort" << std::endl;
    abort();
}

will display:

Calling Abort

This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.

abort is called internally in the CRT, we need to catch all those cases too.

Out of bounds vector access

void OutOfBoundsVectorCrash()
{
    std::cout << "std::vector out of bounds crash!" << std::endl;

    std::vector<int> v;
    v[0] = 5;
}

Will display:

std::vector out of bounds crash!

Pure virtual function call

void VirtualFunctionCallCrash()
{
    struct B
    {
        B()
        {
            std::cout << "Pure Virtual Function Call crash!" << std::endl;
            Bar();
        }

        virtual void Foo() = 0;

        void Bar()
        {
            Foo();
        }
    };

    struct D: public B
    {
        void Foo()
        {
        }
    };

    B* b = new D;
    // Just to silence the warning C4101:
    //    'VirtualFunctionCallCrash::B::Foo' : unreferenced local variable
    b->Foo(); 
}

Will display:

Pure Virtual Function Call crash!
R6025
- pure virtual function call

The fix

In order to have the above cases also caught, we need to redirect the SetUnhandledExceptionFilter function to a dummy function so that when the CRT calls SetUnhandledExceptionFilter(0) in order to remove any custom crash handlers, it will call our dummy function.

The redirection was done using the CAPIHook class presented in Chapter 22: DLL Injection and API Hooking of the book Windows via C/C++, Fifth Edition written by Jeffrey Richter and Christophe Nasarre, Microsoft Press (c) 2008.

The code looks like:

LONG WINAPI RedirectedSetUnhandledExceptionFilter(EXCEPTION_POINTERS * /*ExceptionInfo*/)
{
    // When the CRT calls SetUnhandledExceptionFilter with NULL parameter
    // our handler will not get removed.
    return 0;
}

int main()
{
    ::SetUnhandledExceptionFilter(OurCrashHandler);

    CAPIHook apiHook("kernel32.dll", 
      "SetUnhandledExceptionFilter", 
      (PROC)RedirectedSetUnhandledExceptionFilter);

    // Code that crashes
}

64 bit programs

The redirection procedure works for 32 bit code as well as for 64 bit code. The sample code provides 32 bit and 64 bit compiler targets.

Static vs. dynamic CRT linking

The code works only with dynamic CRT linking (default behavior).

History

  • 07.02.2011: Initial release.

License

This article, along with any associated source code and files, is licensed under The zlib/libpng License

About the Author

Cristian Adam
Software Developer
Germany Germany
Software engineer by day, Xiph.Org contributor by night.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberJunfengGuo18-Sep-12 17:19 
GeneralMy vote of 5memberAjay Vijayvargiya13-Jun-12 6:35 
QuestionStatic linking?membercolinbr4-Feb-12 2:20 
GeneralMy vote of 5memberj5sung27-Jun-11 23:10 
QuestionOther errors?membermartin_bisson22-Feb-11 15:39 
AnswerRe: Other errors?memberCristian Adam23-Feb-11 2:27 
GeneralRe: Other errors?membermartin_bisson23-Feb-11 3:29 
GeneralRe: Other errors?memberCristian Adam24-Feb-11 0:00 
GeneralRe: Other errors?membermartin_bisson24-Feb-11 6:36 
GeneralRe: Other errors?mvpAjay Vijayvargiya14-Mar-11 19:54 
GeneralRe: Other errors?memberAlexander Miloslavsky5-Jul-12 3:37 
GeneralRe: Other errors?membercmellano4-Dec-12 9:41 
GeneralRe: Other errors?memberAlexander Miloslavsky4-Dec-12 9:50 
GeneralMy vote of 5memberytfrdfiw20-Feb-11 16:31 
GeneralMy vote of 5, but with a little addition.memberVadim Nazarenko14-Feb-11 8:24 
GeneralRe: My vote of 5, but with a little addition.memberCristian Adam14-Feb-11 10:16 
GeneralAddVectoredExceptionHandlermemberNaveen14-Feb-11 1:23 
GeneralRe: AddVectoredExceptionHandlermemberCristian Adam14-Feb-11 2:15 
GeneralRe: AddVectoredExceptionHandlermemberNaveen14-Feb-11 19:02 
GeneralNice articlememberSnorri7-Feb-11 22:32 
GeneralRe: Nice articlememberCristian Adam8-Feb-11 22:27 
GeneralMy vote of 5memberSnorri7-Feb-11 22:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 7 Feb 2011
Article Copyright 2011 by Cristian Adam
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid