Call mono_create_jit_trampoline_in_domain () in mono_resolve_patch_target () so share...
[mono.git] / mono / mini / mini-posix.c
1 /*
2  * mini-posix.c: POSIX signal handling support for Mono.
3  *
4  * Authors:
5  *   Mono Team (mono-list@lists.ximian.com)
6  *
7  * Copyright 2001-2003 Ximian, Inc.
8  * Copyright 2003-2008 Ximian, Inc.
9  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
10  *
11  * See LICENSE for licensing information.
12  */
13 #include <config.h>
14 #include <signal.h>
15 #ifdef HAVE_ALLOCA_H
16 #include <alloca.h>
17 #endif
18 #ifdef HAVE_UNISTD_H
19 #include <unistd.h>
20 #endif
21 #include <math.h>
22 #ifdef HAVE_SYS_TIME_H
23 #include <sys/time.h>
24 #endif
25 #ifdef HAVE_SYS_SYSCALL_H
26 #include <sys/syscall.h>
27 #endif
28
29 #include <mono/metadata/assembly.h>
30 #include <mono/metadata/loader.h>
31 #include <mono/metadata/tabledefs.h>
32 #include <mono/metadata/class.h>
33 #include <mono/metadata/object.h>
34 #include <mono/metadata/tokentype.h>
35 #include <mono/metadata/tabledefs.h>
36 #include <mono/metadata/threads.h>
37 #include <mono/metadata/appdomain.h>
38 #include <mono/metadata/debug-helpers.h>
39 #include <mono/io-layer/io-layer.h>
40 #include "mono/metadata/profiler.h"
41 #include <mono/metadata/profiler-private.h>
42 #include <mono/metadata/mono-config.h>
43 #include <mono/metadata/environment.h>
44 #include <mono/metadata/mono-debug.h>
45 #include <mono/metadata/gc-internal.h>
46 #include <mono/metadata/threads-types.h>
47 #include <mono/metadata/verify.h>
48 #include <mono/metadata/verify-internals.h>
49 #include <mono/metadata/mempool-internals.h>
50 #include <mono/metadata/attach.h>
51 #include <mono/utils/mono-math.h>
52 #include <mono/utils/mono-compiler.h>
53 #include <mono/utils/mono-counters.h>
54 #include <mono/utils/mono-logger-internal.h>
55 #include <mono/utils/mono-mmap.h>
56 #include <mono/utils/dtrace.h>
57
58 #include "mini.h"
59 #include <string.h>
60 #include <ctype.h>
61 #include "trace.h"
62 #include "version.h"
63 #include "debugger-agent.h"
64
65 #include "jit-icalls.h"
66
67 #if defined(__native_client__)
68
69 void
70 mono_runtime_setup_stat_profiler (void)
71 {
72         printf("WARNING: mono_runtime_setup_stat_profiler() called!\n");
73 }
74
75
76 void
77 mono_runtime_shutdown_stat_profiler (void)
78 {
79 }
80
81
82 gboolean
83 SIG_HANDLER_SIGNATURE (mono_chain_signal)
84 {
85         return FALSE;
86 }
87
88 void
89 mono_runtime_install_handlers (void)
90 {
91 }
92
93 void
94 mono_runtime_shutdown_handlers (void)
95 {
96 }
97
98 void
99 mono_runtime_cleanup_handlers (void)
100 {
101 }
102
103
104
105 #else
106
107 static GHashTable *mono_saved_signal_handlers = NULL;
108
109 static gpointer
110 get_saved_signal_handler (int signo)
111 {
112         if (mono_saved_signal_handlers)
113                 /* The hash is only modified during startup, so no need for locking */
114                 return g_hash_table_lookup (mono_saved_signal_handlers, GINT_TO_POINTER (signo));
115         return NULL;
116 }
117
118 static void
119 save_old_signal_handler (int signo, struct sigaction *old_action)
120 {
121         struct sigaction *handler_to_save = g_malloc (sizeof (struct sigaction));
122
123         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_CONFIG,
124                                 "Saving old signal handler for signal %d.", signo);
125
126         if (! (old_action->sa_flags & SA_SIGINFO)) {
127                 handler_to_save->sa_handler = old_action->sa_handler;
128         } else {
129 #ifdef MONO_ARCH_USE_SIGACTION
130                 handler_to_save->sa_sigaction = old_action->sa_sigaction;
131 #endif /* MONO_ARCH_USE_SIGACTION */
132         }
133         handler_to_save->sa_mask = old_action->sa_mask;
134         handler_to_save->sa_flags = old_action->sa_flags;
135         
136         if (!mono_saved_signal_handlers)
137                 mono_saved_signal_handlers = g_hash_table_new (NULL, NULL);
138         g_hash_table_insert (mono_saved_signal_handlers, GINT_TO_POINTER (signo), handler_to_save);
139 }
140
141 static void
142 free_saved_sig_handler_func (gpointer key, gpointer value, gpointer user_data)
143 {
144         g_free (value);
145 }
146
147 static void
148 free_saved_signal_handlers (void)
149 {
150         if (mono_saved_signal_handlers) {
151                 g_hash_table_foreach (mono_saved_signal_handlers, free_saved_sig_handler_func, NULL);
152                 g_hash_table_destroy (mono_saved_signal_handlers);
153                 mono_saved_signal_handlers = NULL;
154         }
155 }
156
157 /*
158  * mono_chain_signal:
159  *
160  *   Call the original signal handler for the signal given by the arguments, which
161  * should be the same as for a signal handler. Returns TRUE if the original handler
162  * was called, false otherwise.
163  */
164 gboolean
165 SIG_HANDLER_SIGNATURE (mono_chain_signal)
166 {
167         int signal = _dummy;
168         struct sigaction *saved_handler = get_saved_signal_handler (signal);
169
170         GET_CONTEXT;
171
172         if (saved_handler && saved_handler->sa_handler) {
173                 if (!(saved_handler->sa_flags & SA_SIGINFO)) {
174                         saved_handler->sa_handler (signal);
175                 } else {
176 #ifdef MONO_ARCH_USE_SIGACTION
177                         saved_handler->sa_sigaction (signal, info, ctx);
178 #endif /* MONO_ARCH_USE_SIGACTION */
179                 }
180                 return TRUE;
181         }
182         return FALSE;
183 }
184
185 static void
186 SIG_HANDLER_SIGNATURE (sigabrt_signal_handler)
187 {
188         MonoJitInfo *ji = NULL;
189         GET_CONTEXT;
190
191         if (mono_thread_internal_current ())
192                 ji = mono_jit_info_table_find (mono_domain_get (), mono_arch_ip_from_context(ctx));
193         if (!ji) {
194         if (mono_chain_signal (SIG_HANDLER_PARAMS))
195                         return;
196                 mono_handle_native_sigsegv (SIGABRT, ctx);
197         }
198 }
199
200 static void
201 SIG_HANDLER_SIGNATURE (sigusr1_signal_handler)
202 {
203         gboolean running_managed;
204         MonoException *exc;
205         MonoInternalThread *thread = mono_thread_internal_current ();
206         MonoDomain *domain = mono_domain_get ();
207         void *ji;
208         
209         GET_CONTEXT;
210
211         if (!thread || !domain)
212                 /* The thread might not have started up yet */
213                 /* FIXME: Specify the synchronization with start_wrapper () in threads.c */
214                 return;
215
216         if (thread->thread_dump_requested) {
217                 thread->thread_dump_requested = FALSE;
218
219                 mono_print_thread_dump (ctx);
220         }
221
222         /*
223          * This is an async signal, so the code below must not call anything which
224          * is not async safe. That includes the pthread locking functions. If we
225          * know that we interrupted managed code, then locking is safe.
226          */
227         /*
228          * On OpenBSD, ctx can be NULL if we are interrupting poll ().
229          */
230         if (ctx) {
231                 ji = mono_jit_info_table_find (mono_domain_get (), mono_arch_ip_from_context(ctx));
232                 running_managed = ji != NULL;
233
234                 if (mono_debugger_agent_thread_interrupt (ctx, ji))
235                         return;
236         } else {
237                 running_managed = FALSE;
238         }
239
240         /* We can't do handler block checking from metadata since it requires doing
241          * a stack walk with context.
242          *
243          * FIXME add full-aot support.
244          */
245 #ifdef MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX
246         if (!mono_aot_only && ctx) {
247                 MonoThreadUnwindState unwind_state;
248                 if (mono_thread_state_init_from_sigctx (&unwind_state, ctx)) {
249                         if (mono_install_handler_block_guard (&unwind_state)) {
250 #ifndef HOST_WIN32
251                                 /*Clear current thread from been wapi interrupted otherwise things can go south*/
252                                 wapi_clear_interruption ();
253 #endif
254                                 return;
255                         }
256                 }
257         }
258 #endif
259
260         exc = mono_thread_request_interruption (running_managed); 
261         if (!exc)
262                 return;
263
264         mono_arch_handle_exception (ctx, exc);
265 }
266
267 #if defined(__i386__) || defined(__x86_64__)
268 #define FULL_STAT_PROFILER_BACKTRACE 1
269 #define CURRENT_FRAME_GET_BASE_POINTER(f) (* (gpointer*)(f))
270 #define CURRENT_FRAME_GET_RETURN_ADDRESS(f) (* (((gpointer*)(f)) + 1))
271 #if MONO_ARCH_STACK_GROWS_UP
272 #define IS_BEFORE_ON_STACK <
273 #define IS_AFTER_ON_STACK >
274 #else
275 #define IS_BEFORE_ON_STACK >
276 #define IS_AFTER_ON_STACK <
277 #endif
278 #else
279 #define FULL_STAT_PROFILER_BACKTRACE 0
280 #endif
281
282 #if defined(__ia64__) || defined(__sparc__) || defined(sparc) || defined(__s390__) || defined(s390)
283
284 static void
285 SIG_HANDLER_SIGNATURE (sigprof_signal_handler)
286 {
287         if (mono_chain_signal (SIG_HANDLER_PARAMS))
288                 return;
289
290         NOT_IMPLEMENTED;
291 }
292
293 #else
294
295 static void
296 SIG_HANDLER_SIGNATURE (sigprof_signal_handler)
297 {
298         int call_chain_depth = mono_profiler_stat_get_call_chain_depth ();
299         MonoProfilerCallChainStrategy call_chain_strategy = mono_profiler_stat_get_call_chain_strategy ();
300         GET_CONTEXT;
301         
302         if (call_chain_depth == 0) {
303                 mono_profiler_stat_hit (mono_arch_ip_from_context (ctx), ctx);
304         } else {
305                 MonoJitTlsData *jit_tls = mono_native_tls_get_value (mono_jit_tls_id);
306                 int current_frame_index = 1;
307                 MonoContext mono_context;
308                 guchar *ips [call_chain_depth + 1];
309
310                 mono_arch_sigctx_to_monoctx (ctx, &mono_context);
311                 ips [0] = MONO_CONTEXT_GET_IP (&mono_context);
312                 
313                 if (jit_tls != NULL) {
314                         if (call_chain_strategy == MONO_PROFILER_CALL_CHAIN_NATIVE) {
315 #if FULL_STAT_PROFILER_BACKTRACE
316                         guchar *current_frame;
317                         guchar *stack_bottom;
318                         guchar *stack_top;
319                         
320                         stack_bottom = jit_tls->end_of_stack;
321                         stack_top = MONO_CONTEXT_GET_SP (&mono_context);
322                         current_frame = MONO_CONTEXT_GET_BP (&mono_context);
323                         
324                         while ((current_frame_index <= call_chain_depth) &&
325                                         (stack_bottom IS_BEFORE_ON_STACK (guchar*) current_frame) &&
326                                         ((guchar*) current_frame IS_BEFORE_ON_STACK stack_top)) {
327                                 ips [current_frame_index] = CURRENT_FRAME_GET_RETURN_ADDRESS (current_frame);
328                                 current_frame_index ++;
329                                 stack_top = current_frame;
330                                 current_frame = CURRENT_FRAME_GET_BASE_POINTER (current_frame);
331                         }
332 #else
333                                 call_chain_strategy = MONO_PROFILER_CALL_CHAIN_GLIBC;
334 #endif
335                         }
336                         
337                         if (call_chain_strategy == MONO_PROFILER_CALL_CHAIN_GLIBC) {
338 #if GLIBC_PROFILER_BACKTRACE
339                                 current_frame_index = backtrace ((void**) & ips [1], call_chain_depth);
340 #else
341                                 call_chain_strategy = MONO_PROFILER_CALL_CHAIN_MANAGED;
342 #endif
343                         }
344
345                         if (call_chain_strategy == MONO_PROFILER_CALL_CHAIN_MANAGED) {
346                                 MonoDomain *domain = mono_domain_get ();
347                                 if (domain != NULL) {
348                                         MonoLMF *lmf = NULL;
349                                         MonoJitInfo *ji;
350                                         MonoJitInfo res;
351                                         MonoContext new_mono_context;
352                                         int native_offset;
353                                         ji = mono_find_jit_info (domain, jit_tls, &res, NULL, &mono_context,
354                                                         &new_mono_context, NULL, &lmf, &native_offset, NULL);
355                                         while ((ji != NULL) && (current_frame_index <= call_chain_depth)) {
356                                                 ips [current_frame_index] = MONO_CONTEXT_GET_IP (&new_mono_context);
357                                                 current_frame_index ++;
358                                                 mono_context = new_mono_context;
359                                                 ji = mono_find_jit_info (domain, jit_tls, &res, NULL, &mono_context,
360                                                                 &new_mono_context, NULL, &lmf, &native_offset, NULL);
361                                         }
362                                 }
363                         }
364                 }
365                 
366                 mono_profiler_stat_call_chain (current_frame_index, & ips [0], ctx);
367         }
368
369         mono_chain_signal (SIG_HANDLER_PARAMS);
370 }
371
372 #endif
373
374 static void
375 SIG_HANDLER_SIGNATURE (sigquit_signal_handler)
376 {
377         gboolean res;
378
379         GET_CONTEXT;
380
381         /* We use this signal to start the attach agent too */
382         res = mono_attach_start ();
383         if (res)
384                 return;
385
386         if (mono_thread_info_new_interrupt_enabled ()) {
387                 mono_threads_request_thread_dump ();
388         } else {
389                 printf ("Full thread dump:\n");
390
391                 mono_threads_request_thread_dump ();
392
393                 /*
394                  * print_thread_dump () skips the current thread, since sending a signal
395                  * to it would invoke the signal handler below the sigquit signal handler,
396                  * and signal handlers don't create an lmf, so the stack walk could not
397                  * be performed.
398                  */
399                 mono_print_thread_dump (ctx);
400         }
401
402         mono_chain_signal (SIG_HANDLER_PARAMS);
403 }
404
405 static void
406 SIG_HANDLER_SIGNATURE (sigusr2_signal_handler)
407 {
408         gboolean enabled = mono_trace_is_enabled ();
409
410         mono_trace_enable (!enabled);
411
412         mono_chain_signal (SIG_HANDLER_PARAMS);
413 }
414
415 static void
416 add_signal_handler (int signo, gpointer handler)
417 {
418         struct sigaction sa;
419         struct sigaction previous_sa;
420
421 #ifdef MONO_ARCH_USE_SIGACTION
422         sa.sa_sigaction = handler;
423         sigemptyset (&sa.sa_mask);
424         sa.sa_flags = SA_SIGINFO;
425 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
426
427 /*Apple likes to deliver SIGBUS for *0 */
428 #ifdef __APPLE__
429         if (signo == SIGSEGV || signo == SIGBUS) {
430 #else
431         if (signo == SIGSEGV) {
432 #endif
433                 sa.sa_flags |= SA_ONSTACK;
434
435                 /* 
436                  * libgc will crash when trying to do stack marking for threads which are on
437                  * an altstack, so delay the suspend signal after the signal handler has
438                  * executed.
439                  */
440                 if (mono_gc_get_suspend_signal () != -1)
441                         sigaddset (&sa.sa_mask, mono_gc_get_suspend_signal ());
442         }
443 #endif
444         if (signo == SIGSEGV) {
445                 /* 
446                  * Delay abort signals while handling SIGSEGVs since they could go unnoticed.
447                  */
448                 sigset_t block_mask;
449      
450                 sigemptyset (&block_mask);
451                 sigaddset (&sa.sa_mask, mono_thread_get_abort_signal ());
452         }
453 #else
454         sa.sa_handler = handler;
455         sigemptyset (&sa.sa_mask);
456         sa.sa_flags = 0;
457 #endif
458         g_assert (sigaction (signo, &sa, &previous_sa) != -1);
459
460         /* if there was already a handler in place for this signal, store it */
461         if (! (previous_sa.sa_flags & SA_SIGINFO) &&
462                         (SIG_DFL == previous_sa.sa_handler)) { 
463                 /* it there is no sa_sigaction function and the sa_handler is default, we can safely ignore this */
464         } else {
465                 if (mono_do_signal_chaining)
466                         save_old_signal_handler (signo, &previous_sa);
467         }
468 }
469
470 static void
471 remove_signal_handler (int signo)
472 {
473         struct sigaction sa;
474         struct sigaction *saved_action = get_saved_signal_handler (signo);
475
476         if (!saved_action) {
477                 sa.sa_handler = SIG_DFL;
478                 sigemptyset (&sa.sa_mask);
479                 sa.sa_flags = 0;
480
481                 sigaction (signo, &sa, NULL);
482         } else {
483                 g_assert (sigaction (signo, saved_action, NULL) != -1);
484         }
485 }
486
487 void
488 mono_runtime_posix_install_handlers (void)
489 {
490
491         sigset_t signal_set;
492
493         if (mini_get_debug_options ()->handle_sigint)
494                 add_signal_handler (SIGINT, mono_sigint_signal_handler);
495
496         add_signal_handler (SIGFPE, mono_sigfpe_signal_handler);
497         add_signal_handler (SIGQUIT, sigquit_signal_handler);
498         add_signal_handler (SIGILL, mono_sigill_signal_handler);
499         add_signal_handler (SIGBUS, mono_sigsegv_signal_handler);
500         if (mono_jit_trace_calls != NULL)
501                 add_signal_handler (SIGUSR2, sigusr2_signal_handler);
502
503         if (!mono_thread_info_new_interrupt_enabled ())
504                 add_signal_handler (mono_thread_get_abort_signal (), sigusr1_signal_handler);
505         /* it seems to have become a common bug for some programs that run as parents
506          * of many processes to block signal delivery for real time signals.
507          * We try to detect and work around their breakage here.
508          */
509         sigemptyset (&signal_set);
510         sigaddset (&signal_set, mono_thread_get_abort_signal ());
511         sigprocmask (SIG_UNBLOCK, &signal_set, NULL);
512
513         signal (SIGPIPE, SIG_IGN);
514
515         add_signal_handler (SIGABRT, sigabrt_signal_handler);
516
517         /* catch SIGSEGV */
518         add_signal_handler (SIGSEGV, mono_sigsegv_signal_handler);
519 }
520
521 #ifndef PLATFORM_MACOSX
522 void
523 mono_runtime_install_handlers (void)
524 {
525         mono_runtime_posix_install_handlers ();
526 }
527 #endif
528
529 void
530 mono_runtime_cleanup_handlers (void)
531 {
532         if (mini_get_debug_options ()->handle_sigint)
533                 remove_signal_handler (SIGINT);
534
535         remove_signal_handler (SIGFPE);
536         remove_signal_handler (SIGQUIT);
537         remove_signal_handler (SIGILL);
538         remove_signal_handler (SIGBUS);
539         if (mono_jit_trace_calls != NULL)
540                 remove_signal_handler (SIGUSR2);
541
542         remove_signal_handler (mono_thread_get_abort_signal ());
543
544         remove_signal_handler (SIGABRT);
545
546         remove_signal_handler (SIGSEGV);
547
548         free_saved_signal_handlers ();
549 }
550
551 #ifdef HAVE_LINUX_RTC_H
552 #include <linux/rtc.h>
553 #include <sys/ioctl.h>
554 #include <fcntl.h>
555 static int rtc_fd = -1;
556
557 static int
558 enable_rtc_timer (gboolean enable)
559 {
560         int flags;
561         flags = fcntl (rtc_fd, F_GETFL);
562         if (flags < 0) {
563                 perror ("getflags");
564                 return 0;
565         }
566         if (enable)
567                 flags |= FASYNC;
568         else
569                 flags &= ~FASYNC;
570         if (fcntl (rtc_fd, F_SETFL, flags) == -1) {
571                 perror ("setflags");
572                 return 0;
573         }
574         return 1;
575 }
576 #endif
577
578 void
579 mono_runtime_shutdown_stat_profiler (void)
580 {
581 #ifdef HAVE_LINUX_RTC_H
582         if (rtc_fd >= 0)
583                 enable_rtc_timer (FALSE);
584 #endif
585 }
586
587 void
588 mono_runtime_setup_stat_profiler (void)
589 {
590 #ifdef ITIMER_PROF
591         struct itimerval itval;
592         static int inited = 0;
593 #ifdef HAVE_LINUX_RTC_H
594         const char *rtc_freq;
595         if (!inited && (rtc_freq = g_getenv ("MONO_RTC"))) {
596                 int freq = 0;
597                 inited = 1;
598                 if (*rtc_freq)
599                         freq = atoi (rtc_freq);
600                 if (!freq)
601                         freq = 1024;
602                 rtc_fd = open ("/dev/rtc", O_RDONLY);
603                 if (rtc_fd == -1) {
604                         perror ("open /dev/rtc");
605                         return;
606                 }
607                 add_signal_handler (SIGPROF, sigprof_signal_handler);
608                 if (ioctl (rtc_fd, RTC_IRQP_SET, freq) == -1) {
609                         perror ("set rtc freq");
610                         return;
611                 }
612                 if (ioctl (rtc_fd, RTC_PIE_ON, 0) == -1) {
613                         perror ("start rtc");
614                         return;
615                 }
616                 if (fcntl (rtc_fd, F_SETSIG, SIGPROF) == -1) {
617                         perror ("setsig");
618                         return;
619                 }
620                 if (fcntl (rtc_fd, F_SETOWN, getpid ()) == -1) {
621                         perror ("setown");
622                         return;
623                 }
624                 enable_rtc_timer (TRUE);
625                 return;
626         }
627         if (rtc_fd >= 0)
628                 return;
629 #endif
630
631         itval.it_interval.tv_usec = 999;
632         itval.it_interval.tv_sec = 0;
633         itval.it_value = itval.it_interval;
634         setitimer (ITIMER_PROF, &itval, NULL);
635         if (inited)
636                 return;
637         inited = 1;
638         add_signal_handler (SIGPROF, sigprof_signal_handler);
639 #endif
640 }
641
642 #if !defined(__APPLE__)
643 pid_t
644 mono_runtime_syscall_fork ()
645 {
646 #if defined(SYS_fork)
647         return (pid_t) syscall (SYS_fork);
648 #else
649         g_assert_not_reached ();
650         return 0;
651 #endif
652 }
653
654 void
655 mono_gdb_render_native_backtraces (pid_t crashed_pid)
656 {
657         const char *argv [9];
658         char buf1 [128];
659
660         argv [0] = g_find_program_in_path ("gdb");
661         if (argv [0] == NULL) {
662                 return;
663         }
664
665         argv [1] = "-ex";
666         sprintf (buf1, "attach %ld", (long) crashed_pid);
667         argv [2] = buf1;
668         argv [3] = "--ex";
669         argv [4] = "info threads";
670         argv [5] = "--ex";
671         argv [6] = "thread apply all bt";
672         argv [7] = "--batch";
673         argv [8] = 0;
674
675         execv (argv [0], (char**)argv);
676 }
677 #endif
678 #endif /* __native_client__ */
679
680 #if !defined (__MACH__)
681
682 gboolean
683 mono_thread_state_init_from_handle (MonoThreadUnwindState *tctx, MonoNativeThreadId thread_id, MonoNativeThreadHandle thread_handle)
684 {
685         g_error ("Posix systems don't support mono_thread_state_init_from_handle");
686         return FALSE;
687 }
688
689 #endif