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