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