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