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