2009-12-15 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / pedump.c
1 /*
2  * pedump.c: Dumps the contents of an extended PE/COFF file
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  */
10 #include <config.h>
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include "image.h"
15 #include <glib.h>
16 #include "cil-coff.h"
17 #include "mono-endian.h"
18 #include "verify.h"
19 #include <mono/metadata/class.h>
20 #include <mono/metadata/debug-helpers.h>
21 #include <mono/metadata/tokentype.h>
22 #include <mono/metadata/appdomain.h>
23 #include <mono/metadata/assembly.h>
24 #include <mono/metadata/metadata-internals.h>
25 #include <mono/metadata/class-internals.h>
26 #include <mono/metadata/verify-internals.h>
27 #include <mono/metadata/marshal.h>
28 #include "mono/utils/mono-digest.h"
29 #include <mono/utils/mono-mmap.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #ifdef HAVE_UNISTD_H
33 #include <unistd.h>
34 #endif
35
36 gboolean dump_data = TRUE;
37 gboolean verify_pe = FALSE;
38 gboolean verify_metadata = FALSE;
39 gboolean verify_code = FALSE;
40 gboolean verify_partial_md = FALSE;
41
42 /* unused
43 static void
44 hex_dump (const char *buffer, int base, int count)
45 {
46         int i;
47         
48         for (i = 0; i < count; i++){
49                 if ((i % 16) == 0)
50                         printf ("\n0x%08x: ", (unsigned char) base + i);
51
52                 printf ("%02x ", (unsigned char) (buffer [i]));
53         }
54 }
55 */
56
57 static void
58 hex8 (const char *label, unsigned char x)
59 {
60         printf ("\t%s: 0x%02x\n", label, (unsigned char) x);
61 }
62
63 static void
64 hex16 (const char *label, guint16 x)
65 {
66         printf ("\t%s: 0x%04x\n", label, x);
67 }
68
69 static void
70 hex32 (const char *label, guint32 x)
71 {
72         printf ("\t%s: 0x%08x\n", label, x);
73 }
74
75 static void
76 dump_coff_header (MonoCOFFHeader *coff)
77 {
78         printf ("\nCOFF Header:\n");
79         hex16 ("                Machine", coff->coff_machine);
80         hex16 ("               Sections", coff->coff_sections);
81         hex32 ("             Time stamp", coff->coff_time);
82         hex32 ("Pointer to Symbol Table", coff->coff_symptr);
83         hex32 ("           Symbol Count", coff->coff_symcount);
84         hex16 ("   Optional Header Size", coff->coff_opt_header_size);
85         hex16 ("        Characteristics", coff->coff_attributes);
86
87 }
88
89 static void
90 dump_pe_header (MonoPEHeader *pe)
91 {
92         printf ("\nPE Header:\n");
93         hex16 ("         Magic (0x010b)", pe->pe_magic);
94         hex8  ("             LMajor (6)", pe->pe_major);
95         hex8  ("             LMinor (0)", pe->pe_minor);
96         hex32 ("              Code Size", pe->pe_code_size);
97         hex32 ("  Initialized Data Size", pe->pe_data_size);
98         hex32 ("Uninitialized Data Size", pe->pe_uninit_data_size);
99         hex32 ("        Entry Point RVA", pe->pe_rva_entry_point);
100         hex32 ("          Code Base RVA", pe->pe_rva_code_base);
101         hex32 ("          Data Base RVA", pe->pe_rva_data_base);
102         printf ("\n");
103 }
104
105 static void
106 dump_nt_header (MonoPEHeaderNT *nt)
107 {
108         printf ("\nNT Header:\n");
109
110         hex32 ("   Image Base (0x400000)", nt->pe_image_base);
111         hex32 ("Section Alignment (8192)", nt->pe_section_align);
112         hex32 ("   File Align (512/4096)", nt->pe_file_alignment);
113         hex16 ("            OS Major (4)", nt->pe_os_major);
114         hex16 ("            OS Minor (0)", nt->pe_os_minor);
115         hex16 ("          User Major (0)", nt->pe_user_major);
116         hex16 ("          User Minor (0)", nt->pe_user_minor);
117         hex16 ("        Subsys major (4)", nt->pe_subsys_major);
118         hex16 ("        Subsys minor (0)", nt->pe_subsys_minor);
119         hex32 ("               Reserverd", nt->pe_reserved_1);
120         hex32 ("              Image Size", nt->pe_image_size);
121         hex32 ("             Header Size", nt->pe_header_size);
122         hex32 ("            Checksum (0)", nt->pe_checksum);
123         hex16 ("               Subsystem", nt->pe_subsys_required);
124         hex16 ("           DLL Flags (0)", nt->pe_dll_flags);
125         hex32 (" Stack Reserve Size (1M)", nt->pe_stack_reserve);
126         hex32 ("Stack commit Size (4096)", nt->pe_stack_commit);
127         hex32 ("  Heap Reserve Size (1M)", nt->pe_heap_reserve);
128         hex32 (" Heap Commit Size (4096)", nt->pe_heap_commit);
129         hex32 ("      Loader flags (0x1)", nt->pe_loader_flags);
130         hex32 ("   Data Directories (16)", nt->pe_data_dir_count);
131 }
132
133 static void
134 dent (const char *label, MonoPEDirEntry de)
135 {
136         printf ("\t%s: 0x%08x [0x%08x]\n", label, de.rva, de.size);
137 }
138
139 static void
140 dump_blob (const char *desc, const char* p, guint32 size)
141 {
142         int i;
143
144         printf ("%s", desc);
145         if (!p) {
146                 printf (" none\n");
147                 return;
148         }
149
150         for (i = 0; i < size; ++i) {
151                 if (!(i % 16))
152                         printf ("\n\t");
153                 printf (" %02X", p [i] & 0xFF);
154         }
155         printf ("\n");
156 }
157
158 static void
159 dump_public_key (MonoImage *m)
160 {
161         guint32 size;
162         const char *p;
163
164         p = mono_image_get_public_key (m, &size);
165         dump_blob ("\nPublic key:", p, size);
166 }
167
168 static void
169 dump_strong_name (MonoImage *m)
170 {
171         guint32 size;
172         const char *p;
173
174         p = mono_image_get_strong_name (m, &size);
175         dump_blob ("\nStrong name:", p, size);
176 }
177
178 static void
179 dump_datadir (MonoPEDatadir *dd)
180 {
181         printf ("\nData directories:\n");
182         dent ("     Export Table", dd->pe_export_table);
183         dent ("     Import Table", dd->pe_import_table);
184         dent ("   Resource Table", dd->pe_resource_table);
185         dent ("  Exception Table", dd->pe_exception_table);
186         dent ("Certificate Table", dd->pe_certificate_table);
187         dent ("      Reloc Table", dd->pe_reloc_table);
188         dent ("            Debug", dd->pe_debug);
189         dent ("        Copyright", dd->pe_copyright);
190         dent ("       Global Ptr", dd->pe_global_ptr);
191         dent ("        TLS Table", dd->pe_tls_table);
192         dent ("Load Config Table", dd->pe_load_config_table);
193         dent ("     Bound Import", dd->pe_bound_import);
194         dent ("              IAT", dd->pe_iat);
195         dent ("Delay Import Desc", dd->pe_delay_import_desc);
196         dent ("       CLI Header", dd->pe_cli_header);
197 }
198
199 static void
200 dump_dotnet_header (MonoDotNetHeader *header)
201 {
202         dump_coff_header (&header->coff);
203         dump_pe_header (&header->pe);
204         dump_nt_header (&header->nt);
205         dump_datadir (&header->datadir);
206 }
207
208 static void
209 dump_section_table (MonoSectionTable *st)
210 {
211         guint32 flags = st->st_flags;
212                 
213         printf ("\n\tName: %s\n", st->st_name);
214         hex32 ("   Virtual Size", st->st_virtual_size);
215         hex32 ("Virtual Address", st->st_virtual_address);
216         hex32 ("  Raw Data Size", st->st_raw_data_size);
217         hex32 ("   Raw Data Ptr", st->st_raw_data_ptr);
218         hex32 ("      Reloc Ptr", st->st_reloc_ptr);
219         hex32 ("     LineNo Ptr", st->st_lineno_ptr);
220         hex16 ("    Reloc Count", st->st_reloc_count);
221         hex16 ("     Line Count", st->st_line_count);
222
223         printf ("\tFlags: %s%s%s%s%s%s%s%s%s%s\n",
224                 (flags & SECT_FLAGS_HAS_CODE) ? "code, " : "",
225                 (flags & SECT_FLAGS_HAS_INITIALIZED_DATA) ? "data, " : "",
226                 (flags & SECT_FLAGS_HAS_UNINITIALIZED_DATA) ? "bss, " : "",
227                 (flags & SECT_FLAGS_MEM_DISCARDABLE) ? "discard, " : "",
228                 (flags & SECT_FLAGS_MEM_NOT_CACHED) ? "nocache, " : "",
229                 (flags & SECT_FLAGS_MEM_NOT_PAGED) ? "nopage, " : "",
230                 (flags & SECT_FLAGS_MEM_SHARED) ? "shared, " : "",
231                 (flags & SECT_FLAGS_MEM_EXECUTE) ? "exec, " : "",
232                 (flags & SECT_FLAGS_MEM_READ) ? "read, " : "",
233                 (flags & SECT_FLAGS_MEM_WRITE) ? "write" : "");
234 }
235
236 static void
237 dump_sections (MonoCLIImageInfo *iinfo)
238 {
239         const int top = iinfo->cli_header.coff.coff_sections;
240         int i;
241         
242         for (i = 0; i < top; i++)
243                 dump_section_table (&iinfo->cli_section_tables [i]);
244 }
245
246 static void
247 dump_cli_header (MonoCLIHeader *ch)
248 {
249         printf ("\n");
250         printf ("          CLI header size: %d\n", ch->ch_size);
251         printf ("         Runtime required: %d.%d\n", ch->ch_runtime_major, ch->ch_runtime_minor);
252         printf ("                    Flags: %s, %s, %s, %s\n",
253                 (ch->ch_flags & CLI_FLAGS_ILONLY ? "ilonly" : "contains native"),
254                 (ch->ch_flags & CLI_FLAGS_32BITREQUIRED ? "32bits" : "32/64"),
255                 (ch->ch_flags & CLI_FLAGS_TRACKDEBUGDATA ? "trackdebug" : "no-trackdebug"),
256                 (ch->ch_flags & CLI_FLAGS_STRONGNAMESIGNED ? "strongnamesigned" : "notsigned"));
257         dent   ("         Metadata", ch->ch_metadata);
258         hex32  ("Entry Point Token", ch->ch_entry_point);
259         dent   ("     Resources at", ch->ch_resources);
260         dent   ("   Strong Name at", ch->ch_strong_name);
261         dent   ("  Code Manager at", ch->ch_code_manager_table);
262         dent   ("  VTableFixups at", ch->ch_vtable_fixups);
263         dent   ("     EAT jumps at", ch->ch_export_address_table_jumps);
264 }       
265
266 static void
267 dsh (const char *label, MonoImage *meta, MonoStreamHeader *sh)
268 {
269         printf ("%s: 0x%08x - 0x%08x [%d == 0x%08x]\n",
270                 label,
271                 (int)(sh->data - meta->raw_metadata), (int)(sh->data + sh->size - meta->raw_metadata),
272                 sh->size, sh->size);
273 }
274
275 static void
276 dump_metadata_header (MonoImage *meta)
277 {
278         printf ("\nMetadata header:\n");
279         printf ("           Version: %d.%d\n", meta->md_version_major, meta->md_version_minor);
280         printf ("    Version string: %s\n", meta->version);
281 }
282
283 static void
284 dump_metadata_ptrs (MonoImage *meta)
285 {
286         printf ("\nMetadata pointers:\n");
287         dsh ("\tTables (#~)", meta, &meta->heap_tables);
288         dsh ("\t    Strings", meta, &meta->heap_strings);
289         dsh ("\t       Blob", meta, &meta->heap_blob);
290         dsh ("\tUser string", meta, &meta->heap_us);
291         dsh ("\t       GUID", meta, &meta->heap_guid);
292 }
293
294 static void
295 dump_metadata (MonoImage *meta)
296 {
297         int table;
298
299         dump_metadata_header (meta);
300
301         dump_metadata_ptrs (meta);
302
303         printf ("Rows:\n");
304         for (table = 0; table < MONO_TABLE_NUM; table++){
305                 if (meta->tables [table].rows == 0)
306                         continue;
307                 printf ("Table %s: %d records (%d bytes, at %x)\n",
308                         mono_meta_table_name (table),
309                         meta->tables [table].rows,
310                         meta->tables [table].row_size,
311                         (unsigned int)(meta->tables [table].base - meta->raw_data)
312                         );
313         }
314 }
315
316 static void
317 dump_methoddef (MonoImage *metadata, guint32 token)
318 {
319         const char *loc;
320
321         if (!token)
322                 return;
323         loc = mono_metadata_locate_token (metadata, token);
324
325         printf ("RVA for Entry Point: 0x%08x\n", read32 (loc));
326 }
327
328 static void
329 dump_dotnet_iinfo (MonoImage *image)
330 {
331         MonoCLIImageInfo *iinfo = image->image_info;
332
333         dump_dotnet_header (&iinfo->cli_header);
334         dump_sections (iinfo);
335         dump_cli_header (&iinfo->cli_cli_header);
336         dump_strong_name (image);
337         dump_public_key (image);
338         dump_metadata (image);
339
340         dump_methoddef (image, iinfo->cli_cli_header.ch_entry_point);
341 }
342
343 static int
344 dump_verify_info (MonoImage *image, int flags)
345 {
346         GSList *errors, *tmp;
347         int count = 0, verifiable = 0;
348         const char* desc [] = {
349                 "Ok", "Error", "Warning", NULL, "CLS", NULL, NULL, NULL, "Not Verifiable"
350         };
351
352         if (verify_metadata) {
353                 errors = mono_image_verify_tables (image, flags);
354         
355                 for (tmp = errors; tmp; tmp = tmp->next) {
356                         MonoVerifyInfo *info = tmp->data;
357                         g_print ("%s: %s\n", desc [info->status], info->message);
358                         if (info->status == MONO_VERIFY_ERROR)
359                                 count++;
360                 }
361                 mono_free_verify_list (errors);
362         }
363
364         if (verify_code) { /* verify code */
365                 int i;
366                 MonoTableInfo *m = &image->tables [MONO_TABLE_METHOD];
367
368                 for (i = 0; i < m->rows; ++i) {
369                         MonoMethod *method;
370                         method = mono_get_method (image, MONO_TOKEN_METHOD_DEF | (i+1), NULL);
371                         if (!method) {
372                                 g_print ("Warning: Cannot lookup method with token 0x%08x\n", i + 1);
373                                 continue;
374                         }
375                         errors = mono_method_verify (method, flags);
376                         if (errors) {
377                                 MonoClass *klass = mono_method_get_class (method);
378                                 char *name = mono_type_full_name (&klass->byval_arg);
379                                 if (mono_method_signature (method) == NULL) {
380                                         g_print ("In method: %s::%s(ERROR)\n", name, mono_method_get_name (method));
381                                 } else {
382                                         char *sig;
383                                         sig = mono_signature_get_desc (mono_method_signature (method), FALSE);  
384                                         g_print ("In method: %s::%s(%s)\n", name, mono_method_get_name (method), sig);
385                                         g_free (sig);
386                                 }
387                                 g_free (name);
388                         }
389
390                         for (tmp = errors; tmp; tmp = tmp->next) {
391                                 MonoVerifyInfo *info = tmp->data;
392                                 g_print ("%s: %s\n", desc [info->status], info->message);
393                                 if (info->status == MONO_VERIFY_ERROR) {
394                                         count++;
395                                         verifiable = 3;
396                                 }
397                                 if(info->status == MONO_VERIFY_NOT_VERIFIABLE) {
398                                         if (verifiable < 2)
399                                                 verifiable = 2; 
400                                 }
401                         }
402                         mono_free_verify_list (errors);
403                 }
404         }
405
406         if (count)
407                 g_print ("Error count: %d\n", count);
408         return verifiable;
409 }
410
411 static void
412 usage (void)
413 {
414         printf ("Usage is: pedump [--verify error,warn,cls,all,code,fail-on-verifiable,non-strict,valid-only,metadata] file.exe\n");
415         exit (1);
416 }
417
418 static int
419 verify_image_file (const char *fname)
420 {
421         GSList *errors = NULL, *tmp;
422         MonoImage *image;
423         MonoTableInfo *table;
424         MonoAssembly *assembly;
425         MonoImageOpenStatus status;
426         int i, count = 0;
427         const char* desc [] = {
428                 "Ok", "Error", "Warning", NULL, "CLS", NULL, NULL, NULL, "Not Verifiable"
429         };
430
431         image = mono_image_open_raw (fname, &status);
432         if (!image) {
433                 printf ("Could not open %s\n", fname);
434                 return 1;
435         }
436
437         if (!mono_verifier_verify_pe_data (image, &errors))
438                 goto invalid_image;
439
440         if (!mono_image_load_pe_data (image)) {
441                 printf ("Could not load pe data for assembly %s\n", fname);
442                 return 1;
443         }
444
445         if (!mono_verifier_verify_cli_data (image, &errors))
446                 goto invalid_image;
447
448         if (!mono_image_load_cli_data (image)) {
449                 printf ("Could not load cli data for assembly %s\n", fname);
450                 return 1;
451         }
452
453         if (!mono_verifier_verify_table_data (image, &errors))
454                 goto invalid_image;
455
456         mono_image_load_names (image);
457
458         if (!verify_partial_md && !mono_verifier_verify_full_table_data (image, &errors))
459                 goto invalid_image;
460
461         /*fake an assembly for class loading to work*/
462         assembly = g_new0 (MonoAssembly, 1);
463         assembly->in_gac = FALSE;
464         assembly->image = image;
465         image->assembly = assembly;
466
467         table = &image->tables [MONO_TABLE_TYPEDEF];
468         for (i = 1; i <= table->rows; ++i) {
469                 guint32 token = i | MONO_TOKEN_TYPE_DEF;
470                 MonoClass *class = mono_class_get (image, token);
471                 if (!class) {
472                         printf ("Could not load class with token %x\n", token);
473                         continue;
474                 }
475                 mono_class_init (class);
476                 if (class->exception_type != MONO_EXCEPTION_NONE || mono_loader_get_last_error ()) {
477                         printf ("Error verifying class(0x%08x) %s.%s a type load error happened\n", token, class->name_space, class->name);
478                         mono_loader_clear_error ();
479                         ++count;
480                 }
481         }
482         if (count)
483                 return 1;
484         return 0;
485
486 invalid_image:
487         for (tmp = errors; tmp; tmp = tmp->next) {
488                 MonoVerifyInfo *info = tmp->data;
489                 g_print ("%s: %s\n", desc [info->status], info->message);
490                 if (info->status == MONO_VERIFY_ERROR)
491                         count++;
492         }
493         mono_free_verify_list (errors);
494         if (count)
495                 g_print ("Error count: %d\n", count);
496         return 1;
497 }
498
499 static gboolean
500 try_load_from (MonoAssembly **assembly, const gchar *path1, const gchar *path2,
501                                         const gchar *path3, const gchar *path4, gboolean refonly)
502 {
503         gchar *fullpath;
504
505         *assembly = NULL;
506         fullpath = g_build_filename (path1, path2, path3, path4, NULL);
507         if (g_file_test (fullpath, G_FILE_TEST_IS_REGULAR))
508                 *assembly = mono_assembly_open_full (fullpath, NULL, refonly);
509
510         g_free (fullpath);
511         return (*assembly != NULL);
512 }
513
514 static MonoAssembly *
515 real_load (gchar **search_path, const gchar *culture, const gchar *name, gboolean refonly)
516 {
517         MonoAssembly *result = NULL;
518         gchar **path;
519         gchar *filename;
520         const gchar *local_culture;
521         gint len;
522
523         if (!culture || *culture == '\0') {
524                 local_culture = "";
525         } else {
526                 local_culture = culture;
527         }
528
529         filename =  g_strconcat (name, ".dll", NULL);
530         len = strlen (filename);
531
532         for (path = search_path; *path; path++) {
533                 if (**path == '\0')
534                         continue; /* Ignore empty ApplicationBase */
535
536                 /* See test cases in bug #58992 and bug #57710 */
537                 /* 1st try: [culture]/[name].dll (culture may be empty) */
538                 strcpy (filename + len - 4, ".dll");
539                 if (try_load_from (&result, *path, local_culture, "", filename, refonly))
540                         break;
541
542                 /* 2nd try: [culture]/[name].exe (culture may be empty) */
543                 strcpy (filename + len - 4, ".exe");
544                 if (try_load_from (&result, *path, local_culture, "", filename, refonly))
545                         break;
546
547                 /* 3rd try: [culture]/[name]/[name].dll (culture may be empty) */
548                 strcpy (filename + len - 4, ".dll");
549                 if (try_load_from (&result, *path, local_culture, name, filename, refonly))
550                         break;
551
552                 /* 4th try: [culture]/[name]/[name].exe (culture may be empty) */
553                 strcpy (filename + len - 4, ".exe");
554                 if (try_load_from (&result, *path, local_culture, name, filename, refonly))
555                         break;
556         }
557
558         g_free (filename);
559         return result;
560 }
561
562 /*
563  * Try to load referenced assemblies from assemblies_path.
564  */
565 static MonoAssembly *
566 pedump_preload (MonoAssemblyName *aname,
567                                  gchar **assemblies_path,
568                                  gpointer user_data)
569 {
570         MonoAssembly *result = NULL;
571         gboolean refonly = GPOINTER_TO_UINT (user_data);
572
573         if (assemblies_path && assemblies_path [0] != NULL) {
574                 result = real_load (assemblies_path, aname->culture, aname->name, refonly);
575         }
576
577         return result;
578 }
579
580 static GList *loaded_assemblies = NULL;
581
582 static void
583 pedump_assembly_load_hook (MonoAssembly *assembly, gpointer user_data)
584 {
585         loaded_assemblies = g_list_prepend (loaded_assemblies, assembly);
586 }
587
588 static MonoAssembly *
589 pedump_assembly_search_hook (MonoAssemblyName *aname, gpointer user_data)
590 {
591         GList *tmp;
592
593        for (tmp = loaded_assemblies; tmp; tmp = tmp->next) {
594                MonoAssembly *ass = tmp->data;
595                if (mono_assembly_names_equal (aname, &ass->aname))
596                        return ass;
597        }
598        return NULL;
599 }
600
601 #define VALID_ONLY_FLAG 0x08000000
602 #define VERIFY_CODE_ONLY MONO_VERIFY_ALL + 1 
603 #define VERIFY_METADATA_ONLY VERIFY_CODE_ONLY + 1
604 #define VERIFY_PARTIAL_METADATA VERIFY_CODE_ONLY + 2
605
606 int
607 main (int argc, char *argv [])
608 {
609         MonoImage *image;
610         char *file = NULL;
611         char *flags = NULL;
612         MiniVerifierMode verifier_mode = MONO_VERIFIER_MODE_VERIFIABLE;
613         const char *flag_desc [] = {"error", "warn", "cls", "all", "code", "fail-on-verifiable", "non-strict", "valid-only", "metadata", "partial-md", NULL};
614         guint flag_vals [] = {MONO_VERIFY_ERROR, MONO_VERIFY_WARNING, MONO_VERIFY_CLS, MONO_VERIFY_ALL, VERIFY_CODE_ONLY, MONO_VERIFY_FAIL_FAST, MONO_VERIFY_NON_STRICT, VALID_ONLY_FLAG, VERIFY_METADATA_ONLY, VERIFY_PARTIAL_METADATA, 0};
615         int i, verify_flags = MONO_VERIFY_REPORT_ALL_ERRORS, run_new_metadata_verifier = 0;
616         
617         for (i = 1; i < argc; i++){
618                 if (argv [i][0] != '-'){
619                         file = argv [i];
620                         continue;
621                 }
622
623                 if (strcmp (argv [i], "--help") == 0)
624                         usage ();
625                 else if (strcmp (argv [i], "--verify") == 0) {
626                         verify_pe = 1;
627                         dump_data = 0;
628                         ++i;
629                         flags = argv [i];
630                 } else {
631                         usage ();
632                 }
633         }
634         
635         if (!file)
636                 usage ();
637
638         mono_perfcounters_init ();
639         mono_metadata_init ();
640         mono_images_init ();
641         mono_assemblies_init ();
642         mono_loader_init ();
643  
644         if (verify_pe) {
645                 char *tok = strtok (flags, ",");
646
647                 verify_metadata = 1;
648                 verify_code = 0;
649                 while (tok) {
650                         for (i = 0; flag_desc [i]; ++i) {
651                                 if (strcmp (tok, flag_desc [i]) == 0) {
652                                         if (flag_vals [i] == VERIFY_CODE_ONLY) {
653                                                 verify_metadata = 0;
654                                                 verify_code = 1;
655                                         } else if(flag_vals [i] == MONO_VERIFY_ALL) {
656                                                 verify_code = 1;
657                                         } else if(flag_vals [i] == VERIFY_METADATA_ONLY) {
658                                                 verify_metadata = 0;
659                                                 run_new_metadata_verifier = 1;
660                                         } else if(flag_vals [i] == VERIFY_PARTIAL_METADATA) {
661                                                 verify_partial_md = 1;
662                                         }
663                                         if (flag_vals [i] == VALID_ONLY_FLAG)
664                                                 verifier_mode = MONO_VERIFIER_MODE_VALID;
665                                         else
666                                                 verify_flags |= flag_vals [i];
667                                         break;
668                                 }
669                         }
670                         if (!flag_desc [i])
671                                 g_print ("Unknown verify flag %s\n", tok);
672                         tok = strtok (NULL, ",");
673                 }
674
675                 mono_verifier_set_mode (verifier_mode);
676                 /**/
677         }
678
679         if (verify_pe || run_new_metadata_verifier) {
680                 mono_install_assembly_load_hook (pedump_assembly_load_hook, NULL);
681                 mono_install_assembly_search_hook (pedump_assembly_search_hook, NULL);
682
683                 mono_init_version ("pedump", "v2.0.50727");
684
685                 mono_install_assembly_preload_hook (pedump_preload, GUINT_TO_POINTER (FALSE));
686
687                 mono_marshal_init ();
688                 run_new_metadata_verifier = 1;
689         }
690         
691         if (run_new_metadata_verifier) {
692                 int res;
693                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
694
695                 res = verify_image_file (file);
696                 if (res || !verify_code)
697                         return res;
698         }
699
700         image = mono_image_open (file, NULL);
701         if (!image){
702                 fprintf (stderr, "Cannot open image %s\n", file);
703                 exit (1);
704         }
705
706         if (dump_data)
707                 dump_dotnet_iinfo (image);
708         if (verify_pe) {
709                 MonoAssembly *assembly;
710                 MonoImage *image;
711                 MonoImageOpenStatus status;
712
713                 mono_verifier_set_mode (verifier_mode);
714
715                 assembly = mono_assembly_open (file, NULL);
716                 /*fake an assembly for netmodules so the verifier works*/
717                 if (!assembly && (image = mono_image_open (file, &status)) && image->tables [MONO_TABLE_ASSEMBLY].rows == 0) {
718                         assembly = g_new0 (MonoAssembly, 1);
719                         assembly->in_gac = FALSE;
720                         assembly->image = image;
721                         image->assembly = assembly;
722                 }
723
724                 if (!assembly) {
725                         g_print ("Could not open assembly %s\n", file);
726                         return 4;
727                 }
728
729                 return dump_verify_info (assembly->image, verify_flags);
730         } else
731                 mono_image_close (image);
732         
733         return 0;
734 }
735