Merge pull request #2781 from alexanderkyte/inflated_method_header_leak
[mono.git] / mono / metadata / loader.c
1 /*
2  * loader.c: Image Loader 
3  *
4  * Authors:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Miguel de Icaza (miguel@ximian.com)
7  *   Patrik Torstensson (patrik.torstensson@labs2.com)
8  *
9  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
10  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
11  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
12  *
13  * This file is used by the interpreter and the JIT engine to locate
14  * assemblies.  Used to load AssemblyRef and later to resolve various
15  * kinds of `Refs'.
16  *
17  * TODO:
18  *   This should keep track of the assembly versions that we are loading.
19  *
20  */
21 #include <config.h>
22 #include <glib.h>
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <mono/metadata/metadata.h>
27 #include <mono/metadata/image.h>
28 #include <mono/metadata/assembly.h>
29 #include <mono/metadata/tokentype.h>
30 #include <mono/metadata/tabledefs.h>
31 #include <mono/metadata/metadata-internals.h>
32 #include <mono/metadata/loader.h>
33 #include <mono/metadata/class-internals.h>
34 #include <mono/metadata/debug-helpers.h>
35 #include <mono/metadata/reflection.h>
36 #include <mono/metadata/profiler.h>
37 #include <mono/metadata/profiler-private.h>
38 #include <mono/metadata/exception.h>
39 #include <mono/metadata/marshal.h>
40 #include <mono/metadata/lock-tracer.h>
41 #include <mono/metadata/verify-internals.h>
42 #include <mono/utils/mono-logger-internals.h>
43 #include <mono/utils/mono-dl.h>
44 #include <mono/utils/mono-membar.h>
45 #include <mono/utils/mono-counters.h>
46 #include <mono/utils/mono-error-internals.h>
47 #include <mono/utils/mono-tls.h>
48 #include <mono/utils/mono-path.h>
49
50 MonoDefaults mono_defaults;
51
52 /*
53  * This lock protects the hash tables inside MonoImage used by the metadata 
54  * loading functions in class.c and loader.c.
55  *
56  * See domain-internals.h for locking policy in combination with the
57  * domain lock.
58  */
59 static MonoCoopMutex loader_mutex;
60 static mono_mutex_t global_loader_data_mutex;
61 static gboolean loader_lock_inited;
62
63 /* Statistics */
64 static guint32 inflated_signatures_size;
65 static guint32 memberref_sig_cache_size;
66 static guint32 methods_size;
67 static guint32 signatures_size;
68
69 /*
70  * This TLS variable contains the last type load error encountered by the loader.
71  */
72 MonoNativeTlsKey loader_error_thread_id;
73
74 /*
75  * This TLS variable holds how many times the current thread has acquired the loader 
76  * lock.
77  */
78 MonoNativeTlsKey loader_lock_nest_id;
79
80 static void dllmap_cleanup (void);
81
82
83 static void
84 global_loader_data_lock (void)
85 {
86         mono_locks_os_acquire (&global_loader_data_mutex, LoaderGlobalDataLock);
87 }
88
89 static void
90 global_loader_data_unlock (void)
91 {
92         mono_locks_os_release (&global_loader_data_mutex, LoaderGlobalDataLock);
93 }
94
95 void
96 mono_loader_init ()
97 {
98         static gboolean inited;
99
100         if (!inited) {
101                 mono_coop_mutex_init_recursive (&loader_mutex);
102                 mono_os_mutex_init_recursive (&global_loader_data_mutex);
103                 loader_lock_inited = TRUE;
104
105                 mono_native_tls_alloc (&loader_error_thread_id, NULL);
106                 mono_native_tls_alloc (&loader_lock_nest_id, NULL);
107
108                 mono_counters_init ();
109                 mono_counters_register ("Inflated signatures size",
110                                                                 MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_signatures_size);
111                 mono_counters_register ("Memberref signature cache size",
112                                                                 MONO_COUNTER_METADATA | MONO_COUNTER_INT, &memberref_sig_cache_size);
113                 mono_counters_register ("MonoMethod size",
114                                                                 MONO_COUNTER_METADATA | MONO_COUNTER_INT, &methods_size);
115                 mono_counters_register ("MonoMethodSignature size",
116                                                                 MONO_COUNTER_METADATA | MONO_COUNTER_INT, &signatures_size);
117
118                 inited = TRUE;
119         }
120 }
121
122 void
123 mono_loader_cleanup (void)
124 {
125         dllmap_cleanup ();
126
127         mono_native_tls_free (loader_error_thread_id);
128         mono_native_tls_free (loader_lock_nest_id);
129
130         mono_coop_mutex_destroy (&loader_mutex);
131         mono_os_mutex_destroy (&global_loader_data_mutex);
132         loader_lock_inited = FALSE;     
133 }
134
135 /*
136  * Handling of type load errors should be done as follows:
137  *
138  *   If something could not be loaded, the loader should call one of the
139  * mono_loader_set_error_XXX functions ()
140  * with the appropriate arguments, then return NULL to report the failure. The error 
141  * should be propagated until it reaches code which can throw managed exceptions. At that
142  * point, an exception should be thrown based on the information returned by
143  * mono_loader_get_last_error (). Then the error should be cleared by calling 
144  * mono_loader_clear_error ().
145  */
146
147 static void
148 set_loader_error (MonoLoaderError *error)
149 {
150         mono_loader_clear_error ();
151         mono_native_tls_set_value (loader_error_thread_id, error);
152 }
153
154 /**
155  * mono_loader_set_error_assembly_load:
156  *
157  * Set the loader error for this thread. 
158  */
159 void
160 mono_loader_set_error_assembly_load (const char *assembly_name, gboolean ref_only)
161 {
162         MonoLoaderError *error;
163
164         if (mono_loader_get_last_error ()) 
165                 return;
166
167         error = g_new0 (MonoLoaderError, 1);
168         error->exception_type = MONO_EXCEPTION_FILE_NOT_FOUND;
169         error->assembly_name = g_strdup (assembly_name);
170         error->ref_only = ref_only;
171
172         /* 
173          * This is not strictly needed, but some (most) of the loader code still
174          * can't deal with load errors, and this message is more helpful than an
175          * assert.
176          */
177         if (ref_only)
178                 mono_trace (G_LOG_LEVEL_WARNING, MONO_TRACE_ASSEMBLY, "Cannot resolve dependency to assembly '%s' because it has not been preloaded. When using the ReflectionOnly APIs, dependent assemblies must be pre-loaded or loaded on demand through the ReflectionOnlyAssemblyResolve event.", assembly_name);
179         else
180                 mono_trace (G_LOG_LEVEL_WARNING, MONO_TRACE_ASSEMBLY, "Could not load file or assembly '%s' or one of its dependencies.", assembly_name);
181
182         set_loader_error (error);
183 }
184
185 /**
186  * mono_loader_set_error_type_load:
187  *
188  * Set the loader error for this thread. 
189  */
190 void
191 mono_loader_set_error_type_load (const char *class_name, const char *assembly_name)
192 {
193         MonoLoaderError *error;
194
195         if (mono_loader_get_last_error ()) 
196                 return;
197
198         error = g_new0 (MonoLoaderError, 1);
199         error->exception_type = MONO_EXCEPTION_TYPE_LOAD;
200         error->class_name = g_strdup (class_name);
201         error->assembly_name = g_strdup (assembly_name);
202
203         /* 
204          * This is not strictly needed, but some (most) of the loader code still
205          * can't deal with load errors, and this message is more helpful than an
206          * assert.
207          */
208         mono_trace_warning (MONO_TRACE_TYPE, "The class %s could not be loaded, used in %s", class_name, assembly_name);
209
210         set_loader_error (error);
211 }
212
213 /*
214  * mono_loader_set_error_method_load:
215  *
216  *   Set the loader error for this thread. MEMBER_NAME should point to a string
217  * inside metadata.
218  */
219 void
220 mono_loader_set_error_method_load (const char *class_name, const char *member_name)
221 {
222         MonoLoaderError *error;
223
224         /* FIXME: Store the signature as well */
225         if (mono_loader_get_last_error ())
226                 return;
227
228         error = g_new0 (MonoLoaderError, 1);
229         error->exception_type = MONO_EXCEPTION_MISSING_METHOD;
230         error->class_name = g_strdup (class_name);
231         error->member_name = member_name;
232
233         set_loader_error (error);
234 }
235
236 /*
237  * mono_loader_set_error_field_load:
238  *
239  * Set the loader error for this thread. MEMBER_NAME should point to a string
240  * inside metadata.
241  */
242 void
243 mono_loader_set_error_field_load (MonoClass *klass, const char *member_name)
244 {
245         MonoLoaderError *error;
246
247         /* FIXME: Store the signature as well */
248         if (mono_loader_get_last_error ())
249                 return;
250
251         error = g_new0 (MonoLoaderError, 1);
252         error->exception_type = MONO_EXCEPTION_MISSING_FIELD;
253         error->klass = klass;
254         error->member_name = member_name;
255
256         set_loader_error (error);
257 }
258
259 /*
260  * mono_loader_set_error_bad_image:
261  *
262  * Set the loader error for this thread. 
263  */
264 void
265 mono_loader_set_error_bad_image (char *msg)
266 {
267         MonoLoaderError *error;
268
269         if (mono_loader_get_last_error ())
270                 return;
271
272         error = g_new0 (MonoLoaderError, 1);
273         error->exception_type = MONO_EXCEPTION_BAD_IMAGE;
274         error->msg = msg;
275
276         set_loader_error (error);
277 }       
278
279
280 /*
281  * mono_loader_get_last_error:
282  *
283  *   Returns information about the last type load exception encountered by the loader, or
284  * NULL. After use, the exception should be cleared by calling mono_loader_clear_error.
285  */
286 MonoLoaderError*
287 mono_loader_get_last_error (void)
288 {
289         return (MonoLoaderError*)mono_native_tls_get_value (loader_error_thread_id);
290 }
291
292 void
293 mono_loader_assert_no_error (void)
294 {
295         MonoLoaderError *error = mono_loader_get_last_error ();
296
297         if (error) {
298                 g_print ("Unhandled loader error: %x, %s %s %s\n", error->exception_type, error->msg, error->assembly_name, error->class_name);
299                 g_assert_not_reached ();
300         }
301 }
302
303 /**
304  * mono_loader_clear_error:
305  *
306  * Disposes any loader error messages on this thread
307  */
308 void
309 mono_loader_clear_error (void)
310 {
311         MonoLoaderError *ex = (MonoLoaderError*)mono_native_tls_get_value (loader_error_thread_id);
312
313         if (ex) {
314                 g_free (ex->class_name);
315                 g_free (ex->assembly_name);
316                 g_free (ex->msg);
317                 g_free (ex);
318
319                 mono_native_tls_set_value (loader_error_thread_id, NULL);
320         }
321 }
322
323 /**
324  * mono_loader_error_prepare_exception:
325  * @error: The MonoLoaderError to turn into an exception
326  *
327  * This turns a MonoLoaderError into an exception that can be thrown
328  * and resets the Mono Loader Error state during this process.
329  *
330  */
331 MonoException *
332 mono_loader_error_prepare_exception (MonoLoaderError *error)
333 {
334         MonoException *ex = NULL;
335
336         switch (error->exception_type) {
337         case MONO_EXCEPTION_TYPE_LOAD: {
338                 char *cname = g_strdup (error->class_name);
339                 char *aname = g_strdup (error->assembly_name);
340                 MonoString *class_name;
341                 
342                 mono_loader_clear_error ();
343                 
344                 class_name = mono_string_new (mono_domain_get (), cname);
345
346                 ex = mono_get_exception_type_load (class_name, aname);
347                 g_free (cname);
348                 g_free (aname);
349                 break;
350         }
351         case MONO_EXCEPTION_MISSING_METHOD: {
352                 char *cname = g_strdup (error->class_name);
353                 char *aname = g_strdup (error->member_name);
354                 
355                 mono_loader_clear_error ();
356                 ex = mono_get_exception_missing_method (cname, aname);
357                 g_free (cname);
358                 g_free (aname);
359                 break;
360         }
361                 
362         case MONO_EXCEPTION_MISSING_FIELD: {
363                 char *class_name;
364                 char *cmembername = g_strdup (error->member_name);
365                 if (error->klass)
366                         class_name = mono_type_get_full_name (error->klass);
367                 else
368                         class_name = g_strdup ("");
369
370                 mono_loader_clear_error ();
371                 
372                 ex = mono_get_exception_missing_field (class_name, cmembername);
373                 g_free (class_name);
374                 g_free (cmembername);
375                 break;
376         }
377         
378         case MONO_EXCEPTION_FILE_NOT_FOUND: {
379                 char *msg;
380                 char *filename;
381
382                 if (error->ref_only)
383                         msg = g_strdup_printf ("Cannot resolve dependency to assembly '%s' because it has not been preloaded. When using the ReflectionOnly APIs, dependent assemblies must be pre-loaded or loaded on demand through the ReflectionOnlyAssemblyResolve event.", error->assembly_name);
384                 else
385                         msg = g_strdup_printf ("Could not load file or assembly '%s' or one of its dependencies.", error->assembly_name);
386                 filename = g_strdup (error->assembly_name);
387                 /* Has to call this before calling anything which might call mono_class_init () */
388                 mono_loader_clear_error ();
389                 ex = mono_get_exception_file_not_found2 (msg, mono_string_new (mono_domain_get (), filename));
390                 g_free (msg);
391                 g_free (filename);
392                 break;
393         }
394
395         case MONO_EXCEPTION_BAD_IMAGE: {
396                 char *msg = g_strdup (error->msg);
397                 mono_loader_clear_error ();
398                 ex = mono_get_exception_bad_image_format (msg);
399                 g_free (msg);
400                 break;
401         }
402
403         default:
404                 g_assert_not_reached ();
405         }
406
407         return ex;
408 }
409
410 /*
411  * find_cached_memberref_sig:
412  *
413  *   Return a cached copy of the memberref signature identified by SIG_IDX.
414  * We use a gpointer since the cache stores both MonoTypes and MonoMethodSignatures.
415  * A cache is needed since the type/signature parsing routines allocate everything 
416  * from a mempool, so without a cache, multiple requests for the same signature would 
417  * lead to unbounded memory growth. For normal methods/fields this is not a problem 
418  * since the resulting methods/fields are cached, but inflated methods/fields cannot
419  * be cached.
420  * LOCKING: Acquires the loader lock.
421  */
422 static gpointer
423 find_cached_memberref_sig (MonoImage *image, guint32 sig_idx)
424 {
425         gpointer res;
426
427         mono_image_lock (image);
428         res = g_hash_table_lookup (image->memberref_signatures, GUINT_TO_POINTER (sig_idx));
429         mono_image_unlock (image);
430
431         return res;
432 }
433
434 static gpointer
435 cache_memberref_sig (MonoImage *image, guint32 sig_idx, gpointer sig)
436 {
437         gpointer prev_sig;
438
439         mono_image_lock (image);
440         prev_sig = g_hash_table_lookup (image->memberref_signatures, GUINT_TO_POINTER (sig_idx));
441         if (prev_sig) {
442                 /* Somebody got in before us */
443                 sig = prev_sig;
444         }
445         else {
446                 g_hash_table_insert (image->memberref_signatures, GUINT_TO_POINTER (sig_idx), sig);
447                 /* An approximation based on glib 2.18 */
448                 memberref_sig_cache_size += sizeof (gpointer) * 4;
449         }
450         mono_image_unlock (image);
451
452         return sig;
453 }
454
455 static MonoClassField*
456 field_from_memberref (MonoImage *image, guint32 token, MonoClass **retklass,
457                       MonoGenericContext *context, MonoError *error)
458 {
459         MonoClass *klass = NULL;
460         MonoClassField *field;
461         MonoTableInfo *tables = image->tables;
462         MonoType *sig_type;
463         guint32 cols[6];
464         guint32 nindex, class_index;
465         const char *fname;
466         const char *ptr;
467         guint32 idx = mono_metadata_token_index (token);
468
469         mono_error_init (error);
470
471         mono_metadata_decode_row (&tables [MONO_TABLE_MEMBERREF], idx-1, cols, MONO_MEMBERREF_SIZE);
472         nindex = cols [MONO_MEMBERREF_CLASS] >> MONO_MEMBERREF_PARENT_BITS;
473         class_index = cols [MONO_MEMBERREF_CLASS] & MONO_MEMBERREF_PARENT_MASK;
474
475         fname = mono_metadata_string_heap (image, cols [MONO_MEMBERREF_NAME]);
476
477         if (!mono_verifier_verify_memberref_field_signature (image, cols [MONO_MEMBERREF_SIGNATURE], NULL)) {
478                 mono_error_set_bad_image (error, image, "Bad field '%s' signature 0x%08x", class_index, token);
479                 return NULL;
480         }
481
482         switch (class_index) {
483         case MONO_MEMBERREF_PARENT_TYPEDEF:
484                 klass = mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF | nindex, error);
485                 break;
486         case MONO_MEMBERREF_PARENT_TYPEREF:
487                 klass = mono_class_from_typeref_checked (image, MONO_TOKEN_TYPE_REF | nindex, error);
488                 break;
489         case MONO_MEMBERREF_PARENT_TYPESPEC:
490                 klass = mono_class_get_and_inflate_typespec_checked (image, MONO_TOKEN_TYPE_SPEC | nindex, context, error);
491                 break;
492         default:
493                 mono_error_set_bad_image (error, image, "Bad field field '%s' signature 0x%08x", class_index, token);
494         }
495
496         if (!klass)
497                 return NULL;
498
499         ptr = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
500         mono_metadata_decode_blob_size (ptr, &ptr);
501         /* we may want to check the signature here... */
502
503         if (*ptr++ != 0x6) {
504                 mono_error_set_field_load (error, klass, fname, "Bad field signature class token %08x field name %s token %08x", class_index, fname, token);
505                 return NULL;
506         }
507
508         /* FIXME: This needs a cache, especially for generic instances, since
509          * we ask mono_metadata_parse_type_checked () to allocates everything from a mempool.
510          * FIXME part2, mono_metadata_parse_type_checked actually allows for a transient type instead.
511          * FIXME part3, transient types are not 100% transient, so we need to take care of that first.
512          */
513         sig_type = (MonoType *)find_cached_memberref_sig (image, cols [MONO_MEMBERREF_SIGNATURE]);
514         if (!sig_type) {
515                 MonoError inner_error;
516                 sig_type = mono_metadata_parse_type_checked (image, NULL, 0, FALSE, ptr, &ptr, &inner_error);
517                 if (sig_type == NULL) {
518                         mono_error_set_field_load (error, klass, fname, "Could not parse field '%s' signature %08x due to: %s", fname, token, mono_error_get_message (&inner_error));
519                         mono_error_cleanup (&inner_error);
520                         return NULL;
521                 }
522                 sig_type = (MonoType *)cache_memberref_sig (image, cols [MONO_MEMBERREF_SIGNATURE], sig_type);
523         }
524
525         mono_class_init (klass); /*FIXME is this really necessary?*/
526         if (retklass)
527                 *retklass = klass;
528         field = mono_class_get_field_from_name_full (klass, fname, sig_type);
529
530         if (!field) {
531                 mono_loader_assert_no_error ();
532                 mono_error_set_field_load (error, klass, fname, "Could not find field '%s'", fname);
533         }
534
535         return field;
536 }
537
538 /*
539  * mono_field_from_token:
540  * @deprecated use the _checked variant
541  * Notes: runtime code MUST not use this function
542 */
543 MonoClassField*
544 mono_field_from_token (MonoImage *image, guint32 token, MonoClass **retklass, MonoGenericContext *context)
545 {
546         MonoError error;
547         MonoClassField *res = mono_field_from_token_checked (image, token, retklass, context, &error);
548         g_assert (mono_error_ok (&error));
549         return res;
550 }
551
552 MonoClassField*
553 mono_field_from_token_checked (MonoImage *image, guint32 token, MonoClass **retklass, MonoGenericContext *context, MonoError *error)
554 {
555         MonoClass *k;
556         guint32 type;
557         MonoClassField *field;
558
559         mono_error_init (error);
560
561         if (image_is_dynamic (image)) {
562                 MonoClassField *result;
563                 MonoClass *handle_class;
564
565                 *retklass = NULL;
566                 MonoError inner_error;
567                 result = (MonoClassField *)mono_lookup_dynamic_token_class (image, token, TRUE, &handle_class, context, &inner_error);
568                 mono_error_cleanup (&inner_error);
569                 // This checks the memberref type as well
570                 if (!result || handle_class != mono_defaults.fieldhandle_class) {
571                         mono_error_set_bad_image (error, image, "Bad field token 0x%08x", token);
572                         return NULL;
573                 }
574                 *retklass = result->parent;
575                 return result;
576         }
577
578         if ((field = (MonoClassField *)mono_conc_hashtable_lookup (image->field_cache, GUINT_TO_POINTER (token)))) {
579                 *retklass = field->parent;
580                 return field;
581         }
582
583         if (mono_metadata_token_table (token) == MONO_TABLE_MEMBERREF) {
584                 field = field_from_memberref (image, token, retklass, context, error);
585                 mono_loader_assert_no_error ();
586         } else {
587                 type = mono_metadata_typedef_from_field (image, mono_metadata_token_index (token));
588                 if (!type) {
589                         mono_error_set_bad_image (error, image, "Invalid field token 0x%08x", token);
590                         return NULL;
591                 }
592                 k = mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF | type, error);
593                 if (!k)
594                         return NULL;
595
596                 mono_class_init (k);
597                 if (retklass)
598                         *retklass = k;
599                 field = mono_class_get_field (k, token);
600                 if (!field) {
601                         if (mono_loader_get_last_error ())
602                                 mono_error_set_from_loader_error (error);
603                         else
604                                 mono_error_set_bad_image (error, image, "Could not resolve field token 0x%08x", token);
605                 }
606         }
607
608         if (field && field->parent && !field->parent->generic_class && !field->parent->generic_container) {
609                 mono_image_lock (image);
610                 mono_conc_hashtable_insert (image->field_cache, GUINT_TO_POINTER (token), field);
611                 mono_image_unlock (image);
612         }
613
614         mono_loader_assert_no_error ();
615         return field;
616 }
617
618 static gboolean
619 mono_metadata_signature_vararg_match (MonoMethodSignature *sig1, MonoMethodSignature *sig2)
620 {
621         int i;
622
623         if (sig1->hasthis != sig2->hasthis ||
624             sig1->sentinelpos != sig2->sentinelpos)
625                 return FALSE;
626
627         for (i = 0; i < sig1->sentinelpos; i++) { 
628                 MonoType *p1 = sig1->params[i];
629                 MonoType *p2 = sig2->params[i];
630
631                 /*if (p1->attrs != p2->attrs)
632                         return FALSE;
633                 */
634                 if (!mono_metadata_type_equal (p1, p2))
635                         return FALSE;
636         }
637
638         if (!mono_metadata_type_equal (sig1->ret, sig2->ret))
639                 return FALSE;
640         return TRUE;
641 }
642
643 static MonoMethod *
644 find_method_in_class (MonoClass *klass, const char *name, const char *qname, const char *fqname,
645                       MonoMethodSignature *sig, MonoClass *from_class, MonoError *error)
646 {
647         int i;
648
649         /* Search directly in the metadata to avoid calling setup_methods () */
650         mono_error_init (error);
651
652         /* FIXME: !from_class->generic_class condition causes test failures. */
653         if (klass->type_token && !image_is_dynamic (klass->image) && !klass->methods && !klass->rank && klass == from_class && !from_class->generic_class) {
654                 for (i = 0; i < klass->method.count; ++i) {
655                         guint32 cols [MONO_METHOD_SIZE];
656                         MonoMethod *method;
657                         const char *m_name;
658                         MonoMethodSignature *other_sig;
659
660                         mono_metadata_decode_table_row (klass->image, MONO_TABLE_METHOD, klass->method.first + i, cols, MONO_METHOD_SIZE);
661
662                         m_name = mono_metadata_string_heap (klass->image, cols [MONO_METHOD_NAME]);
663
664                         if (!((fqname && !strcmp (m_name, fqname)) ||
665                                   (qname && !strcmp (m_name, qname)) ||
666                                   (name && !strcmp (m_name, name))))
667                                 continue;
668
669                         method = mono_get_method_checked (klass->image, MONO_TOKEN_METHOD_DEF | (klass->method.first + i + 1), klass, NULL, error);
670                         if (!mono_error_ok (error)) //bail out if we hit a loader error
671                                 return NULL;
672                         if (method) {
673                                 other_sig = mono_method_signature_checked (method, error);
674                                 if (!mono_error_ok (error)) //bail out if we hit a loader error
675                                         return NULL;                            
676                                 if (other_sig && (sig->call_convention != MONO_CALL_VARARG) && mono_metadata_signature_equal (sig, other_sig))
677                                         return method;
678                         }
679                 }
680         }
681
682         mono_class_setup_methods (klass); /* FIXME don't swallow the error here. */
683         /*
684         We can't fail lookup of methods otherwise the runtime will fail with MissingMethodException instead of TypeLoadException.
685         See mono/tests/generic-type-load-exception.2.il
686         FIXME we should better report this error to the caller
687          */
688         if (!klass->methods || mono_class_has_failure (klass)) {
689                 mono_error_set_type_load_class (error, klass, "Could not find method due to a type load error"); //FIXME get the error from the class 
690
691                 return NULL;
692         }
693         for (i = 0; i < klass->method.count; ++i) {
694                 MonoMethod *m = klass->methods [i];
695                 MonoMethodSignature *msig;
696
697                 /* We must cope with failing to load some of the types. */
698                 if (!m)
699                         continue;
700
701                 if (!((fqname && !strcmp (m->name, fqname)) ||
702                       (qname && !strcmp (m->name, qname)) ||
703                       (name && !strcmp (m->name, name))))
704                         continue;
705                 msig = mono_method_signature_checked (m, error);
706                 if (!mono_error_ok (error)) //bail out if we hit a loader error
707                         return NULL;
708
709                 if (!msig)
710                         continue;
711
712                 if (sig->call_convention == MONO_CALL_VARARG) {
713                         if (mono_metadata_signature_vararg_match (sig, msig))
714                                 break;
715                 } else {
716                         if (mono_metadata_signature_equal (sig, msig))
717                                 break;
718                 }
719         }
720
721         if (i < klass->method.count)
722                 return mono_class_get_method_by_index (from_class, i);
723         return NULL;
724 }
725
726 static MonoMethod *
727 find_method (MonoClass *in_class, MonoClass *ic, const char* name, MonoMethodSignature *sig, MonoClass *from_class, MonoError *error)
728 {
729         int i;
730         char *qname, *fqname, *class_name;
731         gboolean is_interface;
732         MonoMethod *result = NULL;
733         MonoClass *initial_class = in_class;
734
735         mono_error_init (error);
736         is_interface = MONO_CLASS_IS_INTERFACE (in_class);
737
738         if (ic) {
739                 class_name = mono_type_get_name_full (&ic->byval_arg, MONO_TYPE_NAME_FORMAT_IL);
740
741                 qname = g_strconcat (class_name, ".", name, NULL); 
742                 if (ic->name_space && ic->name_space [0])
743                         fqname = g_strconcat (ic->name_space, ".", class_name, ".", name, NULL);
744                 else
745                         fqname = NULL;
746         } else
747                 class_name = qname = fqname = NULL;
748
749         while (in_class) {
750                 g_assert (from_class);
751                 result = find_method_in_class (in_class, name, qname, fqname, sig, from_class, error);
752                 if (result || !mono_error_ok (error))
753                         goto out;
754
755                 if (name [0] == '.' && (!strcmp (name, ".ctor") || !strcmp (name, ".cctor")))
756                         break;
757
758                 /*
759                  * This happens when we fail to lazily load the interfaces of one of the types.
760                  * On such case we can't just bail out since user code depends on us trying harder.
761                  */
762                 if (from_class->interface_offsets_count != in_class->interface_offsets_count) {
763                         in_class = in_class->parent;
764                         from_class = from_class->parent;
765                         continue;
766                 }
767
768                 for (i = 0; i < in_class->interface_offsets_count; i++) {
769                         MonoClass *in_ic = in_class->interfaces_packed [i];
770                         MonoClass *from_ic = from_class->interfaces_packed [i];
771                         char *ic_qname, *ic_fqname, *ic_class_name;
772                         
773                         ic_class_name = mono_type_get_name_full (&in_ic->byval_arg, MONO_TYPE_NAME_FORMAT_IL);
774                         ic_qname = g_strconcat (ic_class_name, ".", name, NULL); 
775                         if (in_ic->name_space && in_ic->name_space [0])
776                                 ic_fqname = g_strconcat (in_ic->name_space, ".", ic_class_name, ".", name, NULL);
777                         else
778                                 ic_fqname = NULL;
779
780                         result = find_method_in_class (in_ic, ic ? name : NULL, ic_qname, ic_fqname, sig, from_ic, error);
781                         g_free (ic_class_name);
782                         g_free (ic_fqname);
783                         g_free (ic_qname);
784                         if (result || !mono_error_ok (error))
785                                 goto out;
786                 }
787
788                 in_class = in_class->parent;
789                 from_class = from_class->parent;
790         }
791         g_assert (!in_class == !from_class);
792
793         if (is_interface)
794                 result = find_method_in_class (mono_defaults.object_class, name, qname, fqname, sig, mono_defaults.object_class, error);
795
796         //we did not find the method
797         if (!result && mono_error_ok (error)) {
798                 char *desc = mono_signature_get_desc (sig, FALSE);
799                 mono_error_set_method_load (error, initial_class, name, "Could not find method with signature %s", desc);
800                 g_free (desc);
801         }
802                 
803  out:
804         g_free (class_name);
805         g_free (fqname);
806         g_free (qname);
807         return result;
808 }
809
810 static MonoMethodSignature*
811 inflate_generic_signature_checked (MonoImage *image, MonoMethodSignature *sig, MonoGenericContext *context, MonoError *error)
812 {
813         MonoMethodSignature *res;
814         gboolean is_open;
815         int i;
816
817         mono_error_init (error);
818         if (!context)
819                 return sig;
820
821         res = (MonoMethodSignature *)g_malloc0 (MONO_SIZEOF_METHOD_SIGNATURE + ((gint32)sig->param_count) * sizeof (MonoType*));
822         res->param_count = sig->param_count;
823         res->sentinelpos = -1;
824         res->ret = mono_class_inflate_generic_type_checked (sig->ret, context, error);
825         if (!mono_error_ok (error))
826                 goto fail;
827         is_open = mono_class_is_open_constructed_type (res->ret);
828         for (i = 0; i < sig->param_count; ++i) {
829                 res->params [i] = mono_class_inflate_generic_type_checked (sig->params [i], context, error);
830                 if (!mono_error_ok (error))
831                         goto fail;
832
833                 if (!is_open)
834                         is_open = mono_class_is_open_constructed_type (res->params [i]);
835         }
836         res->hasthis = sig->hasthis;
837         res->explicit_this = sig->explicit_this;
838         res->call_convention = sig->call_convention;
839         res->pinvoke = sig->pinvoke;
840         res->generic_param_count = sig->generic_param_count;
841         res->sentinelpos = sig->sentinelpos;
842         res->has_type_parameters = is_open;
843         res->is_inflated = 1;
844         return res;
845
846 fail:
847         if (res->ret)
848                 mono_metadata_free_type (res->ret);
849         for (i = 0; i < sig->param_count; ++i) {
850                 if (res->params [i])
851                         mono_metadata_free_type (res->params [i]);
852         }
853         g_free (res);
854         return NULL;
855 }
856
857 /*
858  * mono_inflate_generic_signature:
859  *
860  *   Inflate SIG with CONTEXT, and return a canonical copy. On error, set ERROR, and return NULL.
861  */
862 MonoMethodSignature*
863 mono_inflate_generic_signature (MonoMethodSignature *sig, MonoGenericContext *context, MonoError *error)
864 {
865         MonoMethodSignature *res, *cached;
866
867         res = inflate_generic_signature_checked (NULL, sig, context, error);
868         if (!mono_error_ok (error))
869                 return NULL;
870         cached = mono_metadata_get_inflated_signature (res, context);
871         if (cached != res)
872                 mono_metadata_free_inflated_signature (res);
873         return cached;
874 }
875
876 static MonoMethodHeader*
877 inflate_generic_header (MonoMethodHeader *header, MonoGenericContext *context, MonoError *error)
878 {
879         size_t locals_size = sizeof (gpointer) * header->num_locals;
880         size_t clauses_size = header->num_clauses * sizeof (MonoExceptionClause);
881         size_t header_size = MONO_SIZEOF_METHOD_HEADER + locals_size + clauses_size; 
882         MonoMethodHeader *res = (MonoMethodHeader *)g_malloc0 (header_size);
883         res->num_locals = header->num_locals;
884         res->clauses = (MonoExceptionClause *) &res->locals [res->num_locals] ;
885         memcpy (res->clauses, header->clauses, clauses_size);
886
887         res->code = header->code;
888         res->code_size = header->code_size;
889         res->max_stack = header->max_stack;
890         res->num_clauses = header->num_clauses;
891         res->init_locals = header->init_locals;
892
893         res->is_transient = TRUE;
894
895         mono_error_init (error);
896
897         for (int i = 0; i < header->num_locals; ++i) {
898                 res->locals [i] = mono_class_inflate_generic_type_checked (header->locals [i], context, error);
899                 if (!is_ok (error))
900                         goto fail;
901         }
902         if (res->num_clauses) {
903                 for (int i = 0; i < header->num_clauses; ++i) {
904                         MonoExceptionClause *clause = &res->clauses [i];
905                         if (clause->flags != MONO_EXCEPTION_CLAUSE_NONE)
906                                 continue;
907                         clause->data.catch_class = mono_class_inflate_generic_class_checked (clause->data.catch_class, context, error);
908                         if (!is_ok (error))
909                                 goto fail;
910                 }
911         }
912         return res;
913 fail:
914         g_free (res);
915         return NULL;
916 }
917
918 /*
919  * token is the method_ref/def/spec token used in a call IL instruction.
920  * @deprecated use the _checked variant
921  * Notes: runtime code MUST not use this function
922  */
923 MonoMethodSignature*
924 mono_method_get_signature_full (MonoMethod *method, MonoImage *image, guint32 token, MonoGenericContext *context)
925 {
926         MonoError error;
927         MonoMethodSignature *res = mono_method_get_signature_checked (method, image, token, context, &error);
928         mono_error_cleanup (&error);
929         return res;
930 }
931
932 MonoMethodSignature*
933 mono_method_get_signature_checked (MonoMethod *method, MonoImage *image, guint32 token, MonoGenericContext *context, MonoError *error)
934 {
935         int table = mono_metadata_token_table (token);
936         int idx = mono_metadata_token_index (token);
937         int sig_idx;
938         guint32 cols [MONO_MEMBERREF_SIZE];
939         MonoMethodSignature *sig;
940         const char *ptr;
941
942         mono_error_init (error);
943
944         /* !table is for wrappers: we should really assign their own token to them */
945         if (!table || table == MONO_TABLE_METHOD)
946                 return mono_method_signature_checked (method, error);
947
948         if (table == MONO_TABLE_METHODSPEC) {
949                 /* the verifier (do_invoke_method) will turn the NULL into a verifier error */
950                 if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) || !method->is_inflated) {
951                         mono_error_set_bad_image (error, image, "Method is a pinvoke or open generic");
952                         return NULL;
953                 }
954
955                 return mono_method_signature_checked (method, error);
956         }
957
958         if (method->klass->generic_class)
959                 return mono_method_signature_checked (method, error);
960
961         if (image_is_dynamic (image)) {
962                 sig = mono_reflection_lookup_signature (image, method, token, error);
963                 if (!sig)
964                         return NULL;
965         } else {
966                 mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], idx-1, cols, MONO_MEMBERREF_SIZE);
967                 sig_idx = cols [MONO_MEMBERREF_SIGNATURE];
968
969                 sig = (MonoMethodSignature *)find_cached_memberref_sig (image, sig_idx);
970                 if (!sig) {
971                         if (!mono_verifier_verify_memberref_method_signature (image, sig_idx, NULL)) {
972                                 guint32 klass = cols [MONO_MEMBERREF_CLASS] & MONO_MEMBERREF_PARENT_MASK;
973                                 const char *fname = mono_metadata_string_heap (image, cols [MONO_MEMBERREF_NAME]);
974
975                                 //FIXME include the verification error
976                                 mono_error_set_bad_image (error, image, "Bad method signature class token 0x%08x field name %s token 0x%08x", klass, fname, token);
977                                 return NULL;
978                         }
979
980                         ptr = mono_metadata_blob_heap (image, sig_idx);
981                         mono_metadata_decode_blob_size (ptr, &ptr);
982
983                         sig = mono_metadata_parse_method_signature_full (image, NULL, 0, ptr, NULL, error);
984                         if (!sig)
985                                 return NULL;
986
987                         sig = (MonoMethodSignature *)cache_memberref_sig (image, sig_idx, sig);
988                 }
989                 /* FIXME: we probably should verify signature compat in the dynamic case too*/
990                 if (!mono_verifier_is_sig_compatible (image, method, sig)) {
991                         guint32 klass = cols [MONO_MEMBERREF_CLASS] & MONO_MEMBERREF_PARENT_MASK;
992                         const char *fname = mono_metadata_string_heap (image, cols [MONO_MEMBERREF_NAME]);
993
994                         mono_error_set_bad_image (error, image, "Incompatible method signature class token 0x%08x field name %s token 0x%08x", klass, fname, token);
995                         return NULL;
996                 }
997         }
998
999         if (context) {
1000                 MonoMethodSignature *cached;
1001
1002                 /* This signature is not owned by a MonoMethod, so need to cache */
1003                 sig = inflate_generic_signature_checked (image, sig, context, error);
1004                 if (!mono_error_ok (error))
1005                         return NULL;
1006
1007                 cached = mono_metadata_get_inflated_signature (sig, context);
1008                 if (cached != sig)
1009                         mono_metadata_free_inflated_signature (sig);
1010                 else
1011                         inflated_signatures_size += mono_metadata_signature_size (cached);
1012                 sig = cached;
1013         }
1014
1015         g_assert (mono_error_ok (error));
1016         return sig;
1017 }
1018
1019 /*
1020  * token is the method_ref/def/spec token used in a call IL instruction.
1021  * @deprecated use the _checked variant
1022  * Notes: runtime code MUST not use this function
1023  */
1024 MonoMethodSignature*
1025 mono_method_get_signature (MonoMethod *method, MonoImage *image, guint32 token)
1026 {
1027         MonoError error;
1028         MonoMethodSignature *res = mono_method_get_signature_checked (method, image, token, NULL, &error);
1029         mono_error_cleanup (&error);
1030         return res;
1031 }
1032
1033 /* this is only for the typespec array methods */
1034 MonoMethod*
1035 mono_method_search_in_array_class (MonoClass *klass, const char *name, MonoMethodSignature *sig)
1036 {
1037         int i;
1038
1039         mono_class_setup_methods (klass);
1040         g_assert (!mono_class_has_failure (klass)); /*FIXME this should not fail, right?*/
1041         for (i = 0; i < klass->method.count; ++i) {
1042                 MonoMethod *method = klass->methods [i];
1043                 if (strcmp (method->name, name) == 0 && sig->param_count == method->signature->param_count)
1044                         return method;
1045         }
1046         return NULL;
1047 }
1048
1049 static MonoMethod *
1050 method_from_memberref (MonoImage *image, guint32 idx, MonoGenericContext *typespec_context,
1051                        gboolean *used_context, MonoError *error)
1052 {
1053         MonoClass *klass = NULL;
1054         MonoMethod *method = NULL;
1055         MonoTableInfo *tables = image->tables;
1056         guint32 cols[6];
1057         guint32 nindex, class_index, sig_idx;
1058         const char *mname;
1059         MonoMethodSignature *sig;
1060         const char *ptr;
1061
1062         mono_error_init (error);
1063
1064         mono_metadata_decode_row (&tables [MONO_TABLE_MEMBERREF], idx-1, cols, 3);
1065         nindex = cols [MONO_MEMBERREF_CLASS] >> MONO_MEMBERREF_PARENT_BITS;
1066         class_index = cols [MONO_MEMBERREF_CLASS] & MONO_MEMBERREF_PARENT_MASK;
1067         /*g_print ("methodref: 0x%x 0x%x %s\n", class, nindex,
1068                 mono_metadata_string_heap (m, cols [MONO_MEMBERREF_NAME]));*/
1069
1070         mname = mono_metadata_string_heap (image, cols [MONO_MEMBERREF_NAME]);
1071
1072         /*
1073          * Whether we actually used the `typespec_context' or not.
1074          * This is used to tell our caller whether or not it's safe to insert the returned
1075          * method into a cache.
1076          */
1077         if (used_context)
1078                 *used_context = class_index == MONO_MEMBERREF_PARENT_TYPESPEC;
1079
1080         switch (class_index) {
1081         case MONO_MEMBERREF_PARENT_TYPEREF:
1082                 klass = mono_class_from_typeref_checked (image, MONO_TOKEN_TYPE_REF | nindex, error);
1083                 if (!klass)
1084                         goto fail;
1085                 break;
1086         case MONO_MEMBERREF_PARENT_TYPESPEC:
1087                 /*
1088                  * Parse the TYPESPEC in the parent's context.
1089                  */
1090                 klass = mono_class_get_and_inflate_typespec_checked (image, MONO_TOKEN_TYPE_SPEC | nindex, typespec_context, error);
1091                 if (!klass)
1092                         goto fail;
1093                 break;
1094         case MONO_MEMBERREF_PARENT_TYPEDEF:
1095                 klass = mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF | nindex, error);
1096                 if (!klass)
1097                         goto fail;
1098                 break;
1099         case MONO_MEMBERREF_PARENT_METHODDEF: {
1100                 method = mono_get_method_checked (image, MONO_TOKEN_METHOD_DEF | nindex, NULL, NULL, error);
1101                 if (!method)
1102                         goto fail;
1103                 return method;
1104         }
1105         default:
1106                 mono_error_set_bad_image (error, image, "Memberref parent unknown: class: %d, index %d", class_index, nindex);
1107                 goto fail;
1108         }
1109
1110         g_assert (klass);
1111         mono_class_init (klass);
1112
1113         sig_idx = cols [MONO_MEMBERREF_SIGNATURE];
1114
1115         if (!mono_verifier_verify_memberref_method_signature (image, sig_idx, NULL)) {
1116                 mono_error_set_method_load (error, klass, mname, "Verifier rejected method signature");
1117                 goto fail;
1118         }
1119
1120         ptr = mono_metadata_blob_heap (image, sig_idx);
1121         mono_metadata_decode_blob_size (ptr, &ptr);
1122
1123         sig = (MonoMethodSignature *)find_cached_memberref_sig (image, sig_idx);
1124         if (!sig) {
1125                 sig = mono_metadata_parse_method_signature_full (image, NULL, 0, ptr, NULL, error);
1126                 if (sig == NULL)
1127                         goto fail;
1128
1129                 sig = (MonoMethodSignature *)cache_memberref_sig (image, sig_idx, sig);
1130         }
1131
1132         switch (class_index) {
1133         case MONO_MEMBERREF_PARENT_TYPEREF:
1134         case MONO_MEMBERREF_PARENT_TYPEDEF:
1135                 method = find_method (klass, NULL, mname, sig, klass, error);
1136                 break;
1137
1138         case MONO_MEMBERREF_PARENT_TYPESPEC: {
1139                 MonoType *type;
1140
1141                 type = &klass->byval_arg;
1142
1143                 if (type->type != MONO_TYPE_ARRAY && type->type != MONO_TYPE_SZARRAY) {
1144                         MonoClass *in_class = klass->generic_class ? klass->generic_class->container_class : klass;
1145                         method = find_method (in_class, NULL, mname, sig, klass, error);
1146                         break;
1147                 }
1148
1149                 /* we're an array and we created these methods already in klass in mono_class_init () */
1150                 method = mono_method_search_in_array_class (klass, mname, sig);
1151                 break;
1152         }
1153         default:
1154                 mono_error_set_bad_image (error, image,"Memberref parent unknown: class: %d, index %d", class_index, nindex);
1155                 goto fail;
1156         }
1157
1158         if (!method && mono_error_ok (error)) {
1159                 char *msig = mono_signature_get_desc (sig, FALSE);
1160                 GString *s = g_string_new (mname);
1161                 if (sig->generic_param_count)
1162                         g_string_append_printf (s, "<[%d]>", sig->generic_param_count);
1163                 g_string_append_printf (s, "(%s)", msig);
1164                 g_free (msig);
1165                 msig = g_string_free (s, FALSE);
1166
1167                 if (mono_loader_get_last_error ()) /* FIXME find_method and mono_method_search_in_array_class can leak a loader error */
1168                         mono_error_set_from_loader_error (error);
1169                 else
1170                         mono_error_set_method_load (error, klass, mname, "Could not find method %s", msig);
1171
1172                 g_free (msig);
1173         }
1174
1175         mono_loader_assert_no_error ();
1176         return method;
1177
1178 fail:
1179         mono_loader_assert_no_error ();
1180         g_assert (!mono_error_ok (error));
1181         return NULL;
1182 }
1183
1184 static MonoMethod *
1185 method_from_methodspec (MonoImage *image, MonoGenericContext *context, guint32 idx, MonoError *error)
1186 {
1187         MonoMethod *method;
1188         MonoClass *klass;
1189         MonoTableInfo *tables = image->tables;
1190         MonoGenericContext new_context;
1191         MonoGenericInst *inst;
1192         const char *ptr;
1193         guint32 cols [MONO_METHODSPEC_SIZE];
1194         guint32 token, nindex, param_count;
1195
1196         mono_error_init (error);
1197
1198         mono_metadata_decode_row (&tables [MONO_TABLE_METHODSPEC], idx - 1, cols, MONO_METHODSPEC_SIZE);
1199         token = cols [MONO_METHODSPEC_METHOD];
1200         nindex = token >> MONO_METHODDEFORREF_BITS;
1201
1202         if (!mono_verifier_verify_methodspec_signature (image, cols [MONO_METHODSPEC_SIGNATURE], NULL)) {
1203                 mono_error_set_bad_image (error, image, "Bad method signals signature 0x%08x", idx);
1204                 return NULL;
1205         }
1206
1207         ptr = mono_metadata_blob_heap (image, cols [MONO_METHODSPEC_SIGNATURE]);
1208
1209         mono_metadata_decode_value (ptr, &ptr);
1210         ptr++;
1211         param_count = mono_metadata_decode_value (ptr, &ptr);
1212
1213         inst = mono_metadata_parse_generic_inst (image, NULL, param_count, ptr, &ptr, error);
1214         if (!inst)
1215                 return NULL;
1216
1217         if (context && inst->is_open) {
1218                 inst = mono_metadata_inflate_generic_inst (inst, context, error);
1219                 if (!mono_error_ok (error))
1220                         return NULL;
1221         }
1222
1223         if ((token & MONO_METHODDEFORREF_MASK) == MONO_METHODDEFORREF_METHODDEF) {
1224                 method = mono_get_method_checked (image, MONO_TOKEN_METHOD_DEF | nindex, NULL, context, error);
1225                 if (!method)
1226                         return NULL;
1227         } else {
1228                 method = method_from_memberref (image, nindex, context, NULL, error);
1229         }
1230
1231         if (!method)
1232                 return NULL;
1233
1234         klass = method->klass;
1235
1236         if (klass->generic_class) {
1237                 g_assert (method->is_inflated);
1238                 method = ((MonoMethodInflated *) method)->declaring;
1239         }
1240
1241         new_context.class_inst = klass->generic_class ? klass->generic_class->context.class_inst : NULL;
1242         new_context.method_inst = inst;
1243
1244         method = mono_class_inflate_generic_method_full_checked (method, klass, &new_context, error);
1245         mono_loader_assert_no_error ();
1246         return method;
1247 }
1248
1249 struct _MonoDllMap {
1250         char *dll;
1251         char *target;
1252         char *func;
1253         char *target_func;
1254         MonoDllMap *next;
1255 };
1256
1257 static MonoDllMap *global_dll_map;
1258
1259 static int 
1260 mono_dllmap_lookup_list (MonoDllMap *dll_map, const char *dll, const char* func, const char **rdll, const char **rfunc) {
1261         int found = 0;
1262
1263         *rdll = dll;
1264
1265         if (!dll_map)
1266                 return 0;
1267
1268         global_loader_data_lock ();
1269
1270         /* 
1271          * we use the first entry we find that matches, since entries from
1272          * the config file are prepended to the list and we document that the
1273          * later entries win.
1274          */
1275         for (; dll_map; dll_map = dll_map->next) {
1276                 if (dll_map->dll [0] == 'i' && dll_map->dll [1] == ':') {
1277                         if (g_ascii_strcasecmp (dll_map->dll + 2, dll))
1278                                 continue;
1279                 } else if (strcmp (dll_map->dll, dll)) {
1280                         continue;
1281                 }
1282                 if (!found && dll_map->target) {
1283                         *rdll = dll_map->target;
1284                         found = 1;
1285                         /* we don't quit here, because we could find a full
1286                          * entry that matches also function and that has priority.
1287                          */
1288                 }
1289                 if (dll_map->func && strcmp (dll_map->func, func) == 0) {
1290                         *rfunc = dll_map->target_func;
1291                         break;
1292                 }
1293         }
1294
1295         global_loader_data_unlock ();
1296         return found;
1297 }
1298
1299 static int 
1300 mono_dllmap_lookup (MonoImage *assembly, const char *dll, const char* func, const char **rdll, const char **rfunc)
1301 {
1302         int res;
1303         if (assembly && assembly->dll_map) {
1304                 res = mono_dllmap_lookup_list (assembly->dll_map, dll, func, rdll, rfunc);
1305                 if (res)
1306                         return res;
1307         }
1308         return mono_dllmap_lookup_list (global_dll_map, dll, func, rdll, rfunc);
1309 }
1310
1311 /**
1312  * mono_dllmap_insert:
1313  * @assembly: if NULL, this is a global mapping, otherwise the remapping of the dynamic library will only apply to the specified assembly
1314  * @dll: The name of the external library, as it would be found in the DllImport declaration.  If prefixed with 'i:' the matching of the library name is done without case sensitivity
1315  * @func: if not null, the mapping will only applied to the named function (the value of EntryPoint)
1316  * @tdll: The name of the library to map the specified @dll if it matches.
1317  * @tfunc: if func is not NULL, the name of the function that replaces the invocation
1318  *
1319  * LOCKING: Acquires the loader lock.
1320  *
1321  * This function is used to programatically add DllImport remapping in either
1322  * a specific assembly, or as a global remapping.   This is done by remapping
1323  * references in a DllImport attribute from the @dll library name into the @tdll
1324  * name.    If the @dll name contains the prefix "i:", the comparison of the 
1325  * library name is done without case sensitivity.
1326  *
1327  * If you pass @func, this is the name of the EntryPoint in a DllImport if specified
1328  * or the name of the function as determined by DllImport.    If you pass @func, you
1329  * must also pass @tfunc which is the name of the target function to invoke on a match.
1330  *
1331  * Example:
1332  * mono_dllmap_insert (NULL, "i:libdemo.dll", NULL, relocated_demo_path, NULL);
1333  *
1334  * The above will remap DllImport statments for "libdemo.dll" and "LIBDEMO.DLL" to
1335  * the contents of relocated_demo_path for all assemblies in the Mono process.
1336  *
1337  * NOTE: This can be called before the runtime is initialized, for example from
1338  * mono_config_parse ().
1339  */
1340 void
1341 mono_dllmap_insert (MonoImage *assembly, const char *dll, const char *func, const char *tdll, const char *tfunc)
1342 {
1343         MonoDllMap *entry;
1344
1345         mono_loader_init ();
1346
1347         if (!assembly) {
1348                 entry = (MonoDllMap *)g_malloc0 (sizeof (MonoDllMap));
1349                 entry->dll = dll? g_strdup (dll): NULL;
1350                 entry->target = tdll? g_strdup (tdll): NULL;
1351                 entry->func = func? g_strdup (func): NULL;
1352                 entry->target_func = tfunc? g_strdup (tfunc): NULL;
1353
1354                 global_loader_data_lock ();
1355                 entry->next = global_dll_map;
1356                 global_dll_map = entry;
1357                 global_loader_data_unlock ();
1358         } else {
1359                 entry = (MonoDllMap *)mono_image_alloc0 (assembly, sizeof (MonoDllMap));
1360                 entry->dll = dll? mono_image_strdup (assembly, dll): NULL;
1361                 entry->target = tdll? mono_image_strdup (assembly, tdll): NULL;
1362                 entry->func = func? mono_image_strdup (assembly, func): NULL;
1363                 entry->target_func = tfunc? mono_image_strdup (assembly, tfunc): NULL;
1364
1365                 mono_image_lock (assembly);
1366                 entry->next = assembly->dll_map;
1367                 assembly->dll_map = entry;
1368                 mono_image_unlock (assembly);
1369         }
1370 }
1371
1372 static void
1373 free_dllmap (MonoDllMap *map)
1374 {
1375         while (map) {
1376                 MonoDllMap *next = map->next;
1377
1378                 g_free (map->dll);
1379                 g_free (map->target);
1380                 g_free (map->func);
1381                 g_free (map->target_func);
1382                 g_free (map);
1383                 map = next;
1384         }
1385 }
1386
1387 static void
1388 dllmap_cleanup (void)
1389 {
1390         free_dllmap (global_dll_map);
1391         global_dll_map = NULL;
1392 }
1393
1394 static GHashTable *global_module_map;
1395
1396 static MonoDl*
1397 cached_module_load (const char *name, int flags, char **err)
1398 {
1399         MonoDl *res;
1400
1401         if (err)
1402                 *err = NULL;
1403         global_loader_data_lock ();
1404         if (!global_module_map)
1405                 global_module_map = g_hash_table_new (g_str_hash, g_str_equal);
1406         res = (MonoDl *)g_hash_table_lookup (global_module_map, name);
1407         if (res) {
1408                 global_loader_data_unlock ();
1409                 return res;
1410         }
1411         res = mono_dl_open (name, flags, err);
1412         if (res)
1413                 g_hash_table_insert (global_module_map, g_strdup (name), res);
1414         global_loader_data_unlock ();
1415         return res;
1416 }
1417
1418 static MonoDl *internal_module;
1419
1420 static gboolean
1421 is_absolute_path (const char *path)
1422 {
1423 #ifdef PLATFORM_MACOSX
1424         if (!strncmp (path, "@executable_path/", 17) || !strncmp (path, "@loader_path/", 13) ||
1425             !strncmp (path, "@rpath/", 7))
1426             return TRUE;
1427 #endif
1428         return g_path_is_absolute (path);
1429 }
1430
1431 gpointer
1432 mono_lookup_pinvoke_call (MonoMethod *method, const char **exc_class, const char **exc_arg)
1433 {
1434         MonoImage *image = method->klass->image;
1435         MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)method;
1436         MonoTableInfo *tables = image->tables;
1437         MonoTableInfo *im = &tables [MONO_TABLE_IMPLMAP];
1438         MonoTableInfo *mr = &tables [MONO_TABLE_MODULEREF];
1439         guint32 im_cols [MONO_IMPLMAP_SIZE];
1440         guint32 scope_token;
1441         const char *import = NULL;
1442         const char *orig_scope;
1443         const char *new_scope;
1444         char *error_msg;
1445         char *full_name, *file_name, *found_name = NULL;
1446         int i,j;
1447         MonoDl *module = NULL;
1448         gboolean cached = FALSE;
1449
1450         g_assert (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL);
1451
1452         if (exc_class) {
1453                 *exc_class = NULL;
1454                 *exc_arg = NULL;
1455         }
1456
1457         if (piinfo->addr)
1458                 return piinfo->addr;
1459
1460         if (image_is_dynamic (method->klass->image)) {
1461                 MonoReflectionMethodAux *method_aux = 
1462                         (MonoReflectionMethodAux *)g_hash_table_lookup (
1463                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
1464                 if (!method_aux)
1465                         return NULL;
1466
1467                 import = method_aux->dllentry;
1468                 orig_scope = method_aux->dll;
1469         }
1470         else {
1471                 if (!piinfo->implmap_idx || piinfo->implmap_idx > im->rows)
1472                         return NULL;
1473
1474                 mono_metadata_decode_row (im, piinfo->implmap_idx - 1, im_cols, MONO_IMPLMAP_SIZE);
1475
1476                 if (!im_cols [MONO_IMPLMAP_SCOPE] || im_cols [MONO_IMPLMAP_SCOPE] > mr->rows)
1477                         return NULL;
1478
1479                 piinfo->piflags = im_cols [MONO_IMPLMAP_FLAGS];
1480                 import = mono_metadata_string_heap (image, im_cols [MONO_IMPLMAP_NAME]);
1481                 scope_token = mono_metadata_decode_row_col (mr, im_cols [MONO_IMPLMAP_SCOPE] - 1, MONO_MODULEREF_NAME);
1482                 orig_scope = mono_metadata_string_heap (image, scope_token);
1483         }
1484
1485         mono_dllmap_lookup (image, orig_scope, import, &new_scope, &import);
1486
1487         if (!module) {
1488                 mono_image_lock (image);
1489                 if (!image->pinvoke_scopes) {
1490                         image->pinvoke_scopes = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
1491                         image->pinvoke_scope_filenames = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
1492                 }
1493                 module = (MonoDl *)g_hash_table_lookup (image->pinvoke_scopes, new_scope);
1494                 found_name = (char *)g_hash_table_lookup (image->pinvoke_scope_filenames, new_scope);
1495                 mono_image_unlock (image);
1496                 if (module)
1497                         cached = TRUE;
1498                 if (found_name)
1499                         found_name = g_strdup (found_name);
1500         }
1501
1502         if (!module) {
1503                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1504                                         "DllImport attempting to load: '%s'.", new_scope);
1505
1506                 /* we allow a special name to dlopen from the running process namespace */
1507                 if (strcmp (new_scope, "__Internal") == 0){
1508                         if (internal_module == NULL)
1509                                 internal_module = mono_dl_open (NULL, MONO_DL_LAZY, &error_msg);
1510                         module = internal_module;
1511                 }
1512         }
1513
1514         /*
1515          * Try loading the module using a variety of names
1516          */
1517         for (i = 0; i < 5; ++i) {
1518                 char *base_name = NULL, *dir_name = NULL;
1519                 gboolean is_absolute = is_absolute_path (new_scope);
1520                 
1521                 switch (i) {
1522                 case 0:
1523                         /* Try the original name */
1524                         file_name = g_strdup (new_scope);
1525                         break;
1526                 case 1:
1527                         /* Try trimming the .dll extension */
1528                         if (strstr (new_scope, ".dll") == (new_scope + strlen (new_scope) - 4)) {
1529                                 file_name = g_strdup (new_scope);
1530                                 file_name [strlen (new_scope) - 4] = '\0';
1531                         }
1532                         else
1533                                 continue;
1534                         break;
1535                 case 2:
1536                         if (is_absolute) {
1537                                 dir_name = g_path_get_dirname (new_scope);
1538                                 base_name = g_path_get_basename (new_scope);
1539                                 if (strstr (base_name, "lib") != base_name) {
1540                                         char *tmp = g_strdup_printf ("lib%s", base_name);       
1541                                         g_free (base_name);
1542                                         base_name = tmp;
1543                                         file_name = g_strdup_printf ("%s%s%s", dir_name, G_DIR_SEPARATOR_S, base_name);
1544                                         break;
1545                                 }
1546                         } else if (strstr (new_scope, "lib") != new_scope) {
1547                                 file_name = g_strdup_printf ("lib%s", new_scope);
1548                                 break;
1549                         }
1550                         continue;
1551                 case 3:
1552                         if (!is_absolute && mono_dl_get_system_dir ()) {
1553                                 dir_name = (char*)mono_dl_get_system_dir ();
1554                                 file_name = g_path_get_basename (new_scope);
1555                                 base_name = NULL;
1556                         } else
1557                                 continue;
1558                         break;
1559                 default:
1560 #ifndef TARGET_WIN32
1561                         if (!g_ascii_strcasecmp ("user32.dll", new_scope) ||
1562                             !g_ascii_strcasecmp ("kernel32.dll", new_scope) ||
1563                             !g_ascii_strcasecmp ("user32", new_scope) ||
1564                             !g_ascii_strcasecmp ("kernel", new_scope)) {
1565                                 file_name = g_strdup ("libMonoSupportW.so");
1566                         } else
1567 #endif
1568                                     continue;
1569 #ifndef TARGET_WIN32
1570                         break;
1571 #endif
1572                 }
1573                 
1574                 if (is_absolute) {
1575                         if (!dir_name)
1576                                 dir_name = g_path_get_dirname (file_name);
1577                         if (!base_name)
1578                                 base_name = g_path_get_basename (file_name);
1579                 }
1580                 
1581                 if (!module && is_absolute) {
1582                         module = cached_module_load (file_name, MONO_DL_LAZY, &error_msg);
1583                         if (!module) {
1584                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1585                                                 "DllImport error loading library '%s': '%s'.",
1586                                                         file_name, error_msg);
1587                                 g_free (error_msg);
1588                         } else {
1589                                 found_name = g_strdup (file_name);
1590                         }
1591                 }
1592
1593                 if (!module && !is_absolute) {
1594                         void *iter;
1595                         char *mdirname;
1596
1597                         for (j = 0; j < 3; ++j) {
1598                                 iter = NULL;
1599                                 mdirname = NULL;
1600                                 switch (j) {
1601                                         case 0:
1602                                                 mdirname = g_path_get_dirname (image->name);
1603                                                 break;
1604                                         case 1: /* @executable_path@/../lib */
1605                                         {
1606                                                 char buf [4096];
1607                                                 int binl;
1608                                                 binl = mono_dl_get_executable_path (buf, sizeof (buf));
1609                                                 if (binl != -1) {
1610                                                         char *base, *newbase;
1611                                                         char *resolvedname;
1612                                                         buf [binl] = 0;
1613                                                         resolvedname = mono_path_resolve_symlinks (buf);
1614
1615                                                         base = g_path_get_dirname (resolvedname);
1616                                                         newbase = g_path_get_dirname(base);
1617                                                         mdirname = g_strdup_printf ("%s/lib", newbase);
1618
1619                                                         g_free (resolvedname);
1620                                                         g_free (base);
1621                                                         g_free (newbase);
1622                                                 }
1623                                                 break;
1624                                         }
1625 #ifdef __MACH__
1626                                         case 2: /* @executable_path@/../Libraries */
1627                                         {
1628                                                 char buf [4096];
1629                                                 int binl;
1630                                                 binl = mono_dl_get_executable_path (buf, sizeof (buf));
1631                                                 if (binl != -1) {
1632                                                         char *base, *newbase;
1633                                                         char *resolvedname;
1634                                                         buf [binl] = 0;
1635                                                         resolvedname = mono_path_resolve_symlinks (buf);
1636
1637                                                         base = g_path_get_dirname (resolvedname);
1638                                                         newbase = g_path_get_dirname(base);
1639                                                         mdirname = g_strdup_printf ("%s/Libraries", newbase);
1640
1641                                                         g_free (resolvedname);
1642                                                         g_free (base);
1643                                                         g_free (newbase);
1644                                                 }
1645                                                 break;
1646                                         }
1647 #endif
1648                                 }
1649
1650                                 if (!mdirname)
1651                                         continue;
1652
1653                                 while ((full_name = mono_dl_build_path (mdirname, file_name, &iter))) {
1654                                         module = cached_module_load (full_name, MONO_DL_LAZY, &error_msg);
1655                                         if (!module) {
1656                                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1657                                                         "DllImport error loading library '%s': '%s'.",
1658                                                                         full_name, error_msg);
1659                                                 g_free (error_msg);
1660                                         } else {
1661                                                 found_name = g_strdup (full_name);
1662                                         }
1663                                         g_free (full_name);
1664                                         if (module)
1665                                                 break;
1666
1667                                 }
1668                                 g_free (mdirname);
1669                                 if (module)
1670                                         break;
1671                         }
1672
1673                 }
1674
1675                 if (!module) {
1676                         void *iter = NULL;
1677                         char *file_or_base = is_absolute ? base_name : file_name;
1678                         while ((full_name = mono_dl_build_path (dir_name, file_or_base, &iter))) {
1679                                 module = cached_module_load (full_name, MONO_DL_LAZY, &error_msg);
1680                                 if (!module) {
1681                                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1682                                                         "DllImport error loading library '%s': '%s'.",
1683                                                                 full_name, error_msg);
1684                                         g_free (error_msg);
1685                                 } else {
1686                                         found_name = g_strdup (full_name);
1687                                 }
1688                                 g_free (full_name);
1689                                 if (module)
1690                                         break;
1691                         }
1692                 }
1693
1694                 if (!module) {
1695                         module = cached_module_load (file_name, MONO_DL_LAZY, &error_msg);
1696                         if (!module) {
1697                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1698                                                 "DllImport error loading library '%s': '%s'.",
1699                                                         file_name, error_msg);
1700                         } else {
1701                                 found_name = g_strdup (file_name);
1702                         }
1703                 }
1704
1705                 g_free (file_name);
1706                 if (is_absolute) {
1707                         g_free (base_name);
1708                         g_free (dir_name);
1709                 }
1710
1711                 if (module)
1712                         break;
1713         }
1714
1715         if (!module) {
1716                 mono_trace (G_LOG_LEVEL_WARNING, MONO_TRACE_DLLIMPORT,
1717                                 "DllImport unable to load library '%s'.",
1718                                 error_msg);
1719                 g_free (error_msg);
1720
1721                 if (exc_class) {
1722                         *exc_class = "DllNotFoundException";
1723                         *exc_arg = new_scope;
1724                 }
1725                 return NULL;
1726         }
1727
1728         if (!cached) {
1729                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1730                                         "DllImport loaded library '%s'.", found_name);
1731                 mono_image_lock (image);
1732                 if (!g_hash_table_lookup (image->pinvoke_scopes, new_scope)) {
1733                         g_hash_table_insert (image->pinvoke_scopes, g_strdup (new_scope), module);
1734                         g_hash_table_insert (image->pinvoke_scope_filenames, g_strdup (new_scope), g_strdup (found_name));
1735                 }
1736                 mono_image_unlock (image);
1737         }
1738
1739         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1740                                 "DllImport searching in: '%s' ('%s').", new_scope, found_name);
1741         g_free (found_name);
1742
1743 #ifdef TARGET_WIN32
1744         if (import && import [0] == '#' && isdigit (import [1])) {
1745                 char *end;
1746                 long id;
1747
1748                 id = strtol (import + 1, &end, 10);
1749                 if (id > 0 && *end == '\0')
1750                         import++;
1751         }
1752 #endif
1753         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1754                                 "Searching for '%s'.", import);
1755
1756         if (piinfo->piflags & PINVOKE_ATTRIBUTE_NO_MANGLE) {
1757                 error_msg = mono_dl_symbol (module, import, &piinfo->addr); 
1758         } else {
1759                 char *mangled_name = NULL, *mangled_name2 = NULL;
1760                 int mangle_charset;
1761                 int mangle_stdcall;
1762                 int mangle_param_count;
1763 #ifdef TARGET_WIN32
1764                 int param_count;
1765 #endif
1766
1767                 /*
1768                  * Search using a variety of mangled names
1769                  */
1770                 for (mangle_charset = 0; mangle_charset <= 1; mangle_charset ++) {
1771                         for (mangle_stdcall = 0; mangle_stdcall <= 1; mangle_stdcall ++) {
1772                                 gboolean need_param_count = FALSE;
1773 #ifdef TARGET_WIN32
1774                                 if (mangle_stdcall > 0)
1775                                         need_param_count = TRUE;
1776 #endif
1777                                 for (mangle_param_count = 0; mangle_param_count <= (need_param_count ? 256 : 0); mangle_param_count += 4) {
1778
1779                                         if (piinfo->addr)
1780                                                 continue;
1781
1782                                         mangled_name = (char*)import;
1783                                         switch (piinfo->piflags & PINVOKE_ATTRIBUTE_CHAR_SET_MASK) {
1784                                         case PINVOKE_ATTRIBUTE_CHAR_SET_UNICODE:
1785                                                 /* Try the mangled name first */
1786                                                 if (mangle_charset == 0)
1787                                                         mangled_name = g_strconcat (import, "W", NULL);
1788                                                 break;
1789                                         case PINVOKE_ATTRIBUTE_CHAR_SET_AUTO:
1790 #ifdef TARGET_WIN32
1791                                                 if (mangle_charset == 0)
1792                                                         mangled_name = g_strconcat (import, "W", NULL);
1793 #else
1794                                                 /* Try the mangled name last */
1795                                                 if (mangle_charset == 1)
1796                                                         mangled_name = g_strconcat (import, "A", NULL);
1797 #endif
1798                                                 break;
1799                                         case PINVOKE_ATTRIBUTE_CHAR_SET_ANSI:
1800                                         default:
1801                                                 /* Try the mangled name last */
1802                                                 if (mangle_charset == 1)
1803                                                         mangled_name = g_strconcat (import, "A", NULL);
1804                                                 break;
1805                                         }
1806
1807 #ifdef TARGET_WIN32
1808                                         if (mangle_param_count == 0)
1809                                                 param_count = mono_method_signature (method)->param_count * sizeof (gpointer);
1810                                         else
1811                                                 /* Try brute force, since it would be very hard to compute the stack usage correctly */
1812                                                 param_count = mangle_param_count;
1813
1814                                         /* Try the stdcall mangled name */
1815                                         /* 
1816                                          * gcc under windows creates mangled names without the underscore, but MS.NET
1817                                          * doesn't support it, so we doesn't support it either.
1818                                          */
1819                                         if (mangle_stdcall == 1)
1820                                                 mangled_name2 = g_strdup_printf ("_%s@%d", mangled_name, param_count);
1821                                         else
1822                                                 mangled_name2 = mangled_name;
1823 #else
1824                                         mangled_name2 = mangled_name;
1825 #endif
1826
1827                                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1828                                                                 "Probing '%s'.", mangled_name2);
1829
1830                                         error_msg = mono_dl_symbol (module, mangled_name2, &piinfo->addr);
1831
1832                                         if (piinfo->addr)
1833                                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1834                                                                         "Found as '%s'.", mangled_name2);
1835                                         else
1836                                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1837                                                                         "Could not find '%s' due to '%s'.", mangled_name2, error_msg);
1838
1839                                         g_free (error_msg);
1840                                         error_msg = NULL;
1841
1842                                         if (mangled_name != mangled_name2)
1843                                                 g_free (mangled_name2);
1844                                         if (mangled_name != import)
1845                                                 g_free (mangled_name);
1846                                 }
1847                         }
1848                 }
1849         }
1850
1851         if (!piinfo->addr) {
1852                 g_free (error_msg);
1853                 if (exc_class) {
1854                         *exc_class = "EntryPointNotFoundException";
1855                         *exc_arg = import;
1856                 }
1857                 return NULL;
1858         }
1859         return piinfo->addr;
1860 }
1861
1862 /*
1863  * LOCKING: assumes the loader lock to be taken.
1864  */
1865 static MonoMethod *
1866 mono_get_method_from_token (MonoImage *image, guint32 token, MonoClass *klass,
1867                             MonoGenericContext *context, gboolean *used_context, MonoError *error)
1868 {
1869         MonoMethod *result;
1870         int table = mono_metadata_token_table (token);
1871         int idx = mono_metadata_token_index (token);
1872         MonoTableInfo *tables = image->tables;
1873         MonoGenericContainer *generic_container = NULL, *container = NULL;
1874         const char *sig = NULL;
1875         guint32 cols [MONO_TYPEDEF_SIZE];
1876
1877         mono_error_init (error);
1878
1879         if (image_is_dynamic (image)) {
1880                 MonoClass *handle_class;
1881
1882                 result = (MonoMethod *)mono_lookup_dynamic_token_class (image, token, TRUE, &handle_class, context, error);
1883                 mono_error_assert_ok (error);
1884                 mono_loader_assert_no_error ();
1885
1886                 // This checks the memberref type as well
1887                 if (result && handle_class != mono_defaults.methodhandle_class) {
1888                         mono_error_set_bad_image (error, image, "Bad method token 0x%08x on dynamic image", token);
1889                         return NULL;
1890                 }
1891                 return result;
1892         }
1893
1894         if (table != MONO_TABLE_METHOD) {
1895                 if (table == MONO_TABLE_METHODSPEC) {
1896                         if (used_context) *used_context = TRUE;
1897                         return method_from_methodspec (image, context, idx, error);
1898                 }
1899                 if (table != MONO_TABLE_MEMBERREF) {
1900                         mono_error_set_bad_image (error, image, "Bad method token 0x%08x.", token);
1901                         return NULL;
1902                 }
1903                 return method_from_memberref (image, idx, context, used_context, error);
1904         }
1905
1906         if (used_context) *used_context = FALSE;
1907
1908         if (idx > image->tables [MONO_TABLE_METHOD].rows) {
1909                 mono_error_set_bad_image (error, image, "Bad method token 0x%08x (out of bounds).", token);
1910                 return NULL;
1911         }
1912
1913         if (!klass) {
1914                 guint32 type = mono_metadata_typedef_from_method (image, token);
1915                 if (!type) {
1916                         mono_error_set_bad_image (error, image, "Bad method token 0x%08x (could not find corresponding typedef).", token);
1917                         return NULL;
1918                 }
1919                 klass = mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF | type, error);
1920                 if (klass == NULL)
1921                         return NULL;
1922         }
1923
1924         mono_metadata_decode_row (&image->tables [MONO_TABLE_METHOD], idx - 1, cols, 6);
1925
1926         if ((cols [2] & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
1927             (cols [1] & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
1928                 result = (MonoMethod *)mono_image_alloc0 (image, sizeof (MonoMethodPInvoke));
1929         } else {
1930                 result = (MonoMethod *)mono_image_alloc0 (image, sizeof (MonoMethod));
1931                 methods_size += sizeof (MonoMethod);
1932         }
1933
1934         mono_stats.method_count ++;
1935
1936         result->slot = -1;
1937         result->klass = klass;
1938         result->flags = cols [2];
1939         result->iflags = cols [1];
1940         result->token = token;
1941         result->name = mono_metadata_string_heap (image, cols [3]);
1942
1943         if (!sig) /* already taken from the methodref */
1944                 sig = mono_metadata_blob_heap (image, cols [4]);
1945         /* size = */ mono_metadata_decode_blob_size (sig, &sig);
1946
1947         container = klass->generic_container;
1948
1949         /* 
1950          * load_generic_params does a binary search so only call it if the method 
1951          * is generic.
1952          */
1953         if (*sig & 0x10) {
1954                 generic_container = mono_metadata_load_generic_params (image, token, container);
1955                 mono_loader_assert_no_error (); /* FIXME don't swallow this error. */
1956         }
1957         if (generic_container) {
1958                 result->is_generic = TRUE;
1959                 generic_container->owner.method = result;
1960                 generic_container->is_anonymous = FALSE; // Method is now known, container is no longer anonymous
1961                 /*FIXME put this before the image alloc*/
1962                 if (!mono_metadata_load_generic_param_constraints_checked (image, token, generic_container, error))
1963                         return NULL;
1964
1965                 container = generic_container;
1966         }
1967
1968         if (cols [1] & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
1969                 if (result->klass == mono_defaults.string_class && !strcmp (result->name, ".ctor"))
1970                         result->string_ctor = 1;
1971         } else if (cols [2] & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
1972                 MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)result;
1973
1974 #ifdef TARGET_WIN32
1975                 /* IJW is P/Invoke with a predefined function pointer. */
1976                 if (image->is_module_handle && (cols [1] & METHOD_IMPL_ATTRIBUTE_NATIVE)) {
1977                         piinfo->addr = mono_image_rva_map (image, cols [0]);
1978                         g_assert (piinfo->addr);
1979                 }
1980 #endif
1981                 piinfo->implmap_idx = mono_metadata_implmap_from_method (image, idx - 1);
1982                 /* Native methods can have no map. */
1983                 if (piinfo->implmap_idx)
1984                         piinfo->piflags = mono_metadata_decode_row_col (&tables [MONO_TABLE_IMPLMAP], piinfo->implmap_idx - 1, MONO_IMPLMAP_FLAGS);
1985         }
1986
1987         if (generic_container)
1988                 mono_method_set_generic_container (result, generic_container);
1989
1990         mono_loader_assert_no_error ();
1991         return result;
1992 }
1993
1994 MonoMethod *
1995 mono_get_method (MonoImage *image, guint32 token, MonoClass *klass)
1996 {
1997         MonoError error;
1998         MonoMethod *result = mono_get_method_checked (image, token, klass, NULL, &error);
1999         mono_error_cleanup (&error);
2000         return result;
2001 }
2002
2003 MonoMethod *
2004 mono_get_method_full (MonoImage *image, guint32 token, MonoClass *klass,
2005                       MonoGenericContext *context)
2006 {
2007         MonoError error;
2008         MonoMethod *result = mono_get_method_checked (image, token, klass, context, &error);
2009         mono_error_cleanup (&error);
2010         return result;
2011 }
2012
2013 MonoMethod *
2014 mono_get_method_checked (MonoImage *image, guint32 token, MonoClass *klass, MonoGenericContext *context, MonoError *error)
2015 {
2016         MonoMethod *result = NULL;
2017         gboolean used_context = FALSE;
2018
2019         /* We do everything inside the lock to prevent creation races */
2020
2021         mono_error_init (error);
2022
2023         mono_image_lock (image);
2024
2025         if (mono_metadata_token_table (token) == MONO_TABLE_METHOD) {
2026                 if (!image->method_cache)
2027                         image->method_cache = g_hash_table_new (NULL, NULL);
2028                 result = (MonoMethod *)g_hash_table_lookup (image->method_cache, GINT_TO_POINTER (mono_metadata_token_index (token)));
2029         } else if (!image_is_dynamic (image)) {
2030                 if (!image->methodref_cache)
2031                         image->methodref_cache = g_hash_table_new (NULL, NULL);
2032                 result = (MonoMethod *)g_hash_table_lookup (image->methodref_cache, GINT_TO_POINTER (token));
2033         }
2034         mono_image_unlock (image);
2035
2036         if (result)
2037                 return result;
2038
2039
2040         result = mono_get_method_from_token (image, token, klass, context, &used_context, error);
2041         if (!result)
2042                 return NULL;
2043
2044         mono_image_lock (image);
2045         if (!used_context && !result->is_inflated) {
2046                 MonoMethod *result2 = NULL;
2047
2048                 if (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
2049                         result2 = (MonoMethod *)g_hash_table_lookup (image->method_cache, GINT_TO_POINTER (mono_metadata_token_index (token)));
2050                 else if (!image_is_dynamic (image))
2051                         result2 = (MonoMethod *)g_hash_table_lookup (image->methodref_cache, GINT_TO_POINTER (token));
2052
2053                 if (result2) {
2054                         mono_image_unlock (image);
2055                         return result2;
2056                 }
2057
2058                 if (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
2059                         g_hash_table_insert (image->method_cache, GINT_TO_POINTER (mono_metadata_token_index (token)), result);
2060                 else if (!image_is_dynamic (image))
2061                         g_hash_table_insert (image->methodref_cache, GINT_TO_POINTER (token), result);
2062         }
2063
2064         mono_image_unlock (image);
2065
2066         return result;
2067 }
2068
2069 static MonoMethod *
2070 get_method_constrained (MonoImage *image, MonoMethod *method, MonoClass *constrained_class, MonoGenericContext *context, MonoError *error)
2071 {
2072         MonoMethod *result;
2073         MonoClass *ic = NULL;
2074         MonoGenericContext *method_context = NULL;
2075         MonoMethodSignature *sig, *original_sig;
2076
2077         mono_error_init (error);
2078
2079         mono_class_init (constrained_class);
2080         original_sig = sig = mono_method_signature_checked (method, error);
2081         if (sig == NULL) {
2082                 return NULL;
2083         }
2084
2085         if (method->is_inflated && sig->generic_param_count) {
2086                 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
2087                 sig = mono_method_signature_checked (imethod->declaring, error); /*We assume that if the inflated method signature is valid, the declaring method is too*/
2088                 if (!sig)
2089                         return NULL;
2090                 method_context = mono_method_get_context (method);
2091
2092                 original_sig = sig;
2093                 /*
2094                  * We must inflate the signature with the class instantiation to work on
2095                  * cases where a class inherit from a generic type and the override replaces
2096                  * any type argument which a concrete type. See #325283.
2097                  */
2098                 if (method_context->class_inst) {
2099                         MonoGenericContext ctx;
2100                         ctx.method_inst = NULL;
2101                         ctx.class_inst = method_context->class_inst;
2102                         /*Fixme, property propagate this error*/
2103                         sig = inflate_generic_signature_checked (method->klass->image, sig, &ctx, error);
2104                         if (!sig)
2105                                 return NULL;
2106                 }
2107         }
2108
2109         if ((constrained_class != method->klass) && (MONO_CLASS_IS_INTERFACE (method->klass)))
2110                 ic = method->klass;
2111
2112         result = find_method (constrained_class, ic, method->name, sig, constrained_class, error);
2113         if (sig != original_sig)
2114                 mono_metadata_free_inflated_signature (sig);
2115
2116         if (!result)
2117                 return NULL;
2118
2119         if (method_context) {
2120                 result = mono_class_inflate_generic_method_checked (result, method_context, error);
2121                 if (!result)
2122                         return NULL;
2123         }
2124
2125         return result;
2126 }
2127
2128 MonoMethod *
2129 mono_get_method_constrained_with_method (MonoImage *image, MonoMethod *method, MonoClass *constrained_class,
2130                              MonoGenericContext *context, MonoError *error)
2131 {
2132         g_assert (method);
2133
2134         return get_method_constrained (image, method, constrained_class, context, error);
2135 }
2136
2137 /**
2138  * mono_get_method_constrained:
2139  *
2140  * This is used when JITing the `constrained.' opcode.
2141  *
2142  * This returns two values: the contrained method, which has been inflated
2143  * as the function return value;   And the original CIL-stream method as
2144  * declared in cil_method.  The later is used for verification.
2145  */
2146 MonoMethod *
2147 mono_get_method_constrained (MonoImage *image, guint32 token, MonoClass *constrained_class,
2148                              MonoGenericContext *context, MonoMethod **cil_method)
2149 {
2150         MonoError error;
2151         MonoMethod *result = mono_get_method_constrained_checked (image, token, constrained_class, context, cil_method, &error);
2152         mono_error_cleanup (&error);
2153         return result;
2154 }
2155
2156 MonoMethod *
2157 mono_get_method_constrained_checked (MonoImage *image, guint32 token, MonoClass *constrained_class, MonoGenericContext *context, MonoMethod **cil_method, MonoError *error)
2158 {
2159         mono_error_init (error);
2160
2161         *cil_method = mono_get_method_from_token (image, token, NULL, context, NULL, error);
2162         if (!*cil_method)
2163                 return NULL;
2164
2165         return get_method_constrained (image, *cil_method, constrained_class, context, error);
2166 }
2167
2168 void
2169 mono_free_method  (MonoMethod *method)
2170 {
2171         if (mono_profiler_get_events () & MONO_PROFILE_METHOD_EVENTS)
2172                 mono_profiler_method_free (method);
2173         
2174         /* FIXME: This hack will go away when the profiler will support freeing methods */
2175         if (mono_profiler_get_events () != MONO_PROFILE_NONE)
2176                 return;
2177         
2178         if (method->signature) {
2179                 /* 
2180                  * FIXME: This causes crashes because the types inside signatures and
2181                  * locals are shared.
2182                  */
2183                 /* mono_metadata_free_method_signature (method->signature); */
2184                 /* g_free (method->signature); */
2185         }
2186         
2187         if (method_is_dynamic (method)) {
2188                 MonoMethodWrapper *mw = (MonoMethodWrapper*)method;
2189                 int i;
2190
2191                 mono_marshal_free_dynamic_wrappers (method);
2192
2193                 mono_image_property_remove (method->klass->image, method);
2194
2195                 g_free ((char*)method->name);
2196                 if (mw->header) {
2197                         g_free ((char*)mw->header->code);
2198                         for (i = 0; i < mw->header->num_locals; ++i)
2199                                 g_free (mw->header->locals [i]);
2200                         g_free (mw->header->clauses);
2201                         g_free (mw->header);
2202                 }
2203                 g_free (mw->method_data);
2204                 g_free (method->signature);
2205                 g_free (method);
2206         }
2207 }
2208
2209 void
2210 mono_method_get_param_names (MonoMethod *method, const char **names)
2211 {
2212         int i, lastp;
2213         MonoClass *klass;
2214         MonoTableInfo *methodt;
2215         MonoTableInfo *paramt;
2216         MonoMethodSignature *signature;
2217         guint32 idx;
2218
2219         if (method->is_inflated)
2220                 method = ((MonoMethodInflated *) method)->declaring;
2221
2222         signature = mono_method_signature (method);
2223         /*FIXME this check is somewhat redundant since the caller usally will have to get the signature to figure out the
2224           number of arguments and allocate a properly sized array. */
2225         if (signature == NULL)
2226                 return;
2227
2228         if (!signature->param_count)
2229                 return;
2230
2231         for (i = 0; i < signature->param_count; ++i)
2232                 names [i] = "";
2233
2234         klass = method->klass;
2235         if (klass->rank)
2236                 return;
2237
2238         mono_class_init (klass);
2239
2240         if (image_is_dynamic (klass->image)) {
2241                 MonoReflectionMethodAux *method_aux = 
2242                         (MonoReflectionMethodAux *)g_hash_table_lookup (
2243                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
2244                 if (method_aux && method_aux->param_names) {
2245                         for (i = 0; i < mono_method_signature (method)->param_count; ++i)
2246                                 if (method_aux->param_names [i + 1])
2247                                         names [i] = method_aux->param_names [i + 1];
2248                 }
2249                 return;
2250         }
2251
2252         if (method->wrapper_type) {
2253                 char **pnames = NULL;
2254
2255                 mono_image_lock (klass->image);
2256                 if (klass->image->wrapper_param_names)
2257                         pnames = (char **)g_hash_table_lookup (klass->image->wrapper_param_names, method);
2258                 mono_image_unlock (klass->image);
2259
2260                 if (pnames) {
2261                         for (i = 0; i < signature->param_count; ++i)
2262                                 names [i] = pnames [i];
2263                 }
2264                 return;
2265         }
2266
2267         methodt = &klass->image->tables [MONO_TABLE_METHOD];
2268         paramt = &klass->image->tables [MONO_TABLE_PARAM];
2269         idx = mono_method_get_index (method);
2270         if (idx > 0) {
2271                 guint32 cols [MONO_PARAM_SIZE];
2272                 guint param_index;
2273
2274                 param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
2275
2276                 if (idx < methodt->rows)
2277                         lastp = mono_metadata_decode_row_col (methodt, idx, MONO_METHOD_PARAMLIST);
2278                 else
2279                         lastp = paramt->rows + 1;
2280                 for (i = param_index; i < lastp; ++i) {
2281                         mono_metadata_decode_row (paramt, i -1, cols, MONO_PARAM_SIZE);
2282                         if (cols [MONO_PARAM_SEQUENCE] && cols [MONO_PARAM_SEQUENCE] <= signature->param_count) /* skip return param spec and bounds check*/
2283                                 names [cols [MONO_PARAM_SEQUENCE] - 1] = mono_metadata_string_heap (klass->image, cols [MONO_PARAM_NAME]);
2284                 }
2285         }
2286 }
2287
2288 guint32
2289 mono_method_get_param_token (MonoMethod *method, int index)
2290 {
2291         MonoClass *klass = method->klass;
2292         MonoTableInfo *methodt;
2293         guint32 idx;
2294
2295         mono_class_init (klass);
2296
2297         if (image_is_dynamic (klass->image))
2298                 g_assert_not_reached ();
2299
2300         methodt = &klass->image->tables [MONO_TABLE_METHOD];
2301         idx = mono_method_get_index (method);
2302         if (idx > 0) {
2303                 guint param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
2304
2305                 if (index == -1)
2306                         /* Return value */
2307                         return mono_metadata_make_token (MONO_TABLE_PARAM, 0);
2308                 else
2309                         return mono_metadata_make_token (MONO_TABLE_PARAM, param_index + index);
2310         }
2311
2312         return 0;
2313 }
2314
2315 void
2316 mono_method_get_marshal_info (MonoMethod *method, MonoMarshalSpec **mspecs)
2317 {
2318         int i, lastp;
2319         MonoClass *klass = method->klass;
2320         MonoTableInfo *methodt;
2321         MonoTableInfo *paramt;
2322         MonoMethodSignature *signature;
2323         guint32 idx;
2324
2325         signature = mono_method_signature (method);
2326         g_assert (signature); /*FIXME there is no way to signal error from this function*/
2327
2328         for (i = 0; i < signature->param_count + 1; ++i)
2329                 mspecs [i] = NULL;
2330
2331         if (image_is_dynamic (method->klass->image)) {
2332                 MonoReflectionMethodAux *method_aux = 
2333                         (MonoReflectionMethodAux *)g_hash_table_lookup (
2334                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
2335                 if (method_aux && method_aux->param_marshall) {
2336                         MonoMarshalSpec **dyn_specs = method_aux->param_marshall;
2337                         for (i = 0; i < signature->param_count + 1; ++i)
2338                                 if (dyn_specs [i]) {
2339                                         mspecs [i] = g_new0 (MonoMarshalSpec, 1);
2340                                         memcpy (mspecs [i], dyn_specs [i], sizeof (MonoMarshalSpec));
2341                                         mspecs [i]->data.custom_data.custom_name = g_strdup (dyn_specs [i]->data.custom_data.custom_name);
2342                                         mspecs [i]->data.custom_data.cookie = g_strdup (dyn_specs [i]->data.custom_data.cookie);
2343                                 }
2344                 }
2345                 return;
2346         }
2347
2348         mono_class_init (klass);
2349
2350         methodt = &klass->image->tables [MONO_TABLE_METHOD];
2351         paramt = &klass->image->tables [MONO_TABLE_PARAM];
2352         idx = mono_method_get_index (method);
2353         if (idx > 0) {
2354                 guint32 cols [MONO_PARAM_SIZE];
2355                 guint param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
2356
2357                 if (idx < methodt->rows)
2358                         lastp = mono_metadata_decode_row_col (methodt, idx, MONO_METHOD_PARAMLIST);
2359                 else
2360                         lastp = paramt->rows + 1;
2361
2362                 for (i = param_index; i < lastp; ++i) {
2363                         mono_metadata_decode_row (paramt, i -1, cols, MONO_PARAM_SIZE);
2364
2365                         if (cols [MONO_PARAM_FLAGS] & PARAM_ATTRIBUTE_HAS_FIELD_MARSHAL && cols [MONO_PARAM_SEQUENCE] <= signature->param_count) {
2366                                 const char *tp;
2367                                 tp = mono_metadata_get_marshal_info (klass->image, i - 1, FALSE);
2368                                 g_assert (tp);
2369                                 mspecs [cols [MONO_PARAM_SEQUENCE]]= mono_metadata_parse_marshal_spec (klass->image, tp);
2370                         }
2371                 }
2372
2373                 return;
2374         }
2375 }
2376
2377 gboolean
2378 mono_method_has_marshal_info (MonoMethod *method)
2379 {
2380         int i, lastp;
2381         MonoClass *klass = method->klass;
2382         MonoTableInfo *methodt;
2383         MonoTableInfo *paramt;
2384         guint32 idx;
2385
2386         if (image_is_dynamic (method->klass->image)) {
2387                 MonoReflectionMethodAux *method_aux = 
2388                         (MonoReflectionMethodAux *)g_hash_table_lookup (
2389                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
2390                 MonoMarshalSpec **dyn_specs = method_aux->param_marshall;
2391                 if (dyn_specs) {
2392                         for (i = 0; i < mono_method_signature (method)->param_count + 1; ++i)
2393                                 if (dyn_specs [i])
2394                                         return TRUE;
2395                 }
2396                 return FALSE;
2397         }
2398
2399         mono_class_init (klass);
2400
2401         methodt = &klass->image->tables [MONO_TABLE_METHOD];
2402         paramt = &klass->image->tables [MONO_TABLE_PARAM];
2403         idx = mono_method_get_index (method);
2404         if (idx > 0) {
2405                 guint32 cols [MONO_PARAM_SIZE];
2406                 guint param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
2407
2408                 if (idx + 1 < methodt->rows)
2409                         lastp = mono_metadata_decode_row_col (methodt, idx, MONO_METHOD_PARAMLIST);
2410                 else
2411                         lastp = paramt->rows + 1;
2412
2413                 for (i = param_index; i < lastp; ++i) {
2414                         mono_metadata_decode_row (paramt, i -1, cols, MONO_PARAM_SIZE);
2415
2416                         if (cols [MONO_PARAM_FLAGS] & PARAM_ATTRIBUTE_HAS_FIELD_MARSHAL)
2417                                 return TRUE;
2418                 }
2419                 return FALSE;
2420         }
2421         return FALSE;
2422 }
2423
2424 gpointer
2425 mono_method_get_wrapper_data (MonoMethod *method, guint32 id)
2426 {
2427         void **data;
2428         g_assert (method != NULL);
2429         g_assert (method->wrapper_type != MONO_WRAPPER_NONE);
2430
2431         if (method->is_inflated)
2432                 method = ((MonoMethodInflated *) method)->declaring;
2433         data = (void **)((MonoMethodWrapper *)method)->method_data;
2434         g_assert (data != NULL);
2435         g_assert (id <= GPOINTER_TO_UINT (*data));
2436         return data [id];
2437 }
2438
2439 typedef struct {
2440         MonoStackWalk func;
2441         gpointer user_data;
2442 } StackWalkUserData;
2443
2444 static gboolean
2445 stack_walk_adapter (MonoStackFrameInfo *frame, MonoContext *ctx, gpointer data)
2446 {
2447         StackWalkUserData *d = (StackWalkUserData *)data;
2448
2449         switch (frame->type) {
2450         case FRAME_TYPE_DEBUGGER_INVOKE:
2451         case FRAME_TYPE_MANAGED_TO_NATIVE:
2452         case FRAME_TYPE_TRAMPOLINE:
2453                 return FALSE;
2454         case FRAME_TYPE_MANAGED:
2455                 g_assert (frame->ji);
2456                 return d->func (frame->actual_method, frame->native_offset, frame->il_offset, frame->managed, d->user_data);
2457                 break;
2458         default:
2459                 g_assert_not_reached ();
2460                 return FALSE;
2461         }
2462 }
2463
2464 void
2465 mono_stack_walk (MonoStackWalk func, gpointer user_data)
2466 {
2467         StackWalkUserData ud = { func, user_data };
2468         mono_get_eh_callbacks ()->mono_walk_stack_with_ctx (stack_walk_adapter, NULL, MONO_UNWIND_LOOKUP_ALL, &ud);
2469 }
2470
2471 void
2472 mono_stack_walk_no_il (MonoStackWalk func, gpointer user_data)
2473 {
2474         StackWalkUserData ud = { func, user_data };
2475         mono_get_eh_callbacks ()->mono_walk_stack_with_ctx (stack_walk_adapter, NULL, MONO_UNWIND_DEFAULT, &ud);
2476 }
2477
2478 typedef struct {
2479         MonoStackWalkAsyncSafe func;
2480         gpointer user_data;
2481 } AsyncStackWalkUserData;
2482
2483
2484 static gboolean
2485 async_stack_walk_adapter (MonoStackFrameInfo *frame, MonoContext *ctx, gpointer data)
2486 {
2487         AsyncStackWalkUserData *d = (AsyncStackWalkUserData *)data;
2488
2489         switch (frame->type) {
2490         case FRAME_TYPE_DEBUGGER_INVOKE:
2491         case FRAME_TYPE_MANAGED_TO_NATIVE:
2492         case FRAME_TYPE_TRAMPOLINE:
2493                 return FALSE;
2494         case FRAME_TYPE_MANAGED:
2495                 if (!frame->ji)
2496                         return FALSE;
2497                 if (frame->ji->async) {
2498                         return d->func (NULL, frame->domain, frame->ji->code_start, frame->native_offset, d->user_data);
2499                 } else {
2500                         return d->func (frame->actual_method, frame->domain, frame->ji->code_start, frame->native_offset, d->user_data);
2501                 }
2502                 break;
2503         default:
2504                 g_assert_not_reached ();
2505                 return FALSE;
2506         }
2507 }
2508
2509
2510 /*
2511  * mono_stack_walk_async_safe:
2512  *
2513  *   Async safe version callable from signal handlers.
2514  */
2515 void
2516 mono_stack_walk_async_safe (MonoStackWalkAsyncSafe func, void *initial_sig_context, void *user_data)
2517 {
2518         MonoContext ctx;
2519         AsyncStackWalkUserData ud = { func, user_data };
2520
2521         mono_sigctx_to_monoctx (initial_sig_context, &ctx);
2522         mono_get_eh_callbacks ()->mono_walk_stack_with_ctx (async_stack_walk_adapter, NULL, MONO_UNWIND_SIGNAL_SAFE, &ud);
2523 }
2524
2525 static gboolean
2526 last_managed (MonoMethod *m, gint no, gint ilo, gboolean managed, gpointer data)
2527 {
2528         MonoMethod **dest = (MonoMethod **)data;
2529         *dest = m;
2530         /*g_print ("In %s::%s [%d] [%d]\n", m->klass->name, m->name, no, ilo);*/
2531
2532         return managed;
2533 }
2534
2535 MonoMethod*
2536 mono_method_get_last_managed (void)
2537 {
2538         MonoMethod *m = NULL;
2539         mono_stack_walk_no_il (last_managed, &m);
2540         return m;
2541 }
2542
2543 static gboolean loader_lock_track_ownership = FALSE;
2544
2545 /**
2546  * mono_loader_lock:
2547  *
2548  * See docs/thread-safety.txt for the locking strategy.
2549  */
2550 void
2551 mono_loader_lock (void)
2552 {
2553         mono_locks_coop_acquire (&loader_mutex, LoaderLock);
2554         if (G_UNLIKELY (loader_lock_track_ownership)) {
2555                 mono_native_tls_set_value (loader_lock_nest_id, GUINT_TO_POINTER (GPOINTER_TO_UINT (mono_native_tls_get_value (loader_lock_nest_id)) + 1));
2556         }
2557 }
2558
2559 void
2560 mono_loader_unlock (void)
2561 {
2562         mono_locks_coop_release (&loader_mutex, LoaderLock);
2563         if (G_UNLIKELY (loader_lock_track_ownership)) {
2564                 mono_native_tls_set_value (loader_lock_nest_id, GUINT_TO_POINTER (GPOINTER_TO_UINT (mono_native_tls_get_value (loader_lock_nest_id)) - 1));
2565         }
2566 }
2567
2568 /*
2569  * mono_loader_lock_track_ownership:
2570  *
2571  *   Set whenever the runtime should track ownership of the loader lock. If set to TRUE,
2572  * the mono_loader_lock_is_owned_by_self () can be called to query whenever the current
2573  * thread owns the loader lock. 
2574  */
2575 void
2576 mono_loader_lock_track_ownership (gboolean track)
2577 {
2578         loader_lock_track_ownership = track;
2579 }
2580
2581 /*
2582  * mono_loader_lock_is_owned_by_self:
2583  *
2584  *   Return whenever the current thread owns the loader lock.
2585  * This is useful to avoid blocking operations while holding the loader lock.
2586  */
2587 gboolean
2588 mono_loader_lock_is_owned_by_self (void)
2589 {
2590         g_assert (loader_lock_track_ownership);
2591
2592         return GPOINTER_TO_UINT (mono_native_tls_get_value (loader_lock_nest_id)) > 0;
2593 }
2594
2595 /*
2596  * mono_loader_lock_if_inited:
2597  *
2598  *   Acquire the loader lock if it has been initialized, no-op otherwise. This can
2599  * be used in runtime initialization code which can be executed before mono_loader_init ().
2600  */
2601 void
2602 mono_loader_lock_if_inited (void)
2603 {
2604         if (loader_lock_inited)
2605                 mono_loader_lock ();
2606 }
2607
2608 void
2609 mono_loader_unlock_if_inited (void)
2610 {
2611         if (loader_lock_inited)
2612                 mono_loader_unlock ();
2613 }
2614
2615 /**
2616  * mono_method_signature:
2617  *
2618  * Return the signature of the method M. On failure, returns NULL, and ERR is set.
2619  */
2620 MonoMethodSignature*
2621 mono_method_signature_checked (MonoMethod *m, MonoError *error)
2622 {
2623         int idx;
2624         MonoImage* img;
2625         const char *sig;
2626         gboolean can_cache_signature;
2627         MonoGenericContainer *container;
2628         MonoMethodSignature *signature = NULL, *sig2;
2629         guint32 sig_offset;
2630
2631         /* We need memory barriers below because of the double-checked locking pattern */ 
2632
2633         mono_error_init (error);
2634
2635         if (m->signature)
2636                 return m->signature;
2637
2638         img = m->klass->image;
2639
2640         if (m->is_inflated) {
2641                 MonoMethodInflated *imethod = (MonoMethodInflated *) m;
2642                 /* the lock is recursive */
2643                 signature = mono_method_signature (imethod->declaring);
2644                 signature = inflate_generic_signature_checked (imethod->declaring->klass->image, signature, mono_method_get_context (m), error);
2645                 if (!mono_error_ok (error))
2646                         return NULL;
2647
2648                 inflated_signatures_size += mono_metadata_signature_size (signature);
2649
2650                 mono_image_lock (img);
2651
2652                 mono_memory_barrier ();
2653                 if (!m->signature)
2654                         m->signature = signature;
2655
2656                 mono_image_unlock (img);
2657
2658                 return m->signature;
2659         }
2660
2661         g_assert (mono_metadata_token_table (m->token) == MONO_TABLE_METHOD);
2662         idx = mono_metadata_token_index (m->token);
2663
2664         sig = mono_metadata_blob_heap (img, sig_offset = mono_metadata_decode_row_col (&img->tables [MONO_TABLE_METHOD], idx - 1, MONO_METHOD_SIGNATURE));
2665
2666         g_assert (!m->klass->generic_class);
2667         container = mono_method_get_generic_container (m);
2668         if (!container)
2669                 container = m->klass->generic_container;
2670
2671         /* Generic signatures depend on the container so they cannot be cached */
2672         /* icall/pinvoke signatures cannot be cached cause we modify them below */
2673         can_cache_signature = !(m->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) && !(m->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) && !container;
2674
2675         /* If the method has parameter attributes, that can modify the signature */
2676         if (mono_metadata_method_has_param_attrs (img, idx))
2677                 can_cache_signature = FALSE;
2678
2679         if (can_cache_signature) {
2680                 mono_image_lock (img);
2681                 signature = (MonoMethodSignature *)g_hash_table_lookup (img->method_signatures, sig);
2682                 mono_image_unlock (img);
2683         }
2684
2685         if (!signature) {
2686                 const char *sig_body;
2687                 /*TODO we should cache the failure result somewhere*/
2688                 if (!mono_verifier_verify_method_signature (img, sig_offset, error))
2689                         return NULL;
2690
2691                 /* size = */ mono_metadata_decode_blob_size (sig, &sig_body);
2692
2693                 signature = mono_metadata_parse_method_signature_full (img, container, idx, sig_body, NULL, error);
2694                 if (!signature)
2695                         return NULL;
2696
2697                 if (can_cache_signature) {
2698                         mono_image_lock (img);
2699                         sig2 = (MonoMethodSignature *)g_hash_table_lookup (img->method_signatures, sig);
2700                         if (!sig2)
2701                                 g_hash_table_insert (img->method_signatures, (gpointer)sig, signature);
2702                         mono_image_unlock (img);
2703                 }
2704
2705                 signatures_size += mono_metadata_signature_size (signature);
2706         }
2707
2708         /* Verify metadata consistency */
2709         if (signature->generic_param_count) {
2710                 if (!container || !container->is_method) {
2711                         mono_error_set_method_load (error, m->klass, m->name, "Signature claims method has generic parameters, but generic_params table says it doesn't for method 0x%08x from image %s", idx, img->name);
2712                         return NULL;
2713                 }
2714                 if (container->type_argc != signature->generic_param_count) {
2715                         mono_error_set_method_load (error, m->klass, m->name, "Inconsistent generic parameter count.  Signature says %d, generic_params table says %d for method 0x%08x from image %s", signature->generic_param_count, container->type_argc, idx, img->name);
2716                         return NULL;
2717                 }
2718         } else if (container && container->is_method && container->type_argc) {
2719                 mono_error_set_method_load (error, m->klass, m->name, "generic_params table claims method has generic parameters, but signature says it doesn't for method 0x%08x from image %s", idx, img->name);
2720                 return NULL;
2721         }
2722         if (m->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
2723                 signature->pinvoke = 1;
2724         else if (m->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
2725                 MonoCallConvention conv = (MonoCallConvention)0;
2726                 MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)m;
2727                 signature->pinvoke = 1;
2728
2729                 switch (piinfo->piflags & PINVOKE_ATTRIBUTE_CALL_CONV_MASK) {
2730                 case 0: /* no call conv, so using default */
2731                 case PINVOKE_ATTRIBUTE_CALL_CONV_WINAPI:
2732                         conv = MONO_CALL_DEFAULT;
2733                         break;
2734                 case PINVOKE_ATTRIBUTE_CALL_CONV_CDECL:
2735                         conv = MONO_CALL_C;
2736                         break;
2737                 case PINVOKE_ATTRIBUTE_CALL_CONV_STDCALL:
2738                         conv = MONO_CALL_STDCALL;
2739                         break;
2740                 case PINVOKE_ATTRIBUTE_CALL_CONV_THISCALL:
2741                         conv = MONO_CALL_THISCALL;
2742                         break;
2743                 case PINVOKE_ATTRIBUTE_CALL_CONV_FASTCALL:
2744                         conv = MONO_CALL_FASTCALL;
2745                         break;
2746                 case PINVOKE_ATTRIBUTE_CALL_CONV_GENERIC:
2747                 case PINVOKE_ATTRIBUTE_CALL_CONV_GENERICINST:
2748                 default:
2749                         mono_error_set_method_load (error, m->klass, m->name, "unsupported calling convention : 0x%04x for method 0x%08x from image %s", piinfo->piflags, idx, img->name);
2750                         return NULL;
2751                 }
2752                 signature->call_convention = conv;
2753         }
2754
2755         mono_image_lock (img);
2756
2757         mono_memory_barrier ();
2758         if (!m->signature)
2759                 m->signature = signature;
2760
2761         mono_image_unlock (img);
2762
2763         return m->signature;
2764 }
2765
2766 /**
2767  * mono_method_signature:
2768  *
2769  * Return the signature of the method M. On failure, returns NULL.
2770  */
2771 MonoMethodSignature*
2772 mono_method_signature (MonoMethod *m)
2773 {
2774         MonoError error;
2775         MonoMethodSignature *sig;
2776
2777         sig = mono_method_signature_checked (m, &error);
2778         if (!sig) {
2779                 char *type_name = mono_type_get_full_name (m->klass);
2780                 g_warning ("Could not load signature of %s:%s due to: %s", type_name, m->name, mono_error_get_message (&error));
2781                 g_free (type_name);
2782                 mono_error_cleanup (&error);
2783         }
2784
2785         return sig;
2786 }
2787
2788 const char*
2789 mono_method_get_name (MonoMethod *method)
2790 {
2791         return method->name;
2792 }
2793
2794 MonoClass*
2795 mono_method_get_class (MonoMethod *method)
2796 {
2797         return method->klass;
2798 }
2799
2800 guint32
2801 mono_method_get_token (MonoMethod *method)
2802 {
2803         return method->token;
2804 }
2805
2806 MonoMethodHeader*
2807 mono_method_get_header_checked (MonoMethod *method, MonoError *error)
2808 {
2809         int idx;
2810         guint32 rva;
2811         MonoImage* img;
2812         gpointer loc;
2813         MonoGenericContainer *container;
2814
2815         mono_error_init (error);
2816         img = method->klass->image;
2817
2818         if ((method->flags & METHOD_ATTRIBUTE_ABSTRACT) || (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) || (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) || (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
2819                 mono_error_set_bad_image (error, img, "Method has no body");
2820                 return NULL;
2821         }
2822
2823         if (method->is_inflated) {
2824                 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
2825                 MonoMethodHeader *header, *iheader;
2826
2827                 header = mono_method_get_header_checked (imethod->declaring, error);
2828                 if (!header)
2829                         return NULL;
2830
2831                 iheader = inflate_generic_header (header, mono_method_get_context (method), error);
2832                 mono_metadata_free_mh (header);
2833                 if (!iheader) {
2834                         return NULL;
2835                 }
2836
2837                 return iheader;
2838         }
2839
2840         if (method->wrapper_type != MONO_WRAPPER_NONE || method->sre_method) {
2841                 MonoMethodWrapper *mw = (MonoMethodWrapper *)method;
2842                 g_assert (mw->header);
2843                 return mw->header;
2844         }
2845
2846         /* 
2847          * We don't need locks here: the new header is allocated from malloc memory
2848          * and is not stored anywhere in the runtime, the user needs to free it.
2849          */
2850         g_assert (mono_metadata_token_table (method->token) == MONO_TABLE_METHOD);
2851         idx = mono_metadata_token_index (method->token);
2852         rva = mono_metadata_decode_row_col (&img->tables [MONO_TABLE_METHOD], idx - 1, MONO_METHOD_RVA);
2853
2854         if (!mono_verifier_verify_method_header (img, rva, NULL)) {
2855                 mono_error_set_bad_image (error, img, "Invalid method header, failed verification");
2856                 return NULL;
2857         }
2858
2859         loc = mono_image_rva_map (img, rva);
2860         if (!loc) {
2861                 mono_error_set_bad_image (error, img, "Method has zero rva");
2862                 return NULL;
2863         }
2864
2865         /*
2866          * When parsing the types of local variables, we must pass any container available
2867          * to ensure that both VAR and MVAR will get the right owner.
2868          */
2869         container = mono_method_get_generic_container (method);
2870         if (!container)
2871                 container = method->klass->generic_container;
2872         return mono_metadata_parse_mh_full (img, container, (const char *)loc, error);
2873 }
2874
2875 MonoMethodHeader*
2876 mono_method_get_header (MonoMethod *method)
2877 {
2878         MonoError error;
2879         MonoMethodHeader *header = mono_method_get_header_checked (method, &error);
2880         mono_error_cleanup (&error);
2881         return header;
2882 }
2883
2884
2885 guint32
2886 mono_method_get_flags (MonoMethod *method, guint32 *iflags)
2887 {
2888         if (iflags)
2889                 *iflags = method->iflags;
2890         return method->flags;
2891 }
2892
2893 /*
2894  * Find the method index in the metadata methodDef table.
2895  */
2896 guint32
2897 mono_method_get_index (MonoMethod *method)
2898 {
2899         MonoClass *klass = method->klass;
2900         int i;
2901
2902         if (klass->rank)
2903                 /* constructed array methods are not in the MethodDef table */
2904                 return 0;
2905
2906         if (method->token)
2907                 return mono_metadata_token_index (method->token);
2908
2909         mono_class_setup_methods (klass);
2910         if (mono_class_has_failure (klass))
2911                 return 0;
2912         for (i = 0; i < klass->method.count; ++i) {
2913                 if (method == klass->methods [i]) {
2914                         if (klass->image->uncompressed_metadata)
2915                                 return mono_metadata_translate_token_index (klass->image, MONO_TABLE_METHOD, klass->method.first + i + 1);
2916                         else
2917                                 return klass->method.first + i + 1;
2918                 }
2919         }
2920         return 0;
2921 }