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