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