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