2008-02-08 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / mini / exceptions-x86.c
index f186733988fb7eb9dbd50ec7140a114d38fdbe3f..c69928c507174d226465a8467e01bd771ba1a195 100644 (file)
 #include <mono/metadata/exception.h>
 #include <mono/metadata/gc-internal.h>
 #include <mono/metadata/mono-debug.h>
-#include <mono/metadata/mono-debug-debugger.h>
+#include <mono/utils/mono-mmap.h>
 
 #include "mini.h"
 #include "mini-x86.h"
 
-#if defined(__FreeBSD__)
-#include <ucontext.h>
-#endif 
-
 #ifdef PLATFORM_WIN32
 static void (*restore_stack) (void *);
 
@@ -218,6 +214,8 @@ LONG CALLBACK seh_handler(EXCEPTION_POINTERS* ep)
        ctx->Edi = sctx->edi;
        ctx->Eip = sctx->eip;
 
+       g_free (sctx);
+
        return res;
 }
 
@@ -534,7 +532,9 @@ mono_arch_get_throw_corlib_exception (void)
        inited = 1;
        code = start = mono_global_codeman_reserve (64);
 
-       x86_push_membase (code, X86_ESP, 4); /* token */
+       x86_mov_reg_membase (code, X86_EAX, X86_ESP, 4, 4); /* token */
+       x86_alu_reg_imm (code, X86_ADD, X86_EAX, MONO_TOKEN_TYPE_DEF);
+       x86_push_reg (code, X86_EAX);
        x86_push_imm (code, mono_defaults.exception_class->image);
        x86_call_code (code, mono_exception_from_token);
        x86_alu_reg_imm (code, X86_ADD, X86_ESP, 8);
@@ -624,7 +624,7 @@ mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, MonoJitInf
 
                if (*lmf && (MONO_CONTEXT_GET_BP (ctx) >= (gpointer)(*lmf)->ebp)) {
                        /* remove any unused lmf */
-                       *lmf = (*lmf)->previous_lmf;
+                       *lmf = (gpointer)(((guint32)(*lmf)->previous_lmf) & ~1);
                }
 
                /* Pop EBP and the return address */
@@ -646,11 +646,12 @@ mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, MonoJitInf
                
                *new_ctx = *ctx;
 
-               if (!(*lmf)->method)
-                       return (gpointer)-1;
-
                if ((ji = mono_jit_info_table_find (domain, (gpointer)(*lmf)->eip))) {
                } else {
+                       if (!(*lmf)->method)
+                               /* Top LMF entry */
+                               return (gpointer)-1;
+                       /* Trampoline lmf frame */
                        memset (res, 0, sizeof (MonoJitInfo));
                        res->method = (*lmf)->method;
                }
@@ -660,11 +661,29 @@ mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, MonoJitInf
                new_ctx->ebx = (*lmf)->ebx;
                new_ctx->ebp = (*lmf)->ebp;
                new_ctx->eip = (*lmf)->eip;
-               /* the lmf is always stored on the stack, so the following
-                * expression points to a stack location which can be used as ESP */
-               new_ctx->esp = (unsigned long)&((*lmf)->eip);
 
-               *lmf = (*lmf)->previous_lmf;
+               /* Check if we are in a trampoline LMF frame */
+               if ((guint32)((*lmf)->previous_lmf) & 1) {
+                       /* lmf->esp is set by the trampoline code */
+                       new_ctx->esp = (*lmf)->esp;
+
+                       /* Pop arguments off the stack */
+                       /* FIXME: Handle the delegate case too ((*lmf)->method == NULL) */
+                       /* FIXME: Handle the IMT/vtable case too */
+                       if ((*lmf)->method && (*lmf)->method != MONO_FAKE_IMT_METHOD && (*lmf)->method != MONO_FAKE_VTABLE_METHOD) {
+                               MonoMethod *method = (*lmf)->method;
+                               MonoJitArgumentInfo *arg_info = g_newa (MonoJitArgumentInfo, mono_method_signature (method)->param_count + 1);
+
+                               guint32 stack_to_pop = mono_arch_get_argument_info (mono_method_signature (method), mono_method_signature (method)->param_count, arg_info);
+                               new_ctx->esp += stack_to_pop;
+                       }
+               }
+               else
+                       /* the lmf is always stored on the stack, so the following
+                        * expression points to a stack location which can be used as ESP */
+                       new_ctx->esp = (unsigned long)&((*lmf)->eip);
+
+               *lmf = (gpointer)(((guint32)(*lmf)->previous_lmf) & ~1);
 
                return ji ? ji : res;
        }
@@ -690,27 +709,15 @@ mono_arch_sigctx_to_monoctx (void *sigctx, MonoContext *mctx)
 #ifdef MONO_ARCH_USE_SIGACTION
        ucontext_t *ctx = (ucontext_t*)sigctx;
        
