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