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