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