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