[runtime] Export API functions to get arch/os/wordsize strings.
[mono.git] / mono / metadata / mono-config.c
1 /*
2  * mono-config.c
3  *
4  * Runtime and assembly configuration file support routines.
5  *
6  * Author: Paolo Molaro (lupus@ximian.com)
7  *
8  * Copyright 2002-2003 Ximian, Inc (http://www.ximian.com)
9  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
10  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
11  */
12 #include "config.h"
13 #include <glib.h>
14 #include <string.h>
15
16 #include "mono/metadata/assembly.h"
17 #include "mono/metadata/loader.h"
18 #include "mono/metadata/mono-config.h"
19 #include "mono/metadata/metadata-internals.h"
20 #include "mono/metadata/object-internals.h"
21 #include "mono/utils/mono-logger-internals.h"
22
23 #if defined(TARGET_PS3)
24 #define CONFIG_OS "CellOS"
25 #elif defined(__linux__)
26 #define CONFIG_OS "linux"
27 #elif defined(__APPLE__)
28 #define CONFIG_OS "osx"
29 #elif defined(sun)
30 #define CONFIG_OS "solaris"
31 #elif defined(__FreeBSD__)
32 #define CONFIG_OS "freebsd"
33 #elif defined(__NetBSD__)
34 #define CONFIG_OS "netbsd"
35 #elif defined(__OpenBSD__)
36 #define CONFIG_OS "openbsd"
37 #elif defined(__WIN32__) || defined(TARGET_WIN32)
38 #define CONFIG_OS "windows"
39 #elif defined(_IBMR2)
40 #define CONFIG_OS "aix"
41 #elif defined(__hpux)
42 #define CONFIG_OS "hpux"
43 #elif defined(__HAIKU__)
44 #define CONFIG_OS "haiku"
45 #else
46 #warning Unknown operating system
47 #define CONFIG_OS "unknownOS"
48 #endif
49
50 #ifndef CONFIG_CPU
51 #if defined(__i386__) || defined(TARGET_X86)
52 #define CONFIG_CPU "x86"
53 #define CONFIG_WORDSIZE "32"
54 #elif defined(__x86_64__) || defined(TARGET_AMD64)
55 #define CONFIG_CPU "x86-64"
56 #define CONFIG_WORDSIZE "64"
57 #elif defined(sparc) || defined(__sparc__)
58 #define CONFIG_CPU "sparc"
59 #define CONFIG_WORDSIZE "32"
60 #elif defined(__ppc64__) || defined(__powerpc64__) || defined(TARGET_POWERPC)
61 #define CONFIG_WORDSIZE "64"
62 #ifdef __mono_ppc_ilp32__ 
63 #   define CONFIG_CPU "ppc64ilp32"
64 #else
65 #   define CONFIG_CPU "ppc64"
66 #endif
67 #elif defined(__ppc__) || defined(__powerpc__)
68 #define CONFIG_CPU "ppc"
69 #define CONFIG_WORDSIZE "32"
70 #elif defined(__s390x__)
71 #define CONFIG_CPU "s390x"
72 #define CONFIG_WORDSIZE "64"
73 #elif defined(__s390__)
74 #define CONFIG_CPU "s390"
75 #define CONFIG_WORDSIZE "32"
76 #elif defined(__arm__)
77 #define CONFIG_CPU "arm"
78 #define CONFIG_WORDSIZE "32"
79 #elif defined(__aarch64__)
80 #define CONFIG_CPU "armv8"
81 #define CONFIG_WORDSIZE "64"
82 #elif defined(__ia64__)
83 #define CONFIG_CPU "ia64"
84 #define CONFIG_WORDSIZE "64"
85 #elif defined(mips) || defined(__mips) || defined(_mips)
86 #define CONFIG_CPU "mips"
87 #define CONFIG_WORDSIZE "32"
88 #else
89 #error Unknown CPU
90 #define CONFIG_CPU "unknownCPU"
91 #endif
92 #endif
93
94 /**
95  * mono_config_get_os:
96  *
97  * Returns the operating system that Mono is running on, as used for dllmap entries.
98  */
99 const char *
100 mono_config_get_os (void)
101 {
102         return CONFIG_OS;
103 }
104
105 /**
106  * mono_config_get_cpu:
107  *
108  * Returns the architecture that Mono is running on, as used for dllmap entries.
109  */
110 const char *
111 mono_config_get_cpu (void)
112 {
113         return CONFIG_CPU;
114 }
115
116 /**
117  * mono_config_get_wordsize:
118  *
119  * Returns the word size that Mono is running on, as used for dllmap entries.
120  */
121 const char *
122 mono_config_get_wordsize (void)
123 {
124         return CONFIG_WORDSIZE;
125 }
126
127 static void start_element (GMarkupParseContext *context, 
128                            const gchar         *element_name,
129                            const gchar        **attribute_names,
130                            const gchar        **attribute_values,
131                            gpointer             user_data,
132                            GError             **error);
133
134 static void end_element   (GMarkupParseContext *context,
135                            const gchar         *element_name,
136                            gpointer             user_data,
137                            GError             **error);
138
139 static void parse_text    (GMarkupParseContext *context,
140                            const gchar         *text,
141                            gsize                text_len,
142                            gpointer             user_data,
143                            GError             **error);
144
145 static void passthrough   (GMarkupParseContext *context,
146                            const gchar         *text,
147                            gsize                text_len,
148                            gpointer             user_data,
149                            GError             **error);
150
151 static void parse_error   (GMarkupParseContext *context,
152                            GError              *error,
153                            gpointer             user_data);
154
155 static const GMarkupParser 
156 mono_parser = {
157         start_element,
158         end_element,
159         parse_text,
160         passthrough,
161         parse_error
162 };
163
164 static GHashTable *config_handlers;
165
166 static const char *mono_cfg_dir = NULL;
167 static char *mono_cfg_dir_allocated = NULL;
168
169 /* when this interface is stable, export it. */
170 typedef struct MonoParseHandler MonoParseHandler;
171
172 struct MonoParseHandler {
173         const char *element_name;
174         void*(*init)   (MonoImage *assembly);
175         void (*start)  (gpointer user_data, const gchar *name,
176                         const gchar **attributes,
177                         const gchar **values);
178         void (*text)   (gpointer user_data, const char *text, gsize test_len);
179         void (*end)    (gpointer user_data, const char *name);
180         void (*finish) (gpointer user_data);
181 };
182
183 typedef struct {
184         MonoAssemblyBindingInfo *info;
185         void (*info_parsed)(MonoAssemblyBindingInfo *info, void *user_data);
186         void *user_data;
187 } ParserUserData;
188
189 typedef struct {
190         MonoParseHandler *current;
191         void *user_data;
192         MonoImage *assembly;
193         int inited;
194 } ParseState;
195
196 static void start_element (GMarkupParseContext *context, 
197                            const gchar         *element_name,
198                            const gchar        **attribute_names,
199                            const gchar        **attribute_values,
200                            gpointer             user_data,
201                            GError             **error)
202 {
203         ParseState *state = (ParseState *)user_data;
204         if (!state->current) {
205                 state->current = (MonoParseHandler *)g_hash_table_lookup (config_handlers, element_name);
206                 if (state->current && state->current->init)
207                         state->user_data = state->current->init (state->assembly);
208         }
209         if (state->current && state->current->start)
210                 state->current->start (state->user_data, element_name, attribute_names, attribute_values);
211 }
212
213 static void end_element   (GMarkupParseContext *context,
214                            const gchar         *element_name,
215                            gpointer             user_data,
216                            GError             **error)
217 {
218         ParseState *state = (ParseState *)user_data;
219         if (state->current) {
220                 if (state->current->end)
221                         state->current->end (state->user_data, element_name);
222                 if (strcmp (state->current->element_name, element_name) == 0) {
223                         if (state->current->finish)
224                                 state->current->finish (state->user_data);
225                         state->current = NULL;
226                         state->user_data = NULL;
227                 }
228         }
229 }
230
231 static void parse_text    (GMarkupParseContext *context,
232                            const gchar         *text,
233                            gsize                text_len,
234                            gpointer             user_data,
235                            GError             **error)
236 {
237         ParseState *state = (ParseState *)user_data;
238         if (state->current && state->current->text)
239                 state->current->text (state->user_data, text, text_len);
240 }
241
242 static void passthrough   (GMarkupParseContext *context,
243                            const gchar         *text,
244                            gsize                text_len,
245                            gpointer             user_data,
246                            GError             **error)
247 {
248         /* do nothing */
249 }
250
251 static void parse_error   (GMarkupParseContext *context,
252                            GError              *error,
253                            gpointer             user_data)
254 {
255         ParseState *state = (ParseState *)user_data;
256         const gchar *msg;
257         const gchar *filename;
258
259         filename = state && state->user_data ? (gchar *) state->user_data : "<unknown>";
260         msg = error && error->message ? error->message : "";
261         g_warning ("Error parsing %s: %s", filename, msg);
262 }
263
264 static int
265 arch_matches (const char* arch, const char *value)
266 {
267         char **splitted, **p;
268         int found = FALSE;
269         if (value [0] == '!')
270                 return !arch_matches (arch, value + 1);
271         p = splitted = g_strsplit (value, ",", 0);
272         while (*p) {
273                 if (strcmp (arch, *p) == 0) {
274                         found = TRUE;
275                         break;
276                 }
277                 p++;
278         }
279         g_strfreev (splitted);
280         return found;
281 }
282
283 typedef struct {
284         char *dll;
285         char *target;
286         int ignore;
287         MonoImage *assembly;
288 } DllInfo;
289
290 static void*
291 dllmap_init (MonoImage *assembly) {
292         DllInfo *info = g_new0 (DllInfo, 1);
293         info->assembly = assembly;
294         return info;
295 }
296
297 static void
298 dllmap_start (gpointer user_data, 
299               const gchar         *element_name,
300               const gchar        **attribute_names,
301               const gchar        **attribute_values)
302 {
303         int i;
304         DllInfo *info = (DllInfo *)user_data;
305         
306         if (strcmp (element_name, "dllmap") == 0) {
307                 g_free (info->dll);
308                 g_free (info->target);
309                 info->dll = info->target = NULL;
310                 info->ignore = FALSE;
311                 for (i = 0; attribute_names [i]; ++i) {
312                         if (strcmp (attribute_names [i], "dll") == 0)
313                                 info->dll = g_strdup (attribute_values [i]);
314                         else if (strcmp (attribute_names [i], "target") == 0){
315                                 char *p = strstr (attribute_values [i], "$mono_libdir");
316                                 if (p != NULL){
317                                         const char *libdir = mono_assembly_getrootdir ();
318                                         size_t libdir_len = strlen (libdir);
319                                         char *result;
320                                         
321                                         result = (char *)g_malloc (libdir_len-strlen("$mono_libdir")+strlen(attribute_values[i])+1);
322                                         strncpy (result, attribute_values[i], p-attribute_values[i]);
323                                         strcpy (result+(p-attribute_values[i]), libdir);
324                                         strcat (result, p+strlen("$mono_libdir"));
325                                         info->target = result;
326                                 } else 
327                                         info->target = g_strdup (attribute_values [i]);
328                         } else if (strcmp (attribute_names [i], "os") == 0 && !arch_matches (CONFIG_OS, attribute_values [i]))
329                                 info->ignore = TRUE;
330                         else if (strcmp (attribute_names [i], "cpu") == 0 && !arch_matches (CONFIG_CPU, attribute_values [i]))
331                                 info->ignore = TRUE;
332                         else if (strcmp (attribute_names [i], "wordsize") == 0 && !arch_matches (CONFIG_WORDSIZE, attribute_values [i]))
333                                 info->ignore = TRUE;
334                 }
335                 if (!info->ignore)
336                         mono_dllmap_insert (info->assembly, info->dll, NULL, info->target, NULL);
337         } else if (strcmp (element_name, "dllentry") == 0) {
338                 const char *name = NULL, *target = NULL, *dll = NULL;
339                 int ignore = FALSE;
340                 for (i = 0; attribute_names [i]; ++i) {
341                         if (strcmp (attribute_names [i], "dll") == 0)
342                                 dll = attribute_values [i];
343                         else if (strcmp (attribute_names [i], "target") == 0)
344                                 target = attribute_values [i];
345                         else if (strcmp (attribute_names [i], "name") == 0)
346                                 name = attribute_values [i];
347                         else if (strcmp (attribute_names [i], "os") == 0 && !arch_matches (CONFIG_OS, attribute_values [i]))
348                                 ignore = TRUE;
349                         else if (strcmp (attribute_names [i], "cpu") == 0 && !arch_matches (CONFIG_CPU, attribute_values [i]))
350                                 ignore = TRUE;
351                         else if (strcmp (attribute_names [i], "wordsize") == 0 && !arch_matches (CONFIG_WORDSIZE, attribute_values [i]))
352                                 ignore = TRUE;
353                 }
354                 if (!dll)
355                         dll = info->dll;
356                 if (!info->ignore && !ignore)
357                         mono_dllmap_insert (info->assembly, info->dll, name, dll, target);
358         }
359 }
360
361 static void
362 dllmap_finish (gpointer user_data)
363 {
364         DllInfo *info = (DllInfo *)user_data;
365
366         g_free (info->dll);
367         g_free (info->target);
368         g_free (info);
369 }
370
371 static const MonoParseHandler
372 dllmap_handler = {
373         "dllmap",
374         dllmap_init,
375         dllmap_start,
376         NULL, /* text */
377         NULL, /* end */
378         dllmap_finish
379 };
380
381 static void
382 legacyUEP_start (gpointer user_data, 
383               const gchar         *element_name,
384               const gchar        **attribute_names,
385               const gchar        **attribute_values) {
386         if ((strcmp (element_name, "legacyUnhandledExceptionPolicy") == 0) &&
387                         (attribute_names [0] != NULL) &&
388                         (strcmp (attribute_names [0], "enabled") == 0)) {
389                 if ((strcmp (attribute_values [0], "1") == 0) ||
390                                 (g_ascii_strcasecmp (attribute_values [0], "true") == 0)) {
391                         mono_runtime_unhandled_exception_policy_set (MONO_UNHANDLED_POLICY_LEGACY);
392                 }
393         }
394 }
395
396 static const MonoParseHandler
397 legacyUEP_handler = {
398         "legacyUnhandledExceptionPolicy",
399         NULL, /* init */
400         legacyUEP_start,
401         NULL, /* text */
402         NULL, /* end */
403         NULL, /* finish */
404 };
405
406 static void
407 aot_cache_start (gpointer user_data,
408                                  const gchar         *element_name,
409                                  const gchar        **attribute_names,
410                                  const gchar        **attribute_values)
411 {
412         int i;
413         MonoAotCacheConfig *config;
414
415         if (strcmp (element_name, "aotcache") != 0)
416                 return;
417
418         config = mono_get_aot_cache_config ();
419
420         /* Per-app configuration */
421         for (i = 0; attribute_names [i]; ++i) {
422                 if (!strcmp (attribute_names [i], "app")) {
423                         config->apps = g_slist_prepend (config->apps, g_strdup (attribute_values [i]));
424                 }
425         }
426
427         /* Global configuration */
428         for (i = 0; attribute_names [i]; ++i) {
429                 if (!strcmp (attribute_names [i], "assemblies")) {
430                         char **parts, **ptr;
431                         char *part;
432
433                         parts = g_strsplit (attribute_values [i], " ", -1);
434                         for (ptr = parts; ptr && *ptr; ptr ++) {
435                                 part = *ptr;
436                                 config->assemblies = g_slist_prepend (config->assemblies, g_strdup (part));
437                         }
438                         g_strfreev (parts);
439                 } else if (!strcmp (attribute_names [i], "options")) {
440                         config->aot_options = g_strdup (attribute_values [i]);
441                 }
442         }
443 }
444
445 static const MonoParseHandler
446 aot_cache_handler = {
447         "aotcache",
448         NULL, /* init */
449         aot_cache_start,
450         NULL, /* text */
451         NULL, /* end */
452         NULL, /* finish */
453 };
454
455 static int inited = 0;
456
457 static void
458 mono_config_init (void)
459 {
460         inited = 1;
461         config_handlers = g_hash_table_new (g_str_hash, g_str_equal);
462         g_hash_table_insert (config_handlers, (gpointer) dllmap_handler.element_name, (gpointer) &dllmap_handler);
463         g_hash_table_insert (config_handlers, (gpointer) legacyUEP_handler.element_name, (gpointer) &legacyUEP_handler);
464         g_hash_table_insert (config_handlers, (gpointer) aot_cache_handler.element_name, (gpointer) &aot_cache_handler);
465 }
466
467 void
468 mono_config_cleanup (void)
469 {
470         if (config_handlers)
471                 g_hash_table_destroy (config_handlers);
472         g_free (mono_cfg_dir_allocated);
473 }
474
475 /* FIXME: error handling */
476
477 static void
478 mono_config_parse_xml_with_context (ParseState *state, const char *text, gsize len)
479 {
480         GMarkupParseContext *context;
481
482         if (!inited)
483                 mono_config_init ();
484
485         context = g_markup_parse_context_new (&mono_parser, (GMarkupParseFlags)0, state, NULL);
486         if (g_markup_parse_context_parse (context, text, len, NULL)) {
487                 g_markup_parse_context_end_parse (context, NULL);
488         }
489         g_markup_parse_context_free (context);
490 }
491
492 /* If assembly is NULL, parse in the global context */
493 static int
494 mono_config_parse_file_with_context (ParseState *state, const char *filename)
495 {
496         gchar *text;
497         gsize len;
498         gint offset;
499
500         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_CONFIG,
501                         "Config attempting to parse: '%s'.", filename);
502
503         if (!g_file_get_contents (filename, &text, &len, NULL))
504                 return 0;
505
506         offset = 0;
507         if (len > 3 && text [0] == '\xef' && text [1] == (gchar) '\xbb' && text [2] == '\xbf')
508                 offset = 3; /* Skip UTF-8 BOM */
509         if (state->user_data == NULL)
510                 state->user_data = (gpointer) filename;
511         mono_config_parse_xml_with_context (state, text + offset, len - offset);
512         g_free (text);
513         return 1;
514 }
515
516 /**
517  * mono_config_parse_memory:
518  * @buffer: a pointer to an string XML representation of the configuration
519  *
520  * Parses the configuration from a buffer
521  */
522 void
523 mono_config_parse_memory (const char *buffer)
524 {
525         ParseState state = {NULL};
526
527         state.user_data = (gpointer) "<buffer>";
528         mono_config_parse_xml_with_context (&state, buffer, strlen (buffer));
529 }
530
531 static void
532 mono_config_parse_file (const char *filename)
533 {
534         ParseState state = {NULL};
535         state.user_data = (gpointer) filename;
536         mono_config_parse_file_with_context (&state, filename);
537 }
538
539 /* 
540  * use the equivalent lookup code from the GAC when available.
541  * Depending on state, this should give something like:
542  *      aname/version-pubtoken/
543  *      aname/version/
544  *      aname
545  */
546 static char*
547 get_assembly_filename (MonoImage *image, int state)
548 {
549         switch (state) {
550         case 0:
551                 return g_strdup (mono_image_get_name (image));
552         default:
553                 return NULL;
554         }
555 }
556
557 typedef struct _BundledConfig BundledConfig;
558
559 struct _BundledConfig {
560         BundledConfig *next;
561         const char* aname;
562         const char* config_xml;
563 };
564
565 static BundledConfig *bundled_configs = NULL;
566
567 static const char *bundled_machine_config = NULL;
568
569 void
570 mono_register_config_for_assembly (const char* assembly_name, const char* config_xml)
571 {
572         BundledConfig *bconfig;
573
574         bconfig = g_new0 (BundledConfig, 1);
575         bconfig->aname = assembly_name;
576         bconfig->config_xml = config_xml;
577         bconfig->next = bundled_configs;
578         bundled_configs = bconfig;
579 }
580
581 const char *
582 mono_config_string_for_assembly_file (const char *filename)
583 {
584         BundledConfig *bconfig;
585         
586         for (bconfig = bundled_configs; bconfig; bconfig = bconfig->next) {
587                 if (bconfig->aname && strcmp (bconfig->aname, filename) == 0)
588                         return bconfig->config_xml;
589         }
590         return NULL;
591 }
592
593 void 
594 mono_config_for_assembly (MonoImage *assembly)
595 {
596         ParseState state = {NULL};
597         int got_it = 0, i;
598         char *aname, *cfg, *cfg_name;
599         const char *bundled_config;
600         
601         state.assembly = assembly;
602
603         bundled_config = mono_config_string_for_assembly_file (assembly->module_name);
604         if (bundled_config) {
605                 state.user_data = (gpointer) "<bundled>";
606                 mono_config_parse_xml_with_context (&state, bundled_config, strlen (bundled_config));
607         }
608
609         cfg_name = g_strdup_printf ("%s.config", mono_image_get_filename (assembly));
610         mono_config_parse_file_with_context (&state, cfg_name);
611         g_free (cfg_name);
612
613         cfg_name = g_strdup_printf ("%s.config", mono_image_get_name (assembly));
614
615         for (i = 0; (aname = get_assembly_filename (assembly, i)) != NULL; ++i) {
616                 cfg = g_build_filename (mono_get_config_dir (), "mono", "assemblies", aname, cfg_name, NULL);
617                 got_it += mono_config_parse_file_with_context (&state, cfg);
618                 g_free (cfg);
619
620 #ifdef TARGET_WIN32
621                 const char *home = g_get_home_dir ();
622                 cfg = g_build_filename (home, ".mono", "assemblies", aname, cfg_name, NULL);
623                 got_it += mono_config_parse_file_with_context (&state, cfg);
624                 g_free (cfg);
625 #endif
626                 g_free (aname);
627                 if (got_it)
628                         break;
629         }
630         g_free (cfg_name);
631 }
632
633 /**
634  * mono_config_parse:
635  * @filename: the filename to load the configuration variables from.
636  *
637  * Pass a NULL filename to parse the default config files
638  * (or the file in the MONO_CONFIG env var).
639  */
640 void
641 mono_config_parse (const char *filename) {
642         const char *home;
643         char *mono_cfg;
644 #ifndef TARGET_WIN32
645         char *user_cfg;
646 #endif
647
648         if (filename) {
649                 mono_config_parse_file (filename);
650                 return;
651         }
652
653         home = g_getenv ("MONO_CONFIG");
654         if (home) {
655                 mono_config_parse_file (home);
656                 return;
657         }
658
659         mono_cfg = g_build_filename (mono_get_config_dir (), "mono", "config", NULL);
660         mono_config_parse_file (mono_cfg);
661         g_free (mono_cfg);
662
663 #if !defined(TARGET_WIN32) && !defined(__native_client__)
664         home = g_get_home_dir ();
665         user_cfg = g_strconcat (home, G_DIR_SEPARATOR_S, ".mono/config", NULL);
666         mono_config_parse_file (user_cfg);
667         g_free (user_cfg);
668 #endif
669 }
670
671 /* Invoked during startup */
672 void
673 mono_set_config_dir (const char *dir)
674 {
675         /* If this variable is set, overrides the directory computed */
676         mono_cfg_dir = g_getenv ("MONO_CFG_DIR");
677         if (mono_cfg_dir == NULL)
678                 mono_cfg_dir = mono_cfg_dir_allocated = g_strdup (dir);
679 }
680
681 const char* 
682 mono_get_config_dir (void)
683 {
684         if (mono_cfg_dir == NULL)
685                 mono_set_dirs (NULL, NULL);
686
687         return mono_cfg_dir;
688 }
689
690 void
691 mono_register_machine_config (const char *config_xml)
692 {
693         bundled_machine_config = config_xml;
694 }
695
696 const char *
697 mono_get_machine_config (void)
698 {
699         return bundled_machine_config;
700 }
701
702 static void
703 assembly_binding_end (gpointer user_data, const char *element_name)
704 {
705         ParserUserData *pud = (ParserUserData *)user_data;
706
707         if (!strcmp (element_name, "dependentAssembly")) {
708                 if (pud->info_parsed && pud->info) {
709                         pud->info_parsed (pud->info, pud->user_data);
710                         g_free (pud->info->name);
711                         g_free (pud->info->culture);
712                 }
713         }
714 }
715
716 static void
717 publisher_policy_start (gpointer user_data,
718                 const gchar *element_name,
719                 const gchar **attribute_names,
720                 const gchar **attribute_values)
721 {
722         ParserUserData *pud;
723         MonoAssemblyBindingInfo *info;
724         int n;
725
726         pud = (ParserUserData *)user_data;
727         info = pud->info;
728         if (!strcmp (element_name, "dependentAssembly")) {
729                 info->name = NULL;
730                 info->culture = NULL;
731                 info->has_old_version_bottom = FALSE;
732                 info->has_old_version_top = FALSE;
733                 info->has_new_version = FALSE;
734                 info->is_valid = FALSE;
735                 memset (&info->old_version_bottom, 0, sizeof (info->old_version_bottom));
736                 memset (&info->old_version_top, 0, sizeof (info->old_version_top));
737                 memset (&info->new_version, 0, sizeof (info->new_version));
738         } else if (!strcmp (element_name, "assemblyIdentity")) {
739                 for (n = 0; attribute_names [n]; n++) {
740                         const gchar *attribute_name = attribute_names [n];
741                         
742                         if (!strcmp (attribute_name, "name"))
743                                 info->name = g_strdup (attribute_values [n]);
744                         else if (!strcmp (attribute_name, "publicKeyToken")) {
745                                 if (strlen (attribute_values [n]) == MONO_PUBLIC_KEY_TOKEN_LENGTH - 1)
746                                         g_strlcpy ((char *) info->public_key_token, attribute_values [n], MONO_PUBLIC_KEY_TOKEN_LENGTH);
747                         } else if (!strcmp (attribute_name, "culture")) {
748                                 if (!strcmp (attribute_values [n], "neutral"))
749                                         info->culture = g_strdup ("");
750                                 else
751                                         info->culture = g_strdup (attribute_values [n]);
752                         }
753                 }
754         } else if (!strcmp (element_name, "bindingRedirect")) {
755                 for (n = 0; attribute_names [n]; n++) {
756                         const gchar *attribute_name = attribute_names [n];
757
758                         if (!strcmp (attribute_name, "oldVersion")) {
759                                 gchar **numbers, **version, **versions;
760                                 gint major, minor, build, revision;
761
762                                 /* Invalid value */
763                                 if (!strcmp (attribute_values [n], ""))
764                                         return;
765                                 
766                                 versions = g_strsplit (attribute_values [n], "-", 2);
767                                 version = g_strsplit (*versions, ".", 4);
768
769                                 /* We assign the values to gint vars to do the checks */
770                                 numbers = version;
771                                 major = *numbers ? atoi (*numbers++) : -1;
772                                 minor = *numbers ? atoi (*numbers++) : -1;
773                                 build = *numbers ? atoi (*numbers++) : -1;
774                                 revision = *numbers ? atoi (*numbers) : -1;
775                                 g_strfreev (version);
776                                 if (major < 0 || minor < 0 || build < 0 || revision < 0) {
777                                         g_strfreev (versions);
778                                         return;
779                                 }
780
781                                 info->old_version_bottom.major = major;
782                                 info->old_version_bottom.minor = minor;
783                                 info->old_version_bottom.build = build;
784                                 info->old_version_bottom.revision = revision;
785                                 info->has_old_version_bottom = TRUE;
786
787                                 if (!*(versions + 1)) {
788                                         g_strfreev (versions);
789                                         continue;
790                                 }
791                                 
792                                 numbers = version = g_strsplit (*(versions + 1), ".", 4);
793                                 major = *numbers ? atoi (*numbers++) : -1;
794                                 minor = *numbers ? atoi (*numbers++) : -1;
795                                 build = *numbers ? atoi (*numbers++) : -1;
796                                 revision = *numbers ? atoi (*numbers) : 1;
797                                 g_strfreev (version);
798                                 if (major < 0 || minor < 0 || build < 0 || revision < 0) {
799                                         g_strfreev (versions);
800                                         return;
801                                 }
802
803                                 info->old_version_top.major = major;
804                                 info->old_version_top.minor = minor;
805                                 info->old_version_top.build = build;
806                                 info->old_version_top.revision = revision;
807                                 info->has_old_version_top = TRUE;
808
809                                 g_strfreev (versions);
810                         } else if (!strcmp (attribute_name, "newVersion")) {
811                                 gchar **numbers, **version;
812
813                                 /* Invalid value */
814                                 if (!strcmp (attribute_values [n], ""))
815                                         return;
816
817                                 numbers = version = g_strsplit (attribute_values [n], ".", 4);
818                                 info->new_version.major = *numbers ? atoi (*numbers++) : -1;
819                                 info->new_version.minor = *numbers ? atoi (*numbers++) : -1;
820                                 info->new_version.build = *numbers ? atoi (*numbers++) : -1;
821                                 info->new_version.revision = *numbers ? atoi (*numbers) : -1;
822                                 info->has_new_version = TRUE;
823                                 g_strfreev (version);
824                         }
825                 }
826         }
827 }
828
829 static MonoParseHandler
830 publisher_policy_parser = {
831         "", /* We don't need to use declare an xml element */
832         NULL,
833         publisher_policy_start,
834         NULL,
835         NULL,
836         NULL
837 };
838
839 void
840 mono_config_parse_publisher_policy (const gchar *filename, MonoAssemblyBindingInfo *info)
841 {
842         ParserUserData user_data = {
843                 info,
844                 NULL,
845                 NULL
846         };
847         ParseState state = {
848                 &publisher_policy_parser, /* MonoParseHandler */
849                 &user_data, /* user_data */
850                 NULL, /* MonoImage (we don't need it right now)*/
851                 TRUE /* We are already inited */
852         };
853         
854         mono_config_parse_file_with_context (&state, filename);
855 }
856
857 static MonoParseHandler
858 config_assemblybinding_parser = {
859         "", /* We don't need to use declare an xml element */
860         NULL,
861         publisher_policy_start,
862         NULL,
863         assembly_binding_end,
864         NULL
865 };
866
867 void
868 mono_config_parse_assembly_bindings (const char *filename, int amajor, int aminor, void *user_data, void (*infocb)(MonoAssemblyBindingInfo *info, void *user_data))
869 {
870         MonoAssemblyBindingInfo info;
871         ParserUserData pud;
872         ParseState state;
873
874         info.major = amajor;
875         info.minor = aminor;
876
877         pud.info = &info;
878         pud.info_parsed = infocb;
879         pud.user_data = user_data;
880
881         state.current = &config_assemblybinding_parser;  /* MonoParseHandler */
882         state.user_data = &pud;
883         state.assembly = NULL; /* MonoImage (we don't need it right now)*/
884         state.inited = TRUE; /* We are already inited */
885
886         mono_config_parse_file_with_context (&state, filename);
887 }
888
889 static mono_bool mono_server_mode = FALSE;
890
891 void
892 mono_config_set_server_mode (mono_bool server_mode)
893 {
894         mono_server_mode = server_mode;
895 }
896
897 mono_bool
898 mono_config_is_server_mode (void)
899 {
900         return mono_server_mode;
901 }
902