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