[sre] Do we ever try to instantiate a generic instance? Assert that we don't.
[mono.git] / mono / metadata / custom-attrs.c
1 /*
2  * custom-attrs.c: Custom attributes.
3  * 
4  * Author:
5  *   Paolo Molaro (lupus@ximian.com)
6  *
7  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
8  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
9  * Copyright 2011 Rodrigo Kumpera
10  * Copyright 2016 Microsoft
11  *
12  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
13  */
14 #include <config.h>
15 #include "mono/metadata/assembly.h"
16 #include "mono/metadata/gc-internals.h"
17 #include "mono/metadata/mono-endian.h"
18 #include "mono/metadata/object-internals.h"
19 #include "mono/metadata/reflection-cache.h"
20 #include "mono/metadata/custom-attrs-internals.h"
21 #include "mono/metadata/sre-internals.h"
22 #include "mono/metadata/reflection-internals.h"
23 #include "mono/metadata/tabledefs.h"
24 #include "mono/metadata/tokentype.h"
25 #include "mono/metadata/verify-internals.h"
26 #include "mono/utils/checked-build.h"
27
28
29 #define CHECK_ADD4_OVERFLOW_UN(a, b) ((guint32)(0xFFFFFFFFU) - (guint32)(b) < (guint32)(a))
30 #define CHECK_ADD8_OVERFLOW_UN(a, b) ((guint64)(0xFFFFFFFFFFFFFFFFUL) - (guint64)(b) < (guint64)(a))
31
32 #if SIZEOF_VOID_P == 4
33 #define CHECK_ADDP_OVERFLOW_UN(a,b) CHECK_ADD4_OVERFLOW_UN(a, b)
34 #else
35 #define CHECK_ADDP_OVERFLOW_UN(a,b) CHECK_ADD8_OVERFLOW_UN(a, b)
36 #endif
37
38 #define ADDP_IS_GREATER_OR_OVF(a, b, c) (((a) + (b) > (c)) || CHECK_ADDP_OVERFLOW_UN (a, b))
39 #define ADD_IS_GREATER_OR_OVF(a, b, c) (((a) + (b) > (c)) || CHECK_ADD4_OVERFLOW_UN (a, b))
40
41 static gboolean type_is_reference (MonoType *type);
42
43 static GENERATE_GET_CLASS_WITH_CACHE (custom_attribute_typed_argument, System.Reflection, CustomAttributeTypedArgument);
44 static GENERATE_GET_CLASS_WITH_CACHE (custom_attribute_named_argument, System.Reflection, CustomAttributeNamedArgument);
45
46 /*
47  * LOCKING: Acquires the loader lock. 
48  */
49 static MonoCustomAttrInfo*
50 lookup_custom_attr (MonoImage *image, gpointer member)
51 {
52         MONO_REQ_GC_NEUTRAL_MODE;
53
54         MonoCustomAttrInfo* res;
55
56         res = (MonoCustomAttrInfo *)mono_image_property_lookup (image, member, MONO_PROP_DYNAMIC_CATTR);
57
58         if (!res)
59                 return NULL;
60
61         res = (MonoCustomAttrInfo *)g_memdup (res, MONO_SIZEOF_CUSTOM_ATTR_INFO + sizeof (MonoCustomAttrEntry) * res->num_attrs);
62         res->cached = 0;
63         return res;
64 }
65
66 static gboolean
67 custom_attr_visible (MonoImage *image, MonoReflectionCustomAttr *cattr)
68 {
69         MONO_REQ_GC_UNSAFE_MODE;
70
71         /* FIXME: Need to do more checks */
72         if (cattr->ctor->method && (cattr->ctor->method->klass->image != image)) {
73                 int visibility = mono_class_get_flags (cattr->ctor->method->klass) & TYPE_ATTRIBUTE_VISIBILITY_MASK;
74
75                 if ((visibility != TYPE_ATTRIBUTE_PUBLIC) && (visibility != TYPE_ATTRIBUTE_NESTED_PUBLIC))
76                         return FALSE;
77         }
78
79         return TRUE;
80 }
81
82 static gboolean
83 type_is_reference (MonoType *type)
84 {
85         switch (type->type) {
86         case MONO_TYPE_BOOLEAN:
87         case MONO_TYPE_CHAR:
88         case MONO_TYPE_U:
89         case MONO_TYPE_I:
90         case MONO_TYPE_U1:
91         case MONO_TYPE_I1:
92         case MONO_TYPE_U2:
93         case MONO_TYPE_I2:
94         case MONO_TYPE_U4:
95         case MONO_TYPE_I4:
96         case MONO_TYPE_U8:
97         case MONO_TYPE_I8:
98         case MONO_TYPE_R8:
99         case MONO_TYPE_R4:
100         case MONO_TYPE_VALUETYPE:
101                 return FALSE;
102         default:
103                 return TRUE;
104         }
105 }
106
107 static void
108 free_param_data (MonoMethodSignature *sig, void **params) {
109         int i;
110         for (i = 0; i < sig->param_count; ++i) {
111                 if (!type_is_reference (sig->params [i]))
112                         g_free (params [i]);
113         }
114 }
115
116 /*
117  * Find the field index in the metadata FieldDef table.
118  */
119 static guint32
120 find_field_index (MonoClass *klass, MonoClassField *field) {
121         int i;
122
123         int fcount = mono_class_get_field_count (klass);
124         for (i = 0; i < fcount; ++i) {
125                 if (field == &klass->fields [i])
126                         return mono_class_get_first_field_idx (klass) + 1 + i;
127         }
128         return 0;
129 }
130
131 /*
132  * Find the property index in the metadata Property table.
133  */
134 static guint32
135 find_property_index (MonoClass *klass, MonoProperty *property)
136 {
137         int i;
138         MonoClassPropertyInfo *info = mono_class_get_property_info (klass);
139
140         for (i = 0; i < info->count; ++i) {
141                 if (property == &info->properties [i])
142                         return info->first + 1 + i;
143         }
144         return 0;
145 }
146
147 /*
148  * Find the event index in the metadata Event table.
149  */
150 static guint32
151 find_event_index (MonoClass *klass, MonoEvent *event)
152 {
153         int i;
154         MonoClassEventInfo *info = mono_class_get_event_info (klass);
155
156         for (i = 0; i < info->count; ++i) {
157                 if (event == &info->events [i])
158                         return info->first + 1 + i;
159         }
160         return 0;
161 }
162
163 /*
164  * Load the type with name @n on behalf of image @image.  On failure sets @error and returns NULL.
165  * The @is_enum flag only affects the error message that's displayed on failure.
166  */
167 static MonoType*
168 cattr_type_from_name (char *n, MonoImage *image, gboolean is_enum, MonoError *error)
169 {
170         MonoError inner_error;
171         MonoType *t = mono_reflection_type_from_name_checked (n, image, &inner_error);
172         if (!t) {
173                 mono_error_set_type_load_name (error, g_strdup(n), NULL,
174                                                "Could not load %s %s while decoding custom attribute: %s",
175                                                is_enum ? "enum type": "type",
176                                                n,
177                                                mono_error_get_message (&inner_error));
178                 mono_error_cleanup (&inner_error);
179                 return NULL;
180         }
181         return t;
182 }
183
184 static MonoClass*
185 load_cattr_enum_type (MonoImage *image, const char *p, const char **end, MonoError *error)
186 {
187         char *n;
188         MonoType *t;
189         int slen = mono_metadata_decode_value (p, &p);
190
191         mono_error_init (error);
192
193         n = (char *)g_memdup (p, slen + 1);
194         n [slen] = 0;
195         t = cattr_type_from_name (n, image, TRUE, error);
196         g_free (n);
197         return_val_if_nok (error, NULL);
198         p += slen;
199         *end = p;
200         return mono_class_from_mono_type (t);
201 }
202
203 static void*
204 load_cattr_value (MonoImage *image, MonoType *t, const char *p, const char **end, MonoError *error)
205 {
206         int slen, type = t->type;
207         MonoClass *tklass = t->data.klass;
208
209         mono_error_init (error);
210
211 handle_enum:
212         switch (type) {
213         case MONO_TYPE_U1:
214         case MONO_TYPE_I1:
215         case MONO_TYPE_BOOLEAN: {
216                 MonoBoolean *bval = (MonoBoolean *)g_malloc (sizeof (MonoBoolean));
217                 *bval = *p;
218                 *end = p + 1;
219                 return bval;
220         }
221         case MONO_TYPE_CHAR:
222         case MONO_TYPE_U2:
223         case MONO_TYPE_I2: {
224                 guint16 *val = (guint16 *)g_malloc (sizeof (guint16));
225                 *val = read16 (p);
226                 *end = p + 2;
227                 return val;
228         }
229 #if SIZEOF_VOID_P == 4
230         case MONO_TYPE_U:
231         case MONO_TYPE_I:
232 #endif
233         case MONO_TYPE_R4:
234         case MONO_TYPE_U4:
235         case MONO_TYPE_I4: {
236                 guint32 *val = (guint32 *)g_malloc (sizeof (guint32));
237                 *val = read32 (p);
238                 *end = p + 4;
239                 return val;
240         }
241 #if SIZEOF_VOID_P == 8
242         case MONO_TYPE_U: /* error out instead? this should probably not happen */
243         case MONO_TYPE_I:
244 #endif
245         case MONO_TYPE_U8:
246         case MONO_TYPE_I8: {
247                 guint64 *val = (guint64 *)g_malloc (sizeof (guint64));
248                 *val = read64 (p);
249                 *end = p + 8;
250                 return val;
251         }
252         case MONO_TYPE_R8: {
253                 double *val = (double *)g_malloc (sizeof (double));
254                 readr8 (p, val);
255                 *end = p + 8;
256                 return val;
257         }
258         case MONO_TYPE_VALUETYPE:
259                 if (t->data.klass->enumtype) {
260                         type = mono_class_enum_basetype (t->data.klass)->type;
261                         goto handle_enum;
262                 } else {
263                         MonoClass *k =  t->data.klass;
264                         
265                         if (mono_is_corlib_image (k->image) && strcmp (k->name_space, "System") == 0 && strcmp (k->name, "DateTime") == 0){
266                                 guint64 *val = (guint64 *)g_malloc (sizeof (guint64));
267                                 *val = read64 (p);
268                                 *end = p + 8;
269                                 return val;
270                         }
271                 }
272                 g_error ("generic valutype %s not handled in custom attr value decoding", t->data.klass->name);
273                 break;
274                 
275         case MONO_TYPE_STRING:
276                 if (*p == (char)0xFF) {
277                         *end = p + 1;
278                         return NULL;
279                 }
280                 slen = mono_metadata_decode_value (p, &p);
281                 *end = p + slen;
282                 return mono_string_new_len_checked (mono_domain_get (), p, slen, error);
283         case MONO_TYPE_CLASS: {
284                 MonoReflectionType *rt;
285                 char *n;
286                 MonoType *t;
287                 if (*p == (char)0xFF) {
288                         *end = p + 1;
289                         return NULL;
290                 }
291 handle_type:
292                 slen = mono_metadata_decode_value (p, &p);
293                 n = (char *)g_memdup (p, slen + 1);
294                 n [slen] = 0;
295                 t = cattr_type_from_name (n, image, FALSE, error);
296                 g_free (n);
297                 return_val_if_nok (error, NULL);
298                 *end = p + slen;
299
300                 rt = mono_type_get_object_checked (mono_domain_get (), t, error);
301                 if (!mono_error_ok (error))
302                         return NULL;
303
304                 return rt;
305         }
306         case MONO_TYPE_OBJECT: {
307                 char subt = *p++;
308                 MonoObject *obj;
309                 MonoClass *subc = NULL;
310                 void *val;
311
312                 if (subt == 0x50) {
313                         goto handle_type;
314                 } else if (subt == 0x0E) {
315                         type = MONO_TYPE_STRING;
316                         goto handle_enum;
317                 } else if (subt == 0x1D) {
318                         MonoType simple_type = {{0}};
319                         int etype = *p;
320                         p ++;
321
322                         type = MONO_TYPE_SZARRAY;
323                         if (etype == 0x50) {
324                                 tklass = mono_defaults.systemtype_class;
325                         } else if (etype == 0x55) {
326                                 tklass = load_cattr_enum_type (image, p, &p, error);
327                                 if (!mono_error_ok (error))
328                                         return NULL;
329                         } else {
330                                 if (etype == 0x51)
331                                         /* See Partition II, Appendix B3 */
332                                         etype = MONO_TYPE_OBJECT;
333                                 simple_type.type = (MonoTypeEnum)etype;
334                                 tklass = mono_class_from_mono_type (&simple_type);
335                         }
336                         goto handle_enum;
337                 } else if (subt == 0x55) {
338                         char *n;
339                         MonoType *t;
340                         slen = mono_metadata_decode_value (p, &p);
341                         n = (char *)g_memdup (p, slen + 1);
342                         n [slen] = 0;
343                         t = cattr_type_from_name (n, image, FALSE, error);
344                         g_free (n);
345                         return_val_if_nok (error, NULL);
346                         p += slen;
347                         subc = mono_class_from_mono_type (t);
348                 } else if (subt >= MONO_TYPE_BOOLEAN && subt <= MONO_TYPE_R8) {
349                         MonoType simple_type = {{0}};
350                         simple_type.type = (MonoTypeEnum)subt;
351                         subc = mono_class_from_mono_type (&simple_type);
352                 } else {
353                         g_error ("Unknown type 0x%02x for object type encoding in custom attr", subt);
354                 }
355                 val = load_cattr_value (image, &subc->byval_arg, p, end, error);
356                 obj = NULL;
357                 if (mono_error_ok (error)) {
358                         obj = mono_object_new_checked (mono_domain_get (), subc, error);
359                         g_assert (!subc->has_references);
360                         if (mono_error_ok (error))
361                                 mono_gc_memmove_atomic ((char*)obj + sizeof (MonoObject), val, mono_class_value_size (subc, NULL));
362                 }
363
364                 g_free (val);
365                 return obj;
366         }
367         case MONO_TYPE_SZARRAY: {
368                 MonoArray *arr;
369                 guint32 i, alen, basetype;
370                 alen = read32 (p);
371                 p += 4;
372                 if (alen == 0xffffffff) {
373                         *end = p;
374                         return NULL;
375                 }
376                 arr = mono_array_new_checked (mono_domain_get(), tklass, alen, error);
377                 return_val_if_nok (error, NULL);
378                 basetype = tklass->byval_arg.type;
379                 if (basetype == MONO_TYPE_VALUETYPE && tklass->enumtype)
380                         basetype = mono_class_enum_basetype (tklass)->type;
381                 switch (basetype)
382                 {
383                         case MONO_TYPE_U1:
384                         case MONO_TYPE_I1:
385                         case MONO_TYPE_BOOLEAN:
386                                 for (i = 0; i < alen; i++) {
387                                         MonoBoolean val = *p++;
388                                         mono_array_set (arr, MonoBoolean, i, val);
389                                 }
390                                 break;
391                         case MONO_TYPE_CHAR:
392                         case MONO_TYPE_U2:
393                         case MONO_TYPE_I2:
394                                 for (i = 0; i < alen; i++) {
395                                         guint16 val = read16 (p);
396                                         mono_array_set (arr, guint16, i, val);
397                                         p += 2;
398                                 }
399                                 break;
400                         case MONO_TYPE_R4:
401                         case MONO_TYPE_U4:
402                         case MONO_TYPE_I4:
403                                 for (i = 0; i < alen; i++) {
404                                         guint32 val = read32 (p);
405                                         mono_array_set (arr, guint32, i, val);
406                                         p += 4;
407                                 }
408                                 break;
409                         case MONO_TYPE_R8:
410                                 for (i = 0; i < alen; i++) {
411                                         double val;
412                                         readr8 (p, &val);
413                                         mono_array_set (arr, double, i, val);
414                                         p += 8;
415                                 }
416                                 break;
417                         case MONO_TYPE_U8:
418                         case MONO_TYPE_I8:
419                                 for (i = 0; i < alen; i++) {
420                                         guint64 val = read64 (p);
421                                         mono_array_set (arr, guint64, i, val);
422                                         p += 8;
423                                 }
424                                 break;
425                         case MONO_TYPE_CLASS:
426                         case MONO_TYPE_OBJECT:
427                         case MONO_TYPE_STRING:
428                         case MONO_TYPE_SZARRAY:
429                                 for (i = 0; i < alen; i++) {
430                                         MonoObject *item = (MonoObject *)load_cattr_value (image, &tklass->byval_arg, p, &p, error);
431                                         if (!mono_error_ok (error))
432                                                 return NULL;
433                                         mono_array_setref (arr, i, item);
434                                 }
435                                 break;
436                         default:
437                                 g_error ("Type 0x%02x not handled in custom attr array decoding", basetype);
438                 }
439                 *end=p;
440                 return arr;
441         }
442         default:
443                 g_error ("Type 0x%02x not handled in custom attr value decoding", type);
444         }
445         return NULL;
446 }
447
448 static MonoObject*
449 load_cattr_value_boxed (MonoDomain *domain, MonoImage *image, MonoType *t, const char* p, const char** end, MonoError *error)
450 {
451         mono_error_init (error);
452
453         gboolean is_ref = type_is_reference (t);
454
455         void *val = load_cattr_value (image, t, p, end, error);
456         if (!is_ok (error)) {
457                 if (is_ref)
458                         g_free (val);
459                 return NULL;
460         }
461
462         if (is_ref)
463                 return (MonoObject*)val;
464
465         MonoObject *boxed = mono_value_box_checked (domain, mono_class_from_mono_type (t), val, error);
466         g_free (val);
467         return boxed;
468 }
469
470 static MonoObject*
471 create_cattr_typed_arg (MonoType *t, MonoObject *val, MonoError *error)
472 {
473         static MonoMethod *ctor;
474         MonoObject *retval;
475         void *params [2], *unboxed;
476
477         mono_error_init (error);
478
479         if (!ctor)
480                 ctor = mono_class_get_method_from_name (mono_class_get_custom_attribute_typed_argument_class (), ".ctor", 2);
481         
482         params [0] = mono_type_get_object_checked (mono_domain_get (), t, error);
483         return_val_if_nok (error, NULL);
484
485         params [1] = val;
486         retval = mono_object_new_checked (mono_domain_get (), mono_class_get_custom_attribute_typed_argument_class (), error);
487         return_val_if_nok (error, NULL);
488         unboxed = mono_object_unbox (retval);
489
490         mono_runtime_invoke_checked (ctor, unboxed, params, error);
491         return_val_if_nok (error, NULL);
492
493         return retval;
494 }
495
496 static MonoObject*
497 create_cattr_named_arg (void *minfo, MonoObject *typedarg, MonoError *error)
498 {
499         static MonoMethod *ctor;
500         MonoObject *retval;
501         void *unboxed, *params [2];
502
503         mono_error_init (error);
504
505         if (!ctor)
506                 ctor = mono_class_get_method_from_name (mono_class_get_custom_attribute_named_argument_class (), ".ctor", 2);
507
508         params [0] = minfo;
509         params [1] = typedarg;
510         retval = mono_object_new_checked (mono_domain_get (), mono_class_get_custom_attribute_named_argument_class (), error);
511         return_val_if_nok (error, NULL);
512
513         unboxed = mono_object_unbox (retval);
514
515         mono_runtime_invoke_checked (ctor, unboxed, params, error);
516         return_val_if_nok (error, NULL);
517
518         return retval;
519 }
520
521
522 MonoCustomAttrInfo*
523 mono_custom_attrs_from_builders (MonoImage *alloc_img, MonoImage *image, MonoArray *cattrs)
524 {
525         MONO_REQ_GC_UNSAFE_MODE;
526
527         int i, index, count, not_visible;
528         MonoCustomAttrInfo *ainfo;
529         MonoReflectionCustomAttr *cattr;
530
531         if (!cattrs)
532                 return NULL;
533         /* FIXME: check in assembly the Run flag is set */
534
535         count = mono_array_length (cattrs);
536
537         /* Skip nonpublic attributes since MS.NET seems to do the same */
538         /* FIXME: This needs to be done more globally */
539         not_visible = 0;
540         for (i = 0; i < count; ++i) {
541                 cattr = (MonoReflectionCustomAttr*)mono_array_get (cattrs, gpointer, i);
542                 if (!custom_attr_visible (image, cattr))
543                         not_visible ++;
544         }
545
546         int num_attrs = count - not_visible;
547         ainfo = (MonoCustomAttrInfo *)mono_image_g_malloc0 (alloc_img, MONO_SIZEOF_CUSTOM_ATTR_INFO + sizeof (MonoCustomAttrEntry) * num_attrs);
548
549         ainfo->image = image;
550         ainfo->num_attrs = num_attrs;
551         ainfo->cached = alloc_img != NULL;
552         index = 0;
553         for (i = 0; i < count; ++i) {
554                 cattr = (MonoReflectionCustomAttr*)mono_array_get (cattrs, gpointer, i);
555                 if (custom_attr_visible (image, cattr)) {
556                         unsigned char *saved = (unsigned char *)mono_image_alloc (image, mono_array_length (cattr->data));
557                         memcpy (saved, mono_array_addr (cattr->data, char, 0), mono_array_length (cattr->data));
558                         ainfo->attrs [index].ctor = cattr->ctor->method;
559                         g_assert (cattr->ctor->method);
560                         ainfo->attrs [index].data = saved;
561                         ainfo->attrs [index].data_size = mono_array_length (cattr->data);
562                         index ++;
563                 }
564         }
565         g_assert (index == num_attrs && count == num_attrs + not_visible);
566
567         return ainfo;
568 }
569
570
571 static MonoObject*
572 create_custom_attr (MonoImage *image, MonoMethod *method, const guchar *data, guint32 len, MonoError *error)
573 {
574         const char *p = (const char*)data;
575         const char *named;
576         guint32 i, j, num_named;
577         MonoObject *attr;
578         void *params_buf [32];
579         void **params = NULL;
580         MonoMethodSignature *sig;
581
582         mono_error_init (error);
583
584         mono_class_init (method->klass);
585
586         if (!mono_verifier_verify_cattr_content (image, method, data, len, NULL)) {
587                 mono_error_set_generic_error (error, "System.Reflection", "CustomAttributeFormatException", "Binary format of the specified custom attribute was invalid.");
588                 return NULL;
589         }
590
591         if (len == 0) {
592                 attr = mono_object_new_checked (mono_domain_get (), method->klass, error);
593                 if (!mono_error_ok (error)) return NULL;
594
595                 mono_runtime_invoke_checked (method, attr, NULL, error);
596                 if (!mono_error_ok (error))
597                         return NULL;
598
599                 return attr;
600         }
601
602         if (len < 2 || read16 (p) != 0x0001) /* Prolog */
603                 return NULL;
604
605         /*g_print ("got attr %s\n", method->klass->name);*/
606
607         sig = mono_method_signature (method);
608         if (sig->param_count < 32) {
609                 params = params_buf;
610                 memset (params, 0, sizeof (void*) * sig->param_count);
611         } else {
612                 /* Allocate using GC so it gets GC tracking */
613                 params = (void **)mono_gc_alloc_fixed (sig->param_count * sizeof (void*), MONO_GC_DESCRIPTOR_NULL, MONO_ROOT_SOURCE_REFLECTION, "custom attribute parameters");
614         }
615
616         /* skip prolog */
617         p += 2;
618         for (i = 0; i < mono_method_signature (method)->param_count; ++i) {
619                 params [i] = load_cattr_value (image, mono_method_signature (method)->params [i], p, &p, error);
620                 if (!mono_error_ok (error))
621                         goto fail;
622         }
623
624         named = p;
625         attr = mono_object_new_checked (mono_domain_get (), method->klass, error);
626         if (!mono_error_ok (error)) goto fail;
627
628         MonoObject *exc = NULL;
629         mono_runtime_try_invoke (method, attr, params, &exc, error);
630         if (!mono_error_ok (error))
631                 goto fail;
632         if (exc) {
633                 mono_error_set_exception_instance (error, (MonoException*)exc);
634                 goto fail;
635         }
636
637         num_named = read16 (named);
638         named += 2;
639         for (j = 0; j < num_named; j++) {
640                 gint name_len;
641                 char *name, named_type, data_type;
642                 named_type = *named++;
643                 data_type = *named++; /* type of data */
644                 if (data_type == MONO_TYPE_SZARRAY)
645                         data_type = *named++;
646                 if (data_type == MONO_TYPE_ENUM) {
647                         gint type_len;
648                         char *type_name;
649                         type_len = mono_metadata_decode_blob_size (named, &named);
650                         type_name = (char *)g_malloc (type_len + 1);
651                         memcpy (type_name, named, type_len);
652                         type_name [type_len] = 0;
653                         named += type_len;
654                         /* FIXME: lookup the type and check type consistency */
655                         g_free (type_name);
656                 }
657                 name_len = mono_metadata_decode_blob_size (named, &named);
658                 name = (char *)g_malloc (name_len + 1);
659                 memcpy (name, named, name_len);
660                 name [name_len] = 0;
661                 named += name_len;
662                 if (named_type == 0x53) {
663                         MonoClassField *field;
664                         void *val;
665
666                         /* how this fail is a blackbox */
667                         field = mono_class_get_field_from_name (mono_object_class (attr), name);
668                         if (!field) {
669                                 mono_error_set_generic_error (error, "System.Reflection", "CustomAttributeFormatException", "Could not find a field with name %s", name);
670                                 g_free (name);
671                                 goto fail;
672                         }
673
674                         val = load_cattr_value (image, field->type, named, &named, error);
675                         if (!mono_error_ok (error)) {
676                                 g_free (name);
677                                 if (!type_is_reference (field->type))
678                                         g_free (val);
679                                 goto fail;
680                         }
681
682                         mono_field_set_value (attr, field, val);
683                         if (!type_is_reference (field->type))
684                                 g_free (val);
685                 } else if (named_type == 0x54) {
686                         MonoProperty *prop;
687                         void *pparams [1];
688                         MonoType *prop_type;
689
690                         prop = mono_class_get_property_from_name (mono_object_class (attr), name);
691
692                         if (!prop) {
693                                 mono_error_set_generic_error (error, "System.Reflection", "CustomAttributeFormatException", "Could not find a property with name %s", name);
694                                 g_free (name);
695                                 goto fail;
696                         }
697
698                         if (!prop->set) {
699                                 mono_error_set_generic_error (error, "System.Reflection", "CustomAttributeFormatException", "Could not find the setter for %s", name);
700                                 g_free (name);
701                                 goto fail;
702                         }
703
704                         /* can we have more that 1 arg in a custom attr named property? */
705                         prop_type = prop->get? mono_method_signature (prop->get)->ret :
706                              mono_method_signature (prop->set)->params [mono_method_signature (prop->set)->param_count - 1];
707
708                         pparams [0] = load_cattr_value (image, prop_type, named, &named, error);
709                         if (!mono_error_ok (error)) {
710                                 g_free (name);
711                                 if (!type_is_reference (prop_type))
712                                         g_free (pparams [0]);
713                                 goto fail;
714                         }
715
716
717                         mono_property_set_value_checked (prop, attr, pparams, error);
718                         if (!type_is_reference (prop_type))
719                                 g_free (pparams [0]);
720                         if (!is_ok (error)) {
721                                 g_free (name);
722                                 goto fail;
723                         }
724                 }
725                 g_free (name);
726         }
727
728         free_param_data (method->signature, params);
729         if (params != params_buf)
730                 mono_gc_free_fixed (params);
731
732         return attr;
733
734 fail:
735         free_param_data (method->signature, params);
736         if (params != params_buf)
737                 mono_gc_free_fixed (params);
738         return NULL;
739 }
740         
741 /*
742  * mono_reflection_create_custom_attr_data_args:
743  *
744  *   Create an array of typed and named arguments from the cattr blob given by DATA.
745  * TYPED_ARGS and NAMED_ARGS will contain the objects representing the arguments,
746  * NAMED_ARG_INFO will contain information about the named arguments.
747  */
748 void
749 mono_reflection_create_custom_attr_data_args (MonoImage *image, MonoMethod *method, const guchar *data, guint32 len, MonoArray **typed_args, MonoArray **named_args, CattrNamedArg **named_arg_info, MonoError *error)
750 {
751         MonoArray *typedargs, *namedargs;
752         MonoClass *attrklass;
753         MonoDomain *domain;
754         const char *p = (const char*)data;
755         const char *named;
756         guint32 i, j, num_named;
757         CattrNamedArg *arginfo = NULL;
758
759         *typed_args = NULL;
760         *named_args = NULL;
761         *named_arg_info = NULL;
762
763         mono_error_init (error);
764
765         if (!mono_verifier_verify_cattr_content (image, method, data, len, NULL)) {
766                 mono_error_set_generic_error (error, "System.Reflection", "CustomAttributeFormatException", "Binary format of the specified custom attribute was invalid.");
767                 return;
768         }
769
770         mono_class_init (method->klass);
771         
772         domain = mono_domain_get ();
773
774         if (len < 2 || read16 (p) != 0x0001) /* Prolog */
775                 return;
776
777         typedargs = mono_array_new_checked (domain, mono_get_object_class (), mono_method_signature (method)->param_count, error);
778         return_if_nok (error);
779
780         /* skip prolog */
781         p += 2;
782         for (i = 0; i < mono_method_signature (method)->param_count; ++i) {
783                 MonoObject *obj;
784
785                 obj = load_cattr_value_boxed (domain, image, mono_method_signature (method)->params [i], p, &p, error);
786                 return_if_nok (error);
787                 mono_array_setref (typedargs, i, obj);
788         }
789
790         named = p;
791         num_named = read16 (named);
792         namedargs = mono_array_new_checked (domain, mono_get_object_class (), num_named, error);
793         return_if_nok (error);
794         named += 2;
795         attrklass = method->klass;
796
797         arginfo = g_new0 (CattrNamedArg, num_named);
798         *named_arg_info = arginfo;
799
800         for (j = 0; j < num_named; j++) {
801                 gint name_len;
802                 char *name, named_type, data_type;
803                 named_type = *named++;
804                 data_type = *named++; /* type of data */
805                 if (data_type == MONO_TYPE_SZARRAY)
806                         data_type = *named++;
807                 if (data_type == MONO_TYPE_ENUM) {
808                         gint type_len;
809                         char *type_name;
810                         type_len = mono_metadata_decode_blob_size (named, &named);
811                         if (ADDP_IS_GREATER_OR_OVF ((const guchar*)named, type_len, data + len))
812                                 goto fail;
813
814                         type_name = (char *)g_malloc (type_len + 1);
815                         memcpy (type_name, named, type_len);
816                         type_name [type_len] = 0;
817                         named += type_len;
818                         /* FIXME: lookup the type and check type consistency */
819                         g_free (type_name);
820                 }
821                 name_len = mono_metadata_decode_blob_size (named, &named);
822                 if (ADDP_IS_GREATER_OR_OVF ((const guchar*)named, name_len, data + len))
823                         goto fail;
824                 name = (char *)g_malloc (name_len + 1);
825                 memcpy (name, named, name_len);
826                 name [name_len] = 0;
827                 named += name_len;
828                 if (named_type == 0x53) {
829                         MonoObject *obj;
830                         MonoClassField *field = mono_class_get_field_from_name (attrklass, name);
831
832                         if (!field) {
833                                 g_free (name);
834                                 goto fail;
835                         }
836
837                         arginfo [j].type = field->type;
838                         arginfo [j].field = field;
839
840                         obj = load_cattr_value_boxed (domain, image, field->type, named, &named, error);
841                         if (!is_ok (error)) {
842                                 g_free (name);
843                                 return;
844                         }
845                         mono_array_setref (namedargs, j, obj);
846
847                 } else if (named_type == 0x54) {
848                         MonoObject *obj;
849                         MonoType *prop_type;
850                         MonoProperty *prop = mono_class_get_property_from_name (attrklass, name);
851
852                         if (!prop || !prop->set) {
853                                 g_free (name);
854                                 goto fail;
855                         }
856
857                         prop_type = prop->get? mono_method_signature (prop->get)->ret :
858                              mono_method_signature (prop->set)->params [mono_method_signature (prop->set)->param_count - 1];
859
860                         arginfo [j].type = prop_type;
861                         arginfo [j].prop = prop;
862
863                         obj = load_cattr_value_boxed (domain, image, prop_type, named, &named, error);
864                         if (!is_ok (error)) {
865                                 g_free (name);
866                                 return;
867                         }
868                         mono_array_setref (namedargs, j, obj);
869                 }
870                 g_free (name);
871         }
872
873         *typed_args = typedargs;
874         *named_args = namedargs;
875         return;
876 fail:
877         mono_error_set_generic_error (error, "System.Reflection", "CustomAttributeFormatException", "Binary format of the specified custom attribute was invalid.");
878         g_free (arginfo);
879         *named_arg_info = NULL;
880 }
881
882 static gboolean
883 reflection_resolve_custom_attribute_data (MonoReflectionMethod *ref_method, MonoReflectionAssembly *assembly, gpointer data, guint32 len, MonoArray **ctor_args, MonoArray **named_args, MonoError *error)
884 {
885         MonoDomain *domain;
886         MonoArray *typedargs, *namedargs;
887         MonoImage *image;
888         MonoMethod *method;
889         CattrNamedArg *arginfo = NULL;
890         int i;
891
892         mono_error_init (error);
893
894         *ctor_args = NULL;
895         *named_args = NULL;
896
897         if (len == 0)
898                 return TRUE;
899
900         image = assembly->assembly->image;
901         method = ref_method->method;
902         domain = mono_object_domain (ref_method);
903
904         if (!mono_class_init (method->klass)) {
905                 mono_error_set_for_class_failure (error, method->klass);
906                 goto leave;
907         }
908
909         mono_reflection_create_custom_attr_data_args (image, method, (const guchar *)data, len, &typedargs, &namedargs, &arginfo, error);
910         if (!is_ok (error))
911                 goto leave;
912
913         if (!typedargs || !namedargs)
914                 goto leave;
915
916         for (i = 0; i < mono_method_signature (method)->param_count; ++i) {
917                 MonoObject *obj = mono_array_get (typedargs, MonoObject*, i);
918                 MonoObject *typedarg;
919
920                 typedarg = create_cattr_typed_arg (mono_method_signature (method)->params [i], obj, error);
921                 if (!is_ok (error))
922                         goto leave;
923                 mono_array_setref (typedargs, i, typedarg);
924         }
925
926         for (i = 0; i < mono_array_length (namedargs); ++i) {
927                 MonoObject *obj = mono_array_get (namedargs, MonoObject*, i);
928                 MonoObject *typedarg, *namedarg, *minfo;
929
930                 if (arginfo [i].prop) {
931                         minfo = (MonoObject*)mono_property_get_object_checked (domain, NULL, arginfo [i].prop, error);
932                         if (!minfo)
933                                 goto leave;
934                 } else {
935                         minfo = (MonoObject*)mono_field_get_object_checked (domain, NULL, arginfo [i].field, error);
936                         if (!is_ok (error))
937                                 goto leave;
938                 }
939
940                 typedarg = create_cattr_typed_arg (arginfo [i].type, obj, error);
941                 if (!is_ok (error))
942                         goto leave;
943                 namedarg = create_cattr_named_arg (minfo, typedarg, error);
944                 if (!is_ok (error))
945                         goto leave;
946
947                 mono_array_setref (namedargs, i, namedarg);
948         }
949
950         *ctor_args = typedargs;
951         *named_args = namedargs;
952
953 leave:
954         g_free (arginfo);
955         return mono_error_ok (error);
956 }
957
958 void
959 ves_icall_System_Reflection_CustomAttributeData_ResolveArgumentsInternal (MonoReflectionMethod *ref_method, MonoReflectionAssembly *assembly, gpointer data, guint32 len, MonoArray **ctor_args, MonoArray **named_args)
960 {
961         MonoError error;
962         (void) reflection_resolve_custom_attribute_data (ref_method, assembly, data, len, ctor_args, named_args, &error);
963         mono_error_set_pending_exception (&error);
964 }
965
966 static MonoObject*
967 create_custom_attr_data (MonoImage *image, MonoCustomAttrEntry *cattr, MonoError *error)
968 {
969         static MonoMethod *ctor;
970
971         MonoDomain *domain;
972         MonoObject *attr;
973         void *params [4];
974
975         mono_error_init (error);
976
977         g_assert (image->assembly);
978
979         if (!ctor)
980                 ctor = mono_class_get_method_from_name (mono_defaults.customattribute_data_class, ".ctor", 4);
981
982         domain = mono_domain_get ();
983         attr = mono_object_new_checked (domain, mono_defaults.customattribute_data_class, error);
984         return_val_if_nok (error, NULL);
985         params [0] = mono_method_get_object_checked (domain, cattr->ctor, NULL, error);
986         return_val_if_nok (error, NULL);
987         params [1] = mono_assembly_get_object_checked (domain, image->assembly, error);
988         return_val_if_nok (error, NULL);
989         params [2] = (gpointer)&cattr->data;
990         params [3] = &cattr->data_size;
991
992         mono_runtime_invoke_checked (ctor, attr, params, error);
993         return_val_if_nok (error, NULL);
994         return attr;
995 }
996
997 static MonoArray*
998 mono_custom_attrs_construct_by_type (MonoCustomAttrInfo *cinfo, MonoClass *attr_klass, MonoError *error)
999 {
1000         MonoArray *result;
1001         MonoObject *attr;
1002         int i, n;
1003
1004         mono_error_init (error);
1005
1006         for (i = 0; i < cinfo->num_attrs; ++i) {
1007                 MonoCustomAttrEntry *centry = &cinfo->attrs[i];
1008                 if (!centry->ctor) {
1009                         /* The cattr type is not finished yet */
1010                         /* We should include the type name but cinfo doesn't contain it */
1011                         mono_error_set_type_load_name (error, NULL, NULL, "Custom attribute constructor is null because the custom attribute type is not finished yet.");
1012                         return NULL;
1013                 }
1014         }
1015
1016         n = 0;
1017         if (attr_klass) {
1018                 for (i = 0; i < cinfo->num_attrs; ++i) {
1019                         MonoMethod *ctor = cinfo->attrs[i].ctor;
1020                         g_assert (ctor);
1021                         if (mono_class_is_assignable_from (attr_klass, ctor->klass))
1022                                 n++;
1023                 }
1024         } else {
1025                 n = cinfo->num_attrs;
1026         }
1027
1028         result = mono_array_new_cached (mono_domain_get (), mono_defaults.attribute_class, n, error);
1029         return_val_if_nok (error, NULL);
1030         n = 0;
1031         for (i = 0; i < cinfo->num_attrs; ++i) {
1032                 MonoCustomAttrEntry *centry = &cinfo->attrs [i];
1033                 if (!attr_klass || mono_class_is_assignable_from (attr_klass, centry->ctor->klass)) {
1034                         attr = create_custom_attr (cinfo->image, centry->ctor, centry->data, centry->data_size, error);
1035                         if (!mono_error_ok (error))
1036                                 return result;
1037                         mono_array_setref (result, n, attr);
1038                         n ++;
1039                 }
1040         }
1041         return result;
1042 }
1043
1044 MonoArray*
1045 mono_custom_attrs_construct (MonoCustomAttrInfo *cinfo)
1046 {
1047         MonoError error;
1048         MonoArray *result = mono_custom_attrs_construct_by_type (cinfo, NULL, &error);
1049         mono_error_assert_ok (&error); /*FIXME proper error handling*/
1050
1051         return result;
1052 }
1053
1054 static MonoArray*
1055 mono_custom_attrs_data_construct (MonoCustomAttrInfo *cinfo, MonoError *error)
1056 {
1057         MonoArray *result;
1058         MonoObject *attr;
1059         int i;
1060         
1061         mono_error_init (error);
1062         result = mono_array_new_checked (mono_domain_get (), mono_defaults.customattribute_data_class, cinfo->num_attrs, error);
1063         return_val_if_nok (error, NULL);
1064         for (i = 0; i < cinfo->num_attrs; ++i) {
1065                 attr = create_custom_attr_data (cinfo->image, &cinfo->attrs [i], error);
1066                 return_val_if_nok (error, NULL);
1067                 mono_array_setref (result, i, attr);
1068         }
1069         return result;
1070 }
1071
1072 /**
1073  * mono_custom_attrs_from_index:
1074  *
1075  * Returns: NULL if no attributes are found or if a loading error occurs.
1076  */
1077 MonoCustomAttrInfo*
1078 mono_custom_attrs_from_index (MonoImage *image, guint32 idx)
1079 {
1080         MonoError error;
1081         MonoCustomAttrInfo *result = mono_custom_attrs_from_index_checked (image, idx, FALSE, &error);
1082         mono_error_cleanup (&error);
1083         return result;
1084 }
1085 /**
1086  * mono_custom_attrs_from_index_checked:
1087  *
1088  * Returns: NULL if no attributes are found.  On error returns NULL and sets @error.
1089  */
1090 MonoCustomAttrInfo*
1091 mono_custom_attrs_from_index_checked (MonoImage *image, guint32 idx, gboolean ignore_missing, MonoError *error)
1092 {
1093         guint32 mtoken, i, len;
1094         guint32 cols [MONO_CUSTOM_ATTR_SIZE];
1095         MonoTableInfo *ca;
1096         MonoCustomAttrInfo *ainfo;
1097         GList *tmp, *list = NULL;
1098         const char *data;
1099         MonoCustomAttrEntry* attr;
1100
1101         mono_error_init (error);
1102
1103         ca = &image->tables [MONO_TABLE_CUSTOMATTRIBUTE];
1104
1105         i = mono_metadata_custom_attrs_from_index (image, idx);
1106         if (!i)
1107                 return NULL;
1108         i --;
1109         while (i < ca->rows) {
1110                 if (mono_metadata_decode_row_col (ca, i, MONO_CUSTOM_ATTR_PARENT) != idx)
1111                         break;
1112                 list = g_list_prepend (list, GUINT_TO_POINTER (i));
1113                 ++i;
1114         }
1115         len = g_list_length (list);
1116         if (!len)
1117                 return NULL;
1118         ainfo = (MonoCustomAttrInfo *)g_malloc0 (MONO_SIZEOF_CUSTOM_ATTR_INFO + sizeof (MonoCustomAttrEntry) * len);
1119         ainfo->num_attrs = len;
1120         ainfo->image = image;
1121         for (i = len, tmp = list; i != 0; --i, tmp = tmp->next) {
1122                 mono_metadata_decode_row (ca, GPOINTER_TO_UINT (tmp->data), cols, MONO_CUSTOM_ATTR_SIZE);
1123                 mtoken = cols [MONO_CUSTOM_ATTR_TYPE] >> MONO_CUSTOM_ATTR_TYPE_BITS;
1124                 switch (cols [MONO_CUSTOM_ATTR_TYPE] & MONO_CUSTOM_ATTR_TYPE_MASK) {
1125                 case MONO_CUSTOM_ATTR_TYPE_METHODDEF:
1126                         mtoken |= MONO_TOKEN_METHOD_DEF;
1127                         break;
1128                 case MONO_CUSTOM_ATTR_TYPE_MEMBERREF:
1129                         mtoken |= MONO_TOKEN_MEMBER_REF;
1130                         break;
1131                 default:
1132                         g_error ("Unknown table for custom attr type %08x", cols [MONO_CUSTOM_ATTR_TYPE]);
1133                         break;
1134                 }
1135                 attr = &ainfo->attrs [i - 1];
1136                 attr->ctor = mono_get_method_checked (image, mtoken, NULL, NULL, error);
1137                 if (!attr->ctor) {
1138                         g_warning ("Can't find custom attr constructor image: %s mtoken: 0x%08x due to: %s", image->name, mtoken, mono_error_get_message (error));
1139                         if (ignore_missing) {
1140                                 mono_error_cleanup (error);
1141                                 mono_error_init (error);
1142                         } else {
1143                                 g_list_free (list);
1144                                 g_free (ainfo);
1145                                 return NULL;
1146                         }
1147                 }
1148
1149                 if (!mono_verifier_verify_cattr_blob (image, cols [MONO_CUSTOM_ATTR_VALUE], NULL)) {
1150                         /*FIXME raising an exception here doesn't make any sense*/
1151                         g_warning ("Invalid custom attribute blob on image %s for index %x", image->name, idx);
1152                         g_list_free (list);
1153                         g_free (ainfo);
1154                         return NULL;
1155                 }
1156                 data = mono_metadata_blob_heap (image, cols [MONO_CUSTOM_ATTR_VALUE]);
1157                 attr->data_size = mono_metadata_decode_value (data, &data);
1158                 attr->data = (guchar*)data;
1159         }
1160         g_list_free (list);
1161
1162         return ainfo;
1163 }
1164
1165 MonoCustomAttrInfo*
1166 mono_custom_attrs_from_method (MonoMethod *method)
1167 {
1168         MonoError error;
1169         MonoCustomAttrInfo* result = mono_custom_attrs_from_method_checked  (method, &error);
1170         mono_error_cleanup (&error); /* FIXME want a better API that doesn't swallow the error */
1171         return result;
1172 }
1173
1174 MonoCustomAttrInfo*
1175 mono_custom_attrs_from_method_checked (MonoMethod *method, MonoError *error)
1176 {
1177         guint32 idx;
1178
1179         mono_error_init (error);
1180
1181         /*
1182          * An instantiated method has the same cattrs as the generic method definition.
1183          *
1184          * LAMESPEC: The .NET SRE throws an exception for instantiations of generic method builders
1185          *           Note that this stanza is not necessary for non-SRE types, but it's a micro-optimization
1186          */
1187         if (method->is_inflated)
1188                 method = ((MonoMethodInflated *) method)->declaring;
1189         
1190         if (method_is_dynamic (method) || image_is_dynamic (method->klass->image))
1191                 return lookup_custom_attr (method->klass->image, method);
1192
1193         if (!method->token)
1194                 /* Synthetic methods */
1195                 return NULL;
1196
1197         idx = mono_method_get_index (method);
1198         idx <<= MONO_CUSTOM_ATTR_BITS;
1199         idx |= MONO_CUSTOM_ATTR_METHODDEF;
1200         return mono_custom_attrs_from_index_checked (method->klass->image, idx, FALSE, error);
1201 }
1202
1203 MonoCustomAttrInfo*
1204 mono_custom_attrs_from_class (MonoClass *klass)
1205 {
1206         MonoError error;
1207         MonoCustomAttrInfo *result = mono_custom_attrs_from_class_checked (klass, &error);
1208         mono_error_cleanup (&error);
1209         return result;
1210 }
1211
1212 MonoCustomAttrInfo*
1213 mono_custom_attrs_from_class_checked (MonoClass *klass, MonoError *error)
1214 {
1215         guint32 idx;
1216
1217         mono_error_init (error);
1218
1219         if (mono_class_is_ginst (klass))
1220                 klass = mono_class_get_generic_class (klass)->container_class;
1221
1222         if (image_is_dynamic (klass->image))
1223                 return lookup_custom_attr (klass->image, klass);
1224
1225         if (klass->byval_arg.type == MONO_TYPE_VAR || klass->byval_arg.type == MONO_TYPE_MVAR) {
1226                 idx = mono_metadata_token_index (klass->sizes.generic_param_token);
1227                 idx <<= MONO_CUSTOM_ATTR_BITS;
1228                 idx |= MONO_CUSTOM_ATTR_GENERICPAR;
1229         } else {
1230                 idx = mono_metadata_token_index (klass->type_token);
1231                 idx <<= MONO_CUSTOM_ATTR_BITS;
1232                 idx |= MONO_CUSTOM_ATTR_TYPEDEF;
1233         }
1234         return mono_custom_attrs_from_index_checked (klass->image, idx, FALSE, error);
1235 }
1236
1237 MonoCustomAttrInfo*
1238 mono_custom_attrs_from_assembly (MonoAssembly *assembly)
1239 {
1240         MonoError error;
1241         MonoCustomAttrInfo *result = mono_custom_attrs_from_assembly_checked (assembly, FALSE, &error);
1242         mono_error_cleanup (&error);
1243         return result;
1244 }
1245
1246 MonoCustomAttrInfo*
1247 mono_custom_attrs_from_assembly_checked (MonoAssembly *assembly, gboolean ignore_missing, MonoError *error)
1248 {
1249         guint32 idx;
1250         
1251         mono_error_init (error);
1252
1253         if (image_is_dynamic (assembly->image))
1254                 return lookup_custom_attr (assembly->image, assembly);
1255         idx = 1; /* there is only one assembly */
1256         idx <<= MONO_CUSTOM_ATTR_BITS;
1257         idx |= MONO_CUSTOM_ATTR_ASSEMBLY;
1258         return mono_custom_attrs_from_index_checked (assembly->image, idx, ignore_missing, error);
1259 }
1260
1261 static MonoCustomAttrInfo*
1262 mono_custom_attrs_from_module (MonoImage *image, MonoError *error)
1263 {
1264         guint32 idx;
1265         
1266         if (image_is_dynamic (image))
1267                 return lookup_custom_attr (image, image);
1268         idx = 1; /* there is only one module */
1269         idx <<= MONO_CUSTOM_ATTR_BITS;
1270         idx |= MONO_CUSTOM_ATTR_MODULE;
1271         return mono_custom_attrs_from_index_checked (image, idx, FALSE, error);
1272 }
1273
1274 MonoCustomAttrInfo*
1275 mono_custom_attrs_from_property (MonoClass *klass, MonoProperty *property)
1276 {
1277         MonoError error;
1278         MonoCustomAttrInfo * result = mono_custom_attrs_from_property_checked (klass, property, &error);
1279         mono_error_cleanup (&error);
1280         return result;
1281 }
1282
1283 MonoCustomAttrInfo*
1284 mono_custom_attrs_from_property_checked (MonoClass *klass, MonoProperty *property, MonoError *error)
1285 {
1286         guint32 idx;
1287         
1288         if (image_is_dynamic (klass->image)) {
1289                 property = mono_metadata_get_corresponding_property_from_generic_type_definition (property);
1290                 return lookup_custom_attr (klass->image, property);
1291         }
1292         idx = find_property_index (klass, property);
1293         idx <<= MONO_CUSTOM_ATTR_BITS;
1294         idx |= MONO_CUSTOM_ATTR_PROPERTY;
1295         return mono_custom_attrs_from_index_checked (klass->image, idx, FALSE, error);
1296 }
1297
1298 MonoCustomAttrInfo*
1299 mono_custom_attrs_from_event (MonoClass *klass, MonoEvent *event)
1300 {
1301         MonoError error;
1302         MonoCustomAttrInfo * result = mono_custom_attrs_from_event_checked (klass, event, &error);
1303         mono_error_cleanup (&error);
1304         return result;
1305 }
1306
1307 MonoCustomAttrInfo*
1308 mono_custom_attrs_from_event_checked (MonoClass *klass, MonoEvent *event, MonoError *error)
1309 {
1310         guint32 idx;
1311         
1312         if (image_is_dynamic (klass->image)) {
1313                 event = mono_metadata_get_corresponding_event_from_generic_type_definition (event);
1314                 return lookup_custom_attr (klass->image, event);
1315         }
1316         idx = find_event_index (klass, event);
1317         idx <<= MONO_CUSTOM_ATTR_BITS;
1318         idx |= MONO_CUSTOM_ATTR_EVENT;
1319         return mono_custom_attrs_from_index_checked (klass->image, idx, FALSE, error);
1320 }
1321
1322 MonoCustomAttrInfo*
1323 mono_custom_attrs_from_field (MonoClass *klass, MonoClassField *field)
1324 {
1325         MonoError error;
1326         MonoCustomAttrInfo * result = mono_custom_attrs_from_field_checked (klass, field, &error);
1327         mono_error_cleanup (&error);
1328         return result;
1329 }
1330
1331 MonoCustomAttrInfo*
1332 mono_custom_attrs_from_field_checked (MonoClass *klass, MonoClassField *field, MonoError *error)
1333 {
1334         guint32 idx;
1335         mono_error_init (error);
1336
1337         if (image_is_dynamic (klass->image)) {
1338                 field = mono_metadata_get_corresponding_field_from_generic_type_definition (field);
1339                 return lookup_custom_attr (klass->image, field);
1340         }
1341         idx = find_field_index (klass, field);
1342         idx <<= MONO_CUSTOM_ATTR_BITS;
1343         idx |= MONO_CUSTOM_ATTR_FIELDDEF;
1344         return mono_custom_attrs_from_index_checked (klass->image, idx, FALSE, error);
1345 }
1346
1347 /**
1348  * mono_custom_attrs_from_param:
1349  * @method: handle to the method that we want to retrieve custom parameter information from
1350  * @param: parameter number, where zero represent the return value, and one is the first parameter in the method
1351  *
1352  * The result must be released with mono_custom_attrs_free().
1353  *
1354  * Returns: the custom attribute object for the specified parameter, or NULL if there are none.
1355  */
1356 MonoCustomAttrInfo*
1357 mono_custom_attrs_from_param (MonoMethod *method, guint32 param)
1358 {
1359         MonoError error;
1360         MonoCustomAttrInfo *result = mono_custom_attrs_from_param_checked (method, param, &error);
1361         mono_error_cleanup (&error);
1362         return result;
1363 }
1364
1365 /**
1366  * mono_custom_attrs_from_param_checked:
1367  * @method: handle to the method that we want to retrieve custom parameter information from
1368  * @param: parameter number, where zero represent the return value, and one is the first parameter in the method
1369  * @error: set on error
1370  *
1371  * The result must be released with mono_custom_attrs_free().
1372  *
1373  * Returns: the custom attribute object for the specified parameter, or NULL if there are none.  On failure returns NULL and sets @error.
1374  */
1375 MonoCustomAttrInfo*
1376 mono_custom_attrs_from_param_checked (MonoMethod *method, guint32 param, MonoError *error)
1377 {
1378         MonoTableInfo *ca;
1379         guint32 i, idx, method_index;
1380         guint32 param_list, param_last, param_pos, found;
1381         MonoImage *image;
1382         MonoReflectionMethodAux *aux;
1383
1384         mono_error_init (error);
1385
1386         /*
1387          * An instantiated method has the same cattrs as the generic method definition.
1388          *
1389          * LAMESPEC: The .NET SRE throws an exception for instantiations of generic method builders
1390          *           Note that this stanza is not necessary for non-SRE types, but it's a micro-optimization
1391          */
1392         if (method->is_inflated)
1393                 method = ((MonoMethodInflated *) method)->declaring;
1394
1395         if (image_is_dynamic (method->klass->image)) {
1396                 MonoCustomAttrInfo *res, *ainfo;
1397                 int size;
1398
1399                 aux = (MonoReflectionMethodAux *)g_hash_table_lookup (((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
1400                 if (!aux || !aux->param_cattr)
1401                         return NULL;
1402
1403                 /* Need to copy since it will be freed later */
1404                 ainfo = aux->param_cattr [param];
1405                 if (!ainfo)
1406                         return NULL;
1407                 size = MONO_SIZEOF_CUSTOM_ATTR_INFO + sizeof (MonoCustomAttrEntry) * ainfo->num_attrs;
1408                 res = (MonoCustomAttrInfo *)g_malloc0 (size);
1409                 memcpy (res, ainfo, size);
1410                 return res;
1411         }
1412
1413         image = method->klass->image;
1414         method_index = mono_method_get_index (method);
1415         if (!method_index)
1416                 return NULL;
1417         ca = &image->tables [MONO_TABLE_METHOD];
1418
1419         param_list = mono_metadata_decode_row_col (ca, method_index - 1, MONO_METHOD_PARAMLIST);
1420         if (method_index == ca->rows) {
1421                 ca = &image->tables [MONO_TABLE_PARAM];
1422                 param_last = ca->rows + 1;
1423         } else {
1424                 param_last = mono_metadata_decode_row_col (ca, method_index, MONO_METHOD_PARAMLIST);
1425                 ca = &image->tables [MONO_TABLE_PARAM];
1426         }
1427         found = FALSE;
1428         for (i = param_list; i < param_last; ++i) {
1429                 param_pos = mono_metadata_decode_row_col (ca, i - 1, MONO_PARAM_SEQUENCE);
1430                 if (param_pos == param) {
1431                         found = TRUE;
1432                         break;
1433                 }
1434         }
1435         if (!found)
1436                 return NULL;
1437         idx = i;
1438         idx <<= MONO_CUSTOM_ATTR_BITS;
1439         idx |= MONO_CUSTOM_ATTR_PARAMDEF;
1440         return mono_custom_attrs_from_index_checked (image, idx, FALSE, error);
1441 }
1442
1443 gboolean
1444 mono_custom_attrs_has_attr (MonoCustomAttrInfo *ainfo, MonoClass *attr_klass)
1445 {
1446         int i;
1447         for (i = 0; i < ainfo->num_attrs; ++i) {
1448                 MonoCustomAttrEntry *centry = &ainfo->attrs[i];
1449                 if (centry->ctor == NULL)
1450                         continue;
1451                 MonoClass *klass = centry->ctor->klass;
1452                 if (klass == attr_klass || mono_class_has_parent (klass, attr_klass) || (MONO_CLASS_IS_INTERFACE (attr_klass) && mono_class_is_assignable_from (attr_klass, klass)))
1453                         return TRUE;
1454         }
1455         return FALSE;
1456 }
1457
1458 MonoObject*
1459 mono_custom_attrs_get_attr (MonoCustomAttrInfo *ainfo, MonoClass *attr_klass)
1460 {
1461         MonoError error;
1462         MonoObject *res = mono_custom_attrs_get_attr_checked (ainfo, attr_klass, &error);
1463         mono_error_assert_ok (&error); /*FIXME proper error handling*/
1464         return res;
1465 }
1466
1467 MonoObject*
1468 mono_custom_attrs_get_attr_checked (MonoCustomAttrInfo *ainfo, MonoClass *attr_klass, MonoError *error)
1469 {
1470         int i;
1471         MonoCustomAttrEntry *centry = NULL;
1472
1473         g_assert (attr_klass != NULL);
1474
1475         mono_error_init (error);
1476
1477         for (i = 0; i < ainfo->num_attrs; ++i) {
1478                 centry = &ainfo->attrs[i];
1479                 if (centry->ctor == NULL)
1480                         continue;
1481                 MonoClass *klass = centry->ctor->klass;
1482                 if (attr_klass == klass || mono_class_is_assignable_from (attr_klass, klass))
1483                         break;
1484         }
1485         if (centry == NULL)
1486                 return NULL;
1487
1488         return create_custom_attr (ainfo->image, centry->ctor, centry->data, centry->data_size, error);
1489 }
1490
1491 /*
1492  * mono_reflection_get_custom_attrs_info:
1493  * @obj: a reflection object handle
1494  *
1495  * Return the custom attribute info for attributes defined for the
1496  * reflection handle @obj. The objects.
1497  *
1498  * FIXME this function leaks like a sieve for SRE objects.
1499  */
1500 MonoCustomAttrInfo*
1501 mono_reflection_get_custom_attrs_info (MonoObject *obj)
1502 {
1503         MonoError error;
1504         MonoCustomAttrInfo *result = mono_reflection_get_custom_attrs_info_checked (obj, &error);
1505         mono_error_assert_ok (&error);
1506         return result;
1507 }
1508
1509 /**
1510  * mono_reflection_get_custom_attrs_info_checked:
1511  * @obj: a reflection object handle
1512  * @error: set on error
1513  *
1514  * Return the custom attribute info for attributes defined for the
1515  * reflection handle @obj. The objects.
1516  *
1517  * On failure returns NULL and sets @error.
1518  *
1519  * FIXME this function leaks like a sieve for SRE objects.
1520  */
1521 MonoCustomAttrInfo*
1522 mono_reflection_get_custom_attrs_info_checked (MonoObject *obj, MonoError *error)
1523 {
1524         MonoClass *klass;
1525         MonoCustomAttrInfo *cinfo = NULL;
1526         
1527         mono_error_init (error);
1528
1529         klass = obj->vtable->klass;
1530         if (klass == mono_defaults.runtimetype_class) {
1531                 MonoType *type = mono_reflection_type_get_handle ((MonoReflectionType *)obj, error);
1532                 return_val_if_nok (error, NULL);
1533                 klass = mono_class_from_mono_type (type);
1534                 /*We cannot mono_class_init the class from which we'll load the custom attributes since this must work with broken types.*/
1535                 cinfo = mono_custom_attrs_from_class_checked (klass, error);
1536                 return_val_if_nok (error, NULL);
1537         } else if (strcmp ("Assembly", klass->name) == 0 || strcmp ("MonoAssembly", klass->name) == 0) {
1538                 MonoReflectionAssembly *rassembly = (MonoReflectionAssembly*)obj;
1539                 cinfo = mono_custom_attrs_from_assembly_checked (rassembly->assembly, FALSE, error);
1540                 return_val_if_nok (error, NULL);
1541         } else if (strcmp ("Module", klass->name) == 0 || strcmp ("MonoModule", klass->name) == 0) {
1542                 MonoReflectionModule *module = (MonoReflectionModule*)obj;
1543                 cinfo = mono_custom_attrs_from_module (module->image, error);
1544                 return_val_if_nok (error, NULL);
1545         } else if (strcmp ("MonoProperty", klass->name) == 0) {
1546                 MonoReflectionProperty *rprop = (MonoReflectionProperty*)obj;
1547                 cinfo = mono_custom_attrs_from_property_checked (rprop->property->parent, rprop->property, error);
1548                 return_val_if_nok (error, NULL);
1549         } else if (strcmp ("MonoEvent", klass->name) == 0) {
1550                 MonoReflectionMonoEvent *revent = (MonoReflectionMonoEvent*)obj;
1551                 cinfo = mono_custom_attrs_from_event_checked (revent->event->parent, revent->event, error);
1552                 return_val_if_nok (error, NULL);
1553         } else if (strcmp ("MonoField", klass->name) == 0) {
1554                 MonoReflectionField *rfield = (MonoReflectionField*)obj;
1555                 cinfo = mono_custom_attrs_from_field_checked (rfield->field->parent, rfield->field, error);
1556                 return_val_if_nok (error, NULL);
1557         } else if ((strcmp ("MonoMethod", klass->name) == 0) || (strcmp ("MonoCMethod", klass->name) == 0)) {
1558                 MonoReflectionMethod *rmethod = (MonoReflectionMethod*)obj;
1559                 cinfo = mono_custom_attrs_from_method_checked (rmethod->method, error);
1560                 return_val_if_nok (error, NULL);
1561         } else if (strcmp ("ParameterInfo", klass->name) == 0 || strcmp ("MonoParameterInfo", klass->name) == 0) {
1562                 MonoReflectionParameter *param = (MonoReflectionParameter*)obj;
1563                 MonoClass *member_class = mono_object_class (param->MemberImpl);
1564                 if (mono_class_is_reflection_method_or_constructor (member_class)) {
1565                         MonoReflectionMethod *rmethod = (MonoReflectionMethod*)param->MemberImpl;
1566                         cinfo = mono_custom_attrs_from_param_checked (rmethod->method, param->PositionImpl + 1, error);
1567                         return_val_if_nok (error, NULL);
1568                 } else if (mono_is_sr_mono_property (member_class)) {
1569                         MonoReflectionProperty *prop = (MonoReflectionProperty *)param->MemberImpl;
1570                         MonoMethod *method;
1571                         if (!(method = prop->property->get))
1572                                 method = prop->property->set;
1573                         g_assert (method);
1574
1575                         cinfo = mono_custom_attrs_from_param_checked (method, param->PositionImpl + 1, error);
1576                         return_val_if_nok (error, NULL);
1577                 } 
1578 #ifndef DISABLE_REFLECTION_EMIT
1579                 else if (mono_is_sre_method_on_tb_inst (member_class)) {/*XXX This is a workaround for Compiler Context*/
1580                         // FIXME: Is this still needed ?
1581                         g_assert_not_reached ();
1582                 } else if (mono_is_sre_ctor_on_tb_inst (member_class)) { /*XX This is a workaround for Compiler Context*/
1583                         // FIXME: Is this still needed ?
1584                         g_assert_not_reached ();
1585                 } 
1586 #endif
1587                 else {
1588                         char *type_name = mono_type_get_full_name (member_class);
1589                         mono_error_set_not_supported (error,
1590                                                       "Custom attributes on a ParamInfo with member %s are not supported",
1591                                                       type_name);
1592                         g_free (type_name);
1593                         return NULL;
1594                 }
1595         } else if (strcmp ("AssemblyBuilder", klass->name) == 0) {
1596                 MonoReflectionAssemblyBuilder *assemblyb = (MonoReflectionAssemblyBuilder*)obj;
1597                 cinfo = mono_custom_attrs_from_builders (NULL, assemblyb->assembly.assembly->image, assemblyb->cattrs);
1598         } else if (strcmp ("TypeBuilder", klass->name) == 0) {
1599                 MonoReflectionTypeBuilder *tb = (MonoReflectionTypeBuilder*)obj;
1600                 cinfo = mono_custom_attrs_from_builders (NULL, &tb->module->dynamic_image->image, tb->cattrs);
1601         } else if (strcmp ("ModuleBuilder", klass->name) == 0) {
1602                 MonoReflectionModuleBuilder *mb = (MonoReflectionModuleBuilder*)obj;
1603                 cinfo = mono_custom_attrs_from_builders (NULL, &mb->dynamic_image->image, mb->cattrs);
1604         } else if (strcmp ("ConstructorBuilder", klass->name) == 0) {
1605                 MonoReflectionCtorBuilder *cb = (MonoReflectionCtorBuilder*)obj;
1606                 cinfo = mono_custom_attrs_from_builders (NULL, cb->mhandle->klass->image, cb->cattrs);
1607         } else if (strcmp ("MethodBuilder", klass->name) == 0) {
1608                 MonoReflectionMethodBuilder *mb = (MonoReflectionMethodBuilder*)obj;
1609                 cinfo = mono_custom_attrs_from_builders (NULL, mb->mhandle->klass->image, mb->cattrs);
1610         } else if (strcmp ("FieldBuilder", klass->name) == 0) {
1611                 MonoReflectionFieldBuilder *fb = (MonoReflectionFieldBuilder*)obj;
1612                 cinfo = mono_custom_attrs_from_builders (NULL, &((MonoReflectionTypeBuilder*)fb->typeb)->module->dynamic_image->image, fb->cattrs);
1613         } else if (strcmp ("MonoGenericClass", klass->name) == 0) {
1614                 MonoReflectionGenericClass *gclass = (MonoReflectionGenericClass*)obj;
1615                 cinfo = mono_reflection_get_custom_attrs_info_checked ((MonoObject*)gclass->generic_type, error);
1616                 return_val_if_nok (error, NULL);
1617         } else { /* handle other types here... */
1618                 g_error ("get custom attrs not yet supported for %s", klass->name);
1619         }
1620
1621         return cinfo;
1622 }
1623
1624 /*
1625  * mono_reflection_get_custom_attrs_by_type:
1626  * @obj: a reflection object handle
1627  *
1628  * Return an array with all the custom attributes defined of the
1629  * reflection handle @obj. If @attr_klass is non-NULL, only custom attributes 
1630  * of that type are returned. The objects are fully build. Return NULL if a loading error
1631  * occurs.
1632  */
1633 MonoArray*
1634 mono_reflection_get_custom_attrs_by_type (MonoObject *obj, MonoClass *attr_klass, MonoError *error)
1635 {
1636         MonoArray *result;
1637         MonoCustomAttrInfo *cinfo;
1638
1639         mono_error_init (error);
1640
1641         cinfo = mono_reflection_get_custom_attrs_info_checked (obj, error);
1642         return_val_if_nok (error, NULL);
1643         if (cinfo) {
1644                 result = mono_custom_attrs_construct_by_type (cinfo, attr_klass, error);
1645                 if (!cinfo->cached)
1646                         mono_custom_attrs_free (cinfo);
1647                 if (!result)
1648                         return NULL;
1649         } else {
1650                 result = mono_array_new_cached (mono_domain_get (), mono_defaults.attribute_class, 0, error);
1651         }
1652
1653         return result;
1654 }
1655
1656 /*
1657  * mono_reflection_get_custom_attrs:
1658  * @obj: a reflection object handle
1659  *
1660  * Return an array with all the custom attributes defined of the
1661  * reflection handle @obj. The objects are fully build. Return NULL if a loading error
1662  * occurs.
1663  */
1664 MonoArray*
1665 mono_reflection_get_custom_attrs (MonoObject *obj)
1666 {
1667         MonoError error;
1668
1669         return mono_reflection_get_custom_attrs_by_type (obj, NULL, &error);
1670 }
1671
1672 /*
1673  * mono_reflection_get_custom_attrs_data:
1674  * @obj: a reflection obj handle
1675  *
1676  * Returns an array of System.Reflection.CustomAttributeData,
1677  * which include information about attributes reflected on
1678  * types loaded using the Reflection Only methods
1679  */
1680 MonoArray*
1681 mono_reflection_get_custom_attrs_data (MonoObject *obj)
1682 {
1683         MonoError error;
1684         MonoArray* result;
1685         result = mono_reflection_get_custom_attrs_data_checked (obj, &error);
1686         mono_error_cleanup (&error);
1687         return result;
1688 }
1689
1690 /*
1691  * mono_reflection_get_custom_attrs_data_checked:
1692  * @obj: a reflection obj handle
1693  * @error: set on error
1694  *
1695  * Returns an array of System.Reflection.CustomAttributeData,
1696  * which include information about attributes reflected on
1697  * types loaded using the Reflection Only methods
1698  */
1699 MonoArray*
1700 mono_reflection_get_custom_attrs_data_checked (MonoObject *obj, MonoError *error)
1701 {
1702         MonoArray *result;
1703         MonoCustomAttrInfo *cinfo;
1704
1705         mono_error_init (error);
1706
1707         cinfo = mono_reflection_get_custom_attrs_info_checked (obj, error);
1708         return_val_if_nok (error, NULL);
1709         if (cinfo) {
1710                 result = mono_custom_attrs_data_construct (cinfo, error);
1711                 if (!cinfo->cached)
1712                         mono_custom_attrs_free (cinfo);
1713                 return_val_if_nok (error, NULL);
1714         } else 
1715                 result = mono_array_new_checked (mono_domain_get (), mono_defaults.customattribute_data_class, 0, error);
1716
1717         return result;
1718 }
1719
1720 static gboolean
1721 custom_attr_class_name_from_methoddef (MonoImage *image, guint32 method_token, const gchar **nspace, const gchar **class_name)
1722 {
1723         /* mono_get_method_from_token () */
1724         g_assert (mono_metadata_token_table (method_token) == MONO_TABLE_METHOD);
1725         guint32 type_token = mono_metadata_typedef_from_method (image, method_token);
1726         if (!type_token) {
1727                 /* Bad method token (could not find corresponding typedef) */
1728                 return FALSE;
1729         }
1730         type_token |= MONO_TOKEN_TYPE_DEF;
1731         {
1732                 /* mono_class_create_from_typedef () */
1733                 MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
1734                 guint32 cols [MONO_TYPEDEF_SIZE];
1735                 guint tidx = mono_metadata_token_index (type_token);
1736
1737                 if (mono_metadata_token_table (type_token) != MONO_TABLE_TYPEDEF || tidx > tt->rows) {
1738                         /* "Invalid typedef token %x", type_token */
1739                         return FALSE;
1740                 }
1741
1742                 mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
1743
1744                 if (class_name)
1745                         *class_name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
1746                 if (nspace)
1747                         *nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
1748                 return TRUE;
1749         }
1750 }
1751
1752
1753 /**
1754  * custom_attr_class_name_from_method_token:
1755  * @image: The MonoImage
1756  * @method_token: a token for a custom attr constructor in @image
1757  * @assembly_token: out argment set to the assembly ref token of the custom attr
1758  * @nspace: out argument set to namespace (a string in the string heap of @image) of the custom attr
1759  * @class_name: out argument set to the class name of the custom attr.
1760  *
1761  * Given an @image and a @method_token (which is assumed to be a
1762  * constructor), fills in the out arguments with the assembly ref (if
1763  * a methodref) and the namespace and class name of the custom
1764  * attribute.
1765  *
1766  * Returns: TRUE on success, FALSE otherwise.
1767  *
1768  * LOCKING: does not take locks
1769  */
1770 static gboolean
1771 custom_attr_class_name_from_method_token (MonoImage *image, guint32 method_token, guint32 *assembly_token, const gchar **nspace, const gchar **class_name)
1772 {
1773         /* This only works with method tokens constructed from a
1774          * custom attr token, which can only be methoddef or
1775          * memberref */
1776         g_assert (mono_metadata_token_table (method_token) == MONO_TABLE_METHOD
1777                   || mono_metadata_token_table  (method_token) == MONO_TABLE_MEMBERREF);
1778
1779         if (mono_metadata_token_table (method_token) == MONO_TABLE_MEMBERREF) {
1780                 /* method_from_memberref () */
1781                 guint32 cols[6];
1782                 guint32 nindex, class_index;
1783
1784                 int idx = mono_metadata_token_index (method_token);
1785
1786                 mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], idx-1, cols, 3);
1787                 nindex = cols [MONO_MEMBERREF_CLASS] >> MONO_MEMBERREF_PARENT_BITS;
1788                 class_index = cols [MONO_MEMBERREF_CLASS] & MONO_MEMBERREF_PARENT_MASK;
1789                 if (class_index == MONO_MEMBERREF_PARENT_TYPEREF) {
1790                         guint32 type_token = MONO_TOKEN_TYPE_REF | nindex;
1791                         /* mono_class_from_typeref_checked () */
1792                         {
1793                                 guint32 cols [MONO_TYPEREF_SIZE];
1794                                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
1795
1796                                 mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
1797
1798                                 if (class_name)
1799                                         *class_name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
1800                                 if (nspace)
1801                                         *nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
1802                                 if (assembly_token)
1803                                         *assembly_token = cols [MONO_TYPEREF_SCOPE];
1804                                 return TRUE;
1805                         }
1806                 } else if (class_index == MONO_MEMBERREF_PARENT_METHODDEF) {
1807                         guint32 methoddef_token = MONO_TOKEN_METHOD_DEF | nindex;
1808                         if (assembly_token)
1809                                 *assembly_token = 0;
1810                         return custom_attr_class_name_from_methoddef (image, methoddef_token, nspace, class_name);
1811                 } else {
1812                         /* Attributes can't be generic, so it won't be
1813                          * a typespec, and they're always
1814                          * constructors, so it won't be a moduleref */
1815                         g_assert_not_reached ();
1816                 }
1817         } else {
1818                 /* must be MONO_TABLE_METHOD */
1819                 if (assembly_token)
1820                         *assembly_token = 0;
1821                 return custom_attr_class_name_from_methoddef (image, method_token, nspace, class_name);
1822         }
1823 }
1824
1825 /**
1826  * mono_assembly_metadata_foreach_custom_attr:
1827  * @assembly: the assembly to iterate over
1828  * @func: the function to call for each custom attribute
1829  * @user_data: passed to @func
1830  *
1831  * Calls @func for each custom attribute type on the given assembly until @func returns TRUE.
1832  * Everything is done using low-level metadata APIs, so it is safe to use during assembly loading.
1833  *
1834  */
1835 void
1836 mono_assembly_metadata_foreach_custom_attr (MonoAssembly *assembly, MonoAssemblyMetadataCustomAttrIterFunc func, gpointer user_data)
1837 {
1838         MonoImage *image;
1839         guint32 mtoken, i;
1840         guint32 cols [MONO_CUSTOM_ATTR_SIZE];
1841         MonoTableInfo *ca;
1842         guint32 idx;
1843
1844         /*
1845          * This might be called during assembly loading, so do everything using the low-level
1846          * metadata APIs.
1847          */
1848
1849         image = assembly->image;
1850         g_assert (!image_is_dynamic (image));
1851         idx = 1; /* there is only one assembly */
1852         idx <<= MONO_CUSTOM_ATTR_BITS;
1853         idx |= MONO_CUSTOM_ATTR_ASSEMBLY;
1854
1855         /* Inlined from mono_custom_attrs_from_index_checked () */
1856         ca = &image->tables [MONO_TABLE_CUSTOMATTRIBUTE];
1857         i = mono_metadata_custom_attrs_from_index (image, idx);
1858         if (!i)
1859                 return;
1860         i --;
1861         gboolean stop_iterating = FALSE;
1862         while (!stop_iterating && i < ca->rows) {
1863                 if (mono_metadata_decode_row_col (ca, i, MONO_CUSTOM_ATTR_PARENT) != idx)
1864                         break;
1865                 mono_metadata_decode_row (ca, i, cols, MONO_CUSTOM_ATTR_SIZE);
1866                 i ++;
1867                 mtoken = cols [MONO_CUSTOM_ATTR_TYPE] >> MONO_CUSTOM_ATTR_TYPE_BITS;
1868                 switch (cols [MONO_CUSTOM_ATTR_TYPE] & MONO_CUSTOM_ATTR_TYPE_MASK) {
1869                 case MONO_CUSTOM_ATTR_TYPE_METHODDEF:
1870                         mtoken |= MONO_TOKEN_METHOD_DEF;
1871                         break;
1872                 case MONO_CUSTOM_ATTR_TYPE_MEMBERREF:
1873                         mtoken |= MONO_TOKEN_MEMBER_REF;
1874                         break;
1875                 default:
1876                         g_warning ("Unknown table for custom attr type %08x", cols [MONO_CUSTOM_ATTR_TYPE]);
1877                         continue;
1878                 }
1879
1880                 const char *nspace = NULL;
1881                 const char *name = NULL;
1882                 guint32 assembly_token = 0;
1883
1884                 if (!custom_attr_class_name_from_method_token (image, mtoken, &assembly_token, &nspace, &name))
1885                         continue;
1886
1887                 stop_iterating = func (image, assembly_token, nspace, name, mtoken, user_data);
1888         }
1889 }