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