-#if defined(__FreeBSD__)
-       mctx->eax = ctx->uc_mcontext.mc_eax;
-       mctx->ebx = ctx->uc_mcontext.mc_ebx;
-       mctx->ecx = ctx->uc_mcontext.mc_ecx;
-       mctx->edx = ctx->uc_mcontext.mc_edx;
-       mctx->ebp = ctx->uc_mcontext.mc_ebp;
-       mctx->esp = ctx->uc_mcontext.mc_esp;
-       mctx->esi = ctx->uc_mcontext.mc_esi;
-       mctx->edi = ctx->uc_mcontext.mc_edi;
-       mctx->eip = ctx->uc_mcontext.mc_eip;
-#else
-       mctx->eax = ctx->uc_mcontext.gregs [REG_EAX];
-       mctx->ebx = ctx->uc_mcontext.gregs [REG_EBX];
-       mctx->ecx = ctx->uc_mcontext.gregs [REG_ECX];
-       mctx->edx = ctx->uc_mcontext.gregs [REG_EDX];
-       mctx->ebp = ctx->uc_mcontext.gregs [REG_EBP];
-       mctx->esp = ctx->uc_mcontext.gregs [REG_ESP];
-       mctx->esi = ctx->uc_mcontext.gregs [REG_ESI];
-       mctx->edi = ctx->uc_mcontext.gregs [REG_EDI];
-       mctx->eip = ctx->uc_mcontext.gregs [REG_EIP];
-#endif
+       mctx->eax = UCONTEXT_REG_EAX (ctx);
+       mctx->ebx = UCONTEXT_REG_EBX (ctx);
+       mctx->ecx = UCONTEXT_REG_ECX (ctx);
+       mctx->edx = UCONTEXT_REG_EDX (ctx);
+       mctx->ebp = UCONTEXT_REG_EBP (ctx);
+       mctx->esp = UCONTEXT_REG_ESP (ctx);
+       mctx->esi = UCONTEXT_REG_ESI (ctx);
+       mctx->edi = UCONTEXT_REG_EDI (ctx);
+       mctx->eip = UCONTEXT_REG_EIP (ctx);
 #else  
        struct sigcontext *ctx = (struct sigcontext *)sigctx;
 
@@ -732,28 +739,15 @@ mono_arch_monoctx_to_sigctx (MonoContext *mctx, void *sigctx)
 #ifdef MONO_ARCH_USE_SIGACTION
        ucontext_t *ctx = (ucontext_t*)sigctx;
 
-#if defined(__FreeBSD__)
-       ctx->uc_mcontext.mc_eax = mctx->eax;
-       ctx->uc_mcontext.mc_ebx = mctx->ebx;
-       ctx->uc_mcontext.mc_ecx = mctx->ecx;
-       ctx->uc_mcontext.mc_edx = mctx->edx;
-       ctx->uc_mcontext.mc_ebp  = mctx->ebp;
-       ctx->uc_mcontext.mc_esp = mctx->esp;
-       ctx->uc_mcontext.mc_esi = mctx->esi;
-       ctx->uc_mcontext.mc_edi = mctx->edi;
-       ctx->uc_mcontext.mc_eip = mctx->eip;
-
-#else
-       ctx->uc_mcontext.gregs [REG_EAX] = mctx->eax;
-       ctx->uc_mcontext.gregs [REG_EBX] = mctx->ebx;
-       ctx->uc_mcontext.gregs [REG_ECX] = mctx->ecx;
-       ctx->uc_mcontext.gregs [REG_EDX] = mctx->edx;
-       ctx->uc_mcontext.gregs [REG_EBP] = mctx->ebp;
-       ctx->uc_mcontext.gregs [REG_ESP] = mctx->esp;
-       ctx->uc_mcontext.gregs [REG_ESI] = mctx->esi;
-       ctx->uc_mcontext.gregs [REG_EDI] = mctx->edi;
-       ctx->uc_mcontext.gregs [REG_EIP] = mctx->eip;
-#endif
+       UCONTEXT_REG_EAX (ctx) = mctx->eax;
+       UCONTEXT_REG_EBX (ctx) = mctx->ebx;
+       UCONTEXT_REG_ECX (ctx) = mctx->ecx;
+       UCONTEXT_REG_EDX (ctx) = mctx->edx;
+       UCONTEXT_REG_EBP (ctx) = mctx->ebp;
+       UCONTEXT_REG_ESP (ctx) = mctx->esp;
+       UCONTEXT_REG_ESI (ctx) = mctx->esi;
+       UCONTEXT_REG_EDI (ctx) = mctx->edi;
+       UCONTEXT_REG_EIP (ctx) = mctx->eip;
 #else
        struct sigcontext *ctx = (struct sigcontext *)sigctx;
 
