OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (C) 2011 Apple Inc. All rights reserved. | |
3 * | |
4 * Redistribution and use in source and binary forms, with or without | |
5 * modification, are permitted provided that the following conditions | |
6 * are met: | |
7 * 1. Redistributions of source code must retain the above copyright | |
8 * notice, this list of conditions and the following disclaimer. | |
9 * 2. Redistributions in binary form must reproduce the above copyright | |
10 * notice, this list of conditions and the following disclaimer in the | |
11 * documentation and/or other materials provided with the distribution. | |
12 * | |
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' | |
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | |
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS | |
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | |
23 * THE POSSIBILITY OF SUCH DAMAGE. | |
24 */ | |
25 | |
26 #ifndef StructuredExceptionHandlerSupressor_h | |
27 #define StructuredExceptionHandlerSupressor_h | |
28 | |
29 namespace WebCore { | |
30 | |
31 #pragma warning(push) | |
32 #pragma warning(disable: 4733) // Disable "not registered as safe handler" warni
ng | |
33 | |
34 class StructuredExceptionHandlerSupressor { | |
35 WTF_MAKE_NONCOPYABLE(StructuredExceptionHandlerSupressor); | |
36 public: | |
37 StructuredExceptionHandlerSupressor() | |
38 { | |
39 // Windows puts an __try/__except block around some calls, such as hooks
. | |
40 // The exception handler then ignores system exceptions like invalid add
resses | |
41 // and null pointers. This class can be used to remove this block and pr
event | |
42 // it from catching the exception. Typically this will cause the excepti
on to crash | |
43 // which is often desirable to allow crashlogs to be recorded for debugg
ing purposed. | |
44 // While this class is in scope we replace the Windows exception handler
with 0xffffffff, | |
45 // which indicates that the exception should not be handled. | |
46 // | |
47 // See http://www.microsoft.com/msj/0197/Exception/Exception.aspx | |
48 | |
49 // Windows doesn't like assigning to member variables, so we need to get
the value into | |
50 // a local variable and store it afterwards. | |
51 void* registration; | |
52 | |
53 __asm mov eax, FS:[0] | |
54 __asm mov [registration], eax | |
55 __asm mov eax, 0xffffffff | |
56 __asm mov FS:[0], eax | |
57 | |
58 m_savedExceptionRegistration = registration; | |
59 } | |
60 | |
61 ~StructuredExceptionHandlerSupressor() | |
62 { | |
63 // Restore the exception handler | |
64 __asm mov eax, [m_savedExceptionRegistration] | |
65 __asm mov FS:[0], eax | |
66 } | |
67 | |
68 private: | |
69 void* m_savedExceptionRegistration; | |
70 }; | |
71 | |
72 #pragma warning(pop) | |
73 | |
74 } // namespace WebCore | |
75 | |
76 #endif // StructuredExceptionHandlerSupressor_h | |
OLD | NEW |