Merge pull request #601 from knocte/sock_improvements
[mono.git] / mono / mini / mini-posix.c
index b9839cb0797445ec6d8bc46ed399049e32ae6ff1..d3e5c907294130f94e33c9b276cea7d790ddaac8 100644 (file)
@@ -6,6 +6,7 @@
  *
  * Copyright 2001-2003 Ximian, Inc.
  * Copyright 2003-2008 Ximian, Inc.
+ * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
  *
  * See LICENSE for licensing information.
  */
@@ -50,7 +51,7 @@
 #include <mono/utils/mono-math.h>
 #include <mono/utils/mono-compiler.h>
 #include <mono/utils/mono-counters.h>
-#include <mono/utils/mono-logger.h>
+#include <mono/utils/mono-logger-internal.h>
 #include <mono/utils/mono-mmap.h>
 #include <mono/utils/dtrace.h>
 
 
 #include "jit-icalls.h"
 
+#if defined(__native_client__)
+
+void
+mono_runtime_setup_stat_profiler (void)
+{
+       printf("WARNING: mono_runtime_setup_stat_profiler() called!\n");
+}
+
+
+void
+mono_runtime_shutdown_stat_profiler (void)
+{
+}
+
+
+gboolean
+SIG_HANDLER_SIGNATURE (mono_chain_signal)
+{
+       return FALSE;
+}
+
+void
+mono_runtime_install_handlers (void)
+{
+}
+
+void
+mono_runtime_shutdown_handlers (void)
+{
+}
+
+void
+mono_runtime_cleanup_handlers (void)
+{
+}
+
+pid_t
+mono_runtime_syscall_fork (void)
+{
+       g_assert_not_reached();
+       return 0;
+}
+
+void
+mono_gdb_render_native_backtraces (pid_t crashed_pid)
+{
+}
+
+#else
+
 static GHashTable *mono_saved_signal_handlers = NULL;
 
 static gpointer
@@ -128,7 +179,7 @@ SIG_HANDLER_SIGNATURE (mono_chain_signal)
 
        GET_CONTEXT;
 
