0a271414c19aef986ef199196d3c94ca0aa75813
[mono.git] / mono / metadata / appdomain.c
1 /*
2  * appdomain.c: AppDomain functions
3  *
4  * Authors:
5  *      Dietmar Maurer (dietmar@ximian.com)
6  *      Patrik Torstensson
7  *      Gonzalo Paniagua Javier (gonzalo@ximian.com)
8  *
9  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
10  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
11  */
12 #undef ASSEMBLY_LOAD_DEBUG
13 #include <config.h>
14 #include <glib.h>
15 #include <string.h>
16 #ifdef HAVE_UNISTD_H
17 #include <unistd.h>
18 #endif
19 #include <errno.h>
20 #include <sys/stat.h>
21 #include <sys/types.h>
22 #ifdef HAVE_SYS_TIME_H
23 #include <sys/time.h>
24 #endif
25 #ifdef HAVE_UTIME_H
26 #include <utime.h>
27 #else
28 #ifdef HAVE_SYS_UTIME_H
29 #include <sys/utime.h>
30 #endif
31 #endif
32
33 #include <mono/metadata/gc-internal.h>
34 #include <mono/metadata/object.h>
35 #include <mono/metadata/domain-internals.h>
36 #include "mono/metadata/metadata-internals.h"
37 #include <mono/metadata/assembly.h>
38 #include <mono/metadata/exception.h>
39 #include <mono/metadata/threads.h>
40 #include <mono/metadata/socket-io.h>
41 #include <mono/metadata/tabledefs.h>
42 #include <mono/metadata/gc-internal.h>
43 #include <mono/metadata/mono-gc.h>
44 #include <mono/metadata/marshal.h>
45 #include <mono/metadata/monitor.h>
46 #include <mono/metadata/threadpool.h>
47 #include <mono/metadata/mono-debug.h>
48 #include <mono/metadata/mono-debug-debugger.h>
49 #include <mono/metadata/attach.h>
50 #include <mono/metadata/file-io.h>
51 #include <mono/metadata/lock-tracer.h>
52 #include <mono/metadata/console-io.h>
53 #include <mono/metadata/threads-types.h>
54 #include <mono/metadata/tokentype.h>
55 #include <mono/utils/mono-uri.h>
56 #include <mono/utils/mono-logger.h>
57 #include <mono/utils/mono-path.h>
58 #include <mono/utils/mono-stdlib.h>
59 #include <mono/utils/mono-io-portability.h>
60 #include <mono/utils/mono-error-internals.h>
61 #ifdef HOST_WIN32
62 #include <direct.h>
63 #endif
64
65 /*
66  * This is the version number of the corlib-runtime interface. When
67  * making changes to this interface (by changing the layout
68  * of classes the runtime knows about, changing icall signature or
69  * semantics etc), increment this variable. Also increment the
70  * pair of this variable in mscorlib in:
71  *       mcs/class/mscorlib/System/Environment.cs
72  *
73  * Changes which are already detected at runtime, like the addition
74  * of icalls, do not require an increment.
75  */
76 #define MONO_CORLIB_VERSION 89
77
78 typedef struct
79 {
80         int runtime_count;
81         int assemblybinding_count;
82         MonoDomain *domain;
83 } RuntimeConfig;
84
85 CRITICAL_SECTION mono_delegate_section;
86
87 #ifdef _EGLIB_MAJOR
88 /* Need to lock here because EGLIB has locking defined as no-ops, we can not depend on mono_strtod do the right locking */
89 /* Ideally this will be fixed in eglib */
90 CRITICAL_SECTION mono_strtod_mutex;
91 #endif
92
93
94 static gunichar2 process_guid [36];
95 static gboolean process_guid_set = FALSE;
96
97 static gboolean shutting_down = FALSE;
98
99 static gboolean no_exec = FALSE;
100
101 static MonoAssembly *
102 mono_domain_assembly_preload (MonoAssemblyName *aname,
103                               gchar **assemblies_path,
104                               gpointer user_data);
105
106 static MonoAssembly *
107 mono_domain_assembly_search (MonoAssemblyName *aname,
108                                                          gpointer user_data);
109
110 static MonoAssembly *
111 mono_domain_assembly_postload_search (MonoAssemblyName *aname,
112                                                                           gpointer user_data);
113
114 static void
115 mono_domain_fire_assembly_load (MonoAssembly *assembly, gpointer user_data);
116
117 static void
118 add_assemblies_to_domain (MonoDomain *domain, MonoAssembly *ass, GHashTable *hash);
119
120 static MonoAppDomain *
121 mono_domain_create_appdomain_internal (char *friendly_name, MonoAppDomainSetup *setup);
122
123 static char *
124 get_shadow_assembly_location_base (MonoDomain *domain, MonoError *error);
125
126 static MonoLoadFunc load_function = NULL;
127
128 void
129 mono_install_runtime_load (MonoLoadFunc func)
130 {
131         load_function = func;
132 }
133
134 MonoDomain*
135 mono_runtime_load (const char *filename, const char *runtime_version)
136 {
137         g_assert (load_function);
138         return load_function (filename, runtime_version);
139 }
140
141 /*
142  * mono_runtime_set_no_exec:
143  *
144  *   Instructs the runtime to operate in static mode, i.e. avoid/do not allow managed
145  * code execution. This is useful for running the AOT compiler on platforms which
146  * allow full-aot execution only.
147  * This should be called before mono_runtime_init ().
148  */
149 void
150 mono_runtime_set_no_exec (gboolean val)
151 {
152         no_exec = val;
153 }
154
155 gboolean
156 mono_runtime_get_no_exec (void)
157 {
158         return no_exec;
159 }
160
161 static void
162 create_exceptions (MonoDomain *domain)
163 {
164         MonoDomain *old_domain = mono_domain_get ();
165         MonoString *arg;
166
167         if (domain != old_domain)
168                 mono_domain_set_internal_with_options (domain, FALSE);
169
170         /*
171          * Create an instance early since we can't do it when there is no memory.
172          */
173         arg = mono_string_new (domain, "Out of memory");
174         domain->out_of_memory_ex = mono_exception_from_name_two_strings (mono_defaults.corlib, "System", "OutOfMemoryException", arg, NULL);
175
176         /* 
177          * These two are needed because the signal handlers might be executing on
178          * an alternate stack, and Boehm GC can't handle that.
179          */
180         arg = mono_string_new (domain, "A null value was found where an object instance was required");
181         domain->null_reference_ex = mono_exception_from_name_two_strings (mono_defaults.corlib, "System", "NullReferenceException", arg, NULL);
182         arg = mono_string_new (domain, "The requested operation caused a stack overflow.");
183         domain->stack_overflow_ex = mono_exception_from_name_two_strings (mono_defaults.corlib, "System", "StackOverflowException", arg, NULL);
184
185         if (domain != old_domain)
186                 mono_domain_set_internal_with_options (old_domain, FALSE);
187
188         /* 
189          * This class is used during exception handling, so initialize it here, to prevent
190          * stack overflows while handling stack overflows.
191          */
192         mono_class_init (mono_array_class_get (mono_defaults.int_class, 1));
193 }
194
195 /**
196  * mono_runtime_init:
197  * @domain: domain returned by mono_init ()
198  *
199  * Initialize the core AppDomain: this function will run also some
200  * IL initialization code, so it needs the execution engine to be fully 
201  * operational.
202  *
203  * AppDomain.SetupInformation is set up in mono_runtime_exec_main, where
204  * we know the entry_assembly.
205  *
206  */
207 void
208 mono_runtime_init (MonoDomain *domain, MonoThreadStartCB start_cb,
209                    MonoThreadAttachCB attach_cb)
210 {
211         MonoAppDomainSetup *setup;
212         MonoAppDomain *ad;
213         MonoClass *class;
214
215         mono_portability_helpers_init ();
216         
217         mono_gc_base_init ();
218         mono_monitor_init ();
219         mono_thread_pool_init ();
220         mono_marshal_init ();
221
222         mono_install_assembly_preload_hook (mono_domain_assembly_preload, GUINT_TO_POINTER (FALSE));
223         mono_install_assembly_refonly_preload_hook (mono_domain_assembly_preload, GUINT_TO_POINTER (TRUE));
224         mono_install_assembly_search_hook (mono_domain_assembly_search, GUINT_TO_POINTER (FALSE));
225         mono_install_assembly_refonly_search_hook (mono_domain_assembly_search, GUINT_TO_POINTER (TRUE));
226         mono_install_assembly_postload_search_hook (mono_domain_assembly_postload_search, GUINT_TO_POINTER (FALSE));
227         mono_install_assembly_postload_refonly_search_hook (mono_domain_assembly_postload_search, GUINT_TO_POINTER (TRUE));
228         mono_install_assembly_load_hook (mono_domain_fire_assembly_load, NULL);
229         mono_install_lookup_dynamic_token (mono_reflection_lookup_dynamic_token);
230
231         mono_thread_init (start_cb, attach_cb);
232
233         class = mono_class_from_name (mono_defaults.corlib, "System", "AppDomainSetup");
234         setup = (MonoAppDomainSetup *) mono_object_new (domain, class);
235
236         class = mono_class_from_name (mono_defaults.corlib, "System", "AppDomain");
237         ad = (MonoAppDomain *) mono_object_new (domain, class);
238         ad->data = domain;
239         domain->domain = ad;
240         domain->setup = setup;
241
242         InitializeCriticalSection (&mono_delegate_section);
243
244 #ifdef _EGLIB_MAJOR
245         /* Needed until EGLIB is fixed #464316 */
246         InitializeCriticalSection (&mono_strtod_mutex);
247 #endif
248         
249         mono_thread_attach (domain);
250         mono_context_init (domain);
251         mono_context_set (domain->default_context);
252
253         mono_type_initialization_init ();
254
255         if (!mono_runtime_get_no_exec ())
256                 create_exceptions (domain);
257
258         /* GC init has to happen after thread init */
259         mono_gc_init ();
260
261 #ifndef DISABLE_SOCKETS
262         mono_network_init ();
263 #endif
264         
265         mono_console_init ();
266         mono_attach_init ();
267
268         mono_locks_tracer_init ();
269
270         /* mscorlib is loaded before we install the load hook */
271         mono_domain_fire_assembly_load (mono_defaults.corlib->assembly, NULL);
272         
273         return;
274 }
275
276 static int
277 mono_get_corlib_version (void)
278 {
279         MonoClass *klass;
280         MonoClassField *field;
281         MonoObject *value;
282
283         klass = mono_class_from_name (mono_defaults.corlib, "System", "Environment");
284         mono_class_init (klass);
285         field = mono_class_get_field_from_name (klass, "mono_corlib_version");
286         if (!field)
287                 return -1;
288         if (! (field->type->attrs & FIELD_ATTRIBUTE_STATIC))
289                 return -1;
290         value = mono_field_get_value_object (mono_domain_get (), field, NULL);
291         return *(gint32*)((gchar*)value + sizeof (MonoObject));
292 }
293
294 const char*
295 mono_check_corlib_version (void)
296 {
297         int version = mono_get_corlib_version ();
298         if (version != MONO_CORLIB_VERSION)
299                 return g_strdup_printf ("expected corlib version %d, found %d.", MONO_CORLIB_VERSION, version);
300         else
301                 return NULL;
302 }
303
304 void
305 mono_context_init (MonoDomain *domain)
306 {
307         MonoClass *class;
308         MonoAppContext *context;
309
310         class = mono_class_from_name (mono_defaults.corlib, "System.Runtime.Remoting.Contexts", "Context");
311         context = (MonoAppContext *) mono_object_new (domain, class);
312         context->domain_id = domain->domain_id;
313         context->context_id = 0;
314         domain->default_context = context;
315 }
316
317 /**
318  * mono_runtime_cleanup:
319  * @domain: unused.
320  *
321  * Internal routine.
322  *
323  * This must not be called while there are still running threads executing
324  * managed code.
325  */
326 void
327 mono_runtime_cleanup (MonoDomain *domain)
328 {
329         shutting_down = TRUE;
330
331         mono_attach_cleanup ();
332
333         /* This ends up calling any pending pending (for at most 2 seconds) */
334         mono_gc_cleanup ();
335
336         mono_thread_cleanup ();
337
338 #ifndef DISABLE_SOCKETS
339         mono_network_cleanup ();
340 #endif
341         mono_marshal_cleanup ();
342
343         mono_type_initialization_cleanup ();
344
345         mono_monitor_cleanup ();
346
347 #ifndef HOST_WIN32
348         _wapi_cleanup ();
349 #endif
350 }
351
352 static MonoDomainFunc quit_function = NULL;
353
354 void
355 mono_install_runtime_cleanup (MonoDomainFunc func)
356 {
357         quit_function = func;
358 }
359
360 void
361 mono_runtime_quit ()
362 {
363         if (quit_function != NULL)
364                 quit_function (mono_get_root_domain (), NULL);
365 }
366
367 /** 
368  * mono_runtime_set_shutting_down:
369  *
370  * Invoked by System.Environment.Exit to flag that the runtime
371  * is shutting down.
372  */
373 void
374 mono_runtime_set_shutting_down (void)
375 {
376         shutting_down = TRUE;
377 }
378
379 /**
380  * mono_runtime_is_shutting_down:
381  *
382  * Returns whether the runtime has been flagged for shutdown.
383  *
384  * This is consumed by the P:System.Environment.HasShutdownStarted
385  * property.
386  *
387  */
388 gboolean
389 mono_runtime_is_shutting_down (void)
390 {
391         return shutting_down;
392 }
393
394 /**
395  * mono_domain_create_appdomain:
396  * @friendly_name: The friendly name of the appdomain to create
397  * @configuration_file: The configuration file to initialize the appdomain with
398  * 
399  * Returns a MonoDomain initialized with the appdomain
400  */
401 MonoDomain *
402 mono_domain_create_appdomain (char *friendly_name, char *configuration_file)
403 {
404         MonoAppDomain *ad;
405         MonoAppDomainSetup *setup;
406         MonoClass *class;
407
408         class = mono_class_from_name (mono_defaults.corlib, "System", "AppDomainSetup");
409         setup = (MonoAppDomainSetup *) mono_object_new (mono_domain_get (), class);
410         setup->configuration_file = configuration_file != NULL ? mono_string_new (mono_domain_get (), configuration_file) : NULL;
411
412         ad = mono_domain_create_appdomain_internal (friendly_name, setup);
413
414         return mono_domain_from_appdomain (ad);
415 }
416
417 static MonoAppDomainSetup*
418 copy_app_domain_setup (MonoDomain *domain, MonoAppDomainSetup *setup)
419 {
420         MonoDomain *caller_domain = mono_domain_get ();
421         MonoClass *ads_class = mono_class_from_name (mono_defaults.corlib, "System", "AppDomainSetup");
422         MonoAppDomainSetup *copy = (MonoAppDomainSetup*)mono_object_new (domain, ads_class);
423
424         mono_domain_set_internal (domain);
425
426         MONO_OBJECT_SETREF (copy, application_base, mono_marshal_xdomain_copy_value ((MonoObject*)setup->application_base));
427         MONO_OBJECT_SETREF (copy, application_name, mono_marshal_xdomain_copy_value ((MonoObject*)setup->application_name));
428         MONO_OBJECT_SETREF (copy, cache_path, mono_marshal_xdomain_copy_value ((MonoObject*)setup->cache_path));
429         MONO_OBJECT_SETREF (copy, configuration_file, mono_marshal_xdomain_copy_value ((MonoObject*)setup->configuration_file));
430         MONO_OBJECT_SETREF (copy, dynamic_base, mono_marshal_xdomain_copy_value ((MonoObject*)setup->dynamic_base));
431         MONO_OBJECT_SETREF (copy, license_file, mono_marshal_xdomain_copy_value ((MonoObject*)setup->license_file));
432         MONO_OBJECT_SETREF (copy, private_bin_path, mono_marshal_xdomain_copy_value ((MonoObject*)setup->private_bin_path));
433         MONO_OBJECT_SETREF (copy, private_bin_path_probe, mono_marshal_xdomain_copy_value ((MonoObject*)setup->private_bin_path_probe));
434         MONO_OBJECT_SETREF (copy, shadow_copy_directories, mono_marshal_xdomain_copy_value ((MonoObject*)setup->shadow_copy_directories));
435         MONO_OBJECT_SETREF (copy, shadow_copy_files, mono_marshal_xdomain_copy_value ((MonoObject*)setup->shadow_copy_files));
436         copy->publisher_policy = setup->publisher_policy;
437         copy->path_changed = setup->path_changed;
438         copy->loader_optimization = setup->loader_optimization;
439         copy->disallow_binding_redirects = setup->disallow_binding_redirects;
440         copy->disallow_code_downloads = setup->disallow_code_downloads;
441         MONO_OBJECT_SETREF (copy, domain_initializer_args, mono_marshal_xdomain_copy_value ((MonoObject*)setup->domain_initializer_args));
442         copy->disallow_appbase_probe = setup->disallow_appbase_probe;
443         MONO_OBJECT_SETREF (copy, application_trust, mono_marshal_xdomain_copy_value ((MonoObject*)setup->application_trust));
444         MONO_OBJECT_SETREF (copy, configuration_bytes, mono_marshal_xdomain_copy_value ((MonoObject*)setup->configuration_bytes));
445         MONO_OBJECT_SETREF (copy, serialized_non_primitives, mono_marshal_xdomain_copy_value ((MonoObject*)setup->serialized_non_primitives));
446
447         mono_domain_set_internal (caller_domain);
448
449         return copy;
450 }
451
452 static MonoAppDomain *
453 mono_domain_create_appdomain_internal (char *friendly_name, MonoAppDomainSetup *setup)
454 {
455         MonoError error;
456         MonoClass *adclass;
457         MonoAppDomain *ad;
458         MonoDomain *data;
459         char *shadow_location;
460         
461         MONO_ARCH_SAVE_REGS;
462
463         adclass = mono_class_from_name (mono_defaults.corlib, "System", "AppDomain");
464
465         /* FIXME: pin all those objects */
466         data = mono_domain_create();
467
468         ad = (MonoAppDomain *) mono_object_new (data, adclass);
469         ad->data = data;
470         data->domain = ad;
471         data->friendly_name = g_strdup (friendly_name);
472
473         if (!setup->application_base) {
474                 /* Inherit from the root domain since MS.NET does this */
475                 MonoDomain *root = mono_get_root_domain ();
476                 if (root->setup->application_base)
477                         MONO_OBJECT_SETREF (setup, application_base, mono_string_new_utf16 (data, mono_string_chars (root->setup->application_base), mono_string_length (root->setup->application_base)));
478         }
479
480         mono_context_init (data);
481
482         mono_set_private_bin_path_from_config (data);
483         
484         add_assemblies_to_domain (data, mono_defaults.corlib->assembly, NULL);
485
486         data->setup = copy_app_domain_setup (data, setup);
487
488 #ifndef DISABLE_SHADOW_COPY
489         /*FIXME, guard this for when the debugger is not running */
490         shadow_location = get_shadow_assembly_location_base (data, &error);
491         if (!mono_error_ok (&error))
492                 mono_error_raise_exception (&error);
493         mono_debugger_event_create_appdomain (data, shadow_location);
494         g_free (shadow_location);
495 #endif
496
497         create_exceptions (data);
498
499         return ad;
500 }
501
502 /**
503  * mono_domain_has_type_resolve:
504  * @domain: application domains being looked up
505  *
506  * Returns true if the AppDomain.TypeResolve field has been
507  * set.
508  */
509 gboolean
510 mono_domain_has_type_resolve (MonoDomain *domain)
511 {
512         static MonoClassField *field = NULL;
513         MonoObject *o;
514
515         if (field == NULL) {
516                 field = mono_class_get_field_from_name (mono_defaults.appdomain_class, "TypeResolve");
517                 g_assert (field);
518         }
519
520         mono_field_get_value ((MonoObject*)(domain->domain), field, &o);
521         return o != NULL;
522 }
523
524 /**
525  * mono_domain_try_type_resolve:
526  * @domain: application domainwhere the name where the type is going to be resolved
527  * @name: the name of the type to resolve or NULL.
528  * @tb: A System.Reflection.Emit.TypeBuilder, used if name is NULL.
529  *
530  * This routine invokes the internal System.AppDomain.DoTypeResolve and returns
531  * the assembly that matches name.
532  *
533  * If @name is null, the value of ((TypeBuilder)tb).FullName is used instead
534  *
535  * Returns: A MonoReflectionAssembly or NULL if not found
536  */
537 MonoReflectionAssembly *
538 mono_domain_try_type_resolve (MonoDomain *domain, char *name, MonoObject *tb)
539 {
540         MonoClass *klass;
541         void *params [1];
542         static MonoMethod *method = NULL;
543
544         g_assert (domain != NULL && ((name != NULL) || (tb != NULL)));
545
546         if (method == NULL) {
547                 klass = domain->domain->mbr.obj.vtable->klass;
548                 g_assert (klass);
549
550                 method = mono_class_get_method_from_name (klass, "DoTypeResolve", -1);
551                 if (method == NULL) {
552                         g_warning ("Method AppDomain.DoTypeResolve not found.\n");
553                         return NULL;
554                 }
555         }
556
557         if (name)
558                 *params = (MonoObject*)mono_string_new (mono_domain_get (), name);
559         else
560                 *params = tb;
561         return (MonoReflectionAssembly *) mono_runtime_invoke (method, domain->domain, params, NULL);
562 }
563
564 /**
565  * mono_domain_owns_vtable_slot:
566  *
567  *  Returns whenever VTABLE_SLOT is inside a vtable which belongs to DOMAIN.
568  */
569 gboolean
570 mono_domain_owns_vtable_slot (MonoDomain *domain, gpointer vtable_slot)
571 {
572         gboolean res;
573
574         mono_domain_lock (domain);
575         res = mono_mempool_contains_addr (domain->mp, vtable_slot);
576         mono_domain_unlock (domain);
577         return res;
578 }
579
580 /**
581  * mono_domain_set:
582  * @domain: domain
583  * @force: force setting.
584  *
585  * Set the current appdomain to @domain. If @force is set, set it even
586  * if it is being unloaded.
587  *
588  * Returns:
589  *   TRUE on success;
590  *   FALSE if the domain is unloaded
591  */
592 gboolean
593 mono_domain_set (MonoDomain *domain, gboolean force)
594 {
595         if (!force && domain->state == MONO_APPDOMAIN_UNLOADED)
596                 return FALSE;
597
598         mono_domain_set_internal (domain);
599
600         return TRUE;
601 }
602
603 MonoObject *
604 ves_icall_System_AppDomain_GetData (MonoAppDomain *ad, MonoString *name)
605 {
606         MonoDomain *add;
607         MonoObject *o;
608         char *str;
609
610         MONO_ARCH_SAVE_REGS;
611
612         g_assert (ad != NULL);
613         add = ad->data;
614         g_assert (add != NULL);
615
616         if (name == NULL)
617                 mono_raise_exception (mono_get_exception_argument_null ("name"));
618
619         str = mono_string_to_utf8 (name);
620
621         mono_domain_lock (add);
622
623         if (!strcmp (str, "APPBASE"))
624                 o = (MonoObject *)add->setup->application_base;
625         else if (!strcmp (str, "APP_CONFIG_FILE"))
626                 o = (MonoObject *)add->setup->configuration_file;
627         else if (!strcmp (str, "DYNAMIC_BASE"))
628                 o = (MonoObject *)add->setup->dynamic_base;
629         else if (!strcmp (str, "APP_NAME"))
630                 o = (MonoObject *)add->setup->application_name;
631         else if (!strcmp (str, "CACHE_BASE"))
632                 o = (MonoObject *)add->setup->cache_path;
633         else if (!strcmp (str, "PRIVATE_BINPATH"))
634                 o = (MonoObject *)add->setup->private_bin_path;
635         else if (!strcmp (str, "BINPATH_PROBE_ONLY"))
636                 o = (MonoObject *)add->setup->private_bin_path_probe;
637         else if (!strcmp (str, "SHADOW_COPY_DIRS"))
638                 o = (MonoObject *)add->setup->shadow_copy_directories;
639         else if (!strcmp (str, "FORCE_CACHE_INSTALL"))
640                 o = (MonoObject *)add->setup->shadow_copy_files;
641         else 
642                 o = mono_g_hash_table_lookup (add->env, name);
643
644         mono_domain_unlock (add);
645         g_free (str);
646
647         if (!o)
648                 return NULL;
649
650         return o;
651 }
652
653 void
654 ves_icall_System_AppDomain_SetData (MonoAppDomain *ad, MonoString *name, MonoObject *data)
655 {
656         MonoDomain *add;
657
658         MONO_ARCH_SAVE_REGS;
659
660         g_assert (ad != NULL);
661         add = ad->data;
662         g_assert (add != NULL);
663
664         if (name == NULL)
665                 mono_raise_exception (mono_get_exception_argument_null ("name"));
666
667         mono_domain_lock (add);
668
669         mono_g_hash_table_insert (add->env, name, data);
670
671         mono_domain_unlock (add);
672 }
673
674 MonoAppDomainSetup *
675 ves_icall_System_AppDomain_getSetup (MonoAppDomain *ad)
676 {
677         MONO_ARCH_SAVE_REGS;
678
679         g_assert (ad != NULL);
680         g_assert (ad->data != NULL);
681
682         return ad->data->setup;
683 }
684
685 MonoString *
686 ves_icall_System_AppDomain_getFriendlyName (MonoAppDomain *ad)
687 {
688         MONO_ARCH_SAVE_REGS;
689
690         g_assert (ad != NULL);
691         g_assert (ad->data != NULL);
692
693         return mono_string_new (ad->data, ad->data->friendly_name);
694 }
695
696 MonoAppDomain *
697 ves_icall_System_AppDomain_getCurDomain ()
698 {
699         MonoDomain *add = mono_domain_get ();
700
701         MONO_ARCH_SAVE_REGS;
702
703         return add->domain;
704 }
705
706 MonoAppDomain *
707 ves_icall_System_AppDomain_getRootDomain ()
708 {
709         MonoDomain *root = mono_get_root_domain ();
710
711         MONO_ARCH_SAVE_REGS;
712
713         return root->domain;
714 }
715
716 static char*
717 get_attribute_value (const gchar **attribute_names, 
718                      const gchar **attribute_values, 
719                      const char *att_name)
720 {
721         int n;
722         for (n = 0; attribute_names [n] != NULL; n++) {
723                 if (strcmp (attribute_names [n], att_name) == 0)
724                         return g_strdup (attribute_values [n]);
725         }
726         return NULL;
727 }
728
729 static void
730 start_element (GMarkupParseContext *context, 
731                const gchar         *element_name,
732                const gchar        **attribute_names,
733                const gchar        **attribute_values,
734                gpointer             user_data,
735                GError             **error)
736 {
737         RuntimeConfig *runtime_config = user_data;
738         
739         if (strcmp (element_name, "runtime") == 0) {
740                 runtime_config->runtime_count++;
741                 return;
742         }
743
744         if (strcmp (element_name, "assemblyBinding") == 0) {
745                 runtime_config->assemblybinding_count++;
746                 return;
747         }
748         
749         if (runtime_config->runtime_count != 1 || runtime_config->assemblybinding_count != 1)
750                 return;
751
752         if (strcmp (element_name, "probing") != 0)
753                 return;
754
755         g_free (runtime_config->domain->private_bin_path);
756         runtime_config->domain->private_bin_path = get_attribute_value (attribute_names, attribute_values, "privatePath");
757         if (runtime_config->domain->private_bin_path && !runtime_config->domain->private_bin_path [0]) {
758                 g_free (runtime_config->domain->private_bin_path);
759                 runtime_config->domain->private_bin_path = NULL;
760                 return;
761         }
762 }
763
764 static void
765 end_element (GMarkupParseContext *context,
766              const gchar         *element_name,
767              gpointer             user_data,
768              GError             **error)
769 {
770         RuntimeConfig *runtime_config = user_data;
771         if (strcmp (element_name, "runtime") == 0)
772                 runtime_config->runtime_count--;
773         else if (strcmp (element_name, "assemblyBinding") == 0)
774                 runtime_config->assemblybinding_count--;
775 }
776
777 static const GMarkupParser
778 mono_parser = {
779         start_element,
780         end_element,
781         NULL,
782         NULL,
783         NULL
784 };
785
786 void
787 mono_set_private_bin_path_from_config (MonoDomain *domain)
788 {
789         MonoError error;
790         gchar *config_file, *text;
791         gsize len;
792         GMarkupParseContext *context;
793         RuntimeConfig runtime_config;
794         
795         if (!domain || !domain->setup || !domain->setup->configuration_file)
796                 return;
797
798         config_file = mono_string_to_utf8_checked (domain->setup->configuration_file, &error); 
799         if (!mono_error_ok (&error)) {
800                 mono_error_cleanup (&error);
801                 return;
802         }
803
804         if (!g_file_get_contents (config_file, &text, &len, NULL)) {
805                 g_free (config_file);
806                 return;
807         }
808         g_free (config_file);
809
810         runtime_config.runtime_count = 0;
811         runtime_config.assemblybinding_count = 0;
812         runtime_config.domain = domain;
813         
814         context = g_markup_parse_context_new (&mono_parser, 0, &runtime_config, NULL);
815         if (g_markup_parse_context_parse (context, text, len, NULL))
816                 g_markup_parse_context_end_parse (context, NULL);
817         g_markup_parse_context_free (context);
818         g_free (text);
819 }
820
821 MonoAppDomain *
822 ves_icall_System_AppDomain_createDomain (MonoString *friendly_name, MonoAppDomainSetup *setup)
823 {
824         char *fname = mono_string_to_utf8 (friendly_name);
825         MonoAppDomain *ad = mono_domain_create_appdomain_internal (fname, setup);
826         
827         g_free (fname);
828
829         return ad;
830 }
831
832 MonoArray *
833 ves_icall_System_AppDomain_GetAssemblies (MonoAppDomain *ad, MonoBoolean refonly)
834 {
835         MonoDomain *domain = ad->data; 
836         MonoAssembly* ass;
837         static MonoClass *System_Reflection_Assembly;
838         MonoArray *res;
839         GSList *tmp;
840         int i;
841         GPtrArray *assemblies;
842
843         MONO_ARCH_SAVE_REGS;
844
845         if (!System_Reflection_Assembly)
846                 System_Reflection_Assembly = mono_class_from_name (
847                         mono_defaults.corlib, "System.Reflection", "Assembly");
848
849         /* 
850          * Make a copy of the list of assemblies because we can't hold the assemblies
851          * lock while creating objects etc.
852          */
853         assemblies = g_ptr_array_new ();
854         /* Need to skip internal assembly builders created by remoting */
855         mono_domain_assemblies_lock (domain);
856         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
857                 ass = tmp->data;
858                 if (refonly != ass->ref_only)
859                         continue;
860                 if (ass->corlib_internal)
861                         continue;
862                 g_ptr_array_add (assemblies, ass);
863         }
864         mono_domain_assemblies_unlock (domain);
865
866         res = mono_array_new (domain, System_Reflection_Assembly, assemblies->len);
867         for (i = 0; i < assemblies->len; ++i) {
868                 ass = g_ptr_array_index (assemblies, i);
869                 mono_array_setref (res, i, mono_assembly_get_object (domain, ass));
870         }
871
872         g_ptr_array_free (assemblies, TRUE);
873
874         return res;
875 }
876
877 MonoReflectionAssembly *
878 mono_try_assembly_resolve (MonoDomain *domain, MonoString *fname, gboolean refonly)
879 {
880         MonoClass *klass;
881         MonoMethod *method;
882         MonoBoolean isrefonly;
883         gpointer params [2];
884
885         if (mono_runtime_get_no_exec ())
886                 return NULL;
887
888         g_assert (domain != NULL && fname != NULL);
889
890         klass = domain->domain->mbr.obj.vtable->klass;
891         g_assert (klass);
892         
893         method = mono_class_get_method_from_name (klass, "DoAssemblyResolve", -1);
894         if (method == NULL) {
895                 g_warning ("Method AppDomain.DoAssemblyResolve not found.\n");
896                 return NULL;
897         }
898
899         isrefonly = refonly ? 1 : 0;
900         params [0] = fname;
901         params [1] = &isrefonly;
902         return (MonoReflectionAssembly *) mono_runtime_invoke (method, domain->domain, params, NULL);
903 }
904
905 static MonoAssembly *
906 mono_domain_assembly_postload_search (MonoAssemblyName *aname,
907                                                                           gpointer user_data)
908 {
909         gboolean refonly = GPOINTER_TO_UINT (user_data);
910         MonoReflectionAssembly *assembly;
911         MonoDomain *domain = mono_domain_get ();
912         char *aname_str;
913
914         aname_str = mono_stringify_assembly_name (aname);
915
916         /* FIXME: We invoke managed code here, so there is a potential for deadlocks */
917         assembly = mono_try_assembly_resolve (domain, mono_string_new (domain, aname_str), refonly);
918
919         g_free (aname_str);
920
921         if (assembly)
922                 return assembly->assembly;
923         else
924                 return NULL;
925 }
926         
927 /*
928  * LOCKING: assumes assemblies_lock in the domain is already locked.
929  */
930 static void
931 add_assemblies_to_domain (MonoDomain *domain, MonoAssembly *ass, GHashTable *ht)
932 {
933         gint i;
934         GSList *tmp;
935         gboolean destroy_ht = FALSE;
936
937         if (!ass->aname.name)
938                 return;
939
940         if (!ht) {
941                 ht = g_hash_table_new (mono_aligned_addr_hash, NULL);
942                 destroy_ht = TRUE;
943         }
944
945         /* FIXME: handle lazy loaded assemblies */
946         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
947                 g_hash_table_insert (ht, tmp->data, tmp->data);
948         }
949         if (!g_hash_table_lookup (ht, ass)) {
950                 mono_assembly_addref (ass);
951                 g_hash_table_insert (ht, ass, ass);
952                 domain->domain_assemblies = g_slist_prepend (domain->domain_assemblies, ass);
953                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Assembly %s %p added to domain %s, ref_count=%d\n", ass->aname.name, ass, domain->friendly_name, ass->ref_count);
954         }
955
956         if (ass->image->references) {
957                 for (i = 0; ass->image->references [i] != NULL; i++) {
958                         if (ass->image->references [i] != REFERENCE_MISSING)
959                                 if (!g_hash_table_lookup (ht, ass->image->references [i])) {
960                                         add_assemblies_to_domain (domain, ass->image->references [i], ht);
961                                 }
962                 }
963         }
964         if (destroy_ht)
965                 g_hash_table_destroy (ht);
966 }
967
968 static void
969 mono_domain_fire_assembly_load (MonoAssembly *assembly, gpointer user_data)
970 {
971         static MonoClassField *assembly_load_field;
972         static MonoMethod *assembly_load_method;
973         MonoDomain *domain = mono_domain_get ();
974         MonoReflectionAssembly *ref_assembly;
975         MonoClass *klass;
976         gpointer load_value;
977         void *params [1];
978
979         if (!domain->domain)
980                 /* This can happen during startup */
981                 return;
982 #ifdef ASSEMBLY_LOAD_DEBUG
983         fprintf (stderr, "Loading %s into domain %s\n", assembly->aname.name, domain->friendly_name);
984 #endif
985         klass = domain->domain->mbr.obj.vtable->klass;
986
987         mono_domain_assemblies_lock (domain);
988         add_assemblies_to_domain (domain, assembly, NULL);
989         mono_domain_assemblies_unlock (domain);
990
991         if (assembly_load_field == NULL) {
992                 assembly_load_field = mono_class_get_field_from_name (klass, "AssemblyLoad");
993                 g_assert (assembly_load_field);
994         }
995
996         mono_field_get_value ((MonoObject*) domain->domain, assembly_load_field, &load_value);
997         if (load_value == NULL) {
998                 /* No events waiting to be triggered */
999                 return;
1000         }
1001
1002         ref_assembly = mono_assembly_get_object (domain, assembly);
1003         g_assert (ref_assembly);
1004
1005         if (assembly_load_method == NULL) {
1006                 assembly_load_method = mono_class_get_method_from_name (klass, "DoAssemblyLoad", -1);
1007                 g_assert (assembly_load_method);
1008         }
1009
1010         *params = ref_assembly;
1011         mono_runtime_invoke (assembly_load_method, domain->domain, params, NULL);
1012 }
1013
1014 /*
1015  * LOCKING: Acquires the domain assemblies lock.
1016  */
1017 static void
1018 set_domain_search_path (MonoDomain *domain)
1019 {
1020         MonoError error;
1021         MonoAppDomainSetup *setup;
1022         gchar **tmp;
1023         gchar *search_path = NULL;
1024         gint i;
1025         gint npaths = 0;
1026         gchar **pvt_split = NULL;
1027         GError *gerror = NULL;
1028         gint appbaselen = -1;
1029
1030         /* 
1031          * We use the low-level domain assemblies lock, since this is called from
1032          * assembly loads hooks, which means this thread might hold the loader lock.
1033          */
1034         mono_domain_assemblies_lock (domain);
1035
1036         if (!domain->setup) {
1037                 mono_domain_assemblies_unlock (domain);
1038                 return;
1039         }
1040
1041         if ((domain->search_path != NULL) && !domain->setup->path_changed) {
1042                 mono_domain_assemblies_unlock (domain);
1043                 return;
1044         }
1045         setup = domain->setup;
1046         if (!setup->application_base) {
1047                 mono_domain_assemblies_unlock (domain);
1048                 return; /* Must set application base to get private path working */
1049         }
1050
1051         npaths++;
1052         
1053         if (setup->private_bin_path) {
1054                 search_path = mono_string_to_utf8_checked (setup->private_bin_path, &error);
1055                 if (!mono_error_ok (&error)) { /*FIXME maybe we should bubble up the error.*/
1056                         g_warning ("Could not decode AppDomain search path since it contains invalid caracters");
1057                         mono_error_cleanup (&error);
1058                         mono_domain_assemblies_unlock (domain);
1059                         return;
1060                 }
1061         }
1062         
1063         if (domain->private_bin_path) {
1064                 if (search_path == NULL)
1065                         search_path = domain->private_bin_path;
1066                 else {
1067                         gchar *tmp2 = search_path;
1068                         search_path = g_strjoin (";", search_path, domain->private_bin_path, NULL);
1069                         g_free (tmp2);
1070                 }
1071         }
1072         
1073         if (search_path) {
1074                 /*
1075                  * As per MSDN documentation, AppDomainSetup.PrivateBinPath contains a list of
1076                  * directories relative to ApplicationBase separated by semicolons (see
1077                  * http://msdn2.microsoft.com/en-us/library/system.appdomainsetup.privatebinpath.aspx)
1078                  * The loop below copes with the fact that some Unix applications may use ':' (or
1079                  * System.IO.Path.PathSeparator) as the path search separator. We replace it with
1080                  * ';' for the subsequent split.
1081                  *
1082                  * The issue was reported in bug #81446
1083                  */
1084
1085 #ifndef TARGET_WIN32
1086                 gint slen;
1087
1088                 slen = strlen (search_path);
1089                 for (i = 0; i < slen; i++)
1090                         if (search_path [i] == ':')
1091                                 search_path [i] = ';';
1092 #endif
1093                 
1094                 pvt_split = g_strsplit (search_path, ";", 1000);
1095                 g_free (search_path);
1096                 for (tmp = pvt_split; *tmp; tmp++, npaths++);
1097         }
1098
1099         if (!npaths) {
1100                 if (pvt_split)
1101                         g_strfreev (pvt_split);
1102                 /*
1103                  * Don't do this because the first time is called, the domain
1104                  * setup is not finished.
1105                  *
1106                  * domain->search_path = g_malloc (sizeof (char *));
1107                  * domain->search_path [0] = NULL;
1108                 */
1109                 mono_domain_assemblies_unlock (domain);
1110                 return;
1111         }
1112
1113         if (domain->search_path)
1114                 g_strfreev (domain->search_path);
1115
1116         tmp = g_malloc ((npaths + 1) * sizeof (gchar *));
1117         tmp [npaths] = NULL;
1118
1119         *tmp = mono_string_to_utf8_checked (setup->application_base, &error);
1120         if (!mono_error_ok (&error)) {
1121                 mono_error_cleanup (&error);
1122                 g_strfreev (pvt_split);
1123                 g_free (tmp);
1124
1125                 mono_domain_assemblies_unlock (domain);
1126                 return;
1127         }
1128
1129         domain->search_path = tmp;
1130
1131         /* FIXME: is this needed? */
1132         if (strncmp (*tmp, "file://", 7) == 0) {
1133                 gchar *file = *tmp;
1134                 gchar *uri = *tmp;
1135                 gchar *tmpuri;
1136
1137                 if (uri [7] != '/')
1138                         uri = g_strdup_printf ("file:///%s", uri + 7);
1139
1140                 tmpuri = uri;
1141                 uri = mono_escape_uri_string (tmpuri);
1142                 *tmp = g_filename_from_uri (uri, NULL, &gerror);
1143                 g_free (uri);
1144
1145                 if (tmpuri != file)
1146                         g_free (tmpuri);
1147
1148                 if (gerror != NULL) {
1149                         g_warning ("%s\n", gerror->message);
1150                         g_error_free (gerror);
1151                         *tmp = file;
1152                 } else {
1153                         g_free (file);
1154                 }
1155         }
1156
1157         for (i = 1; pvt_split && i < npaths; i++) {
1158                 if (g_path_is_absolute (pvt_split [i - 1])) {
1159                         tmp [i] = g_strdup (pvt_split [i - 1]);
1160                 } else {
1161                         tmp [i] = g_build_filename (tmp [0], pvt_split [i - 1], NULL);
1162                 }
1163
1164                 if (strchr (tmp [i], '.')) {
1165                         gchar *reduced;
1166                         gchar *freeme;
1167
1168                         reduced = mono_path_canonicalize (tmp [i]);
1169                         if (appbaselen == -1)
1170                                 appbaselen = strlen (tmp [0]);
1171
1172                         if (strncmp (tmp [0], reduced, appbaselen)) {
1173                                 g_free (reduced);
1174                                 g_free (tmp [i]);
1175                                 tmp [i] = g_strdup ("");
1176                                 continue;
1177                         }
1178
1179                         freeme = tmp [i];
1180                         tmp [i] = reduced;
1181                         g_free (freeme);
1182                 }
1183         }
1184         
1185         if (setup->private_bin_path_probe != NULL) {
1186                 g_free (tmp [0]);
1187                 tmp [0] = g_strdup ("");
1188         }
1189                 
1190         domain->setup->path_changed = FALSE;
1191
1192         g_strfreev (pvt_split);
1193
1194         mono_domain_assemblies_unlock (domain);
1195 }
1196
1197 #ifdef DISABLE_SHADOW_COPY
1198 gboolean
1199 mono_is_shadow_copy_enabled (MonoDomain *domain, const gchar *dir_name)
1200 {
1201         return FALSE;
1202 }
1203
1204 char *
1205 mono_make_shadow_copy (const char *filename)
1206 {
1207         return (char *) filename;
1208 }
1209 #else
1210 static gboolean
1211 shadow_copy_sibling (gchar *src, gint srclen, const char *extension, gchar *target, gint targetlen, gint tail_len)
1212 {
1213         guint16 *orig, *dest;
1214         gboolean copy_result;
1215         
1216         strcpy (src + srclen - tail_len, extension);
1217         if (!g_file_test (src, G_FILE_TEST_IS_REGULAR))
1218                 return TRUE;
1219         orig = g_utf8_to_utf16 (src, strlen (src), NULL, NULL, NULL);
1220
1221         strcpy (target + targetlen - tail_len, extension);
1222         dest = g_utf8_to_utf16 (target, strlen (target), NULL, NULL, NULL);
1223         
1224         DeleteFile (dest);
1225         copy_result = CopyFile (orig, dest, FALSE);
1226
1227         /* Fix for bug #556884 - make sure the files have the correct mode so that they can be
1228          * overwritten when updated in their original locations. */
1229         if (copy_result)
1230                 copy_result = SetFileAttributes (dest, FILE_ATTRIBUTE_NORMAL);
1231
1232         g_free (orig);
1233         g_free (dest);
1234         
1235         return copy_result;
1236 }
1237
1238 static gint32 
1239 get_cstring_hash (const char *str)
1240 {
1241         int len, i;
1242         const char *p;
1243         gint32 h = 0;
1244         
1245         if (!str || !str [0])
1246                 return 0;
1247                 
1248         len = strlen (str);
1249         p = str;
1250         for (i = 0; i < len; i++) {
1251                 h = (h << 5) - h + *p;
1252                 p++;
1253         }
1254         
1255         return h;
1256 }
1257
1258 /*
1259  * Returned memory is malloc'd. Called must free it 
1260  */
1261 static char *
1262 get_shadow_assembly_location_base (MonoDomain *domain, MonoError *error)
1263 {
1264         MonoAppDomainSetup *setup;
1265         char *cache_path, *appname;
1266         char *userdir;
1267         char *location;
1268
1269         mono_error_init (error);
1270         
1271         setup = domain->setup;
1272         if (setup->cache_path != NULL && setup->application_name != NULL) {
1273                 cache_path = mono_string_to_utf8_checked (setup->cache_path, error);
1274                 if (!mono_error_ok (error))
1275                         return NULL;
1276 #ifndef TARGET_WIN32
1277                 {
1278                         gint i;
1279                         for (i = strlen (cache_path) - 1; i >= 0; i--)
1280                                 if (cache_path [i] == '\\')
1281                                         cache_path [i] = '/';
1282                 }
1283 #endif
1284
1285                 appname = mono_string_to_utf8_checked (setup->application_name, error);
1286                 if (!mono_error_ok (error)) {
1287                         g_free (cache_path);
1288                         return NULL;
1289                 }
1290
1291                 location = g_build_filename (cache_path, appname, "assembly", "shadow", NULL);
1292                 g_free (appname);
1293                 g_free (cache_path);
1294         } else {
1295                 userdir = g_strdup_printf ("%s-mono-cachepath", g_get_user_name ());
1296                 location = g_build_filename (g_get_tmp_dir (), userdir, "assembly", "shadow", NULL);
1297                 g_free (userdir);
1298         }
1299         return location;
1300 }
1301
1302 static char *
1303 get_shadow_assembly_location (const char *filename, MonoError *error)
1304 {
1305         gint32 hash = 0, hash2 = 0;
1306         char name_hash [9];
1307         char path_hash [30];
1308         char *bname = g_path_get_basename (filename);
1309         char *dirname = g_path_get_dirname (filename);
1310         char *location, *tmploc;
1311         MonoDomain *domain = mono_domain_get ();
1312
1313         mono_error_init (error);
1314         
1315         hash = get_cstring_hash (bname);
1316         hash2 = get_cstring_hash (dirname);
1317         g_snprintf (name_hash, sizeof (name_hash), "%08x", hash);
1318         g_snprintf (path_hash, sizeof (path_hash), "%08x_%08x_%08x", hash ^ hash2, hash2, domain->shadow_serial);
1319         tmploc = get_shadow_assembly_location_base (domain, error);
1320         if (!mono_error_ok (error)) {
1321                 g_free (bname);
1322                 g_free (dirname);
1323                 return NULL;
1324         }
1325
1326         location = g_build_filename (tmploc, name_hash, path_hash, bname, NULL);
1327         g_free (tmploc);
1328         g_free (bname);
1329         g_free (dirname);
1330         return location;
1331 }
1332
1333 static gboolean
1334 ensure_directory_exists (const char *filename)
1335 {
1336 #ifdef HOST_WIN32
1337         gchar *dir_utf8 = g_path_get_dirname (filename);
1338         gunichar2 *p;
1339         gunichar2 *dir_utf16 = NULL;
1340         int retval;
1341         
1342         if (!dir_utf8 || !dir_utf8 [0])
1343                 return FALSE;
1344
1345         dir_utf16 = g_utf8_to_utf16 (dir_utf8, strlen (dir_utf8), NULL, NULL, NULL);
1346         g_free (dir_utf8);
1347
1348         if (!dir_utf16)
1349                 return FALSE;
1350
1351         p = dir_utf16;
1352
1353         /* make life easy and only use one directory seperator */
1354         while (*p != '\0')
1355         {
1356                 if (*p == '/')
1357                         *p = '\\';
1358                 p++;
1359         }
1360
1361         p = dir_utf16;
1362
1363         /* get past C:\ )*/
1364         while (*p++ != '\\')    
1365         {
1366         }
1367
1368         while (1) {
1369                 BOOL bRet = FALSE;
1370                 p = wcschr (p, '\\');
1371                 if (p)
1372                         *p = '\0';
1373                 retval = _wmkdir (dir_utf16);
1374                 if (retval != 0 && errno != EEXIST) {
1375                         g_free (dir_utf16);
1376                         return FALSE;
1377                 }
1378                 if (!p)
1379                         break;
1380                 *p++ = '\\';
1381         }
1382         
1383         g_free (dir_utf16);
1384         return TRUE;
1385 #else
1386         char *p;
1387         gchar *dir = g_path_get_dirname (filename);
1388         int retval;
1389         struct stat sbuf;
1390         
1391         if (!dir || !dir [0]) {
1392                 g_free (dir);
1393                 return FALSE;
1394         }
1395         
1396         if (stat (dir, &sbuf) == 0 && S_ISDIR (sbuf.st_mode)) {
1397                 g_free (dir);
1398                 return TRUE;
1399         }
1400         
1401         p = dir;
1402         while (*p == '/')
1403                 p++;
1404
1405         while (1) {
1406                 p = strchr (p, '/');
1407                 if (p)
1408                         *p = '\0';
1409                 retval = mkdir (dir, 0777);
1410                 if (retval != 0 && errno != EEXIST) {
1411                         g_free (dir);
1412                         return FALSE;
1413                 }
1414                 if (!p)
1415                         break;
1416                 *p++ = '/';
1417         }
1418         
1419         g_free (dir);
1420         return TRUE;
1421 #endif
1422 }
1423
1424 static gboolean
1425 private_file_needs_copying (const char *src, struct stat *sbuf_src, char *dest)
1426 {
1427         struct stat sbuf_dest;
1428         
1429         if (stat (src, sbuf_src) == -1 || stat (dest, &sbuf_dest) == -1)
1430                 return TRUE;
1431
1432         if (sbuf_src->st_size == sbuf_dest.st_size &&
1433             sbuf_src->st_mtime == sbuf_dest.st_mtime)
1434                 return FALSE;
1435
1436         return TRUE;
1437 }
1438
1439 static gboolean
1440 shadow_copy_create_ini (const char *shadow, const char *filename)
1441 {
1442         char *dir_name;
1443         char *ini_file;
1444         guint16 *u16_ini;
1445         gboolean result;
1446         guint32 n;
1447         HANDLE *handle;
1448         gchar *full_path;
1449
1450         dir_name = g_path_get_dirname (shadow);
1451         ini_file = g_build_filename (dir_name, "__AssemblyInfo__.ini", NULL);
1452         g_free (dir_name);
1453         if (g_file_test (ini_file, G_FILE_TEST_IS_REGULAR)) {
1454                 g_free (ini_file);
1455                 return TRUE;
1456         }
1457
1458         u16_ini = g_utf8_to_utf16 (ini_file, strlen (ini_file), NULL, NULL, NULL);
1459         g_free (ini_file);
1460         if (!u16_ini) {
1461                 return FALSE;
1462         }
1463         handle = CreateFile (u16_ini, GENERIC_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE,
1464                                 NULL, CREATE_NEW, FileAttributes_Normal, NULL);
1465         g_free (u16_ini);
1466         if (handle == INVALID_HANDLE_VALUE) {
1467                 return FALSE;
1468         }
1469
1470         full_path = mono_path_resolve_symlinks (filename);
1471         result = WriteFile (handle, full_path, strlen (full_path), &n, NULL);
1472         g_free (full_path);
1473         CloseHandle (handle);
1474         return result;
1475 }
1476
1477 gboolean
1478 mono_is_shadow_copy_enabled (MonoDomain *domain, const gchar *dir_name)
1479 {
1480         MonoError error;
1481         const char *version;
1482         MonoAppDomainSetup *setup;
1483         gchar *all_dirs;
1484         gchar **dir_ptr;
1485         gchar **directories;
1486         gchar *shadow_status_string;
1487         gchar *base_dir;
1488         gboolean shadow_enabled;
1489         gboolean found = FALSE;
1490
1491         if (domain == NULL)
1492                 return FALSE;
1493
1494         setup = domain->setup;
1495         if (setup == NULL || setup->shadow_copy_files == NULL)
1496                 return FALSE;
1497
1498         version = mono_get_runtime_info ()->framework_version;
1499
1500         /* For 1.x, not NULL is enough. In 2.0 it has to be "true" */
1501         if (*version <= '1') {
1502                 shadow_enabled = TRUE;
1503         } else {
1504                 shadow_status_string = mono_string_to_utf8_checked (setup->shadow_copy_files, &error);
1505                 if (!mono_error_ok (&error)) {
1506                         mono_error_cleanup (&error);
1507                         return FALSE;
1508                 }
1509                 shadow_enabled = !g_ascii_strncasecmp (shadow_status_string, "true", 4);
1510                 g_free (shadow_status_string);
1511         }
1512                 
1513         if (!shadow_enabled)
1514                 return FALSE;
1515
1516         if (setup->shadow_copy_directories == NULL)
1517                 return TRUE;
1518
1519         /* Is dir_name a shadow_copy destination already? */
1520         base_dir = get_shadow_assembly_location_base (domain, &error);
1521         if (!mono_error_ok (&error)) {
1522                 mono_error_cleanup (&error);
1523                 return FALSE;
1524         }
1525
1526         if (strstr (dir_name, base_dir)) {
1527                 g_free (base_dir);
1528                 return TRUE;
1529         }
1530         g_free (base_dir);
1531
1532         all_dirs = mono_string_to_utf8_checked (setup->shadow_copy_directories, &error);
1533         if (!mono_error_ok (&error)) {
1534                 mono_error_cleanup (&error);
1535                 return FALSE;
1536         }
1537
1538         directories = g_strsplit (all_dirs, G_SEARCHPATH_SEPARATOR_S, 1000);
1539         dir_ptr = directories;
1540         while (*dir_ptr) {
1541                 if (**dir_ptr != '\0' && !strcmp (*dir_ptr, dir_name)) {
1542                         found = TRUE;
1543                         break;
1544                 }
1545                 dir_ptr++;
1546         }
1547         g_strfreev (directories);
1548         g_free (all_dirs);
1549         return found;
1550 }
1551
1552 /*
1553 This function raises exceptions so it can cause as sorts of nasty stuff if called
1554 while holding a lock.
1555 FIXME bubble up the error instead of raising it here
1556 */
1557 char *
1558 mono_make_shadow_copy (const char *filename)
1559 {
1560         MonoError error;
1561         gchar *sibling_source, *sibling_target;
1562         gint sibling_source_len, sibling_target_len;
1563         guint16 *orig, *dest;
1564         char *shadow;
1565         gboolean copy_result;
1566         MonoException *exc;
1567         struct stat src_sbuf;
1568         struct utimbuf utbuf;
1569         char *dir_name = g_path_get_dirname (filename);
1570         MonoDomain *domain = mono_domain_get ();
1571         char *shadow_dir;
1572
1573         set_domain_search_path (domain);
1574
1575         if (!mono_is_shadow_copy_enabled (domain, dir_name)) {
1576                 g_free (dir_name);
1577                 return (char *) filename;
1578         }
1579
1580         /* Is dir_name a shadow_copy destination already? */
1581         shadow_dir = get_shadow_assembly_location_base (domain, &error);
1582         if (!mono_error_ok (&error)) {
1583                 mono_error_cleanup (&error);
1584                 g_free (dir_name);
1585                 exc = mono_get_exception_execution_engine ("Failed to create shadow copy (invalid characters in shadow directory name).");
1586                 mono_raise_exception (exc);
1587         }
1588
1589         if (strstr (dir_name, shadow_dir)) {
1590                 g_free (shadow_dir);
1591                 g_free (dir_name);
1592                 return (char *) filename;
1593         }
1594         g_free (shadow_dir);
1595         g_free (dir_name);
1596
1597         shadow = get_shadow_assembly_location (filename, &error);
1598         if (!mono_error_ok (&error)) {
1599                 mono_error_cleanup (&error);
1600                 exc = mono_get_exception_execution_engine ("Failed to create shadow copy (invalid characters in file name).");
1601                 mono_raise_exception (exc);
1602         }
1603
1604         if (ensure_directory_exists (shadow) == FALSE) {
1605                 g_free (shadow);
1606                 exc = mono_get_exception_execution_engine ("Failed to create shadow copy (ensure directory exists).");
1607                 mono_raise_exception (exc);
1608         }       
1609
1610         if (!private_file_needs_copying (filename, &src_sbuf, shadow))
1611                 return (char*) shadow;
1612
1613         orig = g_utf8_to_utf16 (filename, strlen (filename), NULL, NULL, NULL);
1614         dest = g_utf8_to_utf16 (shadow, strlen (shadow), NULL, NULL, NULL);
1615         DeleteFile (dest);
1616         copy_result = CopyFile (orig, dest, FALSE);
1617
1618         /* Fix for bug #556884 - make sure the files have the correct mode so that they can be
1619          * overwritten when updated in their original locations. */
1620         if (copy_result)
1621                 copy_result = SetFileAttributes (dest, FILE_ATTRIBUTE_NORMAL);
1622
1623         g_free (dest);
1624         g_free (orig);
1625
1626         if (copy_result == FALSE) {
1627                 g_free (shadow);
1628                 exc = mono_get_exception_execution_engine ("Failed to create shadow copy (CopyFile).");
1629                 mono_raise_exception (exc);
1630         }
1631
1632         /* attempt to copy .mdb, .config if they exist */
1633         sibling_source = g_strconcat (filename, ".config", NULL);
1634         sibling_source_len = strlen (sibling_source);
1635         sibling_target = g_strconcat (shadow, ".config", NULL);
1636         sibling_target_len = strlen (sibling_target);
1637         
1638         copy_result = shadow_copy_sibling (sibling_source, sibling_source_len, ".mdb", sibling_target, sibling_target_len, 7);
1639         if (copy_result == TRUE)
1640                 copy_result = shadow_copy_sibling (sibling_source, sibling_source_len, ".config", sibling_target, sibling_target_len, 7);
1641         
1642         g_free (sibling_source);
1643         g_free (sibling_target);
1644         
1645         if (copy_result == FALSE)  {
1646                 g_free (shadow);
1647                 exc = mono_get_exception_execution_engine ("Failed to create shadow copy of sibling data (CopyFile).");
1648                 mono_raise_exception (exc);
1649         }
1650
1651         /* Create a .ini file containing the original assembly location */
1652         if (!shadow_copy_create_ini (shadow, filename)) {
1653                 g_free (shadow);
1654                 exc = mono_get_exception_execution_engine ("Failed to create shadow copy .ini file.");
1655                 mono_raise_exception (exc);
1656         }
1657
1658         utbuf.actime = src_sbuf.st_atime;
1659         utbuf.modtime = src_sbuf.st_mtime;
1660         utime (shadow, &utbuf);
1661         
1662         return shadow;
1663 }
1664 #endif /* DISABLE_SHADOW_COPY */
1665
1666 MonoDomain *
1667 mono_domain_from_appdomain (MonoAppDomain *appdomain)
1668 {
1669         if (appdomain == NULL)
1670                 return NULL;
1671         
1672         return appdomain->data;
1673 }
1674
1675 static gboolean
1676 try_load_from (MonoAssembly **assembly, const gchar *path1, const gchar *path2,
1677                                         const gchar *path3, const gchar *path4,
1678                                         gboolean refonly, gboolean is_private)
1679 {
1680         gchar *fullpath;
1681         gboolean found = FALSE;
1682         
1683         *assembly = NULL;
1684         fullpath = g_build_filename (path1, path2, path3, path4, NULL);
1685
1686         if (IS_PORTABILITY_SET) {
1687                 gchar *new_fullpath = mono_portability_find_file (fullpath, TRUE);
1688                 if (new_fullpath) {
1689                         g_free (fullpath);
1690                         fullpath = new_fullpath;
1691                         found = TRUE;
1692                 }
1693         } else
1694                 found = g_file_test (fullpath, G_FILE_TEST_IS_REGULAR);
1695         
1696         if (found)
1697                 *assembly = mono_assembly_open_full (fullpath, NULL, refonly);
1698
1699         g_free (fullpath);
1700         return (*assembly != NULL);
1701 }
1702
1703 static MonoAssembly *
1704 real_load (gchar **search_path, const gchar *culture, const gchar *name, gboolean refonly)
1705 {
1706         MonoAssembly *result = NULL;
1707         gchar **path;
1708         gchar *filename;
1709         const gchar *local_culture;
1710         gint len;
1711         gboolean is_private = FALSE;
1712
1713         if (!culture || *culture == '\0') {
1714                 local_culture = "";
1715         } else {
1716                 local_culture = culture;
1717         }
1718
1719         filename =  g_strconcat (name, ".dll", NULL);
1720         len = strlen (filename);
1721
1722         for (path = search_path; *path; path++) {
1723                 if (**path == '\0') {
1724                         is_private = TRUE;
1725                         continue; /* Ignore empty ApplicationBase */
1726                 }
1727
1728                 /* See test cases in bug #58992 and bug #57710 */
1729                 /* 1st try: [culture]/[name].dll (culture may be empty) */
1730                 strcpy (filename + len - 4, ".dll");
1731                 if (try_load_from (&result, *path, local_culture, "", filename, refonly, is_private))
1732                         break;
1733
1734                 /* 2nd try: [culture]/[name].exe (culture may be empty) */
1735                 strcpy (filename + len - 4, ".exe");
1736                 if (try_load_from (&result, *path, local_culture, "", filename, refonly, is_private))
1737                         break;
1738
1739                 /* 3rd try: [culture]/[name]/[name].dll (culture may be empty) */
1740                 strcpy (filename + len - 4, ".dll");
1741                 if (try_load_from (&result, *path, local_culture, name, filename, refonly, is_private))
1742                         break;
1743
1744                 /* 4th try: [culture]/[name]/[name].exe (culture may be empty) */
1745                 strcpy (filename + len - 4, ".exe");
1746                 if (try_load_from (&result, *path, local_culture, name, filename, refonly, is_private))
1747                         break;
1748         }
1749
1750         g_free (filename);
1751         return result;
1752 }
1753
1754 /*
1755  * Try loading the assembly from ApplicationBase and PrivateBinPath 
1756  * and then from assemblies_path if any.
1757  * LOCKING: This is called from the assembly loading code, which means the caller
1758  * might hold the loader lock. Thus, this function must not acquire the domain lock.
1759  */
1760 static MonoAssembly *
1761 mono_domain_assembly_preload (MonoAssemblyName *aname,
1762                               gchar **assemblies_path,
1763                               gpointer user_data)
1764 {
1765         MonoDomain *domain = mono_domain_get ();
1766         MonoAssembly *result = NULL;
1767         gboolean refonly = GPOINTER_TO_UINT (user_data);
1768
1769         set_domain_search_path (domain);
1770
1771         if (domain->search_path && domain->search_path [0] != NULL) {
1772                 result = real_load (domain->search_path, aname->culture, aname->name, refonly);
1773         }
1774
1775         if (result == NULL && assemblies_path && assemblies_path [0] != NULL) {
1776                 result = real_load (assemblies_path, aname->culture, aname->name, refonly);
1777         }
1778
1779         return result;
1780 }
1781
1782 /*
1783  * Check whenever a given assembly was already loaded in the current appdomain.
1784  */
1785 static MonoAssembly *
1786 mono_domain_assembly_search (MonoAssemblyName *aname,
1787                                                          gpointer user_data)
1788 {
1789         MonoDomain *domain = mono_domain_get ();
1790         GSList *tmp;
1791         MonoAssembly *ass;
1792         gboolean refonly = GPOINTER_TO_UINT (user_data);
1793
1794         mono_domain_assemblies_lock (domain);
1795         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
1796                 ass = tmp->data;
1797                 /* Dynamic assemblies can't match here in MS.NET */
1798                 if (ass->dynamic || refonly != ass->ref_only || !mono_assembly_names_equal (aname, &ass->aname))
1799                         continue;
1800
1801                 mono_domain_assemblies_unlock (domain);
1802                 return ass;
1803         }
1804         mono_domain_assemblies_unlock (domain);
1805
1806         return NULL;
1807 }
1808
1809 MonoReflectionAssembly *
1810 ves_icall_System_Reflection_Assembly_LoadFrom (MonoString *fname, MonoBoolean refOnly)
1811 {
1812         MonoDomain *domain = mono_domain_get ();
1813         char *name, *filename;
1814         MonoImageOpenStatus status = MONO_IMAGE_OK;
1815         MonoAssembly *ass;
1816
1817         MONO_ARCH_SAVE_REGS;
1818
1819         if (fname == NULL) {
1820                 MonoException *exc = mono_get_exception_argument_null ("assemblyFile");
1821                 mono_raise_exception (exc);
1822         }
1823                 
1824         name = filename = mono_string_to_utf8 (fname);
1825         
1826         ass = mono_assembly_open_full (filename, &status, refOnly);
1827         
1828         if (!ass){
1829                 MonoException *exc;
1830
1831                 if (status == MONO_IMAGE_IMAGE_INVALID)
1832                         exc = mono_get_exception_bad_image_format2 (NULL, fname);
1833                 else
1834                         exc = mono_get_exception_file_not_found2 (NULL, fname);
1835                 g_free (name);
1836                 mono_raise_exception (exc);
1837         }
1838
1839         g_free (name);
1840
1841         return mono_assembly_get_object (domain, ass);
1842 }
1843
1844 MonoReflectionAssembly *
1845 ves_icall_System_AppDomain_LoadAssemblyRaw (MonoAppDomain *ad, 
1846                                             MonoArray *raw_assembly,
1847                                             MonoArray *raw_symbol_store, MonoObject *evidence,
1848                                             MonoBoolean refonly)
1849 {
1850         MonoAssembly *ass;
1851         MonoReflectionAssembly *refass = NULL;
1852         MonoDomain *domain = ad->data;
1853         MonoImageOpenStatus status;
1854         guint32 raw_assembly_len = mono_array_length (raw_assembly);
1855         MonoImage *image = mono_image_open_from_data_full (mono_array_addr (raw_assembly, gchar, 0), raw_assembly_len, TRUE, NULL, refonly);
1856
1857         if (!image) {
1858                 mono_raise_exception (mono_get_exception_bad_image_format (""));
1859                 return NULL;
1860         }
1861
1862         if (raw_symbol_store != NULL)
1863                 mono_debug_open_image_from_memory (image, mono_array_addr (raw_symbol_store, guint8, 0), mono_array_length (raw_symbol_store));
1864
1865         ass = mono_assembly_load_from_full (image, "", &status, refonly);
1866
1867
1868         if (!ass) {
1869                 mono_image_close (image);
1870                 mono_raise_exception (mono_get_exception_bad_image_format (""));
1871                 return NULL; 
1872         }
1873
1874         refass = mono_assembly_get_object (domain, ass);
1875         MONO_OBJECT_SETREF (refass, evidence, evidence);
1876         return refass;
1877 }
1878
1879 MonoReflectionAssembly *
1880 ves_icall_System_AppDomain_LoadAssembly (MonoAppDomain *ad,  MonoString *assRef, MonoObject *evidence, MonoBoolean refOnly)
1881 {
1882         MonoDomain *domain = ad->data; 
1883         MonoImageOpenStatus status = MONO_IMAGE_OK;
1884         MonoAssembly *ass;
1885         MonoAssemblyName aname;
1886         MonoReflectionAssembly *refass = NULL;
1887         gchar *name;
1888         gboolean parsed;
1889
1890         MONO_ARCH_SAVE_REGS;
1891
1892         g_assert (assRef != NULL);
1893
1894         name = mono_string_to_utf8 (assRef);
1895         parsed = mono_assembly_name_parse (name, &aname);
1896         g_free (name);
1897
1898         if (!parsed) {
1899                 /* This is a parse error... */
1900                 return NULL;
1901         }
1902
1903         ass = mono_assembly_load_full_nosearch (&aname, NULL, &status, refOnly);
1904         mono_assembly_name_free (&aname);
1905
1906         if (!ass) {
1907                 /* MS.NET doesn't seem to call the assembly resolve handler for refonly assemblies */
1908                 if (!refOnly)
1909                         refass = mono_try_assembly_resolve (domain, assRef, refOnly);
1910                 else
1911                         refass = NULL;
1912                 if (!refass) {
1913                         return NULL;
1914                 }
1915         }
1916
1917         if (refass == NULL)
1918                 refass = mono_assembly_get_object (domain, ass);
1919
1920         MONO_OBJECT_SETREF (refass, evidence, evidence);
1921         return refass;
1922 }
1923
1924 void
1925 ves_icall_System_AppDomain_InternalUnload (gint32 domain_id)
1926 {
1927         MonoDomain * domain = mono_domain_get_by_id (domain_id);
1928
1929         MONO_ARCH_SAVE_REGS;
1930
1931         if (NULL == domain) {
1932                 MonoException *exc = mono_get_exception_execution_engine ("Failed to unload domain, domain id not found");
1933                 mono_raise_exception (exc);
1934         }
1935         
1936         if (domain == mono_get_root_domain ()) {
1937                 mono_raise_exception (mono_get_exception_cannot_unload_appdomain ("The default appdomain can not be unloaded."));
1938                 return;
1939         }
1940
1941         /* 
1942          * Unloading seems to cause problems when running NUnit/NAnt, hence
1943          * this workaround.
1944          */
1945         if (g_getenv ("MONO_NO_UNLOAD"))
1946                 return;
1947
1948         mono_domain_unload (domain);
1949 }
1950
1951 gboolean
1952 ves_icall_System_AppDomain_InternalIsFinalizingForUnload (gint32 domain_id)
1953 {
1954         MonoDomain *domain = mono_domain_get_by_id (domain_id);
1955
1956         if (!domain)
1957                 return TRUE;
1958
1959         return mono_domain_is_unloading (domain);
1960 }
1961
1962 gint32
1963 ves_icall_System_AppDomain_ExecuteAssembly (MonoAppDomain *ad, 
1964                                                                                         MonoReflectionAssembly *refass, MonoArray *args)
1965 {
1966         MonoImage *image;
1967         MonoMethod *method;
1968
1969         MONO_ARCH_SAVE_REGS;
1970
1971         g_assert (refass);
1972         image = refass->assembly->image;
1973         g_assert (image);
1974
1975         method = mono_get_method (image, mono_image_get_entry_point (image), NULL);
1976
1977         if (!method)
1978                 g_error ("No entry point method found in %s", image->name);
1979
1980         if (!args)
1981                 args = (MonoArray *) mono_array_new (ad->data, mono_defaults.string_class, 0);
1982
1983         return mono_runtime_exec_main (method, (MonoArray *)args, NULL);
1984 }
1985
1986 gint32 
1987 ves_icall_System_AppDomain_GetIDFromDomain (MonoAppDomain * ad) 
1988 {
1989         MONO_ARCH_SAVE_REGS;
1990
1991         return ad->data->domain_id;
1992 }
1993
1994 MonoAppDomain * 
1995 ves_icall_System_AppDomain_InternalSetDomain (MonoAppDomain *ad)
1996 {
1997         MonoDomain *old_domain = mono_domain_get();
1998
1999         MONO_ARCH_SAVE_REGS;
2000
2001         if (!mono_domain_set (ad->data, FALSE))
2002                 mono_raise_exception (mono_get_exception_appdomain_unloaded ());
2003
2004         return old_domain->domain;
2005 }
2006
2007 MonoAppDomain * 
2008 ves_icall_System_AppDomain_InternalSetDomainByID (gint32 domainid)
2009 {
2010         MonoDomain *current_domain = mono_domain_get ();
2011         MonoDomain *domain = mono_domain_get_by_id (domainid);
2012
2013         MONO_ARCH_SAVE_REGS;
2014
2015         if (!domain || !mono_domain_set (domain, FALSE))        
2016                 mono_raise_exception (mono_get_exception_appdomain_unloaded ());
2017
2018         return current_domain->domain;
2019 }
2020
2021 void
2022 ves_icall_System_AppDomain_InternalPushDomainRef (MonoAppDomain *ad)
2023 {
2024         MONO_ARCH_SAVE_REGS;
2025
2026         mono_thread_push_appdomain_ref (ad->data);
2027 }
2028
2029 void
2030 ves_icall_System_AppDomain_InternalPushDomainRefByID (gint32 domain_id)
2031 {
2032         MonoDomain *domain = mono_domain_get_by_id (domain_id);
2033
2034         MONO_ARCH_SAVE_REGS;
2035
2036         if (!domain)
2037                 /* 
2038                  * Raise an exception to prevent the managed code from executing a pop
2039                  * later.
2040                  */
2041                 mono_raise_exception (mono_get_exception_appdomain_unloaded ());
2042
2043         mono_thread_push_appdomain_ref (domain);
2044 }
2045
2046 void
2047 ves_icall_System_AppDomain_InternalPopDomainRef (void)
2048 {
2049         MONO_ARCH_SAVE_REGS;
2050
2051         mono_thread_pop_appdomain_ref ();
2052 }
2053
2054 MonoAppContext * 
2055 ves_icall_System_AppDomain_InternalGetContext ()
2056 {
2057         MONO_ARCH_SAVE_REGS;
2058
2059         return mono_context_get ();
2060 }
2061
2062 MonoAppContext * 
2063 ves_icall_System_AppDomain_InternalGetDefaultContext ()
2064 {
2065         MONO_ARCH_SAVE_REGS;
2066
2067         return mono_domain_get ()->default_context;
2068 }
2069
2070 MonoAppContext * 
2071 ves_icall_System_AppDomain_InternalSetContext (MonoAppContext *mc)
2072 {
2073         MonoAppContext *old_context = mono_context_get ();
2074
2075         MONO_ARCH_SAVE_REGS;
2076
2077         mono_context_set (mc);
2078
2079         return old_context;
2080 }
2081
2082 MonoString *
2083 ves_icall_System_AppDomain_InternalGetProcessGuid (MonoString* newguid)
2084 {
2085         MonoDomain* mono_root_domain = mono_get_root_domain ();
2086         mono_domain_lock (mono_root_domain);
2087         if (process_guid_set) {
2088                 mono_domain_unlock (mono_root_domain);
2089                 return mono_string_new_utf16 (mono_domain_get (), process_guid, sizeof(process_guid)/2);
2090         }
2091         memcpy (process_guid, mono_string_chars(newguid), sizeof(process_guid));
2092         process_guid_set = TRUE;
2093         mono_domain_unlock (mono_root_domain);
2094         return newguid;
2095 }
2096
2097 gboolean
2098 mono_domain_is_unloading (MonoDomain *domain)
2099 {
2100         if (domain->state == MONO_APPDOMAIN_UNLOADING || domain->state == MONO_APPDOMAIN_UNLOADED)
2101                 return TRUE;
2102         else
2103                 return FALSE;
2104 }
2105
2106 static void
2107 clear_cached_vtable (gpointer key, gpointer value, gpointer user_data)
2108 {
2109         MonoClass *klass = (MonoClass*)key;
2110         MonoVTable *vtable = value;
2111         MonoDomain *domain = (MonoDomain*)user_data;
2112         MonoClassRuntimeInfo *runtime_info;
2113
2114         runtime_info = klass->runtime_info;
2115         if (runtime_info && runtime_info->max_domain >= domain->domain_id)
2116                 runtime_info->domain_vtables [domain->domain_id] = NULL;
2117         if (vtable->data && klass->has_static_refs)
2118                 mono_gc_free_fixed (vtable->data);
2119 }
2120
2121 static void
2122 zero_static_data (gpointer key, gpointer value, gpointer user_data)
2123 {
2124         MonoClass *klass = (MonoClass*)key;
2125         MonoVTable *vtable = value;
2126
2127         if (vtable->data && klass->has_static_refs)
2128                 memset (vtable->data, 0, mono_class_data_size (klass));
2129 }
2130
2131 typedef struct unload_data {
2132         MonoDomain *domain;
2133         char *failure_reason;
2134 } unload_data;
2135
2136 #ifdef HAVE_SGEN_GC
2137 static void
2138 deregister_reflection_info_roots_nspace_table (gpointer key, gpointer value, gpointer image)
2139 {
2140         guint32 index = GPOINTER_TO_UINT (value);
2141         MonoClass *class = mono_class_get (image, MONO_TOKEN_TYPE_DEF | index);
2142
2143         g_assert (class);
2144
2145         if (class->reflection_info)
2146                 mono_gc_deregister_root ((char*) &class->reflection_info);
2147 }
2148
2149 static void
2150 deregister_reflection_info_roots_name_space (gpointer key, gpointer value, gpointer user_data)
2151 {
2152         g_hash_table_foreach (value, deregister_reflection_info_roots_nspace_table, user_data);
2153 }
2154
2155 static void
2156 deregister_reflection_info_roots_from_list (MonoImage *image)
2157 {
2158         GSList *list = image->reflection_info_unregister_classes;
2159
2160         while (list) {
2161                 MonoClass *class = list->data;
2162
2163                 g_assert (class->reflection_info);
2164                 mono_gc_deregister_root ((char*) &class->reflection_info);
2165
2166                 list = list->next;
2167         }
2168
2169         g_slist_free (image->reflection_info_unregister_classes);
2170         image->reflection_info_unregister_classes = NULL;
2171 }
2172
2173 static void
2174 deregister_reflection_info_roots (MonoDomain *domain)
2175 {
2176         GSList *list;
2177
2178         mono_loader_lock ();
2179         mono_domain_assemblies_lock (domain);
2180         for (list = domain->domain_assemblies; list; list = list->next) {
2181                 MonoAssembly *assembly = list->data;
2182                 MonoImage *image = assembly->image;
2183                 int i;
2184                 /*No need to take the image lock here since dynamic images are appdomain bound and at this point the mutator is gone.*/
2185                 if (image->dynamic && image->name_cache)
2186                         g_hash_table_foreach (image->name_cache, deregister_reflection_info_roots_name_space, image);
2187                 deregister_reflection_info_roots_from_list (image);
2188                 for (i = 0; i < image->module_count; ++i) {
2189                         MonoImage *module = image->modules [i];
2190                         if (module) {
2191                                 if (module->dynamic && module->name_cache) {
2192                                         g_hash_table_foreach (module->name_cache,
2193                                                         deregister_reflection_info_roots_name_space, module);
2194                                 }
2195                                 deregister_reflection_info_roots_from_list (module);
2196                         }
2197                 }
2198         }
2199         mono_domain_assemblies_unlock (domain);
2200         mono_loader_unlock ();
2201 }
2202 #endif
2203
2204 static guint32 WINAPI
2205 unload_thread_main (void *arg)
2206 {
2207         unload_data *data = (unload_data*)arg;
2208         MonoDomain *domain = data->domain;
2209         MonoThread *thread;
2210
2211         /* Have to attach to the runtime so shutdown can wait for this thread */
2212         thread = mono_thread_attach (mono_get_root_domain ());
2213
2214         /* 
2215          * FIXME: Abort our parent thread last, so we can return a failure 
2216          * indication if aborting times out.
2217          */
2218         if (!mono_threads_abort_appdomain_threads (domain, -1)) {
2219                 data->failure_reason = g_strdup_printf ("Aborting of threads in domain %s timed out.", domain->friendly_name);
2220                 return 1;
2221         }
2222
2223         if (!mono_thread_pool_remove_domain_jobs (domain, -1)) {
2224                 data->failure_reason = g_strdup_printf ("Cleanup of threadpool jobs of domain %s timed out.", domain->friendly_name);
2225                 return 1;
2226         }
2227
2228         /* Finalize all finalizable objects in the doomed appdomain */
2229         if (!mono_domain_finalize (domain, -1)) {
2230                 data->failure_reason = g_strdup_printf ("Finalization of domain %s timed out.", domain->friendly_name);
2231                 return 1;
2232         }
2233
2234         /* Clear references to our vtables in class->runtime_info.
2235          * We also hold the loader lock because we're going to change
2236          * class->runtime_info.
2237          */
2238
2239         mono_loader_lock ();
2240         mono_domain_lock (domain);
2241 #ifdef HAVE_SGEN_GC
2242         /*
2243          * We need to make sure that we don't have any remsets
2244          * pointing into static data of the to-be-freed domain because
2245          * at the next collections they would be invalid.  So what we
2246          * do is we first zero all static data and then do a minor
2247          * collection.  Because all references in the static data will
2248          * now be null we won't do any unnecessary copies and after
2249          * the collection there won't be any more remsets.
2250          */
2251         g_hash_table_foreach (domain->class_vtable_hash, zero_static_data, domain);
2252         mono_gc_collect (0);
2253 #endif
2254         g_hash_table_foreach (domain->class_vtable_hash, clear_cached_vtable, domain);
2255 #ifdef HAVE_SGEN_GC
2256         deregister_reflection_info_roots (domain);
2257 #endif
2258         mono_domain_unlock (domain);
2259         mono_loader_unlock ();
2260
2261         mono_threads_clear_cached_culture (domain);
2262
2263         domain->state = MONO_APPDOMAIN_UNLOADED;
2264
2265         /* printf ("UNLOADED %s.\n", domain->friendly_name); */
2266
2267         /* remove from the handle table the items related to this domain */
2268         mono_gchandle_free_domain (domain);
2269
2270         mono_domain_free (domain, FALSE);
2271
2272         mono_gc_collect (mono_gc_max_generation ());
2273
2274         mono_thread_detach  (thread);
2275
2276         return 0;
2277 }
2278
2279 /*
2280  * mono_domain_unload:
2281  * @domain: The domain to unload
2282  *
2283  *  Unloads an appdomain. Follows the process outlined in the comment
2284  *  for mono_domain_try_unload.
2285  */
2286 void
2287 mono_domain_unload (MonoDomain *domain)
2288 {
2289         MonoObject *exc = NULL;
2290         mono_domain_try_unload (domain, &exc);
2291         if (exc)
2292                 mono_raise_exception ((MonoException*)exc);
2293 }
2294
2295 /*
2296  * mono_domain_unload:
2297  * @domain: The domain to unload
2298  * @exc: Exception information
2299  *
2300  *  Unloads an appdomain. Follows the process outlined in:
2301  *  http://blogs.gotdotnet.com/cbrumme
2302  *
2303  *  If doing things the 'right' way is too hard or complex, we do it the 
2304  *  'simple' way, which means do everything needed to avoid crashes and
2305  *  memory leaks, but not much else.
2306  *
2307  *  It is required to pass a valid reference to the exc argument, upon return
2308  *  from this function *exc will be set to the exception thrown, if any.
2309  *
2310  *  If this method is not called from an icall (embedded scenario for instance),
2311  *  it must not be called with any managed frames on the stack, since the unload
2312  *  process could end up trying to abort the current thread.
2313  */
2314 void
2315 mono_domain_try_unload (MonoDomain *domain, MonoObject **exc)
2316 {
2317         HANDLE thread_handle;
2318         gsize tid;
2319         guint32 res;
2320         MonoAppDomainState prev_state;
2321         MonoMethod *method;
2322         unload_data thread_data;
2323         MonoDomain *caller_domain = mono_domain_get ();
2324
2325         /* printf ("UNLOAD STARTING FOR %s (%p) IN THREAD 0x%x.\n", domain->friendly_name, domain, GetCurrentThreadId ()); */
2326
2327         /* Atomically change our state to UNLOADING */
2328         prev_state = InterlockedCompareExchange ((gint32*)&domain->state,
2329                                                                                          MONO_APPDOMAIN_UNLOADING_START,
2330                                                                                          MONO_APPDOMAIN_CREATED);
2331         if (prev_state != MONO_APPDOMAIN_CREATED) {
2332                 switch (prev_state) {
2333                 case MONO_APPDOMAIN_UNLOADING_START:
2334                 case MONO_APPDOMAIN_UNLOADING:
2335                         *exc = (MonoObject *) mono_get_exception_cannot_unload_appdomain ("Appdomain is already being unloaded.");
2336                         return;
2337                 case MONO_APPDOMAIN_UNLOADED:
2338                         *exc = (MonoObject *) mono_get_exception_cannot_unload_appdomain ("Appdomain is already unloaded.");
2339                         return;
2340                 default:
2341                         g_warning ("Incalid appdomain state %d", prev_state);
2342                         g_assert_not_reached ();
2343                 }
2344         }
2345
2346         mono_debugger_event_unload_appdomain (domain);
2347
2348         mono_domain_set (domain, FALSE);
2349         /* Notify OnDomainUnload listeners */
2350         method = mono_class_get_method_from_name (domain->domain->mbr.obj.vtable->klass, "DoDomainUnload", -1); 
2351         g_assert (method);
2352
2353         mono_runtime_invoke (method, domain->domain, NULL, exc);
2354         if (*exc) {
2355                 /* Roll back the state change */
2356                 domain->state = MONO_APPDOMAIN_CREATED;
2357                 mono_domain_set (caller_domain, FALSE);
2358                 return;
2359         }
2360         mono_domain_set (caller_domain, FALSE);
2361
2362         thread_data.domain = domain;
2363         thread_data.failure_reason = NULL;
2364
2365         /*The managed callback finished successfully, now we start tearing down the appdomain*/
2366         domain->state = MONO_APPDOMAIN_UNLOADING;
2367         /* 
2368          * First we create a separate thread for unloading, since
2369          * we might have to abort some threads, including the current one.
2370          */
2371         /*
2372          * If we create a non-suspended thread, the runtime will hang.
2373          * See:
2374          * http://bugzilla.ximian.com/show_bug.cgi?id=27663
2375          */ 
2376 #if 0
2377         thread_handle = mono_create_thread (NULL, 0, unload_thread_main, &thread_data, 0, &tid);
2378 #else
2379         thread_handle = mono_create_thread (NULL, 0, (LPTHREAD_START_ROUTINE)unload_thread_main, &thread_data, CREATE_SUSPENDED, &tid);
2380         if (thread_handle == NULL) {
2381                 return;
2382         }
2383         ResumeThread (thread_handle);
2384 #endif
2385
2386         /* Wait for the thread */       
2387         while ((res = WaitForSingleObjectEx (thread_handle, INFINITE, TRUE) == WAIT_IO_COMPLETION)) {
2388                 if (mono_thread_internal_has_appdomain_ref (mono_thread_internal_current (), domain) && (mono_thread_interruption_requested ())) {
2389                         /* The unload thread tries to abort us */
2390                         /* The icall wrapper will execute the abort */
2391                         CloseHandle (thread_handle);
2392                         return;
2393                 }
2394         }
2395         CloseHandle (thread_handle);
2396
2397         if (thread_data.failure_reason) {
2398                 /* Roll back the state change */
2399                 domain->state = MONO_APPDOMAIN_CREATED;
2400
2401                 g_warning ("%s", thread_data.failure_reason);
2402
2403                 *exc = (MonoObject *) mono_get_exception_cannot_unload_appdomain (thread_data.failure_reason);
2404
2405                 g_free (thread_data.failure_reason);
2406                 thread_data.failure_reason = NULL;
2407         }
2408 }