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