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