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