2006-05-04 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / domain.c
1
2 /*
3  * domain.c: MonoDomain functions
4  *
5  * Author:
6  *      Dietmar Maurer (dietmar@ximian.com)
7  *      Patrik Torstensson
8  *
9  * (C) 2001 Ximian, Inc.
10  */
11
12 #include <config.h>
13 #include <glib.h>
14 #include <string.h>
15 #include <sys/stat.h>
16
17 #include <mono/os/gc_wrapper.h>
18
19 #include <mono/utils/mono-compiler.h>
20 #include <mono/utils/mono-logger.h>
21 #include <mono/metadata/object.h>
22 #include <mono/metadata/object-internals.h>
23 #include <mono/metadata/domain-internals.h>
24 #include <mono/metadata/class-internals.h>
25 #include <mono/metadata/assembly.h>
26 #include <mono/metadata/exception.h>
27 #include <mono/metadata/cil-coff.h>
28 #include <mono/metadata/rawbuffer.h>
29 #include <mono/metadata/metadata-internals.h>
30 #include <mono/metadata/gc-internal.h>
31 #include <mono/metadata/appdomain.h>
32 #include <mono/metadata/mono-debug-debugger.h>
33 #include <metadata/threads.h>
34
35 /* #define DEBUG_DOMAIN_UNLOAD */
36
37 /* we need to use both the Tls* functions and __thread because
38  * some archs may generate faster jit code with one meachanism
39  * or the other (we used to do it because tls slots were GC-tracked,
40  * but we can't depend on this).
41  */
42 static guint32 appdomain_thread_id = -1;
43  
44 #ifdef HAVE_KW_THREAD
45 static __thread MonoDomain * tls_appdomain MONO_TLS_FAST;
46 #define GET_APPDOMAIN() tls_appdomain
47 #define SET_APPDOMAIN(x) do { \
48         tls_appdomain = x; \
49         TlsSetValue (appdomain_thread_id, x); \
50 } while (FALSE)
51
52 #else
53
54 #define GET_APPDOMAIN() ((MonoDomain *)TlsGetValue (appdomain_thread_id))
55 #define SET_APPDOMAIN(x) TlsSetValue (appdomain_thread_id, x);
56
57 #endif
58
59 #define GET_APPCONTEXT() (mono_thread_current ()->current_appcontext)
60 #define SET_APPCONTEXT(x) MONO_OBJECT_SETREF (mono_thread_current (), current_appcontext, (x))
61
62 static guint16 appdomain_list_size = 0;
63 static guint16 appdomain_next = 0;
64 static MonoDomain **appdomains_list = NULL;
65
66 #define mono_appdomains_lock() EnterCriticalSection (&appdomains_mutex)
67 #define mono_appdomains_unlock() LeaveCriticalSection (&appdomains_mutex)
68 static CRITICAL_SECTION appdomains_mutex;
69
70 static MonoDomain *mono_root_domain = NULL;
71
72 /* AppConfigInfo: Information about runtime versions supported by an 
73  * aplication.
74  */
75 typedef struct {
76         GSList *supported_runtimes;
77         char *required_runtime;
78         int configuration_count;
79         int startup_count;
80 } AppConfigInfo;
81
82 /*
83  * AotModuleInfo: Contains information about AOT modules.
84  */
85 typedef struct {
86         MonoImage *image;
87         gpointer start, end;
88 } AotModuleInfo;
89
90 static const MonoRuntimeInfo *current_runtime = NULL;
91
92 static MonoJitInfoFindInAot jit_info_find_in_aot_func = NULL;
93
94 /*
95  * Contains information about AOT loaded code.
96  */
97 static MonoJitInfoTable *aot_modules = NULL;
98
99 /* This is the list of runtime versions supported by this JIT.
100  */
101 static const MonoRuntimeInfo supported_runtimes[] = {
102         {"v1.0.3705", "1.0", { {1,0,5000,0}, {7,0,5000,0} }     },
103         {"v1.1.4322", "1.0", { {1,0,5000,0}, {7,0,5000,0} }     },
104         {"v2.0.50215","2.0", { {2,0,0,0},    {8,0,0,0} }        },
105         {"v2.0.50727","2.0", { {2,0,0,0},    {8,0,0,0} }        }
106 };
107
108
109 /* The stable runtime version */
110 #define DEFAULT_RUNTIME_VERSION "v1.1.4322"
111
112 static void
113 get_runtimes_from_exe (const char *exe_file, const MonoRuntimeInfo** runtimes);
114
115 static const MonoRuntimeInfo*
116 get_runtime_by_version (const char *version);
117
118 static MonoImage*
119 mono_jit_info_find_aot_module (guint8* addr);
120
121 guint32
122 mono_domain_get_tls_key (void)
123 {
124         return appdomain_thread_id;
125 }
126
127 gint32
128 mono_domain_get_tls_offset (void)
129 {
130         int offset = -1;
131         MONO_THREAD_VAR_OFFSET (tls_appdomain, offset);
132 /*      __asm ("jmp 1f; .section writetext, \"awx\"; 1: movl $tls_appdomain@ntpoff, %0; jmp 2f; .previous; 2:" 
133                 : "=r" (offset));*/
134         return offset;
135 }
136
137 static MonoJitInfoTable *
138 mono_jit_info_table_new (void)
139 {
140         return g_array_new (FALSE, FALSE, sizeof (gpointer));
141 }
142
143 static void
144 mono_jit_info_table_free (MonoJitInfoTable *table)
145 {
146         g_array_free (table, TRUE);
147 }
148
149 static int
150 mono_jit_info_table_index (MonoJitInfoTable *table, char *addr)
151 {
152         int left = 0, right = table->len;
153
154         while (left < right) {
155                 int pos = (left + right) / 2;
156                 MonoJitInfo *ji = g_array_index (table, gpointer, pos);
157                 char *start = ji->code_start;
158                 char *end = start + ji->code_size;
159
160                 if (addr < start)
161                         right = pos;
162                 else if (addr >= end) 
163                         left = pos + 1;
164                 else
165                         return pos;
166         }
167
168         return left;
169 }
170
171 MonoJitInfo *
172 mono_jit_info_table_find (MonoDomain *domain, char *addr)
173 {
174         MonoJitInfoTable *table = domain->jit_info_table;
175         MonoJitInfo *ji;
176         guint left = 0, right;
177
178         mono_domain_lock (domain);
179
180         right = table->len;
181         while (left < right) {
182                 guint pos = (left + right) / 2;
183                 ji = g_array_index (table, gpointer, pos);
184
185                 if (addr < (char*)ji->code_start)
186                         right = pos;
187                 else if (addr >= (char*)ji->code_start + ji->code_size) 
188                         left = pos + 1;
189                 else {
190                         mono_domain_unlock (domain);
191                         return ji;
192                 }
193         }
194         mono_domain_unlock (domain);
195
196         /* maybe it is shared code, so we also search in the root domain */
197         ji = NULL;
198         if (domain != mono_root_domain)
199                 ji = mono_jit_info_table_find (mono_root_domain, addr);
200
201         if (ji == NULL) {
202                 /* Maybe its an AOT module */
203                 MonoImage *image = mono_jit_info_find_aot_module ((guint8*)addr);
204                 if (image)
205                         ji = jit_info_find_in_aot_func (domain, image, addr);
206         }
207         
208         return ji;
209 }
210
211 void
212 mono_jit_info_table_add (MonoDomain *domain, MonoJitInfo *ji)
213 {
214         MonoJitInfoTable *table = domain->jit_info_table;
215         gpointer start = ji->code_start;
216         int pos;
217
218         mono_domain_lock (domain);
219         pos = mono_jit_info_table_index (table, start);
220
221         g_array_insert_val (table, pos, ji);
222         mono_domain_unlock (domain);
223 }
224
225 void
226 mono_jit_info_table_remove (MonoDomain *domain, MonoJitInfo *ji)
227 {
228         MonoJitInfoTable *table = domain->jit_info_table;
229         gpointer start = ji->code_start;
230         int pos;
231
232         mono_domain_lock (domain);
233         pos = mono_jit_info_table_index (table, start);
234         if (g_array_index (table, gpointer, pos) != ji) {
235                 MonoJitInfo *ji2 = g_array_index (table, gpointer, pos);
236                 g_assert (ji == ji2);
237         }
238         g_assert (g_array_index (table, gpointer, pos) == ji);
239
240         g_array_remove_index (table, pos);
241         mono_domain_unlock (domain);
242 }       
243
244 static int
245 aot_info_table_index (MonoJitInfoTable *table, char *addr)
246 {
247         int left = 0, right = table->len;
248
249         while (left < right) {
250                 int pos = (left + right) / 2;
251                 AotModuleInfo *ainfo = g_array_index (table, gpointer, pos);
252                 char *start = ainfo->start;
253                 char *end = ainfo->end;
254
255                 if (addr < start)
256                         right = pos;
257                 else if (addr >= end) 
258                         left = pos + 1;
259                 else
260                         return pos;
261         }
262
263         return left;
264 }
265
266 void
267 mono_jit_info_add_aot_module (MonoImage *image, gpointer start, gpointer end)
268 {
269         AotModuleInfo *ainfo = g_new0 (AotModuleInfo, 1);
270         int pos;
271
272         ainfo->image = image;
273         ainfo->start = start;
274         ainfo->end = end;
275
276         mono_appdomains_lock ();
277
278         if (!aot_modules)
279                 aot_modules = mono_jit_info_table_new ();
280
281         pos = aot_info_table_index (aot_modules, start);
282
283         g_array_insert_val (aot_modules, pos, ainfo);
284
285         mono_appdomains_unlock ();
286 }
287
288 static MonoImage*
289 mono_jit_info_find_aot_module (guint8* addr)
290 {
291         guint left = 0, right;
292
293         if (!aot_modules)
294                 return NULL;
295
296         mono_appdomains_lock ();
297
298         right = aot_modules->len;
299         while (left < right) {
300                 guint pos = (left + right) / 2;
301                 AotModuleInfo *ai = g_array_index (aot_modules, gpointer, pos);
302
303                 if (addr < (guint8*)ai->start)
304                         right = pos;
305                 else if (addr >= (guint8*)ai->end)
306                         left = pos + 1;
307                 else {
308                         mono_appdomains_unlock ();
309                         return ai->image;
310                 }
311         }
312
313         mono_appdomains_unlock ();
314
315         return NULL;
316 }
317
318 void
319 mono_install_jit_info_find_in_aot (MonoJitInfoFindInAot func)
320 {
321         jit_info_find_in_aot_func = func;
322 }
323
324 gpointer
325 mono_jit_info_get_code_start (MonoJitInfo* ji)
326 {
327         return ji->code_start;
328 }
329
330 int
331 mono_jit_info_get_code_size (MonoJitInfo* ji)
332 {
333         return ji->code_size;
334 }
335
336 MonoMethod*
337 mono_jit_info_get_method (MonoJitInfo* ji)
338 {
339         return ji->method;
340 }
341
342 gboolean
343 mono_string_equal (MonoString *s1, MonoString *s2)
344 {
345         int l1 = mono_string_length (s1);
346         int l2 = mono_string_length (s2);
347
348         if (s1 == s2)
349                 return TRUE;
350         if (l1 != l2)
351                 return FALSE;
352
353         return memcmp (mono_string_chars (s1), mono_string_chars (s2), l1 * 2) == 0; 
354 }
355
356 guint
357 mono_string_hash (MonoString *s)
358 {
359         const guint16 *p = mono_string_chars (s);
360         int i, len = mono_string_length (s);
361         guint h = 0;
362
363         for (i = 0; i < len; i++) {
364                 h = (h << 5) - h + *p;
365                 p++;
366         }
367
368         return h;       
369 }
370
371 static gboolean
372 mono_ptrarray_equal (gpointer *s1, gpointer *s2)
373 {
374         int len = GPOINTER_TO_INT (s1 [0]);
375         if (len != GPOINTER_TO_INT (s2 [0]))
376                 return FALSE;
377
378         return memcmp (s1 + 1, s2 + 1, len * sizeof(gpointer)) == 0; 
379 }
380
381 static guint
382 mono_ptrarray_hash (gpointer *s)
383 {
384         int i;
385         int len = GPOINTER_TO_INT (s [0]);
386         guint hash = 0;
387         
388         for (i = 1; i < len; i++)
389                 hash += GPOINTER_TO_UINT (s [i]);
390
391         return hash;    
392 }
393
394 /*
395  * Allocate an id for domain and set domain->domain_id.
396  * LOCKING: must be called while holding appdomains_mutex.
397  * We try to assign low numbers to the domain, so it can be used
398  * as an index in data tables to lookup domain-specific info
399  * with minimal memory overhead. We also try not to reuse the
400  * same id too quickly (to help debugging).
401  */
402 static int
403 domain_id_alloc (MonoDomain *domain)
404 {
405         int id = -1, i;
406         if (!appdomains_list) {
407                 appdomain_list_size = 2;
408                 appdomains_list = mono_gc_alloc_fixed (appdomain_list_size * sizeof (void*), NULL);
409         }
410         for (i = appdomain_next; i < appdomain_list_size; ++i) {
411                 if (!appdomains_list [i]) {
412                         id = i;
413                         break;
414                 }
415         }
416         if (id == -1) {
417                 for (i = 0; i < appdomain_next; ++i) {
418                         if (!appdomains_list [i]) {
419                                 id = i;
420                                 break;
421                         }
422                 }
423         }
424         if (id == -1) {
425                 MonoDomain **new_list;
426                 int new_size = appdomain_list_size * 2;
427                 if (new_size >= (1 << 16))
428                         g_assert_not_reached ();
429                 id = appdomain_list_size;
430                 new_list = mono_gc_alloc_fixed (new_size * sizeof (void*), NULL);
431                 memcpy (new_list, appdomains_list, appdomain_list_size * sizeof (void*));
432                 mono_gc_free_fixed (appdomains_list);
433                 appdomains_list = new_list;
434                 appdomain_list_size = new_size;
435         }
436         domain->domain_id = id;
437         appdomains_list [id] = domain;
438         appdomain_next++;
439         if (appdomain_next > appdomain_list_size)
440                 appdomain_next = 0;
441         return id;
442 }
443
444 MonoDomain *
445 mono_domain_create (void)
446 {
447         MonoDomain *domain;
448
449         domain = mono_gc_alloc_fixed (sizeof (MonoDomain), NULL);
450         domain->domain = NULL;
451         domain->setup = NULL;
452         domain->friendly_name = NULL;
453         domain->search_path = NULL;
454
455         domain->mp = mono_mempool_new ();
456         domain->code_mp = mono_code_manager_new ();
457         domain->env = mono_g_hash_table_new ((GHashFunc)mono_string_hash, (GCompareFunc)mono_string_equal);
458         domain->domain_assemblies = NULL;
459         domain->class_vtable_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
460         domain->proxy_vtable_hash = g_hash_table_new ((GHashFunc)mono_ptrarray_hash, (GCompareFunc)mono_ptrarray_equal);
461         domain->static_data_array = NULL;
462         domain->jit_code_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
463         domain->ldstr_table = mono_g_hash_table_new ((GHashFunc)mono_string_hash, (GCompareFunc)mono_string_equal);
464         domain->jit_info_table = mono_jit_info_table_new ();
465         domain->class_init_trampoline_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
466         domain->jump_trampoline_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
467         domain->finalizable_objects_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
468         domain->jit_trampoline_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
469         domain->delegate_trampoline_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
470
471         InitializeCriticalSection (&domain->lock);
472         InitializeCriticalSection (&domain->assemblies_lock);
473
474         mono_appdomains_lock ();
475         domain_id_alloc (domain);
476         mono_appdomains_unlock ();
477
478         return domain;
479 }
480
481 /**
482  * mono_init_internal:
483  * 
484  * Creates the initial application domain and initializes the mono_defaults
485  * structure.
486  * This function is guaranteed to not run any IL code.
487  * If exe_filename is not NULL, the method will determine the required runtime
488  * from the exe configuration file or the version PE field.
489  * If runtime_version is not NULL, that runtime version will be used.
490  * Either exe_filename or runtime_version must be provided.
491  *
492  * Returns: the initial domain.
493  */
494 static MonoDomain *
495 mono_init_internal (const char *filename, const char *exe_filename, const char *runtime_version)
496 {
497         static MonoDomain *domain = NULL;
498         MonoAssembly *ass = NULL;
499         MonoImageOpenStatus status = MONO_IMAGE_OK;
500         const MonoRuntimeInfo* runtimes [G_N_ELEMENTS (supported_runtimes) + 1];
501         int n;
502
503         if (domain)
504                 g_assert_not_reached ();
505
506         MONO_GC_PRE_INIT ();
507
508         appdomain_thread_id = TlsAlloc ();
509
510         InitializeCriticalSection (&appdomains_mutex);
511
512         mono_metadata_init ();
513         mono_raw_buffer_init ();
514         mono_images_init ();
515         mono_assemblies_init ();
516         mono_classes_init ();
517         mono_loader_init ();
518
519         /* FIXME: When should we release this memory? */
520         MONO_GC_REGISTER_ROOT (appdomains_list);
521
522         domain = mono_domain_create ();
523         mono_root_domain = domain;
524
525         SET_APPDOMAIN (domain);
526         
527         /* Get a list of runtimes supported by the exe */
528         if (exe_filename != NULL) {
529                 get_runtimes_from_exe (exe_filename, runtimes);
530         } else if (runtime_version != NULL) {
531                 runtimes [0] = get_runtime_by_version (runtime_version);
532                 runtimes [1] = NULL;
533         }
534
535         if (runtimes [0] == NULL) {
536                 const MonoRuntimeInfo *default_runtime = get_runtime_by_version (DEFAULT_RUNTIME_VERSION);
537                 runtimes [0] = default_runtime;
538                 runtimes [1] = NULL;
539                 g_print ("WARNING: The runtime version supported by this application is unavailable.\n");
540                 g_print ("Using default runtime: %s\n", default_runtime->runtime_version);
541         }
542
543         /* The selected runtime will be the first one for which there is a mscrolib.dll */
544         for (n = 0; runtimes [n] != NULL && ass == NULL; n++) {
545                 current_runtime = runtimes [n];
546                 ass = mono_assembly_load_corlib (current_runtime, &status);
547                 if (status != MONO_IMAGE_OK && status != MONO_IMAGE_ERROR_ERRNO)
548                         break;
549         }
550
551         if ((status != MONO_IMAGE_OK) || (ass == NULL)) {
552                 switch (status){
553                 case MONO_IMAGE_ERROR_ERRNO: {
554                         char *corlib_file = g_build_filename (mono_assembly_getrootdir (), "mono", current_runtime->framework_version, "mscorlib.dll", NULL);
555                         g_print ("The assembly mscorlib.dll was not found or could not be loaded.\n");
556                         g_print ("It should have been installed in the `%s' directory.\n", corlib_file);
557                         g_free (corlib_file);
558                         break;
559                 }
560                 case MONO_IMAGE_IMAGE_INVALID:
561                         g_print ("The file %s/mscorlib.dll is an invalid CIL image\n",
562                                  mono_assembly_getrootdir ());
563                         break;
564                 case MONO_IMAGE_MISSING_ASSEMBLYREF:
565                         g_print ("Missing assembly reference in %s/mscorlib.dll\n",
566                                  mono_assembly_getrootdir ());
567                         break;
568                 case MONO_IMAGE_OK:
569                         /* to suppress compiler warning */
570                         break;
571                 }
572                 
573                 exit (1);
574         }
575         mono_defaults.corlib = mono_assembly_get_image (ass);
576
577         mono_defaults.object_class = mono_class_from_name (
578                 mono_defaults.corlib, "System", "Object");
579         g_assert (mono_defaults.object_class != 0);
580
581         mono_defaults.void_class = mono_class_from_name (
582                 mono_defaults.corlib, "System", "Void");
583         g_assert (mono_defaults.void_class != 0);
584
585         mono_defaults.boolean_class = mono_class_from_name (
586                 mono_defaults.corlib, "System", "Boolean");
587         g_assert (mono_defaults.boolean_class != 0);
588
589         mono_defaults.byte_class = mono_class_from_name (
590                 mono_defaults.corlib, "System", "Byte");
591         g_assert (mono_defaults.byte_class != 0);
592
593         mono_defaults.sbyte_class = mono_class_from_name (
594                 mono_defaults.corlib, "System", "SByte");
595         g_assert (mono_defaults.sbyte_class != 0);
596
597         mono_defaults.int16_class = mono_class_from_name (
598                 mono_defaults.corlib, "System", "Int16");
599         g_assert (mono_defaults.int16_class != 0);
600
601         mono_defaults.uint16_class = mono_class_from_name (
602                 mono_defaults.corlib, "System", "UInt16");
603         g_assert (mono_defaults.uint16_class != 0);
604
605         mono_defaults.int32_class = mono_class_from_name (
606                 mono_defaults.corlib, "System", "Int32");
607         g_assert (mono_defaults.int32_class != 0);
608
609         mono_defaults.uint32_class = mono_class_from_name (
610                 mono_defaults.corlib, "System", "UInt32");
611         g_assert (mono_defaults.uint32_class != 0);
612
613         mono_defaults.uint_class = mono_class_from_name (
614                 mono_defaults.corlib, "System", "UIntPtr");
615         g_assert (mono_defaults.uint_class != 0);
616
617         mono_defaults.int_class = mono_class_from_name (
618                 mono_defaults.corlib, "System", "IntPtr");
619         g_assert (mono_defaults.int_class != 0);
620
621         mono_defaults.int64_class = mono_class_from_name (
622                 mono_defaults.corlib, "System", "Int64");
623         g_assert (mono_defaults.int64_class != 0);
624
625         mono_defaults.uint64_class = mono_class_from_name (
626                 mono_defaults.corlib, "System", "UInt64");
627         g_assert (mono_defaults.uint64_class != 0);
628
629         mono_defaults.single_class = mono_class_from_name (
630                 mono_defaults.corlib, "System", "Single");
631         g_assert (mono_defaults.single_class != 0);
632
633         mono_defaults.double_class = mono_class_from_name (
634                 mono_defaults.corlib, "System", "Double");
635         g_assert (mono_defaults.double_class != 0);
636
637         mono_defaults.char_class = mono_class_from_name (
638                 mono_defaults.corlib, "System", "Char");
639         g_assert (mono_defaults.char_class != 0);
640
641         mono_defaults.string_class = mono_class_from_name (
642                 mono_defaults.corlib, "System", "String");
643         g_assert (mono_defaults.string_class != 0);
644
645         mono_defaults.enum_class = mono_class_from_name (
646                 mono_defaults.corlib, "System", "Enum");
647         g_assert (mono_defaults.enum_class != 0);
648
649         mono_defaults.array_class = mono_class_from_name (
650                 mono_defaults.corlib, "System", "Array");
651         g_assert (mono_defaults.array_class != 0);
652
653         mono_defaults.delegate_class = mono_class_from_name (
654                 mono_defaults.corlib, "System", "Delegate");
655         g_assert (mono_defaults.delegate_class != 0 );
656
657         mono_defaults.multicastdelegate_class = mono_class_from_name (
658                 mono_defaults.corlib, "System", "MulticastDelegate");
659         g_assert (mono_defaults.multicastdelegate_class != 0 );
660
661         mono_defaults.asyncresult_class = mono_class_from_name (
662                 mono_defaults.corlib, "System.Runtime.Remoting.Messaging", 
663                 "AsyncResult");
664         g_assert (mono_defaults.asyncresult_class != 0 );
665
666         mono_defaults.waithandle_class = mono_class_from_name (
667                 mono_defaults.corlib, "System.Threading", "WaitHandle");
668         g_assert (mono_defaults.waithandle_class != 0 );
669
670         mono_defaults.typehandle_class = mono_class_from_name (
671                 mono_defaults.corlib, "System", "RuntimeTypeHandle");
672         g_assert (mono_defaults.typehandle_class != 0);
673
674         mono_defaults.methodhandle_class = mono_class_from_name (
675                 mono_defaults.corlib, "System", "RuntimeMethodHandle");
676         g_assert (mono_defaults.methodhandle_class != 0);
677
678         mono_defaults.fieldhandle_class = mono_class_from_name (
679                 mono_defaults.corlib, "System", "RuntimeFieldHandle");
680         g_assert (mono_defaults.fieldhandle_class != 0);
681
682         mono_defaults.systemtype_class = mono_class_from_name (
683                 mono_defaults.corlib, "System", "Type");
684         g_assert (mono_defaults.systemtype_class != 0);
685
686         mono_defaults.monotype_class = mono_class_from_name (
687                 mono_defaults.corlib, "System", "MonoType");
688         g_assert (mono_defaults.monotype_class != 0);
689
690         mono_defaults.exception_class = mono_class_from_name (
691                 mono_defaults.corlib, "System", "Exception");
692         g_assert (mono_defaults.exception_class != 0);
693
694         mono_defaults.threadabortexception_class = mono_class_from_name (
695                 mono_defaults.corlib, "System.Threading", "ThreadAbortException");
696         g_assert (mono_defaults.threadabortexception_class != 0);
697
698         mono_defaults.thread_class = mono_class_from_name (
699                 mono_defaults.corlib, "System.Threading", "Thread");
700         g_assert (mono_defaults.thread_class != 0);
701
702         mono_defaults.appdomain_class = mono_class_from_name (
703                 mono_defaults.corlib, "System", "AppDomain");
704         g_assert (mono_defaults.appdomain_class != 0);
705
706         mono_defaults.transparent_proxy_class = mono_class_from_name (
707                 mono_defaults.corlib, "System.Runtime.Remoting.Proxies", "TransparentProxy");
708         g_assert (mono_defaults.transparent_proxy_class != 0);
709
710         mono_defaults.real_proxy_class = mono_class_from_name (
711                 mono_defaults.corlib, "System.Runtime.Remoting.Proxies", "RealProxy");
712         g_assert (mono_defaults.real_proxy_class != 0);
713
714         mono_defaults.mono_method_message_class = mono_class_from_name (
715                 mono_defaults.corlib, "System.Runtime.Remoting.Messaging", "MonoMethodMessage");
716         g_assert (mono_defaults.mono_method_message_class != 0);
717
718         mono_defaults.field_info_class = mono_class_from_name (
719                 mono_defaults.corlib, "System.Reflection", "FieldInfo");
720         g_assert (mono_defaults.field_info_class != 0);
721
722         mono_defaults.method_info_class = mono_class_from_name (
723                 mono_defaults.corlib, "System.Reflection", "MethodInfo");
724         g_assert (mono_defaults.method_info_class != 0);
725
726         mono_defaults.stringbuilder_class = mono_class_from_name (
727                 mono_defaults.corlib, "System.Text", "StringBuilder");
728         g_assert (mono_defaults.stringbuilder_class != 0);
729
730         mono_defaults.math_class = mono_class_from_name (
731                 mono_defaults.corlib, "System", "Math");
732         g_assert (mono_defaults.math_class != 0);
733
734         mono_defaults.stack_frame_class = mono_class_from_name (
735                 mono_defaults.corlib, "System.Diagnostics", "StackFrame");
736         g_assert (mono_defaults.stack_frame_class != 0);
737
738         mono_defaults.stack_trace_class = mono_class_from_name (
739                 mono_defaults.corlib, "System.Diagnostics", "StackTrace");
740         g_assert (mono_defaults.stack_trace_class != 0);
741
742         mono_defaults.marshal_class = mono_class_from_name (
743                 mono_defaults.corlib, "System.Runtime.InteropServices", "Marshal");
744         g_assert (mono_defaults.marshal_class != 0);
745
746         mono_defaults.iserializeable_class = mono_class_from_name (
747                 mono_defaults.corlib, "System.Runtime.Serialization", "ISerializable");
748         g_assert (mono_defaults.iserializeable_class != 0);
749
750         mono_defaults.serializationinfo_class = mono_class_from_name (
751                 mono_defaults.corlib, "System.Runtime.Serialization", "SerializationInfo");
752         g_assert (mono_defaults.serializationinfo_class != 0);
753
754         mono_defaults.streamingcontext_class = mono_class_from_name (
755                 mono_defaults.corlib, "System.Runtime.Serialization", "StreamingContext");
756         g_assert (mono_defaults.streamingcontext_class != 0);
757
758         mono_defaults.typed_reference_class =  mono_class_from_name (
759                 mono_defaults.corlib, "System", "TypedReference");
760         g_assert (mono_defaults.typed_reference_class != 0);
761
762         mono_defaults.argumenthandle_class =  mono_class_from_name (
763                 mono_defaults.corlib, "System", "RuntimeArgumentHandle");
764         g_assert (mono_defaults.argumenthandle_class != 0);
765
766         mono_defaults.marshalbyrefobject_class =  mono_class_from_name (
767                 mono_defaults.corlib, "System", "MarshalByRefObject");
768         g_assert (mono_defaults.marshalbyrefobject_class != 0);
769
770         mono_defaults.monitor_class =  mono_class_from_name (
771                 mono_defaults.corlib, "System.Threading", "Monitor");
772         g_assert (mono_defaults.monitor_class != 0);
773
774         mono_defaults.iremotingtypeinfo_class = mono_class_from_name (
775                 mono_defaults.corlib, "System.Runtime.Remoting", "IRemotingTypeInfo");
776         g_assert (mono_defaults.iremotingtypeinfo_class != 0);
777
778         mono_defaults.runtimesecurityframe_class = mono_class_from_name (
779                 mono_defaults.corlib, "System.Security", "RuntimeSecurityFrame");
780
781         mono_defaults.executioncontext_class = mono_class_from_name (
782                 mono_defaults.corlib, "System.Threading", "ExecutionContext");
783
784         mono_defaults.internals_visible_class = mono_class_from_name (
785                 mono_defaults.corlib, "System.Runtime.CompilerServices", "InternalsVisibleToAttribute");
786
787         /*
788          * Note that mono_defaults.generic_*_class is only non-NULL if we're
789          * using the 2.0 corlib.
790          */
791         mono_class_init (mono_defaults.array_class);
792         mono_defaults.generic_array_class = mono_class_from_name (
793                 mono_defaults.corlib, "System", "Array/InternalArray`1");
794         mono_defaults.generic_nullable_class = mono_class_from_name (
795                 mono_defaults.corlib, "System", "Nullable`1");
796
797         domain->friendly_name = g_path_get_basename (filename);
798
799         return domain;
800 }
801
802 /**
803  * mono_init:
804  * 
805  * Creates the initial application domain and initializes the mono_defaults
806  * structure.
807  * This function is guaranteed to not run any IL code.
808  * The runtime is initialized using the default runtime version.
809  *
810  * Returns: the initial domain.
811  */
812 MonoDomain *
813 mono_init (const char *domain_name)
814 {
815         return mono_init_internal (domain_name, NULL, DEFAULT_RUNTIME_VERSION);
816 }
817
818 /**
819  * mono_init_from_assembly:
820  * 
821  * Creates the initial application domain and initializes the mono_defaults
822  * structure.
823  * This function is guaranteed to not run any IL code.
824  * The runtime is initialized using the runtime version required by the
825  * provided executable. The version is determined by looking at the exe 
826  * configuration file and the version PE field)
827  *
828  * Returns: the initial domain.
829  */
830 MonoDomain *
831 mono_init_from_assembly (const char *domain_name, const char *filename)
832 {
833         return mono_init_internal (domain_name, filename, NULL);
834 }
835
836 /**
837  * mono_init_version:
838  * 
839  * Creates the initial application domain and initializes the mono_defaults
840  * structure.
841  * This function is guaranteed to not run any IL code.
842  * The runtime is initialized using the provided rutime version.
843  *
844  * Returns: the initial domain.
845  */
846 MonoDomain *
847 mono_init_version (const char *domain_name, const char *version)
848 {
849         return mono_init_internal (domain_name, NULL, version);
850 }
851
852 /**
853  * mono_cleanup:
854  *
855  * Cleans up all metadata modules. 
856  */
857 void
858 mono_cleanup (void)
859 {
860         mono_loader_cleanup ();
861         mono_classes_cleanup ();
862         mono_assemblies_cleanup ();
863         mono_images_cleanup ();
864         mono_raw_buffer_cleanup ();
865         mono_metadata_cleanup ();
866 }
867
868 /**
869  * mono_get_root_domain:
870  *
871  * Returns: the root appdomain.
872  */
873 MonoDomain*
874 mono_get_root_domain (void)
875 {
876         return mono_root_domain;
877 }
878
879 /**
880  * mono_domain_get:
881  *
882  * Returns: the current domain.
883  */
884 MonoDomain *
885 mono_domain_get ()
886 {
887         return GET_APPDOMAIN ();
888 }
889
890 /**
891  * mono_domain_set_internal:
892  * @domain: the new domain
893  *
894  * Sets the current domain to @domain.
895  */
896 void
897 mono_domain_set_internal (MonoDomain *domain)
898 {
899         SET_APPDOMAIN (domain);
900         SET_APPCONTEXT (domain->default_context);
901 }
902
903 void
904 mono_domain_foreach (MonoDomainFunc func, gpointer user_data)
905 {
906         int i, size;
907         MonoDomain **copy;
908
909         /*
910          * Create a copy of the data to avoid calling the user callback
911          * inside the lock because that could lead to deadlocks.
912          * We can do this because this function is not perf. critical.
913          */
914         mono_appdomains_lock ();
915         size = appdomain_list_size;
916         copy = mono_gc_alloc_fixed (appdomain_list_size * sizeof (void*), NULL);
917         memcpy (copy, appdomains_list, appdomain_list_size * sizeof (void*));
918         mono_appdomains_unlock ();
919
920         for (i = 0; i < size; ++i) {
921                 if (copy [i])
922                         func (copy [i], user_data);
923         }
924
925         mono_gc_free_fixed (copy);
926 }
927
928 /**
929  * mono_domain_assembly_open:
930  * @domain: the application domain
931  * @name: file name of the assembly
932  *
933  * fixme: maybe we should integrate this with mono_assembly_open ??
934  */
935 MonoAssembly *
936 mono_domain_assembly_open (MonoDomain *domain, const char *name)
937 {
938         MonoAssembly *ass;
939         GSList *tmp;
940
941         mono_domain_assemblies_lock (domain);
942         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
943                 ass = tmp->data;
944                 if (strcmp (name, ass->aname.name) == 0) {
945                         mono_domain_assemblies_unlock (domain);
946                         return ass;
947                 }
948         }
949         mono_domain_assemblies_unlock (domain);
950
951         if (!(ass = mono_assembly_open (name, NULL)))
952                 return NULL;
953
954         return ass;
955 }
956
957 static void
958 dynamic_method_info_free (gpointer key, gpointer value, gpointer user_data)
959 {
960         MonoJitDynamicMethodInfo *di = value;
961         mono_code_manager_destroy (di->code_mp);
962         g_free (di);
963 }
964
965 static void
966 delete_jump_list (gpointer key, gpointer value, gpointer user_data)
967 {
968         g_slist_free (value);
969 }
970
971 void
972 mono_domain_free (MonoDomain *domain, gboolean force)
973 {
974         GSList *tmp;
975         if ((domain == mono_root_domain) && !force) {
976                 g_warning ("cant unload root domain");
977                 return;
978         }
979
980         mono_appdomains_lock ();
981         appdomains_list [domain->domain_id] = NULL;
982         mono_appdomains_unlock ();
983
984         /* FIXME: free delegate_hash_table when it's used */
985         if (domain->search_path) {
986                 g_strfreev (domain->search_path);
987                 domain->search_path = NULL;
988         }
989         domain->create_proxy_for_type_method = NULL;
990         domain->private_invoke_method = NULL;
991         domain->default_context = NULL;
992         domain->out_of_memory_ex = NULL;
993         domain->null_reference_ex = NULL;
994         domain->stack_overflow_ex = NULL;
995         domain->entry_assembly = NULL;
996         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
997                 MonoAssembly *ass = tmp->data;
998                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Unloading domain %s %p, assembly %s %p, refcount=%d\n", domain->friendly_name, domain, ass->aname.name, ass, ass->ref_count);
999                 mono_assembly_close (ass);
1000         }
1001         g_slist_free (domain->domain_assemblies);
1002         domain->domain_assemblies = NULL;
1003
1004         g_free (domain->friendly_name);
1005         domain->friendly_name = NULL;
1006         mono_g_hash_table_destroy (domain->env);
1007         domain->env = NULL;
1008         g_hash_table_destroy (domain->class_vtable_hash);
1009         domain->class_vtable_hash = NULL;
1010         g_hash_table_destroy (domain->proxy_vtable_hash);
1011         domain->proxy_vtable_hash = NULL;
1012         if (domain->static_data_array) {
1013                 mono_gc_free_fixed (domain->static_data_array);
1014                 domain->static_data_array = NULL;
1015         }
1016         g_hash_table_destroy (domain->jit_code_hash);
1017         domain->jit_code_hash = NULL;
1018         if (domain->dynamic_code_hash) {
1019                 g_hash_table_foreach (domain->dynamic_code_hash, dynamic_method_info_free, NULL);
1020                 g_hash_table_destroy (domain->dynamic_code_hash);
1021                 domain->dynamic_code_hash = NULL;
1022         }
1023         mono_g_hash_table_destroy (domain->ldstr_table);
1024         domain->ldstr_table = NULL;
1025         mono_jit_info_table_free (domain->jit_info_table);
1026         domain->jit_info_table = NULL;
1027 #ifdef DEBUG_DOMAIN_UNLOAD
1028         mono_mempool_invalidate (domain->mp);
1029         mono_code_manager_invalidate (domain->code_mp);
1030 #else
1031         mono_mempool_destroy (domain->mp);
1032         domain->mp = NULL;
1033         mono_code_manager_destroy (domain->code_mp);
1034         domain->code_mp = NULL;
1035 #endif  
1036         if (domain->jump_target_hash) {
1037                 g_hash_table_foreach (domain->jump_target_hash, delete_jump_list, NULL);
1038                 g_hash_table_destroy (domain->jump_target_hash);
1039                 domain->jump_target_hash = NULL;
1040         }
1041         if (domain->type_hash) {
1042                 mono_g_hash_table_destroy (domain->type_hash);
1043                 domain->type_hash = NULL;
1044         }
1045         if (domain->refobject_hash) {
1046                 mono_g_hash_table_destroy (domain->refobject_hash);
1047                 domain->refobject_hash = NULL;
1048         }
1049         g_hash_table_destroy (domain->class_init_trampoline_hash);
1050         domain->class_init_trampoline_hash = NULL;
1051         g_hash_table_destroy (domain->jump_trampoline_hash);
1052         domain->jump_trampoline_hash = NULL;
1053         g_hash_table_destroy (domain->finalizable_objects_hash);
1054         domain->finalizable_objects_hash = NULL;
1055         g_hash_table_destroy (domain->jit_trampoline_hash);
1056         domain->jit_trampoline_hash = NULL;
1057         g_hash_table_destroy (domain->delegate_trampoline_hash);
1058         domain->delegate_trampoline_hash = NULL;
1059         if (domain->special_static_fields) {
1060                 g_hash_table_destroy (domain->special_static_fields);
1061                 domain->special_static_fields = NULL;
1062         }
1063         DeleteCriticalSection (&domain->assemblies_lock);
1064         DeleteCriticalSection (&domain->lock);
1065         domain->setup = NULL;
1066
1067         /* FIXME: anything else required ? */
1068
1069         mono_gc_free_fixed (domain);
1070
1071         if ((domain == mono_root_domain))
1072                 mono_root_domain = NULL;
1073 }
1074
1075 /**
1076  * mono_domain_get_id:
1077  *
1078  * Returns: the a domain for a specific domain id.
1079  */
1080 MonoDomain * 
1081 mono_domain_get_by_id (gint32 domainid) 
1082 {
1083         MonoDomain * domain;
1084
1085         mono_appdomains_lock ();
1086         if (domainid < appdomain_list_size)
1087                 domain = appdomains_list [domainid];
1088         else
1089                 domain = NULL;
1090         mono_appdomains_unlock ();
1091
1092         return domain;
1093 }
1094
1095 gint32
1096 mono_domain_get_id (MonoDomain *domain)
1097 {
1098         return domain->domain_id;
1099 }
1100
1101 void 
1102 mono_context_set (MonoAppContext * new_context)
1103 {
1104         SET_APPCONTEXT (new_context);
1105 }
1106
1107 MonoAppContext * 
1108 mono_context_get (void)
1109 {
1110         return GET_APPCONTEXT ();
1111 }
1112
1113 /* LOCKING: the caller holds the lock for this domain */
1114 void
1115 mono_domain_add_class_static_data (MonoDomain *domain, MonoClass *klass, gpointer data, guint32 *bitmap)
1116 {
1117         /* The first entry in the array is the index of the next free slot
1118          * and the total size of the array
1119          */
1120         int next;
1121         if (domain->static_data_array) {
1122                 int size = GPOINTER_TO_INT (domain->static_data_array [1]);
1123                 next = GPOINTER_TO_INT (domain->static_data_array [0]);
1124                 if (next >= size) {
1125                         gpointer *new_array = mono_gc_alloc_fixed (sizeof (gpointer) * (size * 2), NULL);
1126                         memcpy (new_array, domain->static_data_array, sizeof (gpointer) * size);
1127                         size *= 2;
1128                         new_array [1] = GINT_TO_POINTER (size);
1129                         mono_gc_free_fixed (domain->static_data_array);
1130                         domain->static_data_array = new_array;
1131                 }
1132         } else {
1133                 int size = 32;
1134                 gpointer *new_array = mono_gc_alloc_fixed (sizeof (gpointer) * size, NULL);
1135                 next = 2;
1136                 new_array [0] = GINT_TO_POINTER (next);
1137                 new_array [1] = GINT_TO_POINTER (size);
1138                 domain->static_data_array = new_array;
1139         }
1140         domain->static_data_array [next++] = data;
1141         domain->static_data_array [0] = GINT_TO_POINTER (next);
1142 }
1143
1144 MonoImage*
1145 mono_get_corlib (void)
1146 {
1147         return mono_defaults.corlib;
1148 }
1149
1150 MonoClass*
1151 mono_get_object_class (void)
1152 {
1153         return mono_defaults.object_class;
1154 }
1155
1156 MonoClass*
1157 mono_get_byte_class (void)
1158 {
1159         return mono_defaults.byte_class;
1160 }
1161
1162 MonoClass*
1163 mono_get_void_class (void)
1164 {
1165         return mono_defaults.void_class;
1166 }
1167
1168 MonoClass*
1169 mono_get_boolean_class (void)
1170 {
1171         return mono_defaults.boolean_class;
1172 }
1173
1174 MonoClass*
1175 mono_get_sbyte_class (void)
1176 {
1177         return mono_defaults.sbyte_class;
1178 }
1179
1180 MonoClass*
1181 mono_get_int16_class (void)
1182 {
1183         return mono_defaults.int16_class;
1184 }
1185
1186 MonoClass*
1187 mono_get_uint16_class (void)
1188 {
1189         return mono_defaults.uint16_class;
1190 }
1191
1192 MonoClass*
1193 mono_get_int32_class (void)
1194 {
1195         return mono_defaults.int32_class;
1196 }
1197
1198 MonoClass*
1199 mono_get_uint32_class (void)
1200 {
1201         return mono_defaults.uint32_class;
1202 }
1203
1204 MonoClass*
1205 mono_get_intptr_class (void)
1206 {
1207         return mono_defaults.int_class;
1208 }
1209
1210 MonoClass*
1211 mono_get_uintptr_class (void)
1212 {
1213         return mono_defaults.uint_class;
1214 }
1215
1216 MonoClass*
1217 mono_get_int64_class (void)
1218 {
1219         return mono_defaults.int64_class;
1220 }
1221
1222 MonoClass*
1223 mono_get_uint64_class (void)
1224 {
1225         return mono_defaults.uint64_class;
1226 }
1227
1228 MonoClass*
1229 mono_get_single_class (void)
1230 {
1231         return mono_defaults.single_class;
1232 }
1233
1234 MonoClass*
1235 mono_get_double_class (void)
1236 {
1237         return mono_defaults.double_class;
1238 }
1239
1240 MonoClass*
1241 mono_get_char_class (void)
1242 {
1243         return mono_defaults.char_class;
1244 }
1245
1246 MonoClass*
1247 mono_get_string_class (void)
1248 {
1249         return mono_defaults.string_class;
1250 }
1251
1252 MonoClass*
1253 mono_get_enum_class (void)
1254 {
1255         return mono_defaults.enum_class;
1256 }
1257
1258 MonoClass*
1259 mono_get_array_class (void)
1260 {
1261         return mono_defaults.array_class;
1262 }
1263
1264 MonoClass*
1265 mono_get_thread_class (void)
1266 {
1267         return mono_defaults.thread_class;
1268 }
1269
1270 MonoClass*
1271 mono_get_exception_class (void)
1272 {
1273         return mono_defaults.exception_class;
1274 }
1275
1276
1277 static char* get_attribute_value (const gchar **attribute_names, 
1278                                         const gchar **attribute_values, 
1279                                         const char *att_name)
1280 {
1281         int n;
1282         for (n=0; attribute_names[n] != NULL; n++) {
1283                 if (strcmp (attribute_names[n], att_name) == 0)
1284                         return g_strdup (attribute_values[n]);
1285         }
1286         return NULL;
1287 }
1288
1289 static void start_element (GMarkupParseContext *context, 
1290                            const gchar         *element_name,
1291                            const gchar        **attribute_names,
1292                            const gchar        **attribute_values,
1293                            gpointer             user_data,
1294                            GError             **error)
1295 {
1296         AppConfigInfo* app_config = (AppConfigInfo*) user_data;
1297         
1298         if (strcmp (element_name, "configuration") == 0) {
1299                 app_config->configuration_count++;
1300                 return;
1301         }
1302         if (strcmp (element_name, "startup") == 0) {
1303                 app_config->startup_count++;
1304                 return;
1305         }
1306         
1307         if (app_config->configuration_count != 1 || app_config->startup_count != 1)
1308                 return;
1309         
1310         if (strcmp (element_name, "requiredRuntime") == 0) {
1311                 app_config->required_runtime = get_attribute_value (attribute_names, attribute_values, "version");
1312         } else if (strcmp (element_name, "supportedRuntime") == 0) {
1313                 char *version = get_attribute_value (attribute_names, attribute_values, "version");
1314                 app_config->supported_runtimes = g_slist_append (app_config->supported_runtimes, version);
1315         }
1316 }
1317
1318 static void end_element   (GMarkupParseContext *context,
1319                            const gchar         *element_name,
1320                            gpointer             user_data,
1321                            GError             **error)
1322 {
1323         AppConfigInfo* app_config = (AppConfigInfo*) user_data;
1324         
1325         if (strcmp (element_name, "configuration") == 0) {
1326                 app_config->configuration_count--;
1327         } else if (strcmp (element_name, "startup") == 0) {
1328                 app_config->startup_count--;
1329         }
1330 }
1331
1332 static const GMarkupParser 
1333 mono_parser = {
1334         start_element,
1335         end_element,
1336         NULL,
1337         NULL,
1338         NULL
1339 };
1340
1341 static AppConfigInfo *
1342 app_config_parse (const char *filename)
1343 {
1344         AppConfigInfo *app_config;
1345         GMarkupParseContext *context;
1346         char *text;
1347         gsize len;
1348         
1349         struct stat buf;
1350         if (stat (filename, &buf) != 0)
1351                 return NULL;
1352         
1353         app_config = g_new0 (AppConfigInfo, 1);
1354
1355         if (!g_file_get_contents (filename, &text, &len, NULL))
1356                 return NULL;
1357
1358         context = g_markup_parse_context_new (&mono_parser, 0, app_config, NULL);
1359         if (g_markup_parse_context_parse (context, text, len, NULL)) {
1360                 g_markup_parse_context_end_parse (context, NULL);
1361         }
1362         g_markup_parse_context_free (context);
1363         g_free (text);
1364         return app_config;
1365 }
1366
1367 static void 
1368 app_config_free (AppConfigInfo* app_config)
1369 {
1370         char *rt;
1371         GSList *list = app_config->supported_runtimes;
1372         while (list != NULL) {
1373                 rt = (char*)list->data;
1374                 g_free (rt);
1375                 list = g_slist_next (list);
1376         }
1377         g_slist_free (app_config->supported_runtimes);
1378         g_free (app_config->required_runtime);
1379         g_free (app_config);
1380 }
1381
1382
1383 static const MonoRuntimeInfo*
1384 get_runtime_by_version (const char *version)
1385 {
1386         int n;
1387         int max = G_N_ELEMENTS (supported_runtimes);
1388         
1389         for (n=0; n<max; n++) {
1390                 if (strcmp (version, supported_runtimes[n].runtime_version) == 0)
1391                         return &supported_runtimes[n];
1392         }
1393         return NULL;
1394 }
1395
1396 static void
1397 get_runtimes_from_exe (const char *exe_file, const MonoRuntimeInfo** runtimes)
1398 {
1399         AppConfigInfo* app_config;
1400         char *version;
1401         char *config_name;
1402         const MonoRuntimeInfo* runtime = NULL;
1403         MonoImage *image = NULL;
1404         
1405         config_name = g_strconcat (exe_file, ".config", NULL);
1406         app_config = app_config_parse (config_name);
1407         g_free (config_name);
1408         
1409         if (app_config != NULL) {
1410                 /* Check supportedRuntime elements, if none is supported, fail.
1411                  * If there are no such elements, look for a requiredRuntime element.
1412                  */
1413                 if (app_config->supported_runtimes != NULL) {
1414                         int n = 0;
1415                         GSList *list = app_config->supported_runtimes;
1416                         while (list != NULL) {
1417                                 version = (char*) list->data;
1418                                 runtime = get_runtime_by_version (version);
1419                                 if (runtime != NULL)
1420                                         runtimes [n++] = runtime;
1421                                 list = g_slist_next (list);
1422                         }
1423                         runtimes [n] = NULL;
1424                         app_config_free (app_config);
1425                         return;
1426                 }
1427                 
1428                 /* Check the requiredRuntime element. This is for 1.0 apps only. */
1429                 if (app_config->required_runtime != NULL) {
1430                         runtimes [0] = get_runtime_by_version (app_config->required_runtime);
1431                         runtimes [1] = NULL;
1432                         app_config_free (app_config);
1433                         return;
1434                 }
1435                 app_config_free (app_config);
1436         }
1437         
1438         /* Look for a runtime with the exact version */
1439         image = mono_image_open (exe_file, NULL);
1440         if (image == NULL) {
1441                 /* The image is wrong or the file was not found. In this case return
1442                  * a default runtime and leave to the initialization method the work of
1443                  * reporting the error.
1444                  */
1445                 runtimes [0] = get_runtime_by_version (DEFAULT_RUNTIME_VERSION);
1446                 runtimes [1] = NULL;
1447                 return;
1448         }
1449
1450         runtimes [0] = get_runtime_by_version (image->version);
1451         runtimes [1] = NULL;
1452 }
1453
1454
1455 /**
1456  * mono_get_runtime_info:
1457  *
1458  * Returns: the version of the current runtime instance.
1459  */
1460 const MonoRuntimeInfo*
1461 mono_get_runtime_info (void)
1462 {
1463         return current_runtime;
1464 }
1465
1466 gchar *
1467 mono_debugger_check_runtime_version (const char *filename)
1468 {
1469         const MonoRuntimeInfo* runtimes [G_N_ELEMENTS (supported_runtimes) + 1];
1470         const MonoRuntimeInfo *rinfo;
1471
1472         get_runtimes_from_exe (filename, runtimes);
1473         rinfo = runtimes [0];
1474
1475         if (!rinfo)
1476                 return g_strdup_printf ("Cannot get runtime version from assembly `%s'", filename);
1477
1478         if (rinfo != current_runtime)
1479                 return g_strdup_printf ("The Mono Debugger is currently using the `%s' runtime, but "
1480                                         "the assembly `%s' requires version `%s'", current_runtime->runtime_version,
1481                                         filename, rinfo->runtime_version);
1482
1483         return NULL;
1484 }