Merge pull request #347 from JamesB7/master
[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 gpointer
1289 mono_lookup_pinvoke_call (MonoMethod *method, const char **exc_class, const char **exc_arg)
1290 {
1291         MonoImage *image = method->klass->image;
1292         MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)method;
1293         MonoTableInfo *tables = image->tables;
1294         MonoTableInfo *im = &tables [MONO_TABLE_IMPLMAP];
1295         MonoTableInfo *mr = &tables [MONO_TABLE_MODULEREF];
1296         guint32 im_cols [MONO_IMPLMAP_SIZE];
1297         guint32 scope_token;
1298         const char *import = NULL;
1299         const char *orig_scope;
1300         const char *new_scope;
1301         char *error_msg;
1302         char *full_name, *file_name, *found_name = NULL;
1303         int i;
1304         MonoDl *module = NULL;
1305         gboolean cached = FALSE;
1306
1307         g_assert (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL);
1308
1309         if (exc_class) {
1310                 *exc_class = NULL;
1311                 *exc_arg = NULL;
1312         }
1313
1314         if (piinfo->addr)
1315                 return piinfo->addr;
1316
1317         if (method->klass->image->dynamic) {
1318                 MonoReflectionMethodAux *method_aux = 
1319                         g_hash_table_lookup (
1320                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
1321                 if (!method_aux)
1322                         return NULL;
1323
1324                 import = method_aux->dllentry;
1325                 orig_scope = method_aux->dll;
1326         }
1327         else {
1328                 if (!piinfo->implmap_idx || piinfo->implmap_idx > im->rows)
1329                         return NULL;
1330
1331                 mono_metadata_decode_row (im, piinfo->implmap_idx - 1, im_cols, MONO_IMPLMAP_SIZE);
1332
1333                 if (!im_cols [MONO_IMPLMAP_SCOPE] || im_cols [MONO_IMPLMAP_SCOPE] > mr->rows)
1334                         return NULL;
1335
1336                 piinfo->piflags = im_cols [MONO_IMPLMAP_FLAGS];
1337                 import = mono_metadata_string_heap (image, im_cols [MONO_IMPLMAP_NAME]);
1338                 scope_token = mono_metadata_decode_row_col (mr, im_cols [MONO_IMPLMAP_SCOPE] - 1, MONO_MODULEREF_NAME);
1339                 orig_scope = mono_metadata_string_heap (image, scope_token);
1340         }
1341
1342         mono_dllmap_lookup (image, orig_scope, import, &new_scope, &import);
1343
1344         if (!module) {
1345                 mono_loader_lock ();
1346                 if (!image->pinvoke_scopes) {
1347                         image->pinvoke_scopes = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
1348                         image->pinvoke_scope_filenames = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
1349                 }
1350                 module = g_hash_table_lookup (image->pinvoke_scopes, new_scope);
1351                 found_name = g_hash_table_lookup (image->pinvoke_scope_filenames, new_scope);
1352                 mono_loader_unlock ();
1353                 if (module)
1354                         cached = TRUE;
1355                 if (found_name)
1356                         found_name = g_strdup (found_name);
1357         }
1358
1359         if (!module) {
1360                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1361                                         "DllImport attempting to load: '%s'.", new_scope);
1362
1363                 /* we allow a special name to dlopen from the running process namespace */
1364                 if (strcmp (new_scope, "__Internal") == 0)
1365                         module = mono_dl_open (NULL, MONO_DL_LAZY, &error_msg);
1366         }
1367
1368         /*
1369          * Try loading the module using a variety of names
1370          */
1371         for (i = 0; i < 4; ++i) {
1372                 switch (i) {
1373                 case 0:
1374                         /* Try the original name */
1375                         file_name = g_strdup (new_scope);
1376                         break;
1377                 case 1:
1378                         /* Try trimming the .dll extension */
1379                         if (strstr (new_scope, ".dll") == (new_scope + strlen (new_scope) - 4)) {
1380                                 file_name = g_strdup (new_scope);
1381                                 file_name [strlen (new_scope) - 4] = '\0';
1382                         }
1383                         else
1384                                 continue;
1385                         break;
1386                 case 2:
1387                         if (strstr (new_scope, "lib") != new_scope) {
1388                                 file_name = g_strdup_printf ("lib%s", new_scope);
1389                         }
1390                         else
1391                                 continue;
1392                         break;
1393                 default:
1394 #ifndef TARGET_WIN32
1395                         if (!g_ascii_strcasecmp ("user32.dll", new_scope) ||
1396                             !g_ascii_strcasecmp ("kernel32.dll", new_scope) ||
1397                             !g_ascii_strcasecmp ("user32", new_scope) ||
1398                             !g_ascii_strcasecmp ("kernel", new_scope)) {
1399                                 file_name = g_strdup ("libMonoSupportW.so");
1400                         } else
1401 #endif
1402                                     continue;
1403 #ifndef TARGET_WIN32
1404                         break;
1405 #endif
1406                 }
1407
1408                 if (!module && g_path_is_absolute (file_name)) {
1409                         module = cached_module_load (file_name, MONO_DL_LAZY, &error_msg);
1410                         if (!module) {
1411                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1412                                                 "DllImport error loading library '%s': '%s'.",
1413                                                         file_name, error_msg);
1414                                 g_free (error_msg);
1415                         } else {
1416                                 found_name = g_strdup (file_name);
1417                         }
1418                 }
1419
1420                 if (!module) {
1421                         void *iter = NULL;
1422                         char *mdirname = g_path_get_dirname (image->name);
1423                         while ((full_name = mono_dl_build_path (mdirname, file_name, &iter))) {
1424                                 module = cached_module_load (full_name, MONO_DL_LAZY, &error_msg);
1425                                 if (!module) {
1426                                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1427                                                 "DllImport error loading library '%s': '%s'.",
1428                                                                 full_name, error_msg);
1429                                         g_free (error_msg);
1430                                 } else {
1431                                         found_name = g_strdup (full_name);
1432                                 }
1433                                 g_free (full_name);
1434                                 if (module)
1435                                         break;
1436                         }
1437                         g_free (mdirname);
1438                 }
1439
1440                 if (!module) {
1441                         void *iter = NULL;
1442                         while ((full_name = mono_dl_build_path (NULL, file_name, &iter))) {
1443                                 module = cached_module_load (full_name, MONO_DL_LAZY, &error_msg);
1444                                 if (!module) {
1445                                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1446                                                         "DllImport error loading library '%s': '%s'.",
1447                                                                 full_name, error_msg);
1448                                         g_free (error_msg);
1449                                 } else {
1450                                         found_name = g_strdup (full_name);
1451                                 }
1452                                 g_free (full_name);
1453                                 if (module)
1454                                         break;
1455                         }
1456                 }
1457
1458                 if (!module) {
1459                         module = cached_module_load (file_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                                                         file_name, error_msg);
1464                         } else {
1465                                 found_name = g_strdup (file_name);
1466                         }
1467                 }
1468
1469                 g_free (file_name);
1470
1471                 if (module)
1472                         break;
1473         }
1474
1475         if (!module) {
1476                 mono_trace (G_LOG_LEVEL_WARNING, MONO_TRACE_DLLIMPORT,
1477                                 "DllImport unable to load library '%s'.",
1478                                 error_msg);
1479                 g_free (error_msg);
1480
1481                 if (exc_class) {
1482                         *exc_class = "DllNotFoundException";
1483                         *exc_arg = new_scope;
1484                 }
1485                 return NULL;
1486         }
1487
1488         if (!cached) {
1489                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1490                                         "DllImport loaded library '%s'.", found_name);
1491                 mono_loader_lock ();
1492                 if (!g_hash_table_lookup (image->pinvoke_scopes, new_scope)) {
1493                         g_hash_table_insert (image->pinvoke_scopes, g_strdup (new_scope), module);
1494                         g_hash_table_insert (image->pinvoke_scope_filenames, g_strdup (new_scope), g_strdup (found_name));
1495                 }
1496                 mono_loader_unlock ();
1497         }
1498
1499         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1500                                 "DllImport searching in: '%s' ('%s').", new_scope, found_name);
1501         g_free (found_name);
1502
1503 #ifdef TARGET_WIN32
1504         if (import && import [0] == '#' && isdigit (import [1])) {
1505                 char *end;
1506                 long id;
1507
1508                 id = strtol (import + 1, &end, 10);
1509                 if (id > 0 && *end == '\0')
1510                         import++;
1511         }
1512 #endif
1513         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1514                                 "Searching for '%s'.", import);
1515
1516         if (piinfo->piflags & PINVOKE_ATTRIBUTE_NO_MANGLE) {
1517                 error_msg = mono_dl_symbol (module, import, &piinfo->addr); 
1518         } else {
1519                 char *mangled_name = NULL, *mangled_name2 = NULL;
1520                 int mangle_charset;
1521                 int mangle_stdcall;
1522                 int mangle_param_count;
1523 #ifdef TARGET_WIN32
1524                 int param_count;
1525 #endif
1526
1527                 /*
1528                  * Search using a variety of mangled names
1529                  */
1530                 for (mangle_charset = 0; mangle_charset <= 1; mangle_charset ++) {
1531                         for (mangle_stdcall = 0; mangle_stdcall <= 1; mangle_stdcall ++) {
1532                                 gboolean need_param_count = FALSE;
1533 #ifdef TARGET_WIN32
1534                                 if (mangle_stdcall > 0)
1535                                         need_param_count = TRUE;
1536 #endif
1537                                 for (mangle_param_count = 0; mangle_param_count <= (need_param_count ? 256 : 0); mangle_param_count += 4) {
1538
1539                                         if (piinfo->addr)
1540                                                 continue;
1541
1542                                         mangled_name = (char*)import;
1543                                         switch (piinfo->piflags & PINVOKE_ATTRIBUTE_CHAR_SET_MASK) {
1544                                         case PINVOKE_ATTRIBUTE_CHAR_SET_UNICODE:
1545                                                 /* Try the mangled name first */
1546                                                 if (mangle_charset == 0)
1547                                                         mangled_name = g_strconcat (import, "W", NULL);
1548                                                 break;
1549                                         case PINVOKE_ATTRIBUTE_CHAR_SET_AUTO:
1550 #ifdef TARGET_WIN32
1551                                                 if (mangle_charset == 0)
1552                                                         mangled_name = g_strconcat (import, "W", NULL);
1553 #else
1554                                                 /* Try the mangled name last */
1555                                                 if (mangle_charset == 1)
1556                                                         mangled_name = g_strconcat (import, "A", NULL);
1557 #endif
1558                                                 break;
1559                                         case PINVOKE_ATTRIBUTE_CHAR_SET_ANSI:
1560                                         default:
1561                                                 /* Try the mangled name last */
1562                                                 if (mangle_charset == 1)
1563                                                         mangled_name = g_strconcat (import, "A", NULL);
1564                                                 break;
1565                                         }
1566
1567 #ifdef TARGET_WIN32
1568                                         if (mangle_param_count == 0)
1569                                                 param_count = mono_method_signature (method)->param_count * sizeof (gpointer);
1570                                         else
1571                                                 /* Try brute force, since it would be very hard to compute the stack usage correctly */
1572                                                 param_count = mangle_param_count;
1573
1574                                         /* Try the stdcall mangled name */
1575                                         /* 
1576                                          * gcc under windows creates mangled names without the underscore, but MS.NET
1577                                          * doesn't support it, so we doesn't support it either.
1578                                          */
1579                                         if (mangle_stdcall == 1)
1580                                                 mangled_name2 = g_strdup_printf ("_%s@%d", mangled_name, param_count);
1581                                         else
1582                                                 mangled_name2 = mangled_name;
1583 #else
1584                                         mangled_name2 = mangled_name;
1585 #endif
1586
1587                                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1588                                                                 "Probing '%s'.", mangled_name2);
1589
1590                                         error_msg = mono_dl_symbol (module, mangled_name2, &piinfo->addr);
1591                                         g_free (error_msg);
1592                                         error_msg = NULL;
1593
1594                                         if (piinfo->addr)
1595                                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1596                                                                         "Found as '%s'.", mangled_name2);
1597
1598                                         if (mangled_name != mangled_name2)
1599                                                 g_free (mangled_name2);
1600                                         if (mangled_name != import)
1601                                                 g_free (mangled_name);
1602                                 }
1603                         }
1604                 }
1605         }
1606
1607         if (!piinfo->addr) {
1608                 g_free (error_msg);
1609                 if (exc_class) {
1610                         *exc_class = "EntryPointNotFoundException";
1611                         *exc_arg = import;
1612                 }
1613                 return NULL;
1614         }
1615         return piinfo->addr;
1616 }
1617
1618 /*
1619  * LOCKING: assumes the loader lock to be taken.
1620  */
1621 static MonoMethod *
1622 mono_get_method_from_token (MonoImage *image, guint32 token, MonoClass *klass,
1623                             MonoGenericContext *context, gboolean *used_context)
1624 {
1625         MonoMethod *result;
1626         int table = mono_metadata_token_table (token);
1627         int idx = mono_metadata_token_index (token);
1628         MonoTableInfo *tables = image->tables;
1629         MonoGenericContainer *generic_container = NULL, *container = NULL;
1630         const char *sig = NULL;
1631         int size;
1632         guint32 cols [MONO_TYPEDEF_SIZE];
1633
1634         if (image->dynamic) {
1635                 MonoClass *handle_class;
1636
1637                 result = mono_lookup_dynamic_token_class (image, token, TRUE, &handle_class, context);
1638                 // This checks the memberref type as well
1639                 if (result && handle_class != mono_defaults.methodhandle_class) {
1640                         mono_loader_set_error_bad_image (g_strdup_printf ("Bad method token 0x%08x on image %s.", token, image->name));
1641                         return NULL;
1642                 }
1643                 return result;
1644         }
1645
1646         if (table != MONO_TABLE_METHOD) {
1647                 if (table == MONO_TABLE_METHODSPEC) {
1648                         if (used_context) *used_context = TRUE;
1649                         return method_from_methodspec (image, context, idx);
1650                 }
1651                 if (table != MONO_TABLE_MEMBERREF) {
1652                         g_warning ("got wrong token: 0x%08x\n", token);
1653                         mono_loader_set_error_bad_image (g_strdup_printf ("Bad method token 0x%08x on image %s.", token, image->name));
1654                         return NULL;
1655                 }
1656                 return method_from_memberref (image, idx, context, used_context);
1657         }
1658
1659         if (used_context) *used_context = FALSE;
1660
1661         if (idx > image->tables [MONO_TABLE_METHOD].rows) {
1662                 mono_loader_set_error_bad_image (g_strdup_printf ("Bad method token 0x%08x on image %s.", token, image->name));
1663                 return NULL;
1664         }
1665
1666         mono_metadata_decode_row (&image->tables [MONO_TABLE_METHOD], idx - 1, cols, 6);
1667
1668         if ((cols [2] & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
1669             (cols [1] & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
1670                 result = (MonoMethod *)mono_image_alloc0 (image, sizeof (MonoMethodPInvoke));
1671         } else {
1672                 result = (MonoMethod *)mono_image_alloc0 (image, sizeof (MonoMethod));
1673                 methods_size += sizeof (MonoMethod);
1674         }
1675
1676         mono_stats.method_count ++;
1677
1678         if (!klass) { /*FIXME put this before the image alloc*/
1679                 guint32 type = mono_metadata_typedef_from_method (image, token);
1680                 if (!type)
1681                         return NULL;
1682                 klass = mono_class_get (image, MONO_TOKEN_TYPE_DEF | type);
1683                 if (klass == NULL)
1684                         return NULL;
1685         }
1686
1687         result->slot = -1;
1688         result->klass = klass;
1689         result->flags = cols [2];
1690         result->iflags = cols [1];
1691         result->token = token;
1692         result->name = mono_metadata_string_heap (image, cols [3]);
1693
1694         if (!sig) /* already taken from the methodref */
1695                 sig = mono_metadata_blob_heap (image, cols [4]);
1696         size = mono_metadata_decode_blob_size (sig, &sig);
1697
1698         container = klass->generic_container;
1699
1700         /* 
1701          * load_generic_params does a binary search so only call it if the method 
1702          * is generic.
1703          */
1704         if (*sig & 0x10)
1705                 generic_container = mono_metadata_load_generic_params (image, token, container);
1706         if (generic_container) {
1707                 result->is_generic = TRUE;
1708                 generic_container->owner.method = result;
1709                 /*FIXME put this before the image alloc*/
1710                 if (!mono_metadata_load_generic_param_constraints_full (image, token, generic_container))
1711                         return NULL;
1712
1713                 container = generic_container;
1714         }
1715
1716         if (cols [1] & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
1717                 if (result->klass == mono_defaults.string_class && !strcmp (result->name, ".ctor"))
1718                         result->string_ctor = 1;
1719         } else if (cols [2] & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
1720                 MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)result;
1721
1722 #ifdef TARGET_WIN32
1723                 /* IJW is P/Invoke with a predefined function pointer. */
1724                 if (image->is_module_handle && (cols [1] & METHOD_IMPL_ATTRIBUTE_NATIVE)) {
1725                         piinfo->addr = mono_image_rva_map (image, cols [0]);
1726                         g_assert (piinfo->addr);
1727                 }
1728 #endif
1729                 piinfo->implmap_idx = mono_metadata_implmap_from_method (image, idx - 1);
1730                 /* Native methods can have no map. */
1731                 if (piinfo->implmap_idx)
1732                         piinfo->piflags = mono_metadata_decode_row_col (&tables [MONO_TABLE_IMPLMAP], piinfo->implmap_idx - 1, MONO_IMPLMAP_FLAGS);
1733         }
1734
1735         if (generic_container)
1736                 mono_method_set_generic_container (result, generic_container);
1737
1738         return result;
1739 }
1740
1741 MonoMethod *
1742 mono_get_method (MonoImage *image, guint32 token, MonoClass *klass)
1743 {
1744         return mono_get_method_full (image, token, klass, NULL);
1745 }
1746
1747 MonoMethod *
1748 mono_get_method_full (MonoImage *image, guint32 token, MonoClass *klass,
1749                       MonoGenericContext *context)
1750 {
1751         MonoMethod *result;
1752         gboolean used_context = FALSE;
1753
1754         /* We do everything inside the lock to prevent creation races */
1755
1756         mono_image_lock (image);
1757
1758         if (mono_metadata_token_table (token) == MONO_TABLE_METHOD) {
1759                 if (!image->method_cache)
1760                         image->method_cache = g_hash_table_new (NULL, NULL);
1761                 result = g_hash_table_lookup (image->method_cache, GINT_TO_POINTER (mono_metadata_token_index (token)));
1762         } else {
1763                 if (!image->methodref_cache)
1764                         image->methodref_cache = g_hash_table_new (NULL, NULL);
1765                 result = g_hash_table_lookup (image->methodref_cache, GINT_TO_POINTER (token));
1766         }
1767         mono_image_unlock (image);
1768
1769         if (result)
1770                 return result;
1771
1772         result = mono_get_method_from_token (image, token, klass, context, &used_context);
1773         if (!result)
1774                 return NULL;
1775
1776         mono_image_lock (image);
1777         if (!used_context && !result->is_inflated) {
1778                 MonoMethod *result2;
1779                 if (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
1780                         result2 = g_hash_table_lookup (image->method_cache, GINT_TO_POINTER (mono_metadata_token_index (token)));
1781                 else
1782                         result2 = g_hash_table_lookup (image->methodref_cache, GINT_TO_POINTER (token));
1783
1784                 if (result2) {
1785                         mono_image_unlock (image);
1786                         return result2;
1787                 }
1788
1789                 if (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
1790                         g_hash_table_insert (image->method_cache, GINT_TO_POINTER (mono_metadata_token_index (token)), result);
1791                 else
1792                         g_hash_table_insert (image->methodref_cache, GINT_TO_POINTER (token), result);
1793         }
1794
1795         mono_image_unlock (image);
1796
1797         return result;
1798 }
1799
1800 static MonoMethod *
1801 get_method_constrained (MonoImage *image, MonoMethod *method, MonoClass *constrained_class, MonoGenericContext *context)
1802 {
1803         MonoMethod *result;
1804         MonoClass *ic = NULL;
1805         MonoGenericContext *method_context = NULL;
1806         MonoMethodSignature *sig, *original_sig;
1807
1808         mono_class_init (constrained_class);
1809         original_sig = sig = mono_method_signature (method);
1810         if (sig == NULL) {
1811                 return NULL;
1812         }
1813
1814         if (method->is_inflated && sig->generic_param_count) {
1815                 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
1816                 sig = mono_method_signature (imethod->declaring); /*We assume that if the inflated method signature is valid, the declaring method is too*/
1817                 method_context = mono_method_get_context (method);
1818
1819                 original_sig = sig;
1820                 /*
1821                  * We must inflate the signature with the class instantiation to work on
1822                  * cases where a class inherit from a generic type and the override replaces
1823                  * any type argument which a concrete type. See #325283.
1824                  */
1825                 if (method_context->class_inst) {
1826                         MonoError error;
1827                         MonoGenericContext ctx;
1828                         ctx.method_inst = NULL;
1829                         ctx.class_inst = method_context->class_inst;
1830                         /*Fixme, property propagate this error*/
1831                         sig = inflate_generic_signature_checked (method->klass->image, sig, &ctx, &error);
1832                         if (!mono_error_ok (&error)) {
1833                                 mono_error_cleanup (&error);
1834                                 return NULL;
1835                         }
1836                 }
1837         }
1838
1839         if ((constrained_class != method->klass) && (MONO_CLASS_IS_INTERFACE (method->klass)))
1840                 ic = method->klass;
1841
1842         result = find_method (constrained_class, ic, method->name, sig, constrained_class);
1843         if (sig != original_sig)
1844                 mono_metadata_free_inflated_signature (sig);
1845
1846         if (!result) {
1847                 char *m = mono_method_full_name (method, 1);
1848                 g_warning ("Missing method %s.%s.%s in assembly %s method %s", method->klass->name_space,
1849                            method->klass->name, method->name, image->name, m);
1850                 g_free (m);
1851                 return NULL;
1852         }
1853
1854         if (method_context)
1855                 result = mono_class_inflate_generic_method (result, method_context);
1856
1857         return result;
1858 }
1859
1860 MonoMethod *
1861 mono_get_method_constrained_with_method (MonoImage *image, MonoMethod *method, MonoClass *constrained_class,
1862                              MonoGenericContext *context)
1863 {
1864         MonoMethod *result;
1865
1866         g_assert (method);
1867
1868         mono_loader_lock ();
1869
1870         result = get_method_constrained (image, method, constrained_class, context);
1871
1872         mono_loader_unlock ();
1873         return result;  
1874 }
1875 /**
1876  * mono_get_method_constrained:
1877  *
1878  * This is used when JITing the `constrained.' opcode.
1879  *
1880  * This returns two values: the contrained method, which has been inflated
1881  * as the function return value;   And the original CIL-stream method as
1882  * declared in cil_method.  The later is used for verification.
1883  */
1884 MonoMethod *
1885 mono_get_method_constrained (MonoImage *image, guint32 token, MonoClass *constrained_class,
1886                              MonoGenericContext *context, MonoMethod **cil_method)
1887 {
1888         MonoMethod *result;
1889
1890         mono_loader_lock ();
1891
1892         *cil_method = mono_get_method_from_token (image, token, NULL, context, NULL);
1893         if (!*cil_method) {
1894                 mono_loader_unlock ();
1895                 return NULL;
1896         }
1897
1898         result = get_method_constrained (image, *cil_method, constrained_class, context);
1899
1900         mono_loader_unlock ();
1901         return result;
1902 }
1903
1904 void
1905 mono_free_method  (MonoMethod *method)
1906 {
1907         if (mono_profiler_get_events () & MONO_PROFILE_METHOD_EVENTS)
1908                 mono_profiler_method_free (method);
1909         
1910         /* FIXME: This hack will go away when the profiler will support freeing methods */
1911         if (mono_profiler_get_events () != MONO_PROFILE_NONE)
1912                 return;
1913         
1914         if (method->signature) {
1915                 /* 
1916                  * FIXME: This causes crashes because the types inside signatures and
1917                  * locals are shared.
1918                  */
1919                 /* mono_metadata_free_method_signature (method->signature); */
1920                 /* g_free (method->signature); */
1921         }
1922         
1923         if (method->dynamic) {
1924                 MonoMethodWrapper *mw = (MonoMethodWrapper*)method;
1925                 int i;
1926
1927                 mono_marshal_free_dynamic_wrappers (method);
1928
1929                 mono_image_property_remove (method->klass->image, method);
1930
1931                 g_free ((char*)method->name);
1932                 if (mw->header) {
1933                         g_free ((char*)mw->header->code);
1934                         for (i = 0; i < mw->header->num_locals; ++i)
1935                                 g_free (mw->header->locals [i]);
1936                         g_free (mw->header->clauses);
1937                         g_free (mw->header);
1938                 }
1939                 g_free (mw->method_data);
1940                 g_free (method->signature);
1941                 g_free (method);
1942         }
1943 }
1944
1945 void
1946 mono_method_get_param_names (MonoMethod *method, const char **names)
1947 {
1948         int i, lastp;
1949         MonoClass *klass;
1950         MonoTableInfo *methodt;
1951         MonoTableInfo *paramt;
1952         MonoMethodSignature *signature;
1953         guint32 idx;
1954
1955         if (method->is_inflated)
1956                 method = ((MonoMethodInflated *) method)->declaring;
1957
1958         signature = mono_method_signature (method);
1959         /*FIXME this check is somewhat redundant since the caller usally will have to get the signature to figure out the
1960           number of arguments and allocate a properly sized array. */
1961         if (signature == NULL)
1962                 return;
1963
1964         if (!signature->param_count)
1965                 return;
1966
1967         for (i = 0; i < signature->param_count; ++i)
1968                 names [i] = "";
1969
1970         klass = method->klass;
1971         if (klass->rank)
1972                 return;
1973
1974         mono_class_init (klass);
1975
1976         if (klass->image->dynamic) {
1977                 MonoReflectionMethodAux *method_aux = 
1978                         g_hash_table_lookup (
1979                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
1980                 if (method_aux && method_aux->param_names) {
1981                         for (i = 0; i < mono_method_signature (method)->param_count; ++i)
1982                                 if (method_aux->param_names [i + 1])
1983                                         names [i] = method_aux->param_names [i + 1];
1984                 }
1985                 return;
1986         }
1987
1988         if (method->wrapper_type) {
1989                 char **pnames = NULL;
1990
1991                 mono_image_lock (klass->image);
1992                 if (klass->image->wrapper_param_names)
1993                         pnames = g_hash_table_lookup (klass->image->wrapper_param_names, method);
1994                 mono_image_unlock (klass->image);
1995
1996                 if (pnames) {
1997                         for (i = 0; i < signature->param_count; ++i)
1998                                 names [i] = pnames [i];
1999                 }
2000                 return;
2001         }
2002
2003         methodt = &klass->image->tables [MONO_TABLE_METHOD];
2004         paramt = &klass->image->tables [MONO_TABLE_PARAM];
2005         idx = mono_method_get_index (method);
2006         if (idx > 0) {
2007                 guint32 cols [MONO_PARAM_SIZE];
2008                 guint param_index;
2009
2010                 param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
2011
2012                 if (idx < methodt->rows)
2013                         lastp = mono_metadata_decode_row_col (methodt, idx, MONO_METHOD_PARAMLIST);
2014                 else
2015                         lastp = paramt->rows + 1;
2016                 for (i = param_index; i < lastp; ++i) {
2017                         mono_metadata_decode_row (paramt, i -1, cols, MONO_PARAM_SIZE);
2018                         if (cols [MONO_PARAM_SEQUENCE] && cols [MONO_PARAM_SEQUENCE] <= signature->param_count) /* skip return param spec and bounds check*/
2019                                 names [cols [MONO_PARAM_SEQUENCE] - 1] = mono_metadata_string_heap (klass->image, cols [MONO_PARAM_NAME]);
2020                 }
2021         }
2022 }
2023
2024 guint32
2025 mono_method_get_param_token (MonoMethod *method, int index)
2026 {
2027         MonoClass *klass = method->klass;
2028         MonoTableInfo *methodt;
2029         guint32 idx;
2030
2031         mono_class_init (klass);
2032
2033         if (klass->image->dynamic) {
2034                 g_assert_not_reached ();
2035         }
2036
2037         methodt = &klass->image->tables [MONO_TABLE_METHOD];
2038         idx = mono_method_get_index (method);
2039         if (idx > 0) {
2040                 guint param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
2041
2042                 if (index == -1)
2043                         /* Return value */
2044                         return mono_metadata_make_token (MONO_TABLE_PARAM, 0);
2045                 else
2046                         return mono_metadata_make_token (MONO_TABLE_PARAM, param_index + index);
2047         }
2048
2049         return 0;
2050 }
2051
2052 void
2053 mono_method_get_marshal_info (MonoMethod *method, MonoMarshalSpec **mspecs)
2054 {
2055         int i, lastp;
2056         MonoClass *klass = method->klass;
2057         MonoTableInfo *methodt;
2058         MonoTableInfo *paramt;
2059         MonoMethodSignature *signature;
2060         guint32 idx;
2061
2062         signature = mono_method_signature (method);
2063         g_assert (signature); /*FIXME there is no way to signal error from this function*/
2064
2065         for (i = 0; i < signature->param_count + 1; ++i)
2066                 mspecs [i] = NULL;
2067
2068         if (method->klass->image->dynamic) {
2069                 MonoReflectionMethodAux *method_aux = 
2070                         g_hash_table_lookup (
2071                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
2072                 if (method_aux && method_aux->param_marshall) {
2073                         MonoMarshalSpec **dyn_specs = method_aux->param_marshall;
2074                         for (i = 0; i < signature->param_count + 1; ++i)
2075                                 if (dyn_specs [i]) {
2076                                         mspecs [i] = g_new0 (MonoMarshalSpec, 1);
2077                                         memcpy (mspecs [i], dyn_specs [i], sizeof (MonoMarshalSpec));
2078                                         mspecs [i]->data.custom_data.custom_name = g_strdup (dyn_specs [i]->data.custom_data.custom_name);
2079                                         mspecs [i]->data.custom_data.cookie = g_strdup (dyn_specs [i]->data.custom_data.cookie);
2080                                 }
2081                 }
2082                 return;
2083         }
2084
2085         mono_class_init (klass);
2086
2087         methodt = &klass->image->tables [MONO_TABLE_METHOD];
2088         paramt = &klass->image->tables [MONO_TABLE_PARAM];
2089         idx = mono_method_get_index (method);
2090         if (idx > 0) {
2091                 guint32 cols [MONO_PARAM_SIZE];
2092                 guint param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
2093
2094                 if (idx < methodt->rows)
2095                         lastp = mono_metadata_decode_row_col (methodt, idx, MONO_METHOD_PARAMLIST);
2096                 else
2097                         lastp = paramt->rows + 1;
2098
2099                 for (i = param_index; i < lastp; ++i) {
2100                         mono_metadata_decode_row (paramt, i -1, cols, MONO_PARAM_SIZE);
2101
2102                         if (cols [MONO_PARAM_FLAGS] & PARAM_ATTRIBUTE_HAS_FIELD_MARSHAL && cols [MONO_PARAM_SEQUENCE] <= signature->param_count) {
2103                                 const char *tp;
2104                                 tp = mono_metadata_get_marshal_info (klass->image, i - 1, FALSE);
2105                                 g_assert (tp);
2106                                 mspecs [cols [MONO_PARAM_SEQUENCE]]= mono_metadata_parse_marshal_spec (klass->image, tp);
2107                         }
2108                 }
2109
2110                 return;
2111         }
2112 }
2113
2114 gboolean
2115 mono_method_has_marshal_info (MonoMethod *method)
2116 {
2117         int i, lastp;
2118         MonoClass *klass = method->klass;
2119         MonoTableInfo *methodt;
2120         MonoTableInfo *paramt;
2121         guint32 idx;
2122
2123         if (method->klass->image->dynamic) {
2124                 MonoReflectionMethodAux *method_aux = 
2125                         g_hash_table_lookup (
2126                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
2127                 MonoMarshalSpec **dyn_specs = method_aux->param_marshall;
2128                 if (dyn_specs) {
2129                         for (i = 0; i < mono_method_signature (method)->param_count + 1; ++i)
2130                                 if (dyn_specs [i])
2131                                         return TRUE;
2132                 }
2133                 return FALSE;
2134         }
2135
2136         mono_class_init (klass);
2137
2138         methodt = &klass->image->tables [MONO_TABLE_METHOD];
2139         paramt = &klass->image->tables [MONO_TABLE_PARAM];
2140         idx = mono_method_get_index (method);
2141         if (idx > 0) {
2142                 guint32 cols [MONO_PARAM_SIZE];
2143                 guint param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
2144
2145                 if (idx + 1 < methodt->rows)
2146                         lastp = mono_metadata_decode_row_col (methodt, idx, MONO_METHOD_PARAMLIST);
2147                 else
2148                         lastp = paramt->rows + 1;
2149
2150                 for (i = param_index; i < lastp; ++i) {
2151                         mono_metadata_decode_row (paramt, i -1, cols, MONO_PARAM_SIZE);
2152
2153                         if (cols [MONO_PARAM_FLAGS] & PARAM_ATTRIBUTE_HAS_FIELD_MARSHAL)
2154                                 return TRUE;
2155                 }
2156                 return FALSE;
2157         }
2158         return FALSE;
2159 }
2160
2161 gpointer
2162 mono_method_get_wrapper_data (MonoMethod *method, guint32 id)
2163 {
2164         void **data;
2165         g_assert (method != NULL);
2166         g_assert (method->wrapper_type != MONO_WRAPPER_NONE);
2167
2168         if (method->is_inflated)
2169                 method = ((MonoMethodInflated *) method)->declaring;
2170         data = ((MonoMethodWrapper *)method)->method_data;
2171         g_assert (data != NULL);
2172         g_assert (id <= GPOINTER_TO_UINT (*data));
2173         return data [id];
2174 }
2175
2176 typedef struct {
2177         MonoStackWalk func;
2178         gpointer user_data;
2179 } StackWalkUserData;
2180
2181 static gboolean
2182 stack_walk_adapter (MonoStackFrameInfo *frame, MonoContext *ctx, gpointer data)
2183 {
2184         StackWalkUserData *d = data;
2185
2186         switch (frame->type) {
2187         case FRAME_TYPE_DEBUGGER_INVOKE:
2188         case FRAME_TYPE_MANAGED_TO_NATIVE:
2189                 return FALSE;
2190         case FRAME_TYPE_MANAGED:
2191                 g_assert (frame->ji);
2192                 return d->func (frame->ji->method, frame->native_offset, frame->il_offset, frame->managed, d->user_data);
2193                 break;
2194         default:
2195                 g_assert_not_reached ();
2196                 return FALSE;
2197         }
2198 }
2199
2200 void
2201 mono_stack_walk (MonoStackWalk func, gpointer user_data)
2202 {
2203         StackWalkUserData ud = { func, user_data };
2204         mono_get_eh_callbacks ()->mono_walk_stack_with_ctx (stack_walk_adapter, NULL, MONO_UNWIND_LOOKUP_ALL, &ud);
2205 }
2206
2207 void
2208 mono_stack_walk_no_il (MonoStackWalk func, gpointer user_data)
2209 {
2210         StackWalkUserData ud = { func, user_data };
2211         mono_get_eh_callbacks ()->mono_walk_stack_with_ctx (stack_walk_adapter, NULL, MONO_UNWIND_DEFAULT, &ud);
2212 }
2213
2214 static gboolean
2215 last_managed (MonoMethod *m, gint no, gint ilo, gboolean managed, gpointer data)
2216 {
2217         MonoMethod **dest = data;
2218         *dest = m;
2219         /*g_print ("In %s::%s [%d] [%d]\n", m->klass->name, m->name, no, ilo);*/
2220
2221         return managed;
2222 }
2223
2224 MonoMethod*
2225 mono_method_get_last_managed (void)
2226 {
2227         MonoMethod *m = NULL;
2228         mono_stack_walk_no_il (last_managed, &m);
2229         return m;
2230 }
2231
2232 static gboolean loader_lock_track_ownership = FALSE;
2233
2234 /**
2235  * mono_loader_lock:
2236  *
2237  * See docs/thread-safety.txt for the locking strategy.
2238  */
2239 void
2240 mono_loader_lock (void)
2241 {
2242         mono_locks_acquire (&loader_mutex, LoaderLock);
2243         if (G_UNLIKELY (loader_lock_track_ownership)) {
2244                 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));
2245         }
2246 }
2247
2248 void
2249 mono_loader_unlock (void)
2250 {
2251         mono_locks_release (&loader_mutex, LoaderLock);
2252         if (G_UNLIKELY (loader_lock_track_ownership)) {
2253                 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));
2254         }
2255 }
2256
2257 /*
2258  * mono_loader_lock_track_ownership:
2259  *
2260  *   Set whenever the runtime should track ownership of the loader lock. If set to TRUE,
2261  * the mono_loader_lock_is_owned_by_self () can be called to query whenever the current
2262  * thread owns the loader lock. 
2263  */
2264 void
2265 mono_loader_lock_track_ownership (gboolean track)
2266 {
2267         loader_lock_track_ownership = track;
2268 }
2269
2270 /*
2271  * mono_loader_lock_is_owned_by_self:
2272  *
2273  *   Return whenever the current thread owns the loader lock.
2274  * This is useful to avoid blocking operations while holding the loader lock.
2275  */
2276 gboolean
2277 mono_loader_lock_is_owned_by_self (void)
2278 {
2279         g_assert (loader_lock_track_ownership);
2280
2281         return GPOINTER_TO_UINT (mono_native_tls_get_value (loader_lock_nest_id)) > 0;
2282 }
2283
2284 /*
2285  * mono_loader_lock_if_inited:
2286  *
2287  *   Acquire the loader lock if it has been initialized, no-op otherwise. This can
2288  * be used in runtime initialization code which can be executed before mono_loader_init ().
2289  */
2290 void
2291 mono_loader_lock_if_inited (void)
2292 {
2293         if (loader_lock_inited)
2294                 mono_loader_lock ();
2295 }
2296
2297 void
2298 mono_loader_unlock_if_inited (void)
2299 {
2300         if (loader_lock_inited)
2301                 mono_loader_unlock ();
2302 }
2303
2304 /**
2305  * mono_method_signature:
2306  *
2307  * Return the signature of the method M. On failure, returns NULL, and ERR is set.
2308  */
2309 MonoMethodSignature*
2310 mono_method_signature_checked (MonoMethod *m, MonoError *error)
2311 {
2312         int idx;
2313         int size;
2314         MonoImage* img;
2315         const char *sig;
2316         gboolean can_cache_signature;
2317         MonoGenericContainer *container;
2318         MonoMethodSignature *signature = NULL;
2319         guint32 sig_offset;
2320
2321         /* We need memory barriers below because of the double-checked locking pattern */ 
2322
2323         mono_error_init (error);
2324
2325         if (m->signature)
2326                 return m->signature;
2327
2328         mono_loader_lock ();
2329
2330         if (m->signature) {
2331                 mono_loader_unlock ();
2332                 return m->signature;
2333         }
2334
2335         if (m->is_inflated) {
2336                 MonoMethodInflated *imethod = (MonoMethodInflated *) m;
2337                 /* the lock is recursive */
2338                 signature = mono_method_signature (imethod->declaring);
2339                 signature = inflate_generic_signature_checked (imethod->declaring->klass->image, signature, mono_method_get_context (m), error);
2340                 if (!mono_error_ok (error)) {
2341                         mono_loader_unlock ();
2342                         return NULL;
2343                 }
2344
2345                 inflated_signatures_size += mono_metadata_signature_size (signature);
2346
2347                 mono_memory_barrier ();
2348                 m->signature = signature;
2349                 mono_loader_unlock ();
2350                 return m->signature;
2351         }
2352
2353         g_assert (mono_metadata_token_table (m->token) == MONO_TABLE_METHOD);
2354         idx = mono_metadata_token_index (m->token);
2355         img = m->klass->image;
2356
2357         sig = mono_metadata_blob_heap (img, sig_offset = mono_metadata_decode_row_col (&img->tables [MONO_TABLE_METHOD], idx - 1, MONO_METHOD_SIGNATURE));
2358
2359         g_assert (!m->klass->generic_class);
2360         container = mono_method_get_generic_container (m);
2361         if (!container)
2362                 container = m->klass->generic_container;
2363
2364         /* Generic signatures depend on the container so they cannot be cached */
2365         /* icall/pinvoke signatures cannot be cached cause we modify them below */
2366         can_cache_signature = !(m->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) && !(m->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) && !container;
2367
2368         /* If the method has parameter attributes, that can modify the signature */
2369         if (mono_metadata_method_has_param_attrs (img, idx))
2370                 can_cache_signature = FALSE;
2371
2372         if (can_cache_signature)
2373                 signature = g_hash_table_lookup (img->method_signatures, sig);
2374
2375         if (!signature) {
2376                 const char *sig_body;
2377                 /*TODO we should cache the failure result somewhere*/
2378                 if (!mono_verifier_verify_method_signature (img, sig_offset, error)) {
2379                         mono_loader_unlock ();
2380                         return NULL;
2381                 }
2382
2383                 size = mono_metadata_decode_blob_size (sig, &sig_body);
2384
2385                 signature = mono_metadata_parse_method_signature_full (img, container, idx, sig_body, NULL);
2386                 if (!signature) {
2387                         mono_loader_clear_error ();
2388                         mono_loader_unlock ();
2389                         mono_error_set_method_load (error, m->klass, m->name, "");
2390                         return NULL;
2391                 }
2392
2393                 if (can_cache_signature)
2394                         g_hash_table_insert (img->method_signatures, (gpointer)sig, signature);
2395
2396                 signatures_size += mono_metadata_signature_size (signature);
2397         }
2398
2399         /* Verify metadata consistency */
2400         if (signature->generic_param_count) {
2401                 if (!container || !container->is_method) {
2402                         mono_loader_unlock ();
2403                         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);
2404                         return NULL;
2405                 }
2406                 if (container->type_argc != signature->generic_param_count) {
2407                         mono_loader_unlock ();
2408                         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);
2409                         return NULL;
2410                 }
2411         } else if (container && container->is_method && container->type_argc) {
2412                 mono_loader_unlock ();
2413                 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);
2414                 return NULL;
2415         }
2416         if (m->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
2417                 signature->pinvoke = 1;
2418         else if (m->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
2419                 MonoCallConvention conv = 0;
2420                 MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)m;
2421                 signature->pinvoke = 1;
2422
2423                 switch (piinfo->piflags & PINVOKE_ATTRIBUTE_CALL_CONV_MASK) {
2424                 case 0: /* no call conv, so using default */
2425                 case PINVOKE_ATTRIBUTE_CALL_CONV_WINAPI:
2426                         conv = MONO_CALL_DEFAULT;
2427                         break;
2428                 case PINVOKE_ATTRIBUTE_CALL_CONV_CDECL:
2429                         conv = MONO_CALL_C;
2430                         break;
2431                 case PINVOKE_ATTRIBUTE_CALL_CONV_STDCALL:
2432                         conv = MONO_CALL_STDCALL;
2433                         break;
2434                 case PINVOKE_ATTRIBUTE_CALL_CONV_THISCALL:
2435                         conv = MONO_CALL_THISCALL;
2436                         break;
2437                 case PINVOKE_ATTRIBUTE_CALL_CONV_FASTCALL:
2438                         conv = MONO_CALL_FASTCALL;
2439                         break;
2440                 case PINVOKE_ATTRIBUTE_CALL_CONV_GENERIC:
2441                 case PINVOKE_ATTRIBUTE_CALL_CONV_GENERICINST:
2442                 default:
2443                         mono_loader_unlock ();
2444                         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);
2445                         return NULL;
2446                 }
2447                 signature->call_convention = conv;
2448         }
2449
2450         mono_memory_barrier ();
2451         m->signature = signature;
2452
2453         mono_loader_unlock ();
2454         return m->signature;
2455 }
2456
2457 /**
2458  * mono_method_signature:
2459  *
2460  * Return the signature of the method M. On failure, returns NULL.
2461  */
2462 MonoMethodSignature*
2463 mono_method_signature (MonoMethod *m)
2464 {
2465         MonoError error;
2466         MonoMethodSignature *sig;
2467
2468         sig = mono_method_signature_checked (m, &error);
2469         if (!sig) {
2470                 char *type_name = mono_type_get_full_name (m->klass);
2471                 g_warning ("Could not load signature of %s:%s due to: %s", type_name, m->name, mono_error_get_message (&error));
2472                 g_free (type_name);
2473                 mono_error_cleanup (&error);
2474         }
2475
2476         return sig;
2477 }
2478
2479 const char*
2480 mono_method_get_name (MonoMethod *method)
2481 {
2482         return method->name;
2483 }
2484
2485 MonoClass*
2486 mono_method_get_class (MonoMethod *method)
2487 {
2488         return method->klass;
2489 }
2490
2491 guint32
2492 mono_method_get_token (MonoMethod *method)
2493 {
2494         return method->token;
2495 }
2496
2497 MonoMethodHeader*
2498 mono_method_get_header (MonoMethod *method)
2499 {
2500         int idx;
2501         guint32 rva;
2502         MonoImage* img;
2503         gpointer loc;
2504         MonoMethodHeader *header;
2505
2506         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))
2507                 return NULL;
2508
2509         if (method->is_inflated) {
2510                 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
2511                 MonoMethodHeader *header;
2512
2513                 mono_loader_lock ();
2514
2515                 if (imethod->header) {
2516                         mono_loader_unlock ();
2517                         return imethod->header;
2518                 }
2519
2520                 header = mono_method_get_header (imethod->declaring);
2521                 if (!header) {
2522                         mono_loader_unlock ();
2523                         return NULL;
2524                 }
2525
2526                 imethod->header = inflate_generic_header (header, mono_method_get_context (method));
2527                 mono_loader_unlock ();
2528                 mono_metadata_free_mh (header);
2529                 return imethod->header;
2530         }
2531
2532         if (method->wrapper_type != MONO_WRAPPER_NONE || method->sre_method) {
2533                 MonoMethodWrapper *mw = (MonoMethodWrapper *)method;
2534                 g_assert (mw->header);
2535                 return mw->header;
2536         }
2537
2538         /* 
2539          * We don't need locks here: the new header is allocated from malloc memory
2540          * and is not stored anywhere in the runtime, the user needs to free it.
2541          */
2542         g_assert (mono_metadata_token_table (method->token) == MONO_TABLE_METHOD);
2543         idx = mono_metadata_token_index (method->token);
2544         img = method->klass->image;
2545         rva = mono_metadata_decode_row_col (&img->tables [MONO_TABLE_METHOD], idx - 1, MONO_METHOD_RVA);
2546
2547         if (!mono_verifier_verify_method_header (img, rva, NULL))
2548                 return NULL;
2549
2550         loc = mono_image_rva_map (img, rva);
2551         if (!loc)
2552                 return NULL;
2553
2554         header = mono_metadata_parse_mh_full (img, mono_method_get_generic_container (method), loc);
2555
2556         return header;
2557 }
2558
2559 guint32
2560 mono_method_get_flags (MonoMethod *method, guint32 *iflags)
2561 {
2562         if (iflags)
2563                 *iflags = method->iflags;
2564         return method->flags;
2565 }
2566
2567 /*
2568  * Find the method index in the metadata methodDef table.
2569  */
2570 guint32
2571 mono_method_get_index (MonoMethod *method) {
2572         MonoClass *klass = method->klass;
2573         int i;
2574
2575         if (klass->rank)
2576                 /* constructed array methods are not in the MethodDef table */
2577                 return 0;
2578
2579         if (method->token)
2580                 return mono_metadata_token_index (method->token);
2581
2582         mono_class_setup_methods (klass);
2583         if (klass->exception_type)
2584                 return 0;
2585         for (i = 0; i < klass->method.count; ++i) {
2586                 if (method == klass->methods [i]) {
2587                         if (klass->image->uncompressed_metadata)
2588                                 return mono_metadata_translate_token_index (klass->image, MONO_TABLE_METHOD, klass->method.first + i + 1);
2589                         else
2590                                 return klass->method.first + i + 1;
2591                 }
2592         }
2593         return 0;
2594 }
2595