Merge pull request #2279 from xmcclure/mono-posix-version
[mono.git] / mono / metadata / domain.c
1 /*
2  * domain.c: MonoDomain functions
3  *
4  * Author:
5  *      Dietmar Maurer (dietmar@ximian.com)
6  *      Patrik Torstensson
7  *
8  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
9  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
10  * Copyright 2011-2012 Xamarin, Inc (http://www.xamarin.com)
11  */
12
13 #include <config.h>
14 #include <glib.h>
15 #include <string.h>
16 #include <sys/stat.h>
17
18 #include <mono/metadata/gc-internals.h>
19
20 #include <mono/utils/atomic.h>
21 #include <mono/utils/mono-compiler.h>
22 #include <mono/utils/mono-logger-internals.h>
23 #include <mono/utils/mono-membar.h>
24 #include <mono/utils/mono-counters.h>
25 #include <mono/utils/hazard-pointer.h>
26 #include <mono/utils/mono-tls.h>
27 #include <mono/utils/mono-mmap.h>
28 #include <mono/utils/mono-threads.h>
29 #include <mono/metadata/object.h>
30 #include <mono/metadata/object-internals.h>
31 #include <mono/metadata/domain-internals.h>
32 #include <mono/metadata/class-internals.h>
33 #include <mono/metadata/assembly.h>
34 #include <mono/metadata/exception.h>
35 #include <mono/metadata/metadata-internals.h>
36 #include <mono/metadata/gc-internals.h>
37 #include <mono/metadata/appdomain.h>
38 #include <mono/metadata/mono-debug-debugger.h>
39 #include <mono/metadata/mono-config.h>
40 #include <mono/metadata/threads-types.h>
41 #include <mono/metadata/runtime.h>
42 #include <metadata/threads.h>
43 #include <metadata/profiler-private.h>
44 #include <mono/metadata/coree.h>
45
46 //#define DEBUG_DOMAIN_UNLOAD 1
47
48 /* we need to use both the Tls* functions and __thread because
49  * some archs may generate faster jit code with one meachanism
50  * or the other (we used to do it because tls slots were GC-tracked,
51  * but we can't depend on this).
52  */
53 static MonoNativeTlsKey appdomain_thread_id;
54
55 #ifdef MONO_HAVE_FAST_TLS
56
57 MONO_FAST_TLS_DECLARE(tls_appdomain);
58
59 #define GET_APPDOMAIN() ((MonoDomain*)MONO_FAST_TLS_GET(tls_appdomain))
60
61 #define SET_APPDOMAIN(x) do { \
62         MonoThreadInfo *info; \
63         MONO_FAST_TLS_SET (tls_appdomain,x); \
64         mono_native_tls_set_value (appdomain_thread_id, x); \
65         mono_gc_set_current_thread_appdomain (x); \
66         info = mono_thread_info_current (); \
67         if (info) \
68                 mono_thread_info_tls_set (info, TLS_KEY_DOMAIN, (x));   \
69 } while (FALSE)
70
71 #else /* !MONO_HAVE_FAST_TLS */
72
73 #define GET_APPDOMAIN() ((MonoDomain *)mono_native_tls_get_value (appdomain_thread_id))
74 #define SET_APPDOMAIN(x) do {                                           \
75                 MonoThreadInfo *info;                                                           \
76                 mono_native_tls_set_value (appdomain_thread_id, x);     \
77                 mono_gc_set_current_thread_appdomain (x);               \
78                 info = mono_thread_info_current ();                             \
79                 if (info)                                                                                                \
80                         mono_thread_info_tls_set (info, TLS_KEY_DOMAIN, (x));   \
81         } while (FALSE)
82
83 #endif
84
85 #define GET_APPCONTEXT() (mono_thread_internal_current ()->current_appcontext)
86 #define SET_APPCONTEXT(x) MONO_OBJECT_SETREF (mono_thread_internal_current (), current_appcontext, (x))
87
88 static guint16 appdomain_list_size = 0;
89 static guint16 appdomain_next = 0;
90 static MonoDomain **appdomains_list = NULL;
91 static MonoImage *exe_image;
92 static gboolean debug_domain_unload;
93
94 gboolean mono_dont_free_domains;
95
96 #define mono_appdomains_lock() mono_coop_mutex_lock (&appdomains_mutex)
97 #define mono_appdomains_unlock() mono_coop_mutex_unlock (&appdomains_mutex)
98 static MonoCoopMutex appdomains_mutex;
99
100 static MonoDomain *mono_root_domain = NULL;
101
102 /* some statistics */
103 static int max_domain_code_size = 0;
104 static int max_domain_code_alloc = 0;
105 static int total_domain_code_alloc = 0;
106
107 /* AppConfigInfo: Information about runtime versions supported by an 
108  * aplication.
109  */
110 typedef struct {
111         GSList *supported_runtimes;
112         char *required_runtime;
113         int configuration_count;
114         int startup_count;
115 } AppConfigInfo;
116
117 static const MonoRuntimeInfo *current_runtime = NULL;
118
119 /* This is the list of runtime versions supported by this JIT.
120  */
121 static const MonoRuntimeInfo supported_runtimes[] = {
122         {"v4.0.30319","4.5", { {4,0,0,0}, {10,0,0,0}, {4,0,0,0}, {4,0,0,0} } },
123         {"mobile",    "2.1", { {2,0,5,0}, {10,0,0,0}, {2,0,5,0}, {2,0,5,0} } },
124         {"moonlight", "2.1", { {2,0,5,0}, { 9,0,0,0}, {3,5,0,0}, {3,0,0,0} } },
125 };
126
127
128 /* The stable runtime version */
129 #define DEFAULT_RUNTIME_VERSION "v4.0.30319"
130
131 /* Callbacks installed by the JIT */
132 static MonoCreateDomainFunc create_domain_hook;
133 static MonoFreeDomainFunc free_domain_hook;
134
135 /* AOT cache configuration */
136 static MonoAotCacheConfig aot_cache_config;
137
138 static void
139 get_runtimes_from_exe (const char *exe_file, MonoImage **exe_image, const MonoRuntimeInfo** runtimes);
140
141 static const MonoRuntimeInfo*
142 get_runtime_by_version (const char *version);
143
144 MonoNativeTlsKey
145 mono_domain_get_tls_key (void)
146 {
147         return appdomain_thread_id;
148 }
149
150 gint32
151 mono_domain_get_tls_offset (void)
152 {
153         int offset = -1;
154
155 #ifdef HOST_WIN32
156         if (appdomain_thread_id)
157                 offset = appdomain_thread_id;
158 #else
159         MONO_THREAD_VAR_OFFSET (tls_appdomain, offset);
160 #endif
161         return offset;
162 }
163
164 #define ALIGN_TO(val,align) ((((guint64)val) + ((align) - 1)) & ~((align) - 1))
165 #define ALIGN_PTR_TO(ptr,align) (gpointer)((((gssize)(ptr)) + (align - 1)) & (~(align - 1)))
166
167 static LockFreeMempool*
168 lock_free_mempool_new (void)
169 {
170         return g_new0 (LockFreeMempool, 1);
171 }
172
173 static void
174 lock_free_mempool_free (LockFreeMempool *mp)
175 {
176         LockFreeMempoolChunk *chunk, *next;
177
178         chunk = mp->chunks;
179         while (chunk) {
180                 next = chunk->prev;
181                 mono_vfree (chunk, mono_pagesize ());
182                 chunk = next;
183         }
184         g_free (mp);
185 }
186
187 /*
188  * This is async safe
189  */
190 static LockFreeMempoolChunk*
191 lock_free_mempool_chunk_new (LockFreeMempool *mp, int len)
192 {
193         LockFreeMempoolChunk *chunk, *prev;
194         int size;
195
196         size = mono_pagesize ();
197         while (size - sizeof (LockFreeMempoolChunk) < len)
198                 size += mono_pagesize ();
199         chunk = mono_valloc (0, size, MONO_MMAP_READ|MONO_MMAP_WRITE);
200         g_assert (chunk);
201         chunk->mem = ALIGN_PTR_TO ((char*)chunk + sizeof (LockFreeMempoolChunk), 16);
202         chunk->size = ((char*)chunk + size) - (char*)chunk->mem;
203         chunk->pos = 0;
204
205         /* Add to list of chunks lock-free */
206         while (TRUE) {
207                 prev = mp->chunks;
208                 if (InterlockedCompareExchangePointer ((volatile gpointer*)&mp->chunks, chunk, prev) == prev)
209                         break;
210         }
211         chunk->prev = prev;
212
213         return chunk;
214 }
215
216 /*
217  * This is async safe
218  */
219 static gpointer
220 lock_free_mempool_alloc0 (LockFreeMempool *mp, guint size)
221 {
222         LockFreeMempoolChunk *chunk;
223         gpointer res;
224         int oldpos;
225
226         // FIXME: Free the allocator
227
228         size = ALIGN_TO (size, 8);
229         chunk = mp->current;
230         if (!chunk) {
231                 chunk = lock_free_mempool_chunk_new (mp, size);
232                 mono_memory_barrier ();
233                 /* Publish */
234                 mp->current = chunk;
235         }
236
237         /* The code below is lock-free, 'chunk' is shared state */
238         oldpos = InterlockedExchangeAdd (&chunk->pos, size);
239         if (oldpos + size > chunk->size) {
240                 chunk = lock_free_mempool_chunk_new (mp, size);
241                 g_assert (chunk->pos + size <= chunk->size);
242                 res = chunk->mem;
243                 chunk->pos += size;
244                 mono_memory_barrier ();
245                 mp->current = chunk;
246         } else {
247                 res = (char*)chunk->mem + oldpos;
248         }
249
250         return res;
251 }
252
253 void
254 mono_install_create_domain_hook (MonoCreateDomainFunc func)
255 {
256         create_domain_hook = func;
257 }
258
259 void
260 mono_install_free_domain_hook (MonoFreeDomainFunc func)
261 {
262         free_domain_hook = func;
263 }
264
265 /**
266  * mono_string_equal:
267  * @s1: First string to compare
268  * @s2: Second string to compare
269  *
270  * Returns FALSE if the strings differ.
271  */
272 gboolean
273 mono_string_equal (MonoString *s1, MonoString *s2)
274 {
275         int l1 = mono_string_length (s1);
276         int l2 = mono_string_length (s2);
277
278         if (s1 == s2)
279                 return TRUE;
280         if (l1 != l2)
281                 return FALSE;
282
283         return memcmp (mono_string_chars (s1), mono_string_chars (s2), l1 * 2) == 0; 
284 }
285
286 /**
287  * mono_string_hash:
288  * @s: the string to hash
289  *
290  * Returns the hash for the string.
291  */
292 guint
293 mono_string_hash (MonoString *s)
294 {
295         const guint16 *p = mono_string_chars (s);
296         int i, len = mono_string_length (s);
297         guint h = 0;
298
299         for (i = 0; i < len; i++) {
300                 h = (h << 5) - h + *p;
301                 p++;
302         }
303
304         return h;       
305 }
306
307 static gboolean
308 mono_ptrarray_equal (gpointer *s1, gpointer *s2)
309 {
310         int len = GPOINTER_TO_INT (s1 [0]);
311         if (len != GPOINTER_TO_INT (s2 [0]))
312                 return FALSE;
313
314         return memcmp (s1 + 1, s2 + 1, len * sizeof(gpointer)) == 0; 
315 }
316
317 static guint
318 mono_ptrarray_hash (gpointer *s)
319 {
320         int i;
321         int len = GPOINTER_TO_INT (s [0]);
322         guint hash = 0;
323         
324         for (i = 1; i < len; i++)
325                 hash += GPOINTER_TO_UINT (s [i]);
326
327         return hash;    
328 }
329
330 /*
331  * Allocate an id for domain and set domain->domain_id.
332  * LOCKING: must be called while holding appdomains_mutex.
333  * We try to assign low numbers to the domain, so it can be used
334  * as an index in data tables to lookup domain-specific info
335  * with minimal memory overhead. We also try not to reuse the
336  * same id too quickly (to help debugging).
337  */
338 static int
339 domain_id_alloc (MonoDomain *domain)
340 {
341         int id = -1, i;
342         if (!appdomains_list) {
343                 appdomain_list_size = 2;
344                 appdomains_list = mono_gc_alloc_fixed (appdomain_list_size * sizeof (void*), MONO_GC_DESCRIPTOR_NULL, MONO_ROOT_SOURCE_DOMAIN, "domains list");
345         }
346         for (i = appdomain_next; i < appdomain_list_size; ++i) {
347                 if (!appdomains_list [i]) {
348                         id = i;
349                         break;
350                 }
351         }
352         if (id == -1) {
353                 for (i = 0; i < appdomain_next; ++i) {
354                         if (!appdomains_list [i]) {
355                                 id = i;
356                                 break;
357                         }
358                 }
359         }
360         if (id == -1) {
361                 MonoDomain **new_list;
362                 int new_size = appdomain_list_size * 2;
363                 if (new_size >= (1 << 16))
364                         g_assert_not_reached ();
365                 id = appdomain_list_size;
366                 new_list = mono_gc_alloc_fixed (new_size * sizeof (void*), MONO_GC_DESCRIPTOR_NULL, MONO_ROOT_SOURCE_DOMAIN, "domains list");
367                 memcpy (new_list, appdomains_list, appdomain_list_size * sizeof (void*));
368                 mono_gc_free_fixed (appdomains_list);
369                 appdomains_list = new_list;
370                 appdomain_list_size = new_size;
371         }
372         domain->domain_id = id;
373         appdomains_list [id] = domain;
374         appdomain_next++;
375         if (appdomain_next > appdomain_list_size)
376                 appdomain_next = 0;
377         return id;
378 }
379
380 static gsize domain_gc_bitmap [sizeof(MonoDomain)/4/32 + 1];
381 static MonoGCDescriptor domain_gc_desc = MONO_GC_DESCRIPTOR_NULL;
382 static guint32 domain_shadow_serial = 0L;
383
384 MonoDomain *
385 mono_domain_create (void)
386 {
387         MonoDomain *domain;
388         guint32 shadow_serial;
389   
390         mono_appdomains_lock ();
391         shadow_serial = domain_shadow_serial++;
392   
393         if (!domain_gc_desc) {
394                 unsigned int i, bit = 0;
395                 for (i = G_STRUCT_OFFSET (MonoDomain, MONO_DOMAIN_FIRST_OBJECT); i < G_STRUCT_OFFSET (MonoDomain, MONO_DOMAIN_FIRST_GC_TRACKED); i += sizeof (gpointer)) {
396                         bit = i / sizeof (gpointer);
397                         domain_gc_bitmap [bit / 32] |= (gsize) 1 << (bit % 32);
398                 }
399                 domain_gc_desc = mono_gc_make_descr_from_bitmap ((gsize*)domain_gc_bitmap, bit + 1);
400         }
401         mono_appdomains_unlock ();
402
403 #ifdef HAVE_BOEHM_GC
404         /*
405          * Boehm doesn't like roots inside GC allocated objects, and alloc_fixed returns
406          * a GC_MALLOC-ed object, contrary to the api docs. This causes random crashes when
407          * running the corlib test suite.
408          * To solve this, we pass a NULL descriptor, and don't register roots.
409          */
410         domain = mono_gc_alloc_fixed (sizeof (MonoDomain), NULL, MONO_ROOT_SOURCE_DOMAIN, "domain object");
411 #else
412         domain = mono_gc_alloc_fixed (sizeof (MonoDomain), domain_gc_desc, MONO_ROOT_SOURCE_DOMAIN, "domain object");
413         mono_gc_register_root ((char*)&(domain->MONO_DOMAIN_FIRST_GC_TRACKED), G_STRUCT_OFFSET (MonoDomain, MONO_DOMAIN_LAST_GC_TRACKED) - G_STRUCT_OFFSET (MonoDomain, MONO_DOMAIN_FIRST_GC_TRACKED), MONO_GC_DESCRIPTOR_NULL, MONO_ROOT_SOURCE_DOMAIN, "misc domain fields");
414 #endif
415         domain->shadow_serial = shadow_serial;
416         domain->domain = NULL;
417         domain->setup = NULL;
418         domain->friendly_name = NULL;
419         domain->search_path = NULL;
420
421         mono_profiler_appdomain_event (domain, MONO_PROFILE_START_LOAD);
422
423         domain->mp = mono_mempool_new ();
424         domain->code_mp = mono_code_manager_new ();
425         domain->lock_free_mp = lock_free_mempool_new ();
426         domain->env = mono_g_hash_table_new_type ((GHashFunc)mono_string_hash, (GCompareFunc)mono_string_equal, MONO_HASH_KEY_VALUE_GC, MONO_ROOT_SOURCE_DOMAIN, "domain environment variables table");
427         domain->domain_assemblies = NULL;
428         domain->assembly_bindings = NULL;
429         domain->assembly_bindings_parsed = FALSE;
430         domain->class_vtable_array = g_ptr_array_new ();
431         domain->proxy_vtable_hash = g_hash_table_new ((GHashFunc)mono_ptrarray_hash, (GCompareFunc)mono_ptrarray_equal);
432         domain->static_data_array = NULL;
433         mono_jit_code_hash_init (&domain->jit_code_hash);
434         domain->ldstr_table = mono_g_hash_table_new_type ((GHashFunc)mono_string_hash, (GCompareFunc)mono_string_equal, MONO_HASH_KEY_VALUE_GC, MONO_ROOT_SOURCE_DOMAIN, "domain string constants table");
435         domain->num_jit_info_tables = 1;
436         domain->jit_info_table = mono_jit_info_table_new (domain);
437         domain->jit_info_free_queue = NULL;
438         domain->finalizable_objects_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
439         domain->ftnptrs_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
440
441         mono_coop_mutex_init_recursive (&domain->lock);
442
443         mono_os_mutex_init_recursive (&domain->assemblies_lock);
444         mono_os_mutex_init_recursive (&domain->jit_code_hash_lock);
445         mono_os_mutex_init_recursive (&domain->finalizable_objects_hash_lock);
446
447         domain->method_rgctx_hash = NULL;
448
449         mono_appdomains_lock ();
450         domain_id_alloc (domain);
451         mono_appdomains_unlock ();
452
453 #ifndef DISABLE_PERFCOUNTERS
454         mono_perfcounters->loader_appdomains++;
455         mono_perfcounters->loader_total_appdomains++;
456 #endif
457
458         mono_debug_domain_create (domain);
459
460         if (create_domain_hook)
461                 create_domain_hook (domain);
462
463         mono_profiler_appdomain_loaded (domain, MONO_PROFILE_OK);
464         
465         return domain;
466 }
467
468 /**
469  * mono_init_internal:
470  * 
471  * Creates the initial application domain and initializes the mono_defaults
472  * structure.
473  * This function is guaranteed to not run any IL code.
474  * If exe_filename is not NULL, the method will determine the required runtime
475  * from the exe configuration file or the version PE field.
476  * If runtime_version is not NULL, that runtime version will be used.
477  * Either exe_filename or runtime_version must be provided.
478  *
479  * Returns: the initial domain.
480  */
481 static MonoDomain *
482 mono_init_internal (const char *filename, const char *exe_filename, const char *runtime_version)
483 {
484         static MonoDomain *domain = NULL;
485         MonoAssembly *ass = NULL;
486         MonoImageOpenStatus status = MONO_IMAGE_OK;
487         const MonoRuntimeInfo* runtimes [G_N_ELEMENTS (supported_runtimes) + 1];
488         int n, dummy;
489
490 #ifdef DEBUG_DOMAIN_UNLOAD
491         debug_domain_unload = TRUE;
492 #endif
493
494         if (domain)
495                 g_assert_not_reached ();
496
497 #ifdef HOST_WIN32
498         /* Avoid system error message boxes. */
499         SetErrorMode (SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX);
500 #endif
501
502 #ifndef HOST_WIN32
503         wapi_init ();
504 #endif
505
506 #ifndef DISABLE_PERFCOUNTERS
507         mono_perfcounters_init ();
508 #endif
509         mono_counters_init ();
510
511         mono_counters_register ("Max native code in a domain", MONO_COUNTER_INT|MONO_COUNTER_JIT, &max_domain_code_size);
512         mono_counters_register ("Max code space allocated in a domain", MONO_COUNTER_INT|MONO_COUNTER_JIT, &max_domain_code_alloc);
513         mono_counters_register ("Total code space allocated", MONO_COUNTER_INT|MONO_COUNTER_JIT, &total_domain_code_alloc);
514
515         mono_gc_base_init ();
516         mono_thread_info_attach (&dummy);
517
518         MONO_FAST_TLS_INIT (tls_appdomain);
519         mono_native_tls_alloc (&appdomain_thread_id, NULL);
520
521         mono_coop_mutex_init_recursive (&appdomains_mutex);
522
523         mono_metadata_init ();
524         mono_images_init ();
525         mono_assemblies_init ();
526         mono_classes_init ();
527         mono_loader_init ();
528         mono_reflection_init ();
529         mono_runtime_init_tls ();
530
531         /* FIXME: When should we release this memory? */
532         MONO_GC_REGISTER_ROOT_FIXED (appdomains_list, MONO_ROOT_SOURCE_DOMAIN, "domains list");
533
534         domain = mono_domain_create ();
535         mono_root_domain = domain;
536
537         SET_APPDOMAIN (domain);
538         
539         /* Get a list of runtimes supported by the exe */
540         if (exe_filename != NULL) {
541                 /*
542                  * This function will load the exe file as a MonoImage. We need to close it, but
543                  * that would mean it would be reloaded later. So instead, we save it to
544                  * exe_image, and close it during shutdown.
545                  */
546                 get_runtimes_from_exe (exe_filename, &exe_image, runtimes);
547 #ifdef HOST_WIN32
548                 if (!exe_image) {
549                         exe_image = mono_assembly_open_from_bundle (exe_filename, NULL, FALSE);
550                         if (!exe_image)
551                                 exe_image = mono_image_open (exe_filename, NULL);
552                 }
553                 mono_fixup_exe_image (exe_image);
554 #endif
555         } else if (runtime_version != NULL) {
556                 runtimes [0] = get_runtime_by_version (runtime_version);
557                 runtimes [1] = NULL;
558         }
559
560         if (runtimes [0] == NULL) {
561                 const MonoRuntimeInfo *default_runtime = get_runtime_by_version (DEFAULT_RUNTIME_VERSION);
562                 runtimes [0] = default_runtime;
563                 runtimes [1] = NULL;
564                 g_print ("WARNING: The runtime version supported by this application is unavailable.\n");
565                 g_print ("Using default runtime: %s\n", default_runtime->runtime_version); 
566         }
567
568         /* The selected runtime will be the first one for which there is a mscrolib.dll */
569         for (n = 0; runtimes [n] != NULL && ass == NULL; n++) {
570                 current_runtime = runtimes [n];
571                 ass = mono_assembly_load_corlib (current_runtime, &status);
572                 if (status != MONO_IMAGE_OK && status != MONO_IMAGE_ERROR_ERRNO)
573                         break;
574
575         }
576         
577         if ((status != MONO_IMAGE_OK) || (ass == NULL)) {
578                 switch (status){
579                 case MONO_IMAGE_ERROR_ERRNO: {
580                         char *corlib_file = g_build_filename (mono_assembly_getrootdir (), "mono", current_runtime->framework_version, "mscorlib.dll", NULL);
581                         g_print ("The assembly mscorlib.dll was not found or could not be loaded.\n");
582                         g_print ("It should have been installed in the `%s' directory.\n", corlib_file);
583                         g_free (corlib_file);
584                         break;
585                 }
586                 case MONO_IMAGE_IMAGE_INVALID:
587                         g_print ("The file %s/mscorlib.dll is an invalid CIL image\n",
588                                  mono_assembly_getrootdir ());
589                         break;
590                 case MONO_IMAGE_MISSING_ASSEMBLYREF:
591                         g_print ("Missing assembly reference in %s/mscorlib.dll\n",
592                                  mono_assembly_getrootdir ());
593                         break;
594                 case MONO_IMAGE_OK:
595                         /* to suppress compiler warning */
596                         break;
597                 }
598                 
599                 exit (1);
600         }
601         mono_defaults.corlib = mono_assembly_get_image (ass);
602
603         mono_defaults.object_class = mono_class_from_name (
604                 mono_defaults.corlib, "System", "Object");
605         g_assert (mono_defaults.object_class != 0);
606
607         mono_defaults.void_class = mono_class_from_name (
608                 mono_defaults.corlib, "System", "Void");
609         g_assert (mono_defaults.void_class != 0);
610
611         mono_defaults.boolean_class = mono_class_from_name (
612                 mono_defaults.corlib, "System", "Boolean");
613         g_assert (mono_defaults.boolean_class != 0);
614
615         mono_defaults.byte_class = mono_class_from_name (
616                 mono_defaults.corlib, "System", "Byte");
617         g_assert (mono_defaults.byte_class != 0);
618
619         mono_defaults.sbyte_class = mono_class_from_name (
620                 mono_defaults.corlib, "System", "SByte");
621         g_assert (mono_defaults.sbyte_class != 0);
622
623         mono_defaults.int16_class = mono_class_from_name (
624                 mono_defaults.corlib, "System", "Int16");
625         g_assert (mono_defaults.int16_class != 0);
626
627         mono_defaults.uint16_class = mono_class_from_name (
628                 mono_defaults.corlib, "System", "UInt16");
629         g_assert (mono_defaults.uint16_class != 0);
630
631         mono_defaults.int32_class = mono_class_from_name (
632                 mono_defaults.corlib, "System", "Int32");
633         g_assert (mono_defaults.int32_class != 0);
634
635         mono_defaults.uint32_class = mono_class_from_name (
636                 mono_defaults.corlib, "System", "UInt32");
637         g_assert (mono_defaults.uint32_class != 0);
638
639         mono_defaults.uint_class = mono_class_from_name (
640                 mono_defaults.corlib, "System", "UIntPtr");
641         g_assert (mono_defaults.uint_class != 0);
642
643         mono_defaults.int_class = mono_class_from_name (
644                 mono_defaults.corlib, "System", "IntPtr");
645         g_assert (mono_defaults.int_class != 0);
646
647         mono_defaults.int64_class = mono_class_from_name (
648                 mono_defaults.corlib, "System", "Int64");
649         g_assert (mono_defaults.int64_class != 0);
650
651         mono_defaults.uint64_class = mono_class_from_name (
652                 mono_defaults.corlib, "System", "UInt64");
653         g_assert (mono_defaults.uint64_class != 0);
654
655         mono_defaults.single_class = mono_class_from_name (
656                 mono_defaults.corlib, "System", "Single");
657         g_assert (mono_defaults.single_class != 0);
658
659         mono_defaults.double_class = mono_class_from_name (
660                 mono_defaults.corlib, "System", "Double");
661         g_assert (mono_defaults.double_class != 0);
662
663         mono_defaults.char_class = mono_class_from_name (
664                 mono_defaults.corlib, "System", "Char");
665         g_assert (mono_defaults.char_class != 0);
666
667         mono_defaults.string_class = mono_class_from_name (
668                 mono_defaults.corlib, "System", "String");
669         g_assert (mono_defaults.string_class != 0);
670
671         mono_defaults.enum_class = mono_class_from_name (
672                 mono_defaults.corlib, "System", "Enum");
673         g_assert (mono_defaults.enum_class != 0);
674
675         mono_defaults.array_class = mono_class_from_name (
676                 mono_defaults.corlib, "System", "Array");
677         g_assert (mono_defaults.array_class != 0);
678
679         mono_defaults.delegate_class = mono_class_from_name (
680                 mono_defaults.corlib, "System", "Delegate");
681         g_assert (mono_defaults.delegate_class != 0 );
682
683         mono_defaults.multicastdelegate_class = mono_class_from_name (
684                 mono_defaults.corlib, "System", "MulticastDelegate");
685         g_assert (mono_defaults.multicastdelegate_class != 0 );
686
687         mono_defaults.asyncresult_class = mono_class_from_name (
688                 mono_defaults.corlib, "System.Runtime.Remoting.Messaging", 
689                 "AsyncResult");
690         g_assert (mono_defaults.asyncresult_class != 0 );
691
692         mono_defaults.manualresetevent_class = mono_class_from_name (
693                 mono_defaults.corlib, "System.Threading", "ManualResetEvent");
694         g_assert (mono_defaults.manualresetevent_class != 0 );
695
696         mono_defaults.typehandle_class = mono_class_from_name (
697                 mono_defaults.corlib, "System", "RuntimeTypeHandle");
698         g_assert (mono_defaults.typehandle_class != 0);
699
700         mono_defaults.methodhandle_class = mono_class_from_name (
701                 mono_defaults.corlib, "System", "RuntimeMethodHandle");
702         g_assert (mono_defaults.methodhandle_class != 0);
703
704         mono_defaults.fieldhandle_class = mono_class_from_name (
705                 mono_defaults.corlib, "System", "RuntimeFieldHandle");
706         g_assert (mono_defaults.fieldhandle_class != 0);
707
708         mono_defaults.systemtype_class = mono_class_from_name (
709                 mono_defaults.corlib, "System", "Type");
710         g_assert (mono_defaults.systemtype_class != 0);
711
712         mono_defaults.monotype_class = mono_class_from_name (
713                 mono_defaults.corlib, "System", "MonoType");
714         g_assert (mono_defaults.monotype_class != 0);
715
716         mono_defaults.runtimetype_class = mono_class_from_name (
717                 mono_defaults.corlib, "System", "RuntimeType");
718         g_assert (mono_defaults.runtimetype_class != 0);
719
720         mono_defaults.exception_class = mono_class_from_name (
721                 mono_defaults.corlib, "System", "Exception");
722         g_assert (mono_defaults.exception_class != 0);
723
724         mono_defaults.threadabortexception_class = mono_class_from_name (
725                 mono_defaults.corlib, "System.Threading", "ThreadAbortException");
726         g_assert (mono_defaults.threadabortexception_class != 0);
727
728         mono_defaults.thread_class = mono_class_from_name (
729                 mono_defaults.corlib, "System.Threading", "Thread");
730         g_assert (mono_defaults.thread_class != 0);
731
732         mono_defaults.internal_thread_class = mono_class_from_name (
733                 mono_defaults.corlib, "System.Threading", "InternalThread");
734         if (!mono_defaults.internal_thread_class) {
735                 /* This can happen with an old mscorlib */
736                 fprintf (stderr, "Corlib too old for this runtime.\n");
737                 fprintf (stderr, "Loaded from: %s\n",
738                                  mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown");
739                 exit (1);
740         }
741
742         mono_defaults.appdomain_class = mono_class_from_name (
743                 mono_defaults.corlib, "System", "AppDomain");
744         g_assert (mono_defaults.appdomain_class != 0);
745
746 #ifndef DISABLE_REMOTING
747         mono_defaults.transparent_proxy_class = mono_class_from_name (
748                 mono_defaults.corlib, "System.Runtime.Remoting.Proxies", "TransparentProxy");
749         g_assert (mono_defaults.transparent_proxy_class != 0);
750
751         mono_defaults.real_proxy_class = mono_class_from_name (
752                 mono_defaults.corlib, "System.Runtime.Remoting.Proxies", "RealProxy");
753         g_assert (mono_defaults.real_proxy_class != 0);
754
755         mono_defaults.marshalbyrefobject_class =  mono_class_from_name (
756                 mono_defaults.corlib, "System", "MarshalByRefObject");
757         g_assert (mono_defaults.marshalbyrefobject_class != 0);
758
759         mono_defaults.iremotingtypeinfo_class = mono_class_from_name (
760                 mono_defaults.corlib, "System.Runtime.Remoting", "IRemotingTypeInfo");
761         g_assert (mono_defaults.iremotingtypeinfo_class != 0);
762 #endif
763
764         mono_defaults.mono_method_message_class = mono_class_from_name (
765                 mono_defaults.corlib, "System.Runtime.Remoting.Messaging", "MonoMethodMessage");
766         g_assert (mono_defaults.mono_method_message_class != 0);
767
768         mono_defaults.field_info_class = mono_class_from_name (
769                 mono_defaults.corlib, "System.Reflection", "FieldInfo");
770         g_assert (mono_defaults.field_info_class != 0);
771
772         mono_defaults.method_info_class = mono_class_from_name (
773                 mono_defaults.corlib, "System.Reflection", "MethodInfo");
774         g_assert (mono_defaults.method_info_class != 0);
775
776         mono_defaults.stringbuilder_class = mono_class_from_name (
777                 mono_defaults.corlib, "System.Text", "StringBuilder");
778         g_assert (mono_defaults.stringbuilder_class != 0);
779
780         mono_defaults.math_class = mono_class_from_name (
781                 mono_defaults.corlib, "System", "Math");
782         g_assert (mono_defaults.math_class != 0);
783
784         mono_defaults.stack_frame_class = mono_class_from_name (
785                 mono_defaults.corlib, "System.Diagnostics", "StackFrame");
786         g_assert (mono_defaults.stack_frame_class != 0);
787
788         mono_defaults.stack_trace_class = mono_class_from_name (
789                 mono_defaults.corlib, "System.Diagnostics", "StackTrace");
790         g_assert (mono_defaults.stack_trace_class != 0);
791
792         mono_defaults.marshal_class = mono_class_from_name (
793                 mono_defaults.corlib, "System.Runtime.InteropServices", "Marshal");
794         g_assert (mono_defaults.marshal_class != 0);
795
796         mono_defaults.typed_reference_class =  mono_class_from_name (
797                 mono_defaults.corlib, "System", "TypedReference");
798         g_assert (mono_defaults.typed_reference_class != 0);
799
800         mono_defaults.argumenthandle_class =  mono_class_from_name (
801                 mono_defaults.corlib, "System", "RuntimeArgumentHandle");
802         g_assert (mono_defaults.argumenthandle_class != 0);
803
804         mono_defaults.monitor_class =  mono_class_from_name (
805                 mono_defaults.corlib, "System.Threading", "Monitor");
806         g_assert (mono_defaults.monitor_class != 0);
807
808         mono_defaults.runtimesecurityframe_class = mono_class_from_name (
809                 mono_defaults.corlib, "System.Security", "RuntimeSecurityFrame");
810
811         mono_defaults.executioncontext_class = mono_class_from_name (
812                 mono_defaults.corlib, "System.Threading", "ExecutionContext");
813
814         mono_defaults.internals_visible_class = mono_class_from_name (
815                 mono_defaults.corlib, "System.Runtime.CompilerServices", "InternalsVisibleToAttribute");
816
817         mono_defaults.critical_finalizer_object = mono_class_from_name (
818                 mono_defaults.corlib, "System.Runtime.ConstrainedExecution", "CriticalFinalizerObject");
819
820         /*
821          * mscorlib needs a little help, only now it can load its friends list (after we have
822          * loaded the InternalsVisibleToAttribute), load it now
823          */
824         mono_assembly_load_friends (ass);
825         
826         mono_defaults.safehandle_class = mono_class_from_name (
827                 mono_defaults.corlib, "System.Runtime.InteropServices", "SafeHandle");
828
829         mono_defaults.handleref_class = mono_class_from_name (
830                 mono_defaults.corlib, "System.Runtime.InteropServices", "HandleRef");
831
832         mono_defaults.attribute_class = mono_class_from_name (
833                 mono_defaults.corlib, "System", "Attribute");
834
835         mono_defaults.customattribute_data_class = mono_class_from_name (
836                 mono_defaults.corlib, "System.Reflection", "CustomAttributeData");
837
838         mono_class_init (mono_defaults.array_class);
839         mono_defaults.generic_nullable_class = mono_class_from_name (
840                 mono_defaults.corlib, "System", "Nullable`1");
841         mono_defaults.generic_ilist_class = mono_class_from_name (
842                 mono_defaults.corlib, "System.Collections.Generic", "IList`1");
843         mono_defaults.generic_ireadonlylist_class = mono_class_from_name (
844                 mono_defaults.corlib, "System.Collections.Generic", "IReadOnlyList`1");
845
846         mono_defaults.threadpool_wait_callback_class = mono_class_from_name (
847                 mono_defaults.corlib, "System.Threading", "_ThreadPoolWaitCallback");
848         if (!mono_defaults.threadpool_wait_callback_class) {
849                 /* This can happen with an old mscorlib */
850                 fprintf (stderr, "Corlib too old for this runtime.\n");
851                 fprintf (stderr, "Loaded from: %s\n",
852                                  mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown");
853                 exit (1);
854         }
855         mono_defaults.threadpool_perform_wait_callback_method = mono_class_get_method_from_name (
856                 mono_defaults.threadpool_wait_callback_class, "PerformWaitCallback", 0);
857
858         domain->friendly_name = g_path_get_basename (filename);
859
860         mono_profiler_appdomain_name (domain, domain->friendly_name);
861
862         return domain;
863 }
864
865 /**
866  * mono_init:
867  * 
868  * Creates the initial application domain and initializes the mono_defaults
869  * structure.
870  * This function is guaranteed to not run any IL code.
871  * The runtime is initialized using the default runtime version.
872  *
873  * Returns: the initial domain.
874  */
875 MonoDomain *
876 mono_init (const char *domain_name)
877 {
878         return mono_init_internal (domain_name, NULL, DEFAULT_RUNTIME_VERSION);
879 }
880
881 /**
882  * mono_init_from_assembly:
883  * @domain_name: name to give to the initial domain
884  * @filename: filename to load on startup
885  *
886  * Used by the runtime, users should use mono_jit_init instead.
887  *
888  * Creates the initial application domain and initializes the mono_defaults
889  * structure.
890  * This function is guaranteed to not run any IL code.
891  * The runtime is initialized using the runtime version required by the
892  * provided executable. The version is determined by looking at the exe 
893  * configuration file and the version PE field)
894  *
895  * Returns: the initial domain.
896  */
897 MonoDomain *
898 mono_init_from_assembly (const char *domain_name, const char *filename)
899 {
900         return mono_init_internal (domain_name, filename, NULL);
901 }
902
903 /**
904  * mono_init_version:
905  * 
906  * Used by the runtime, users should use mono_jit_init instead.
907  * 
908  * Creates the initial application domain and initializes the mono_defaults
909  * structure.
910  *
911  * This function is guaranteed to not run any IL code.
912  * The runtime is initialized using the provided rutime version.
913  *
914  * Returns: the initial domain.
915  */
916 MonoDomain *
917 mono_init_version (const char *domain_name, const char *version)
918 {
919         return mono_init_internal (domain_name, NULL, version);
920 }
921
922 /**
923  * mono_cleanup:
924  *
925  * Cleans up all metadata modules. 
926  */
927 void
928 mono_cleanup (void)
929 {
930         mono_close_exe_image ();
931
932         mono_defaults.corlib = NULL;
933
934         mono_config_cleanup ();
935         mono_loader_cleanup ();
936         mono_classes_cleanup ();
937         mono_assemblies_cleanup ();
938         mono_images_cleanup ();
939         mono_debug_cleanup ();
940         mono_metadata_cleanup ();
941
942         mono_native_tls_free (appdomain_thread_id);
943         mono_coop_mutex_destroy (&appdomains_mutex);
944
945 #ifndef HOST_WIN32
946         wapi_cleanup ();
947 #endif
948 }
949
950 void
951 mono_close_exe_image (void)
952 {
953         if (exe_image)
954                 mono_image_close (exe_image);
955 }
956
957 /**
958  * mono_get_root_domain:
959  *
960  * The root AppDomain is the initial domain created by the runtime when it is
961  * initialized.  Programs execute on this AppDomain, but can create new ones
962  * later.   Currently there is no unmanaged API to create new AppDomains, this
963  * must be done from managed code.
964  *
965  * Returns: the root appdomain, to obtain the current domain, use mono_domain_get ()
966  */
967 MonoDomain*
968 mono_get_root_domain (void)
969 {
970         return mono_root_domain;
971 }
972
973 /**
974  * mono_domain_get:
975  *
976  * Returns: the current domain, to obtain the root domain use
977  * mono_get_root_domain().
978  */
979 MonoDomain *
980 mono_domain_get ()
981 {
982         return GET_APPDOMAIN ();
983 }
984
985 void
986 mono_domain_unset (void)
987 {
988         SET_APPDOMAIN (NULL);
989 }
990
991 void
992 mono_domain_set_internal_with_options (MonoDomain *domain, gboolean migrate_exception)
993 {
994         MonoInternalThread *thread;
995
996         if (mono_domain_get () == domain)
997                 return;
998
999         SET_APPDOMAIN (domain);
1000         SET_APPCONTEXT (domain->default_context);
1001
1002         if (migrate_exception) {
1003                 thread = mono_thread_internal_current ();
1004                 if (!thread->abort_exc)
1005                         return;
1006
1007                 g_assert (thread->abort_exc->object.vtable->domain != domain);
1008                 MONO_OBJECT_SETREF (thread, abort_exc, mono_get_exception_thread_abort ());
1009                 g_assert (thread->abort_exc->object.vtable->domain == domain);
1010         }
1011 }
1012
1013 /**
1014  * mono_domain_set_internal:
1015  * @domain: the new domain
1016  *
1017  * Sets the current domain to @domain.
1018  */
1019 void
1020 mono_domain_set_internal (MonoDomain *domain)
1021 {
1022         mono_domain_set_internal_with_options (domain, TRUE);
1023 }
1024
1025 void
1026 mono_domain_foreach (MonoDomainFunc func, gpointer user_data)
1027 {
1028         int i, size;
1029         MonoDomain **copy;
1030
1031         /*
1032          * Create a copy of the data to avoid calling the user callback
1033          * inside the lock because that could lead to deadlocks.
1034          * We can do this because this function is not perf. critical.
1035          */
1036         mono_appdomains_lock ();
1037         size = appdomain_list_size;
1038         copy = mono_gc_alloc_fixed (appdomain_list_size * sizeof (void*), MONO_GC_DESCRIPTOR_NULL, MONO_ROOT_SOURCE_DOMAIN, "temporary domains list");
1039         memcpy (copy, appdomains_list, appdomain_list_size * sizeof (void*));
1040         mono_appdomains_unlock ();
1041
1042         for (i = 0; i < size; ++i) {
1043                 if (copy [i])
1044                         func (copy [i], user_data);
1045         }
1046
1047         mono_gc_free_fixed (copy);
1048 }
1049
1050 /**
1051  * mono_domain_assembly_open:
1052  * @domain: the application domain
1053  * @name: file name of the assembly
1054  *
1055  * fixme: maybe we should integrate this with mono_assembly_open ??
1056  */
1057 MonoAssembly *
1058 mono_domain_assembly_open (MonoDomain *domain, const char *name)
1059 {
1060         MonoDomain *current;
1061         MonoAssembly *ass;
1062         GSList *tmp;
1063
1064         mono_domain_assemblies_lock (domain);
1065         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
1066                 ass = tmp->data;
1067                 if (strcmp (name, ass->aname.name) == 0) {
1068                         mono_domain_assemblies_unlock (domain);
1069                         return ass;
1070                 }
1071         }
1072         mono_domain_assemblies_unlock (domain);
1073
1074         if (domain != mono_domain_get ()) {
1075                 current = mono_domain_get ();
1076
1077                 mono_domain_set (domain, FALSE);
1078                 ass = mono_assembly_open (name, NULL);
1079                 mono_domain_set (current, FALSE);
1080         } else {
1081                 ass = mono_assembly_open (name, NULL);
1082         }
1083
1084         return ass;
1085 }
1086
1087 static void
1088 unregister_vtable_reflection_type (MonoVTable *vtable)
1089 {
1090         MonoObject *type = vtable->type;
1091
1092         if (type->vtable->klass != mono_defaults.monotype_class)
1093                 MONO_GC_UNREGISTER_ROOT_IF_MOVING (vtable->type);
1094 }
1095
1096 void
1097 mono_domain_free (MonoDomain *domain, gboolean force)
1098 {
1099         int code_size, code_alloc;
1100         GSList *tmp;
1101         gpointer *p;
1102
1103         if ((domain == mono_root_domain) && !force) {
1104                 g_warning ("cant unload root domain");
1105                 return;
1106         }
1107
1108         if (mono_dont_free_domains)
1109                 return;
1110
1111         mono_profiler_appdomain_event (domain, MONO_PROFILE_START_UNLOAD);
1112
1113         mono_debug_domain_unload (domain);
1114
1115         mono_appdomains_lock ();
1116         appdomains_list [domain->domain_id] = NULL;
1117         mono_appdomains_unlock ();
1118
1119         /* must do this early as it accesses fields and types */
1120         if (domain->special_static_fields) {
1121                 mono_alloc_special_static_data_free (domain->special_static_fields);
1122                 g_hash_table_destroy (domain->special_static_fields);
1123                 domain->special_static_fields = NULL;
1124         }
1125
1126         /*
1127          * We must destroy all these hash tables here because they
1128          * contain references to managed objects belonging to the
1129          * domain.  Once we let the GC clear the domain there must be
1130          * no more such references, or we'll crash if a collection
1131          * occurs.
1132          */
1133         mono_g_hash_table_destroy (domain->ldstr_table);
1134         domain->ldstr_table = NULL;
1135
1136         mono_g_hash_table_destroy (domain->env);
1137         domain->env = NULL;
1138
1139         mono_reflection_cleanup_domain (domain);
1140
1141         /* This must be done before type_hash is freed */
1142         if (domain->class_vtable_array) {
1143                 int i;
1144                 for (i = 0; i < domain->class_vtable_array->len; ++i)
1145                         unregister_vtable_reflection_type (g_ptr_array_index (domain->class_vtable_array, i));
1146         }
1147
1148         if (domain->type_hash) {
1149                 mono_g_hash_table_destroy (domain->type_hash);
1150                 domain->type_hash = NULL;
1151         }
1152         if (domain->type_init_exception_hash) {
1153                 mono_g_hash_table_destroy (domain->type_init_exception_hash);
1154                 domain->type_init_exception_hash = NULL;
1155         }
1156
1157         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
1158                 MonoAssembly *ass = tmp->data;
1159                 mono_assembly_release_gc_roots (ass);
1160         }
1161
1162         /* Have to zero out reference fields since they will be invalidated by the clear_domain () call below */
1163         for (p = (gpointer*)&domain->MONO_DOMAIN_FIRST_OBJECT; p < (gpointer*)&domain->MONO_DOMAIN_FIRST_GC_TRACKED; ++p)
1164                 *p = NULL;
1165
1166         /* This needs to be done before closing assemblies */
1167         mono_gc_clear_domain (domain);
1168
1169         /* Close dynamic assemblies first, since they have no ref count */
1170         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
1171                 MonoAssembly *ass = tmp->data;
1172                 if (!ass->image || !image_is_dynamic (ass->image))
1173                         continue;
1174                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Unloading domain %s[%p], assembly %s[%p], ref_count=%d", domain->friendly_name, domain, ass->aname.name, ass, ass->ref_count);
1175                 if (!mono_assembly_close_except_image_pools (ass))
1176                         tmp->data = NULL;
1177         }
1178
1179         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
1180                 MonoAssembly *ass = tmp->data;
1181                 if (!ass)
1182                         continue;
1183                 if (!ass->image || image_is_dynamic (ass->image))
1184                         continue;
1185                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Unloading domain %s[%p], assembly %s[%p], ref_count=%d", domain->friendly_name, domain, ass->aname.name, ass, ass->ref_count);
1186                 if (!mono_assembly_close_except_image_pools (ass))
1187                         tmp->data = NULL;
1188         }
1189
1190         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
1191                 MonoAssembly *ass = tmp->data;
1192                 if (ass)
1193                         mono_assembly_close_finish (ass);
1194         }
1195         g_slist_free (domain->domain_assemblies);
1196         domain->domain_assemblies = NULL;
1197
1198         /* 
1199          * Send this after the assemblies have been unloaded and the domain is still in a 
1200          * usable state.
1201          */
1202         mono_profiler_appdomain_event (domain, MONO_PROFILE_END_UNLOAD);
1203
1204         if (free_domain_hook)
1205                 free_domain_hook (domain);
1206
1207         /* FIXME: free delegate_hash_table when it's used */
1208         if (domain->search_path) {
1209                 g_strfreev (domain->search_path);
1210                 domain->search_path = NULL;
1211         }
1212         domain->create_proxy_for_type_method = NULL;
1213         domain->private_invoke_method = NULL;
1214         domain->default_context = NULL;
1215         domain->out_of_memory_ex = NULL;
1216         domain->null_reference_ex = NULL;
1217         domain->stack_overflow_ex = NULL;
1218         domain->ephemeron_tombstone = NULL;
1219         domain->entry_assembly = NULL;
1220
1221         g_free (domain->friendly_name);
1222         domain->friendly_name = NULL;
1223         g_ptr_array_free (domain->class_vtable_array, TRUE);
1224         domain->class_vtable_array = NULL;
1225         g_hash_table_destroy (domain->proxy_vtable_hash);
1226         domain->proxy_vtable_hash = NULL;
1227         if (domain->static_data_array) {
1228                 mono_gc_free_fixed (domain->static_data_array);
1229                 domain->static_data_array = NULL;
1230         }
1231         mono_internal_hash_table_destroy (&domain->jit_code_hash);
1232
1233         /*
1234          * There might still be jit info tables of this domain which
1235          * are not freed.  Since the domain cannot be in use anymore,
1236          * this will free them.
1237          */
1238         mono_thread_hazardous_try_free_all ();
1239         if (domain->aot_modules)
1240                 mono_jit_info_table_free (domain->aot_modules);
1241         g_assert (domain->num_jit_info_tables == 1);
1242         mono_jit_info_table_free (domain->jit_info_table);
1243         domain->jit_info_table = NULL;
1244         g_assert (!domain->jit_info_free_queue);
1245
1246         /* collect statistics */
1247         code_alloc = mono_code_manager_size (domain->code_mp, &code_size);
1248         total_domain_code_alloc += code_alloc;
1249         max_domain_code_alloc = MAX (max_domain_code_alloc, code_alloc);
1250         max_domain_code_size = MAX (max_domain_code_size, code_size);
1251
1252         if (debug_domain_unload) {
1253                 mono_mempool_invalidate (domain->mp);
1254                 mono_code_manager_invalidate (domain->code_mp);
1255         } else {
1256 #ifndef DISABLE_PERFCOUNTERS
1257                 mono_perfcounters->loader_bytes -= mono_mempool_get_allocated (domain->mp);
1258 #endif
1259                 mono_mempool_destroy (domain->mp);
1260                 domain->mp = NULL;
1261                 mono_code_manager_destroy (domain->code_mp);
1262                 domain->code_mp = NULL;
1263         }
1264         lock_free_mempool_free (domain->lock_free_mp);
1265         domain->lock_free_mp = NULL;
1266
1267         g_hash_table_destroy (domain->finalizable_objects_hash);
1268         domain->finalizable_objects_hash = NULL;
1269         if (domain->method_rgctx_hash) {
1270                 g_hash_table_destroy (domain->method_rgctx_hash);
1271                 domain->method_rgctx_hash = NULL;
1272         }
1273         if (domain->generic_virtual_cases) {
1274                 g_hash_table_destroy (domain->generic_virtual_cases);
1275                 domain->generic_virtual_cases = NULL;
1276         }
1277         if (domain->generic_virtual_thunks) {
1278                 g_hash_table_destroy (domain->generic_virtual_thunks);
1279                 domain->generic_virtual_thunks = NULL;
1280         }
1281         if (domain->ftnptrs_hash) {
1282                 g_hash_table_destroy (domain->ftnptrs_hash);
1283                 domain->ftnptrs_hash = NULL;
1284         }
1285         if (domain->method_to_dyn_method) {
1286                 g_hash_table_destroy (domain->method_to_dyn_method);
1287                 domain->method_to_dyn_method = NULL;
1288         }
1289
1290         mono_os_mutex_destroy (&domain->finalizable_objects_hash_lock);
1291         mono_os_mutex_destroy (&domain->assemblies_lock);
1292         mono_os_mutex_destroy (&domain->jit_code_hash_lock);
1293
1294         mono_coop_mutex_destroy (&domain->lock);
1295
1296         domain->setup = NULL;
1297
1298         mono_gc_deregister_root ((char*)&(domain->MONO_DOMAIN_FIRST_GC_TRACKED));
1299
1300         /* FIXME: anything else required ? */
1301
1302         mono_gc_free_fixed (domain);
1303
1304 #ifndef DISABLE_PERFCOUNTERS
1305         mono_perfcounters->loader_appdomains--;
1306 #endif
1307
1308         if (domain == mono_root_domain)
1309                 mono_root_domain = NULL;
1310 }
1311
1312 /**
1313  * mono_domain_get_by_id:
1314  * @domainid: the ID
1315  *
1316  * Returns: the domain for a specific domain id.
1317  */
1318 MonoDomain * 
1319 mono_domain_get_by_id (gint32 domainid) 
1320 {
1321         MonoDomain * domain;
1322
1323         mono_appdomains_lock ();
1324         if (domainid < appdomain_list_size)
1325                 domain = appdomains_list [domainid];
1326         else
1327                 domain = NULL;
1328         mono_appdomains_unlock ();
1329
1330         return domain;
1331 }
1332
1333 /*
1334  * mono_domain_get_id:
1335  *
1336  * A domain ID is guaranteed to be unique for as long as the domain
1337  * using it is alive. It may be reused later once the domain has been
1338  * unloaded.
1339  *
1340  * Returns: The unique ID for @domain.
1341  */
1342 gint32
1343 mono_domain_get_id (MonoDomain *domain)
1344 {
1345         return domain->domain_id;
1346 }
1347
1348 /*
1349  * mono_domain_get_friendly_name:
1350  *
1351  * The returned string's lifetime is the same as @domain's. Consider
1352  * copying it if you need to store it somewhere.
1353  *
1354  * Returns: The friendly name of @domain. Can be NULL if not yet set.
1355  */
1356 const char *
1357 mono_domain_get_friendly_name (MonoDomain *domain)
1358 {
1359         return domain->friendly_name;
1360 }
1361
1362 /*
1363  * mono_domain_alloc:
1364  *
1365  * LOCKING: Acquires the domain lock.
1366  */
1367 gpointer
1368 mono_domain_alloc (MonoDomain *domain, guint size)
1369 {
1370         gpointer res;
1371
1372         mono_domain_lock (domain);
1373 #ifndef DISABLE_PERFCOUNTERS
1374         mono_perfcounters->loader_bytes += size;
1375 #endif
1376         res = mono_mempool_alloc (domain->mp, size);
1377         mono_domain_unlock (domain);
1378
1379         return res;
1380 }
1381
1382 /*
1383  * mono_domain_alloc0:
1384  *
1385  * LOCKING: Acquires the domain lock.
1386  */
1387 gpointer
1388 mono_domain_alloc0 (MonoDomain *domain, guint size)
1389 {
1390         gpointer res;
1391
1392         mono_domain_lock (domain);
1393 #ifndef DISABLE_PERFCOUNTERS
1394         mono_perfcounters->loader_bytes += size;
1395 #endif
1396         res = mono_mempool_alloc0 (domain->mp, size);
1397         mono_domain_unlock (domain);
1398
1399         return res;
1400 }
1401
1402 gpointer
1403 mono_domain_alloc0_lock_free (MonoDomain *domain, guint size)
1404 {
1405         return lock_free_mempool_alloc0 (domain->lock_free_mp, size);
1406 }
1407
1408 /*
1409  * mono_domain_code_reserve:
1410  *
1411  * LOCKING: Acquires the domain lock.
1412  */
1413 void*
1414 mono_domain_code_reserve (MonoDomain *domain, int size)
1415 {
1416         gpointer res;
1417
1418         mono_domain_lock (domain);
1419         res = mono_code_manager_reserve (domain->code_mp, size);
1420         mono_domain_unlock (domain);
1421
1422         return res;
1423 }
1424
1425 /*
1426  * mono_domain_code_reserve_align:
1427  *
1428  * LOCKING: Acquires the domain lock.
1429  */
1430 void*
1431 mono_domain_code_reserve_align (MonoDomain *domain, int size, int alignment)
1432 {
1433         gpointer res;
1434
1435         mono_domain_lock (domain);
1436         res = mono_code_manager_reserve_align (domain->code_mp, size, alignment);
1437         mono_domain_unlock (domain);
1438
1439         return res;
1440 }
1441
1442 /*
1443  * mono_domain_code_commit:
1444  *
1445  * LOCKING: Acquires the domain lock.
1446  */
1447 void
1448 mono_domain_code_commit (MonoDomain *domain, void *data, int size, int newsize)
1449 {
1450         mono_domain_lock (domain);
1451         mono_code_manager_commit (domain->code_mp, data, size, newsize);
1452         mono_domain_unlock (domain);
1453 }
1454
1455 #if defined(__native_client_codegen__) && defined(__native_client__)
1456 /*
1457  * Given the temporary buffer (allocated by mono_domain_code_reserve) into which
1458  * we are generating code, return a pointer to the destination in the dynamic 
1459  * code segment into which the code will be copied when mono_domain_code_commit
1460  * is called.
1461  * LOCKING: Acquires the domain lock.
1462  */
1463 void *
1464 nacl_domain_get_code_dest (MonoDomain *domain, void *data)
1465 {
1466         void *dest;
1467         mono_domain_lock (domain);
1468         dest = nacl_code_manager_get_code_dest (domain->code_mp, data);
1469         mono_domain_unlock (domain);
1470         return dest;
1471 }
1472
1473 /* 
1474  * Convenience function which calls mono_domain_code_commit to validate and copy
1475  * the code. The caller sets *buf_base and *buf_size to the start and size of
1476  * the buffer (allocated by mono_domain_code_reserve), and *code_end to the byte
1477  * after the last instruction byte. On return, *buf_base will point to the start
1478  * of the copied in the code segment, and *code_end will point after the end of 
1479  * the copied code.
1480  */
1481 void
1482 nacl_domain_code_validate (MonoDomain *domain, guint8 **buf_base, int buf_size, guint8 **code_end)
1483 {
1484         guint8 *tmp = nacl_domain_get_code_dest (domain, *buf_base);
1485         mono_domain_code_commit (domain, *buf_base, buf_size, *code_end - *buf_base);
1486         *code_end = tmp + (*code_end - *buf_base);
1487         *buf_base = tmp;
1488 }
1489
1490 #else
1491
1492 /* no-op versions of Native Client functions */
1493
1494 void *
1495 nacl_domain_get_code_dest (MonoDomain *domain, void *data)
1496 {
1497         return data;
1498 }
1499
1500 void
1501 nacl_domain_code_validate (MonoDomain *domain, guint8 **buf_base, int buf_size, guint8 **code_end)
1502 {
1503 }
1504
1505 #endif
1506
1507 /*
1508  * mono_domain_code_foreach:
1509  * Iterate over the code thunks of the code manager of @domain.
1510  * 
1511  * The @func callback MUST not take any locks. If it really needs to, it must respect
1512  * the locking rules of the runtime: http://www.mono-project.com/Mono:Runtime:Documentation:ThreadSafety 
1513  * LOCKING: Acquires the domain lock.
1514  */
1515
1516 void
1517 mono_domain_code_foreach (MonoDomain *domain, MonoCodeManagerFunc func, void *user_data)
1518 {
1519         mono_domain_lock (domain);
1520         mono_code_manager_foreach (domain->code_mp, func, user_data);
1521         mono_domain_unlock (domain);
1522 }
1523
1524
1525 void 
1526 mono_context_set (MonoAppContext * new_context)
1527 {
1528         SET_APPCONTEXT (new_context);
1529 }
1530
1531 MonoAppContext * 
1532 mono_context_get (void)
1533 {
1534         return GET_APPCONTEXT ();
1535 }
1536
1537 /*
1538  * mono_context_get_id:
1539  *
1540  * Context IDs are guaranteed to be unique for the duration of a Mono
1541  * process; they are never reused.
1542  *
1543  * Returns: The unique ID for @context.
1544  */
1545 gint32
1546 mono_context_get_id (MonoAppContext *context)
1547 {
1548         return context->context_id;
1549 }
1550
1551 /*
1552  * mono_context_get_domain_id:
1553  *
1554  * Returns: The ID of the domain that @context was created in.
1555  */
1556 gint32
1557 mono_context_get_domain_id (MonoAppContext *context)
1558 {
1559         return context->domain_id;
1560 }
1561
1562 /* LOCKING: the caller holds the lock for this domain */
1563 void
1564 mono_domain_add_class_static_data (MonoDomain *domain, MonoClass *klass, gpointer data, guint32 *bitmap)
1565 {
1566         /* The first entry in the array is the index of the next free slot
1567          * and the total size of the array
1568          */
1569         int next;
1570         if (domain->static_data_array) {
1571                 int size = GPOINTER_TO_INT (domain->static_data_array [1]);
1572                 next = GPOINTER_TO_INT (domain->static_data_array [0]);
1573                 if (next >= size) {
1574                         /* 'data' is allocated by alloc_fixed */
1575                         gpointer *new_array = mono_gc_alloc_fixed (sizeof (gpointer) * (size * 2), MONO_GC_ROOT_DESCR_FOR_FIXED (size * 2), MONO_ROOT_SOURCE_DOMAIN, "static field list");
1576                         mono_gc_memmove_aligned (new_array, domain->static_data_array, sizeof (gpointer) * size);
1577                         size *= 2;
1578                         new_array [1] = GINT_TO_POINTER (size);
1579                         mono_gc_free_fixed (domain->static_data_array);
1580                         domain->static_data_array = new_array;
1581                 }
1582         } else {
1583                 int size = 32;
1584                 gpointer *new_array = mono_gc_alloc_fixed (sizeof (gpointer) * size, MONO_GC_ROOT_DESCR_FOR_FIXED (size), MONO_ROOT_SOURCE_DOMAIN, "static field list");
1585                 next = 2;
1586                 new_array [0] = GINT_TO_POINTER (next);
1587                 new_array [1] = GINT_TO_POINTER (size);
1588                 domain->static_data_array = new_array;
1589         }
1590         domain->static_data_array [next++] = data;
1591         domain->static_data_array [0] = GINT_TO_POINTER (next);
1592 }
1593
1594 MonoImage*
1595 mono_get_corlib (void)
1596 {
1597         return mono_defaults.corlib;
1598 }
1599
1600 MonoClass*
1601 mono_get_object_class (void)
1602 {
1603         return mono_defaults.object_class;
1604 }
1605
1606 MonoClass*
1607 mono_get_byte_class (void)
1608 {
1609         return mono_defaults.byte_class;
1610 }
1611
1612 MonoClass*
1613 mono_get_void_class (void)
1614 {
1615         return mono_defaults.void_class;
1616 }
1617
1618 MonoClass*
1619 mono_get_boolean_class (void)
1620 {
1621         return mono_defaults.boolean_class;
1622 }
1623
1624 MonoClass*
1625 mono_get_sbyte_class (void)
1626 {
1627         return mono_defaults.sbyte_class;
1628 }
1629
1630 MonoClass*
1631 mono_get_int16_class (void)
1632 {
1633         return mono_defaults.int16_class;
1634 }
1635
1636 MonoClass*
1637 mono_get_uint16_class (void)
1638 {
1639         return mono_defaults.uint16_class;
1640 }
1641
1642 MonoClass*
1643 mono_get_int32_class (void)
1644 {
1645         return mono_defaults.int32_class;
1646 }
1647
1648 MonoClass*
1649 mono_get_uint32_class (void)
1650 {
1651         return mono_defaults.uint32_class;
1652 }
1653
1654 MonoClass*
1655 mono_get_intptr_class (void)
1656 {
1657         return mono_defaults.int_class;
1658 }
1659
1660 MonoClass*
1661 mono_get_uintptr_class (void)
1662 {
1663         return mono_defaults.uint_class;
1664 }
1665
1666 MonoClass*
1667 mono_get_int64_class (void)
1668 {
1669         return mono_defaults.int64_class;
1670 }
1671
1672 MonoClass*
1673 mono_get_uint64_class (void)
1674 {
1675         return mono_defaults.uint64_class;
1676 }
1677
1678 MonoClass*
1679 mono_get_single_class (void)
1680 {
1681         return mono_defaults.single_class;
1682 }
1683
1684 MonoClass*
1685 mono_get_double_class (void)
1686 {
1687         return mono_defaults.double_class;
1688 }
1689
1690 MonoClass*
1691 mono_get_char_class (void)
1692 {
1693         return mono_defaults.char_class;
1694 }
1695
1696 MonoClass*
1697 mono_get_string_class (void)
1698 {
1699         return mono_defaults.string_class;
1700 }
1701
1702 MonoClass*
1703 mono_get_enum_class (void)
1704 {
1705         return mono_defaults.enum_class;
1706 }
1707
1708 MonoClass*
1709 mono_get_array_class (void)
1710 {
1711         return mono_defaults.array_class;
1712 }
1713
1714 MonoClass*
1715 mono_get_thread_class (void)
1716 {
1717         return mono_defaults.thread_class;
1718 }
1719
1720 MonoClass*
1721 mono_get_exception_class (void)
1722 {
1723         return mono_defaults.exception_class;
1724 }
1725
1726
1727 static char* get_attribute_value (const gchar **attribute_names, 
1728                                         const gchar **attribute_values, 
1729                                         const char *att_name)
1730 {
1731         int n;
1732         for (n=0; attribute_names[n] != NULL; n++) {
1733                 if (strcmp (attribute_names[n], att_name) == 0)
1734                         return g_strdup (attribute_values[n]);
1735         }
1736         return NULL;
1737 }
1738
1739 static void start_element (GMarkupParseContext *context, 
1740                            const gchar         *element_name,
1741                            const gchar        **attribute_names,
1742                            const gchar        **attribute_values,
1743                            gpointer             user_data,
1744                            GError             **error)
1745 {
1746         AppConfigInfo* app_config = (AppConfigInfo*) user_data;
1747         
1748         if (strcmp (element_name, "configuration") == 0) {
1749                 app_config->configuration_count++;
1750                 return;
1751         }
1752         if (strcmp (element_name, "startup") == 0) {
1753                 app_config->startup_count++;
1754                 return;
1755         }
1756         
1757         if (app_config->configuration_count != 1 || app_config->startup_count != 1)
1758                 return;
1759         
1760         if (strcmp (element_name, "requiredRuntime") == 0) {
1761                 app_config->required_runtime = get_attribute_value (attribute_names, attribute_values, "version");
1762         } else if (strcmp (element_name, "supportedRuntime") == 0) {
1763                 char *version = get_attribute_value (attribute_names, attribute_values, "version");
1764                 app_config->supported_runtimes = g_slist_append (app_config->supported_runtimes, version);
1765         }
1766 }
1767
1768 static void end_element   (GMarkupParseContext *context,
1769                            const gchar         *element_name,
1770                            gpointer             user_data,
1771                            GError             **error)
1772 {
1773         AppConfigInfo* app_config = (AppConfigInfo*) user_data;
1774         
1775         if (strcmp (element_name, "configuration") == 0) {
1776                 app_config->configuration_count--;
1777         } else if (strcmp (element_name, "startup") == 0) {
1778                 app_config->startup_count--;
1779         }
1780 }
1781
1782 static const GMarkupParser 
1783 mono_parser = {
1784         start_element,
1785         end_element,
1786         NULL,
1787         NULL,
1788         NULL
1789 };
1790
1791 static AppConfigInfo *
1792 app_config_parse (const char *exe_filename)
1793 {
1794         AppConfigInfo *app_config;
1795         GMarkupParseContext *context;
1796         char *text;
1797         gsize len;
1798         const char *bundled_config;
1799         char *config_filename;
1800
1801         bundled_config = mono_config_string_for_assembly_file (exe_filename);
1802
1803         if (bundled_config) {
1804                 text = g_strdup (bundled_config);
1805                 len = strlen (text);
1806         } else {
1807                 config_filename = g_strconcat (exe_filename, ".config", NULL);
1808
1809                 if (!g_file_get_contents (config_filename, &text, &len, NULL)) {
1810                         g_free (config_filename);
1811                         return NULL;
1812                 }
1813                 g_free (config_filename);
1814         }
1815
1816         app_config = g_new0 (AppConfigInfo, 1);
1817
1818         context = g_markup_parse_context_new (&mono_parser, 0, app_config, NULL);
1819         if (g_markup_parse_context_parse (context, text, len, NULL)) {
1820                 g_markup_parse_context_end_parse (context, NULL);
1821         }
1822         g_markup_parse_context_free (context);
1823         g_free (text);
1824         return app_config;
1825 }
1826
1827 static void 
1828 app_config_free (AppConfigInfo* app_config)
1829 {
1830         char *rt;
1831         GSList *list = app_config->supported_runtimes;
1832         while (list != NULL) {
1833                 rt = (char*)list->data;
1834                 g_free (rt);
1835                 list = g_slist_next (list);
1836         }
1837         g_slist_free (app_config->supported_runtimes);
1838         g_free (app_config->required_runtime);
1839         g_free (app_config);
1840 }
1841
1842
1843 static const MonoRuntimeInfo*
1844 get_runtime_by_version (const char *version)
1845 {
1846         int n;
1847         int max = G_N_ELEMENTS (supported_runtimes);
1848         int vlen;
1849
1850         if (!version)
1851                 return NULL;
1852
1853         for (n=0; n<max; n++) {
1854                 if (strcmp (version, supported_runtimes[n].runtime_version) == 0)
1855                         return &supported_runtimes[n];
1856         }
1857         
1858         vlen = strlen (version);
1859         if (vlen >= 4 && version [1] - '0' >= 4) {
1860                 for (n=0; n<max; n++) {
1861                         if (strncmp (version, supported_runtimes[n].runtime_version, 4) == 0)
1862                                 return &supported_runtimes[n];
1863                 }
1864         }
1865         
1866         return NULL;
1867 }
1868
1869 static void
1870 get_runtimes_from_exe (const char *exe_file, MonoImage **exe_image, const MonoRuntimeInfo** runtimes)
1871 {
1872         AppConfigInfo* app_config;
1873         char *version;
1874         const MonoRuntimeInfo* runtime = NULL;
1875         MonoImage *image = NULL;
1876         
1877         app_config = app_config_parse (exe_file);
1878         
1879         if (app_config != NULL) {
1880                 /* Check supportedRuntime elements, if none is supported, fail.
1881                  * If there are no such elements, look for a requiredRuntime element.
1882                  */
1883                 if (app_config->supported_runtimes != NULL) {
1884                         int n = 0;
1885                         GSList *list = app_config->supported_runtimes;
1886                         while (list != NULL) {
1887                                 version = (char*) list->data;
1888                                 runtime = get_runtime_by_version (version);
1889                                 if (runtime != NULL)
1890                                         runtimes [n++] = runtime;
1891                                 list = g_slist_next (list);
1892                         }
1893                         runtimes [n] = NULL;
1894                         app_config_free (app_config);
1895                         return;
1896                 }
1897                 
1898                 /* Check the requiredRuntime element. This is for 1.0 apps only. */
1899                 if (app_config->required_runtime != NULL) {
1900                         runtimes [0] = get_runtime_by_version (app_config->required_runtime);
1901                         runtimes [1] = NULL;
1902                         app_config_free (app_config);
1903                         return;
1904                 }
1905                 app_config_free (app_config);
1906         }
1907         
1908         /* Look for a runtime with the exact version */
1909         image = mono_assembly_open_from_bundle (exe_file, NULL, FALSE);
1910
1911         if (image == NULL)
1912                 image = mono_image_open (exe_file, NULL);
1913
1914         if (image == NULL) {
1915                 /* The image is wrong or the file was not found. In this case return
1916                  * a default runtime and leave to the initialization method the work of
1917                  * reporting the error.
1918                  */
1919                 runtimes [0] = get_runtime_by_version (DEFAULT_RUNTIME_VERSION);
1920                 runtimes [1] = NULL;
1921                 return;
1922         }
1923
1924         *exe_image = image;
1925
1926         runtimes [0] = get_runtime_by_version (image->version);
1927         runtimes [1] = NULL;
1928 }
1929
1930
1931 /**
1932  * mono_get_runtime_info:
1933  *
1934  * Returns: the version of the current runtime instance.
1935  */
1936 const MonoRuntimeInfo*
1937 mono_get_runtime_info (void)
1938 {
1939         return current_runtime;
1940 }
1941
1942 /**
1943  * mono_framework_version:
1944  *
1945  * Return the major version of the framework curently executing.
1946  */
1947 int
1948 mono_framework_version (void)
1949 {
1950         return current_runtime->framework_version [0] - '0';
1951 }
1952
1953 void
1954 mono_enable_debug_domain_unload (gboolean enable)
1955 {
1956         debug_domain_unload = enable;
1957 }
1958
1959 MonoAotCacheConfig *
1960 mono_get_aot_cache_config (void)
1961 {
1962         return &aot_cache_config;
1963 }
1964
1965 void
1966 mono_domain_lock (MonoDomain *domain)
1967 {
1968         mono_locks_coop_acquire (&domain->lock, DomainLock);
1969 }
1970
1971 void
1972 mono_domain_unlock (MonoDomain *domain)
1973 {
1974         mono_locks_coop_release (&domain->lock, DomainLock);
1975 }