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