Merge pull request #730 from LogosBible/locale-changes
[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  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
10  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
11  *
12  */
13 #include <config.h>
14 #include <stdio.h>
15 #include <glib.h>
16 #include <errno.h>
17 #include <time.h>
18 #include <string.h>
19 #include "image.h"
20 #include "cil-coff.h"
21 #include "mono-endian.h"
22 #include "tabledefs.h"
23 #include "tokentype.h"
24 #include "metadata-internals.h"
25 #include "profiler-private.h"
26 #include "loader.h"
27 #include "marshal.h"
28 #include "coree.h"
29 #include <mono/io-layer/io-layer.h>
30 #include <mono/utils/mono-logger-internal.h>
31 #include <mono/utils/mono-path.h>
32 #include <mono/utils/mono-mmap.h>
33 #include <mono/utils/mono-io-portability.h>
34 #include <mono/utils/atomic.h>
35 #include <mono/metadata/class-internals.h>
36 #include <mono/metadata/assembly.h>
37 #include <mono/metadata/object-internals.h>
38 #include <mono/metadata/security-core-clr.h>
39 #include <mono/metadata/verify-internals.h>
40 #include <mono/metadata/verify.h>
41 #include <sys/types.h>
42 #include <sys/stat.h>
43 #ifdef HAVE_UNISTD_H
44 #include <unistd.h>
45 #endif
46
47 #define INVALID_ADDRESS 0xffffffff
48
49 /*
50  * Keeps track of the various assemblies loaded
51  */
52 static GHashTable *loaded_images_hash;
53 static GHashTable *loaded_images_refonly_hash;
54
55 static gboolean debug_assembly_unload = FALSE;
56
57 #define mono_images_lock() if (mutex_inited) EnterCriticalSection (&images_mutex)
58 #define mono_images_unlock() if (mutex_inited) LeaveCriticalSection (&images_mutex)
59 static gboolean mutex_inited;
60 static CRITICAL_SECTION images_mutex;
61
62 typedef struct ImageUnloadHook ImageUnloadHook;
63 struct ImageUnloadHook {
64         MonoImageUnloadFunc func;
65         gpointer user_data;
66 };
67
68 GSList *image_unload_hooks;
69
70 void
71 mono_install_image_unload_hook (MonoImageUnloadFunc func, gpointer user_data)
72 {
73         ImageUnloadHook *hook;
74         
75         g_return_if_fail (func != NULL);
76
77         hook = g_new0 (ImageUnloadHook, 1);
78         hook->func = func;
79         hook->user_data = user_data;
80         image_unload_hooks = g_slist_prepend (image_unload_hooks, hook);
81 }
82
83 void
84 mono_remove_image_unload_hook (MonoImageUnloadFunc func, gpointer user_data)
85 {
86         GSList *l;
87         ImageUnloadHook *hook;
88
89         for (l = image_unload_hooks; l; l = l->next) {
90                 hook = l->data;
91
92                 if (hook->func == func && hook->user_data == user_data) {
93                         g_free (hook);
94                         image_unload_hooks = g_slist_delete_link (image_unload_hooks, l);
95                         break;
96                 }
97         }
98 }
99
100 static void
101 mono_image_invoke_unload_hook (MonoImage *image)
102 {
103         GSList *l;
104         ImageUnloadHook *hook;
105
106         for (l = image_unload_hooks; l; l = l->next) {
107                 hook = l->data;
108
109                 hook->func (image, hook->user_data);
110         }
111 }
112
113 /* returns offset relative to image->raw_data */
114 guint32
115 mono_cli_rva_image_map (MonoImage *image, guint32 addr)
116 {
117         MonoCLIImageInfo *iinfo = image->image_info;
118         const int top = iinfo->cli_section_count;
119         MonoSectionTable *tables = iinfo->cli_section_tables;
120         int i;
121         
122         for (i = 0; i < top; i++){
123                 if ((addr >= tables->st_virtual_address) &&
124                     (addr < tables->st_virtual_address + tables->st_raw_data_size)){
125 #ifdef HOST_WIN32
126                         if (image->is_module_handle)
127                                 return addr;
128 #endif
129                         return addr - tables->st_virtual_address + tables->st_raw_data_ptr;
130                 }
131                 tables++;
132         }
133         return INVALID_ADDRESS;
134 }
135
136 /**
137  * mono_images_rva_map:
138  * @image: a MonoImage
139  * @addr: relative virtual address (RVA)
140  *
141  * This is a low-level routine used by the runtime to map relative
142  * virtual address (RVA) into their location in memory. 
143  *
144  * Returns: the address in memory for the given RVA, or NULL if the
145  * RVA is not valid for this image. 
146  */
147 char *
148 mono_image_rva_map (MonoImage *image, guint32 addr)
149 {
150         MonoCLIImageInfo *iinfo = image->image_info;
151         const int top = iinfo->cli_section_count;
152         MonoSectionTable *tables = iinfo->cli_section_tables;
153         int i;
154
155 #ifdef HOST_WIN32
156         if (image->is_module_handle) {
157                 if (addr && addr < image->raw_data_len)
158                         return image->raw_data + addr;
159                 else
160                         return NULL;
161         }
162 #endif
163
164         for (i = 0; i < top; i++){
165                 if ((addr >= tables->st_virtual_address) &&
166                     (addr < tables->st_virtual_address + tables->st_raw_data_size)){
167                         if (!iinfo->cli_sections [i]) {
168                                 if (!mono_image_ensure_section_idx (image, i))
169                                         return NULL;
170                         }
171                         return (char*)iinfo->cli_sections [i] +
172                                 (addr - tables->st_virtual_address);
173                 }
174                 tables++;
175         }
176         return NULL;
177 }
178
179 /**
180  * mono_images_init:
181  *
182  *  Initialize the global variables used by this module.
183  */
184 void
185 mono_images_init (void)
186 {
187         InitializeCriticalSection (&images_mutex);
188
189         loaded_images_hash = g_hash_table_new (g_str_hash, g_str_equal);
190         loaded_images_refonly_hash = g_hash_table_new (g_str_hash, g_str_equal);
191
192         debug_assembly_unload = g_getenv ("MONO_DEBUG_ASSEMBLY_UNLOAD") != NULL;
193
194         mutex_inited = TRUE;
195 }
196
197 /**
198  * mono_images_cleanup:
199  *
200  *  Free all resources used by this module.
201  */
202 void
203 mono_images_cleanup (void)
204 {
205         GHashTableIter iter;
206         MonoImage *image;
207
208         DeleteCriticalSection (&images_mutex);
209
210         g_hash_table_iter_init (&iter, loaded_images_hash);
211         while (g_hash_table_iter_next (&iter, NULL, (void**)&image))
212                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Assembly image '%s' still loaded at shutdown.", image->name);
213
214         g_hash_table_destroy (loaded_images_hash);
215         g_hash_table_destroy (loaded_images_refonly_hash);
216
217         mutex_inited = FALSE;
218 }
219
220 /**
221  * mono_image_ensure_section_idx:
222  * @image: The image we are operating on
223  * @section: section number that we will load/map into memory
224  *
225  * This routine makes sure that we have an in-memory copy of
226  * an image section (.text, .rsrc, .data).
227  *
228  * Returns: TRUE on success
229  */
230 int
231 mono_image_ensure_section_idx (MonoImage *image, int section)
232 {
233         MonoCLIImageInfo *iinfo = image->image_info;
234         MonoSectionTable *sect;
235         gboolean writable;
236         
237         g_return_val_if_fail (section < iinfo->cli_section_count, FALSE);
238
239         if (iinfo->cli_sections [section] != NULL)
240                 return TRUE;
241
242         sect = &iinfo->cli_section_tables [section];
243         
244         writable = sect->st_flags & SECT_FLAGS_MEM_WRITE;
245
246         if (sect->st_raw_data_ptr + sect->st_raw_data_size > image->raw_data_len)
247                 return FALSE;
248 #ifdef HOST_WIN32
249         if (image->is_module_handle)
250                 iinfo->cli_sections [section] = image->raw_data + sect->st_virtual_address;
251         else
252 #endif
253         /* FIXME: we ignore the writable flag since we don't patch the binary */
254         iinfo->cli_sections [section] = image->raw_data + sect->st_raw_data_ptr;
255         return TRUE;
256 }
257
258 /**
259  * mono_image_ensure_section:
260  * @image: The image we are operating on
261  * @section: section name that we will load/map into memory
262  *
263  * This routine makes sure that we have an in-memory copy of
264  * an image section (.text, .rsrc, .data).
265  *
266  * Returns: TRUE on success
267  */
268 int
269 mono_image_ensure_section (MonoImage *image, const char *section)
270 {
271         MonoCLIImageInfo *ii = image->image_info;
272         int i;
273         
274         for (i = 0; i < ii->cli_section_count; i++){
275                 if (strncmp (ii->cli_section_tables [i].st_name, section, 8) != 0)
276                         continue;
277                 
278                 return mono_image_ensure_section_idx (image, i);
279         }
280         return FALSE;
281 }
282
283 static int
284 load_section_tables (MonoImage *image, MonoCLIImageInfo *iinfo, guint32 offset)
285 {
286         const int top = iinfo->cli_header.coff.coff_sections;
287         int i;
288
289         iinfo->cli_section_count = top;
290         iinfo->cli_section_tables = g_new0 (MonoSectionTable, top);
291         iinfo->cli_sections = g_new0 (void *, top);
292         
293         for (i = 0; i < top; i++){
294                 MonoSectionTable *t = &iinfo->cli_section_tables [i];
295
296                 if (offset + sizeof (MonoSectionTable) > image->raw_data_len)
297                         return FALSE;
298                 memcpy (t, image->raw_data + offset, sizeof (MonoSectionTable));
299                 offset += sizeof (MonoSectionTable);
300
301 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
302                 t->st_virtual_size = GUINT32_FROM_LE (t->st_virtual_size);
303                 t->st_virtual_address = GUINT32_FROM_LE (t->st_virtual_address);
304                 t->st_raw_data_size = GUINT32_FROM_LE (t->st_raw_data_size);
305                 t->st_raw_data_ptr = GUINT32_FROM_LE (t->st_raw_data_ptr);
306                 t->st_reloc_ptr = GUINT32_FROM_LE (t->st_reloc_ptr);
307                 t->st_lineno_ptr = GUINT32_FROM_LE (t->st_lineno_ptr);
308                 t->st_reloc_count = GUINT16_FROM_LE (t->st_reloc_count);
309                 t->st_line_count = GUINT16_FROM_LE (t->st_line_count);
310                 t->st_flags = GUINT32_FROM_LE (t->st_flags);
311 #endif
312                 /* consistency checks here */
313         }
314
315         return TRUE;
316 }
317
318 static gboolean
319 load_cli_header (MonoImage *image, MonoCLIImageInfo *iinfo)
320 {
321         guint32 offset;
322         
323         offset = mono_cli_rva_image_map (image, iinfo->cli_header.datadir.pe_cli_header.rva);
324         if (offset == INVALID_ADDRESS)
325                 return FALSE;
326
327         if (offset + sizeof (MonoCLIHeader) > image->raw_data_len)
328                 return FALSE;
329         memcpy (&iinfo->cli_cli_header, image->raw_data + offset, sizeof (MonoCLIHeader));
330
331 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
332 #define SWAP32(x) (x) = GUINT32_FROM_LE ((x))
333 #define SWAP16(x) (x) = GUINT16_FROM_LE ((x))
334 #define SWAPPDE(x) do { (x).rva = GUINT32_FROM_LE ((x).rva); (x).size = GUINT32_FROM_LE ((x).size);} while (0)
335         SWAP32 (iinfo->cli_cli_header.ch_size);
336         SWAP32 (iinfo->cli_cli_header.ch_flags);
337         SWAP32 (iinfo->cli_cli_header.ch_entry_point);
338         SWAP16 (iinfo->cli_cli_header.ch_runtime_major);
339         SWAP16 (iinfo->cli_cli_header.ch_runtime_minor);
340         SWAPPDE (iinfo->cli_cli_header.ch_metadata);
341         SWAPPDE (iinfo->cli_cli_header.ch_resources);
342         SWAPPDE (iinfo->cli_cli_header.ch_strong_name);
343         SWAPPDE (iinfo->cli_cli_header.ch_code_manager_table);
344         SWAPPDE (iinfo->cli_cli_header.ch_vtable_fixups);
345         SWAPPDE (iinfo->cli_cli_header.ch_export_address_table_jumps);
346         SWAPPDE (iinfo->cli_cli_header.ch_eeinfo_table);
347         SWAPPDE (iinfo->cli_cli_header.ch_helper_table);
348         SWAPPDE (iinfo->cli_cli_header.ch_dynamic_info);
349         SWAPPDE (iinfo->cli_cli_header.ch_delay_load_info);
350         SWAPPDE (iinfo->cli_cli_header.ch_module_image);
351         SWAPPDE (iinfo->cli_cli_header.ch_external_fixups);
352         SWAPPDE (iinfo->cli_cli_header.ch_ridmap);
353         SWAPPDE (iinfo->cli_cli_header.ch_debug_map);
354         SWAPPDE (iinfo->cli_cli_header.ch_ip_map);
355 #undef SWAP32
356 #undef SWAP16
357 #undef SWAPPDE
358 #endif
359         /* Catch new uses of the fields that are supposed to be zero */
360
361         if ((iinfo->cli_cli_header.ch_eeinfo_table.rva != 0) ||
362             (iinfo->cli_cli_header.ch_helper_table.rva != 0) ||
363             (iinfo->cli_cli_header.ch_dynamic_info.rva != 0) ||
364             (iinfo->cli_cli_header.ch_delay_load_info.rva != 0) ||
365             (iinfo->cli_cli_header.ch_module_image.rva != 0) ||
366             (iinfo->cli_cli_header.ch_external_fixups.rva != 0) ||
367             (iinfo->cli_cli_header.ch_ridmap.rva != 0) ||
368             (iinfo->cli_cli_header.ch_debug_map.rva != 0) ||
369             (iinfo->cli_cli_header.ch_ip_map.rva != 0)){
370
371                 /*
372                  * No need to scare people who are testing this, I am just
373                  * labelling this as a LAMESPEC
374                  */
375                 /* g_warning ("Some fields in the CLI header which should have been zero are not zero"); */
376
377         }
378             
379         return TRUE;
380 }
381
382 static gboolean
383 load_metadata_ptrs (MonoImage *image, MonoCLIImageInfo *iinfo)
384 {
385         guint32 offset, size;
386         guint16 streams;
387         int i;
388         guint32 pad;
389         char *ptr;
390         
391         offset = mono_cli_rva_image_map (image, iinfo->cli_cli_header.ch_metadata.rva);
392         if (offset == INVALID_ADDRESS)
393                 return FALSE;
394
395         size = iinfo->cli_cli_header.ch_metadata.size;
396
397         if (offset + size > image->raw_data_len)
398                 return FALSE;
399         image->raw_metadata = image->raw_data + offset;
400
401         /* 24.2.1: Metadata root starts here */
402         ptr = image->raw_metadata;
403
404         if (strncmp (ptr, "BSJB", 4) == 0){
405                 guint32 version_string_len;
406
407                 ptr += 4;
408                 image->md_version_major = read16 (ptr);
409                 ptr += 2;
410                 image->md_version_minor = read16 (ptr);
411                 ptr += 6;
412
413                 version_string_len = read32 (ptr);
414                 ptr += 4;
415                 image->version = g_strndup (ptr, version_string_len);
416                 ptr += version_string_len;
417                 pad = ptr - image->raw_metadata;
418                 if (pad % 4)
419                         ptr += 4 - (pad % 4);
420         } else
421                 return FALSE;
422
423         /* skip over flags */
424         ptr += 2;
425         
426         streams = read16 (ptr);
427         ptr += 2;
428
429         for (i = 0; i < streams; i++){
430                 if (strncmp (ptr + 8, "#~", 3) == 0){
431                         image->heap_tables.data = image->raw_metadata + read32 (ptr);
432                         image->heap_tables.size = read32 (ptr + 4);
433                         ptr += 8 + 3;
434                 } else if (strncmp (ptr + 8, "#Strings", 9) == 0){
435                         image->heap_strings.data = image->raw_metadata + read32 (ptr);
436                         image->heap_strings.size = read32 (ptr + 4);
437                         ptr += 8 + 9;
438                 } else if (strncmp (ptr + 8, "#US", 4) == 0){
439                         image->heap_us.data = image->raw_metadata + read32 (ptr);
440                         image->heap_us.size = read32 (ptr + 4);
441                         ptr += 8 + 4;
442                 } else if (strncmp (ptr + 8, "#Blob", 6) == 0){
443                         image->heap_blob.data = image->raw_metadata + read32 (ptr);
444                         image->heap_blob.size = read32 (ptr + 4);
445                         ptr += 8 + 6;
446                 } else if (strncmp (ptr + 8, "#GUID", 6) == 0){
447                         image->heap_guid.data = image->raw_metadata + read32 (ptr);
448                         image->heap_guid.size = read32 (ptr + 4);
449                         ptr += 8 + 6;
450                 } else if (strncmp (ptr + 8, "#-", 3) == 0) {
451                         image->heap_tables.data = image->raw_metadata + read32 (ptr);
452                         image->heap_tables.size = read32 (ptr + 4);
453                         ptr += 8 + 3;
454                         image->uncompressed_metadata = TRUE;
455                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Assembly '%s' has the non-standard metadata heap #-.\nRecompile it correctly (without the /incremental switch or in Release mode).\n", image->name);
456                 } else {
457                         g_message ("Unknown heap type: %s\n", ptr + 8);
458                         ptr += 8 + strlen (ptr + 8) + 1;
459                 }
460                 pad = ptr - image->raw_metadata;
461                 if (pad % 4)
462                         ptr += 4 - (pad % 4);
463         }
464
465         g_assert (image->heap_guid.data);
466         g_assert (image->heap_guid.size >= 16);
467
468         image->guid = mono_guid_to_string ((guint8*)image->heap_guid.data);
469
470         return TRUE;
471 }
472
473 /*
474  * Load representation of logical metadata tables, from the "#~" stream
475  */
476 static gboolean
477 load_tables (MonoImage *image)
478 {
479         const char *heap_tables = image->heap_tables.data;
480         const guint32 *rows;
481         guint64 valid_mask, sorted_mask;
482         int valid = 0, table;
483         int heap_sizes;
484         
485         heap_sizes = heap_tables [6];
486         image->idx_string_wide = ((heap_sizes & 0x01) == 1);
487         image->idx_guid_wide   = ((heap_sizes & 0x02) == 2);
488         image->idx_blob_wide   = ((heap_sizes & 0x04) == 4);
489         
490         valid_mask = read64 (heap_tables + 8);
491         sorted_mask = read64 (heap_tables + 16);
492         rows = (const guint32 *) (heap_tables + 24);
493         
494         for (table = 0; table < 64; table++){
495                 if ((valid_mask & ((guint64) 1 << table)) == 0){
496                         if (table > MONO_TABLE_LAST)
497                                 continue;
498                         image->tables [table].rows = 0;
499                         continue;
500                 }
501                 if (table > MONO_TABLE_LAST) {
502                         g_warning("bits in valid must be zero above 0x2d (II - 23.1.6)");
503                 } else {
504                         image->tables [table].rows = read32 (rows);
505                 }
506                 /*if ((sorted_mask & ((guint64) 1 << table)) == 0){
507                         g_print ("table %s (0x%02x) is sorted\n", mono_meta_table_name (table), table);
508                 }*/
509                 rows++;
510                 valid++;
511         }
512
513         image->tables_base = (heap_tables + 24) + (4 * valid);
514
515         /* They must be the same */
516         g_assert ((const void *) image->tables_base == (const void *) rows);
517
518         mono_metadata_compute_table_bases (image);
519         return TRUE;
520 }
521
522 static gboolean
523 load_metadata (MonoImage *image, MonoCLIImageInfo *iinfo)
524 {
525         if (!load_metadata_ptrs (image, iinfo))
526                 return FALSE;
527
528         return load_tables (image);
529 }
530
531 void
532 mono_image_check_for_module_cctor (MonoImage *image)
533 {
534         MonoTableInfo *t, *mt;
535         t = &image->tables [MONO_TABLE_TYPEDEF];
536         mt = &image->tables [MONO_TABLE_METHOD];
537         if (image->dynamic) {
538                 /* FIXME: */
539                 image->checked_module_cctor = TRUE;
540                 return;
541         }
542         if (t->rows >= 1) {
543                 guint32 nameidx = mono_metadata_decode_row_col (t, 0, MONO_TYPEDEF_NAME);
544                 const char *name = mono_metadata_string_heap (image, nameidx);
545                 if (strcmp (name, "<Module>") == 0) {
546                         guint32 first_method = mono_metadata_decode_row_col (t, 0, MONO_TYPEDEF_METHOD_LIST) - 1;
547                         guint32 last_method;
548                         if (t->rows > 1)
549                                 last_method = mono_metadata_decode_row_col (t, 1, MONO_TYPEDEF_METHOD_LIST) - 1;
550                         else 
551                                 last_method = mt->rows;
552                         for (; first_method < last_method; first_method++) {
553                                 nameidx = mono_metadata_decode_row_col (mt, first_method, MONO_METHOD_NAME);
554                                 name = mono_metadata_string_heap (image, nameidx);
555                                 if (strcmp (name, ".cctor") == 0) {
556                                         image->has_module_cctor = TRUE;
557                                         image->checked_module_cctor = TRUE;
558                                         return;
559                                 }
560                         }
561                 }
562         }
563         image->has_module_cctor = FALSE;
564         image->checked_module_cctor = TRUE;
565 }
566
567 static void
568 load_modules (MonoImage *image)
569 {
570         MonoTableInfo *t;
571
572         if (image->modules)
573                 return;
574
575         t = &image->tables [MONO_TABLE_MODULEREF];
576         image->modules = g_new0 (MonoImage *, t->rows);
577         image->modules_loaded = g_new0 (gboolean, t->rows);
578         image->module_count = t->rows;
579 }
580
581 /**
582  * mono_image_load_module:
583  *
584  *   Load the module with the one-based index IDX from IMAGE and return it. Return NULL if
585  * it cannot be loaded.
586  */
587 MonoImage*
588 mono_image_load_module (MonoImage *image, int idx)
589 {
590         MonoTableInfo *t;
591         MonoTableInfo *file_table;
592         int i;
593         char *base_dir;
594         gboolean refonly = image->ref_only;
595         GList *list_iter, *valid_modules = NULL;
596         MonoImageOpenStatus status;
597
598         if ((image->module_count == 0) || (idx > image->module_count || idx <= 0))
599                 return NULL;
600         if (image->modules_loaded [idx - 1])
601                 return image->modules [idx - 1];
602
603         file_table = &image->tables [MONO_TABLE_FILE];
604         for (i = 0; i < file_table->rows; i++) {
605                 guint32 cols [MONO_FILE_SIZE];
606                 mono_metadata_decode_row (file_table, i, cols, MONO_FILE_SIZE);
607                 if (cols [MONO_FILE_FLAGS] == FILE_CONTAINS_NO_METADATA)
608                         continue;
609                 valid_modules = g_list_prepend (valid_modules, (char*)mono_metadata_string_heap (image, cols [MONO_FILE_NAME]));
610         }
611
612         t = &image->tables [MONO_TABLE_MODULEREF];
613         base_dir = g_path_get_dirname (image->name);
614
615         {
616                 char *module_ref;
617                 const char *name;
618                 guint32 cols [MONO_MODULEREF_SIZE];
619                 /* if there is no file table, we try to load the module... */
620                 int valid = file_table->rows == 0;
621
622                 mono_metadata_decode_row (t, idx - 1, cols, MONO_MODULEREF_SIZE);
623                 name = mono_metadata_string_heap (image, cols [MONO_MODULEREF_NAME]);
624                 for (list_iter = valid_modules; list_iter; list_iter = list_iter->next) {
625                         /* be safe with string dups, but we could just compare string indexes  */
626                         if (strcmp (list_iter->data, name) == 0) {
627                                 valid = TRUE;
628                                 break;
629                         }
630                 }
631                 if (valid) {
632                         module_ref = g_build_filename (base_dir, name, NULL);
633                         image->modules [idx - 1] = mono_image_open_full (module_ref, &status, refonly);
634                         if (image->modules [idx - 1]) {
635                                 mono_image_addref (image->modules [idx - 1]);
636                                 image->modules [idx - 1]->assembly = image->assembly;
637 #ifdef HOST_WIN32
638                                 if (image->modules [idx - 1]->is_module_handle)
639                                         mono_image_fixup_vtable (image->modules [idx - 1]);
640 #endif
641                                 /* g_print ("loaded module %s from %s (%p)\n", module_ref, image->name, image->assembly); */
642                         }
643                         g_free (module_ref);
644                 }
645         }
646
647         image->modules_loaded [idx - 1] = TRUE;
648
649         g_free (base_dir);
650         g_list_free (valid_modules);
651
652         return image->modules [idx - 1];
653 }
654
655 static gpointer
656 class_key_extract (gpointer value)
657 {
658         MonoClass *class = value;
659
660         return GUINT_TO_POINTER (class->type_token);
661 }
662
663 static gpointer*
664 class_next_value (gpointer value)
665 {
666         MonoClass *class = value;
667
668         return (gpointer*)&class->next_class_cache;
669 }
670
671 void
672 mono_image_init (MonoImage *image)
673 {
674         image->mempool = mono_mempool_new_size (512);
675         mono_internal_hash_table_init (&image->class_cache,
676                                        g_direct_hash,
677                                        class_key_extract,
678                                        class_next_value);
679         image->field_cache = g_hash_table_new (NULL, NULL);
680
681         image->typespec_cache = g_hash_table_new (NULL, NULL);
682         image->memberref_signatures = g_hash_table_new (NULL, NULL);
683         image->helper_signatures = g_hash_table_new (g_str_hash, g_str_equal);
684         image->method_signatures = g_hash_table_new (NULL, NULL);
685
686         image->property_hash = mono_property_hash_new ();
687         InitializeCriticalSection (&image->lock);
688         InitializeCriticalSection (&image->szarray_cache_lock);
689 }
690
691 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
692 #define SWAP64(x) (x) = GUINT64_FROM_LE ((x))
693 #define SWAP32(x) (x) = GUINT32_FROM_LE ((x))
694 #define SWAP16(x) (x) = GUINT16_FROM_LE ((x))
695 #define SWAPPDE(x) do { (x).rva = GUINT32_FROM_LE ((x).rva); (x).size = GUINT32_FROM_LE ((x).size);} while (0)
696 #else
697 #define SWAP64(x)
698 #define SWAP32(x)
699 #define SWAP16(x)
700 #define SWAPPDE(x)
701 #endif
702
703 /*
704  * Returns < 0 to indicate an error.
705  */
706 static int
707 do_load_header (MonoImage *image, MonoDotNetHeader *header, int offset)
708 {
709         MonoDotNetHeader64 header64;
710
711 #ifdef HOST_WIN32
712         if (!image->is_module_handle)
713 #endif
714         if (offset + sizeof (MonoDotNetHeader32) > image->raw_data_len)
715                 return -1;
716
717         memcpy (header, image->raw_data + offset, sizeof (MonoDotNetHeader));
718
719         if (header->pesig [0] != 'P' || header->pesig [1] != 'E')
720                 return -1;
721
722         /* endian swap the fields common between PE and PE+ */
723         SWAP32 (header->coff.coff_time);
724         SWAP32 (header->coff.coff_symptr);
725         SWAP32 (header->coff.coff_symcount);
726         SWAP16 (header->coff.coff_machine);
727         SWAP16 (header->coff.coff_sections);
728         SWAP16 (header->coff.coff_opt_header_size);
729         SWAP16 (header->coff.coff_attributes);
730         /* MonoPEHeader */
731         SWAP32 (header->pe.pe_code_size);
732         SWAP32 (header->pe.pe_uninit_data_size);
733         SWAP32 (header->pe.pe_rva_entry_point);
734         SWAP32 (header->pe.pe_rva_code_base);
735         SWAP32 (header->pe.pe_rva_data_base);
736         SWAP16 (header->pe.pe_magic);
737
738         /* now we are ready for the basic tests */
739
740         if (header->pe.pe_magic == 0x10B) {
741                 offset += sizeof (MonoDotNetHeader);
742                 SWAP32 (header->pe.pe_data_size);
743                 if (header->coff.coff_opt_header_size != (sizeof (MonoDotNetHeader) - sizeof (MonoCOFFHeader) - 4))
744                         return -1;
745
746                 SWAP32  (header->nt.pe_image_base);     /* must be 0x400000 */
747                 SWAP32  (header->nt.pe_stack_reserve);
748                 SWAP32  (header->nt.pe_stack_commit);
749                 SWAP32  (header->nt.pe_heap_reserve);
750                 SWAP32  (header->nt.pe_heap_commit);
751         } else if (header->pe.pe_magic == 0x20B) {
752                 /* PE32+ file format */
753                 if (header->coff.coff_opt_header_size != (sizeof (MonoDotNetHeader64) - sizeof (MonoCOFFHeader) - 4))
754                         return -1;
755                 memcpy (&header64, image->raw_data + offset, sizeof (MonoDotNetHeader64));
756                 offset += sizeof (MonoDotNetHeader64);
757                 /* copy the fields already swapped. the last field, pe_data_size, is missing */
758                 memcpy (&header64, header, sizeof (MonoDotNetHeader) - 4);
759                 /* FIXME: we lose bits here, but we don't use this stuff internally, so we don't care much.
760                  * will be fixed when we change MonoDotNetHeader to not match the 32 bit variant
761                  */
762                 SWAP64  (header64.nt.pe_image_base);
763                 header->nt.pe_image_base = header64.nt.pe_image_base;
764                 SWAP64  (header64.nt.pe_stack_reserve);
765                 header->nt.pe_stack_reserve = header64.nt.pe_stack_reserve;
766                 SWAP64  (header64.nt.pe_stack_commit);
767                 header->nt.pe_stack_commit = header64.nt.pe_stack_commit;
768                 SWAP64  (header64.nt.pe_heap_reserve);
769                 header->nt.pe_heap_reserve = header64.nt.pe_heap_reserve;
770                 SWAP64  (header64.nt.pe_heap_commit);
771                 header->nt.pe_heap_commit = header64.nt.pe_heap_commit;
772
773                 header->nt.pe_section_align = header64.nt.pe_section_align;
774                 header->nt.pe_file_alignment = header64.nt.pe_file_alignment;
775                 header->nt.pe_os_major = header64.nt.pe_os_major;
776                 header->nt.pe_os_minor = header64.nt.pe_os_minor;
777                 header->nt.pe_user_major = header64.nt.pe_user_major;
778                 header->nt.pe_user_minor = header64.nt.pe_user_minor;
779                 header->nt.pe_subsys_major = header64.nt.pe_subsys_major;
780                 header->nt.pe_subsys_minor = header64.nt.pe_subsys_minor;
781                 header->nt.pe_reserved_1 = header64.nt.pe_reserved_1;
782                 header->nt.pe_image_size = header64.nt.pe_image_size;
783                 header->nt.pe_header_size = header64.nt.pe_header_size;
784                 header->nt.pe_checksum = header64.nt.pe_checksum;
785                 header->nt.pe_subsys_required = header64.nt.pe_subsys_required;
786                 header->nt.pe_dll_flags = header64.nt.pe_dll_flags;
787                 header->nt.pe_loader_flags = header64.nt.pe_loader_flags;
788                 header->nt.pe_data_dir_count = header64.nt.pe_data_dir_count;
789
790                 /* copy the datadir */
791                 memcpy (&header->datadir, &header64.datadir, sizeof (MonoPEDatadir));
792         } else {
793                 return -1;
794         }
795
796         /* MonoPEHeaderNT: not used yet */
797         SWAP32  (header->nt.pe_section_align);       /* must be 8192 */
798         SWAP32  (header->nt.pe_file_alignment);      /* must be 512 or 4096 */
799         SWAP16  (header->nt.pe_os_major);            /* must be 4 */
800         SWAP16  (header->nt.pe_os_minor);            /* must be 0 */
801         SWAP16  (header->nt.pe_user_major);
802         SWAP16  (header->nt.pe_user_minor);
803         SWAP16  (header->nt.pe_subsys_major);
804         SWAP16  (header->nt.pe_subsys_minor);
805         SWAP32  (header->nt.pe_reserved_1);
806         SWAP32  (header->nt.pe_image_size);
807         SWAP32  (header->nt.pe_header_size);
808         SWAP32  (header->nt.pe_checksum);
809         SWAP16  (header->nt.pe_subsys_required);
810         SWAP16  (header->nt.pe_dll_flags);
811         SWAP32  (header->nt.pe_loader_flags);
812         SWAP32  (header->nt.pe_data_dir_count);
813
814         /* MonoDotNetHeader: mostly unused */
815         SWAPPDE (header->datadir.pe_export_table);
816         SWAPPDE (header->datadir.pe_import_table);
817         SWAPPDE (header->datadir.pe_resource_table);
818         SWAPPDE (header->datadir.pe_exception_table);
819         SWAPPDE (header->datadir.pe_certificate_table);
820         SWAPPDE (header->datadir.pe_reloc_table);
821         SWAPPDE (header->datadir.pe_debug);
822         SWAPPDE (header->datadir.pe_copyright);
823         SWAPPDE (header->datadir.pe_global_ptr);
824         SWAPPDE (header->datadir.pe_tls_table);
825         SWAPPDE (header->datadir.pe_load_config_table);
826         SWAPPDE (header->datadir.pe_bound_import);
827         SWAPPDE (header->datadir.pe_iat);
828         SWAPPDE (header->datadir.pe_delay_import_desc);
829         SWAPPDE (header->datadir.pe_cli_header);
830         SWAPPDE (header->datadir.pe_reserved);
831
832 #ifdef HOST_WIN32
833         if (image->is_module_handle)
834                 image->raw_data_len = header->nt.pe_image_size;
835 #endif
836
837         return offset;
838 }
839
840 gboolean
841 mono_image_load_pe_data (MonoImage *image)
842 {
843         MonoCLIImageInfo *iinfo;
844         MonoDotNetHeader *header;
845         MonoMSDOSHeader msdos;
846         gint32 offset = 0;
847
848         iinfo = image->image_info;
849         header = &iinfo->cli_header;
850
851 #ifdef HOST_WIN32
852         if (!image->is_module_handle)
853 #endif
854         if (offset + sizeof (msdos) > image->raw_data_len)
855                 goto invalid_image;
856         memcpy (&msdos, image->raw_data + offset, sizeof (msdos));
857         
858         if (!(msdos.msdos_sig [0] == 'M' && msdos.msdos_sig [1] == 'Z'))
859                 goto invalid_image;
860         
861         msdos.pe_offset = GUINT32_FROM_LE (msdos.pe_offset);
862
863         offset = msdos.pe_offset;
864
865         offset = do_load_header (image, header, offset);
866         if (offset < 0)
867                 goto invalid_image;
868
869         /*
870          * this tests for a x86 machine type, but itanium, amd64 and others could be used, too.
871          * we skip this test.
872         if (header->coff.coff_machine != 0x14c)
873                 goto invalid_image;
874         */
875
876 #if 0
877         /*
878          * The spec says that this field should contain 6.0, but Visual Studio includes a new compiler,
879          * which produces binaries with 7.0.  From Sergey:
880          *
881          * The reason is that MSVC7 uses traditional compile/link
882          * sequence for CIL executables, and VS.NET (and Framework
883          * SDK) includes linker version 7, that puts 7.0 in this
884          * field.  That's why it's currently not possible to load VC
885          * binaries with Mono.  This field is pretty much meaningless
886          * anyway (what linker?).
887          */
888         if (header->pe.pe_major != 6 || header->pe.pe_minor != 0)
889                 goto invalid_image;
890 #endif
891
892         /*
893          * FIXME: byte swap all addresses here for header.
894          */
895         
896         if (!load_section_tables (image, iinfo, offset))
897                 goto invalid_image;
898
899         return TRUE;
900
901 invalid_image:
902         return FALSE;
903 }
904
905 gboolean
906 mono_image_load_cli_data (MonoImage *image)
907 {
908         MonoCLIImageInfo *iinfo;
909         MonoDotNetHeader *header;
910
911         iinfo = image->image_info;
912         header = &iinfo->cli_header;
913
914         /* Load the CLI header */
915         if (!load_cli_header (image, iinfo))
916                 return FALSE;
917
918         if (!load_metadata (image, iinfo))
919                 return FALSE;
920
921         return TRUE;
922 }
923
924 void
925 mono_image_load_names (MonoImage *image)
926 {
927         /* modules don't have an assembly table row */
928         if (image->tables [MONO_TABLE_ASSEMBLY].rows) {
929                 image->assembly_name = mono_metadata_string_heap (image, 
930                         mono_metadata_decode_row_col (&image->tables [MONO_TABLE_ASSEMBLY],
931                                         0, MONO_ASSEMBLY_NAME));
932         }
933
934         image->module_name = mono_metadata_string_heap (image, 
935                         mono_metadata_decode_row_col (&image->tables [MONO_TABLE_MODULE],
936                                         0, MONO_MODULE_NAME));
937 }
938
939 static MonoImage *
940 do_mono_image_load (MonoImage *image, MonoImageOpenStatus *status,
941                     gboolean care_about_cli, gboolean care_about_pecoff)
942 {
943         MonoCLIImageInfo *iinfo;
944         MonoDotNetHeader *header;
945         GSList *errors = NULL;
946
947         mono_profiler_module_event (image, MONO_PROFILE_START_LOAD);
948
949         mono_image_init (image);
950
951         iinfo = image->image_info;
952         header = &iinfo->cli_header;
953                 
954         if (status)
955                 *status = MONO_IMAGE_IMAGE_INVALID;
956
957         if (care_about_pecoff == FALSE)
958                 goto done;
959
960         if (!mono_verifier_verify_pe_data (image, &errors))
961                 goto invalid_image;
962
963         if (!mono_image_load_pe_data (image))
964                 goto invalid_image;
965         
966         if (care_about_cli == FALSE) {
967                 goto done;
968         }
969
970         if (!mono_verifier_verify_cli_data (image, &errors))
971                 goto invalid_image;
972
973         if (!mono_image_load_cli_data (image))
974                 goto invalid_image;
975
976         if (!mono_verifier_verify_table_data (image, &errors))
977                 goto invalid_image;
978
979         mono_image_load_names (image);
980
981         load_modules (image);
982
983 done:
984         mono_profiler_module_loaded (image, MONO_PROFILE_OK);
985         if (status)
986                 *status = MONO_IMAGE_OK;
987
988         return image;
989
990 invalid_image:
991         if (errors) {
992                 MonoVerifyInfo *info = errors->data;
993                 g_warning ("Could not load image %s due to %s", image->name, info->message);
994                 mono_free_verify_list (errors);
995         }
996         mono_profiler_module_loaded (image, MONO_PROFILE_FAILED);
997         mono_image_close (image);
998         return NULL;
999 }
1000
1001 static MonoImage *
1002 do_mono_image_open (const char *fname, MonoImageOpenStatus *status,
1003                     gboolean care_about_cli, gboolean care_about_pecoff, gboolean refonly)
1004 {
1005         MonoCLIImageInfo *iinfo;
1006         MonoImage *image;
1007         MonoFileMap *filed;
1008
1009         if ((filed = mono_file_map_open (fname)) == NULL){
1010                 if (IS_PORTABILITY_SET) {
1011                         gchar *ffname = mono_portability_find_file (fname, TRUE);
1012                         if (ffname) {
1013                                 filed = mono_file_map_open (ffname);
1014                                 g_free (ffname);
1015                         }
1016                 }
1017
1018                 if (filed == NULL) {
1019                         if (status)
1020                                 *status = MONO_IMAGE_ERROR_ERRNO;
1021                         return NULL;
1022                 }
1023         }
1024
1025         image = g_new0 (MonoImage, 1);
1026         image->raw_buffer_used = TRUE;
1027         image->raw_data_len = mono_file_map_size (filed);
1028         image->raw_data = mono_file_map (image->raw_data_len, MONO_MMAP_READ|MONO_MMAP_PRIVATE, mono_file_map_fd (filed), 0, &image->raw_data_handle);
1029 #if defined(HAVE_MMAP) && !defined (HOST_WIN32)
1030         if (!image->raw_data) {
1031                 image->fileio_used = TRUE;
1032                 image->raw_data = mono_file_map_fileio (image->raw_data_len, MONO_MMAP_READ|MONO_MMAP_PRIVATE, mono_file_map_fd (filed), 0, &image->raw_data_handle);
1033         }
1034 #endif
1035         if (!image->raw_data) {
1036                 mono_file_map_close (filed);
1037                 g_free (image);
1038                 if (status)
1039                         *status = MONO_IMAGE_IMAGE_INVALID;
1040                 return NULL;
1041         }
1042         iinfo = g_new0 (MonoCLIImageInfo, 1);
1043         image->image_info = iinfo;
1044         image->name = mono_path_resolve_symlinks (fname);
1045         image->ref_only = refonly;
1046         image->ref_count = 1;
1047         /* if MONO_SECURITY_MODE_CORE_CLR is set then determine if this image is platform code */
1048         image->core_clr_platform_code = mono_security_core_clr_determine_platform_image (image);
1049
1050         mono_file_map_close (filed);
1051         return do_mono_image_load (image, status, care_about_cli, care_about_pecoff);
1052 }
1053
1054 MonoImage *
1055 mono_image_loaded_full (const char *name, gboolean refonly)
1056 {
1057         MonoImage *res;
1058         GHashTable *loaded_images = refonly ? loaded_images_refonly_hash : loaded_images_hash;
1059         
1060         mono_images_lock ();
1061         res = g_hash_table_lookup (loaded_images, name);
1062         mono_images_unlock ();
1063         return res;
1064 }
1065
1066 /**
1067  * mono_image_loaded:
1068  * @name: name of the image to load
1069  *
1070  * This routine ensures that the given image is loaded.
1071  *
1072  * Returns: the loaded MonoImage, or NULL on failure.
1073  */
1074 MonoImage *
1075 mono_image_loaded (const char *name)
1076 {
1077         return mono_image_loaded_full (name, FALSE);
1078 }
1079
1080 typedef struct {
1081         MonoImage *res;
1082         const char* guid;
1083 } GuidData;
1084
1085 static void
1086 find_by_guid (gpointer key, gpointer val, gpointer user_data)
1087 {
1088         GuidData *data = user_data;
1089         MonoImage *image;
1090
1091         if (data->res)
1092                 return;
1093         image = val;
1094         if (strcmp (data->guid, mono_image_get_guid (image)) == 0)
1095                 data->res = image;
1096 }
1097
1098 MonoImage *
1099 mono_image_loaded_by_guid_full (const char *guid, gboolean refonly)
1100 {
1101         GuidData data;
1102         GHashTable *loaded_images = refonly ? loaded_images_refonly_hash : loaded_images_hash;
1103         data.res = NULL;
1104         data.guid = guid;
1105
1106         mono_images_lock ();
1107         g_hash_table_foreach (loaded_images, find_by_guid, &data);
1108         mono_images_unlock ();
1109         return data.res;
1110 }
1111
1112 MonoImage *
1113 mono_image_loaded_by_guid (const char *guid)
1114 {
1115         return mono_image_loaded_by_guid_full (guid, FALSE);
1116 }
1117
1118 static MonoImage *
1119 register_image (MonoImage *image)
1120 {
1121         MonoImage *image2;
1122         GHashTable *loaded_images = image->ref_only ? loaded_images_refonly_hash : loaded_images_hash;
1123
1124         mono_images_lock ();
1125         image2 = g_hash_table_lookup (loaded_images, image->name);
1126
1127         if (image2) {
1128                 /* Somebody else beat us to it */
1129                 mono_image_addref (image2);
1130                 mono_images_unlock ();
1131                 mono_image_close (image);
1132                 return image2;
1133         }
1134         g_hash_table_insert (loaded_images, image->name, image);
1135         if (image->assembly_name && (g_hash_table_lookup (loaded_images, image->assembly_name) == NULL))
1136                 g_hash_table_insert (loaded_images, (char *) image->assembly_name, image);      
1137         mono_images_unlock ();
1138
1139         return image;
1140 }
1141
1142 MonoImage *
1143 mono_image_open_from_data_with_name (char *data, guint32 data_len, gboolean need_copy, MonoImageOpenStatus *status, gboolean refonly, const char *name)
1144 {
1145         MonoCLIImageInfo *iinfo;
1146         MonoImage *image;
1147         char *datac;
1148
1149         if (!data || !data_len) {
1150                 if (status)
1151                         *status = MONO_IMAGE_IMAGE_INVALID;
1152                 return NULL;
1153         }
1154         datac = data;
1155         if (need_copy) {
1156                 datac = g_try_malloc (data_len);
1157                 if (!datac) {
1158                         if (status)
1159                                 *status = MONO_IMAGE_ERROR_ERRNO;
1160                         return NULL;
1161                 }
1162                 memcpy (datac, data, data_len);
1163         }
1164
1165         image = g_new0 (MonoImage, 1);
1166         image->raw_data = datac;
1167         image->raw_data_len = data_len;
1168         image->raw_data_allocated = need_copy;
1169         image->name = (name == NULL) ? g_strdup_printf ("data-%p", datac) : g_strdup(name);
1170         iinfo = g_new0 (MonoCLIImageInfo, 1);
1171         image->image_info = iinfo;
1172         image->ref_only = refonly;
1173
1174         image = do_mono_image_load (image, status, TRUE, TRUE);
1175         if (image == NULL)
1176                 return NULL;
1177
1178         return register_image (image);
1179 }
1180
1181 MonoImage *
1182 mono_image_open_from_data_full (char *data, guint32 data_len, gboolean need_copy, MonoImageOpenStatus *status, gboolean refonly)
1183 {
1184   return mono_image_open_from_data_with_name (data, data_len, need_copy, status, refonly, NULL);
1185 }
1186
1187 MonoImage *
1188 mono_image_open_from_data (char *data, guint32 data_len, gboolean need_copy, MonoImageOpenStatus *status)
1189 {
1190         return mono_image_open_from_data_full (data, data_len, need_copy, status, FALSE);
1191 }
1192
1193 #ifdef HOST_WIN32
1194 /* fname is not duplicated. */
1195 MonoImage*
1196 mono_image_open_from_module_handle (HMODULE module_handle, char* fname, gboolean has_entry_point, MonoImageOpenStatus* status)
1197 {
1198         MonoImage* image;
1199         MonoCLIImageInfo* iinfo;
1200
1201         image = g_new0 (MonoImage, 1);
1202         image->raw_data = (char*) module_handle;
1203         image->is_module_handle = TRUE;
1204         iinfo = g_new0 (MonoCLIImageInfo, 1);
1205         image->image_info = iinfo;
1206         image->name = fname;
1207         image->ref_count = has_entry_point ? 0 : 1;
1208         image->has_entry_point = has_entry_point;
1209
1210         image = do_mono_image_load (image, status, TRUE, TRUE);
1211         if (image == NULL)
1212                 return NULL;
1213
1214         return register_image (image);
1215 }
1216 #endif
1217
1218 MonoImage *
1219 mono_image_open_full (const char *fname, MonoImageOpenStatus *status, gboolean refonly)
1220 {
1221         MonoImage *image;
1222         GHashTable *loaded_images;
1223         char *absfname;
1224         
1225         g_return_val_if_fail (fname != NULL, NULL);
1226         
1227 #ifdef HOST_WIN32
1228         /* Load modules using LoadLibrary. */
1229         if (!refonly && coree_module_handle) {
1230                 HMODULE module_handle;
1231                 guint16 *fname_utf16;
1232                 DWORD last_error;
1233
1234                 absfname = mono_path_resolve_symlinks (fname);
1235                 fname_utf16 = NULL;
1236
1237                 /* There is little overhead because the OS loader lock is held by LoadLibrary. */
1238                 mono_images_lock ();
1239                 image = g_hash_table_lookup (loaded_images_hash, absfname);
1240                 if (image) {
1241                         g_assert (image->is_module_handle);
1242                         if (image->has_entry_point && image->ref_count == 0) {
1243                                 /* Increment reference count on images loaded outside of the runtime. */
1244                                 fname_utf16 = g_utf8_to_utf16 (absfname, -1, NULL, NULL, NULL);
1245                                 /* The image is already loaded because _CorDllMain removes images from the hash. */
1246                                 module_handle = LoadLibrary (fname_utf16);
1247                                 g_assert (module_handle == (HMODULE) image->raw_data);
1248                         }
1249                         mono_image_addref (image);
1250                         mono_images_unlock ();
1251                         if (fname_utf16)
1252                                 g_free (fname_utf16);
1253                         g_free (absfname);
1254                         return image;
1255                 }
1256
1257                 fname_utf16 = g_utf8_to_utf16 (absfname, -1, NULL, NULL, NULL);
1258                 module_handle = MonoLoadImage (fname_utf16);
1259                 if (status && module_handle == NULL)
1260                         last_error = GetLastError ();
1261
1262                 /* mono_image_open_from_module_handle is called by _CorDllMain. */
1263                 image = g_hash_table_lookup (loaded_images_hash, absfname);
1264                 if (image)
1265                         mono_image_addref (image);
1266                 mono_images_unlock ();
1267
1268                 g_free (fname_utf16);
1269
1270                 if (module_handle == NULL) {
1271                         g_assert (!image);
1272                         g_free (absfname);
1273                         if (status) {
1274                                 if (last_error == ERROR_BAD_EXE_FORMAT || last_error == STATUS_INVALID_IMAGE_FORMAT)
1275                                         *status = MONO_IMAGE_IMAGE_INVALID;
1276                                 else {
1277                                         if (last_error == ERROR_FILE_NOT_FOUND || last_error == ERROR_PATH_NOT_FOUND)
1278                                                 errno = ENOENT;
1279                                         else
1280                                                 errno = 0;
1281                                 }
1282                         }
1283                         return NULL;
1284                 }
1285
1286                 if (image) {
1287                         g_assert (image->is_module_handle);
1288                         g_assert (image->has_entry_point);
1289                         g_free (absfname);
1290                         return image;
1291                 }
1292
1293                 return mono_image_open_from_module_handle (module_handle, absfname, FALSE, status);
1294         }
1295 #endif
1296
1297         absfname = mono_path_canonicalize (fname);
1298
1299         /*
1300          * The easiest solution would be to do all the loading inside the mutex,
1301          * but that would lead to scalability problems. So we let the loading
1302          * happen outside the mutex, and if multiple threads happen to load
1303          * the same image, we discard all but the first copy.
1304          */
1305         mono_images_lock ();
1306         loaded_images = refonly ? loaded_images_refonly_hash : loaded_images_hash;
1307         image = g_hash_table_lookup (loaded_images, absfname);
1308         g_free (absfname);
1309         
1310         if (image){
1311                 mono_image_addref (image);
1312                 mono_images_unlock ();
1313                 return image;
1314         }
1315         mono_images_unlock ();
1316
1317         image = do_mono_image_open (fname, status, TRUE, TRUE, refonly);
1318         if (image == NULL)
1319                 return NULL;
1320
1321         return register_image (image);
1322 }
1323
1324 /**
1325  * mono_image_open:
1326  * @fname: filename that points to the module we want to open
1327  * @status: An error condition is returned in this field
1328  *
1329  * Returns: An open image of type %MonoImage or NULL on error. 
1330  * The caller holds a temporary reference to the returned image which should be cleared 
1331  * when no longer needed by calling mono_image_close ().
1332  * if NULL, then check the value of @status for details on the error
1333  */
1334 MonoImage *
1335 mono_image_open (const char *fname, MonoImageOpenStatus *status)
1336 {
1337         return mono_image_open_full (fname, status, FALSE);
1338 }
1339
1340 /**
1341  * mono_pe_file_open:
1342  * @fname: filename that points to the module we want to open
1343  * @status: An error condition is returned in this field
1344  *
1345  * Returns: An open image of type %MonoImage or NULL on error.  if
1346  * NULL, then check the value of @status for details on the error.
1347  * This variant for mono_image_open DOES NOT SET UP CLI METADATA.
1348  * It's just a PE file loader, used for FileVersionInfo.  It also does
1349  * not use the image cache.
1350  */
1351 MonoImage *
1352 mono_pe_file_open (const char *fname, MonoImageOpenStatus *status)
1353 {
1354         g_return_val_if_fail (fname != NULL, NULL);
1355         
1356         return(do_mono_image_open (fname, status, FALSE, TRUE, FALSE));
1357 }
1358
1359 /**
1360  * mono_image_open_raw
1361  * @fname: filename that points to the module we want to open
1362  * @status: An error condition is returned in this field
1363  * 
1364  * Returns an image without loading neither pe or cli data.
1365  * 
1366  * Use mono_image_load_pe_data and mono_image_load_cli_data to load them.  
1367  */
1368 MonoImage *
1369 mono_image_open_raw (const char *fname, MonoImageOpenStatus *status)
1370 {
1371         g_return_val_if_fail (fname != NULL, NULL);
1372         
1373         return(do_mono_image_open (fname, status, FALSE, FALSE, FALSE));
1374 }
1375
1376 void
1377 mono_image_fixup_vtable (MonoImage *image)
1378 {
1379 #ifdef HOST_WIN32
1380         MonoCLIImageInfo *iinfo;
1381         MonoPEDirEntry *de;
1382         MonoVTableFixup *vtfixup;
1383         int count;
1384         gpointer slot;
1385         guint16 slot_type;
1386         int slot_count;
1387
1388         g_assert (image->is_module_handle);
1389
1390         iinfo = image->image_info;
1391         de = &iinfo->cli_cli_header.ch_vtable_fixups;
1392         if (!de->rva || !de->size)
1393                 return;
1394         vtfixup = (MonoVTableFixup*) mono_image_rva_map (image, de->rva);
1395         if (!vtfixup)
1396                 return;
1397         
1398         count = de->size / sizeof (MonoVTableFixup);
1399         while (count--) {
1400                 if (!vtfixup->rva || !vtfixup->count)
1401                         continue;
1402
1403                 slot = mono_image_rva_map (image, vtfixup->rva);
1404                 g_assert (slot);
1405                 slot_type = vtfixup->type;
1406                 slot_count = vtfixup->count;
1407                 if (slot_type & VTFIXUP_TYPE_32BIT)
1408                         while (slot_count--) {
1409                                 *((guint32*) slot) = (guint32) mono_marshal_get_vtfixup_ftnptr (image, *((guint32*) slot), slot_type);
1410                                 slot = ((guint32*) slot) + 1;
1411                         }
1412                 else if (slot_type & VTFIXUP_TYPE_64BIT)
1413                         while (slot_count--) {
1414                                 *((guint64*) slot) = (guint64) mono_marshal_get_vtfixup_ftnptr (image, *((guint64*) slot), slot_type);
1415                                 slot = ((guint32*) slot) + 1;
1416                         }
1417                 else
1418                         g_assert_not_reached();
1419
1420                 vtfixup++;
1421         }
1422 #else
1423         g_assert_not_reached();
1424 #endif
1425 }
1426
1427 static void
1428 free_hash_table (gpointer key, gpointer val, gpointer user_data)
1429 {
1430         g_hash_table_destroy ((GHashTable*)val);
1431 }
1432
1433 /*
1434 static void
1435 free_mr_signatures (gpointer key, gpointer val, gpointer user_data)
1436 {
1437         mono_metadata_free_method_signature ((MonoMethodSignature*)val);
1438 }
1439 */
1440
1441 static void
1442 free_array_cache_entry (gpointer key, gpointer val, gpointer user_data)
1443 {
1444         g_slist_free ((GSList*)val);
1445 }
1446
1447 /**
1448  * mono_image_addref:
1449  * @image: The image file we wish to add a reference to
1450  *
1451  *  Increases the reference count of an image.
1452  */
1453 void
1454 mono_image_addref (MonoImage *image)
1455 {
1456         InterlockedIncrement (&image->ref_count);
1457 }       
1458
1459 void
1460 mono_dynamic_stream_reset (MonoDynamicStream* stream)
1461 {
1462         stream->alloc_size = stream->index = stream->offset = 0;
1463         g_free (stream->data);
1464         stream->data = NULL;
1465         if (stream->hash) {
1466                 g_hash_table_destroy (stream->hash);
1467                 stream->hash = NULL;
1468         }
1469 }
1470
1471 static inline void
1472 free_hash (GHashTable *hash)
1473 {
1474         if (hash)
1475                 g_hash_table_destroy (hash);
1476 }
1477
1478 /*
1479  * Returns whether mono_image_close_finish() must be called as well.
1480  * We must unload images in two steps because clearing the domain in
1481  * SGen requires the class metadata to be intact, but we need to free
1482  * the mono_g_hash_tables in case a collection occurs during domain
1483  * unloading and the roots would trip up the GC.
1484  */
1485 gboolean
1486 mono_image_close_except_pools (MonoImage *image)
1487 {
1488         MonoImage *image2;
1489         GHashTable *loaded_images;
1490         int i;
1491         GSList *free_list;
1492
1493         g_return_val_if_fail (image != NULL, FALSE);
1494
1495         /* 
1496          * Atomically decrement the refcount and remove ourselves from the hash tables, so
1497          * register_image () can't grab an image which is being closed.
1498          */
1499         mono_images_lock ();
1500
1501         if (InterlockedDecrement (&image->ref_count) > 0) {
1502                 mono_images_unlock ();
1503                 return FALSE;
1504         }
1505
1506         loaded_images = image->ref_only ? loaded_images_refonly_hash : loaded_images_hash;
1507         image2 = g_hash_table_lookup (loaded_images, image->name);
1508         if (image == image2) {
1509                 /* This is not true if we are called from mono_image_open () */
1510                 g_hash_table_remove (loaded_images, image->name);
1511         }
1512         if (image->assembly_name && (g_hash_table_lookup (loaded_images, image->assembly_name) == image))
1513                 g_hash_table_remove (loaded_images, (char *) image->assembly_name);     
1514
1515         mono_images_unlock ();
1516
1517 #ifdef HOST_WIN32
1518         if (image->is_module_handle && image->has_entry_point) {
1519                 mono_images_lock ();
1520                 if (image->ref_count == 0) {
1521                         /* Image will be closed by _CorDllMain. */
1522                         FreeLibrary ((HMODULE) image->raw_data);
1523                         mono_images_unlock ();
1524                         return FALSE;
1525                 }
1526                 mono_images_unlock ();
1527         }
1528 #endif
1529
1530         mono_profiler_module_event (image, MONO_PROFILE_START_UNLOAD);
1531
1532         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Unloading image %s [%p].", image->name, image);
1533
1534         mono_image_invoke_unload_hook (image);
1535
1536         free_list = mono_metadata_clean_for_image (image);
1537
1538         /*
1539          * The caches inside a MonoImage might refer to metadata which is stored in referenced 
1540          * assemblies, so we can't release these references in mono_assembly_close () since the
1541          * MonoImage might outlive its associated MonoAssembly.
1542          */
1543         if (image->references && !image->dynamic) {
1544                 for (i = 0; i < image->nreferences; i++) {
1545                         if (image->references [i] && image->references [i] != REFERENCE_MISSING) {
1546                                 if (!mono_assembly_close_except_image_pools (image->references [i]))
1547                                         image->references [i] = NULL;
1548                         }
1549                 }
1550         } else {
1551                 if (image->references) {
1552                         g_free (image->references);
1553                         image->references = NULL;
1554                 }
1555         }
1556
1557 #ifdef HOST_WIN32
1558         mono_images_lock ();
1559         if (image->is_module_handle && !image->has_entry_point)
1560                 FreeLibrary ((HMODULE) image->raw_data);
1561         mono_images_unlock ();
1562 #endif
1563
1564         if (image->raw_buffer_used) {
1565                 if (image->raw_data != NULL) {
1566 #ifndef HOST_WIN32
1567                         if (image->fileio_used)
1568                                 mono_file_unmap_fileio (image->raw_data, image->raw_data_handle);
1569                         else
1570 #endif
1571                                 mono_file_unmap (image->raw_data, image->raw_data_handle);
1572                 }
1573         }
1574         
1575         if (image->raw_data_allocated) {
1576                 /* FIXME: do we need this? (image is disposed anyway) */
1577                 /* image->raw_metadata and cli_sections might lie inside image->raw_data */
1578                 MonoCLIImageInfo *ii = image->image_info;
1579
1580                 if ((image->raw_metadata > image->raw_data) &&
1581                         (image->raw_metadata <= (image->raw_data + image->raw_data_len)))
1582                         image->raw_metadata = NULL;
1583
1584                 for (i = 0; i < ii->cli_section_count; i++)
1585                         if (((char*)(ii->cli_sections [i]) > image->raw_data) &&
1586                                 ((char*)(ii->cli_sections [i]) <= ((char*)image->raw_data + image->raw_data_len)))
1587                                 ii->cli_sections [i] = NULL;
1588
1589                 g_free (image->raw_data);
1590         }
1591
1592         if (debug_assembly_unload) {
1593                 image->name = g_strdup_printf ("%s - UNLOADED", image->name);
1594         } else {
1595                 g_free (image->name);
1596                 g_free (image->guid);
1597                 g_free (image->version);
1598                 g_free (image->files);
1599         }
1600
1601         if (image->method_cache)
1602                 g_hash_table_destroy (image->method_cache);
1603         if (image->methodref_cache)
1604                 g_hash_table_destroy (image->methodref_cache);
1605         mono_internal_hash_table_destroy (&image->class_cache);
1606         g_hash_table_destroy (image->field_cache);
1607         if (image->array_cache) {
1608                 g_hash_table_foreach (image->array_cache, free_array_cache_entry, NULL);
1609                 g_hash_table_destroy (image->array_cache);
1610         }
1611         if (image->szarray_cache)
1612                 g_hash_table_destroy (image->szarray_cache);
1613         if (image->ptr_cache)
1614                 g_hash_table_destroy (image->ptr_cache);
1615         if (image->name_cache) {
1616                 g_hash_table_foreach (image->name_cache, free_hash_table, NULL);
1617                 g_hash_table_destroy (image->name_cache);
1618         }
1619
1620         free_hash (image->native_wrapper_cache);
1621         free_hash (image->managed_wrapper_cache);
1622         free_hash (image->delegate_begin_invoke_cache);
1623         free_hash (image->delegate_end_invoke_cache);
1624         free_hash (image->delegate_invoke_cache);
1625         free_hash (image->delegate_abstract_invoke_cache);
1626         free_hash (image->delegate_bound_static_invoke_cache);
1627         free_hash (image->delegate_invoke_generic_cache);
1628         free_hash (image->delegate_begin_invoke_generic_cache);
1629         free_hash (image->delegate_end_invoke_generic_cache);
1630         free_hash (image->synchronized_generic_cache);
1631         free_hash (image->remoting_invoke_cache);
1632         free_hash (image->runtime_invoke_cache);
1633         free_hash (image->runtime_invoke_vtype_cache);
1634         free_hash (image->runtime_invoke_direct_cache);
1635         free_hash (image->runtime_invoke_vcall_cache);
1636         free_hash (image->synchronized_cache);
1637         free_hash (image->unbox_wrapper_cache);
1638         free_hash (image->cominterop_invoke_cache);
1639         free_hash (image->cominterop_wrapper_cache);
1640         free_hash (image->typespec_cache);
1641         free_hash (image->ldfld_wrapper_cache);
1642         free_hash (image->ldflda_wrapper_cache);
1643         free_hash (image->stfld_wrapper_cache);
1644         free_hash (image->isinst_cache);
1645         free_hash (image->castclass_cache);
1646         free_hash (image->proxy_isinst_cache);
1647         free_hash (image->thunk_invoke_cache);
1648         free_hash (image->var_cache_slow);
1649         free_hash (image->mvar_cache_slow);
1650         free_hash (image->wrapper_param_names);
1651         free_hash (image->native_wrapper_aot_cache);
1652         free_hash (image->pinvoke_scopes);
1653         free_hash (image->pinvoke_scope_filenames);
1654
1655         /* The ownership of signatures is not well defined */
1656         //g_hash_table_foreach (image->memberref_signatures, free_mr_signatures, NULL);
1657         g_hash_table_destroy (image->memberref_signatures);
1658         //g_hash_table_foreach (image->helper_signatures, free_mr_signatures, NULL);
1659         g_hash_table_destroy (image->helper_signatures);
1660         g_hash_table_destroy (image->method_signatures);
1661
1662         if (image->rgctx_template_hash)
1663                 g_hash_table_destroy (image->rgctx_template_hash);
1664
1665         if (image->property_hash)
1666                 mono_property_hash_destroy (image->property_hash);
1667
1668         g_slist_free (image->reflection_info_unregister_classes);
1669         image->reflection_info_unregister_classes = free_list;
1670
1671         if (image->interface_bitset) {
1672                 mono_unload_interface_ids (image->interface_bitset);
1673                 mono_bitset_free (image->interface_bitset);
1674         }
1675         if (image->image_info){
1676                 MonoCLIImageInfo *ii = image->image_info;
1677
1678                 if (ii->cli_section_tables)
1679                         g_free (ii->cli_section_tables);
1680                 if (ii->cli_sections)
1681                         g_free (ii->cli_sections);
1682                 g_free (image->image_info);
1683         }
1684
1685         for (i = 0; i < image->module_count; ++i) {
1686                 if (image->modules [i]) {
1687                         if (!mono_image_close_except_pools (image->modules [i]))
1688                                 image->modules [i] = NULL;
1689                 }
1690         }
1691         if (image->modules_loaded)
1692                 g_free (image->modules_loaded);
1693
1694         DeleteCriticalSection (&image->szarray_cache_lock);
1695         DeleteCriticalSection (&image->lock);
1696
1697         /*g_print ("destroy image %p (dynamic: %d)\n", image, image->dynamic);*/
1698         if (image->dynamic) {
1699                 /* Dynamic images are GC_MALLOCed */
1700                 g_free ((char*)image->module_name);
1701                 mono_dynamic_image_free ((MonoDynamicImage*)image);
1702         }
1703
1704         mono_profiler_module_event (image, MONO_PROFILE_END_UNLOAD);
1705
1706         return TRUE;
1707 }
1708
1709 void
1710 mono_image_close_finish (MonoImage *image)
1711 {
1712         int i;
1713         GSList *l;
1714
1715         for (l = image->reflection_info_unregister_classes; l; l = l->next)
1716                 g_free (l->data);
1717         g_slist_free (image->reflection_info_unregister_classes);
1718         image->reflection_info_unregister_classes = NULL;
1719
1720         if (image->references && !image->dynamic) {
1721                 for (i = 0; i < image->nreferences; i++) {
1722                         if (image->references [i] && image->references [i] != REFERENCE_MISSING)
1723                                 mono_assembly_close_finish (image->references [i]);
1724                 }
1725
1726                 g_free (image->references);
1727                 image->references = NULL;
1728         }
1729
1730         for (i = 0; i < image->module_count; ++i) {
1731                 if (image->modules [i])
1732                         mono_image_close_finish (image->modules [i]);
1733         }
1734         if (image->modules)
1735                 g_free (image->modules);
1736
1737 #ifndef DISABLE_PERFCOUNTERS
1738         mono_perfcounters->loader_bytes -= mono_mempool_get_allocated (image->mempool);
1739 #endif
1740
1741         if (!image->dynamic) {
1742                 if (debug_assembly_unload)
1743                         mono_mempool_invalidate (image->mempool);
1744                 else {
1745                         mono_mempool_destroy (image->mempool);
1746                         g_free (image);
1747                 }
1748         } else {
1749                 if (debug_assembly_unload)
1750                         mono_mempool_invalidate (image->mempool);
1751                 else
1752                         mono_mempool_destroy (image->mempool);
1753         }
1754 }
1755
1756 /**
1757  * mono_image_close:
1758  * @image: The image file we wish to close
1759  *
1760  * Closes an image file, deallocates all memory consumed and
1761  * unmaps all possible sections of the file
1762  */
1763 void
1764 mono_image_close (MonoImage *image)
1765 {
1766         if (mono_image_close_except_pools (image))
1767                 mono_image_close_finish (image);
1768 }
1769
1770 /** 
1771  * mono_image_strerror:
1772  * @status: an code indicating the result from a recent operation
1773  *
1774  * Returns: a string describing the error
1775  */
1776 const char *
1777 mono_image_strerror (MonoImageOpenStatus status)
1778 {
1779         switch (status){
1780         case MONO_IMAGE_OK:
1781                 return "success";
1782         case MONO_IMAGE_ERROR_ERRNO:
1783                 return strerror (errno);
1784         case MONO_IMAGE_IMAGE_INVALID:
1785                 return "File does not contain a valid CIL image";
1786         case MONO_IMAGE_MISSING_ASSEMBLYREF:
1787                 return "An assembly was referenced, but could not be found";
1788         }
1789         return "Internal error";
1790 }
1791
1792 static gpointer
1793 mono_image_walk_resource_tree (MonoCLIImageInfo *info, guint32 res_id,
1794                                guint32 lang_id, gunichar2 *name,
1795                                MonoPEResourceDirEntry *entry,
1796                                MonoPEResourceDir *root, guint32 level)
1797 {
1798         gboolean is_string, is_dir;
1799         guint32 name_offset, dir_offset;
1800
1801         /* Level 0 holds a directory entry for each type of resource
1802          * (identified by ID or name).
1803          *
1804          * Level 1 holds a directory entry for each named resource
1805          * item, and each "anonymous" item of a particular type of
1806          * resource.
1807          *
1808          * Level 2 holds a directory entry for each language pointing to
1809          * the actual data.
1810          */
1811         is_string = MONO_PE_RES_DIR_ENTRY_NAME_IS_STRING (*entry);
1812         name_offset = MONO_PE_RES_DIR_ENTRY_NAME_OFFSET (*entry);
1813
1814         is_dir = MONO_PE_RES_DIR_ENTRY_IS_DIR (*entry);
1815         dir_offset = MONO_PE_RES_DIR_ENTRY_DIR_OFFSET (*entry);
1816
1817         if(level==0) {
1818                 if (is_string)
1819                         return NULL;
1820         } else if (level==1) {
1821                 if (res_id != name_offset)
1822                         return NULL;
1823 #if 0
1824                 if(name!=NULL &&
1825                    is_string==TRUE && name!=lookup (name_offset)) {
1826                         return(NULL);
1827                 }
1828 #endif
1829         } else if (level==2) {
1830                 if (is_string == TRUE || (is_string == FALSE && lang_id != 0 && name_offset != lang_id))
1831                         return NULL;
1832         } else {
1833                 g_assert_not_reached ();
1834         }
1835
1836         if(is_dir==TRUE) {
1837                 MonoPEResourceDir *res_dir=(MonoPEResourceDir *)(((char *)root)+dir_offset);
1838                 MonoPEResourceDirEntry *sub_entries=(MonoPEResourceDirEntry *)(res_dir+1);
1839                 guint32 entries, i;
1840
1841                 entries = GUINT16_FROM_LE (res_dir->res_named_entries) + GUINT16_FROM_LE (res_dir->res_id_entries);
1842
1843                 for(i=0; i<entries; i++) {
1844                         MonoPEResourceDirEntry *sub_entry=&sub_entries[i];
1845                         gpointer ret;
1846                         
1847                         ret=mono_image_walk_resource_tree (info, res_id,
1848                                                            lang_id, name,
1849                                                            sub_entry, root,
1850                                                            level+1);
1851                         if(ret!=NULL) {
1852                                 return(ret);
1853                         }
1854                 }
1855
1856                 return(NULL);
1857         } else {
1858                 MonoPEResourceDataEntry *data_entry=(MonoPEResourceDataEntry *)((char *)(root)+dir_offset);
1859                 MonoPEResourceDataEntry *res;
1860
1861                 res = g_new0 (MonoPEResourceDataEntry, 1);
1862
1863                 res->rde_data_offset = GUINT32_TO_LE (data_entry->rde_data_offset);
1864                 res->rde_size = GUINT32_TO_LE (data_entry->rde_size);
1865                 res->rde_codepage = GUINT32_TO_LE (data_entry->rde_codepage);
1866                 res->rde_reserved = GUINT32_TO_LE (data_entry->rde_reserved);
1867
1868                 return (res);
1869         }
1870 }
1871
1872 /**
1873  * mono_image_lookup_resource:
1874  * @image: the image to look up the resource in
1875  * @res_id: A MONO_PE_RESOURCE_ID_ that represents the resource ID to lookup.
1876  * @lang_id: The language id.
1877  * @name: the resource name to lookup.
1878  *
1879  * Returns: NULL if not found, otherwise a pointer to the in-memory representation
1880  * of the given resource. The caller should free it using g_free () when no longer
1881  * needed.
1882  */
1883 gpointer
1884 mono_image_lookup_resource (MonoImage *image, guint32 res_id, guint32 lang_id, gunichar2 *name)
1885 {
1886         MonoCLIImageInfo *info;
1887         MonoDotNetHeader *header;
1888         MonoPEDatadir *datadir;
1889         MonoPEDirEntry *rsrc;
1890         MonoPEResourceDir *resource_dir;
1891         MonoPEResourceDirEntry *res_entries;
1892         guint32 entries, i;
1893
1894         if(image==NULL) {
1895                 return(NULL);
1896         }
1897
1898         mono_image_ensure_section_idx (image, MONO_SECTION_RSRC);
1899
1900         info=image->image_info;
1901         if(info==NULL) {
1902                 return(NULL);
1903         }
1904
1905         header=&info->cli_header;
1906         if(header==NULL) {
1907                 return(NULL);
1908         }
1909
1910         datadir=&header->datadir;
1911         if(datadir==NULL) {
1912                 return(NULL);
1913         }
1914
1915         rsrc=&datadir->pe_resource_table;
1916         if(rsrc==NULL) {
1917                 return(NULL);
1918         }
1919
1920         resource_dir=(MonoPEResourceDir *)mono_image_rva_map (image, rsrc->rva);
1921         if(resource_dir==NULL) {
1922                 return(NULL);
1923         }
1924
1925         entries = GUINT16_FROM_LE (resource_dir->res_named_entries) + GUINT16_FROM_LE (resource_dir->res_id_entries);
1926         res_entries=(MonoPEResourceDirEntry *)(resource_dir+1);
1927         
1928         for(i=0; i<entries; i++) {
1929                 MonoPEResourceDirEntry *entry=&res_entries[i];
1930                 gpointer ret;
1931                 
1932                 ret=mono_image_walk_resource_tree (info, res_id, lang_id,
1933                                                    name, entry, resource_dir,
1934                                                    0);
1935                 if(ret!=NULL) {
1936                         return(ret);
1937                 }
1938         }
1939
1940         return(NULL);
1941 }
1942
1943 /** 
1944  * mono_image_get_entry_point:
1945  * @image: the image where the entry point will be looked up.
1946  *
1947  * Use this routine to determine the metadata token for method that
1948  * has been flagged as the entry point.
1949  *
1950  * Returns: the token for the entry point method in the image
1951  */
1952 guint32
1953 mono_image_get_entry_point (MonoImage *image)
1954 {
1955         return ((MonoCLIImageInfo*)image->image_info)->cli_cli_header.ch_entry_point;
1956 }
1957
1958 /**
1959  * mono_image_get_resource:
1960  * @image: the image where the resource will be looked up.
1961  * @offset: The offset to add to the resource
1962  * @size: a pointer to an int where the size of the resource will be stored
1963  *
1964  * This is a low-level routine that fetches a resource from the
1965  * metadata that starts at a given @offset.  The @size parameter is
1966  * filled with the data field as encoded in the metadata.
1967  *
1968  * Returns: the pointer to the resource whose offset is @offset.
1969  */
1970 const char*
1971 mono_image_get_resource (MonoImage *image, guint32 offset, guint32 *size)
1972 {
1973         MonoCLIImageInfo *iinfo = image->image_info;
1974         MonoCLIHeader *ch = &iinfo->cli_cli_header;
1975         const char* data;
1976
1977         if (!ch->ch_resources.rva || offset + 4 > ch->ch_resources.size)
1978                 return NULL;
1979         
1980         data = mono_image_rva_map (image, ch->ch_resources.rva);
1981         if (!data)
1982                 return NULL;
1983         data += offset;
1984         if (size)
1985                 *size = read32 (data);
1986         data += 4;
1987         return data;
1988 }
1989
1990 MonoImage*
1991 mono_image_load_file_for_image (MonoImage *image, int fileidx)
1992 {
1993         char *base_dir, *name;
1994         MonoImage *res;
1995         MonoTableInfo  *t = &image->tables [MONO_TABLE_FILE];
1996         const char *fname;
1997         guint32 fname_id;
1998
1999         if (fileidx < 1 || fileidx > t->rows)
2000                 return NULL;
2001
2002         mono_loader_lock ();
2003         if (image->files && image->files [fileidx - 1]) {
2004                 mono_loader_unlock ();
2005                 return image->files [fileidx - 1];
2006         }
2007
2008         if (!image->files)
2009                 image->files = g_new0 (MonoImage*, t->rows);
2010
2011         fname_id = mono_metadata_decode_row_col (t, fileidx - 1, MONO_FILE_NAME);
2012         fname = mono_metadata_string_heap (image, fname_id);
2013         base_dir = g_path_get_dirname (image->name);
2014         name = g_build_filename (base_dir, fname, NULL);
2015         res = mono_image_open (name, NULL);
2016         if (res) {
2017                 int i;
2018                 /* g_print ("loaded file %s from %s (%p)\n", name, image->name, image->assembly); */
2019                 res->assembly = image->assembly;
2020                 for (i = 0; i < res->module_count; ++i) {
2021                         if (res->modules [i] && !res->modules [i]->assembly)
2022                                 res->modules [i]->assembly = image->assembly;
2023                 }
2024
2025                 image->files [fileidx - 1] = res;
2026 #ifdef HOST_WIN32
2027                 if (res->is_module_handle)
2028                         mono_image_fixup_vtable (res);
2029 #endif
2030         }
2031         mono_loader_unlock ();
2032         g_free (name);
2033         g_free (base_dir);
2034         return res;
2035 }
2036
2037 /**
2038  * mono_image_get_strong_name:
2039  * @image: a MonoImage
2040  * @size: a guint32 pointer, or NULL.
2041  *
2042  * If the image has a strong name, and @size is not NULL, the value
2043  * pointed to by size will have the size of the strong name.
2044  *
2045  * Returns: NULL if the image does not have a strong name, or a
2046  * pointer to the public key.
2047  */
2048 const char*
2049 mono_image_get_strong_name (MonoImage *image, guint32 *size)
2050 {
2051         MonoCLIImageInfo *iinfo = image->image_info;
2052         MonoPEDirEntry *de = &iinfo->cli_cli_header.ch_strong_name;
2053         const char* data;
2054
2055         if (!de->size || !de->rva)
2056                 return NULL;
2057         data = mono_image_rva_map (image, de->rva);
2058         if (!data)
2059                 return NULL;
2060         if (size)
2061                 *size = de->size;
2062         return data;
2063 }
2064
2065 /**
2066  * mono_image_strong_name_position:
2067  * @image: a MonoImage
2068  * @size: a guint32 pointer, or NULL.
2069  *
2070  * If the image has a strong name, and @size is not NULL, the value
2071  * pointed to by size will have the size of the strong name.
2072  *
2073  * Returns: the position within the image file where the strong name
2074  * is stored.
2075  */
2076 guint32
2077 mono_image_strong_name_position (MonoImage *image, guint32 *size)
2078 {
2079         MonoCLIImageInfo *iinfo = image->image_info;
2080         MonoPEDirEntry *de = &iinfo->cli_cli_header.ch_strong_name;
2081         guint32 pos;
2082
2083         if (size)
2084                 *size = de->size;
2085         if (!de->size || !de->rva)
2086                 return 0;
2087         pos = mono_cli_rva_image_map (image, de->rva);
2088         return pos == INVALID_ADDRESS ? 0 : pos;
2089 }
2090
2091 /**
2092  * mono_image_get_public_key:
2093  * @image: a MonoImage
2094  * @size: a guint32 pointer, or NULL.
2095  *
2096  * This is used to obtain the public key in the @image.
2097  * 
2098  * If the image has a public key, and @size is not NULL, the value
2099  * pointed to by size will have the size of the public key.
2100  * 
2101  * Returns: NULL if the image does not have a public key, or a pointer
2102  * to the public key.
2103  */
2104 const char*
2105 mono_image_get_public_key (MonoImage *image, guint32 *size)
2106 {
2107         const char *pubkey;
2108         guint32 len, tok;
2109
2110         if (image->dynamic) {
2111                 if (size)
2112                         *size = ((MonoDynamicImage*)image)->public_key_len;
2113                 return (char*)((MonoDynamicImage*)image)->public_key;
2114         }
2115         if (image->tables [MONO_TABLE_ASSEMBLY].rows != 1)
2116                 return NULL;
2117         tok = mono_metadata_decode_row_col (&image->tables [MONO_TABLE_ASSEMBLY], 0, MONO_ASSEMBLY_PUBLIC_KEY);
2118         if (!tok)
2119                 return NULL;
2120         pubkey = mono_metadata_blob_heap (image, tok);
2121         len = mono_metadata_decode_blob_size (pubkey, &pubkey);
2122         if (size)
2123                 *size = len;
2124         return pubkey;
2125 }
2126
2127 /**
2128  * mono_image_get_name:
2129  * @name: a MonoImage
2130  *
2131  * Returns: the name of the assembly.
2132  */
2133 const char*
2134 mono_image_get_name (MonoImage *image)
2135 {
2136         return image->assembly_name;
2137 }
2138
2139 /**
2140  * mono_image_get_filename:
2141  * @image: a MonoImage
2142  *
2143  * Used to get the filename that hold the actual MonoImage
2144  *
2145  * Returns: the filename.
2146  */
2147 const char*
2148 mono_image_get_filename (MonoImage *image)
2149 {
2150         return image->name;
2151 }
2152
2153 const char*
2154 mono_image_get_guid (MonoImage *image)
2155 {
2156         return image->guid;
2157 }
2158
2159 const MonoTableInfo*
2160 mono_image_get_table_info (MonoImage *image, int table_id)
2161 {
2162         if (table_id < 0 || table_id >= MONO_TABLE_NUM)
2163                 return NULL;
2164         return &image->tables [table_id];
2165 }
2166
2167 int
2168 mono_image_get_table_rows (MonoImage *image, int table_id)
2169 {
2170         if (table_id < 0 || table_id >= MONO_TABLE_NUM)
2171                 return 0;
2172         return image->tables [table_id].rows;
2173 }
2174
2175 int
2176 mono_table_info_get_rows (const MonoTableInfo *table)
2177 {
2178         return table->rows;
2179 }
2180
2181 /**
2182  * mono_image_get_assembly:
2183  * @image: the MonoImage.
2184  *
2185  * Use this routine to get the assembly that owns this image.
2186  *
2187  * Returns: the assembly that holds this image.
2188  */
2189 MonoAssembly* 
2190 mono_image_get_assembly (MonoImage *image)
2191 {
2192         return image->assembly;
2193 }
2194
2195 /**
2196  * mono_image_is_dynamic:
2197  * @image: the MonoImage
2198  *
2199  * Determines if the given image was created dynamically through the
2200  * System.Reflection.Emit API
2201  *
2202  * Returns: TRUE if the image was created dynamically, FALSE if not.
2203  */
2204 gboolean
2205 mono_image_is_dynamic (MonoImage *image)
2206 {
2207         return image->dynamic;
2208 }
2209
2210 /**
2211  * mono_image_has_authenticode_entry:
2212  * @image: the MonoImage
2213  *
2214  * Use this routine to determine if the image has a Authenticode
2215  * Certificate Table.
2216  *
2217  * Returns: TRUE if the image contains an authenticode entry in the PE
2218  * directory.
2219  */
2220 gboolean
2221 mono_image_has_authenticode_entry (MonoImage *image)
2222 {
2223         MonoCLIImageInfo *iinfo = image->image_info;
2224         MonoDotNetHeader *header = &iinfo->cli_header;
2225         MonoPEDirEntry *de = &header->datadir.pe_certificate_table;
2226         // the Authenticode "pre" (non ASN.1) header is 8 bytes long
2227         return ((de->rva != 0) && (de->size > 8));
2228 }
2229
2230 gpointer
2231 mono_image_alloc (MonoImage *image, guint size)
2232 {
2233         gpointer res;
2234
2235 #ifndef DISABLE_PERFCOUNTERS
2236         mono_perfcounters->loader_bytes += size;
2237 #endif
2238         mono_image_lock (image);
2239         res = mono_mempool_alloc (image->mempool, size);
2240         mono_image_unlock (image);
2241
2242         return res;
2243 }
2244
2245 gpointer
2246 mono_image_alloc0 (MonoImage *image, guint size)
2247 {
2248         gpointer res;
2249
2250 #ifndef DISABLE_PERFCOUNTERS
2251         mono_perfcounters->loader_bytes += size;
2252 #endif
2253         mono_image_lock (image);
2254         res = mono_mempool_alloc0 (image->mempool, size);
2255         mono_image_unlock (image);
2256
2257         return res;
2258 }
2259
2260 char*
2261 mono_image_strdup (MonoImage *image, const char *s)
2262 {
2263         char *res;
2264
2265 #ifndef DISABLE_PERFCOUNTERS
2266         mono_perfcounters->loader_bytes += strlen (s);
2267 #endif
2268         mono_image_lock (image);
2269         res = mono_mempool_strdup (image->mempool, s);
2270         mono_image_unlock (image);
2271
2272         return res;
2273 }
2274
2275 GList*
2276 g_list_prepend_image (MonoImage *image, GList *list, gpointer data)
2277 {
2278         GList *new_list;
2279         
2280         new_list = mono_image_alloc (image, sizeof (GList));
2281         new_list->data = data;
2282         new_list->prev = list ? list->prev : NULL;
2283     new_list->next = list;
2284
2285     if (new_list->prev)
2286             new_list->prev->next = new_list;
2287     if (list)
2288             list->prev = new_list;
2289
2290         return new_list;
2291 }
2292
2293 GSList*
2294 g_slist_append_image (MonoImage *image, GSList *list, gpointer data)
2295 {
2296         GSList *new_list;
2297
2298         new_list = mono_image_alloc (image, sizeof (GSList));
2299         new_list->data = data;
2300         new_list->next = NULL;
2301
2302         return g_slist_concat (list, new_list);
2303 }
2304
2305 void
2306 mono_image_lock (MonoImage *image)
2307 {
2308         mono_locks_acquire (&image->lock, ImageDataLock);
2309 }
2310
2311 void
2312 mono_image_unlock (MonoImage *image)
2313 {
2314         mono_locks_release (&image->lock, ImageDataLock);
2315 }
2316
2317
2318 /**
2319  * mono_image_property_lookup:
2320  *
2321  * Lookup a property on @image. Used to store very rare fields of MonoClass and MonoMethod.
2322  *
2323  * LOCKING: Takes the image lock
2324  */
2325 gpointer 
2326 mono_image_property_lookup (MonoImage *image, gpointer subject, guint32 property)
2327 {
2328         gpointer res;
2329
2330         mono_image_lock (image);
2331         res = mono_property_hash_lookup (image->property_hash, subject, property);
2332         mono_image_unlock (image);
2333
2334         return res;
2335 }
2336
2337 /**
2338  * mono_image_property_insert:
2339  *
2340  * Insert a new property @property with value @value on @subject in @image. Used to store very rare fields of MonoClass and MonoMethod.
2341  *
2342  * LOCKING: Takes the image lock
2343  */
2344 void
2345 mono_image_property_insert (MonoImage *image, gpointer subject, guint32 property, gpointer value)
2346 {
2347         mono_image_lock (image);
2348         mono_property_hash_insert (image->property_hash, subject, property, value);
2349         mono_image_unlock (image);
2350 }
2351
2352 /**
2353  * mono_image_property_remove:
2354  *
2355  * Remove all properties associated with @subject in @image. Used to store very rare fields of MonoClass and MonoMethod.
2356  *
2357  * LOCKING: Takes the image lock
2358  */
2359 void
2360 mono_image_property_remove (MonoImage *image, gpointer subject)
2361 {
2362         mono_image_lock (image);
2363         mono_property_hash_remove_object (image->property_hash, subject);
2364         mono_image_unlock (image);
2365 }