[profiler] Fall back to CLOCK_MONOTONIC if CLOCK_PROCESS_CPUTIME_ID results in EINVAL...
[mono.git] / mono / mini / mini-posix.c
1 /**
2  * \file
3  * POSIX signal handling support for Mono.
4  *
5  * Authors:
6  *   Mono Team (mono-list@lists.ximian.com)
7  *
8  * Copyright 2001-2003 Ximian, Inc.
9  * Copyright 2003-2008 Ximian, Inc.
10  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
11  *
12  * See LICENSE for licensing information.
13  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
14  */
15 #include <config.h>
16 #include <signal.h>
17 #ifdef HAVE_ALLOCA_H
18 #include <alloca.h>
19 #endif
20 #ifdef HAVE_UNISTD_H
21 #include <unistd.h>
22 #endif
23 #include <math.h>
24 #ifdef HAVE_SYS_TIME_H
25 #include <sys/time.h>
26 #endif
27 #ifdef HAVE_SYS_SYSCALL_H
28 #include <sys/syscall.h>
29 #endif
30 #include <errno.h>
31 #include <sched.h>
32
33 #include <mono/metadata/assembly.h>
34 #include <mono/metadata/loader.h>
35 #include <mono/metadata/tabledefs.h>
36 #include <mono/metadata/class.h>
37 #include <mono/metadata/object.h>
38 #include <mono/metadata/tokentype.h>
39 #include <mono/metadata/tabledefs.h>
40 #include <mono/metadata/threads.h>
41 #include <mono/metadata/appdomain.h>
42 #include <mono/metadata/debug-helpers.h>
43 #include "mono/metadata/profiler.h"
44 #include <mono/metadata/profiler-private.h>
45 #include <mono/metadata/mono-config.h>
46 #include <mono/metadata/environment.h>
47 #include <mono/metadata/mono-debug.h>
48 #include <mono/metadata/gc-internals.h>
49 #include <mono/metadata/threads-types.h>
50 #include <mono/metadata/verify.h>
51 #include <mono/metadata/verify-internals.h>
52 #include <mono/metadata/mempool-internals.h>
53 #include <mono/metadata/attach.h>
54 #include <mono/utils/mono-math.h>
55 #include <mono/utils/mono-compiler.h>
56 #include <mono/utils/mono-counters.h>
57 #include <mono/utils/mono-logger-internals.h>
58 #include <mono/utils/mono-mmap.h>
59 #include <mono/utils/dtrace.h>
60 #include <mono/utils/mono-signal-handler.h>
61 #include <mono/utils/mono-threads.h>
62
63 #include "mini.h"
64 #include <string.h>
65 #include <ctype.h>
66 #include "trace.h"
67 #include "version.h"
68 #include "debugger-agent.h"
69
70 #include "jit-icalls.h"
71
72 #ifdef PLATFORM_MACOSX
73 #include <mach/mach.h>
74 #include <mach/mach_time.h>
75 #include <mach/clock.h>
76 #endif
77
78 #if defined(__native_client__) || defined(HOST_WATCHOS)
79
80 void
81 mono_runtime_setup_stat_profiler (void)
82 {
83         printf("WARNING: mono_runtime_setup_stat_profiler() called!\n");
84 }
85
86
87 void
88 mono_runtime_shutdown_stat_profiler (void)
89 {
90 }
91
92
93 gboolean
94 MONO_SIG_HANDLER_SIGNATURE (mono_chain_signal)
95 {
96         return FALSE;
97 }
98
99 #ifndef PLATFORM_MACOSX
100 void
101 mono_runtime_install_handlers (void)
102 {
103 }
104 #endif
105
106 void
107 mono_runtime_posix_install_handlers(void)
108 {
109         /* we still need to ignore SIGPIPE */
110         signal (SIGPIPE, SIG_IGN);
111 }
112
113 void
114 mono_runtime_shutdown_handlers (void)
115 {
116 }
117
118 void
119 mono_runtime_cleanup_handlers (void)
120 {
121 }
122
123 #else
124
125 static GHashTable *mono_saved_signal_handlers = NULL;
126
127 static struct sigaction *
128 get_saved_signal_handler (int signo, gboolean remove)
129 {
130         if (mono_saved_signal_handlers) {
131                 /* The hash is only modified during startup, so no need for locking */
132                 struct sigaction *handler = g_hash_table_lookup (mono_saved_signal_handlers, GINT_TO_POINTER (signo));
133                 if (remove && handler)
134                         g_hash_table_remove (mono_saved_signal_handlers, GINT_TO_POINTER (signo));
135                 return handler;
136         }
137         return NULL;
138 }
139
140 static void
141 save_old_signal_handler (int signo, struct sigaction *old_action)
142 {
143         struct sigaction *handler_to_save = (struct sigaction *)g_malloc (sizeof (struct sigaction));
144
145         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_CONFIG,
146                                 "Saving old signal handler for signal %d.", signo);
147
148         if (! (old_action->sa_flags & SA_SIGINFO)) {
149                 handler_to_save->sa_handler = old_action->sa_handler;
150         } else {
151 #ifdef MONO_ARCH_USE_SIGACTION
152                 handler_to_save->sa_sigaction = old_action->sa_sigaction;
153 #endif /* MONO_ARCH_USE_SIGACTION */
154         }
155         handler_to_save->sa_mask = old_action->sa_mask;
156         handler_to_save->sa_flags = old_action->sa_flags;
157         
158         if (!mono_saved_signal_handlers)
159                 mono_saved_signal_handlers = g_hash_table_new_full (NULL, NULL, NULL, g_free);
160         g_hash_table_insert (mono_saved_signal_handlers, GINT_TO_POINTER (signo), handler_to_save);
161 }
162
163 static void
164 free_saved_signal_handlers (void)
165 {
166         if (mono_saved_signal_handlers) {
167                 g_hash_table_destroy (mono_saved_signal_handlers);
168                 mono_saved_signal_handlers = NULL;
169         }
170 }
171
172 /*
173  * mono_chain_signal:
174  *
175  *   Call the original signal handler for the signal given by the arguments, which
176  * should be the same as for a signal handler. Returns TRUE if the original handler
177  * was called, false otherwise.
178  */
179 gboolean
180 MONO_SIG_HANDLER_SIGNATURE (mono_chain_signal)
181 {
182         int signal = MONO_SIG_HANDLER_GET_SIGNO ();
183         struct sigaction *saved_handler = (struct sigaction *)get_saved_signal_handler (signal, FALSE);
184
185         if (saved_handler && saved_handler->sa_handler) {
186                 if (!(saved_handler->sa_flags & SA_SIGINFO)) {
187                         saved_handler->sa_handler (signal);
188                 } else {
189 #ifdef MONO_ARCH_USE_SIGACTION
190                         saved_handler->sa_sigaction (MONO_SIG_HANDLER_PARAMS);
191 #endif /* MONO_ARCH_USE_SIGACTION */
192                 }
193                 return TRUE;
194         }
195         return FALSE;
196 }
197
198 MONO_SIG_HANDLER_FUNC (static, sigabrt_signal_handler)
199 {
200         MonoJitInfo *ji = NULL;
201         MONO_SIG_HANDLER_INFO_TYPE *info = MONO_SIG_HANDLER_GET_INFO ();
202         MONO_SIG_HANDLER_GET_CONTEXT;
203
204         if (mono_thread_internal_current ())
205                 ji = mono_jit_info_table_find_internal (mono_domain_get (), (char *)mono_arch_ip_from_context (ctx), TRUE, TRUE);
206         if (!ji) {
207         if (mono_chain_signal (MONO_SIG_HANDLER_PARAMS))
208                         return;
209                 mono_handle_native_crash ("SIGABRT", ctx, info);
210         }
211 }
212
213 #if defined(__i386__) || defined(__x86_64__)
214 #define FULL_STAT_PROFILER_BACKTRACE 1
215 #define CURRENT_FRAME_GET_BASE_POINTER(f) (* (gpointer*)(f))
216 #define CURRENT_FRAME_GET_RETURN_ADDRESS(f) (* (((gpointer*)(f)) + 1))
217 #if MONO_ARCH_STACK_GROWS_UP
218 #define IS_BEFORE_ON_STACK <
219 #define IS_AFTER_ON_STACK >
220 #else
221 #define IS_BEFORE_ON_STACK >
222 #define IS_AFTER_ON_STACK <
223 #endif
224 #else
225 #define FULL_STAT_PROFILER_BACKTRACE 0
226 #endif
227
228 #if (defined (USE_POSIX_BACKEND) && defined (SIGRTMIN)) || defined (SIGPROF)
229 #define HAVE_PROFILER_SIGNAL
230 #endif
231
232 #ifdef HAVE_PROFILER_SIGNAL
233
234 static void
235 per_thread_profiler_hit (void *ctx)
236 {
237         int call_chain_depth = mono_profiler_stat_get_call_chain_depth ();
238         MonoProfilerCallChainStrategy call_chain_strategy = mono_profiler_stat_get_call_chain_strategy ();
239
240         if (call_chain_depth == 0) {
241                 mono_profiler_stat_hit ((guchar *)mono_arch_ip_from_context (ctx), ctx);
242         } else {
243                 MonoJitTlsData *jit_tls = (MonoJitTlsData *)mono_tls_get_jit_tls ();
244                 int current_frame_index = 1;
245                 MonoContext mono_context;
246                 guchar *ips [call_chain_depth + 1];
247
248                 mono_sigctx_to_monoctx (ctx, &mono_context);
249                 ips [0] = (guchar *)MONO_CONTEXT_GET_IP (&mono_context);
250                 
251                 if (jit_tls != NULL) {
252                         if (call_chain_strategy == MONO_PROFILER_CALL_CHAIN_NATIVE) {
253 #if FULL_STAT_PROFILER_BACKTRACE
254                         guchar *current_frame;
255                         guchar *stack_bottom;
256                         guchar *stack_top;
257                         
258                         stack_bottom = (guchar *)jit_tls->end_of_stack;
259                         stack_top = (guchar *)MONO_CONTEXT_GET_SP (&mono_context);
260                         current_frame = (guchar *)MONO_CONTEXT_GET_BP (&mono_context);
261                         
262                         while ((current_frame_index <= call_chain_depth) &&
263                                         (stack_bottom IS_BEFORE_ON_STACK (guchar*) current_frame) &&
264                                         ((guchar*) current_frame IS_BEFORE_ON_STACK stack_top)) {
265                                 ips [current_frame_index] = (guchar *)CURRENT_FRAME_GET_RETURN_ADDRESS (current_frame);
266                                 current_frame_index ++;
267                                 stack_top = current_frame;
268                                 current_frame = (guchar *)CURRENT_FRAME_GET_BASE_POINTER (current_frame);
269                         }
270 #else
271                                 call_chain_strategy = MONO_PROFILER_CALL_CHAIN_GLIBC;
272 #endif
273                         }
274                         
275                         if (call_chain_strategy == MONO_PROFILER_CALL_CHAIN_GLIBC) {
276 #if GLIBC_PROFILER_BACKTRACE
277                                 current_frame_index = backtrace ((void**) & ips [1], call_chain_depth);
278 #else
279                                 call_chain_strategy = MONO_PROFILER_CALL_CHAIN_MANAGED;
280 #endif
281                         }
282
283                         if (call_chain_strategy == MONO_PROFILER_CALL_CHAIN_MANAGED) {
284                                 MonoDomain *domain = mono_domain_get ();
285                                 if (domain != NULL) {
286                                         MonoLMF *lmf = NULL;
287                                         MonoJitInfo *ji;
288                                         MonoJitInfo res;
289                                         MonoContext new_mono_context;
290                                         int native_offset;
291                                         ji = mono_find_jit_info (domain, jit_tls, &res, NULL, &mono_context,
292                                                         &new_mono_context, NULL, &lmf, &native_offset, NULL);
293                                         while ((ji != NULL) && (current_frame_index <= call_chain_depth)) {
294                                                 ips [current_frame_index] = (guchar *)MONO_CONTEXT_GET_IP (&new_mono_context);
295                                                 current_frame_index ++;
296                                                 mono_context = new_mono_context;
297                                                 ji = mono_find_jit_info (domain, jit_tls, &res, NULL, &mono_context,
298                                                                 &new_mono_context, NULL, &lmf, &native_offset, NULL);
299                                         }
300                                 }
301                         }
302                 }
303                 
304                 mono_profiler_stat_call_chain (current_frame_index, & ips [0], ctx);
305         }
306 }
307
308 static MonoNativeThreadId sampling_thread;
309
310 static gint32 profiler_signals_sent;
311 static gint32 profiler_signals_received;
312 static gint32 profiler_signals_accepted;
313 static gint32 profiler_interrupt_signals_received;
314
315 MONO_SIG_HANDLER_FUNC (static, profiler_signal_handler)
316 {
317         int old_errno = errno;
318         int hp_save_index;
319         MONO_SIG_HANDLER_GET_CONTEXT;
320
321         /* See the comment in mono_runtime_shutdown_stat_profiler (). */
322         if (mono_native_thread_id_get () == sampling_thread) {
323                 InterlockedIncrement (&profiler_interrupt_signals_received);
324                 return;
325         }
326
327         InterlockedIncrement (&profiler_signals_received);
328
329         if (mono_thread_info_get_small_id () == -1)
330                 return; //an non-attached thread got the signal
331
332         if (!mono_domain_get () || !mono_tls_get_jit_tls ())
333                 return; //thread in the process of dettaching
334
335         InterlockedIncrement (&profiler_signals_accepted);
336
337         hp_save_index = mono_hazard_pointer_save_for_signal_handler ();
338
339         mono_thread_info_set_is_async_context (TRUE);
340         per_thread_profiler_hit (ctx);
341         mono_thread_info_set_is_async_context (FALSE);
342
343         mono_hazard_pointer_restore_for_signal_handler (hp_save_index);
344         errno = old_errno;
345
346         mono_chain_signal (MONO_SIG_HANDLER_PARAMS);
347 }
348
349 #endif
350
351 MONO_SIG_HANDLER_FUNC (static, sigquit_signal_handler)
352 {
353         gboolean res;
354
355         /* We use this signal to start the attach agent too */
356         res = mono_attach_start ();
357         if (res)
358                 return;
359
360         mono_threads_request_thread_dump ();
361
362         mono_chain_signal (MONO_SIG_HANDLER_PARAMS);
363 }
364
365 MONO_SIG_HANDLER_FUNC (static, sigusr2_signal_handler)
366 {
367         gboolean enabled = mono_trace_is_enabled ();
368
369         mono_trace_enable (!enabled);
370
371         mono_chain_signal (MONO_SIG_HANDLER_PARAMS);
372 }
373
374 static void
375 add_signal_handler (int signo, gpointer handler, int flags)
376 {
377         struct sigaction sa;
378         struct sigaction previous_sa;
379
380 #ifdef MONO_ARCH_USE_SIGACTION
381         sa.sa_sigaction = (void (*)(int, siginfo_t *, void *))handler;
382         sigemptyset (&sa.sa_mask);
383         sa.sa_flags = SA_SIGINFO | flags;
384 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
385
386 /*Apple likes to deliver SIGBUS for *0 */
387 #ifdef PLATFORM_MACOSX
388         if (signo == SIGSEGV || signo == SIGBUS) {
389 #else
390         if (signo == SIGSEGV) {
391 #endif
392                 sa.sa_flags |= SA_ONSTACK;
393
394                 /* 
395                  * libgc will crash when trying to do stack marking for threads which are on
396                  * an altstack, so delay the suspend signal after the signal handler has
397                  * executed.
398                  */
399                 if (mono_gc_get_suspend_signal () != -1)
400                         sigaddset (&sa.sa_mask, mono_gc_get_suspend_signal ());
401         }
402 #endif
403         if (signo == SIGSEGV) {
404                 /* 
405                  * Delay abort signals while handling SIGSEGVs since they could go unnoticed.
406                  */
407                 sigset_t block_mask;
408      
409                 sigemptyset (&block_mask);
410         }
411 #else
412         sa.sa_handler = handler;
413         sigemptyset (&sa.sa_mask);
414         sa.sa_flags = flags;
415 #endif
416         g_assert (sigaction (signo, &sa, &previous_sa) != -1);
417
418         /* if there was already a handler in place for this signal, store it */
419         if (! (previous_sa.sa_flags & SA_SIGINFO) &&
420                         (SIG_DFL == previous_sa.sa_handler)) { 
421                 /* it there is no sa_sigaction function and the sa_handler is default, we can safely ignore this */
422         } else {
423                 if (mono_do_signal_chaining)
424                         save_old_signal_handler (signo, &previous_sa);
425         }
426 }
427
428 static void
429 remove_signal_handler (int signo)
430 {
431         struct sigaction sa;
432         struct sigaction *saved_action = get_saved_signal_handler (signo, TRUE);
433
434         if (!saved_action) {
435                 sa.sa_handler = SIG_DFL;
436                 sigemptyset (&sa.sa_mask);
437                 sa.sa_flags = 0;
438
439                 sigaction (signo, &sa, NULL);
440         } else {
441                 g_assert (sigaction (signo, saved_action, NULL) != -1);
442         }
443 }
444
445 void
446 mono_runtime_posix_install_handlers (void)
447 {
448
449         sigset_t signal_set;
450
451         if (mini_get_debug_options ()->handle_sigint)
452                 add_signal_handler (SIGINT, mono_sigint_signal_handler, SA_RESTART);
453
454         add_signal_handler (SIGFPE, mono_sigfpe_signal_handler, 0);
455         add_signal_handler (SIGQUIT, sigquit_signal_handler, SA_RESTART);
456         add_signal_handler (SIGILL, mono_sigill_signal_handler, 0);
457         add_signal_handler (SIGBUS, mono_sigsegv_signal_handler, 0);
458         if (mono_jit_trace_calls != NULL)
459                 add_signal_handler (SIGUSR2, sigusr2_signal_handler, SA_RESTART);
460
461         /* it seems to have become a common bug for some programs that run as parents
462          * of many processes to block signal delivery for real time signals.
463          * We try to detect and work around their breakage here.
464          */
465         sigemptyset (&signal_set);
466         if (mono_gc_get_suspend_signal () != -1)
467                 sigaddset (&signal_set, mono_gc_get_suspend_signal ());
468         if (mono_gc_get_restart_signal () != -1)
469                 sigaddset (&signal_set, mono_gc_get_restart_signal ());
470         sigaddset (&signal_set, SIGCHLD);
471         sigprocmask (SIG_UNBLOCK, &signal_set, NULL);
472
473         signal (SIGPIPE, SIG_IGN);
474
475         add_signal_handler (SIGABRT, sigabrt_signal_handler, 0);
476
477         /* catch SIGSEGV */
478         add_signal_handler (SIGSEGV, mono_sigsegv_signal_handler, 0);
479 }
480
481 #ifndef PLATFORM_MACOSX
482 void
483 mono_runtime_install_handlers (void)
484 {
485         mono_runtime_posix_install_handlers ();
486 }
487 #endif
488
489 void
490 mono_runtime_cleanup_handlers (void)
491 {
492         if (mini_get_debug_options ()->handle_sigint)
493                 remove_signal_handler (SIGINT);
494
495         remove_signal_handler (SIGFPE);
496         remove_signal_handler (SIGQUIT);
497         remove_signal_handler (SIGILL);
498         remove_signal_handler (SIGBUS);
499         if (mono_jit_trace_calls != NULL)
500                 remove_signal_handler (SIGUSR2);
501
502         remove_signal_handler (SIGABRT);
503
504         remove_signal_handler (SIGSEGV);
505
506         free_saved_signal_handlers ();
507 }
508
509 #ifdef HAVE_PROFILER_SIGNAL
510
511 static volatile gint32 sampling_thread_running;
512
513 #ifdef PLATFORM_MACOSX
514
515 static clock_serv_t sampling_clock_service;
516
517 static void
518 clock_init (void)
519 {
520         kern_return_t ret;
521
522         do {
523                 ret = host_get_clock_service (mach_host_self (), SYSTEM_CLOCK, &sampling_clock_service);
524         } while (ret == KERN_ABORTED);
525
526         if (ret != KERN_SUCCESS)
527                 g_error ("%s: host_get_clock_service () returned %d", __func__, ret);
528 }
529
530 static void
531 clock_cleanup (void)
532 {
533         kern_return_t ret;
534
535         do {
536                 ret = mach_port_deallocate (mach_task_self (), sampling_clock_service);
537         } while (ret == KERN_ABORTED);
538
539         if (ret != KERN_SUCCESS)
540                 g_error ("%s: mach_port_deallocate () returned %d", __func__, ret);
541 }
542
543 static guint64
544 clock_get_time_ns (void)
545 {
546         kern_return_t ret;
547         mach_timespec_t mach_ts;
548
549         do {
550                 ret = clock_get_time (sampling_clock_service, &mach_ts);
551         } while (ret == KERN_ABORTED);
552
553         if (ret != KERN_SUCCESS)
554                 g_error ("%s: clock_get_time () returned %d", __func__, ret);
555
556         return ((guint64) mach_ts.tv_sec * 1000000000) + (guint64) mach_ts.tv_nsec;
557 }
558
559 static void
560 clock_sleep_ns_abs (guint64 ns_abs)
561 {
562         kern_return_t ret;
563         mach_timespec_t then, remain_unused;
564
565         then.tv_sec = ns_abs / 1000000000;
566         then.tv_nsec = ns_abs % 1000000000;
567
568         do {
569                 ret = clock_sleep (sampling_clock_service, TIME_ABSOLUTE, then, &remain_unused);
570
571                 if (ret != KERN_SUCCESS && ret != KERN_ABORTED)
572                         g_error ("%s: clock_sleep () returned %d", __func__, ret);
573         } while (ret == KERN_ABORTED && InterlockedRead (&sampling_thread_running));
574 }
575
576 #else
577
578 clockid_t sampling_posix_clock;
579
580 static void
581 clock_init (void)
582 {
583         switch (mono_profiler_get_sampling_mode ()) {
584         case MONO_PROFILER_STAT_MODE_PROCESS: {
585         /*
586          * If we don't have clock_nanosleep (), measuring the process time
587          * makes very little sense as we can only use nanosleep () to sleep on
588          * real time.
589          */
590 #ifdef HAVE_CLOCK_NANOSLEEP
591                 struct timespec ts = { 0 };
592
593                 /*
594                  * Some systems (e.g. Windows Subsystem for Linux) declare the
595                  * CLOCK_PROCESS_CPUTIME_ID clock but don't actually support it. For
596                  * those systems, we fall back to CLOCK_MONOTONIC if we get EINVAL.
597                  */
598                 if (clock_nanosleep (CLOCK_PROCESS_CPUTIME_ID, TIMER_ABSTIME, &ts, NULL) != EINVAL) {
599                         sampling_posix_clock = CLOCK_PROCESS_CPUTIME_ID;
600                         break;
601                 }
602 #endif
603
604                 // fallthrough
605         }
606         case MONO_PROFILER_STAT_MODE_REAL: sampling_posix_clock = CLOCK_MONOTONIC; break;
607         default: g_assert_not_reached (); break;
608         }
609 }
610
611 static void
612 clock_cleanup (void)
613 {
614 }
615
616 static guint64
617 clock_get_time_ns (void)
618 {
619         struct timespec ts;
620
621         if (clock_gettime (sampling_posix_clock, &ts) == -1)
622                 g_error ("%s: clock_gettime () returned -1, errno = %d", __func__, errno);
623
624         return ((guint64) ts.tv_sec * 1000000000) + (guint64) ts.tv_nsec;
625 }
626
627 static void
628 clock_sleep_ns_abs (guint64 ns_abs)
629 {
630 #ifdef HAVE_CLOCK_NANOSLEEP
631         int ret;
632         struct timespec then;
633
634         then.tv_sec = ns_abs / 1000000000;
635         then.tv_nsec = ns_abs % 1000000000;
636
637         do {
638                 ret = clock_nanosleep (sampling_posix_clock, TIMER_ABSTIME, &then, NULL);
639
640                 if (ret != 0 && ret != EINTR)
641                         g_error ("%s: clock_nanosleep () returned %d", __func__, ret);
642         } while (ret == EINTR && InterlockedRead (&sampling_thread_running));
643 #else
644         int ret;
645         gint64 diff;
646         struct timespec req;
647
648         /*
649          * What follows is a crude attempt at emulating clock_nanosleep () on OSs
650          * which don't provide it (e.g. FreeBSD).
651          *
652          * The problem with nanosleep () is that if it is interrupted by a signal,
653          * time will drift as a result of having to restart the call after the
654          * signal handler has finished. For this reason, we avoid using the rem
655          * argument of nanosleep (). Instead, before every nanosleep () call, we
656          * check if enough time has passed to satisfy the sleep request. If yes, we
657          * simply return. If not, we calculate the difference and do another sleep.
658          *
659          * This should reduce the amount of drift that happens because we account
660          * for the time spent executing the signal handler, which nanosleep () is
661          * not guaranteed to do for the rem argument.
662          *
663          * The downside to this approach is that it is slightly expensive: We have
664          * to make an extra system call to retrieve the current time whenever we're
665          * going to restart a nanosleep () call. This is unlikely to be a problem
666          * in practice since the sampling thread won't be receiving many signals in
667          * the first place (it's a tools thread, so no STW), and because typical
668          * sleep periods for the thread are many orders of magnitude bigger than
669          * the time it takes to actually perform that system call (just a few
670          * nanoseconds).
671          */
672         do {
673                 diff = (gint64) ns_abs - (gint64) clock_get_time_ns ();
674
675                 if (diff <= 0)
676                         break;
677
678                 req.tv_sec = diff / 1000000000;
679                 req.tv_nsec = diff % 1000000000;
680
681                 if ((ret = nanosleep (&req, NULL)) == -1 && errno != EINTR)
682                         g_error ("%s: nanosleep () returned -1, errno = %d", __func__, errno);
683         } while (ret == -1 && InterlockedRead (&sampling_thread_running));
684 #endif
685 }
686
687 #endif
688
689 static int profiler_signal;
690 static volatile gint32 sampling_thread_exiting;
691
692 static mono_native_thread_return_t
693 sampling_thread_func (void *data)
694 {
695         mono_threads_attach_tools_thread ();
696         mono_native_thread_set_name (mono_native_thread_id_get (), "Profiler sampler");
697
698         gint64 rate = 1000000000 / mono_profiler_get_sampling_rate ();
699
700         int old_policy;
701         struct sched_param old_sched;
702         pthread_getschedparam (pthread_self (), &old_policy, &old_sched);
703
704         /*
705          * Attempt to switch the thread to real time scheduling. This will not
706          * necessarily work on all OSs; for example, most Linux systems will give
707          * us EPERM here unless configured to allow this.
708          *
709          * TODO: This does not work on Mac (and maybe some other OSs). On Mac, we
710          * have to use the Mach thread policy routines to switch to real-time
711          * scheduling. This is quite tricky as we need to specify how often we'll
712          * be doing work (easy), the normal processing time needed (also easy),
713          * and the maximum amount of processing time needed (hard). This is
714          * further complicated by the fact that if we misbehave and take too long
715          * to do our work, the kernel may knock us back down to the normal thread
716          * scheduling policy without telling us.
717          */
718         struct sched_param sched = { .sched_priority = sched_get_priority_max (SCHED_FIFO) };
719         pthread_setschedparam (pthread_self (), SCHED_FIFO, &sched);
720
721         clock_init ();
722
723         guint64 sleep = clock_get_time_ns ();
724
725         while (InterlockedRead (&sampling_thread_running)) {
726                 sleep += rate;
727
728                 FOREACH_THREAD_SAFE (info) {
729                         /* info should never be this thread as we're a tools thread. */
730                         g_assert (mono_thread_info_get_tid (info) != mono_native_thread_id_get ());
731
732                         mono_threads_pthread_kill (info, profiler_signal);
733                         InterlockedIncrement (&profiler_signals_sent);
734                 } FOREACH_THREAD_SAFE_END
735
736                 clock_sleep_ns_abs (sleep);
737         }
738
739         InterlockedWrite (&sampling_thread_exiting, 1);
740
741         clock_cleanup ();
742
743         pthread_setschedparam (pthread_self (), old_policy, &old_sched);
744
745         mono_thread_info_detach ();
746
747         return NULL;
748 }
749
750 void
751 mono_runtime_shutdown_stat_profiler (void)
752 {
753         InterlockedWrite (&sampling_thread_running, 0);
754
755 #ifndef PLATFORM_MACOSX
756         /*
757          * There is a slight problem when we're using CLOCK_PROCESS_CPUTIME_ID: If
758          * we're shutting down and there's largely no activity in the process other
759          * than waiting for the sampler thread to shut down, it can take upwards of
760          * 20 seconds (depending on a lot of factors) for us to shut down because
761          * the sleep progresses very slowly as a result of the low CPU activity.
762          *
763          * We fix this by repeatedly sending the profiler signal to the sampler
764          * thread in order to interrupt the sleep. clock_sleep_ns_abs () will check
765          * sampling_thread_running upon an interrupt and return immediately if it's
766          * zero. profiler_signal_handler () has a special case to ignore the signal
767          * for the sampler thread.
768          */
769         MonoThreadInfo *info;
770
771         // Did it shut down already?
772         if ((info = mono_thread_info_lookup (sampling_thread))) {
773                 while (!InterlockedRead (&sampling_thread_exiting)) {
774                         mono_threads_pthread_kill (info, profiler_signal);
775                         mono_thread_info_usleep (10 * 1000 /* 10ms */);
776                 }
777
778                 // Make sure info can be freed.
779                 mono_hazard_pointer_clear (mono_hazard_pointer_get (), 1);
780         }
781 #endif
782
783         mono_native_thread_join (sampling_thread);
784
785         /*
786          * We can't safely remove the signal handler because we have no guarantee
787          * that all pending signals have been delivered at this point. This should
788          * not really be a problem anyway.
789          */
790         //remove_signal_handler (profiler_signal);
791 }
792
793 void
794 mono_runtime_setup_stat_profiler (void)
795 {
796         /*
797          * Use a real-time signal when possible. This gives us roughly a 99% signal
798          * delivery rate in all cases. On the other hand, using a regular signal
799          * tends to result in awful delivery rates when the application is heavily
800          * loaded.
801          *
802          * We avoid real-time signals on Android as they're super broken in certain
803          * API levels (too small sigset_t, nonsensical SIGRTMIN/SIGRTMAX values,
804          * etc).
805          *
806          * TODO: On Mac, we should explore using the Mach thread suspend/resume
807          * functions and doing the stack walk from the sampling thread. This would
808          * get us a 100% sampling rate. However, this may interfere with the GC's
809          * STW logic. Could perhaps be solved by taking the suspend lock.
810          */
811 #if defined (USE_POSIX_BACKEND) && defined (SIGRTMIN) && !defined (PLATFORM_ANDROID)
812         /* Just take the first real-time signal we can get. */
813         profiler_signal = mono_threads_suspend_search_alternative_signal ();
814 #else
815         profiler_signal = SIGPROF;
816 #endif
817
818         add_signal_handler (profiler_signal, profiler_signal_handler, SA_RESTART);
819
820         mono_counters_register ("Sampling signals sent", MONO_COUNTER_UINT | MONO_COUNTER_PROFILER | MONO_COUNTER_MONOTONIC, &profiler_signals_sent);
821         mono_counters_register ("Sampling signals received", MONO_COUNTER_UINT | MONO_COUNTER_PROFILER | MONO_COUNTER_MONOTONIC, &profiler_signals_received);
822         mono_counters_register ("Sampling signals accepted", MONO_COUNTER_UINT | MONO_COUNTER_PROFILER | MONO_COUNTER_MONOTONIC, &profiler_signals_accepted);
823         mono_counters_register ("Shutdown signals received", MONO_COUNTER_UINT | MONO_COUNTER_PROFILER | MONO_COUNTER_MONOTONIC, &profiler_interrupt_signals_received);
824
825         InterlockedWrite (&sampling_thread_running, 1);
826         mono_native_thread_create (&sampling_thread, sampling_thread_func, NULL);
827 }
828
829 #else
830
831 void
832 mono_runtime_shutdown_stat_profiler (void)
833 {
834 }
835
836 void
837 mono_runtime_setup_stat_profiler (void)
838 {
839 }
840
841 #endif
842
843 #endif /* defined(__native_client__) || defined(HOST_WATCHOS) */
844
845 #if defined(__native_client__)
846
847 void
848 mono_gdb_render_native_backtraces (pid_t crashed_pid)
849 {
850 }
851
852 #else
853
854 static gboolean
855 native_stack_with_gdb (pid_t crashed_pid, const char **argv, FILE *commands, char* commands_filename)
856 {
857         gchar *gdb;
858
859         gdb = g_find_program_in_path ("gdb");
860         if (!gdb)
861                 return FALSE;
862
863         argv [0] = gdb;
864         argv [1] = "-batch";
865         argv [2] = "-x";
866         argv [3] = commands_filename;
867         argv [4] = "-nx";
868
869         fprintf (commands, "attach %ld\n", (long) crashed_pid);
870         fprintf (commands, "info threads\n");
871         fprintf (commands, "thread apply all bt\n");
872
873         return TRUE;
874 }
875
876
877 static gboolean
878 native_stack_with_lldb (pid_t crashed_pid, const char **argv, FILE *commands, char* commands_filename)
879 {
880         gchar *lldb;
881
882         lldb = g_find_program_in_path ("lldb");
883         if (!lldb)
884                 return FALSE;
885
886         argv [0] = lldb;
887         argv [1] = "--batch";
888         argv [2] = "--source";
889         argv [3] = commands_filename;
890         argv [4] = "--no-lldbinit";
891
892         fprintf (commands, "process attach --pid %ld\n", (long) crashed_pid);
893         fprintf (commands, "thread list\n");
894         fprintf (commands, "thread backtrace all\n");
895         fprintf (commands, "detach\n");
896         fprintf (commands, "quit\n");
897
898         return TRUE;
899 }
900
901 void
902 mono_gdb_render_native_backtraces (pid_t crashed_pid)
903 {
904 #ifdef HAVE_EXECV
905         const char *argv [10];
906         FILE *commands;
907         char commands_filename [] = "/tmp/mono-gdb-commands.XXXXXX";
908
909         if (mkstemp (commands_filename) == -1)
910                 return;
911
912         commands = fopen (commands_filename, "w");
913         if (!commands) {
914                 unlink (commands_filename);
915                 return;
916         }
917
918         memset (argv, 0, sizeof (char*) * 10);
919
920 #if defined(PLATFORM_MACOSX)
921         if (native_stack_with_lldb (crashed_pid, argv, commands, commands_filename))
922                 goto exec;
923 #endif
924
925         if (native_stack_with_gdb (crashed_pid, argv, commands, commands_filename))
926                 goto exec;
927
928 #if !defined(PLATFORM_MACOSX)
929         if (native_stack_with_lldb (crashed_pid, argv, commands, commands_filename))
930                 goto exec;
931 #endif
932
933         fprintf (stderr, "mono_gdb_render_native_backtraces not supported on this platform, unable to find gdb or lldb\n");
934
935         fclose (commands);
936         unlink (commands_filename);
937         return;
938
939 exec:
940         fclose (commands);
941         execv (argv [0], (char**)argv);
942
943         _exit (-1);
944 #else
945         fprintf (stderr, "mono_gdb_render_native_backtraces not supported on this platform\n");
946 #endif // HAVE_EXECV
947 }
948
949 #endif /* defined(__native_client__) */
950
951 #if !defined (__MACH__)
952
953 gboolean
954 mono_thread_state_init_from_handle (MonoThreadUnwindState *tctx, MonoThreadInfo *info)
955 {
956         g_error ("Posix systems don't support mono_thread_state_init_from_handle");
957         return FALSE;
958 }
959
960 #endif