2004-12-02 Martin Baulig <martin@ximian.com>
[mono.git] / mono / metadata / image.c
1 /*
2  * image.c: Routines for manipulating an image stored in an
3  * extended PE/COFF file.
4  * 
5  * Authors:
6  *   Miguel de Icaza (miguel@ximian.com)
7  *   Paolo Molaro (lupus@ximian.com)
8  *
9  * (C) 2001-2003 Ximian, Inc.  http://www.ximian.com
10  *
11  */
12 #include <config.h>
13 #include <stdio.h>
14 #include <glib.h>
15 #include <errno.h>
16 #include <time.h>
17 #include <string.h>
18 #include "image.h"
19 #include "cil-coff.h"
20 #include "rawbuffer.h"
21 #include "mono-endian.h"
22 #include "private.h"
23 #include "tabledefs.h"
24 #include "tokentype.h"
25 #include "metadata-internals.h"
26 #include <mono/io-layer/io-layer.h>
27
28 #define INVALID_ADDRESS 0xffffffff
29
30 /*
31  * Keeps track of the various assemblies loaded
32  */
33 static GHashTable *loaded_images_hash;
34 static GHashTable *loaded_images_guid_hash;
35
36 static CRITICAL_SECTION images_mutex;
37
38 guint32
39 mono_cli_rva_image_map (MonoCLIImageInfo *iinfo, guint32 addr)
40 {
41         const int top = iinfo->cli_section_count;
42         MonoSectionTable *tables = iinfo->cli_section_tables;
43         int i;
44         
45         for (i = 0; i < top; i++){
46                 if ((addr >= tables->st_virtual_address) &&
47                     (addr < tables->st_virtual_address + tables->st_raw_data_size)){
48                         return addr - tables->st_virtual_address + tables->st_raw_data_ptr;
49                 }
50                 tables++;
51         }
52         return INVALID_ADDRESS;
53 }
54
55 char *
56 mono_image_rva_map (MonoImage *image, guint32 addr)
57 {
58         MonoCLIImageInfo *iinfo = image->image_info;
59         const int top = iinfo->cli_section_count;
60         MonoSectionTable *tables = iinfo->cli_section_tables;
61         int i;
62         
63         for (i = 0; i < top; i++){
64                 if ((addr >= tables->st_virtual_address) &&
65                     (addr < tables->st_virtual_address + tables->st_raw_data_size)){
66                         if (!iinfo->cli_sections [i]) {
67                                 if (!mono_image_ensure_section_idx (image, i))
68                                         return NULL;
69                         }
70                         return (char*)iinfo->cli_sections [i] +
71                                 (addr - tables->st_virtual_address);
72                 }
73                 tables++;
74         }
75         return NULL;
76 }
77
78 static gchar *
79 canonicalize_path (const char *path)
80 {
81         gchar *abspath, *pos, *lastpos, *dest;
82         int backc;
83
84         if (g_path_is_absolute (path)) {
85                 abspath = g_strdup (path);
86         } else {
87                 gchar *tmpdir = g_get_current_dir ();
88                 abspath = g_build_filename (tmpdir, path, NULL);
89                 g_free (tmpdir);
90         }
91
92         abspath = g_strreverse (abspath);
93
94         backc = 0;
95         dest = lastpos = abspath;
96         pos = strchr (lastpos, G_DIR_SEPARATOR);
97
98         while (pos != NULL) {
99                 int len = pos - lastpos;
100                 if (len == 1 && lastpos [0] == '.') {
101                         // nop
102                 } else if (len == 2 && lastpos [0] == '.' && lastpos [1] == '.') {
103                         backc++;
104                 } else if (len > 0) {
105                         if (backc > 0) {
106                                 backc--;
107                         } else {
108                                 if (dest != lastpos) strncpy (dest, lastpos, len + 1);
109                                 dest += len + 1;
110                         }
111                 }
112                 lastpos = pos + 1;
113                 pos = strchr (lastpos, G_DIR_SEPARATOR);
114         }
115         
116         if (dest != lastpos) strcpy (dest, lastpos);
117         return g_strreverse (abspath);
118 }
119
120 /**
121  * mono_images_init:
122  *
123  *  Initialize the global variables used by this module.
124  */
125 void
126 mono_images_init (void)
127 {
128         InitializeCriticalSection (&images_mutex);
129
130         loaded_images_hash = g_hash_table_new (g_str_hash, g_str_equal);
131         loaded_images_guid_hash = g_hash_table_new (g_str_hash, g_str_equal);
132 }
133
134 /**
135  * mono_image_ensure_section_idx:
136  * @image: The image we are operating on
137  * @section: section number that we will load/map into memory
138  *
139  * This routine makes sure that we have an in-memory copy of
140  * an image section (.text, .rsrc, .data).
141  *
142  * Returns: TRUE on success
143  */
144 int
145 mono_image_ensure_section_idx (MonoImage *image, int section)
146 {
147         MonoCLIImageInfo *iinfo = image->image_info;
148         MonoSectionTable *sect;
149         gboolean writable;
150         
151         g_return_val_if_fail (section < iinfo->cli_section_count, FALSE);
152
153         if (iinfo->cli_sections [section] != NULL)
154                 return TRUE;
155
156         sect = &iinfo->cli_section_tables [section];
157         
158         writable = sect->st_flags & SECT_FLAGS_MEM_WRITE;
159
160         if (!image->f) {
161                 if (sect->st_raw_data_ptr + sect->st_raw_data_size > image->raw_data_len)
162                         return FALSE;
163                 /* FIXME: we ignore the writable flag since we don't patch the binary */
164                 iinfo->cli_sections [section] = image->raw_data + sect->st_raw_data_ptr;
165                 return TRUE;
166         }
167         iinfo->cli_sections [section] = mono_raw_buffer_load (
168                 fileno (image->f), writable,
169                 sect->st_raw_data_ptr, sect->st_raw_data_size);
170
171         if (iinfo->cli_sections [section] == NULL)
172                 return FALSE;
173
174         return TRUE;
175 }
176
177 /**
178  * mono_image_ensure_section:
179  * @image: The image we are operating on
180  * @section: section name that we will load/map into memory
181  *
182  * This routine makes sure that we have an in-memory copy of
183  * an image section (.text, .rsrc, .data).
184  *
185  * Returns: TRUE on success
186  */
187 int
188 mono_image_ensure_section (MonoImage *image, const char *section)
189 {
190         MonoCLIImageInfo *ii = image->image_info;
191         int i;
192         
193         for (i = 0; i < ii->cli_section_count; i++){
194                 if (strncmp (ii->cli_section_tables [i].st_name, section, 8) != 0)
195                         continue;
196                 
197                 return mono_image_ensure_section_idx (image, i);
198         }
199         return FALSE;
200 }
201
202 static int
203 load_section_tables (MonoImage *image, MonoCLIImageInfo *iinfo, guint32 offset)
204 {
205         const int top = iinfo->cli_header.coff.coff_sections;
206         int i;
207
208         iinfo->cli_section_count = top;
209         iinfo->cli_section_tables = g_new0 (MonoSectionTable, top);
210         iinfo->cli_sections = g_new0 (void *, top);
211         
212         for (i = 0; i < top; i++){
213                 MonoSectionTable *t = &iinfo->cli_section_tables [i];
214
215                 if (!image->f) {
216                         if (offset + sizeof (MonoSectionTable) > image->raw_data_len)
217                                 return FALSE;
218                         memcpy (t, image->raw_data + offset, sizeof (MonoSectionTable));
219                         offset += sizeof (MonoSectionTable);
220                 } else {
221                         if (fread (t, sizeof (MonoSectionTable), 1, image->f) != 1)
222                                 return FALSE;
223                 }
224
225 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
226                 t->st_virtual_size = GUINT32_FROM_LE (t->st_virtual_size);
227                 t->st_virtual_address = GUINT32_FROM_LE (t->st_virtual_address);
228                 t->st_raw_data_size = GUINT32_FROM_LE (t->st_raw_data_size);
229                 t->st_raw_data_ptr = GUINT32_FROM_LE (t->st_raw_data_ptr);
230                 t->st_reloc_ptr = GUINT32_FROM_LE (t->st_reloc_ptr);
231                 t->st_lineno_ptr = GUINT32_FROM_LE (t->st_lineno_ptr);
232                 t->st_reloc_count = GUINT16_FROM_LE (t->st_reloc_count);
233                 t->st_line_count = GUINT16_FROM_LE (t->st_line_count);
234                 t->st_flags = GUINT32_FROM_LE (t->st_flags);
235 #endif
236                 /* consistency checks here */
237         }
238
239         return TRUE;
240 }
241
242 static gboolean
243 load_cli_header (MonoImage *image, MonoCLIImageInfo *iinfo)
244 {
245         guint32 offset;
246         int n;
247         
248         offset = mono_cli_rva_image_map (iinfo, iinfo->cli_header.datadir.pe_cli_header.rva);
249         if (offset == INVALID_ADDRESS)
250                 return FALSE;
251
252         if (!image->f) {
253                 if (offset + sizeof (MonoCLIHeader) > image->raw_data_len)
254                         return FALSE;
255                 memcpy (&iinfo->cli_cli_header, image->raw_data + offset, sizeof (MonoCLIHeader));
256         } else {
257                 if (fseek (image->f, offset, SEEK_SET) != 0)
258                         return FALSE;
259         
260                 if ((n = fread (&iinfo->cli_cli_header, sizeof (MonoCLIHeader), 1, image->f)) != 1)
261                         return FALSE;
262         }
263
264 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
265 #define SWAP32(x) (x) = GUINT32_FROM_LE ((x))
266 #define SWAP16(x) (x) = GUINT16_FROM_LE ((x))
267 #define SWAPPDE(x) do { (x).rva = GUINT32_FROM_LE ((x).rva); (x).size = GUINT32_FROM_LE ((x).size);} while (0)
268         SWAP32 (iinfo->cli_cli_header.ch_size);
269         SWAP32 (iinfo->cli_cli_header.ch_flags);
270         SWAP32 (iinfo->cli_cli_header.ch_entry_point);
271         SWAP16 (iinfo->cli_cli_header.ch_runtime_major);
272         SWAP16 (iinfo->cli_cli_header.ch_runtime_minor);
273         SWAPPDE (iinfo->cli_cli_header.ch_metadata);
274         SWAPPDE (iinfo->cli_cli_header.ch_resources);
275         SWAPPDE (iinfo->cli_cli_header.ch_strong_name);
276         SWAPPDE (iinfo->cli_cli_header.ch_code_manager_table);
277         SWAPPDE (iinfo->cli_cli_header.ch_vtable_fixups);
278         SWAPPDE (iinfo->cli_cli_header.ch_export_address_table_jumps);
279         SWAPPDE (iinfo->cli_cli_header.ch_eeinfo_table);
280         SWAPPDE (iinfo->cli_cli_header.ch_helper_table);
281         SWAPPDE (iinfo->cli_cli_header.ch_dynamic_info);
282         SWAPPDE (iinfo->cli_cli_header.ch_delay_load_info);
283         SWAPPDE (iinfo->cli_cli_header.ch_module_image);
284         SWAPPDE (iinfo->cli_cli_header.ch_external_fixups);
285         SWAPPDE (iinfo->cli_cli_header.ch_ridmap);
286         SWAPPDE (iinfo->cli_cli_header.ch_debug_map);
287         SWAPPDE (iinfo->cli_cli_header.ch_ip_map);
288 #undef SWAP32
289 #undef SWAP16
290 #undef SWAPPDE
291 #endif
292         /* Catch new uses of the fields that are supposed to be zero */
293
294         if ((iinfo->cli_cli_header.ch_eeinfo_table.rva != 0) ||
295             (iinfo->cli_cli_header.ch_helper_table.rva != 0) ||
296             (iinfo->cli_cli_header.ch_dynamic_info.rva != 0) ||
297             (iinfo->cli_cli_header.ch_delay_load_info.rva != 0) ||
298             (iinfo->cli_cli_header.ch_module_image.rva != 0) ||
299             (iinfo->cli_cli_header.ch_external_fixups.rva != 0) ||
300             (iinfo->cli_cli_header.ch_ridmap.rva != 0) ||
301             (iinfo->cli_cli_header.ch_debug_map.rva != 0) ||
302             (iinfo->cli_cli_header.ch_ip_map.rva != 0)){
303
304                 /*
305                  * No need to scare people who are testing this, I am just
306                  * labelling this as a LAMESPEC
307                  */
308                 /* g_warning ("Some fields in the CLI header which should have been zero are not zero"); */
309
310         }
311             
312         return TRUE;
313 }
314
315 static gboolean
316 load_metadata_ptrs (MonoImage *image, MonoCLIImageInfo *iinfo)
317 {
318         guint32 offset, size;
319         guint16 streams;
320         int i;
321         guint32 pad;
322         char *ptr;
323         
324         offset = mono_cli_rva_image_map (iinfo, iinfo->cli_cli_header.ch_metadata.rva);
325         if (offset == INVALID_ADDRESS)
326                 return FALSE;
327
328         size = iinfo->cli_cli_header.ch_metadata.size;
329
330         if (!image->f) {
331                 if (offset + size > image->raw_data_len)
332                         return FALSE;
333                 image->raw_metadata = image->raw_data + offset;
334         } else {
335                 image->raw_metadata = mono_raw_buffer_load (fileno (image->f), FALSE, offset, size);
336                 if (image->raw_metadata == NULL)
337                         return FALSE;
338         }
339
340         ptr = image->raw_metadata;
341
342         if (strncmp (ptr, "BSJB", 4) == 0){
343                 guint32 version_string_len;
344
345                 ptr += 12;
346                 version_string_len = read32 (ptr);
347                 ptr += 4;
348                 image->version = g_strndup (ptr, version_string_len);
349                 ptr += version_string_len;
350                 pad = ptr - image->raw_metadata;
351                 if (pad % 4)
352                         ptr += 4 - (pad % 4);
353         } else
354                 return FALSE;
355
356         /* skip over flags */
357         ptr += 2;
358         
359         streams = read16 (ptr);
360         ptr += 2;
361
362         for (i = 0; i < streams; i++){
363                 if (strncmp (ptr + 8, "#~", 3) == 0){
364                         image->heap_tables.data = image->raw_metadata + read32 (ptr);
365                         image->heap_tables.size = read32 (ptr + 4);
366                         ptr += 8 + 3;
367                 } else if (strncmp (ptr + 8, "#Strings", 9) == 0){
368                         image->heap_strings.data = image->raw_metadata + read32 (ptr);
369                         image->heap_strings.size = read32 (ptr + 4);
370                         ptr += 8 + 9;
371                 } else if (strncmp (ptr + 8, "#US", 4) == 0){
372                         image->heap_us.data = image->raw_metadata + read32 (ptr);
373                         image->heap_us.size = read32 (ptr + 4);
374                         ptr += 8 + 4;
375                 } else if (strncmp (ptr + 8, "#Blob", 6) == 0){
376                         image->heap_blob.data = image->raw_metadata + read32 (ptr);
377                         image->heap_blob.size = read32 (ptr + 4);
378                         ptr += 8 + 6;
379                 } else if (strncmp (ptr + 8, "#GUID", 6) == 0){
380                         image->heap_guid.data = image->raw_metadata + read32 (ptr);
381                         image->heap_guid.size = read32 (ptr + 4);
382                         ptr += 8 + 6;
383                 } else if (strncmp (ptr + 8, "#-", 3) == 0) {
384                         g_print ("Assembly '%s' has the non-standard metadata heap #-.\nRecompile it correctly (without the /incremental switch or in Release mode).", image->name);
385                         return FALSE;
386                 } else {
387                         g_message ("Unknown heap type: %s\n", ptr + 8);
388                         ptr += 8 + strlen (ptr + 8) + 1;
389                 }
390                 pad = ptr - image->raw_metadata;
391                 if (pad % 4)
392                         ptr += 4 - (pad % 4);
393         }
394
395         g_assert (image->heap_guid.data);
396         g_assert (image->heap_guid.size >= 16);
397
398         image->guid = mono_guid_to_string (image->heap_guid.data);
399
400         return TRUE;
401 }
402
403 /*
404  * Load representation of logical metadata tables, from the "#~" stream
405  */
406 static gboolean
407 load_tables (MonoImage *image)
408 {
409         const char *heap_tables = image->heap_tables.data;
410         const guint32 *rows;
411         guint64 valid_mask, sorted_mask;
412         int valid = 0, table;
413         int heap_sizes;
414         
415         heap_sizes = heap_tables [6];
416         image->idx_string_wide = ((heap_sizes & 0x01) == 1);
417         image->idx_guid_wide   = ((heap_sizes & 0x02) == 2);
418         image->idx_blob_wide   = ((heap_sizes & 0x04) == 4);
419         
420         valid_mask = read64 (heap_tables + 8);
421         sorted_mask = read64 (heap_tables + 16);
422         rows = (const guint32 *) (heap_tables + 24);
423         
424         for (table = 0; table < 64; table++){
425                 if ((valid_mask & ((guint64) 1 << table)) == 0){
426                         image->tables [table].rows = 0;
427                         continue;
428                 }
429                 if (table > MONO_TABLE_LAST) {
430                         g_warning("bits in valid must be zero above 0x2d (II - 23.1.6)");
431                 }
432                 /*if ((sorted_mask & ((guint64) 1 << table)) == 0){
433                         g_print ("table %s (0x%02x) is sorted\n", mono_meta_table_name (table), table);
434                 }*/
435                 image->tables [table].rows = read32 (rows);
436                 rows++;
437                 valid++;
438         }
439
440         image->tables_base = (heap_tables + 24) + (4 * valid);
441
442         /* They must be the same */
443         g_assert ((const void *) image->tables_base == (const void *) rows);
444
445         mono_metadata_compute_table_bases (image);
446         return TRUE;
447 }
448
449 static gboolean
450 load_metadata (MonoImage *image, MonoCLIImageInfo *iinfo)
451 {
452         if (!load_metadata_ptrs (image, iinfo))
453                 return FALSE;
454
455         return load_tables (image);
456 }
457
458 void
459 mono_image_add_to_name_cache (MonoImage *image, const char *nspace, 
460                                                           const char *name, guint32 index)
461 {
462         GHashTable *nspace_table;
463         GHashTable *name_cache = image->name_cache;
464
465         if (!(nspace_table = g_hash_table_lookup (name_cache, nspace))) {
466                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
467                 g_hash_table_insert (name_cache, (char *)nspace, (char *)nspace_table);
468         }
469         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (index));
470 }
471
472 static void
473 load_modules (MonoImage *image, MonoImageOpenStatus *status)
474 {
475         MonoTableInfo *t;
476         int i;
477         char *base_dir;
478
479         if (image->modules)
480                 return;
481
482         t = &image->tables [MONO_TABLE_MODULEREF];
483         image->modules = g_new0 (MonoImage *, t->rows);
484         image->module_count = t->rows;
485         base_dir = g_path_get_dirname (image->name);
486         for (i = 0; i < t->rows; i++){
487                 char *module_ref;
488                 const char *name;
489                 guint32 cols [MONO_MODULEREF_SIZE];
490
491                 mono_metadata_decode_row (t, i, cols, MONO_MODULEREF_SIZE);
492                 name = mono_metadata_string_heap (image, cols [MONO_MODULEREF_NAME]);
493                 module_ref = g_build_filename (base_dir, name, NULL);
494                 image->modules [i] = mono_image_open (module_ref, status);
495                 if (image->modules [i]) {
496                         /* g_print ("loaded module %s from %s (%p)\n", module_ref, image->name, image->assembly); */
497                 }
498                 /* 
499                  * FIXME: what do we do here? it could be a native dll...
500                  * We should probably do lazy-loading of modules.
501                  */
502                 if (status)
503                         *status = MONO_IMAGE_OK;
504                 g_free (module_ref);
505         }
506
507         g_free (base_dir);
508 }
509
510 static void
511 load_class_names (MonoImage *image)
512 {
513         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
514         guint32 cols [MONO_TYPEDEF_SIZE];
515         const char *name;
516         const char *nspace;
517         guint32 i, visib, nspace_index;
518         GHashTable *name_cache2, *nspace_table;
519
520         /* Temporary hash table to avoid lookups in the nspace_table */
521         name_cache2 = g_hash_table_new (NULL, NULL);
522
523         for (i = 1; i <= t->rows; ++i) {
524                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
525                 /* nested types are accessed from the nesting name */
526                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
527                 if (visib > TYPE_ATTRIBUTE_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_ASSEMBLY)
528                         continue;
529                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
530                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
531
532                 nspace_index = cols [MONO_TYPEDEF_NAMESPACE];
533                 nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
534                 if (!nspace_table) {
535                         nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
536                         g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
537                         g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
538                                                                  nspace_table);
539                 }
540                 g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (i));
541         }
542
543         /* Load type names from EXPORTEDTYPES table */
544         {
545                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
546                 guint32 cols [MONO_EXP_TYPE_SIZE];
547                 int i;
548
549                 for (i = 0; i < t->rows; ++i) {
550                         mono_metadata_decode_row (t, i, cols, MONO_EXP_TYPE_SIZE);
551                         name = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAME]);
552                         nspace = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAMESPACE]);
553
554                         nspace_index = cols [MONO_EXP_TYPE_NAMESPACE];
555                         nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
556                         if (!nspace_table) {
557                                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
558                                 g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
559                                 g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
560                                                                          nspace_table);
561                         }
562                         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (mono_metadata_make_token (MONO_TABLE_EXPORTEDTYPE, i + 1)));
563                 }
564         }
565
566         g_hash_table_destroy (name_cache2);
567 }
568
569 static void
570 register_guid (gpointer key, gpointer value, gpointer user_data)
571 {
572         MonoImage *image = (MonoImage*)value;
573
574         if (!g_hash_table_lookup (loaded_images_guid_hash, image))
575                 g_hash_table_insert (loaded_images_guid_hash, image->guid, image);
576 }
577
578 static void
579 build_guid_table (void)
580 {
581         g_hash_table_foreach (loaded_images_hash, register_guid, NULL);
582 }
583
584 void
585 mono_image_init (MonoImage *image)
586 {
587         image->method_cache = g_hash_table_new (NULL, NULL);
588         image->class_cache = g_hash_table_new (NULL, NULL);
589         image->field_cache = g_hash_table_new (NULL, NULL);
590         image->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
591         image->array_cache = g_hash_table_new (NULL, NULL);
592
593         image->delegate_begin_invoke_cache = 
594                 g_hash_table_new ((GHashFunc)mono_signature_hash, 
595                                   (GCompareFunc)mono_metadata_signature_equal);
596         image->delegate_end_invoke_cache = 
597                 g_hash_table_new ((GHashFunc)mono_signature_hash, 
598                                   (GCompareFunc)mono_metadata_signature_equal);
599         image->delegate_invoke_cache = 
600                 g_hash_table_new ((GHashFunc)mono_signature_hash, 
601                                   (GCompareFunc)mono_metadata_signature_equal);
602         image->runtime_invoke_cache  = 
603                 g_hash_table_new ((GHashFunc)mono_signature_hash, 
604                                   (GCompareFunc)mono_metadata_signature_equal);
605         
606         image->managed_wrapper_cache = g_hash_table_new (NULL, NULL);
607         image->native_wrapper_cache = g_hash_table_new (NULL, NULL);
608         image->remoting_invoke_cache = g_hash_table_new (NULL, NULL);
609         image->synchronized_cache = g_hash_table_new (NULL, NULL);
610
611         image->typespec_cache = g_hash_table_new (NULL, NULL);
612         image->memberref_signatures = g_hash_table_new (NULL, NULL);
613         image->helper_signatures = g_hash_table_new (g_str_hash, g_str_equal);
614 }
615
616 static MonoImage *
617 do_mono_image_load (MonoImage *image, MonoImageOpenStatus *status)
618 {
619         MonoCLIImageInfo *iinfo;
620         MonoDotNetHeader *header;
621         MonoMSDOSHeader msdos;
622         int n;
623         guint32 offset = 0;
624
625         mono_image_init (image);
626
627         iinfo = image->image_info;
628         header = &iinfo->cli_header;
629                 
630         if (status)
631                 *status = MONO_IMAGE_IMAGE_INVALID;
632
633         if (!image->f) {
634                 if (offset + sizeof (msdos) > image->raw_data_len)
635                         goto invalid_image;
636                 memcpy (&msdos, image->raw_data + offset, sizeof (msdos));
637         } else {
638                 if (fread (&msdos, sizeof (msdos), 1, image->f) != 1)
639                         goto invalid_image;
640         }
641         
642         if (!(msdos.msdos_sig [0] == 'M' && msdos.msdos_sig [1] == 'Z'))
643                 goto invalid_image;
644         
645         msdos.pe_offset = GUINT32_FROM_LE (msdos.pe_offset);
646
647         if (msdos.pe_offset != sizeof (msdos)) {
648                 if (image->f)
649                         fseek (image->f, msdos.pe_offset, SEEK_SET);
650         }
651         offset = msdos.pe_offset;
652
653         if (!image->f) {
654                 if (offset + sizeof (MonoDotNetHeader) > image->raw_data_len)
655                         goto invalid_image;
656                 memcpy (header, image->raw_data + offset, sizeof (MonoDotNetHeader));
657                 offset += sizeof (MonoDotNetHeader);
658         } else {
659                 if ((n = fread (header, sizeof (MonoDotNetHeader), 1, image->f)) != 1)
660                         goto invalid_image;
661         }
662
663 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
664 #define SWAP32(x) (x) = GUINT32_FROM_LE ((x))
665 #define SWAP16(x) (x) = GUINT16_FROM_LE ((x))
666 #define SWAPPDE(x) do { (x).rva = GUINT32_FROM_LE ((x).rva); (x).size = GUINT32_FROM_LE ((x).size);} while (0)
667         SWAP32 (header->coff.coff_time);
668         SWAP32 (header->coff.coff_symptr);
669         SWAP32 (header->coff.coff_symcount);
670         SWAP16 (header->coff.coff_machine);
671         SWAP16 (header->coff.coff_sections);
672         SWAP16 (header->coff.coff_opt_header_size);
673         SWAP16 (header->coff.coff_attributes);
674         /* MonoPEHeader */
675         SWAP32 (header->pe.pe_code_size);
676         SWAP32 (header->pe.pe_data_size);
677         SWAP32 (header->pe.pe_uninit_data_size);
678         SWAP32 (header->pe.pe_rva_entry_point);
679         SWAP32 (header->pe.pe_rva_code_base);
680         SWAP32 (header->pe.pe_rva_data_base);
681         SWAP16 (header->pe.pe_magic);
682
683         /* MonoPEHeaderNT: not used yet */
684         SWAP32  (header->nt.pe_image_base);     /* must be 0x400000 */
685         SWAP32  (header->nt.pe_section_align);       /* must be 8192 */
686         SWAP32  (header->nt.pe_file_alignment);      /* must be 512 or 4096 */
687         SWAP16  (header->nt.pe_os_major);            /* must be 4 */
688         SWAP16  (header->nt.pe_os_minor);            /* must be 0 */
689         SWAP16  (header->nt.pe_user_major);
690         SWAP16  (header->nt.pe_user_minor);
691         SWAP16  (header->nt.pe_subsys_major);
692         SWAP16  (header->nt.pe_subsys_minor);
693         SWAP32  (header->nt.pe_reserved_1);
694         SWAP32  (header->nt.pe_image_size);
695         SWAP32  (header->nt.pe_header_size);
696         SWAP32  (header->nt.pe_checksum);
697         SWAP16  (header->nt.pe_subsys_required);
698         SWAP16  (header->nt.pe_dll_flags);
699         SWAP32  (header->nt.pe_stack_reserve);
700         SWAP32  (header->nt.pe_stack_commit);
701         SWAP32  (header->nt.pe_heap_reserve);
702         SWAP32  (header->nt.pe_heap_commit);
703         SWAP32  (header->nt.pe_loader_flags);
704         SWAP32  (header->nt.pe_data_dir_count);
705
706         /* MonoDotNetHeader: mostly unused */
707         SWAPPDE (header->datadir.pe_export_table);
708         SWAPPDE (header->datadir.pe_import_table);
709         SWAPPDE (header->datadir.pe_resource_table);
710         SWAPPDE (header->datadir.pe_exception_table);
711         SWAPPDE (header->datadir.pe_certificate_table);
712         SWAPPDE (header->datadir.pe_reloc_table);
713         SWAPPDE (header->datadir.pe_debug);
714         SWAPPDE (header->datadir.pe_copyright);
715         SWAPPDE (header->datadir.pe_global_ptr);
716         SWAPPDE (header->datadir.pe_tls_table);
717         SWAPPDE (header->datadir.pe_load_config_table);
718         SWAPPDE (header->datadir.pe_bound_import);
719         SWAPPDE (header->datadir.pe_iat);
720         SWAPPDE (header->datadir.pe_delay_import_desc);
721         SWAPPDE (header->datadir.pe_cli_header);
722         SWAPPDE (header->datadir.pe_reserved);
723
724 #undef SWAP32
725 #undef SWAP16
726 #undef SWAPPDE
727 #endif
728
729         if (header->coff.coff_machine != 0x14c)
730                 goto invalid_image;
731
732         if (header->coff.coff_opt_header_size != (sizeof (MonoDotNetHeader) - sizeof (MonoCOFFHeader) - 4))
733                 goto invalid_image;
734
735         if (header->pesig[0] != 'P' || header->pesig[1] != 'E' || header->pe.pe_magic != 0x10B)
736                 goto invalid_image;
737
738 #if 0
739         /*
740          * The spec says that this field should contain 6.0, but Visual Studio includes a new compiler,
741          * which produces binaries with 7.0.  From Sergey:
742          *
743          * The reason is that MSVC7 uses traditional compile/link
744          * sequence for CIL executables, and VS.NET (and Framework
745          * SDK) includes linker version 7, that puts 7.0 in this
746          * field.  That's why it's currently not possible to load VC
747          * binaries with Mono.  This field is pretty much meaningless
748          * anyway (what linker?).
749          */
750         if (header->pe.pe_major != 6 || header->pe.pe_minor != 0)
751                 goto invalid_image;
752 #endif
753
754         /*
755          * FIXME: byte swap all addresses here for header.
756          */
757         
758         if (!load_section_tables (image, iinfo, offset))
759                 goto invalid_image;
760         
761         /* Load the CLI header */
762         if (!load_cli_header (image, iinfo))
763                 goto invalid_image;
764
765         if (!load_metadata (image, iinfo))
766                 goto invalid_image;
767
768         load_class_names (image);
769
770         /* modules don't have an assembly table row */
771         if (image->tables [MONO_TABLE_ASSEMBLY].rows)
772                 image->assembly_name = mono_metadata_string_heap (image, 
773                         mono_metadata_decode_row_col (&image->tables [MONO_TABLE_ASSEMBLY],
774                                         0, MONO_ASSEMBLY_NAME));
775
776         image->module_name = mono_metadata_string_heap (image, 
777                         mono_metadata_decode_row_col (&image->tables [MONO_TABLE_MODULE],
778                                         0, MONO_MODULE_NAME));
779
780         load_modules (image, status);
781
782         if (status)
783                 *status = MONO_IMAGE_OK;
784
785         image->ref_count=1;
786
787         return image;
788
789 invalid_image:
790         mono_image_close (image);
791                 return NULL;
792 }
793
794 static MonoImage *
795 do_mono_image_open (const char *fname, MonoImageOpenStatus *status)
796 {
797         MonoCLIImageInfo *iinfo;
798         MonoImage *image;
799         FILE *filed;
800
801         if ((filed = fopen (fname, "rb")) == NULL){
802                 if (status)
803                         *status = MONO_IMAGE_ERROR_ERRNO;
804                 return NULL;
805         }
806
807         image = g_new0 (MonoImage, 1);
808         image->ref_count = 1;
809         image->f = filed;
810         iinfo = g_new0 (MonoCLIImageInfo, 1);
811         image->image_info = iinfo;
812         image->name = canonicalize_path (fname);
813
814         return do_mono_image_load (image, status);
815 }
816
817 MonoImage *
818 mono_image_loaded (const char *name)
819 {
820         MonoImage *res;
821         
822         EnterCriticalSection (&images_mutex);
823         res = g_hash_table_lookup (loaded_images_hash, name);
824         LeaveCriticalSection (&images_mutex);
825         return res;
826 }
827
828 MonoImage *
829 mono_image_loaded_by_guid (const char *guid)
830 {
831         MonoImage *res;
832
833         EnterCriticalSection (&images_mutex);
834         res = g_hash_table_lookup (loaded_images_guid_hash, guid);
835         LeaveCriticalSection (&images_mutex);
836         return res;
837 }
838
839 MonoImage *
840 mono_image_open_from_data (char *data, guint32 data_len, gboolean need_copy, MonoImageOpenStatus *status)
841 {
842         MonoCLIImageInfo *iinfo;
843         MonoImage *image;
844         char *datac;
845
846         if (!data || !data_len) {
847                 if (status)
848                         *status = MONO_IMAGE_IMAGE_INVALID;
849                 return NULL;
850         }
851         datac = data;
852         if (need_copy) {
853                 datac = g_try_malloc (data_len);
854                 if (!datac) {
855                         if (status)
856                                 *status = MONO_IMAGE_ERROR_ERRNO;
857                         return NULL;
858                 }
859                 memcpy (datac, data, data_len);
860         }
861
862         image = g_new0 (MonoImage, 1);
863         image->ref_count = 1;
864         image->raw_data = datac;
865         image->raw_data_len = data_len;
866         image->raw_data_allocated = need_copy;
867         image->name = g_strdup_printf ("data-%p", datac);
868         iinfo = g_new0 (MonoCLIImageInfo, 1);
869         image->image_info = iinfo;
870
871         return do_mono_image_load (image, status);
872 }
873
874 /**
875  * mono_image_open:
876  * @fname: filename that points to the module we want to open
877  * @status: An error condition is returned in this field
878  *
879  * Retuns: An open image of type %MonoImage or NULL on error.
880  * if NULL, then check the value of @status for details on the error
881  */
882 MonoImage *
883 mono_image_open (const char *fname, MonoImageOpenStatus *status)
884 {
885         MonoImage *image, *image2;
886         char *absfname;
887         
888         g_return_val_if_fail (fname != NULL, NULL);
889         
890         absfname = canonicalize_path (fname);
891
892         /*
893          * The easiest solution would be to do all the loading inside the mutex,
894          * but that would lead to scalability problems. So we let the loading
895          * happen outside the mutex, and if multiple threads happen to load
896          * the same image, we discard all but the first copy.
897          */
898         EnterCriticalSection (&images_mutex);
899         image = g_hash_table_lookup (loaded_images_hash, absfname);
900         g_free (absfname);
901         
902         if (image){
903                 image->ref_count++;
904                 LeaveCriticalSection (&images_mutex);
905                 return image;
906         }
907         LeaveCriticalSection (&images_mutex);
908
909         image = do_mono_image_open (fname, status);
910         if (image == NULL)
911                 return NULL;
912
913         EnterCriticalSection (&images_mutex);
914         image2 = g_hash_table_lookup (loaded_images_hash, image->name);
915
916         if (image2) {
917                 /* Somebody else beat us to it */
918                 image2->ref_count ++;
919                 LeaveCriticalSection (&images_mutex);
920                 mono_image_close (image);
921                 return image2;
922         }
923         g_hash_table_insert (loaded_images_hash, image->name, image);
924         if (image->assembly_name && (g_hash_table_lookup (loaded_images_hash, image->assembly_name) == NULL))
925                 g_hash_table_insert (loaded_images_hash, (char *) image->assembly_name, image); 
926         g_hash_table_insert (loaded_images_guid_hash, image->guid, image);
927         LeaveCriticalSection (&images_mutex);
928
929         return image;
930 }
931
932 static void
933 free_hash_table (gpointer key, gpointer val, gpointer user_data)
934 {
935         g_hash_table_destroy ((GHashTable*)val);
936 }
937
938 static void
939 free_mr_signatures (gpointer key, gpointer val, gpointer user_data)
940 {
941         mono_metadata_free_method_signature ((MonoMethodSignature*)val);
942 }
943
944 static void
945 free_remoting_wrappers (gpointer key, gpointer val, gpointer user_data)
946 {
947         g_free (val);
948 }
949
950 /**
951  * mono_image_addref:
952  * @image: The image file we wish to add a reference to
953  *
954  *  Increases the reference count of an image.
955  */
956 void
957 mono_image_addref (MonoImage *image)
958 {
959         InterlockedIncrement (&image->ref_count);
960 }       
961
962 /**
963  * mono_image_close:
964  * @image: The image file we wish to close
965  *
966  * Closes an image file, deallocates all memory consumed and
967  * unmaps all possible sections of the file
968  */
969 void
970 mono_image_close (MonoImage *image)
971 {
972         MonoImage *image2;
973
974         g_return_if_fail (image != NULL);
975
976         EnterCriticalSection (&images_mutex);
977         if (--image->ref_count) {
978                 LeaveCriticalSection (&images_mutex);
979                 return;
980         }
981         image2 = g_hash_table_lookup (loaded_images_hash, image->name);
982         if (image == image2) {
983                 /* This is not true if we are called from mono_image_open () */
984                 g_hash_table_remove (loaded_images_hash, image->name);
985                 g_hash_table_remove (loaded_images_guid_hash, image->guid);
986                 /* Multiple images might have the same guid */
987                 build_guid_table ();
988         }
989         if (image->assembly_name && (g_hash_table_lookup (loaded_images_hash, image->assembly_name) == image))
990                 g_hash_table_remove (loaded_images_hash, (char *) image->assembly_name);        
991         LeaveCriticalSection (&images_mutex);
992
993         if (image->f)
994                 fclose (image->f);
995         if (image->raw_data_allocated) {
996                 /* image->raw_metadata and cli_sections might lie inside image->raw_data */
997                 MonoCLIImageInfo *ii = image->image_info;
998                 int i;
999
1000                 if ((image->raw_metadata > image->raw_data) &&
1001                         (image->raw_metadata <= (image->raw_data + image->raw_data_len)))
1002                         image->raw_metadata = NULL;
1003
1004                 for (i = 0; i < ii->cli_section_count; i++)
1005                         if (((char*)(ii->cli_sections [i]) > image->raw_data) &&
1006                                 ((char*)(ii->cli_sections [i]) <= ((char*)image->raw_data + image->raw_data_len)))
1007                                 ii->cli_sections [i] = NULL;
1008
1009                 g_free (image->raw_data);
1010         }
1011         g_free (image->name);
1012         g_free (image->guid);
1013         g_free (image->files);
1014
1015         g_hash_table_destroy (image->method_cache);
1016         g_hash_table_destroy (image->class_cache);
1017         g_hash_table_destroy (image->field_cache);
1018         g_hash_table_destroy (image->array_cache);
1019         g_hash_table_foreach (image->name_cache, free_hash_table, NULL);
1020         g_hash_table_destroy (image->name_cache);
1021         g_hash_table_destroy (image->native_wrapper_cache);
1022         g_hash_table_destroy (image->managed_wrapper_cache);
1023         g_hash_table_destroy (image->delegate_begin_invoke_cache);
1024         g_hash_table_destroy (image->delegate_end_invoke_cache);
1025         g_hash_table_destroy (image->delegate_invoke_cache);
1026         g_hash_table_foreach (image->remoting_invoke_cache, free_remoting_wrappers, NULL);
1027         g_hash_table_destroy (image->remoting_invoke_cache);
1028         g_hash_table_destroy (image->runtime_invoke_cache);
1029         g_hash_table_destroy (image->typespec_cache);
1030         g_hash_table_foreach (image->memberref_signatures, free_mr_signatures, NULL);
1031         g_hash_table_destroy (image->memberref_signatures);
1032         g_hash_table_foreach (image->helper_signatures, free_mr_signatures, NULL);
1033         g_hash_table_destroy (image->helper_signatures);
1034         
1035         if (image->raw_metadata != NULL)
1036                 mono_raw_buffer_free (image->raw_metadata);
1037         
1038         if (image->image_info){
1039                 MonoCLIImageInfo *ii = image->image_info;
1040                 int i;
1041
1042                 for (i = 0; i < ii->cli_section_count; i++){
1043                         if (!ii->cli_sections [i])
1044                                 continue;
1045                         mono_raw_buffer_free (ii->cli_sections [i]);
1046                 }
1047                 if (ii->cli_section_tables)
1048                         g_free (ii->cli_section_tables);
1049                 if (ii->cli_sections)
1050                         g_free (ii->cli_sections);
1051                 g_free (image->image_info);
1052         }
1053
1054         if (!image->dynamic)
1055                 /* Dynamic images are GC_MALLOCed */
1056                 g_free (image);
1057 }
1058
1059 /** 
1060  * mono_image_strerror:
1061  * @status: an code indicating the result from a recent operation
1062  *
1063  * Returns: a string describing the error
1064  */
1065 const char *
1066 mono_image_strerror (MonoImageOpenStatus status)
1067 {
1068         switch (status){
1069         case MONO_IMAGE_OK:
1070                 return "success";
1071         case MONO_IMAGE_ERROR_ERRNO:
1072                 return strerror (errno);
1073         case MONO_IMAGE_IMAGE_INVALID:
1074                 return "File does not contain a valid CIL image";
1075         case MONO_IMAGE_MISSING_ASSEMBLYREF:
1076                 return "An assembly was referenced, but could not be found";
1077         }
1078         return "Internal error";
1079 }
1080
1081 static gpointer
1082 mono_image_walk_resource_tree (MonoCLIImageInfo *info, guint32 res_id,
1083                                guint32 lang_id, gunichar2 *name,
1084                                MonoPEResourceDirEntry *entry,
1085                                MonoPEResourceDir *root, guint32 level)
1086 {
1087         gboolean is_string=entry->name_is_string;
1088
1089         /* Level 0 holds a directory entry for each type of resource
1090          * (identified by ID or name).
1091          *
1092          * Level 1 holds a directory entry for each named resource
1093          * item, and each "anonymous" item of a particular type of
1094          * resource.
1095          *
1096          * Level 2 holds a directory entry for each language pointing to
1097          * the actual data.
1098          */
1099
1100         if(level==0) {
1101                 if((is_string==FALSE && entry->name_offset!=res_id) ||
1102                    (is_string==TRUE)) {
1103                         return(NULL);
1104                 }
1105         } else if (level==1) {
1106 #if 0
1107                 if(name!=NULL &&
1108                    is_string==TRUE && name!=lookup (entry->name_offset)) {
1109                         return(NULL);
1110                 }
1111 #endif
1112         } else if (level==2) {
1113                 if((is_string==FALSE && entry->name_offset!=lang_id) ||
1114                    (is_string==TRUE)) {
1115                         return(NULL);
1116                 }
1117         } else {
1118                 g_assert_not_reached ();
1119         }
1120
1121         if(entry->is_dir==TRUE) {
1122                 MonoPEResourceDir *res_dir=(MonoPEResourceDir *)(((char *)root)+entry->dir_offset);
1123                 MonoPEResourceDirEntry *sub_entries=(MonoPEResourceDirEntry *)(res_dir+1);
1124                 guint32 entries, i;
1125                 
1126                 entries=res_dir->res_named_entries + res_dir->res_id_entries;
1127
1128                 for(i=0; i<entries; i++) {
1129                         MonoPEResourceDirEntry *sub_entry=&sub_entries[i];
1130                         gpointer ret;
1131                         
1132                         ret=mono_image_walk_resource_tree (info, res_id,
1133                                                            lang_id, name,
1134                                                            sub_entry, root,
1135                                                            level+1);
1136                         if(ret!=NULL) {
1137                                 return(ret);
1138                         }
1139                 }
1140
1141                 return(NULL);
1142         } else {
1143                 MonoPEResourceDataEntry *data_entry=(MonoPEResourceDataEntry *)((char *)(root)+entry->dir_offset);
1144                 
1145                 return(data_entry);
1146         }
1147 }
1148
1149 gpointer
1150 mono_image_lookup_resource (MonoImage *image, guint32 res_id, guint32 lang_id, gunichar2 *name)
1151 {
1152         MonoCLIImageInfo *info;
1153         MonoDotNetHeader *header;
1154         MonoPEDatadir *datadir;
1155         MonoPEDirEntry *rsrc;
1156         MonoPEResourceDir *resource_dir;
1157         MonoPEResourceDirEntry *res_entries;
1158         guint32 entries, i;
1159
1160         if(image==NULL) {
1161                 return(NULL);
1162         }
1163
1164         info=image->image_info;
1165         if(info==NULL) {
1166                 return(NULL);
1167         }
1168
1169         header=&info->cli_header;
1170         if(header==NULL) {
1171                 return(NULL);
1172         }
1173
1174         datadir=&header->datadir;
1175         if(datadir==NULL) {
1176                 return(NULL);
1177         }
1178
1179         rsrc=&datadir->pe_resource_table;
1180         if(rsrc==NULL) {
1181                 return(NULL);
1182         }
1183
1184         resource_dir=(MonoPEResourceDir *)mono_image_rva_map (image, rsrc->rva);
1185         if(resource_dir==NULL) {
1186                 return(NULL);
1187         }
1188         
1189         entries=resource_dir->res_named_entries + resource_dir->res_id_entries;
1190         res_entries=(MonoPEResourceDirEntry *)(resource_dir+1);
1191         
1192         for(i=0; i<entries; i++) {
1193                 MonoPEResourceDirEntry *entry=&res_entries[i];
1194                 gpointer ret;
1195                 
1196                 ret=mono_image_walk_resource_tree (info, res_id, lang_id,
1197                                                    name, entry, resource_dir,
1198                                                    0);
1199                 if(ret!=NULL) {
1200                         return(ret);
1201                 }
1202         }
1203
1204         return(NULL);
1205 }
1206
1207 guint32
1208 mono_image_get_entry_point (MonoImage *image)
1209 {
1210         return ((MonoCLIImageInfo*)image->image_info)->cli_cli_header.ch_entry_point;
1211 }
1212
1213 const char*
1214 mono_image_get_resource (MonoImage *image, guint32 offset, guint32 *size)
1215 {
1216         MonoCLIImageInfo *iinfo = image->image_info;
1217         MonoCLIHeader *ch = &iinfo->cli_cli_header;
1218         const char* data;
1219
1220         if (!ch->ch_resources.rva || offset + 4 > ch->ch_resources.size)
1221                 return NULL;
1222         
1223         data = mono_image_rva_map (image, ch->ch_resources.rva);
1224         if (!data)
1225                 return NULL;
1226         data += offset;
1227         if (size)
1228                 *size = read32 (data);
1229         data += 4;
1230         return data;
1231 }
1232
1233 MonoImage*
1234 mono_image_load_file_for_image (MonoImage *image, int fileidx)
1235 {
1236         char *base_dir, *name;
1237         MonoImage *res;
1238         MonoTableInfo  *t = &image->tables [MONO_TABLE_FILE];
1239         const char *fname;
1240         guint32 fname_id;
1241
1242         if (fileidx < 1 || fileidx > t->rows)
1243                 return NULL;
1244
1245         if (image->files && image->files [fileidx - 1])
1246                 return image->files [fileidx - 1];
1247
1248         if (!image->files)
1249                 image->files = g_new0 (MonoImage*, t->rows);
1250
1251         fname_id = mono_metadata_decode_row_col (t, fileidx - 1, MONO_FILE_NAME);
1252         fname = mono_metadata_string_heap (image, fname_id);
1253         base_dir = g_path_get_dirname (image->name);
1254         name = g_build_filename (base_dir, fname, NULL);
1255         res = mono_image_open (name, NULL);
1256         if (res) {
1257                 int i;
1258                 /* g_print ("loaded file %s from %s (%p)\n", name, image->name, image->assembly); */
1259                 res->assembly = image->assembly;
1260                 for (i = 0; i < res->module_count; ++i) {
1261                         if (res->modules [i] && !res->modules [i]->assembly)
1262                                 res->modules [i]->assembly = image->assembly;
1263                 }
1264
1265                 image->files [fileidx - 1] = res;
1266         }
1267         g_free (name);
1268         g_free (base_dir);
1269         return res;
1270 }
1271
1272 const char*
1273 mono_image_get_strong_name (MonoImage *image, guint32 *size)
1274 {
1275         MonoCLIImageInfo *iinfo = image->image_info;
1276         MonoPEDirEntry *de = &iinfo->cli_cli_header.ch_strong_name;
1277         const char* data;
1278
1279         if (!de->size || !de->rva)
1280                 return NULL;
1281         data = mono_image_rva_map (image, de->rva);
1282         if (!data)
1283                 return NULL;
1284         if (size)
1285                 *size = de->size;
1286         return data;
1287 }
1288
1289 guint32
1290 mono_image_strong_name_position (MonoImage *image, guint32 *size)
1291 {
1292         MonoCLIImageInfo *iinfo = image->image_info;
1293         MonoPEDirEntry *de = &iinfo->cli_cli_header.ch_strong_name;
1294         const int top = iinfo->cli_section_count;
1295         MonoSectionTable *tables = iinfo->cli_section_tables;
1296         int i;
1297         guint32 addr = de->rva;
1298         
1299         if (size)
1300                 *size = de->size;
1301         if (!de->size || !de->rva)
1302                 return 0;
1303         for (i = 0; i < top; i++){
1304                 if ((addr >= tables->st_virtual_address) &&
1305                     (addr < tables->st_virtual_address + tables->st_raw_data_size)){
1306                         return tables->st_raw_data_ptr +
1307                                 (addr - tables->st_virtual_address);
1308                 }
1309                 tables++;
1310         }
1311
1312         return 0;
1313 }
1314
1315 const char*
1316 mono_image_get_public_key (MonoImage *image, guint32 *size)
1317 {
1318         const char *pubkey;
1319         guint32 len, tok;
1320         if (image->tables [MONO_TABLE_ASSEMBLY].rows != 1)
1321                 return NULL;
1322         tok = mono_metadata_decode_row_col (&image->tables [MONO_TABLE_ASSEMBLY], 0, MONO_ASSEMBLY_PUBLIC_KEY);
1323         if (!tok)
1324                 return NULL;
1325         pubkey = mono_metadata_blob_heap (image, tok);
1326         len = mono_metadata_decode_blob_size (pubkey, &pubkey);
1327         if (size)
1328                 *size = len;
1329         return pubkey;
1330 }
1331
1332 const char*
1333 mono_image_get_name (MonoImage *image)
1334 {
1335         return image->assembly_name;
1336 }
1337
1338 const char*
1339 mono_image_get_filename (MonoImage *image)
1340 {
1341         return image->name;
1342 }
1343
1344 const MonoTableInfo*
1345 mono_image_get_table_info (MonoImage *image, int table_id)
1346 {
1347         if (table_id < 0 || table_id >= 64)
1348                 return NULL;
1349         return &image->tables [table_id];
1350 }
1351
1352 int
1353 mono_image_get_table_rows (MonoImage *image, int table_id)
1354 {
1355         if (table_id < 0 || table_id >= 64)
1356                 return 0;
1357         return image->tables [table_id].rows;
1358 }
1359
1360 int
1361 mono_table_info_get_rows (const MonoTableInfo *table)
1362 {
1363         return table->rows;
1364 }
1365
1366 MonoAssembly* 
1367 mono_image_get_assembly (MonoImage *image)
1368 {
1369         return image->assembly;
1370 }
1371
1372 gboolean
1373 mono_image_is_dynamic (MonoImage *image)
1374 {
1375         return image->dynamic;
1376 }
1377
1378 gboolean
1379 mono_image_has_authenticode_entry (MonoImage *image)
1380 {
1381         MonoCLIImageInfo *iinfo = image->image_info;
1382         MonoDotNetHeader *header = &iinfo->cli_header;
1383         MonoPEDirEntry *de = &header->datadir.pe_certificate_table;
1384         // the Authenticode "pre" (non ASN.1) header is 8 bytes long
1385         return ((de->rva != 0) && (de->size > 8));
1386 }