@@ -774,11 +768,7 @@ mono_arch_ip_from_context (void *sigctx)
 {
 #ifdef MONO_ARCH_USE_SIGACTION
        ucontext_t *ctx = (ucontext_t*)sigctx;
-#if defined(__FreeBSD__)
-       return (gpointer)ctx->uc_mcontext.mc_eip;
-#else
-       return (gpointer)ctx->uc_mcontext.gregs [REG_EIP];
-#endif
+       return (gpointer)UCONTEXT_REG_EIP (ctx);
 #else
        struct sigcontext *ctx = sigctx;
        return (gpointer)ctx->SC_EIP;
@@ -798,3 +788,99 @@ mono_arch_handle_exception (void *sigctx, gpointer obj, gboolean test_only)
 
        return TRUE;
 }
+
+static void
+restore_soft_guard_pages (void)
+{
+       MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
+       if (jit_tls->stack_ovf_guard_base)
+               mono_mprotect (jit_tls->stack_ovf_guard_base, jit_tls->stack_ovf_guard_size, MONO_MMAP_NONE);
+}
+
+/* 
+ * this function modifies mctx so that when it is restored, it
+ * won't execcute starting at mctx.eip, but in a function that
+ * will restore the protection on the soft-guard pages and return back to
+ * continue at mctx.eip.
+ */
+static void
+prepare_for_guard_pages (MonoContext *mctx)
+{
+       gpointer *sp;
+       sp = (gpointer)(mctx->esp);
+       sp -= 1;
+       /* the resturn addr */
+       sp [0] = (gpointer)(mctx->eip);
+       mctx->eip = (unsigned long)restore_soft_guard_pages;
+       mctx->esp = (unsigned long)sp;
+}
+
+static void
+altstack_handle_and_restore (void *sigctx, gpointer obj, gboolean stack_ovf)
+{
+       void (*restore_context) (MonoContext *);
+       MonoContext mctx;
+
+       restore_context = mono_arch_get_restore_context ();
+       mono_arch_sigctx_to_monoctx (sigctx, &mctx);
+       mono_handle_exception (&mctx, obj, (gpointer)mctx.eip, FALSE);
+       if (stack_ovf)
+               prepare_for_guard_pages (&mctx);
+       restore_context (&mctx);
+}
+
+void
+mono_arch_handle_altstack_exception (void *sigctx, gpointer fault_addr, gboolean stack_ovf)
+{
+#ifdef MONO_ARCH_USE_SIGACTION
+       MonoException *exc = NULL;
+       ucontext_t *ctx = (ucontext_t*)sigctx;
+       MonoJitInfo *ji = mono_jit_info_table_find (mono_domain_get (), (gpointer)UCONTEXT_REG_EIP (ctx));
+       gpointer *sp;
+       int frame_size;
+
+       /* if we didn't find a managed method for the ip address and it matches the fault
+        * address, we assume we followed a broken pointer during an indirect call, so
+        * we try the lookup again with the return address pushed on the stack
+        */
+       if (!ji && fault_addr == (gpointer)UCONTEXT_REG_EIP (ctx)) {
+               glong *sp = (gpointer)UCONTEXT_REG_ESP (ctx);
+               ji = mono_jit_info_table_find (mono_domain_get (), (gpointer)sp [0]);
+               if (ji)
+                       UCONTEXT_REG_EIP (ctx) = sp [0];
+       }
+       if (stack_ovf)
+               exc = mono_domain_get ()->stack_overflow_ex;
+       if (!ji)
+               mono_handle_native_sigsegv (SIGSEGV, sigctx);
+       /* setup a call frame on the real stack so that control is returned there
+        * and exception handling can continue.
+        * If this was a stack overflow the caller already ensured the stack pages
+        * needed have been unprotected.
+        * The frame looks like:
+        *   ucontext struct
+        *   test_only arg
+        *   exception arg
+        *   ctx arg
+        *   return ip
+        */
+       frame_size = sizeof (ucontext_t) + sizeof (gpointer) * 4;
+       frame_size += 15;
+       frame_size &= ~15;
+       sp = (gpointer)(UCONTEXT_REG_ESP (ctx) & ~15);
+       sp = (gpointer)((char*)sp - frame_size);
+       /* the incoming arguments are aligned to 16 bytes boundaries, so the return address IP
+        * goes at sp [-1]
+        */
+       sp [-1] = (gpointer)UCONTEXT_REG_EIP (ctx);
+       sp [0] = sp + 4;
+       sp [1] = exc;
+       sp [2] = (gpointer)stack_ovf;
+       /* may need to adjust pointers in the new struct copy, depending on the OS */
+       memcpy (sp + 4, ctx, sizeof (ucontext_t));
+       /* at the return form the signal handler execution starts in altstack_handle_and_restore() */
+       UCONTEXT_REG_EIP (ctx) = (unsigned long)altstack_handle_and_restore;
+       UCONTEXT_REG_ESP (ctx) = (unsigned long)(sp - 1);
+#endif
+}
+