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