[reflection] Set pending loader exception in mono_reflection_get_custom_attrs_data
[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-internals.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-internals.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__) || defined(HOST_WATCHOS)
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 #ifndef PLATFORM_MACOSX
93 void
94 mono_runtime_install_handlers (void)
95 {
96 }
97 #endif
98
99 void
100 mono_runtime_posix_install_handlers(void)
101 {
102
103 }
104
105 void
106 mono_runtime_shutdown_handlers (void)
107 {
108 }
109
110 void
111 mono_runtime_cleanup_handlers (void)
112 {
113 }
114
115 #if !defined(PLATFORM_MACOSX)
116 pid_t
117 mono_runtime_syscall_fork (void)
118 {
119         g_assert_not_reached();
120         return 0;
121 }
122
123 void
124 mono_gdb_render_native_backtraces (pid_t crashed_pid)
125 {
126 }
127 #endif
128
129 #else
130
131 static GHashTable *mono_saved_signal_handlers = NULL;
132
133 static struct sigaction *
134 get_saved_signal_handler (int signo)
135 {
136         if (mono_saved_signal_handlers)
137                 /* The hash is only modified during startup, so no need for locking */
138                 return (struct sigaction *)g_hash_table_lookup (mono_saved_signal_handlers, GINT_TO_POINTER (signo));
139         return NULL;
140 }
141
142 static void
143 save_old_signal_handler (int signo, struct sigaction *old_action)
144 {
145         struct sigaction *handler_to_save = (struct sigaction *)g_malloc (sizeof (struct sigaction));
146
147         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_CONFIG,
148                                 "Saving old signal handler for signal %d.", signo);
149
150         if (! (old_action->sa_flags & SA_SIGINFO)) {
151                 handler_to_save->sa_handler = old_action->sa_handler;
152         } else {
153 #ifdef MONO_ARCH_USE_SIGACTION
154                 handler_to_save->sa_sigaction = old_action->sa_sigaction;
155 #endif /* MONO_ARCH_USE_SIGACTION */
156         }
157         handler_to_save->sa_mask = old_action->sa_mask;
158         handler_to_save->sa_flags = old_action->sa_flags;
159         
160         if (!mono_saved_signal_handlers)
161                 mono_saved_signal_handlers = g_hash_table_new (NULL, NULL);
162         g_hash_table_insert (mono_saved_signal_handlers, GINT_TO_POINTER (signo), handler_to_save);
163 }
164
165 static void
166 free_saved_sig_handler_func (gpointer key, gpointer value, gpointer user_data)
167 {
168         g_free (value);
169 }
170
171 static void
172 free_saved_signal_handlers (void)
173 {
174         if (mono_saved_signal_handlers) {
175                 g_hash_table_foreach (mono_saved_signal_handlers, free_saved_sig_handler_func, NULL);
176                 g_hash_table_destroy (mono_saved_signal_handlers);
177                 mono_saved_signal_handlers = NULL;
178         }
179 }
180
181 /*
182  * mono_chain_signal:
183  *
184  *   Call the original signal handler for the signal given by the arguments, which
185  * should be the same as for a signal handler. Returns TRUE if the original handler
186  * was called, false otherwise.
187  */
188 gboolean
189 MONO_SIG_HANDLER_SIGNATURE (mono_chain_signal)
190 {
191         int signal = MONO_SIG_HANDLER_GET_SIGNO ();
192         struct sigaction *saved_handler = (struct sigaction *)get_saved_signal_handler (signal);
193
194         if (saved_handler && saved_handler->sa_handler) {
195                 if (!(saved_handler->sa_flags & SA_SIGINFO)) {
196                         saved_handler->sa_handler (signal);
197                 } else {
198 #ifdef MONO_ARCH_USE_SIGACTION
199                         saved_handler->sa_sigaction (MONO_SIG_HANDLER_PARAMS);
200 #endif /* MONO_ARCH_USE_SIGACTION */
201                 }
202                 return TRUE;
203         }
204         return FALSE;
205 }
206
207 MONO_SIG_HANDLER_FUNC (static, sigabrt_signal_handler)
208 {
209         MonoJitInfo *ji = NULL;
210         MONO_SIG_HANDLER_INFO_TYPE *info = MONO_SIG_HANDLER_GET_INFO ();
211         MONO_SIG_HANDLER_GET_CONTEXT;
212
213         if (mono_thread_internal_current ())
214                 ji = mono_jit_info_table_find_internal (mono_domain_get (), (char *)mono_arch_ip_from_context (ctx), TRUE, TRUE);
215         if (!ji) {
216         if (mono_chain_signal (MONO_SIG_HANDLER_PARAMS))
217                         return;
218                 mono_handle_native_sigsegv (SIGABRT, ctx, info);
219         }
220 }
221
222 #if defined(__i386__) || defined(__x86_64__)
223 #define FULL_STAT_PROFILER_BACKTRACE 1
224 #define CURRENT_FRAME_GET_BASE_POINTER(f) (* (gpointer*)(f))
225 #define CURRENT_FRAME_GET_RETURN_ADDRESS(f) (* (((gpointer*)(f)) + 1))
226 #if MONO_ARCH_STACK_GROWS_UP
227 #define IS_BEFORE_ON_STACK <
228 #define IS_AFTER_ON_STACK >
229 #else
230 #define IS_BEFORE_ON_STACK >
231 #define IS_AFTER_ON_STACK <
232 #endif
233 #else
234 #define FULL_STAT_PROFILER_BACKTRACE 0
235 #endif
236
237 #ifdef SIGPROF
238
239 static int profiling_signal_in_use;
240
241 #if defined(__ia64__) || defined(__sparc__) || defined(sparc)
242
243 MONO_SIG_HANDLER_FUNC (static, sigprof_signal_handler)
244 {
245         if (mono_chain_signal (MONO_SIG_HANDLER_PARAMS))
246                 return;
247
248         NOT_IMPLEMENTED;
249 }
250
251 #else
252
253 static void
254 per_thread_profiler_hit (void *ctx)
255 {
256         int call_chain_depth = mono_profiler_stat_get_call_chain_depth ();
257         MonoProfilerCallChainStrategy call_chain_strategy = mono_profiler_stat_get_call_chain_strategy ();
258
259         if (call_chain_depth == 0) {
260                 mono_profiler_stat_hit ((guchar *)mono_arch_ip_from_context (ctx), ctx);
261         } else {
262                 MonoJitTlsData *jit_tls = (MonoJitTlsData *)mono_native_tls_get_value (mono_jit_tls_id);
263                 int current_frame_index = 1;
264                 MonoContext mono_context;
265                 guchar *ips [call_chain_depth + 1];
266
267                 mono_sigctx_to_monoctx (ctx, &mono_context);
268                 ips [0] = (guchar *)MONO_CONTEXT_GET_IP (&mono_context);
269                 
270                 if (jit_tls != NULL) {
271                         if (call_chain_strategy == MONO_PROFILER_CALL_CHAIN_NATIVE) {
272 #if FULL_STAT_PROFILER_BACKTRACE
273                         guchar *current_frame;
274                         guchar *stack_bottom;
275                         guchar *stack_top;
276                         
277                         stack_bottom = (guchar *)jit_tls->end_of_stack;
278                         stack_top = (guchar *)MONO_CONTEXT_GET_SP (&mono_context);
279                         current_frame = (guchar *)MONO_CONTEXT_GET_BP (&mono_context);
280                         
281                         while ((current_frame_index <= call_chain_depth) &&
282                                         (stack_bottom IS_BEFORE_ON_STACK (guchar*) current_frame) &&
283                                         ((guchar*) current_frame IS_BEFORE_ON_STACK stack_top)) {
284                                 ips [current_frame_index] = (guchar *)CURRENT_FRAME_GET_RETURN_ADDRESS (current_frame);
285                                 current_frame_index ++;
286                                 stack_top = current_frame;
287                                 current_frame = (guchar *)CURRENT_FRAME_GET_BASE_POINTER (current_frame);
288                         }
289 #else
290                                 call_chain_strategy = MONO_PROFILER_CALL_CHAIN_GLIBC;
291 #endif
292                         }
293                         
294                         if (call_chain_strategy == MONO_PROFILER_CALL_CHAIN_GLIBC) {
295 #if GLIBC_PROFILER_BACKTRACE
296                                 current_frame_index = backtrace ((void**) & ips [1], call_chain_depth);
297 #else
298                                 call_chain_strategy = MONO_PROFILER_CALL_CHAIN_MANAGED;
299 #endif
300                         }
301
302                         if (call_chain_strategy == MONO_PROFILER_CALL_CHAIN_MANAGED) {
303                                 MonoDomain *domain = mono_domain_get ();
304                                 if (domain != NULL) {
305                                         MonoLMF *lmf = NULL;
306                                         MonoJitInfo *ji;
307                                         MonoJitInfo res;
308                                         MonoContext new_mono_context;
309                                         int native_offset;
310                                         ji = mono_find_jit_info (domain, jit_tls, &res, NULL, &mono_context,
311                                                         &new_mono_context, NULL, &lmf, &native_offset, NULL);
312                                         while ((ji != NULL) && (current_frame_index <= call_chain_depth)) {
313                                                 ips [current_frame_index] = (guchar *)MONO_CONTEXT_GET_IP (&new_mono_context);
314                                                 current_frame_index ++;
315                                                 mono_context = new_mono_context;
316                                                 ji = mono_find_jit_info (domain, jit_tls, &res, NULL, &mono_context,
317                                                                 &new_mono_context, NULL, &lmf, &native_offset, NULL);
318                                         }
319                                 }
320                         }
321                 }
322                 
323                 mono_profiler_stat_call_chain (current_frame_index, & ips [0], ctx);
324         }
325 }
326
327 MONO_SIG_HANDLER_FUNC (static, sigprof_signal_handler)
328 {
329         MonoThreadInfo *info;
330         int old_errno = errno;
331         int hp_save_index;
332         MONO_SIG_HANDLER_GET_CONTEXT;
333
334         if (mono_thread_info_get_small_id () == -1)
335                 return; //an non-attached thread got the signal
336
337         if (!mono_domain_get () || !mono_native_tls_get_value (mono_jit_tls_id))
338                 return; //thread in the process of dettaching
339
340         hp_save_index = mono_hazard_pointer_save_for_signal_handler ();
341
342         /* If we can't consume a profiling request it means we're the initiator. */
343         if (!(mono_threads_consume_async_jobs () & MONO_SERVICE_REQUEST_SAMPLE)) {
344                 FOREACH_THREAD_SAFE (info) {
345                         if (mono_thread_info_get_tid (info) == mono_native_thread_id_get () ||
346                             !mono_thread_info_is_live (info))
347                                 continue;
348
349                         mono_threads_add_async_job (info, MONO_SERVICE_REQUEST_SAMPLE);
350                         mono_threads_pthread_kill (info, profiling_signal_in_use);
351                 } END_FOREACH_THREAD_SAFE;
352         }
353
354         mono_thread_info_set_is_async_context (TRUE);
355         per_thread_profiler_hit (ctx);
356         mono_thread_info_set_is_async_context (FALSE);
357
358         mono_hazard_pointer_restore_for_signal_handler (hp_save_index);
359         errno = old_errno;
360
361         mono_chain_signal (MONO_SIG_HANDLER_PARAMS);
362 }
363
364 #endif
365 #endif
366
367 MONO_SIG_HANDLER_FUNC (static, sigquit_signal_handler)
368 {
369         gboolean res;
370
371         /* We use this signal to start the attach agent too */
372         res = mono_attach_start ();
373         if (res)
374                 return;
375
376         mono_threads_request_thread_dump ();
377
378         mono_chain_signal (MONO_SIG_HANDLER_PARAMS);
379 }
380
381 MONO_SIG_HANDLER_FUNC (static, sigusr2_signal_handler)
382 {
383         gboolean enabled = mono_trace_is_enabled ();
384
385         mono_trace_enable (!enabled);
386
387         mono_chain_signal (MONO_SIG_HANDLER_PARAMS);
388 }
389
390 static void
391 add_signal_handler (int signo, gpointer handler, int flags)
392 {
393         struct sigaction sa;
394         struct sigaction previous_sa;
395
396 #ifdef MONO_ARCH_USE_SIGACTION
397         sa.sa_sigaction = (void (*)(int, siginfo_t *, void *))handler;
398         sigemptyset (&sa.sa_mask);
399         sa.sa_flags = SA_SIGINFO | flags;
400 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
401
402 /*Apple likes to deliver SIGBUS for *0 */
403 #ifdef PLATFORM_MACOSX
404         if (signo == SIGSEGV || signo == SIGBUS) {
405 #else
406         if (signo == SIGSEGV) {
407 #endif
408                 sa.sa_flags |= SA_ONSTACK;
409
410                 /* 
411                  * libgc will crash when trying to do stack marking for threads which are on
412                  * an altstack, so delay the suspend signal after the signal handler has
413                  * executed.
414                  */
415                 if (mono_gc_get_suspend_signal () != -1)
416                         sigaddset (&sa.sa_mask, mono_gc_get_suspend_signal ());
417         }
418 #endif
419         if (signo == SIGSEGV) {
420                 /* 
421                  * Delay abort signals while handling SIGSEGVs since they could go unnoticed.
422                  */
423                 sigset_t block_mask;
424      
425                 sigemptyset (&block_mask);
426         }
427 #else
428         sa.sa_handler = handler;
429         sigemptyset (&sa.sa_mask);
430         sa.sa_flags = flags;
431 #endif
432         g_assert (sigaction (signo, &sa, &previous_sa) != -1);
433
434         /* if there was already a handler in place for this signal, store it */
435         if (! (previous_sa.sa_flags & SA_SIGINFO) &&
436                         (SIG_DFL == previous_sa.sa_handler)) { 
437                 /* it there is no sa_sigaction function and the sa_handler is default, we can safely ignore this */
438         } else {
439                 if (mono_do_signal_chaining)
440                         save_old_signal_handler (signo, &previous_sa);
441         }
442 }
443
444 static void
445 remove_signal_handler (int signo)
446 {
447         struct sigaction sa;
448         struct sigaction *saved_action = get_saved_signal_handler (signo);
449
450         if (!saved_action) {
451                 sa.sa_handler = SIG_DFL;
452                 sigemptyset (&sa.sa_mask);
453                 sa.sa_flags = 0;
454
455                 sigaction (signo, &sa, NULL);
456         } else {
457                 g_assert (sigaction (signo, saved_action, NULL) != -1);
458         }
459 }
460
461 void
462 mono_runtime_posix_install_handlers (void)
463 {
464
465         sigset_t signal_set;
466
467         if (mini_get_debug_options ()->handle_sigint)
468                 add_signal_handler (SIGINT, mono_sigint_signal_handler, SA_RESTART);
469
470         add_signal_handler (SIGFPE, mono_sigfpe_signal_handler, 0);
471         add_signal_handler (SIGQUIT, sigquit_signal_handler, SA_RESTART);
472         add_signal_handler (SIGILL, mono_sigill_signal_handler, 0);
473         add_signal_handler (SIGBUS, mono_sigsegv_signal_handler, 0);
474         if (mono_jit_trace_calls != NULL)
475                 add_signal_handler (SIGUSR2, sigusr2_signal_handler, SA_RESTART);
476
477         /* it seems to have become a common bug for some programs that run as parents
478          * of many processes to block signal delivery for real time signals.
479          * We try to detect and work around their breakage here.
480          */
481         sigemptyset (&signal_set);
482         if (mono_gc_get_suspend_signal () != -1)
483                 sigaddset (&signal_set, mono_gc_get_suspend_signal ());
484         if (mono_gc_get_restart_signal () != -1)
485                 sigaddset (&signal_set, mono_gc_get_restart_signal ());
486         sigaddset (&signal_set, SIGCHLD);
487         sigprocmask (SIG_UNBLOCK, &signal_set, NULL);
488
489         signal (SIGPIPE, SIG_IGN);
490
491         add_signal_handler (SIGABRT, sigabrt_signal_handler, 0);
492
493         /* catch SIGSEGV */
494         add_signal_handler (SIGSEGV, mono_sigsegv_signal_handler, 0);
495 }
496
497 #ifndef PLATFORM_MACOSX
498 void
499 mono_runtime_install_handlers (void)
500 {
501         mono_runtime_posix_install_handlers ();
502 }
503 #endif
504
505 void
506 mono_runtime_cleanup_handlers (void)
507 {
508         if (mini_get_debug_options ()->handle_sigint)
509                 remove_signal_handler (SIGINT);
510
511         remove_signal_handler (SIGFPE);
512         remove_signal_handler (SIGQUIT);
513         remove_signal_handler (SIGILL);
514         remove_signal_handler (SIGBUS);
515         if (mono_jit_trace_calls != NULL)
516                 remove_signal_handler (SIGUSR2);
517
518         remove_signal_handler (SIGABRT);
519
520         remove_signal_handler (SIGSEGV);
521
522         free_saved_signal_handlers ();
523 }
524
525 #ifdef HAVE_LINUX_RTC_H
526 #include <linux/rtc.h>
527 #include <sys/ioctl.h>
528 #include <fcntl.h>
529 static int rtc_fd = -1;
530
531 static int
532 enable_rtc_timer (gboolean enable)
533 {
534         int flags;
535         flags = fcntl (rtc_fd, F_GETFL);
536         if (flags < 0) {
537                 perror ("getflags");
538                 return 0;
539         }
540         if (enable)
541                 flags |= FASYNC;
542         else
543                 flags &= ~FASYNC;
544         if (fcntl (rtc_fd, F_SETFL, flags) == -1) {
545                 perror ("setflags");
546                 return 0;
547         }
548         return 1;
549 }
550 #endif
551
552 void
553 mono_runtime_shutdown_stat_profiler (void)
554 {
555 #ifdef HAVE_LINUX_RTC_H
556         if (rtc_fd >= 0)
557                 enable_rtc_timer (FALSE);
558 #endif
559 }
560
561 #ifdef ITIMER_PROF
562 static int
563 get_itimer_mode (void)
564 {
565         switch (mono_profiler_get_sampling_mode ()) {
566         case MONO_PROFILER_STAT_MODE_PROCESS: return ITIMER_PROF;
567         case MONO_PROFILER_STAT_MODE_REAL: return ITIMER_REAL;
568         }
569         g_assert_not_reached ();
570         return 0;
571 }
572
573 static int
574 get_itimer_signal (void)
575 {
576         switch (mono_profiler_get_sampling_mode ()) {
577         case MONO_PROFILER_STAT_MODE_PROCESS: return SIGPROF;
578         case MONO_PROFILER_STAT_MODE_REAL: return SIGALRM;
579         }
580         g_assert_not_reached ();
581         return 0;
582 }
583 #endif
584
585 void
586 mono_runtime_setup_stat_profiler (void)
587 {
588 #ifdef ITIMER_PROF
589         struct itimerval itval;
590         static int inited = 0;
591 #ifdef HAVE_LINUX_RTC_H
592         const char *rtc_freq;
593         if (!inited && (rtc_freq = g_getenv ("MONO_RTC"))) {
594                 int freq = 0;
595                 inited = 1;
596                 if (*rtc_freq)
597                         freq = atoi (rtc_freq);
598                 if (!freq)
599                         freq = 1024;
600                 rtc_fd = open ("/dev/rtc", O_RDONLY);
601                 if (rtc_fd == -1) {
602                         perror ("open /dev/rtc");
603                         return;
604                 }
605                 profiling_signal_in_use = SIGPROF;
606                 add_signal_handler (profiling_signal_in_use, sigprof_signal_handler, SA_RESTART);
607                 if (ioctl (rtc_fd, RTC_IRQP_SET, freq) == -1) {
608                         perror ("set rtc freq");
609                         return;
610                 }
611                 if (ioctl (rtc_fd, RTC_PIE_ON, 0) == -1) {
612                         perror ("start rtc");
613                         return;
614                 }
615                 if (fcntl (rtc_fd, F_SETSIG, SIGPROF) == -1) {
616                         perror ("setsig");
617                         return;
618                 }
619                 if (fcntl (rtc_fd, F_SETOWN, getpid ()) == -1) {
620                         perror ("setown");
621                         return;
622                 }
623                 enable_rtc_timer (TRUE);
624                 return;
625         }
626         if (rtc_fd >= 0)
627                 return;
628 #endif
629
630         itval.it_interval.tv_usec = (1000000 / mono_profiler_get_sampling_rate ()) - 1;
631         itval.it_interval.tv_sec = 0;
632         itval.it_value = itval.it_interval;
633         if (inited)
634                 return;
635         inited = 1;
636         profiling_signal_in_use = get_itimer_signal ();
637         add_signal_handler (profiling_signal_in_use, sigprof_signal_handler, SA_RESTART);
638         setitimer (get_itimer_mode (), &itval, NULL);
639 #endif
640 }
641
642 #if !defined(PLATFORM_MACOSX)
643 pid_t
644 mono_runtime_syscall_fork ()
645 {
646 #if defined(PLATFORM_ANDROID)
647         /* SYS_fork is defined to be __NR_fork which is not defined in some ndk versions */
648         g_assert_not_reached ();
649         return 0;
650 #elif defined(SYS_fork)
651         return (pid_t) syscall (SYS_fork);
652 #else
653         g_assert_not_reached ();
654         return 0;
655 #endif
656 }
657
658 void
659 mono_gdb_render_native_backtraces (pid_t crashed_pid)
660 {
661         const char *argv [9];
662         char template_ [] = "/tmp/mono-lldb-commands.XXXXXX";
663         char buf1 [128];
664         FILE *commands;
665         gboolean using_lldb = FALSE;
666
667         argv [0] = g_find_program_in_path ("gdb");
668         if (argv [0] == NULL) {
669                 argv [0] = g_find_program_in_path ("lldb");
670                 using_lldb = TRUE;
671         }
672
673         if (argv [0] == NULL)
674                 return;
675
676         if (using_lldb) {
677                 if (mkstemp (template_) == -1)
678                         return;
679
680                 commands = fopen (template_, "w");
681
682                 fprintf (commands, "process attach --pid %ld\n", (long) crashed_pid);
683                 fprintf (commands, "thread list\n");
684                 fprintf (commands, "thread backtrace all\n");
685                 fprintf (commands, "detach\n");
686                 fprintf (commands, "quit\n");
687
688                 fflush (commands);
689                 fclose (commands);
690
691                 argv [1] = "--source";
692                 argv [2] = template_;
693                 argv [3] = 0;
694         } else {
695                 argv [1] = "-ex";
696                 sprintf (buf1, "attach %ld", (long) crashed_pid);
697                 argv [2] = buf1;
698                 argv [3] = "--ex";
699                 argv [4] = "info threads";
700                 argv [5] = "--ex";
701                 argv [6] = "thread apply all bt";
702                 argv [7] = "--batch";
703                 argv [8] = 0;
704         }
705
706         execv (argv [0], (char**)argv);
707
708         if (using_lldb)
709                 unlink (template_);
710 }
711 #endif
712 #endif /* __native_client__ */
713
714 #if !defined (__MACH__)
715
716 gboolean
717 mono_thread_state_init_from_handle (MonoThreadUnwindState *tctx, MonoThreadInfo *info)
718 {
719         g_error ("Posix systems don't support mono_thread_state_init_from_handle");
720         return FALSE;
721 }
722
723 #endif