Merge pull request #2174 from stukselbax/master
[mono.git] / mono / metadata / assembly.c
1 /*
2  * assembly.c: Routines for loading assemblies.
3  * 
4  * Author:
5  *   Miguel de Icaza (miguel@ximian.com)
6  *
7  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
8  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
9  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
10  */
11 #include <config.h>
12 #include <stdio.h>
13 #include <glib.h>
14 #include <errno.h>
15 #include <string.h>
16 #include <stdlib.h>
17 #include "assembly.h"
18 #include "image.h"
19 #include "object-internals.h"
20 #include <mono/metadata/loader.h>
21 #include <mono/metadata/tabledefs.h>
22 #include <mono/metadata/metadata-internals.h>
23 #include <mono/metadata/profiler-private.h>
24 #include <mono/metadata/class-internals.h>
25 #include <mono/metadata/domain-internals.h>
26 #include <mono/metadata/mono-endian.h>
27 #include <mono/metadata/mono-debug.h>
28 #include <mono/io-layer/io-layer.h>
29 #include <mono/utils/mono-uri.h>
30 #include <mono/metadata/mono-config.h>
31 #include <mono/metadata/mono-config-dirs.h>
32 #include <mono/utils/mono-digest.h>
33 #include <mono/utils/mono-logger-internals.h>
34 #include <mono/utils/mono-path.h>
35 #include <mono/metadata/reflection.h>
36 #include <mono/metadata/coree.h>
37 #include <mono/metadata/cil-coff.h>
38 #include <mono/utils/mono-io-portability.h>
39 #include <mono/utils/atomic.h>
40 #include <mono/utils/mono-os-mutex.h>
41
42 #ifndef HOST_WIN32
43 #include <sys/types.h>
44 #include <unistd.h>
45 #include <sys/stat.h>
46 #endif
47
48 #ifdef PLATFORM_MACOSX
49 #include <mach-o/dyld.h>
50 #endif
51
52 /* AssemblyVersionMap: an assembly name and the assembly version set on which it is based */
53 typedef struct  {
54         const char* assembly_name;
55         guint8 version_set_index;
56 } AssemblyVersionMap;
57
58 /* the default search path is empty, the first slot is replaced with the computed value */
59 static const char*
60 default_path [] = {
61         NULL,
62         NULL,
63         NULL
64 };
65
66 /* Contains the list of directories to be searched for assemblies (MONO_PATH) */
67 static char **assemblies_path = NULL;
68
69 /* Contains the list of directories that point to auxiliary GACs */
70 static char **extra_gac_paths = NULL;
71
72 #ifndef DISABLE_ASSEMBLY_REMAPPING
73 /* The list of system assemblies what will be remapped to the running
74  * runtime version. WARNING: this list must be sorted.
75  * The integer number is an index in the MonoRuntimeInfo structure, whose
76  * values can be found in domain.c - supported_runtimes. Look there
77  * to understand what remapping will be made.
78  *
79  * .NET version can be found at https://github.com/dotnet/coreclr/blob/master/src/inc/fxretarget.h#L99
80  *
81  */
82 static const AssemblyVersionMap framework_assemblies [] = {
83         {"Accessibility", 0},
84         {"Commons.Xml.Relaxng", 0},
85         {"I18N", 0},
86         {"I18N.CJK", 0},
87         {"I18N.MidEast", 0},
88         {"I18N.Other", 0},
89         {"I18N.Rare", 0},
90         {"I18N.West", 0},
91         {"Microsoft.Build.Engine", 2},
92         {"Microsoft.Build.Framework", 2},
93         {"Microsoft.VisualBasic", 1},
94         {"Microsoft.VisualC", 1},
95         {"Mono.Cairo", 0},
96         {"Mono.CompilerServices.SymbolWriter", 0},
97         {"Mono.Data", 0},
98         {"Mono.Data.SybaseClient", 0},
99         {"Mono.Data.Tds", 0},
100         {"Mono.Data.TdsClient", 0},
101         {"Mono.GetOptions", 0},
102         {"Mono.Http", 0},
103         {"Mono.Posix", 0},
104         {"Mono.Security", 0},
105         {"Mono.Security.Win32", 0},
106         {"Mono.Xml.Ext", 0},
107         {"Novell.Directory.Ldap", 0},
108         {"Npgsql", 0},
109         {"PEAPI", 0},
110         {"System", 0},
111         {"System.ComponentModel.Composition", 2},
112         {"System.ComponentModel.DataAnnotations", 2},
113         {"System.Configuration", 0},
114         {"System.Configuration.Install", 0},
115         {"System.Core", 2},
116         {"System.Data", 0},
117         {"System.Data.Linq", 2},
118         {"System.Data.OracleClient", 0},
119         {"System.Data.Services", 2},
120         {"System.Data.Services.Client", 2},
121         {"System.Data.SqlXml", 0},
122         {"System.Design", 0},
123         {"System.DirectoryServices", 0},
124         {"System.Drawing", 0},
125         {"System.Drawing.Design", 0},
126         {"System.EnterpriseServices", 0},
127         {"System.IdentityModel", 3},
128         {"System.IdentityModel.Selectors", 3},
129         {"System.Management", 0},
130         {"System.Messaging", 0},
131         {"System.Net", 2},
132         {"System.Runtime.Remoting", 0},
133         {"System.Runtime.Serialization", 3},
134         {"System.Runtime.Serialization.Formatters.Soap", 0},
135         {"System.Security", 0},
136         {"System.ServiceModel", 3},
137         {"System.ServiceModel.Web", 2},
138         {"System.ServiceProcess", 0},
139         {"System.Transactions", 0},
140         {"System.Web", 0},
141         {"System.Web.Abstractions", 2},
142         {"System.Web.DynamicData", 2},
143         {"System.Web.Extensions", 2},
144         {"System.Web.Mobile", 0},
145         {"System.Web.Routing", 2},
146         {"System.Web.Services", 0},
147         {"System.Windows.Forms", 0},
148         {"System.Xml", 0},
149         {"System.Xml.Linq", 2},
150         {"WindowsBase", 3},
151         {"mscorlib", 0}
152 };
153 #endif
154
155 /*
156  * keeps track of loaded assemblies
157  */
158 static GList *loaded_assemblies = NULL;
159 static MonoAssembly *corlib;
160
161 #if defined(__native_client__)
162
163 /* On Native Client, allow mscorlib to be loaded from memory  */
164 /* instead of loaded off disk.  If these are not set, default */
165 /* mscorlib loading will take place                           */
166
167 /* NOTE: If mscorlib data is passed to mono in this way then */
168 /* it needs to remain allocated during the use of mono.      */
169
170 static void *corlibData = NULL;
171 static size_t corlibSize = 0;
172
173 void
174 mono_set_corlib_data (void *data, size_t size)
175 {
176   corlibData = data;
177   corlibSize = size;
178 }
179
180 #endif
181
182 static char* unquote (const char *str);
183
184 /* This protects loaded_assemblies and image->references */
185 #define mono_assemblies_lock() mono_os_mutex_lock (&assemblies_mutex)
186 #define mono_assemblies_unlock() mono_os_mutex_unlock (&assemblies_mutex)
187 static mono_mutex_t assemblies_mutex;
188
189 /* If defined, points to the bundled assembly information */
190 const MonoBundledAssembly **bundles;
191
192 static mono_mutex_t assembly_binding_mutex;
193
194 /* Loaded assembly binding info */
195 static GSList *loaded_assembly_bindings = NULL;
196
197 static MonoAssembly*
198 mono_assembly_invoke_search_hook_internal (MonoAssemblyName *aname, MonoAssembly *requesting, gboolean refonly, gboolean postload);
199 static MonoAssembly*
200 mono_assembly_load_full_internal (MonoAssemblyName *aname, MonoAssembly *requesting, const char *basedir, MonoImageOpenStatus *status, gboolean refonly);
201 static MonoBoolean
202 mono_assembly_is_in_gac (const gchar *filanem);
203
204 static gchar*
205 encode_public_tok (const guchar *token, gint32 len)
206 {
207         const static gchar allowed [] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
208         gchar *res;
209         int i;
210
211         res = (gchar *)g_malloc (len * 2 + 1);
212         for (i = 0; i < len; i++) {
213                 res [i * 2] = allowed [token [i] >> 4];
214                 res [i * 2 + 1] = allowed [token [i] & 0xF];
215         }
216         res [len * 2] = 0;
217         return res;
218 }
219
220 /**
221  * mono_public_tokens_are_equal:
222  * @pubt1: first public key token
223  * @pubt2: second public key token
224  *
225  * Compare two public key tokens and return #TRUE is they are equal and #FALSE
226  * otherwise.
227  */
228 gboolean
229 mono_public_tokens_are_equal (const unsigned char *pubt1, const unsigned char *pubt2)
230 {
231         return memcmp (pubt1, pubt2, 16) == 0;
232 }
233
234 /**
235  * mono_set_assemblies_path:
236  * @path: list of paths that contain directories where Mono will look for assemblies
237  *
238  * Use this method to override the standard assembly lookup system and
239  * override any assemblies coming from the GAC.  This is the method
240  * that supports the MONO_PATH variable.
241  *
242  * Notice that MONO_PATH and this method are really a very bad idea as
243  * it prevents the GAC from working and it prevents the standard
244  * resolution mechanisms from working.  Nonetheless, for some debugging
245  * situations and bootstrapping setups, this is useful to have. 
246  */
247 void
248 mono_set_assemblies_path (const char* path)
249 {
250         char **splitted, **dest;
251
252         splitted = g_strsplit (path, G_SEARCHPATH_SEPARATOR_S, 1000);
253         if (assemblies_path)
254                 g_strfreev (assemblies_path);
255         assemblies_path = dest = splitted;
256         while (*splitted) {
257                 char *tmp = *splitted;
258                 if (*tmp)
259                         *dest++ = mono_path_canonicalize (tmp);
260                 g_free (tmp);
261                 splitted++;
262         }
263         *dest = *splitted;
264
265         if (g_getenv ("MONO_DEBUG") == NULL)
266                 return;
267
268         splitted = assemblies_path;
269         while (*splitted) {
270                 if (**splitted && !g_file_test (*splitted, G_FILE_TEST_IS_DIR))
271                         g_warning ("'%s' in MONO_PATH doesn't exist or has wrong permissions.", *splitted);
272
273                 splitted++;
274         }
275 }
276
277 /* Native Client can't get this info from an environment variable so */
278 /* it's passed in to the runtime, or set manually by embedding code. */
279 #ifdef __native_client__
280 char* nacl_mono_path = NULL;
281 #endif
282
283 static void
284 check_path_env (void)
285 {
286         const char* path;
287         path = g_getenv ("MONO_PATH");
288 #ifdef __native_client__
289         if (!path)
290                 path = nacl_mono_path;
291 #endif
292         if (!path || assemblies_path != NULL)
293                 return;
294
295         mono_set_assemblies_path(path);
296 }
297
298 static void
299 check_extra_gac_path_env (void) {
300         const char *path;
301         char **splitted, **dest;
302         
303         path = g_getenv ("MONO_GAC_PREFIX");
304         if (!path)
305                 return;
306
307         splitted = g_strsplit (path, G_SEARCHPATH_SEPARATOR_S, 1000);
308         if (extra_gac_paths)
309                 g_strfreev (extra_gac_paths);
310         extra_gac_paths = dest = splitted;
311         while (*splitted){
312                 if (**splitted)
313                         *dest++ = *splitted;
314                 splitted++;
315         }
316         *dest = *splitted;
317         
318         if (g_getenv ("MONO_DEBUG") == NULL)
319                 return;
320
321         while (*splitted) {
322                 if (**splitted && !g_file_test (*splitted, G_FILE_TEST_IS_DIR))
323                         g_warning ("'%s' in MONO_GAC_PREFIX doesn't exist or has wrong permissions.", *splitted);
324
325                 splitted++;
326         }
327 }
328
329 static gboolean
330 assembly_binding_maps_name (MonoAssemblyBindingInfo *info, MonoAssemblyName *aname)
331 {
332         if (!info || !info->name)
333                 return FALSE;
334
335         if (strcmp (info->name, aname->name))
336                 return FALSE;
337
338         if (info->major != aname->major || info->minor != aname->minor)
339                 return FALSE;
340
341         if ((info->culture != NULL && info->culture [0]) != (aname->culture != NULL && aname->culture [0])) 
342                 return FALSE;
343         
344         if (info->culture && aname->culture && strcmp (info->culture, aname->culture))
345                 return FALSE;
346         
347         if (!mono_public_tokens_are_equal (info->public_key_token, aname->public_key_token))
348                 return FALSE;
349
350         return TRUE;
351 }
352
353 static void
354 mono_assembly_binding_info_free (MonoAssemblyBindingInfo *info)
355 {
356         if (!info)
357                 return;
358
359         g_free (info->name);
360         g_free (info->culture);
361 }
362
363 static void
364 get_publisher_policy_info (MonoImage *image, MonoAssemblyName *aname, MonoAssemblyBindingInfo *binding_info)
365 {
366         MonoTableInfo *t;
367         guint32 cols [MONO_MANIFEST_SIZE];
368         const gchar *filename;
369         gchar *subpath, *fullpath;
370
371         t = &image->tables [MONO_TABLE_MANIFESTRESOURCE];
372         /* MS Impl. accepts policy assemblies with more than
373          * one manifest resource, and only takes the first one */
374         if (t->rows < 1) {
375                 binding_info->is_valid = FALSE;
376                 return;
377         }
378         
379         mono_metadata_decode_row (t, 0, cols, MONO_MANIFEST_SIZE);
380         if ((cols [MONO_MANIFEST_IMPLEMENTATION] & MONO_IMPLEMENTATION_MASK) != MONO_IMPLEMENTATION_FILE) {
381                 binding_info->is_valid = FALSE;
382                 return;
383         }
384         
385         filename = mono_metadata_string_heap (image, cols [MONO_MANIFEST_NAME]);
386         g_assert (filename != NULL);
387         
388         subpath = g_path_get_dirname (image->name);
389         fullpath = g_build_path (G_DIR_SEPARATOR_S, subpath, filename, NULL);
390         mono_config_parse_publisher_policy (fullpath, binding_info);
391         g_free (subpath);
392         g_free (fullpath);
393         
394         /* Define the optional elements/attributes before checking */
395         if (!binding_info->culture)
396                 binding_info->culture = g_strdup ("");
397         
398         /* Check that the most important elements/attributes exist */
399         if (!binding_info->name || !binding_info->public_key_token [0] || !binding_info->has_old_version_bottom ||
400                         !binding_info->has_new_version || !assembly_binding_maps_name (binding_info, aname)) {
401                 mono_assembly_binding_info_free (binding_info);
402                 binding_info->is_valid = FALSE;
403                 return;
404         }
405
406         binding_info->is_valid = TRUE;
407 }
408
409 static int
410 compare_versions (AssemblyVersionSet *v, MonoAssemblyName *aname)
411 {
412         if (v->major > aname->major)
413                 return 1;
414         else if (v->major < aname->major)
415                 return -1;
416
417         if (v->minor > aname->minor)
418                 return 1;
419         else if (v->minor < aname->minor)
420                 return -1;
421
422         if (v->build > aname->build)
423                 return 1;
424         else if (v->build < aname->build)
425                 return -1;
426
427         if (v->revision > aname->revision)
428                 return 1;
429         else if (v->revision < aname->revision)
430                 return -1;
431
432         return 0;
433 }
434
435 static gboolean
436 check_policy_versions (MonoAssemblyBindingInfo *info, MonoAssemblyName *name)
437 {
438         if (!info->is_valid)
439                 return FALSE;
440         
441         /* If has_old_version_top doesn't exist, we don't have an interval */
442         if (!info->has_old_version_top) {
443                 if (compare_versions (&info->old_version_bottom, name) == 0)
444                         return TRUE;
445
446                 return FALSE;
447         }
448
449         /* Check that the version defined by name is valid for the interval */
450         if (compare_versions (&info->old_version_top, name) < 0)
451                 return FALSE;
452
453         /* We should be greater or equal than the small version */
454         if (compare_versions (&info->old_version_bottom, name) > 0)
455                 return FALSE;
456
457         return TRUE;
458 }
459
460 /**
461  * mono_assembly_names_equal:
462  * @l: first assembly
463  * @r: second assembly.
464  *
465  * Compares two MonoAssemblyNames and returns whether they are equal.
466  *
467  * This compares the names, the cultures, the release version and their
468  * public tokens.
469  *
470  * Returns: TRUE if both assembly names are equal.
471  */
472 gboolean
473 mono_assembly_names_equal (MonoAssemblyName *l, MonoAssemblyName *r)
474 {
475         if (!l->name || !r->name)
476                 return FALSE;
477
478         if (strcmp (l->name, r->name))
479                 return FALSE;
480
481         if (l->culture && r->culture && strcmp (l->culture, r->culture))
482                 return FALSE;
483
484         if (l->major != r->major || l->minor != r->minor ||
485                         l->build != r->build || l->revision != r->revision)
486                 if (! ((l->major == 0 && l->minor == 0 && l->build == 0 && l->revision == 0) || (r->major == 0 && r->minor == 0 && r->build == 0 && r->revision == 0)))
487                         return FALSE;
488
489         if (!l->public_key_token [0] || !r->public_key_token [0])
490                 return TRUE;
491
492         if (!mono_public_tokens_are_equal (l->public_key_token, r->public_key_token))
493                 return FALSE;
494
495         return TRUE;
496 }
497
498 static MonoAssembly *
499 load_in_path (const char *basename, const char** search_path, MonoImageOpenStatus *status, MonoBoolean refonly)
500 {
501         int i;
502         char *fullpath;
503         MonoAssembly *result;
504
505         for (i = 0; search_path [i]; ++i) {
506                 fullpath = g_build_filename (search_path [i], basename, NULL);
507                 result = mono_assembly_open_full (fullpath, status, refonly);
508                 g_free (fullpath);
509                 if (result)
510                         return result;
511         }
512         return NULL;
513 }
514
515 /**
516  * mono_assembly_setrootdir:
517  * @root_dir: The pathname of the root directory where we will locate assemblies
518  *
519  * This routine sets the internal default root directory for looking up
520  * assemblies.
521  *
522  * This is used by Windows installations to compute dynamically the
523  * place where the Mono assemblies are located.
524  *
525  */
526 void
527 mono_assembly_setrootdir (const char *root_dir)
528 {
529         /*
530          * Override the MONO_ASSEMBLIES directory configured at compile time.
531          */
532         /* Leak if called more than once */
533         default_path [0] = g_strdup (root_dir);
534 }
535
536 /**
537  * mono_assembly_getrootdir:
538  * 
539  * Obtains the root directory used for looking up assemblies.
540  *
541  * Returns: a string with the directory, this string should not be freed.
542  */
543 G_CONST_RETURN gchar *
544 mono_assembly_getrootdir (void)
545 {
546         return default_path [0];
547 }
548
549 /**
550  * mono_set_dirs:
551  * @assembly_dir: the base directory for assemblies
552  * @config_dir: the base directory for configuration files
553  *
554  * This routine is used internally and by developers embedding
555  * the runtime into their own applications.
556  *
557  * There are a number of cases to consider: Mono as a system-installed
558  * package that is available on the location preconfigured or Mono in
559  * a relocated location.
560  *
561  * If you are using a system-installed Mono, you can pass NULL
562  * to both parameters.  If you are not, you should compute both
563  * directory values and call this routine.
564  *
565  * The values for a given PREFIX are:
566  *
567  *    assembly_dir: PREFIX/lib
568  *    config_dir:   PREFIX/etc
569  *
570  * Notice that embedders that use Mono in a relocated way must
571  * compute the location at runtime, as they will be in control
572  * of where Mono is installed.
573  */
574 void
575 mono_set_dirs (const char *assembly_dir, const char *config_dir)
576 {
577         if (assembly_dir == NULL)
578                 assembly_dir = mono_config_get_assemblies_dir ();
579         if (config_dir == NULL)
580                 config_dir = mono_config_get_cfg_dir ();
581         mono_assembly_setrootdir (assembly_dir);
582         mono_set_config_dir (config_dir);
583 }
584
585 #ifndef HOST_WIN32
586
587 static char *
588 compute_base (char *path)
589 {
590         char *p = strrchr (path, '/');
591         if (p == NULL)
592                 return NULL;
593
594         /* Not a well known Mono executable, we are embedded, cant guess the base  */
595         if (strcmp (p, "/mono") && strcmp (p, "/mono-boehm") && strcmp (p, "/mono-sgen") && strcmp (p, "/pedump") && strcmp (p, "/monodis"))
596                 return NULL;
597             
598         *p = 0;
599         p = strrchr (path, '/');
600         if (p == NULL)
601                 return NULL;
602         
603         if (strcmp (p, "/bin") != 0)
604                 return NULL;
605         *p = 0;
606         return path;
607 }
608
609 static void
610 fallback (void)
611 {
612         mono_set_dirs (mono_config_get_assemblies_dir (), mono_config_get_cfg_dir ());
613 }
614
615 static G_GNUC_UNUSED void
616 set_dirs (char *exe)
617 {
618         char *base;
619         char *config, *lib, *mono;
620         struct stat buf;
621         const char *bindir;
622         
623         /*
624          * Only /usr prefix is treated specially
625          */
626         bindir = mono_config_get_bin_dir ();
627         g_assert (bindir);
628         if (strncmp (exe, bindir, strlen (bindir)) == 0 || (base = compute_base (exe)) == NULL){
629                 fallback ();
630                 return;
631         }
632
633         config = g_build_filename (base, "etc", NULL);
634         lib = g_build_filename (base, "lib", NULL);
635         mono = g_build_filename (lib, "mono/2.0", NULL);
636         if (stat (mono, &buf) == -1)
637                 fallback ();
638         else {
639                 mono_set_dirs (lib, config);
640         }
641         
642         g_free (config);
643         g_free (lib);
644         g_free (mono);
645 }
646
647 #endif /* HOST_WIN32 */
648
649 /**
650  * mono_set_rootdir:
651  *
652  * Registers the root directory for the Mono runtime, for Linux and Solaris 10,
653  * this auto-detects the prefix where Mono was installed. 
654  */
655 void
656 mono_set_rootdir (void)
657 {
658 #if defined(HOST_WIN32) || (defined(PLATFORM_MACOSX) && !defined(TARGET_ARM))
659         gchar *bindir, *installdir, *root, *name, *resolvedname, *config;
660
661 #ifdef HOST_WIN32
662         name = mono_get_module_file_name ((HMODULE) &__ImageBase);
663 #else
664         {
665                 /* 
666                  * _NSGetExecutablePath may return -1 to indicate buf is not large
667                  *  enough, but we ignore that case to avoid having to do extra dynamic
668                  *  allocation for the path and hope that 4096 is enough - this is 
669                  *  ok in the Linux/Solaris case below at least...
670                  */
671                 
672                 gchar buf[4096];
673                 guint buf_size = sizeof (buf);
674  
675                 name = NULL;
676                 if (_NSGetExecutablePath (buf, &buf_size) == 0)
677                         name = g_strdup (buf);
678  
679                 if (name == NULL) {
680                         fallback ();
681                         return;
682                 }
683         }
684 #endif
685
686         resolvedname = mono_path_resolve_symlinks (name);
687
688         bindir = g_path_get_dirname (resolvedname);
689         installdir = g_path_get_dirname (bindir);
690         root = g_build_path (G_DIR_SEPARATOR_S, installdir, "lib", NULL);
691
692         config = g_build_filename (root, "..", "etc", NULL);
693 #ifdef HOST_WIN32
694         mono_set_dirs (root, config);
695 #else
696         if (g_file_test (root, G_FILE_TEST_EXISTS) && g_file_test (config, G_FILE_TEST_EXISTS))
697                 mono_set_dirs (root, config);
698         else
699                 fallback ();
700 #endif
701
702         g_free (config);
703         g_free (root);
704         g_free (installdir);
705         g_free (bindir);
706         g_free (name);
707         g_free (resolvedname);
708 #elif defined(DISABLE_MONO_AUTODETECTION)
709         fallback ();
710 #else
711         char buf [4096];
712         int  s;
713         char *str;
714
715         /* Linux style */
716         s = readlink ("/proc/self/exe", buf, sizeof (buf)-1);
717
718         if (s != -1){
719                 buf [s] = 0;
720                 set_dirs (buf);
721                 return;
722         }
723
724         /* Solaris 10 style */
725         str = g_strdup_printf ("/proc/%d/path/a.out", getpid ());
726         s = readlink (str, buf, sizeof (buf)-1);
727         g_free (str);
728         if (s != -1){
729                 buf [s] = 0;
730                 set_dirs (buf);
731                 return;
732         } 
733         fallback ();
734 #endif
735 }
736
737 /**
738  * mono_assemblies_init:
739  *
740  *  Initialize global variables used by this module.
741  */
742 void
743 mono_assemblies_init (void)
744 {
745         /*
746          * Initialize our internal paths if we have not been initialized yet.
747          * This happens when embedders use Mono.
748          */
749         if (mono_assembly_getrootdir () == NULL)
750                 mono_set_rootdir ();
751
752         check_path_env ();
753         check_extra_gac_path_env ();
754
755         mono_os_mutex_init_recursive (&assemblies_mutex);
756         mono_os_mutex_init (&assembly_binding_mutex);
757 }
758
759 static void
760 mono_assembly_binding_lock (void)
761 {
762         mono_locks_os_acquire (&assembly_binding_mutex, AssemblyBindingLock);
763 }
764
765 static void
766 mono_assembly_binding_unlock (void)
767 {
768         mono_locks_os_release (&assembly_binding_mutex, AssemblyBindingLock);
769 }
770
771 gboolean
772 mono_assembly_fill_assembly_name (MonoImage *image, MonoAssemblyName *aname)
773 {
774         MonoTableInfo *t = &image->tables [MONO_TABLE_ASSEMBLY];
775         guint32 cols [MONO_ASSEMBLY_SIZE];
776         gint32 machine, flags;
777
778         if (!t->rows)
779                 return FALSE;
780
781         mono_metadata_decode_row (t, 0, cols, MONO_ASSEMBLY_SIZE);
782
783         aname->hash_len = 0;
784         aname->hash_value = NULL;
785         aname->name = mono_metadata_string_heap (image, cols [MONO_ASSEMBLY_NAME]);
786         aname->culture = mono_metadata_string_heap (image, cols [MONO_ASSEMBLY_CULTURE]);
787         aname->flags = cols [MONO_ASSEMBLY_FLAGS];
788         aname->major = cols [MONO_ASSEMBLY_MAJOR_VERSION];
789         aname->minor = cols [MONO_ASSEMBLY_MINOR_VERSION];
790         aname->build = cols [MONO_ASSEMBLY_BUILD_NUMBER];
791         aname->revision = cols [MONO_ASSEMBLY_REV_NUMBER];
792         aname->hash_alg = cols [MONO_ASSEMBLY_HASH_ALG];
793         if (cols [MONO_ASSEMBLY_PUBLIC_KEY]) {
794                 guchar* token = (guchar *)g_malloc (8);
795                 gchar* encoded;
796                 const gchar* pkey;
797                 int len;
798
799                 pkey = mono_metadata_blob_heap (image, cols [MONO_ASSEMBLY_PUBLIC_KEY]);
800                 len = mono_metadata_decode_blob_size (pkey, &pkey);
801                 aname->public_key = (guchar*)pkey;
802
803                 mono_digest_get_public_token (token, aname->public_key, len);
804                 encoded = encode_public_tok (token, 8);
805                 g_strlcpy ((char*)aname->public_key_token, encoded, MONO_PUBLIC_KEY_TOKEN_LENGTH);
806
807                 g_free (encoded);
808                 g_free (token);
809         }
810         else {
811                 aname->public_key = NULL;
812                 memset (aname->public_key_token, 0, MONO_PUBLIC_KEY_TOKEN_LENGTH);
813         }
814
815         if (cols [MONO_ASSEMBLY_PUBLIC_KEY]) {
816                 aname->public_key = (guchar*)mono_metadata_blob_heap (image, cols [MONO_ASSEMBLY_PUBLIC_KEY]);
817         }
818         else
819                 aname->public_key = 0;
820
821         machine = ((MonoCLIImageInfo*)(image->image_info))->cli_header.coff.coff_machine;
822         flags = ((MonoCLIImageInfo*)(image->image_info))->cli_cli_header.ch_flags;
823         switch (machine) {
824         case COFF_MACHINE_I386:
825                 /* https://bugzilla.xamarin.com/show_bug.cgi?id=17632 */
826                 if (flags & (CLI_FLAGS_32BITREQUIRED|CLI_FLAGS_PREFERRED32BIT))
827                         aname->arch = MONO_PROCESSOR_ARCHITECTURE_X86;
828                 else if ((flags & 0x70) == 0x70)
829                         aname->arch = MONO_PROCESSOR_ARCHITECTURE_NONE;
830                 else
831                         aname->arch = MONO_PROCESSOR_ARCHITECTURE_MSIL;
832                 break;
833         case COFF_MACHINE_IA64:
834                 aname->arch = MONO_PROCESSOR_ARCHITECTURE_IA64;
835                 break;
836         case COFF_MACHINE_AMD64:
837                 aname->arch = MONO_PROCESSOR_ARCHITECTURE_AMD64;
838                 break;
839         case COFF_MACHINE_ARM:
840                 aname->arch = MONO_PROCESSOR_ARCHITECTURE_ARM;
841                 break;
842         default:
843                 break;
844         }
845
846         return TRUE;
847 }
848
849 /**
850  * mono_stringify_assembly_name:
851  * @aname: the assembly name.
852  *
853  * Convert @aname into its string format. The returned string is dynamically
854  * allocated and should be freed by the caller.
855  *
856  * Returns: a newly allocated string with a string representation of
857  * the assembly name.
858  */
859 char*
860 mono_stringify_assembly_name (MonoAssemblyName *aname)
861 {
862         const char *quote = (aname->name && g_ascii_isspace (aname->name [0])) ? "\"" : "";
863
864         return g_strdup_printf (
865                 "%s%s%s, Version=%d.%d.%d.%d, Culture=%s, PublicKeyToken=%s%s",
866                 quote, aname->name, quote,
867                 aname->major, aname->minor, aname->build, aname->revision,
868                 aname->culture && *aname->culture? aname->culture: "neutral",
869                 aname->public_key_token [0] ? (char *)aname->public_key_token : "null",
870                 (aname->flags & ASSEMBLYREF_RETARGETABLE_FLAG) ? ", Retargetable=Yes" : "");
871 }
872
873 static gchar*
874 assemblyref_public_tok (MonoImage *image, guint32 key_index, guint32 flags)
875 {
876         const gchar *public_tok;
877         int len;
878
879         public_tok = mono_metadata_blob_heap (image, key_index);
880         len = mono_metadata_decode_blob_size (public_tok, &public_tok);
881
882         if (flags & ASSEMBLYREF_FULL_PUBLIC_KEY_FLAG) {
883                 guchar token [8];
884                 mono_digest_get_public_token (token, (guchar*)public_tok, len);
885                 return encode_public_tok (token, 8);
886         }
887
888         return encode_public_tok ((guchar*)public_tok, len);
889 }
890
891 /**
892  * mono_assembly_addref:
893  * @assemnly: the assembly to reference
894  *
895  * This routine increments the reference count on a MonoAssembly.
896  * The reference count is reduced every time the method mono_assembly_close() is
897  * invoked.
898  */
899 void
900 mono_assembly_addref (MonoAssembly *assembly)
901 {
902         InterlockedIncrement (&assembly->ref_count);
903 }
904
905 /*
906  * CAUTION: This table must be kept in sync with
907  *          ivkm/reflect/Fusion.cs
908  */
909
910 #define SILVERLIGHT_KEY "7cec85d7bea7798e"
911 #define WINFX_KEY "31bf3856ad364e35"
912 #define ECMA_KEY "b77a5c561934e089"
913 #define MSFINAL_KEY "b03f5f7f11d50a3a"
914
915 typedef struct {
916         const char *name;
917         const char *from;
918         const char *to;
919 } KeyRemapEntry;
920
921 static KeyRemapEntry key_remap_table[] = {
922         { "Microsoft.CSharp", WINFX_KEY, MSFINAL_KEY },
923         { "System", SILVERLIGHT_KEY, ECMA_KEY },
924         { "System.ComponentModel.Composition", WINFX_KEY, ECMA_KEY },
925         { "System.ComponentModel.DataAnnotations", "ddd0da4d3e678217", WINFX_KEY },
926         { "System.Core", SILVERLIGHT_KEY, ECMA_KEY },
927         // FIXME: MS uses MSFINAL_KEY for .NET 4.5
928         { "System.Net", SILVERLIGHT_KEY, MSFINAL_KEY },
929         { "System.Numerics", WINFX_KEY, ECMA_KEY },
930         { "System.Runtime.Serialization", SILVERLIGHT_KEY, ECMA_KEY },
931         { "System.ServiceModel", WINFX_KEY, ECMA_KEY },
932         { "System.ServiceModel.Web", SILVERLIGHT_KEY, WINFX_KEY },
933         { "System.Windows", SILVERLIGHT_KEY, MSFINAL_KEY },
934         { "System.Xml", SILVERLIGHT_KEY, ECMA_KEY },
935         { "System.Xml.Linq", WINFX_KEY, ECMA_KEY },
936         { "System.Xml.Serialization", WINFX_KEY, ECMA_KEY }
937 };
938
939 static void
940 remap_keys (MonoAssemblyName *aname)
941 {
942         int i;
943         for (i = 0; i < G_N_ELEMENTS (key_remap_table); i++) {
944                 const KeyRemapEntry *entry = &key_remap_table [i];
945
946                 if (strcmp (aname->name, entry->name) ||
947                     !mono_public_tokens_are_equal (aname->public_key_token, (const unsigned char*) entry->from))
948                         continue;
949
950                 memcpy (aname->public_key_token, entry->to, MONO_PUBLIC_KEY_TOKEN_LENGTH);
951                      
952                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY,
953                             "Remapped public key token of retargetable assembly %s from %s to %s",
954                             aname->name, entry->from, entry->to);
955                 return;
956         }
957 }
958
959 static MonoAssemblyName *
960 mono_assembly_remap_version (MonoAssemblyName *aname, MonoAssemblyName *dest_aname)
961 {
962         const MonoRuntimeInfo *current_runtime;
963         int pos, first, last;
964
965         if (aname->name == NULL) return aname;
966
967         current_runtime = mono_get_runtime_info ();
968
969         if (aname->flags & ASSEMBLYREF_RETARGETABLE_FLAG) {
970                 const AssemblyVersionSet* vset;
971
972                 /* Remap to current runtime */
973                 vset = &current_runtime->version_sets [0];
974
975                 memcpy (dest_aname, aname, sizeof(MonoAssemblyName));
976                 dest_aname->major = vset->major;
977                 dest_aname->minor = vset->minor;
978                 dest_aname->build = vset->build;
979                 dest_aname->revision = vset->revision;
980                 dest_aname->flags &= ~ASSEMBLYREF_RETARGETABLE_FLAG;
981
982                 /* Remap assembly name */
983                 if (!strcmp (aname->name, "System.Net"))
984                         dest_aname->name = g_strdup ("System");
985                 
986                 remap_keys (dest_aname);
987
988                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY,
989                                         "The request to load the retargetable assembly %s v%d.%d.%d.%d was remapped to %s v%d.%d.%d.%d",
990                                         aname->name,
991                                         aname->major, aname->minor, aname->build, aname->revision,
992                                         dest_aname->name,
993                                         vset->major, vset->minor, vset->build, vset->revision
994                                         );
995
996                 return dest_aname;
997         }
998         
999 #ifndef DISABLE_ASSEMBLY_REMAPPING
1000         first = 0;
1001         last = G_N_ELEMENTS (framework_assemblies) - 1;
1002         
1003         while (first <= last) {
1004                 int res;
1005                 pos = first + (last - first) / 2;
1006                 res = strcmp (aname->name, framework_assemblies[pos].assembly_name);
1007                 if (res == 0) {
1008                         const AssemblyVersionSet* vset;
1009                         int index = framework_assemblies[pos].version_set_index;
1010                         g_assert (index < G_N_ELEMENTS (current_runtime->version_sets));
1011                         vset = &current_runtime->version_sets [index];
1012
1013                         if (aname->major == vset->major && aname->minor == vset->minor &&
1014                                 aname->build == vset->build && aname->revision == vset->revision)
1015                                 return aname;
1016                 
1017                         if ((aname->major | aname->minor | aname->build | aname->revision) != 0)
1018                                 mono_trace (G_LOG_LEVEL_WARNING, MONO_TRACE_ASSEMBLY,
1019                                         "The request to load the assembly %s v%d.%d.%d.%d was remapped to v%d.%d.%d.%d",
1020                                                         aname->name,
1021                                                         aname->major, aname->minor, aname->build, aname->revision,
1022                                                         vset->major, vset->minor, vset->build, vset->revision
1023                                                         );
1024                         
1025                         memcpy (dest_aname, aname, sizeof(MonoAssemblyName));
1026                         dest_aname->major = vset->major;
1027                         dest_aname->minor = vset->minor;
1028                         dest_aname->build = vset->build;
1029                         dest_aname->revision = vset->revision;
1030                         return dest_aname;
1031                 } else if (res < 0) {
1032                         last = pos - 1;
1033                 } else {
1034                         first = pos + 1;
1035                 }
1036         }
1037 #endif
1038
1039         return aname;
1040 }
1041
1042 /*
1043  * mono_assembly_get_assemblyref:
1044  *
1045  *   Fill out ANAME with the assembly name of the INDEXth assembly reference in IMAGE.
1046  */
1047 void
1048 mono_assembly_get_assemblyref (MonoImage *image, int index, MonoAssemblyName *aname)
1049 {
1050         MonoTableInfo *t;
1051         guint32 cols [MONO_ASSEMBLYREF_SIZE];
1052         const char *hash;
1053
1054         t = &image->tables [MONO_TABLE_ASSEMBLYREF];
1055
1056         mono_metadata_decode_row (t, index, cols, MONO_ASSEMBLYREF_SIZE);
1057                 
1058         hash = mono_metadata_blob_heap (image, cols [MONO_ASSEMBLYREF_HASH_VALUE]);
1059         aname->hash_len = mono_metadata_decode_blob_size (hash, &hash);
1060         aname->hash_value = hash;
1061         aname->name = mono_metadata_string_heap (image, cols [MONO_ASSEMBLYREF_NAME]);
1062         aname->culture = mono_metadata_string_heap (image, cols [MONO_ASSEMBLYREF_CULTURE]);
1063         aname->flags = cols [MONO_ASSEMBLYREF_FLAGS];
1064         aname->major = cols [MONO_ASSEMBLYREF_MAJOR_VERSION];
1065         aname->minor = cols [MONO_ASSEMBLYREF_MINOR_VERSION];
1066         aname->build = cols [MONO_ASSEMBLYREF_BUILD_NUMBER];
1067         aname->revision = cols [MONO_ASSEMBLYREF_REV_NUMBER];
1068
1069         if (cols [MONO_ASSEMBLYREF_PUBLIC_KEY]) {
1070                 gchar *token = assemblyref_public_tok (image, cols [MONO_ASSEMBLYREF_PUBLIC_KEY], aname->flags);
1071                 g_strlcpy ((char*)aname->public_key_token, token, MONO_PUBLIC_KEY_TOKEN_LENGTH);
1072                 g_free (token);
1073         } else {
1074                 memset (aname->public_key_token, 0, MONO_PUBLIC_KEY_TOKEN_LENGTH);
1075         }
1076 }
1077
1078 void
1079 mono_assembly_load_reference (MonoImage *image, int index)
1080 {
1081         MonoAssembly *reference;
1082         MonoAssemblyName aname;
1083         MonoImageOpenStatus status;
1084
1085         /*
1086          * image->references is shared between threads, so we need to access
1087          * it inside a critical section.
1088          */
1089         mono_assemblies_lock ();
1090         if (!image->references) {
1091                 MonoTableInfo *t = &image->tables [MONO_TABLE_ASSEMBLYREF];
1092         
1093                 image->references = g_new0 (MonoAssembly *, t->rows + 1);
1094                 image->nreferences = t->rows;
1095         }
1096         reference = image->references [index];
1097         mono_assemblies_unlock ();
1098         if (reference)
1099                 return;
1100
1101         mono_assembly_get_assemblyref (image, index, &aname);
1102
1103         if (image->assembly && image->assembly->ref_only) {
1104                 /* We use the loaded corlib */
1105                 if (!strcmp (aname.name, "mscorlib"))
1106                         reference = mono_assembly_load_full_internal (&aname, image->assembly, image->assembly->basedir, &status, FALSE);
1107                 else {
1108                         reference = mono_assembly_loaded_full (&aname, TRUE);
1109                         if (!reference)
1110                                 /* Try a postload search hook */
1111                                 reference = mono_assembly_invoke_search_hook_internal (&aname, image->assembly, TRUE, TRUE);
1112                 }
1113
1114                 /*
1115                  * Here we must advice that the error was due to
1116                  * a non loaded reference using the ReflectionOnly api
1117                 */
1118                 if (!reference)
1119                         reference = (MonoAssembly *)REFERENCE_MISSING;
1120         } else {
1121                 /* we first try without setting the basedir: this can eventually result in a ResolveAssembly
1122                  * event which is the MS .net compatible behaviour (the assemblyresolve_event3.cs test has been fixed
1123                  * accordingly, it would fail on the MS runtime before).
1124                  * The second load attempt has the basedir set to keep compatibility with the old mono behavior, for
1125                  * example bug-349190.2.cs and who knows how much more code in the wild.
1126                  */
1127                 reference = mono_assembly_load_full_internal (&aname, image->assembly, NULL, &status, FALSE);
1128                 if (!reference && image->assembly)
1129                         reference = mono_assembly_load_full_internal (&aname, image->assembly, image->assembly->basedir, &status, FALSE);
1130         }
1131
1132         if (reference == NULL){
1133                 char *extra_msg;
1134
1135                 if (status == MONO_IMAGE_ERROR_ERRNO && errno == ENOENT) {
1136                         extra_msg = g_strdup_printf ("The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly (%s).\n", image->assembly != NULL ? image->assembly->basedir : "" );
1137                 } else if (status == MONO_IMAGE_ERROR_ERRNO) {
1138                         extra_msg = g_strdup_printf ("System error: %s\n", strerror (errno));
1139                 } else if (status == MONO_IMAGE_MISSING_ASSEMBLYREF) {
1140                         extra_msg = g_strdup ("Cannot find an assembly referenced from this one.\n");
1141                 } else if (status == MONO_IMAGE_IMAGE_INVALID) {
1142                         extra_msg = g_strdup ("The file exists but is not a valid assembly.\n");
1143                 } else {
1144                         extra_msg = g_strdup ("");
1145                 }
1146                 
1147                 mono_trace (G_LOG_LEVEL_WARNING, MONO_TRACE_ASSEMBLY, "The following assembly referenced from %s could not be loaded:\n"
1148                                    "     Assembly:   %s    (assemblyref_index=%d)\n"
1149                                    "     Version:    %d.%d.%d.%d\n"
1150                                    "     Public Key: %s\n%s",
1151                                    image->name, aname.name, index,
1152                                    aname.major, aname.minor, aname.build, aname.revision,
1153                                    strlen ((char*)aname.public_key_token) == 0 ? "(none)" : (char*)aname.public_key_token, extra_msg);
1154                 g_free (extra_msg);
1155         }
1156
1157         mono_assemblies_lock ();
1158         if (reference == NULL) {
1159                 /* Flag as not found */
1160                 reference = (MonoAssembly *)REFERENCE_MISSING;
1161         }       
1162
1163         if (!image->references [index]) {
1164                 if (reference != REFERENCE_MISSING){
1165                         mono_assembly_addref (reference);
1166                         if (image->assembly)
1167                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Assembly Ref addref %s[%p] -> %s[%p]: %d",
1168                                     image->assembly->aname.name, image->assembly, reference->aname.name, reference, reference->ref_count);
1169                 } else {
1170                         if (image->assembly)
1171                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Failed to load assembly %s[%p]\n",
1172                                     image->assembly->aname.name, image->assembly);
1173                 }
1174                 
1175                 image->references [index] = reference;
1176         }
1177         mono_assemblies_unlock ();
1178
1179         if (image->references [index] != reference) {
1180                 /* Somebody loaded it before us */
1181                 mono_assembly_close (reference);
1182         }
1183 }
1184
1185 void
1186 mono_assembly_load_references (MonoImage *image, MonoImageOpenStatus *status)
1187 {
1188         /* This is a no-op now but it is part of the embedding API so we can't remove it */
1189         *status = MONO_IMAGE_OK;
1190 }
1191
1192 typedef struct AssemblyLoadHook AssemblyLoadHook;
1193 struct AssemblyLoadHook {
1194         AssemblyLoadHook *next;
1195         MonoAssemblyLoadFunc func;
1196         gpointer user_data;
1197 };
1198
1199 AssemblyLoadHook *assembly_load_hook = NULL;
1200
1201 void
1202 mono_assembly_invoke_load_hook (MonoAssembly *ass)
1203 {
1204         AssemblyLoadHook *hook;
1205
1206         for (hook = assembly_load_hook; hook; hook = hook->next) {
1207                 hook->func (ass, hook->user_data);
1208         }
1209 }
1210
1211 void
1212 mono_install_assembly_load_hook (MonoAssemblyLoadFunc func, gpointer user_data)
1213 {
1214         AssemblyLoadHook *hook;
1215         
1216         g_return_if_fail (func != NULL);
1217
1218         hook = g_new0 (AssemblyLoadHook, 1);
1219         hook->func = func;
1220         hook->user_data = user_data;
1221         hook->next = assembly_load_hook;
1222         assembly_load_hook = hook;
1223 }
1224
1225 static void
1226 free_assembly_load_hooks (void)
1227 {
1228         AssemblyLoadHook *hook, *next;
1229
1230         for (hook = assembly_load_hook; hook; hook = next) {
1231                 next = hook->next;
1232                 g_free (hook);
1233         }
1234 }
1235
1236 typedef struct AssemblySearchHook AssemblySearchHook;
1237 struct AssemblySearchHook {
1238         AssemblySearchHook *next;
1239         MonoAssemblySearchFunc func;
1240         gboolean refonly;
1241         gboolean postload;
1242         gpointer user_data;
1243 };
1244
1245 AssemblySearchHook *assembly_search_hook = NULL;
1246
1247 static MonoAssembly*
1248 mono_assembly_invoke_search_hook_internal (MonoAssemblyName *aname, MonoAssembly *requesting, gboolean refonly, gboolean postload)
1249 {
1250         AssemblySearchHook *hook;
1251
1252         for (hook = assembly_search_hook; hook; hook = hook->next) {
1253                 if ((hook->refonly == refonly) && (hook->postload == postload)) {
1254                         MonoAssembly *ass;
1255                         /**
1256                           * A little explanation is in order here.
1257                           *
1258                           * The default postload search hook needs to know the requesting assembly to report it to managed code.
1259                           * The embedding API exposes a search hook that doesn't take such argument.
1260                           *
1261                           * The original fix would call the default search hook before all the registered ones and pass
1262                           * the requesting assembly to it. It works but broke a very suddle embedding API aspect that some users
1263                           * rely on. Which is the ordering between user hooks and the default runtime hook.
1264                           *
1265                           * Registering the hook after mono_jit_init would let your hook run before the default one and
1266                           * when using it to handle non standard app layouts this could save your app from a massive amount
1267                           * of syscalls that the default hook does when probing all sorts of places. Slow targets with horrible IO
1268                           * are all using this trick and if we broke this assumption they would be very disapointed at us.
1269                           *
1270                           * So what's the fix? We register the default hook using regular means and special case it when iterating
1271                           * over the registered hooks. This preserves ordering and enables managed resolve hooks to get the requesting
1272                           * assembly.
1273                           */
1274                         if (hook->func == (void*)mono_domain_assembly_postload_search)
1275                                 ass = mono_domain_assembly_postload_search (aname, requesting, refonly);
1276                         else
1277                                 ass = hook->func (aname, hook->user_data);
1278                         if (ass)
1279                                 return ass;
1280                 }
1281         }
1282
1283         return NULL;
1284 }
1285
1286 MonoAssembly*
1287 mono_assembly_invoke_search_hook (MonoAssemblyName *aname)
1288 {
1289         return mono_assembly_invoke_search_hook_internal (aname, NULL, FALSE, FALSE);
1290 }
1291
1292 static void
1293 mono_install_assembly_search_hook_internal (MonoAssemblySearchFunc func, gpointer user_data, gboolean refonly, gboolean postload)
1294 {
1295         AssemblySearchHook *hook;
1296         
1297         g_return_if_fail (func != NULL);
1298
1299         hook = g_new0 (AssemblySearchHook, 1);
1300         hook->func = func;
1301         hook->user_data = user_data;
1302         hook->refonly = refonly;
1303         hook->postload = postload;
1304         hook->next = assembly_search_hook;
1305         assembly_search_hook = hook;
1306 }
1307
1308 void          
1309 mono_install_assembly_search_hook (MonoAssemblySearchFunc func, gpointer user_data)
1310 {
1311         mono_install_assembly_search_hook_internal (func, user_data, FALSE, FALSE);
1312 }       
1313
1314 static void
1315 free_assembly_search_hooks (void)
1316 {
1317         AssemblySearchHook *hook, *next;
1318
1319         for (hook = assembly_search_hook; hook; hook = next) {
1320                 next = hook->next;
1321                 g_free (hook);
1322         }
1323 }
1324
1325 void
1326 mono_install_assembly_refonly_search_hook (MonoAssemblySearchFunc func, gpointer user_data)
1327 {
1328         mono_install_assembly_search_hook_internal (func, user_data, TRUE, FALSE);
1329 }
1330
1331 void          
1332 mono_install_assembly_postload_search_hook (MonoAssemblySearchFunc func, gpointer user_data)
1333 {
1334         mono_install_assembly_search_hook_internal (func, user_data, FALSE, TRUE);
1335 }       
1336
1337 void
1338 mono_install_assembly_postload_refonly_search_hook (MonoAssemblySearchFunc func, gpointer user_data)
1339 {
1340         mono_install_assembly_search_hook_internal (func, user_data, TRUE, TRUE);
1341 }
1342
1343 typedef struct AssemblyPreLoadHook AssemblyPreLoadHook;
1344 struct AssemblyPreLoadHook {
1345         AssemblyPreLoadHook *next;
1346         MonoAssemblyPreLoadFunc func;
1347         gpointer user_data;
1348 };
1349
1350 static AssemblyPreLoadHook *assembly_preload_hook = NULL;
1351 static AssemblyPreLoadHook *assembly_refonly_preload_hook = NULL;
1352
1353 static MonoAssembly *
1354 invoke_assembly_preload_hook (MonoAssemblyName *aname, gchar **assemblies_path)
1355 {
1356         AssemblyPreLoadHook *hook;
1357         MonoAssembly *assembly;
1358
1359         for (hook = assembly_preload_hook; hook; hook = hook->next) {
1360                 assembly = hook->func (aname, assemblies_path, hook->user_data);
1361                 if (assembly != NULL)
1362                         return assembly;
1363         }
1364
1365         return NULL;
1366 }
1367
1368 static MonoAssembly *
1369 invoke_assembly_refonly_preload_hook (MonoAssemblyName *aname, gchar **assemblies_path)
1370 {
1371         AssemblyPreLoadHook *hook;
1372         MonoAssembly *assembly;
1373
1374         for (hook = assembly_refonly_preload_hook; hook; hook = hook->next) {
1375                 assembly = hook->func (aname, assemblies_path, hook->user_data);
1376                 if (assembly != NULL)
1377                         return assembly;
1378         }
1379
1380         return NULL;
1381 }
1382
1383 void
1384 mono_install_assembly_preload_hook (MonoAssemblyPreLoadFunc func, gpointer user_data)
1385 {
1386         AssemblyPreLoadHook *hook;
1387         
1388         g_return_if_fail (func != NULL);
1389
1390         hook = g_new0 (AssemblyPreLoadHook, 1);
1391         hook->func = func;
1392         hook->user_data = user_data;
1393         hook->next = assembly_preload_hook;
1394         assembly_preload_hook = hook;
1395 }
1396
1397 void
1398 mono_install_assembly_refonly_preload_hook (MonoAssemblyPreLoadFunc func, gpointer user_data)
1399 {
1400         AssemblyPreLoadHook *hook;
1401         
1402         g_return_if_fail (func != NULL);
1403
1404         hook = g_new0 (AssemblyPreLoadHook, 1);
1405         hook->func = func;
1406         hook->user_data = user_data;
1407         hook->next = assembly_refonly_preload_hook;
1408         assembly_refonly_preload_hook = hook;
1409 }
1410
1411 static void
1412 free_assembly_preload_hooks (void)
1413 {
1414         AssemblyPreLoadHook *hook, *next;
1415
1416         for (hook = assembly_preload_hook; hook; hook = next) {
1417                 next = hook->next;
1418                 g_free (hook);
1419         }
1420
1421         for (hook = assembly_refonly_preload_hook; hook; hook = next) {
1422                 next = hook->next;
1423                 g_free (hook);
1424         }
1425 }
1426
1427 static gchar *
1428 absolute_dir (const gchar *filename)
1429 {
1430         gchar *cwd;
1431         gchar *mixed;
1432         gchar **parts;
1433         gchar *part;
1434         GList *list, *tmp;
1435         GString *result;
1436         gchar *res;
1437         gint i;
1438
1439         if (g_path_is_absolute (filename)) {
1440                 part = g_path_get_dirname (filename);
1441                 res = g_strconcat (part, G_DIR_SEPARATOR_S, NULL);
1442                 g_free (part);
1443                 return res;
1444         }
1445
1446         cwd = g_get_current_dir ();
1447         mixed = g_build_filename (cwd, filename, NULL);
1448         parts = g_strsplit (mixed, G_DIR_SEPARATOR_S, 0);
1449         g_free (mixed);
1450         g_free (cwd);
1451
1452         list = NULL;
1453         for (i = 0; (part = parts [i]) != NULL; i++) {
1454                 if (!strcmp (part, "."))
1455                         continue;
1456
1457                 if (!strcmp (part, "..")) {
1458                         if (list && list->next) /* Don't remove root */
1459                                 list = g_list_delete_link (list, list);
1460                 } else {
1461                         list = g_list_prepend (list, part);
1462                 }
1463         }
1464
1465         result = g_string_new ("");
1466         list = g_list_reverse (list);
1467
1468         /* Ignores last data pointer, which should be the filename */
1469         for (tmp = list; tmp && tmp->next != NULL; tmp = tmp->next){
1470                 if (tmp->data)
1471                         g_string_append_printf (result, "%s%c", (char *) tmp->data,
1472                                                                 G_DIR_SEPARATOR);
1473         }
1474
1475         res = result->str;
1476         g_string_free (result, FALSE);
1477         g_list_free (list);
1478         g_strfreev (parts);
1479         if (*res == '\0') {
1480                 g_free (res);
1481                 return g_strdup (".");
1482         }
1483
1484         return res;
1485 }
1486
1487 /** 
1488  * mono_assembly_open_from_bundle:
1489  * @filename: Filename requested
1490  * @status: return value
1491  *
1492  * This routine tries to open the assembly specified by `filename' from the
1493  * defined bundles, if found, returns the MonoImage for it, if not found
1494  * returns NULL
1495  */
1496 MonoImage *
1497 mono_assembly_open_from_bundle (const char *filename, MonoImageOpenStatus *status, gboolean refonly)
1498 {
1499         int i;
1500         char *name;
1501         MonoImage *image = NULL;
1502
1503         /*
1504          * we do a very simple search for bundled assemblies: it's not a general 
1505          * purpose assembly loading mechanism.
1506          */
1507
1508         if (!bundles)
1509                 return NULL;
1510
1511         name = g_path_get_basename (filename);
1512
1513         mono_assemblies_lock ();
1514         for (i = 0; !image && bundles [i]; ++i) {
1515                 if (strcmp (bundles [i]->name, name) == 0) {
1516                         image = mono_image_open_from_data_with_name ((char*)bundles [i]->data, bundles [i]->size, FALSE, status, refonly, name);
1517                         break;
1518                 }
1519         }
1520         mono_assemblies_unlock ();
1521         if (image) {
1522                 mono_image_addref (image);
1523                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Assembly Loader loaded assembly from bundle: '%s'.", name);
1524                 g_free (name);
1525                 return image;
1526         }
1527         g_free (name);
1528         return NULL;
1529 }
1530
1531 MonoAssembly *
1532 mono_assembly_open_full (const char *filename, MonoImageOpenStatus *status, gboolean refonly)
1533 {
1534         MonoImage *image;
1535         MonoAssembly *ass;
1536         MonoImageOpenStatus def_status;
1537         gchar *fname;
1538         gchar *new_fname;
1539         gboolean loaded_from_bundle;
1540         
1541         g_return_val_if_fail (filename != NULL, NULL);
1542
1543         if (!status)
1544                 status = &def_status;
1545         *status = MONO_IMAGE_OK;
1546
1547         if (strncmp (filename, "file://", 7) == 0) {
1548                 GError *error = NULL;
1549                 gchar *uri = (gchar *) filename;
1550                 gchar *tmpuri;
1551
1552                 /*
1553                  * MS allows file://c:/... and fails on file://localhost/c:/... 
1554                  * They also throw an IndexOutOfRangeException if "file://"
1555                  */
1556                 if (uri [7] != '/')
1557                         uri = g_strdup_printf ("file:///%s", uri + 7);
1558         
1559                 tmpuri = uri;
1560                 uri = mono_escape_uri_string (tmpuri);
1561                 fname = g_filename_from_uri (uri, NULL, &error);
1562                 g_free (uri);
1563
1564                 if (tmpuri != filename)
1565                         g_free (tmpuri);
1566
1567                 if (error != NULL) {
1568                         g_warning ("%s\n", error->message);
1569                         g_error_free (error);
1570                         fname = g_strdup (filename);
1571                 }
1572         } else {
1573                 fname = g_strdup (filename);
1574         }
1575
1576         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY,
1577                         "Assembly Loader probing location: '%s'.", fname);
1578
1579         new_fname = NULL;
1580         if (!mono_assembly_is_in_gac (fname))
1581                 new_fname = mono_make_shadow_copy (fname);
1582         if (new_fname && new_fname != fname) {
1583                 g_free (fname);
1584                 fname = new_fname;
1585                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY,
1586                             "Assembly Loader shadow-copied assembly to: '%s'.", fname);
1587         }
1588         
1589         image = NULL;
1590
1591         // If VM built with mkbundle
1592         loaded_from_bundle = FALSE;
1593         if (bundles != NULL) {
1594                 image = mono_assembly_open_from_bundle (fname, status, refonly);
1595                 loaded_from_bundle = image != NULL;
1596         }
1597
1598         if (!image)
1599                 image = mono_image_open_full (fname, status, refonly);
1600
1601         if (!image){
1602                 if (*status == MONO_IMAGE_OK)
1603                         *status = MONO_IMAGE_ERROR_ERRNO;
1604                 g_free (fname);
1605                 return NULL;
1606         }
1607
1608         if (image->assembly) {
1609                 /* Already loaded by another appdomain */
1610                 mono_assembly_invoke_load_hook (image->assembly);
1611                 mono_image_close (image);
1612                 g_free (fname);
1613                 return image->assembly;
1614         }
1615
1616         ass = mono_assembly_load_from_full (image, fname, status, refonly);
1617
1618         if (ass) {
1619                 if (!loaded_from_bundle)
1620                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY,
1621                                 "Assembly Loader loaded assembly from location: '%s'.", filename);
1622                 if (!refonly)
1623                         mono_config_for_assembly (ass->image);
1624         }
1625
1626         /* Clear the reference added by mono_image_open */
1627         mono_image_close (image);
1628         
1629         g_free (fname);
1630
1631         return ass;
1632 }
1633
1634 static void
1635 free_item (gpointer val, gpointer user_data)
1636 {
1637         g_free (val);
1638 }
1639
1640 /*
1641  * mono_assembly_load_friends:
1642  * @ass: an assembly
1643  *
1644  * Load the list of friend assemblies that are allowed to access
1645  * the assembly's internal types and members. They are stored as assembly
1646  * names in custom attributes.
1647  *
1648  * This is an internal method, we need this because when we load mscorlib
1649  * we do not have the mono_defaults.internals_visible_class loaded yet,
1650  * so we need to load these after we initialize the runtime. 
1651  *
1652  * LOCKING: Acquires the assemblies lock plus the loader lock.
1653  */
1654 void
1655 mono_assembly_load_friends (MonoAssembly* ass)
1656 {
1657         int i;
1658         MonoCustomAttrInfo* attrs;
1659         GSList *list;
1660
1661         if (ass->friend_assembly_names_inited)
1662                 return;
1663
1664         attrs = mono_custom_attrs_from_assembly (ass);
1665         if (!attrs) {
1666                 mono_assemblies_lock ();
1667                 ass->friend_assembly_names_inited = TRUE;
1668                 mono_assemblies_unlock ();
1669                 return;
1670         }
1671
1672         mono_assemblies_lock ();
1673         if (ass->friend_assembly_names_inited) {
1674                 mono_assemblies_unlock ();
1675                 return;
1676         }
1677         mono_assemblies_unlock ();
1678
1679         list = NULL;
1680         /* 
1681          * We build the list outside the assemblies lock, the worse that can happen
1682          * is that we'll need to free the allocated list.
1683          */
1684         for (i = 0; i < attrs->num_attrs; ++i) {
1685                 MonoCustomAttrEntry *attr = &attrs->attrs [i];
1686                 MonoAssemblyName *aname;
1687                 const gchar *data;
1688                 /* Do some sanity checking */
1689                 if (!attr->ctor || attr->ctor->klass != mono_defaults.internals_visible_class)
1690                         continue;
1691                 if (attr->data_size < 4)
1692                         continue;
1693                 data = (const char*)attr->data;
1694                 /* 0xFF means null string, see custom attr format */
1695                 if (data [0] != 1 || data [1] != 0 || (data [2] & 0xFF) == 0xFF)
1696                         continue;
1697                 mono_metadata_decode_value (data + 2, &data);
1698                 aname = g_new0 (MonoAssemblyName, 1);
1699                 /*g_print ("friend ass: %s\n", data);*/
1700                 if (mono_assembly_name_parse_full (data, aname, TRUE, NULL, NULL)) {
1701                         list = g_slist_prepend (list, aname);
1702                 } else {
1703                         g_free (aname);
1704                 }
1705         }
1706         mono_custom_attrs_free (attrs);
1707
1708         mono_assemblies_lock ();
1709         if (ass->friend_assembly_names_inited) {
1710                 mono_assemblies_unlock ();
1711                 g_slist_foreach (list, free_item, NULL);
1712                 g_slist_free (list);
1713                 return;
1714         }
1715         ass->friend_assembly_names = list;
1716
1717         /* Because of the double checked locking pattern above */
1718         mono_memory_barrier ();
1719         ass->friend_assembly_names_inited = TRUE;
1720         mono_assemblies_unlock ();
1721 }
1722
1723 /**
1724  * mono_assembly_open:
1725  * @filename: Opens the assembly pointed out by this name
1726  * @status: where a status code can be returned
1727  *
1728  * mono_assembly_open opens the PE-image pointed by @filename, and
1729  * loads any external assemblies referenced by it.
1730  *
1731  * Return: a pointer to the MonoAssembly if @filename contains a valid
1732  * assembly or NULL on error.  Details about the error are stored in the
1733  * @status variable.
1734  */
1735 MonoAssembly *
1736 mono_assembly_open (const char *filename, MonoImageOpenStatus *status)
1737 {
1738         return mono_assembly_open_full (filename, status, FALSE);
1739 }
1740
1741 MonoAssembly *
1742 mono_assembly_load_from_full (MonoImage *image, const char*fname, 
1743                               MonoImageOpenStatus *status, gboolean refonly)
1744 {
1745         MonoAssembly *ass, *ass2;
1746         char *base_dir;
1747
1748         if (!image->tables [MONO_TABLE_ASSEMBLY].rows) {
1749                 /* 'image' doesn't have a manifest -- maybe someone is trying to Assembly.Load a .netmodule */
1750                 *status = MONO_IMAGE_IMAGE_INVALID;
1751                 return NULL;
1752         }
1753
1754 #if defined (HOST_WIN32)
1755         {
1756                 gchar *tmp_fn;
1757                 int i;
1758
1759                 tmp_fn = g_strdup (fname);
1760                 for (i = strlen (tmp_fn) - 1; i >= 0; i--) {
1761                         if (tmp_fn [i] == '/')
1762                                 tmp_fn [i] = '\\';
1763                 }
1764
1765                 base_dir = absolute_dir (tmp_fn);
1766                 g_free (tmp_fn);
1767         }
1768 #else
1769         base_dir = absolute_dir (fname);
1770 #endif
1771
1772         /*
1773          * Create assembly struct, and enter it into the assembly cache
1774          */
1775         ass = g_new0 (MonoAssembly, 1);
1776         ass->basedir = base_dir;
1777         ass->ref_only = refonly;
1778         ass->image = image;
1779
1780         mono_profiler_assembly_event (ass, MONO_PROFILE_START_LOAD);
1781
1782         mono_assembly_fill_assembly_name (image, &ass->aname);
1783
1784         if (mono_defaults.corlib && strcmp (ass->aname.name, "mscorlib") == 0) {
1785                 // MS.NET doesn't support loading other mscorlibs
1786                 g_free (ass);
1787                 g_free (base_dir);
1788                 mono_image_addref (mono_defaults.corlib);
1789                 *status = MONO_IMAGE_OK;
1790                 return mono_defaults.corlib->assembly;
1791         }
1792
1793         /* Add a non-temporary reference because of ass->image */
1794         mono_image_addref (image);
1795
1796         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Image addref %s[%p] -> %s[%p]: %d", ass->aname.name, ass, image->name, image, image->ref_count);
1797
1798         /* 
1799          * The load hooks might take locks so we can't call them while holding the
1800          * assemblies lock.
1801          */
1802         if (ass->aname.name) {
1803                 ass2 = mono_assembly_invoke_search_hook_internal (&ass->aname, NULL, refonly, FALSE);
1804                 if (ass2) {
1805                         g_free (ass);
1806                         g_free (base_dir);
1807                         mono_image_close (image);
1808                         *status = MONO_IMAGE_OK;
1809                         return ass2;
1810                 }
1811         }
1812
1813         mono_assemblies_lock ();
1814
1815         if (image->assembly) {
1816                 /* 
1817                  * This means another thread has already loaded the assembly, but not yet
1818                  * called the load hooks so the search hook can't find the assembly.
1819                  */
1820                 mono_assemblies_unlock ();
1821                 ass2 = image->assembly;
1822                 g_free (ass);
1823                 g_free (base_dir);
1824                 mono_image_close (image);
1825                 *status = MONO_IMAGE_OK;
1826                 return ass2;
1827         }
1828
1829         image->assembly = ass;
1830
1831         loaded_assemblies = g_list_prepend (loaded_assemblies, ass);
1832         mono_assemblies_unlock ();
1833
1834 #ifdef HOST_WIN32
1835         if (image->is_module_handle)
1836                 mono_image_fixup_vtable (image);
1837 #endif
1838
1839         mono_assembly_invoke_load_hook (ass);
1840
1841         mono_profiler_assembly_loaded (ass, MONO_PROFILE_OK);
1842         
1843         return ass;
1844 }
1845
1846 MonoAssembly *
1847 mono_assembly_load_from (MonoImage *image, const char *fname,
1848                          MonoImageOpenStatus *status)
1849 {
1850         return mono_assembly_load_from_full (image, fname, status, FALSE);
1851 }
1852
1853 /**
1854  * mono_assembly_name_free:
1855  * @aname: assembly name to free
1856  * 
1857  * Frees the provided assembly name object.
1858  * (it does not frees the object itself, only the name members).
1859  */
1860 void
1861 mono_assembly_name_free (MonoAssemblyName *aname)
1862 {
1863         if (aname == NULL)
1864                 return;
1865
1866         g_free ((void *) aname->name);
1867         g_free ((void *) aname->culture);
1868         g_free ((void *) aname->hash_value);
1869 }
1870
1871 static gboolean
1872 parse_public_key (const gchar *key, gchar** pubkey, gboolean *is_ecma)
1873 {
1874         const gchar *pkey;
1875         gchar header [16], val, *arr;
1876         gint i, j, offset, bitlen, keylen, pkeylen;
1877         
1878         keylen = strlen (key) >> 1;
1879         if (keylen < 1)
1880                 return FALSE;
1881
1882         /* allow the ECMA standard key */
1883         if (strcmp (key, "00000000000000000400000000000000") == 0) {
1884                 if (pubkey) {
1885                         *pubkey = g_strdup (key);
1886                         *is_ecma = TRUE;
1887                 }
1888                 return TRUE;
1889         }
1890         *is_ecma = FALSE;
1891         val = g_ascii_xdigit_value (key [0]) << 4;
1892         val |= g_ascii_xdigit_value (key [1]);
1893         switch (val) {
1894                 case 0x00:
1895                         if (keylen < 13)
1896                                 return FALSE;
1897                         val = g_ascii_xdigit_value (key [24]);
1898                         val |= g_ascii_xdigit_value (key [25]);
1899                         if (val != 0x06)
1900                                 return FALSE;
1901                         pkey = key + 24;
1902                         break;
1903                 case 0x06:
1904                         pkey = key;
1905                         break;
1906                 default:
1907                         return FALSE;
1908         }
1909                 
1910         /* We need the first 16 bytes
1911         * to check whether this key is valid or not */
1912         pkeylen = strlen (pkey) >> 1;
1913         if (pkeylen < 16)
1914                 return FALSE;
1915                 
1916         for (i = 0, j = 0; i < 16; i++) {
1917                 header [i] = g_ascii_xdigit_value (pkey [j++]) << 4;
1918                 header [i] |= g_ascii_xdigit_value (pkey [j++]);
1919         }
1920
1921         if (header [0] != 0x06 || /* PUBLICKEYBLOB (0x06) */
1922                         header [1] != 0x02 || /* Version (0x02) */
1923                         header [2] != 0x00 || /* Reserved (word) */
1924                         header [3] != 0x00 ||
1925                         (guint)(read32 (header + 8)) != 0x31415352) /* DWORD magic = RSA1 */
1926                 return FALSE;
1927
1928         /* Based on this length, we _should_ be able to know if the length is right */
1929         bitlen = read32 (header + 12) >> 3;
1930         if ((bitlen + 16 + 4) != pkeylen)
1931                 return FALSE;
1932
1933         /* parsing is OK and the public key itself is not requested back */
1934         if (!pubkey)
1935                 return TRUE;
1936                 
1937         /* Encode the size of the blob */
1938         offset = 0;
1939         if (keylen <= 127) {
1940                 arr = (gchar *)g_malloc (keylen + 1);
1941                 arr [offset++] = keylen;
1942         } else {
1943                 arr = (gchar *)g_malloc (keylen + 2);
1944                 arr [offset++] = 0x80; /* 10bs */
1945                 arr [offset++] = keylen;
1946         }
1947                 
1948         for (i = offset, j = 0; i < keylen + offset; i++) {
1949                 arr [i] = g_ascii_xdigit_value (key [j++]) << 4;
1950                 arr [i] |= g_ascii_xdigit_value (key [j++]);
1951         }
1952
1953         *pubkey = arr;
1954
1955         return TRUE;
1956 }
1957
1958 static gboolean
1959 build_assembly_name (const char *name, const char *version, const char *culture, const char *token, const char *key, guint32 flags, guint32 arch, MonoAssemblyName *aname, gboolean save_public_key)
1960 {
1961         gint major, minor, build, revision;
1962         gint len;
1963         gint version_parts;
1964         gchar *pkey, *pkeyptr, *encoded, tok [8];
1965
1966         memset (aname, 0, sizeof (MonoAssemblyName));
1967
1968         if (version) {
1969                 version_parts = sscanf (version, "%u.%u.%u.%u", &major, &minor, &build, &revision);
1970                 if (version_parts < 2 || version_parts > 4)
1971                         return FALSE;
1972
1973                 /* FIXME: we should set build & revision to -1 (instead of 0)
1974                 if these are not set in the version string. That way, later on,
1975                 we can still determine if these were specified. */
1976                 aname->major = major;
1977                 aname->minor = minor;
1978                 if (version_parts >= 3)
1979                         aname->build = build;
1980                 else
1981                         aname->build = 0;
1982                 if (version_parts == 4)
1983                         aname->revision = revision;
1984                 else
1985                         aname->revision = 0;
1986         }
1987         
1988         aname->flags = flags;
1989         aname->arch = arch;
1990         aname->name = g_strdup (name);
1991         
1992         if (culture) {
1993                 if (g_ascii_strcasecmp (culture, "neutral") == 0)
1994                         aname->culture = g_strdup ("");
1995                 else
1996                         aname->culture = g_strdup (culture);
1997         }
1998         
1999         if (token && strncmp (token, "null", 4) != 0) {
2000                 char *lower;
2001
2002                 /* the constant includes the ending NULL, hence the -1 */
2003                 if (strlen (token) != (MONO_PUBLIC_KEY_TOKEN_LENGTH - 1)) {
2004                         mono_assembly_name_free (aname);
2005                         return FALSE;
2006                 }
2007                 lower = g_ascii_strdown (token, MONO_PUBLIC_KEY_TOKEN_LENGTH);
2008                 g_strlcpy ((char*)aname->public_key_token, lower, MONO_PUBLIC_KEY_TOKEN_LENGTH);
2009                 g_free (lower);
2010         }
2011
2012         if (key) {
2013                 gboolean is_ecma;
2014                 if (strcmp (key, "null") == 0 || !parse_public_key (key, &pkey, &is_ecma)) {
2015                         mono_assembly_name_free (aname);
2016                         return FALSE;
2017                 }
2018
2019                 if (is_ecma) {
2020                         if (save_public_key)
2021                                 aname->public_key = (guint8*)pkey;
2022                         else
2023                                 g_free (pkey);
2024                         g_strlcpy ((gchar*)aname->public_key_token, "b77a5c561934e089", MONO_PUBLIC_KEY_TOKEN_LENGTH);
2025                         return TRUE;
2026                 }
2027                 
2028                 len = mono_metadata_decode_blob_size ((const gchar *) pkey, (const gchar **) &pkeyptr);
2029                 // We also need to generate the key token
2030                 mono_digest_get_public_token ((guchar*) tok, (guint8*) pkeyptr, len);
2031                 encoded = encode_public_tok ((guchar*) tok, 8);
2032                 g_strlcpy ((gchar*)aname->public_key_token, encoded, MONO_PUBLIC_KEY_TOKEN_LENGTH);
2033                 g_free (encoded);
2034
2035                 if (save_public_key)
2036                         aname->public_key = (guint8*) pkey;
2037                 else
2038                         g_free (pkey);
2039         }
2040
2041         return TRUE;
2042 }
2043
2044 static gboolean
2045 parse_assembly_directory_name (const char *name, const char *dirname, MonoAssemblyName *aname)
2046 {
2047         gchar **parts;
2048         gboolean res;
2049         
2050         parts = g_strsplit (dirname, "_", 3);
2051         if (!parts || !parts[0] || !parts[1] || !parts[2]) {
2052                 g_strfreev (parts);
2053                 return FALSE;
2054         }
2055         
2056         res = build_assembly_name (name, parts[0], parts[1], parts[2], NULL, 0, 0, aname, FALSE);
2057         g_strfreev (parts);
2058         return res;
2059 }
2060
2061 static gboolean
2062 split_key_value (const gchar *pair, gchar **key, guint32 *keylen, gchar **value)
2063 {
2064         char *eqsign = strchr (pair, '=');
2065         if (!eqsign) {
2066                 *key = NULL;
2067                 *keylen = 0;
2068                 *value = NULL;
2069                 return FALSE;
2070         }
2071
2072         *key = (gchar*)pair;
2073         *keylen = eqsign - *key;
2074         while (*keylen > 0 && g_ascii_isspace ((*key) [*keylen - 1]))
2075                 (*keylen)--;
2076         *value = g_strstrip (eqsign + 1);
2077         return TRUE;
2078 }
2079
2080 gboolean
2081 mono_assembly_name_parse_full (const char *name, MonoAssemblyName *aname, gboolean save_public_key, gboolean *is_version_defined, gboolean *is_token_defined)
2082 {
2083         gchar *dllname;
2084         gchar *dllname_uq;
2085         gchar *version = NULL;
2086         gchar *version_uq;
2087         gchar *culture = NULL;
2088         gchar *culture_uq;
2089         gchar *token = NULL;
2090         gchar *token_uq;
2091         gchar *key = NULL;
2092         gchar *key_uq;
2093         gchar *retargetable = NULL;
2094         gchar *retargetable_uq;
2095         gchar *procarch;
2096         gchar *procarch_uq;
2097         gboolean res;
2098         gchar *value, *part_name;
2099         guint32 part_name_len;
2100         gchar **parts;
2101         gchar **tmp;
2102         gboolean version_defined;
2103         gboolean token_defined;
2104         guint32 flags = 0;
2105         guint32 arch = MONO_PROCESSOR_ARCHITECTURE_NONE;
2106
2107         if (!is_version_defined)
2108                 is_version_defined = &version_defined;
2109         *is_version_defined = FALSE;
2110         if (!is_token_defined)
2111                 is_token_defined = &token_defined;
2112         *is_token_defined = FALSE;
2113         
2114         parts = tmp = g_strsplit (name, ",", 6);
2115         if (!tmp || !*tmp) {
2116                 g_strfreev (tmp);
2117                 return FALSE;
2118         }
2119
2120         dllname = g_strstrip (*tmp);
2121         
2122         tmp++;
2123
2124         while (*tmp) {
2125                 if (!split_key_value (g_strstrip (*tmp), &part_name, &part_name_len, &value))
2126                         goto cleanup_and_fail;
2127
2128                 if (part_name_len == 7 && !g_ascii_strncasecmp (part_name, "Version", part_name_len)) {
2129                         *is_version_defined = TRUE;
2130                         version = value;
2131                         if (strlen (version) == 0) {
2132                                 goto cleanup_and_fail;
2133                         }
2134                         tmp++;
2135                         continue;
2136                 }
2137
2138                 if (part_name_len == 7 && !g_ascii_strncasecmp (part_name, "Culture", part_name_len)) {
2139                         culture = value;
2140                         if (strlen (culture) == 0) {
2141                                 goto cleanup_and_fail;
2142                         }
2143                         tmp++;
2144                         continue;
2145                 }
2146
2147                 if (part_name_len == 14 && !g_ascii_strncasecmp (part_name, "PublicKeyToken", part_name_len)) {
2148                         *is_token_defined = TRUE;
2149                         token = value;
2150                         if (strlen (token) == 0) {
2151                                 goto cleanup_and_fail;
2152                         }
2153                         tmp++;
2154                         continue;
2155                 }
2156
2157                 if (part_name_len == 9 && !g_ascii_strncasecmp (part_name, "PublicKey", part_name_len)) {
2158                         key = value;
2159                         if (strlen (key) == 0) {
2160                                 goto cleanup_and_fail;
2161                         }
2162                         tmp++;
2163                         continue;
2164                 }
2165
2166                 if (part_name_len == 12 && !g_ascii_strncasecmp (part_name, "Retargetable", part_name_len)) {
2167                         retargetable = value;
2168                         retargetable_uq = unquote (retargetable);
2169                         if (retargetable_uq != NULL)
2170                                 retargetable = retargetable_uq;
2171
2172                         if (!g_ascii_strcasecmp (retargetable, "yes")) {
2173                                 flags |= ASSEMBLYREF_RETARGETABLE_FLAG;
2174                         } else if (g_ascii_strcasecmp (retargetable, "no")) {
2175                                 free (retargetable_uq);
2176                                 goto cleanup_and_fail;
2177                         }
2178
2179                         free (retargetable_uq);
2180                         tmp++;
2181                         continue;
2182                 }
2183
2184                 if (part_name_len == 21 && !g_ascii_strncasecmp (part_name, "ProcessorArchitecture", part_name_len)) {
2185                         procarch = value;
2186                         procarch_uq = unquote (procarch);
2187                         if (procarch_uq != NULL)
2188                                 procarch = procarch_uq;
2189
2190                         if (!g_ascii_strcasecmp (procarch, "MSIL"))
2191                                 arch = MONO_PROCESSOR_ARCHITECTURE_MSIL;
2192                         else if (!g_ascii_strcasecmp (procarch, "X86"))
2193                                 arch = MONO_PROCESSOR_ARCHITECTURE_X86;
2194                         else if (!g_ascii_strcasecmp (procarch, "IA64"))
2195                                 arch = MONO_PROCESSOR_ARCHITECTURE_IA64;
2196                         else if (!g_ascii_strcasecmp (procarch, "AMD64"))
2197                                 arch = MONO_PROCESSOR_ARCHITECTURE_AMD64;
2198                         else {
2199                                 free (procarch_uq);
2200                                 goto cleanup_and_fail;
2201                         }
2202
2203                         free (procarch_uq);
2204                         tmp++;
2205                         continue;
2206                 }
2207
2208                 g_strfreev (parts);
2209                 return FALSE;
2210         }
2211
2212         /* if retargetable flag is set, then we must have a fully qualified name */
2213         if (retargetable != NULL && (version == NULL || culture == NULL || (key == NULL && token == NULL))) {
2214                 goto cleanup_and_fail;
2215         }
2216
2217         dllname_uq = unquote (dllname);
2218         version_uq = unquote (version);
2219         culture_uq = unquote (culture);
2220         token_uq = unquote (token);
2221         key_uq = unquote (key);
2222
2223         res = build_assembly_name (
2224                 dllname_uq == NULL ? dllname : dllname_uq,
2225                 version_uq == NULL ? version : version_uq,
2226                 culture_uq == NULL ? culture : culture_uq,
2227                 token_uq == NULL ? token : token_uq,
2228                 key_uq == NULL ? key : key_uq,
2229                 flags, arch, aname, save_public_key);
2230
2231         free (dllname_uq);
2232         free (version_uq);
2233         free (culture_uq);
2234         free (token_uq);
2235         free (key_uq);
2236
2237         g_strfreev (parts);
2238         return res;
2239
2240 cleanup_and_fail:
2241         g_strfreev (parts);
2242         return FALSE;
2243 }
2244
2245 static char*
2246 unquote (const char *str)
2247 {
2248         gint slen;
2249         const char *end;
2250
2251         if (str == NULL)
2252                 return NULL;
2253
2254         slen = strlen (str);
2255         if (slen < 2)
2256                 return NULL;
2257
2258         if (*str != '\'' && *str != '\"')
2259                 return NULL;
2260
2261         end = str + slen - 1;
2262         if (*str != *end)
2263                 return NULL;
2264
2265         return g_strndup (str + 1, slen - 2);
2266 }
2267
2268 /**
2269  * mono_assembly_name_parse:
2270  * @name: name to parse
2271  * @aname: the destination assembly name
2272  * 
2273  * Parses an assembly qualified type name and assigns the name,
2274  * version, culture and token to the provided assembly name object.
2275  *
2276  * Returns: true if the name could be parsed.
2277  */
2278 gboolean
2279 mono_assembly_name_parse (const char *name, MonoAssemblyName *aname)
2280 {
2281         return mono_assembly_name_parse_full (name, aname, FALSE, NULL, NULL);
2282 }
2283
2284 /**
2285  * mono_assembly_name_new:
2286  * @name: name to parse
2287  *
2288  * Allocate a new MonoAssemblyName and fill its values from the
2289  * passed @name.
2290  *
2291  * Returns: a newly allocated structure or NULL if there was any failure.
2292  */
2293 MonoAssemblyName*
2294 mono_assembly_name_new (const char *name)
2295 {
2296         MonoAssemblyName *aname = g_new0 (MonoAssemblyName, 1);
2297         if (mono_assembly_name_parse (name, aname))
2298                 return aname;
2299         g_free (aname);
2300         return NULL;
2301 }
2302
2303 const char*
2304 mono_assembly_name_get_name (MonoAssemblyName *aname)
2305 {
2306         return aname->name;
2307 }
2308
2309 const char*
2310 mono_assembly_name_get_culture (MonoAssemblyName *aname)
2311 {
2312         return aname->culture;
2313 }
2314
2315 mono_byte*
2316 mono_assembly_name_get_pubkeytoken (MonoAssemblyName *aname)
2317 {
2318         if (aname->public_key_token [0])
2319                 return aname->public_key_token;
2320         return NULL;
2321 }
2322
2323 uint16_t
2324 mono_assembly_name_get_version (MonoAssemblyName *aname, uint16_t *minor, uint16_t *build, uint16_t *revision)
2325 {
2326         if (minor)
2327                 *minor = aname->minor;
2328         if (build)
2329                 *build = aname->build;
2330         if (revision)
2331                 *revision = aname->revision;
2332         return aname->major;
2333 }
2334
2335 static MonoAssembly*
2336 probe_for_partial_name (const char *basepath, const char *fullname, MonoAssemblyName *aname, MonoImageOpenStatus *status)
2337 {
2338         gchar *fullpath = NULL;
2339         GDir *dirhandle;
2340         const char* direntry;
2341         MonoAssemblyName gac_aname;
2342         gint major=-1, minor=0, build=0, revision=0;
2343         gboolean exact_version;
2344         
2345         dirhandle = g_dir_open (basepath, 0, NULL);
2346         if (!dirhandle)
2347                 return NULL;
2348                 
2349         exact_version = (aname->major | aname->minor | aname->build | aname->revision) != 0;
2350
2351         while ((direntry = g_dir_read_name (dirhandle))) {
2352                 gboolean match = TRUE;
2353                 
2354                 if(!parse_assembly_directory_name (aname->name, direntry, &gac_aname))
2355                         continue;
2356                 
2357                 if (aname->culture != NULL && strcmp (aname->culture, gac_aname.culture) != 0)
2358                         match = FALSE;
2359                         
2360                 if (match && strlen ((char*)aname->public_key_token) > 0 && 
2361                                 !mono_public_tokens_are_equal (aname->public_key_token, gac_aname.public_key_token))
2362                         match = FALSE;
2363                 
2364                 if (match) {
2365                         if (exact_version) {
2366                                 match = (aname->major == gac_aname.major && aname->minor == gac_aname.minor &&
2367                                                  aname->build == gac_aname.build && aname->revision == gac_aname.revision); 
2368                         }
2369                         else if (gac_aname.major < major)
2370                                 match = FALSE;
2371                         else if (gac_aname.major == major) {
2372                                 if (gac_aname.minor < minor)
2373                                         match = FALSE;
2374                                 else if (gac_aname.minor == minor) {
2375                                         if (gac_aname.build < build)
2376                                                 match = FALSE;
2377                                         else if (gac_aname.build == build && gac_aname.revision <= revision)
2378                                                 match = FALSE; 
2379                                 }
2380                         }
2381                 }
2382                 
2383                 if (match) {
2384                         major = gac_aname.major;
2385                         minor = gac_aname.minor;
2386                         build = gac_aname.build;
2387                         revision = gac_aname.revision;
2388                         g_free (fullpath);
2389                         fullpath = g_build_path (G_DIR_SEPARATOR_S, basepath, direntry, fullname, NULL);
2390                 }
2391
2392                 mono_assembly_name_free (&gac_aname);
2393         }
2394         
2395         g_dir_close (dirhandle);
2396         
2397         if (fullpath == NULL)
2398                 return NULL;
2399         else {
2400                 MonoAssembly *res = mono_assembly_open (fullpath, status);
2401                 g_free (fullpath);
2402                 return res;
2403         }
2404 }
2405
2406 MonoAssembly*
2407 mono_assembly_load_with_partial_name (const char *name, MonoImageOpenStatus *status)
2408 {
2409         MonoAssembly *res;
2410         MonoAssemblyName *aname, base_name;
2411         MonoAssemblyName mapped_aname;
2412         gchar *fullname, *gacpath;
2413         gchar **paths;
2414
2415         memset (&base_name, 0, sizeof (MonoAssemblyName));
2416         aname = &base_name;
2417
2418         if (!mono_assembly_name_parse (name, aname))
2419                 return NULL;
2420
2421         /* 
2422          * If no specific version has been requested, make sure we load the
2423          * correct version for system assemblies.
2424          */ 
2425         if ((aname->major | aname->minor | aname->build | aname->revision) == 0)
2426                 aname = mono_assembly_remap_version (aname, &mapped_aname);
2427         
2428         res = mono_assembly_loaded (aname);
2429         if (res) {
2430                 mono_assembly_name_free (aname);
2431                 return res;
2432         }
2433
2434         res = invoke_assembly_preload_hook (aname, assemblies_path);
2435         if (res) {
2436                 res->in_gac = FALSE;
2437                 mono_assembly_name_free (aname);
2438                 return res;
2439         }
2440
2441         fullname = g_strdup_printf ("%s.dll", aname->name);
2442
2443         if (extra_gac_paths) {
2444                 paths = extra_gac_paths;
2445                 while (!res && *paths) {
2446                         gacpath = g_build_path (G_DIR_SEPARATOR_S, *paths, "lib", "mono", "gac", aname->name, NULL);
2447                         res = probe_for_partial_name (gacpath, fullname, aname, status);
2448                         g_free (gacpath);
2449                         paths++;
2450                 }
2451         }
2452
2453         if (res) {
2454                 res->in_gac = TRUE;
2455                 g_free (fullname);
2456                 mono_assembly_name_free (aname);
2457                 return res;
2458         }
2459
2460         gacpath = g_build_path (G_DIR_SEPARATOR_S, mono_assembly_getrootdir (), "mono", "gac", aname->name, NULL);
2461         res = probe_for_partial_name (gacpath, fullname, aname, status);
2462         g_free (gacpath);
2463
2464         if (res)
2465                 res->in_gac = TRUE;
2466         else {
2467                 MonoDomain *domain = mono_domain_get ();
2468                 MonoReflectionAssembly *refasm = mono_try_assembly_resolve (domain, mono_string_new (domain, name), NULL, FALSE);
2469                 if (refasm)
2470                         res = refasm->assembly;
2471         }
2472         
2473         g_free (fullname);
2474         mono_assembly_name_free (aname);
2475
2476         return res;
2477 }
2478
2479 static MonoBoolean
2480 mono_assembly_is_in_gac (const gchar *filename)
2481 {
2482         const gchar *rootdir;
2483         gchar *gp;
2484         gchar **paths;
2485
2486         if (filename == NULL)
2487                 return FALSE;
2488
2489         for (paths = extra_gac_paths; paths && *paths; paths++) {
2490                 if (strstr (*paths, filename) != *paths)
2491                         continue;
2492
2493                 gp = (gchar *) (filename + strlen (*paths));
2494                 if (*gp != G_DIR_SEPARATOR)
2495                         continue;
2496                 gp++;
2497                 if (strncmp (gp, "lib", 3))
2498                         continue;
2499                 gp += 3;
2500                 if (*gp != G_DIR_SEPARATOR)
2501                         continue;
2502                 gp++;
2503                 if (strncmp (gp, "mono", 4))
2504                         continue;
2505                 gp += 4;
2506                 if (*gp != G_DIR_SEPARATOR)
2507                         continue;
2508                 gp++;
2509                 if (strncmp (gp, "gac", 3))
2510                         continue;
2511                 gp += 3;
2512                 if (*gp != G_DIR_SEPARATOR)
2513                         continue;
2514
2515                 return TRUE;
2516         }
2517
2518         rootdir = mono_assembly_getrootdir ();
2519         if (strstr (filename, rootdir) != filename)
2520                 return FALSE;
2521
2522         gp = (gchar *) (filename + strlen (rootdir));
2523         if (*gp != G_DIR_SEPARATOR)
2524                 return FALSE;
2525         gp++;
2526         if (strncmp (gp, "mono", 4))
2527                 return FALSE;
2528         gp += 4;
2529         if (*gp != G_DIR_SEPARATOR)
2530                 return FALSE;
2531         gp++;
2532         if (strncmp (gp, "gac", 3))
2533                 return FALSE;
2534         gp += 3;
2535         if (*gp != G_DIR_SEPARATOR)
2536                 return FALSE;
2537         return TRUE;
2538 }
2539
2540 static MonoImage*
2541 mono_assembly_load_publisher_policy (MonoAssemblyName *aname)
2542 {
2543         MonoImage *image;
2544         gchar *filename, *pname, *name, *culture, *version, *fullpath, *subpath;
2545         gchar **paths;
2546         gint32 len;
2547
2548         if (strstr (aname->name, ".dll")) {
2549                 len = strlen (aname->name) - 4;
2550                 name = (gchar *)g_malloc (len);
2551                 strncpy (name, aname->name, len);
2552         } else
2553                 name = g_strdup (aname->name);
2554         
2555         if (aname->culture)
2556                 culture = g_utf8_strdown (aname->culture, -1);
2557         else
2558                 culture = g_strdup ("");
2559         
2560         pname = g_strdup_printf ("policy.%d.%d.%s", aname->major, aname->minor, name);
2561         version = g_strdup_printf ("0.0.0.0_%s_%s", culture, aname->public_key_token);
2562         g_free (name);
2563         g_free (culture);
2564         
2565         filename = g_strconcat (pname, ".dll", NULL);
2566         subpath = g_build_path (G_DIR_SEPARATOR_S, pname, version, filename, NULL);
2567         g_free (pname);
2568         g_free (version);
2569         g_free (filename);
2570
2571         image = NULL;
2572         if (extra_gac_paths) {
2573                 paths = extra_gac_paths;
2574                 while (!image && *paths) {
2575                         fullpath = g_build_path (G_DIR_SEPARATOR_S, *paths,
2576                                         "lib", "mono", "gac", subpath, NULL);
2577                         image = mono_image_open (fullpath, NULL);
2578                         g_free (fullpath);
2579                         paths++;
2580                 }
2581         }
2582
2583         if (image) {
2584                 g_free (subpath);
2585                 return image;
2586         }
2587
2588         fullpath = g_build_path (G_DIR_SEPARATOR_S, mono_assembly_getrootdir (), 
2589                         "mono", "gac", subpath, NULL);
2590         image = mono_image_open (fullpath, NULL);
2591         g_free (subpath);
2592         g_free (fullpath);
2593         
2594         return image;
2595 }
2596
2597 static MonoAssemblyName*
2598 mono_assembly_bind_version (MonoAssemblyBindingInfo *info, MonoAssemblyName *aname, MonoAssemblyName *dest_name)
2599 {
2600         memcpy (dest_name, aname, sizeof (MonoAssemblyName));
2601         dest_name->major = info->new_version.major;
2602         dest_name->minor = info->new_version.minor;
2603         dest_name->build = info->new_version.build;
2604         dest_name->revision = info->new_version.revision;
2605         
2606         return dest_name;
2607 }
2608
2609 /* LOCKING: assembly_binding lock must be held */
2610 static MonoAssemblyBindingInfo*
2611 search_binding_loaded (MonoAssemblyName *aname)
2612 {
2613         GSList *tmp;
2614
2615         for (tmp = loaded_assembly_bindings; tmp; tmp = tmp->next) {
2616                 MonoAssemblyBindingInfo *info = (MonoAssemblyBindingInfo *)tmp->data;
2617                 if (assembly_binding_maps_name (info, aname))
2618                         return info;
2619         }
2620
2621         return NULL;
2622 }
2623
2624 static inline gboolean
2625 info_compare_versions (AssemblyVersionSet *left, AssemblyVersionSet *right)
2626 {
2627         if (left->major != right->major || left->minor != right->minor ||
2628             left->build != right->build || left->revision != right->revision)
2629                 return FALSE;
2630
2631         return TRUE;
2632 }
2633
2634 static inline gboolean
2635 info_versions_equal (MonoAssemblyBindingInfo *left, MonoAssemblyBindingInfo *right)
2636 {
2637         if (left->has_old_version_bottom != right->has_old_version_bottom)
2638                 return FALSE;
2639
2640         if (left->has_old_version_top != right->has_old_version_top)
2641                 return FALSE;
2642
2643         if (left->has_new_version != right->has_new_version)
2644                 return FALSE;
2645
2646         if (left->has_old_version_bottom && !info_compare_versions (&left->old_version_bottom, &right->old_version_bottom))
2647                 return FALSE;
2648
2649         if (left->has_old_version_top && !info_compare_versions (&left->old_version_top, &right->old_version_top))
2650                 return FALSE;
2651
2652         if (left->has_new_version && !info_compare_versions (&left->new_version, &right->new_version))
2653                 return FALSE;
2654
2655         return TRUE;
2656 }
2657
2658 /* LOCKING: assumes all the necessary locks are held */
2659 static void
2660 assembly_binding_info_parsed (MonoAssemblyBindingInfo *info, void *user_data)
2661 {
2662         MonoAssemblyBindingInfo *info_copy;
2663         GSList *tmp;
2664         MonoAssemblyBindingInfo *info_tmp;
2665         MonoDomain *domain = (MonoDomain*)user_data;
2666
2667         if (!domain)
2668                 return;
2669
2670         for (tmp = domain->assembly_bindings; tmp; tmp = tmp->next) {
2671                 info_tmp = (MonoAssemblyBindingInfo *)tmp->data;
2672                 if (strcmp (info->name, info_tmp->name) == 0 && info_versions_equal (info, info_tmp))
2673                         return;
2674         }
2675
2676         info_copy = (MonoAssemblyBindingInfo *)mono_mempool_alloc0 (domain->mp, sizeof (MonoAssemblyBindingInfo));
2677         memcpy (info_copy, info, sizeof (MonoAssemblyBindingInfo));
2678         if (info->name)
2679                 info_copy->name = mono_mempool_strdup (domain->mp, info->name);
2680         if (info->culture)
2681                 info_copy->culture = mono_mempool_strdup (domain->mp, info->culture);
2682
2683         domain->assembly_bindings = g_slist_append_mempool (domain->mp, domain->assembly_bindings, info_copy);
2684 }
2685
2686 static int
2687 get_version_number (int major, int minor)
2688 {
2689         return major * 256 + minor;
2690 }
2691
2692 static inline gboolean
2693 info_major_minor_in_range (MonoAssemblyBindingInfo *info, MonoAssemblyName *aname)
2694 {
2695         int aname_version_number = get_version_number (aname->major, aname->minor);
2696         if (!info->has_old_version_bottom)
2697                 return FALSE;
2698
2699         if (get_version_number (info->old_version_bottom.major, info->old_version_bottom.minor) > aname_version_number)
2700                 return FALSE;
2701
2702         if (info->has_old_version_top && get_version_number (info->old_version_top.major, info->old_version_top.minor) < aname_version_number)
2703                 return FALSE;
2704
2705         /* This is not the nicest way to do it, but it's a by-product of the way parsing is done */
2706         info->major = aname->major;
2707         info->minor = aname->minor;
2708
2709         return TRUE;
2710 }
2711
2712 /* LOCKING: Assumes that we are already locked - both loader and domain locks */
2713 static MonoAssemblyBindingInfo*
2714 get_per_domain_assembly_binding_info (MonoDomain *domain, MonoAssemblyName *aname)
2715 {
2716         MonoAssemblyBindingInfo *info;
2717         GSList *list;
2718
2719         if (!domain->assembly_bindings)
2720                 return NULL;
2721
2722         info = NULL;
2723         for (list = domain->assembly_bindings; list; list = list->next) {
2724                 info = (MonoAssemblyBindingInfo *)list->data;
2725                 if (info && !strcmp (aname->name, info->name) && info_major_minor_in_range (info, aname))
2726                         break;
2727                 info = NULL;
2728         }
2729
2730         if (info) {
2731                 if (info->name && info->public_key_token [0] && info->has_old_version_bottom &&
2732                     info->has_new_version && assembly_binding_maps_name (info, aname))
2733                         info->is_valid = TRUE;
2734                 else
2735                         info->is_valid = FALSE;
2736         }
2737
2738         return info;
2739 }
2740
2741 static MonoAssemblyName*
2742 mono_assembly_apply_binding (MonoAssemblyName *aname, MonoAssemblyName *dest_name)
2743 {
2744         MonoAssemblyBindingInfo *info, *info2;
2745         MonoImage *ppimage;
2746         MonoDomain *domain;
2747
2748         if (aname->public_key_token [0] == 0)
2749                 return aname;
2750
2751         domain = mono_domain_get ();
2752
2753         mono_assembly_binding_lock ();
2754         info = search_binding_loaded (aname);
2755         mono_assembly_binding_unlock ();
2756
2757         if (!info) {
2758                 mono_domain_lock (domain);
2759                 info = get_per_domain_assembly_binding_info (domain, aname);
2760                 mono_domain_unlock (domain);
2761         }
2762
2763         if (info) {
2764                 if (!check_policy_versions (info, aname))
2765                         return aname;
2766                 
2767                 mono_assembly_bind_version (info, aname, dest_name);
2768                 return dest_name;
2769         }
2770
2771         if (domain && domain->setup && domain->setup->configuration_file) {
2772                 mono_domain_lock (domain);
2773                 if (!domain->assembly_bindings_parsed) {
2774                         gchar *domain_config_file_name = mono_string_to_utf8 (domain->setup->configuration_file);
2775                         gchar *domain_config_file_path = mono_portability_find_file (domain_config_file_name, TRUE);
2776
2777                         if (!domain_config_file_path)
2778                                 domain_config_file_path = domain_config_file_name;
2779                         
2780                         mono_config_parse_assembly_bindings (domain_config_file_path, aname->major, aname->minor, domain, assembly_binding_info_parsed);
2781                         domain->assembly_bindings_parsed = TRUE;
2782                         if (domain_config_file_name != domain_config_file_path)
2783                                 g_free (domain_config_file_name);
2784                         g_free (domain_config_file_path);
2785                 }
2786
2787                 info2 = get_per_domain_assembly_binding_info (domain, aname);
2788
2789                 if (info2) {
2790                         info = (MonoAssemblyBindingInfo *)g_memdup (info2, sizeof (MonoAssemblyBindingInfo));
2791                         info->name = g_strdup (info2->name);
2792                         info->culture = g_strdup (info2->culture);
2793                         info->domain_id = domain->domain_id;
2794                 }
2795
2796                 mono_domain_unlock (domain);
2797         }
2798
2799         if (!info) {
2800                 info = g_new0 (MonoAssemblyBindingInfo, 1);
2801                 info->major = aname->major;
2802                 info->minor = aname->minor;
2803         }
2804
2805         if (!info->is_valid) {
2806                 ppimage = mono_assembly_load_publisher_policy (aname);
2807                 if (ppimage) {
2808                         get_publisher_policy_info (ppimage, aname, info);
2809                         mono_image_close (ppimage);
2810                 }
2811         }
2812
2813         /* Define default error value if needed */
2814         if (!info->is_valid) {
2815                 info->name = g_strdup (aname->name);
2816                 info->culture = g_strdup (aname->culture);
2817                 g_strlcpy ((char *)info->public_key_token, (const char *)aname->public_key_token, MONO_PUBLIC_KEY_TOKEN_LENGTH);
2818         }
2819         
2820         mono_assembly_binding_lock ();
2821         info2 = search_binding_loaded (aname);
2822         if (info2) {
2823                 /* This binding was added by another thread 
2824                  * before us */
2825                 mono_assembly_binding_info_free (info);
2826                 g_free (info);
2827                 
2828                 info = info2;
2829         } else
2830                 loaded_assembly_bindings = g_slist_prepend (loaded_assembly_bindings, info);
2831                 
2832         mono_assembly_binding_unlock ();
2833         
2834         if (!info->is_valid || !check_policy_versions (info, aname))
2835                 return aname;
2836
2837         mono_assembly_bind_version (info, aname, dest_name);
2838         return dest_name;
2839 }
2840
2841 /**
2842  * mono_assembly_load_from_gac
2843  *
2844  * @aname: The assembly name object
2845  */
2846 static MonoAssembly*
2847 mono_assembly_load_from_gac (MonoAssemblyName *aname,  gchar *filename, MonoImageOpenStatus *status, MonoBoolean refonly)
2848 {
2849         MonoAssembly *result = NULL;
2850         gchar *name, *version, *culture, *fullpath, *subpath;
2851         gint32 len;
2852         gchar **paths;
2853         char *pubtok;
2854
2855         if (aname->public_key_token [0] == 0) {
2856                 return NULL;
2857         }
2858
2859         if (strstr (aname->name, ".dll")) {
2860                 len = strlen (filename) - 4;
2861                 name = (gchar *)g_malloc (len);
2862                 strncpy (name, aname->name, len);
2863         } else {
2864                 name = g_strdup (aname->name);
2865         }
2866
2867         if (aname->culture) {
2868                 culture = g_utf8_strdown (aname->culture, -1);
2869         } else {
2870                 culture = g_strdup ("");
2871         }
2872
2873         pubtok = g_ascii_strdown ((char*)aname->public_key_token, MONO_PUBLIC_KEY_TOKEN_LENGTH);
2874         version = g_strdup_printf ("%d.%d.%d.%d_%s_%s", aname->major,
2875                         aname->minor, aname->build, aname->revision,
2876                         culture, pubtok);
2877         g_free (pubtok);
2878         
2879         subpath = g_build_path (G_DIR_SEPARATOR_S, name, version, filename, NULL);
2880         g_free (name);
2881         g_free (version);
2882         g_free (culture);
2883
2884         if (extra_gac_paths) {
2885                 paths = extra_gac_paths;
2886                 while (!result && *paths) {
2887                         fullpath = g_build_path (G_DIR_SEPARATOR_S, *paths, "lib", "mono", "gac", subpath, NULL);
2888                         result = mono_assembly_open_full (fullpath, status, refonly);
2889                         g_free (fullpath);
2890                         paths++;
2891                 }
2892         }
2893
2894         if (result) {
2895                 result->in_gac = TRUE;
2896                 g_free (subpath);
2897                 return result;
2898         }
2899
2900         fullpath = g_build_path (G_DIR_SEPARATOR_S, mono_assembly_getrootdir (),
2901                         "mono", "gac", subpath, NULL);
2902         result = mono_assembly_open_full (fullpath, status, refonly);
2903         g_free (fullpath);
2904
2905         if (result)
2906                 result->in_gac = TRUE;
2907         
2908         g_free (subpath);
2909
2910         return result;
2911 }
2912
2913 MonoAssembly*
2914 mono_assembly_load_corlib (const MonoRuntimeInfo *runtime, MonoImageOpenStatus *status)
2915 {
2916         char *corlib_file;
2917         MonoAssemblyName *aname;
2918
2919         if (corlib) {
2920                 /* g_print ("corlib already loaded\n"); */
2921                 return corlib;
2922         }
2923
2924         // In native client, Corlib is embedded in the executable as static variable corlibData
2925 #if defined(__native_client__)
2926         if (corlibData != NULL && corlibSize != 0) {
2927                 int status = 0;
2928                 /* First "FALSE" instructs mono not to make a copy. */
2929                 /* Second "FALSE" says this is not just a ref.      */
2930                 MonoImage* image = mono_image_open_from_data_full (corlibData, corlibSize, FALSE, &status, FALSE);
2931                 if (image == NULL || status != 0)
2932                         g_print("mono_image_open_from_data_full failed: %d\n", status);
2933                 corlib = mono_assembly_load_from_full (image, "mscorlib", &status, FALSE);
2934                 if (corlib == NULL || status != 0)
2935                         g_print ("mono_assembly_load_from_full failed: %d\n", status);
2936                 if (corlib)
2937                         return corlib;
2938         }
2939 #endif
2940
2941         // A nonstandard preload hook may provide a special mscorlib assembly
2942         aname = mono_assembly_name_new ("mscorlib.dll");
2943         corlib = invoke_assembly_preload_hook (aname, assemblies_path);
2944         mono_assembly_name_free (aname);
2945         g_free (aname);
2946         if (corlib != NULL)
2947                 return corlib;
2948
2949         // This unusual directory layout can occur if mono is being built and run out of its own source repo
2950         if (assemblies_path) { // Custom assemblies path set via MONO_PATH or mono_set_assemblies_path
2951                 corlib = load_in_path ("mscorlib.dll", (const char**)assemblies_path, status, FALSE);
2952                 if (corlib)
2953                         return corlib;
2954         }
2955
2956         /* Normal case: Load corlib from mono/<version> */
2957         corlib_file = g_build_filename ("mono", runtime->framework_version, "mscorlib.dll", NULL);
2958         if (assemblies_path) { // Custom assemblies path
2959                 corlib = load_in_path (corlib_file, (const char**)assemblies_path, status, FALSE);
2960                 if (corlib) {
2961                         g_free (corlib_file);
2962                         return corlib;
2963                 }
2964         }
2965         corlib = load_in_path (corlib_file, default_path, status, FALSE);
2966         g_free (corlib_file);
2967         
2968         if (corlib && !strcmp (runtime->framework_version, "4.5"))
2969                 default_path [1] = g_strdup_printf ("%s/mono/4.5/Facades", default_path [0]);
2970                 
2971         return corlib;
2972 }
2973
2974 MonoAssembly*
2975 mono_assembly_load_full_nosearch (MonoAssemblyName *aname, 
2976                                                                   const char       *basedir, 
2977                                                                   MonoImageOpenStatus *status,
2978                                                                   gboolean refonly)
2979 {
2980         MonoAssembly *result;
2981         char *fullpath, *filename;
2982         MonoAssemblyName maped_aname;
2983         MonoAssemblyName maped_name_pp;
2984         int ext_index;
2985         const char *ext;
2986         int len;
2987
2988         aname = mono_assembly_remap_version (aname, &maped_aname);
2989         
2990         /* Reflection only assemblies don't get assembly binding */
2991         if (!refonly)
2992                 aname = mono_assembly_apply_binding (aname, &maped_name_pp);
2993         
2994         result = mono_assembly_loaded_full (aname, refonly);
2995         if (result)
2996                 return result;
2997
2998         result = refonly ? invoke_assembly_refonly_preload_hook (aname, assemblies_path) : invoke_assembly_preload_hook (aname, assemblies_path);
2999         if (result) {
3000                 result->in_gac = FALSE;
3001                 return result;
3002         }
3003
3004         /* Currently we retrieve the loaded corlib for reflection 
3005          * only requests, like a common reflection only assembly 
3006          */
3007         if (strcmp (aname->name, "mscorlib") == 0 || strcmp (aname->name, "mscorlib.dll") == 0) {
3008                 return mono_assembly_load_corlib (mono_get_runtime_info (), status);
3009         }
3010
3011         len = strlen (aname->name);
3012         for (ext_index = 0; ext_index < 2; ext_index ++) {
3013                 ext = ext_index == 0 ? ".dll" : ".exe";
3014                 if (len > 4 && (!strcmp (aname->name + len - 4, ".dll") || !strcmp (aname->name + len - 4, ".exe"))) {
3015                         filename = g_strdup (aname->name);
3016                         /* Don't try appending .dll/.exe if it already has one of those extensions */
3017                         ext_index++;
3018                 } else {
3019                         filename = g_strconcat (aname->name, ext, NULL);
3020                 }
3021
3022                 result = mono_assembly_load_from_gac (aname, filename, status, refonly);
3023                 if (result) {
3024                         g_free (filename);
3025                         return result;
3026                 }
3027
3028                 if (basedir) {
3029                         fullpath = g_build_filename (basedir, filename, NULL);
3030                         result = mono_assembly_open_full (fullpath, status, refonly);
3031                         g_free (fullpath);
3032                         if (result) {
3033                                 result->in_gac = FALSE;
3034                                 g_free (filename);
3035                                 return result;
3036                         }
3037                 }
3038
3039                 result = load_in_path (filename, default_path, status, refonly);
3040                 if (result)
3041                         result->in_gac = FALSE;
3042                 g_free (filename);
3043                 if (result)
3044                         return result;
3045         }
3046
3047         return result;
3048 }
3049
3050 MonoAssembly*
3051 mono_assembly_load_full_internal (MonoAssemblyName *aname, MonoAssembly *requesting, const char *basedir, MonoImageOpenStatus *status, gboolean refonly)
3052 {
3053         MonoAssembly *result = mono_assembly_load_full_nosearch (aname, basedir, status, refonly);
3054
3055         if (!result)
3056                 /* Try a postload search hook */
3057                 result = mono_assembly_invoke_search_hook_internal (aname, requesting, refonly, TRUE);
3058         return result;
3059 }
3060
3061 /**
3062  * mono_assembly_load_full:
3063  * @aname: A MonoAssemblyName with the assembly name to load.
3064  * @basedir: A directory to look up the assembly at.
3065  * @status: a pointer to a MonoImageOpenStatus to return the status of the load operation
3066  * @refonly: Whether this assembly is being opened in "reflection-only" mode.
3067  *
3068  * Loads the assembly referenced by @aname, if the value of @basedir is not NULL, it
3069  * attempts to load the assembly from that directory before probing the standard locations.
3070  *
3071  * If the assembly is being opened in reflection-only mode (@refonly set to TRUE) then no 
3072  * assembly binding takes place.
3073  *
3074  * Returns: the assembly referenced by @aname loaded or NULL on error.   On error the
3075  * value pointed by status is updated with an error code.
3076  */
3077 MonoAssembly*
3078 mono_assembly_load_full (MonoAssemblyName *aname, const char *basedir, MonoImageOpenStatus *status, gboolean refonly)
3079 {
3080         return mono_assembly_load_full_internal (aname, NULL, basedir, status, refonly);
3081 }
3082
3083 /**
3084  * mono_assembly_load:
3085  * @aname: A MonoAssemblyName with the assembly name to load.
3086  * @basedir: A directory to look up the assembly at.
3087  * @status: a pointer to a MonoImageOpenStatus to return the status of the load operation
3088  *
3089  * Loads the assembly referenced by @aname, if the value of @basedir is not NULL, it
3090  * attempts to load the assembly from that directory before probing the standard locations.
3091  *
3092  * Returns: the assembly referenced by @aname loaded or NULL on error.   On error the
3093  * value pointed by status is updated with an error code.
3094  */
3095 MonoAssembly*
3096 mono_assembly_load (MonoAssemblyName *aname, const char *basedir, MonoImageOpenStatus *status)
3097 {
3098         return mono_assembly_load_full_internal (aname, NULL, basedir, status, FALSE);
3099 }
3100
3101 MonoAssembly*
3102 mono_assembly_loaded_full (MonoAssemblyName *aname, gboolean refonly)
3103 {
3104         MonoAssembly *res;
3105         MonoAssemblyName maped_aname;
3106
3107         aname = mono_assembly_remap_version (aname, &maped_aname);
3108
3109         res = mono_assembly_invoke_search_hook_internal (aname, NULL, refonly, FALSE);
3110
3111         return res;
3112 }
3113
3114 /**
3115  * mono_assembly_loaded:
3116  * @aname: an assembly to look for.
3117  *
3118  * Returns: NULL If the given @aname assembly has not been loaded, or a pointer to
3119  * a MonoAssembly that matches the MonoAssemblyName specified.
3120  */
3121 MonoAssembly*
3122 mono_assembly_loaded (MonoAssemblyName *aname)
3123 {
3124         return mono_assembly_loaded_full (aname, FALSE);
3125 }
3126
3127 void
3128 mono_assembly_release_gc_roots (MonoAssembly *assembly)
3129 {
3130         if (assembly == NULL || assembly == REFERENCE_MISSING)
3131                 return;
3132
3133         if (assembly_is_dynamic (assembly)) {
3134                 int i;
3135                 MonoDynamicImage *dynimg = (MonoDynamicImage *)assembly->image;
3136                 for (i = 0; i < dynimg->image.module_count; ++i)
3137                         mono_dynamic_image_release_gc_roots ((MonoDynamicImage *)dynimg->image.modules [i]);
3138                 mono_dynamic_image_release_gc_roots (dynimg);
3139         }
3140 }
3141
3142 /*
3143  * Returns whether mono_assembly_close_finish() must be called as
3144  * well.  See comment for mono_image_close_except_pools() for why we
3145  * unload in two steps.
3146  */
3147 gboolean
3148 mono_assembly_close_except_image_pools (MonoAssembly *assembly)
3149 {
3150         GSList *tmp;
3151         g_return_val_if_fail (assembly != NULL, FALSE);
3152
3153         if (assembly == REFERENCE_MISSING)
3154                 return FALSE;
3155
3156         /* Might be 0 already */
3157         if (InterlockedDecrement (&assembly->ref_count) > 0)
3158                 return FALSE;
3159
3160         mono_profiler_assembly_event (assembly, MONO_PROFILE_START_UNLOAD);
3161
3162         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Unloading assembly %s [%p].", assembly->aname.name, assembly);
3163
3164         mono_debug_close_image (assembly->image);
3165
3166         mono_assemblies_lock ();
3167         loaded_assemblies = g_list_remove (loaded_assemblies, assembly);
3168         mono_assemblies_unlock ();
3169
3170         assembly->image->assembly = NULL;
3171
3172         if (!mono_image_close_except_pools (assembly->image))
3173                 assembly->image = NULL;
3174
3175         for (tmp = assembly->friend_assembly_names; tmp; tmp = tmp->next) {
3176                 MonoAssemblyName *fname = (MonoAssemblyName *)tmp->data;
3177                 mono_assembly_name_free (fname);
3178                 g_free (fname);
3179         }
3180         g_slist_free (assembly->friend_assembly_names);
3181         g_free (assembly->basedir);
3182
3183         mono_profiler_assembly_event (assembly, MONO_PROFILE_END_UNLOAD);
3184
3185         return TRUE;
3186 }
3187
3188 void
3189 mono_assembly_close_finish (MonoAssembly *assembly)
3190 {
3191         g_assert (assembly && assembly != REFERENCE_MISSING);
3192
3193         if (assembly->image)
3194                 mono_image_close_finish (assembly->image);
3195
3196         if (assembly_is_dynamic (assembly)) {
3197                 g_free ((char*)assembly->aname.culture);
3198         } else {
3199                 g_free (assembly);
3200         }
3201 }
3202
3203 /**
3204  * mono_assembly_close:
3205  * @assembly: the assembly to release.
3206  *
3207  * This method releases a reference to the @assembly.  The assembly is
3208  * only released when all the outstanding references to it are released.
3209  */
3210 void
3211 mono_assembly_close (MonoAssembly *assembly)
3212 {
3213         if (mono_assembly_close_except_image_pools (assembly))
3214                 mono_assembly_close_finish (assembly);
3215 }
3216
3217 MonoImage*
3218 mono_assembly_load_module (MonoAssembly *assembly, guint32 idx)
3219 {
3220         return mono_image_load_file_for_image (assembly->image, idx);
3221 }
3222
3223 void
3224 mono_assembly_foreach (GFunc func, gpointer user_data)
3225 {
3226         GList *copy;
3227
3228         /*
3229          * We make a copy of the list to avoid calling the callback inside the 
3230          * lock, which could lead to deadlocks.
3231          */
3232         mono_assemblies_lock ();
3233         copy = g_list_copy (loaded_assemblies);
3234         mono_assemblies_unlock ();
3235
3236         g_list_foreach (loaded_assemblies, func, user_data);
3237
3238         g_list_free (copy);
3239 }
3240
3241 /**
3242  * mono_assemblies_cleanup:
3243  *
3244  * Free all resources used by this module.
3245  */
3246 void
3247 mono_assemblies_cleanup (void)
3248 {
3249         GSList *l;
3250
3251         mono_os_mutex_destroy (&assemblies_mutex);
3252         mono_os_mutex_destroy (&assembly_binding_mutex);
3253
3254         for (l = loaded_assembly_bindings; l; l = l->next) {
3255                 MonoAssemblyBindingInfo *info = (MonoAssemblyBindingInfo *)l->data;
3256
3257                 mono_assembly_binding_info_free (info);
3258                 g_free (info);
3259         }
3260         g_slist_free (loaded_assembly_bindings);
3261
3262         free_assembly_load_hooks ();
3263         free_assembly_search_hooks ();
3264         free_assembly_preload_hooks ();
3265 }
3266
3267 /*LOCKING takes the assembly_binding lock*/
3268 void
3269 mono_assembly_cleanup_domain_bindings (guint32 domain_id)
3270 {
3271         GSList **iter;
3272
3273         mono_assembly_binding_lock ();
3274         iter = &loaded_assembly_bindings;
3275         while (*iter) {
3276                 GSList *l = *iter;
3277                 MonoAssemblyBindingInfo *info = (MonoAssemblyBindingInfo *)l->data;
3278
3279                 if (info->domain_id == domain_id) {
3280                         *iter = l->next;
3281                         mono_assembly_binding_info_free (info);
3282                         g_free (info);
3283                         g_slist_free_1 (l);
3284                 } else {
3285                         iter = &l->next;
3286                 }
3287         }
3288         mono_assembly_binding_unlock ();
3289 }
3290
3291 /*
3292  * Holds the assembly of the application, for
3293  * System.Diagnostics.Process::MainModule
3294  */
3295 static MonoAssembly *main_assembly=NULL;
3296
3297 void
3298 mono_assembly_set_main (MonoAssembly *assembly)
3299 {
3300         main_assembly = assembly;
3301 }
3302
3303 /**
3304  * mono_assembly_get_main:
3305  *
3306  * Returns: the assembly for the application, the first assembly that is loaded by the VM
3307  */
3308 MonoAssembly *
3309 mono_assembly_get_main (void)
3310 {
3311         return (main_assembly);
3312 }
3313
3314 /**
3315  * mono_assembly_get_image:
3316  * @assembly: The assembly to retrieve the image from
3317  *
3318  * Returns: the MonoImage associated with this assembly.
3319  */
3320 MonoImage*
3321 mono_assembly_get_image (MonoAssembly *assembly)
3322 {
3323         return assembly->image;
3324 }
3325
3326 /**
3327  * mono_assembly_get_name:
3328  * @assembly: The assembly to retrieve the name from
3329  *
3330  * The returned name's lifetime is the same as @assembly's.
3331  *
3332  * Returns: the MonoAssemblyName associated with this assembly.
3333  */
3334 MonoAssemblyName *
3335 mono_assembly_get_name (MonoAssembly *assembly)
3336 {
3337         return &assembly->aname;
3338 }
3339
3340 void
3341 mono_register_bundled_assemblies (const MonoBundledAssembly **assemblies)
3342 {
3343         bundles = assemblies;
3344 }
3345
3346 #define MONO_DECLSEC_FORMAT_10          0x3C
3347 #define MONO_DECLSEC_FORMAT_20          0x2E
3348 #define MONO_DECLSEC_FIELD              0x53
3349 #define MONO_DECLSEC_PROPERTY           0x54
3350
3351 #define SKIP_VISIBILITY_XML_ATTRIBUTE ("\"SkipVerification\"")
3352 #define SKIP_VISIBILITY_ATTRIBUTE_NAME ("System.Security.Permissions.SecurityPermissionAttribute")
3353 #define SKIP_VISIBILITY_ATTRIBUTE_SIZE (sizeof (SKIP_VISIBILITY_ATTRIBUTE_NAME) - 1)
3354 #define SKIP_VISIBILITY_PROPERTY_NAME ("SkipVerification")
3355 #define SKIP_VISIBILITY_PROPERTY_SIZE (sizeof (SKIP_VISIBILITY_PROPERTY_NAME) - 1)
3356
3357 static gboolean
3358 mono_assembly_try_decode_skip_verification_param (const char *p, const char **resp, gboolean *abort_decoding)
3359 {
3360         int len;
3361         switch (*p++) {
3362         case MONO_DECLSEC_PROPERTY:
3363                 break;
3364         case MONO_DECLSEC_FIELD:
3365         default:
3366                 *abort_decoding = TRUE;
3367                 return FALSE;
3368                 break;
3369         }
3370
3371         if (*p++ != MONO_TYPE_BOOLEAN) {
3372                 *abort_decoding = TRUE;
3373                 return FALSE;
3374         }
3375                 
3376         /* property name length */
3377         len = mono_metadata_decode_value (p, &p);
3378
3379         if (len >= SKIP_VISIBILITY_PROPERTY_SIZE && !memcmp (p, SKIP_VISIBILITY_PROPERTY_NAME, SKIP_VISIBILITY_PROPERTY_SIZE)) {
3380                 p += len;
3381                 return *p;
3382         }
3383         p += len + 1;
3384
3385         *resp = p;
3386         return FALSE;
3387 }
3388
3389 static gboolean
3390 mono_assembly_try_decode_skip_verification (const char *p, const char *endn)
3391 {
3392         int i, j, num, len, params_len;
3393
3394         if (*p == MONO_DECLSEC_FORMAT_10) {
3395                 gsize read, written;
3396                 char *res = g_convert (p, endn - p, "UTF-8", "UTF-16LE", &read, &written, NULL);
3397                 if (res) {
3398                         gboolean found = strstr (res, SKIP_VISIBILITY_XML_ATTRIBUTE) != NULL;
3399                         g_free (res);
3400                         return found;
3401                 }
3402                 return FALSE;
3403         }
3404         if (*p++ != MONO_DECLSEC_FORMAT_20)
3405                 return FALSE;
3406
3407         /* number of encoded permission attributes */
3408         num = mono_metadata_decode_value (p, &p);
3409         for (i = 0; i < num; ++i) {
3410                 gboolean is_valid = FALSE;
3411                 gboolean abort_decoding = FALSE;
3412
3413                 /* attribute name length */
3414                 len =  mono_metadata_decode_value (p, &p);
3415
3416                 /* We don't really need to fully decode the type. Comparing the name is enough */
3417                 is_valid = len >= SKIP_VISIBILITY_ATTRIBUTE_SIZE && !memcmp (p, SKIP_VISIBILITY_ATTRIBUTE_NAME, SKIP_VISIBILITY_ATTRIBUTE_SIZE);
3418
3419                 p += len;
3420
3421                 /*size of the params table*/
3422                 params_len =  mono_metadata_decode_value (p, &p);
3423                 if (is_valid) {
3424                         const char *params_end = p + params_len;
3425                         
3426                         /* number of parameters */
3427                         len = mono_metadata_decode_value (p, &p);
3428         
3429                         for (j = 0; j < len; ++j) {
3430                                 if (mono_assembly_try_decode_skip_verification_param (p, &p, &abort_decoding))
3431                                         return TRUE;
3432                                 if (abort_decoding)
3433                                         break;
3434                         }
3435                         p = params_end;
3436                 } else {
3437                         p += params_len;
3438                 }
3439         }
3440         
3441         return FALSE;
3442 }
3443
3444
3445 gboolean
3446 mono_assembly_has_skip_verification (MonoAssembly *assembly)
3447 {
3448         MonoTableInfo *t;       
3449         guint32 cols [MONO_DECL_SECURITY_SIZE];
3450         const char *blob;
3451         int i, len;
3452
3453         if (MONO_SECMAN_FLAG_INIT (assembly->skipverification))
3454                 return MONO_SECMAN_FLAG_GET_VALUE (assembly->skipverification);
3455
3456         t = &assembly->image->tables [MONO_TABLE_DECLSECURITY];
3457
3458         for (i = 0; i < t->rows; ++i) {
3459                 mono_metadata_decode_row (t, i, cols, MONO_DECL_SECURITY_SIZE);
3460                 if ((cols [MONO_DECL_SECURITY_PARENT] & MONO_HAS_DECL_SECURITY_MASK) != MONO_HAS_DECL_SECURITY_ASSEMBLY)
3461                         continue;
3462                 if (cols [MONO_DECL_SECURITY_ACTION] != SECURITY_ACTION_REQMIN)
3463                         continue;
3464
3465                 blob = mono_metadata_blob_heap (assembly->image, cols [MONO_DECL_SECURITY_PERMISSIONSET]);
3466                 len = mono_metadata_decode_blob_size (blob, &blob);
3467                 if (!len)
3468                         continue;
3469
3470                 if (mono_assembly_try_decode_skip_verification (blob, blob + len)) {
3471                         MONO_SECMAN_FLAG_SET_VALUE (assembly->skipverification, TRUE);
3472                         return TRUE;
3473                 }
3474         }
3475
3476         MONO_SECMAN_FLAG_SET_VALUE (assembly->skipverification, FALSE);
3477         return FALSE;
3478 }