Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.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  *
8  * (C) 2001 Ximian, Inc.
9  *
10  * This file is used by the interpreter and the JIT engine to locate
11  * assemblies.  Used to load AssemblyRef and later to resolve various
12  * kinds of `Refs'.
13  *
14  * TODO:
15  *   This should keep track of the assembly versions that we are loading.
16  *
17  */
18 #include <config.h>
19 #include <glib.h>
20 #include <gmodule.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include <mono/metadata/metadata.h>
24 #include <mono/metadata/image.h>
25 #include <mono/metadata/assembly.h>
26 #include <mono/metadata/tokentype.h>
27 #include <mono/metadata/cil-coff.h>
28 #include <mono/metadata/tabledefs.h>
29 #include <mono/metadata/loader.h>
30 #include <mono/metadata/class.h>
31
32 MonoDefaults mono_defaults;
33
34 static char *dll_map[] = {
35         "libc", "libc.so.6",
36         "libm", "libm.so.6",
37         "cygwin1.dll", "libc.so.6", 
38         NULL, NULL
39 };
40
41 static const char *
42 mono_map_dll (const char *name)
43 {
44         int i = 0;
45
46         while (dll_map [i]) {
47                 if (!strcmp (dll_map [i], name))
48                         return  dll_map [i + 1];
49                 i += 2;
50         }
51
52         return name;
53 }
54
55 void
56 mono_init ()
57 {
58         static gboolean initialized = FALSE;
59         MonoAssembly *ass;
60         enum MonoImageOpenStatus status = MONO_IMAGE_OK;
61
62         if (initialized)
63                 return;
64
65         /* find the corlib */
66         ass = mono_assembly_open (CORLIB_NAME, NULL, &status);
67         g_assert (status == MONO_IMAGE_OK);
68         g_assert (ass != NULL);
69         mono_defaults.corlib = ass->image;
70
71         mono_defaults.object_class = mono_class_from_name (
72                 mono_defaults.corlib, "System", "Object");
73         g_assert (mono_defaults.object_class != 0);
74
75         mono_defaults.boolean_class = mono_class_from_name (
76                 mono_defaults.corlib, "System", "Boolean");
77         g_assert (mono_defaults.boolean_class != 0);
78
79         mono_defaults.byte_class = mono_class_from_name (
80                 mono_defaults.corlib, "System", "Byte");
81         g_assert (mono_defaults.byte_class != 0);
82
83         mono_defaults.sbyte_class = mono_class_from_name (
84                 mono_defaults.corlib, "System", "SByte");
85         g_assert (mono_defaults.sbyte_class != 0);
86
87         mono_defaults.int16_class = mono_class_from_name (
88                 mono_defaults.corlib, "System", "Int16");
89         g_assert (mono_defaults.int16_class != 0);
90
91         mono_defaults.uint16_class = mono_class_from_name (
92                 mono_defaults.corlib, "System", "UInt16");
93         g_assert (mono_defaults.uint16_class != 0);
94
95         mono_defaults.int32_class = mono_class_from_name (
96                 mono_defaults.corlib, "System", "Int32");
97         g_assert (mono_defaults.int32_class != 0);
98
99         mono_defaults.uint32_class = mono_class_from_name (
100                 mono_defaults.corlib, "System", "UInt32");
101         g_assert (mono_defaults.uint32_class != 0);
102
103         mono_defaults.int64_class = mono_class_from_name (
104                 mono_defaults.corlib, "System", "Int64");
105         g_assert (mono_defaults.int64_class != 0);
106
107         mono_defaults.uint64_class = mono_class_from_name (
108                 mono_defaults.corlib, "System", "UInt64");
109         g_assert (mono_defaults.uint64_class != 0);
110
111         mono_defaults.single_class = mono_class_from_name (
112                 mono_defaults.corlib, "System", "Single");
113         g_assert (mono_defaults.single_class != 0);
114
115         mono_defaults.double_class = mono_class_from_name (
116                 mono_defaults.corlib, "System", "Double");
117         g_assert (mono_defaults.double_class != 0);
118
119         mono_defaults.char_class = mono_class_from_name (
120                 mono_defaults.corlib, "System", "Char");
121         g_assert (mono_defaults.char_class != 0);
122
123         mono_defaults.string_class = mono_class_from_name (
124                 mono_defaults.corlib, "System", "String");
125         g_assert (mono_defaults.string_class != 0);
126
127         mono_defaults.enum_class = mono_class_from_name (
128                 mono_defaults.corlib, "System", "Enum");
129         g_assert (mono_defaults.enum_class != 0);
130
131         mono_defaults.array_class = mono_class_from_name (
132                 mono_defaults.corlib, "System", "Array");
133         g_assert (mono_defaults.array_class != 0);
134 }
135
136 static GHashTable *icall_hash = NULL;
137
138 void
139 mono_add_internal_call (const char *name, gpointer method)
140 {
141         if (!icall_hash)
142                 icall_hash = g_hash_table_new (g_str_hash , g_str_equal);
143         
144         g_hash_table_insert (icall_hash, g_strdup (name), method);
145 }
146
147 gpointer
148 mono_lookup_internal_call (const char *name)
149 {
150         gpointer res;
151
152         if (!icall_hash) {
153                 g_warning ("icall_hash not initialized");
154                 g_assert_not_reached ();
155         }
156
157         if (!(res = g_hash_table_lookup (icall_hash, name))) {
158                 g_warning ("cant resolve internal call to \"%s\"", name);
159                 g_assert_not_reached ();
160         }
161
162         return res;
163 }
164
165 static MonoMethod *
166 method_from_memberref (MonoImage *image, guint32 index)
167 {
168         MonoImage *mimage;
169         MonoClass *klass;
170         MonoTableInfo *tables = image->tables;
171         guint32 cols[6];
172         guint32 nindex, class, i;
173         const char *mname, *name, *nspace;
174         MonoMethodSignature *sig;
175         const char *ptr;
176
177         mono_metadata_decode_row (&tables [MONO_TABLE_MEMBERREF], index-1, cols, 3);
178         nindex = cols [MONO_MEMBERREF_CLASS] >> MEMBERREF_PARENT_BITS;
179         class = cols [MONO_MEMBERREF_CLASS] & MEMBERREF_PARENT_MASK;
180         /*g_print ("methodref: 0x%x 0x%x %s\n", class, nindex,
181                 mono_metadata_string_heap (m, cols [MONO_MEMBERREF_NAME]));*/
182
183         mname = mono_metadata_string_heap (image, cols [MONO_MEMBERREF_NAME]);
184         
185         ptr = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
186         mono_metadata_decode_blob_size (ptr, &ptr);
187         sig = mono_metadata_parse_method_signature (image, 0, ptr, NULL);
188
189         switch (class) {
190         case MEMBERREF_PARENT_TYPEREF: {
191                 guint32 scopeindex, scopetable;
192
193                 mono_metadata_decode_row (&tables [MONO_TABLE_TYPEREF], nindex-1, cols, MONO_TYPEREF_SIZE);
194                 scopeindex = cols [MONO_TYPEREF_SCOPE] >> RESOLTION_SCOPE_BITS;
195                 scopetable = cols [MONO_TYPEREF_SCOPE] & RESOLTION_SCOPE_MASK;
196                 /*g_print ("typeref: 0x%x 0x%x %s.%s\n", scopetable, scopeindex,
197                         mono_metadata_string_heap (m, cols [MONO_TYPEREF_NAMESPACE]),
198                         mono_metadata_string_heap (m, cols [MONO_TYPEREF_NAME]));*/
199                 switch (scopetable) {
200                 case RESOLTION_SCOPE_ASSEMBLYREF:
201                         /*
202                          * To find the method we have the following info:
203                          * *) name and namespace of the class from the TYPEREF table
204                          * *) name and signature of the method from the MEMBERREF table
205                          */
206                         nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
207                         name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
208
209                         /* this will triggered by references to mscorlib */
210                         g_assert (image->references [scopeindex-1] != NULL);
211
212                         mimage = image->references [scopeindex-1]->image;
213
214                         klass = mono_class_from_name (mimage, nspace, name);
215                         mono_class_metadata_init (klass);
216
217                         /* mostly dumb search for now */
218                         for (i = 0; i < klass->method.count; ++i) {
219                                 MonoMethod *m = klass->methods [i];
220                                 if (!strcmp (mname, m->name)) {
221                                         if (mono_metadata_signature_equal (image, sig, mimage, m->signature)) {
222                                                 mono_metadata_free_method_signature (sig);
223                                                 return m;
224                                         }
225                                 }
226                         }
227                         g_warning ("can't find method %s.%s::%s", nspace, name, mname);
228                         g_assert_not_reached ();
229                         break;
230                 default:
231                         g_assert_not_reached ();
232                 }
233                 break;
234         }
235         case MEMBERREF_PARENT_TYPESPEC: {
236                 guint32 bcols [MONO_TYPESPEC_SIZE];
237                 guint32 len;
238                 MonoType *type;
239                 MonoMethod *result;
240
241                 mono_metadata_decode_row (&tables [MONO_TABLE_TYPESPEC], nindex - 1, 
242                                           bcols, MONO_TYPESPEC_SIZE);
243                 ptr = mono_metadata_blob_heap (image, bcols [MONO_TYPESPEC_SIGNATURE]);
244                 len = mono_metadata_decode_value (ptr, &ptr);   
245                 type = mono_metadata_parse_type (image, MONO_PARSE_TYPE, 0, ptr, &ptr);
246
247                 if (type->type != MONO_TYPE_ARRAY)
248                         g_assert_not_reached ();                
249
250                 result = (MonoMethod *)g_new0 (MonoMethod, 1);
251                 result->klass = mono_defaults.array_class;
252                 result->iflags = METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL;
253                 result->signature = sig;
254                 
255                 if (!strcmp (mname, ".ctor")) { 
256                         g_assert (sig->hasthis);
257                         if (type->data.array->rank == sig->param_count) {
258                                 result->addr = mono_lookup_internal_call ("__array_ctor");
259                                 return result;
260                         } else if ((type->data.array->rank * 2) == sig->param_count) {
261                                 result->addr = mono_lookup_internal_call ("__array_bound_ctor");
262                                 return result;                  
263                         } else 
264                                 g_assert_not_reached ();
265                 }
266
267                 if (!strcmp (mname, "Set")) {
268                         g_assert (sig->hasthis);
269                         g_assert (type->data.array->rank + 1 == sig->param_count);
270
271                         result->addr = mono_lookup_internal_call ("__array_Set");
272                         return result;
273                 }
274
275                 if (!strcmp (mname, "Get")) {
276                         g_assert (sig->hasthis);
277                         g_assert (type->data.array->rank == sig->param_count);
278
279                         result->addr = mono_lookup_internal_call ("__array_Get");
280                         return result;
281                 }
282
283                 g_assert_not_reached ();
284                 break;
285         }
286         default:
287                 g_assert_not_reached ();
288         }
289
290         return NULL;
291 }
292
293 static ffi_type *
294 ves_map_ffi_type (MonoType *type)
295 {
296         ffi_type *rettype;
297
298         switch (type->type) {
299         case MONO_TYPE_I1:
300                 rettype = &ffi_type_sint8;
301                 break;
302         case MONO_TYPE_BOOLEAN:
303         case MONO_TYPE_U1:
304                 rettype = &ffi_type_uint8;
305                 break;
306         case MONO_TYPE_I2:
307                 rettype = &ffi_type_sint16;
308                 break;
309         case MONO_TYPE_U2:
310         case MONO_TYPE_CHAR:
311                 rettype = &ffi_type_uint16;
312                 break;
313         case MONO_TYPE_I4:
314                 rettype = &ffi_type_sint32;
315                 break;
316         case MONO_TYPE_U4:
317                 rettype = &ffi_type_sint32;
318                 break;
319         case MONO_TYPE_I:
320                 rettype = &ffi_type_sint;
321                 break;
322         case MONO_TYPE_U:
323                 rettype = &ffi_type_sint;
324                 break;
325         case MONO_TYPE_I8:
326                 rettype = &ffi_type_sint64;
327                 break;
328         case MONO_TYPE_PTR:
329                 rettype = &ffi_type_pointer;
330                 break;
331         case MONO_TYPE_R4:
332                 rettype = &ffi_type_float;
333                 break;
334         case MONO_TYPE_R8:
335                 rettype = &ffi_type_double;
336                 break;
337         case MONO_TYPE_STRING:
338                 rettype = &ffi_type_pointer;
339                 break;
340         case MONO_TYPE_VOID:
341                 rettype = &ffi_type_void;
342                 break;
343         default:
344                 g_warning ("not implemented 0x%02x", type->type);
345                 g_assert_not_reached ();
346         }
347
348         return rettype;
349 }
350
351 static void
352 fill_pinvoke_info (MonoImage *image, MonoMethodPInvoke *piinfo, int index)
353 {
354         MonoMethod *mh = &piinfo->method;
355         MonoTableInfo *tables = image->tables;
356         MonoTableInfo *im = &tables [MONO_TABLE_IMPLMAP];
357         MonoTableInfo *mr = &tables [MONO_TABLE_MODULEREF];
358         guint32 im_cols [4];
359         guint32 mr_cols [1];
360         const char *import = NULL;
361         const char *scope = NULL;
362         char *full_name;
363         GModule *gmodule;
364         ffi_type **args, *rettype;
365         int i, acount;
366
367         for (i = 0; i < im->rows; i++) {
368                         
369                 mono_metadata_decode_row (im, i, im_cols, 4);
370
371                 if ((im_cols[1] >> 1) == index + 1) {
372
373                         import = mono_metadata_string_heap (image, im_cols [2]);
374
375                         mono_metadata_decode_row (mr, im_cols [3] - 1, mr_cols,
376                                                   1);
377                         
378                         scope = mono_metadata_string_heap (image, mr_cols [0]);
379                 }
380         }
381
382         g_assert (import && scope);
383
384         scope = mono_map_dll (scope);
385         full_name = g_module_build_path (NULL, scope);
386         gmodule = g_module_open (full_name, G_MODULE_BIND_LAZY);
387
388         if (!gmodule)
389                 g_error ("Failed to load library %s (%s)", full_name, scope);
390         g_free (full_name);
391
392         piinfo->cif = g_new (ffi_cif , 1);
393         piinfo->piflags = im_cols [0];
394
395         g_module_symbol (gmodule, import, &mh->addr); 
396
397         g_assert (mh->addr);
398
399         acount = mh->signature->param_count;
400
401         args = g_new (ffi_type *, acount);
402
403         for (i = 0; i < acount; i++)
404                 args[i] = ves_map_ffi_type (mh->signature->params [i]);
405
406         rettype = ves_map_ffi_type (mh->signature->ret);
407         
408         if (!ffi_prep_cif (piinfo->cif, FFI_DEFAULT_ABI, acount, rettype, 
409                            args) == FFI_OK) {
410                 g_warning ("prepare pinvoke failed");
411                 g_assert_not_reached ();
412         }
413 }
414
415 MonoMethod *
416 mono_get_method (MonoImage *image, guint32 token, MonoClass *klass)
417 {
418         MonoMethod *result;
419         int table = mono_metadata_token_table (token);
420         int index = mono_metadata_token_index (token);
421         MonoTableInfo *tables = image->tables;
422         const char *loc, *sig = NULL;
423         char *name;
424         int size;
425         guint32 cols [MONO_TYPEDEF_SIZE];
426
427         if (table == MONO_TABLE_METHOD && (result = g_hash_table_lookup (image->method_cache, GINT_TO_POINTER (token))))
428                         return result;
429
430         if (table != MONO_TABLE_METHOD) {
431                 g_assert (table == MONO_TABLE_MEMBERREF);
432                 return method_from_memberref (image, index);
433         }
434
435         mono_metadata_decode_row (&tables [table], index - 1, cols, 6);
436
437         if (cols [1] & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
438                 MonoTableInfo *t = &image->tables [MONO_TABLE_TYPEDEF];
439                 MonoAssembly *corlib;
440                 guint32 tdef;
441                 guint32 tdcols [MONO_TYPEDEF_SIZE];
442
443                 tdef = mono_metadata_typedef_from_method (image, index - 1) - 1;
444
445                 mono_metadata_decode_row (t, tdef, tdcols, MONO_TYPEDEF_SIZE);
446
447                 name = g_strconcat (mono_metadata_string_heap (image, tdcols [MONO_TYPEDEF_NAMESPACE]), ".",
448                                     mono_metadata_string_heap (image, tdcols [MONO_TYPEDEF_NAME]), "::", 
449                                     mono_metadata_string_heap (image, cols [MONO_METHOD_NAME]), NULL);
450
451                 corlib = mono_assembly_open (CORLIB_NAME, NULL, NULL);
452
453                 /* all internal calls must be inside corlib */
454                 g_assert (corlib->image == image);
455
456                 result = (MonoMethod *)g_new0 (MonoMethod, 1);
457
458                 result->addr = mono_lookup_internal_call (name);
459
460                 g_free (name);
461
462                 g_assert (result->addr != NULL);
463
464         } else if (cols [2] & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
465
466                 result = (MonoMethod *)g_new0 (MonoMethodPInvoke, 1);
467         } else {
468
469                 result = (MonoMethod *)g_new0 (MonoMethodNormal, 1);
470         }
471
472         result->klass = klass;
473         result->flags = cols [2];
474         result->iflags = cols [1];
475         result->name = mono_metadata_string_heap (image, cols [3]);
476
477         if (!sig) /* already taken from the methodref */
478                 sig = mono_metadata_blob_heap (image, cols [4]);
479         size = mono_metadata_decode_blob_size (sig, &sig);
480         result->signature = mono_metadata_parse_method_signature (image, 0, sig, NULL);
481
482         if (!result->klass) {
483                 guint32 type = mono_metadata_typedef_from_method (image, token);
484                 result->klass = mono_class_get (image, MONO_TOKEN_TYPE_DEF | type);
485         }
486
487         if (result->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
488                 fill_pinvoke_info (image, (MonoMethodPInvoke *)result, 
489                                    index - 1);
490         } else if (!(result->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
491                 /* if this is a methodref from another module/assembly, this fails */
492                 loc = mono_cli_rva_map ((MonoCLIImageInfo *)image->image_info, cols [0]);
493
494                 if (!result->klass->dummy && !(result->flags & METHOD_ATTRIBUTE_ABSTRACT)) {
495                         g_assert (loc);
496                         ((MonoMethodNormal *)result)->header = mono_metadata_parse_mh (image, loc);
497                 }
498         }
499
500         g_hash_table_insert (image->method_cache, GINT_TO_POINTER (token), result);
501
502         return result;
503 }
504
505 void
506 mono_free_method  (MonoMethod *method)
507 {
508         mono_metadata_free_method_signature (method->signature);
509         if (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
510                 MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)method;
511                 g_free (piinfo->cif->arg_types);
512                 g_free (piinfo->cif);
513         } else if (!(method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
514                 mono_metadata_free_mh (((MonoMethodNormal *)method)->header);
515         }
516
517         g_free (method);
518 }
519