[mini] Factor duplicates mono_gdb_render_native_backtraces
[mono.git] / mono / mini / mini-darwin.c
1 /*
2  * mini-darwin.c: Darwin/MacOS support for Mono.
3  *
4  * Authors:
5  *   Mono Team (mono-list@lists.ximian.com)
6  *
7  * Copyright 2001-2003 Ximian, Inc.
8  * Copyright 2003-2011 Novell, Inc (http://www.novell.com)
9  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
10  *
11  * Licensed under the MIT license. See LICENSE file in the project root for full license 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
26 #include <mono/metadata/assembly.h>
27 #include <mono/metadata/loader.h>
28 #include <mono/metadata/tabledefs.h>
29 #include <mono/metadata/class.h>
30 #include <mono/metadata/object.h>
31 #include <mono/metadata/tokentype.h>
32 #include <mono/metadata/tabledefs.h>
33 #include <mono/metadata/threads.h>
34 #include <mono/metadata/appdomain.h>
35 #include <mono/metadata/debug-helpers.h>
36 #include <mono/io-layer/io-layer.h>
37 #include "mono/metadata/profiler.h"
38 #include <mono/metadata/profiler-private.h>
39 #include <mono/metadata/mono-config.h>
40 #include <mono/metadata/environment.h>
41 #include <mono/metadata/mono-debug.h>
42 #include <mono/metadata/threads-types.h>
43 #include <mono/metadata/verify.h>
44 #include <mono/metadata/verify-internals.h>
45 #include <mono/metadata/mempool-internals.h>
46 #include <mono/metadata/attach.h>
47 #include <mono/metadata/gc-internals.h>
48 #include <mono/utils/mono-math.h>
49 #include <mono/utils/mono-compiler.h>
50 #include <mono/utils/mono-counters.h>
51 #include <mono/utils/mono-logger-internals.h>
52 #include <mono/utils/mono-mmap.h>
53 #include <mono/utils/dtrace.h>
54
55 #include "mini.h"
56 #include <string.h>
57 #include <ctype.h>
58 #include "trace.h"
59 #include "version.h"
60
61 #include "jit-icalls.h"
62
63 /* MacOS includes */
64 #include <mach/mach.h>
65 #include <mach/mach_error.h>
66 #include <mach/exception.h>
67 #include <mach/task.h>
68 #include <pthread.h>
69 #include <dlfcn.h>
70 #include <AvailabilityMacros.h>
71
72 /* This is #define'd by Boehm GC to _GC_dlopen. */
73 #undef dlopen
74
75 void* dlopen(const char* path, int mode);
76
77 void
78 mono_runtime_install_handlers (void)
79 {
80         mono_runtime_posix_install_handlers ();
81
82         /* Snow Leopard has a horrible bug: http://openradar.appspot.com/7209349
83          * This causes obscure SIGTRAP's for any application that comes across this built on
84          * Snow Leopard.  This is a horrible hack to ensure that the private __CFInitialize
85          * is run on the main thread, so that we don't get SIGTRAPs later
86          */
87 #if defined (__APPLE__) && (defined (__i386__) || defined (__x86_64__))
88         {
89                 void *handle = dlopen ("/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation", RTLD_LAZY);
90                 if (handle == NULL)
91                         return;
92
93                 dlclose (handle);
94         }
95 #endif
96 }
97
98 gboolean
99 mono_thread_state_init_from_handle (MonoThreadUnwindState *tctx, MonoThreadInfo *info)
100 {
101         kern_return_t ret;
102         mach_msg_type_number_t num_state, num_fpstate;
103         thread_state_t state, fpstate;
104         ucontext_t ctx;
105         mcontext_t mctx;
106         MonoJitTlsData *jit_tls;
107         void *domain;
108         MonoLMF *lmf = NULL;
109         gpointer *addr;
110
111         g_assert (info);
112         /*Zero enough state to make sure the caller doesn't confuse itself*/
113         tctx->valid = FALSE;
114         tctx->unwind_data [MONO_UNWIND_DATA_DOMAIN] = NULL;
115         tctx->unwind_data [MONO_UNWIND_DATA_LMF] = NULL;
116         tctx->unwind_data [MONO_UNWIND_DATA_JIT_TLS] = NULL;
117
118         state = (thread_state_t) alloca (mono_mach_arch_get_thread_state_size ());
119         fpstate = (thread_state_t) alloca (mono_mach_arch_get_thread_fpstate_size ());
120         mctx = (mcontext_t) alloca (mono_mach_arch_get_mcontext_size ());
121
122         do {
123                 ret = mono_mach_arch_get_thread_states (info->native_handle, state, &num_state, fpstate, &num_fpstate);
124         } while (ret == KERN_ABORTED);
125         if (ret != KERN_SUCCESS)
126                 return FALSE;
127
128         mono_mach_arch_thread_states_to_mcontext (state, fpstate, mctx);
129         ctx.uc_mcontext = mctx;
130
131         mono_sigctx_to_monoctx (&ctx, &tctx->ctx);
132
133         /* mono_set_jit_tls () sets this */
134         jit_tls = mono_thread_info_tls_get (info, TLS_KEY_JIT_TLS);
135         /* SET_APPDOMAIN () sets this */
136         domain = mono_thread_info_tls_get (info, TLS_KEY_DOMAIN);
137
138         /*Thread already started to cleanup, can no longer capture unwind state*/
139         if (!jit_tls || !domain)
140                 return FALSE;
141
142         /*
143          * The current LMF address is kept in a separate TLS variable, and its hard to read its value without
144          * arch-specific code. But the address of the TLS variable is stored in another TLS variable which
145          * can be accessed through MonoThreadInfo.
146          */
147         /* mono_set_lmf_addr () sets this */
148         addr = mono_thread_info_tls_get (info, TLS_KEY_LMF_ADDR);
149         if (addr)
150                 lmf = *addr;
151
152
153         tctx->unwind_data [MONO_UNWIND_DATA_DOMAIN] = domain;
154         tctx->unwind_data [MONO_UNWIND_DATA_JIT_TLS] = jit_tls;
155         tctx->unwind_data [MONO_UNWIND_DATA_LMF] = lmf;
156         tctx->valid = TRUE;
157
158         return TRUE;
159 }