Added support for Unix code page in NTDLL.
[wine] / dlls / ntdll / exception.c
1 /*
2  * NT exception handling routines
3  *
4  * Copyright 1999 Turchanov Sergey
5  * Copyright 1999 Alexandre Julliard
6  *
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.
11  *
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.
16  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <assert.h>
26 #include <signal.h>
27 #include <stdarg.h>
28
29 #include "ntstatus.h"
30 #include "windef.h"
31 #include "winbase.h"
32 #include "thread.h"
33 #include "winternl.h"
34 #include "wine/exception.h"
35 #include "wine/server.h"
36 #include "wine/list.h"
37 #include "wine/debug.h"
38 #include "excpt.h"
39 #include "ntdll_misc.h"
40
41 WINE_DEFAULT_DEBUG_CHANNEL(seh);
42
43 /* Exception record for handling exceptions happening inside exception handlers */
44 typedef struct
45 {
46     EXCEPTION_REGISTRATION_RECORD frame;
47     EXCEPTION_REGISTRATION_RECORD *prevFrame;
48 } EXC_NESTED_FRAME;
49
50 typedef struct
51 {
52     struct list                 entry;
53     PVECTORED_EXCEPTION_HANDLER func;
54 } VECTORED_HANDLER;
55
56 static struct list vectored_handlers = LIST_INIT(vectored_handlers);
57
58 static CRITICAL_SECTION vectored_handlers_section;
59 static CRITICAL_SECTION_DEBUG critsect_debug =
60 {
61     0, 0, &vectored_handlers_section,
62     { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
63       0, 0, { 0, (DWORD)(__FILE__ ": vectored_handlers_section") }
64 };
65 static CRITICAL_SECTION vectored_handlers_section = { &critsect_debug, -1, 0, 0, 0, 0 };
66
67 #ifdef __i386__
68 # define GET_IP(context) ((LPVOID)(context)->Eip)
69 #elif defined(__sparc__)
70 # define GET_IP(context) ((LPVOID)(context)->pc)
71 #elif defined(__powerpc__)
72 # define GET_IP(context) ((LPVOID)(context)->Iar)
73 #else
74 # error You must define GET_IP for this CPU
75 #endif
76
77
78 /*******************************************************************
79  *         EXC_RaiseHandler
80  *
81  * Handler for exceptions happening inside a handler.
82  */
83 static DWORD EXC_RaiseHandler( EXCEPTION_RECORD *rec, EXCEPTION_REGISTRATION_RECORD *frame,
84                                CONTEXT *context, EXCEPTION_REGISTRATION_RECORD **dispatcher )
85 {
86     if (rec->ExceptionFlags & (EH_UNWINDING | EH_EXIT_UNWIND))
87         return ExceptionContinueSearch;
88     /* We shouldn't get here so we store faulty frame in dispatcher */
89     *dispatcher = ((EXC_NESTED_FRAME*)frame)->prevFrame;
90     return ExceptionNestedException;
91 }
92
93
94 /*******************************************************************
95  *         EXC_UnwindHandler
96  *
97  * Handler for exceptions happening inside an unwind handler.
98  */
99 static DWORD EXC_UnwindHandler( EXCEPTION_RECORD *rec, EXCEPTION_REGISTRATION_RECORD *frame,
100                                 CONTEXT *context, EXCEPTION_REGISTRATION_RECORD **dispatcher )
101 {
102     if (!(rec->ExceptionFlags & (EH_UNWINDING | EH_EXIT_UNWIND)))
103         return ExceptionContinueSearch;
104     /* We shouldn't get here so we store faulty frame in dispatcher */
105     *dispatcher = ((EXC_NESTED_FRAME*)frame)->prevFrame;
106     return ExceptionCollidedUnwind;
107 }
108
109
110 /*******************************************************************
111  *         EXC_CallHandler
112  *
113  * Call an exception handler, setting up an exception frame to catch exceptions
114  * happening during the handler execution.
115  * Please do not change the first 4 parameters order in any way - some exceptions handlers
116  * rely on Base Pointer (EBP) to have a fixed position related to the exception frame
117  */
118 static DWORD EXC_CallHandler( EXCEPTION_RECORD *record, EXCEPTION_REGISTRATION_RECORD *frame,
119                               CONTEXT *context, EXCEPTION_REGISTRATION_RECORD **dispatcher,
120                               PEXCEPTION_HANDLER handler, PEXCEPTION_HANDLER nested_handler)
121 {
122     EXC_NESTED_FRAME newframe;
123     DWORD ret;
124
125     newframe.frame.Handler = nested_handler;
126     newframe.prevFrame     = frame;
127     __wine_push_frame( &newframe.frame );
128     TRACE( "calling handler at %p code=%lx flags=%lx\n",
129            handler, record->ExceptionCode, record->ExceptionFlags );
130     ret = handler( record, frame, context, dispatcher );
131     TRACE( "handler returned %lx\n", ret );
132     __wine_pop_frame( &newframe.frame );
133     return ret;
134 }
135
136
137 /**********************************************************************
138  *           send_debug_event
139  *
140  * Send an EXCEPTION_DEBUG_EVENT event to the debugger.
141  */
142 static int send_debug_event( EXCEPTION_RECORD *rec, int first_chance, CONTEXT *context )
143 {
144     int ret;
145     HANDLE handle = 0;
146
147     if (!NtCurrentTeb()->Peb->BeingDebugged) return 0;  /* no debugger present */
148
149     SERVER_START_REQ( queue_exception_event )
150     {
151         req->first   = first_chance;
152         wine_server_add_data( req, context, sizeof(*context) );
153         wine_server_add_data( req, rec, sizeof(*rec) );
154         if (!wine_server_call( req )) handle = reply->handle;
155     }
156     SERVER_END_REQ;
157     if (!handle) return 0;
158
159     /* No need to wait on the handle since the process gets suspended
160      * once the event is passed to the debugger, so when we get back
161      * here the event has been continued already.
162      */
163     SERVER_START_REQ( get_exception_status )
164     {
165         req->handle = handle;
166         wine_server_set_reply( req, context, sizeof(*context) );
167         wine_server_call( req );
168         ret = reply->status;
169     }
170     SERVER_END_REQ;
171     NtClose( handle );
172     return ret;
173 }
174
175
176 /**********************************************************************
177  *           call_vectored_handlers
178  *
179  * Call the vectored handlers chain.
180  */
181 static LONG call_vectored_handlers( EXCEPTION_RECORD *rec, CONTEXT *context )
182 {
183     struct list *ptr;
184     LONG ret = EXCEPTION_CONTINUE_SEARCH;
185     EXCEPTION_POINTERS except_ptrs;
186
187     except_ptrs.ExceptionRecord = rec;
188     except_ptrs.ContextRecord = context;
189
190     RtlEnterCriticalSection( &vectored_handlers_section );
191     LIST_FOR_EACH( ptr, &vectored_handlers )
192     {
193         VECTORED_HANDLER *handler = LIST_ENTRY( ptr, VECTORED_HANDLER, entry );
194         ret = handler->func( &except_ptrs );
195         if (ret == EXCEPTION_CONTINUE_EXECUTION) break;
196     }
197     RtlLeaveCriticalSection( &vectored_handlers_section );
198     return ret;
199 }
200
201
202 /*******************************************************************
203  *         EXC_DefaultHandling
204  *
205  * Default handling for exceptions. Called when we didn't find a suitable handler.
206  */
207 static void EXC_DefaultHandling( EXCEPTION_RECORD *rec, CONTEXT *context )
208 {
209     if (send_debug_event( rec, FALSE, context ) == DBG_CONTINUE) return;  /* continue execution */
210
211     if (rec->ExceptionFlags & EH_STACK_INVALID)
212         ERR("Exception frame is not in stack limits => unable to dispatch exception.\n");
213     else if (rec->ExceptionCode == EXCEPTION_NONCONTINUABLE_EXCEPTION)
214         ERR("Process attempted to continue execution after noncontinuable exception.\n");
215     else
216         ERR("Unhandled exception code %lx flags %lx addr %p\n",
217             rec->ExceptionCode, rec->ExceptionFlags, rec->ExceptionAddress );
218     NtTerminateProcess( NtCurrentProcess(), 1 );
219 }
220
221
222 /***********************************************************************
223  *              RtlRaiseException (NTDLL.@)
224  */
225 void WINAPI EXC_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
226 {
227     PEXCEPTION_REGISTRATION_RECORD frame, dispatch, nested_frame;
228     EXCEPTION_RECORD newrec;
229     DWORD res, c;
230
231     TRACE( "code=%lx flags=%lx addr=%p\n", rec->ExceptionCode, rec->ExceptionFlags, rec->ExceptionAddress );
232     for (c=0; c<rec->NumberParameters; c++) TRACE(" info[%ld]=%08lx\n", c, rec->ExceptionInformation[c]);
233     if (rec->ExceptionCode == EXCEPTION_WINE_STUB)
234         FIXME( "call to unimplemented function %s.%s\n",
235                (char*)rec->ExceptionInformation[0], (char*)rec->ExceptionInformation[1] );
236
237     if (send_debug_event( rec, TRUE, context ) == DBG_CONTINUE) return;  /* continue execution */
238
239     if (call_vectored_handlers( rec, context ) == EXCEPTION_CONTINUE_EXECUTION) return;
240
241     frame = NtCurrentTeb()->Tib.ExceptionList;
242     nested_frame = NULL;
243     while (frame != (PEXCEPTION_REGISTRATION_RECORD)~0UL)
244     {
245         /* Check frame address */
246         if (((void*)frame < NtCurrentTeb()->Tib.StackLimit) ||
247             ((void*)(frame+1) > NtCurrentTeb()->Tib.StackBase) ||
248             (int)frame & 3)
249         {
250             rec->ExceptionFlags |= EH_STACK_INVALID;
251             break;
252         }
253
254         /* Call handler */
255         res = EXC_CallHandler( rec, frame, context, &dispatch, frame->Handler, EXC_RaiseHandler );
256         if (frame == nested_frame)
257         {
258             /* no longer nested */
259             nested_frame = NULL;
260             rec->ExceptionFlags &= ~EH_NESTED_CALL;
261         }
262
263         switch(res)
264         {
265         case ExceptionContinueExecution:
266             if (!(rec->ExceptionFlags & EH_NONCONTINUABLE)) return;
267             newrec.ExceptionCode    = STATUS_NONCONTINUABLE_EXCEPTION;
268             newrec.ExceptionFlags   = EH_NONCONTINUABLE;
269             newrec.ExceptionRecord  = rec;
270             newrec.NumberParameters = 0;
271             RtlRaiseException( &newrec );  /* never returns */
272             break;
273         case ExceptionContinueSearch:
274             break;
275         case ExceptionNestedException:
276             if (nested_frame < dispatch) nested_frame = dispatch;
277             rec->ExceptionFlags |= EH_NESTED_CALL;
278             break;
279         default:
280             newrec.ExceptionCode    = STATUS_INVALID_DISPOSITION;
281             newrec.ExceptionFlags   = EH_NONCONTINUABLE;
282             newrec.ExceptionRecord  = rec;
283             newrec.NumberParameters = 0;
284             RtlRaiseException( &newrec );  /* never returns */
285             break;
286         }
287         frame = frame->Prev;
288     }
289     EXC_DefaultHandling( rec, context );
290 }
291
292 #ifdef DEFINE_REGS_ENTRYPOINT
293 DEFINE_REGS_ENTRYPOINT( RtlRaiseException, EXC_RtlRaiseException, 4, 4 );
294 #else
295 void WINAPI RtlRaiseException( EXCEPTION_RECORD *rec )
296 {
297     CONTEXT context;
298     memset( &context, 0, sizeof(context) );
299     EXC_RtlRaiseException( rec, &context );
300 }
301 #endif
302
303
304 /*******************************************************************
305  *              RtlUnwind (NTDLL.@)
306  */
307 void WINAPI EXC_RtlUnwind( PEXCEPTION_REGISTRATION_RECORD pEndFrame, PVOID unusedEip,
308                            PEXCEPTION_RECORD pRecord, PVOID returnEax, CONTEXT *context )
309 {
310     EXCEPTION_RECORD record, newrec;
311     PEXCEPTION_REGISTRATION_RECORD frame, dispatch;
312
313 #ifdef __i386__
314     context->Eax = (DWORD)returnEax;
315 #endif
316
317     /* build an exception record, if we do not have one */
318     if (!pRecord)
319     {
320         record.ExceptionCode    = STATUS_UNWIND;
321         record.ExceptionFlags   = 0;
322         record.ExceptionRecord  = NULL;
323         record.ExceptionAddress = GET_IP(context);
324         record.NumberParameters = 0;
325         pRecord = &record;
326     }
327
328     pRecord->ExceptionFlags |= EH_UNWINDING | (pEndFrame ? 0 : EH_EXIT_UNWIND);
329
330     TRACE( "code=%lx flags=%lx\n", pRecord->ExceptionCode, pRecord->ExceptionFlags );
331
332     /* get chain of exception frames */
333     frame = NtCurrentTeb()->Tib.ExceptionList;
334     while ((frame != (PEXCEPTION_REGISTRATION_RECORD)~0UL) && (frame != pEndFrame))
335     {
336         /* Check frame address */
337         if (pEndFrame && (frame > pEndFrame))
338         {
339             newrec.ExceptionCode    = STATUS_INVALID_UNWIND_TARGET;
340             newrec.ExceptionFlags   = EH_NONCONTINUABLE;
341             newrec.ExceptionRecord  = pRecord;
342             newrec.NumberParameters = 0;
343             RtlRaiseException( &newrec );  /* never returns */
344         }
345         if (((void*)frame < NtCurrentTeb()->Tib.StackLimit) ||
346             ((void*)(frame+1) > NtCurrentTeb()->Tib.StackBase) ||
347             (int)frame & 3)
348         {
349             newrec.ExceptionCode    = STATUS_BAD_STACK;
350             newrec.ExceptionFlags   = EH_NONCONTINUABLE;
351             newrec.ExceptionRecord  = pRecord;
352             newrec.NumberParameters = 0;
353             RtlRaiseException( &newrec );  /* never returns */
354         }
355
356         /* Call handler */
357         switch(EXC_CallHandler( pRecord, frame, context, &dispatch,
358                                 frame->Handler, EXC_UnwindHandler ))
359         {
360         case ExceptionContinueSearch:
361             break;
362         case ExceptionCollidedUnwind:
363             frame = dispatch;
364             break;
365         default:
366             newrec.ExceptionCode    = STATUS_INVALID_DISPOSITION;
367             newrec.ExceptionFlags   = EH_NONCONTINUABLE;
368             newrec.ExceptionRecord  = pRecord;
369             newrec.NumberParameters = 0;
370             RtlRaiseException( &newrec );  /* never returns */
371             break;
372         }
373         frame = __wine_pop_frame( frame );
374     }
375 }
376
377 #ifdef DEFINE_REGS_ENTRYPOINT
378 DEFINE_REGS_ENTRYPOINT( RtlUnwind, EXC_RtlUnwind, 16, 16 );
379 #else
380 void WINAPI RtlUnwind( PVOID pEndFrame, PVOID unusedEip,
381                        PEXCEPTION_RECORD pRecord, PVOID returnEax )
382 {
383     CONTEXT context;
384     memset( &context, 0, sizeof(context) );
385     EXC_RtlUnwind( pEndFrame, unusedEip, pRecord, returnEax, &context );
386 }
387 #endif
388
389
390 /*******************************************************************
391  *              NtRaiseException (NTDLL.@)
392  */
393 void WINAPI EXC_NtRaiseException( EXCEPTION_RECORD *rec, CONTEXT *ctx,
394                                   BOOL first, CONTEXT *context )
395 {
396     EXC_RtlRaiseException( rec, ctx );
397     *context = *ctx;
398 }
399
400 #ifdef DEFINE_REGS_ENTRYPOINT
401 DEFINE_REGS_ENTRYPOINT( NtRaiseException, EXC_NtRaiseException, 12, 12 );
402 #else
403 void WINAPI NtRaiseException( EXCEPTION_RECORD *rec, CONTEXT *ctx, BOOL first )
404 {
405     CONTEXT context;
406     memset( &context, 0, sizeof(context) );
407     EXC_NtRaiseException( rec, ctx, first, &context );
408 }
409 #endif
410
411
412 /***********************************************************************
413  *            RtlRaiseStatus  (NTDLL.@)
414  *
415  * Raise an exception with ExceptionCode = status
416  */
417 void WINAPI RtlRaiseStatus( NTSTATUS status )
418 {
419     EXCEPTION_RECORD ExceptionRec;
420
421     ExceptionRec.ExceptionCode    = status;
422     ExceptionRec.ExceptionFlags   = EH_NONCONTINUABLE;
423     ExceptionRec.ExceptionRecord  = NULL;
424     ExceptionRec.NumberParameters = 0;
425     RtlRaiseException( &ExceptionRec );
426 }
427
428
429 /*******************************************************************
430  *         RtlAddVectoredExceptionHandler   (NTDLL.@)
431  */
432 PVOID WINAPI RtlAddVectoredExceptionHandler( ULONG first, PVECTORED_EXCEPTION_HANDLER func )
433 {
434     VECTORED_HANDLER *handler = RtlAllocateHeap( GetProcessHeap(), 0, sizeof(*handler) );
435     if (handler)
436     {
437         handler->func = func;
438         RtlEnterCriticalSection( &vectored_handlers_section );
439         if (first) list_add_head( &vectored_handlers, &handler->entry );
440         else list_add_tail( &vectored_handlers, &handler->entry );
441         RtlLeaveCriticalSection( &vectored_handlers_section );
442     }
443     return handler;
444 }
445
446
447 /*******************************************************************
448  *         RtlRemoveVectoredExceptionHandler   (NTDLL.@)
449  */
450 ULONG WINAPI RtlRemoveVectoredExceptionHandler( PVOID handler )
451 {
452     struct list *ptr;
453     ULONG ret = FALSE;
454
455     RtlEnterCriticalSection( &vectored_handlers_section );
456     LIST_FOR_EACH( ptr, &vectored_handlers )
457     {
458         if (ptr == &((VECTORED_HANDLER *)handler)->entry)
459         {
460             list_remove( ptr );
461             ret = TRUE;
462             break;
463         }
464     }
465     RtlLeaveCriticalSection( &vectored_handlers_section );
466     if (ret) RtlFreeHeap( GetProcessHeap(), 0, handler );
467     return ret;
468 }
469
470
471 /*************************************************************
472  *            __wine_exception_handler (NTDLL.@)
473  *
474  * Exception handler for exception blocks declared in Wine code.
475  */
476 DWORD __wine_exception_handler( EXCEPTION_RECORD *record, EXCEPTION_REGISTRATION_RECORD *frame,
477                                 CONTEXT *context, EXCEPTION_REGISTRATION_RECORD **pdispatcher )
478 {
479     __WINE_FRAME *wine_frame = (__WINE_FRAME *)frame;
480
481     if (record->ExceptionFlags & (EH_UNWINDING | EH_EXIT_UNWIND | EH_NESTED_CALL))
482         return ExceptionContinueSearch;
483     if (wine_frame->u.filter)
484     {
485         EXCEPTION_POINTERS ptrs;
486         ptrs.ExceptionRecord = record;
487         ptrs.ContextRecord = context;
488         switch(wine_frame->u.filter( &ptrs ))
489         {
490         case EXCEPTION_CONTINUE_SEARCH:
491             return ExceptionContinueSearch;
492         case EXCEPTION_CONTINUE_EXECUTION:
493             return ExceptionContinueExecution;
494         case EXCEPTION_EXECUTE_HANDLER:
495             break;
496         default:
497             MESSAGE( "Invalid return value from exception filter\n" );
498             assert( FALSE );
499         }
500     }
501     /* hack to make GetExceptionCode() work in handler */
502     wine_frame->ExceptionCode   = record->ExceptionCode;
503     wine_frame->ExceptionRecord = wine_frame;
504
505     RtlUnwind( frame, 0, record, 0 );
506     __wine_pop_frame( frame );
507     siglongjmp( wine_frame->jmp, 1 );
508 }
509
510
511 /*************************************************************
512  *            __wine_finally_handler (NTDLL.@)
513  *
514  * Exception handler for try/finally blocks declared in Wine code.
515  */
516 DWORD __wine_finally_handler( EXCEPTION_RECORD *record, EXCEPTION_REGISTRATION_RECORD *frame,
517                               CONTEXT *context, EXCEPTION_REGISTRATION_RECORD **pdispatcher )
518 {
519     if (record->ExceptionFlags & (EH_UNWINDING | EH_EXIT_UNWIND))
520     {
521         __WINE_FRAME *wine_frame = (__WINE_FRAME *)frame;
522         wine_frame->u.finally_func( FALSE );
523     }
524     return ExceptionContinueSearch;
525 }