-       if (saved_handler) {
+       if (saved_handler && saved_handler->sa_handler) {
                if (!(saved_handler->sa_flags & SA_SIGINFO)) {
                        saved_handler->sa_handler (signal);
                } else {
@@ -144,10 +195,11 @@ SIG_HANDLER_SIGNATURE (mono_chain_signal)
 static void
 SIG_HANDLER_SIGNATURE (sigabrt_signal_handler)
 {
-       MonoJitInfo *ji;
+       MonoJitInfo *ji = NULL;
        GET_CONTEXT;
 
-       ji = mono_jit_info_table_find (mono_domain_get (), mono_arch_ip_from_context(ctx));
+       if (mono_thread_internal_current ())
+               ji = mono_jit_info_table_find (mono_domain_get (), mono_arch_ip_from_context(ctx));
        if (!ji) {
         if (mono_chain_signal (SIG_HANDLER_PARAMS))
                        return;
@@ -166,10 +218,17 @@ SIG_HANDLER_SIGNATURE (sigusr1_signal_handler)
        
        GET_CONTEXT;
 
-       if (!thread || !domain)
+       if (!thread || !domain) {
                /* The thread might not have started up yet */
                /* FIXME: Specify the synchronization with start_wrapper () in threads.c */
+               mono_debugger_agent_thread_interrupt (ctx, NULL);
+               return;
+       }
+
+       if (thread->ignore_next_signal) {
+               thread->ignore_next_signal = FALSE;
                return;
+       }
 
        if (thread->thread_dump_requested) {
                thread->thread_dump_requested = FALSE;
@@ -178,22 +237,48 @@ SIG_HANDLER_SIGNATURE (sigusr1_signal_handler)
        }
 
        /*
-        * FIXME:
         * This is an async signal, so the code below must not call anything which
         * is not async safe. That includes the pthread locking functions. If we
         * know that we interrupted managed code, then locking is safe.
         */
-       ji = mono_jit_info_table_find (mono_domain_get (), mono_arch_ip_from_context(ctx));
-       running_managed = ji != NULL;
+       /*
+        * On OpenBSD, ctx can be NULL if we are interrupting poll ().
+        */
+       if (ctx) {
+               ji = mono_jit_info_table_find (mono_domain_get (), mono_arch_ip_from_context(ctx));
+               running_managed = ji != NULL;
+
+               if (mono_debugger_agent_thread_interrupt (ctx, ji))
+                       return;
+       } else {
+               running_managed = FALSE;
+       }
+
+       /* We can't do handler block checking from metadata since it requires doing
+        * a stack walk with context.
+        *
+        * FIXME add full-aot support.
+        */
+#ifdef MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX
+       if (!mono_aot_only && ctx) {
+               MonoThreadUnwindState unwind_state;
+               if (mono_thread_state_init_from_sigctx (&unwind_state, ctx)) {
+                       if (mono_install_handler_block_guard (&unwind_state)) {
+#ifndef HOST_WIN32
+                               /*Clear current thread from been wapi interrupted otherwise things can go south*/
+                               wapi_clear_interruption ();
+#endif
+                               return;
+                       }
+               }
+       }
+#endif
 
-       if (mono_debugger_agent_thread_interrupt (ji))
-               return;
-       
        exc = mono_thread_request_interruption (running_managed); 
        if (!exc)
                return;
 
-       mono_arch_handle_exception (ctx, exc, FALSE);
+       mono_arch_handle_exception (ctx, exc);
 }
 
 #if defined(__i386__) || defined(__x86_64__)
@@ -234,7 +319,7 @@ SIG_HANDLER_SIGNATURE (sigprof_signal_handler)
        if (call_chain_depth == 0) {
                mono_profiler_stat_hit (mono_arch_ip_from_context (ctx), ctx);
        } else {
-               MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
+               MonoJitTlsData *jit_tls = mono_native_tls_get_value (mono_jit_tls_id);
                int current_frame_index = 1;
                MonoContext mono_context;
                guchar *ips [call_chain_depth + 1];
@@ -315,17 +400,21 @@ SIG_HANDLER_SIGNATURE (sigquit_signal_handler)
        if (res)
                return;
 
-       printf ("Full thread dump:\n");
+       if (mono_thread_info_new_interrupt_enabled ()) {
+               mono_threads_request_thread_dump ();
+       } else {
+               printf ("Full thread dump:\n");
 
-       mono_threads_request_thread_dump ();
+               mono_threads_request_thread_dump ();
 
-       /*
-        * print_thread_dump () skips the current thread, since sending a signal
-        * to it would invoke the signal handler below the sigquit signal handler,
-        * and signal handlers don't create an lmf, so the stack walk could not
-        * be performed.
-        */
-       mono_print_thread_dump (ctx);
+               /*
+                * print_thread_dump () skips the current thread, since sending a signal
+                * to it would invoke the signal handler below the sigquit signal handler,
+                * and signal handlers don't create an lmf, so the stack walk could not
+                * be performed.
+                */
+               mono_print_thread_dump (ctx);
+       }
 
        mono_chain_signal (SIG_HANDLER_PARAMS);
 }
@@ -351,7 +440,13 @@ add_signal_handler (int signo, gpointer handler)
        sigemptyset (&sa.sa_mask);
        sa.sa_flags = SA_SIGINFO;
 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
+
+/*Apple likes to deliver SIGBUS for *0 */
+#ifdef __APPLE__
+       if (signo == SIGSEGV || signo == SIGBUS) {
+#else
        if (signo == SIGSEGV) {
+#endif
                sa.sa_flags |= SA_ONSTACK;
 
                /* 
@@ -422,7 +517,8 @@ mono_runtime_posix_install_handlers (void)
        if (mono_jit_trace_calls != NULL)
                add_signal_handler (SIGUSR2, sigusr2_signal_handler);
 
-       add_signal_handler (mono_thread_get_abort_signal (), sigusr1_signal_handler);
+       if (!mono_thread_info_new_interrupt_enabled ())
+               add_signal_handler (mono_thread_get_abort_signal (), sigusr1_signal_handler);
        /* it seems to have become a common bug for some programs that run as parents
         * of many processes to block signal delivery for real time signals.
         * We try to detect and work around their breakage here.
@@ -568,22 +664,23 @@ mono_runtime_syscall_fork ()
        return (pid_t) syscall (SYS_fork);
 #else
        g_assert_not_reached ();
+       return 0;
 #endif
 }
 
-gboolean
-mono_gdb_render_native_backtraces ()
+void
+mono_gdb_render_native_backtraces (pid_t crashed_pid)
 {
        const char *argv [9];
        char buf1 [128];
 
        argv [0] = g_find_program_in_path ("gdb");
        if (argv [0] == NULL) {
-               return FALSE;
+               return;
        }
 
        argv [1] = "-ex";
-       sprintf (buf1, "attach %ld", (long)getpid ());
+       sprintf (buf1, "attach %ld", (long) crashed_pid);
        argv [2] = buf1;
        argv [3] = "--ex";
        argv [4] = "info threads";
@@ -593,7 +690,17 @@ mono_gdb_render_native_backtraces ()
        argv [8] = 0;
 
        execv (argv [0], (char**)argv);
+}
+#endif
+#endif /* __native_client__ */
 
-       return TRUE;
+#if !defined (__MACH__)
+
+gboolean
+mono_thread_state_init_from_handle (MonoThreadUnwindState *tctx, MonoNativeThreadId thread_id, MonoNativeThreadHandle thread_handle)
+{
+       g_error ("Posix systems don't support mono_thread_state_init_from_handle");
+       return FALSE;
 }
+
 #endif