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