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