[exdoc] Handle punctuation better in code formatting.
[mono.git] / mono / metadata / mono-config.c
1 /**
2  * \file
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                                         char *libdir = mono_native_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                                         g_free (libdir);
325                                         strcat (result, p+strlen("$mono_libdir"));
326                                         info->target = result;
327                                 } else 
328                                         info->target = g_strdup (attribute_values [i]);
329                         } else if (strcmp (attribute_names [i], "os") == 0 && !arch_matches (CONFIG_OS, attribute_values [i]))
330                                 info->ignore = TRUE;
331                         else if (strcmp (attribute_names [i], "cpu") == 0 && !arch_matches (CONFIG_CPU, attribute_values [i]))
332                                 info->ignore = TRUE;
333                         else if (strcmp (attribute_names [i], "wordsize") == 0 && !arch_matches (CONFIG_WORDSIZE, attribute_values [i]))
334                                 info->ignore = TRUE;
335                 }
336                 if (!info->ignore)
337                         mono_dllmap_insert (info->assembly, info->dll, NULL, info->target, NULL);
338         } else if (strcmp (element_name, "dllentry") == 0) {
339                 const char *name = NULL, *target = NULL, *dll = NULL;
340                 int ignore = FALSE;
341                 for (i = 0; attribute_names [i]; ++i) {
342                         if (strcmp (attribute_names [i], "dll") == 0)
343                                 dll = attribute_values [i];
344                         else if (strcmp (attribute_names [i], "target") == 0)
345                                 target = attribute_values [i];
346                         else if (strcmp (attribute_names [i], "name") == 0)
347                                 name = attribute_values [i];
348                         else if (strcmp (attribute_names [i], "os") == 0 && !arch_matches (CONFIG_OS, attribute_values [i]))
349                                 ignore = TRUE;
350                         else if (strcmp (attribute_names [i], "cpu") == 0 && !arch_matches (CONFIG_CPU, attribute_values [i]))
351                                 ignore = TRUE;
352                         else if (strcmp (attribute_names [i], "wordsize") == 0 && !arch_matches (CONFIG_WORDSIZE, attribute_values [i]))
353                                 ignore = TRUE;
354                 }
355                 if (!dll)
356                         dll = info->dll;
357                 if (!info->ignore && !ignore)
358                         mono_dllmap_insert (info->assembly, info->dll, name, dll, target);
359         }
360 }
361
362 static void
363 dllmap_finish (gpointer user_data)
364 {
365         DllInfo *info = (DllInfo *)user_data;
366
367         g_free (info->dll);
368         g_free (info->target);
369         g_free (info);
370 }
371
372 static const MonoParseHandler
373 dllmap_handler = {
374         "dllmap",
375         dllmap_init,
376         dllmap_start,
377         NULL, /* text */
378         NULL, /* end */
379         dllmap_finish
380 };
381
382 static void
383 legacyUEP_start (gpointer user_data, 
384               const gchar         *element_name,
385               const gchar        **attribute_names,
386               const gchar        **attribute_values) {
387         if ((strcmp (element_name, "legacyUnhandledExceptionPolicy") == 0) &&
388                         (attribute_names [0] != NULL) &&
389                         (strcmp (attribute_names [0], "enabled") == 0)) {
390                 if ((strcmp (attribute_values [0], "1") == 0) ||
391                                 (g_ascii_strcasecmp (attribute_values [0], "true") == 0)) {
392                         mono_runtime_unhandled_exception_policy_set (MONO_UNHANDLED_POLICY_LEGACY);
393                 }
394         }
395 }
396
397 static const MonoParseHandler
398 legacyUEP_handler = {
399         "legacyUnhandledExceptionPolicy",
400         NULL, /* init */
401         legacyUEP_start,
402         NULL, /* text */
403         NULL, /* end */
404         NULL, /* finish */
405 };
406
407 static void
408 aot_cache_start (gpointer user_data,
409                                  const gchar         *element_name,
410                                  const gchar        **attribute_names,
411                                  const gchar        **attribute_values)
412 {
413         int i;
414         MonoAotCacheConfig *config;
415
416         if (strcmp (element_name, "aotcache") != 0)
417                 return;
418
419         config = mono_get_aot_cache_config ();
420
421         /* Per-app configuration */
422         for (i = 0; attribute_names [i]; ++i) {
423                 if (!strcmp (attribute_names [i], "app")) {
424                         config->apps = g_slist_prepend (config->apps, g_strdup (attribute_values [i]));
425                 }
426         }
427
428         /* Global configuration */
429         for (i = 0; attribute_names [i]; ++i) {
430                 if (!strcmp (attribute_names [i], "assemblies")) {
431                         char **parts, **ptr;
432                         char *part;
433
434                         parts = g_strsplit (attribute_values [i], " ", -1);
435                         for (ptr = parts; ptr && *ptr; ptr ++) {
436                                 part = *ptr;
437                                 config->assemblies = g_slist_prepend (config->assemblies, g_strdup (part));
438                         }
439                         g_strfreev (parts);
440                 } else if (!strcmp (attribute_names [i], "options")) {
441                         config->aot_options = g_strdup (attribute_values [i]);
442                 }
443         }
444 }
445
446 static const MonoParseHandler
447 aot_cache_handler = {
448         "aotcache",
449         NULL, /* init */
450         aot_cache_start,
451         NULL, /* text */
452         NULL, /* end */
453         NULL, /* finish */
454 };
455
456 static int inited = 0;
457
458 static void
459 mono_config_init (void)
460 {
461         inited = 1;
462         config_handlers = g_hash_table_new (g_str_hash, g_str_equal);
463         g_hash_table_insert (config_handlers, (gpointer) dllmap_handler.element_name, (gpointer) &dllmap_handler);
464         g_hash_table_insert (config_handlers, (gpointer) legacyUEP_handler.element_name, (gpointer) &legacyUEP_handler);
465         g_hash_table_insert (config_handlers, (gpointer) aot_cache_handler.element_name, (gpointer) &aot_cache_handler);
466 }
467
468 void
469 mono_config_cleanup (void)
470 {
471         if (config_handlers)
472                 g_hash_table_destroy (config_handlers);
473         g_free (mono_cfg_dir_allocated);
474 }
475
476 /* FIXME: error handling */
477
478 static void
479 mono_config_parse_xml_with_context (ParseState *state, const char *text, gsize len)
480 {
481         GMarkupParseContext *context;
482
483         if (!inited)
484                 mono_config_init ();
485
486         context = g_markup_parse_context_new (&mono_parser, (GMarkupParseFlags)0, state, NULL);
487         if (g_markup_parse_context_parse (context, text, len, NULL)) {
488                 g_markup_parse_context_end_parse (context, NULL);
489         }
490         g_markup_parse_context_free (context);
491 }
492
493 /* If assembly is NULL, parse in the global context */
494 static int
495 mono_config_parse_file_with_context (ParseState *state, const char *filename)
496 {
497         gchar *text;
498         gsize len;
499         gint offset;
500
501         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_CONFIG,
502                         "Config attempting to parse: '%s'.", filename);
503
504         if (!g_file_get_contents (filename, &text, &len, NULL))
505                 return 0;
506
507         offset = 0;
508         if (len > 3 && text [0] == '\xef' && text [1] == (gchar) '\xbb' && text [2] == '\xbf')
509                 offset = 3; /* Skip UTF-8 BOM */
510         if (state->user_data == NULL)
511                 state->user_data = (gpointer) filename;
512         mono_config_parse_xml_with_context (state, text + offset, len - offset);
513         g_free (text);
514         return 1;
515 }
516
517 /**
518  * mono_config_parse_memory:
519  * \param buffer a pointer to an string XML representation of the configuration
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  * \param filename the filename to load the configuration variables from.
636  * Pass a NULL filename to parse the default config files
637  * (or the file in the \c MONO_CONFIG env var).
638  */
639 void
640 mono_config_parse (const char *filename) {
641         const char *home;
642         char *mono_cfg;
643 #ifndef TARGET_WIN32
644         char *user_cfg;
645 #endif
646
647         if (filename) {
648                 mono_config_parse_file (filename);
649                 return;
650         }
651
652         home = g_getenv ("MONO_CONFIG");
653         if (home) {
654                 mono_config_parse_file (home);
655                 return;
656         }
657
658         mono_cfg = g_build_filename (mono_get_config_dir (), "mono", "config", NULL);
659         mono_config_parse_file (mono_cfg);
660         g_free (mono_cfg);
661
662 #if !defined(TARGET_WIN32) && !defined(__native_client__)
663         home = g_get_home_dir ();
664         user_cfg = g_strconcat (home, G_DIR_SEPARATOR_S, ".mono/config", NULL);
665         mono_config_parse_file (user_cfg);
666         g_free (user_cfg);
667 #endif
668 }
669
670 /* Invoked during startup */
671 void
672 mono_set_config_dir (const char *dir)
673 {
674         /* If this variable is set, overrides the directory computed */
675         mono_cfg_dir = g_getenv ("MONO_CFG_DIR");
676         if (mono_cfg_dir == NULL)
677                 mono_cfg_dir = mono_cfg_dir_allocated = g_strdup (dir);
678 }
679
680 const char* 
681 mono_get_config_dir (void)
682 {
683         if (mono_cfg_dir == NULL)
684                 mono_set_dirs (NULL, NULL);
685
686         return mono_cfg_dir;
687 }
688
689 void
690 mono_register_machine_config (const char *config_xml)
691 {
692         bundled_machine_config = config_xml;
693 }
694
695 const char *
696 mono_get_machine_config (void)
697 {
698         return bundled_machine_config;
699 }
700
701 static void
702 assembly_binding_end (gpointer user_data, const char *element_name)
703 {
704         ParserUserData *pud = (ParserUserData *)user_data;
705
706         if (!strcmp (element_name, "dependentAssembly")) {
707                 if (pud->info_parsed && pud->info) {
708                         pud->info_parsed (pud->info, pud->user_data);
709                         g_free (pud->info->name);
710                         g_free (pud->info->culture);
711                 }
712         }
713 }
714
715 static void
716 publisher_policy_start (gpointer user_data,
717                 const gchar *element_name,
718                 const gchar **attribute_names,
719                 const gchar **attribute_values)
720 {
721         ParserUserData *pud;
722         MonoAssemblyBindingInfo *info;
723         int n;
724
725         pud = (ParserUserData *)user_data;
726         info = pud->info;
727         if (!strcmp (element_name, "dependentAssembly")) {
728                 info->name = NULL;
729                 info->culture = NULL;
730                 info->has_old_version_bottom = FALSE;
731                 info->has_old_version_top = FALSE;
732                 info->has_new_version = FALSE;
733                 info->is_valid = FALSE;
734                 memset (&info->old_version_bottom, 0, sizeof (info->old_version_bottom));
735                 memset (&info->old_version_top, 0, sizeof (info->old_version_top));
736                 memset (&info->new_version, 0, sizeof (info->new_version));
737         } else if (!strcmp (element_name, "assemblyIdentity")) {
738                 for (n = 0; attribute_names [n]; n++) {
739                         const gchar *attribute_name = attribute_names [n];
740                         
741                         if (!strcmp (attribute_name, "name"))
742                                 info->name = g_strdup (attribute_values [n]);
743                         else if (!strcmp (attribute_name, "publicKeyToken")) {
744                                 if (strlen (attribute_values [n]) == MONO_PUBLIC_KEY_TOKEN_LENGTH - 1)
745                                         g_strlcpy ((char *) info->public_key_token, attribute_values [n], MONO_PUBLIC_KEY_TOKEN_LENGTH);
746                         } else if (!strcmp (attribute_name, "culture")) {
747                                 if (!strcmp (attribute_values [n], "neutral"))
748                                         info->culture = g_strdup ("");
749                                 else
750                                         info->culture = g_strdup (attribute_values [n]);
751                         }
752                 }
753         } else if (!strcmp (element_name, "bindingRedirect")) {
754                 for (n = 0; attribute_names [n]; n++) {
755                         const gchar *attribute_name = attribute_names [n];
756
757                         if (!strcmp (attribute_name, "oldVersion")) {
758                                 gchar **numbers, **version, **versions;
759                                 gint major, minor, build, revision;
760
761                                 /* Invalid value */
762                                 if (!strcmp (attribute_values [n], ""))
763                                         return;
764                                 
765                                 versions = g_strsplit (attribute_values [n], "-", 2);
766                                 version = g_strsplit (*versions, ".", 4);
767
768                                 /* We assign the values to gint vars to do the checks */
769                                 numbers = version;
770                                 major = *numbers ? atoi (*numbers++) : -1;
771                                 minor = *numbers ? atoi (*numbers++) : -1;
772                                 build = *numbers ? atoi (*numbers++) : -1;
773                                 revision = *numbers ? atoi (*numbers) : -1;
774                                 g_strfreev (version);
775                                 if (major < 0 || minor < 0 || build < 0 || revision < 0) {
776                                         g_strfreev (versions);
777                                         return;
778                                 }
779
780                                 info->old_version_bottom.major = major;
781                                 info->old_version_bottom.minor = minor;
782                                 info->old_version_bottom.build = build;
783                                 info->old_version_bottom.revision = revision;
784                                 info->has_old_version_bottom = TRUE;
785
786                                 if (!*(versions + 1)) {
787                                         g_strfreev (versions);
788                                         continue;
789                                 }
790                                 
791                                 numbers = version = g_strsplit (*(versions + 1), ".", 4);
792                                 major = *numbers ? atoi (*numbers++) : -1;
793                                 minor = *numbers ? atoi (*numbers++) : -1;
794                                 build = *numbers ? atoi (*numbers++) : -1;
795                                 revision = *numbers ? atoi (*numbers) : 1;
796                                 g_strfreev (version);
797                                 if (major < 0 || minor < 0 || build < 0 || revision < 0) {
798                                         g_strfreev (versions);
799                                         return;
800                                 }
801
802                                 info->old_version_top.major = major;
803                                 info->old_version_top.minor = minor;
804                                 info->old_version_top.build = build;
805                                 info->old_version_top.revision = revision;
806                                 info->has_old_version_top = TRUE;
807
808                                 g_strfreev (versions);
809                         } else if (!strcmp (attribute_name, "newVersion")) {
810                                 gchar **numbers, **version;
811
812                                 /* Invalid value */
813                                 if (!strcmp (attribute_values [n], ""))
814                                         return;
815
816                                 numbers = version = g_strsplit (attribute_values [n], ".", 4);
817                                 info->new_version.major = *numbers ? atoi (*numbers++) : -1;
818                                 info->new_version.minor = *numbers ? atoi (*numbers++) : -1;
819                                 info->new_version.build = *numbers ? atoi (*numbers++) : -1;
820                                 info->new_version.revision = *numbers ? atoi (*numbers) : -1;
821                                 info->has_new_version = TRUE;
822                                 g_strfreev (version);
823                         }
824                 }
825         }
826 }
827
828 static MonoParseHandler
829 publisher_policy_parser = {
830         "", /* We don't need to use declare an xml element */
831         NULL,
832         publisher_policy_start,
833         NULL,
834         NULL,
835         NULL
836 };
837
838 void
839 mono_config_parse_publisher_policy (const gchar *filename, MonoAssemblyBindingInfo *info)
840 {
841         ParserUserData user_data = {
842                 info,
843                 NULL,
844                 NULL
845         };
846         ParseState state = {
847                 &publisher_policy_parser, /* MonoParseHandler */
848                 &user_data, /* user_data */
849                 NULL, /* MonoImage (we don't need it right now)*/
850                 TRUE /* We are already inited */
851         };
852         
853         mono_config_parse_file_with_context (&state, filename);
854 }
855
856 static MonoParseHandler
857 config_assemblybinding_parser = {
858         "", /* We don't need to use declare an xml element */
859         NULL,
860         publisher_policy_start,
861         NULL,
862         assembly_binding_end,
863         NULL
864 };
865
866 void
867 mono_config_parse_assembly_bindings (const char *filename, int amajor, int aminor, void *user_data, void (*infocb)(MonoAssemblyBindingInfo *info, void *user_data))
868 {
869         MonoAssemblyBindingInfo info;
870         ParserUserData pud;
871         ParseState state;
872
873         info.major = amajor;
874         info.minor = aminor;
875
876         pud.info = &info;
877         pud.info_parsed = infocb;
878         pud.user_data = user_data;
879
880         state.current = &config_assemblybinding_parser;  /* MonoParseHandler */
881         state.user_data = &pud;
882         state.assembly = NULL; /* MonoImage (we don't need it right now)*/
883         state.inited = TRUE; /* We are already inited */
884
885         mono_config_parse_file_with_context (&state, filename);
886 }
887
888 static mono_bool mono_server_mode = FALSE;
889
890 void
891 mono_config_set_server_mode (mono_bool server_mode)
892 {
893         mono_server_mode = server_mode;
894 }
895
896 mono_bool
897 mono_config_is_server_mode (void)
898 {
899         return mono_server_mode;
900 }
901