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