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