Merge pull request #2484 from ludovic-henry/monoerror-mono_string_get_pinned
[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                 MonoError error;
1582                 new_fname = mono_make_shadow_copy (fname, &error);
1583                 mono_error_raise_exception (&error); /* FIXME don't raise here */
1584         }
1585         if (new_fname && new_fname != fname) {
1586                 g_free (fname);
1587                 fname = new_fname;
1588                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY,
1589                             "Assembly Loader shadow-copied assembly to: '%s'.", fname);
1590         }
1591         
1592         image = NULL;
1593
1594         // If VM built with mkbundle
1595         loaded_from_bundle = FALSE;
1596         if (bundles != NULL) {
1597                 image = mono_assembly_open_from_bundle (fname, status, refonly);
1598                 loaded_from_bundle = image != NULL;
1599         }
1600
1601         if (!image)
1602                 image = mono_image_open_full (fname, status, refonly);
1603
1604         if (!image){
1605                 if (*status == MONO_IMAGE_OK)
1606                         *status = MONO_IMAGE_ERROR_ERRNO;
1607                 g_free (fname);
1608                 return NULL;
1609         }
1610
1611         if (image->assembly) {
1612                 /* Already loaded by another appdomain */
1613                 mono_assembly_invoke_load_hook (image->assembly);
1614                 mono_image_close (image);
1615                 g_free (fname);
1616                 return image->assembly;
1617         }
1618
1619         ass = mono_assembly_load_from_full (image, fname, status, refonly);
1620
1621         if (ass) {
1622                 if (!loaded_from_bundle)
1623                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY,
1624                                 "Assembly Loader loaded assembly from location: '%s'.", filename);
1625                 if (!refonly)
1626                         mono_config_for_assembly (ass->image);
1627         }
1628
1629         /* Clear the reference added by mono_image_open */
1630         mono_image_close (image);
1631         
1632         g_free (fname);
1633
1634         return ass;
1635 }
1636
1637 static void
1638 free_item (gpointer val, gpointer user_data)
1639 {
1640         g_free (val);
1641 }
1642
1643 /*
1644  * mono_assembly_load_friends:
1645  * @ass: an assembly
1646  *
1647  * Load the list of friend assemblies that are allowed to access
1648  * the assembly's internal types and members. They are stored as assembly
1649  * names in custom attributes.
1650  *
1651  * This is an internal method, we need this because when we load mscorlib
1652  * we do not have the mono_defaults.internals_visible_class loaded yet,
1653  * so we need to load these after we initialize the runtime. 
1654  *
1655  * LOCKING: Acquires the assemblies lock plus the loader lock.
1656  */
1657 void
1658 mono_assembly_load_friends (MonoAssembly* ass)
1659 {
1660         int i;
1661         MonoCustomAttrInfo* attrs;
1662         GSList *list;
1663
1664         if (ass->friend_assembly_names_inited)
1665                 return;
1666
1667         attrs = mono_custom_attrs_from_assembly (ass);
1668         if (!attrs) {
1669                 mono_assemblies_lock ();
1670                 ass->friend_assembly_names_inited = TRUE;
1671                 mono_assemblies_unlock ();
1672                 return;
1673         }
1674
1675         mono_assemblies_lock ();
1676         if (ass->friend_assembly_names_inited) {
1677                 mono_assemblies_unlock ();
1678                 return;
1679         }
1680         mono_assemblies_unlock ();
1681
1682         list = NULL;
1683         /* 
1684          * We build the list outside the assemblies lock, the worse that can happen
1685          * is that we'll need to free the allocated list.
1686          */
1687         for (i = 0; i < attrs->num_attrs; ++i) {
1688                 MonoCustomAttrEntry *attr = &attrs->attrs [i];
1689                 MonoAssemblyName *aname;
1690                 const gchar *data;
1691                 /* Do some sanity checking */
1692                 if (!attr->ctor || attr->ctor->klass != mono_defaults.internals_visible_class)
1693                         continue;
1694                 if (attr->data_size < 4)
1695                         continue;
1696                 data = (const char*)attr->data;
1697                 /* 0xFF means null string, see custom attr format */
1698                 if (data [0] != 1 || data [1] != 0 || (data [2] & 0xFF) == 0xFF)
1699                         continue;
1700                 mono_metadata_decode_value (data + 2, &data);
1701                 aname = g_new0 (MonoAssemblyName, 1);
1702                 /*g_print ("friend ass: %s\n", data);*/
1703                 if (mono_assembly_name_parse_full (data, aname, TRUE, NULL, NULL)) {
1704                         list = g_slist_prepend (list, aname);
1705                 } else {
1706                         g_free (aname);
1707                 }
1708         }
1709         mono_custom_attrs_free (attrs);
1710
1711         mono_assemblies_lock ();
1712         if (ass->friend_assembly_names_inited) {
1713                 mono_assemblies_unlock ();
1714                 g_slist_foreach (list, free_item, NULL);
1715                 g_slist_free (list);
1716                 return;
1717         }
1718         ass->friend_assembly_names = list;
1719
1720         /* Because of the double checked locking pattern above */
1721         mono_memory_barrier ();
1722         ass->friend_assembly_names_inited = TRUE;
1723         mono_assemblies_unlock ();
1724 }
1725
1726 /**
1727  * mono_assembly_open:
1728  * @filename: Opens the assembly pointed out by this name
1729  * @status: where a status code can be returned
1730  *
1731  * mono_assembly_open opens the PE-image pointed by @filename, and
1732  * loads any external assemblies referenced by it.
1733  *
1734  * Return: a pointer to the MonoAssembly if @filename contains a valid
1735  * assembly or NULL on error.  Details about the error are stored in the
1736  * @status variable.
1737  */
1738 MonoAssembly *
1739 mono_assembly_open (const char *filename, MonoImageOpenStatus *status)
1740 {
1741         return mono_assembly_open_full (filename, status, FALSE);
1742 }
1743
1744 MonoAssembly *
1745 mono_assembly_load_from_full (MonoImage *image, const char*fname, 
1746                               MonoImageOpenStatus *status, gboolean refonly)
1747 {
1748         MonoAssembly *ass, *ass2;
1749         char *base_dir;
1750
1751         if (!image->tables [MONO_TABLE_ASSEMBLY].rows) {
1752                 /* 'image' doesn't have a manifest -- maybe someone is trying to Assembly.Load a .netmodule */
1753                 *status = MONO_IMAGE_IMAGE_INVALID;
1754                 return NULL;
1755         }
1756
1757 #if defined (HOST_WIN32)
1758         {
1759                 gchar *tmp_fn;
1760                 int i;
1761
1762                 tmp_fn = g_strdup (fname);
1763                 for (i = strlen (tmp_fn) - 1; i >= 0; i--) {
1764                         if (tmp_fn [i] == '/')
1765                                 tmp_fn [i] = '\\';
1766                 }
1767
1768                 base_dir = absolute_dir (tmp_fn);
1769                 g_free (tmp_fn);
1770         }
1771 #else
1772         base_dir = absolute_dir (fname);
1773 #endif
1774
1775         /*
1776          * Create assembly struct, and enter it into the assembly cache
1777          */
1778         ass = g_new0 (MonoAssembly, 1);
1779         ass->basedir = base_dir;
1780         ass->ref_only = refonly;
1781         ass->image = image;
1782
1783         mono_profiler_assembly_event (ass, MONO_PROFILE_START_LOAD);
1784
1785         mono_assembly_fill_assembly_name (image, &ass->aname);
1786
1787         if (mono_defaults.corlib && strcmp (ass->aname.name, "mscorlib") == 0) {
1788                 // MS.NET doesn't support loading other mscorlibs
1789                 g_free (ass);
1790                 g_free (base_dir);
1791                 mono_image_addref (mono_defaults.corlib);
1792                 *status = MONO_IMAGE_OK;
1793                 return mono_defaults.corlib->assembly;
1794         }
1795
1796         /* Add a non-temporary reference because of ass->image */
1797         mono_image_addref (image);
1798
1799         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);
1800
1801         /* 
1802          * The load hooks might take locks so we can't call them while holding the
1803          * assemblies lock.
1804          */
1805         if (ass->aname.name) {
1806                 ass2 = mono_assembly_invoke_search_hook_internal (&ass->aname, NULL, refonly, FALSE);
1807                 if (ass2) {
1808                         g_free (ass);
1809                         g_free (base_dir);
1810                         mono_image_close (image);
1811                         *status = MONO_IMAGE_OK;
1812                         return ass2;
1813                 }
1814         }
1815
1816         mono_assemblies_lock ();
1817
1818         if (image->assembly) {
1819                 /* 
1820                  * This means another thread has already loaded the assembly, but not yet
1821                  * called the load hooks so the search hook can't find the assembly.
1822                  */
1823                 mono_assemblies_unlock ();
1824                 ass2 = image->assembly;
1825                 g_free (ass);
1826                 g_free (base_dir);
1827                 mono_image_close (image);
1828                 *status = MONO_IMAGE_OK;
1829                 return ass2;
1830         }
1831
1832         image->assembly = ass;
1833
1834         loaded_assemblies = g_list_prepend (loaded_assemblies, ass);
1835         mono_assemblies_unlock ();
1836
1837 #ifdef HOST_WIN32
1838         if (image->is_module_handle)
1839                 mono_image_fixup_vtable (image);
1840 #endif
1841
1842         mono_assembly_invoke_load_hook (ass);
1843
1844         mono_profiler_assembly_loaded (ass, MONO_PROFILE_OK);
1845         
1846         return ass;
1847 }
1848
1849 MonoAssembly *
1850 mono_assembly_load_from (MonoImage *image, const char *fname,
1851                          MonoImageOpenStatus *status)
1852 {
1853         return mono_assembly_load_from_full (image, fname, status, FALSE);
1854 }
1855
1856 /**
1857  * mono_assembly_name_free:
1858  * @aname: assembly name to free
1859  * 
1860  * Frees the provided assembly name object.
1861  * (it does not frees the object itself, only the name members).
1862  */
1863 void
1864 mono_assembly_name_free (MonoAssemblyName *aname)
1865 {
1866         if (aname == NULL)
1867                 return;
1868
1869         g_free ((void *) aname->name);
1870         g_free ((void *) aname->culture);
1871         g_free ((void *) aname->hash_value);
1872 }
1873
1874 static gboolean
1875 parse_public_key (const gchar *key, gchar** pubkey, gboolean *is_ecma)
1876 {
1877         const gchar *pkey;
1878         gchar header [16], val, *arr;
1879         gint i, j, offset, bitlen, keylen, pkeylen;
1880         
1881         keylen = strlen (key) >> 1;
1882         if (keylen < 1)
1883                 return FALSE;
1884
1885         /* allow the ECMA standard key */
1886         if (strcmp (key, "00000000000000000400000000000000") == 0) {
1887                 if (pubkey) {
1888                         *pubkey = g_strdup (key);
1889                         *is_ecma = TRUE;
1890                 }
1891                 return TRUE;
1892         }
1893         *is_ecma = FALSE;
1894         val = g_ascii_xdigit_value (key [0]) << 4;
1895         val |= g_ascii_xdigit_value (key [1]);
1896         switch (val) {
1897                 case 0x00:
1898                         if (keylen < 13)
1899                                 return FALSE;
1900                         val = g_ascii_xdigit_value (key [24]);
1901                         val |= g_ascii_xdigit_value (key [25]);
1902                         if (val != 0x06)
1903                                 return FALSE;
1904                         pkey = key + 24;
1905                         break;
1906                 case 0x06:
1907                         pkey = key;
1908                         break;
1909                 default:
1910                         return FALSE;
1911         }
1912                 
1913         /* We need the first 16 bytes
1914         * to check whether this key is valid or not */
1915         pkeylen = strlen (pkey) >> 1;
1916         if (pkeylen < 16)
1917                 return FALSE;
1918                 
1919         for (i = 0, j = 0; i < 16; i++) {
1920                 header [i] = g_ascii_xdigit_value (pkey [j++]) << 4;
1921                 header [i] |= g_ascii_xdigit_value (pkey [j++]);
1922         }
1923
1924         if (header [0] != 0x06 || /* PUBLICKEYBLOB (0x06) */
1925                         header [1] != 0x02 || /* Version (0x02) */
1926                         header [2] != 0x00 || /* Reserved (word) */
1927                         header [3] != 0x00 ||
1928                         (guint)(read32 (header + 8)) != 0x31415352) /* DWORD magic = RSA1 */
1929                 return FALSE;
1930
1931         /* Based on this length, we _should_ be able to know if the length is right */
1932         bitlen = read32 (header + 12) >> 3;
1933         if ((bitlen + 16 + 4) != pkeylen)
1934                 return FALSE;
1935
1936         /* parsing is OK and the public key itself is not requested back */
1937         if (!pubkey)
1938                 return TRUE;
1939                 
1940         /* Encode the size of the blob */
1941         offset = 0;
1942         if (keylen <= 127) {
1943                 arr = (gchar *)g_malloc (keylen + 1);
1944                 arr [offset++] = keylen;
1945         } else {
1946                 arr = (gchar *)g_malloc (keylen + 2);
1947                 arr [offset++] = 0x80; /* 10bs */
1948                 arr [offset++] = keylen;
1949         }
1950                 
1951         for (i = offset, j = 0; i < keylen + offset; i++) {
1952                 arr [i] = g_ascii_xdigit_value (key [j++]) << 4;
1953                 arr [i] |= g_ascii_xdigit_value (key [j++]);
1954         }
1955
1956         *pubkey = arr;
1957
1958         return TRUE;
1959 }
1960
1961 static gboolean
1962 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)
1963 {
1964         gint major, minor, build, revision;
1965         gint len;
1966         gint version_parts;
1967         gchar *pkey, *pkeyptr, *encoded, tok [8];
1968
1969         memset (aname, 0, sizeof (MonoAssemblyName));
1970
1971         if (version) {
1972                 version_parts = sscanf (version, "%u.%u.%u.%u", &major, &minor, &build, &revision);
1973                 if (version_parts < 2 || version_parts > 4)
1974                         return FALSE;
1975
1976                 /* FIXME: we should set build & revision to -1 (instead of 0)
1977                 if these are not set in the version string. That way, later on,
1978                 we can still determine if these were specified. */
1979                 aname->major = major;
1980                 aname->minor = minor;
1981                 if (version_parts >= 3)
1982                         aname->build = build;
1983                 else
1984                         aname->build = 0;
1985                 if (version_parts == 4)
1986                         aname->revision = revision;
1987                 else
1988                         aname->revision = 0;
1989         }
1990         
1991         aname->flags = flags;
1992         aname->arch = arch;
1993         aname->name = g_strdup (name);
1994         
1995         if (culture) {
1996                 if (g_ascii_strcasecmp (culture, "neutral") == 0)
1997                         aname->culture = g_strdup ("");
1998                 else
1999                         aname->culture = g_strdup (culture);
2000         }
2001         
2002         if (token && strncmp (token, "null", 4) != 0) {
2003                 char *lower;
2004
2005                 /* the constant includes the ending NULL, hence the -1 */
2006                 if (strlen (token) != (MONO_PUBLIC_KEY_TOKEN_LENGTH - 1)) {
2007                         mono_assembly_name_free (aname);
2008                         return FALSE;
2009                 }
2010                 lower = g_ascii_strdown (token, MONO_PUBLIC_KEY_TOKEN_LENGTH);
2011                 g_strlcpy ((char*)aname->public_key_token, lower, MONO_PUBLIC_KEY_TOKEN_LENGTH);
2012                 g_free (lower);
2013         }
2014
2015         if (key) {
2016                 gboolean is_ecma;
2017                 if (strcmp (key, "null") == 0 || !parse_public_key (key, &pkey, &is_ecma)) {
2018                         mono_assembly_name_free (aname);
2019                         return FALSE;
2020                 }
2021
2022                 if (is_ecma) {
2023                         if (save_public_key)
2024                                 aname->public_key = (guint8*)pkey;
2025                         else
2026                                 g_free (pkey);
2027                         g_strlcpy ((gchar*)aname->public_key_token, "b77a5c561934e089", MONO_PUBLIC_KEY_TOKEN_LENGTH);
2028                         return TRUE;
2029                 }
2030                 
2031                 len = mono_metadata_decode_blob_size ((const gchar *) pkey, (const gchar **) &pkeyptr);
2032                 // We also need to generate the key token
2033                 mono_digest_get_public_token ((guchar*) tok, (guint8*) pkeyptr, len);
2034                 encoded = encode_public_tok ((guchar*) tok, 8);
2035                 g_strlcpy ((gchar*)aname->public_key_token, encoded, MONO_PUBLIC_KEY_TOKEN_LENGTH);
2036                 g_free (encoded);
2037
2038                 if (save_public_key)
2039                         aname->public_key = (guint8*) pkey;
2040                 else
2041                         g_free (pkey);
2042         }
2043
2044         return TRUE;
2045 }
2046
2047 static gboolean
2048 parse_assembly_directory_name (const char *name, const char *dirname, MonoAssemblyName *aname)
2049 {
2050         gchar **parts;
2051         gboolean res;
2052         
2053         parts = g_strsplit (dirname, "_", 3);
2054         if (!parts || !parts[0] || !parts[1] || !parts[2]) {
2055                 g_strfreev (parts);
2056                 return FALSE;
2057         }
2058         
2059         res = build_assembly_name (name, parts[0], parts[1], parts[2], NULL, 0, 0, aname, FALSE);
2060         g_strfreev (parts);
2061         return res;
2062 }
2063
2064 static gboolean
2065 split_key_value (const gchar *pair, gchar **key, guint32 *keylen, gchar **value)
2066 {
2067         char *eqsign = strchr (pair, '=');
2068         if (!eqsign) {
2069                 *key = NULL;
2070                 *keylen = 0;
2071                 *value = NULL;
2072                 return FALSE;
2073         }
2074
2075         *key = (gchar*)pair;
2076         *keylen = eqsign - *key;
2077         while (*keylen > 0 && g_ascii_isspace ((*key) [*keylen - 1]))
2078                 (*keylen)--;
2079         *value = g_strstrip (eqsign + 1);
2080         return TRUE;
2081 }
2082
2083 gboolean
2084 mono_assembly_name_parse_full (const char *name, MonoAssemblyName *aname, gboolean save_public_key, gboolean *is_version_defined, gboolean *is_token_defined)
2085 {
2086         gchar *dllname;
2087         gchar *dllname_uq;
2088         gchar *version = NULL;
2089         gchar *version_uq;
2090         gchar *culture = NULL;
2091         gchar *culture_uq;
2092         gchar *token = NULL;
2093         gchar *token_uq;
2094         gchar *key = NULL;
2095         gchar *key_uq;
2096         gchar *retargetable = NULL;
2097         gchar *retargetable_uq;
2098         gchar *procarch;
2099         gchar *procarch_uq;
2100         gboolean res;
2101         gchar *value, *part_name;
2102         guint32 part_name_len;
2103         gchar **parts;
2104         gchar **tmp;
2105         gboolean version_defined;
2106         gboolean token_defined;
2107         guint32 flags = 0;
2108         guint32 arch = MONO_PROCESSOR_ARCHITECTURE_NONE;
2109
2110         if (!is_version_defined)
2111                 is_version_defined = &version_defined;
2112         *is_version_defined = FALSE;
2113         if (!is_token_defined)
2114                 is_token_defined = &token_defined;
2115         *is_token_defined = FALSE;
2116         
2117         parts = tmp = g_strsplit (name, ",", 6);
2118         if (!tmp || !*tmp) {
2119                 g_strfreev (tmp);
2120                 return FALSE;
2121         }
2122
2123         dllname = g_strstrip (*tmp);
2124         
2125         tmp++;
2126
2127         while (*tmp) {
2128                 if (!split_key_value (g_strstrip (*tmp), &part_name, &part_name_len, &value))
2129                         goto cleanup_and_fail;
2130
2131                 if (part_name_len == 7 && !g_ascii_strncasecmp (part_name, "Version", part_name_len)) {
2132                         *is_version_defined = TRUE;
2133                         version = value;
2134                         if (strlen (version) == 0) {
2135                                 goto cleanup_and_fail;
2136                         }
2137                         tmp++;
2138                         continue;
2139                 }
2140
2141                 if (part_name_len == 7 && !g_ascii_strncasecmp (part_name, "Culture", part_name_len)) {
2142                         culture = value;
2143                         if (strlen (culture) == 0) {
2144                                 goto cleanup_and_fail;
2145                         }
2146                         tmp++;
2147                         continue;
2148                 }
2149
2150                 if (part_name_len == 14 && !g_ascii_strncasecmp (part_name, "PublicKeyToken", part_name_len)) {
2151                         *is_token_defined = TRUE;
2152                         token = value;
2153                         if (strlen (token) == 0) {
2154                                 goto cleanup_and_fail;
2155                         }
2156                         tmp++;
2157                         continue;
2158                 }
2159
2160                 if (part_name_len == 9 && !g_ascii_strncasecmp (part_name, "PublicKey", part_name_len)) {
2161                         key = value;
2162                         if (strlen (key) == 0) {
2163                                 goto cleanup_and_fail;
2164                         }
2165                         tmp++;
2166                         continue;
2167                 }
2168
2169                 if (part_name_len == 12 && !g_ascii_strncasecmp (part_name, "Retargetable", part_name_len)) {
2170                         retargetable = value;
2171                         retargetable_uq = unquote (retargetable);
2172                         if (retargetable_uq != NULL)
2173                                 retargetable = retargetable_uq;
2174
2175                         if (!g_ascii_strcasecmp (retargetable, "yes")) {
2176                                 flags |= ASSEMBLYREF_RETARGETABLE_FLAG;
2177                         } else if (g_ascii_strcasecmp (retargetable, "no")) {
2178                                 free (retargetable_uq);
2179                                 goto cleanup_and_fail;
2180                         }
2181
2182                         free (retargetable_uq);
2183                         tmp++;
2184                         continue;
2185                 }
2186
2187                 if (part_name_len == 21 && !g_ascii_strncasecmp (part_name, "ProcessorArchitecture", part_name_len)) {
2188                         procarch = value;
2189                         procarch_uq = unquote (procarch);
2190                         if (procarch_uq != NULL)
2191                                 procarch = procarch_uq;
2192
2193                         if (!g_ascii_strcasecmp (procarch, "MSIL"))
2194                                 arch = MONO_PROCESSOR_ARCHITECTURE_MSIL;
2195                         else if (!g_ascii_strcasecmp (procarch, "X86"))
2196                                 arch = MONO_PROCESSOR_ARCHITECTURE_X86;
2197                         else if (!g_ascii_strcasecmp (procarch, "IA64"))
2198                                 arch = MONO_PROCESSOR_ARCHITECTURE_IA64;
2199                         else if (!g_ascii_strcasecmp (procarch, "AMD64"))
2200                                 arch = MONO_PROCESSOR_ARCHITECTURE_AMD64;
2201                         else {
2202                                 free (procarch_uq);
2203                                 goto cleanup_and_fail;
2204                         }
2205
2206                         free (procarch_uq);
2207                         tmp++;
2208                         continue;
2209                 }
2210
2211                 g_strfreev (parts);
2212                 return FALSE;
2213         }
2214
2215         /* if retargetable flag is set, then we must have a fully qualified name */
2216         if (retargetable != NULL && (version == NULL || culture == NULL || (key == NULL && token == NULL))) {
2217                 goto cleanup_and_fail;
2218         }
2219
2220         dllname_uq = unquote (dllname);
2221         version_uq = unquote (version);
2222         culture_uq = unquote (culture);
2223         token_uq = unquote (token);
2224         key_uq = unquote (key);
2225
2226         res = build_assembly_name (
2227                 dllname_uq == NULL ? dllname : dllname_uq,
2228                 version_uq == NULL ? version : version_uq,
2229                 culture_uq == NULL ? culture : culture_uq,
2230                 token_uq == NULL ? token : token_uq,
2231                 key_uq == NULL ? key : key_uq,
2232                 flags, arch, aname, save_public_key);
2233
2234         free (dllname_uq);
2235         free (version_uq);
2236         free (culture_uq);
2237         free (token_uq);
2238         free (key_uq);
2239
2240         g_strfreev (parts);
2241         return res;
2242
2243 cleanup_and_fail:
2244         g_strfreev (parts);
2245         return FALSE;
2246 }
2247
2248 static char*
2249 unquote (const char *str)
2250 {
2251         gint slen;
2252         const char *end;
2253
2254         if (str == NULL)
2255                 return NULL;
2256
2257         slen = strlen (str);
2258         if (slen < 2)
2259                 return NULL;
2260
2261         if (*str != '\'' && *str != '\"')
2262                 return NULL;
2263
2264         end = str + slen - 1;
2265         if (*str != *end)
2266                 return NULL;
2267
2268         return g_strndup (str + 1, slen - 2);
2269 }
2270
2271 /**
2272  * mono_assembly_name_parse:
2273  * @name: name to parse
2274  * @aname: the destination assembly name
2275  * 
2276  * Parses an assembly qualified type name and assigns the name,
2277  * version, culture and token to the provided assembly name object.
2278  *
2279  * Returns: true if the name could be parsed.
2280  */
2281 gboolean
2282 mono_assembly_name_parse (const char *name, MonoAssemblyName *aname)
2283 {
2284         return mono_assembly_name_parse_full (name, aname, FALSE, NULL, NULL);
2285 }
2286
2287 /**
2288  * mono_assembly_name_new:
2289  * @name: name to parse
2290  *
2291  * Allocate a new MonoAssemblyName and fill its values from the
2292  * passed @name.
2293  *
2294  * Returns: a newly allocated structure or NULL if there was any failure.
2295  */
2296 MonoAssemblyName*
2297 mono_assembly_name_new (const char *name)
2298 {
2299         MonoAssemblyName *aname = g_new0 (MonoAssemblyName, 1);
2300         if (mono_assembly_name_parse (name, aname))
2301                 return aname;
2302         g_free (aname);
2303         return NULL;
2304 }
2305
2306 const char*
2307 mono_assembly_name_get_name (MonoAssemblyName *aname)
2308 {
2309         return aname->name;
2310 }
2311
2312 const char*
2313 mono_assembly_name_get_culture (MonoAssemblyName *aname)
2314 {
2315         return aname->culture;
2316 }
2317
2318 mono_byte*
2319 mono_assembly_name_get_pubkeytoken (MonoAssemblyName *aname)
2320 {
2321         if (aname->public_key_token [0])
2322                 return aname->public_key_token;
2323         return NULL;
2324 }
2325
2326 uint16_t
2327 mono_assembly_name_get_version (MonoAssemblyName *aname, uint16_t *minor, uint16_t *build, uint16_t *revision)
2328 {
2329         if (minor)
2330                 *minor = aname->minor;
2331         if (build)
2332                 *build = aname->build;
2333         if (revision)
2334                 *revision = aname->revision;
2335         return aname->major;
2336 }
2337
2338 static MonoAssembly*
2339 probe_for_partial_name (const char *basepath, const char *fullname, MonoAssemblyName *aname, MonoImageOpenStatus *status)
2340 {
2341         gchar *fullpath = NULL;
2342         GDir *dirhandle;
2343         const char* direntry;
2344         MonoAssemblyName gac_aname;
2345         gint major=-1, minor=0, build=0, revision=0;
2346         gboolean exact_version;
2347         
2348         dirhandle = g_dir_open (basepath, 0, NULL);
2349         if (!dirhandle)
2350                 return NULL;
2351                 
2352         exact_version = (aname->major | aname->minor | aname->build | aname->revision) != 0;
2353
2354         while ((direntry = g_dir_read_name (dirhandle))) {
2355                 gboolean match = TRUE;
2356                 
2357                 if(!parse_assembly_directory_name (aname->name, direntry, &gac_aname))
2358                         continue;
2359                 
2360                 if (aname->culture != NULL && strcmp (aname->culture, gac_aname.culture) != 0)
2361                         match = FALSE;
2362                         
2363                 if (match && strlen ((char*)aname->public_key_token) > 0 && 
2364                                 !mono_public_tokens_are_equal (aname->public_key_token, gac_aname.public_key_token))
2365                         match = FALSE;
2366                 
2367                 if (match) {
2368                         if (exact_version) {
2369                                 match = (aname->major == gac_aname.major && aname->minor == gac_aname.minor &&
2370                                                  aname->build == gac_aname.build && aname->revision == gac_aname.revision); 
2371                         }
2372                         else if (gac_aname.major < major)
2373                                 match = FALSE;
2374                         else if (gac_aname.major == major) {
2375                                 if (gac_aname.minor < minor)
2376                                         match = FALSE;
2377                                 else if (gac_aname.minor == minor) {
2378                                         if (gac_aname.build < build)
2379                                                 match = FALSE;
2380                                         else if (gac_aname.build == build && gac_aname.revision <= revision)
2381                                                 match = FALSE; 
2382                                 }
2383                         }
2384                 }
2385                 
2386                 if (match) {
2387                         major = gac_aname.major;
2388                         minor = gac_aname.minor;
2389                         build = gac_aname.build;
2390                         revision = gac_aname.revision;
2391                         g_free (fullpath);
2392                         fullpath = g_build_path (G_DIR_SEPARATOR_S, basepath, direntry, fullname, NULL);
2393                 }
2394
2395                 mono_assembly_name_free (&gac_aname);
2396         }
2397         
2398         g_dir_close (dirhandle);
2399         
2400         if (fullpath == NULL)
2401                 return NULL;
2402         else {
2403                 MonoAssembly *res = mono_assembly_open (fullpath, status);
2404                 g_free (fullpath);
2405                 return res;
2406         }
2407 }
2408
2409 MonoAssembly*
2410 mono_assembly_load_with_partial_name (const char *name, MonoImageOpenStatus *status)
2411 {
2412         MonoAssembly *res;
2413         MonoAssemblyName *aname, base_name;
2414         MonoAssemblyName mapped_aname;
2415         gchar *fullname, *gacpath;
2416         gchar **paths;
2417
2418         memset (&base_name, 0, sizeof (MonoAssemblyName));
2419         aname = &base_name;
2420
2421         if (!mono_assembly_name_parse (name, aname))
2422                 return NULL;
2423
2424         /* 
2425          * If no specific version has been requested, make sure we load the
2426          * correct version for system assemblies.
2427          */ 
2428         if ((aname->major | aname->minor | aname->build | aname->revision) == 0)
2429                 aname = mono_assembly_remap_version (aname, &mapped_aname);
2430         
2431         res = mono_assembly_loaded (aname);
2432         if (res) {
2433                 mono_assembly_name_free (aname);
2434                 return res;
2435         }
2436
2437         res = invoke_assembly_preload_hook (aname, assemblies_path);
2438         if (res) {
2439                 res->in_gac = FALSE;
2440                 mono_assembly_name_free (aname);
2441                 return res;
2442         }
2443
2444         fullname = g_strdup_printf ("%s.dll", aname->name);
2445
2446         if (extra_gac_paths) {
2447                 paths = extra_gac_paths;
2448                 while (!res && *paths) {
2449                         gacpath = g_build_path (G_DIR_SEPARATOR_S, *paths, "lib", "mono", "gac", aname->name, NULL);
2450                         res = probe_for_partial_name (gacpath, fullname, aname, status);
2451                         g_free (gacpath);
2452                         paths++;
2453                 }
2454         }
2455
2456         if (res) {
2457                 res->in_gac = TRUE;
2458                 g_free (fullname);
2459                 mono_assembly_name_free (aname);
2460                 return res;
2461         }
2462
2463         gacpath = g_build_path (G_DIR_SEPARATOR_S, mono_assembly_getrootdir (), "mono", "gac", aname->name, NULL);
2464         res = probe_for_partial_name (gacpath, fullname, aname, status);
2465         g_free (gacpath);
2466
2467         if (res)
2468                 res->in_gac = TRUE;
2469         else {
2470                 MonoDomain *domain = mono_domain_get ();
2471                 MonoReflectionAssembly *refasm = mono_try_assembly_resolve (domain, mono_string_new (domain, name), NULL, FALSE);
2472                 if (refasm)
2473                         res = refasm->assembly;
2474         }
2475         
2476         g_free (fullname);
2477         mono_assembly_name_free (aname);
2478
2479         return res;
2480 }
2481
2482 static MonoBoolean
2483 mono_assembly_is_in_gac (const gchar *filename)
2484 {
2485         const gchar *rootdir;
2486         gchar *gp;
2487         gchar **paths;
2488
2489         if (filename == NULL)
2490                 return FALSE;
2491
2492         for (paths = extra_gac_paths; paths && *paths; paths++) {
2493                 if (strstr (*paths, filename) != *paths)
2494                         continue;
2495
2496                 gp = (gchar *) (filename + strlen (*paths));
2497                 if (*gp != G_DIR_SEPARATOR)
2498                         continue;
2499                 gp++;
2500                 if (strncmp (gp, "lib", 3))
2501                         continue;
2502                 gp += 3;
2503                 if (*gp != G_DIR_SEPARATOR)
2504                         continue;
2505                 gp++;
2506                 if (strncmp (gp, "mono", 4))
2507                         continue;
2508                 gp += 4;
2509                 if (*gp != G_DIR_SEPARATOR)
2510                         continue;
2511                 gp++;
2512                 if (strncmp (gp, "gac", 3))
2513                         continue;
2514                 gp += 3;
2515                 if (*gp != G_DIR_SEPARATOR)
2516                         continue;
2517
2518                 return TRUE;
2519         }
2520
2521         rootdir = mono_assembly_getrootdir ();
2522         if (strstr (filename, rootdir) != filename)
2523                 return FALSE;
2524
2525         gp = (gchar *) (filename + strlen (rootdir));
2526         if (*gp != G_DIR_SEPARATOR)
2527                 return FALSE;
2528         gp++;
2529         if (strncmp (gp, "mono", 4))
2530                 return FALSE;
2531         gp += 4;
2532         if (*gp != G_DIR_SEPARATOR)
2533                 return FALSE;
2534         gp++;
2535         if (strncmp (gp, "gac", 3))
2536                 return FALSE;
2537         gp += 3;
2538         if (*gp != G_DIR_SEPARATOR)
2539                 return FALSE;
2540         return TRUE;
2541 }
2542
2543 static MonoImage*
2544 mono_assembly_load_publisher_policy (MonoAssemblyName *aname)
2545 {
2546         MonoImage *image;
2547         gchar *filename, *pname, *name, *culture, *version, *fullpath, *subpath;
2548         gchar **paths;
2549         gint32 len;
2550
2551         if (strstr (aname->name, ".dll")) {
2552                 len = strlen (aname->name) - 4;
2553                 name = (gchar *)g_malloc (len);
2554                 strncpy (name, aname->name, len);
2555         } else
2556                 name = g_strdup (aname->name);
2557         
2558         if (aname->culture)
2559                 culture = g_utf8_strdown (aname->culture, -1);
2560         else
2561                 culture = g_strdup ("");
2562         
2563         pname = g_strdup_printf ("policy.%d.%d.%s", aname->major, aname->minor, name);
2564         version = g_strdup_printf ("0.0.0.0_%s_%s", culture, aname->public_key_token);
2565         g_free (name);
2566         g_free (culture);
2567         
2568         filename = g_strconcat (pname, ".dll", NULL);
2569         subpath = g_build_path (G_DIR_SEPARATOR_S, pname, version, filename, NULL);
2570         g_free (pname);
2571         g_free (version);
2572         g_free (filename);
2573
2574         image = NULL;
2575         if (extra_gac_paths) {
2576                 paths = extra_gac_paths;
2577                 while (!image && *paths) {
2578                         fullpath = g_build_path (G_DIR_SEPARATOR_S, *paths,
2579                                         "lib", "mono", "gac", subpath, NULL);
2580                         image = mono_image_open (fullpath, NULL);
2581                         g_free (fullpath);
2582                         paths++;
2583                 }
2584         }
2585
2586         if (image) {
2587                 g_free (subpath);
2588                 return image;
2589         }
2590
2591         fullpath = g_build_path (G_DIR_SEPARATOR_S, mono_assembly_getrootdir (), 
2592                         "mono", "gac", subpath, NULL);
2593         image = mono_image_open (fullpath, NULL);
2594         g_free (subpath);
2595         g_free (fullpath);
2596         
2597         return image;
2598 }
2599
2600 static MonoAssemblyName*
2601 mono_assembly_bind_version (MonoAssemblyBindingInfo *info, MonoAssemblyName *aname, MonoAssemblyName *dest_name)
2602 {
2603         memcpy (dest_name, aname, sizeof (MonoAssemblyName));
2604         dest_name->major = info->new_version.major;
2605         dest_name->minor = info->new_version.minor;
2606         dest_name->build = info->new_version.build;
2607         dest_name->revision = info->new_version.revision;
2608         
2609         return dest_name;
2610 }
2611
2612 /* LOCKING: assembly_binding lock must be held */
2613 static MonoAssemblyBindingInfo*
2614 search_binding_loaded (MonoAssemblyName *aname)
2615 {
2616         GSList *tmp;
2617
2618         for (tmp = loaded_assembly_bindings; tmp; tmp = tmp->next) {
2619                 MonoAssemblyBindingInfo *info = (MonoAssemblyBindingInfo *)tmp->data;
2620                 if (assembly_binding_maps_name (info, aname))
2621                         return info;
2622         }
2623
2624         return NULL;
2625 }
2626
2627 static inline gboolean
2628 info_compare_versions (AssemblyVersionSet *left, AssemblyVersionSet *right)
2629 {
2630         if (left->major != right->major || left->minor != right->minor ||
2631             left->build != right->build || left->revision != right->revision)
2632                 return FALSE;
2633
2634         return TRUE;
2635 }
2636
2637 static inline gboolean
2638 info_versions_equal (MonoAssemblyBindingInfo *left, MonoAssemblyBindingInfo *right)
2639 {
2640         if (left->has_old_version_bottom != right->has_old_version_bottom)
2641                 return FALSE;
2642
2643         if (left->has_old_version_top != right->has_old_version_top)
2644                 return FALSE;
2645
2646         if (left->has_new_version != right->has_new_version)
2647                 return FALSE;
2648
2649         if (left->has_old_version_bottom && !info_compare_versions (&left->old_version_bottom, &right->old_version_bottom))
2650                 return FALSE;
2651
2652         if (left->has_old_version_top && !info_compare_versions (&left->old_version_top, &right->old_version_top))
2653                 return FALSE;
2654
2655         if (left->has_new_version && !info_compare_versions (&left->new_version, &right->new_version))
2656                 return FALSE;
2657
2658         return TRUE;
2659 }
2660
2661 /* LOCKING: assumes all the necessary locks are held */
2662 static void
2663 assembly_binding_info_parsed (MonoAssemblyBindingInfo *info, void *user_data)
2664 {
2665         MonoAssemblyBindingInfo *info_copy;
2666         GSList *tmp;
2667         MonoAssemblyBindingInfo *info_tmp;
2668         MonoDomain *domain = (MonoDomain*)user_data;
2669
2670         if (!domain)
2671                 return;
2672
2673         for (tmp = domain->assembly_bindings; tmp; tmp = tmp->next) {
2674                 info_tmp = (MonoAssemblyBindingInfo *)tmp->data;
2675                 if (strcmp (info->name, info_tmp->name) == 0 && info_versions_equal (info, info_tmp))
2676                         return;
2677         }
2678
2679         info_copy = (MonoAssemblyBindingInfo *)mono_mempool_alloc0 (domain->mp, sizeof (MonoAssemblyBindingInfo));
2680         memcpy (info_copy, info, sizeof (MonoAssemblyBindingInfo));
2681         if (info->name)
2682                 info_copy->name = mono_mempool_strdup (domain->mp, info->name);
2683         if (info->culture)
2684                 info_copy->culture = mono_mempool_strdup (domain->mp, info->culture);
2685
2686         domain->assembly_bindings = g_slist_append_mempool (domain->mp, domain->assembly_bindings, info_copy);
2687 }
2688
2689 static int
2690 get_version_number (int major, int minor)
2691 {
2692         return major * 256 + minor;
2693 }
2694
2695 static inline gboolean
2696 info_major_minor_in_range (MonoAssemblyBindingInfo *info, MonoAssemblyName *aname)
2697 {
2698         int aname_version_number = get_version_number (aname->major, aname->minor);
2699         if (!info->has_old_version_bottom)
2700                 return FALSE;
2701
2702         if (get_version_number (info->old_version_bottom.major, info->old_version_bottom.minor) > aname_version_number)
2703                 return FALSE;
2704
2705         if (info->has_old_version_top && get_version_number (info->old_version_top.major, info->old_version_top.minor) < aname_version_number)
2706                 return FALSE;
2707
2708         /* This is not the nicest way to do it, but it's a by-product of the way parsing is done */
2709         info->major = aname->major;
2710         info->minor = aname->minor;
2711
2712         return TRUE;
2713 }
2714
2715 /* LOCKING: Assumes that we are already locked - both loader and domain locks */
2716 static MonoAssemblyBindingInfo*
2717 get_per_domain_assembly_binding_info (MonoDomain *domain, MonoAssemblyName *aname)
2718 {
2719         MonoAssemblyBindingInfo *info;
2720         GSList *list;
2721
2722         if (!domain->assembly_bindings)
2723                 return NULL;
2724
2725         info = NULL;
2726         for (list = domain->assembly_bindings; list; list = list->next) {
2727                 info = (MonoAssemblyBindingInfo *)list->data;
2728                 if (info && !strcmp (aname->name, info->name) && info_major_minor_in_range (info, aname))
2729                         break;
2730                 info = NULL;
2731         }
2732
2733         if (info) {
2734                 if (info->name && info->public_key_token [0] && info->has_old_version_bottom &&
2735                     info->has_new_version && assembly_binding_maps_name (info, aname))
2736                         info->is_valid = TRUE;
2737                 else
2738                         info->is_valid = FALSE;
2739         }
2740
2741         return info;
2742 }
2743
2744 static MonoAssemblyName*
2745 mono_assembly_apply_binding (MonoAssemblyName *aname, MonoAssemblyName *dest_name)
2746 {
2747         MonoAssemblyBindingInfo *info, *info2;
2748         MonoImage *ppimage;
2749         MonoDomain *domain;
2750
2751         if (aname->public_key_token [0] == 0)
2752                 return aname;
2753
2754         domain = mono_domain_get ();
2755
2756         mono_assembly_binding_lock ();
2757         info = search_binding_loaded (aname);
2758         mono_assembly_binding_unlock ();
2759
2760         if (!info) {
2761                 mono_domain_lock (domain);
2762                 info = get_per_domain_assembly_binding_info (domain, aname);
2763                 mono_domain_unlock (domain);
2764         }
2765
2766         if (info) {
2767                 if (!check_policy_versions (info, aname))
2768                         return aname;
2769                 
2770                 mono_assembly_bind_version (info, aname, dest_name);
2771                 return dest_name;
2772         }
2773
2774         if (domain && domain->setup && domain->setup->configuration_file) {
2775                 mono_domain_lock (domain);
2776                 if (!domain->assembly_bindings_parsed) {
2777                         gchar *domain_config_file_name = mono_string_to_utf8 (domain->setup->configuration_file);
2778                         gchar *domain_config_file_path = mono_portability_find_file (domain_config_file_name, TRUE);
2779
2780                         if (!domain_config_file_path)
2781                                 domain_config_file_path = domain_config_file_name;
2782                         
2783                         mono_config_parse_assembly_bindings (domain_config_file_path, aname->major, aname->minor, domain, assembly_binding_info_parsed);
2784                         domain->assembly_bindings_parsed = TRUE;
2785                         if (domain_config_file_name != domain_config_file_path)
2786                                 g_free (domain_config_file_name);
2787                         g_free (domain_config_file_path);
2788                 }
2789
2790                 info2 = get_per_domain_assembly_binding_info (domain, aname);
2791
2792                 if (info2) {
2793                         info = (MonoAssemblyBindingInfo *)g_memdup (info2, sizeof (MonoAssemblyBindingInfo));
2794                         info->name = g_strdup (info2->name);
2795                         info->culture = g_strdup (info2->culture);
2796                         info->domain_id = domain->domain_id;
2797                 }
2798
2799                 mono_domain_unlock (domain);
2800         }
2801
2802         if (!info) {
2803                 info = g_new0 (MonoAssemblyBindingInfo, 1);
2804                 info->major = aname->major;
2805                 info->minor = aname->minor;
2806         }
2807
2808         if (!info->is_valid) {
2809                 ppimage = mono_assembly_load_publisher_policy (aname);
2810                 if (ppimage) {
2811                         get_publisher_policy_info (ppimage, aname, info);
2812                         mono_image_close (ppimage);
2813                 }
2814         }
2815
2816         /* Define default error value if needed */
2817         if (!info->is_valid) {
2818                 info->name = g_strdup (aname->name);
2819                 info->culture = g_strdup (aname->culture);
2820                 g_strlcpy ((char *)info->public_key_token, (const char *)aname->public_key_token, MONO_PUBLIC_KEY_TOKEN_LENGTH);
2821         }
2822         
2823         mono_assembly_binding_lock ();
2824         info2 = search_binding_loaded (aname);
2825         if (info2) {
2826                 /* This binding was added by another thread 
2827                  * before us */
2828                 mono_assembly_binding_info_free (info);
2829                 g_free (info);
2830                 
2831                 info = info2;
2832         } else
2833                 loaded_assembly_bindings = g_slist_prepend (loaded_assembly_bindings, info);
2834                 
2835         mono_assembly_binding_unlock ();
2836         
2837         if (!info->is_valid || !check_policy_versions (info, aname))
2838                 return aname;
2839
2840         mono_assembly_bind_version (info, aname, dest_name);
2841         return dest_name;
2842 }
2843
2844 /**
2845  * mono_assembly_load_from_gac
2846  *
2847  * @aname: The assembly name object
2848  */
2849 static MonoAssembly*
2850 mono_assembly_load_from_gac (MonoAssemblyName *aname,  gchar *filename, MonoImageOpenStatus *status, MonoBoolean refonly)
2851 {
2852         MonoAssembly *result = NULL;
2853         gchar *name, *version, *culture, *fullpath, *subpath;
2854         gint32 len;
2855         gchar **paths;
2856         char *pubtok;
2857
2858         if (aname->public_key_token [0] == 0) {
2859                 return NULL;
2860         }
2861
2862         if (strstr (aname->name, ".dll")) {
2863                 len = strlen (filename) - 4;
2864                 name = (gchar *)g_malloc (len);
2865                 strncpy (name, aname->name, len);
2866         } else {
2867                 name = g_strdup (aname->name);
2868         }
2869
2870         if (aname->culture) {
2871                 culture = g_utf8_strdown (aname->culture, -1);
2872         } else {
2873                 culture = g_strdup ("");
2874         }
2875
2876         pubtok = g_ascii_strdown ((char*)aname->public_key_token, MONO_PUBLIC_KEY_TOKEN_LENGTH);
2877         version = g_strdup_printf ("%d.%d.%d.%d_%s_%s", aname->major,
2878                         aname->minor, aname->build, aname->revision,
2879                         culture, pubtok);
2880         g_free (pubtok);
2881         
2882         subpath = g_build_path (G_DIR_SEPARATOR_S, name, version, filename, NULL);
2883         g_free (name);
2884         g_free (version);
2885         g_free (culture);
2886
2887         if (extra_gac_paths) {
2888                 paths = extra_gac_paths;
2889                 while (!result && *paths) {
2890                         fullpath = g_build_path (G_DIR_SEPARATOR_S, *paths, "lib", "mono", "gac", subpath, NULL);
2891                         result = mono_assembly_open_full (fullpath, status, refonly);
2892                         g_free (fullpath);
2893                         paths++;
2894                 }
2895         }
2896
2897         if (result) {
2898                 result->in_gac = TRUE;
2899                 g_free (subpath);
2900                 return result;
2901         }
2902
2903         fullpath = g_build_path (G_DIR_SEPARATOR_S, mono_assembly_getrootdir (),
2904                         "mono", "gac", subpath, NULL);
2905         result = mono_assembly_open_full (fullpath, status, refonly);
2906         g_free (fullpath);
2907
2908         if (result)
2909                 result->in_gac = TRUE;
2910         
2911         g_free (subpath);
2912
2913         return result;
2914 }
2915
2916 MonoAssembly*
2917 mono_assembly_load_corlib (const MonoRuntimeInfo *runtime, MonoImageOpenStatus *status)
2918 {
2919         char *corlib_file;
2920         MonoAssemblyName *aname;
2921
2922         if (corlib) {
2923                 /* g_print ("corlib already loaded\n"); */
2924                 return corlib;
2925         }
2926
2927         // In native client, Corlib is embedded in the executable as static variable corlibData
2928 #if defined(__native_client__)
2929         if (corlibData != NULL && corlibSize != 0) {
2930                 int status = 0;
2931                 /* First "FALSE" instructs mono not to make a copy. */
2932                 /* Second "FALSE" says this is not just a ref.      */
2933                 MonoImage* image = mono_image_open_from_data_full (corlibData, corlibSize, FALSE, &status, FALSE);
2934                 if (image == NULL || status != 0)
2935                         g_print("mono_image_open_from_data_full failed: %d\n", status);
2936                 corlib = mono_assembly_load_from_full (image, "mscorlib", &status, FALSE);
2937                 if (corlib == NULL || status != 0)
2938                         g_print ("mono_assembly_load_from_full failed: %d\n", status);
2939                 if (corlib)
2940                         return corlib;
2941         }
2942 #endif
2943
2944         // A nonstandard preload hook may provide a special mscorlib assembly
2945         aname = mono_assembly_name_new ("mscorlib.dll");
2946         corlib = invoke_assembly_preload_hook (aname, assemblies_path);
2947         mono_assembly_name_free (aname);
2948         g_free (aname);
2949         if (corlib != NULL)
2950                 return corlib;
2951
2952         // This unusual directory layout can occur if mono is being built and run out of its own source repo
2953         if (assemblies_path) { // Custom assemblies path set via MONO_PATH or mono_set_assemblies_path
2954                 corlib = load_in_path ("mscorlib.dll", (const char**)assemblies_path, status, FALSE);
2955                 if (corlib)
2956                         return corlib;
2957         }
2958
2959         /* Normal case: Load corlib from mono/<version> */
2960         corlib_file = g_build_filename ("mono", runtime->framework_version, "mscorlib.dll", NULL);
2961         if (assemblies_path) { // Custom assemblies path
2962                 corlib = load_in_path (corlib_file, (const char**)assemblies_path, status, FALSE);
2963                 if (corlib) {
2964                         g_free (corlib_file);
2965                         return corlib;
2966                 }
2967         }
2968         corlib = load_in_path (corlib_file, default_path, status, FALSE);
2969         g_free (corlib_file);
2970         
2971         if (corlib && !strcmp (runtime->framework_version, "4.5"))
2972                 default_path [1] = g_strdup_printf ("%s/mono/4.5/Facades", default_path [0]);
2973                 
2974         return corlib;
2975 }
2976
2977 MonoAssembly*
2978 mono_assembly_load_full_nosearch (MonoAssemblyName *aname, 
2979                                                                   const char       *basedir, 
2980                                                                   MonoImageOpenStatus *status,
2981                                                                   gboolean refonly)
2982 {
2983         MonoAssembly *result;
2984         char *fullpath, *filename;
2985         MonoAssemblyName maped_aname;
2986         MonoAssemblyName maped_name_pp;
2987         int ext_index;
2988         const char *ext;
2989         int len;
2990
2991         aname = mono_assembly_remap_version (aname, &maped_aname);
2992         
2993         /* Reflection only assemblies don't get assembly binding */
2994         if (!refonly)
2995                 aname = mono_assembly_apply_binding (aname, &maped_name_pp);
2996         
2997         result = mono_assembly_loaded_full (aname, refonly);
2998         if (result)
2999                 return result;
3000
3001         result = refonly ? invoke_assembly_refonly_preload_hook (aname, assemblies_path) : invoke_assembly_preload_hook (aname, assemblies_path);
3002         if (result) {
3003                 result->in_gac = FALSE;
3004                 return result;
3005         }
3006
3007         /* Currently we retrieve the loaded corlib for reflection 
3008          * only requests, like a common reflection only assembly 
3009          */
3010         if (strcmp (aname->name, "mscorlib") == 0 || strcmp (aname->name, "mscorlib.dll") == 0) {
3011                 return mono_assembly_load_corlib (mono_get_runtime_info (), status);
3012         }
3013
3014         len = strlen (aname->name);
3015         for (ext_index = 0; ext_index < 2; ext_index ++) {
3016                 ext = ext_index == 0 ? ".dll" : ".exe";
3017                 if (len > 4 && (!strcmp (aname->name + len - 4, ".dll") || !strcmp (aname->name + len - 4, ".exe"))) {
3018                         filename = g_strdup (aname->name);
3019                         /* Don't try appending .dll/.exe if it already has one of those extensions */
3020                         ext_index++;
3021                 } else {
3022                         filename = g_strconcat (aname->name, ext, NULL);
3023                 }
3024
3025                 result = mono_assembly_load_from_gac (aname, filename, status, refonly);
3026                 if (result) {
3027                         g_free (filename);
3028                         return result;
3029                 }
3030
3031                 if (basedir) {
3032                         fullpath = g_build_filename (basedir, filename, NULL);
3033                         result = mono_assembly_open_full (fullpath, status, refonly);
3034                         g_free (fullpath);
3035                         if (result) {
3036                                 result->in_gac = FALSE;
3037                                 g_free (filename);
3038                                 return result;
3039                         }
3040                 }
3041
3042                 result = load_in_path (filename, default_path, status, refonly);
3043                 if (result)
3044                         result->in_gac = FALSE;
3045                 g_free (filename);
3046                 if (result)
3047                         return result;
3048         }
3049
3050         return result;
3051 }
3052
3053 MonoAssembly*
3054 mono_assembly_load_full_internal (MonoAssemblyName *aname, MonoAssembly *requesting, const char *basedir, MonoImageOpenStatus *status, gboolean refonly)
3055 {
3056         MonoAssembly *result = mono_assembly_load_full_nosearch (aname, basedir, status, refonly);
3057
3058         if (!result)
3059                 /* Try a postload search hook */
3060                 result = mono_assembly_invoke_search_hook_internal (aname, requesting, refonly, TRUE);
3061         return result;
3062 }
3063
3064 /**
3065  * mono_assembly_load_full:
3066  * @aname: A MonoAssemblyName with the assembly name to load.
3067  * @basedir: A directory to look up the assembly at.
3068  * @status: a pointer to a MonoImageOpenStatus to return the status of the load operation
3069  * @refonly: Whether this assembly is being opened in "reflection-only" mode.
3070  *
3071  * Loads the assembly referenced by @aname, if the value of @basedir is not NULL, it
3072  * attempts to load the assembly from that directory before probing the standard locations.
3073  *
3074  * If the assembly is being opened in reflection-only mode (@refonly set to TRUE) then no 
3075  * assembly binding takes place.
3076  *
3077  * Returns: the assembly referenced by @aname loaded or NULL on error.   On error the
3078  * value pointed by status is updated with an error code.
3079  */
3080 MonoAssembly*
3081 mono_assembly_load_full (MonoAssemblyName *aname, const char *basedir, MonoImageOpenStatus *status, gboolean refonly)
3082 {
3083         return mono_assembly_load_full_internal (aname, NULL, basedir, status, refonly);
3084 }
3085
3086 /**
3087  * mono_assembly_load:
3088  * @aname: A MonoAssemblyName with the assembly name to load.
3089  * @basedir: A directory to look up the assembly at.
3090  * @status: a pointer to a MonoImageOpenStatus to return the status of the load operation
3091  *
3092  * Loads the assembly referenced by @aname, if the value of @basedir is not NULL, it
3093  * attempts to load the assembly from that directory before probing the standard locations.
3094  *
3095  * Returns: the assembly referenced by @aname loaded or NULL on error.   On error the
3096  * value pointed by status is updated with an error code.
3097  */
3098 MonoAssembly*
3099 mono_assembly_load (MonoAssemblyName *aname, const char *basedir, MonoImageOpenStatus *status)
3100 {
3101         return mono_assembly_load_full_internal (aname, NULL, basedir, status, FALSE);
3102 }
3103
3104 MonoAssembly*
3105 mono_assembly_loaded_full (MonoAssemblyName *aname, gboolean refonly)
3106 {
3107         MonoAssembly *res;
3108         MonoAssemblyName maped_aname;
3109
3110         aname = mono_assembly_remap_version (aname, &maped_aname);
3111
3112         res = mono_assembly_invoke_search_hook_internal (aname, NULL, refonly, FALSE);
3113
3114         return res;
3115 }
3116
3117 /**
3118  * mono_assembly_loaded:
3119  * @aname: an assembly to look for.
3120  *
3121  * Returns: NULL If the given @aname assembly has not been loaded, or a pointer to
3122  * a MonoAssembly that matches the MonoAssemblyName specified.
3123  */
3124 MonoAssembly*
3125 mono_assembly_loaded (MonoAssemblyName *aname)
3126 {
3127         return mono_assembly_loaded_full (aname, FALSE);
3128 }
3129
3130 void
3131 mono_assembly_release_gc_roots (MonoAssembly *assembly)
3132 {
3133         if (assembly == NULL || assembly == REFERENCE_MISSING)
3134                 return;
3135
3136         if (assembly_is_dynamic (assembly)) {
3137                 int i;
3138                 MonoDynamicImage *dynimg = (MonoDynamicImage *)assembly->image;
3139                 for (i = 0; i < dynimg->image.module_count; ++i)
3140                         mono_dynamic_image_release_gc_roots ((MonoDynamicImage *)dynimg->image.modules [i]);
3141                 mono_dynamic_image_release_gc_roots (dynimg);
3142         }
3143 }
3144
3145 /*
3146  * Returns whether mono_assembly_close_finish() must be called as
3147  * well.  See comment for mono_image_close_except_pools() for why we
3148  * unload in two steps.
3149  */
3150 gboolean
3151 mono_assembly_close_except_image_pools (MonoAssembly *assembly)
3152 {
3153         GSList *tmp;
3154         g_return_val_if_fail (assembly != NULL, FALSE);
3155
3156         if (assembly == REFERENCE_MISSING)
3157                 return FALSE;
3158
3159         /* Might be 0 already */
3160         if (InterlockedDecrement (&assembly->ref_count) > 0)
3161                 return FALSE;
3162
3163         mono_profiler_assembly_event (assembly, MONO_PROFILE_START_UNLOAD);
3164
3165         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Unloading assembly %s [%p].", assembly->aname.name, assembly);
3166
3167         mono_debug_close_image (assembly->image);
3168
3169         mono_assemblies_lock ();
3170         loaded_assemblies = g_list_remove (loaded_assemblies, assembly);
3171         mono_assemblies_unlock ();
3172
3173         assembly->image->assembly = NULL;
3174
3175         if (!mono_image_close_except_pools (assembly->image))
3176                 assembly->image = NULL;
3177
3178         for (tmp = assembly->friend_assembly_names; tmp; tmp = tmp->next) {
3179                 MonoAssemblyName *fname = (MonoAssemblyName *)tmp->data;
3180                 mono_assembly_name_free (fname);
3181                 g_free (fname);
3182         }
3183         g_slist_free (assembly->friend_assembly_names);
3184         g_free (assembly->basedir);
3185
3186         mono_profiler_assembly_event (assembly, MONO_PROFILE_END_UNLOAD);
3187
3188         return TRUE;
3189 }
3190
3191 void
3192 mono_assembly_close_finish (MonoAssembly *assembly)
3193 {
3194         g_assert (assembly && assembly != REFERENCE_MISSING);
3195
3196         if (assembly->image)
3197                 mono_image_close_finish (assembly->image);
3198
3199         if (assembly_is_dynamic (assembly)) {
3200                 g_free ((char*)assembly->aname.culture);
3201         } else {
3202                 g_free (assembly);
3203         }
3204 }
3205
3206 /**
3207  * mono_assembly_close:
3208  * @assembly: the assembly to release.
3209  *
3210  * This method releases a reference to the @assembly.  The assembly is
3211  * only released when all the outstanding references to it are released.
3212  */
3213 void
3214 mono_assembly_close (MonoAssembly *assembly)
3215 {
3216         if (mono_assembly_close_except_image_pools (assembly))
3217                 mono_assembly_close_finish (assembly);
3218 }
3219
3220 MonoImage*
3221 mono_assembly_load_module (MonoAssembly *assembly, guint32 idx)
3222 {
3223         return mono_image_load_file_for_image (assembly->image, idx);
3224 }
3225
3226 void
3227 mono_assembly_foreach (GFunc func, gpointer user_data)
3228 {
3229         GList *copy;
3230
3231         /*
3232          * We make a copy of the list to avoid calling the callback inside the 
3233          * lock, which could lead to deadlocks.
3234          */
3235         mono_assemblies_lock ();
3236         copy = g_list_copy (loaded_assemblies);
3237         mono_assemblies_unlock ();
3238
3239         g_list_foreach (loaded_assemblies, func, user_data);
3240
3241         g_list_free (copy);
3242 }
3243
3244 /**
3245  * mono_assemblies_cleanup:
3246  *
3247  * Free all resources used by this module.
3248  */
3249 void
3250 mono_assemblies_cleanup (void)
3251 {
3252         GSList *l;
3253
3254         mono_os_mutex_destroy (&assemblies_mutex);
3255         mono_os_mutex_destroy (&assembly_binding_mutex);
3256
3257         for (l = loaded_assembly_bindings; l; l = l->next) {
3258                 MonoAssemblyBindingInfo *info = (MonoAssemblyBindingInfo *)l->data;
3259
3260                 mono_assembly_binding_info_free (info);
3261                 g_free (info);
3262         }
3263         g_slist_free (loaded_assembly_bindings);
3264
3265         free_assembly_load_hooks ();
3266         free_assembly_search_hooks ();
3267         free_assembly_preload_hooks ();
3268 }
3269
3270 /*LOCKING takes the assembly_binding lock*/
3271 void
3272 mono_assembly_cleanup_domain_bindings (guint32 domain_id)
3273 {
3274         GSList **iter;
3275
3276         mono_assembly_binding_lock ();
3277         iter = &loaded_assembly_bindings;
3278         while (*iter) {
3279                 GSList *l = *iter;
3280                 MonoAssemblyBindingInfo *info = (MonoAssemblyBindingInfo *)l->data;
3281
3282                 if (info->domain_id == domain_id) {
3283                         *iter = l->next;
3284                         mono_assembly_binding_info_free (info);
3285                         g_free (info);
3286                         g_slist_free_1 (l);
3287                 } else {
3288                         iter = &l->next;
3289                 }
3290         }
3291         mono_assembly_binding_unlock ();
3292 }
3293
3294 /*
3295  * Holds the assembly of the application, for
3296  * System.Diagnostics.Process::MainModule
3297  */
3298 static MonoAssembly *main_assembly=NULL;
3299
3300 void
3301 mono_assembly_set_main (MonoAssembly *assembly)
3302 {
3303         main_assembly = assembly;
3304 }
3305
3306 /**
3307  * mono_assembly_get_main:
3308  *
3309  * Returns: the assembly for the application, the first assembly that is loaded by the VM
3310  */
3311 MonoAssembly *
3312 mono_assembly_get_main (void)
3313 {
3314         return (main_assembly);
3315 }
3316
3317 /**
3318  * mono_assembly_get_image:
3319  * @assembly: The assembly to retrieve the image from
3320  *
3321  * Returns: the MonoImage associated with this assembly.
3322  */
3323 MonoImage*
3324 mono_assembly_get_image (MonoAssembly *assembly)
3325 {
3326         return assembly->image;
3327 }
3328
3329 /**
3330  * mono_assembly_get_name:
3331  * @assembly: The assembly to retrieve the name from
3332  *
3333  * The returned name's lifetime is the same as @assembly's.
3334  *
3335  * Returns: the MonoAssemblyName associated with this assembly.
3336  */
3337 MonoAssemblyName *
3338 mono_assembly_get_name (MonoAssembly *assembly)
3339 {
3340         return &assembly->aname;
3341 }
3342
3343 void
3344 mono_register_bundled_assemblies (const MonoBundledAssembly **assemblies)
3345 {
3346         bundles = assemblies;
3347 }
3348
3349 #define MONO_DECLSEC_FORMAT_10          0x3C
3350 #define MONO_DECLSEC_FORMAT_20          0x2E
3351 #define MONO_DECLSEC_FIELD              0x53
3352 #define MONO_DECLSEC_PROPERTY           0x54
3353
3354 #define SKIP_VISIBILITY_XML_ATTRIBUTE ("\"SkipVerification\"")
3355 #define SKIP_VISIBILITY_ATTRIBUTE_NAME ("System.Security.Permissions.SecurityPermissionAttribute")
3356 #define SKIP_VISIBILITY_ATTRIBUTE_SIZE (sizeof (SKIP_VISIBILITY_ATTRIBUTE_NAME) - 1)
3357 #define SKIP_VISIBILITY_PROPERTY_NAME ("SkipVerification")
3358 #define SKIP_VISIBILITY_PROPERTY_SIZE (sizeof (SKIP_VISIBILITY_PROPERTY_NAME) - 1)
3359
3360 static gboolean
3361 mono_assembly_try_decode_skip_verification_param (const char *p, const char **resp, gboolean *abort_decoding)
3362 {
3363         int len;
3364         switch (*p++) {
3365         case MONO_DECLSEC_PROPERTY:
3366                 break;
3367         case MONO_DECLSEC_FIELD:
3368         default:
3369                 *abort_decoding = TRUE;
3370                 return FALSE;
3371                 break;
3372         }
3373
3374         if (*p++ != MONO_TYPE_BOOLEAN) {
3375                 *abort_decoding = TRUE;
3376                 return FALSE;
3377         }
3378                 
3379         /* property name length */
3380         len = mono_metadata_decode_value (p, &p);
3381
3382         if (len >= SKIP_VISIBILITY_PROPERTY_SIZE && !memcmp (p, SKIP_VISIBILITY_PROPERTY_NAME, SKIP_VISIBILITY_PROPERTY_SIZE)) {
3383                 p += len;
3384                 return *p;
3385         }
3386         p += len + 1;
3387
3388         *resp = p;
3389         return FALSE;
3390 }
3391
3392 static gboolean
3393 mono_assembly_try_decode_skip_verification (const char *p, const char *endn)
3394 {
3395         int i, j, num, len, params_len;
3396
3397         if (*p == MONO_DECLSEC_FORMAT_10) {
3398                 gsize read, written;
3399                 char *res = g_convert (p, endn - p, "UTF-8", "UTF-16LE", &read, &written, NULL);
3400                 if (res) {
3401                         gboolean found = strstr (res, SKIP_VISIBILITY_XML_ATTRIBUTE) != NULL;
3402                         g_free (res);
3403                         return found;
3404                 }
3405                 return FALSE;
3406         }
3407         if (*p++ != MONO_DECLSEC_FORMAT_20)
3408                 return FALSE;
3409
3410         /* number of encoded permission attributes */
3411         num = mono_metadata_decode_value (p, &p);
3412         for (i = 0; i < num; ++i) {
3413                 gboolean is_valid = FALSE;
3414                 gboolean abort_decoding = FALSE;
3415
3416                 /* attribute name length */
3417                 len =  mono_metadata_decode_value (p, &p);
3418
3419                 /* We don't really need to fully decode the type. Comparing the name is enough */
3420                 is_valid = len >= SKIP_VISIBILITY_ATTRIBUTE_SIZE && !memcmp (p, SKIP_VISIBILITY_ATTRIBUTE_NAME, SKIP_VISIBILITY_ATTRIBUTE_SIZE);
3421
3422                 p += len;
3423
3424                 /*size of the params table*/
3425                 params_len =  mono_metadata_decode_value (p, &p);
3426                 if (is_valid) {
3427                         const char *params_end = p + params_len;
3428                         
3429                         /* number of parameters */
3430                         len = mono_metadata_decode_value (p, &p);
3431         
3432                         for (j = 0; j < len; ++j) {
3433                                 if (mono_assembly_try_decode_skip_verification_param (p, &p, &abort_decoding))
3434                                         return TRUE;
3435                                 if (abort_decoding)
3436                                         break;
3437                         }
3438                         p = params_end;
3439                 } else {
3440                         p += params_len;
3441                 }
3442         }
3443         
3444         return FALSE;
3445 }
3446
3447
3448 gboolean
3449 mono_assembly_has_skip_verification (MonoAssembly *assembly)
3450 {
3451         MonoTableInfo *t;       
3452         guint32 cols [MONO_DECL_SECURITY_SIZE];
3453         const char *blob;
3454         int i, len;
3455
3456         if (MONO_SECMAN_FLAG_INIT (assembly->skipverification))
3457                 return MONO_SECMAN_FLAG_GET_VALUE (assembly->skipverification);
3458
3459         t = &assembly->image->tables [MONO_TABLE_DECLSECURITY];
3460
3461         for (i = 0; i < t->rows; ++i) {
3462                 mono_metadata_decode_row (t, i, cols, MONO_DECL_SECURITY_SIZE);
3463                 if ((cols [MONO_DECL_SECURITY_PARENT] & MONO_HAS_DECL_SECURITY_MASK) != MONO_HAS_DECL_SECURITY_ASSEMBLY)
3464                         continue;
3465                 if (cols [MONO_DECL_SECURITY_ACTION] != SECURITY_ACTION_REQMIN)
3466                         continue;
3467
3468                 blob = mono_metadata_blob_heap (assembly->image, cols [MONO_DECL_SECURITY_PERMISSIONSET]);
3469                 len = mono_metadata_decode_blob_size (blob, &blob);
3470                 if (!len)
3471                         continue;
3472
3473                 if (mono_assembly_try_decode_skip_verification (blob, blob + len)) {
3474                         MONO_SECMAN_FLAG_SET_VALUE (assembly->skipverification, TRUE);
3475                         return TRUE;
3476                 }
3477         }
3478
3479         MONO_SECMAN_FLAG_SET_VALUE (assembly->skipverification, FALSE);
3480         return FALSE;
3481 }