Merge pull request #2306 from migueldeicaza/master
[mono.git] / mono / metadata / threads.c
1 /*
2  * threads.c: Thread support internal calls
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *      Paolo Molaro (lupus@ximian.com)
7  *      Patrik Torstensson (patrik.torstensson@labs2.com)
8  *
9  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
10  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
11  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
12  */
13
14 #include <config.h>
15
16 #include <glib.h>
17 #include <string.h>
18
19 #include <mono/metadata/object.h>
20 #include <mono/metadata/domain-internals.h>
21 #include <mono/metadata/profiler-private.h>
22 #include <mono/metadata/threads.h>
23 #include <mono/metadata/threads-types.h>
24 #include <mono/metadata/exception.h>
25 #include <mono/metadata/environment.h>
26 #include <mono/metadata/monitor.h>
27 #include <mono/metadata/gc-internals.h>
28 #include <mono/metadata/marshal.h>
29 #include <mono/metadata/runtime.h>
30 #include <mono/io-layer/io-layer.h>
31 #include <mono/metadata/object-internals.h>
32 #include <mono/metadata/mono-debug-debugger.h>
33 #include <mono/utils/monobitset.h>
34 #include <mono/utils/mono-compiler.h>
35 #include <mono/utils/mono-mmap.h>
36 #include <mono/utils/mono-membar.h>
37 #include <mono/utils/mono-time.h>
38 #include <mono/utils/mono-threads.h>
39 #include <mono/utils/hazard-pointer.h>
40 #include <mono/utils/mono-tls.h>
41 #include <mono/utils/atomic.h>
42 #include <mono/utils/mono-memory-model.h>
43
44 #include <mono/metadata/gc-internals.h>
45
46 #ifdef HAVE_SIGNAL_H
47 #include <signal.h>
48 #endif
49
50 #if defined(PLATFORM_ANDROID) && !defined(TARGET_ARM64) && !defined(TARGET_AMD64)
51 #define USE_TKILL_ON_ANDROID 1
52 #endif
53
54 #ifdef PLATFORM_ANDROID
55 #include <errno.h>
56
57 #ifdef USE_TKILL_ON_ANDROID
58 extern int tkill (pid_t tid, int signal);
59 #endif
60 #endif
61
62 /*#define THREAD_DEBUG(a) do { a; } while (0)*/
63 #define THREAD_DEBUG(a)
64 /*#define THREAD_WAIT_DEBUG(a) do { a; } while (0)*/
65 #define THREAD_WAIT_DEBUG(a)
66 /*#define LIBGC_DEBUG(a) do { a; } while (0)*/
67 #define LIBGC_DEBUG(a)
68
69 #define SPIN_TRYLOCK(i) (InterlockedCompareExchange (&(i), 1, 0) == 0)
70 #define SPIN_LOCK(i) do { \
71                                 if (SPIN_TRYLOCK (i)) \
72                                         break; \
73                         } while (1)
74
75 #define SPIN_UNLOCK(i) i = 0
76
77 #define LOCK_THREAD(thread) lock_thread((thread))
78 #define UNLOCK_THREAD(thread) unlock_thread((thread))
79
80 /* Provide this for systems with glib < 2.6 */
81 #ifndef G_GSIZE_FORMAT
82 #   if GLIB_SIZEOF_LONG == 8
83 #       define G_GSIZE_FORMAT "lu"
84 #   else
85 #       define G_GSIZE_FORMAT "u"
86 #   endif
87 #endif
88
89 typedef struct
90 {
91         guint32 (*func)(void *);
92         MonoThread *obj;
93         MonoObject *delegate;
94         void *start_arg;
95 } StartInfo;
96
97 typedef union {
98         gint32 ival;
99         gfloat fval;
100 } IntFloatUnion;
101
102 typedef union {
103         gint64 ival;
104         gdouble fval;
105 } LongDoubleUnion;
106  
107 typedef struct _StaticDataFreeList StaticDataFreeList;
108 struct _StaticDataFreeList {
109         StaticDataFreeList *next;
110         guint32 offset;
111         guint32 size;
112 };
113
114 typedef struct {
115         int idx;
116         int offset;
117         StaticDataFreeList *freelist;
118 } StaticDataInfo;
119
120 /* Number of cached culture objects in the MonoThread->cached_culture_info array
121  * (per-type): we use the first NUM entries for CultureInfo and the last for
122  * UICultureInfo. So the size of the array is really NUM_CACHED_CULTURES * 2.
123  */
124 #define NUM_CACHED_CULTURES 4
125 #define CULTURES_START_IDX 0
126 #define UICULTURES_START_IDX NUM_CACHED_CULTURES
127
128 /* Controls access to the 'threads' hash table */
129 static void mono_threads_lock (void);
130 static void mono_threads_unlock (void);
131 static MonoCoopMutex threads_mutex;
132
133 /* Controls access to the 'joinable_threads' hash table */
134 #define joinable_threads_lock() mono_os_mutex_lock (&joinable_threads_mutex)
135 #define joinable_threads_unlock() mono_os_mutex_unlock (&joinable_threads_mutex)
136 static mono_mutex_t joinable_threads_mutex;
137
138 /* Holds current status of static data heap */
139 static StaticDataInfo thread_static_info;
140 static StaticDataInfo context_static_info;
141
142 /* The hash of existing threads (key is thread ID, value is
143  * MonoInternalThread*) that need joining before exit
144  */
145 static MonoGHashTable *threads=NULL;
146
147 /* List of app context GC handles.
148  * Added to from ves_icall_System_Runtime_Remoting_Contexts_Context_RegisterContext ().
149  */
150 static GHashTable *contexts = NULL;
151
152 /*
153  * Threads which are starting up and they are not in the 'threads' hash yet.
154  * When handle_store is called for a thread, it will be removed from this hash table.
155  * Protected by mono_threads_lock ().
156  */
157 static MonoGHashTable *threads_starting_up = NULL;
158
159 /* The TLS key that holds the MonoObject assigned to each thread */
160 static MonoNativeTlsKey current_object_key;
161
162 /* Contains tids */
163 /* Protected by the threads lock */
164 static GHashTable *joinable_threads;
165 static int joinable_thread_count;
166
167 #ifdef MONO_HAVE_FAST_TLS
168 /* we need to use both the Tls* functions and __thread because
169  * the gc needs to see all the threads 
170  */
171 MONO_FAST_TLS_DECLARE(tls_current_object);
172 #define SET_CURRENT_OBJECT(x) do { \
173         MONO_FAST_TLS_SET (tls_current_object, x); \
174         mono_native_tls_set_value (current_object_key, x); \
175 } while (FALSE)
176 #define GET_CURRENT_OBJECT() ((MonoInternalThread*) MONO_FAST_TLS_GET (tls_current_object))
177 #else
178 #define SET_CURRENT_OBJECT(x) mono_native_tls_set_value (current_object_key, x)
179 #define GET_CURRENT_OBJECT() (MonoInternalThread*) mono_native_tls_get_value (current_object_key)
180 #endif
181
182 /* function called at thread start */
183 static MonoThreadStartCB mono_thread_start_cb = NULL;
184
185 /* function called at thread attach */
186 static MonoThreadAttachCB mono_thread_attach_cb = NULL;
187
188 /* function called at thread cleanup */
189 static MonoThreadCleanupFunc mono_thread_cleanup_fn = NULL;
190
191 /* function called to notify the runtime about a pending exception on the current thread */
192 static MonoThreadNotifyPendingExcFunc mono_thread_notify_pending_exc_fn = NULL;
193
194 /* The default stack size for each thread */
195 static guint32 default_stacksize = 0;
196 #define default_stacksize_for_thread(thread) ((thread)->stack_size? (thread)->stack_size: default_stacksize)
197
198 static void thread_adjust_static_data (MonoInternalThread *thread);
199 static void context_adjust_static_data (MonoAppContext *ctx);
200 static void mono_free_static_data (gpointer* static_data);
201 static void mono_init_static_data_info (StaticDataInfo *static_data);
202 static guint32 mono_alloc_static_data_slot (StaticDataInfo *static_data, guint32 size, guint32 align);
203 static gboolean mono_thread_resume (MonoInternalThread* thread);
204 static void abort_thread_internal (MonoInternalThread *thread, gboolean can_raise_exception, gboolean install_async_abort);
205 static void suspend_thread_internal (MonoInternalThread *thread, gboolean interrupt);
206 static void self_suspend_internal (MonoInternalThread *thread);
207
208 static MonoException* mono_thread_execute_interruption ();
209 static void ref_stack_destroy (gpointer rs);
210
211 /* Spin lock for InterlockedXXX 64 bit functions */
212 #define mono_interlocked_lock() mono_os_mutex_lock (&interlocked_mutex)
213 #define mono_interlocked_unlock() mono_os_mutex_unlock (&interlocked_mutex)
214 static mono_mutex_t interlocked_mutex;
215
216 /* global count of thread interruptions requested */
217 static gint32 thread_interruption_requested = 0;
218
219 /* Event signaled when a thread changes its background mode */
220 static HANDLE background_change_event;
221
222 static gboolean shutting_down = FALSE;
223
224 static gint32 managed_thread_id_counter = 0;
225
226 static void
227 mono_threads_lock (void)
228 {
229         mono_locks_coop_acquire (&threads_mutex, ThreadsLock);
230 }
231
232 static void
233 mono_threads_unlock (void)
234 {
235         mono_locks_coop_release (&threads_mutex, ThreadsLock);
236 }
237
238
239 static guint32
240 get_next_managed_thread_id (void)
241 {
242         return InterlockedIncrement (&managed_thread_id_counter);
243 }
244
245 MonoNativeTlsKey
246 mono_thread_get_tls_key (void)
247 {
248         return current_object_key;
249 }
250
251 gint32
252 mono_thread_get_tls_offset (void)
253 {
254         int offset;
255         MONO_THREAD_VAR_OFFSET (tls_current_object,offset);
256         return offset;
257 }
258
259 static inline MonoNativeThreadId
260 thread_get_tid (MonoInternalThread *thread)
261 {
262         /* We store the tid as a guint64 to keep the object layout constant between platforms */
263         return MONO_UINT_TO_NATIVE_THREAD_ID (thread->tid);
264 }
265
266 /* handle_store() and handle_remove() manage the array of threads that
267  * still need to be waited for when the main thread exits.
268  *
269  * If handle_store() returns FALSE the thread must not be started
270  * because Mono is shutting down.
271  */
272 static gboolean handle_store(MonoThread *thread, gboolean force_attach)
273 {
274         mono_threads_lock ();
275
276         THREAD_DEBUG (g_message ("%s: thread %p ID %"G_GSIZE_FORMAT, __func__, thread, (gsize)thread->internal_thread->tid));
277
278         if (threads_starting_up)
279                 mono_g_hash_table_remove (threads_starting_up, thread);
280
281         if (shutting_down && !force_attach) {
282                 mono_threads_unlock ();
283                 return FALSE;
284         }
285
286         if(threads==NULL) {
287                 MONO_GC_REGISTER_ROOT_FIXED (threads, MONO_ROOT_SOURCE_THREADING, "threads table");
288                 threads=mono_g_hash_table_new_type (NULL, NULL, MONO_HASH_VALUE_GC, MONO_ROOT_SOURCE_THREADING, "threads table");
289         }
290
291         /* We don't need to duplicate thread->handle, because it is
292          * only closed when the thread object is finalized by the GC.
293          */
294         g_assert (thread->internal_thread);
295         mono_g_hash_table_insert(threads, (gpointer)(gsize)(thread->internal_thread->tid),
296                                  thread->internal_thread);
297
298         mono_threads_unlock ();
299
300         return TRUE;
301 }
302
303 static gboolean handle_remove(MonoInternalThread *thread)
304 {
305         gboolean ret;
306         gsize tid = thread->tid;
307
308         THREAD_DEBUG (g_message ("%s: thread ID %"G_GSIZE_FORMAT, __func__, tid));
309
310         mono_threads_lock ();
311
312         if (threads) {
313                 /* We have to check whether the thread object for the
314                  * tid is still the same in the table because the
315                  * thread might have been destroyed and the tid reused
316                  * in the meantime, in which case the tid would be in
317                  * the table, but with another thread object.
318                  */
319                 if (mono_g_hash_table_lookup (threads, (gpointer)tid) == thread) {
320                         mono_g_hash_table_remove (threads, (gpointer)tid);
321                         ret = TRUE;
322                 } else {
323                         ret = FALSE;
324                 }
325         }
326         else
327                 ret = FALSE;
328         
329         mono_threads_unlock ();
330
331         /* Don't close the handle here, wait for the object finalizer
332          * to do it. Otherwise, the following race condition applies:
333          *
334          * 1) Thread exits (and handle_remove() closes the handle)
335          *
336          * 2) Some other handle is reassigned the same slot
337          *
338          * 3) Another thread tries to join the first thread, and
339          * blocks waiting for the reassigned handle to be signalled
340          * (which might never happen).  This is possible, because the
341          * thread calling Join() still has a reference to the first
342          * thread's object.
343          */
344         return ret;
345 }
346
347 static void ensure_synch_cs_set (MonoInternalThread *thread)
348 {
349         MonoCoopMutex *synch_cs;
350
351         if (thread->synch_cs != NULL) {
352                 return;
353         }
354
355         synch_cs = g_new0 (MonoCoopMutex, 1);
356         mono_coop_mutex_init_recursive (synch_cs);
357
358         if (InterlockedCompareExchangePointer ((gpointer *)&thread->synch_cs,
359                                                synch_cs, NULL) != NULL) {
360                 /* Another thread must have installed this CS */
361                 mono_coop_mutex_destroy (synch_cs);
362                 g_free (synch_cs);
363         }
364 }
365
366 static inline void
367 lock_thread (MonoInternalThread *thread)
368 {
369         if (!thread->synch_cs)
370                 ensure_synch_cs_set (thread);
371
372         g_assert (thread->synch_cs);
373
374         mono_coop_mutex_lock (thread->synch_cs);
375 }
376
377 static inline void
378 unlock_thread (MonoInternalThread *thread)
379 {
380         mono_coop_mutex_unlock (thread->synch_cs);
381 }
382
383 /*
384  * NOTE: this function can be called also for threads different from the current one:
385  * make sure no code called from it will ever assume it is run on the thread that is
386  * getting cleaned up.
387  */
388 static void thread_cleanup (MonoInternalThread *thread)
389 {
390         g_assert (thread != NULL);
391
392         if (thread->abort_state_handle) {
393                 mono_gchandle_free (thread->abort_state_handle);
394                 thread->abort_state_handle = 0;
395         }
396         thread->abort_exc = NULL;
397         thread->current_appcontext = NULL;
398
399         /*
400          * This is necessary because otherwise we might have
401          * cross-domain references which will not get cleaned up when
402          * the target domain is unloaded.
403          */
404         if (thread->cached_culture_info) {
405                 int i;
406                 for (i = 0; i < NUM_CACHED_CULTURES * 2; ++i)
407                         mono_array_set (thread->cached_culture_info, MonoObject*, i, NULL);
408         }
409
410         /*
411          * thread->synch_cs can be NULL if this was called after
412          * ves_icall_System_Threading_InternalThread_Thread_free_internal.
413          * This can happen only during shutdown.
414          * The shutting_down flag is not always set, so we can't assert on it.
415          */
416         if (thread->synch_cs)
417                 LOCK_THREAD (thread);
418
419         thread->state |= ThreadState_Stopped;
420         thread->state &= ~ThreadState_Background;
421
422         if (thread->synch_cs)
423                 UNLOCK_THREAD (thread);
424
425         /*
426         An interruption request has leaked to cleanup. Adjust the global counter.
427
428         This can happen is the abort source thread finds the abortee (this) thread
429         in unmanaged code. If this thread never trips back to managed code or check
430         the local flag it will be left set and positively unbalance the global counter.
431         
432         Leaving the counter unbalanced will cause a performance degradation since all threads
433         will now keep checking their local flags all the time.
434         */
435         if (InterlockedExchange (&thread->interruption_requested, 0))
436                 InterlockedDecrement (&thread_interruption_requested);
437
438         /* if the thread is not in the hash it has been removed already */
439         if (!handle_remove (thread)) {
440                 if (thread == mono_thread_internal_current ()) {
441                         mono_domain_unset ();
442                         mono_memory_barrier ();
443                 }
444                 /* This needs to be called even if handle_remove () fails */
445                 if (mono_thread_cleanup_fn)
446                         mono_thread_cleanup_fn (thread_get_tid (thread));
447                 return;
448         }
449         mono_release_type_locks (thread);
450
451         mono_profiler_thread_end (thread->tid);
452
453         if (thread == mono_thread_internal_current ()) {
454                 /*
455                  * This will signal async signal handlers that the thread has exited.
456                  * The profiler callback needs this to be set, so it cannot be done earlier.
457                  */
458                 mono_domain_unset ();
459                 mono_memory_barrier ();
460         }
461
462         if (thread == mono_thread_internal_current ())
463                 mono_thread_pop_appdomain_ref ();
464
465         thread->cached_culture_info = NULL;
466
467         mono_free_static_data (thread->static_data);
468         thread->static_data = NULL;
469         ref_stack_destroy (thread->appdomain_refs);
470         thread->appdomain_refs = NULL;
471
472         if (mono_thread_cleanup_fn)
473                 mono_thread_cleanup_fn (thread_get_tid (thread));
474
475         if (mono_gc_is_moving ()) {
476                 MONO_GC_UNREGISTER_ROOT (thread->thread_pinning_ref);
477                 thread->thread_pinning_ref = NULL;
478         }
479 }
480
481 /*
482  * A special static data offset (guint32) consists of 3 parts:
483  *
484  * [0]   6-bit index into the array of chunks.
485  * [6]   25-bit offset into the array.
486  * [31]  Bit indicating thread or context static.
487  */
488
489 typedef union {
490         struct {
491 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
492                 guint32 type : 1;
493                 guint32 offset : 25;
494                 guint32 index : 6;
495 #else
496                 guint32 index : 6;
497                 guint32 offset : 25;
498                 guint32 type : 1;
499 #endif
500         } fields;
501         guint32 raw;
502 } SpecialStaticOffset;
503
504 #define SPECIAL_STATIC_OFFSET_TYPE_THREAD 0
505 #define SPECIAL_STATIC_OFFSET_TYPE_CONTEXT 1
506
507 #define MAKE_SPECIAL_STATIC_OFFSET(index, offset, type) \
508         ((SpecialStaticOffset) { .fields = { (index), (offset), (type) } }.raw)
509 #define ACCESS_SPECIAL_STATIC_OFFSET(x,f) \
510         (((SpecialStaticOffset *) &(x))->fields.f)
511
512 static gpointer
513 get_thread_static_data (MonoInternalThread *thread, guint32 offset)
514 {
515         g_assert (ACCESS_SPECIAL_STATIC_OFFSET (offset, type) == SPECIAL_STATIC_OFFSET_TYPE_THREAD);
516
517         int idx = ACCESS_SPECIAL_STATIC_OFFSET (offset, index);
518         int off = ACCESS_SPECIAL_STATIC_OFFSET (offset, offset);
519
520         return ((char *) thread->static_data [idx]) + off;
521 }
522
523 static gpointer
524 get_context_static_data (MonoAppContext *ctx, guint32 offset)
525 {
526         g_assert (ACCESS_SPECIAL_STATIC_OFFSET (offset, type) == SPECIAL_STATIC_OFFSET_TYPE_CONTEXT);
527
528         int idx = ACCESS_SPECIAL_STATIC_OFFSET (offset, index);
529         int off = ACCESS_SPECIAL_STATIC_OFFSET (offset, offset);
530
531         return ((char *) ctx->static_data [idx]) + off;
532 }
533
534 static MonoThread**
535 get_current_thread_ptr_for_domain (MonoDomain *domain, MonoInternalThread *thread)
536 {
537         static MonoClassField *current_thread_field = NULL;
538
539         guint32 offset;
540
541         if (!current_thread_field) {
542                 current_thread_field = mono_class_get_field_from_name (mono_defaults.thread_class, "current_thread");
543                 g_assert (current_thread_field);
544         }
545
546         mono_class_vtable (domain, mono_defaults.thread_class);
547         mono_domain_lock (domain);
548         offset = GPOINTER_TO_UINT (g_hash_table_lookup (domain->special_static_fields, current_thread_field));
549         mono_domain_unlock (domain);
550         g_assert (offset);
551
552         return (MonoThread **)get_thread_static_data (thread, offset);
553 }
554
555 static void
556 set_current_thread_for_domain (MonoDomain *domain, MonoInternalThread *thread, MonoThread *current)
557 {
558         MonoThread **current_thread_ptr = get_current_thread_ptr_for_domain (domain, thread);
559
560         g_assert (current->obj.vtable->domain == domain);
561
562         g_assert (!*current_thread_ptr);
563         *current_thread_ptr = current;
564 }
565
566 static MonoThread*
567 create_thread_object (MonoDomain *domain)
568 {
569         MonoVTable *vt = mono_class_vtable (domain, mono_defaults.thread_class);
570         return (MonoThread*)mono_gc_alloc_mature (vt);
571 }
572
573 static MonoThread*
574 new_thread_with_internal (MonoDomain *domain, MonoInternalThread *internal)
575 {
576         MonoThread *thread = create_thread_object (domain);
577         MONO_OBJECT_SETREF (thread, internal_thread, internal);
578         return thread;
579 }
580
581 static MonoInternalThread*
582 create_internal_thread (void)
583 {
584         MonoInternalThread *thread;
585         MonoVTable *vt;
586
587         vt = mono_class_vtable (mono_get_root_domain (), mono_defaults.internal_thread_class);
588         thread = (MonoInternalThread*)mono_gc_alloc_mature (vt);
589
590         thread->synch_cs = g_new0 (MonoCoopMutex, 1);
591         mono_coop_mutex_init_recursive (thread->synch_cs);
592
593         thread->apartment_state = ThreadApartmentState_Unknown;
594         thread->managed_id = get_next_managed_thread_id ();
595         if (mono_gc_is_moving ()) {
596                 thread->thread_pinning_ref = thread;
597                 MONO_GC_REGISTER_ROOT_PINNING (thread->thread_pinning_ref, MONO_ROOT_SOURCE_THREADING, "thread pinning reference");
598         }
599
600         return thread;
601 }
602
603 static void
604 init_root_domain_thread (MonoInternalThread *thread, MonoThread *candidate)
605 {
606         MonoDomain *domain = mono_get_root_domain ();
607
608         if (!candidate || candidate->obj.vtable->domain != domain)
609                 candidate = new_thread_with_internal (domain, thread);
610         set_current_thread_for_domain (domain, thread, candidate);
611         g_assert (!thread->root_domain_thread);
612         MONO_OBJECT_SETREF (thread, root_domain_thread, candidate);
613 }
614
615 static guint32 WINAPI start_wrapper_internal(void *data)
616 {
617         MonoThreadInfo *info;
618         StartInfo *start_info = (StartInfo *)data;
619         guint32 (*start_func)(void *);
620         void *start_arg;
621         gsize tid;
622         /* 
623          * We don't create a local to hold start_info->obj, so hopefully it won't get pinned during a
624          * GC stack walk.
625          */
626         MonoInternalThread *internal = start_info->obj->internal_thread;
627         MonoObject *start_delegate = start_info->delegate;
628         MonoDomain *domain = start_info->obj->obj.vtable->domain;
629
630         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Start wrapper", __func__, mono_native_thread_id_get ()));
631
632         /* We can be sure start_info->obj->tid and
633          * start_info->obj->handle have been set, because the thread
634          * was created suspended, and these values were set before the
635          * thread resumed
636          */
637
638         info = mono_thread_info_current ();
639         g_assert (info);
640         internal->thread_info = info;
641         internal->small_id = info->small_id;
642
643         tid = internal->tid;
644
645         SET_CURRENT_OBJECT (internal);
646
647         /* Every thread references the appdomain which created it */
648         mono_thread_push_appdomain_ref (domain);
649         
650         if (!mono_domain_set (domain, FALSE)) {
651                 /* No point in raising an appdomain_unloaded exception here */
652                 /* FIXME: Cleanup here */
653                 mono_thread_pop_appdomain_ref ();
654                 return 0;
655         }
656
657         start_func = start_info->func;
658         start_arg = start_info->obj->start_obj;
659         if (!start_arg)
660                 start_arg = start_info->start_arg;
661
662         /* We have to do this here because mono_thread_new_init()
663            requires that root_domain_thread is set up. */
664         thread_adjust_static_data (internal);
665         init_root_domain_thread (internal, start_info->obj);
666
667         /* This MUST be called before any managed code can be
668          * executed, as it calls the callback function that (for the
669          * jit) sets the lmf marker.
670          */
671         mono_thread_new_init (tid, &tid, start_func);
672         internal->stack_ptr = &tid;
673         if (domain != mono_get_root_domain ())
674                 set_current_thread_for_domain (domain, internal, start_info->obj);
675
676         LIBGC_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT",%d) Setting thread stack to %p", __func__, mono_native_thread_id_get (), getpid (), thread->stack_ptr));
677
678         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Setting current_object_key to %p", __func__, mono_native_thread_id_get (), internal));
679
680         /* On 2.0 profile (and higher), set explicitly since state might have been
681            Unknown */
682         if (internal->apartment_state == ThreadApartmentState_Unknown)
683                 internal->apartment_state = ThreadApartmentState_MTA;
684
685         mono_thread_init_apartment_state ();
686
687         if(internal->start_notify!=NULL) {
688                 /* Let the thread that called Start() know we're
689                  * ready
690                  */
691                 ReleaseSemaphore (internal->start_notify, 1, NULL);
692         }
693
694         g_free (start_info);
695         THREAD_DEBUG (g_message ("%s: start_wrapper for %"G_GSIZE_FORMAT, __func__,
696                                                          internal->tid));
697
698         /* 
699          * Call this after calling start_notify, since the profiler callback might want
700          * to lock the thread, and the lock is held by thread_start () which waits for
701          * start_notify.
702          */
703         mono_profiler_thread_start (tid);
704
705         /* if the name was set before starting, we didn't invoke the profiler callback */
706         if (internal->name && (internal->flags & MONO_THREAD_FLAG_NAME_SET)) {
707                 char *tname = g_utf16_to_utf8 (internal->name, internal->name_len, NULL, NULL, NULL);
708                 mono_profiler_thread_name (internal->tid, tname);
709                 g_free (tname);
710         }
711         /* start_func is set only for unmanaged start functions */
712         if (start_func) {
713                 start_func (start_arg);
714         } else {
715                 void *args [1];
716                 g_assert (start_delegate != NULL);
717                 args [0] = start_arg;
718                 /* we may want to handle the exception here. See comment below on unhandled exceptions */
719                 mono_runtime_delegate_invoke (start_delegate, args, NULL);
720         }
721
722         /* If the thread calls ExitThread at all, this remaining code
723          * will not be executed, but the main thread will eventually
724          * call thread_cleanup() on this thread's behalf.
725          */
726
727         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Start wrapper terminating", __func__, mono_native_thread_id_get ()));
728
729         /* Do any cleanup needed for apartment state. This
730          * cannot be done in thread_cleanup since thread_cleanup could be 
731          * called for a thread other than the current thread.
732          * mono_thread_cleanup_apartment_state cleans up apartment
733          * for the current thead */
734         mono_thread_cleanup_apartment_state ();
735
736         thread_cleanup (internal);
737
738         internal->tid = 0;
739
740         /* Remove the reference to the thread object in the TLS data,
741          * so the thread object can be finalized.  This won't be
742          * reached if the thread threw an uncaught exception, so those
743          * thread handles will stay referenced :-( (This is due to
744          * missing support for scanning thread-specific data in the
745          * Boehm GC - the io-layer keeps a GC-visible hash of pointers
746          * to TLS data.)
747          */
748         SET_CURRENT_OBJECT (NULL);
749
750         return(0);
751 }
752
753 static guint32 WINAPI start_wrapper(void *data)
754 {
755         volatile int dummy;
756
757         /* Avoid scanning the frames above this frame during a GC */
758         mono_gc_set_stack_end ((void*)&dummy);
759
760         return start_wrapper_internal (data);
761 }
762
763 /*
764  * create_thread:
765  *
766  *   Common thread creation code.
767  * LOCKING: Acquires the threads lock.
768  */
769 static gboolean
770 create_thread (MonoThread *thread, MonoInternalThread *internal, StartInfo *start_info, gboolean threadpool_thread, guint32 stack_size,
771                            gboolean throw_on_failure)
772 {
773         HANDLE thread_handle;
774         MonoNativeThreadId tid;
775         guint32 create_flags;
776
777         /*
778          * Join joinable threads to prevent running out of threads since the finalizer
779          * thread might be blocked/backlogged.
780          */
781         mono_threads_join_threads ();
782
783         mono_threads_lock ();
784         if (shutting_down) {
785                 g_free (start_info);
786                 mono_threads_unlock ();
787                 return FALSE;
788         }
789         if (threads_starting_up == NULL) {
790                 MONO_GC_REGISTER_ROOT_FIXED (threads_starting_up, MONO_ROOT_SOURCE_THREADING, "starting threads table");
791                 threads_starting_up = mono_g_hash_table_new_type (NULL, NULL, MONO_HASH_KEY_VALUE_GC, MONO_ROOT_SOURCE_THREADING, "starting threads table");
792         }
793         mono_g_hash_table_insert (threads_starting_up, thread, thread);
794         mono_threads_unlock ();
795
796         internal->start_notify = CreateSemaphore (NULL, 0, 0x7fffffff, NULL);
797         if (!internal->start_notify) {
798                 mono_threads_lock ();
799                 mono_g_hash_table_remove (threads_starting_up, thread);
800                 mono_threads_unlock ();
801                 g_warning ("%s: CreateSemaphore error 0x%x", __func__, GetLastError ());
802                 g_free (start_info);
803                 return FALSE;
804         }
805
806         if (stack_size == 0)
807                 stack_size = default_stacksize_for_thread (internal);
808
809         /* Create suspended, so we can do some housekeeping before the thread
810          * starts
811          */
812         create_flags = CREATE_SUSPENDED;
813
814         thread_handle = mono_threads_create_thread ((LPTHREAD_START_ROUTINE)start_wrapper, start_info,
815                                                                                                 stack_size, create_flags, &tid);
816
817         if (thread_handle == NULL) {
818                 /* The thread couldn't be created, so throw an exception */
819                 mono_threads_lock ();
820                 mono_g_hash_table_remove (threads_starting_up, thread);
821                 mono_threads_unlock ();
822                 g_free (start_info);
823                 if (throw_on_failure)
824                         mono_raise_exception (mono_get_exception_execution_engine ("Couldn't create thread"));
825                 else
826                         g_warning ("%s: CreateThread error 0x%x", __func__, GetLastError ());
827                 return FALSE;
828         }
829         THREAD_DEBUG (g_message ("%s: Started thread ID %"G_GSIZE_FORMAT" (handle %p)", __func__, tid, thread_handle));
830
831         internal->handle = thread_handle;
832         internal->tid = MONO_NATIVE_THREAD_ID_TO_UINT (tid);
833
834         internal->threadpool_thread = threadpool_thread;
835         if (threadpool_thread)
836                 mono_thread_set_state (internal, ThreadState_Background);
837
838         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Launching thread %p (%"G_GSIZE_FORMAT")", __func__, mono_native_thread_id_get (), internal, (gsize)internal->tid));
839
840         /* Only store the handle when the thread is about to be
841          * launched, to avoid the main thread deadlocking while trying
842          * to clean up a thread that will never be signalled.
843          */
844         if (!handle_store (thread, FALSE))
845                 return FALSE;
846
847         mono_thread_info_resume (tid);
848
849         if (internal->start_notify) {
850                 /*
851                  * Wait for the thread to set up its TLS data etc, so
852                  * theres no potential race condition if someone tries
853                  * to look up the data believing the thread has
854                  * started
855                  */
856                 THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") waiting for thread %p (%"G_GSIZE_FORMAT") to start", __func__, mono_native_thread_id_get (), internal, (gsize)internal->tid));
857
858                 MONO_PREPARE_BLOCKING;
859                 WaitForSingleObjectEx (internal->start_notify, INFINITE, FALSE);
860                 MONO_FINISH_BLOCKING;
861
862                 CloseHandle (internal->start_notify);
863                 internal->start_notify = NULL;
864         }
865
866         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Done launching thread %p (%"G_GSIZE_FORMAT")", __func__, mono_native_thread_id_get (), internal, (gsize)internal->tid));
867
868         return TRUE;
869 }
870
871 void mono_thread_new_init (intptr_t tid, gpointer stack_start, gpointer func)
872 {
873         if (mono_thread_start_cb) {
874                 mono_thread_start_cb (tid, stack_start, func);
875         }
876 }
877
878 void mono_threads_set_default_stacksize (guint32 stacksize)
879 {
880         default_stacksize = stacksize;
881 }
882
883 guint32 mono_threads_get_default_stacksize (void)
884 {
885         return default_stacksize;
886 }
887
888 /*
889  * mono_thread_create_internal:
890  *
891  *   ARG should not be a GC reference.
892  */
893 MonoInternalThread*
894 mono_thread_create_internal (MonoDomain *domain, gpointer func, gpointer arg, gboolean threadpool_thread, guint32 stack_size)
895 {
896         MonoThread *thread;
897         MonoInternalThread *internal;
898         StartInfo *start_info;
899         gboolean res;
900
901         thread = create_thread_object (domain);
902         internal = create_internal_thread ();
903         MONO_OBJECT_SETREF (thread, internal_thread, internal);
904
905         start_info = g_new0 (StartInfo, 1);
906         start_info->func = (guint32 (*)(void *))func;
907         start_info->obj = thread;
908         start_info->start_arg = arg;
909
910         res = create_thread (thread, internal, start_info, threadpool_thread, stack_size, TRUE);
911         if (!res)
912                 return NULL;
913
914         /* Check that the managed and unmanaged layout of MonoInternalThread matches */
915 #ifndef MONO_CROSS_COMPILE
916         if (mono_check_corlib_version () == NULL)
917                 g_assert (((char*)&internal->unused2 - (char*)internal) == mono_defaults.internal_thread_class->fields [mono_defaults.internal_thread_class->field.count - 1].offset);
918 #endif
919
920         return internal;
921 }
922
923 void
924 mono_thread_create (MonoDomain *domain, gpointer func, gpointer arg)
925 {
926         mono_thread_create_internal (domain, func, arg, FALSE, 0);
927 }
928
929 MonoThread *
930 mono_thread_attach (MonoDomain *domain)
931 {
932         return mono_thread_attach_full (domain, FALSE);
933 }
934
935 MonoThread *
936 mono_thread_attach_full (MonoDomain *domain, gboolean force_attach)
937 {
938         MonoThreadInfo *info;
939         MonoInternalThread *thread;
940         MonoThread *current_thread;
941         HANDLE thread_handle;
942         MonoNativeThreadId tid;
943
944         if ((thread = mono_thread_internal_current ())) {
945                 if (domain != mono_domain_get ())
946                         mono_domain_set (domain, TRUE);
947                 /* Already attached */
948                 return mono_thread_current ();
949         }
950
951         if (!mono_gc_register_thread (&domain)) {
952                 g_error ("Thread %"G_GSIZE_FORMAT" calling into managed code is not registered with the GC. On UNIX, this can be fixed by #include-ing <gc.h> before <pthread.h> in the file containing the thread creation code.", mono_native_thread_id_get ());
953         }
954
955         thread = create_internal_thread ();
956
957         thread_handle = mono_thread_info_open_handle ();
958         g_assert (thread_handle);
959
960         tid=mono_native_thread_id_get ();
961
962         thread->handle = thread_handle;
963         thread->tid = MONO_NATIVE_THREAD_ID_TO_UINT (tid);
964         thread->stack_ptr = &tid;
965
966         THREAD_DEBUG (g_message ("%s: Attached thread ID %"G_GSIZE_FORMAT" (handle %p)", __func__, tid, thread_handle));
967
968         info = mono_thread_info_current ();
969         g_assert (info);
970         thread->thread_info = info;
971         thread->small_id = info->small_id;
972
973         current_thread = new_thread_with_internal (domain, thread);
974
975         if (!handle_store (current_thread, force_attach)) {
976                 /* Mono is shutting down, so just wait for the end */
977                 for (;;)
978                         mono_thread_info_sleep (10000, NULL);
979         }
980
981         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Setting current_object_key to %p", __func__, mono_native_thread_id_get (), thread));
982
983         SET_CURRENT_OBJECT (thread);
984         mono_domain_set (domain, TRUE);
985
986         thread_adjust_static_data (thread);
987
988         init_root_domain_thread (thread, current_thread);
989         if (domain != mono_get_root_domain ())
990                 set_current_thread_for_domain (domain, thread, current_thread);
991
992
993         if (mono_thread_attach_cb) {
994                 guint8 *staddr;
995                 size_t stsize;
996
997                 mono_thread_info_get_stack_bounds (&staddr, &stsize);
998
999                 if (staddr == NULL)
1000                         mono_thread_attach_cb (MONO_NATIVE_THREAD_ID_TO_UINT (tid), &tid);
1001                 else
1002                         mono_thread_attach_cb (MONO_NATIVE_THREAD_ID_TO_UINT (tid), staddr + stsize);
1003         }
1004
1005         // FIXME: Need a separate callback
1006         mono_profiler_thread_start (MONO_NATIVE_THREAD_ID_TO_UINT (tid));
1007
1008         return current_thread;
1009 }
1010
1011 void
1012 mono_thread_detach_internal (MonoInternalThread *thread)
1013 {
1014         g_return_if_fail (thread != NULL);
1015
1016         THREAD_DEBUG (g_message ("%s: mono_thread_detach for %p (%"G_GSIZE_FORMAT")", __func__, thread, (gsize)thread->tid));
1017
1018         thread_cleanup (thread);
1019
1020         SET_CURRENT_OBJECT (NULL);
1021         mono_domain_unset ();
1022
1023         /* Don't need to CloseHandle this thread, even though we took a
1024          * reference in mono_thread_attach (), because the GC will do it
1025          * when the Thread object is finalised.
1026          */
1027 }
1028
1029 void
1030 mono_thread_detach (MonoThread *thread)
1031 {
1032         if (thread)
1033                 mono_thread_detach_internal (thread->internal_thread);
1034 }
1035
1036 /*
1037  * mono_thread_detach_if_exiting:
1038  *
1039  *   Detach the current thread from the runtime if it is exiting, i.e. it is running pthread dtors.
1040  * This should be used at the end of embedding code which calls into managed code, and which
1041  * can be called from pthread dtors, like dealloc: implementations in objective-c.
1042  */
1043 void
1044 mono_thread_detach_if_exiting (void)
1045 {
1046         if (mono_thread_info_is_exiting ()) {
1047                 MonoInternalThread *thread;
1048
1049                 thread = mono_thread_internal_current ();
1050                 if (thread) {
1051                         mono_thread_detach_internal (thread);
1052                         mono_thread_info_detach ();
1053                 }
1054         }
1055 }
1056
1057 void
1058 mono_thread_exit ()
1059 {
1060         MonoInternalThread *thread = mono_thread_internal_current ();
1061
1062         THREAD_DEBUG (g_message ("%s: mono_thread_exit for %p (%"G_GSIZE_FORMAT")", __func__, thread, (gsize)thread->tid));
1063
1064         thread_cleanup (thread);
1065         SET_CURRENT_OBJECT (NULL);
1066         mono_domain_unset ();
1067
1068         /* we could add a callback here for embedders to use. */
1069         if (mono_thread_get_main () && (thread == mono_thread_get_main ()->internal_thread))
1070                 exit (mono_environment_exitcode_get ());
1071         mono_thread_info_exit ();
1072 }
1073
1074 void
1075 ves_icall_System_Threading_Thread_ConstructInternalThread (MonoThread *this_obj)
1076 {
1077         MonoInternalThread *internal = create_internal_thread ();
1078
1079         internal->state = ThreadState_Unstarted;
1080
1081         InterlockedCompareExchangePointer ((volatile gpointer *)&this_obj->internal_thread, internal, NULL);
1082 }
1083
1084 HANDLE
1085 ves_icall_System_Threading_Thread_Thread_internal (MonoThread *this_obj,
1086                                                                                                    MonoObject *start)
1087 {
1088         StartInfo *start_info;
1089         MonoInternalThread *internal;
1090         gboolean res;
1091
1092         THREAD_DEBUG (g_message("%s: Trying to start a new thread: this (%p) start (%p)", __func__, this_obj, start));
1093
1094         if (!this_obj->internal_thread)
1095                 ves_icall_System_Threading_Thread_ConstructInternalThread (this_obj);
1096         internal = this_obj->internal_thread;
1097
1098         LOCK_THREAD (internal);
1099
1100         if ((internal->state & ThreadState_Unstarted) == 0) {
1101                 UNLOCK_THREAD (internal);
1102                 mono_set_pending_exception (mono_get_exception_thread_state ("Thread has already been started."));
1103                 return NULL;
1104         }
1105
1106         if ((internal->state & ThreadState_Aborted) != 0) {
1107                 UNLOCK_THREAD (internal);
1108                 return this_obj;
1109         }
1110         /* This is freed in start_wrapper */
1111         start_info = g_new0 (StartInfo, 1);
1112         start_info->func = NULL;
1113         start_info->start_arg = NULL;
1114         start_info->delegate = start;
1115         start_info->obj = this_obj;
1116         g_assert (this_obj->obj.vtable->domain == mono_domain_get ());
1117
1118         res = create_thread (this_obj, internal, start_info, FALSE, 0, FALSE);
1119         if (!res) {
1120                 UNLOCK_THREAD (internal);
1121                 return NULL;
1122         }
1123
1124         internal->state &= ~ThreadState_Unstarted;
1125
1126         THREAD_DEBUG (g_message ("%s: Started thread ID %"G_GSIZE_FORMAT" (handle %p)", __func__, tid, thread));
1127
1128         UNLOCK_THREAD (internal);
1129         return internal->handle;
1130 }
1131
1132 /*
1133  * This is called from the finalizer of the internal thread object.
1134  */
1135 void
1136 ves_icall_System_Threading_InternalThread_Thread_free_internal (MonoInternalThread *this_obj, HANDLE thread)
1137 {
1138         THREAD_DEBUG (g_message ("%s: Closing thread %p, handle %p", __func__, this, thread));
1139
1140         /*
1141          * Since threads keep a reference to their thread object while running, by the time this function is called,
1142          * the thread has already exited/detached, i.e. thread_cleanup () has ran. The exception is during shutdown,
1143          * when thread_cleanup () can be called after this.
1144          */
1145         if (thread)
1146                 CloseHandle (thread);
1147
1148         if (this_obj->synch_cs) {
1149                 MonoCoopMutex *synch_cs = this_obj->synch_cs;
1150                 this_obj->synch_cs = NULL;
1151                 mono_coop_mutex_destroy (synch_cs);
1152                 g_free (synch_cs);
1153         }
1154
1155         if (this_obj->name) {
1156                 void *name = this_obj->name;
1157                 this_obj->name = NULL;
1158                 g_free (name);
1159         }
1160 }
1161
1162 void
1163 ves_icall_System_Threading_Thread_Sleep_internal(gint32 ms)
1164 {
1165         guint32 res;
1166         MonoInternalThread *thread = mono_thread_internal_current ();
1167
1168         THREAD_DEBUG (g_message ("%s: Sleeping for %d ms", __func__, ms));
1169
1170         mono_thread_current_check_pending_interrupt ();
1171
1172         while (TRUE) {
1173                 gboolean alerted = FALSE;
1174
1175                 mono_thread_set_state (thread, ThreadState_WaitSleepJoin);
1176
1177                 res = mono_thread_info_sleep (ms, &alerted);
1178
1179                 mono_thread_clr_state (thread, ThreadState_WaitSleepJoin);
1180
1181                 if (alerted) {
1182                         MonoException* exc = mono_thread_execute_interruption ();
1183                         if (exc) {
1184                                 mono_raise_exception (exc);
1185                         } else {
1186                                 // FIXME: !INFINITE
1187                                 if (ms != INFINITE)
1188                                         break;
1189                         }
1190                 } else {
1191                         break;
1192                 }
1193         }
1194 }
1195
1196 void ves_icall_System_Threading_Thread_SpinWait_nop (void)
1197 {
1198 }
1199
1200 gint32
1201 ves_icall_System_Threading_Thread_GetDomainID (void) 
1202 {
1203         return mono_domain_get()->domain_id;
1204 }
1205
1206 gboolean 
1207 ves_icall_System_Threading_Thread_Yield (void)
1208 {
1209         return mono_thread_info_yield ();
1210 }
1211
1212 /*
1213  * mono_thread_get_name:
1214  *
1215  *   Return the name of the thread. NAME_LEN is set to the length of the name.
1216  * Return NULL if the thread has no name. The returned memory is owned by the
1217  * caller.
1218  */
1219 gunichar2*
1220 mono_thread_get_name (MonoInternalThread *this_obj, guint32 *name_len)
1221 {
1222         gunichar2 *res;
1223
1224         LOCK_THREAD (this_obj);
1225         
1226         if (!this_obj->name) {
1227                 *name_len = 0;
1228                 res = NULL;
1229         } else {
1230                 *name_len = this_obj->name_len;
1231                 res = g_new (gunichar2, this_obj->name_len);
1232                 memcpy (res, this_obj->name, sizeof (gunichar2) * this_obj->name_len);
1233         }
1234         
1235         UNLOCK_THREAD (this_obj);
1236
1237         return res;
1238 }
1239
1240 MonoString* 
1241 ves_icall_System_Threading_Thread_GetName_internal (MonoInternalThread *this_obj)
1242 {
1243         MonoString* str;
1244
1245         LOCK_THREAD (this_obj);
1246         
1247         if (!this_obj->name)
1248                 str = NULL;
1249         else
1250                 str = mono_string_new_utf16 (mono_domain_get (), this_obj->name, this_obj->name_len);
1251         
1252         UNLOCK_THREAD (this_obj);
1253         
1254         return str;
1255 }
1256
1257 void 
1258 mono_thread_set_name_internal (MonoInternalThread *this_obj, MonoString *name, gboolean managed)
1259 {
1260         LOCK_THREAD (this_obj);
1261
1262         if ((this_obj->flags & MONO_THREAD_FLAG_NAME_SET) && !this_obj->threadpool_thread) {
1263                 UNLOCK_THREAD (this_obj);
1264                 
1265                 mono_raise_exception (mono_get_exception_invalid_operation ("Thread.Name can only be set once."));
1266                 return;
1267         }
1268         if (this_obj->name) {
1269                 g_free (this_obj->name);
1270                 this_obj->name_len = 0;
1271         }
1272         if (name) {
1273                 this_obj->name = g_new (gunichar2, mono_string_length (name));
1274                 memcpy (this_obj->name, mono_string_chars (name), mono_string_length (name) * 2);
1275                 this_obj->name_len = mono_string_length (name);
1276         }
1277         else
1278                 this_obj->name = NULL;
1279
1280         if (managed)
1281                 this_obj->flags |= MONO_THREAD_FLAG_NAME_SET;
1282         
1283         UNLOCK_THREAD (this_obj);
1284
1285         if (this_obj->name && this_obj->tid) {
1286                 char *tname = mono_string_to_utf8 (name);
1287                 mono_profiler_thread_name (this_obj->tid, tname);
1288                 mono_thread_info_set_name (thread_get_tid (this_obj), tname);
1289                 mono_free (tname);
1290         }
1291 }
1292
1293 void 
1294 ves_icall_System_Threading_Thread_SetName_internal (MonoInternalThread *this_obj, MonoString *name)
1295 {
1296         mono_thread_set_name_internal (this_obj, name, TRUE);
1297 }
1298
1299 int
1300 ves_icall_System_Threading_Thread_GetPriority (MonoThread *this_obj)
1301 {
1302         return ThreadPriority_Lowest;
1303 }
1304
1305 void
1306 ves_icall_System_Threading_Thread_SetPriority (MonoThread *this_obj, int priority)
1307 {
1308 }
1309
1310 /* If the array is already in the requested domain, we just return it,
1311    otherwise we return a copy in that domain. */
1312 static MonoArray*
1313 byte_array_to_domain (MonoArray *arr, MonoDomain *domain)
1314 {
1315         MonoArray *copy;
1316
1317         if (!arr)
1318                 return NULL;
1319
1320         if (mono_object_domain (arr) == domain)
1321                 return arr;
1322
1323         copy = mono_array_new (domain, mono_defaults.byte_class, arr->max_length);
1324         memmove (mono_array_addr (copy, guint8, 0), mono_array_addr (arr, guint8, 0), arr->max_length);
1325         return copy;
1326 }
1327
1328 MonoArray*
1329 ves_icall_System_Threading_Thread_ByteArrayToRootDomain (MonoArray *arr)
1330 {
1331         return byte_array_to_domain (arr, mono_get_root_domain ());
1332 }
1333
1334 MonoArray*
1335 ves_icall_System_Threading_Thread_ByteArrayToCurrentDomain (MonoArray *arr)
1336 {
1337         return byte_array_to_domain (arr, mono_domain_get ());
1338 }
1339
1340 MonoThread *
1341 mono_thread_current (void)
1342 {
1343         MonoDomain *domain = mono_domain_get ();
1344         MonoInternalThread *internal = mono_thread_internal_current ();
1345         MonoThread **current_thread_ptr;
1346
1347         g_assert (internal);
1348         current_thread_ptr = get_current_thread_ptr_for_domain (domain, internal);
1349
1350         if (!*current_thread_ptr) {
1351                 g_assert (domain != mono_get_root_domain ());
1352                 *current_thread_ptr = new_thread_with_internal (domain, internal);
1353         }
1354         return *current_thread_ptr;
1355 }
1356
1357 /* Return the thread object belonging to INTERNAL in the current domain */
1358 static MonoThread *
1359 mono_thread_current_for_thread (MonoInternalThread *internal)
1360 {
1361         MonoDomain *domain = mono_domain_get ();
1362         MonoThread **current_thread_ptr;
1363
1364         g_assert (internal);
1365         current_thread_ptr = get_current_thread_ptr_for_domain (domain, internal);
1366
1367         if (!*current_thread_ptr) {
1368                 g_assert (domain != mono_get_root_domain ());
1369                 *current_thread_ptr = new_thread_with_internal (domain, internal);
1370         }
1371         return *current_thread_ptr;
1372 }
1373
1374 MonoInternalThread*
1375 mono_thread_internal_current (void)
1376 {
1377         MonoInternalThread *res = GET_CURRENT_OBJECT ();
1378         THREAD_DEBUG (g_message ("%s: returning %p", __func__, res));
1379         return res;
1380 }
1381
1382 gboolean
1383 ves_icall_System_Threading_Thread_Join_internal(MonoThread *this_obj, int ms)
1384 {
1385         MonoInternalThread *thread = this_obj->internal_thread;
1386         HANDLE handle = thread->handle;
1387         MonoInternalThread *cur_thread = mono_thread_internal_current ();
1388         gboolean ret;
1389
1390         mono_thread_current_check_pending_interrupt ();
1391
1392         LOCK_THREAD (thread);
1393         
1394         if ((thread->state & ThreadState_Unstarted) != 0) {
1395                 UNLOCK_THREAD (thread);
1396                 
1397                 mono_set_pending_exception (mono_get_exception_thread_state ("Thread has not been started."));
1398                 return FALSE;
1399         }
1400
1401         UNLOCK_THREAD (thread);
1402
1403         if(ms== -1) {
1404                 ms=INFINITE;
1405         }
1406         THREAD_DEBUG (g_message ("%s: joining thread handle %p, %d ms", __func__, handle, ms));
1407         
1408         mono_thread_set_state (cur_thread, ThreadState_WaitSleepJoin);
1409
1410         MONO_PREPARE_BLOCKING;
1411         ret=WaitForSingleObjectEx (handle, ms, TRUE);
1412         MONO_FINISH_BLOCKING;
1413
1414         mono_thread_clr_state (cur_thread, ThreadState_WaitSleepJoin);
1415         
1416         if(ret==WAIT_OBJECT_0) {
1417                 THREAD_DEBUG (g_message ("%s: join successful", __func__));
1418
1419                 return(TRUE);
1420         }
1421         
1422         THREAD_DEBUG (g_message ("%s: join failed", __func__));
1423
1424         return(FALSE);
1425 }
1426
1427 static gint32
1428 mono_wait_uninterrupted (MonoInternalThread *thread, gboolean multiple, guint32 numhandles, gpointer *handles, gboolean waitall, gint32 ms, gboolean alertable)
1429 {
1430         MonoException *exc;
1431         guint32 ret;
1432         gint64 start;
1433         gint32 diff_ms;
1434         gint32 wait = ms;
1435
1436         start = (ms == -1) ? 0 : mono_100ns_ticks ();
1437         do {
1438                 MONO_PREPARE_BLOCKING;
1439                         if (multiple)
1440                         ret = WaitForMultipleObjectsEx (numhandles, handles, waitall, wait, alertable);
1441                 else
1442                         ret = WaitForSingleObjectEx (handles [0], ms, alertable);
1443                 MONO_FINISH_BLOCKING;
1444
1445                 if (ret != WAIT_IO_COMPLETION)
1446                         break;
1447
1448                 exc = mono_thread_execute_interruption ();
1449                 if (exc)
1450                         mono_raise_exception (exc);
1451
1452                 if (ms == -1)
1453                         continue;
1454
1455                 /* Re-calculate ms according to the time passed */
1456                 diff_ms = (gint32)((mono_100ns_ticks () - start) / 10000);
1457                 if (diff_ms >= ms) {
1458                         ret = WAIT_TIMEOUT;
1459                         break;
1460                 }
1461                 wait = ms - diff_ms;
1462         } while (TRUE);
1463         
1464         return ret;
1465 }
1466
1467 /* FIXME: exitContext isnt documented */
1468 gboolean ves_icall_System_Threading_WaitHandle_WaitAll_internal(MonoArray *mono_handles, gint32 ms, gboolean exitContext)
1469 {
1470         HANDLE *handles;
1471         guint32 numhandles;
1472         guint32 ret;
1473         guint32 i;
1474         MonoObject *waitHandle;
1475         MonoInternalThread *thread = mono_thread_internal_current ();
1476
1477         /* Do this WaitSleepJoin check before creating objects */
1478         mono_thread_current_check_pending_interrupt ();
1479
1480         /* We fail in managed if the array has more than 64 elements */
1481         numhandles = (guint32)mono_array_length(mono_handles);
1482         handles = g_new0(HANDLE, numhandles);
1483
1484         for(i = 0; i < numhandles; i++) {       
1485                 waitHandle = mono_array_get(mono_handles, MonoObject*, i);
1486                 handles [i] = mono_wait_handle_get_handle ((MonoWaitHandle *) waitHandle);
1487         }
1488         
1489         if(ms== -1) {
1490                 ms=INFINITE;
1491         }
1492
1493         mono_thread_set_state (thread, ThreadState_WaitSleepJoin);
1494         
1495         ret = mono_wait_uninterrupted (thread, TRUE, numhandles, handles, TRUE, ms, TRUE);
1496
1497         mono_thread_clr_state (thread, ThreadState_WaitSleepJoin);
1498
1499         g_free(handles);
1500
1501         if(ret==WAIT_FAILED) {
1502                 THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Wait failed", __func__, mono_native_thread_id_get ()));
1503                 return(FALSE);
1504         } else if(ret==WAIT_TIMEOUT) {
1505                 THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Wait timed out", __func__, mono_native_thread_id_get ()));
1506                 return(FALSE);
1507         }
1508         
1509         return(TRUE);
1510 }
1511
1512 /* FIXME: exitContext isnt documented */
1513 gint32 ves_icall_System_Threading_WaitHandle_WaitAny_internal(MonoArray *mono_handles, gint32 ms, gboolean exitContext)
1514 {
1515         HANDLE handles [MAXIMUM_WAIT_OBJECTS];
1516         uintptr_t numhandles;
1517         guint32 ret;
1518         guint32 i;
1519         MonoObject *waitHandle;
1520         MonoInternalThread *thread = mono_thread_internal_current ();
1521
1522         /* Do this WaitSleepJoin check before creating objects */
1523         mono_thread_current_check_pending_interrupt ();
1524
1525         numhandles = mono_array_length(mono_handles);
1526         if (numhandles > MAXIMUM_WAIT_OBJECTS)
1527                 return WAIT_FAILED;
1528
1529         for(i = 0; i < numhandles; i++) {       
1530                 waitHandle = mono_array_get(mono_handles, MonoObject*, i);
1531                 handles [i] = mono_wait_handle_get_handle ((MonoWaitHandle *) waitHandle);
1532         }
1533         
1534         if(ms== -1) {
1535                 ms=INFINITE;
1536         }
1537
1538         mono_thread_set_state (thread, ThreadState_WaitSleepJoin);
1539
1540         ret = mono_wait_uninterrupted (thread, TRUE, numhandles, handles, FALSE, ms, TRUE);
1541
1542         mono_thread_clr_state (thread, ThreadState_WaitSleepJoin);
1543
1544         THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") returning %d", __func__, mono_native_thread_id_get (), ret));
1545
1546         /*
1547          * These need to be here.  See MSDN dos on WaitForMultipleObjects.
1548          */
1549         if (ret >= WAIT_OBJECT_0 && ret <= WAIT_OBJECT_0 + numhandles - 1) {
1550                 return ret - WAIT_OBJECT_0;
1551         }
1552         else if (ret >= WAIT_ABANDONED_0 && ret <= WAIT_ABANDONED_0 + numhandles - 1) {
1553                 return ret - WAIT_ABANDONED_0;
1554         }
1555         else {
1556                 return ret;
1557         }
1558 }
1559
1560 /* FIXME: exitContext isnt documented */
1561 gboolean ves_icall_System_Threading_WaitHandle_WaitOne_internal(MonoObject *this_obj, HANDLE handle, gint32 ms, gboolean exitContext)
1562 {
1563         guint32 ret;
1564         MonoInternalThread *thread = mono_thread_internal_current ();
1565
1566         THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") waiting for %p, %d ms", __func__, mono_native_thread_id_get (), handle, ms));
1567         
1568         if(ms== -1) {
1569                 ms=INFINITE;
1570         }
1571         
1572         mono_thread_current_check_pending_interrupt ();
1573
1574         mono_thread_set_state (thread, ThreadState_WaitSleepJoin);
1575         
1576         ret = mono_wait_uninterrupted (thread, FALSE, 1, &handle, FALSE, ms, TRUE);
1577         
1578         mono_thread_clr_state (thread, ThreadState_WaitSleepJoin);
1579         
1580         if(ret==WAIT_FAILED) {
1581                 THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Wait failed", __func__, mono_native_thread_id_get ()));
1582                 return(FALSE);
1583         } else if(ret==WAIT_TIMEOUT) {
1584                 THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Wait timed out", __func__, mono_native_thread_id_get ()));
1585                 return(FALSE);
1586         }
1587         
1588         return(TRUE);
1589 }
1590
1591 gboolean
1592 ves_icall_System_Threading_WaitHandle_SignalAndWait_Internal (HANDLE toSignal, HANDLE toWait, gint32 ms, gboolean exitContext)
1593 {
1594         guint32 ret;
1595         MonoInternalThread *thread = mono_thread_internal_current ();
1596
1597         if (ms == -1)
1598                 ms = INFINITE;
1599
1600         mono_thread_current_check_pending_interrupt ();
1601
1602         mono_thread_set_state (thread, ThreadState_WaitSleepJoin);
1603         
1604         MONO_PREPARE_BLOCKING;
1605         ret = SignalObjectAndWait (toSignal, toWait, ms, TRUE);
1606         MONO_FINISH_BLOCKING;
1607         
1608         mono_thread_clr_state (thread, ThreadState_WaitSleepJoin);
1609
1610         return  (!(ret == WAIT_TIMEOUT || ret == WAIT_IO_COMPLETION || ret == WAIT_FAILED));
1611 }
1612
1613 HANDLE ves_icall_System_Threading_Mutex_CreateMutex_internal (MonoBoolean owned, MonoString *name, MonoBoolean *created)
1614
1615         HANDLE mutex;
1616         
1617         *created = TRUE;
1618         
1619         if (name == NULL) {
1620                 mutex = CreateMutex (NULL, owned, NULL);
1621         } else {
1622                 mutex = CreateMutex (NULL, owned, mono_string_chars (name));
1623                 
1624                 if (GetLastError () == ERROR_ALREADY_EXISTS) {
1625                         *created = FALSE;
1626                 }
1627         }
1628
1629         return(mutex);
1630 }                                                                   
1631
1632 MonoBoolean ves_icall_System_Threading_Mutex_ReleaseMutex_internal (HANDLE handle ) { 
1633         return(ReleaseMutex (handle));
1634 }
1635
1636 HANDLE ves_icall_System_Threading_Mutex_OpenMutex_internal (MonoString *name,
1637                                                             gint32 rights,
1638                                                             gint32 *error)
1639 {
1640         HANDLE ret;
1641         
1642         *error = ERROR_SUCCESS;
1643         
1644         ret = OpenMutex (rights, FALSE, mono_string_chars (name));
1645         if (ret == NULL) {
1646                 *error = GetLastError ();
1647         }
1648         
1649         return(ret);
1650 }
1651
1652
1653 HANDLE ves_icall_System_Threading_Semaphore_CreateSemaphore_internal (gint32 initialCount, gint32 maximumCount, MonoString *name, MonoBoolean *created)
1654
1655         HANDLE sem;
1656         
1657         *created = TRUE;
1658         
1659         if (name == NULL) {
1660                 sem = CreateSemaphore (NULL, initialCount, maximumCount, NULL);
1661         } else {
1662                 sem = CreateSemaphore (NULL, initialCount, maximumCount,
1663                                        mono_string_chars (name));
1664                 
1665                 if (GetLastError () == ERROR_ALREADY_EXISTS) {
1666                         *created = FALSE;
1667                 }
1668         }
1669
1670         return(sem);
1671 }                                                                   
1672
1673 gint32 ves_icall_System_Threading_Semaphore_ReleaseSemaphore_internal (HANDLE handle, gint32 releaseCount, MonoBoolean *fail)
1674
1675         gint32 prevcount;
1676         
1677         *fail = !ReleaseSemaphore (handle, releaseCount, &prevcount);
1678
1679         return (prevcount);
1680 }
1681
1682 HANDLE ves_icall_System_Threading_Semaphore_OpenSemaphore_internal (MonoString *name, gint32 rights, gint32 *error)
1683 {
1684         HANDLE ret;
1685         
1686         *error = ERROR_SUCCESS;
1687         
1688         ret = OpenSemaphore (rights, FALSE, mono_string_chars (name));
1689         if (ret == NULL) {
1690                 *error = GetLastError ();
1691         }
1692         
1693         return(ret);
1694 }
1695
1696 HANDLE ves_icall_System_Threading_Events_CreateEvent_internal (MonoBoolean manual, MonoBoolean initial, MonoString *name, MonoBoolean *created)
1697 {
1698         HANDLE event;
1699         
1700         *created = TRUE;
1701
1702         if (name == NULL) {
1703                 event = CreateEvent (NULL, manual, initial, NULL);
1704         } else {
1705                 event = CreateEvent (NULL, manual, initial,
1706                                      mono_string_chars (name));
1707                 
1708                 if (GetLastError () == ERROR_ALREADY_EXISTS) {
1709                         *created = FALSE;
1710                 }
1711         }
1712         
1713         return(event);
1714 }
1715
1716 gboolean ves_icall_System_Threading_Events_SetEvent_internal (HANDLE handle) {
1717         return (SetEvent(handle));
1718 }
1719
1720 gboolean ves_icall_System_Threading_Events_ResetEvent_internal (HANDLE handle) {
1721         return (ResetEvent(handle));
1722 }
1723
1724 void
1725 ves_icall_System_Threading_Events_CloseEvent_internal (HANDLE handle) {
1726         CloseHandle (handle);
1727 }
1728
1729 HANDLE ves_icall_System_Threading_Events_OpenEvent_internal (MonoString *name,
1730                                                              gint32 rights,
1731                                                              gint32 *error)
1732 {
1733         HANDLE ret;
1734         
1735         *error = ERROR_SUCCESS;
1736         
1737         ret = OpenEvent (rights, FALSE, mono_string_chars (name));
1738         if (ret == NULL) {
1739                 *error = GetLastError ();
1740         }
1741         
1742         return(ret);
1743 }
1744
1745 gint32 ves_icall_System_Threading_Interlocked_Increment_Int (gint32 *location)
1746 {
1747         return InterlockedIncrement (location);
1748 }
1749
1750 gint64 ves_icall_System_Threading_Interlocked_Increment_Long (gint64 *location)
1751 {
1752 #if SIZEOF_VOID_P == 4
1753         if (G_UNLIKELY ((size_t)location & 0x7)) {
1754                 gint64 ret;
1755                 mono_interlocked_lock ();
1756                 (*location)++;
1757                 ret = *location;
1758                 mono_interlocked_unlock ();
1759                 return ret;
1760         }
1761 #endif
1762         return InterlockedIncrement64 (location);
1763 }
1764
1765 gint32 ves_icall_System_Threading_Interlocked_Decrement_Int (gint32 *location)
1766 {
1767         return InterlockedDecrement(location);
1768 }
1769
1770 gint64 ves_icall_System_Threading_Interlocked_Decrement_Long (gint64 * location)
1771 {
1772 #if SIZEOF_VOID_P == 4
1773         if (G_UNLIKELY ((size_t)location & 0x7)) {
1774                 gint64 ret;
1775                 mono_interlocked_lock ();
1776                 (*location)--;
1777                 ret = *location;
1778                 mono_interlocked_unlock ();
1779                 return ret;
1780         }
1781 #endif
1782         return InterlockedDecrement64 (location);
1783 }
1784
1785 gint32 ves_icall_System_Threading_Interlocked_Exchange_Int (gint32 *location, gint32 value)
1786 {
1787         return InterlockedExchange(location, value);
1788 }
1789
1790 MonoObject * ves_icall_System_Threading_Interlocked_Exchange_Object (MonoObject **location, MonoObject *value)
1791 {
1792         MonoObject *res;
1793         res = (MonoObject *) InterlockedExchangePointer((gpointer *) location, value);
1794         mono_gc_wbarrier_generic_nostore (location);
1795         return res;
1796 }
1797
1798 gpointer ves_icall_System_Threading_Interlocked_Exchange_IntPtr (gpointer *location, gpointer value)
1799 {
1800         return InterlockedExchangePointer(location, value);
1801 }
1802
1803 gfloat ves_icall_System_Threading_Interlocked_Exchange_Single (gfloat *location, gfloat value)
1804 {
1805         IntFloatUnion val, ret;
1806
1807         val.fval = value;
1808         ret.ival = InterlockedExchange((gint32 *) location, val.ival);
1809
1810         return ret.fval;
1811 }
1812
1813 gint64 
1814 ves_icall_System_Threading_Interlocked_Exchange_Long (gint64 *location, gint64 value)
1815 {
1816 #if SIZEOF_VOID_P == 4
1817         if (G_UNLIKELY ((size_t)location & 0x7)) {
1818                 gint64 ret;
1819                 mono_interlocked_lock ();
1820                 ret = *location;
1821                 *location = value;
1822                 mono_interlocked_unlock ();
1823                 return ret;
1824         }
1825 #endif
1826         return InterlockedExchange64 (location, value);
1827 }
1828
1829 gdouble 
1830 ves_icall_System_Threading_Interlocked_Exchange_Double (gdouble *location, gdouble value)
1831 {
1832         LongDoubleUnion val, ret;
1833
1834         val.fval = value;
1835         ret.ival = (gint64)InterlockedExchange64((gint64 *) location, val.ival);
1836
1837         return ret.fval;
1838 }
1839
1840 gint32 ves_icall_System_Threading_Interlocked_CompareExchange_Int(gint32 *location, gint32 value, gint32 comparand)
1841 {
1842         return InterlockedCompareExchange(location, value, comparand);
1843 }
1844
1845 gint32 ves_icall_System_Threading_Interlocked_CompareExchange_Int_Success(gint32 *location, gint32 value, gint32 comparand, MonoBoolean *success)
1846 {
1847         gint32 r = InterlockedCompareExchange(location, value, comparand);
1848         *success = r == comparand;
1849         return r;
1850 }
1851
1852 MonoObject * ves_icall_System_Threading_Interlocked_CompareExchange_Object (MonoObject **location, MonoObject *value, MonoObject *comparand)
1853 {
1854         MonoObject *res;
1855         res = (MonoObject *) InterlockedCompareExchangePointer((gpointer *) location, value, comparand);
1856         mono_gc_wbarrier_generic_nostore (location);
1857         return res;
1858 }
1859
1860 gpointer ves_icall_System_Threading_Interlocked_CompareExchange_IntPtr(gpointer *location, gpointer value, gpointer comparand)
1861 {
1862         return InterlockedCompareExchangePointer(location, value, comparand);
1863 }
1864
1865 gfloat ves_icall_System_Threading_Interlocked_CompareExchange_Single (gfloat *location, gfloat value, gfloat comparand)
1866 {
1867         IntFloatUnion val, ret, cmp;
1868
1869         val.fval = value;
1870         cmp.fval = comparand;
1871         ret.ival = InterlockedCompareExchange((gint32 *) location, val.ival, cmp.ival);
1872
1873         return ret.fval;
1874 }
1875
1876 gdouble
1877 ves_icall_System_Threading_Interlocked_CompareExchange_Double (gdouble *location, gdouble value, gdouble comparand)
1878 {
1879 #if SIZEOF_VOID_P == 8
1880         LongDoubleUnion val, comp, ret;
1881
1882         val.fval = value;
1883         comp.fval = comparand;
1884         ret.ival = (gint64)InterlockedCompareExchangePointer((gpointer *) location, (gpointer)val.ival, (gpointer)comp.ival);
1885
1886         return ret.fval;
1887 #else
1888         gdouble old;
1889
1890         mono_interlocked_lock ();
1891         old = *location;
1892         if (old == comparand)
1893                 *location = value;
1894         mono_interlocked_unlock ();
1895
1896         return old;
1897 #endif
1898 }
1899
1900 gint64 
1901 ves_icall_System_Threading_Interlocked_CompareExchange_Long (gint64 *location, gint64 value, gint64 comparand)
1902 {
1903 #if SIZEOF_VOID_P == 4
1904         if (G_UNLIKELY ((size_t)location & 0x7)) {
1905                 gint64 old;
1906                 mono_interlocked_lock ();
1907                 old = *location;
1908                 if (old == comparand)
1909                         *location = value;
1910                 mono_interlocked_unlock ();
1911                 return old;
1912         }
1913 #endif
1914         return InterlockedCompareExchange64 (location, value, comparand);
1915 }
1916
1917 MonoObject*
1918 ves_icall_System_Threading_Interlocked_CompareExchange_T (MonoObject **location, MonoObject *value, MonoObject *comparand)
1919 {
1920         MonoObject *res;
1921         res = (MonoObject *)InterlockedCompareExchangePointer ((volatile gpointer *)location, value, comparand);
1922         mono_gc_wbarrier_generic_nostore (location);
1923         return res;
1924 }
1925
1926 MonoObject*
1927 ves_icall_System_Threading_Interlocked_Exchange_T (MonoObject **location, MonoObject *value)
1928 {
1929         MonoObject *res;
1930         res = (MonoObject *)InterlockedExchangePointer ((volatile gpointer *)location, value);
1931         mono_gc_wbarrier_generic_nostore (location);
1932         return res;
1933 }
1934
1935 gint32 
1936 ves_icall_System_Threading_Interlocked_Add_Int (gint32 *location, gint32 value)
1937 {
1938         return InterlockedAdd (location, value);
1939 }
1940
1941 gint64 
1942 ves_icall_System_Threading_Interlocked_Add_Long (gint64 *location, gint64 value)
1943 {
1944 #if SIZEOF_VOID_P == 4
1945         if (G_UNLIKELY ((size_t)location & 0x7)) {
1946                 gint64 ret;
1947                 mono_interlocked_lock ();
1948                 *location += value;
1949                 ret = *location;
1950                 mono_interlocked_unlock ();
1951                 return ret;
1952         }
1953 #endif
1954         return InterlockedAdd64 (location, value);
1955 }
1956
1957 gint64 
1958 ves_icall_System_Threading_Interlocked_Read_Long (gint64 *location)
1959 {
1960 #if SIZEOF_VOID_P == 4
1961         if (G_UNLIKELY ((size_t)location & 0x7)) {
1962                 gint64 ret;
1963                 mono_interlocked_lock ();
1964                 ret = *location;
1965                 mono_interlocked_unlock ();
1966                 return ret;
1967         }
1968 #endif
1969         return InterlockedRead64 (location);
1970 }
1971
1972 void
1973 ves_icall_System_Threading_Thread_MemoryBarrier (void)
1974 {
1975         mono_memory_barrier ();
1976 }
1977
1978 void
1979 ves_icall_System_Threading_Thread_ClrState (MonoInternalThread* this_obj, guint32 state)
1980 {
1981         mono_thread_clr_state (this_obj, (MonoThreadState)state);
1982
1983         if (state & ThreadState_Background) {
1984                 /* If the thread changes the background mode, the main thread has to
1985                  * be notified, since it has to rebuild the list of threads to
1986                  * wait for.
1987                  */
1988                 SetEvent (background_change_event);
1989         }
1990 }
1991
1992 void
1993 ves_icall_System_Threading_Thread_SetState (MonoInternalThread* this_obj, guint32 state)
1994 {
1995         mono_thread_set_state (this_obj, (MonoThreadState)state);
1996         
1997         if (state & ThreadState_Background) {
1998                 /* If the thread changes the background mode, the main thread has to
1999                  * be notified, since it has to rebuild the list of threads to
2000                  * wait for.
2001                  */
2002                 SetEvent (background_change_event);
2003         }
2004 }
2005
2006 guint32
2007 ves_icall_System_Threading_Thread_GetState (MonoInternalThread* this_obj)
2008 {
2009         guint32 state;
2010
2011         LOCK_THREAD (this_obj);
2012         
2013         state = this_obj->state;
2014
2015         UNLOCK_THREAD (this_obj);
2016         
2017         return state;
2018 }
2019
2020 void ves_icall_System_Threading_Thread_Interrupt_internal (MonoThread *this_obj)
2021 {
2022         MonoInternalThread *current;
2023         gboolean throw_;
2024         MonoInternalThread *thread = this_obj->internal_thread;
2025
2026         LOCK_THREAD (thread);
2027
2028         current = mono_thread_internal_current ();
2029
2030         thread->thread_interrupt_requested = TRUE;
2031         throw_ = current != thread && (thread->state & ThreadState_WaitSleepJoin);
2032
2033         UNLOCK_THREAD (thread);
2034         
2035         if (throw_) {
2036                 abort_thread_internal (thread, TRUE, FALSE);
2037         }
2038 }
2039
2040 void mono_thread_current_check_pending_interrupt ()
2041 {
2042         MonoInternalThread *thread = mono_thread_internal_current ();
2043         gboolean throw_ = FALSE;
2044
2045         LOCK_THREAD (thread);
2046         
2047         if (thread->thread_interrupt_requested) {
2048                 throw_ = TRUE;
2049                 thread->thread_interrupt_requested = FALSE;
2050         }
2051         
2052         UNLOCK_THREAD (thread);
2053
2054         if (throw_) {
2055                 mono_raise_exception (mono_get_exception_thread_interrupted ());
2056         }
2057 }
2058
2059 void
2060 ves_icall_System_Threading_Thread_Abort (MonoInternalThread *thread, MonoObject *state)
2061 {
2062         LOCK_THREAD (thread);
2063         
2064         if ((thread->state & ThreadState_AbortRequested) != 0 || 
2065                 (thread->state & ThreadState_StopRequested) != 0 ||
2066                 (thread->state & ThreadState_Stopped) != 0)
2067         {
2068                 UNLOCK_THREAD (thread);
2069                 return;
2070         }
2071
2072         if ((thread->state & ThreadState_Unstarted) != 0) {
2073                 thread->state |= ThreadState_Aborted;
2074                 UNLOCK_THREAD (thread);
2075                 return;
2076         }
2077
2078         thread->state |= ThreadState_AbortRequested;
2079         if (thread->abort_state_handle)
2080                 mono_gchandle_free (thread->abort_state_handle);
2081         if (state) {
2082                 thread->abort_state_handle = mono_gchandle_new (state, FALSE);
2083                 g_assert (thread->abort_state_handle);
2084         } else {
2085                 thread->abort_state_handle = 0;
2086         }
2087         thread->abort_exc = NULL;
2088
2089         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Abort requested for %p (%"G_GSIZE_FORMAT")", __func__, mono_native_thread_id_get (), thread, (gsize)thread->tid));
2090
2091         /* During shutdown, we can't wait for other threads */
2092         if (!shutting_down)
2093                 /* Make sure the thread is awake */
2094                 mono_thread_resume (thread);
2095
2096         UNLOCK_THREAD (thread);
2097
2098         abort_thread_internal (thread, TRUE, TRUE);
2099 }
2100
2101 void
2102 ves_icall_System_Threading_Thread_ResetAbort (MonoThread *this_obj)
2103 {
2104         MonoInternalThread *thread = mono_thread_internal_current ();
2105         gboolean was_aborting;
2106
2107         LOCK_THREAD (thread);
2108         was_aborting = thread->state & ThreadState_AbortRequested;
2109         thread->state &= ~ThreadState_AbortRequested;
2110         UNLOCK_THREAD (thread);
2111
2112         if (!was_aborting) {
2113                 const char *msg = "Unable to reset abort because no abort was requested";
2114                 mono_set_pending_exception (mono_get_exception_thread_state (msg));
2115                 return;
2116         }
2117         thread->abort_exc = NULL;
2118         if (thread->abort_state_handle) {
2119                 mono_gchandle_free (thread->abort_state_handle);
2120                 /* This is actually not necessary - the handle
2121                    only counts if the exception is set */
2122                 thread->abort_state_handle = 0;
2123         }
2124 }
2125
2126 void
2127 mono_thread_internal_reset_abort (MonoInternalThread *thread)
2128 {
2129         LOCK_THREAD (thread);
2130
2131         thread->state &= ~ThreadState_AbortRequested;
2132
2133         if (thread->abort_exc) {
2134                 thread->abort_exc = NULL;
2135                 if (thread->abort_state_handle) {
2136                         mono_gchandle_free (thread->abort_state_handle);
2137                         /* This is actually not necessary - the handle
2138                            only counts if the exception is set */
2139                         thread->abort_state_handle = 0;
2140                 }
2141         }
2142
2143         UNLOCK_THREAD (thread);
2144 }
2145
2146 MonoObject*
2147 ves_icall_System_Threading_Thread_GetAbortExceptionState (MonoThread *this_obj)
2148 {
2149         MonoInternalThread *thread = this_obj->internal_thread;
2150         MonoObject *state, *deserialized = NULL, *exc;
2151         MonoDomain *domain;
2152
2153         if (!thread->abort_state_handle)
2154                 return NULL;
2155
2156         state = mono_gchandle_get_target (thread->abort_state_handle);
2157         g_assert (state);
2158
2159         domain = mono_domain_get ();
2160         if (mono_object_domain (state) == domain)
2161                 return state;
2162
2163         deserialized = mono_object_xdomain_representation (state, domain, &exc);
2164
2165         if (!deserialized) {
2166                 MonoException *invalid_op_exc = mono_get_exception_invalid_operation ("Thread.ExceptionState cannot access an ExceptionState from a different AppDomain");
2167                 if (exc)
2168                         MONO_OBJECT_SETREF (invalid_op_exc, inner_ex, exc);
2169                 mono_set_pending_exception (invalid_op_exc);
2170                 return NULL;
2171         }
2172
2173         return deserialized;
2174 }
2175
2176 static gboolean
2177 mono_thread_suspend (MonoInternalThread *thread)
2178 {
2179         LOCK_THREAD (thread);
2180
2181         if ((thread->state & ThreadState_Unstarted) != 0 || 
2182                 (thread->state & ThreadState_Aborted) != 0 || 
2183                 (thread->state & ThreadState_Stopped) != 0)
2184         {
2185                 UNLOCK_THREAD (thread);
2186                 return FALSE;
2187         }
2188
2189         if ((thread->state & ThreadState_Suspended) != 0 || 
2190                 (thread->state & ThreadState_SuspendRequested) != 0 ||
2191                 (thread->state & ThreadState_StopRequested) != 0) 
2192         {
2193                 UNLOCK_THREAD (thread);
2194                 return TRUE;
2195         }
2196         
2197         thread->state |= ThreadState_SuspendRequested;
2198
2199         UNLOCK_THREAD (thread);
2200
2201         suspend_thread_internal (thread, FALSE);
2202         return TRUE;
2203 }
2204
2205 void
2206 ves_icall_System_Threading_Thread_Suspend (MonoThread *this_obj)
2207 {
2208         if (!mono_thread_suspend (this_obj->internal_thread)) {
2209                 mono_set_pending_exception (mono_get_exception_thread_state ("Thread has not been started, or is dead."));
2210                 return;
2211         }
2212 }
2213
2214 /* LOCKING: LOCK_THREAD(thread) must be held */
2215 static gboolean
2216 mono_thread_resume (MonoInternalThread *thread)
2217 {
2218         if ((thread->state & ThreadState_SuspendRequested) != 0) {
2219                 thread->state &= ~ThreadState_SuspendRequested;
2220                 return TRUE;
2221         }
2222
2223         if ((thread->state & ThreadState_Suspended) == 0 ||
2224                 (thread->state & ThreadState_Unstarted) != 0 || 
2225                 (thread->state & ThreadState_Aborted) != 0 || 
2226                 (thread->state & ThreadState_Stopped) != 0)
2227         {
2228                 return FALSE;
2229         }
2230
2231         UNLOCK_THREAD (thread);
2232
2233         /* Awake the thread */
2234         if (!mono_thread_info_resume (thread_get_tid (thread)))
2235                 return FALSE;
2236
2237         LOCK_THREAD (thread);
2238
2239         thread->state &= ~ThreadState_Suspended;
2240
2241         return TRUE;
2242 }
2243
2244 void
2245 ves_icall_System_Threading_Thread_Resume (MonoThread *thread)
2246 {
2247         if (!thread->internal_thread) {
2248                 mono_set_pending_exception (mono_get_exception_thread_state ("Thread has not been started, or is dead."));
2249         } else {
2250                 LOCK_THREAD (thread->internal_thread);
2251                 if (!mono_thread_resume (thread->internal_thread))
2252                         mono_set_pending_exception (mono_get_exception_thread_state ("Thread has not been started, or is dead."));
2253                 UNLOCK_THREAD (thread->internal_thread);
2254         }
2255 }
2256
2257 static gboolean
2258 mono_threads_is_critical_method (MonoMethod *method)
2259 {
2260         switch (method->wrapper_type) {
2261         case MONO_WRAPPER_RUNTIME_INVOKE:
2262         case MONO_WRAPPER_XDOMAIN_INVOKE:
2263         case MONO_WRAPPER_XDOMAIN_DISPATCH:     
2264                 return TRUE;
2265         }
2266         return FALSE;
2267 }
2268
2269 static gboolean
2270 find_wrapper (MonoMethod *m, gint no, gint ilo, gboolean managed, gpointer data)
2271 {
2272         if (managed)
2273                 return TRUE;
2274
2275         if (mono_threads_is_critical_method (m)) {
2276                 *((gboolean*)data) = TRUE;
2277                 return TRUE;
2278         }
2279         return FALSE;
2280 }
2281
2282 static gboolean 
2283 is_running_protected_wrapper (void)
2284 {
2285         gboolean found = FALSE;
2286         mono_stack_walk (find_wrapper, &found);
2287         return found;
2288 }
2289
2290 void mono_thread_internal_stop (MonoInternalThread *thread)
2291 {
2292         LOCK_THREAD (thread);
2293
2294         if ((thread->state & ThreadState_StopRequested) != 0 ||
2295                 (thread->state & ThreadState_Stopped) != 0)
2296         {
2297                 UNLOCK_THREAD (thread);
2298                 return;
2299         }
2300         
2301         /* Make sure the thread is awake */
2302         mono_thread_resume (thread);
2303
2304         thread->state |= ThreadState_StopRequested;
2305         thread->state &= ~ThreadState_AbortRequested;
2306         
2307         UNLOCK_THREAD (thread);
2308         
2309         abort_thread_internal (thread, TRUE, TRUE);
2310 }
2311
2312 void mono_thread_stop (MonoThread *thread)
2313 {
2314         mono_thread_internal_stop (thread->internal_thread);
2315 }
2316
2317 gint8
2318 ves_icall_System_Threading_Thread_VolatileRead1 (void *ptr)
2319 {
2320         gint8 tmp;
2321         mono_atomic_load_acquire (tmp, gint8, (volatile gint8 *) ptr);
2322         return tmp;
2323 }
2324
2325 gint16
2326 ves_icall_System_Threading_Thread_VolatileRead2 (void *ptr)
2327 {
2328         gint16 tmp;
2329         mono_atomic_load_acquire (tmp, gint16, (volatile gint16 *) ptr);
2330         return tmp;
2331 }
2332
2333 gint32
2334 ves_icall_System_Threading_Thread_VolatileRead4 (void *ptr)
2335 {
2336         gint32 tmp;
2337         mono_atomic_load_acquire (tmp, gint32, (volatile gint32 *) ptr);
2338         return tmp;
2339 }
2340
2341 gint64
2342 ves_icall_System_Threading_Thread_VolatileRead8 (void *ptr)
2343 {
2344         gint64 tmp;
2345         mono_atomic_load_acquire (tmp, gint64, (volatile gint64 *) ptr);
2346         return tmp;
2347 }
2348
2349 void *
2350 ves_icall_System_Threading_Thread_VolatileReadIntPtr (void *ptr)
2351 {
2352         volatile void *tmp;
2353         mono_atomic_load_acquire (tmp, volatile void *, (volatile void **) ptr);
2354         return (void *) tmp;
2355 }
2356
2357 void *
2358 ves_icall_System_Threading_Thread_VolatileReadObject (void *ptr)
2359 {
2360         volatile MonoObject *tmp;
2361         mono_atomic_load_acquire (tmp, volatile MonoObject *, (volatile MonoObject **) ptr);
2362         return (MonoObject *) tmp;
2363 }
2364
2365 double
2366 ves_icall_System_Threading_Thread_VolatileReadDouble (void *ptr)
2367 {
2368         double tmp;
2369         mono_atomic_load_acquire (tmp, double, (volatile double *) ptr);
2370         return tmp;
2371 }
2372
2373 float
2374 ves_icall_System_Threading_Thread_VolatileReadFloat (void *ptr)
2375 {
2376         float tmp;
2377         mono_atomic_load_acquire (tmp, float, (volatile float *) ptr);
2378         return tmp;
2379 }
2380
2381 gint8
2382 ves_icall_System_Threading_Volatile_Read1 (void *ptr)
2383 {
2384         return InterlockedRead8 ((volatile gint8 *)ptr);
2385 }
2386
2387 gint16
2388 ves_icall_System_Threading_Volatile_Read2 (void *ptr)
2389 {
2390         return InterlockedRead16 ((volatile gint16 *)ptr);
2391 }
2392
2393 gint32
2394 ves_icall_System_Threading_Volatile_Read4 (void *ptr)
2395 {
2396         return InterlockedRead ((volatile gint32 *)ptr);
2397 }
2398
2399 gint64
2400 ves_icall_System_Threading_Volatile_Read8 (void *ptr)
2401 {
2402 #if SIZEOF_VOID_P == 4
2403         if (G_UNLIKELY ((size_t)ptr & 0x7)) {
2404                 gint64 val;
2405                 mono_interlocked_lock ();
2406                 val = *(gint64*)ptr;
2407                 mono_interlocked_unlock ();
2408                 return val;
2409         }
2410 #endif
2411         return InterlockedRead64 ((volatile gint64 *)ptr);
2412 }
2413
2414 void *
2415 ves_icall_System_Threading_Volatile_ReadIntPtr (void *ptr)
2416 {
2417         return InterlockedReadPointer ((volatile gpointer *)ptr);
2418 }
2419
2420 double
2421 ves_icall_System_Threading_Volatile_ReadDouble (void *ptr)
2422 {
2423         LongDoubleUnion u;
2424
2425 #if SIZEOF_VOID_P == 4
2426         if (G_UNLIKELY ((size_t)ptr & 0x7)) {
2427                 double val;
2428                 mono_interlocked_lock ();
2429                 val = *(double*)ptr;
2430                 mono_interlocked_unlock ();
2431                 return val;
2432         }
2433 #endif
2434
2435         u.ival = InterlockedRead64 ((volatile gint64 *)ptr);
2436
2437         return u.fval;
2438 }
2439
2440 float
2441 ves_icall_System_Threading_Volatile_ReadFloat (void *ptr)
2442 {
2443         IntFloatUnion u;
2444
2445         u.ival = InterlockedRead ((volatile gint32 *)ptr);
2446
2447         return u.fval;
2448 }
2449
2450 MonoObject*
2451 ves_icall_System_Threading_Volatile_Read_T (void *ptr)
2452 {
2453         return (MonoObject *)InterlockedReadPointer ((volatile gpointer *)ptr);
2454 }
2455
2456 void
2457 ves_icall_System_Threading_Thread_VolatileWrite1 (void *ptr, gint8 value)
2458 {
2459         mono_atomic_store_release ((volatile gint8 *) ptr, value);
2460 }
2461
2462 void
2463 ves_icall_System_Threading_Thread_VolatileWrite2 (void *ptr, gint16 value)
2464 {
2465         mono_atomic_store_release ((volatile gint16 *) ptr, value);
2466 }
2467
2468 void
2469 ves_icall_System_Threading_Thread_VolatileWrite4 (void *ptr, gint32 value)
2470 {
2471         mono_atomic_store_release ((volatile gint32 *) ptr, value);
2472 }
2473
2474 void
2475 ves_icall_System_Threading_Thread_VolatileWrite8 (void *ptr, gint64 value)
2476 {
2477         mono_atomic_store_release ((volatile gint64 *) ptr, value);
2478 }
2479
2480 void
2481 ves_icall_System_Threading_Thread_VolatileWriteIntPtr (void *ptr, void *value)
2482 {
2483         mono_atomic_store_release ((volatile void **) ptr, value);
2484 }
2485
2486 void
2487 ves_icall_System_Threading_Thread_VolatileWriteObject (void *ptr, MonoObject *value)
2488 {
2489         mono_gc_wbarrier_generic_store_atomic (ptr, value);
2490 }
2491
2492 void
2493 ves_icall_System_Threading_Thread_VolatileWriteDouble (void *ptr, double value)
2494 {
2495         mono_atomic_store_release ((volatile double *) ptr, value);
2496 }
2497
2498 void
2499 ves_icall_System_Threading_Thread_VolatileWriteFloat (void *ptr, float value)
2500 {
2501         mono_atomic_store_release ((volatile float *) ptr, value);
2502 }
2503
2504 void
2505 ves_icall_System_Threading_Volatile_Write1 (void *ptr, gint8 value)
2506 {
2507         InterlockedWrite8 ((volatile gint8 *)ptr, value);
2508 }
2509
2510 void
2511 ves_icall_System_Threading_Volatile_Write2 (void *ptr, gint16 value)
2512 {
2513         InterlockedWrite16 ((volatile gint16 *)ptr, value);
2514 }
2515
2516 void
2517 ves_icall_System_Threading_Volatile_Write4 (void *ptr, gint32 value)
2518 {
2519         InterlockedWrite ((volatile gint32 *)ptr, value);
2520 }
2521
2522 void
2523 ves_icall_System_Threading_Volatile_Write8 (void *ptr, gint64 value)
2524 {
2525 #if SIZEOF_VOID_P == 4
2526         if (G_UNLIKELY ((size_t)ptr & 0x7)) {
2527                 mono_interlocked_lock ();
2528                 *(gint64*)ptr = value;
2529                 mono_interlocked_unlock ();
2530                 return;
2531         }
2532 #endif
2533
2534         InterlockedWrite64 ((volatile gint64 *)ptr, value);
2535 }
2536
2537 void
2538 ves_icall_System_Threading_Volatile_WriteIntPtr (void *ptr, void *value)
2539 {
2540         InterlockedWritePointer ((volatile gpointer *)ptr, value);
2541 }
2542
2543 void
2544 ves_icall_System_Threading_Volatile_WriteDouble (void *ptr, double value)
2545 {
2546         LongDoubleUnion u;
2547
2548 #if SIZEOF_VOID_P == 4
2549         if (G_UNLIKELY ((size_t)ptr & 0x7)) {
2550                 mono_interlocked_lock ();
2551                 *(double*)ptr = value;
2552                 mono_interlocked_unlock ();
2553                 return;
2554         }
2555 #endif
2556
2557         u.fval = value;
2558
2559         InterlockedWrite64 ((volatile gint64 *)ptr, u.ival);
2560 }
2561
2562 void
2563 ves_icall_System_Threading_Volatile_WriteFloat (void *ptr, float value)
2564 {
2565         IntFloatUnion u;
2566
2567         u.fval = value;
2568
2569         InterlockedWrite ((volatile gint32 *)ptr, u.ival);
2570 }
2571
2572 void
2573 ves_icall_System_Threading_Volatile_Write_T (void *ptr, MonoObject *value)
2574 {
2575         mono_gc_wbarrier_generic_store_atomic (ptr, value);
2576 }
2577
2578 void
2579 ves_icall_System_Runtime_Remoting_Contexts_Context_RegisterContext (MonoAppContext *ctx)
2580 {
2581         mono_threads_lock ();
2582
2583         //g_print ("Registering context %d in domain %d\n", ctx->context_id, ctx->domain_id);
2584
2585         if (!contexts)
2586                 contexts = g_hash_table_new (NULL, NULL);
2587
2588         context_adjust_static_data (ctx);
2589         gpointer gch = GUINT_TO_POINTER (mono_gchandle_new_weakref (&ctx->obj, FALSE));
2590         g_hash_table_insert (contexts, gch, gch);
2591
2592         mono_threads_unlock ();
2593
2594         mono_profiler_context_loaded (ctx);
2595 }
2596
2597 void
2598 ves_icall_System_Runtime_Remoting_Contexts_Context_ReleaseContext (MonoAppContext *ctx)
2599 {
2600         /*
2601          * NOTE: Since finalizers are unreliable for the purposes of ensuring
2602          * cleanup in exceptional circumstances, we don't actually do any
2603          * cleanup work here. We instead do this when we iterate the `contexts`
2604          * hash table. The only purpose of this finalizer, at the moment, is to
2605          * notify the profiler.
2606          */
2607
2608         //g_print ("Releasing context %d in domain %d\n", ctx->context_id, ctx->domain_id);
2609
2610         mono_profiler_context_unloaded (ctx);
2611 }
2612
2613 void
2614 mono_thread_init_tls (void)
2615 {
2616         MONO_FAST_TLS_INIT (tls_current_object);
2617         mono_native_tls_alloc (&current_object_key, NULL);
2618 }
2619
2620 void mono_thread_init (MonoThreadStartCB start_cb,
2621                        MonoThreadAttachCB attach_cb)
2622 {
2623         mono_coop_mutex_init_recursive (&threads_mutex);
2624
2625         mono_os_mutex_init_recursive(&interlocked_mutex);
2626         mono_os_mutex_init_recursive(&joinable_threads_mutex);
2627         
2628         background_change_event = CreateEvent (NULL, TRUE, FALSE, NULL);
2629         g_assert(background_change_event != NULL);
2630         
2631         mono_init_static_data_info (&thread_static_info);
2632         mono_init_static_data_info (&context_static_info);
2633
2634         THREAD_DEBUG (g_message ("%s: Allocated current_object_key %d", __func__, current_object_key));
2635
2636         mono_thread_start_cb = start_cb;
2637         mono_thread_attach_cb = attach_cb;
2638
2639         /* Get a pseudo handle to the current process.  This is just a
2640          * kludge so that wapi can build a process handle if needed.
2641          * As a pseudo handle is returned, we don't need to clean
2642          * anything up.
2643          */
2644         GetCurrentProcess ();
2645 }
2646
2647 void mono_thread_cleanup (void)
2648 {
2649 #if !defined(HOST_WIN32) && !defined(RUN_IN_SUBTHREAD)
2650         MonoThreadInfo *info;
2651
2652         /* The main thread must abandon any held mutexes (particularly
2653          * important for named mutexes as they are shared across
2654          * processes, see bug 74680.)  This will happen when the
2655          * thread exits, but if it's not running in a subthread it
2656          * won't exit in time.
2657          */
2658         info = mono_thread_info_current ();
2659         wapi_thread_handle_set_exited (info->handle, mono_environment_exitcode_get ());
2660 #endif
2661
2662 #if 0
2663         /* This stuff needs more testing, it seems one of these
2664          * critical sections can be locked when mono_thread_cleanup is
2665          * called.
2666          */
2667         mono_coop_mutex_destroy (&threads_mutex);
2668         mono_os_mutex_destroy (&interlocked_mutex);
2669         mono_os_mutex_destroy (&delayed_free_table_mutex);
2670         mono_os_mutex_destroy (&small_id_mutex);
2671         CloseHandle (background_change_event);
2672 #endif
2673
2674         mono_native_tls_free (current_object_key);
2675 }
2676
2677 void
2678 mono_threads_install_cleanup (MonoThreadCleanupFunc func)
2679 {
2680         mono_thread_cleanup_fn = func;
2681 }
2682
2683 void
2684 mono_thread_set_manage_callback (MonoThread *thread, MonoThreadManageCallback func)
2685 {
2686         thread->internal_thread->manage_callback = func;
2687 }
2688
2689 void mono_threads_install_notify_pending_exc (MonoThreadNotifyPendingExcFunc func)
2690 {
2691         mono_thread_notify_pending_exc_fn = func;
2692 }
2693
2694 G_GNUC_UNUSED
2695 static void print_tids (gpointer key, gpointer value, gpointer user)
2696 {
2697         /* GPOINTER_TO_UINT breaks horribly if sizeof(void *) >
2698          * sizeof(uint) and a cast to uint would overflow
2699          */
2700         /* Older versions of glib don't have G_GSIZE_FORMAT, so just
2701          * print this as a pointer.
2702          */
2703         g_message ("Waiting for: %p", key);
2704 }
2705
2706 struct wait_data 
2707 {
2708         HANDLE handles[MAXIMUM_WAIT_OBJECTS];
2709         MonoInternalThread *threads[MAXIMUM_WAIT_OBJECTS];
2710         guint32 num;
2711 };
2712
2713 static void wait_for_tids (struct wait_data *wait, guint32 timeout)
2714 {
2715         guint32 i, ret;
2716         
2717         THREAD_DEBUG (g_message("%s: %d threads to wait for in this batch", __func__, wait->num));
2718
2719         MONO_PREPARE_BLOCKING;
2720         ret=WaitForMultipleObjectsEx(wait->num, wait->handles, TRUE, timeout, TRUE);
2721         MONO_FINISH_BLOCKING;
2722
2723         if(ret==WAIT_FAILED) {
2724                 /* See the comment in build_wait_tids() */
2725                 THREAD_DEBUG (g_message ("%s: Wait failed", __func__));
2726                 return;
2727         }
2728         
2729         for(i=0; i<wait->num; i++)
2730                 CloseHandle (wait->handles[i]);
2731
2732         if (ret == WAIT_TIMEOUT)
2733                 return;
2734
2735         for(i=0; i<wait->num; i++) {
2736                 gsize tid = wait->threads[i]->tid;
2737
2738                 /*
2739                  * On !win32, when the thread handle becomes signalled, it just means the thread has exited user code,
2740                  * it can still run io-layer etc. code. So wait for it to really exit.
2741                  * FIXME: This won't join threads which are not in the joinable_hash yet.
2742                  */
2743                 mono_thread_join ((gpointer)tid);
2744
2745                 mono_threads_lock ();
2746                 if(mono_g_hash_table_lookup (threads, (gpointer)tid)!=NULL) {
2747                         /* This thread must have been killed, because
2748                          * it hasn't cleaned itself up. (It's just
2749                          * possible that the thread exited before the
2750                          * parent thread had a chance to store the
2751                          * handle, and now there is another pointer to
2752                          * the already-exited thread stored.  In this
2753                          * case, we'll just get two
2754                          * mono_profiler_thread_end() calls for the
2755                          * same thread.)
2756                          */
2757         
2758                         mono_threads_unlock ();
2759                         THREAD_DEBUG (g_message ("%s: cleaning up after thread %p (%"G_GSIZE_FORMAT")", __func__, wait->threads[i], tid));
2760                         thread_cleanup (wait->threads[i]);
2761                 } else {
2762                         mono_threads_unlock ();
2763                 }
2764         }
2765 }
2766
2767 static void wait_for_tids_or_state_change (struct wait_data *wait, guint32 timeout)
2768 {
2769         guint32 i, ret, count;
2770         
2771         THREAD_DEBUG (g_message("%s: %d threads to wait for in this batch", __func__, wait->num));
2772
2773         /* Add the thread state change event, so it wakes up if a thread changes
2774          * to background mode.
2775          */
2776         count = wait->num;
2777         if (count < MAXIMUM_WAIT_OBJECTS) {
2778                 wait->handles [count] = background_change_event;
2779                 count++;
2780         }
2781
2782         MONO_PREPARE_BLOCKING;
2783         ret=WaitForMultipleObjectsEx (count, wait->handles, FALSE, timeout, TRUE);
2784         MONO_FINISH_BLOCKING;
2785
2786         if(ret==WAIT_FAILED) {
2787                 /* See the comment in build_wait_tids() */
2788                 THREAD_DEBUG (g_message ("%s: Wait failed", __func__));
2789                 return;
2790         }
2791         
2792         for(i=0; i<wait->num; i++)
2793                 CloseHandle (wait->handles[i]);
2794
2795         if (ret == WAIT_TIMEOUT)
2796                 return;
2797         
2798         if (ret < wait->num) {
2799                 gsize tid = wait->threads[ret]->tid;
2800                 mono_threads_lock ();
2801                 if (mono_g_hash_table_lookup (threads, (gpointer)tid)!=NULL) {
2802                         /* See comment in wait_for_tids about thread cleanup */
2803                         mono_threads_unlock ();
2804                         THREAD_DEBUG (g_message ("%s: cleaning up after thread %"G_GSIZE_FORMAT, __func__, tid));
2805                         thread_cleanup (wait->threads [ret]);
2806                 } else
2807                         mono_threads_unlock ();
2808         }
2809 }
2810
2811 static void build_wait_tids (gpointer key, gpointer value, gpointer user)
2812 {
2813         struct wait_data *wait=(struct wait_data *)user;
2814
2815         if(wait->num<MAXIMUM_WAIT_OBJECTS) {
2816                 HANDLE handle;
2817                 MonoInternalThread *thread=(MonoInternalThread *)value;
2818
2819                 /* Ignore background threads, we abort them later */
2820                 /* Do not lock here since it is not needed and the caller holds threads_lock */
2821                 if (thread->state & ThreadState_Background) {
2822                         THREAD_DEBUG (g_message ("%s: ignoring background thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2823                         return; /* just leave, ignore */
2824                 }
2825                 
2826                 if (mono_gc_is_finalizer_internal_thread (thread)) {
2827                         THREAD_DEBUG (g_message ("%s: ignoring finalizer thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2828                         return;
2829                 }
2830
2831                 if (thread == mono_thread_internal_current ()) {
2832                         THREAD_DEBUG (g_message ("%s: ignoring current thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2833                         return;
2834                 }
2835
2836                 if (mono_thread_get_main () && (thread == mono_thread_get_main ()->internal_thread)) {
2837                         THREAD_DEBUG (g_message ("%s: ignoring main thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2838                         return;
2839                 }
2840
2841                 if (thread->flags & MONO_THREAD_FLAG_DONT_MANAGE) {
2842                         THREAD_DEBUG (g_message ("%s: ignoring thread %" G_GSIZE_FORMAT "with DONT_MANAGE flag set.", __func__, (gsize)thread->tid));
2843                         return;
2844                 }
2845
2846                 handle = mono_threads_open_thread_handle (thread->handle, thread_get_tid (thread));
2847                 if (handle == NULL) {
2848                         THREAD_DEBUG (g_message ("%s: ignoring unopenable thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2849                         return;
2850                 }
2851                 
2852                 THREAD_DEBUG (g_message ("%s: Invoking mono_thread_manage callback on thread %p", __func__, thread));
2853                 if ((thread->manage_callback == NULL) || (thread->manage_callback (thread->root_domain_thread) == TRUE)) {
2854                         wait->handles[wait->num]=handle;
2855                         wait->threads[wait->num]=thread;
2856                         wait->num++;
2857
2858                         THREAD_DEBUG (g_message ("%s: adding thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2859                 } else {
2860                         THREAD_DEBUG (g_message ("%s: ignoring (because of callback) thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2861                 }
2862                 
2863                 
2864         } else {
2865                 /* Just ignore the rest, we can't do anything with
2866                  * them yet
2867                  */
2868         }
2869 }
2870
2871 static gboolean
2872 remove_and_abort_threads (gpointer key, gpointer value, gpointer user)
2873 {
2874         struct wait_data *wait=(struct wait_data *)user;
2875         MonoNativeThreadId self = mono_native_thread_id_get ();
2876         MonoInternalThread *thread = (MonoInternalThread *)value;
2877         HANDLE handle;
2878
2879         if (wait->num >= MAXIMUM_WAIT_OBJECTS)
2880                 return FALSE;
2881
2882         /* The finalizer thread is not a background thread */
2883         if (!mono_native_thread_id_equals (thread_get_tid (thread), self)
2884              && (thread->state & ThreadState_Background) != 0
2885              && (thread->flags & MONO_THREAD_FLAG_DONT_MANAGE) == 0
2886         ) {
2887                 handle = mono_threads_open_thread_handle (thread->handle, thread_get_tid (thread));
2888                 if (handle == NULL)
2889                         return FALSE;
2890
2891                 /* printf ("A: %d\n", wait->num); */
2892                 wait->handles[wait->num]=thread->handle;
2893                 wait->threads[wait->num]=thread;
2894                 wait->num++;
2895
2896                 THREAD_DEBUG (g_print ("%s: Aborting id: %"G_GSIZE_FORMAT"\n", __func__, (gsize)thread->tid));
2897                 mono_thread_internal_stop (thread);
2898                 return TRUE;
2899         }
2900
2901         return !mono_native_thread_id_equals (thread_get_tid (thread), self)
2902                 && !mono_gc_is_finalizer_internal_thread (thread);
2903 }
2904
2905 /** 
2906  * mono_threads_set_shutting_down:
2907  *
2908  * Is called by a thread that wants to shut down Mono. If the runtime is already
2909  * shutting down, the calling thread is suspended/stopped, and this function never
2910  * returns.
2911  */
2912 void
2913 mono_threads_set_shutting_down (void)
2914 {
2915         MonoInternalThread *current_thread = mono_thread_internal_current ();
2916
2917         mono_threads_lock ();
2918
2919         if (shutting_down) {
2920                 mono_threads_unlock ();
2921
2922                 /* Make sure we're properly suspended/stopped */
2923
2924                 LOCK_THREAD (current_thread);
2925
2926                 if ((current_thread->state & ThreadState_SuspendRequested) ||
2927                     (current_thread->state & ThreadState_AbortRequested) ||
2928                     (current_thread->state & ThreadState_StopRequested)) {
2929                         UNLOCK_THREAD (current_thread);
2930                         mono_thread_execute_interruption ();
2931                 } else {
2932                         current_thread->state |= ThreadState_Stopped;
2933                         UNLOCK_THREAD (current_thread);
2934                 }
2935
2936                 /*since we're killing the thread, unset the current domain.*/
2937                 mono_domain_unset ();
2938
2939                 /* Wake up other threads potentially waiting for us */
2940                 mono_thread_info_exit ();
2941         } else {
2942                 shutting_down = TRUE;
2943
2944                 /* Not really a background state change, but this will
2945                  * interrupt the main thread if it is waiting for all
2946                  * the other threads.
2947                  */
2948                 SetEvent (background_change_event);
2949                 
2950                 mono_threads_unlock ();
2951         }
2952 }
2953
2954 void mono_thread_manage (void)
2955 {
2956         struct wait_data wait_data;
2957         struct wait_data *wait = &wait_data;
2958
2959         memset (wait, 0, sizeof (struct wait_data));
2960         /* join each thread that's still running */
2961         THREAD_DEBUG (g_message ("%s: Joining each running thread...", __func__));
2962         
2963         mono_threads_lock ();
2964         if(threads==NULL) {
2965                 THREAD_DEBUG (g_message("%s: No threads", __func__));
2966                 mono_threads_unlock ();
2967                 return;
2968         }
2969         mono_threads_unlock ();
2970         
2971         do {
2972                 mono_threads_lock ();
2973                 if (shutting_down) {
2974                         /* somebody else is shutting down */
2975                         mono_threads_unlock ();
2976                         break;
2977                 }
2978                 THREAD_DEBUG (g_message ("%s: There are %d threads to join", __func__, mono_g_hash_table_size (threads));
2979                         mono_g_hash_table_foreach (threads, print_tids, NULL));
2980         
2981                 ResetEvent (background_change_event);
2982                 wait->num=0;
2983                 /*We must zero all InternalThread pointers to avoid making the GC unhappy.*/
2984                 memset (wait->threads, 0, MAXIMUM_WAIT_OBJECTS * SIZEOF_VOID_P);
2985                 mono_g_hash_table_foreach (threads, build_wait_tids, wait);
2986                 mono_threads_unlock ();
2987                 if(wait->num>0) {
2988                         /* Something to wait for */
2989                         wait_for_tids_or_state_change (wait, INFINITE);
2990                 }
2991                 THREAD_DEBUG (g_message ("%s: I have %d threads after waiting.", __func__, wait->num));
2992         } while(wait->num>0);
2993
2994         /* Mono is shutting down, so just wait for the end */
2995         if (!mono_runtime_try_shutdown ()) {
2996                 /*FIXME mono_thread_suspend probably should call mono_thread_execute_interruption when self interrupting. */
2997                 mono_thread_suspend (mono_thread_internal_current ());
2998                 mono_thread_execute_interruption ();
2999         }
3000
3001         /* 
3002          * Remove everything but the finalizer thread and self.
3003          * Also abort all the background threads
3004          * */
3005         do {
3006                 mono_threads_lock ();
3007
3008                 wait->num = 0;
3009                 /*We must zero all InternalThread pointers to avoid making the GC unhappy.*/
3010                 memset (wait->threads, 0, MAXIMUM_WAIT_OBJECTS * SIZEOF_VOID_P);
3011                 mono_g_hash_table_foreach_remove (threads, remove_and_abort_threads, wait);
3012
3013                 mono_threads_unlock ();
3014
3015                 THREAD_DEBUG (g_message ("%s: wait->num is now %d", __func__, wait->num));
3016                 if(wait->num>0) {
3017                         /* Something to wait for */
3018                         wait_for_tids (wait, INFINITE);
3019                 }
3020         } while (wait->num > 0);
3021         
3022         /* 
3023          * give the subthreads a chance to really quit (this is mainly needed
3024          * to get correct user and system times from getrusage/wait/time(1)).
3025          * This could be removed if we avoid pthread_detach() and use pthread_join().
3026          */
3027         mono_thread_info_yield ();
3028 }
3029
3030 static void
3031 collect_threads_for_suspend (gpointer key, gpointer value, gpointer user_data)
3032 {
3033         MonoInternalThread *thread = (MonoInternalThread*)value;
3034         struct wait_data *wait = (struct wait_data*)user_data;
3035         HANDLE handle;
3036
3037         /* 
3038          * We try to exclude threads early, to avoid running into the MAXIMUM_WAIT_OBJECTS
3039          * limitation.
3040          * This needs no locking.
3041          */
3042         if ((thread->state & ThreadState_Suspended) != 0 || 
3043                 (thread->state & ThreadState_Stopped) != 0)
3044                 return;
3045
3046         if (wait->num<MAXIMUM_WAIT_OBJECTS) {
3047                 handle = mono_threads_open_thread_handle (thread->handle, thread_get_tid (thread));
3048                 if (handle == NULL)
3049                         return;
3050
3051                 wait->handles [wait->num] = handle;
3052                 wait->threads [wait->num] = thread;
3053                 wait->num++;
3054         }
3055 }
3056
3057 /*
3058  * mono_thread_suspend_all_other_threads:
3059  *
3060  *  Suspend all managed threads except the finalizer thread and this thread. It is
3061  * not possible to resume them later.
3062  */
3063 void mono_thread_suspend_all_other_threads (void)
3064 {
3065         struct wait_data wait_data;
3066         struct wait_data *wait = &wait_data;
3067         int i;
3068         MonoNativeThreadId self = mono_native_thread_id_get ();
3069         guint32 eventidx = 0;
3070         gboolean starting, finished;
3071
3072         memset (wait, 0, sizeof (struct wait_data));
3073         /*
3074          * The other threads could be in an arbitrary state at this point, i.e.
3075          * they could be starting up, shutting down etc. This means that there could be
3076          * threads which are not even in the threads hash table yet.
3077          */
3078
3079         /* 
3080          * First we set a barrier which will be checked by all threads before they
3081          * are added to the threads hash table, and they will exit if the flag is set.
3082          * This ensures that no threads could be added to the hash later.
3083          * We will use shutting_down as the barrier for now.
3084          */
3085         g_assert (shutting_down);
3086
3087         /*
3088          * We make multiple calls to WaitForMultipleObjects since:
3089          * - we can only wait for MAXIMUM_WAIT_OBJECTS threads
3090          * - some threads could exit without becoming suspended
3091          */
3092         finished = FALSE;
3093         while (!finished) {
3094                 /*
3095                  * Make a copy of the hashtable since we can't do anything with
3096                  * threads while threads_mutex is held.
3097                  */
3098                 wait->num = 0;
3099                 /*We must zero all InternalThread pointers to avoid making the GC unhappy.*/
3100                 memset (wait->threads, 0, MAXIMUM_WAIT_OBJECTS * SIZEOF_VOID_P);
3101                 mono_threads_lock ();
3102                 mono_g_hash_table_foreach (threads, collect_threads_for_suspend, wait);
3103                 mono_threads_unlock ();
3104
3105                 eventidx = 0;
3106                 /* Get the suspended events that we'll be waiting for */
3107                 for (i = 0; i < wait->num; ++i) {
3108                         MonoInternalThread *thread = wait->threads [i];
3109
3110                         if (mono_native_thread_id_equals (thread_get_tid (thread), self)
3111                              || mono_gc_is_finalizer_internal_thread (thread)
3112                              || (thread->flags & MONO_THREAD_FLAG_DONT_MANAGE)
3113                         ) {
3114                                 //CloseHandle (wait->handles [i]);
3115                                 wait->threads [i] = NULL; /* ignore this thread in next loop */
3116                                 continue;
3117                         }
3118
3119                         LOCK_THREAD (thread);
3120
3121                         if ((thread->state & ThreadState_Suspended) != 0 || 
3122                                 (thread->state & ThreadState_StopRequested) != 0 ||
3123                                 (thread->state & ThreadState_Stopped) != 0) {
3124                                 UNLOCK_THREAD (thread);
3125                                 CloseHandle (wait->handles [i]);
3126                                 wait->threads [i] = NULL; /* ignore this thread in next loop */
3127                                 continue;
3128                         }
3129
3130                         ++eventidx;
3131
3132                         /* Convert abort requests into suspend requests */
3133                         if ((thread->state & ThreadState_AbortRequested) != 0)
3134                                 thread->state &= ~ThreadState_AbortRequested;
3135                         
3136                         thread->state |= ThreadState_SuspendRequested;
3137
3138                         UNLOCK_THREAD (thread);
3139
3140                         /* Signal the thread to suspend */
3141                         suspend_thread_internal (thread, TRUE);
3142                 }
3143                 if (eventidx <= 0) {
3144                         /* 
3145                          * If there are threads which are starting up, we wait until they
3146                          * are suspended when they try to register in the threads hash.
3147                          * This is guaranteed to finish, since the threads which can create new
3148                          * threads get suspended after a while.
3149                          * FIXME: The finalizer thread can still create new threads.
3150                          */
3151                         mono_threads_lock ();
3152                         if (threads_starting_up)
3153                                 starting = mono_g_hash_table_size (threads_starting_up) > 0;
3154                         else
3155                                 starting = FALSE;
3156                         mono_threads_unlock ();
3157                         if (starting)
3158                                 mono_thread_info_sleep (100, NULL);
3159                         else
3160                                 finished = TRUE;
3161                 }
3162         }
3163 }
3164
3165 typedef struct {
3166         MonoInternalThread *thread;
3167         MonoStackFrameInfo *frames;
3168         int nframes, max_frames;
3169         int nthreads, max_threads;
3170         MonoInternalThread **threads;
3171 } ThreadDumpUserData;
3172
3173 static gboolean thread_dump_requested;
3174
3175 /* This needs to be async safe */
3176 static gboolean
3177 collect_frame (MonoStackFrameInfo *frame, MonoContext *ctx, gpointer data)
3178 {
3179         ThreadDumpUserData *ud = (ThreadDumpUserData *)data;
3180
3181         if (ud->nframes < ud->max_frames) {
3182                 memcpy (&ud->frames [ud->nframes], frame, sizeof (MonoStackFrameInfo));
3183                 ud->nframes ++;
3184         }
3185
3186         return FALSE;
3187 }
3188
3189 /* This needs to be async safe */
3190 static SuspendThreadResult
3191 get_thread_dump (MonoThreadInfo *info, gpointer ud)
3192 {
3193         ThreadDumpUserData *user_data = (ThreadDumpUserData *)ud;
3194         MonoInternalThread *thread = user_data->thread;
3195
3196 #if 0
3197 /* This no longer works with remote unwinding */
3198 #ifndef HOST_WIN32
3199         wapi_desc = wapi_current_thread_desc ();
3200         g_string_append_printf (text, " tid=0x%p this=0x%p %s\n", (gpointer)(gsize)thread->tid, thread,  wapi_desc);
3201         free (wapi_desc);
3202 #endif
3203 #endif
3204
3205         if (thread == mono_thread_internal_current ())
3206                 mono_get_eh_callbacks ()->mono_walk_stack_with_ctx (collect_frame, NULL, MONO_UNWIND_SIGNAL_SAFE, ud);
3207         else
3208                 mono_get_eh_callbacks ()->mono_walk_stack_with_state (collect_frame, mono_thread_info_get_suspend_state (info), MONO_UNWIND_SIGNAL_SAFE, ud);
3209
3210         return MonoResumeThread;
3211 }
3212
3213 typedef struct {
3214         int nthreads, max_threads;
3215         MonoInternalThread **threads;
3216 } CollectThreadsUserData;
3217
3218 static void
3219 collect_thread (gpointer key, gpointer value, gpointer user)
3220 {
3221         CollectThreadsUserData *ud = (CollectThreadsUserData *)user;
3222         MonoInternalThread *thread = (MonoInternalThread *)value;
3223
3224         if (ud->nthreads < ud->max_threads)
3225                 ud->threads [ud->nthreads ++] = thread;
3226 }
3227
3228 /*
3229  * Collect running threads into the THREADS array.
3230  * THREADS should be an array allocated on the stack.
3231  */
3232 static int
3233 collect_threads (MonoInternalThread **thread_array, int max_threads)
3234 {
3235         CollectThreadsUserData ud;
3236
3237         memset (&ud, 0, sizeof (ud));
3238         /* This array contains refs, but its on the stack, so its ok */
3239         ud.threads = thread_array;
3240         ud.max_threads = max_threads;
3241
3242         mono_threads_lock ();
3243         mono_g_hash_table_foreach (threads, collect_thread, &ud);
3244         mono_threads_unlock ();
3245
3246         return ud.nthreads;
3247 }
3248
3249 static void
3250 dump_thread (MonoInternalThread *thread, ThreadDumpUserData *ud)
3251 {
3252         GString* text = g_string_new (0);
3253         char *name;
3254         GError *error = NULL;
3255         int i;
3256
3257         ud->thread = thread;
3258         ud->nframes = 0;
3259
3260         /* Collect frames for the thread */
3261         if (thread == mono_thread_internal_current ()) {
3262                 get_thread_dump (mono_thread_info_current (), ud);
3263         } else {
3264                 mono_thread_info_safe_suspend_and_run (thread_get_tid (thread), FALSE, get_thread_dump, ud);
3265         }
3266
3267         /*
3268          * Do all the non async-safe work outside of get_thread_dump.
3269          */
3270         if (thread->name) {
3271                 name = g_utf16_to_utf8 (thread->name, thread->name_len, NULL, NULL, &error);
3272                 g_assert (!error);
3273                 g_string_append_printf (text, "\n\"%s\"", name);
3274                 g_free (name);
3275         }
3276         else if (thread->threadpool_thread) {
3277                 g_string_append (text, "\n\"<threadpool thread>\"");
3278         } else {
3279                 g_string_append (text, "\n\"<unnamed thread>\"");
3280         }
3281
3282         for (i = 0; i < ud->nframes; ++i) {
3283                 MonoStackFrameInfo *frame = &ud->frames [i];
3284                 MonoMethod *method = NULL;
3285
3286                 if (frame->type == FRAME_TYPE_MANAGED)
3287                         method = mono_jit_info_get_method (frame->ji);
3288
3289                 if (method) {
3290                         gchar *location = mono_debug_print_stack_frame (method, frame->native_offset, frame->domain);
3291                         g_string_append_printf (text, "  %s\n", location);
3292                         g_free (location);
3293                 } else {
3294                         g_string_append_printf (text, "  at <unknown> <0x%05x>\n", frame->native_offset);
3295                 }
3296         }
3297
3298         fprintf (stdout, "%s", text->str);
3299
3300 #if PLATFORM_WIN32 && TARGET_WIN32 && _DEBUG
3301         OutputDebugStringA(text->str);
3302 #endif
3303
3304         g_string_free (text, TRUE);
3305         fflush (stdout);
3306 }
3307
3308 void
3309 mono_threads_perform_thread_dump (void)
3310 {
3311         ThreadDumpUserData ud;
3312         MonoInternalThread *thread_array [128];
3313         int tindex, nthreads;
3314
3315         if (!thread_dump_requested)
3316                 return;
3317
3318         printf ("Full thread dump:\n");
3319
3320         /* Make a copy of the threads hash to avoid doing work inside threads_lock () */
3321         nthreads = collect_threads (thread_array, 128);
3322
3323         memset (&ud, 0, sizeof (ud));
3324         ud.frames = g_new0 (MonoStackFrameInfo, 256);
3325         ud.max_frames = 256;
3326
3327         for (tindex = 0; tindex < nthreads; ++tindex)
3328                 dump_thread (thread_array [tindex], &ud);
3329
3330         g_free (ud.frames);
3331
3332         thread_dump_requested = FALSE;
3333 }
3334
3335 /* Obtain the thread dump of all threads */
3336 static void
3337 mono_threads_get_thread_dump (MonoArray **out_threads, MonoArray **out_stack_frames)
3338 {
3339         ThreadDumpUserData ud;
3340         MonoInternalThread *thread_array [128];
3341         MonoDomain *domain = mono_domain_get ();
3342         MonoDebugSourceLocation *location;
3343         int tindex, nthreads;
3344
3345         *out_threads = NULL;
3346         *out_stack_frames = NULL;
3347
3348         /* Make a copy of the threads hash to avoid doing work inside threads_lock () */
3349         nthreads = collect_threads (thread_array, 128);
3350
3351         memset (&ud, 0, sizeof (ud));
3352         ud.frames = g_new0 (MonoStackFrameInfo, 256);
3353         ud.max_frames = 256;
3354
3355         *out_threads = mono_array_new (domain, mono_defaults.thread_class, nthreads);
3356         *out_stack_frames = mono_array_new (domain, mono_defaults.array_class, nthreads);
3357
3358         for (tindex = 0; tindex < nthreads; ++tindex) {
3359                 MonoInternalThread *thread = thread_array [tindex];
3360                 MonoArray *thread_frames;
3361                 int i;
3362
3363                 ud.thread = thread;
3364                 ud.nframes = 0;
3365
3366                 /* Collect frames for the thread */
3367                 if (thread == mono_thread_internal_current ()) {
3368                         get_thread_dump (mono_thread_info_current (), &ud);
3369                 } else {
3370                         mono_thread_info_safe_suspend_and_run (thread_get_tid (thread), FALSE, get_thread_dump, &ud);
3371                 }
3372
3373                 mono_array_setref_fast (*out_threads, tindex, mono_thread_current_for_thread (thread));
3374
3375                 thread_frames = mono_array_new (domain, mono_defaults.stack_frame_class, ud.nframes);
3376                 mono_array_setref_fast (*out_stack_frames, tindex, thread_frames);
3377
3378                 for (i = 0; i < ud.nframes; ++i) {
3379                         MonoStackFrameInfo *frame = &ud.frames [i];
3380                         MonoMethod *method = NULL;
3381                         MonoStackFrame *sf = (MonoStackFrame *)mono_object_new (domain, mono_defaults.stack_frame_class);
3382
3383                         sf->native_offset = frame->native_offset;
3384
3385                         if (frame->type == FRAME_TYPE_MANAGED)
3386                                 method = mono_jit_info_get_method (frame->ji);
3387
3388                         if (method) {
3389                                 sf->method_address = (gsize) frame->ji->code_start;
3390
3391                                 MONO_OBJECT_SETREF (sf, method, mono_method_get_object (domain, method, NULL));
3392
3393                                 location = mono_debug_lookup_source_location (method, frame->native_offset, domain);
3394                                 if (location) {
3395                                         sf->il_offset = location->il_offset;
3396
3397                                         if (location && location->source_file) {
3398                                                 MONO_OBJECT_SETREF (sf, filename, mono_string_new (domain, location->source_file));
3399                                                 sf->line = location->row;
3400                                                 sf->column = location->column;
3401                                         }
3402                                         mono_debug_free_source_location (location);
3403                                 } else {
3404                                         sf->il_offset = -1;
3405                                 }
3406                         }
3407                         mono_array_setref (thread_frames, i, sf);
3408                 }
3409         }
3410
3411         g_free (ud.frames);
3412 }
3413
3414 /**
3415  * mono_threads_request_thread_dump:
3416  *
3417  *   Ask all threads except the current to print their stacktrace to stdout.
3418  */
3419 void
3420 mono_threads_request_thread_dump (void)
3421 {
3422         /*The new thread dump code runs out of the finalizer thread. */
3423         thread_dump_requested = TRUE;
3424         mono_gc_finalize_notify ();
3425 }
3426
3427 struct ref_stack {
3428         gpointer *refs;
3429         gint allocated; /* +1 so that refs [allocated] == NULL */
3430         gint bottom;
3431 };
3432
3433 typedef struct ref_stack RefStack;
3434
3435 static RefStack *
3436 ref_stack_new (gint initial_size)
3437 {
3438         RefStack *rs;
3439
3440         initial_size = MAX (initial_size, 16) + 1;
3441         rs = g_new0 (RefStack, 1);
3442         rs->refs = g_new0 (gpointer, initial_size);
3443         rs->allocated = initial_size;
3444         return rs;
3445 }
3446
3447 static void
3448 ref_stack_destroy (gpointer ptr)
3449 {
3450         RefStack *rs = (RefStack *)ptr;
3451
3452         if (rs != NULL) {
3453                 g_free (rs->refs);
3454                 g_free (rs);
3455         }
3456 }
3457
3458 static void
3459 ref_stack_push (RefStack *rs, gpointer ptr)
3460 {
3461         g_assert (rs != NULL);
3462
3463         if (rs->bottom >= rs->allocated) {
3464                 rs->refs = (void **)g_realloc (rs->refs, rs->allocated * 2 * sizeof (gpointer) + 1);
3465                 rs->allocated <<= 1;
3466                 rs->refs [rs->allocated] = NULL;
3467         }
3468         rs->refs [rs->bottom++] = ptr;
3469 }
3470
3471 static void
3472 ref_stack_pop (RefStack *rs)
3473 {
3474         if (rs == NULL || rs->bottom == 0)
3475                 return;
3476
3477         rs->bottom--;
3478         rs->refs [rs->bottom] = NULL;
3479 }
3480
3481 static gboolean
3482 ref_stack_find (RefStack *rs, gpointer ptr)
3483 {
3484         gpointer *refs;
3485
3486         if (rs == NULL)
3487                 return FALSE;
3488
3489         for (refs = rs->refs; refs && *refs; refs++) {
3490                 if (*refs == ptr)
3491                         return TRUE;
3492         }
3493         return FALSE;
3494 }
3495
3496 /*
3497  * mono_thread_push_appdomain_ref:
3498  *
3499  *   Register that the current thread may have references to objects in domain 
3500  * @domain on its stack. Each call to this function should be paired with a 
3501  * call to pop_appdomain_ref.
3502  */
3503 void 
3504 mono_thread_push_appdomain_ref (MonoDomain *domain)
3505 {
3506         MonoInternalThread *thread = mono_thread_internal_current ();
3507
3508         if (thread) {
3509                 /* printf ("PUSH REF: %"G_GSIZE_FORMAT" -> %s.\n", (gsize)thread->tid, domain->friendly_name); */
3510                 SPIN_LOCK (thread->lock_thread_id);
3511                 if (thread->appdomain_refs == NULL)
3512                         thread->appdomain_refs = ref_stack_new (16);
3513                 ref_stack_push ((RefStack *)thread->appdomain_refs, domain);
3514                 SPIN_UNLOCK (thread->lock_thread_id);
3515         }
3516 }
3517
3518 void
3519 mono_thread_pop_appdomain_ref (void)
3520 {
3521         MonoInternalThread *thread = mono_thread_internal_current ();
3522
3523         if (thread) {
3524                 /* printf ("POP REF: %"G_GSIZE_FORMAT" -> %s.\n", (gsize)thread->tid, ((MonoDomain*)(thread->appdomain_refs->data))->friendly_name); */
3525                 SPIN_LOCK (thread->lock_thread_id);
3526                 ref_stack_pop ((RefStack *)thread->appdomain_refs);
3527                 SPIN_UNLOCK (thread->lock_thread_id);
3528         }
3529 }
3530
3531 gboolean
3532 mono_thread_internal_has_appdomain_ref (MonoInternalThread *thread, MonoDomain *domain)
3533 {
3534         gboolean res;
3535         SPIN_LOCK (thread->lock_thread_id);
3536         res = ref_stack_find ((RefStack *)thread->appdomain_refs, domain);
3537         SPIN_UNLOCK (thread->lock_thread_id);
3538         return res;
3539 }
3540
3541 gboolean
3542 mono_thread_has_appdomain_ref (MonoThread *thread, MonoDomain *domain)
3543 {
3544         return mono_thread_internal_has_appdomain_ref (thread->internal_thread, domain);
3545 }
3546
3547 typedef struct abort_appdomain_data {
3548         struct wait_data wait;
3549         MonoDomain *domain;
3550 } abort_appdomain_data;
3551
3552 static void
3553 collect_appdomain_thread (gpointer key, gpointer value, gpointer user_data)
3554 {
3555         MonoInternalThread *thread = (MonoInternalThread*)value;
3556         abort_appdomain_data *data = (abort_appdomain_data*)user_data;
3557         MonoDomain *domain = data->domain;
3558
3559         if (mono_thread_internal_has_appdomain_ref (thread, domain)) {
3560                 /* printf ("ABORTING THREAD %p BECAUSE IT REFERENCES DOMAIN %s.\n", thread->tid, domain->friendly_name); */
3561
3562                 if(data->wait.num<MAXIMUM_WAIT_OBJECTS) {
3563                         HANDLE handle = mono_threads_open_thread_handle (thread->handle, thread_get_tid (thread));
3564                         if (handle == NULL)
3565                                 return;
3566                         data->wait.handles [data->wait.num] = handle;
3567                         data->wait.threads [data->wait.num] = thread;
3568                         data->wait.num++;
3569                 } else {
3570                         /* Just ignore the rest, we can't do anything with
3571                          * them yet
3572                          */
3573                 }
3574         }
3575 }
3576
3577 /*
3578  * mono_threads_abort_appdomain_threads:
3579  *
3580  *   Abort threads which has references to the given appdomain.
3581  */
3582 gboolean
3583 mono_threads_abort_appdomain_threads (MonoDomain *domain, int timeout)
3584 {
3585 #ifdef __native_client__
3586         return FALSE;
3587 #endif
3588
3589         abort_appdomain_data user_data;
3590         guint32 start_time;
3591         int orig_timeout = timeout;
3592         int i;
3593
3594         THREAD_DEBUG (g_message ("%s: starting abort", __func__));
3595
3596         start_time = mono_msec_ticks ();
3597         do {
3598                 mono_threads_lock ();
3599
3600                 user_data.domain = domain;
3601                 user_data.wait.num = 0;
3602                 /* This shouldn't take any locks */
3603                 mono_g_hash_table_foreach (threads, collect_appdomain_thread, &user_data);
3604                 mono_threads_unlock ();
3605
3606                 if (user_data.wait.num > 0) {
3607                         /* Abort the threads outside the threads lock */
3608                         for (i = 0; i < user_data.wait.num; ++i)
3609                                 ves_icall_System_Threading_Thread_Abort (user_data.wait.threads [i], NULL);
3610
3611                         /*
3612                          * We should wait for the threads either to abort, or to leave the
3613                          * domain. We can't do the latter, so we wait with a timeout.
3614                          */
3615                         wait_for_tids (&user_data.wait, 100);
3616                 }
3617
3618                 /* Update remaining time */
3619                 timeout -= mono_msec_ticks () - start_time;
3620                 start_time = mono_msec_ticks ();
3621
3622                 if (orig_timeout != -1 && timeout < 0)
3623                         return FALSE;
3624         }
3625         while (user_data.wait.num > 0);
3626
3627         THREAD_DEBUG (g_message ("%s: abort done", __func__));
3628
3629         return TRUE;
3630 }
3631
3632 static void
3633 clear_cached_culture (gpointer key, gpointer value, gpointer user_data)
3634 {
3635         MonoInternalThread *thread = (MonoInternalThread*)value;
3636         MonoDomain *domain = (MonoDomain*)user_data;
3637         int i;
3638
3639         /* No locking needed here */
3640         /* FIXME: why no locking? writes to the cache are protected with synch_cs above */
3641
3642         if (thread->cached_culture_info) {
3643                 for (i = 0; i < NUM_CACHED_CULTURES * 2; ++i) {
3644                         MonoObject *obj = mono_array_get (thread->cached_culture_info, MonoObject*, i);
3645                         if (obj && obj->vtable->domain == domain)
3646                                 mono_array_set (thread->cached_culture_info, MonoObject*, i, NULL);
3647                 }
3648         }
3649 }
3650         
3651 /*
3652  * mono_threads_clear_cached_culture:
3653  *
3654  *   Clear the cached_current_culture from all threads if it is in the
3655  * given appdomain.
3656  */
3657 void
3658 mono_threads_clear_cached_culture (MonoDomain *domain)
3659 {
3660         mono_threads_lock ();
3661         mono_g_hash_table_foreach (threads, clear_cached_culture, domain);
3662         mono_threads_unlock ();
3663 }
3664
3665 /*
3666  * mono_thread_get_undeniable_exception:
3667  *
3668  *   Return an exception which needs to be raised when leaving a catch clause.
3669  * This is used for undeniable exception propagation.
3670  */
3671 MonoException*
3672 mono_thread_get_undeniable_exception (void)
3673 {
3674         MonoInternalThread *thread = mono_thread_internal_current ();
3675
3676         if (thread && thread->abort_exc && !is_running_protected_wrapper ()) {
3677                 /*
3678                  * FIXME: Clear the abort exception and return an AppDomainUnloaded 
3679                  * exception if the thread no longer references a dying appdomain.
3680                  */
3681                 thread->abort_exc->trace_ips = NULL;
3682                 thread->abort_exc->stack_trace = NULL;
3683                 return thread->abort_exc;
3684         }
3685
3686         return NULL;
3687 }
3688
3689 #if MONO_SMALL_CONFIG
3690 #define NUM_STATIC_DATA_IDX 4
3691 static const int static_data_size [NUM_STATIC_DATA_IDX] = {
3692         64, 256, 1024, 4096
3693 };
3694 #else
3695 #define NUM_STATIC_DATA_IDX 8
3696 static const int static_data_size [NUM_STATIC_DATA_IDX] = {
3697         1024, 4096, 16384, 65536, 262144, 1048576, 4194304, 16777216
3698 };
3699 #endif
3700
3701 static MonoBitSet *thread_reference_bitmaps [NUM_STATIC_DATA_IDX];
3702 static MonoBitSet *context_reference_bitmaps [NUM_STATIC_DATA_IDX];
3703
3704 static void
3705 mark_slots (void *addr, MonoBitSet **bitmaps, MonoGCMarkFunc mark_func, void *gc_data)
3706 {
3707         gpointer *static_data = (gpointer *)addr;
3708
3709         for (int i = 0; i < NUM_STATIC_DATA_IDX; ++i) {
3710                 void **ptr = (void **)static_data [i];
3711
3712                 if (!ptr)
3713                         continue;
3714
3715                 MONO_BITSET_FOREACH (bitmaps [i], idx, {
3716                         void **p = ptr + idx;
3717
3718                         if (*p)
3719                                 mark_func ((MonoObject**)p, gc_data);
3720                 });
3721         }
3722 }
3723
3724 static void
3725 mark_tls_slots (void *addr, MonoGCMarkFunc mark_func, void *gc_data)
3726 {
3727         mark_slots (addr, thread_reference_bitmaps, mark_func, gc_data);
3728 }
3729
3730 static void
3731 mark_ctx_slots (void *addr, MonoGCMarkFunc mark_func, void *gc_data)
3732 {
3733         mark_slots (addr, context_reference_bitmaps, mark_func, gc_data);
3734 }
3735
3736 /*
3737  *  mono_alloc_static_data
3738  *
3739  *   Allocate memory blocks for storing threads or context static data
3740  */
3741 static void 
3742 mono_alloc_static_data (gpointer **static_data_ptr, guint32 offset, gboolean threadlocal)
3743 {
3744         guint idx = ACCESS_SPECIAL_STATIC_OFFSET (offset, index);
3745         int i;
3746
3747         gpointer* static_data = *static_data_ptr;
3748         if (!static_data) {
3749                 static MonoGCDescriptor tls_desc = MONO_GC_DESCRIPTOR_NULL;
3750                 static MonoGCDescriptor ctx_desc = MONO_GC_DESCRIPTOR_NULL;
3751
3752                 if (mono_gc_user_markers_supported ()) {
3753                         if (tls_desc == MONO_GC_DESCRIPTOR_NULL)
3754                                 tls_desc = mono_gc_make_root_descr_user (mark_tls_slots);
3755
3756                         if (ctx_desc == MONO_GC_DESCRIPTOR_NULL)
3757                                 ctx_desc = mono_gc_make_root_descr_user (mark_ctx_slots);
3758                 }
3759
3760                 static_data = (void **)mono_gc_alloc_fixed (static_data_size [0], threadlocal ? tls_desc : ctx_desc,
3761                         threadlocal ? MONO_ROOT_SOURCE_THREAD_STATIC : MONO_ROOT_SOURCE_CONTEXT_STATIC,
3762                         threadlocal ? "managed thread-static variables" : "managed context-static variables");
3763                 *static_data_ptr = static_data;
3764                 static_data [0] = static_data;
3765         }
3766
3767         for (i = 1; i <= idx; ++i) {
3768                 if (static_data [i])
3769                         continue;
3770
3771                 if (mono_gc_user_markers_supported ())
3772                         static_data [i] = g_malloc0 (static_data_size [i]);
3773                 else
3774                         static_data [i] = mono_gc_alloc_fixed (static_data_size [i], MONO_GC_DESCRIPTOR_NULL,
3775                                 threadlocal ? MONO_ROOT_SOURCE_THREAD_STATIC : MONO_ROOT_SOURCE_CONTEXT_STATIC,
3776                                 threadlocal ? "managed thread-static variables" : "managed context-static variables");
3777         }
3778 }
3779
3780 static void 
3781 mono_free_static_data (gpointer* static_data)
3782 {
3783         int i;
3784         for (i = 1; i < NUM_STATIC_DATA_IDX; ++i) {
3785                 gpointer p = static_data [i];
3786                 if (!p)
3787                         continue;
3788                 /*
3789                  * At this point, the static data pointer array is still registered with the
3790                  * GC, so must ensure that mark_tls_slots() will not encounter any invalid
3791                  * data.  Freeing the individual arrays without first nulling their slots
3792                  * would make it possible for mark_tls/ctx_slots() to encounter a pointer to
3793                  * such an already freed array.  See bug #13813.
3794                  */
3795                 static_data [i] = NULL;
3796                 mono_memory_write_barrier ();
3797                 if (mono_gc_user_markers_supported ())
3798                         g_free (p);
3799                 else
3800                         mono_gc_free_fixed (p);
3801         }
3802         mono_gc_free_fixed (static_data);
3803 }
3804
3805 /*
3806  *  mono_init_static_data_info
3807  *
3808  *   Initializes static data counters
3809  */
3810 static void mono_init_static_data_info (StaticDataInfo *static_data)
3811 {
3812         static_data->idx = 0;
3813         static_data->offset = 0;
3814         static_data->freelist = NULL;
3815 }
3816
3817 /*
3818  *  mono_alloc_static_data_slot
3819  *
3820  *   Generates an offset for static data. static_data contains the counters
3821  *  used to generate it.
3822  */
3823 static guint32
3824 mono_alloc_static_data_slot (StaticDataInfo *static_data, guint32 size, guint32 align)
3825 {
3826         if (!static_data->idx && !static_data->offset) {
3827                 /* 
3828                  * we use the first chunk of the first allocation also as
3829                  * an array for the rest of the data 
3830                  */
3831                 static_data->offset = sizeof (gpointer) * NUM_STATIC_DATA_IDX;
3832         }
3833         static_data->offset += align - 1;
3834         static_data->offset &= ~(align - 1);
3835         if (static_data->offset + size >= static_data_size [static_data->idx]) {
3836                 static_data->idx ++;
3837                 g_assert (size <= static_data_size [static_data->idx]);
3838                 g_assert (static_data->idx < NUM_STATIC_DATA_IDX);
3839                 static_data->offset = 0;
3840         }
3841         guint32 offset = MAKE_SPECIAL_STATIC_OFFSET (static_data->idx, static_data->offset, 0);
3842         static_data->offset += size;
3843         return offset;
3844 }
3845
3846 /* 
3847  * ensure thread static fields already allocated are valid for thread
3848  * This function is called when a thread is created or on thread attach.
3849  */
3850 static void
3851 thread_adjust_static_data (MonoInternalThread *thread)
3852 {
3853         mono_threads_lock ();
3854         if (thread_static_info.offset || thread_static_info.idx > 0) {
3855                 /* get the current allocated size */
3856                 guint32 offset = MAKE_SPECIAL_STATIC_OFFSET (thread_static_info.idx, thread_static_info.offset, 0);
3857                 mono_alloc_static_data (&thread->static_data, offset, TRUE);
3858         }
3859         mono_threads_unlock ();
3860 }
3861
3862 /*
3863  * LOCKING: requires that threads_mutex is held
3864  */
3865 static void
3866 context_adjust_static_data (MonoAppContext *ctx)
3867 {
3868         if (context_static_info.offset || context_static_info.idx > 0) {
3869                 guint32 offset = MAKE_SPECIAL_STATIC_OFFSET (context_static_info.idx, context_static_info.offset, 0);
3870                 mono_alloc_static_data (&ctx->static_data, offset, FALSE);
3871         }
3872 }
3873
3874 /*
3875  * LOCKING: requires that threads_mutex is held
3876  */
3877 static void 
3878 alloc_thread_static_data_helper (gpointer key, gpointer value, gpointer user)
3879 {
3880         MonoInternalThread *thread = (MonoInternalThread *)value;
3881         guint32 offset = GPOINTER_TO_UINT (user);
3882
3883         mono_alloc_static_data (&(thread->static_data), offset, TRUE);
3884 }
3885
3886 /*
3887  * LOCKING: requires that threads_mutex is held
3888  */
3889 static gboolean
3890 alloc_context_static_data_helper (gpointer key, gpointer value, gpointer user)
3891 {
3892         uint32_t gch = GPOINTER_TO_INT (key);
3893         MonoAppContext *ctx = (MonoAppContext *) mono_gchandle_get_target (gch);
3894
3895         if (!ctx) {
3896                 mono_gchandle_free (gch);
3897                 return TRUE; // Remove this key/value pair
3898         }
3899
3900         guint32 offset = GPOINTER_TO_UINT (user);
3901         mono_alloc_static_data (&ctx->static_data, offset, FALSE);
3902
3903         return FALSE; // Don't remove it
3904 }
3905
3906 static StaticDataFreeList*
3907 search_slot_in_freelist (StaticDataInfo *static_data, guint32 size, guint32 align)
3908 {
3909         StaticDataFreeList* prev = NULL;
3910         StaticDataFreeList* tmp = static_data->freelist;
3911         while (tmp) {
3912                 if (tmp->size == size) {
3913                         if (prev)
3914                                 prev->next = tmp->next;
3915                         else
3916                                 static_data->freelist = tmp->next;
3917                         return tmp;
3918                 }
3919                 prev = tmp;
3920                 tmp = tmp->next;
3921         }
3922         return NULL;
3923 }
3924
3925 #if SIZEOF_VOID_P == 4
3926 #define ONE_P 1
3927 #else
3928 #define ONE_P 1ll
3929 #endif
3930
3931 static void
3932 update_reference_bitmap (MonoBitSet **sets, guint32 offset, uintptr_t *bitmap, int numbits)
3933 {
3934         int idx = ACCESS_SPECIAL_STATIC_OFFSET (offset, index);
3935         if (!sets [idx])
3936                 sets [idx] = mono_bitset_new (static_data_size [idx] / sizeof (uintptr_t), 0);
3937         MonoBitSet *rb = sets [idx];
3938         offset = ACCESS_SPECIAL_STATIC_OFFSET (offset, offset);
3939         offset /= sizeof (uintptr_t);
3940         /* offset is now the bitmap offset */
3941         for (int i = 0; i < numbits; ++i) {
3942                 if (bitmap [i / sizeof (uintptr_t)] & (ONE_P << (i & (sizeof (uintptr_t) * 8 -1))))
3943                         mono_bitset_set_fast (rb, offset + i);
3944         }
3945 }
3946
3947 static void
3948 clear_reference_bitmap (MonoBitSet **sets, guint32 offset, guint32 size)
3949 {
3950         int idx = ACCESS_SPECIAL_STATIC_OFFSET (offset, index);
3951         MonoBitSet *rb = sets [idx];
3952         offset = ACCESS_SPECIAL_STATIC_OFFSET (offset, offset);
3953         offset /= sizeof (uintptr_t);
3954         /* offset is now the bitmap offset */
3955         for (int i = 0; i < size / sizeof (uintptr_t); i++)
3956                 mono_bitset_clear_fast (rb, offset + i);
3957 }
3958
3959 guint32
3960 mono_alloc_special_static_data (guint32 static_type, guint32 size, guint32 align, uintptr_t *bitmap, int numbits)
3961 {
3962         g_assert (static_type == SPECIAL_STATIC_THREAD || static_type == SPECIAL_STATIC_CONTEXT);
3963
3964         StaticDataInfo *info;
3965         MonoBitSet **sets;
3966
3967         if (static_type == SPECIAL_STATIC_THREAD) {
3968                 info = &thread_static_info;
3969                 sets = thread_reference_bitmaps;
3970         } else {
3971                 info = &context_static_info;
3972                 sets = context_reference_bitmaps;
3973         }
3974
3975         mono_threads_lock ();
3976
3977         StaticDataFreeList *item = search_slot_in_freelist (info, size, align);
3978         guint32 offset;
3979
3980         if (item) {
3981                 offset = item->offset;
3982                 g_free (item);
3983         } else {
3984                 offset = mono_alloc_static_data_slot (info, size, align);
3985         }
3986
3987         update_reference_bitmap (sets, offset, bitmap, numbits);
3988
3989         if (static_type == SPECIAL_STATIC_THREAD) {
3990                 /* This can be called during startup */
3991                 if (threads != NULL)
3992                         mono_g_hash_table_foreach (threads, alloc_thread_static_data_helper, GUINT_TO_POINTER (offset));
3993         } else {
3994                 if (contexts != NULL)
3995                         g_hash_table_foreach_remove (contexts, alloc_context_static_data_helper, GUINT_TO_POINTER (offset));
3996
3997                 ACCESS_SPECIAL_STATIC_OFFSET (offset, type) = SPECIAL_STATIC_OFFSET_TYPE_CONTEXT;
3998         }
3999
4000         mono_threads_unlock ();
4001
4002         return offset;
4003 }
4004
4005 gpointer
4006 mono_get_special_static_data_for_thread (MonoInternalThread *thread, guint32 offset)
4007 {
4008         guint32 static_type = ACCESS_SPECIAL_STATIC_OFFSET (offset, type);
4009
4010         if (static_type == SPECIAL_STATIC_OFFSET_TYPE_THREAD) {
4011                 return get_thread_static_data (thread, offset);
4012         } else {
4013                 return get_context_static_data (thread->current_appcontext, offset);
4014         }
4015 }
4016
4017 gpointer
4018 mono_get_special_static_data (guint32 offset)
4019 {
4020         return mono_get_special_static_data_for_thread (mono_thread_internal_current (), offset);
4021 }
4022
4023 typedef struct {
4024         guint32 offset;
4025         guint32 size;
4026 } OffsetSize;
4027
4028 /*
4029  * LOCKING: requires that threads_mutex is held
4030  */
4031 static void 
4032 free_thread_static_data_helper (gpointer key, gpointer value, gpointer user)
4033 {
4034         MonoInternalThread *thread = (MonoInternalThread *)value;
4035         OffsetSize *data = (OffsetSize *)user;
4036         int idx = ACCESS_SPECIAL_STATIC_OFFSET (data->offset, index);
4037         int off = ACCESS_SPECIAL_STATIC_OFFSET (data->offset, offset);
4038         char *ptr;
4039
4040         if (!thread->static_data || !thread->static_data [idx])
4041                 return;
4042         ptr = ((char*) thread->static_data [idx]) + off;
4043         mono_gc_bzero_atomic (ptr, data->size);
4044 }
4045
4046 /*
4047  * LOCKING: requires that threads_mutex is held
4048  */
4049 static gboolean
4050 free_context_static_data_helper (gpointer key, gpointer value, gpointer user)
4051 {
4052         uint32_t gch = GPOINTER_TO_INT (key);
4053         MonoAppContext *ctx = (MonoAppContext *) mono_gchandle_get_target (gch);
4054
4055         if (!ctx) {
4056                 mono_gchandle_free (gch);
4057                 return TRUE; // Remove this key/value pair
4058         }
4059
4060         OffsetSize *data = (OffsetSize *)user;
4061         int idx = ACCESS_SPECIAL_STATIC_OFFSET (data->offset, index);
4062         int off = ACCESS_SPECIAL_STATIC_OFFSET (data->offset, offset);
4063         char *ptr;
4064
4065         if (!ctx->static_data || !ctx->static_data [idx])
4066                 return FALSE; // Don't remove this key/value pair
4067
4068         ptr = ((char*) ctx->static_data [idx]) + off;
4069         mono_gc_bzero_atomic (ptr, data->size);
4070
4071         return FALSE; // Don't remove this key/value pair
4072 }
4073
4074 static void
4075 do_free_special_slot (guint32 offset, guint32 size)
4076 {
4077         guint32 static_type = ACCESS_SPECIAL_STATIC_OFFSET (offset, type);
4078         MonoBitSet **sets;
4079         StaticDataInfo *info;
4080
4081         if (static_type == SPECIAL_STATIC_OFFSET_TYPE_THREAD) {
4082                 info = &thread_static_info;
4083                 sets = thread_reference_bitmaps;
4084         } else {
4085                 info = &context_static_info;
4086                 sets = context_reference_bitmaps;
4087         }
4088
4089         guint32 data_offset = offset;
4090         ACCESS_SPECIAL_STATIC_OFFSET (data_offset, type) = 0;
4091         OffsetSize data = { data_offset, size };
4092
4093         clear_reference_bitmap (sets, data.offset, data.size);
4094
4095         if (static_type == SPECIAL_STATIC_OFFSET_TYPE_THREAD) {
4096                 if (threads != NULL)
4097                         mono_g_hash_table_foreach (threads, free_thread_static_data_helper, &data);
4098         } else {
4099                 if (contexts != NULL)
4100                         g_hash_table_foreach_remove (contexts, free_context_static_data_helper, &data);
4101         }
4102
4103         if (!mono_runtime_is_shutting_down ()) {
4104                 StaticDataFreeList *item = g_new0 (StaticDataFreeList, 1);
4105
4106                 item->offset = offset;
4107                 item->size = size;
4108
4109                 item->next = info->freelist;
4110                 info->freelist = item;
4111         }
4112 }
4113
4114 static void
4115 do_free_special (gpointer key, gpointer value, gpointer data)
4116 {
4117         MonoClassField *field = (MonoClassField *)key;
4118         guint32 offset = GPOINTER_TO_UINT (value);
4119         gint32 align;
4120         guint32 size;
4121         size = mono_type_size (field->type, &align);
4122         do_free_special_slot (offset, size);
4123 }
4124
4125 void
4126 mono_alloc_special_static_data_free (GHashTable *special_static_fields)
4127 {
4128         mono_threads_lock ();
4129
4130         g_hash_table_foreach (special_static_fields, do_free_special, NULL);
4131
4132         mono_threads_unlock ();
4133 }
4134
4135 static void
4136 mono_special_static_data_free_slot (guint32 offset, guint32 size)
4137 {
4138         /* Only ever called for ThreadLocal instances */
4139         g_assert (ACCESS_SPECIAL_STATIC_OFFSET (offset, type) == SPECIAL_STATIC_OFFSET_TYPE_THREAD);
4140
4141         mono_threads_lock ();
4142         do_free_special_slot (offset, size);
4143         mono_threads_unlock ();
4144 }
4145
4146 #ifdef HOST_WIN32
4147 static void CALLBACK dummy_apc (ULONG_PTR param)
4148 {
4149 }
4150 #endif
4151
4152 /*
4153  * mono_thread_execute_interruption
4154  * 
4155  * Performs the operation that the requested thread state requires (abort,
4156  * suspend or stop)
4157  */
4158 static MonoException*
4159 mono_thread_execute_interruption (void)
4160 {
4161         MonoInternalThread *thread = mono_thread_internal_current ();
4162
4163         LOCK_THREAD (thread);
4164
4165         /* MonoThread::interruption_requested can only be changed with atomics */
4166         if (InterlockedCompareExchange (&thread->interruption_requested, FALSE, TRUE)) {
4167                 /* this will consume pending APC calls */
4168 #ifdef HOST_WIN32
4169                 WaitForSingleObjectEx (GetCurrentThread(), 0, TRUE);
4170 #endif
4171                 InterlockedDecrement (&thread_interruption_requested);
4172
4173                 /* Clear the interrupted flag of the thread so it can wait again */
4174                 mono_thread_info_clear_self_interrupt ();
4175         }
4176
4177         if ((thread->state & ThreadState_AbortRequested) != 0) {
4178                 UNLOCK_THREAD (thread);
4179                 if (thread->abort_exc == NULL) {
4180                         /* 
4181                          * This might be racy, but it has to be called outside the lock
4182                          * since it calls managed code.
4183                          */
4184                         MONO_OBJECT_SETREF (thread, abort_exc, mono_get_exception_thread_abort ());
4185                 }
4186                 return thread->abort_exc;
4187         }
4188         else if ((thread->state & ThreadState_SuspendRequested) != 0) {
4189                 self_suspend_internal (thread);         
4190                 return NULL;
4191         }
4192         else if ((thread->state & ThreadState_StopRequested) != 0) {
4193                 /* FIXME: do this through the JIT? */
4194
4195                 UNLOCK_THREAD (thread);
4196                 
4197                 mono_thread_exit ();
4198                 return NULL;
4199         } else if (thread->pending_exception) {
4200                 MonoException *exc;
4201
4202                 exc = thread->pending_exception;
4203                 thread->pending_exception = NULL;
4204
4205         UNLOCK_THREAD (thread);
4206         return exc;
4207         } else if (thread->thread_interrupt_requested) {
4208
4209                 thread->thread_interrupt_requested = FALSE;
4210                 UNLOCK_THREAD (thread);
4211                 
4212                 return(mono_get_exception_thread_interrupted ());
4213         }
4214         
4215         UNLOCK_THREAD (thread);
4216         
4217         return NULL;
4218 }
4219
4220 /*
4221  * mono_thread_request_interruption
4222  *
4223  * A signal handler can call this method to request the interruption of a
4224  * thread. The result of the interruption will depend on the current state of
4225  * the thread. If the result is an exception that needs to be throw, it is 
4226  * provided as return value.
4227  */
4228 MonoException*
4229 mono_thread_request_interruption (gboolean running_managed)
4230 {
4231         MonoInternalThread *thread = mono_thread_internal_current ();
4232
4233         /* The thread may already be stopping */
4234         if (thread == NULL) 
4235                 return NULL;
4236
4237 #ifdef HOST_WIN32
4238         if (thread->interrupt_on_stop && 
4239                 thread->state & ThreadState_StopRequested && 
4240                 thread->state & ThreadState_Background)
4241                 ExitThread (1);
4242 #endif
4243         
4244         if (InterlockedCompareExchange (&thread->interruption_requested, 1, 0) == 1)
4245                 return NULL;
4246         InterlockedIncrement (&thread_interruption_requested);
4247
4248         if (!running_managed || is_running_protected_wrapper ()) {
4249                 /* Can't stop while in unmanaged code. Increase the global interruption
4250                    request count. When exiting the unmanaged method the count will be
4251                    checked and the thread will be interrupted. */
4252
4253                 if (mono_thread_notify_pending_exc_fn && !running_managed)
4254                         /* The JIT will notify the thread about the interruption */
4255                         /* This shouldn't take any locks */
4256                         mono_thread_notify_pending_exc_fn (NULL);
4257
4258                 /* this will awake the thread if it is in WaitForSingleObject 
4259                    or similar */
4260                 /* Our implementation of this function ignores the func argument */
4261 #ifdef HOST_WIN32
4262                 QueueUserAPC ((PAPCFUNC)dummy_apc, thread->handle, (ULONG_PTR)NULL);
4263 #else
4264                 mono_thread_info_self_interrupt ();
4265 #endif
4266                 return NULL;
4267         }
4268         else {
4269                 return mono_thread_execute_interruption ();
4270         }
4271 }
4272
4273 /*This function should be called by a thread after it has exited all of
4274  * its handle blocks at interruption time.*/
4275 MonoException*
4276 mono_thread_resume_interruption (void)
4277 {
4278         MonoInternalThread *thread = mono_thread_internal_current ();
4279         gboolean still_aborting;
4280
4281         /* The thread may already be stopping */
4282         if (thread == NULL)
4283                 return NULL;
4284
4285         LOCK_THREAD (thread);
4286         still_aborting = (thread->state & ThreadState_AbortRequested) != 0;
4287         UNLOCK_THREAD (thread);
4288
4289         /*This can happen if the protected block called Thread::ResetAbort*/
4290         if (!still_aborting)
4291                 return FALSE;
4292
4293         if (InterlockedCompareExchange (&thread->interruption_requested, 1, 0) == 1)
4294                 return NULL;
4295         InterlockedIncrement (&thread_interruption_requested);
4296
4297         mono_thread_info_self_interrupt ();
4298
4299         return mono_thread_execute_interruption ();
4300 }
4301
4302 gboolean mono_thread_interruption_requested ()
4303 {
4304         if (thread_interruption_requested) {
4305                 MonoInternalThread *thread = mono_thread_internal_current ();
4306                 /* The thread may already be stopping */
4307                 if (thread != NULL) 
4308                         return (thread->interruption_requested);
4309         }
4310         return FALSE;
4311 }
4312
4313 static MonoException*
4314 mono_thread_interruption_checkpoint_request (gboolean bypass_abort_protection)
4315 {
4316         MonoInternalThread *thread = mono_thread_internal_current ();
4317
4318         /* The thread may already be stopping */
4319         if (thread == NULL)
4320                 return NULL;
4321
4322         if (thread->interruption_requested && (bypass_abort_protection || !is_running_protected_wrapper ())) {
4323                 MonoException* exc = mono_thread_execute_interruption ();
4324                 if (exc)
4325                         return exc;
4326         }
4327         return NULL;
4328 }
4329
4330 /*
4331  * Performs the interruption of the current thread, if one has been requested,
4332  * and the thread is not running a protected wrapper.
4333  * Return the exception which needs to be thrown, if any.
4334  */
4335 MonoException*
4336 mono_thread_interruption_checkpoint (void)
4337 {
4338         return mono_thread_interruption_checkpoint_request (FALSE);
4339 }
4340
4341 /*
4342  * Performs the interruption of the current thread, if one has been requested.
4343  * Return the exception which needs to be thrown, if any.
4344  */
4345 MonoException*
4346 mono_thread_force_interruption_checkpoint_noraise (void)
4347 {
4348         return mono_thread_interruption_checkpoint_request (TRUE);
4349 }
4350
4351 /*
4352  * Performs the interruption of the current thread, if one has been requested.
4353  * Throw the exception which needs to be thrown, if any.
4354  */
4355 void
4356 mono_thread_force_interruption_checkpoint (void)
4357 {
4358         MonoException *ex;
4359
4360         ex = mono_thread_interruption_checkpoint_request (TRUE);
4361         if (ex)
4362                 mono_raise_exception (ex);
4363 }
4364
4365 /*
4366  * mono_thread_get_and_clear_pending_exception:
4367  *
4368  *   Return any pending exceptions for the current thread and clear it as a side effect.
4369  */
4370 MonoException*
4371 mono_thread_get_and_clear_pending_exception (void)
4372 {
4373         MonoInternalThread *thread = mono_thread_internal_current ();
4374
4375         /* The thread may already be stopping */
4376         if (thread == NULL)
4377                 return NULL;
4378
4379         if (thread->interruption_requested && !is_running_protected_wrapper ()) {
4380                 return mono_thread_execute_interruption ();
4381         }
4382         
4383         if (thread->pending_exception) {
4384                 MonoException *exc = thread->pending_exception;
4385
4386                 thread->pending_exception = NULL;
4387                 return exc;
4388         }
4389
4390         return NULL;
4391 }
4392
4393 /*
4394  * mono_set_pending_exception:
4395  *
4396  *   Set the pending exception of the current thread to EXC.
4397  * The exception will be thrown when execution returns to managed code.
4398  */
4399 void
4400 mono_set_pending_exception (MonoException *exc)
4401 {
4402         MonoInternalThread *thread = mono_thread_internal_current ();
4403
4404         /* The thread may already be stopping */
4405         if (thread == NULL)
4406                 return;
4407
4408         MONO_OBJECT_SETREF (thread, pending_exception, exc);
4409
4410     mono_thread_request_interruption (FALSE);
4411 }
4412
4413 /**
4414  * mono_thread_interruption_request_flag:
4415  *
4416  * Returns the address of a flag that will be non-zero if an interruption has
4417  * been requested for a thread. The thread to interrupt may not be the current
4418  * thread, so an additional call to mono_thread_interruption_requested() or
4419  * mono_thread_interruption_checkpoint() is allways needed if the flag is not
4420  * zero.
4421  */
4422 gint32* mono_thread_interruption_request_flag ()
4423 {
4424         return &thread_interruption_requested;
4425 }
4426
4427 void 
4428 mono_thread_init_apartment_state (void)
4429 {
4430 #ifdef HOST_WIN32
4431         MonoInternalThread* thread = mono_thread_internal_current ();
4432
4433         /* Positive return value indicates success, either
4434          * S_OK if this is first CoInitialize call, or
4435          * S_FALSE if CoInitialize already called, but with same
4436          * threading model. A negative value indicates failure,
4437          * probably due to trying to change the threading model.
4438          */
4439         if (CoInitializeEx(NULL, (thread->apartment_state == ThreadApartmentState_STA) 
4440                         ? COINIT_APARTMENTTHREADED 
4441                         : COINIT_MULTITHREADED) < 0) {
4442                 thread->apartment_state = ThreadApartmentState_Unknown;
4443         }
4444 #endif
4445 }
4446
4447 void 
4448 mono_thread_cleanup_apartment_state (void)
4449 {
4450 #ifdef HOST_WIN32
4451         MonoInternalThread* thread = mono_thread_internal_current ();
4452
4453         if (thread && thread->apartment_state != ThreadApartmentState_Unknown) {
4454                 CoUninitialize ();
4455         }
4456 #endif
4457 }
4458
4459 void
4460 mono_thread_set_state (MonoInternalThread *thread, MonoThreadState state)
4461 {
4462         LOCK_THREAD (thread);
4463         thread->state |= state;
4464         UNLOCK_THREAD (thread);
4465 }
4466
4467 void
4468 mono_thread_clr_state (MonoInternalThread *thread, MonoThreadState state)
4469 {
4470         LOCK_THREAD (thread);
4471         thread->state &= ~state;
4472         UNLOCK_THREAD (thread);
4473 }
4474
4475 gboolean
4476 mono_thread_test_state (MonoInternalThread *thread, MonoThreadState test)
4477 {
4478         gboolean ret = FALSE;
4479
4480         LOCK_THREAD (thread);
4481
4482         if ((thread->state & test) != 0) {
4483                 ret = TRUE;
4484         }
4485         
4486         UNLOCK_THREAD (thread);
4487         
4488         return ret;
4489 }
4490
4491 static gboolean has_tls_get = FALSE;
4492
4493 void
4494 mono_runtime_set_has_tls_get (gboolean val)
4495 {
4496         has_tls_get = val;
4497 }
4498
4499 gboolean
4500 mono_runtime_has_tls_get (void)
4501 {
4502         return has_tls_get;
4503 }
4504
4505 static void
4506 self_interrupt_thread (void *_unused)
4507 {
4508         MonoThreadInfo *info = mono_thread_info_current ();
4509         MonoException *exc = mono_thread_execute_interruption ();
4510         if (exc) /*We must use _with_context since we didn't trampoline into the runtime*/
4511                 mono_raise_exception_with_context (exc, &info->thread_saved_state [ASYNC_SUSPEND_STATE_INDEX].ctx); /* FIXME using thread_saved_state [ASYNC_SUSPEND_STATE_INDEX] can race with another suspend coming in. */
4512         g_assert_not_reached (); /*this MUST not happen since we can't resume from an async call*/
4513 }
4514
4515 static gboolean
4516 mono_jit_info_match (MonoJitInfo *ji, gpointer ip)
4517 {
4518         if (!ji)
4519                 return FALSE;
4520         return ji->code_start <= ip && (char*)ip < (char*)ji->code_start + ji->code_size;
4521 }
4522
4523 static gboolean
4524 last_managed (MonoStackFrameInfo *frame, MonoContext *ctx, gpointer data)
4525 {
4526         MonoJitInfo **dest = (MonoJitInfo **)data;
4527         *dest = frame->ji;
4528         return TRUE;
4529 }
4530
4531 static MonoJitInfo*
4532 mono_thread_info_get_last_managed (MonoThreadInfo *info)
4533 {
4534         MonoJitInfo *ji = NULL;
4535         if (!info)
4536                 return NULL;
4537         mono_get_eh_callbacks ()->mono_walk_stack_with_state (last_managed, mono_thread_info_get_suspend_state (info), MONO_UNWIND_SIGNAL_SAFE, &ji);
4538         return ji;
4539 }
4540
4541 typedef struct {
4542         MonoInternalThread *thread;
4543         gboolean install_async_abort;
4544         MonoThreadInfoInterruptToken *interrupt_token;
4545 } AbortThreadData;
4546
4547 static SuspendThreadResult
4548 abort_thread_critical (MonoThreadInfo *info, gpointer ud)
4549 {
4550         AbortThreadData *data = (AbortThreadData *)ud;
4551         MonoInternalThread *thread = data->thread;
4552         MonoJitInfo *ji = NULL;
4553         gboolean protected_wrapper;
4554         gboolean running_managed;
4555
4556         if (mono_get_eh_callbacks ()->mono_install_handler_block_guard (mono_thread_info_get_suspend_state (info)))
4557                 return MonoResumeThread;
4558
4559         /*someone is already interrupting it*/
4560         if (InterlockedCompareExchange (&thread->interruption_requested, 1, 0) == 1)
4561                 return MonoResumeThread;
4562
4563         InterlockedIncrement (&thread_interruption_requested);
4564
4565         ji = mono_thread_info_get_last_managed (info);
4566         protected_wrapper = ji && !ji->is_trampoline && !ji->async && mono_threads_is_critical_method (mono_jit_info_get_method (ji));
4567         running_managed = mono_jit_info_match (ji, MONO_CONTEXT_GET_IP (&mono_thread_info_get_suspend_state (info)->ctx));
4568
4569         if (!protected_wrapper && running_managed) {
4570                 /*We are in managed code*/
4571                 /*Set the thread to call */
4572                 if (data->install_async_abort)
4573                         mono_thread_info_setup_async_call (info, self_interrupt_thread, NULL);
4574                 return MonoResumeThread;
4575         } else {
4576                 if (mono_thread_notify_pending_exc_fn)
4577                         /* The JIT will notify the thread about the interruption */
4578                         mono_thread_notify_pending_exc_fn (info);
4579
4580                 /* 
4581                  * This will cause waits to be broken.
4582                  * It will also prevent the thread from entering a wait, so if the thread returns
4583                  * from the wait before it receives the abort signal, it will just spin in the wait
4584                  * functions in the io-layer until the signal handler calls QueueUserAPC which will
4585                  * make it return.
4586                  */
4587                 data->interrupt_token = mono_thread_info_prepare_interrupt (info);
4588
4589                 return MonoResumeThread;
4590         }
4591 }
4592
4593 static void
4594 abort_thread_internal (MonoInternalThread *thread, gboolean can_raise_exception, gboolean install_async_abort)
4595 {
4596         AbortThreadData data = { 0 };
4597         data.thread = thread;
4598         data.install_async_abort = install_async_abort;
4599
4600         /*
4601         FIXME this is insanely broken, it doesn't cause interruption to happen
4602         synchronously since passing FALSE to mono_thread_request_interruption makes sure it returns NULL
4603         */
4604         if (thread == mono_thread_internal_current ()) {
4605                 /* Do it synchronously */
4606                 MonoException *exc = mono_thread_request_interruption (can_raise_exception); 
4607                 if (exc)
4608                         mono_raise_exception (exc);
4609
4610                 mono_thread_info_self_interrupt ();
4611
4612                 return;
4613         }
4614
4615         mono_thread_info_safe_suspend_and_run (thread_get_tid (thread), TRUE, abort_thread_critical, &data);
4616         if (data.interrupt_token)
4617                 mono_thread_info_finish_interrupt (data.interrupt_token);
4618         /*FIXME we need to wait for interruption to complete -- figure out how much into interruption we should wait for here*/
4619 }
4620
4621 typedef struct{
4622         MonoInternalThread *thread;
4623         gboolean interrupt;
4624         MonoThreadInfoInterruptToken *interrupt_token;
4625 } SuspendThreadData;
4626
4627 static SuspendThreadResult
4628 suspend_thread_critical (MonoThreadInfo *info, gpointer ud)
4629 {
4630         SuspendThreadData *data = (SuspendThreadData *)ud;
4631         MonoInternalThread *thread = data->thread;
4632         MonoJitInfo *ji = NULL;
4633         gboolean protected_wrapper;
4634         gboolean running_managed;
4635
4636         ji = mono_thread_info_get_last_managed (info);
4637         protected_wrapper = ji && !ji->is_trampoline && !ji->async && mono_threads_is_critical_method (mono_jit_info_get_method (ji));
4638         running_managed = mono_jit_info_match (ji, MONO_CONTEXT_GET_IP (&mono_thread_info_get_suspend_state (info)->ctx));
4639
4640         if (running_managed && !protected_wrapper) {
4641                 thread->state &= ~ThreadState_SuspendRequested;
4642                 thread->state |= ThreadState_Suspended;
4643                 return KeepSuspended;
4644         } else {
4645                 if (InterlockedCompareExchange (&thread->interruption_requested, 1, 0) == 0)
4646                         InterlockedIncrement (&thread_interruption_requested);
4647                 if (data->interrupt)
4648                         data->interrupt_token = mono_thread_info_prepare_interrupt ((MonoThreadInfo *)thread->thread_info);
4649                 
4650                 if (mono_thread_notify_pending_exc_fn && !running_managed)
4651                         /* The JIT will notify the thread about the interruption */
4652                         mono_thread_notify_pending_exc_fn (info);
4653                 return MonoResumeThread;
4654         }
4655 }
4656         
4657 static void
4658 suspend_thread_internal (MonoInternalThread *thread, gboolean interrupt)
4659 {
4660         LOCK_THREAD (thread);
4661         if (thread == mono_thread_internal_current ()) {
4662                 mono_thread_info_begin_self_suspend ();
4663                 //XXX replace this with better named functions
4664                 thread->state &= ~ThreadState_SuspendRequested;
4665                 thread->state |= ThreadState_Suspended;
4666                 UNLOCK_THREAD (thread);
4667                 mono_thread_info_end_self_suspend ();
4668         } else {
4669                 SuspendThreadData data = { 0 };
4670                 data.thread = thread;
4671                 data.interrupt = interrupt;
4672
4673                 mono_thread_info_safe_suspend_and_run (thread_get_tid (thread), interrupt, suspend_thread_critical, &data);
4674                 if (data.interrupt_token)
4675                         mono_thread_info_finish_interrupt (data.interrupt_token);
4676                 UNLOCK_THREAD (thread);
4677         }
4678 }
4679
4680 /*This is called with @thread synch_cs held and it must release it*/
4681 static void
4682 self_suspend_internal (MonoInternalThread *thread)
4683 {
4684         mono_thread_info_begin_self_suspend ();
4685         thread->state &= ~ThreadState_SuspendRequested;
4686         thread->state |= ThreadState_Suspended;
4687         UNLOCK_THREAD (thread);
4688         mono_thread_info_end_self_suspend ();
4689 }
4690
4691
4692 /*
4693  * mono_thread_is_foreign:
4694  * @thread: the thread to query
4695  *
4696  * This function allows one to determine if a thread was created by the mono runtime and has
4697  * a well defined lifecycle or it's a foreigh one, created by the native environment.
4698  *
4699  * Returns: true if @thread was not created by the runtime.
4700  */
4701 mono_bool
4702 mono_thread_is_foreign (MonoThread *thread)
4703 {
4704         MonoThreadInfo *info = (MonoThreadInfo *)thread->internal_thread->thread_info;
4705         return info->runtime_thread == FALSE;
4706 }
4707
4708 /*
4709  * mono_add_joinable_thread:
4710  *
4711  *   Add TID to the list of joinable threads.
4712  * LOCKING: Acquires the threads lock.
4713  */
4714 void
4715 mono_threads_add_joinable_thread (gpointer tid)
4716 {
4717 #ifndef HOST_WIN32
4718         /*
4719          * We cannot detach from threads because it causes problems like
4720          * 2fd16f60/r114307. So we collect them and join them when
4721          * we have time (in he finalizer thread).
4722          */
4723         joinable_threads_lock ();
4724         if (!joinable_threads)
4725                 joinable_threads = g_hash_table_new (NULL, NULL);
4726         g_hash_table_insert (joinable_threads, tid, tid);
4727         joinable_thread_count ++;
4728         joinable_threads_unlock ();
4729
4730         mono_gc_finalize_notify ();
4731 #endif
4732 }
4733
4734 /*
4735  * mono_threads_join_threads:
4736  *
4737  *   Join all joinable threads. This is called from the finalizer thread.
4738  * LOCKING: Acquires the threads lock.
4739  */
4740 void
4741 mono_threads_join_threads (void)
4742 {
4743 #ifndef HOST_WIN32
4744         GHashTableIter iter;
4745         gpointer key;
4746         gpointer tid;
4747         pthread_t thread;
4748         gboolean found;
4749
4750         /* Fastpath */
4751         if (!joinable_thread_count)
4752                 return;
4753
4754         while (TRUE) {
4755                 joinable_threads_lock ();
4756                 found = FALSE;
4757                 if (g_hash_table_size (joinable_threads)) {
4758                         g_hash_table_iter_init (&iter, joinable_threads);
4759                         g_hash_table_iter_next (&iter, &key, (void**)&tid);
4760                         thread = (pthread_t)tid;
4761                         g_hash_table_remove (joinable_threads, key);
4762                         joinable_thread_count --;
4763                         found = TRUE;
4764                 }
4765                 joinable_threads_unlock ();
4766                 if (found) {
4767                         if (thread != pthread_self ())
4768                                 /* This shouldn't block */
4769                                 pthread_join (thread, NULL);
4770                 } else {
4771                         break;
4772                 }
4773         }
4774 #endif
4775 }
4776
4777 /*
4778  * mono_thread_join:
4779  *
4780  *   Wait for thread TID to exit.
4781  * LOCKING: Acquires the threads lock.
4782  */
4783 void
4784 mono_thread_join (gpointer tid)
4785 {
4786 #ifndef HOST_WIN32
4787         pthread_t thread;
4788         gboolean found = FALSE;
4789
4790         joinable_threads_lock ();
4791         if (!joinable_threads)
4792                 joinable_threads = g_hash_table_new (NULL, NULL);
4793         if (g_hash_table_lookup (joinable_threads, tid)) {
4794                 g_hash_table_remove (joinable_threads, tid);
4795                 joinable_thread_count --;
4796                 found = TRUE;
4797         }
4798         joinable_threads_unlock ();
4799         if (!found)
4800                 return;
4801         thread = (pthread_t)tid;
4802         pthread_join (thread, NULL);
4803 #endif
4804 }
4805
4806 void
4807 mono_thread_internal_check_for_interruption_critical (MonoInternalThread *thread)
4808 {
4809         if ((thread->state & (ThreadState_StopRequested | ThreadState_SuspendRequested)) != 0)
4810                 mono_thread_interruption_checkpoint ();
4811 }
4812
4813 static inline gboolean
4814 is_appdomainunloaded_exception (MonoClass *klass)
4815 {
4816         static MonoClass *app_domain_unloaded_exception_klass = NULL;
4817
4818         if (!app_domain_unloaded_exception_klass)
4819                 app_domain_unloaded_exception_klass = mono_class_from_name (mono_defaults.corlib, "System", "AppDomainUnloadedException");
4820         g_assert (app_domain_unloaded_exception_klass);
4821
4822         return klass == app_domain_unloaded_exception_klass;
4823 }
4824
4825 static inline gboolean
4826 is_threadabort_exception (MonoClass *klass)
4827 {
4828         return klass == mono_defaults.threadabortexception_class;
4829 }
4830
4831 void
4832 mono_thread_internal_unhandled_exception (MonoObject* exc)
4833 {
4834         if (mono_runtime_unhandled_exception_policy_get () == MONO_UNHANDLED_POLICY_CURRENT) {
4835                 MonoClass *klass = exc->vtable->klass;
4836                 if (is_threadabort_exception (klass)) {
4837                         mono_thread_internal_reset_abort (mono_thread_internal_current ());
4838                 } else if (!is_appdomainunloaded_exception (klass)) {
4839                         mono_unhandled_exception (exc);
4840                         if (mono_environment_exitcode_get () == 1)
4841                                 exit (255);
4842                 }
4843         }
4844 }
4845
4846 void
4847 ves_icall_System_Threading_Thread_GetStackTraces (MonoArray **out_threads, MonoArray **out_stack_traces)
4848 {
4849         mono_threads_get_thread_dump (out_threads, out_stack_traces);
4850 }