2 * Win32 exception functions
4 * Copyright (c) 1996 Onno Hovers, (onno@stack.urc.tue.nl)
5 * Copyright (c) 1999 Alexandre Julliard
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * What really happens behind the scenes of those new
23 * __try{...}__except(..){....} and
24 * __try{...}__finally{...}
25 * statements is simply not documented by Microsoft. There could be different
27 * One reason could be that they try to hide the fact that exception
28 * handling in Win32 looks almost the same as in OS/2 2.x.
29 * Another reason could be that Microsoft does not want others to write
30 * binary compatible implementations of the Win32 API (like us).
32 * Whatever the reason, THIS SUCKS!! Ensuring portability or future
33 * compatibility may be valid reasons to keep some things undocumented.
34 * But exception handling is so basic to Win32 that it should be
39 #include "wine/port.h"
44 #define WIN32_NO_STATUS
50 #include "wine/exception.h"
51 #include "wine/library.h"
53 #include "wine/unicode.h"
54 #include "wine/debug.h"
56 WINE_DEFAULT_DEBUG_CHANNEL(seh
);
58 static PTOP_LEVEL_EXCEPTION_FILTER top_filter
;
60 typedef INT (WINAPI
*MessageBoxA_funcptr
)(HWND
,LPCSTR
,LPCSTR
,UINT
);
61 typedef INT (WINAPI
*MessageBoxW_funcptr
)(HWND
,LPCWSTR
,LPCWSTR
,UINT
);
63 /*******************************************************************
64 * RaiseException (KERNEL32.@)
66 void WINAPI
RaiseException( DWORD code
, DWORD flags
, DWORD nbargs
, const ULONG_PTR
*args
)
68 EXCEPTION_RECORD record
;
70 /* Compose an exception record */
72 record
.ExceptionCode
= code
;
73 record
.ExceptionFlags
= flags
& EH_NONCONTINUABLE
;
74 record
.ExceptionRecord
= NULL
;
75 record
.ExceptionAddress
= RaiseException
;
78 if (nbargs
> EXCEPTION_MAXIMUM_PARAMETERS
) nbargs
= EXCEPTION_MAXIMUM_PARAMETERS
;
79 record
.NumberParameters
= nbargs
;
80 memcpy( record
.ExceptionInformation
, args
, nbargs
* sizeof(*args
) );
82 else record
.NumberParameters
= 0;
84 RtlRaiseException( &record
);
88 /*******************************************************************
89 * format_exception_msg
91 static int format_exception_msg( const EXCEPTION_POINTERS
*ptr
, char *buffer
, int size
)
93 const EXCEPTION_RECORD
*rec
= ptr
->ExceptionRecord
;
96 switch(rec
->ExceptionCode
)
98 case EXCEPTION_INT_DIVIDE_BY_ZERO
:
99 len
= snprintf( buffer
, size
, "Unhandled division by zero" );
101 case EXCEPTION_INT_OVERFLOW
:
102 len
= snprintf( buffer
, size
, "Unhandled overflow" );
104 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED
:
105 len
= snprintf( buffer
, size
, "Unhandled array bounds" );
107 case EXCEPTION_ILLEGAL_INSTRUCTION
:
108 len
= snprintf( buffer
, size
, "Unhandled illegal instruction" );
110 case EXCEPTION_STACK_OVERFLOW
:
111 len
= snprintf( buffer
, size
, "Unhandled stack overflow" );
113 case EXCEPTION_PRIV_INSTRUCTION
:
114 len
= snprintf( buffer
, size
, "Unhandled privileged instruction" );
116 case EXCEPTION_ACCESS_VIOLATION
:
117 if (rec
->NumberParameters
== 2)
118 len
= snprintf( buffer
, size
, "Unhandled page fault on %s access to 0x%08lx",
119 rec
->ExceptionInformation
[0] == EXCEPTION_WRITE_FAULT
? "write" :
120 rec
->ExceptionInformation
[0] == EXCEPTION_EXECUTE_FAULT
? "execute" : "read",
121 rec
->ExceptionInformation
[1]);
123 len
= snprintf( buffer
, size
, "Unhandled page fault");
125 case EXCEPTION_DATATYPE_MISALIGNMENT
:
126 len
= snprintf( buffer
, size
, "Unhandled alignment" );
129 len
= snprintf( buffer
, size
, "Unhandled ^C");
131 case STATUS_POSSIBLE_DEADLOCK
:
132 len
= snprintf( buffer
, size
, "Critical section %08lx wait failed",
133 rec
->ExceptionInformation
[0]);
135 case EXCEPTION_WINE_STUB
:
136 if ((ULONG_PTR
)rec
->ExceptionInformation
[1] >> 16)
137 len
= snprintf( buffer
, size
, "Unimplemented function %s.%s called",
138 (char *)rec
->ExceptionInformation
[0], (char *)rec
->ExceptionInformation
[1] );
140 len
= snprintf( buffer
, size
, "Unimplemented function %s.%ld called",
141 (char *)rec
->ExceptionInformation
[0], rec
->ExceptionInformation
[1] );
143 case EXCEPTION_WINE_ASSERTION
:
144 len
= snprintf( buffer
, size
, "Assertion failed" );
146 case EXCEPTION_VM86_INTx
:
147 len
= snprintf( buffer
, size
, "Unhandled interrupt %02lx in vm86 mode",
148 rec
->ExceptionInformation
[0]);
150 case EXCEPTION_VM86_STI
:
151 len
= snprintf( buffer
, size
, "Unhandled sti in vm86 mode");
153 case EXCEPTION_VM86_PICRETURN
:
154 len
= snprintf( buffer
, size
, "Unhandled PIC return in vm86 mode");
157 len
= snprintf( buffer
, size
, "Unhandled exception 0x%08x", rec
->ExceptionCode
);
160 if ((len
<0) || (len
>=size
))
163 if (ptr
->ContextRecord
->SegCs
!= wine_get_cs())
164 len2
= snprintf(buffer
+len
, size
-len
, " at address 0x%04x:0x%08x",
165 ptr
->ContextRecord
->SegCs
,
166 (DWORD
)ptr
->ExceptionRecord
->ExceptionAddress
);
169 len2
= snprintf(buffer
+len
, size
-len
, " at address %p",
170 ptr
->ExceptionRecord
->ExceptionAddress
);
171 if ((len2
<0) || (len
>=size
-len
))
177 /******************************************************************
180 * Does the effective debugger startup according to 'format'
182 static BOOL
start_debugger(PEXCEPTION_POINTERS epointers
, HANDLE hEvent
)
184 OBJECT_ATTRIBUTES attr
;
185 UNICODE_STRING nameW
;
186 char *cmdline
, *env
, *p
;
189 PROCESS_INFORMATION info
;
190 STARTUPINFOA startup
;
195 static const WCHAR AeDebugW
[] = {'M','a','c','h','i','n','e','\\',
196 'S','o','f','t','w','a','r','e','\\',
197 'M','i','c','r','o','s','o','f','t','\\',
198 'W','i','n','d','o','w','s',' ','N','T','\\',
199 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
200 'A','e','D','e','b','u','g',0};
201 static const WCHAR DebuggerW
[] = {'D','e','b','u','g','g','e','r',0};
202 static const WCHAR AutoW
[] = {'A','u','t','o',0};
204 format_exception_msg( epointers
, buffer
, sizeof(buffer
) );
205 MESSAGE("wine: %s (thread %04x), starting debugger...\n", buffer
, GetCurrentThreadId());
207 attr
.Length
= sizeof(attr
);
208 attr
.RootDirectory
= 0;
209 attr
.ObjectName
= &nameW
;
211 attr
.SecurityDescriptor
= NULL
;
212 attr
.SecurityQualityOfService
= NULL
;
213 RtlInitUnicodeString( &nameW
, AeDebugW
);
215 if (!NtOpenKey( &hDbgConf
, KEY_READ
, &attr
))
217 KEY_VALUE_PARTIAL_INFORMATION
*info
;
218 DWORD format_size
= 0;
220 RtlInitUnicodeString( &nameW
, DebuggerW
);
221 if (NtQueryValueKey( hDbgConf
, &nameW
, KeyValuePartialInformation
,
222 NULL
, 0, &format_size
) == STATUS_BUFFER_TOO_SMALL
)
224 char *data
= HeapAlloc(GetProcessHeap(), 0, format_size
);
225 NtQueryValueKey( hDbgConf
, &nameW
, KeyValuePartialInformation
,
226 data
, format_size
, &format_size
);
227 info
= (KEY_VALUE_PARTIAL_INFORMATION
*)data
;
228 RtlUnicodeToMultiByteSize( &format_size
, (WCHAR
*)info
->Data
, info
->DataLength
);
229 format
= HeapAlloc( GetProcessHeap(), 0, format_size
+1 );
230 RtlUnicodeToMultiByteN( format
, format_size
, NULL
,
231 (WCHAR
*)info
->Data
, info
->DataLength
);
232 format
[format_size
] = 0;
234 if (info
->Type
== REG_EXPAND_SZ
)
238 /* Expand environment variable references */
239 format_size
=ExpandEnvironmentStringsA(format
,NULL
,0);
240 tmp
=HeapAlloc(GetProcessHeap(), 0, format_size
);
241 ExpandEnvironmentStringsA(format
,tmp
,format_size
);
242 HeapFree(GetProcessHeap(), 0, format
);
245 HeapFree( GetProcessHeap(), 0, data
);
248 RtlInitUnicodeString( &nameW
, AutoW
);
249 if (!NtQueryValueKey( hDbgConf
, &nameW
, KeyValuePartialInformation
,
250 buffer
, sizeof(buffer
)-sizeof(WCHAR
), &format_size
))
252 info
= (KEY_VALUE_PARTIAL_INFORMATION
*)buffer
;
253 if (info
->Type
== REG_DWORD
) memcpy( &bAuto
, info
->Data
, sizeof(DWORD
) );
254 else if (info
->Type
== REG_SZ
)
256 WCHAR
*str
= (WCHAR
*)info
->Data
;
257 str
[info
->DataLength
/sizeof(WCHAR
)] = 0;
258 bAuto
= atoiW( str
);
267 size_t format_size
= strlen(format
) + 2*20;
268 cmdline
= HeapAlloc(GetProcessHeap(), 0, format_size
);
269 snprintf(cmdline
, format_size
, format
, (long)GetCurrentProcessId(), (long)HandleToLong(hEvent
));
270 HeapFree(GetProcessHeap(), 0, format
);
274 cmdline
= HeapAlloc(GetProcessHeap(), 0, 80);
275 snprintf(cmdline
, 80, "winedbg --auto %ld %ld", /* as in tools/wine.inf */
276 (long)GetCurrentProcessId(), (long)HandleToLong(hEvent
));
281 HMODULE mod
= GetModuleHandleA( "user32.dll" );
282 MessageBoxA_funcptr pMessageBoxA
= NULL
;
284 if (mod
) pMessageBoxA
= (MessageBoxA_funcptr
)GetProcAddress( mod
, "MessageBoxA" );
287 static const char msg
[] = ".\nDo you wish to debug it?";
289 format_exception_msg( epointers
, buffer
, sizeof(buffer
)-sizeof(msg
) );
290 strcat( buffer
, msg
);
291 if (pMessageBoxA( 0, buffer
, "Exception raised", MB_YESNO
| MB_ICONHAND
) == IDNO
)
293 TRACE("Killing process\n");
299 /* make WINEDEBUG empty in the environment */
300 env
= GetEnvironmentStringsA();
301 for (p
= env
; *p
; p
+= strlen(p
) + 1)
303 if (!memcmp( p
, "WINEDEBUG=", sizeof("WINEDEBUG=")-1 ))
305 char *next
= p
+ strlen(p
);
306 char *end
= next
+ 1;
307 while (*end
) end
+= strlen(end
) + 1;
308 memmove( p
+ sizeof("WINEDEBUG=") - 1, next
, end
+ 1 - next
);
313 TRACE("Starting debugger %s\n", debugstr_a(cmdline
));
314 memset(&startup
, 0, sizeof(startup
));
315 startup
.cb
= sizeof(startup
);
316 startup
.dwFlags
= STARTF_USESHOWWINDOW
;
317 startup
.wShowWindow
= SW_SHOWNORMAL
;
318 ret
= CreateProcessA(NULL
, cmdline
, NULL
, NULL
, TRUE
, 0, env
, NULL
, &startup
, &info
);
319 FreeEnvironmentStringsA( env
);
323 /* wait for debugger to come up... */
325 CloseHandle(info
.hThread
);
327 handles
[1]=info
.hProcess
;
328 WaitForMultipleObjects(2, handles
, FALSE
, INFINITE
);
329 CloseHandle(info
.hProcess
);
331 else ERR("Couldn't start debugger (%s) (%d)\n"
332 "Read the Wine Developers Guide on how to set up winedbg or another debugger\n",
333 debugstr_a(cmdline
), GetLastError());
335 HeapFree(GetProcessHeap(), 0, cmdline
);
339 /******************************************************************
340 * start_debugger_atomic
342 * starts the debugger in an atomic way:
343 * - either the debugger is not started and it is started
344 * - or the debugger has already been started by another thread
345 * - or the debugger couldn't be started
347 * returns TRUE for the two first conditions, FALSE for the last
349 static int start_debugger_atomic(PEXCEPTION_POINTERS epointers
)
351 static HANDLE hRunOnce
/* = 0 */;
355 OBJECT_ATTRIBUTES attr
;
358 attr
.Length
= sizeof(attr
);
359 attr
.RootDirectory
= 0;
360 attr
.Attributes
= OBJ_INHERIT
;
361 attr
.ObjectName
= NULL
;
362 attr
.SecurityDescriptor
= NULL
;
363 attr
.SecurityQualityOfService
= NULL
;
365 /* ask for manual reset, so that once the debugger is started,
366 * every thread will know it */
367 NtCreateEvent( &hEvent
, EVENT_ALL_ACCESS
, &attr
, NotificationEvent
, FALSE
);
368 if (InterlockedCompareExchangePointer( &hRunOnce
, hEvent
, 0 ) == 0)
370 /* ok, our event has been set... we're the winning thread */
371 BOOL ret
= start_debugger( epointers
, hRunOnce
);
376 /* so that the other threads won't be stuck */
377 NtSetEvent( hRunOnce
, &tmp
);
382 /* someone beat us here... */
383 CloseHandle( hEvent
);
386 /* and wait for the winner to have actually created the debugger */
387 WaitForSingleObject( hRunOnce
, INFINITE
);
388 /* in fact, here, we only know that someone has tried to start the debugger,
389 * we'll know by reposting the exception if it has actually attached
390 * to the current process */
395 /*******************************************************************
396 * check_resource_write
398 * Check if the exception is a write attempt to the resource data.
399 * If yes, we unprotect the resources to let broken apps continue
400 * (Windows does this too).
402 static inline BOOL
check_resource_write( void *addr
)
406 MEMORY_BASIC_INFORMATION info
;
408 if (!VirtualQuery( addr
, &info
, sizeof(info
) )) return FALSE
;
409 if (info
.State
== MEM_FREE
|| !(info
.Type
& MEM_IMAGE
)) return FALSE
;
410 if (!(rsrc
= RtlImageDirectoryEntryToData( info
.AllocationBase
, TRUE
,
411 IMAGE_DIRECTORY_ENTRY_RESOURCE
, &size
)))
413 if (addr
< rsrc
|| (char *)addr
>= (char *)rsrc
+ size
) return FALSE
;
414 TRACE( "Broken app is writing to the resource data, enabling work-around\n" );
415 VirtualProtect( rsrc
, size
, PAGE_READWRITE
, NULL
);
420 /*******************************************************************
421 * UnhandledExceptionFilter (KERNEL32.@)
423 LONG WINAPI
UnhandledExceptionFilter(PEXCEPTION_POINTERS epointers
)
425 const EXCEPTION_RECORD
*rec
= epointers
->ExceptionRecord
;
427 if (rec
->ExceptionCode
== EXCEPTION_ACCESS_VIOLATION
&& rec
->NumberParameters
>= 2)
429 switch(rec
->ExceptionInformation
[0])
431 case EXCEPTION_WRITE_FAULT
:
432 if (check_resource_write( (void *)rec
->ExceptionInformation
[1] ))
433 return EXCEPTION_CONTINUE_EXECUTION
;
438 if (!NtCurrentTeb()->Peb
->BeingDebugged
)
440 if (rec
->ExceptionCode
== CONTROL_C_EXIT
)
442 /* do not launch the debugger on ^C, simply terminate the process */
443 TerminateProcess( GetCurrentProcess(), 1 );
448 LONG ret
= top_filter( epointers
);
449 if (ret
!= EXCEPTION_CONTINUE_SEARCH
) return ret
;
452 /* FIXME: Should check the current error mode */
454 if (!start_debugger_atomic( epointers
) || !NtCurrentTeb()->Peb
->BeingDebugged
)
455 return EXCEPTION_EXECUTE_HANDLER
;
457 return EXCEPTION_CONTINUE_SEARCH
;
461 /***********************************************************************
462 * SetUnhandledExceptionFilter (KERNEL32.@)
464 LPTOP_LEVEL_EXCEPTION_FILTER WINAPI
SetUnhandledExceptionFilter(
465 LPTOP_LEVEL_EXCEPTION_FILTER filter
)
467 LPTOP_LEVEL_EXCEPTION_FILTER old
= top_filter
;
473 /**************************************************************************
474 * FatalAppExitA (KERNEL32.@)
476 void WINAPI
FatalAppExitA( UINT action
, LPCSTR str
)
478 HMODULE mod
= GetModuleHandleA( "user32.dll" );
479 MessageBoxA_funcptr pMessageBoxA
= NULL
;
483 if (mod
) pMessageBoxA
= (MessageBoxA_funcptr
)GetProcAddress( mod
, "MessageBoxA" );
484 if (pMessageBoxA
) pMessageBoxA( 0, str
, NULL
, MB_SYSTEMMODAL
| MB_OK
);
485 else ERR( "%s\n", debugstr_a(str
) );
490 /**************************************************************************
491 * FatalAppExitW (KERNEL32.@)
493 void WINAPI
FatalAppExitW( UINT action
, LPCWSTR str
)
495 static const WCHAR User32DllW
[] = {'u','s','e','r','3','2','.','d','l','l',0};
497 HMODULE mod
= GetModuleHandleW( User32DllW
);
498 MessageBoxW_funcptr pMessageBoxW
= NULL
;
502 if (mod
) pMessageBoxW
= (MessageBoxW_funcptr
)GetProcAddress( mod
, "MessageBoxW" );
503 if (pMessageBoxW
) pMessageBoxW( 0, str
, NULL
, MB_SYSTEMMODAL
| MB_OK
);
504 else ERR( "%s\n", debugstr_w(str
) );
509 /**************************************************************************
510 * FatalExit (KERNEL32.@)
512 void WINAPI
FatalExit(int ExitCode
)
515 ExitProcess(ExitCode
);