1996-03-14 19:08:34 +01:00
|
|
|
/*
|
|
|
|
* Win32 exception functions
|
|
|
|
*
|
|
|
|
* Copyright (c) 1996 Onno Hovers, (onno@stack.urc.tue.nl)
|
1999-05-09 18:12:19 +02:00
|
|
|
* Copyright (c) 1999 Alexandre Julliard
|
1996-03-14 19:08:34 +01:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
1996-03-14 19:08:34 +01:00
|
|
|
* Notes:
|
|
|
|
* What really happens behind the scenes of those new
|
|
|
|
* __try{...}__except(..){....} and
|
|
|
|
* __try{...}__finally{...}
|
|
|
|
* statements is simply not documented by Microsoft. There could be different
|
2002-06-01 01:06:46 +02:00
|
|
|
* reasons for this:
|
|
|
|
* One reason could be that they try to hide the fact that exception
|
|
|
|
* handling in Win32 looks almost the same as in OS/2 2.x.
|
1996-03-14 19:08:34 +01:00
|
|
|
* Another reason could be that Microsoft does not want others to write
|
2002-06-01 01:06:46 +02:00
|
|
|
* binary compatible implementations of the Win32 API (like us).
|
1996-03-14 19:08:34 +01:00
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* Whatever the reason, THIS SUCKS!! Ensuring portability or future
|
|
|
|
* compatibility may be valid reasons to keep some things undocumented.
|
|
|
|
* But exception handling is so basic to Win32 that it should be
|
1996-03-14 19:08:34 +01:00
|
|
|
* documented!
|
|
|
|
*
|
|
|
|
*/
|
2002-08-29 01:42:34 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
1996-03-14 19:08:34 +01:00
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2000-02-10 20:03:02 +01:00
|
|
|
#include <stdio.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "ntstatus.h"
|
2005-11-28 17:32:54 +01:00
|
|
|
#define WIN32_NO_STATUS
|
2000-02-10 20:03:02 +01:00
|
|
|
#include "windef.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winbase.h"
|
1996-03-14 19:08:34 +01:00
|
|
|
#include "winerror.h"
|
2002-09-13 00:07:02 +02:00
|
|
|
#include "winternl.h"
|
2001-02-20 01:55:17 +01:00
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
1999-05-12 15:10:39 +02:00
|
|
|
#include "wine/exception.h"
|
2002-05-16 22:32:16 +02:00
|
|
|
#include "wine/library.h"
|
2002-12-13 00:34:01 +01:00
|
|
|
#include "excpt.h"
|
2002-09-13 20:52:01 +02:00
|
|
|
#include "wine/unicode.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1996-03-14 19:08:34 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(seh);
|
1996-03-14 19:08:34 +01:00
|
|
|
|
2000-12-11 04:48:15 +01:00
|
|
|
static PTOP_LEVEL_EXCEPTION_FILTER top_filter;
|
|
|
|
|
2001-02-20 01:55:17 +01:00
|
|
|
typedef INT (WINAPI *MessageBoxA_funcptr)(HWND,LPCSTR,LPCSTR,UINT);
|
|
|
|
typedef INT (WINAPI *MessageBoxW_funcptr)(HWND,LPCWSTR,LPCWSTR,UINT);
|
1997-02-02 20:01:52 +01:00
|
|
|
|
|
|
|
/*******************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* RaiseException (KERNEL32.@)
|
1996-03-14 19:08:34 +01:00
|
|
|
*/
|
2005-02-24 14:15:36 +01:00
|
|
|
void WINAPI RaiseException( DWORD code, DWORD flags, DWORD nbargs, const ULONG_PTR *args )
|
1996-03-14 19:08:34 +01:00
|
|
|
{
|
1999-05-09 18:12:19 +02:00
|
|
|
EXCEPTION_RECORD record;
|
Release 980601
Sun May 31 13:40:13 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [if1632/signal.c]
Added display of exception name.
* [loader/task.c]
Yet another attempt at fixing SwitchStackTo/SwitchStackBack.
* [memory/selector.c] [relay32/builtin32.c] [tools/build.c]
[win32/kernel32.c]
Generate an assembly stub for Win32 register functions to make
their names available at link time.
* [programs/*/Makefile.in]
Added hacks to support old resource compiler.
Fri May 29 16:27:14 1998 Marcus Meissner <marcus@jet.franken.de>
* [tools/testrun]
Merge of my testscripts at home into one single perl program
(tested with perl5). Works only on Linux due to 'ps' and 'ipcs'
magic.
* [controls/menu.c]
Added some DefaultMenuItem stubs.
* [debugger/stabs.c]
Fixed stabs loading, now supports (int,int) typeinfo format used
by gcc-2.8 and egcs-1. If it still crashes, please mail me.
* [if1632/][relay32/]
Added msvideo.dll (stubs only)
Replaced some ptr by str for stringcases
Added some new stubs (VxDCall, FindCloseNotif....)
* [misc/network.c]
Some argument fixes.
* [misc/registry.c][misc/cpu.c]
Registry initialization partially rewritten and enhanced.
* [scheduler/*.c]
Some additions so we don't do kill(0,SIGUSR1) (kill processgroup
instead of targeted thread)
Added SetThreadContext.
Thu May 28 23:59:59 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [tools/wrc/*]
New resource compiler version 1.0.0 (28-May-1998)
* [Make.rules.in] [Makefile.in]
Changed and added rc rules to point to tools/wrc/wrc.
* [configure.in] [include/config.h.in]
Added check for function 'stricmp'.
* [include/resource.h]
Commented out the old resource structure to catch references.
It also includes wrc_rsc.h.
* [include/wrc_rsc.h]
New file. Definitions for the resources generated with wrc.
* [include/windows.h]
Added #ifdef RC_INVOKED to exclude stdarg.h.
Added SS_NOTIFY flag.
* [include/winnls.h]
Added SUBLANG_* definitions and corrected some defaults.
* [loader/libres.c]
Changed the sysres load functions to support wrc generated
resources.
* [resource/sysres_*.rc]
Added #include <windows.h>
* [resource/sysres.c]
Changed declarations to match wrc's output
* [resource/Makefile.in]
Changed rules to work with wrc.
* [tools/makedep.c]
Changed generation of .rc file dependencies to .s target.
Thu May 28 22:28:39 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [files/file.c][include/windows.c][relay32/kernel32.spec]
Implemented GetFileAttributesEx32A/W.
* [misc/imagelist.h][include/commctrl.h][relay32/comctl32.spec]
Added ImageList_Read and ImageList_Write stubs.
Added ImageList_AddIcon function.
Added ImageList_LoadImage. It is the same as ImageList_LoadImage32A.
* [controls/header.c]
Fixed bitmap drawing bug.
Added full bitmap support.
* [include/commctrl.h]
Added missing header macros.
* [controls/toolbar.c][include/toolbar.h][include/commctrl.h]
[controls/commctrl.c] [relay32/comctl32.spec]
First implementation of toolbar control.
Implemented CreateToolbar, CreateToolbarEx and CreateMappedBitmap.
* [controls/progress.c][controls/status.c]
Some code cleanup.
* [controls/commctrl.c][include/commctrl.h][relay32/comctl32.spec]
Removed CreateStatusWindow16 and DrawStatusText16.
CreateStatusWindow is the same as CreateStatusWindow32A.
DrawStatusText is the same as DrawStatusText32A.
Thu May 28 16:01:28 1998 Matthew J. Francis <asbel@dial.pipex.com>
* [objects/bitmap.c] [objects/bitmap.h] [objects/oembitmap.c]
[objects/dc.c] [graphics/x11drv/bitblt.c]
Added partial implementation of CreateDIBSection, with great thanks
to Ulrich Weigand <weigand@informatik.uni-erlangen.de> for
contributing the bulk of the patch.
Wed May 27 19:04:31 1998 Ulrich Weigand <weigand@informatik.uni-erlangen.de>
* [win32/kernel32.c] [if1632/thunk.c] [include/flatthunk.h]
ThunkConnect16 and related functions moved to emulator.
* [loader/ne/segment.c]
Call DllEntryPoint with correct arguments.
* [relay32/builtin32.c]
Bugfix: Relay debugging did not work for multiple processes.
* [controls/menu.c]
Bugfix: dwItemData was not set for MF_OWNERDRAW menus.
* [if1632/relay.c] [relay32/relay386.c]
Relay messages converted to use DPRINTF.
* [controls/desktop.c] [relay32/user32.spec]
Implemented PaintDesktop.
* [files/profile.c] [if1632/kernel.spec] [misc/network.c]
[misc/printdrv.c] [relay32/winspool.spec]
[win32/ordinals.c] [relay32/kernel32.spec]
Some stubs added.
* [relay32/mpr.spec]
All ordinals were off by one.
Tue May 26 13:32:57 1998 Bill Hawes <whawes@star.net>
* [misc/lstr.c] [include/casemap.h] [tools/unimap.pl]
Added Unicode case conversion routines towupper/towlower,
with mapping tables casemap.h created by tools/unimap.pl.
* [misc/ntdll.c] [include/winnls.h] [relay32/ntdll.spec]
[relay32/advapi.spec]
Minimal implementation of IsTextUnicode, just enough to get
NT4 notepad to open ascii/unicode files.
* [Make.rules.in] [resources/sysres_En.rc]
Added include file dlgs.h for building resource files, so that
resources can refer to defined values (e.g. pshHelp).
* [misc/crtdll.c] [relay32/crtdll.spec]
Use towupper/towlower for 32W case conversions.
* [memory/string.c]
Use towupper for 32W case conversions.
* [ole/ole2nls.c]
Use towupper for 32W case conversions; fix mem leak; minor cleanup
* [controls/edit.c]
Added soft break flag to edit state. Print unknown action values
for WM_VSCROLL (action 190 occurs when running NT4 notepad.)
Mon May 25 22:42:40 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [files/file.c]
Care for a pathological case in SetFilePointer.
* [graphics/x11drv/xfont.c]
Handle longer Font names in LFD_ComposeLFD and try to catch errors.
* [loader/pe_image.c]
Unload Dummymodule when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [misc/registry.c]
Move a check for a special case in RegCreateKeyEx32W after the
check for existence.
Tue May 25 20:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Added some stubs, just guessing at the size of their param lists.
* [misc/registry.c]
Added stubs for RegUnLoadKey, RegSetKeySecurity, RegSaveKey,
RegRestoreKey, and RegReplaceKey
* [programs/regtest/regtest.c]
Updated registry testing program.
Sun May 24 18:11:40 1998 Alex Priem <alexp@sci.kun.nl>
* [file/profile.c]
Added flag 'return_values' to PROFILE_GetSection.
Sun May 24 13:41:10 1998 James Juran <jrj120@psu.edu>
* [misc/shell.c] [files/directory.c]
Documentation/debugging info additions.
* [*/*.c] [include/*.h]
Moved many extern function definitions to appropriate header files.
Cleaned up a few compile warnings.
If #include "debug.h" is present, removed #include <stdio.h>.
debug.h includes stdio.h, so it is not necessary to include both.
* [graphics/*.c] [if1632/signal.c] [ipc/*.c] [scheduler/*.c]
[win32/*.c] [windows/*.c]
Final patch to convert fprintf statements to new debugging interface.
Some fprintfs are still left, especially in the debugger/ directory.
However, IMHO, it's not worth the effort to change the rest.
Fri May 22 21:58:35 1998 Morten Welinder <terra@diku.dk>
* [windows/keyboard.c]
Correct handling of keys "`-=[]\;',./".
Fri May 22 12:06:00 1998 Per Lindstrm <pelinstr@algonet.se>
* [include/windows.h] [relay32/kernel32.spec] [win32/console.c]
Added stub for ReadConsoleOutputCharacter32A.
Thu May 21 16:45:48 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c]
Began better implementation of LCMapString32A.
Not very well tested yet, and still need improvements.
* [controls/scroll.c]
Documented functions.
Wed May 20 21:37:56 1998 Peter Hunnisett <hunnise@nortel.ca>
* [include/windows.h][misc/main.c]
Change SystemParameterInfo to support SPI_GETHIGHCONTRAST. Also
include some missing SPI_ definitions.
* [include/dsound.h][multimedia/dsound.c][relay32/dplayx.spec]
Added stubs for DirectPlayLobbyCreate[AW]. Not sure if these
should go into a new files dplayx.c? Anyone care?
* [include/winnls.h]
Added two missing flags for the CompareString32 functions.
1998-06-01 12:44:35 +02:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/* Compose an exception record */
|
|
|
|
|
1999-05-09 18:12:19 +02:00
|
|
|
record.ExceptionCode = code;
|
|
|
|
record.ExceptionFlags = flags & EH_NONCONTINUABLE;
|
|
|
|
record.ExceptionRecord = NULL;
|
|
|
|
record.ExceptionAddress = RaiseException;
|
|
|
|
if (nbargs && args)
|
1996-03-14 19:08:34 +01:00
|
|
|
{
|
1999-05-09 18:12:19 +02:00
|
|
|
if (nbargs > EXCEPTION_MAXIMUM_PARAMETERS) nbargs = EXCEPTION_MAXIMUM_PARAMETERS;
|
|
|
|
record.NumberParameters = nbargs;
|
|
|
|
memcpy( record.ExceptionInformation, args, nbargs * sizeof(*args) );
|
|
|
|
}
|
|
|
|
else record.NumberParameters = 0;
|
1996-03-14 19:08:34 +01:00
|
|
|
|
1999-05-09 18:12:19 +02:00
|
|
|
RtlRaiseException( &record );
|
1996-03-14 19:08:34 +01:00
|
|
|
}
|
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
|
2000-10-27 00:03:34 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* format_exception_msg
|
|
|
|
*/
|
2001-04-23 20:24:38 +02:00
|
|
|
static int format_exception_msg( const EXCEPTION_POINTERS *ptr, char *buffer, int size )
|
2000-10-27 00:03:34 +02:00
|
|
|
{
|
|
|
|
const EXCEPTION_RECORD *rec = ptr->ExceptionRecord;
|
2001-04-23 20:24:38 +02:00
|
|
|
int len,len2;
|
2000-10-27 00:03:34 +02:00
|
|
|
|
|
|
|
switch(rec->ExceptionCode)
|
|
|
|
{
|
|
|
|
case EXCEPTION_INT_DIVIDE_BY_ZERO:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled division by zero" );
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
case EXCEPTION_INT_OVERFLOW:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled overflow" );
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled array bounds" );
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
case EXCEPTION_ILLEGAL_INSTRUCTION:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled illegal instruction" );
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
case EXCEPTION_STACK_OVERFLOW:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled stack overflow" );
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
case EXCEPTION_PRIV_INSTRUCTION:
|
2001-10-21 17:18:15 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled privileged instruction" );
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
case EXCEPTION_ACCESS_VIOLATION:
|
|
|
|
if (rec->NumberParameters == 2)
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled page fault on %s access to 0x%08lx",
|
2006-09-20 11:27:53 +02:00
|
|
|
rec->ExceptionInformation[0] == EXCEPTION_WRITE_FAULT ? "write" :
|
|
|
|
rec->ExceptionInformation[0] == EXCEPTION_EXECUTE_FAULT ? "execute" : "read",
|
|
|
|
rec->ExceptionInformation[1]);
|
2000-10-27 00:03:34 +02:00
|
|
|
else
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled page fault");
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
case EXCEPTION_DATATYPE_MISALIGNMENT:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled alignment" );
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
case CONTROL_C_EXIT:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled ^C");
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
2003-04-04 21:41:31 +02:00
|
|
|
case STATUS_POSSIBLE_DEADLOCK:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Critical section %08lx wait failed",
|
2000-10-27 00:03:34 +02:00
|
|
|
rec->ExceptionInformation[0]);
|
|
|
|
break;
|
|
|
|
case EXCEPTION_WINE_STUB:
|
2004-12-14 21:03:23 +01:00
|
|
|
if (HIWORD(rec->ExceptionInformation[1]))
|
|
|
|
len = snprintf( buffer, size, "Unimplemented function %s.%s called",
|
|
|
|
(char *)rec->ExceptionInformation[0], (char *)rec->ExceptionInformation[1] );
|
|
|
|
else
|
|
|
|
len = snprintf( buffer, size, "Unimplemented function %s.%ld called",
|
|
|
|
(char *)rec->ExceptionInformation[0], rec->ExceptionInformation[1] );
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
2002-10-29 00:56:58 +01:00
|
|
|
case EXCEPTION_WINE_ASSERTION:
|
|
|
|
len = snprintf( buffer, size, "Assertion failed" );
|
|
|
|
break;
|
2000-10-27 00:03:34 +02:00
|
|
|
case EXCEPTION_VM86_INTx:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled interrupt %02lx in vm86 mode",
|
2000-10-27 00:03:34 +02:00
|
|
|
rec->ExceptionInformation[0]);
|
|
|
|
break;
|
|
|
|
case EXCEPTION_VM86_STI:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled sti in vm86 mode");
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
case EXCEPTION_VM86_PICRETURN:
|
2001-04-23 20:24:38 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled PIC return in vm86 mode");
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
default:
|
2006-10-12 22:56:29 +02:00
|
|
|
len = snprintf( buffer, size, "Unhandled exception 0x%08x", rec->ExceptionCode);
|
2000-10-27 00:03:34 +02:00
|
|
|
break;
|
|
|
|
}
|
2001-04-23 20:24:38 +02:00
|
|
|
if ((len<0) || (len>=size))
|
|
|
|
return -1;
|
2000-10-27 00:03:34 +02:00
|
|
|
#ifdef __i386__
|
2002-05-16 22:32:16 +02:00
|
|
|
if (ptr->ContextRecord->SegCs != wine_get_cs())
|
2006-10-12 22:56:29 +02:00
|
|
|
len2 = snprintf(buffer+len, size-len, " at address 0x%04x:0x%08x",
|
2001-04-23 20:24:38 +02:00
|
|
|
ptr->ContextRecord->SegCs,
|
|
|
|
(DWORD)ptr->ExceptionRecord->ExceptionAddress);
|
2000-10-27 00:03:34 +02:00
|
|
|
else
|
|
|
|
#endif
|
2005-11-04 12:42:48 +01:00
|
|
|
len2 = snprintf(buffer+len, size-len, " at address %p",
|
2005-09-12 12:30:05 +02:00
|
|
|
ptr->ExceptionRecord->ExceptionAddress);
|
2001-04-23 20:24:38 +02:00
|
|
|
if ((len2<0) || (len>=size-len))
|
|
|
|
return -1;
|
|
|
|
return len+len2;
|
2000-10-27 00:03:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-15 19:34:07 +02:00
|
|
|
/******************************************************************
|
|
|
|
* start_debugger
|
|
|
|
*
|
|
|
|
* Does the effective debugger startup according to 'format'
|
1996-03-14 19:08:34 +01:00
|
|
|
*/
|
2001-08-15 19:34:07 +02:00
|
|
|
static BOOL start_debugger(PEXCEPTION_POINTERS epointers, HANDLE hEvent)
|
1996-03-14 19:08:34 +01:00
|
|
|
{
|
2002-09-13 20:52:01 +02:00
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
UNICODE_STRING nameW;
|
2004-03-11 01:47:49 +01:00
|
|
|
char *cmdline, *env, *p;
|
2005-06-17 15:58:33 +02:00
|
|
|
HANDLE hDbgConf;
|
2000-04-30 14:20:31 +02:00
|
|
|
DWORD bAuto = FALSE;
|
2001-08-15 19:34:07 +02:00
|
|
|
PROCESS_INFORMATION info;
|
|
|
|
STARTUPINFOA startup;
|
2001-10-23 02:25:46 +02:00
|
|
|
char* format = NULL;
|
|
|
|
BOOL ret = FALSE;
|
2005-11-04 12:42:48 +01:00
|
|
|
char buffer[256];
|
1997-02-02 20:01:52 +01:00
|
|
|
|
2002-09-13 20:52:01 +02:00
|
|
|
static const WCHAR AeDebugW[] = {'M','a','c','h','i','n','e','\\',
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s',' ','N','T','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'A','e','D','e','b','u','g',0};
|
|
|
|
static const WCHAR DebuggerW[] = {'D','e','b','u','g','g','e','r',0};
|
|
|
|
static const WCHAR AutoW[] = {'A','u','t','o',0};
|
|
|
|
|
2005-11-04 12:42:48 +01:00
|
|
|
format_exception_msg( epointers, buffer, sizeof(buffer) );
|
2006-10-12 22:56:29 +02:00
|
|
|
MESSAGE("wine: %s (thread %04x), starting debugger...\n", buffer, GetCurrentThreadId());
|
2001-10-21 17:18:15 +02:00
|
|
|
|
2002-09-13 20:52:01 +02:00
|
|
|
attr.Length = sizeof(attr);
|
|
|
|
attr.RootDirectory = 0;
|
|
|
|
attr.ObjectName = &nameW;
|
|
|
|
attr.Attributes = 0;
|
|
|
|
attr.SecurityDescriptor = NULL;
|
|
|
|
attr.SecurityQualityOfService = NULL;
|
|
|
|
RtlInitUnicodeString( &nameW, AeDebugW );
|
2000-11-12 04:43:42 +01:00
|
|
|
|
2002-09-13 20:52:01 +02:00
|
|
|
if (!NtOpenKey( &hDbgConf, KEY_ALL_ACCESS, &attr ))
|
|
|
|
{
|
|
|
|
char buffer[64];
|
|
|
|
KEY_VALUE_PARTIAL_INFORMATION *info;
|
2002-09-29 20:21:06 +02:00
|
|
|
DWORD format_size = 0;
|
2001-10-23 02:25:46 +02:00
|
|
|
|
2002-09-13 20:52:01 +02:00
|
|
|
RtlInitUnicodeString( &nameW, DebuggerW );
|
|
|
|
if (NtQueryValueKey( hDbgConf, &nameW, KeyValuePartialInformation,
|
|
|
|
NULL, 0, &format_size ) == STATUS_BUFFER_OVERFLOW)
|
|
|
|
{
|
|
|
|
char *data = HeapAlloc(GetProcessHeap(), 0, format_size);
|
|
|
|
NtQueryValueKey( hDbgConf, &nameW, KeyValuePartialInformation,
|
|
|
|
data, format_size, &format_size );
|
|
|
|
info = (KEY_VALUE_PARTIAL_INFORMATION *)data;
|
|
|
|
RtlUnicodeToMultiByteSize( &format_size, (WCHAR *)info->Data, info->DataLength );
|
|
|
|
format = HeapAlloc( GetProcessHeap(), 0, format_size+1 );
|
|
|
|
RtlUnicodeToMultiByteN( format, format_size, NULL,
|
|
|
|
(WCHAR *)info->Data, info->DataLength );
|
|
|
|
format[format_size] = 0;
|
|
|
|
|
|
|
|
if (info->Type == REG_EXPAND_SZ)
|
|
|
|
{
|
|
|
|
char* tmp;
|
|
|
|
|
|
|
|
/* Expand environment variable references */
|
|
|
|
format_size=ExpandEnvironmentStringsA(format,NULL,0);
|
|
|
|
tmp=HeapAlloc(GetProcessHeap(), 0, format_size);
|
|
|
|
ExpandEnvironmentStringsA(format,tmp,format_size);
|
|
|
|
HeapFree(GetProcessHeap(), 0, format);
|
|
|
|
format=tmp;
|
|
|
|
}
|
|
|
|
HeapFree( GetProcessHeap(), 0, data );
|
|
|
|
}
|
2000-04-13 21:28:28 +02:00
|
|
|
|
2002-09-13 20:52:01 +02:00
|
|
|
RtlInitUnicodeString( &nameW, AutoW );
|
|
|
|
if (!NtQueryValueKey( hDbgConf, &nameW, KeyValuePartialInformation,
|
|
|
|
buffer, sizeof(buffer)-sizeof(WCHAR), &format_size ))
|
2000-11-12 04:43:42 +01:00
|
|
|
{
|
2002-09-13 20:52:01 +02:00
|
|
|
info = (KEY_VALUE_PARTIAL_INFORMATION *)buffer;
|
|
|
|
if (info->Type == REG_DWORD) memcpy( &bAuto, info->Data, sizeof(DWORD) );
|
|
|
|
else if (info->Type == REG_SZ)
|
|
|
|
{
|
|
|
|
WCHAR *str = (WCHAR *)info->Data;
|
|
|
|
str[info->DataLength/sizeof(WCHAR)] = 0;
|
|
|
|
bAuto = atoiW( str );
|
|
|
|
}
|
2000-11-12 04:43:42 +01:00
|
|
|
}
|
2002-09-13 20:52:01 +02:00
|
|
|
else bAuto = TRUE;
|
|
|
|
|
|
|
|
NtClose(hDbgConf);
|
2002-09-29 20:21:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (format)
|
|
|
|
{
|
|
|
|
cmdline = HeapAlloc(GetProcessHeap(), 0, strlen(format) + 2*20);
|
|
|
|
sprintf(cmdline, format, GetCurrentProcessId(), hEvent);
|
|
|
|
HeapFree(GetProcessHeap(), 0, format);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmdline = HeapAlloc(GetProcessHeap(), 0, 80);
|
2006-10-12 22:56:29 +02:00
|
|
|
sprintf(cmdline, "winedbg --auto %d %ld",
|
2003-04-17 01:09:59 +02:00
|
|
|
GetCurrentProcessId(), (ULONG_PTR)hEvent);
|
2000-04-13 21:28:28 +02:00
|
|
|
}
|
|
|
|
|
2001-02-20 01:55:17 +01:00
|
|
|
if (!bAuto)
|
|
|
|
{
|
2001-08-15 19:34:07 +02:00
|
|
|
HMODULE mod = GetModuleHandleA( "user32.dll" );
|
|
|
|
MessageBoxA_funcptr pMessageBoxA = NULL;
|
|
|
|
|
|
|
|
if (mod) pMessageBoxA = (MessageBoxA_funcptr)GetProcAddress( mod, "MessageBoxA" );
|
|
|
|
if (pMessageBoxA)
|
|
|
|
{
|
2005-11-04 12:42:48 +01:00
|
|
|
static const char msg[] = ".\nDo you wish to debug it?";
|
2001-10-23 02:25:46 +02:00
|
|
|
char buffer[256];
|
2005-11-04 12:42:48 +01:00
|
|
|
|
|
|
|
format_exception_msg( epointers, buffer, sizeof(buffer)-sizeof(msg) );
|
|
|
|
strcat( buffer, msg );
|
2001-08-15 19:34:07 +02:00
|
|
|
if (pMessageBoxA( 0, buffer, "Exception raised", MB_YESNO | MB_ICONHAND ) == IDNO)
|
|
|
|
{
|
|
|
|
TRACE("Killing process\n");
|
2001-10-23 02:25:46 +02:00
|
|
|
goto EXIT;
|
2001-08-15 19:34:07 +02:00
|
|
|
}
|
|
|
|
}
|
2000-04-13 21:28:28 +02:00
|
|
|
}
|
2001-02-20 01:55:17 +01:00
|
|
|
|
2005-10-04 20:14:22 +02:00
|
|
|
/* make WINEDEBUG empty in the environment */
|
2004-03-11 01:47:49 +01:00
|
|
|
env = GetEnvironmentStringsA();
|
|
|
|
for (p = env; *p; p += strlen(p) + 1)
|
|
|
|
{
|
|
|
|
if (!memcmp( p, "WINEDEBUG=", sizeof("WINEDEBUG=")-1 ))
|
|
|
|
{
|
2005-10-04 20:14:22 +02:00
|
|
|
char *next = p + strlen(p);
|
|
|
|
char *end = next + 1;
|
2004-03-11 01:47:49 +01:00
|
|
|
while (*end) end += strlen(end) + 1;
|
2005-10-04 20:14:22 +02:00
|
|
|
memmove( p + sizeof("WINEDEBUG=") - 1, next, end + 1 - next );
|
2004-03-11 01:47:49 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-29 20:21:06 +02:00
|
|
|
TRACE("Starting debugger %s\n", debugstr_a(cmdline));
|
|
|
|
memset(&startup, 0, sizeof(startup));
|
|
|
|
startup.cb = sizeof(startup);
|
|
|
|
startup.dwFlags = STARTF_USESHOWWINDOW;
|
|
|
|
startup.wShowWindow = SW_SHOWNORMAL;
|
2004-03-11 01:47:49 +01:00
|
|
|
ret = CreateProcessA(NULL, cmdline, NULL, NULL, TRUE, 0, env, NULL, &startup, &info);
|
|
|
|
FreeEnvironmentStringsA( env );
|
2002-09-29 20:21:06 +02:00
|
|
|
|
|
|
|
if (ret) WaitForSingleObject(hEvent, INFINITE); /* wait for debugger to come up... */
|
2006-10-12 22:56:29 +02:00
|
|
|
else ERR("Couldn't start debugger (%s) (%d)\n"
|
2002-09-29 20:21:06 +02:00
|
|
|
"Read the Wine Developers Guide on how to set up winedbg or another debugger\n",
|
|
|
|
debugstr_a(cmdline), GetLastError());
|
2001-10-23 02:25:46 +02:00
|
|
|
EXIT:
|
2002-09-29 20:21:06 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, cmdline);
|
2001-10-23 02:25:46 +02:00
|
|
|
return ret;
|
2001-08-15 19:34:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* start_debugger_atomic
|
|
|
|
*
|
2001-11-19 03:30:01 +01:00
|
|
|
* starts the debugger in an atomic way:
|
2001-08-15 19:34:07 +02:00
|
|
|
* - either the debugger is not started and it is started
|
2001-11-19 03:30:01 +01:00
|
|
|
* - or the debugger has already been started by another thread
|
|
|
|
* - or the debugger couldn't be started
|
2001-08-15 19:34:07 +02:00
|
|
|
*
|
2001-11-19 03:30:01 +01:00
|
|
|
* returns TRUE for the two first conditions, FALSE for the last
|
2001-08-15 19:34:07 +02:00
|
|
|
*/
|
|
|
|
static int start_debugger_atomic(PEXCEPTION_POINTERS epointers)
|
|
|
|
{
|
|
|
|
static HANDLE hRunOnce /* = 0 */;
|
|
|
|
|
|
|
|
if (hRunOnce == 0)
|
|
|
|
{
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
HANDLE hEvent;
|
|
|
|
|
|
|
|
attr.Length = sizeof(attr);
|
|
|
|
attr.RootDirectory = 0;
|
|
|
|
attr.Attributes = OBJ_INHERIT;
|
|
|
|
attr.ObjectName = NULL;
|
|
|
|
attr.SecurityDescriptor = NULL;
|
|
|
|
attr.SecurityQualityOfService = NULL;
|
|
|
|
|
2001-11-19 03:30:01 +01:00
|
|
|
/* ask for manual reset, so that once the debugger is started,
|
|
|
|
* every thread will know it */
|
2001-08-15 19:34:07 +02:00
|
|
|
NtCreateEvent( &hEvent, EVENT_ALL_ACCESS, &attr, TRUE, FALSE );
|
2002-11-21 04:45:01 +01:00
|
|
|
if (InterlockedCompareExchangePointer( (PVOID)&hRunOnce, hEvent, 0 ) == 0)
|
2001-08-15 19:34:07 +02:00
|
|
|
{
|
|
|
|
/* ok, our event has been set... we're the winning thread */
|
|
|
|
BOOL ret = start_debugger( epointers, hRunOnce );
|
|
|
|
DWORD tmp;
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
/* so that the other threads won't be stuck */
|
|
|
|
NtSetEvent( hRunOnce, &tmp );
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2001-08-15 19:34:07 +02:00
|
|
|
/* someone beat us here... */
|
|
|
|
CloseHandle( hEvent );
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2001-08-15 19:34:07 +02:00
|
|
|
/* and wait for the winner to have actually created the debugger */
|
|
|
|
WaitForSingleObject( hRunOnce, INFINITE );
|
2001-11-19 03:30:01 +01:00
|
|
|
/* in fact, here, we only know that someone has tried to start the debugger,
|
|
|
|
* we'll know by reposting the exception if it has actually attached
|
|
|
|
* to the current process */
|
2001-08-15 19:34:07 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-09 22:01:00 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* check_resource_write
|
|
|
|
*
|
|
|
|
* Check if the exception is a write attempt to the resource data.
|
|
|
|
* If yes, we unprotect the resources to let broken apps continue
|
|
|
|
* (Windows does this too).
|
|
|
|
*/
|
2006-05-09 12:58:46 +02:00
|
|
|
inline static BOOL check_resource_write( void *addr )
|
2002-08-09 22:01:00 +02:00
|
|
|
{
|
2006-05-09 12:58:46 +02:00
|
|
|
void *rsrc;
|
2002-08-09 22:01:00 +02:00
|
|
|
DWORD size;
|
|
|
|
MEMORY_BASIC_INFORMATION info;
|
|
|
|
|
|
|
|
if (!VirtualQuery( addr, &info, sizeof(info) )) return FALSE;
|
2006-03-29 21:23:18 +02:00
|
|
|
if (info.State == MEM_FREE || !(info.Type & MEM_IMAGE)) return FALSE;
|
2002-08-09 22:01:00 +02:00
|
|
|
if (!(rsrc = RtlImageDirectoryEntryToData( (HMODULE)info.AllocationBase, TRUE,
|
|
|
|
IMAGE_DIRECTORY_ENTRY_RESOURCE, &size )))
|
|
|
|
return FALSE;
|
|
|
|
if (addr < rsrc || (char *)addr >= (char *)rsrc + size) return FALSE;
|
2004-06-01 21:45:15 +02:00
|
|
|
TRACE( "Broken app is writing to the resource data, enabling work-around\n" );
|
2002-08-09 22:01:00 +02:00
|
|
|
VirtualProtect( rsrc, size, PAGE_WRITECOPY, NULL );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-09 12:58:46 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* check_no_exec
|
|
|
|
*
|
|
|
|
* Check for executing a protected area.
|
|
|
|
*/
|
|
|
|
inline static BOOL check_no_exec( void *addr )
|
|
|
|
{
|
|
|
|
MEMORY_BASIC_INFORMATION info;
|
|
|
|
|
|
|
|
if (!VirtualQuery( addr, &info, sizeof(info) )) return FALSE;
|
|
|
|
if (info.State == MEM_FREE) return FALSE;
|
|
|
|
|
|
|
|
/* prot |= PAGE_EXECUTE would be a lot easier, but MS developers
|
|
|
|
* apparently don't grasp the notion of protection bits */
|
|
|
|
switch(info.Protect)
|
|
|
|
{
|
|
|
|
case PAGE_READONLY: info.Protect = PAGE_EXECUTE_READ; break;
|
|
|
|
case PAGE_READWRITE: info.Protect = PAGE_EXECUTE_READWRITE; break;
|
|
|
|
case PAGE_WRITECOPY: info.Protect = PAGE_EXECUTE_WRITECOPY; break;
|
|
|
|
default: return FALSE;
|
|
|
|
}
|
|
|
|
/* FIXME: we should probably have a per-app option, and maybe a message box */
|
|
|
|
FIXME( "No-exec fault triggered at %p, enabling work-around\n", addr );
|
|
|
|
return VirtualProtect( addr, 1, info.Protect, NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-15 19:34:07 +02:00
|
|
|
/*******************************************************************
|
|
|
|
* UnhandledExceptionFilter (KERNEL32.@)
|
|
|
|
*/
|
2006-09-20 11:26:59 +02:00
|
|
|
LONG WINAPI UnhandledExceptionFilter(PEXCEPTION_POINTERS epointers)
|
2001-08-15 19:34:07 +02:00
|
|
|
{
|
2006-05-09 12:58:46 +02:00
|
|
|
const EXCEPTION_RECORD *rec = epointers->ExceptionRecord;
|
|
|
|
|
|
|
|
if (rec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION && rec->NumberParameters >= 2)
|
|
|
|
{
|
|
|
|
switch(rec->ExceptionInformation[0])
|
|
|
|
{
|
2006-09-20 11:27:53 +02:00
|
|
|
case EXCEPTION_WRITE_FAULT:
|
2006-05-09 12:58:46 +02:00
|
|
|
if (check_resource_write( (void *)rec->ExceptionInformation[1] ))
|
|
|
|
return EXCEPTION_CONTINUE_EXECUTION;
|
|
|
|
break;
|
2006-09-20 11:27:53 +02:00
|
|
|
case EXCEPTION_EXECUTE_FAULT:
|
2006-05-09 12:58:46 +02:00
|
|
|
if (check_no_exec( (void *)rec->ExceptionInformation[1] ))
|
|
|
|
return EXCEPTION_CONTINUE_EXECUTION;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-08-09 22:01:00 +02:00
|
|
|
|
2003-10-14 03:30:42 +02:00
|
|
|
if (!NtCurrentTeb()->Peb->BeingDebugged)
|
2001-08-15 19:34:07 +02:00
|
|
|
{
|
2006-05-09 12:58:46 +02:00
|
|
|
if (rec->ExceptionCode == CONTROL_C_EXIT)
|
2003-10-14 03:30:42 +02:00
|
|
|
{
|
|
|
|
/* do not launch the debugger on ^C, simply terminate the process */
|
|
|
|
TerminateProcess( GetCurrentProcess(), 1 );
|
|
|
|
}
|
2001-08-15 19:34:07 +02:00
|
|
|
|
2003-10-14 03:30:42 +02:00
|
|
|
if (top_filter)
|
|
|
|
{
|
2006-09-20 11:26:59 +02:00
|
|
|
LONG ret = top_filter( epointers );
|
2003-10-14 03:30:42 +02:00
|
|
|
if (ret != EXCEPTION_CONTINUE_SEARCH) return ret;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2003-10-14 03:30:42 +02:00
|
|
|
/* FIXME: Should check the current error mode */
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2003-10-14 03:30:42 +02:00
|
|
|
if (!start_debugger_atomic( epointers ) || !NtCurrentTeb()->Peb->BeingDebugged)
|
|
|
|
return EXCEPTION_EXECUTE_HANDLER;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
2006-01-10 17:44:39 +01:00
|
|
|
return EXCEPTION_CONTINUE_SEARCH;
|
1996-03-14 19:08:34 +01:00
|
|
|
}
|
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
|
2000-04-06 22:21:16 +02:00
|
|
|
/***********************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* SetUnhandledExceptionFilter (KERNEL32.@)
|
1996-03-14 19:08:34 +01:00
|
|
|
*/
|
1997-08-24 18:00:30 +02:00
|
|
|
LPTOP_LEVEL_EXCEPTION_FILTER WINAPI SetUnhandledExceptionFilter(
|
1997-02-02 20:01:52 +01:00
|
|
|
LPTOP_LEVEL_EXCEPTION_FILTER filter )
|
|
|
|
{
|
2000-12-11 04:48:15 +01:00
|
|
|
LPTOP_LEVEL_EXCEPTION_FILTER old = top_filter;
|
|
|
|
top_filter = filter;
|
1997-02-02 20:01:52 +01:00
|
|
|
return old;
|
1996-03-14 19:08:34 +01:00
|
|
|
}
|
1999-05-12 15:10:39 +02:00
|
|
|
|
|
|
|
|
2000-03-24 22:42:15 +01:00
|
|
|
/**************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* FatalAppExitA (KERNEL32.@)
|
2000-03-24 22:42:15 +01:00
|
|
|
*/
|
|
|
|
void WINAPI FatalAppExitA( UINT action, LPCSTR str )
|
|
|
|
{
|
2001-02-20 01:55:17 +01:00
|
|
|
HMODULE mod = GetModuleHandleA( "user32.dll" );
|
|
|
|
MessageBoxA_funcptr pMessageBoxA = NULL;
|
|
|
|
|
2000-03-24 22:42:15 +01:00
|
|
|
WARN("AppExit\n");
|
2001-02-20 01:55:17 +01:00
|
|
|
|
|
|
|
if (mod) pMessageBoxA = (MessageBoxA_funcptr)GetProcAddress( mod, "MessageBoxA" );
|
|
|
|
if (pMessageBoxA) pMessageBoxA( 0, str, NULL, MB_SYSTEMMODAL | MB_OK );
|
|
|
|
else ERR( "%s\n", debugstr_a(str) );
|
2000-03-24 22:42:15 +01:00
|
|
|
ExitProcess(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* FatalAppExitW (KERNEL32.@)
|
2000-03-24 22:42:15 +01:00
|
|
|
*/
|
|
|
|
void WINAPI FatalAppExitW( UINT action, LPCWSTR str )
|
|
|
|
{
|
2003-04-27 02:31:34 +02:00
|
|
|
static const WCHAR User32DllW[] = {'u','s','e','r','3','2','.','d','l','l',0};
|
|
|
|
|
|
|
|
HMODULE mod = GetModuleHandleW( User32DllW );
|
2001-02-20 01:55:17 +01:00
|
|
|
MessageBoxW_funcptr pMessageBoxW = NULL;
|
|
|
|
|
2000-03-24 22:42:15 +01:00
|
|
|
WARN("AppExit\n");
|
2001-02-20 01:55:17 +01:00
|
|
|
|
|
|
|
if (mod) pMessageBoxW = (MessageBoxW_funcptr)GetProcAddress( mod, "MessageBoxW" );
|
|
|
|
if (pMessageBoxW) pMessageBoxW( 0, str, NULL, MB_SYSTEMMODAL | MB_OK );
|
|
|
|
else ERR( "%s\n", debugstr_w(str) );
|
2000-03-24 22:42:15 +01:00
|
|
|
ExitProcess(0);
|
|
|
|
}
|
2003-01-13 21:44:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* FatalExit (KERNEL32.@)
|
|
|
|
*/
|
|
|
|
void WINAPI FatalExit(int ExitCode)
|
|
|
|
{
|
|
|
|
WARN("FatalExit\n");
|
|
|
|
ExitProcess(ExitCode);
|
|
|
|
}
|