Commit
[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         image->generic_inst_cache =
616                 g_hash_table_new ((GHashFunc)mono_metadata_generic_inst_hash,
617                                   (GCompareFunc)mono_metadata_generic_inst_equal);
618 }
619
620 static MonoImage *
621 do_mono_image_load (MonoImage *image, MonoImageOpenStatus *status)
622 {
623         MonoCLIImageInfo *iinfo;
624         MonoDotNetHeader *header;
625         MonoMSDOSHeader msdos;
626         int n;
627         guint32 offset = 0;
628
629         mono_image_init (image);
630
631         iinfo = image->image_info;
632         header = &iinfo->cli_header;
633                 
634         if (status)
635                 *status = MONO_IMAGE_IMAGE_INVALID;
636
637         if (!image->f) {
638                 if (offset + sizeof (msdos) > image->raw_data_len)
639                         goto invalid_image;
640                 memcpy (&msdos, image->raw_data + offset, sizeof (msdos));
641         } else {
642                 if (fread (&msdos, sizeof (msdos), 1, image->f) != 1)
643                         goto invalid_image;
644         }
645         
646         if (!(msdos.msdos_sig [0] == 'M' && msdos.msdos_sig [1] == 'Z'))
647                 goto invalid_image;
648         
649         msdos.pe_offset = GUINT32_FROM_LE (msdos.pe_offset);
650
651         if (msdos.pe_offset != sizeof (msdos)) {
652                 if (image->f)
653                         fseek (image->f, msdos.pe_offset, SEEK_SET);
654         }
655         offset = msdos.pe_offset;
656
657         if (!image->f) {
658                 if (offset + sizeof (MonoDotNetHeader) > image->raw_data_len)
659                         goto invalid_image;
660                 memcpy (header, image->raw_data + offset, sizeof (MonoDotNetHeader));
661                 offset += sizeof (MonoDotNetHeader);
662         } else {
663                 if ((n = fread (header, sizeof (MonoDotNetHeader), 1, image->f)) != 1)
664                         goto invalid_image;
665         }
666
667 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
668 #define SWAP32(x) (x) = GUINT32_FROM_LE ((x))
669 #define SWAP16(x) (x) = GUINT16_FROM_LE ((x))
670 #define SWAPPDE(x) do { (x).rva = GUINT32_FROM_LE ((x).rva); (x).size = GUINT32_FROM_LE ((x).size);} while (0)
671         SWAP32 (header->coff.coff_time);
672         SWAP32 (header->coff.coff_symptr);
673         SWAP32 (header->coff.coff_symcount);
674         SWAP16 (header->coff.coff_machine);
675         SWAP16 (header->coff.coff_sections);
676         SWAP16 (header->coff.coff_opt_header_size);
677         SWAP16 (header->coff.coff_attributes);
678         /* MonoPEHeader */
679         SWAP32 (header->pe.pe_code_size);
680         SWAP32 (header->pe.pe_data_size);
681         SWAP32 (header->pe.pe_uninit_data_size);
682         SWAP32 (header->pe.pe_rva_entry_point);
683         SWAP32 (header->pe.pe_rva_code_base);
684         SWAP32 (header->pe.pe_rva_data_base);
685         SWAP16 (header->pe.pe_magic);
686
687         /* MonoPEHeaderNT: not used yet */
688         SWAP32  (header->nt.pe_image_base);     /* must be 0x400000 */
689         SWAP32  (header->nt.pe_section_align);       /* must be 8192 */
690         SWAP32  (header->nt.pe_file_alignment);      /* must be 512 or 4096 */
691         SWAP16  (header->nt.pe_os_major);            /* must be 4 */
692         SWAP16  (header->nt.pe_os_minor);            /* must be 0 */
693         SWAP16  (header->nt.pe_user_major);
694         SWAP16  (header->nt.pe_user_minor);
695         SWAP16  (header->nt.pe_subsys_major);
696         SWAP16  (header->nt.pe_subsys_minor);
697         SWAP32  (header->nt.pe_reserved_1);
698         SWAP32  (header->nt.pe_image_size);
699         SWAP32  (header->nt.pe_header_size);
700         SWAP32  (header->nt.pe_checksum);
701         SWAP16  (header->nt.pe_subsys_required);
702         SWAP16  (header->nt.pe_dll_flags);
703         SWAP32  (header->nt.pe_stack_reserve);
704         SWAP32  (header->nt.pe_stack_commit);
705         SWAP32  (header->nt.pe_heap_reserve);
706         SWAP32  (header->nt.pe_heap_commit);
707         SWAP32  (header->nt.pe_loader_flags);
708         SWAP32  (header->nt.pe_data_dir_count);
709
710         /* MonoDotNetHeader: mostly unused */
711         SWAPPDE (header->datadir.pe_export_table);
712         SWAPPDE (header->datadir.pe_import_table);
713         SWAPPDE (header->datadir.pe_resource_table);
714         SWAPPDE (header->datadir.pe_exception_table);
715         SWAPPDE (header->datadir.pe_certificate_table);
716         SWAPPDE (header->datadir.pe_reloc_table);
717         SWAPPDE (header->datadir.pe_debug);
718         SWAPPDE (header->datadir.pe_copyright);
719         SWAPPDE (header->datadir.pe_global_ptr);
720         SWAPPDE (header->datadir.pe_tls_table);
721         SWAPPDE (header->datadir.pe_load_config_table);
722         SWAPPDE (header->datadir.pe_bound_import);
723         SWAPPDE (header->datadir.pe_iat);
724         SWAPPDE (header->datadir.pe_delay_import_desc);
725         SWAPPDE (header->datadir.pe_cli_header);
726         SWAPPDE (header->datadir.pe_reserved);
727
728 #undef SWAP32
729 #undef SWAP16
730 #undef SWAPPDE
731 #endif
732
733         if (header->coff.coff_machine != 0x14c)
734                 goto invalid_image;
735
736         if (header->coff.coff_opt_header_size != (sizeof (MonoDotNetHeader) - sizeof (MonoCOFFHeader) - 4))
737                 goto invalid_image;
738
739         if (header->pesig[0] != 'P' || header->pesig[1] != 'E' || header->pe.pe_magic != 0x10B)
740                 goto invalid_image;
741
742 #if 0
743         /*
744          * The spec says that this field should contain 6.0, but Visual Studio includes a new compiler,
745          * which produces binaries with 7.0.  From Sergey:
746          *
747          * The reason is that MSVC7 uses traditional compile/link
748          * sequence for CIL executables, and VS.NET (and Framework
749          * SDK) includes linker version 7, that puts 7.0 in this
750          * field.  That's why it's currently not possible to load VC
751          * binaries with Mono.  This field is pretty much meaningless
752          * anyway (what linker?).
753          */
754         if (header->pe.pe_major != 6 || header->pe.pe_minor != 0)
755                 goto invalid_image;
756 #endif
757
758         /*
759          * FIXME: byte swap all addresses here for header.
760          */
761         
762         if (!load_section_tables (image, iinfo, offset))
763                 goto invalid_image;
764         
765         /* Load the CLI header */
766         if (!load_cli_header (image, iinfo))
767                 goto invalid_image;
768
769         if (!load_metadata (image, iinfo))
770                 goto invalid_image;
771
772         load_class_names (image);
773
774         /* modules don't have an assembly table row */
775         if (image->tables [MONO_TABLE_ASSEMBLY].rows)
776                 image->assembly_name = mono_metadata_string_heap (image, 
777                         mono_metadata_decode_row_col (&image->tables [MONO_TABLE_ASSEMBLY],
778                                         0, MONO_ASSEMBLY_NAME));
779
780         image->module_name = mono_metadata_string_heap (image, 
781                         mono_metadata_decode_row_col (&image->tables [MONO_TABLE_MODULE],
782                                         0, MONO_MODULE_NAME));
783
784         load_modules (image, status);
785
786         if (status)
787                 *status = MONO_IMAGE_OK;
788
789         image->ref_count=1;
790
791         return image;
792
793 invalid_image:
794         mono_image_close (image);
795                 return NULL;
796 }
797
798 static MonoImage *
799 do_mono_image_open (const char *fname, MonoImageOpenStatus *status)
800 {
801         MonoCLIImageInfo *iinfo;
802         MonoImage *image;
803         FILE *filed;
804
805         if ((filed = fopen (fname, "rb")) == NULL){
806                 if (status)
807                         *status = MONO_IMAGE_ERROR_ERRNO;
808                 return NULL;
809         }
810
811         image = g_new0 (MonoImage, 1);
812         image->ref_count = 1;
813         image->f = filed;
814         iinfo = g_new0 (MonoCLIImageInfo, 1);
815         image->image_info = iinfo;
816         image->name = canonicalize_path (fname);
817
818         return do_mono_image_load (image, status);
819 }
820
821 MonoImage *
822 mono_image_loaded (const char *name)
823 {
824         MonoImage *res;
825         
826         EnterCriticalSection (&images_mutex);
827         res = g_hash_table_lookup (loaded_images_hash, name);
828         LeaveCriticalSection (&images_mutex);
829         return res;
830 }
831
832 MonoImage *
833 mono_image_loaded_by_guid (const char *guid)
834 {
835         MonoImage *res;
836
837         EnterCriticalSection (&images_mutex);
838         res = g_hash_table_lookup (loaded_images_guid_hash, guid);
839         LeaveCriticalSection (&images_mutex);
840         return res;
841 }
842
843 MonoImage *
844 mono_image_open_from_data (char *data, guint32 data_len, gboolean need_copy, MonoImageOpenStatus *status)
845 {
846         MonoCLIImageInfo *iinfo;
847         MonoImage *image;
848         char *datac;
849
850         if (!data || !data_len) {
851                 if (status)
852                         *status = MONO_IMAGE_IMAGE_INVALID;
853                 return NULL;
854         }
855         datac = data;
856         if (need_copy) {
857                 datac = g_try_malloc (data_len);
858                 if (!datac) {
859                         if (status)
860                                 *status = MONO_IMAGE_ERROR_ERRNO;
861                         return NULL;
862                 }
863                 memcpy (datac, data, data_len);
864         }
865
866         image = g_new0 (MonoImage, 1);
867         image->ref_count = 1;
868         image->raw_data = datac;
869         image->raw_data_len = data_len;
870         image->raw_data_allocated = need_copy;
871         image->name = g_strdup_printf ("data-%p", datac);
872         iinfo = g_new0 (MonoCLIImageInfo, 1);
873         image->image_info = iinfo;
874
875         return do_mono_image_load (image, status);
876 }
877
878 /**
879  * mono_image_open:
880  * @fname: filename that points to the module we want to open
881  * @status: An error condition is returned in this field
882  *
883  * Retuns: An open image of type %MonoImage or NULL on error.
884  * if NULL, then check the value of @status for details on the error
885  */
886 MonoImage *
887 mono_image_open (const char *fname, MonoImageOpenStatus *status)
888 {
889         MonoImage *image, *image2;
890         char *absfname;
891         
892         g_return_val_if_fail (fname != NULL, NULL);
893         
894         absfname = canonicalize_path (fname);
895
896         /*
897          * The easiest solution would be to do all the loading inside the mutex,
898          * but that would lead to scalability problems. So we let the loading
899          * happen outside the mutex, and if multiple threads happen to load
900          * the same image, we discard all but the first copy.
901          */
902         EnterCriticalSection (&images_mutex);
903         image = g_hash_table_lookup (loaded_images_hash, absfname);
904         g_free (absfname);
905         
906         if (image){
907                 image->ref_count++;
908                 LeaveCriticalSection (&images_mutex);
909                 return image;
910         }
911         LeaveCriticalSection (&images_mutex);
912
913         image = do_mono_image_open (fname, status);
914         if (image == NULL)
915                 return NULL;
916
917         EnterCriticalSection (&images_mutex);
918         image2 = g_hash_table_lookup (loaded_images_hash, image->name);
919
920         if (image2) {
921                 /* Somebody else beat us to it */
922                 image2->ref_count ++;
923                 LeaveCriticalSection (&images_mutex);
924                 mono_image_close (image);
925                 return image2;
926         }
927         g_hash_table_insert (loaded_images_hash, image->name, image);
928         if (image->assembly_name && (g_hash_table_lookup (loaded_images_hash, image->assembly_name) == NULL))
929                 g_hash_table_insert (loaded_images_hash, (char *) image->assembly_name, image); 
930         g_hash_table_insert (loaded_images_guid_hash, image->guid, image);
931         LeaveCriticalSection (&images_mutex);
932
933         return image;
934 }
935
936 static void
937 free_hash_table (gpointer key, gpointer val, gpointer user_data)
938 {
939         g_hash_table_destroy ((GHashTable*)val);
940 }
941
942 static void
943 free_mr_signatures (gpointer key, gpointer val, gpointer user_data)
944 {
945         mono_metadata_free_method_signature ((MonoMethodSignature*)val);
946 }
947
948 static void
949 free_remoting_wrappers (gpointer key, gpointer val, gpointer user_data)
950 {
951         g_free (val);
952 }
953
954 /**
955  * mono_image_addref:
956  * @image: The image file we wish to add a reference to
957  *
958  *  Increases the reference count of an image.
959  */
960 void
961 mono_image_addref (MonoImage *image)
962 {
963         InterlockedIncrement (&image->ref_count);
964 }       
965
966 /**
967  * mono_image_close:
968  * @image: The image file we wish to close
969  *
970  * Closes an image file, deallocates all memory consumed and
971  * unmaps all possible sections of the file
972  */
973 void
974 mono_image_close (MonoImage *image)
975 {
976         MonoImage *image2;
977
978         g_return_if_fail (image != NULL);
979
980         EnterCriticalSection (&images_mutex);
981         if (--image->ref_count) {
982                 LeaveCriticalSection (&images_mutex);
983                 return;
984         }
985         image2 = g_hash_table_lookup (loaded_images_hash, image->name);
986         if (image == image2) {
987                 /* This is not true if we are called from mono_image_open () */
988                 g_hash_table_remove (loaded_images_hash, image->name);
989                 g_hash_table_remove (loaded_images_guid_hash, image->guid);
990                 /* Multiple images might have the same guid */
991                 build_guid_table ();
992         }
993         if (image->assembly_name && (g_hash_table_lookup (loaded_images_hash, image->assembly_name) == image))
994                 g_hash_table_remove (loaded_images_hash, (char *) image->assembly_name);        
995         LeaveCriticalSection (&images_mutex);
996
997         if (image->f)
998                 fclose (image->f);
999         if (image->raw_data_allocated) {
1000                 /* image->raw_metadata and cli_sections might lie inside image->raw_data */
1001                 MonoCLIImageInfo *ii = image->image_info;
1002                 int i;
1003
1004                 if ((image->raw_metadata > image->raw_data) &&
1005                         (image->raw_metadata <= (image->raw_data + image->raw_data_len)))
1006                         image->raw_metadata = NULL;
1007
1008                 for (i = 0; i < ii->cli_section_count; i++)
1009                         if (((char*)(ii->cli_sections [i]) > image->raw_data) &&
1010                                 ((char*)(ii->cli_sections [i]) <= ((char*)image->raw_data + image->raw_data_len)))
1011                                 ii->cli_sections [i] = NULL;
1012
1013                 g_free (image->raw_data);
1014         }
1015         g_free (image->name);
1016         g_free (image->guid);
1017         g_free (image->files);
1018
1019         g_hash_table_destroy (image->method_cache);
1020         g_hash_table_destroy (image->class_cache);
1021         g_hash_table_destroy (image->field_cache);
1022         g_hash_table_destroy (image->array_cache);
1023         g_hash_table_foreach (image->name_cache, free_hash_table, NULL);
1024         g_hash_table_destroy (image->name_cache);
1025         g_hash_table_destroy (image->native_wrapper_cache);
1026         g_hash_table_destroy (image->managed_wrapper_cache);
1027         g_hash_table_destroy (image->delegate_begin_invoke_cache);
1028         g_hash_table_destroy (image->delegate_end_invoke_cache);
1029         g_hash_table_destroy (image->delegate_invoke_cache);
1030         g_hash_table_foreach (image->remoting_invoke_cache, free_remoting_wrappers, NULL);
1031         g_hash_table_destroy (image->remoting_invoke_cache);
1032         g_hash_table_destroy (image->runtime_invoke_cache);
1033         g_hash_table_destroy (image->typespec_cache);
1034         g_hash_table_destroy (image->generic_inst_cache);
1035         g_hash_table_foreach (image->memberref_signatures, free_mr_signatures, NULL);
1036         g_hash_table_destroy (image->memberref_signatures);
1037         g_hash_table_foreach (image->helper_signatures, free_mr_signatures, NULL);
1038         g_hash_table_destroy (image->helper_signatures);
1039         
1040         if (image->raw_metadata != NULL)
1041                 mono_raw_buffer_free (image->raw_metadata);
1042         
1043         if (image->image_info){
1044                 MonoCLIImageInfo *ii = image->image_info;
1045                 int i;
1046
1047                 for (i = 0; i < ii->cli_section_count; i++){
1048                         if (!ii->cli_sections [i])
1049                                 continue;
1050                         mono_raw_buffer_free (ii->cli_sections [i]);
1051                 }
1052                 if (ii->cli_section_tables)
1053                         g_free (ii->cli_section_tables);
1054                 if (ii->cli_sections)
1055                         g_free (ii->cli_sections);
1056                 g_free (image->image_info);
1057         }
1058
1059         if (!image->dynamic)
1060                 /* Dynamic images are GC_MALLOCed */
1061                 g_free (image);
1062 }
1063
1064 /** 
1065  * mono_image_strerror:
1066  * @status: an code indicating the result from a recent operation
1067  *
1068  * Returns: a string describing the error
1069  */
1070 const char *
1071 mono_image_strerror (MonoImageOpenStatus status)
1072 {
1073         switch (status){
1074         case MONO_IMAGE_OK:
1075                 return "success";
1076         case MONO_IMAGE_ERROR_ERRNO:
1077                 return strerror (errno);
1078         case MONO_IMAGE_IMAGE_INVALID:
1079                 return "File does not contain a valid CIL image";
1080         case MONO_IMAGE_MISSING_ASSEMBLYREF:
1081                 return "An assembly was referenced, but could not be found";
1082         }
1083         return "Internal error";
1084 }
1085
1086 static gpointer
1087 mono_image_walk_resource_tree (MonoCLIImageInfo *info, guint32 res_id,
1088                                guint32 lang_id, gunichar2 *name,
1089                                MonoPEResourceDirEntry *entry,
1090                                MonoPEResourceDir *root, guint32 level)
1091 {
1092         gboolean is_string=entry->name_is_string;
1093
1094         /* Level 0 holds a directory entry for each type of resource
1095          * (identified by ID or name).
1096          *
1097          * Level 1 holds a directory entry for each named resource
1098          * item, and each "anonymous" item of a particular type of
1099          * resource.
1100          *
1101          * Level 2 holds a directory entry for each language pointing to
1102          * the actual data.
1103          */
1104
1105         if(level==0) {
1106                 if((is_string==FALSE && entry->name_offset!=res_id) ||
1107                    (is_string==TRUE)) {
1108                         return(NULL);
1109                 }
1110         } else if (level==1) {
1111 #if 0
1112                 if(name!=NULL &&
1113                    is_string==TRUE && name!=lookup (entry->name_offset)) {
1114                         return(NULL);
1115                 }
1116 #endif
1117         } else if (level==2) {
1118                 if((is_string==FALSE && entry->name_offset!=lang_id) ||
1119                    (is_string==TRUE)) {
1120                         return(NULL);
1121                 }
1122         } else {
1123                 g_assert_not_reached ();
1124         }
1125
1126         if(entry->is_dir==TRUE) {
1127                 MonoPEResourceDir *res_dir=(MonoPEResourceDir *)(((char *)root)+entry->dir_offset);
1128                 MonoPEResourceDirEntry *sub_entries=(MonoPEResourceDirEntry *)(res_dir+1);
1129                 guint32 entries, i;
1130                 
1131                 entries=res_dir->res_named_entries + res_dir->res_id_entries;
1132
1133                 for(i=0; i<entries; i++) {
1134                         MonoPEResourceDirEntry *sub_entry=&sub_entries[i];
1135                         gpointer ret;
1136                         
1137                         ret=mono_image_walk_resource_tree (info, res_id,
1138                                                            lang_id, name,
1139                                                            sub_entry, root,
1140                                                            level+1);
1141                         if(ret!=NULL) {
1142                                 return(ret);
1143                         }
1144                 }
1145
1146                 return(NULL);
1147         } else {
1148                 MonoPEResourceDataEntry *data_entry=(MonoPEResourceDataEntry *)((char *)(root)+entry->dir_offset);
1149                 
1150                 return(data_entry);
1151         }
1152 }
1153
1154 gpointer
1155 mono_image_lookup_resource (MonoImage *image, guint32 res_id, guint32 lang_id, gunichar2 *name)
1156 {
1157         MonoCLIImageInfo *info;
1158         MonoDotNetHeader *header;
1159         MonoPEDatadir *datadir;
1160         MonoPEDirEntry *rsrc;
1161         MonoPEResourceDir *resource_dir;
1162         MonoPEResourceDirEntry *res_entries;
1163         guint32 entries, i;
1164
1165         if(image==NULL) {
1166                 return(NULL);
1167         }
1168
1169         info=image->image_info;
1170         if(info==NULL) {
1171                 return(NULL);
1172         }
1173
1174         header=&info->cli_header;
1175         if(header==NULL) {
1176                 return(NULL);
1177         }
1178
1179         datadir=&header->datadir;
1180         if(datadir==NULL) {
1181                 return(NULL);
1182         }
1183
1184         rsrc=&datadir->pe_resource_table;
1185         if(rsrc==NULL) {
1186                 return(NULL);
1187         }
1188
1189         resource_dir=(MonoPEResourceDir *)mono_image_rva_map (image, rsrc->rva);
1190         if(resource_dir==NULL) {
1191                 return(NULL);
1192         }
1193         
1194         entries=resource_dir->res_named_entries + resource_dir->res_id_entries;
1195         res_entries=(MonoPEResourceDirEntry *)(resource_dir+1);
1196         
1197         for(i=0; i<entries; i++) {
1198                 MonoPEResourceDirEntry *entry=&res_entries[i];
1199                 gpointer ret;
1200                 
1201                 ret=mono_image_walk_resource_tree (info, res_id, lang_id,
1202                                                    name, entry, resource_dir,
1203                                                    0);
1204                 if(ret!=NULL) {
1205                         return(ret);
1206                 }
1207         }
1208
1209         return(NULL);
1210 }
1211
1212 guint32
1213 mono_image_get_entry_point (MonoImage *image)
1214 {
1215         return ((MonoCLIImageInfo*)image->image_info)->cli_cli_header.ch_entry_point;
1216 }
1217
1218 const char*
1219 mono_image_get_resource (MonoImage *image, guint32 offset, guint32 *size)
1220 {
1221         MonoCLIImageInfo *iinfo = image->image_info;
1222         MonoCLIHeader *ch = &iinfo->cli_cli_header;
1223         const char* data;
1224
1225         if (!ch->ch_resources.rva || offset + 4 > ch->ch_resources.size)
1226                 return NULL;
1227         
1228         data = mono_image_rva_map (image, ch->ch_resources.rva);
1229         if (!data)
1230                 return NULL;
1231         data += offset;
1232         if (size)
1233                 *size = read32 (data);
1234         data += 4;
1235         return data;
1236 }
1237
1238 MonoImage*
1239 mono_image_load_file_for_image (MonoImage *image, int fileidx)
1240 {
1241         char *base_dir, *name;
1242         MonoImage *res;
1243         MonoTableInfo  *t = &image->tables [MONO_TABLE_FILE];
1244         const char *fname;
1245         guint32 fname_id;
1246
1247         if (fileidx < 1 || fileidx > t->rows)
1248                 return NULL;
1249
1250         if (image->files && image->files [fileidx - 1])
1251                 return image->files [fileidx - 1];
1252
1253         if (!image->files)
1254                 image->files = g_new0 (MonoImage*, t->rows);
1255
1256         fname_id = mono_metadata_decode_row_col (t, fileidx - 1, MONO_FILE_NAME);
1257         fname = mono_metadata_string_heap (image, fname_id);
1258         base_dir = g_path_get_dirname (image->name);
1259         name = g_build_filename (base_dir, fname, NULL);
1260         res = mono_image_open (name, NULL);
1261         if (res) {
1262                 int i;
1263                 /* g_print ("loaded file %s from %s (%p)\n", name, image->name, image->assembly); */
1264                 res->assembly = image->assembly;
1265                 for (i = 0; i < res->module_count; ++i) {
1266                         if (res->modules [i] && !res->modules [i]->assembly)
1267                                 res->modules [i]->assembly = image->assembly;
1268                 }
1269
1270                 image->files [fileidx - 1] = res;
1271         }
1272         g_free (name);
1273         g_free (base_dir);
1274         return res;
1275 }
1276
1277 const char*
1278 mono_image_get_strong_name (MonoImage *image, guint32 *size)
1279 {
1280         MonoCLIImageInfo *iinfo = image->image_info;
1281         MonoPEDirEntry *de = &iinfo->cli_cli_header.ch_strong_name;
1282         const char* data;
1283
1284         if (!de->size || !de->rva)
1285                 return NULL;
1286         data = mono_image_rva_map (image, de->rva);
1287         if (!data)
1288                 return NULL;
1289         if (size)
1290                 *size = de->size;
1291         return data;
1292 }
1293
1294 guint32
1295 mono_image_strong_name_position (MonoImage *image, guint32 *size)
1296 {
1297         MonoCLIImageInfo *iinfo = image->image_info;
1298         MonoPEDirEntry *de = &iinfo->cli_cli_header.ch_strong_name;
1299         const int top = iinfo->cli_section_count;
1300         MonoSectionTable *tables = iinfo->cli_section_tables;
1301         int i;
1302         guint32 addr = de->rva;
1303         
1304         if (size)
1305                 *size = de->size;
1306         if (!de->size || !de->rva)
1307                 return 0;
1308         for (i = 0; i < top; i++){
1309                 if ((addr >= tables->st_virtual_address) &&
1310                     (addr < tables->st_virtual_address + tables->st_raw_data_size)){
1311                         return tables->st_raw_data_ptr +
1312                                 (addr - tables->st_virtual_address);
1313                 }
1314                 tables++;
1315         }
1316
1317         return 0;
1318 }
1319
1320 const char*
1321 mono_image_get_public_key (MonoImage *image, guint32 *size)
1322 {
1323         const char *pubkey;
1324         guint32 len, tok;
1325         if (image->tables [MONO_TABLE_ASSEMBLY].rows != 1)
1326                 return NULL;
1327         tok = mono_metadata_decode_row_col (&image->tables [MONO_TABLE_ASSEMBLY], 0, MONO_ASSEMBLY_PUBLIC_KEY);
1328         if (!tok)
1329                 return NULL;
1330         pubkey = mono_metadata_blob_heap (image, tok);
1331         len = mono_metadata_decode_blob_size (pubkey, &pubkey);
1332         if (size)
1333                 *size = len;
1334         return pubkey;
1335 }
1336
1337 const char*
1338 mono_image_get_name (MonoImage *image)
1339 {
1340         return image->assembly_name;
1341 }
1342
1343 const char*
1344 mono_image_get_filename (MonoImage *image)
1345 {
1346         return image->name;
1347 }
1348
1349 const MonoTableInfo*
1350 mono_image_get_table_info (MonoImage *image, int table_id)
1351 {
1352         if (table_id < 0 || table_id >= 64)
1353                 return NULL;
1354         return &image->tables [table_id];
1355 }
1356
1357 int
1358 mono_image_get_table_rows (MonoImage *image, int table_id)
1359 {
1360         if (table_id < 0 || table_id >= 64)
1361                 return 0;
1362         return image->tables [table_id].rows;
1363 }
1364
1365 int
1366 mono_table_info_get_rows (const MonoTableInfo *table)
1367 {
1368         return table->rows;
1369 }
1370
1371 MonoAssembly* 
1372 mono_image_get_assembly (MonoImage *image)
1373 {
1374         return image->assembly;
1375 }
1376
1377 gboolean
1378 mono_image_is_dynamic (MonoImage *image)
1379 {
1380         return image->dynamic;
1381 }
1382
1383