Changed UploadStringAsync to handle UploadString encapsulated exceptions.
[mono.git] / mono / metadata / verify.c
1 /*
2  * verify.c: 
3  *
4  * Author:
5  *      Mono Project (http://www.mono-project.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  */
11 #include <config.h>
12
13 #include <mono/metadata/object-internals.h>
14 #include <mono/metadata/verify.h>
15 #include <mono/metadata/verify-internals.h>
16 #include <mono/metadata/opcodes.h>
17 #include <mono/metadata/tabledefs.h>
18 #include <mono/metadata/reflection.h>
19 #include <mono/metadata/debug-helpers.h>
20 #include <mono/metadata/mono-endian.h>
21 #include <mono/metadata/metadata.h>
22 #include <mono/metadata/metadata-internals.h>
23 #include <mono/metadata/class-internals.h>
24 #include <mono/metadata/security-manager.h>
25 #include <mono/metadata/security-core-clr.h>
26 #include <mono/metadata/tokentype.h>
27 #include <mono/metadata/mono-basic-block.h>
28 #include <mono/metadata/attrdefs.h>
29 #include <mono/utils/mono-counters.h>
30 #include <mono/utils/monobitset.h>
31 #include <string.h>
32 #include <signal.h>
33 #include <ctype.h>
34
35 static MiniVerifierMode verifier_mode = MONO_VERIFIER_MODE_OFF;
36 static gboolean verify_all = FALSE;
37
38 /*
39  * Set the desired level of checks for the verfier.
40  * 
41  */
42 void
43 mono_verifier_set_mode (MiniVerifierMode mode)
44 {
45         verifier_mode = mode;
46 }
47
48 void
49 mono_verifier_enable_verify_all ()
50 {
51         verify_all = TRUE;
52 }
53
54 #ifndef DISABLE_VERIFIER
55 /*
56  * Pull the list of opcodes
57  */
58 #define OPDEF(a,b,c,d,e,f,g,h,i,j) \
59         a = i,
60
61 enum {
62 #include "mono/cil/opcode.def"
63         LAST = 0xff
64 };
65 #undef OPDEF
66
67 #ifdef MONO_VERIFIER_DEBUG
68 #define VERIFIER_DEBUG(code) do { code } while (0)
69 #else
70 #define VERIFIER_DEBUG(code)
71 #endif
72
73 //////////////////////////////////////////////////////////////////
74 #define IS_STRICT_MODE(ctx) (((ctx)->level & MONO_VERIFY_NON_STRICT) == 0)
75 #define IS_FAIL_FAST_MODE(ctx) (((ctx)->level & MONO_VERIFY_FAIL_FAST) == MONO_VERIFY_FAIL_FAST)
76 #define IS_SKIP_VISIBILITY(ctx) (((ctx)->level & MONO_VERIFY_SKIP_VISIBILITY) == MONO_VERIFY_SKIP_VISIBILITY)
77 #define IS_REPORT_ALL_ERRORS(ctx) (((ctx)->level & MONO_VERIFY_REPORT_ALL_ERRORS) == MONO_VERIFY_REPORT_ALL_ERRORS)
78 #define CLEAR_PREFIX(ctx, prefix) do { (ctx)->prefix_set &= ~(prefix); } while (0)
79 #define ADD_VERIFY_INFO(__ctx, __msg, __status, __exception)    \
80         do {    \
81                 MonoVerifyInfoExtended *vinfo = g_new (MonoVerifyInfoExtended, 1);      \
82                 vinfo->info.status = __status;  \
83                 vinfo->info.message = ( __msg );        \
84                 vinfo->exception_type = (__exception);  \
85                 (__ctx)->list = g_slist_prepend ((__ctx)->list, vinfo); \
86         } while (0)
87
88 //TODO support MONO_VERIFY_REPORT_ALL_ERRORS
89 #define ADD_VERIFY_ERROR(__ctx, __msg)  \
90         do {    \
91                 ADD_VERIFY_INFO(__ctx, __msg, MONO_VERIFY_ERROR, MONO_EXCEPTION_INVALID_PROGRAM); \
92                 (__ctx)->valid = 0; \
93         } while (0)
94
95 #define CODE_NOT_VERIFIABLE(__ctx, __msg) \
96         do {    \
97                 if ((__ctx)->verifiable || IS_REPORT_ALL_ERRORS (__ctx)) { \
98                         ADD_VERIFY_INFO(__ctx, __msg, MONO_VERIFY_NOT_VERIFIABLE, MONO_EXCEPTION_UNVERIFIABLE_IL); \
99                         (__ctx)->verifiable = 0; \
100                         if (IS_FAIL_FAST_MODE (__ctx)) \
101                                 (__ctx)->valid = 0; \
102                 } \
103         } while (0)
104
105 #define ADD_VERIFY_ERROR2(__ctx, __msg, __exception)    \
106         do {    \
107                 ADD_VERIFY_INFO(__ctx, __msg, MONO_VERIFY_ERROR, __exception); \
108                 (__ctx)->valid = 0; \
109         } while (0)
110
111 #define CODE_NOT_VERIFIABLE2(__ctx, __msg, __exception) \
112         do {    \
113                 if ((__ctx)->verifiable || IS_REPORT_ALL_ERRORS (__ctx)) { \
114                         ADD_VERIFY_INFO(__ctx, __msg, MONO_VERIFY_NOT_VERIFIABLE, __exception); \
115                         (__ctx)->verifiable = 0; \
116                         if (IS_FAIL_FAST_MODE (__ctx)) \
117                                 (__ctx)->valid = 0; \
118                 } \
119         } while (0)
120
121 #define CHECK_ADD4_OVERFLOW_UN(a, b) ((guint32)(0xFFFFFFFFU) - (guint32)(b) < (guint32)(a))
122 #define CHECK_ADD8_OVERFLOW_UN(a, b) ((guint64)(0xFFFFFFFFFFFFFFFFUL) - (guint64)(b) < (guint64)(a))
123
124 #if SIZEOF_VOID_P == 4
125 #define CHECK_ADDP_OVERFLOW_UN(a,b) CHECK_ADD4_OVERFLOW_UN(a, b)
126 #else
127 #define CHECK_ADDP_OVERFLOW_UN(a,b) CHECK_ADD8_OVERFLOW_UN(a, b)
128 #endif
129
130 #define ADDP_IS_GREATER_OR_OVF(a, b, c) (((a) + (b) > (c)) || CHECK_ADDP_OVERFLOW_UN (a, b))
131 #define ADD_IS_GREATER_OR_OVF(a, b, c) (((a) + (b) > (c)) || CHECK_ADD4_OVERFLOW_UN (a, b))
132
133 /*Flags to be used with ILCodeDesc::flags */
134 enum {
135         /*Instruction has not been processed.*/
136         IL_CODE_FLAG_NOT_PROCESSED  = 0,
137         /*Instruction was decoded by mono_method_verify loop.*/
138         IL_CODE_FLAG_SEEN = 1,
139         /*Instruction was target of a branch or is at a protected block boundary.*/
140         IL_CODE_FLAG_WAS_TARGET = 2,
141         /*Used by stack_init to avoid double initialize each entry.*/
142         IL_CODE_FLAG_STACK_INITED = 4,
143         /*Used by merge_stacks to decide if it should just copy the eval stack.*/
144         IL_CODE_STACK_MERGED = 8,
145         /*This instruction is part of the delegate construction sequence, it cannot be target of a branch.*/
146         IL_CODE_DELEGATE_SEQUENCE = 0x10,
147         /*This is a delegate created from a ldftn to a non final virtual method*/
148         IL_CODE_LDFTN_DELEGATE_NONFINAL_VIRTUAL = 0x20,
149         /*This is a call to a non final virtual method*/
150         IL_CODE_CALL_NONFINAL_VIRTUAL = 0x40,
151 };
152
153 typedef enum {
154         RESULT_VALID,
155         RESULT_UNVERIFIABLE,
156         RESULT_INVALID
157 } verify_result_t;
158
159 typedef struct {
160         MonoType *type;
161         int stype;
162         MonoMethod *method;
163 } ILStackDesc;
164
165
166 typedef struct {
167         ILStackDesc *stack;
168         guint16 size, max_size;
169         guint16 flags;
170 } ILCodeDesc;
171
172 typedef struct {
173         int max_args;
174         int max_stack;
175         int verifiable;
176         int valid;
177         int level;
178
179         int code_size;
180         ILCodeDesc *code;
181         ILCodeDesc eval;
182
183         MonoType **params;
184         GSList *list;
185         /*Allocated fnptr MonoType that should be freed by us.*/
186         GSList *funptrs;
187         /*Type dup'ed exception types from catch blocks.*/
188         GSList *exception_types;
189
190         int num_locals;
191         MonoType **locals;
192
193         /*TODO get rid of target here, need_merge in mono_method_verify and hoist the merging code in the branching code*/
194         int target;
195
196         guint32 ip_offset;
197         MonoMethodSignature *signature;
198         MonoMethodHeader *header;
199
200         MonoGenericContext *generic_context;
201         MonoImage *image;
202         MonoMethod *method;
203
204         /*This flag helps solving a corner case of delegate verification in that you cannot have a "starg 0" 
205          *on a method that creates a delegate for a non-final virtual method using ldftn*/
206         gboolean has_this_store;
207
208         /*This flag is used to control if the contructor of the parent class has been called.
209          *If the this pointer is pushed on the eval stack and it's a reference type constructor and
210          * super_ctor_called is false, the uninitialized flag is set on the pushed value.
211          * 
212          * Poping an uninitialized this ptr from the eval stack is an unverifiable operation unless
213          * the safe variant is used. Only a few opcodes can use it : dup, pop, ldfld, stfld and call to a constructor.
214          */
215         gboolean super_ctor_called;
216
217         guint32 prefix_set;
218         gboolean has_flags;
219         MonoType *constrained_type;
220 } VerifyContext;
221
222 static void
223 merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean start, gboolean external);
224
225 static int
226 get_stack_type (MonoType *type);
227
228 static gboolean
229 mono_delegate_signature_equal (MonoMethodSignature *delegate_sig, MonoMethodSignature *method_sig, gboolean is_static_ldftn);
230
231 static gboolean
232 mono_class_is_valid_generic_instantiation (VerifyContext *ctx, MonoClass *klass);
233
234 static gboolean
235 mono_method_is_valid_generic_instantiation (VerifyContext *ctx, MonoMethod *method);
236
237 static MonoGenericParam*
238 verifier_get_generic_param_from_type (VerifyContext *ctx, MonoType *type);
239
240 static gboolean
241 verifier_class_is_assignable_from (MonoClass *target, MonoClass *candidate);
242 //////////////////////////////////////////////////////////////////
243
244
245
246 enum {
247         TYPE_INV = 0, /* leave at 0. */
248         TYPE_I4  = 1,
249         TYPE_I8  = 2,
250         TYPE_NATIVE_INT = 3,
251         TYPE_R8  = 4,
252         /* Used by operator tables to resolve pointer types (managed & unmanaged) and by unmanaged pointer types*/
253         TYPE_PTR  = 5,
254         /* value types and classes */
255         TYPE_COMPLEX = 6,
256         /* Number of types, used to define the size of the tables*/
257         TYPE_MAX = 6,
258
259         /* Used by tables to signal that a result is not verifiable*/
260         NON_VERIFIABLE_RESULT = 0x80,
261
262         /*Mask used to extract just the type, excluding flags */
263         TYPE_MASK = 0x0F,
264
265         /* The stack type is a managed pointer, unmask the value to res */
266         POINTER_MASK = 0x100,
267         
268         /*Stack type with the pointer mask*/
269         RAW_TYPE_MASK = 0x10F,
270
271         /* Controlled Mutability Manager Pointer */
272         CMMP_MASK = 0x200,
273
274         /* The stack type is a null literal*/
275         NULL_LITERAL_MASK = 0x400,
276         
277         /**Used by ldarg.0 and family to let delegate verification happens.*/
278         THIS_POINTER_MASK = 0x800,
279
280         /**Signals that this is a boxed value type*/
281         BOXED_MASK = 0x1000,
282
283         /*This is an unitialized this ref*/
284         UNINIT_THIS_MASK = 0x2000,
285 };
286
287 static const char* const
288 type_names [TYPE_MAX + 1] = {
289         "Invalid",
290         "Int32",
291         "Int64",
292         "Native Int",
293         "Float64",
294         "Native Pointer",
295         "Complex"       
296 };
297
298 enum {
299         PREFIX_UNALIGNED = 1,
300         PREFIX_VOLATILE  = 2,
301         PREFIX_TAIL      = 4,
302         PREFIX_CONSTRAINED = 8,
303         PREFIX_READONLY = 16
304 };
305 //////////////////////////////////////////////////////////////////
306
307 #ifdef ENABLE_VERIFIER_STATS
308
309 #define MEM_ALLOC(amt) do { allocated_memory += (amt); working_set += (amt); } while (0)
310 #define MEM_FREE(amt) do { working_set -= (amt); } while (0)
311
312 static int allocated_memory;
313 static int working_set;
314 static int max_allocated_memory;
315 static int max_working_set;
316 static int total_allocated_memory;
317
318 static void
319 finish_collect_stats (void)
320 {
321         max_allocated_memory = MAX (max_allocated_memory, allocated_memory);
322         max_working_set = MAX (max_working_set, working_set);
323         total_allocated_memory += allocated_memory;
324         allocated_memory = working_set = 0;
325 }
326
327 static void
328 init_verifier_stats (void)
329 {
330         static gboolean inited;
331         if (!inited) {
332                 inited = TRUE;
333                 mono_counters_register ("Maximum memory allocated during verification", MONO_COUNTER_METADATA | MONO_COUNTER_INT, &max_allocated_memory);
334                 mono_counters_register ("Maximum memory used during verification", MONO_COUNTER_METADATA | MONO_COUNTER_INT, &max_working_set);
335                 mono_counters_register ("Total memory allocated for verification", MONO_COUNTER_METADATA | MONO_COUNTER_INT, &total_allocated_memory);
336         }
337 }
338
339 #else
340
341 #define MEM_ALLOC(amt) do {} while (0)
342 #define MEM_FREE(amt) do { } while (0)
343
344 #define finish_collect_stats()
345 #define init_verifier_stats()
346
347 #endif
348
349
350 //////////////////////////////////////////////////////////////////
351
352
353 /*Token validation macros and functions */
354 #define IS_MEMBER_REF(token) (mono_metadata_token_table (token) == MONO_TABLE_MEMBERREF)
355 #define IS_METHOD_DEF(token) (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
356 #define IS_METHOD_SPEC(token) (mono_metadata_token_table (token) == MONO_TABLE_METHODSPEC)
357 #define IS_FIELD_DEF(token) (mono_metadata_token_table (token) == MONO_TABLE_FIELD)
358
359 #define IS_TYPE_REF(token) (mono_metadata_token_table (token) == MONO_TABLE_TYPEREF)
360 #define IS_TYPE_DEF(token) (mono_metadata_token_table (token) == MONO_TABLE_TYPEDEF)
361 #define IS_TYPE_SPEC(token) (mono_metadata_token_table (token) == MONO_TABLE_TYPESPEC)
362 #define IS_METHOD_DEF_OR_REF_OR_SPEC(token) (IS_METHOD_DEF (token) || IS_MEMBER_REF (token) || IS_METHOD_SPEC (token))
363 #define IS_TYPE_DEF_OR_REF_OR_SPEC(token) (IS_TYPE_DEF (token) || IS_TYPE_REF (token) || IS_TYPE_SPEC (token))
364 #define IS_FIELD_DEF_OR_REF(token) (IS_FIELD_DEF (token) || IS_MEMBER_REF (token))
365
366 /*
367  * Verify if @token refers to a valid row on int's table.
368  */
369 static gboolean
370 token_bounds_check (MonoImage *image, guint32 token)
371 {
372         if (image->dynamic)
373                 return mono_reflection_is_valid_dynamic_token ((MonoDynamicImage*)image, token);
374         return image->tables [mono_metadata_token_table (token)].rows >= mono_metadata_token_index (token) && mono_metadata_token_index (token) > 0;
375 }
376
377 static MonoType *
378 mono_type_create_fnptr_from_mono_method (VerifyContext *ctx, MonoMethod *method)
379 {
380         MonoType *res = g_new0 (MonoType, 1);
381         MEM_ALLOC (sizeof (MonoType));
382
383         //FIXME use mono_method_get_signature_full
384         res->data.method = mono_method_signature (method);
385         res->type = MONO_TYPE_FNPTR;
386         ctx->funptrs = g_slist_prepend (ctx->funptrs, res);
387         return res;
388 }
389
390 /*
391  * mono_type_is_enum_type:
392  * 
393  * Returns TRUE if @type is an enum type. 
394  */
395 static gboolean
396 mono_type_is_enum_type (MonoType *type)
397 {
398         if (type->type == MONO_TYPE_VALUETYPE && type->data.klass->enumtype)
399                 return TRUE;
400         if (type->type == MONO_TYPE_GENERICINST && type->data.generic_class->container_class->enumtype)
401                 return TRUE;
402         return FALSE;
403 }
404
405 /*
406  * mono_type_is_value_type:
407  * 
408  * Returns TRUE if @type is named after @namespace.@name.
409  * 
410  */
411 static gboolean
412 mono_type_is_value_type (MonoType *type, const char *namespace, const char *name)
413 {
414         return type->type == MONO_TYPE_VALUETYPE &&
415                 !strcmp (namespace, type->data.klass->name_space) &&
416                 !strcmp (name, type->data.klass->name);
417 }
418
419 /*
420  * Returns TURE if @type is VAR or MVAR
421  */
422 static gboolean
423 mono_type_is_generic_argument (MonoType *type)
424 {
425         return type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR;
426 }
427
428 /*
429  * mono_type_get_underlying_type_any:
430  * 
431  * This functions is just like mono_type_get_underlying_type but it doesn't care if the type is byref.
432  * 
433  * Returns the underlying type of @type regardless if it is byref or not.
434  */
435 static MonoType*
436 mono_type_get_underlying_type_any (MonoType *type)
437 {
438         if (type->type == MONO_TYPE_VALUETYPE && type->data.klass->enumtype)
439                 return mono_class_enum_basetype (type->data.klass);
440         if (type->type == MONO_TYPE_GENERICINST && type->data.generic_class->container_class->enumtype)
441                 return mono_class_enum_basetype (type->data.generic_class->container_class);
442         return type;
443 }
444
445 static G_GNUC_UNUSED const char*
446 mono_type_get_stack_name (MonoType *type)
447 {
448         return type_names [get_stack_type (type) & TYPE_MASK];
449 }
450
451 #define CTOR_REQUIRED_FLAGS (METHOD_ATTRIBUTE_SPECIAL_NAME | METHOD_ATTRIBUTE_RT_SPECIAL_NAME)
452 #define CTOR_INVALID_FLAGS (METHOD_ATTRIBUTE_STATIC)
453
454 static gboolean
455 mono_method_is_constructor (MonoMethod *method) 
456 {
457         return ((method->flags & CTOR_REQUIRED_FLAGS) == CTOR_REQUIRED_FLAGS &&
458                         !(method->flags & CTOR_INVALID_FLAGS) &&
459                         !strcmp (".ctor", method->name));
460 }
461
462 static gboolean
463 mono_class_has_default_constructor (MonoClass *klass)
464 {
465         MonoMethod *method;
466         int i;
467
468         mono_class_setup_methods (klass);
469         if (klass->exception_type)
470                 return FALSE;
471
472         for (i = 0; i < klass->method.count; ++i) {
473                 method = klass->methods [i];
474                 if (mono_method_is_constructor (method) &&
475                         mono_method_signature (method) &&
476                         mono_method_signature (method)->param_count == 0 &&
477                         (method->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC)
478                         return TRUE;
479         }
480         return FALSE;
481 }
482
483 /*
484  * Verify if @type is valid for the given @ctx verification context.
485  * this function checks for VAR and MVAR types that are invalid under the current verifier,
486  */
487 static gboolean
488 mono_type_is_valid_type_in_context_full (MonoType *type, MonoGenericContext *context, gboolean check_gtd)
489 {
490         int i;
491         MonoGenericInst *inst;
492
493         switch (type->type) {
494         case MONO_TYPE_VAR:
495         case MONO_TYPE_MVAR:
496                 if (!context)
497                         return FALSE;
498                 inst = type->type == MONO_TYPE_VAR ? context->class_inst : context->method_inst;
499                 if (!inst || mono_type_get_generic_param_num (type) >= inst->type_argc)
500                         return FALSE;
501                 break;
502         case MONO_TYPE_SZARRAY:
503                 return mono_type_is_valid_type_in_context_full (&type->data.klass->byval_arg, context, check_gtd);
504         case MONO_TYPE_ARRAY:
505                 return mono_type_is_valid_type_in_context_full (&type->data.array->eklass->byval_arg, context, check_gtd);
506         case MONO_TYPE_PTR:
507                 return mono_type_is_valid_type_in_context_full (type->data.type, context, check_gtd);
508         case MONO_TYPE_GENERICINST:
509                 inst = type->data.generic_class->context.class_inst;
510                 if (!inst->is_open)
511                         break;
512                 for (i = 0; i < inst->type_argc; ++i)
513                         if (!mono_type_is_valid_type_in_context_full (inst->type_argv [i], context, check_gtd))
514                                 return FALSE;
515                 break;
516         case MONO_TYPE_CLASS:
517         case MONO_TYPE_VALUETYPE: {
518                 MonoClass *klass = type->data.klass;
519                 /*
520                  * It's possible to encode generic'sh types in such a way that they disguise themselves as class or valuetype.
521                  * Fixing the type decoding is really tricky since under some cases this behavior is needed, for example, to
522                  * have a 'class' type pointing to a 'genericinst' class.
523                  *
524                  * For the runtime these non canonical (weird) encodings work fine, the worst they can cause is some
525                  * reflection oddities which are harmless  - to security at least.
526                  */
527                 if (klass->byval_arg.type != type->type)
528                         return mono_type_is_valid_type_in_context_full (&klass->byval_arg, context, check_gtd);
529
530                 if (check_gtd && klass->generic_container)
531                         return FALSE;
532                 break;
533         }
534         }
535         return TRUE;
536 }
537
538 static gboolean
539 mono_type_is_valid_type_in_context (MonoType *type, MonoGenericContext *context)
540 {
541         return mono_type_is_valid_type_in_context_full (type, context, FALSE);
542 }
543
544 /*This function returns NULL if the type is not instantiatable*/
545 static MonoType*
546 verifier_inflate_type (VerifyContext *ctx, MonoType *type, MonoGenericContext *context)
547 {
548         MonoError error;
549         MonoType *result;
550
551         result = mono_class_inflate_generic_type_checked (type, context, &error);
552         if (!mono_error_ok (&error)) {
553                 mono_error_cleanup (&error);
554                 return NULL;
555         }
556         return result;
557 }
558
559 /*A side note here. We don't need to check if arguments are broken since this
560 is only need to be done by the runtime before realizing the type.
561 */
562 static gboolean
563 is_valid_generic_instantiation (MonoGenericContainer *gc, MonoGenericContext *context, MonoGenericInst *ginst)
564 {
565         MonoError error;
566         int i;
567
568         if (ginst->type_argc != gc->type_argc)
569                 return FALSE;
570
571         for (i = 0; i < gc->type_argc; ++i) {
572                 MonoGenericParamInfo *param_info = mono_generic_container_get_param_info (gc, i);
573                 MonoClass *paramClass;
574                 MonoClass **constraints;
575                 MonoType *param_type = ginst->type_argv [i];
576
577                 /*it's not our job to validate type variables*/
578                 if (mono_type_is_generic_argument (param_type))
579                         continue;
580
581                 paramClass = mono_class_from_mono_type (param_type);
582
583
584                 /* A GTD can't be a generic argument.
585                  *
586                  * Due to how types are encoded we must check for the case of a genericinst MonoType and GTD MonoClass.
587                  * This happens in cases such as: class Foo<T>  { void X() { new Bar<T> (); } }
588                  *
589                  * Open instantiations can have GTDs as this happens when one type is instantiated with others params
590                  * and the former has an expansion into the later. For example:
591                  * class B<K> {}
592                  * class A<T>: B<K> {}
593                  * The type A <K> has a parent B<K>, that is inflated into the GTD B<>.
594                  * Since A<K> is open, thus not instantiatable, this is valid.
595                  */
596                 if (paramClass->generic_container && param_type->type != MONO_TYPE_GENERICINST && !ginst->is_open)
597                         return FALSE;
598
599                 /*it's not safe to call mono_class_init from here*/
600                 if (paramClass->generic_class && !paramClass->inited) {
601                         if (!mono_class_is_valid_generic_instantiation (NULL, paramClass))
602                                 return FALSE;
603                 }
604
605                 if (!param_info->constraints && !(param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK))
606                         continue;
607
608                 if ((param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT) && (!paramClass->valuetype || mono_class_is_nullable (paramClass)))
609                         return FALSE;
610
611                 if ((param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_REFERENCE_TYPE_CONSTRAINT) && paramClass->valuetype)
612                         return FALSE;
613
614                 if ((param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_CONSTRUCTOR_CONSTRAINT) && !paramClass->valuetype && !mono_class_has_default_constructor (paramClass))
615                         return FALSE;
616
617                 if (!param_info->constraints)
618                         continue;
619
620                 for (constraints = param_info->constraints; *constraints; ++constraints) {
621                         MonoClass *ctr = *constraints;
622                         MonoType *inflated;
623
624                         inflated = mono_class_inflate_generic_type_checked (&ctr->byval_arg, context, &error);
625                         if (!mono_error_ok (&error)) {
626                                 mono_error_cleanup (&error);
627                                 return FALSE;
628                         }
629                         ctr = mono_class_from_mono_type (inflated);
630                         mono_metadata_free_type (inflated);
631
632                         /*FIXME maybe we need the same this as verifier_class_is_assignable_from*/
633                         if (!mono_class_is_assignable_from_slow (ctr, paramClass))
634                                 return FALSE;
635                 }
636         }
637         return TRUE;
638 }
639
640 /*
641  * Return true if @candidate is constraint compatible with @target.
642  * 
643  * This means that @candidate constraints are a super set of @target constaints
644  */
645 static gboolean
646 mono_generic_param_is_constraint_compatible (VerifyContext *ctx, MonoGenericParam *target, MonoGenericParam *candidate, MonoClass *candidate_param_class, MonoGenericContext *context)
647 {
648         MonoGenericParamInfo *tinfo = mono_generic_param_info (target);
649         MonoGenericParamInfo *cinfo = mono_generic_param_info (candidate);
650         MonoClass **candidate_class;
651         gboolean class_constraint_satisfied = FALSE;
652         gboolean valuetype_constraint_satisfied = FALSE;
653
654         int tmask = tinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;
655         int cmask = cinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;
656
657         if (cinfo->constraints) {
658                 for (candidate_class = cinfo->constraints; *candidate_class; ++candidate_class) {
659                         MonoClass *cc;
660                         MonoType *inflated = verifier_inflate_type (ctx, &(*candidate_class)->byval_arg, ctx->generic_context);
661                         if (!inflated)
662                                 return FALSE;
663                         cc = mono_class_from_mono_type (inflated);
664                         mono_metadata_free_type (inflated);
665
666                         if (mono_type_is_reference (&cc->byval_arg) && !MONO_CLASS_IS_INTERFACE (cc))
667                                 class_constraint_satisfied = TRUE;
668                         else if (!mono_type_is_reference (&cc->byval_arg) && !MONO_CLASS_IS_INTERFACE (cc))
669                                 valuetype_constraint_satisfied = TRUE;
670                 }
671         }
672         class_constraint_satisfied |= (cmask & GENERIC_PARAMETER_ATTRIBUTE_REFERENCE_TYPE_CONSTRAINT) != 0;
673         valuetype_constraint_satisfied |= (cmask & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT) != 0;
674
675         if ((tmask & GENERIC_PARAMETER_ATTRIBUTE_REFERENCE_TYPE_CONSTRAINT) && !class_constraint_satisfied)
676                 return FALSE;
677         if ((tmask & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT) && !valuetype_constraint_satisfied)
678                 return FALSE;
679         if ((tmask & GENERIC_PARAMETER_ATTRIBUTE_CONSTRUCTOR_CONSTRAINT) && !((cmask & GENERIC_PARAMETER_ATTRIBUTE_CONSTRUCTOR_CONSTRAINT) ||
680                 valuetype_constraint_satisfied)) {
681                 return FALSE;
682         }
683
684
685         if (tinfo->constraints) {
686                 MonoClass **target_class;
687                 for (target_class = tinfo->constraints; *target_class; ++target_class) {
688                         MonoClass *tc;
689                         MonoType *inflated = verifier_inflate_type (ctx, &(*target_class)->byval_arg, context);
690                         if (!inflated)
691                                 return FALSE;
692                         tc = mono_class_from_mono_type (inflated);
693                         mono_metadata_free_type (inflated);
694
695                         /*
696                          * A constraint from @target might inflate into @candidate itself and in that case we don't need
697                          * check it's constraints since it satisfy the constraint by itself.
698                          */
699                         if (mono_metadata_type_equal (&tc->byval_arg, &candidate_param_class->byval_arg))
700                                 continue;
701
702                         if (!cinfo->constraints)
703                                 return FALSE;
704
705                         for (candidate_class = cinfo->constraints; *candidate_class; ++candidate_class) {
706                                 MonoClass *cc;
707                                 inflated = verifier_inflate_type (ctx, &(*candidate_class)->byval_arg, ctx->generic_context);
708                                 if (!inflated)
709                                         return FALSE;
710                                 cc = mono_class_from_mono_type (inflated);
711                                 mono_metadata_free_type (inflated);
712
713                                 if (verifier_class_is_assignable_from (tc, cc))
714                                         break;
715
716                                 /*
717                                  * This happens when we have the following:
718                                  *
719                                  * Bar<K> where K : IFace
720                                  * Foo<T, U> where T : U where U : IFace
721                                  *      ...
722                                  *      Bar<T> <- T here satisfy K constraint transitively through to U's constraint
723                                  *
724                                  */
725                                 if (mono_type_is_generic_argument (&cc->byval_arg)) {
726                                         MonoGenericParam *other_candidate = verifier_get_generic_param_from_type (ctx, &cc->byval_arg);
727
728                                         if (mono_generic_param_is_constraint_compatible (ctx, target, other_candidate, cc, context)) {
729                                                 break;
730                                         }
731                                 }
732                         }
733                         if (!*candidate_class)
734                                 return FALSE;
735                 }
736         }
737         return TRUE;
738 }
739
740 static MonoGenericParam*
741 verifier_get_generic_param_from_type (VerifyContext *ctx, MonoType *type)
742 {
743         MonoGenericContainer *gc;
744         MonoMethod *method = ctx->method;
745         int num;
746
747         num = mono_type_get_generic_param_num (type);
748
749         if (type->type == MONO_TYPE_VAR) {
750                 MonoClass *gtd = method->klass;
751                 if (gtd->generic_class)
752                         gtd = gtd->generic_class->container_class;
753                 gc = gtd->generic_container;
754         } else { //MVAR
755                 MonoMethod *gmd = method;
756                 if (method->is_inflated)
757                         gmd = ((MonoMethodInflated*)method)->declaring;
758                 gc = mono_method_get_generic_container (gmd);
759         }
760         if (!gc)
761                 return NULL;
762         return mono_generic_container_get_param (gc, num);
763 }
764
765
766
767 /*
768  * Verify if @type is valid for the given @ctx verification context.
769  * this function checks for VAR and MVAR types that are invalid under the current verifier,
770  * This means that it either 
771  */
772 static gboolean
773 is_valid_type_in_context (VerifyContext *ctx, MonoType *type)
774 {
775         return mono_type_is_valid_type_in_context (type, ctx->generic_context);
776 }
777
778 static gboolean
779 is_valid_generic_instantiation_in_context (VerifyContext *ctx, MonoGenericInst *ginst, gboolean check_gtd)
780 {
781         int i;
782         for (i = 0; i < ginst->type_argc; ++i) {
783                 MonoType *type = ginst->type_argv [i];
784                         
785                 if (!mono_type_is_valid_type_in_context_full (type, ctx->generic_context, TRUE))
786                         return FALSE;
787         }
788         return TRUE;
789 }
790
791 static gboolean
792 generic_arguments_respect_constraints (VerifyContext *ctx, MonoGenericContainer *gc, MonoGenericContext *context, MonoGenericInst *ginst)
793 {
794         int i;
795         for (i = 0; i < ginst->type_argc; ++i) {
796                 MonoType *type = ginst->type_argv [i];
797                 MonoGenericParam *target = mono_generic_container_get_param (gc, i);
798                 MonoGenericParam *candidate;
799                 MonoClass *candidate_class;
800
801                 if (!mono_type_is_generic_argument (type))
802                         continue;
803
804                 if (!is_valid_type_in_context (ctx, type))
805                         return FALSE;
806
807                 candidate = verifier_get_generic_param_from_type (ctx, type);
808                 candidate_class = mono_class_from_mono_type (type);
809
810                 if (!mono_generic_param_is_constraint_compatible (ctx, target, candidate, candidate_class, context))
811                         return FALSE;
812         }
813         return TRUE;
814 }
815
816 static gboolean
817 mono_method_repect_method_constraints (VerifyContext *ctx, MonoMethod *method)
818 {
819         MonoMethodInflated *gmethod = (MonoMethodInflated *)method;
820         MonoGenericInst *ginst = gmethod->context.method_inst;
821         MonoGenericContainer *gc = mono_method_get_generic_container (gmethod->declaring);
822         return !gc || generic_arguments_respect_constraints (ctx, gc, &gmethod->context, ginst);
823 }
824
825 static gboolean
826 mono_class_repect_method_constraints (VerifyContext *ctx, MonoClass *klass)
827 {
828         MonoGenericClass *gklass = klass->generic_class;
829         MonoGenericInst *ginst = gklass->context.class_inst;
830         MonoGenericContainer *gc = gklass->container_class->generic_container;
831         return !gc || generic_arguments_respect_constraints (ctx, gc, &gklass->context, ginst);
832 }
833
834 static gboolean
835 mono_method_is_valid_generic_instantiation (VerifyContext *ctx, MonoMethod *method)
836 {
837         MonoMethodInflated *gmethod = (MonoMethodInflated *)method;
838         MonoGenericInst *ginst = gmethod->context.method_inst;
839         MonoGenericContainer *gc = mono_method_get_generic_container (gmethod->declaring);
840         if (!gc) /*non-generic inflated method - it's part of a generic type  */
841                 return TRUE;
842         if (ctx && !is_valid_generic_instantiation_in_context (ctx, ginst, TRUE))
843                 return FALSE;
844         return is_valid_generic_instantiation (gc, &gmethod->context, ginst);
845
846 }
847
848 static gboolean
849 mono_class_is_valid_generic_instantiation (VerifyContext *ctx, MonoClass *klass)
850 {
851         MonoGenericClass *gklass = klass->generic_class;
852         MonoGenericInst *ginst = gklass->context.class_inst;
853         MonoGenericContainer *gc = gklass->container_class->generic_container;
854         if (ctx && !is_valid_generic_instantiation_in_context (ctx, ginst, TRUE))
855                 return FALSE;
856         return is_valid_generic_instantiation (gc, &gklass->context, ginst);
857 }
858
859 static gboolean
860 mono_type_is_valid_in_context (VerifyContext *ctx, MonoType *type)
861 {
862         MonoClass *klass;
863
864         if (type == NULL) {
865                 ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid null type at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
866                 return FALSE;
867         }
868
869         if (!is_valid_type_in_context (ctx, type)) {
870                 char *str = mono_type_full_name (type);
871                 ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic type (%s%s) (argument out of range or %s is not generic) at 0x%04x",
872                         str [0] == '!' ? "" : type->type == MONO_TYPE_VAR ? "!" : "!!",
873                         str,
874                         type->type == MONO_TYPE_VAR ? "class" : "method",
875                         ctx->ip_offset),
876                         MONO_EXCEPTION_BAD_IMAGE);              
877                 g_free (str);
878                 return FALSE;
879         }
880
881         klass = mono_class_from_mono_type (type);
882         mono_class_init (klass);
883         if (mono_loader_get_last_error () || klass->exception_type != MONO_EXCEPTION_NONE) {
884                 if (klass->generic_class && !mono_class_is_valid_generic_instantiation (NULL, klass))
885                         ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic instantiation of type %s.%s at 0x%04x", klass->name_space, klass->name, ctx->ip_offset), MONO_EXCEPTION_TYPE_LOAD);
886                 else
887                         ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Could not load type %s.%s at 0x%04x", klass->name_space, klass->name, ctx->ip_offset), MONO_EXCEPTION_TYPE_LOAD);
888                 mono_loader_clear_error ();
889                 return FALSE;
890         }
891
892         if (klass->generic_class && klass->generic_class->container_class->exception_type != MONO_EXCEPTION_NONE) {
893                 ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Could not load type %s.%s at 0x%04x", klass->name_space, klass->name, ctx->ip_offset), MONO_EXCEPTION_TYPE_LOAD);
894                 return FALSE;
895         }
896
897         if (!klass->generic_class)
898                 return TRUE;
899
900         if (!mono_class_is_valid_generic_instantiation (ctx, klass)) {
901                 ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic type instantiation of type %s.%s at 0x%04x", klass->name_space, klass->name, ctx->ip_offset), MONO_EXCEPTION_TYPE_LOAD);
902                 return FALSE;
903         }
904
905         if (!mono_class_repect_method_constraints (ctx, klass)) {
906                 ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic type instantiation of type %s.%s (generic args don't respect target's constraints) at 0x%04x", klass->name_space, klass->name, ctx->ip_offset), MONO_EXCEPTION_TYPE_LOAD);
907                 return FALSE;
908         }
909
910         return TRUE;
911 }
912
913 static verify_result_t
914 mono_method_is_valid_in_context (VerifyContext *ctx, MonoMethod *method)
915 {
916         if (!mono_type_is_valid_in_context (ctx, &method->klass->byval_arg))
917                 return RESULT_INVALID;
918
919         if (!method->is_inflated)
920                 return RESULT_VALID;
921
922         if (!mono_method_is_valid_generic_instantiation (ctx, method)) {
923                 ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic method instantiation of method %s.%s::%s at 0x%04x", method->klass->name_space, method->klass->name, method->name, ctx->ip_offset), MONO_EXCEPTION_UNVERIFIABLE_IL);
924                 return RESULT_INVALID;
925         }
926
927         if (!mono_method_repect_method_constraints (ctx, method)) {
928                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid generic method instantiation of method %s.%s::%s (generic args don't respect target's constraints) at 0x%04x", method->klass->name_space, method->klass->name, method->name, ctx->ip_offset));
929                 return RESULT_UNVERIFIABLE;
930         }
931         return RESULT_VALID;
932 }
933
934         
935 static MonoClassField*
936 verifier_load_field (VerifyContext *ctx, int token, MonoClass **out_klass, const char *opcode) {
937         MonoClassField *field;
938         MonoClass *klass = NULL;
939
940         if (ctx->method->wrapper_type != MONO_WRAPPER_NONE) {
941                 field = mono_method_get_wrapper_data (ctx->method, (guint32)token);
942                 klass = field ? field->parent : NULL;
943         } else {
944                 if (!IS_FIELD_DEF_OR_REF (token) || !token_bounds_check (ctx->image, token)) {
945                         ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid field token 0x%08x for %s at 0x%04x", token, opcode, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
946                         return NULL;
947                 }
948
949                 field = mono_field_from_token (ctx->image, token, &klass, ctx->generic_context);
950         }
951
952         if (!field || !field->parent || !klass || mono_loader_get_last_error ()) {
953                 ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Cannot load field from token 0x%08x for %s at 0x%04x", token, opcode, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
954                 mono_loader_clear_error ();
955                 return NULL;
956         }
957
958         if (!mono_type_is_valid_in_context (ctx, &klass->byval_arg))
959                 return NULL;
960
961         if (mono_field_get_flags (field) & FIELD_ATTRIBUTE_LITERAL) {
962                 char *type_name = mono_type_get_full_name (field->parent);
963                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Cannot reference literal field %s::%s at 0x%04x", type_name, field->name, ctx->ip_offset));
964                 g_free (type_name);
965                 return NULL;
966         }
967
968         *out_klass = klass;
969         return field;
970 }
971
972 static MonoMethod*
973 verifier_load_method (VerifyContext *ctx, int token, const char *opcode) {
974         MonoMethod* method;
975
976         if (ctx->method->wrapper_type != MONO_WRAPPER_NONE) {
977                 method = mono_method_get_wrapper_data (ctx->method, (guint32)token);
978         } else {
979                 if (!IS_METHOD_DEF_OR_REF_OR_SPEC (token) || !token_bounds_check (ctx->image, token)) {
980                         ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid method token 0x%08x for %s at 0x%04x", token, opcode, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
981                         return NULL;
982                 }
983
984                 method = mono_get_method_full (ctx->image, token, NULL, ctx->generic_context);
985         }
986
987         if (!method || mono_loader_get_last_error ()) {
988                 ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Cannot load method from token 0x%08x for %s at 0x%04x", token, opcode, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
989                 mono_loader_clear_error ();
990                 return NULL;
991         }
992         
993         if (mono_method_is_valid_in_context (ctx, method) == RESULT_INVALID)
994                 return NULL;
995
996         return method;
997 }
998
999 static MonoType*
1000 verifier_load_type (VerifyContext *ctx, int token, const char *opcode) {
1001         MonoType* type;
1002         
1003         if (ctx->method->wrapper_type != MONO_WRAPPER_NONE) {
1004                 MonoClass *class = mono_method_get_wrapper_data (ctx->method, (guint32)token);
1005                 type = class ? &class->byval_arg : NULL;
1006         } else {
1007                 if (!IS_TYPE_DEF_OR_REF_OR_SPEC (token) || !token_bounds_check (ctx->image, token)) {
1008                         ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid type token 0x%08x at 0x%04x", token, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
1009                         return NULL;
1010                 }
1011                 type = mono_type_get_full (ctx->image, token, ctx->generic_context);
1012         }
1013
1014         if (!type || mono_loader_get_last_error ()) {
1015                 ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Cannot load type from token 0x%08x for %s at 0x%04x", token, opcode, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
1016                 mono_loader_clear_error ();
1017                 return NULL;
1018         }
1019
1020         if (!mono_type_is_valid_in_context (ctx, type))
1021                 return NULL;
1022
1023         return type;
1024 }
1025
1026
1027 /* stack_slot_get_type:
1028  * 
1029  * Returns the stack type of @value. This value includes POINTER_MASK.
1030  * 
1031  * Use this function to checks that account for a managed pointer.
1032  */
1033 static gint32
1034 stack_slot_get_type (ILStackDesc *value)
1035 {
1036         return value->stype & RAW_TYPE_MASK;
1037 }
1038
1039 /* stack_slot_get_underlying_type:
1040  * 
1041  * Returns the stack type of @value. This value does not include POINTER_MASK.
1042  * 
1043  * Use this function is cases where the fact that the value could be a managed pointer is
1044  * irrelevant. For example, field load doesn't care about this fact of type on stack.
1045  */
1046 static gint32
1047 stack_slot_get_underlying_type (ILStackDesc *value)
1048 {
1049         return value->stype & TYPE_MASK;
1050 }
1051
1052 /* stack_slot_is_managed_pointer:
1053  * 
1054  * Returns TRUE is @value is a managed pointer.
1055  */
1056 static gboolean
1057 stack_slot_is_managed_pointer (ILStackDesc *value)
1058 {
1059         return (value->stype & POINTER_MASK) == POINTER_MASK;
1060 }
1061
1062 /* stack_slot_is_managed_mutability_pointer:
1063  * 
1064  * Returns TRUE is @value is a managed mutability pointer.
1065  */
1066 static G_GNUC_UNUSED gboolean
1067 stack_slot_is_managed_mutability_pointer (ILStackDesc *value)
1068 {
1069         return (value->stype & CMMP_MASK) == CMMP_MASK;
1070 }
1071
1072 /* stack_slot_is_null_literal:
1073  * 
1074  * Returns TRUE is @value is the null literal.
1075  */
1076 static gboolean
1077 stack_slot_is_null_literal (ILStackDesc *value)
1078 {
1079         return (value->stype & NULL_LITERAL_MASK) == NULL_LITERAL_MASK;
1080 }
1081
1082
1083 /* stack_slot_is_this_pointer:
1084  * 
1085  * Returns TRUE is @value is the this literal
1086  */
1087 static gboolean
1088 stack_slot_is_this_pointer (ILStackDesc *value)
1089 {
1090         return (value->stype & THIS_POINTER_MASK) == THIS_POINTER_MASK;
1091 }
1092
1093 /* stack_slot_is_boxed_value:
1094  * 
1095  * Returns TRUE is @value is a boxed value
1096  */
1097 static gboolean
1098 stack_slot_is_boxed_value (ILStackDesc *value)
1099 {
1100         return (value->stype & BOXED_MASK) == BOXED_MASK;
1101 }
1102
1103 static const char *
1104 stack_slot_get_name (ILStackDesc *value)
1105 {
1106         return type_names [value->stype & TYPE_MASK];
1107 }
1108
1109 #define APPEND_WITH_PREDICATE(PRED,NAME) do {\
1110         if (PRED (value)) { \
1111                 if (!first) \
1112                         g_string_append (str, ", "); \
1113                 g_string_append (str, NAME); \
1114                 first = FALSE; \
1115         } } while (0)
1116
1117 static char*
1118 stack_slot_stack_type_full_name (ILStackDesc *value)
1119 {
1120         GString *str = g_string_new ("");
1121         char *result;
1122         gboolean has_pred = FALSE, first = TRUE;
1123
1124         if ((value->stype & TYPE_MASK) != value->stype) {
1125                 g_string_append(str, "[");
1126                 APPEND_WITH_PREDICATE (stack_slot_is_this_pointer, "this");
1127                 APPEND_WITH_PREDICATE (stack_slot_is_boxed_value, "boxed");
1128                 APPEND_WITH_PREDICATE (stack_slot_is_null_literal, "null");
1129                 APPEND_WITH_PREDICATE (stack_slot_is_managed_mutability_pointer, "cmmp");
1130                 APPEND_WITH_PREDICATE (stack_slot_is_managed_pointer, "mp");
1131                 has_pred = TRUE;
1132         }
1133
1134         if (mono_type_is_generic_argument (value->type) && !stack_slot_is_boxed_value (value)) {
1135                 if (!has_pred)
1136                         g_string_append(str, "[");
1137                 if (!first)
1138                         g_string_append (str, ", ");
1139                 g_string_append (str, "unboxed");
1140                 has_pred = TRUE;
1141         }
1142
1143         if (has_pred)
1144                 g_string_append(str, "] ");
1145
1146         g_string_append (str, stack_slot_get_name (value));
1147         result = str->str;
1148         g_string_free (str, FALSE);
1149         return result;
1150 }
1151
1152 static char*
1153 stack_slot_full_name (ILStackDesc *value)
1154 {
1155         char *type_name = mono_type_full_name (value->type);
1156         char *stack_name = stack_slot_stack_type_full_name (value);
1157         char *res = g_strdup_printf ("%s (%s)", type_name, stack_name);
1158         g_free (type_name);
1159         g_free (stack_name);
1160         return res;
1161 }
1162
1163 //////////////////////////////////////////////////////////////////
1164 void
1165 mono_free_verify_list (GSList *list)
1166 {
1167         MonoVerifyInfoExtended *info;
1168         GSList *tmp;
1169
1170         for (tmp = list; tmp; tmp = tmp->next) {
1171                 info = tmp->data;
1172                 g_free (info->info.message);
1173                 g_free (info);
1174         }
1175         g_slist_free (list);
1176 }
1177
1178 #define ADD_ERROR(list,msg)     \
1179         do {    \
1180                 MonoVerifyInfoExtended *vinfo = g_new (MonoVerifyInfoExtended, 1);      \
1181                 vinfo->info.status = MONO_VERIFY_ERROR; \
1182                 vinfo->info.message = (msg);    \
1183                 (list) = g_slist_prepend ((list), vinfo);       \
1184         } while (0)
1185
1186 #define ADD_WARN(list,code,msg) \
1187         do {    \
1188                 MonoVerifyInfoExtended *vinfo = g_new (MonoVerifyInfoExtended, 1);      \
1189                 vinfo->info.status = (code);    \
1190                 vinfo->info.message = (msg);    \
1191                 (list) = g_slist_prepend ((list), vinfo);       \
1192         } while (0)
1193
1194 #define ADD_INVALID(list,msg)   \
1195         do {    \
1196                 MonoVerifyInfoExtended *vinfo = g_new (MonoVerifyInfoExtended, 1);      \
1197                 vinfo->status = MONO_VERIFY_ERROR;      \
1198                 vinfo->message = (msg); \
1199                 (list) = g_slist_prepend ((list), vinfo);       \
1200                 /*G_BREAKPOINT ();*/    \
1201                 goto invalid_cil;       \
1202         } while (0)
1203
1204 #define CHECK_STACK_UNDERFLOW(num)      \
1205         do {    \
1206                 if (cur_stack < (num))  \
1207                         ADD_INVALID (list, g_strdup_printf ("Stack underflow at 0x%04x (%d items instead of %d)", ip_offset, cur_stack, (num)));        \
1208         } while (0)
1209
1210 #define CHECK_STACK_OVERFLOW()  \
1211         do {    \
1212                 if (cur_stack >= max_stack)     \
1213                         ADD_INVALID (list, g_strdup_printf ("Maxstack exceeded at 0x%04x", ip_offset)); \
1214         } while (0)
1215
1216
1217 static int
1218 in_any_block (MonoMethodHeader *header, guint offset)
1219 {
1220         int i;
1221         MonoExceptionClause *clause;
1222
1223         for (i = 0; i < header->num_clauses; ++i) {
1224                 clause = &header->clauses [i];
1225                 if (MONO_OFFSET_IN_CLAUSE (clause, offset))
1226                         return 1;
1227                 if (MONO_OFFSET_IN_HANDLER (clause, offset))
1228                         return 1;
1229                 if (MONO_OFFSET_IN_FILTER (clause, offset))
1230                         return 1;
1231         }
1232         return 0;
1233 }
1234
1235 /*
1236  * in_any_exception_block:
1237  * 
1238  * Returns TRUE is @offset is part of any exception clause (filter, handler, catch, finally or fault).
1239  */
1240 static gboolean
1241 in_any_exception_block (MonoMethodHeader *header, guint offset)
1242 {
1243         int i;
1244         MonoExceptionClause *clause;
1245
1246         for (i = 0; i < header->num_clauses; ++i) {
1247                 clause = &header->clauses [i];
1248                 if (MONO_OFFSET_IN_HANDLER (clause, offset))
1249                         return TRUE;
1250                 if (MONO_OFFSET_IN_FILTER (clause, offset))
1251                         return TRUE;
1252         }
1253         return FALSE;
1254 }
1255
1256 /*
1257  * is_valid_branch_instruction:
1258  *
1259  * Verify if it's valid to perform a branch from @offset to @target.
1260  * This should be used with br and brtrue/false.
1261  * It returns 0 if valid, 1 for unverifiable and 2 for invalid.
1262  * The major difference from other similiar functions is that branching into a
1263  * finally/fault block is invalid instead of just unverifiable.  
1264  */
1265 static int
1266 is_valid_branch_instruction (MonoMethodHeader *header, guint offset, guint target)
1267 {
1268         int i;
1269         MonoExceptionClause *clause;
1270
1271         for (i = 0; i < header->num_clauses; ++i) {
1272                 clause = &header->clauses [i];
1273                 /*branching into a finally block is invalid*/
1274                 if ((clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY || clause->flags == MONO_EXCEPTION_CLAUSE_FAULT) &&
1275                         !MONO_OFFSET_IN_HANDLER (clause, offset) &&
1276                         MONO_OFFSET_IN_HANDLER (clause, target))
1277                         return 2;
1278
1279                 if (clause->try_offset != target && (MONO_OFFSET_IN_CLAUSE (clause, offset) ^ MONO_OFFSET_IN_CLAUSE (clause, target)))
1280                         return 1;
1281                 if (MONO_OFFSET_IN_HANDLER (clause, offset) ^ MONO_OFFSET_IN_HANDLER (clause, target))
1282                         return 1;
1283                 if (MONO_OFFSET_IN_FILTER (clause, offset) ^ MONO_OFFSET_IN_FILTER (clause, target))
1284                         return 1;
1285         }
1286         return 0;
1287 }
1288
1289 /*
1290  * is_valid_cmp_branch_instruction:
1291  * 
1292  * Verify if it's valid to perform a branch from @offset to @target.
1293  * This should be used with binary comparison branching instruction, like beq, bge and similars.
1294  * It returns 0 if valid, 1 for unverifiable and 2 for invalid.
1295  * 
1296  * The major differences from other similar functions are that most errors lead to invalid
1297  * code and only branching out of finally, filter or fault clauses is unverifiable. 
1298  */
1299 static int
1300 is_valid_cmp_branch_instruction (MonoMethodHeader *header, guint offset, guint target)
1301 {
1302         int i;
1303         MonoExceptionClause *clause;
1304
1305         for (i = 0; i < header->num_clauses; ++i) {
1306                 clause = &header->clauses [i];
1307                 /*branching out of a handler or finally*/
1308                 if (clause->flags != MONO_EXCEPTION_CLAUSE_NONE &&
1309                         MONO_OFFSET_IN_HANDLER (clause, offset) &&
1310                         !MONO_OFFSET_IN_HANDLER (clause, target))
1311                         return 1;
1312
1313                 if (clause->try_offset != target && (MONO_OFFSET_IN_CLAUSE (clause, offset) ^ MONO_OFFSET_IN_CLAUSE (clause, target)))
1314                         return 2;
1315                 if (MONO_OFFSET_IN_HANDLER (clause, offset) ^ MONO_OFFSET_IN_HANDLER (clause, target))
1316                         return 2;
1317                 if (MONO_OFFSET_IN_FILTER (clause, offset) ^ MONO_OFFSET_IN_FILTER (clause, target))
1318                         return 2;
1319         }
1320         return 0;
1321 }
1322
1323 /*
1324  * A leave can't escape a finally block 
1325  */
1326 static int
1327 is_correct_leave (MonoMethodHeader *header, guint offset, guint target)
1328 {
1329         int i;
1330         MonoExceptionClause *clause;
1331
1332         for (i = 0; i < header->num_clauses; ++i) {
1333                 clause = &header->clauses [i];
1334                 if (clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY && MONO_OFFSET_IN_HANDLER (clause, offset) && !MONO_OFFSET_IN_HANDLER (clause, target))
1335                         return 0;
1336                 if (MONO_OFFSET_IN_FILTER (clause, offset))
1337                         return 0;
1338         }
1339         return 1;
1340 }
1341
1342 /*
1343  * A rethrow can't happen outside of a catch handler.
1344  */
1345 static int
1346 is_correct_rethrow (MonoMethodHeader *header, guint offset)
1347 {
1348         int i;
1349         MonoExceptionClause *clause;
1350
1351         for (i = 0; i < header->num_clauses; ++i) {
1352                 clause = &header->clauses [i];
1353                 if (MONO_OFFSET_IN_HANDLER (clause, offset))
1354                         return 1;
1355                 if (MONO_OFFSET_IN_FILTER (clause, offset))
1356                         return 1;
1357         }
1358         return 0;
1359 }
1360
1361 /*
1362  * An endfinally can't happen outside of a finally/fault handler.
1363  */
1364 static int
1365 is_correct_endfinally (MonoMethodHeader *header, guint offset)
1366 {
1367         int i;
1368         MonoExceptionClause *clause;
1369
1370         for (i = 0; i < header->num_clauses; ++i) {
1371                 clause = &header->clauses [i];
1372                 if (MONO_OFFSET_IN_HANDLER (clause, offset) && (clause->flags == MONO_EXCEPTION_CLAUSE_FAULT || clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY))
1373                         return 1;
1374         }
1375         return 0;
1376 }
1377
1378
1379 /*
1380  * An endfilter can only happens inside a filter clause.
1381  * In non-strict mode filter is allowed inside the handler clause too
1382  */
1383 static MonoExceptionClause *
1384 is_correct_endfilter (VerifyContext *ctx, guint offset)
1385 {
1386         int i;
1387         MonoExceptionClause *clause;
1388
1389         for (i = 0; i < ctx->header->num_clauses; ++i) {
1390                 clause = &ctx->header->clauses [i];
1391                 if (clause->flags != MONO_EXCEPTION_CLAUSE_FILTER)
1392                         continue;
1393                 if (MONO_OFFSET_IN_FILTER (clause, offset))
1394                         return clause;
1395                 if (!IS_STRICT_MODE (ctx) && MONO_OFFSET_IN_HANDLER (clause, offset))
1396                         return clause;
1397         }
1398         return NULL;
1399 }
1400
1401
1402 /*
1403  * Non-strict endfilter can happens inside a try block or any handler block
1404  */
1405 static int
1406 is_unverifiable_endfilter (VerifyContext *ctx, guint offset)
1407 {
1408         int i;
1409         MonoExceptionClause *clause;
1410
1411         for (i = 0; i < ctx->header->num_clauses; ++i) {
1412                 clause = &ctx->header->clauses [i];
1413                 if (MONO_OFFSET_IN_CLAUSE (clause, offset))
1414                         return 1;
1415         }
1416         return 0;
1417 }
1418
1419 static gboolean
1420 is_valid_bool_arg (ILStackDesc *arg)
1421 {
1422         if (stack_slot_is_managed_pointer (arg) || stack_slot_is_boxed_value (arg) || stack_slot_is_null_literal (arg))
1423                 return TRUE;
1424
1425
1426         switch (stack_slot_get_underlying_type (arg)) {
1427         case TYPE_I4:
1428         case TYPE_I8:
1429         case TYPE_NATIVE_INT:
1430         case TYPE_PTR:
1431                 return TRUE;
1432         case TYPE_COMPLEX:
1433                 g_assert (arg->type);
1434                 switch (arg->type->type) {
1435                 case MONO_TYPE_CLASS:
1436                 case MONO_TYPE_STRING:
1437                 case MONO_TYPE_OBJECT:
1438                 case MONO_TYPE_SZARRAY:
1439                 case MONO_TYPE_ARRAY:
1440                 case MONO_TYPE_FNPTR:
1441                 case MONO_TYPE_PTR:
1442                         return TRUE;
1443                 case MONO_TYPE_GENERICINST:
1444                         /*We need to check if the container class
1445                          * of the generic type is a valuetype, iow:
1446                          * is it a "class Foo<T>" or a "struct Foo<T>"?
1447                          */
1448                         return !arg->type->data.generic_class->container_class->valuetype;
1449                 }
1450         default:
1451                 return FALSE;
1452         }
1453 }
1454
1455
1456 /*Type manipulation helper*/
1457
1458 /*Returns the byref version of the supplied MonoType*/
1459 static MonoType*
1460 mono_type_get_type_byref (MonoType *type)
1461 {
1462         if (type->byref)
1463                 return type;
1464         return &mono_class_from_mono_type (type)->this_arg;
1465 }
1466
1467
1468 /*Returns the byval version of the supplied MonoType*/
1469 static MonoType*
1470 mono_type_get_type_byval (MonoType *type)
1471 {
1472         if (!type->byref)
1473                 return type;
1474         return &mono_class_from_mono_type (type)->byval_arg;
1475 }
1476
1477 static MonoType*
1478 mono_type_from_stack_slot (ILStackDesc *slot)
1479 {
1480         if (stack_slot_is_managed_pointer (slot))
1481                 return mono_type_get_type_byref (slot->type);
1482         return slot->type;
1483 }
1484
1485 /*Stack manipulation code*/
1486
1487 static void
1488 ensure_stack_size (ILCodeDesc *stack, int required)
1489 {
1490         int new_size = 8;
1491         ILStackDesc *tmp;
1492
1493         if (required < stack->max_size)
1494                 return;
1495
1496         /* We don't have to worry about the exponential growth since stack_copy prune unused space */
1497         new_size = MAX (8, MAX (required, stack->max_size * 2));
1498
1499         g_assert (new_size >= stack->size);
1500         g_assert (new_size >= required);
1501
1502         tmp = g_new0 (ILStackDesc, new_size);
1503         MEM_ALLOC (sizeof (ILStackDesc) * new_size);
1504
1505         if (stack->stack) {
1506                 if (stack->size)
1507                         memcpy (tmp, stack->stack, stack->size * sizeof (ILStackDesc));
1508                 g_free (stack->stack);
1509                 MEM_FREE (sizeof (ILStackDesc) * stack->max_size);
1510         }
1511
1512         stack->stack = tmp;
1513         stack->max_size = new_size;
1514 }
1515
1516 static void
1517 stack_init (VerifyContext *ctx, ILCodeDesc *state) 
1518 {
1519         if (state->flags & IL_CODE_FLAG_STACK_INITED)
1520                 return;
1521         state->size = state->max_size = 0;
1522         state->flags |= IL_CODE_FLAG_STACK_INITED;
1523 }
1524
1525 static void
1526 stack_copy (ILCodeDesc *to, ILCodeDesc *from)
1527 {
1528         ensure_stack_size (to, from->size);
1529         to->size = from->size;
1530
1531         /*stack copy happens at merge points, which have small stacks*/
1532         if (from->size)
1533                 memcpy (to->stack, from->stack, sizeof (ILStackDesc) * from->size);
1534 }
1535
1536 static void
1537 copy_stack_value (ILStackDesc *to, ILStackDesc *from)
1538 {
1539         to->stype = from->stype;
1540         to->type = from->type;
1541         to->method = from->method;
1542 }
1543
1544 static int
1545 check_underflow (VerifyContext *ctx, int size)
1546 {
1547         if (ctx->eval.size < size) {
1548                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Stack underflow, required %d, but have %d at 0x%04x", size, ctx->eval.size, ctx->ip_offset));
1549                 return 0;
1550         }
1551         return 1;
1552 }
1553
1554 static int
1555 check_overflow (VerifyContext *ctx)
1556 {
1557         if (ctx->eval.size >= ctx->max_stack) {
1558                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Method doesn't have stack-depth %d at 0x%04x", ctx->eval.size + 1, ctx->ip_offset));
1559                 return 0;
1560         }
1561         return 1;
1562 }
1563
1564 /*This reject out PTR, FNPTR and TYPEDBYREF*/
1565 static gboolean
1566 check_unmanaged_pointer (VerifyContext *ctx, ILStackDesc *value)
1567 {
1568         if (stack_slot_get_type (value) == TYPE_PTR) {
1569                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Unmanaged pointer is not a verifiable type at 0x%04x", ctx->ip_offset));
1570                 return 0;
1571         }
1572         return 1;
1573 }
1574
1575 /*TODO verify if MONO_TYPE_TYPEDBYREF is not allowed here as well.*/
1576 static gboolean
1577 check_unverifiable_type (VerifyContext *ctx, MonoType *type)
1578 {
1579         if (type->type == MONO_TYPE_PTR || type->type == MONO_TYPE_FNPTR) {
1580                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Unmanaged pointer is not a verifiable type at 0x%04x", ctx->ip_offset));
1581                 return 0;
1582         }
1583         return 1;
1584 }
1585
1586 static ILStackDesc *
1587 stack_push (VerifyContext *ctx)
1588 {
1589         g_assert (ctx->eval.size < ctx->max_stack);
1590         g_assert (ctx->eval.size <= ctx->eval.max_size);
1591
1592         ensure_stack_size (&ctx->eval, ctx->eval.size + 1);
1593
1594         return & ctx->eval.stack [ctx->eval.size++];
1595 }
1596
1597 static ILStackDesc *
1598 stack_push_val (VerifyContext *ctx, int stype, MonoType *type)
1599 {
1600         ILStackDesc *top = stack_push (ctx);
1601         top->stype = stype;
1602         top->type = type;
1603         return top;
1604 }
1605
1606 static ILStackDesc *
1607 stack_pop (VerifyContext *ctx)
1608 {
1609         ILStackDesc *ret;
1610         g_assert (ctx->eval.size > 0);  
1611         ret = ctx->eval.stack + --ctx->eval.size;
1612         if ((ret->stype & UNINIT_THIS_MASK) == UNINIT_THIS_MASK)
1613                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Found use of uninitialized 'this ptr' ref at 0x%04x", ctx->ip_offset));
1614         return ret;
1615 }
1616
1617 /* This function allows to safely pop an unititialized this ptr from
1618  * the eval stack without marking the method as unverifiable. 
1619  */
1620 static ILStackDesc *
1621 stack_pop_safe (VerifyContext *ctx)
1622 {
1623         g_assert (ctx->eval.size > 0);
1624         return ctx->eval.stack + --ctx->eval.size;
1625 }
1626
1627 /*Positive number distance from stack top. [0] is stack top, [1] is the one below*/
1628 static ILStackDesc*
1629 stack_peek (VerifyContext *ctx, int distance)
1630 {
1631         g_assert (ctx->eval.size - distance > 0);
1632         return ctx->eval.stack + (ctx->eval.size - 1 - distance);
1633 }
1634
1635 static ILStackDesc *
1636 stack_push_stack_val (VerifyContext *ctx, ILStackDesc *value)
1637 {
1638         ILStackDesc *top = stack_push (ctx);
1639         copy_stack_value (top, value);
1640         return top;
1641 }
1642
1643 /* Returns the MonoType associated with the token, or NULL if it is invalid.
1644  * 
1645  * A boxable type can be either a reference or value type, but cannot be a byref type or an unmanaged pointer   
1646  * */
1647 static MonoType*
1648 get_boxable_mono_type (VerifyContext* ctx, int token, const char *opcode)
1649 {
1650         MonoType *type;
1651         MonoClass *class;
1652
1653         if (!(type = verifier_load_type (ctx, token, opcode)))
1654                 return NULL;
1655
1656         if (type->byref && type->type != MONO_TYPE_TYPEDBYREF) {
1657                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid use of byref type for %s at 0x%04x", opcode, ctx->ip_offset));
1658                 return NULL;
1659         }
1660
1661         if (type->type == MONO_TYPE_VOID) {
1662                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid use of void type for %s at 0x%04x", opcode, ctx->ip_offset));
1663                 return NULL;
1664         }
1665
1666         if (type->type == MONO_TYPE_TYPEDBYREF)
1667                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid use of typedbyref for %s at 0x%04x", opcode, ctx->ip_offset));
1668
1669         if (!(class = mono_class_from_mono_type (type)))
1670                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Could not retrieve type token for %s at 0x%04x", opcode, ctx->ip_offset));
1671
1672         if (class->generic_container && type->type != MONO_TYPE_GENERICINST)
1673                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use the generic type definition in a boxable type position for %s at 0x%04x", opcode, ctx->ip_offset));      
1674
1675         check_unverifiable_type (ctx, type);
1676         return type;
1677 }
1678
1679
1680 /*operation result tables */
1681
1682 static const unsigned char bin_op_table [TYPE_MAX][TYPE_MAX] = {
1683         {TYPE_I4, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1684         {TYPE_INV, TYPE_I8, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1685         {TYPE_NATIVE_INT, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1686         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_R8, TYPE_INV, TYPE_INV},
1687         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1688         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1689 };
1690
1691 static const unsigned char add_table [TYPE_MAX][TYPE_MAX] = {
1692         {TYPE_I4, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV},
1693         {TYPE_INV, TYPE_I8, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1694         {TYPE_NATIVE_INT, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV},
1695         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_R8, TYPE_INV, TYPE_INV},
1696         {TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV, TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV, TYPE_INV, TYPE_INV},
1697         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1698 };
1699
1700 static const unsigned char sub_table [TYPE_MAX][TYPE_MAX] = {
1701         {TYPE_I4, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1702         {TYPE_INV, TYPE_I8, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1703         {TYPE_NATIVE_INT, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1704         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_R8, TYPE_INV, TYPE_INV},
1705         {TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV, TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV, TYPE_NATIVE_INT | NON_VERIFIABLE_RESULT, TYPE_INV},
1706         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1707 };
1708
1709 static const unsigned char int_bin_op_table [TYPE_MAX][TYPE_MAX] = {
1710         {TYPE_I4, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1711         {TYPE_INV, TYPE_I8, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1712         {TYPE_NATIVE_INT, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1713         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1714         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1715         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1716 };
1717
1718 static const unsigned char shift_op_table [TYPE_MAX][TYPE_MAX] = {
1719         {TYPE_I4, TYPE_INV, TYPE_I4, TYPE_INV, TYPE_INV, TYPE_INV},
1720         {TYPE_I8, TYPE_INV, TYPE_I8, TYPE_INV, TYPE_INV, TYPE_INV},
1721         {TYPE_NATIVE_INT, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1722         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1723         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1724         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1725 };
1726
1727 static const unsigned char cmp_br_op [TYPE_MAX][TYPE_MAX] = {
1728         {TYPE_I4, TYPE_INV, TYPE_I4, TYPE_INV, TYPE_INV, TYPE_INV},
1729         {TYPE_INV, TYPE_I4, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1730         {TYPE_I4, TYPE_INV, TYPE_I4, TYPE_INV, TYPE_INV, TYPE_INV},
1731         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_I4, TYPE_INV, TYPE_INV},
1732         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_I4, TYPE_INV},
1733         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1734 };
1735
1736 static const unsigned char cmp_br_eq_op [TYPE_MAX][TYPE_MAX] = {
1737         {TYPE_I4, TYPE_INV, TYPE_I4, TYPE_INV, TYPE_INV, TYPE_INV},
1738         {TYPE_INV, TYPE_I4, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1739         {TYPE_I4, TYPE_INV, TYPE_I4, TYPE_INV, TYPE_I4 | NON_VERIFIABLE_RESULT, TYPE_INV},
1740         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_I4, TYPE_INV, TYPE_INV},
1741         {TYPE_INV, TYPE_INV, TYPE_I4 | NON_VERIFIABLE_RESULT, TYPE_INV, TYPE_I4, TYPE_INV},
1742         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_I4},
1743 };
1744
1745 static const unsigned char add_ovf_un_table [TYPE_MAX][TYPE_MAX] = {
1746         {TYPE_I4, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV},
1747         {TYPE_INV, TYPE_I8, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1748         {TYPE_NATIVE_INT, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV},
1749         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1750         {TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV, TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV, TYPE_INV, TYPE_INV},
1751         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1752 };
1753
1754 static const unsigned char sub_ovf_un_table [TYPE_MAX][TYPE_MAX] = {
1755         {TYPE_I4, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1756         {TYPE_INV, TYPE_I8, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1757         {TYPE_NATIVE_INT, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1758         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1759         {TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV, TYPE_PTR | NON_VERIFIABLE_RESULT, TYPE_INV, TYPE_NATIVE_INT | NON_VERIFIABLE_RESULT, TYPE_INV},
1760         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1761 };
1762
1763 static const unsigned char bin_ovf_table [TYPE_MAX][TYPE_MAX] = {
1764         {TYPE_I4, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1765         {TYPE_INV, TYPE_I8, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1766         {TYPE_NATIVE_INT, TYPE_INV, TYPE_NATIVE_INT, TYPE_INV, TYPE_INV, TYPE_INV},
1767         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1768         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1769         {TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV, TYPE_INV},
1770 };
1771
1772 #ifdef MONO_VERIFIER_DEBUG
1773
1774 /*debug helpers */
1775 static void
1776 dump_stack_value (ILStackDesc *value)
1777 {
1778         printf ("[(%x)(%x)", value->type->type, value->stype);
1779
1780         if (stack_slot_is_this_pointer (value))
1781                 printf ("[this] ");
1782
1783         if (stack_slot_is_boxed_value (value))
1784                 printf ("[boxed] ");
1785
1786         if (stack_slot_is_null_literal (value))
1787                 printf ("[null] ");
1788
1789         if (stack_slot_is_managed_mutability_pointer (value))
1790                 printf ("Controled Mutability MP: ");
1791
1792         if (stack_slot_is_managed_pointer (value))
1793                 printf ("Managed Pointer to: ");
1794
1795         switch (stack_slot_get_underlying_type (value)) {
1796                 case TYPE_INV:
1797                         printf ("invalid type]"); 
1798                         return;
1799                 case TYPE_I4:
1800                         printf ("int32]"); 
1801                         return;
1802                 case TYPE_I8:
1803                         printf ("int64]"); 
1804                         return;
1805                 case TYPE_NATIVE_INT:
1806                         printf ("native int]"); 
1807                         return;
1808                 case TYPE_R8:
1809                         printf ("float64]"); 
1810                         return;
1811                 case TYPE_PTR:
1812                         printf ("unmanaged pointer]"); 
1813                         return;
1814                 case TYPE_COMPLEX:
1815                         switch (value->type->type) {
1816                         case MONO_TYPE_CLASS:
1817                         case MONO_TYPE_VALUETYPE:
1818                                 printf ("complex] (%s)", value->type->data.klass->name);
1819                                 return;
1820                         case MONO_TYPE_STRING:
1821                                 printf ("complex] (string)");
1822                                 return;
1823                         case MONO_TYPE_OBJECT:
1824                                 printf ("complex] (object)");
1825                                 return;
1826                         case MONO_TYPE_SZARRAY:
1827                                 printf ("complex] (%s [])", value->type->data.klass->name);
1828                                 return;
1829                         case MONO_TYPE_ARRAY:
1830                                 printf ("complex] (%s [%d %d %d])",
1831                                         value->type->data.array->eklass->name,
1832                                         value->type->data.array->rank,
1833                                         value->type->data.array->numsizes,
1834                                         value->type->data.array->numlobounds);
1835                                 return;
1836                         case MONO_TYPE_GENERICINST:
1837                                 printf ("complex] (inst of %s )", value->type->data.generic_class->container_class->name);
1838                                 return;
1839                         case MONO_TYPE_VAR:
1840                                 printf ("complex] (type generic param !%d - %s) ", value->type->data.generic_param->num, mono_generic_param_info (value->type->data.generic_param)->name);
1841                                 return;
1842                         case MONO_TYPE_MVAR:
1843                                 printf ("complex] (method generic param !!%d - %s) ", value->type->data.generic_param->num, mono_generic_param_info (value->type->data.generic_param)->name);
1844                                 return;
1845                         default: {
1846                                 //should be a boxed value 
1847                                 char * name = mono_type_full_name (value->type);
1848                                 printf ("complex] %s", name);
1849                                 g_free (name);
1850                                 return;
1851                                 }
1852                         }
1853                 default:
1854                         printf ("unknown stack %x type]\n", value->stype);
1855                         g_assert_not_reached ();
1856         }
1857 }
1858
1859 static void
1860 dump_stack_state (ILCodeDesc *state) 
1861 {
1862         int i;
1863
1864         printf ("(%d) ", state->size);
1865         for (i = 0; i < state->size; ++i)
1866                 dump_stack_value (state->stack + i);
1867         printf ("\n");
1868 }
1869 #endif
1870
1871 /*Returns TRUE if candidate array type can be assigned to target.
1872  *Both parameters MUST be of type MONO_TYPE_ARRAY (target->type == MONO_TYPE_ARRAY)
1873  */
1874 static gboolean
1875 is_array_type_compatible (MonoType *target, MonoType *candidate)
1876 {
1877         MonoArrayType *left = target->data.array;
1878         MonoArrayType *right = candidate->data.array;
1879
1880         g_assert (target->type == MONO_TYPE_ARRAY);
1881         g_assert (candidate->type == MONO_TYPE_ARRAY);
1882
1883         if (left->rank != right->rank)
1884                 return FALSE;
1885
1886         return verifier_class_is_assignable_from (left->eklass, right->eklass);
1887 }
1888
1889 static int
1890 get_stack_type (MonoType *type)
1891 {
1892         int mask = 0;
1893         int type_kind = type->type;
1894         if (type->byref)
1895                 mask = POINTER_MASK;
1896         /*TODO handle CMMP_MASK */
1897
1898 handle_enum:
1899         switch (type_kind) {
1900         case MONO_TYPE_I1:
1901         case MONO_TYPE_U1:
1902         case MONO_TYPE_BOOLEAN:
1903         case MONO_TYPE_I2:
1904         case MONO_TYPE_U2:
1905         case MONO_TYPE_CHAR:
1906         case MONO_TYPE_I4:
1907         case MONO_TYPE_U4:
1908                 return TYPE_I4 | mask;
1909
1910         case MONO_TYPE_I:
1911         case MONO_TYPE_U:
1912                 return TYPE_NATIVE_INT | mask;
1913
1914         /* FIXME: the spec says that you cannot have a pointer to method pointer, do we need to check this here? */ 
1915         case MONO_TYPE_FNPTR:
1916         case MONO_TYPE_PTR:
1917         case MONO_TYPE_TYPEDBYREF:
1918                 return TYPE_PTR | mask;
1919
1920         case MONO_TYPE_VAR:
1921         case MONO_TYPE_MVAR:
1922
1923         case MONO_TYPE_CLASS:
1924         case MONO_TYPE_STRING:
1925         case MONO_TYPE_OBJECT:
1926         case MONO_TYPE_SZARRAY:
1927         case MONO_TYPE_ARRAY:
1928                 return TYPE_COMPLEX | mask;
1929
1930         case MONO_TYPE_I8:
1931         case MONO_TYPE_U8:
1932                 return TYPE_I8 | mask;
1933
1934         case MONO_TYPE_R4:
1935         case MONO_TYPE_R8:
1936                 return TYPE_R8 | mask;
1937
1938         case MONO_TYPE_GENERICINST:
1939         case MONO_TYPE_VALUETYPE:
1940                 if (mono_type_is_enum_type (type)) {
1941                         type = mono_type_get_underlying_type_any (type);
1942                         if (!type)
1943                                 return FALSE;
1944                         type_kind = type->type;
1945                         goto handle_enum;
1946                 } else {
1947                         return TYPE_COMPLEX | mask;
1948                 }
1949
1950         default:
1951                 return TYPE_INV;
1952         }
1953 }
1954
1955 /* convert MonoType to ILStackDesc format (stype) */
1956 static gboolean
1957 set_stack_value (VerifyContext *ctx, ILStackDesc *stack, MonoType *type, int take_addr)
1958 {
1959         int mask = 0;
1960         int type_kind = type->type;
1961
1962         if (type->byref || take_addr)
1963                 mask = POINTER_MASK;
1964         /* TODO handle CMMP_MASK */
1965
1966 handle_enum:
1967         stack->type = type;
1968
1969         switch (type_kind) {
1970         case MONO_TYPE_I1:
1971         case MONO_TYPE_U1:
1972         case MONO_TYPE_BOOLEAN:
1973         case MONO_TYPE_I2:
1974         case MONO_TYPE_U2:
1975         case MONO_TYPE_CHAR:
1976         case MONO_TYPE_I4:
1977         case MONO_TYPE_U4:
1978                 stack->stype = TYPE_I4 | mask;
1979                 break;
1980         case MONO_TYPE_I:
1981         case MONO_TYPE_U:
1982                 stack->stype = TYPE_NATIVE_INT | mask;
1983                 break;
1984
1985         /*FIXME: Do we need to check if it's a pointer to the method pointer? The spec says it' illegal to have that.*/
1986         case MONO_TYPE_FNPTR:
1987         case MONO_TYPE_PTR:
1988         case MONO_TYPE_TYPEDBYREF:
1989                 stack->stype = TYPE_PTR | mask;
1990                 break;
1991
1992         case MONO_TYPE_CLASS:
1993         case MONO_TYPE_STRING:
1994         case MONO_TYPE_OBJECT:
1995         case MONO_TYPE_SZARRAY:
1996         case MONO_TYPE_ARRAY:
1997
1998         case MONO_TYPE_VAR:
1999         case MONO_TYPE_MVAR: 
2000                 stack->stype = TYPE_COMPLEX | mask;
2001                 break;
2002                 
2003         case MONO_TYPE_I8:
2004         case MONO_TYPE_U8:
2005                 stack->stype = TYPE_I8 | mask;
2006                 break;
2007         case MONO_TYPE_R4:
2008         case MONO_TYPE_R8:
2009                 stack->stype = TYPE_R8 | mask;
2010                 break;
2011         case MONO_TYPE_GENERICINST:
2012         case MONO_TYPE_VALUETYPE:
2013                 if (mono_type_is_enum_type (type)) {
2014                         MonoType *utype = mono_type_get_underlying_type_any (type);
2015                         if (!utype) {
2016                                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Could not resolve underlying type of %x at %d", type->type, ctx->ip_offset));
2017                                 return FALSE;
2018                         }
2019                         type = utype;
2020                         type_kind = type->type;
2021                         goto handle_enum;
2022                 } else {
2023                         stack->stype = TYPE_COMPLEX | mask;
2024                         break;
2025                 }
2026         default:
2027                 VERIFIER_DEBUG ( printf ("unknown type 0x%02x in eval stack type\n", type->type); );
2028                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Illegal value set on stack 0x%02x at %d", type->type, ctx->ip_offset));
2029                 return FALSE;
2030         }
2031         return TRUE;
2032 }
2033
2034 /* 
2035  * init_stack_with_value_at_exception_boundary:
2036  * 
2037  * Initialize the stack and push a given type.
2038  * The instruction is marked as been on the exception boundary.
2039  */
2040 static void
2041 init_stack_with_value_at_exception_boundary (VerifyContext *ctx, ILCodeDesc *code, MonoClass *klass)
2042 {
2043         MonoError error;
2044         MonoType *type = mono_class_inflate_generic_type_checked (&klass->byval_arg, ctx->generic_context, &error);
2045
2046         if (!mono_error_ok (&error)) {
2047                 char *name = mono_type_get_full_name (klass);
2048                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid class %s used for exception", name));
2049                 g_free (name);
2050                 mono_error_cleanup (&error);
2051                 return;
2052         }
2053
2054         if (!ctx->max_stack) {
2055                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Stack overflow at 0x%04x", ctx->ip_offset));
2056                 return;
2057         }
2058
2059         stack_init (ctx, code);
2060         ensure_stack_size (code, 1);
2061         set_stack_value (ctx, code->stack, type, FALSE);
2062         ctx->exception_types = g_slist_prepend (ctx->exception_types, type);
2063         code->size = 1;
2064         code->flags |= IL_CODE_FLAG_WAS_TARGET;
2065         if (mono_type_is_generic_argument (type))
2066                 code->stack->stype |= BOXED_MASK;
2067 }
2068
2069 static MonoClass*
2070 get_ienumerable_class (void)
2071 {
2072         static MonoClass* generic_ienumerable_class = NULL;
2073
2074         if (generic_ienumerable_class == NULL)
2075                 generic_ienumerable_class = mono_class_from_name (mono_defaults.corlib,
2076                         "System.Collections.Generic", "IEnumerable`1");
2077                 return generic_ienumerable_class;
2078 }
2079
2080 static MonoClass*
2081 get_icollection_class (void)
2082 {
2083         static MonoClass* generic_icollection_class = NULL;
2084
2085         if (generic_icollection_class == NULL)
2086                 generic_icollection_class = mono_class_from_name (mono_defaults.corlib,
2087                         "System.Collections.Generic", "ICollection`1");
2088                 return generic_icollection_class;
2089 }
2090
2091 static MonoClass*
2092 get_ireadonlylist_class (void)
2093 {
2094         static MonoClass* generic_ireadonlylist_class = NULL;
2095
2096         if (generic_ireadonlylist_class == NULL)
2097                 generic_ireadonlylist_class = mono_class_from_name (mono_defaults.corlib,
2098                         "System.Collections.Generic", "IReadOnlyList`1");
2099         return generic_ireadonlylist_class;
2100 }
2101
2102 static MonoClass*
2103 get_ireadonlycollection_class (void)
2104 {
2105         static MonoClass* generic_ireadonlycollection_class = NULL;
2106
2107         if (generic_ireadonlycollection_class == NULL)
2108                 generic_ireadonlycollection_class = mono_class_from_name (mono_defaults.corlib,
2109                         "System.Collections.Generic", "IReadOnlyCollection`1");
2110         return generic_ireadonlycollection_class;
2111 }
2112
2113 static MonoClass*
2114 inflate_class_one_arg (MonoClass *gtype, MonoClass *arg0)
2115 {
2116         MonoType *args [1];
2117         args [0] = &arg0->byval_arg;
2118
2119         return mono_class_bind_generic_parameters (gtype, 1, args, FALSE);
2120 }
2121
2122 static gboolean
2123 verifier_inflate_and_check_compat (MonoClass *target, MonoClass *gtd, MonoClass *arg)
2124 {
2125         MonoClass *tmp;
2126         if (!(tmp = inflate_class_one_arg (gtd, arg)))
2127                 return FALSE;
2128         if (mono_class_is_variant_compatible (target, tmp, TRUE))
2129                 return TRUE;
2130         return FALSE;
2131 }
2132
2133 static gboolean
2134 verifier_class_is_assignable_from (MonoClass *target, MonoClass *candidate)
2135 {
2136         MonoClass *iface_gtd;
2137
2138         if (target == candidate)
2139                 return TRUE;
2140
2141         if (mono_class_has_variant_generic_params (target)) {
2142                 if (MONO_CLASS_IS_INTERFACE (target)) {
2143                         if (MONO_CLASS_IS_INTERFACE (candidate) && mono_class_is_variant_compatible (target, candidate, TRUE))
2144                                 return TRUE;
2145
2146                         if (candidate->rank == 1) {
2147                                 if (verifier_inflate_and_check_compat (target, mono_defaults.generic_ilist_class, candidate->element_class))
2148                                         return TRUE;
2149                                 if (verifier_inflate_and_check_compat (target, get_icollection_class (), candidate->element_class))
2150                                         return TRUE;
2151                                 if (verifier_inflate_and_check_compat (target, get_ienumerable_class (), candidate->element_class))
2152                                         return TRUE;
2153                                 if (verifier_inflate_and_check_compat (target, get_ireadonlylist_class (), candidate->element_class))
2154                                         return TRUE;
2155                                 if (verifier_inflate_and_check_compat (target, get_ireadonlycollection_class (), candidate->element_class))
2156                                         return TRUE;
2157                         } else {
2158                                 MonoError error;
2159                                 int i;
2160                                 while (candidate && candidate != mono_defaults.object_class) {
2161                                         mono_class_setup_interfaces (candidate, &error);
2162                                         if (!mono_error_ok (&error)) {
2163                                                 mono_error_cleanup (&error);
2164                                                 return FALSE;
2165                                         }
2166
2167                                         /*klass is a generic variant interface, We need to extract from oklass a list of ifaces which are viable candidates.*/
2168                                         for (i = 0; i < candidate->interface_offsets_count; ++i) {
2169                                                 MonoClass *iface = candidate->interfaces_packed [i];
2170                                                 if (mono_class_is_variant_compatible (target, iface, TRUE))
2171                                                         return TRUE;
2172                                         }
2173
2174                                         for (i = 0; i < candidate->interface_count; ++i) {
2175                                                 MonoClass *iface = candidate->interfaces [i];
2176                                                 if (mono_class_is_variant_compatible (target, iface, TRUE))
2177                                                         return TRUE;
2178                                         }
2179                                         candidate = candidate->parent;
2180                                 }
2181                         }
2182                 } else if (target->delegate) {
2183                         if (mono_class_is_variant_compatible (target, candidate, TRUE))
2184                                 return TRUE;
2185                 }
2186                 return FALSE;
2187         }
2188
2189         if (mono_class_is_assignable_from (target, candidate))
2190                 return TRUE;
2191
2192         if (!MONO_CLASS_IS_INTERFACE (target) || !target->generic_class || candidate->rank != 1)
2193                 return FALSE;
2194
2195         iface_gtd = target->generic_class->container_class;
2196         if (iface_gtd != mono_defaults.generic_ilist_class && iface_gtd != get_icollection_class () && iface_gtd != get_ienumerable_class ())
2197                 return FALSE;
2198
2199         target = mono_class_from_mono_type (target->generic_class->context.class_inst->type_argv [0]);
2200         candidate = candidate->element_class;
2201
2202         return TRUE;
2203 }
2204
2205 /*Verify if type 'candidate' can be stored in type 'target'.
2206  * 
2207  * If strict, check for the underlying type and not the verification stack types
2208  */
2209 static gboolean
2210 verify_type_compatibility_full (VerifyContext *ctx, MonoType *target, MonoType *candidate, gboolean strict)
2211 {
2212 #define IS_ONE_OF3(T, A, B, C) (T == A || T == B || T == C)
2213 #define IS_ONE_OF2(T, A, B) (T == A || T == B)
2214
2215         MonoType *original_candidate = candidate;
2216         VERIFIER_DEBUG ( printf ("checking type compatibility %s x %s strict %d\n", mono_type_full_name (target), mono_type_full_name (candidate), strict); );
2217
2218         /*only one is byref */
2219         if (candidate->byref ^ target->byref) {
2220                 /* converting from native int to byref*/
2221                 if (get_stack_type (candidate) == TYPE_NATIVE_INT && target->byref) {
2222                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("using byref native int at 0x%04x", ctx->ip_offset));
2223                         return TRUE;
2224                 }
2225                 return FALSE;
2226         }
2227         strict |= target->byref;
2228         /*From now on we don't care about byref anymore, so it's ok to discard it here*/
2229         candidate = mono_type_get_underlying_type_any (candidate);
2230
2231 handle_enum:
2232         switch (target->type) {
2233         case MONO_TYPE_VOID:
2234                 return candidate->type == MONO_TYPE_VOID;
2235         case MONO_TYPE_I1:
2236         case MONO_TYPE_U1:
2237         case MONO_TYPE_BOOLEAN:
2238                 if (strict)
2239                         return IS_ONE_OF3 (candidate->type, MONO_TYPE_I1, MONO_TYPE_U1, MONO_TYPE_BOOLEAN);
2240         case MONO_TYPE_I2:
2241         case MONO_TYPE_U2:
2242         case MONO_TYPE_CHAR:
2243                 if (strict)
2244                         return IS_ONE_OF3 (candidate->type, MONO_TYPE_I2, MONO_TYPE_U2, MONO_TYPE_CHAR);
2245         case MONO_TYPE_I4:
2246         case MONO_TYPE_U4: {
2247                 gboolean is_native_int = IS_ONE_OF2 (candidate->type, MONO_TYPE_I, MONO_TYPE_U);
2248                 gboolean is_int4 = IS_ONE_OF2 (candidate->type, MONO_TYPE_I4, MONO_TYPE_U4);
2249                 if (strict)
2250                         return is_native_int || is_int4;
2251                 return is_native_int || get_stack_type (candidate) == TYPE_I4;
2252         }
2253
2254         case MONO_TYPE_I8:
2255         case MONO_TYPE_U8:
2256                 return IS_ONE_OF2 (candidate->type, MONO_TYPE_I8, MONO_TYPE_U8);
2257
2258         case MONO_TYPE_R4:
2259         case MONO_TYPE_R8:
2260                 if (strict)
2261                         return candidate->type == target->type;
2262                 return IS_ONE_OF2 (candidate->type, MONO_TYPE_R4, MONO_TYPE_R8);
2263
2264         case MONO_TYPE_I:
2265         case MONO_TYPE_U: {
2266                 gboolean is_native_int = IS_ONE_OF2 (candidate->type, MONO_TYPE_I, MONO_TYPE_U);
2267                 gboolean is_int4 = IS_ONE_OF2 (candidate->type, MONO_TYPE_I4, MONO_TYPE_U4);
2268                 if (strict)
2269                         return is_native_int || is_int4;
2270                 return is_native_int || get_stack_type (candidate) == TYPE_I4;
2271         }
2272
2273         case MONO_TYPE_PTR:
2274                 if (candidate->type != MONO_TYPE_PTR)
2275                         return FALSE;
2276                 /* check the underlying type */
2277                 return verify_type_compatibility_full (ctx, target->data.type, candidate->data.type, TRUE);
2278
2279         case MONO_TYPE_FNPTR: {
2280                 MonoMethodSignature *left, *right;
2281                 if (candidate->type != MONO_TYPE_FNPTR)
2282                         return FALSE;
2283
2284                 left = mono_type_get_signature (target);
2285                 right = mono_type_get_signature (candidate);
2286                 return mono_metadata_signature_equal (left, right) && left->call_convention == right->call_convention;
2287         }
2288
2289         case MONO_TYPE_GENERICINST: {
2290                 MonoClass *target_klass;
2291                 MonoClass *candidate_klass;
2292                 if (mono_type_is_enum_type (target)) {
2293                         target = mono_type_get_underlying_type_any (target);
2294                         if (!target)
2295                                 return FALSE;
2296                         goto handle_enum;
2297                 }
2298                 /*
2299                  * VAR / MVAR compatibility must be checked by verify_stack_type_compatibility
2300                  * to take boxing status into account.
2301                  */
2302                 if (mono_type_is_generic_argument (original_candidate))
2303                         return FALSE;
2304
2305                 target_klass = mono_class_from_mono_type (target);
2306                 candidate_klass = mono_class_from_mono_type (candidate);
2307                 if (mono_class_is_nullable (target_klass)) {
2308                         if (!mono_class_is_nullable (candidate_klass))
2309                                 return FALSE;
2310                         return target_klass == candidate_klass;
2311                 }
2312                 return verifier_class_is_assignable_from (target_klass, candidate_klass);
2313         }
2314
2315         case MONO_TYPE_STRING:
2316                 return candidate->type == MONO_TYPE_STRING;
2317
2318         case MONO_TYPE_CLASS:
2319                 /*
2320                  * VAR / MVAR compatibility must be checked by verify_stack_type_compatibility
2321                  * to take boxing status into account.
2322                  */
2323                 if (mono_type_is_generic_argument (original_candidate))
2324                         return FALSE;
2325
2326                 if (candidate->type == MONO_TYPE_VALUETYPE)
2327                         return FALSE;
2328
2329                 /* If candidate is an enum it should return true for System.Enum and supertypes.
2330                  * That's why here we use the original type and not the underlying type.
2331                  */ 
2332                 return verifier_class_is_assignable_from (target->data.klass, mono_class_from_mono_type (original_candidate));
2333
2334         case MONO_TYPE_OBJECT:
2335                 return MONO_TYPE_IS_REFERENCE (candidate);
2336
2337         case MONO_TYPE_SZARRAY: {
2338                 MonoClass *left;
2339                 MonoClass *right;
2340                 if (candidate->type != MONO_TYPE_SZARRAY)
2341                         return FALSE;
2342
2343                 left = mono_class_from_mono_type (target);
2344                 right = mono_class_from_mono_type (candidate);
2345
2346                 return verifier_class_is_assignable_from (left, right);
2347         }
2348
2349         case MONO_TYPE_ARRAY:
2350                 if (candidate->type != MONO_TYPE_ARRAY)
2351                         return FALSE;
2352                 return is_array_type_compatible (target, candidate);
2353
2354         case MONO_TYPE_TYPEDBYREF:
2355                 return candidate->type == MONO_TYPE_TYPEDBYREF;
2356
2357         case MONO_TYPE_VALUETYPE: {
2358                 MonoClass *target_klass;
2359                 MonoClass *candidate_klass;
2360
2361                 if (candidate->type == MONO_TYPE_CLASS)
2362                         return FALSE;
2363
2364                 target_klass = mono_class_from_mono_type (target);
2365                 candidate_klass = mono_class_from_mono_type (candidate);
2366                 if (target_klass == candidate_klass)
2367                         return TRUE;
2368                 if (mono_type_is_enum_type (target)) {
2369                         target = mono_type_get_underlying_type_any (target);
2370                         if (!target)
2371                                 return FALSE;
2372                         goto handle_enum;
2373                 }
2374                 return FALSE;
2375         }
2376
2377         case MONO_TYPE_VAR:
2378                 if (candidate->type != MONO_TYPE_VAR)
2379                         return FALSE;
2380                 return mono_type_get_generic_param_num (candidate) == mono_type_get_generic_param_num (target);
2381
2382         case MONO_TYPE_MVAR:
2383                 if (candidate->type != MONO_TYPE_MVAR)
2384                         return FALSE;
2385                 return mono_type_get_generic_param_num (candidate) == mono_type_get_generic_param_num (target);
2386
2387         default:
2388                 VERIFIER_DEBUG ( printf ("unknown store type %d\n", target->type); );
2389                 g_assert_not_reached ();
2390                 return FALSE;
2391         }
2392         return 1;
2393 #undef IS_ONE_OF3
2394 #undef IS_ONE_OF2
2395 }
2396
2397 static gboolean
2398 verify_type_compatibility (VerifyContext *ctx, MonoType *target, MonoType *candidate)
2399 {
2400         return verify_type_compatibility_full (ctx, target, candidate, FALSE);
2401 }
2402
2403 /*
2404  * Returns the generic param bound to the context been verified.
2405  * 
2406  */
2407 static MonoGenericParam*
2408 get_generic_param (VerifyContext *ctx, MonoType *param) 
2409 {
2410         guint16 param_num = mono_type_get_generic_param_num (param);
2411         if (param->type == MONO_TYPE_VAR) {
2412                 if (!ctx->generic_context->class_inst || ctx->generic_context->class_inst->type_argc <= param_num) {
2413                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid generic type argument %d", param_num));
2414                         return NULL;
2415                 }
2416                 return ctx->generic_context->class_inst->type_argv [param_num]->data.generic_param;
2417         }
2418         
2419         /*param must be a MVAR */
2420         if (!ctx->generic_context->method_inst || ctx->generic_context->method_inst->type_argc <= param_num) {
2421                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid generic method argument %d", param_num));
2422                 return NULL;
2423         }
2424         return ctx->generic_context->method_inst->type_argv [param_num]->data.generic_param;
2425         
2426 }
2427
2428 static gboolean
2429 recursive_boxed_constraint_type_check (VerifyContext *ctx, MonoType *type, MonoClass *constraint_class, int recursion_level)
2430 {
2431         MonoType *constraint_type = &constraint_class->byval_arg;
2432         if (recursion_level <= 0)
2433                 return FALSE;
2434
2435         if (verify_type_compatibility_full (ctx, type, mono_type_get_type_byval (constraint_type), FALSE))
2436                 return TRUE;
2437
2438         if (mono_type_is_generic_argument (constraint_type)) {
2439                 MonoGenericParam *param = get_generic_param (ctx, constraint_type);
2440                 MonoClass **class;
2441                 if (!param)
2442                         return FALSE;
2443                 for (class = mono_generic_param_info (param)->constraints; class && *class; ++class) {
2444                         if (recursive_boxed_constraint_type_check (ctx, type, *class, recursion_level - 1))
2445                                 return TRUE;
2446                 }
2447         }
2448         return FALSE;
2449 }
2450
2451 /*
2452  * is_compatible_boxed_valuetype:
2453  * 
2454  * Returns TRUE if @candidate / @stack is a valid boxed valuetype. 
2455  * 
2456  * @type The source type. It it tested to be of the proper type.    
2457  * @candidate type of the boxed valuetype.
2458  * @stack stack slot of the boxed valuetype, separate from @candidade since one could be changed before calling this function
2459  * @strict if TRUE candidate must be boxed compatible to the target type
2460  * 
2461  */
2462 static gboolean
2463 is_compatible_boxed_valuetype (VerifyContext *ctx, MonoType *type, MonoType *candidate, ILStackDesc *stack, gboolean strict)
2464 {
2465         if (!stack_slot_is_boxed_value (stack))
2466                 return FALSE;
2467         if (type->byref || candidate->byref)
2468                 return FALSE;
2469
2470         if (mono_type_is_generic_argument (candidate)) {
2471                 MonoGenericParam *param = get_generic_param (ctx, candidate);
2472                 MonoClass **class;
2473                 if (!param)
2474                         return FALSE;
2475
2476                 for (class = mono_generic_param_info (param)->constraints; class && *class; ++class) {
2477                         /*256 should be enough since there can't be more than 255 generic arguments.*/
2478                         if (recursive_boxed_constraint_type_check (ctx, type, *class, 256))
2479                                 return TRUE;
2480                 }
2481         }
2482
2483         if (mono_type_is_generic_argument (type))
2484                 return FALSE;
2485
2486         if (!strict)
2487                 return TRUE;
2488
2489         return MONO_TYPE_IS_REFERENCE (type) && verifier_class_is_assignable_from (mono_class_from_mono_type (type), mono_class_from_mono_type (candidate));
2490 }
2491
2492 static int
2493 verify_stack_type_compatibility_full (VerifyContext *ctx, MonoType *type, ILStackDesc *stack, gboolean drop_byref, gboolean valuetype_must_be_boxed)
2494 {
2495         MonoType *candidate = mono_type_from_stack_slot (stack);
2496         if (MONO_TYPE_IS_REFERENCE (type) && !type->byref && stack_slot_is_null_literal (stack))
2497                 return TRUE;
2498
2499         if (is_compatible_boxed_valuetype (ctx, type, candidate, stack, TRUE))
2500                 return TRUE;
2501
2502         if (valuetype_must_be_boxed && !stack_slot_is_boxed_value (stack) && !MONO_TYPE_IS_REFERENCE (candidate))
2503                 return FALSE;
2504
2505         if (!valuetype_must_be_boxed && stack_slot_is_boxed_value (stack))
2506                 return FALSE;
2507
2508         if (drop_byref)
2509                 return verify_type_compatibility_full (ctx, type, mono_type_get_type_byval (candidate), FALSE);
2510
2511         return verify_type_compatibility_full (ctx, type, candidate, FALSE);
2512 }
2513
2514 static int
2515 verify_stack_type_compatibility (VerifyContext *ctx, MonoType *type, ILStackDesc *stack)
2516 {
2517         return verify_stack_type_compatibility_full (ctx, type, stack, FALSE, FALSE);
2518 }
2519
2520 static gboolean
2521 mono_delegate_type_equal (MonoType *target, MonoType *candidate)
2522 {
2523         if (candidate->byref ^ target->byref)
2524                 return FALSE;
2525
2526         switch (target->type) {
2527         case MONO_TYPE_VOID:
2528         case MONO_TYPE_I1:
2529         case MONO_TYPE_U1:
2530         case MONO_TYPE_BOOLEAN:
2531         case MONO_TYPE_I2:
2532         case MONO_TYPE_U2:
2533         case MONO_TYPE_CHAR:
2534         case MONO_TYPE_I4:
2535         case MONO_TYPE_U4:
2536         case MONO_TYPE_I8:
2537         case MONO_TYPE_U8:
2538         case MONO_TYPE_R4:
2539         case MONO_TYPE_R8:
2540         case MONO_TYPE_I:
2541         case MONO_TYPE_U:
2542         case MONO_TYPE_STRING:
2543         case MONO_TYPE_TYPEDBYREF:
2544                 return candidate->type == target->type;
2545
2546         case MONO_TYPE_PTR:
2547                 if (candidate->type != MONO_TYPE_PTR)
2548                         return FALSE;
2549                 return mono_delegate_type_equal (target->data.type, candidate->data.type);
2550
2551         case MONO_TYPE_FNPTR:
2552                 if (candidate->type != MONO_TYPE_FNPTR)
2553                         return FALSE;
2554                 return mono_delegate_signature_equal (mono_type_get_signature (target), mono_type_get_signature (candidate), FALSE);
2555
2556         case MONO_TYPE_GENERICINST: {
2557                 MonoClass *target_klass;
2558                 MonoClass *candidate_klass;
2559                 target_klass = mono_class_from_mono_type (target);
2560                 candidate_klass = mono_class_from_mono_type (candidate);
2561                 /*FIXME handle nullables and enum*/
2562                 return verifier_class_is_assignable_from (target_klass, candidate_klass);
2563         }
2564         case MONO_TYPE_OBJECT:
2565                 return MONO_TYPE_IS_REFERENCE (candidate);
2566
2567         case MONO_TYPE_CLASS:
2568                 return verifier_class_is_assignable_from(target->data.klass, mono_class_from_mono_type (candidate));
2569
2570         case MONO_TYPE_SZARRAY:
2571                 if (candidate->type != MONO_TYPE_SZARRAY)
2572                         return FALSE;
2573                 return verifier_class_is_assignable_from (mono_class_from_mono_type (target)->element_class, mono_class_from_mono_type (candidate)->element_class);
2574
2575         case MONO_TYPE_ARRAY:
2576                 if (candidate->type != MONO_TYPE_ARRAY)
2577                         return FALSE;
2578                 return is_array_type_compatible (target, candidate);
2579
2580         case MONO_TYPE_VALUETYPE:
2581                 /*FIXME handle nullables and enum*/
2582                 return mono_class_from_mono_type (candidate) == mono_class_from_mono_type (target);
2583
2584         case MONO_TYPE_VAR:
2585                 return candidate->type == MONO_TYPE_VAR && mono_type_get_generic_param_num (target) == mono_type_get_generic_param_num (candidate);
2586                 return FALSE;
2587
2588         case MONO_TYPE_MVAR:
2589                 return candidate->type == MONO_TYPE_MVAR && mono_type_get_generic_param_num (target) == mono_type_get_generic_param_num (candidate);
2590                 return FALSE;
2591
2592         default:
2593                 VERIFIER_DEBUG ( printf ("Unknown type %d. Implement me!\n", target->type); );
2594                 g_assert_not_reached ();
2595                 return FALSE;
2596         }
2597 }
2598
2599 static gboolean
2600 mono_delegate_param_equal (MonoType *delegate, MonoType *method)
2601 {
2602         if (mono_metadata_type_equal_full (delegate, method, TRUE))
2603                 return TRUE;
2604
2605         return mono_delegate_type_equal (method, delegate);
2606 }
2607
2608 static gboolean
2609 mono_delegate_ret_equal (MonoType *delegate, MonoType *method)
2610 {
2611         if (mono_metadata_type_equal_full (delegate, method, TRUE))
2612                 return TRUE;
2613
2614         return mono_delegate_type_equal (delegate, method);
2615 }
2616
2617 /*
2618  * mono_delegate_signature_equal:
2619  * 
2620  * Compare two signatures in the way expected by delegates.
2621  * 
2622  * This function only exists due to the fact that it should ignore the 'has_this' part of the signature.
2623  *
2624  * FIXME can this function be eliminated and proper metadata functionality be used?
2625  */
2626 static gboolean
2627 mono_delegate_signature_equal (MonoMethodSignature *delegate_sig, MonoMethodSignature *method_sig, gboolean is_static_ldftn)
2628 {
2629         int i;
2630         int method_offset = is_static_ldftn ? 1 : 0;
2631
2632         if (delegate_sig->param_count + method_offset != method_sig->param_count) 
2633                 return FALSE;
2634
2635         if (delegate_sig->call_convention != method_sig->call_convention)
2636                 return FALSE;
2637
2638         for (i = 0; i < delegate_sig->param_count; i++) { 
2639                 MonoType *p1 = delegate_sig->params [i];
2640                 MonoType *p2 = method_sig->params [i + method_offset];
2641
2642                 if (!mono_delegate_param_equal (p1, p2))
2643                         return FALSE;
2644         }
2645
2646         if (!mono_delegate_ret_equal (delegate_sig->ret, method_sig->ret))
2647                 return FALSE;
2648
2649         return TRUE;
2650 }
2651
2652 gboolean
2653 mono_verifier_is_signature_compatible (MonoMethodSignature *target, MonoMethodSignature *candidate)
2654 {
2655         return mono_delegate_signature_equal (target, candidate, FALSE);
2656 }
2657
2658 /* 
2659  * verify_ldftn_delegate:
2660  * 
2661  * Verify properties of ldftn based delegates.
2662  */
2663 static void
2664 verify_ldftn_delegate (VerifyContext *ctx, MonoClass *delegate, ILStackDesc *value, ILStackDesc *funptr)
2665 {
2666         MonoMethod *method = funptr->method;
2667
2668         /*ldftn non-final virtuals only allowed if method is not static,
2669          * the object is a this arg (comes from a ldarg.0), and there is no starg.0.
2670          * This rules doesn't apply if the object on stack is a boxed valuetype.
2671          */
2672         if ((method->flags & METHOD_ATTRIBUTE_VIRTUAL) && !(method->flags & METHOD_ATTRIBUTE_FINAL) && !(method->klass->flags & TYPE_ATTRIBUTE_SEALED) && !stack_slot_is_boxed_value (value)) {
2673                 /*A stdarg 0 must not happen, we fail here only in fail fast mode to avoid double error reports*/
2674                 if (IS_FAIL_FAST_MODE (ctx) && ctx->has_this_store)
2675                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid ldftn with virtual function in method with stdarg 0 at  0x%04x", ctx->ip_offset));
2676
2677                 /*current method must not be static*/
2678                 if (ctx->method->flags & METHOD_ATTRIBUTE_STATIC)
2679                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid ldftn with virtual function at 0x%04x", ctx->ip_offset));
2680
2681                 /*value is the this pointer, loaded using ldarg.0 */
2682                 if (!stack_slot_is_this_pointer (value))
2683                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid object argument, it is not the this pointer, to ldftn with virtual method at  0x%04x", ctx->ip_offset));
2684
2685                 ctx->code [ctx->ip_offset].flags |= IL_CODE_LDFTN_DELEGATE_NONFINAL_VIRTUAL;
2686         }
2687 }
2688
2689 /*
2690  * verify_delegate_compatibility:
2691  * 
2692  * Verify delegate creation sequence.
2693  * 
2694  */
2695 static void
2696 verify_delegate_compatibility (VerifyContext *ctx, MonoClass *delegate, ILStackDesc *value, ILStackDesc *funptr)
2697 {
2698 #define IS_VALID_OPCODE(offset, opcode) (ip [ip_offset - offset] == opcode && (ctx->code [ip_offset - offset].flags & IL_CODE_FLAG_SEEN))
2699 #define IS_LOAD_FUN_PTR(kind) (IS_VALID_OPCODE (6, CEE_PREFIX1) && ip [ip_offset - 5] == kind)
2700
2701         MonoMethod *invoke, *method;
2702         const guint8 *ip = ctx->header->code;
2703         guint32 ip_offset = ctx->ip_offset;
2704         gboolean is_static_ldftn = FALSE, is_first_arg_bound = FALSE;
2705         
2706         if (stack_slot_get_type (funptr) != TYPE_PTR || !funptr->method) {
2707                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid function pointer parameter for delegate constructor at 0x%04x", ctx->ip_offset));
2708                 return;
2709         }
2710         
2711         invoke = mono_get_delegate_invoke (delegate);
2712         method = funptr->method;
2713
2714         if (!method || !mono_method_signature (method)) {
2715                 char *name = mono_type_get_full_name (delegate);
2716                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid method on stack to create delegate %s construction at 0x%04x", name, ctx->ip_offset));
2717                 g_free (name);
2718                 return;
2719         }
2720
2721         if (!invoke || !mono_method_signature (invoke)) {
2722                 char *name = mono_type_get_full_name (delegate);
2723                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Delegate type %s with bad Invoke method at 0x%04x", name, ctx->ip_offset));
2724                 g_free (name);
2725                 return;
2726         }
2727
2728         is_static_ldftn = (ip_offset > 5 && IS_LOAD_FUN_PTR (CEE_LDFTN)) && method->flags & METHOD_ATTRIBUTE_STATIC;
2729
2730         if (is_static_ldftn)
2731                 is_first_arg_bound = mono_method_signature (invoke)->param_count + 1 ==  mono_method_signature (method)->param_count;
2732
2733         if (!mono_delegate_signature_equal (mono_method_signature (invoke), mono_method_signature (method), is_first_arg_bound)) {
2734                 char *fun_sig = mono_signature_get_desc (mono_method_signature (method), FALSE);
2735                 char *invoke_sig = mono_signature_get_desc (mono_method_signature (invoke), FALSE);
2736                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Function pointer signature '%s' doesn't match delegate's signature '%s' at 0x%04x", fun_sig, invoke_sig, ctx->ip_offset));
2737                 g_free (fun_sig);
2738                 g_free (invoke_sig);
2739         }
2740
2741         /* 
2742          * Delegate code sequences:
2743          * [-6] ldftn token
2744          * newobj ...
2745          * 
2746          * 
2747          * [-7] dup
2748          * [-6] ldvirtftn token
2749          * newobj ...
2750          * 
2751          * ldftn sequence:*/
2752         if (ip_offset > 5 && IS_LOAD_FUN_PTR (CEE_LDFTN)) {
2753                 verify_ldftn_delegate (ctx, delegate, value, funptr);
2754         } else if (ip_offset > 6 && IS_VALID_OPCODE (7, CEE_DUP) && IS_LOAD_FUN_PTR (CEE_LDVIRTFTN)) {
2755                 ctx->code [ip_offset - 6].flags |= IL_CODE_DELEGATE_SEQUENCE;   
2756         }else {
2757                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid code sequence for delegate creation at 0x%04x", ctx->ip_offset));
2758         }
2759         ctx->code [ip_offset].flags |= IL_CODE_DELEGATE_SEQUENCE;
2760
2761         //general tests
2762         if (is_first_arg_bound) {
2763                 if (mono_method_signature (method)->param_count == 0 || !verify_stack_type_compatibility_full (ctx, mono_method_signature (method)->params [0], value, FALSE, TRUE))
2764                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("This object not compatible with function pointer for delegate creation at 0x%04x", ctx->ip_offset));
2765         } else {
2766                 if (method->flags & METHOD_ATTRIBUTE_STATIC) {
2767                         if (!stack_slot_is_null_literal (value) && !is_first_arg_bound)
2768                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Non-null this args used with static function for delegate creation at 0x%04x", ctx->ip_offset));
2769                 } else {
2770                         if (!verify_stack_type_compatibility_full (ctx, &method->klass->byval_arg, value, FALSE, TRUE) && !stack_slot_is_null_literal (value))
2771                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("This object not compatible with function pointer for delegate creation at 0x%04x", ctx->ip_offset));
2772                 }
2773         }
2774
2775         if (stack_slot_get_type (value) != TYPE_COMPLEX)
2776                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid first parameter for delegate creation at 0x%04x", ctx->ip_offset));
2777
2778 #undef IS_VALID_OPCODE
2779 #undef IS_LOAD_FUN_PTR
2780 }
2781
2782 /* implement the opcode checks*/
2783 static void
2784 push_arg (VerifyContext *ctx, unsigned int arg, int take_addr) 
2785 {
2786         ILStackDesc *top;
2787
2788         if (arg >= ctx->max_args) {
2789                 if (take_addr) 
2790                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Method doesn't have argument %d", arg + 1));
2791                 else {
2792                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Method doesn't have argument %d", arg + 1));
2793                         if (check_overflow (ctx)) //FIXME: what sane value could we ever push?
2794                                 stack_push_val (ctx, TYPE_I4, &mono_defaults.int32_class->byval_arg);
2795                 }
2796         } else if (check_overflow (ctx)) {
2797                 /*We must let the value be pushed, otherwise we would get an underflow error*/
2798                 check_unverifiable_type (ctx, ctx->params [arg]);
2799                 if (ctx->params [arg]->byref && take_addr)
2800                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("ByRef of ByRef at 0x%04x", ctx->ip_offset));
2801                 top = stack_push (ctx);
2802                 if (!set_stack_value (ctx, top, ctx->params [arg], take_addr))
2803                         return;
2804
2805                 if (arg == 0 && !(ctx->method->flags & METHOD_ATTRIBUTE_STATIC)) {
2806                         if (take_addr)
2807                                 ctx->has_this_store = TRUE;
2808                         else
2809                                 top->stype |= THIS_POINTER_MASK;
2810                         if (mono_method_is_constructor (ctx->method) && !ctx->super_ctor_called && !ctx->method->klass->valuetype)
2811                                 top->stype |= UNINIT_THIS_MASK;
2812                 }
2813         } 
2814 }
2815
2816 static void
2817 push_local (VerifyContext *ctx, guint32 arg, int take_addr) 
2818 {
2819         if (arg >= ctx->num_locals) {
2820                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Method doesn't have local %d", arg + 1));
2821         } else if (check_overflow (ctx)) {
2822                 /*We must let the value be pushed, otherwise we would get an underflow error*/
2823                 check_unverifiable_type (ctx, ctx->locals [arg]);
2824                 if (ctx->locals [arg]->byref && take_addr)
2825                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("ByRef of ByRef at 0x%04x", ctx->ip_offset));
2826
2827                 set_stack_value (ctx, stack_push (ctx), ctx->locals [arg], take_addr);
2828         } 
2829 }
2830
2831 static void
2832 store_arg (VerifyContext *ctx, guint32 arg)
2833 {
2834         ILStackDesc *value;
2835
2836         if (arg >= ctx->max_args) {
2837                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Method doesn't have argument %d at 0x%04x", arg + 1, ctx->ip_offset));
2838                 if (check_underflow (ctx, 1))
2839                         stack_pop (ctx);
2840                 return;
2841         }
2842
2843         if (check_underflow (ctx, 1)) {
2844                 value = stack_pop (ctx);
2845                 if (!verify_stack_type_compatibility (ctx, ctx->params [arg], value)) {
2846                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible type %s in argument store at 0x%04x", stack_slot_get_name (value), ctx->ip_offset));
2847                 }
2848         }
2849         if (arg == 0 && !(ctx->method->flags & METHOD_ATTRIBUTE_STATIC))
2850                 ctx->has_this_store = 1;
2851 }
2852
2853 static void
2854 store_local (VerifyContext *ctx, guint32 arg)
2855 {
2856         ILStackDesc *value;
2857         if (arg >= ctx->num_locals) {
2858                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Method doesn't have local var %d at 0x%04x", arg + 1, ctx->ip_offset));
2859                 return;
2860         }
2861
2862         /*TODO verify definite assigment */             
2863         if (!check_underflow (ctx, 1))
2864                 return;
2865
2866         value = stack_pop (ctx);
2867         if (ctx->locals [arg]->byref && stack_slot_is_managed_mutability_pointer (value))
2868                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly managed reference when storing on a local variable at 0x%04x", ctx->ip_offset));
2869                         
2870         if (!verify_stack_type_compatibility (ctx, ctx->locals [arg], value)) {
2871                 char *expected = mono_type_full_name (ctx->locals [arg]);
2872                 char *found = stack_slot_full_name (value);
2873                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible type '%s' on stack cannot be stored to local %d with type '%s' at 0x%04x",
2874                                 found,
2875                                 arg,
2876                                 expected,
2877                                 ctx->ip_offset));
2878                 g_free (expected);
2879                 g_free (found); 
2880         }
2881 }
2882
2883 /*FIXME add and sub needs special care here*/
2884 static void
2885 do_binop (VerifyContext *ctx, unsigned int opcode, const unsigned char table [TYPE_MAX][TYPE_MAX])
2886 {
2887         ILStackDesc *a, *b, *top;
2888         int idxa, idxb, complexMerge = 0;
2889         unsigned char res;
2890
2891         if (!check_underflow (ctx, 2))
2892                 return;
2893         b = stack_pop (ctx);
2894         a = stack_pop (ctx);
2895
2896         idxa = stack_slot_get_underlying_type (a);
2897         if (stack_slot_is_managed_pointer (a)) {
2898                 idxa = TYPE_PTR;
2899                 complexMerge = 1;
2900         }
2901
2902         idxb = stack_slot_get_underlying_type (b);
2903         if (stack_slot_is_managed_pointer (b)) {
2904                 idxb = TYPE_PTR;
2905                 complexMerge = 2;
2906         }
2907
2908         --idxa;
2909         --idxb;
2910         res = table [idxa][idxb];
2911
2912         VERIFIER_DEBUG ( printf ("binop res %d\n", res); );
2913         VERIFIER_DEBUG ( printf ("idxa %d idxb %d\n", idxa, idxb); );
2914
2915         top = stack_push (ctx);
2916         if (res == TYPE_INV) {
2917                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Binary instruction applyed to ill formed stack (%s x %s)", stack_slot_get_name (a), stack_slot_get_name (b)));
2918                 copy_stack_value (top, a);
2919                 return;
2920         }
2921
2922         if (res & NON_VERIFIABLE_RESULT) {
2923                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Binary instruction is not verifiable (%s x %s)", stack_slot_get_name (a), stack_slot_get_name (b)));
2924
2925                 res = res & ~NON_VERIFIABLE_RESULT;
2926         }
2927
2928         if (complexMerge && res == TYPE_PTR) {
2929                 if (complexMerge == 1) 
2930                         copy_stack_value (top, a);
2931                 else if (complexMerge == 2)
2932                         copy_stack_value (top, b);
2933                 /*
2934                  * There is no need to merge the type of two pointers.
2935                  * The only valid operation is subtraction, that returns a native
2936                  *  int as result and can be used with any 2 pointer kinds.
2937                  * This is valid acording to Patition III 1.1.4
2938                  */
2939         } else
2940                 top->stype = res;
2941         
2942 }
2943
2944
2945 static void
2946 do_boolean_branch_op (VerifyContext *ctx, int delta)
2947 {
2948         int target = ctx->ip_offset + delta;
2949         ILStackDesc *top;
2950
2951         VERIFIER_DEBUG ( printf ("boolean branch offset %d delta %d target %d\n", ctx->ip_offset, delta, target); );
2952  
2953         if (target < 0 || target >= ctx->code_size) {
2954                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Boolean branch target out of code at 0x%04x", ctx->ip_offset));
2955                 return;
2956         }
2957
2958         switch (is_valid_branch_instruction (ctx->header, ctx->ip_offset, target)) {
2959         case 1:
2960                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Branch target escapes out of exception block at 0x%04x", ctx->ip_offset));
2961                 break;
2962         case 2:
2963                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Branch target escapes out of exception block at 0x%04x", ctx->ip_offset));
2964                 return;
2965         }
2966
2967         ctx->target = target;
2968
2969         if (!check_underflow (ctx, 1))
2970                 return;
2971
2972         top = stack_pop (ctx);
2973         if (!is_valid_bool_arg (top))
2974                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Argument type %s not valid for brtrue/brfalse at 0x%04x", stack_slot_get_name (top), ctx->ip_offset));
2975
2976         check_unmanaged_pointer (ctx, top);
2977 }
2978
2979 static gboolean
2980 stack_slot_is_complex_type_not_reference_type (ILStackDesc *slot)
2981 {
2982         return stack_slot_get_type (slot) == TYPE_COMPLEX && !MONO_TYPE_IS_REFERENCE (slot->type) && !stack_slot_is_boxed_value (slot);
2983 }
2984
2985 static void
2986 do_branch_op (VerifyContext *ctx, signed int delta, const unsigned char table [TYPE_MAX][TYPE_MAX])
2987 {
2988         ILStackDesc *a, *b;
2989         int idxa, idxb;
2990         unsigned char res;
2991         int target = ctx->ip_offset + delta;
2992
2993         VERIFIER_DEBUG ( printf ("branch offset %d delta %d target %d\n", ctx->ip_offset, delta, target); );
2994  
2995         if (target < 0 || target >= ctx->code_size) {
2996                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Branch target out of code at 0x%04x", ctx->ip_offset));
2997                 return;
2998         }
2999
3000         switch (is_valid_cmp_branch_instruction (ctx->header, ctx->ip_offset, target)) {
3001         case 1: /*FIXME use constants and not magic numbers.*/
3002                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Branch target escapes out of exception block at 0x%04x", ctx->ip_offset));
3003                 break;
3004         case 2:
3005                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Branch target escapes out of exception block at 0x%04x", ctx->ip_offset));
3006                 return;
3007         }
3008
3009         ctx->target = target;
3010
3011         if (!check_underflow (ctx, 2))
3012                 return;
3013
3014         b = stack_pop (ctx);
3015         a = stack_pop (ctx);
3016
3017         idxa = stack_slot_get_underlying_type (a);
3018         if (stack_slot_is_managed_pointer (a))
3019                 idxa = TYPE_PTR;
3020
3021         idxb = stack_slot_get_underlying_type (b);
3022         if (stack_slot_is_managed_pointer (b))
3023                 idxb = TYPE_PTR;
3024
3025         if (stack_slot_is_complex_type_not_reference_type (a) || stack_slot_is_complex_type_not_reference_type (b)) {
3026                 res = TYPE_INV;
3027         } else {
3028                 --idxa;
3029                 --idxb;
3030                 res = table [idxa][idxb];
3031         }
3032
3033         VERIFIER_DEBUG ( printf ("branch res %d\n", res); );
3034         VERIFIER_DEBUG ( printf ("idxa %d idxb %d\n", idxa, idxb); );
3035
3036         if (res == TYPE_INV) {
3037                 CODE_NOT_VERIFIABLE (ctx,
3038                         g_strdup_printf ("Compare and Branch instruction applyed to ill formed stack (%s x %s) at 0x%04x", stack_slot_get_name (a), stack_slot_get_name (b), ctx->ip_offset));
3039         } else if (res & NON_VERIFIABLE_RESULT) {
3040                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Compare and Branch instruction is not verifiable (%s x %s) at 0x%04x", stack_slot_get_name (a), stack_slot_get_name (b), ctx->ip_offset)); 
3041                 res = res & ~NON_VERIFIABLE_RESULT;
3042         }
3043 }
3044
3045 static void
3046 do_cmp_op (VerifyContext *ctx, const unsigned char table [TYPE_MAX][TYPE_MAX], guint32 opcode)
3047 {
3048         ILStackDesc *a, *b;
3049         int idxa, idxb;
3050         unsigned char res;
3051
3052         if (!check_underflow (ctx, 2))
3053                 return;
3054         b = stack_pop (ctx);
3055         a = stack_pop (ctx);
3056
3057         if (opcode == CEE_CGT_UN) {
3058                 if (stack_slot_get_type (a) == TYPE_COMPLEX && stack_slot_get_type (b) == TYPE_COMPLEX) {
3059                         stack_push_val (ctx, TYPE_I4, &mono_defaults.int32_class->byval_arg);
3060                         return;
3061                 }
3062         }
3063
3064         idxa = stack_slot_get_underlying_type (a);
3065         if (stack_slot_is_managed_pointer (a))
3066                 idxa = TYPE_PTR;
3067
3068         idxb = stack_slot_get_underlying_type (b);
3069         if (stack_slot_is_managed_pointer (b)) 
3070                 idxb = TYPE_PTR;
3071
3072         if (stack_slot_is_complex_type_not_reference_type (a) || stack_slot_is_complex_type_not_reference_type (b)) {
3073                 res = TYPE_INV;
3074         } else {
3075                 --idxa;
3076                 --idxb;
3077                 res = table [idxa][idxb];
3078         }
3079
3080         if(res == TYPE_INV) {
3081                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf("Compare instruction applyed to ill formed stack (%s x %s) at 0x%04x", stack_slot_get_name (a), stack_slot_get_name (b), ctx->ip_offset));
3082         } else if (res & NON_VERIFIABLE_RESULT) {
3083                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Compare instruction is not verifiable (%s x %s) at 0x%04x", stack_slot_get_name (a), stack_slot_get_name (b), ctx->ip_offset)); 
3084                 res = res & ~NON_VERIFIABLE_RESULT;
3085         }
3086         stack_push_val (ctx, TYPE_I4, &mono_defaults.int32_class->byval_arg);
3087 }
3088
3089 static void
3090 do_ret (VerifyContext *ctx)
3091 {
3092         MonoType *ret = ctx->signature->ret;
3093         VERIFIER_DEBUG ( printf ("checking ret\n"); );
3094         if (ret->type != MONO_TYPE_VOID) {
3095                 ILStackDesc *top;
3096                 if (!check_underflow (ctx, 1))
3097                         return;
3098
3099                 top = stack_pop(ctx);
3100
3101                 if (!verify_stack_type_compatibility (ctx, ctx->signature->ret, top)) {
3102                         char *ret_type = mono_type_full_name (ctx->signature->ret);
3103                         char *stack_type = stack_slot_full_name (top);
3104                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible return value on stack with method signature, expected '%s' but got '%s' at 0x%04x", ret_type, stack_type, ctx->ip_offset));
3105                         g_free (stack_type);
3106                         g_free (ret_type);
3107                         return;
3108                 }
3109
3110                 if (ret->byref || ret->type == MONO_TYPE_TYPEDBYREF || mono_type_is_value_type (ret, "System", "ArgIterator") || mono_type_is_value_type (ret, "System", "RuntimeArgumentHandle"))
3111                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Method returns byref, TypedReference, ArgIterator or RuntimeArgumentHandle at 0x%04x", ctx->ip_offset));
3112         }
3113
3114         if (ctx->eval.size > 0) {
3115                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Stack not empty (%d) after ret at 0x%04x", ctx->eval.size, ctx->ip_offset));
3116         } 
3117         if (in_any_block (ctx->header, ctx->ip_offset))
3118                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("ret cannot escape exception blocks at 0x%04x", ctx->ip_offset));
3119 }
3120
3121 /*
3122  * FIXME we need to fix the case of a non-virtual instance method defined in the parent but call using a token pointing to a subclass.
3123  *      This is illegal but mono_get_method_full decoded it.
3124  * TODO handle calling .ctor outside one or calling the .ctor for other class but super  
3125  */
3126 static void
3127 do_invoke_method (VerifyContext *ctx, int method_token, gboolean virtual)
3128 {
3129         int param_count, i;
3130         MonoMethodSignature *sig;
3131         ILStackDesc *value;
3132         MonoMethod *method;
3133         gboolean virt_check_this = FALSE;
3134         gboolean constrained = ctx->prefix_set & PREFIX_CONSTRAINED;
3135
3136         if (!(method = verifier_load_method (ctx, method_token, virtual ? "callvirt" : "call")))
3137                 return;
3138
3139         if (virtual) {
3140                 CLEAR_PREFIX (ctx, PREFIX_CONSTRAINED);
3141
3142                 if (method->klass->valuetype) // && !constrained ???
3143                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use callvirtual with valuetype method at 0x%04x", ctx->ip_offset));
3144
3145                 if ((method->flags & METHOD_ATTRIBUTE_STATIC))
3146                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use callvirtual with static method at 0x%04x", ctx->ip_offset));
3147
3148         } else {
3149                 if (method->flags & METHOD_ATTRIBUTE_ABSTRACT) 
3150                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use call with an abstract method at 0x%04x", ctx->ip_offset));
3151                 
3152                 if ((method->flags & METHOD_ATTRIBUTE_VIRTUAL) && !(method->flags & METHOD_ATTRIBUTE_FINAL) && !(method->klass->flags & TYPE_ATTRIBUTE_SEALED)) {
3153                         virt_check_this = TRUE;
3154                         ctx->code [ctx->ip_offset].flags |= IL_CODE_CALL_NONFINAL_VIRTUAL;
3155                 }
3156         }
3157
3158         if (!(sig = mono_method_get_signature_full (method, ctx->image, method_token, ctx->generic_context)))
3159                 sig = mono_method_get_signature (method, ctx->image, method_token);
3160
3161         if (!sig) {
3162                 char *name = mono_type_get_full_name (method->klass);
3163                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Could not resolve signature of %s:%s at 0x%04x", name, method->name, ctx->ip_offset));
3164                 g_free (name);
3165                 return;
3166         }
3167
3168         param_count = sig->param_count + sig->hasthis;
3169         if (!check_underflow (ctx, param_count))
3170                 return;
3171
3172         for (i = sig->param_count - 1; i >= 0; --i) {
3173                 VERIFIER_DEBUG ( printf ("verifying argument %d\n", i); );
3174                 value = stack_pop (ctx);
3175                 if (!verify_stack_type_compatibility (ctx, sig->params[i], value)) {
3176                         char *stack_name = stack_slot_full_name (value);
3177                         char *sig_name = mono_type_full_name (sig->params [i]);
3178                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible parameter with function signature: Calling method with signature (%s) but for argument %d there is a (%s) on stack at 0x%04x", sig_name, i, stack_name, ctx->ip_offset));
3179                         g_free (stack_name);
3180                         g_free (sig_name);
3181                 }
3182
3183                 if (stack_slot_is_managed_mutability_pointer (value))
3184                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly pointer as argument of %s at 0x%04x", virtual ? "callvirt" : "call",  ctx->ip_offset));
3185
3186                 if ((ctx->prefix_set & PREFIX_TAIL) && stack_slot_is_managed_pointer (value)) {
3187                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Cannot  pass a byref argument to a tail %s at 0x%04x", virtual ? "callvirt" : "call",  ctx->ip_offset));
3188                         return;
3189                 }
3190         }
3191
3192         if (sig->hasthis) {
3193                 MonoType *type = &method->klass->byval_arg;
3194                 ILStackDesc copy;
3195
3196                 if (mono_method_is_constructor (method) && !method->klass->valuetype) {
3197                         if (IS_STRICT_MODE (ctx) && !mono_method_is_constructor (ctx->method))
3198                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot call a constructor outside one at 0x%04x", ctx->ip_offset));
3199                         if (IS_STRICT_MODE (ctx) && method->klass != ctx->method->klass->parent && method->klass != ctx->method->klass)
3200                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot call a constructor of a type different from this or super at 0x%04x", ctx->ip_offset));
3201
3202                         ctx->super_ctor_called = TRUE;
3203                         value = stack_pop_safe (ctx);
3204                         if (IS_STRICT_MODE (ctx) && (value->stype & THIS_POINTER_MASK) != THIS_POINTER_MASK)
3205                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid 'this ptr' argument for constructor at 0x%04x", ctx->ip_offset));
3206                 } else {
3207                         value = stack_pop (ctx);
3208                 }
3209                         
3210                 copy_stack_value (&copy, value);
3211                 //TODO we should extract this to a 'drop_byref_argument' and use everywhere
3212                 //Other parts of the code suffer from the same issue of 
3213                 copy.type = mono_type_get_type_byval (copy.type);
3214                 copy.stype &= ~POINTER_MASK;
3215
3216                 if (virt_check_this && !stack_slot_is_this_pointer (value) && !(method->klass->valuetype || stack_slot_is_boxed_value (value)))
3217                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use the call opcode with a non-final virtual method on an object different than the 'this' pointer at 0x%04x", ctx->ip_offset));
3218
3219                 if (constrained && virtual) {
3220                         if (!stack_slot_is_managed_pointer (value))
3221                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Object is not a managed pointer for a constrained call at 0x%04x", ctx->ip_offset));
3222                         if (!mono_metadata_type_equal_full (mono_type_get_type_byval (value->type), ctx->constrained_type, TRUE))
3223                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Object not compatible with constrained type at 0x%04x", ctx->ip_offset));
3224                         copy.stype |= BOXED_MASK;
3225                 } else {
3226                         if (stack_slot_is_managed_pointer (value) && !mono_class_from_mono_type (value->type)->valuetype)
3227                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot call a reference type using a managed pointer to the this arg at 0x%04x", ctx->ip_offset));
3228         
3229                         if (!virtual && mono_class_from_mono_type (value->type)->valuetype && !method->klass->valuetype && !stack_slot_is_boxed_value (value))
3230                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot call a valuetype baseclass at 0x%04x", ctx->ip_offset));
3231         
3232                         if (virtual && mono_class_from_mono_type (value->type)->valuetype && !stack_slot_is_boxed_value (value))
3233                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a valuetype with callvirt at 0x%04x", ctx->ip_offset));
3234         
3235                         if (method->klass->valuetype && (stack_slot_is_boxed_value (value) || !stack_slot_is_managed_pointer (value)))
3236                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a boxed or literal valuetype to call a valuetype method at 0x%04x", ctx->ip_offset));
3237                 }
3238                 if (!verify_stack_type_compatibility (ctx, type, &copy)) {
3239                         char *expected = mono_type_full_name (type);
3240                         char *effective = stack_slot_full_name (&copy);
3241                         char *method_name = mono_method_full_name (method, TRUE);
3242                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible this argument on stack with method signature expected '%s' but got '%s' for a call to '%s' at 0x%04x",
3243                                         expected, effective, method_name, ctx->ip_offset));
3244                         g_free (method_name);
3245                         g_free (effective);
3246                         g_free (expected);
3247                 }
3248
3249                 if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, mono_class_from_mono_type (value->type))) {
3250                         char *name = mono_method_full_name (method, TRUE);
3251                         CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Method %s is not accessible at 0x%04x", name, ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
3252                         g_free (name);
3253                 }
3254
3255         } else if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, NULL)) {
3256                 char *name = mono_method_full_name (method, TRUE);
3257                 CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Method %s is not accessible at 0x%04x", name, ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
3258                 g_free (name);
3259         }
3260
3261         if (sig->ret->type != MONO_TYPE_VOID) {
3262                 if (!mono_type_is_valid_in_context (ctx, sig->ret))
3263                         return;
3264
3265                 if (check_overflow (ctx)) {
3266                         value = stack_push (ctx);
3267                         set_stack_value (ctx, value, sig->ret, FALSE);
3268                         if ((ctx->prefix_set & PREFIX_READONLY) && method->klass->rank && !strcmp (method->name, "Address")) {
3269                                 ctx->prefix_set &= ~PREFIX_READONLY;
3270                                 value->stype |= CMMP_MASK;
3271                         }
3272                 }
3273         }
3274
3275         if ((ctx->prefix_set & PREFIX_TAIL)) {
3276                 if (!mono_delegate_ret_equal (mono_method_signature (ctx->method)->ret, sig->ret))
3277                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Tail call with incompatible return type at 0x%04x", ctx->ip_offset));
3278                 if (ctx->header->code [ctx->ip_offset + 5] != CEE_RET)
3279                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Tail call not followed by ret at 0x%04x", ctx->ip_offset));
3280         }
3281
3282 }
3283
3284 static void
3285 do_push_static_field (VerifyContext *ctx, int token, gboolean take_addr)
3286 {
3287         MonoClassField *field;
3288         MonoClass *klass;
3289         if (!check_overflow (ctx))
3290                 return;
3291         if (!take_addr)
3292                 CLEAR_PREFIX (ctx, PREFIX_VOLATILE);
3293
3294         if (!(field = verifier_load_field (ctx, token, &klass, take_addr ? "ldsflda" : "ldsfld")))
3295                 return;
3296
3297         if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) { 
3298                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Cannot load non static field at 0x%04x", ctx->ip_offset));
3299                 return;
3300         }
3301         /*taking the address of initonly field only works from the static constructor */
3302         if (take_addr && (field->type->attrs & FIELD_ATTRIBUTE_INIT_ONLY) &&
3303                 !(field->parent == ctx->method->klass && (ctx->method->flags & (METHOD_ATTRIBUTE_SPECIAL_NAME | METHOD_ATTRIBUTE_STATIC)) && !strcmp (".cctor", ctx->method->name)))
3304                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot take the address of a init-only field at 0x%04x", ctx->ip_offset));
3305
3306         if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_field_full (ctx->method, field, NULL))
3307                 CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Type at stack is not accessible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_FIELD_ACCESS);
3308
3309         set_stack_value (ctx, stack_push (ctx), field->type, take_addr);
3310 }
3311
3312 static void
3313 do_store_static_field (VerifyContext *ctx, int token) {
3314         MonoClassField *field;
3315         MonoClass *klass;
3316         ILStackDesc *value;
3317         CLEAR_PREFIX (ctx, PREFIX_VOLATILE);
3318
3319         if (!check_underflow (ctx, 1))
3320                 return;
3321
3322         value = stack_pop (ctx);
3323
3324         if (!(field = verifier_load_field (ctx, token, &klass, "stsfld")))
3325                 return;
3326
3327         if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) { 
3328                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Cannot store non static field at 0x%04x", ctx->ip_offset));
3329                 return;
3330         }
3331
3332         if (field->type->type == MONO_TYPE_TYPEDBYREF) {
3333                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Typedbyref field is an unverfiable type in store static field at 0x%04x", ctx->ip_offset));
3334                 return;
3335         }
3336
3337         if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_field_full (ctx->method, field, NULL))
3338                 CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Type at stack is not accessible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_FIELD_ACCESS);
3339
3340         if (!verify_stack_type_compatibility (ctx, field->type, value)) {
3341                 char *stack_name = stack_slot_full_name (value);
3342                 char *field_name = mono_type_full_name (field->type);
3343                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible type in static field store expected '%s' but found '%s' at 0x%04x",
3344                                 field_name, stack_name, ctx->ip_offset));
3345                 g_free (field_name);
3346                 g_free (stack_name);
3347         }
3348 }
3349
3350 static gboolean
3351 check_is_valid_type_for_field_ops (VerifyContext *ctx, int token, ILStackDesc *obj, MonoClassField **ret_field, const char *opcode)
3352 {
3353         MonoClassField *field;
3354         MonoClass *klass;
3355         gboolean is_pointer;
3356
3357         /*must be a reference type, a managed pointer, an unamanaged pointer, or a valuetype*/
3358         if (!(field = verifier_load_field (ctx, token, &klass, opcode)))
3359                 return FALSE;
3360
3361         *ret_field = field;
3362         //the value on stack is going to be used as a pointer
3363         is_pointer = stack_slot_get_type (obj) == TYPE_PTR || (stack_slot_get_type (obj) == TYPE_NATIVE_INT && !get_stack_type (&field->parent->byval_arg));
3364
3365         if (field->type->type == MONO_TYPE_TYPEDBYREF) {
3366                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Typedbyref field is an unverfiable type at 0x%04x", ctx->ip_offset));
3367                 return FALSE;
3368         }
3369         g_assert (obj->type);
3370
3371         /*The value on the stack must be a subclass of the defining type of the field*/ 
3372         /* we need to check if we can load the field from the stack value*/
3373         if (is_pointer) {
3374                 if (stack_slot_get_underlying_type (obj) == TYPE_NATIVE_INT)
3375                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Native int is not a verifiable type to reference a field at 0x%04x", ctx->ip_offset));
3376
3377                 if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_field_full (ctx->method, field, NULL))
3378                                 CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Type at stack is not accessible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_FIELD_ACCESS);
3379         } else {
3380                 if (!field->parent->valuetype && stack_slot_is_managed_pointer (obj))
3381                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type at stack is a managed pointer to a reference type and is not compatible to reference the field at 0x%04x", ctx->ip_offset));
3382
3383                 /*a value type can be loaded from a value or a managed pointer, but not a boxed object*/
3384                 if (field->parent->valuetype && stack_slot_is_boxed_value (obj))
3385                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type at stack is a boxed valuetype and is not compatible to reference the field at 0x%04x", ctx->ip_offset));
3386
3387                 if (!stack_slot_is_null_literal (obj) && !verify_stack_type_compatibility_full (ctx, &field->parent->byval_arg, obj, TRUE, FALSE)) {
3388                         char *found = stack_slot_full_name (obj);
3389                         char *expected = mono_type_full_name (&field->parent->byval_arg);
3390                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Expected type '%s' but found '%s' referencing the 'this' argument at 0x%04x", expected, found, ctx->ip_offset));
3391                         g_free (found);
3392                         g_free (expected);
3393                 }
3394
3395                 if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_field_full (ctx->method, field, mono_class_from_mono_type (obj->type)))
3396                         CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Type at stack is not accessible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_FIELD_ACCESS);
3397         } 
3398
3399         check_unmanaged_pointer (ctx, obj);
3400         return TRUE;
3401 }
3402
3403 static void
3404 do_push_field (VerifyContext *ctx, int token, gboolean take_addr)
3405 {
3406         ILStackDesc *obj;
3407         MonoClassField *field;
3408
3409         if (!take_addr)
3410                 CLEAR_PREFIX (ctx, PREFIX_UNALIGNED | PREFIX_VOLATILE);
3411
3412         if (!check_underflow (ctx, 1))
3413                 return;
3414         obj = stack_pop_safe (ctx);
3415
3416         if (!check_is_valid_type_for_field_ops (ctx, token, obj, &field, take_addr ? "ldflda" : "ldfld"))
3417                 return;
3418
3419         if (take_addr && field->parent->valuetype && !stack_slot_is_managed_pointer (obj))
3420                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot take the address of a temporary value-type at 0x%04x", ctx->ip_offset));
3421
3422         if (take_addr && (field->type->attrs & FIELD_ATTRIBUTE_INIT_ONLY) &&
3423                 !(field->parent == ctx->method->klass && mono_method_is_constructor (ctx->method)))
3424                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot take the address of a init-only field at 0x%04x", ctx->ip_offset));
3425
3426         set_stack_value (ctx, stack_push (ctx), field->type, take_addr);
3427 }
3428
3429 static void
3430 do_store_field (VerifyContext *ctx, int token)
3431 {
3432         ILStackDesc *value, *obj;
3433         MonoClassField *field;
3434         CLEAR_PREFIX (ctx, PREFIX_UNALIGNED | PREFIX_VOLATILE);
3435
3436         if (!check_underflow (ctx, 2))
3437                 return;
3438
3439         value = stack_pop (ctx);
3440         obj = stack_pop_safe (ctx);
3441
3442         if (!check_is_valid_type_for_field_ops (ctx, token, obj, &field, "stfld"))
3443                 return;
3444
3445         if (!verify_stack_type_compatibility (ctx, field->type, value))
3446                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible type %s in field store at 0x%04x", stack_slot_get_name (value), ctx->ip_offset));      
3447 }
3448
3449 /*TODO proper handle for Nullable<T>*/
3450 static void
3451 do_box_value (VerifyContext *ctx, int klass_token)
3452 {
3453         ILStackDesc *value;
3454         MonoType *type = get_boxable_mono_type (ctx, klass_token, "box");
3455         MonoClass *klass;       
3456
3457         if (!type)
3458                 return;
3459
3460         if (!check_underflow (ctx, 1))
3461                 return;
3462
3463         value = stack_pop (ctx);
3464         /*box is a nop for reference types*/
3465
3466         if (stack_slot_get_underlying_type (value) == TYPE_COMPLEX && MONO_TYPE_IS_REFERENCE (value->type) && MONO_TYPE_IS_REFERENCE (type)) {
3467                 stack_push_stack_val (ctx, value)->stype |= BOXED_MASK;
3468                 return;
3469         }
3470
3471
3472         if (!verify_stack_type_compatibility (ctx, type, value))
3473                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type at stack for boxing operation at 0x%04x", ctx->ip_offset));
3474
3475         klass = mono_class_from_mono_type (type);
3476         if (mono_class_is_nullable (klass))
3477                 type = &mono_class_get_nullable_param (klass)->byval_arg;
3478         stack_push_val (ctx, TYPE_COMPLEX | BOXED_MASK, type);
3479 }
3480
3481 static void
3482 do_unbox_value (VerifyContext *ctx, int klass_token)
3483 {
3484         ILStackDesc *value;
3485         MonoType *type = get_boxable_mono_type (ctx, klass_token, "unbox");
3486
3487         if (!type)
3488                 return;
3489  
3490         if (!check_underflow (ctx, 1))
3491                 return;
3492
3493         if (!mono_class_from_mono_type (type)->valuetype)
3494                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid reference type for unbox at 0x%04x", ctx->ip_offset));
3495
3496         value = stack_pop (ctx);
3497
3498         /*Value should be: a boxed valuetype or a reference type*/
3499         if (!(stack_slot_get_type (value) == TYPE_COMPLEX &&
3500                 (stack_slot_is_boxed_value (value) || !mono_class_from_mono_type (value->type)->valuetype)))
3501                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type %s at stack for unbox operation at 0x%04x", stack_slot_get_name (value), ctx->ip_offset));
3502
3503         set_stack_value (ctx, value = stack_push (ctx), mono_type_get_type_byref (type), FALSE);
3504         value->stype |= CMMP_MASK;
3505 }
3506
3507 static void
3508 do_unbox_any (VerifyContext *ctx, int klass_token)
3509 {
3510         ILStackDesc *value;
3511         MonoType *type = get_boxable_mono_type (ctx, klass_token, "unbox.any");
3512
3513         if (!type)
3514                 return;
3515  
3516         if (!check_underflow (ctx, 1))
3517                 return;
3518
3519         value = stack_pop (ctx);
3520
3521         /*Value should be: a boxed valuetype or a reference type*/
3522         if (!(stack_slot_get_type (value) == TYPE_COMPLEX &&
3523                 (stack_slot_is_boxed_value (value) || !mono_class_from_mono_type (value->type)->valuetype)))
3524                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type %s at stack for unbox.any operation at 0x%04x", stack_slot_get_name (value), ctx->ip_offset));
3525  
3526         set_stack_value (ctx, stack_push (ctx), type, FALSE);
3527 }
3528
3529 static void
3530 do_unary_math_op (VerifyContext *ctx, int op)
3531 {
3532         ILStackDesc *value;
3533         if (!check_underflow (ctx, 1))
3534                 return;
3535         value = stack_pop (ctx);
3536         switch (stack_slot_get_type (value)) {
3537         case TYPE_I4:
3538         case TYPE_I8:
3539         case TYPE_NATIVE_INT:
3540                 break;
3541         case TYPE_R8:
3542                 if (op == CEE_NEG)
3543                         break;
3544         case TYPE_COMPLEX: /*only enums are ok*/
3545                 if (mono_type_is_enum_type (value->type))
3546                         break;
3547         default:
3548                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type at stack for unary not at 0x%04x", ctx->ip_offset));
3549         }
3550         stack_push_stack_val (ctx, value);
3551 }
3552
3553 static void
3554 do_conversion (VerifyContext *ctx, int kind) 
3555 {
3556         ILStackDesc *value;
3557         if (!check_underflow (ctx, 1))
3558                 return;
3559         value = stack_pop (ctx);
3560
3561         switch (stack_slot_get_type (value)) {
3562         case TYPE_I4:
3563         case TYPE_I8:
3564         case TYPE_NATIVE_INT:
3565         case TYPE_R8:
3566                 break;
3567         default:
3568                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type (%s) at stack for conversion operation. Numeric type expected at 0x%04x", stack_slot_get_name (value), ctx->ip_offset));
3569         }
3570
3571         switch (kind) {
3572         case TYPE_I4:
3573                 stack_push_val (ctx, TYPE_I4, &mono_defaults.int32_class->byval_arg);
3574                 break;
3575         case TYPE_I8:
3576                 stack_push_val (ctx,TYPE_I8, &mono_defaults.int64_class->byval_arg);
3577                 break;
3578         case TYPE_R8:
3579                 stack_push_val (ctx, TYPE_R8, &mono_defaults.double_class->byval_arg);
3580                 break;
3581         case TYPE_NATIVE_INT:
3582                 stack_push_val (ctx, TYPE_NATIVE_INT, &mono_defaults.int_class->byval_arg);
3583                 break;
3584         default:
3585                 g_error ("unknown type %02x in conversion", kind);
3586
3587         }
3588 }
3589
3590 static void
3591 do_load_token (VerifyContext *ctx, int token) 
3592 {
3593         gpointer handle;
3594         MonoClass *handle_class;
3595         if (!check_overflow (ctx))
3596                 return;
3597
3598         if (ctx->method->wrapper_type != MONO_WRAPPER_NONE) {
3599                 handle = mono_method_get_wrapper_data (ctx->method, token);
3600                 handle_class = mono_method_get_wrapper_data (ctx->method, token + 1);
3601                 if (handle_class == mono_defaults.typehandle_class)
3602                         handle = &((MonoClass*)handle)->byval_arg;
3603         } else {
3604                 switch (token & 0xff000000) {
3605                 case MONO_TOKEN_TYPE_DEF:
3606                 case MONO_TOKEN_TYPE_REF:
3607                 case MONO_TOKEN_TYPE_SPEC:
3608                 case MONO_TOKEN_FIELD_DEF:
3609                 case MONO_TOKEN_METHOD_DEF:
3610                 case MONO_TOKEN_METHOD_SPEC:
3611                 case MONO_TOKEN_MEMBER_REF:
3612                         if (!token_bounds_check (ctx->image, token)) {
3613                                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Table index out of range 0x%x for token %x for ldtoken at 0x%04x", mono_metadata_token_index (token), token, ctx->ip_offset));
3614                                 return;
3615                         }
3616                         break;
3617                 default:
3618                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid table 0x%x for token 0x%x for ldtoken at 0x%04x", mono_metadata_token_table (token), token, ctx->ip_offset));
3619                         return;
3620                 }
3621
3622                 handle = mono_ldtoken (ctx->image, token, &handle_class, ctx->generic_context);
3623         }
3624
3625         if (!handle) {
3626                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid token 0x%x for ldtoken at 0x%04x", token, ctx->ip_offset));
3627                 return;
3628         }
3629         if (handle_class == mono_defaults.typehandle_class) {
3630                 mono_type_is_valid_in_context (ctx, (MonoType*)handle);
3631         } else if (handle_class == mono_defaults.methodhandle_class) {
3632                 mono_method_is_valid_in_context (ctx, (MonoMethod*)handle);             
3633         } else if (handle_class == mono_defaults.fieldhandle_class) {
3634                 mono_type_is_valid_in_context (ctx, &((MonoClassField*)handle)->parent->byval_arg);                             
3635         } else {
3636                 ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid ldtoken type %x at 0x%04x", token, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
3637         }
3638         stack_push_val (ctx, TYPE_COMPLEX, mono_class_get_type (handle_class));
3639 }
3640
3641 static void
3642 do_ldobj_value (VerifyContext *ctx, int token) 
3643 {
3644         ILStackDesc *value;
3645         MonoType *type = get_boxable_mono_type (ctx, token, "ldobj");
3646         CLEAR_PREFIX (ctx, PREFIX_UNALIGNED | PREFIX_VOLATILE);
3647
3648         if (!type)
3649                 return;
3650
3651         if (!check_underflow (ctx, 1))
3652                 return;
3653
3654         value = stack_pop (ctx);
3655         if (!stack_slot_is_managed_pointer (value) 
3656                         && stack_slot_get_type (value) != TYPE_NATIVE_INT
3657                         && !(stack_slot_get_type (value) == TYPE_PTR && value->type->type != MONO_TYPE_FNPTR)) {
3658                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid argument %s to ldobj at 0x%04x", stack_slot_get_name (value), ctx->ip_offset));
3659                 return;
3660         }
3661
3662         if (stack_slot_get_type (value) == TYPE_NATIVE_INT)
3663                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Using native pointer to ldobj at 0x%04x", ctx->ip_offset));
3664
3665         /*We have a byval on the stack, but the comparison must be strict. */
3666         if (!verify_type_compatibility_full (ctx, type, mono_type_get_type_byval (value->type), TRUE))
3667                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type at stack for ldojb operation at 0x%04x", ctx->ip_offset));
3668
3669         set_stack_value (ctx, stack_push (ctx), type, FALSE);
3670 }
3671
3672 static void
3673 do_stobj (VerifyContext *ctx, int token) 
3674 {
3675         ILStackDesc *dest, *src;
3676         MonoType *type = get_boxable_mono_type (ctx, token, "stobj");
3677         CLEAR_PREFIX (ctx, PREFIX_UNALIGNED | PREFIX_VOLATILE);
3678
3679         if (!type)
3680                 return;
3681
3682         if (!check_underflow (ctx, 2))
3683                 return;
3684
3685         src = stack_pop (ctx);
3686         dest = stack_pop (ctx);
3687
3688         if (stack_slot_is_managed_mutability_pointer (dest))
3689                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly pointer with stobj at 0x%04x", ctx->ip_offset));
3690
3691         if (!stack_slot_is_managed_pointer (dest)) 
3692                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid destination of stobj operation at 0x%04x", ctx->ip_offset));
3693
3694         if (stack_slot_is_boxed_value (src) && !MONO_TYPE_IS_REFERENCE (src->type) && !MONO_TYPE_IS_REFERENCE (type))
3695                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use stobj with a boxed source value that is not a reference type at 0x%04x", ctx->ip_offset));
3696
3697         if (!verify_stack_type_compatibility (ctx, type, src)) {
3698                 char *type_name = mono_type_full_name (type);
3699                 char *src_name = stack_slot_full_name (src);
3700                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Token '%s' and source '%s' of stobj don't match ' at 0x%04x", type_name, src_name, ctx->ip_offset));
3701                 g_free (type_name);
3702                 g_free (src_name);
3703         }
3704
3705         if (!verify_type_compatibility (ctx, mono_type_get_type_byval (dest->type), type))
3706                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Destination and token types of stobj don't match at 0x%04x", ctx->ip_offset));
3707 }
3708
3709 static void
3710 do_cpobj (VerifyContext *ctx, int token)
3711 {
3712         ILStackDesc *dest, *src;
3713         MonoType *type = get_boxable_mono_type (ctx, token, "cpobj");
3714         if (!type)
3715                 return;
3716
3717         if (!check_underflow (ctx, 2))
3718                 return;
3719
3720         src = stack_pop (ctx);
3721         dest = stack_pop (ctx);
3722
3723         if (!stack_slot_is_managed_pointer (src)) 
3724                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid source of cpobj operation at 0x%04x", ctx->ip_offset));
3725
3726         if (!stack_slot_is_managed_pointer (dest)) 
3727                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid destination of cpobj operation at 0x%04x", ctx->ip_offset));
3728
3729         if (stack_slot_is_managed_mutability_pointer (dest))
3730                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly pointer with cpobj at 0x%04x", ctx->ip_offset));
3731
3732         if (!verify_type_compatibility (ctx, type, mono_type_get_type_byval (src->type)))
3733                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Token and source types of cpobj don't match at 0x%04x", ctx->ip_offset));
3734
3735         if (!verify_type_compatibility (ctx, mono_type_get_type_byval (dest->type), type))
3736                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Destination and token types of cpobj don't match at 0x%04x", ctx->ip_offset));
3737 }
3738
3739 static void
3740 do_initobj (VerifyContext *ctx, int token)
3741 {
3742         ILStackDesc *obj;
3743         MonoType *stack, *type = get_boxable_mono_type (ctx, token, "initobj");
3744         if (!type)
3745                 return;
3746
3747         if (!check_underflow (ctx, 1))
3748                 return;
3749
3750         obj = stack_pop (ctx);
3751
3752         if (!stack_slot_is_managed_pointer (obj)) 
3753                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid object address for initobj at 0x%04x", ctx->ip_offset));
3754
3755         if (stack_slot_is_managed_mutability_pointer (obj))
3756                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly pointer with initobj at 0x%04x", ctx->ip_offset));
3757
3758         stack = mono_type_get_type_byval (obj->type);
3759         if (MONO_TYPE_IS_REFERENCE (stack)) {
3760                 if (!verify_type_compatibility (ctx, stack, type)) 
3761                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type token of initobj not compatible with value on stack at 0x%04x", ctx->ip_offset));
3762                 else if (IS_STRICT_MODE (ctx) && !mono_metadata_type_equal (type, stack)) 
3763                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type token of initobj not compatible with value on stack at 0x%04x", ctx->ip_offset));
3764         } else if (!verify_type_compatibility (ctx, stack, type)) {
3765                 char *expected_name = mono_type_full_name (type);
3766                 char *stack_name = mono_type_full_name (stack);
3767
3768                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Initobj %s not compatible with value on stack %s at 0x%04x", expected_name, stack_name, ctx->ip_offset));
3769                 g_free (expected_name);
3770                 g_free (stack_name);
3771         }
3772 }
3773
3774 static void
3775 do_newobj (VerifyContext *ctx, int token) 
3776 {
3777         ILStackDesc *value;
3778         int i;
3779         MonoMethodSignature *sig;
3780         MonoMethod *method;
3781         gboolean is_delegate = FALSE;
3782
3783         if (!(method = verifier_load_method (ctx, token, "newobj")))
3784                 return;
3785
3786         if (!mono_method_is_constructor (method)) {
3787                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Method from token 0x%08x not a constructor at 0x%04x", token, ctx->ip_offset));
3788                 return;
3789         }
3790
3791         if (method->klass->flags & (TYPE_ATTRIBUTE_ABSTRACT | TYPE_ATTRIBUTE_INTERFACE))
3792                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Trying to instantiate an abstract or interface type at 0x%04x", ctx->ip_offset));
3793
3794         if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, NULL)) {
3795                 char *from = mono_method_full_name (ctx->method, TRUE);
3796                 char *to = mono_method_full_name (method, TRUE);
3797                 CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Constructor %s not visible from %s at 0x%04x", to, from, ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
3798                 g_free (from);
3799                 g_free (to);
3800         }
3801
3802         //FIXME use mono_method_get_signature_full
3803         sig = mono_method_signature (method);
3804         if (!sig) {
3805                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid constructor signature to newobj at 0x%04x", ctx->ip_offset));
3806                 return;
3807         }
3808
3809         if (!sig->hasthis) {
3810                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid constructor signature missing hasthis at 0x%04x", ctx->ip_offset));
3811                 return;
3812         }
3813
3814         if (!check_underflow (ctx, sig->param_count))
3815                 return;
3816
3817         is_delegate = method->klass->parent == mono_defaults.multicastdelegate_class;
3818
3819         if (is_delegate) {
3820                 ILStackDesc *funptr;
3821                 //first arg is object, second arg is fun ptr
3822                 if (sig->param_count != 2) {
3823                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid delegate constructor at 0x%04x", ctx->ip_offset));
3824                         return;
3825                 }
3826                 funptr = stack_pop (ctx);
3827                 value = stack_pop (ctx);
3828                 verify_delegate_compatibility (ctx, method->klass, value, funptr);
3829         } else {
3830                 for (i = sig->param_count - 1; i >= 0; --i) {
3831                         VERIFIER_DEBUG ( printf ("verifying constructor argument %d\n", i); );
3832                         value = stack_pop (ctx);
3833                         if (!verify_stack_type_compatibility (ctx, sig->params [i], value)) {
3834                                 char *stack_name = stack_slot_full_name (value);
3835                                 char *sig_name = mono_type_full_name (sig->params [i]);
3836                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible parameter value with constructor signature: %s X %s at 0x%04x", sig_name, stack_name, ctx->ip_offset));
3837                                 g_free (stack_name);
3838                                 g_free (sig_name);
3839                         }
3840
3841                         if (stack_slot_is_managed_mutability_pointer (value))
3842                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly pointer as argument of newobj at 0x%04x", ctx->ip_offset));
3843                 }
3844         }
3845
3846         if (check_overflow (ctx))
3847                 set_stack_value (ctx, stack_push (ctx),  &method->klass->byval_arg, FALSE);
3848 }
3849
3850 static void
3851 do_cast (VerifyContext *ctx, int token, const char *opcode) {
3852         ILStackDesc *value;
3853         MonoType *type;
3854         gboolean is_boxed;
3855         gboolean do_box;
3856
3857         if (!check_underflow (ctx, 1))
3858                 return;
3859
3860         if (!(type = get_boxable_mono_type (ctx, token, opcode)))
3861                 return;
3862
3863         if (type->byref) {
3864                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid %s type at 0x%04x", opcode, ctx->ip_offset));
3865                 return;
3866         }
3867
3868         value = stack_pop (ctx);
3869         is_boxed = stack_slot_is_boxed_value (value);
3870
3871         if (stack_slot_is_managed_pointer (value))
3872                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid value for %s at 0x%04x", opcode, ctx->ip_offset));
3873         else if (!MONO_TYPE_IS_REFERENCE  (value->type) && !is_boxed) {
3874                 char *name = stack_slot_full_name (value);
3875                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Expected a reference type on stack for %s but found %s at 0x%04x", opcode, name, ctx->ip_offset));
3876                 g_free (name);
3877         }
3878
3879         switch (value->type->type) {
3880         case MONO_TYPE_FNPTR:
3881         case MONO_TYPE_PTR:
3882         case MONO_TYPE_TYPEDBYREF: 
3883                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid value for %s at 0x%04x", opcode, ctx->ip_offset));
3884         }
3885
3886         do_box = is_boxed || mono_type_is_generic_argument(type) || mono_class_from_mono_type (type)->valuetype;
3887         stack_push_val (ctx, TYPE_COMPLEX | (do_box ? BOXED_MASK : 0), type);
3888 }
3889
3890 static MonoType *
3891 mono_type_from_opcode (int opcode) {
3892         switch (opcode) {
3893         case CEE_LDIND_I1:
3894         case CEE_LDIND_U1:
3895         case CEE_STIND_I1:
3896         case CEE_LDELEM_I1:
3897         case CEE_LDELEM_U1:
3898         case CEE_STELEM_I1:
3899                 return &mono_defaults.sbyte_class->byval_arg;
3900
3901         case CEE_LDIND_I2:
3902         case CEE_LDIND_U2:
3903         case CEE_STIND_I2:
3904         case CEE_LDELEM_I2:
3905         case CEE_LDELEM_U2:
3906         case CEE_STELEM_I2:
3907                 return &mono_defaults.int16_class->byval_arg;
3908
3909         case CEE_LDIND_I4:
3910         case CEE_LDIND_U4:
3911         case CEE_STIND_I4:
3912         case CEE_LDELEM_I4:
3913         case CEE_LDELEM_U4:
3914         case CEE_STELEM_I4:
3915                 return &mono_defaults.int32_class->byval_arg;
3916
3917         case CEE_LDIND_I8:
3918         case CEE_STIND_I8:
3919         case CEE_LDELEM_I8:
3920         case CEE_STELEM_I8:
3921                 return &mono_defaults.int64_class->byval_arg;
3922
3923         case CEE_LDIND_R4:
3924         case CEE_STIND_R4:
3925         case CEE_LDELEM_R4:
3926         case CEE_STELEM_R4:
3927                 return &mono_defaults.single_class->byval_arg;
3928
3929         case CEE_LDIND_R8:
3930         case CEE_STIND_R8:
3931         case CEE_LDELEM_R8:
3932         case CEE_STELEM_R8:
3933                 return &mono_defaults.double_class->byval_arg;
3934
3935         case CEE_LDIND_I:
3936         case CEE_STIND_I:
3937         case CEE_LDELEM_I:
3938         case CEE_STELEM_I:
3939                 return &mono_defaults.int_class->byval_arg;
3940
3941         case CEE_LDIND_REF:
3942         case CEE_STIND_REF:
3943         case CEE_LDELEM_REF:
3944         case CEE_STELEM_REF:
3945                 return &mono_defaults.object_class->byval_arg;
3946
3947         default:
3948                 g_error ("unknown opcode %02x in mono_type_from_opcode ", opcode);
3949                 return NULL;
3950         }
3951 }
3952
3953 static void
3954 do_load_indirect (VerifyContext *ctx, int opcode)
3955 {
3956         ILStackDesc *value;
3957         CLEAR_PREFIX (ctx, PREFIX_UNALIGNED | PREFIX_VOLATILE);
3958
3959         if (!check_underflow (ctx, 1))
3960                 return;
3961         
3962         value = stack_pop (ctx);
3963         if (!stack_slot_is_managed_pointer (value)) {
3964                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Load indirect not using a manager pointer at 0x%04x", ctx->ip_offset));
3965                 set_stack_value (ctx, stack_push (ctx), mono_type_from_opcode (opcode), FALSE);
3966                 return;
3967         }
3968
3969         if (opcode == CEE_LDIND_REF) {
3970                 if (stack_slot_get_underlying_type (value) != TYPE_COMPLEX || mono_class_from_mono_type (value->type)->valuetype)
3971                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type at stack for ldind_ref expected object byref operation at 0x%04x", ctx->ip_offset));
3972                 set_stack_value (ctx, stack_push (ctx), mono_type_get_type_byval (value->type), FALSE);
3973         } else {
3974                 if (!verify_type_compatibility_full (ctx, mono_type_from_opcode (opcode), mono_type_get_type_byval (value->type), TRUE))
3975                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type at stack for ldind 0x%x operation at 0x%04x", opcode, ctx->ip_offset));
3976                 set_stack_value (ctx, stack_push (ctx), mono_type_from_opcode (opcode), FALSE);
3977         }
3978 }
3979
3980 static void
3981 do_store_indirect (VerifyContext *ctx, int opcode)
3982 {
3983         ILStackDesc *addr, *val;
3984         CLEAR_PREFIX (ctx, PREFIX_UNALIGNED | PREFIX_VOLATILE);
3985
3986         if (!check_underflow (ctx, 2))
3987                 return;
3988
3989         val = stack_pop (ctx);
3990         addr = stack_pop (ctx); 
3991
3992         check_unmanaged_pointer (ctx, addr);
3993
3994         if (!stack_slot_is_managed_pointer (addr) && stack_slot_get_type (addr) != TYPE_PTR) {
3995                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid non-pointer argument to stind at 0x%04x", ctx->ip_offset));
3996                 return;
3997         }
3998
3999         if (stack_slot_is_managed_mutability_pointer (addr)) {
4000                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly pointer with stind at 0x%04x", ctx->ip_offset));
4001                 return;
4002         }
4003
4004         if (!verify_type_compatibility_full (ctx, mono_type_from_opcode (opcode), mono_type_get_type_byval (addr->type), TRUE))
4005                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid addr type at stack for stind 0x%x operation at 0x%04x", opcode, ctx->ip_offset));
4006
4007         if (!verify_stack_type_compatibility (ctx, mono_type_from_opcode (opcode), val))
4008                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid value type at stack for stind 0x%x operation at 0x%04x", opcode, ctx->ip_offset));
4009 }
4010
4011 static void
4012 do_newarr (VerifyContext *ctx, int token) 
4013 {
4014         ILStackDesc *value;
4015         MonoType *type = get_boxable_mono_type (ctx, token, "newarr");
4016
4017         if (!type)
4018                 return;
4019
4020         if (!check_underflow (ctx, 1))
4021                 return;
4022
4023         value = stack_pop (ctx);
4024         if (stack_slot_get_type (value) != TYPE_I4 && stack_slot_get_type (value) != TYPE_NATIVE_INT)
4025                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Array size type on stack (%s) is not a verifiable type at 0x%04x", stack_slot_get_name (value), ctx->ip_offset));
4026
4027         set_stack_value (ctx, stack_push (ctx), mono_class_get_type (mono_array_class_get (mono_class_from_mono_type (type), 1)), FALSE);
4028 }
4029
4030 /*FIXME handle arrays that are not 0-indexed*/
4031 static void
4032 do_ldlen (VerifyContext *ctx)
4033 {
4034         ILStackDesc *value;
4035
4036         if (!check_underflow (ctx, 1))
4037                 return;
4038
4039         value = stack_pop (ctx);
4040
4041         if (stack_slot_get_type (value) != TYPE_COMPLEX || value->type->type != MONO_TYPE_SZARRAY)
4042                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid array type for ldlen at 0x%04x", ctx->ip_offset));
4043
4044         stack_push_val (ctx, TYPE_NATIVE_INT, &mono_defaults.int_class->byval_arg);     
4045 }
4046
4047 /*FIXME handle arrays that are not 0-indexed*/
4048 /*FIXME handle readonly prefix and CMMP*/
4049 static void
4050 do_ldelema (VerifyContext *ctx, int klass_token)
4051 {
4052         ILStackDesc *index, *array, *res;
4053         MonoType *type = get_boxable_mono_type (ctx, klass_token, "ldelema");
4054         gboolean valid; 
4055
4056         if (!type)
4057                 return;
4058
4059         if (!check_underflow (ctx, 2))
4060                 return;
4061
4062         index = stack_pop (ctx);
4063         array = stack_pop (ctx);
4064
4065         if (stack_slot_get_type (index) != TYPE_I4 && stack_slot_get_type (index) != TYPE_NATIVE_INT)
4066                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Index type(%s) for ldelema is not an int or a native int at 0x%04x", stack_slot_get_name (index), ctx->ip_offset));
4067
4068         if (!stack_slot_is_null_literal (array)) {
4069                 if (stack_slot_get_type (array) != TYPE_COMPLEX || array->type->type != MONO_TYPE_SZARRAY)
4070                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid array type(%s) for ldelema at 0x%04x", stack_slot_get_name (array), ctx->ip_offset));
4071                 else {
4072                         if (get_stack_type (type) == TYPE_I4 || get_stack_type (type) == TYPE_NATIVE_INT) {
4073                                         valid = verify_type_compatibility_full (ctx, type, &array->type->data.klass->byval_arg, TRUE);
4074                         } else {
4075                                 valid = mono_metadata_type_equal (type, &array->type->data.klass->byval_arg);
4076                         }
4077                         if (!valid)
4078                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid array type on stack for ldelema at 0x%04x", ctx->ip_offset));
4079                 }
4080         }
4081
4082         res = stack_push (ctx);
4083         set_stack_value (ctx, res, type, TRUE);
4084         if (ctx->prefix_set & PREFIX_READONLY) {
4085                 ctx->prefix_set &= ~PREFIX_READONLY;
4086                 res->stype |= CMMP_MASK;
4087         }
4088 }
4089
4090 /*
4091  * FIXME handle arrays that are not 0-indexed
4092  * FIXME handle readonly prefix and CMMP
4093  */
4094 static void
4095 do_ldelem (VerifyContext *ctx, int opcode, int token)
4096 {
4097 #define IS_ONE_OF2(T, A, B) (T == A || T == B)
4098         ILStackDesc *index, *array;
4099         MonoType *type;
4100         if (!check_underflow (ctx, 2))
4101                 return;
4102
4103         if (opcode == CEE_LDELEM) {
4104                 if (!(type = verifier_load_type (ctx, token, "ldelem.any"))) {
4105                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Type (0x%08x) not found at 0x%04x", token, ctx->ip_offset));
4106                         return;
4107                 }
4108         } else {
4109                 type = mono_type_from_opcode (opcode);
4110         }
4111
4112         index = stack_pop (ctx);
4113         array = stack_pop (ctx);
4114
4115         if (stack_slot_get_type (index) != TYPE_I4 && stack_slot_get_type (index) != TYPE_NATIVE_INT)
4116                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Index type(%s) for ldelem.X is not an int or a native int at 0x%04x", stack_slot_get_name (index), ctx->ip_offset));
4117
4118         if (!stack_slot_is_null_literal (array)) {
4119                 if (stack_slot_get_type (array) != TYPE_COMPLEX || array->type->type != MONO_TYPE_SZARRAY)
4120                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid array type(%s) for ldelem.X at 0x%04x", stack_slot_get_name (array), ctx->ip_offset));
4121                 else {
4122                         if (opcode == CEE_LDELEM_REF) {
4123                                 if (array->type->data.klass->valuetype)
4124                                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid array type is not a reference type for ldelem.ref 0x%04x", ctx->ip_offset));
4125                                 type = &array->type->data.klass->byval_arg;
4126                         } else {
4127                                 MonoType *candidate = &array->type->data.klass->byval_arg;
4128                                 if (IS_STRICT_MODE (ctx)) {
4129                                         MonoType *underlying_type = mono_type_get_underlying_type_any (type);
4130                                         MonoType *underlying_candidate = mono_type_get_underlying_type_any (candidate);
4131                                         if ((IS_ONE_OF2 (underlying_type->type, MONO_TYPE_I4, MONO_TYPE_U4) && IS_ONE_OF2 (underlying_candidate->type, MONO_TYPE_I, MONO_TYPE_U)) ||
4132                                                 (IS_ONE_OF2 (underlying_candidate->type, MONO_TYPE_I4, MONO_TYPE_U4) && IS_ONE_OF2 (underlying_type->type, MONO_TYPE_I, MONO_TYPE_U)))
4133                                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid array type on stack for ldelem.X at 0x%04x", ctx->ip_offset));
4134                                 }
4135                                 if (!verify_type_compatibility_full (ctx, type, candidate, TRUE))
4136                                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid array type on stack for ldelem.X at 0x%04x", ctx->ip_offset));
4137                         }
4138                 }
4139         }
4140
4141         set_stack_value (ctx, stack_push (ctx), type, FALSE);
4142 #undef IS_ONE_OF2
4143 }
4144
4145 /*
4146  * FIXME handle arrays that are not 0-indexed
4147  */
4148 static void
4149 do_stelem (VerifyContext *ctx, int opcode, int token)
4150 {
4151         ILStackDesc *index, *array, *value;
4152         MonoType *type;
4153         if (!check_underflow (ctx, 3))
4154                 return;
4155
4156         if (opcode == CEE_STELEM) {
4157                 if (!(type = verifier_load_type (ctx, token, "stelem.any"))) {
4158                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Type (0x%08x) not found at 0x%04x", token, ctx->ip_offset));
4159                         return;
4160                 }
4161         } else {
4162                 type = mono_type_from_opcode (opcode);
4163         }
4164         
4165         value = stack_pop (ctx);
4166         index = stack_pop (ctx);
4167         array = stack_pop (ctx);
4168
4169         if (stack_slot_get_type (index) != TYPE_I4 && stack_slot_get_type (index) != TYPE_NATIVE_INT)
4170                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Index type(%s) for stdelem.X is not an int or a native int at 0x%04x", stack_slot_get_name (index), ctx->ip_offset));
4171
4172         if (!stack_slot_is_null_literal (array)) {
4173                 if (stack_slot_get_type (array) != TYPE_COMPLEX || array->type->type != MONO_TYPE_SZARRAY) {
4174                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid array type(%s) for stelem.X at 0x%04x", stack_slot_get_name (array), ctx->ip_offset));
4175                 } else {
4176                         if (opcode == CEE_STELEM_REF) {
4177                                 if (array->type->data.klass->valuetype)
4178                                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid array type is not a reference type for stelem.ref 0x%04x", ctx->ip_offset));
4179                         } else if (!verify_type_compatibility_full (ctx, &array->type->data.klass->byval_arg, type, TRUE)) {
4180                                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid array type on stack for stdelem.X at 0x%04x", ctx->ip_offset));
4181                         }
4182                 }
4183         }
4184         if (opcode == CEE_STELEM_REF) {
4185                 if (!stack_slot_is_boxed_value (value) && mono_class_from_mono_type (value->type)->valuetype)
4186                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid value is not a reference type for stelem.ref 0x%04x", ctx->ip_offset));
4187         } else if (opcode != CEE_STELEM_REF) {
4188                 if (!verify_stack_type_compatibility (ctx, type, value))
4189                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid value on stack for stdelem.X at 0x%04x", ctx->ip_offset));
4190
4191                 if (stack_slot_is_boxed_value (value) && !MONO_TYPE_IS_REFERENCE (value->type) && !MONO_TYPE_IS_REFERENCE (type))
4192                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use stobj with a boxed source value that is not a reference type at 0x%04x", ctx->ip_offset));
4193
4194         }
4195 }
4196
4197 static void
4198 do_throw (VerifyContext *ctx)
4199 {
4200         ILStackDesc *exception;
4201         if (!check_underflow (ctx, 1))
4202                 return;
4203         exception = stack_pop (ctx);
4204
4205         if (!stack_slot_is_null_literal (exception) && !(stack_slot_get_type (exception) == TYPE_COMPLEX && !mono_class_from_mono_type (exception->type)->valuetype))
4206                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type on stack for throw, expected reference type at 0x%04x", ctx->ip_offset));
4207
4208         if (mono_type_is_generic_argument (exception->type) && !stack_slot_is_boxed_value (exception)) {
4209                 char *name = mono_type_full_name (exception->type);
4210                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type on stack for throw, expected reference type but found unboxed %s  at 0x%04x ", name, ctx->ip_offset));
4211                 g_free (name);
4212         }
4213         /*The stack is left empty after a throw*/
4214         ctx->eval.size = 0;
4215 }
4216
4217
4218 static void
4219 do_endfilter (VerifyContext *ctx)
4220 {
4221         MonoExceptionClause *clause;
4222
4223         if (IS_STRICT_MODE (ctx)) {
4224                 if (ctx->eval.size != 1)
4225                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Stack size must have one item for endfilter at 0x%04x", ctx->ip_offset));
4226
4227                 if (ctx->eval.size >= 1 && stack_slot_get_type (stack_pop (ctx)) != TYPE_I4)
4228                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Stack item type is not an int32 for endfilter at 0x%04x", ctx->ip_offset));
4229         }
4230
4231         if ((clause = is_correct_endfilter (ctx, ctx->ip_offset))) {
4232                 if (IS_STRICT_MODE (ctx)) {
4233                         if (ctx->ip_offset != clause->handler_offset - 2)
4234                                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("endfilter is not the last instruction of the filter clause at 0x%04x", ctx->ip_offset));                       
4235                 } else {
4236                         if ((ctx->ip_offset != clause->handler_offset - 2) && !MONO_OFFSET_IN_HANDLER (clause, ctx->ip_offset))
4237                                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("endfilter is not the last instruction of the filter clause at 0x%04x", ctx->ip_offset));
4238                 }
4239         } else {
4240                 if (IS_STRICT_MODE (ctx) && !is_unverifiable_endfilter (ctx, ctx->ip_offset))
4241                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("endfilter outside filter clause at 0x%04x", ctx->ip_offset));
4242                 else
4243                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("endfilter outside filter clause at 0x%04x", ctx->ip_offset));
4244         }
4245
4246         ctx->eval.size = 0;
4247 }
4248
4249 static void
4250 do_leave (VerifyContext *ctx, int delta)
4251 {
4252         int target = ((gint32)ctx->ip_offset) + delta;
4253         if (target >= ctx->code_size || target < 0)
4254                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Branch target out of code at 0x%04x", ctx->ip_offset));
4255
4256         if (!is_correct_leave (ctx->header, ctx->ip_offset, target))
4257                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Leave not allowed in finally block at 0x%04x", ctx->ip_offset));
4258         ctx->eval.size = 0;
4259         ctx->target = target;
4260 }
4261
4262 /* 
4263  * do_static_branch:
4264  * 
4265  * Verify br and br.s opcodes.
4266  */
4267 static void
4268 do_static_branch (VerifyContext *ctx, int delta)
4269 {
4270         int target = ctx->ip_offset + delta;
4271         if (target < 0 || target >= ctx->code_size) {
4272                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("branch target out of code at 0x%04x", ctx->ip_offset));
4273                 return;
4274         }
4275
4276         switch (is_valid_branch_instruction (ctx->header, ctx->ip_offset, target)) {
4277         case 1:
4278                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Branch target escapes out of exception block at 0x%04x", ctx->ip_offset));
4279                 break;
4280         case 2:
4281                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Branch target escapes out of exception block at 0x%04x", ctx->ip_offset));
4282                 break;
4283         }
4284
4285         ctx->target = target;
4286 }
4287
4288 static void
4289 do_switch (VerifyContext *ctx, int count, const unsigned char *data)
4290 {
4291         int i, base = ctx->ip_offset + 5 + count * 4;
4292         ILStackDesc *value;
4293
4294         if (!check_underflow (ctx, 1))
4295                 return;
4296
4297         value = stack_pop (ctx);
4298
4299         if (stack_slot_get_type (value) != TYPE_I4 && stack_slot_get_type (value) != TYPE_NATIVE_INT)
4300                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid argument to switch at 0x%04x", ctx->ip_offset));
4301
4302         for (i = 0; i < count; ++i) {
4303                 int target = base + read32 (data + i * 4);
4304
4305                 if (target < 0 || target >= ctx->code_size) {
4306                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Switch target %x out of code at 0x%04x", i, ctx->ip_offset));
4307                         return;
4308                 }
4309
4310                 switch (is_valid_branch_instruction (ctx->header, ctx->ip_offset, target)) {
4311                 case 1:
4312                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Switch target %x escapes out of exception block at 0x%04x", i, ctx->ip_offset));
4313                         break;
4314                 case 2:
4315                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Switch target %x escapes out of exception block at 0x%04x", i, ctx->ip_offset));
4316                         return;
4317                 }
4318                 merge_stacks (ctx, &ctx->eval, &ctx->code [target], FALSE, TRUE);
4319         }
4320 }
4321
4322 static void
4323 do_load_function_ptr (VerifyContext *ctx, guint32 token, gboolean virtual)
4324 {
4325         ILStackDesc *top;
4326         MonoMethod *method;
4327
4328         if (virtual && !check_underflow (ctx, 1))
4329                 return;
4330
4331         if (!virtual && !check_overflow (ctx))
4332                 return;
4333
4334         if (ctx->method->wrapper_type != MONO_WRAPPER_NONE) {
4335                 method = mono_method_get_wrapper_data (ctx->method, (guint32)token);
4336                 if (!method) {
4337                         ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid token %x for ldftn  at 0x%04x", token, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
4338                         return;
4339                 }
4340         } else {
4341                 if (!IS_METHOD_DEF_OR_REF_OR_SPEC (token) || !token_bounds_check (ctx->image, token)) {
4342                         ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid token %x for ldftn  at 0x%04x", token, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
4343                         return;
4344                 }
4345
4346                 if (!(method = verifier_load_method (ctx, token, virtual ? "ldvirtfrn" : "ldftn")))
4347                         return;
4348         }
4349
4350         if (mono_method_is_constructor (method))
4351                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use ldftn with a constructor at 0x%04x", ctx->ip_offset));
4352
4353         if (virtual) {
4354                 ILStackDesc *top = stack_pop (ctx);
4355         
4356                 if (stack_slot_get_type (top) != TYPE_COMPLEX || top->type->type == MONO_TYPE_VALUETYPE)
4357                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid argument to ldvirtftn at 0x%04x", ctx->ip_offset));
4358         
4359                 if (method->flags & METHOD_ATTRIBUTE_STATIC)
4360                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use ldvirtftn with a constructor at 0x%04x", ctx->ip_offset));
4361
4362                 if (!verify_stack_type_compatibility (ctx, &method->klass->byval_arg, top))
4363                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Unexpected object for ldvirtftn at 0x%04x", ctx->ip_offset));
4364         }
4365         
4366         if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, NULL))
4367                 CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Loaded method is not visible for ldftn/ldvirtftn at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
4368
4369         top = stack_push_val(ctx, TYPE_PTR, mono_type_create_fnptr_from_mono_method (ctx, method));
4370         top->method = method;
4371 }
4372
4373 static void
4374 do_sizeof (VerifyContext *ctx, int token)
4375 {
4376         MonoType *type;
4377         
4378         if (!(type = verifier_load_type (ctx, token, "sizeof")))
4379                 return;
4380
4381         if (type->byref && type->type != MONO_TYPE_TYPEDBYREF) {
4382                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid use of byref type at 0x%04x", ctx->ip_offset));
4383                 return;
4384         }
4385
4386         if (type->type == MONO_TYPE_VOID) {
4387                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid use of void type at 0x%04x", ctx->ip_offset));
4388                 return;
4389         }
4390
4391         if (check_overflow (ctx))
4392                 set_stack_value (ctx, stack_push (ctx), &mono_defaults.uint32_class->byval_arg, FALSE);
4393 }
4394
4395 /* Stack top can be of any type, the runtime doesn't care and treat everything as an int. */
4396 static void
4397 do_localloc (VerifyContext *ctx)
4398 {
4399         ILStackDesc *top;
4400         
4401         if (ctx->eval.size != 1) {
4402                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Stack must have only size item in localloc at 0x%04x", ctx->ip_offset));
4403                 return;         
4404         }
4405
4406         if (in_any_exception_block (ctx->header, ctx->ip_offset)) {
4407                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Stack must have only size item in localloc at 0x%04x", ctx->ip_offset));
4408                 return;
4409         }
4410
4411         /*TODO verify top type*/
4412         top = stack_pop (ctx);
4413
4414         set_stack_value (ctx, stack_push (ctx), &mono_defaults.int_class->byval_arg, FALSE);
4415         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Instruction localloc in never verifiable at 0x%04x", ctx->ip_offset));
4416 }
4417
4418 static void
4419 do_ldstr (VerifyContext *ctx, guint32 token)
4420 {
4421         GSList *error = NULL;
4422         if (ctx->method->wrapper_type == MONO_WRAPPER_NONE && !ctx->image->dynamic) {
4423                 if (mono_metadata_token_code (token) != MONO_TOKEN_STRING) {
4424                         ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid string token %x at 0x%04x", token, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
4425                         return;
4426                 }
4427
4428                 if (!mono_verifier_verify_string_signature (ctx->image, mono_metadata_token_index (token), &error)) {
4429                         if (error)
4430                                 ctx->list = g_slist_concat (ctx->list, error);
4431                         ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid string index %x at 0x%04x", token, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
4432                         return;
4433                 }
4434         }
4435
4436         if (check_overflow (ctx))
4437                 stack_push_val (ctx, TYPE_COMPLEX,  &mono_defaults.string_class->byval_arg);
4438 }
4439
4440 static void
4441 do_refanyval (VerifyContext *ctx, int token)
4442 {
4443         ILStackDesc *top;
4444         MonoType *type;
4445         if (!check_underflow (ctx, 1))
4446                 return;
4447
4448         if (!(type = get_boxable_mono_type (ctx, token, "refanyval")))
4449                 return;
4450
4451         top = stack_pop (ctx);
4452
4453         if (top->stype != TYPE_PTR || top->type->type != MONO_TYPE_TYPEDBYREF)
4454                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Expected a typedref as argument for refanyval, but found %s at 0x%04x", stack_slot_get_name (top), ctx->ip_offset));
4455
4456         set_stack_value (ctx, stack_push (ctx), type, TRUE);
4457 }
4458
4459 static void
4460 do_refanytype (VerifyContext *ctx)
4461 {
4462         ILStackDesc *top;
4463
4464         if (!check_underflow (ctx, 1))
4465                 return;
4466
4467         top = stack_pop (ctx);
4468
4469         if (top->stype != TYPE_PTR || top->type->type != MONO_TYPE_TYPEDBYREF)
4470                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Expected a typedref as argument for refanytype, but found %s at 0x%04x", stack_slot_get_name (top), ctx->ip_offset));
4471
4472         set_stack_value (ctx, stack_push (ctx), &mono_defaults.typehandle_class->byval_arg, FALSE);
4473
4474 }
4475
4476 static void
4477 do_mkrefany (VerifyContext *ctx, int token)
4478 {
4479         ILStackDesc *top;
4480         MonoType *type;
4481         if (!check_underflow (ctx, 1))
4482                 return;
4483
4484         if (!(type = get_boxable_mono_type (ctx, token, "refanyval")))
4485                 return;
4486
4487         top = stack_pop (ctx);
4488
4489         if (stack_slot_is_managed_mutability_pointer (top))
4490                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly pointer with mkrefany at 0x%04x", ctx->ip_offset));
4491
4492         if (!stack_slot_is_managed_pointer (top)) {
4493                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Expected a managed pointer for mkrefany, but found %s at 0x%04x", stack_slot_get_name (top), ctx->ip_offset));
4494         }else {
4495                 MonoType *stack_type = mono_type_get_type_byval (top->type);
4496                 if (MONO_TYPE_IS_REFERENCE (type) && !mono_metadata_type_equal (type, stack_type))
4497                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type not compatible for mkrefany at 0x%04x", ctx->ip_offset));
4498                         
4499                 if (!MONO_TYPE_IS_REFERENCE (type) && !verify_type_compatibility_full (ctx, type, stack_type, TRUE))
4500                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type not compatible for mkrefany at 0x%04x", ctx->ip_offset));
4501         }
4502
4503         set_stack_value (ctx, stack_push (ctx), &mono_defaults.typed_reference_class->byval_arg, FALSE);
4504 }
4505
4506 static void
4507 do_ckfinite (VerifyContext *ctx)
4508 {
4509         ILStackDesc *top;
4510         if (!check_underflow (ctx, 1))
4511                 return;
4512
4513         top = stack_pop (ctx);
4514
4515         if (stack_slot_get_underlying_type (top) != TYPE_R8)
4516                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Expected float32 or float64 on stack for ckfinit but found %s at 0x%04x", stack_slot_get_name (top), ctx->ip_offset)); 
4517         stack_push_stack_val (ctx, top);
4518 }
4519 /*
4520  * merge_stacks:
4521  * Merge the stacks and perform compat checks. The merge check if types of @from are mergeable with type of @to 
4522  * 
4523  * @from holds new values for a given control path
4524  * @to holds the current values of a given control path
4525  * 
4526  * TODO we can eliminate the from argument as all callers pass &ctx->eval
4527  */
4528 static void
4529 merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean start, gboolean external) 
4530 {
4531         MonoError error;
4532         int i, j;
4533         stack_init (ctx, to);
4534
4535         if (start) {
4536                 if (to->flags == IL_CODE_FLAG_NOT_PROCESSED) 
4537                         from->size = 0;
4538                 else
4539                         stack_copy (&ctx->eval, to);
4540                 goto end_verify;
4541         } else if (!(to->flags & IL_CODE_STACK_MERGED)) {
4542                 stack_copy (to, &ctx->eval);
4543                 goto end_verify;
4544         }
4545         VERIFIER_DEBUG ( printf ("performing stack merge %d x %d\n", from->size, to->size); );
4546
4547         if (from->size != to->size) {
4548                 VERIFIER_DEBUG ( printf ("different stack sizes %d x %d at 0x%04x\n", from->size, to->size, ctx->ip_offset); );
4549                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Could not merge stacks, different sizes (%d x %d) at 0x%04x", from->size, to->size, ctx->ip_offset)); 
4550                 goto end_verify;
4551         }
4552
4553         //FIXME we need to preserve CMMP attributes
4554         //FIXME we must take null literals into consideration.
4555         for (i = 0; i < from->size; ++i) {
4556                 ILStackDesc *new_slot = from->stack + i;
4557                 ILStackDesc *old_slot = to->stack + i;
4558                 MonoType *new_type = mono_type_from_stack_slot (new_slot);
4559                 MonoType *old_type = mono_type_from_stack_slot (old_slot);
4560                 MonoClass *old_class = mono_class_from_mono_type (old_type);
4561                 MonoClass *new_class = mono_class_from_mono_type (new_type);
4562                 MonoClass *match_class = NULL;
4563
4564                 // S := T then U = S (new value is compatible with current value, keep current)
4565                 if (verify_stack_type_compatibility (ctx, old_type, new_slot)) {
4566                         copy_stack_value (new_slot, old_slot);
4567                         continue;
4568                 }
4569
4570                 // T := S then U = T (old value is compatible with current value, use new)
4571                 if (verify_stack_type_compatibility (ctx, new_type, old_slot)) {
4572                         copy_stack_value (old_slot, new_slot);
4573                         continue;
4574                 }
4575
4576                 /*Both slots are the same boxed valuetype. Simply copy it.*/
4577                 if (stack_slot_is_boxed_value (old_slot) && 
4578                         stack_slot_is_boxed_value (new_slot) &&
4579                         mono_metadata_type_equal (old_type, new_type)) {
4580                         copy_stack_value (new_slot, old_slot);
4581                         continue;
4582                 }
4583
4584                 if (mono_type_is_generic_argument (old_type) || mono_type_is_generic_argument (new_type)) {
4585                         char *old_name = stack_slot_full_name (old_slot); 
4586                         char *new_name = stack_slot_full_name (new_slot);
4587                         CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Could not merge stack at depth %d, types not compatible: %s X %s at 0x%04x", i, old_name, new_name, ctx->ip_offset));
4588                         g_free (old_name);
4589                         g_free (new_name);
4590                         goto end_verify;                        
4591                 } 
4592
4593                 //both are reference types, use closest common super type
4594                 if (!mono_class_from_mono_type (old_type)->valuetype 
4595                         && !mono_class_from_mono_type (new_type)->valuetype
4596                         && !stack_slot_is_managed_pointer (old_slot)
4597                         && !stack_slot_is_managed_pointer (new_slot)) {
4598
4599                         mono_class_setup_supertypes (old_class);
4600                         mono_class_setup_supertypes (new_class);
4601
4602                         for (j = MIN (old_class->idepth, new_class->idepth) - 1; j > 0; --j) {
4603                                 if (mono_metadata_type_equal (&old_class->supertypes [j]->byval_arg, &new_class->supertypes [j]->byval_arg)) {
4604                                         match_class = old_class->supertypes [j];
4605                                         goto match_found;
4606                                 }
4607                         }
4608
4609                         mono_class_setup_interfaces (old_class, &error);
4610                         if (!mono_error_ok (&error)) {
4611                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot merge stacks due to a TypeLoadException %s at 0x%04x", mono_error_get_message (&error), ctx->ip_offset));
4612                                 mono_error_cleanup (&error);
4613                                 goto end_verify;
4614                         }
4615                         mono_class_setup_interfaces (new_class, &error);
4616                         if (!mono_error_ok (&error)) {
4617                                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot merge stacks due to a TypeLoadException %s at 0x%04x", mono_error_get_message (&error), ctx->ip_offset));
4618                                 mono_error_cleanup (&error);
4619                                 goto end_verify;
4620                         }
4621
4622                         /* if old class is an interface that new class implements */
4623                         if (old_class->flags & TYPE_ATTRIBUTE_INTERFACE) {
4624                                 if (verifier_class_is_assignable_from (old_class, new_class)) {
4625                                         match_class = old_class;
4626                                         goto match_found;       
4627                                 }
4628                                 for (j = 0; j < old_class->interface_count; ++j) {
4629                                         if (verifier_class_is_assignable_from (old_class->interfaces [j], new_class)) {
4630                                                 match_class = old_class->interfaces [j];
4631                                                 goto match_found;       
4632                                         }
4633                                 }
4634                         }
4635
4636                         if (new_class->flags & TYPE_ATTRIBUTE_INTERFACE) {
4637                                 if (verifier_class_is_assignable_from (new_class, old_class)) {
4638                                         match_class = new_class;
4639                                         goto match_found;       
4640                                 }
4641                                 for (j = 0; j < new_class->interface_count; ++j) {
4642                                         if (verifier_class_is_assignable_from (new_class->interfaces [j], old_class)) {
4643                                                 match_class = new_class->interfaces [j];
4644                                                 goto match_found;       
4645                                         }
4646                                 }
4647                         }
4648
4649                         //No decent super type found, use object
4650                         match_class = mono_defaults.object_class;
4651                         goto match_found;
4652                 } else if (is_compatible_boxed_valuetype (ctx,old_type, new_type, new_slot, FALSE) || is_compatible_boxed_valuetype (ctx, new_type, old_type, old_slot, FALSE)) {
4653                         match_class = mono_defaults.object_class;
4654                         goto match_found;
4655                 }
4656
4657                 {
4658                 char *old_name = stack_slot_full_name (old_slot); 
4659                 char *new_name = stack_slot_full_name (new_slot);
4660                 CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Could not merge stack at depth %d, types not compatible: %s X %s at 0x%04x", i, old_name, new_name, ctx->ip_offset)); 
4661                 g_free (old_name);
4662                 g_free (new_name);
4663                 }
4664                 set_stack_value (ctx, old_slot, &new_class->byval_arg, stack_slot_is_managed_pointer (old_slot));
4665                 goto end_verify;
4666
4667 match_found:
4668                 g_assert (match_class);
4669                 set_stack_value (ctx, old_slot, &match_class->byval_arg, stack_slot_is_managed_pointer (old_slot));
4670                 set_stack_value (ctx, new_slot, &match_class->byval_arg, stack_slot_is_managed_pointer (old_slot));
4671                 continue;
4672         }
4673
4674 end_verify:
4675         if (external)
4676                 to->flags |= IL_CODE_FLAG_WAS_TARGET;
4677         to->flags |= IL_CODE_STACK_MERGED;
4678 }
4679
4680 #define HANDLER_START(clause) ((clause)->flags == MONO_EXCEPTION_CLAUSE_FILTER ? (clause)->data.filter_offset : clause->handler_offset)
4681 #define IS_CATCH_OR_FILTER(clause) ((clause)->flags == MONO_EXCEPTION_CLAUSE_FILTER || (clause)->flags == MONO_EXCEPTION_CLAUSE_NONE)
4682
4683 /*
4684  * is_clause_in_range :
4685  * 
4686  * Returns TRUE if either the protected block or the handler of @clause is in the @start - @end range.  
4687  */
4688 static gboolean
4689 is_clause_in_range (MonoExceptionClause *clause, guint32 start, guint32 end)
4690 {
4691         if (clause->try_offset >= start && clause->try_offset < end)
4692                 return TRUE;
4693         if (HANDLER_START (clause) >= start && HANDLER_START (clause) < end)
4694                 return TRUE;
4695         return FALSE;
4696 }
4697
4698 /*
4699  * is_clause_inside_range :
4700  * 
4701  * Returns TRUE if @clause lies completely inside the @start - @end range.  
4702  */
4703 static gboolean
4704 is_clause_inside_range (MonoExceptionClause *clause, guint32 start, guint32 end)
4705 {
4706         if (clause->try_offset < start || (clause->try_offset + clause->try_len) > end)
4707                 return FALSE;
4708         if (HANDLER_START (clause) < start || (clause->handler_offset + clause->handler_len) > end)
4709                 return FALSE;
4710         return TRUE;
4711 }
4712
4713 /*
4714  * is_clause_nested :
4715  * 
4716  * Returns TRUE if @nested is nested in @clause.   
4717  */
4718 static gboolean
4719 is_clause_nested (MonoExceptionClause *clause, MonoExceptionClause *nested)
4720 {
4721         if (clause->flags == MONO_EXCEPTION_CLAUSE_FILTER && is_clause_inside_range (nested, clause->data.filter_offset, clause->handler_offset))
4722                 return TRUE;
4723         return is_clause_inside_range (nested, clause->try_offset, clause->try_offset + clause->try_len) ||
4724         is_clause_inside_range (nested, clause->handler_offset, clause->handler_offset + clause->handler_len);
4725 }
4726
4727 /* Test the relationship between 2 exception clauses. Follow  P.1 12.4.2.7 of ECMA
4728  * the each pair of exception must have the following properties:
4729  *  - one is fully nested on another (the outer must not be a filter clause) (the nested one must come earlier)
4730  *  - completely disjoin (none of the 3 regions of each entry overlap with the other 3)
4731  *  - mutual protection (protected block is EXACT the same, handlers are disjoin and all handler are catch or all handler are filter)
4732  */
4733 static void
4734 verify_clause_relationship (VerifyContext *ctx, MonoExceptionClause *clause, MonoExceptionClause *to_test)
4735 {
4736         /*clause is nested*/
4737         if (to_test->flags == MONO_EXCEPTION_CLAUSE_FILTER && is_clause_inside_range (clause, to_test->data.filter_offset, to_test->handler_offset)) {
4738                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception clause inside filter"));
4739                 return;
4740         }
4741
4742         /*wrong nesting order.*/
4743         if (is_clause_nested (clause, to_test)) {
4744                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Nested exception clause appears after enclosing clause"));
4745                 return;
4746         }
4747
4748         /*mutual protection*/
4749         if (clause->try_offset == to_test->try_offset && clause->try_len == to_test->try_len) {
4750                 /*handlers are not disjoint*/
4751                 if (is_clause_in_range (to_test, HANDLER_START (clause), clause->handler_offset + clause->handler_len)) {
4752                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception handlers overlap"));
4753                         return;
4754                 }
4755                 /* handlers are not catch or filter */
4756                 if (!IS_CATCH_OR_FILTER (clause) || !IS_CATCH_OR_FILTER (to_test)) {
4757                         ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception clauses with shared protected block are neither catch or filter"));
4758                         return;
4759                 }
4760                 /*OK*/
4761                 return;
4762         }
4763
4764         /*not completelly disjoint*/
4765         if ((is_clause_in_range (to_test, clause->try_offset, clause->try_offset + clause->try_len) ||
4766                 is_clause_in_range (to_test, HANDLER_START (clause), clause->handler_offset + clause->handler_len)) && !is_clause_nested (to_test, clause))
4767                 ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception clauses overlap"));
4768 }
4769
4770 #define code_bounds_check(size) \
4771         if (ADDP_IS_GREATER_OR_OVF (ip, size, end)) {\
4772                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Code overrun starting with 0x%x at 0x%04x", *ip, ctx.ip_offset)); \
4773                 break; \
4774         } \
4775
4776 static gboolean
4777 mono_opcode_is_prefix (int op)
4778 {
4779         switch (op) {
4780         case MONO_CEE_UNALIGNED_:
4781         case MONO_CEE_VOLATILE_:
4782         case MONO_CEE_TAIL_:
4783         case MONO_CEE_CONSTRAINED_:
4784         case MONO_CEE_READONLY_:
4785                 return TRUE;
4786         }
4787         return FALSE;
4788 }
4789
4790 /*
4791  * FIXME: need to distinguish between valid and verifiable.
4792  * Need to keep track of types on the stack.
4793  * Verify types for opcodes.
4794  */
4795 GSList*
4796 mono_method_verify (MonoMethod *method, int level)
4797 {
4798         MonoError error;
4799         const unsigned char *ip, *code_start;
4800         const unsigned char *end;
4801         MonoSimpleBasicBlock *bb = NULL, *original_bb = NULL;
4802
4803         int i, n, need_merge = 0, start = 0;
4804         guint token, ip_offset = 0, prefix = 0;
4805         MonoGenericContext *generic_context = NULL;
4806         MonoImage *image;
4807         VerifyContext ctx;
4808         GSList *tmp;
4809         VERIFIER_DEBUG ( printf ("Verify IL for method %s %s %s\n",  method->klass->name_space,  method->klass->name, method->name); );
4810
4811         init_verifier_stats ();
4812
4813         if (method->iflags & (METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL | METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
4814                         (method->flags & (METHOD_ATTRIBUTE_PINVOKE_IMPL | METHOD_ATTRIBUTE_ABSTRACT))) {
4815                 return NULL;
4816         }
4817
4818         memset (&ctx, 0, sizeof (VerifyContext));
4819
4820         //FIXME use mono_method_get_signature_full
4821         ctx.signature = mono_method_signature (method);
4822         if (!ctx.signature) {
4823                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Could not decode method signature"));
4824
4825                 finish_collect_stats ();
4826                 return ctx.list;
4827         }
4828         if (!method->is_generic && !method->klass->is_generic && ctx.signature->has_type_parameters) {
4829                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Method and signature don't match in terms of genericity"));
4830                 finish_collect_stats ();
4831                 return ctx.list;
4832         }
4833
4834         ctx.header = mono_method_get_header (method);
4835         if (!ctx.header) {
4836                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Could not decode method header"));
4837                 finish_collect_stats ();
4838                 return ctx.list;
4839         }
4840         ctx.method = method;
4841         code_start = ip = ctx.header->code;
4842         end = ip + ctx.header->code_size;
4843         ctx.image = image = method->klass->image;
4844
4845
4846         ctx.max_args = ctx.signature->param_count + ctx.signature->hasthis;
4847         ctx.max_stack = ctx.header->max_stack;
4848         ctx.verifiable = ctx.valid = 1;
4849         ctx.level = level;
4850
4851         ctx.code = g_new (ILCodeDesc, ctx.header->code_size);
4852         ctx.code_size = ctx.header->code_size;
4853         MEM_ALLOC (sizeof (ILCodeDesc) * ctx.header->code_size);
4854
4855         memset(ctx.code, 0, sizeof (ILCodeDesc) * ctx.header->code_size);
4856
4857         ctx.num_locals = ctx.header->num_locals;
4858         ctx.locals = g_memdup (ctx.header->locals, sizeof (MonoType*) * ctx.header->num_locals);
4859         MEM_ALLOC (sizeof (MonoType*) * ctx.header->num_locals);
4860
4861         if (ctx.num_locals > 0 && !ctx.header->init_locals)
4862                 CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Method with locals variable but without init locals set"));
4863
4864         ctx.params = g_new (MonoType*, ctx.max_args);
4865         MEM_ALLOC (sizeof (MonoType*) * ctx.max_args);
4866
4867         if (ctx.signature->hasthis)
4868                 ctx.params [0] = method->klass->valuetype ? &method->klass->this_arg : &method->klass->byval_arg;
4869         memcpy (ctx.params + ctx.signature->hasthis, ctx.signature->params, sizeof (MonoType *) * ctx.signature->param_count);
4870
4871         if (ctx.signature->is_inflated)
4872                 ctx.generic_context = generic_context = mono_method_get_context (method);
4873
4874         if (!generic_context && (method->klass->generic_container || method->is_generic)) {
4875                 if (method->is_generic)
4876                         ctx.generic_context = generic_context = &(mono_method_get_generic_container (method)->context);
4877                 else
4878                         ctx.generic_context = generic_context = &method->klass->generic_container->context;
4879         }
4880
4881         for (i = 0; i < ctx.num_locals; ++i) {
4882                 MonoType *uninflated = ctx.locals [i];
4883                 ctx.locals [i] = mono_class_inflate_generic_type_checked (ctx.locals [i], ctx.generic_context, &error);
4884                 if (!mono_error_ok (&error)) {
4885                         char *name = mono_type_full_name (ctx.locals [i] ? ctx.locals [i] : uninflated);
4886                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid local %d of type %s", i, name));
4887                         g_free (name);
4888                         mono_error_cleanup (&error);
4889                         /* we must not free (in cleanup) what was not yet allocated (but only copied) */
4890                         ctx.num_locals = i;
4891                         ctx.max_args = 0;
4892                         goto cleanup;
4893                 }
4894         }
4895         for (i = 0; i < ctx.max_args; ++i) {
4896                 MonoType *uninflated = ctx.params [i];
4897                 ctx.params [i] = mono_class_inflate_generic_type_checked (ctx.params [i], ctx.generic_context, &error);
4898                 if (!mono_error_ok (&error)) {
4899                         char *name = mono_type_full_name (ctx.params [i] ? ctx.params [i] : uninflated);
4900                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid parameter %d of type %s", i, name));
4901                         g_free (name);
4902                         mono_error_cleanup (&error);
4903                         /* we must not free (in cleanup) what was not yet allocated (but only copied) */
4904                         ctx.max_args = i;
4905                         goto cleanup;
4906                 }
4907         }
4908         stack_init (&ctx, &ctx.eval);
4909
4910         for (i = 0; i < ctx.num_locals; ++i) {
4911                 if (!mono_type_is_valid_in_context (&ctx, ctx.locals [i]))
4912                         break;
4913                 if (get_stack_type (ctx.locals [i]) == TYPE_INV) {
4914                         char *name = mono_type_full_name (ctx.locals [i]);
4915                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid local %i of type %s", i, name));
4916                         g_free (name);
4917                         break;
4918                 }
4919                 
4920         }
4921
4922         for (i = 0; i < ctx.max_args; ++i) {
4923                 if (!mono_type_is_valid_in_context (&ctx, ctx.params [i]))
4924                         break;
4925
4926                 if (get_stack_type (ctx.params [i]) == TYPE_INV) {
4927                         char *name = mono_type_full_name (ctx.params [i]);
4928                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid parameter %i of type %s", i, name));
4929                         g_free (name);
4930                         break;
4931                 }
4932         }
4933
4934         if (!ctx.valid)
4935                 goto cleanup;
4936
4937         for (i = 0; i < ctx.header->num_clauses && ctx.valid; ++i) {
4938                 MonoExceptionClause *clause = ctx.header->clauses + i;
4939                 VERIFIER_DEBUG (printf ("clause try %x len %x filter at %x handler at %x len %x\n", clause->try_offset, clause->try_len, clause->data.filter_offset, clause->handler_offset, clause->handler_len); );
4940
4941                 if (clause->try_offset > ctx.code_size || ADD_IS_GREATER_OR_OVF (clause->try_offset, clause->try_len, ctx.code_size))
4942                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try clause out of bounds at 0x%04x", clause->try_offset));
4943
4944                 if (clause->try_len <= 0)
4945                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try clause len <= 0 at 0x%04x", clause->try_offset));
4946
4947                 if (clause->handler_offset > ctx.code_size || ADD_IS_GREATER_OR_OVF (clause->handler_offset, clause->handler_len, ctx.code_size))
4948                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("handler clause out of bounds at 0x%04x", clause->try_offset));
4949
4950                 if (clause->handler_len <= 0)
4951                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("handler clause len <= 0 at 0x%04x", clause->try_offset));
4952
4953                 if (clause->try_offset < clause->handler_offset && ADD_IS_GREATER_OR_OVF (clause->try_offset, clause->try_len, HANDLER_START (clause)))
4954                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try block (at 0x%04x) includes handler block (at 0x%04x)", clause->try_offset, clause->handler_offset));
4955
4956                 if (clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
4957                         if (clause->data.filter_offset > ctx.code_size)
4958                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("filter clause out of bounds at 0x%04x", clause->try_offset));
4959
4960                         if (clause->data.filter_offset >= clause->handler_offset)
4961                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("filter clause must come before the handler clause at 0x%04x", clause->data.filter_offset));
4962                 }
4963
4964                 for (n = i + 1; n < ctx.header->num_clauses && ctx.valid; ++n)
4965                         verify_clause_relationship (&ctx, clause, ctx.header->clauses + n);
4966
4967                 if (!ctx.valid)
4968                         break;
4969
4970                 ctx.code [clause->try_offset].flags |= IL_CODE_FLAG_WAS_TARGET;
4971                 if (clause->try_offset + clause->try_len < ctx.code_size)
4972                         ctx.code [clause->try_offset + clause->try_len].flags |= IL_CODE_FLAG_WAS_TARGET;
4973                 if (clause->handler_offset + clause->handler_len < ctx.code_size)
4974                         ctx.code [clause->handler_offset + clause->handler_len].flags |= IL_CODE_FLAG_WAS_TARGET;
4975
4976                 if (clause->flags == MONO_EXCEPTION_CLAUSE_NONE) {
4977                         if (!clause->data.catch_class) {
4978                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Catch clause %d with invalid type", i));
4979                                 break;
4980                         }
4981                         if (!mono_type_is_valid_in_context (&ctx, &clause->data.catch_class->byval_arg))
4982                                 break;
4983
4984                         init_stack_with_value_at_exception_boundary (&ctx, ctx.code + clause->handler_offset, clause->data.catch_class);
4985                 }
4986                 else if (clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
4987                         init_stack_with_value_at_exception_boundary (&ctx, ctx.code + clause->data.filter_offset, mono_defaults.exception_class);
4988                         init_stack_with_value_at_exception_boundary (&ctx, ctx.code + clause->handler_offset, mono_defaults.exception_class);   
4989                 }
4990         }
4991
4992         if (!ctx.valid)
4993                 goto cleanup;
4994
4995         original_bb = bb = mono_basic_block_split (method, &error);
4996         if (!mono_error_ok (&error)) {
4997                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid branch target: %s", mono_error_get_message (&error)));
4998                 mono_error_cleanup (&error);
4999                 goto cleanup;
5000         }
5001         g_assert (bb);
5002
5003         while (ip < end && ctx.valid) {
5004                 int op_size;
5005                 ip_offset = ip - code_start;
5006                 {
5007                         const unsigned char *ip_copy = ip;
5008                         int op;
5009
5010                         if (ip_offset > bb->end) {
5011                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Branch or EH block at [0x%04x] targets middle instruction at 0x%04x", bb->end, ip_offset));
5012                                 goto cleanup;
5013                         }
5014
5015                         if (ip_offset == bb->end)
5016                                 bb = bb->next;
5017         
5018                         op_size = mono_opcode_value_and_size (&ip_copy, end, &op);
5019                         if (op_size == -1) {
5020                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid instruction %x at 0x%04x", *ip, ip_offset));
5021                                 goto cleanup;
5022                         }
5023
5024                         if (ADD_IS_GREATER_OR_OVF (ip_offset, op_size, bb->end)) {
5025                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Branch or EH block targets middle of instruction at 0x%04x", ip_offset));
5026                                 goto cleanup;
5027                         }
5028
5029                         /*Last Instruction*/
5030                         if (ip_offset + op_size == bb->end && mono_opcode_is_prefix (op)) {
5031                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Branch or EH block targets between prefix '%s' and instruction at 0x%04x", mono_opcode_name (op), ip_offset));
5032                                 goto cleanup;
5033                         }
5034                 }
5035
5036                 ctx.ip_offset = ip_offset = ip - code_start;
5037
5038                 /*We need to check against fallthrou in and out of protected blocks.
5039                  * For fallout we check the once a protected block ends, if the start flag is not set.
5040                  * Likewise for fallthru in, we check if ip is the start of a protected block and start is not set
5041                  * TODO convert these checks to be done using flags and not this loop
5042                  */
5043                 for (i = 0; i < ctx.header->num_clauses && ctx.valid; ++i) {
5044                         MonoExceptionClause *clause = ctx.header->clauses + i;
5045
5046                         if ((clause->try_offset + clause->try_len == ip_offset) && start == 0) {
5047                                 CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("fallthru off try block at 0x%04x", ip_offset));
5048                                 start = 1;
5049                         }
5050
5051                         if ((clause->handler_offset + clause->handler_len == ip_offset) && start == 0) {
5052                                 if (clause->flags == MONO_EXCEPTION_CLAUSE_FILTER)
5053                                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("fallout of handler block at 0x%04x", ip_offset));
5054                                 else
5055                                         CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("fallout of handler block at 0x%04x", ip_offset));
5056                                 start = 1;
5057                         }
5058
5059                         if (clause->flags == MONO_EXCEPTION_CLAUSE_FILTER && clause->handler_offset == ip_offset && start == 0) {
5060                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("fallout of filter block at 0x%04x", ip_offset));
5061                                 start = 1;
5062                         }
5063
5064                         if (clause->handler_offset == ip_offset && start == 0) {
5065                                 CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("fallthru handler block at 0x%04x", ip_offset));
5066                                 start = 1;
5067                         }
5068
5069                         if (clause->try_offset == ip_offset && ctx.eval.size > 0 && start == 0) {
5070                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Try to enter try block with a non-empty stack at 0x%04x", ip_offset));
5071                                 start = 1;
5072                         }
5073                 }
5074
5075                 /*This must be done after fallthru detection otherwise it won't happen.*/
5076                 if (bb->dead) {
5077                         /*FIXME remove this once we move all bad branch checking code to use BB only*/
5078                         ctx.code [ip_offset].flags |= IL_CODE_FLAG_SEEN;
5079                         ip += op_size;
5080                         continue;
5081                 }
5082
5083                 if (!ctx.valid)
5084                         break;
5085
5086                 if (need_merge) {
5087                         VERIFIER_DEBUG ( printf ("extra merge needed! 0x%04x \n", ctx.target); );
5088                         merge_stacks (&ctx, &ctx.eval, &ctx.code [ctx.target], FALSE, TRUE);
5089                         need_merge = 0; 
5090                 }
5091                 merge_stacks (&ctx, &ctx.eval, &ctx.code[ip_offset], start, FALSE);
5092                 start = 0;
5093
5094                 /*TODO we can fast detect a forward branch or exception block targeting code after prefix, we should fail fast*/
5095 #ifdef MONO_VERIFIER_DEBUG
5096                 {
5097                         char *discode;
5098                         discode = mono_disasm_code_one (NULL, method, ip, NULL);
5099                         discode [strlen (discode) - 1] = 0; /* no \n */
5100                         g_print ("[%d] %-29s (%d)\n",  ip_offset, discode, ctx.eval.size);
5101                         g_free (discode);
5102                 }
5103                 dump_stack_state (&ctx.code [ip_offset]);
5104                 dump_stack_state (&ctx.eval);
5105 #endif
5106
5107                 switch (*ip) {
5108                 case CEE_NOP:
5109                 case CEE_BREAK:
5110                         ++ip;
5111                         break;
5112
5113                 case CEE_LDARG_0:
5114                 case CEE_LDARG_1:
5115                 case CEE_LDARG_2:
5116                 case CEE_LDARG_3:
5117                         push_arg (&ctx, *ip - CEE_LDARG_0, FALSE);
5118                         ++ip;
5119                         break;
5120
5121                 case CEE_LDARG_S:
5122                 case CEE_LDARGA_S:
5123                         code_bounds_check (2);
5124                         push_arg (&ctx, ip [1],  *ip == CEE_LDARGA_S);
5125                         ip += 2;
5126                         break;
5127
5128                 case CEE_ADD_OVF_UN:
5129                         do_binop (&ctx, *ip, add_ovf_un_table);
5130                         ++ip;
5131                         break;
5132
5133                 case CEE_SUB_OVF_UN:
5134                         do_binop (&ctx, *ip, sub_ovf_un_table);
5135                         ++ip;
5136                         break;
5137
5138                 case CEE_ADD_OVF:
5139                 case CEE_SUB_OVF:
5140                 case CEE_MUL_OVF:
5141                 case CEE_MUL_OVF_UN:
5142                         do_binop (&ctx, *ip, bin_ovf_table);
5143                         ++ip;
5144                         break;
5145
5146                 case CEE_ADD:
5147                         do_binop (&ctx, *ip, add_table);
5148                         ++ip;
5149                         break;
5150
5151                 case CEE_SUB:
5152                         do_binop (&ctx, *ip, sub_table);
5153                         ++ip;
5154                         break;
5155
5156                 case CEE_MUL:
5157                 case CEE_DIV:
5158                 case CEE_REM:
5159                         do_binop (&ctx, *ip, bin_op_table);
5160                         ++ip;
5161                         break;
5162
5163                 case CEE_AND:
5164                 case CEE_DIV_UN:
5165                 case CEE_OR:
5166                 case CEE_REM_UN:
5167                 case CEE_XOR:
5168                         do_binop (&ctx, *ip, int_bin_op_table);
5169                         ++ip;
5170                         break;
5171
5172                 case CEE_SHL:
5173                 case CEE_SHR:
5174                 case CEE_SHR_UN:
5175                         do_binop (&ctx, *ip, shift_op_table);
5176                         ++ip;
5177                         break;
5178
5179                 case CEE_POP:
5180                         if (!check_underflow (&ctx, 1))
5181                                 break;
5182                         stack_pop_safe (&ctx);
5183                         ++ip;
5184                         break;
5185
5186                 case CEE_RET:
5187                         do_ret (&ctx);
5188                         ++ip;
5189                         start = 1;
5190                         break;
5191
5192                 case CEE_LDLOC_0:
5193                 case CEE_LDLOC_1:
5194                 case CEE_LDLOC_2:
5195                 case CEE_LDLOC_3:
5196                         /*TODO support definite assignment verification? */
5197                         push_local (&ctx, *ip - CEE_LDLOC_0, FALSE);
5198                         ++ip;
5199                         break;
5200
5201                 case CEE_STLOC_0:
5202                 case CEE_STLOC_1:
5203                 case CEE_STLOC_2:
5204                 case CEE_STLOC_3:
5205                         store_local (&ctx, *ip - CEE_STLOC_0);
5206                         ++ip;
5207                         break;
5208
5209                 case CEE_STLOC_S:
5210                         code_bounds_check (2);
5211                         store_local (&ctx, ip [1]);
5212                         ip += 2;
5213                         break;
5214
5215                 case CEE_STARG_S:
5216                         code_bounds_check (2);
5217                         store_arg (&ctx, ip [1]);
5218                         ip += 2;
5219                         break;
5220
5221                 case CEE_LDC_I4_M1:
5222                 case CEE_LDC_I4_0:
5223                 case CEE_LDC_I4_1:
5224                 case CEE_LDC_I4_2:
5225                 case CEE_LDC_I4_3:
5226                 case CEE_LDC_I4_4:
5227                 case CEE_LDC_I4_5:
5228                 case CEE_LDC_I4_6:
5229                 case CEE_LDC_I4_7:
5230                 case CEE_LDC_I4_8:
5231                         if (check_overflow (&ctx))
5232                                 stack_push_val (&ctx, TYPE_I4, &mono_defaults.int32_class->byval_arg);
5233                         ++ip;
5234                         break;
5235
5236                 case CEE_LDC_I4_S:
5237                         code_bounds_check (2);
5238                         if (check_overflow (&ctx))
5239                                 stack_push_val (&ctx, TYPE_I4, &mono_defaults.int32_class->byval_arg);
5240                         ip += 2;
5241                         break;
5242
5243                 case CEE_LDC_I4:
5244                         code_bounds_check (5);
5245                         if (check_overflow (&ctx))
5246                                 stack_push_val (&ctx,TYPE_I4, &mono_defaults.int32_class->byval_arg);
5247                         ip += 5;
5248                         break;
5249
5250                 case CEE_LDC_I8:
5251                         code_bounds_check (9);
5252                         if (check_overflow (&ctx))
5253                                 stack_push_val (&ctx,TYPE_I8, &mono_defaults.int64_class->byval_arg);
5254                         ip += 9;
5255                         break;
5256
5257                 case CEE_LDC_R4:
5258                         code_bounds_check (5);
5259                         if (check_overflow (&ctx))
5260                                 stack_push_val (&ctx, TYPE_R8, &mono_defaults.double_class->byval_arg);
5261                         ip += 5;
5262                         break;
5263
5264                 case CEE_LDC_R8:
5265                         code_bounds_check (9);
5266                         if (check_overflow (&ctx))
5267                                 stack_push_val (&ctx, TYPE_R8, &mono_defaults.double_class->byval_arg);
5268                         ip += 9;
5269                         break;
5270
5271                 case CEE_LDNULL:
5272                         if (check_overflow (&ctx))
5273                                 stack_push_val (&ctx, TYPE_COMPLEX | NULL_LITERAL_MASK, &mono_defaults.object_class->byval_arg);
5274                         ++ip;
5275                         break;
5276
5277                 case CEE_BEQ_S:
5278                 case CEE_BNE_UN_S:
5279                         code_bounds_check (2);
5280                         do_branch_op (&ctx, (signed char)ip [1] + 2, cmp_br_eq_op);
5281                         ip += 2;
5282                         need_merge = 1;
5283                         break;
5284
5285                 case CEE_BGE_S:
5286                 case CEE_BGT_S:
5287                 case CEE_BLE_S:
5288                 case CEE_BLT_S:
5289                 case CEE_BGE_UN_S:
5290                 case CEE_BGT_UN_S:
5291                 case CEE_BLE_UN_S:
5292                 case CEE_BLT_UN_S:
5293                         code_bounds_check (2);
5294                         do_branch_op (&ctx, (signed char)ip [1] + 2, cmp_br_op);
5295                         ip += 2;
5296                         need_merge = 1;
5297                         break;
5298
5299                 case CEE_BEQ:
5300                 case CEE_BNE_UN:
5301                         code_bounds_check (5);
5302                         do_branch_op (&ctx, (gint32)read32 (ip + 1) + 5, cmp_br_eq_op);
5303                         ip += 5;
5304                         need_merge = 1;
5305                         break;
5306
5307                 case CEE_BGE:
5308                 case CEE_BGT:
5309                 case CEE_BLE:
5310                 case CEE_BLT:
5311                 case CEE_BGE_UN:
5312                 case CEE_BGT_UN:
5313                 case CEE_BLE_UN:
5314                 case CEE_BLT_UN:
5315                         code_bounds_check (5);
5316                         do_branch_op (&ctx, (gint32)read32 (ip + 1) + 5, cmp_br_op);
5317                         ip += 5;
5318                         need_merge = 1;
5319                         break;
5320
5321                 case CEE_LDLOC_S:
5322                 case CEE_LDLOCA_S:
5323                         code_bounds_check (2);
5324                         push_local (&ctx, ip[1], *ip == CEE_LDLOCA_S);
5325                         ip += 2;
5326                         break;
5327
5328                 case CEE_UNUSED99:
5329                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Use of the `unused' opcode"));
5330                         ++ip;
5331                         break; 
5332
5333                 case CEE_DUP: {
5334                         ILStackDesc *top;
5335                         if (!check_underflow (&ctx, 1))
5336                                 break;
5337                         if (!check_overflow (&ctx))
5338                                 break;
5339                         top = stack_push (&ctx);
5340                         copy_stack_value (top, stack_peek (&ctx, 1));
5341                         ++ip;
5342                         break;
5343                 }
5344
5345                 case CEE_JMP:
5346                         code_bounds_check (5);
5347                         if (ctx.eval.size)
5348                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Eval stack must be empty in jmp at 0x%04x", ip_offset));
5349                         token = read32 (ip + 1);
5350                         if (in_any_block (ctx.header, ip_offset))
5351                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("jmp cannot escape exception blocks at 0x%04x", ip_offset));
5352
5353                         CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Intruction jmp is not verifiable at 0x%04x", ctx.ip_offset));
5354                         /*
5355                          * FIXME: check signature, retval, arguments etc.
5356                          */
5357                         ip += 5;
5358                         break;
5359                 case CEE_CALL:
5360                 case CEE_CALLVIRT:
5361                         code_bounds_check (5);
5362                         do_invoke_method (&ctx, read32 (ip + 1), *ip == CEE_CALLVIRT);
5363                         ip += 5;
5364                         break;
5365
5366                 case CEE_CALLI:
5367                         code_bounds_check (5);
5368                         token = read32 (ip + 1);
5369                         /*
5370                          * FIXME: check signature, retval, arguments etc.
5371                          * FIXME: check requirements for tail call
5372                          */
5373                         CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Intruction calli is not verifiable at 0x%04x", ctx.ip_offset));
5374                         ip += 5;
5375                         break;
5376                 case CEE_BR_S:
5377                         code_bounds_check (2);
5378                         do_static_branch (&ctx, (signed char)ip [1] + 2);
5379                         need_merge = 1;
5380                         ip += 2;
5381                         start = 1;
5382                         break;
5383
5384                 case CEE_BRFALSE_S:
5385                 case CEE_BRTRUE_S:
5386                         code_bounds_check (2);
5387                         do_boolean_branch_op (&ctx, (signed char)ip [1] + 2);
5388                         ip += 2;
5389                         need_merge = 1;
5390                         break;
5391
5392                 case CEE_BR:
5393                         code_bounds_check (5);
5394                         do_static_branch (&ctx, (gint32)read32 (ip + 1) + 5);
5395                         need_merge = 1;
5396                         ip += 5;
5397                         start = 1;
5398                         break;
5399
5400                 case CEE_BRFALSE:
5401                 case CEE_BRTRUE:
5402                         code_bounds_check (5);
5403                         do_boolean_branch_op (&ctx, (gint32)read32 (ip + 1) + 5);
5404                         ip += 5;
5405                         need_merge = 1;
5406                         break;
5407
5408                 case CEE_SWITCH: {
5409                         guint32 entries;
5410                         code_bounds_check (5);
5411                         entries = read32 (ip + 1);
5412
5413                         if (entries > 0xFFFFFFFFU / sizeof (guint32))
5414                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Too many switch entries %x at 0x%04x", entries, ctx.ip_offset));
5415
5416                         ip += 5;
5417                         code_bounds_check (sizeof (guint32) * entries);
5418                         
5419                         do_switch (&ctx, entries, ip);
5420                         ip += sizeof (guint32) * entries;
5421                         break;
5422                 }
5423                 case CEE_LDIND_I1:
5424                 case CEE_LDIND_U1:
5425                 case CEE_LDIND_I2:
5426                 case CEE_LDIND_U2:
5427                 case CEE_LDIND_I4:
5428                 case CEE_LDIND_U4:
5429                 case CEE_LDIND_I8:
5430                 case CEE_LDIND_I:
5431                 case CEE_LDIND_R4:
5432                 case CEE_LDIND_R8:
5433                 case CEE_LDIND_REF:
5434                         do_load_indirect (&ctx, *ip);
5435                         ++ip;
5436                         break;
5437                         
5438                 case CEE_STIND_REF:
5439                 case CEE_STIND_I1:
5440                 case CEE_STIND_I2:
5441                 case CEE_STIND_I4:
5442                 case CEE_STIND_I8:
5443                 case CEE_STIND_R4:
5444                 case CEE_STIND_R8:
5445                 case CEE_STIND_I:
5446                         do_store_indirect (&ctx, *ip);
5447                         ++ip;
5448                         break;
5449
5450                 case CEE_NOT:
5451                 case CEE_NEG:
5452                         do_unary_math_op (&ctx, *ip);
5453                         ++ip;
5454                         break;
5455
5456                 case CEE_CONV_I1:
5457                 case CEE_CONV_I2:
5458                 case CEE_CONV_I4:
5459                 case CEE_CONV_U1:
5460                 case CEE_CONV_U2:
5461                 case CEE_CONV_U4:
5462                         do_conversion (&ctx, TYPE_I4);
5463                         ++ip;
5464                         break;                  
5465
5466                 case CEE_CONV_I8:
5467                 case CEE_CONV_U8:
5468                         do_conversion (&ctx, TYPE_I8);
5469                         ++ip;
5470                         break;                  
5471
5472                 case CEE_CONV_R4:
5473                 case CEE_CONV_R8:
5474                 case CEE_CONV_R_UN:
5475                         do_conversion (&ctx, TYPE_R8);
5476                         ++ip;
5477                         break;                  
5478
5479                 case CEE_CONV_I:
5480                 case CEE_CONV_U:
5481                         do_conversion (&ctx, TYPE_NATIVE_INT);
5482                         ++ip;
5483                         break;
5484
5485                 case CEE_CPOBJ:
5486                         code_bounds_check (5);
5487                         do_cpobj (&ctx, read32 (ip + 1));
5488                         ip += 5;
5489                         break;
5490
5491                 case CEE_LDOBJ:
5492                         code_bounds_check (5);
5493                         do_ldobj_value (&ctx, read32 (ip + 1));
5494                         ip += 5;
5495                         break;
5496
5497                 case CEE_LDSTR:
5498                         code_bounds_check (5);
5499                         do_ldstr (&ctx, read32 (ip + 1));
5500                         ip += 5;
5501                         break;
5502
5503                 case CEE_NEWOBJ:
5504                         code_bounds_check (5);
5505                         do_newobj (&ctx, read32 (ip + 1));
5506                         ip += 5;
5507                         break;
5508
5509                 case CEE_CASTCLASS:
5510                 case CEE_ISINST:
5511                         code_bounds_check (5);
5512                         do_cast (&ctx, read32 (ip + 1), *ip == CEE_CASTCLASS ? "castclass" : "isinst");
5513                         ip += 5;
5514                         break;
5515
5516                 case CEE_UNUSED58:
5517                 case CEE_UNUSED1:
5518                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Use of the `unused' opcode"));
5519                         ++ip;
5520                         break;
5521
5522                 case CEE_UNBOX:
5523                         code_bounds_check (5);
5524                         do_unbox_value (&ctx, read32 (ip + 1));
5525                         ip += 5;
5526                         break;
5527
5528                 case CEE_THROW:
5529                         do_throw (&ctx);
5530                         start = 1;
5531                         ++ip;
5532                         break;
5533
5534                 case CEE_LDFLD:
5535                 case CEE_LDFLDA:
5536                         code_bounds_check (5);
5537                         do_push_field (&ctx, read32 (ip + 1), *ip == CEE_LDFLDA);
5538                         ip += 5;
5539                         break;
5540
5541                 case CEE_LDSFLD:
5542                 case CEE_LDSFLDA:
5543                         code_bounds_check (5);
5544                         do_push_static_field (&ctx, read32 (ip + 1), *ip == CEE_LDSFLDA);
5545                         ip += 5;
5546                         break;
5547
5548                 case CEE_STFLD:
5549                         code_bounds_check (5);
5550                         do_store_field (&ctx, read32 (ip + 1));
5551                         ip += 5;
5552                         break;
5553
5554                 case CEE_STSFLD:
5555                         code_bounds_check (5);
5556                         do_store_static_field (&ctx, read32 (ip + 1));
5557                         ip += 5;
5558                         break;
5559
5560                 case CEE_STOBJ:
5561                         code_bounds_check (5);
5562                         do_stobj (&ctx, read32 (ip + 1));
5563                         ip += 5;
5564                         break;
5565
5566                 case CEE_CONV_OVF_I1_UN:
5567                 case CEE_CONV_OVF_I2_UN:
5568                 case CEE_CONV_OVF_I4_UN:
5569                 case CEE_CONV_OVF_U1_UN:
5570                 case CEE_CONV_OVF_U2_UN:
5571                 case CEE_CONV_OVF_U4_UN:
5572                         do_conversion (&ctx, TYPE_I4);
5573                         ++ip;
5574                         break;                  
5575
5576                 case CEE_CONV_OVF_I8_UN:
5577                 case CEE_CONV_OVF_U8_UN:
5578                         do_conversion (&ctx, TYPE_I8);
5579                         ++ip;
5580                         break;                  
5581
5582                 case CEE_CONV_OVF_I_UN:
5583                 case CEE_CONV_OVF_U_UN:
5584                         do_conversion (&ctx, TYPE_NATIVE_INT);
5585                         ++ip;
5586                         break;
5587
5588                 case CEE_BOX:
5589                         code_bounds_check (5);
5590                         do_box_value (&ctx, read32 (ip + 1));
5591                         ip += 5;
5592                         break;
5593
5594                 case CEE_NEWARR:
5595                         code_bounds_check (5);
5596                         do_newarr (&ctx, read32 (ip + 1));
5597                         ip += 5;
5598                         break;
5599
5600                 case CEE_LDLEN:
5601                         do_ldlen (&ctx);
5602                         ++ip;
5603                         break;
5604
5605                 case CEE_LDELEMA:
5606                         code_bounds_check (5);
5607                         do_ldelema (&ctx, read32 (ip + 1));
5608                         ip += 5;
5609                         break;
5610
5611                 case CEE_LDELEM_I1:
5612                 case CEE_LDELEM_U1:
5613                 case CEE_LDELEM_I2:
5614                 case CEE_LDELEM_U2:
5615                 case CEE_LDELEM_I4:
5616                 case CEE_LDELEM_U4:
5617                 case CEE_LDELEM_I8:
5618                 case CEE_LDELEM_I:
5619                 case CEE_LDELEM_R4:
5620                 case CEE_LDELEM_R8:
5621                 case CEE_LDELEM_REF:
5622                         do_ldelem (&ctx, *ip, 0);
5623                         ++ip;
5624                         break;
5625
5626                 case CEE_STELEM_I:
5627                 case CEE_STELEM_I1:
5628                 case CEE_STELEM_I2:
5629                 case CEE_STELEM_I4:
5630                 case CEE_STELEM_I8:
5631                 case CEE_STELEM_R4:
5632                 case CEE_STELEM_R8:
5633                 case CEE_STELEM_REF:
5634                         do_stelem (&ctx, *ip, 0);
5635                         ++ip;
5636                         break;
5637
5638                 case CEE_LDELEM:
5639                         code_bounds_check (5);
5640                         do_ldelem (&ctx, *ip, read32 (ip + 1));
5641                         ip += 5;
5642                         break;
5643
5644                 case CEE_STELEM:
5645                         code_bounds_check (5);
5646                         do_stelem (&ctx, *ip, read32 (ip + 1));
5647                         ip += 5;
5648                         break;
5649                         
5650                 case CEE_UNBOX_ANY:
5651                         code_bounds_check (5);
5652                         do_unbox_any (&ctx, read32 (ip + 1));
5653                         ip += 5;
5654                         break;
5655
5656                 case CEE_CONV_OVF_I1:
5657                 case CEE_CONV_OVF_U1:
5658                 case CEE_CONV_OVF_I2:
5659                 case CEE_CONV_OVF_U2:
5660                 case CEE_CONV_OVF_I4:
5661                 case CEE_CONV_OVF_U4:
5662                         do_conversion (&ctx, TYPE_I4);
5663                         ++ip;
5664                         break;
5665
5666                 case CEE_CONV_OVF_I8:
5667                 case CEE_CONV_OVF_U8:
5668                         do_conversion (&ctx, TYPE_I8);
5669                         ++ip;
5670                         break;
5671
5672                 case CEE_CONV_OVF_I:
5673                 case CEE_CONV_OVF_U:
5674                         do_conversion (&ctx, TYPE_NATIVE_INT);
5675                         ++ip;
5676                         break;
5677
5678                 case CEE_REFANYVAL:
5679                         code_bounds_check (5);
5680                         do_refanyval (&ctx, read32 (ip + 1));
5681                         ip += 5;
5682                         break;
5683
5684                 case CEE_CKFINITE:
5685                         do_ckfinite (&ctx);
5686                         ++ip;
5687                         break;
5688
5689                 case CEE_MKREFANY:
5690                         code_bounds_check (5);
5691                         do_mkrefany (&ctx,  read32 (ip + 1));
5692                         ip += 5;
5693                         break;
5694
5695                 case CEE_LDTOKEN:
5696                         code_bounds_check (5);
5697                         do_load_token (&ctx, read32 (ip + 1));
5698                         ip += 5;
5699                         break;
5700
5701                 case CEE_ENDFINALLY:
5702                         if (!is_correct_endfinally (ctx.header, ip_offset))
5703                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("endfinally must be used inside a finally/fault handler at 0x%04x", ctx.ip_offset));
5704                         ctx.eval.size = 0;
5705                         start = 1;
5706                         ++ip;
5707                         break;
5708
5709                 case CEE_LEAVE:
5710                         code_bounds_check (5);
5711                         do_leave (&ctx, read32 (ip + 1) + 5);
5712                         ip += 5;
5713                         start = 1;
5714                         need_merge = 1;
5715                         break;
5716
5717                 case CEE_LEAVE_S:
5718                         code_bounds_check (2);
5719                         do_leave (&ctx, (signed char)ip [1] + 2);
5720                         ip += 2;
5721                         start = 1;
5722                         need_merge = 1;
5723                         break;
5724
5725                 case CEE_PREFIX1:
5726                         code_bounds_check (2);
5727                         ++ip;
5728                         switch (*ip) {
5729                         case CEE_STLOC:
5730                                 code_bounds_check (3);
5731                                 store_local (&ctx, read16 (ip + 1));
5732                                 ip += 3;
5733                                 break;
5734
5735                         case CEE_CEQ:
5736                                 do_cmp_op (&ctx, cmp_br_eq_op, *ip);
5737                                 ++ip;
5738                                 break;
5739
5740                         case CEE_CGT:
5741                         case CEE_CGT_UN:
5742                         case CEE_CLT:
5743                         case CEE_CLT_UN:
5744                                 do_cmp_op (&ctx, cmp_br_op, *ip);
5745                                 ++ip;
5746                                 break;
5747
5748                         case CEE_STARG:
5749                                 code_bounds_check (3);
5750                                 store_arg (&ctx, read16 (ip + 1) );
5751                                 ip += 3;
5752                                 break;
5753
5754
5755                         case CEE_ARGLIST:
5756                                 if (!check_overflow (&ctx))
5757                                         break;
5758                                 if (ctx.signature->call_convention != MONO_CALL_VARARG)
5759                                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Cannot use arglist on method without VARGARG calling convention at 0x%04x", ctx.ip_offset));
5760                                 set_stack_value (&ctx, stack_push (&ctx), &mono_defaults.argumenthandle_class->byval_arg, FALSE);
5761                                 ++ip;
5762                                 break;
5763         
5764                         case CEE_LDFTN:
5765                                 code_bounds_check (5);
5766                                 do_load_function_ptr (&ctx, read32 (ip + 1), FALSE);
5767                                 ip += 5;
5768                                 break;
5769
5770                         case CEE_LDVIRTFTN:
5771                                 code_bounds_check (5);
5772                                 do_load_function_ptr (&ctx, read32 (ip + 1), TRUE);
5773                                 ip += 5;
5774                                 break;
5775
5776                         case CEE_LDARG:
5777                         case CEE_LDARGA:
5778                                 code_bounds_check (3);
5779                                 push_arg (&ctx, read16 (ip + 1),  *ip == CEE_LDARGA);
5780                                 ip += 3;
5781                                 break;
5782
5783                         case CEE_LDLOC:
5784                         case CEE_LDLOCA:
5785                                 code_bounds_check (3);
5786                                 push_local (&ctx, read16 (ip + 1), *ip == CEE_LDLOCA);
5787                                 ip += 3;
5788                                 break;
5789
5790                         case CEE_LOCALLOC:
5791                                 do_localloc (&ctx);
5792                                 ++ip;
5793                                 break;
5794
5795                         case CEE_UNUSED56:
5796                         case CEE_UNUSED57:
5797                         case CEE_UNUSED70:
5798                         case CEE_UNUSED:
5799                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Use of the `unused' opcode"));
5800                                 ++ip;
5801                                 break;
5802                         case CEE_ENDFILTER:
5803                                 do_endfilter (&ctx);
5804                                 start = 1;
5805                                 ++ip;
5806                                 break;
5807                         case CEE_UNALIGNED_:
5808                                 code_bounds_check (2);
5809                                 prefix |= PREFIX_UNALIGNED;
5810                                 ip += 2;
5811                                 break;
5812                         case CEE_VOLATILE_:
5813                                 prefix |= PREFIX_VOLATILE;
5814                                 ++ip;
5815                                 break;
5816                         case CEE_TAIL_:
5817                                 prefix |= PREFIX_TAIL;
5818                                 ++ip;
5819                                 if (ip < end && (*ip != CEE_CALL && *ip != CEE_CALLI && *ip != CEE_CALLVIRT))
5820                                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("tail prefix must be used only with call opcodes at 0x%04x", ip_offset));
5821                                 break;
5822
5823                         case CEE_INITOBJ:
5824                                 code_bounds_check (5);
5825                                 do_initobj (&ctx, read32 (ip + 1));
5826                                 ip += 5;
5827                                 break;
5828
5829                         case CEE_CONSTRAINED_:
5830                                 code_bounds_check (5);
5831                                 ctx.constrained_type = get_boxable_mono_type (&ctx, read32 (ip + 1), "constrained.");
5832                                 prefix |= PREFIX_CONSTRAINED;
5833                                 ip += 5;
5834                                 break;
5835         
5836                         case CEE_READONLY_:
5837                                 prefix |= PREFIX_READONLY;
5838                                 ip++;
5839                                 break;
5840
5841                         case CEE_CPBLK:
5842                                 CLEAR_PREFIX (&ctx, PREFIX_UNALIGNED | PREFIX_VOLATILE);
5843                                 if (!check_underflow (&ctx, 3))
5844                                         break;
5845                                 CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Instruction cpblk is not verifiable at 0x%04x", ctx.ip_offset));
5846                                 ip++;
5847                                 break;
5848                                 
5849                         case CEE_INITBLK:
5850                                 CLEAR_PREFIX (&ctx, PREFIX_UNALIGNED | PREFIX_VOLATILE);
5851                                 if (!check_underflow (&ctx, 3))
5852                                         break;
5853                                 CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Instruction initblk is not verifiable at 0x%04x", ctx.ip_offset));
5854                                 ip++;
5855                                 break;
5856                                 
5857                         case CEE_NO_:
5858                                 ip += 2;
5859                                 break;
5860                         case CEE_RETHROW:
5861                                 if (!is_correct_rethrow (ctx.header, ip_offset))
5862                                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("rethrow must be used inside a catch handler at 0x%04x", ctx.ip_offset));
5863                                 ctx.eval.size = 0;
5864                                 start = 1;
5865                                 ++ip;
5866                                 break;
5867
5868                         case CEE_SIZEOF:
5869                                 code_bounds_check (5);
5870                                 do_sizeof (&ctx, read32 (ip + 1));
5871                                 ip += 5;
5872                                 break;
5873
5874                         case CEE_REFANYTYPE:
5875                                 do_refanytype (&ctx);
5876                                 ++ip;
5877                                 break;
5878
5879                         default:
5880                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid instruction FE %x at 0x%04x", *ip, ctx.ip_offset));
5881                                 ++ip;
5882                         }
5883                         break;
5884
5885                 default:
5886                         ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid instruction %x at 0x%04x", *ip, ctx.ip_offset));
5887                         ++ip;
5888                 }
5889
5890                 /*TODO we can fast detect a forward branch or exception block targeting code after prefix, we should fail fast*/
5891                 if (prefix) {
5892                         if (!ctx.prefix_set) //first prefix
5893                                 ctx.code [ctx.ip_offset].flags |= IL_CODE_FLAG_SEEN;
5894                         ctx.prefix_set |= prefix;
5895                         ctx.has_flags = TRUE;
5896                         prefix = 0;
5897                 } else {
5898                         if (!ctx.has_flags)
5899                                 ctx.code [ctx.ip_offset].flags |= IL_CODE_FLAG_SEEN;
5900
5901                         if (ctx.prefix_set & PREFIX_CONSTRAINED)
5902                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid instruction after constrained prefix at 0x%04x", ctx.ip_offset));
5903                         if (ctx.prefix_set & PREFIX_READONLY)
5904                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid instruction after readonly prefix at 0x%04x", ctx.ip_offset));
5905                         if (ctx.prefix_set & PREFIX_VOLATILE)
5906                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid instruction after volatile prefix at 0x%04x", ctx.ip_offset));
5907                         if (ctx.prefix_set & PREFIX_UNALIGNED)
5908                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid instruction after unaligned prefix at 0x%04x", ctx.ip_offset));
5909                         ctx.prefix_set = prefix = 0;
5910                         ctx.has_flags = FALSE;
5911                 }
5912         }
5913         /*
5914          * if ip != end we overflowed: mark as error.
5915          */
5916         if ((ip != end || !start) && ctx.verifiable && !ctx.list) {
5917                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Run ahead of method code at 0x%04x", ip_offset));
5918         }
5919
5920         /*We should guard against the last decoded opcode, otherwise we might add errors that doesn't make sense.*/
5921         for (i = 0; i < ctx.code_size && i < ip_offset; ++i) {
5922                 if (ctx.code [i].flags & IL_CODE_FLAG_WAS_TARGET) {
5923                         if (!(ctx.code [i].flags & IL_CODE_FLAG_SEEN))
5924                                 ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Branch or exception block target middle of intruction at 0x%04x", i));
5925
5926                         if (ctx.code [i].flags & IL_CODE_DELEGATE_SEQUENCE)
5927                                 CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Branch to delegate code sequence at 0x%04x", i));
5928                 }
5929                 if ((ctx.code [i].flags & IL_CODE_LDFTN_DELEGATE_NONFINAL_VIRTUAL) && ctx.has_this_store)
5930                         CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Invalid ldftn with virtual function in method with stdarg 0 at  0x%04x", i));
5931
5932                 if ((ctx.code [i].flags & IL_CODE_CALL_NONFINAL_VIRTUAL) && ctx.has_this_store)
5933                         CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Invalid call to a non-final virtual function in method with stdarg.0 or ldarga.0 at  0x%04x", i));
5934         }
5935
5936         if (mono_method_is_constructor (ctx.method) && !ctx.super_ctor_called && !ctx.method->klass->valuetype && ctx.method->klass != mono_defaults.object_class) {
5937                 char *method_name = mono_method_full_name (ctx.method, TRUE);
5938                 char *type = mono_type_get_full_name (ctx.method->klass);
5939                 if (ctx.method->klass->parent && ctx.method->klass->parent->exception_type != MONO_EXCEPTION_NONE)
5940                         CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Constructor %s for type %s not calling base type ctor due to a TypeLoadException on base type.", method_name, type));
5941                 else
5942                         CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Constructor %s for type %s not calling base type ctor.", method_name, type));
5943                 g_free (method_name);
5944                 g_free (type);
5945         }
5946
5947 cleanup:
5948         if (ctx.code) {
5949                 for (i = 0; i < ctx.header->code_size; ++i) {
5950                         if (ctx.code [i].stack)
5951                                 g_free (ctx.code [i].stack);
5952                 }
5953         }
5954
5955         for (tmp = ctx.funptrs; tmp; tmp = tmp->next)
5956                 g_free (tmp->data);
5957         g_slist_free (ctx.funptrs);
5958
5959         for (tmp = ctx.exception_types; tmp; tmp = tmp->next)
5960                 mono_metadata_free_type (tmp->data);
5961         g_slist_free (ctx.exception_types);
5962
5963         for (i = 0; i < ctx.num_locals; ++i) {
5964                 if (ctx.locals [i])
5965                         mono_metadata_free_type (ctx.locals [i]);
5966         }
5967         for (i = 0; i < ctx.max_args; ++i) {
5968                 if (ctx.params [i])
5969                         mono_metadata_free_type (ctx.params [i]);
5970         }
5971
5972         if (ctx.eval.stack)
5973                 g_free (ctx.eval.stack);
5974         if (ctx.code)
5975                 g_free (ctx.code);
5976         g_free (ctx.locals);
5977         g_free (ctx.params);
5978         mono_basic_block_free (original_bb);
5979         mono_metadata_free_mh (ctx.header);
5980
5981         finish_collect_stats ();
5982         return ctx.list;
5983 }
5984
5985 char*
5986 mono_verify_corlib ()
5987 {
5988         /* This is a public API function so cannot be removed */
5989         return NULL;
5990 }
5991
5992 /*
5993  * Returns true if @method needs to be verified.
5994  * 
5995  */
5996 gboolean
5997 mono_verifier_is_enabled_for_method (MonoMethod *method)
5998 {
5999         return mono_verifier_is_enabled_for_class (method->klass) && (method->wrapper_type == MONO_WRAPPER_NONE || method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD);
6000 }
6001
6002 /*
6003  * Returns true if @klass need to be verified.
6004  * 
6005  */
6006 gboolean
6007 mono_verifier_is_enabled_for_class (MonoClass *klass)
6008 {
6009         return verify_all || (verifier_mode > MONO_VERIFIER_MODE_OFF && !(klass->image->assembly && klass->image->assembly->in_gac) && klass->image != mono_defaults.corlib);
6010 }
6011
6012 gboolean
6013 mono_verifier_is_enabled_for_image (MonoImage *image)
6014 {
6015         return verify_all || verifier_mode > MONO_VERIFIER_MODE_OFF;
6016 }
6017
6018 /*
6019  * Dynamic methods are not considered full trust since if the user is trusted and need to
6020  * generate unsafe code, make the method skip verification - this is a known good way to do it.
6021  */
6022 gboolean
6023 mono_verifier_is_method_full_trust (MonoMethod *method)
6024 {
6025         return mono_verifier_is_class_full_trust (method->klass) && !method->dynamic;
6026 }
6027
6028 /*
6029  * Returns if @klass is under full trust or not.
6030  * 
6031  * TODO This code doesn't take CAS into account.
6032  * 
6033  * Under verify_all all user code must be verifiable if no security option was set 
6034  * 
6035  */
6036 gboolean
6037 mono_verifier_is_class_full_trust (MonoClass *klass)
6038 {
6039         /* under CoreCLR code is trusted if it is part of the "platform" otherwise all code inside the GAC is trusted */
6040         gboolean trusted_location = !mono_security_core_clr_enabled () ?
6041                 (klass->image->assembly && klass->image->assembly->in_gac) : mono_security_core_clr_is_platform_image (klass->image);
6042
6043         if (verify_all && verifier_mode == MONO_VERIFIER_MODE_OFF)
6044                 return trusted_location || klass->image == mono_defaults.corlib;
6045         return verifier_mode < MONO_VERIFIER_MODE_VERIFIABLE || trusted_location || klass->image == mono_defaults.corlib;
6046 }
6047
6048 GSList*
6049 mono_method_verify_with_current_settings (MonoMethod *method, gboolean skip_visibility, gboolean is_fulltrust)
6050 {
6051         return mono_method_verify (method, 
6052                         (verifier_mode != MONO_VERIFIER_MODE_STRICT ? MONO_VERIFY_NON_STRICT: 0)
6053                         | (!is_fulltrust && !mono_verifier_is_method_full_trust (method) ? MONO_VERIFY_FAIL_FAST : 0)
6054                         | (skip_visibility ? MONO_VERIFY_SKIP_VISIBILITY : 0));
6055 }
6056
6057 static int
6058 get_field_end (MonoClassField *field)
6059 {
6060         int align;
6061         int size = mono_type_size (field->type, &align);
6062         if (size == 0)
6063                 size = 4; /*FIXME Is this a safe bet?*/
6064         return size + field->offset;
6065 }
6066
6067 static gboolean
6068 verify_class_for_overlapping_reference_fields (MonoClass *class)
6069 {
6070         int i = 0, j;
6071         gpointer iter = NULL;
6072         MonoClassField *field;
6073         gboolean is_fulltrust = mono_verifier_is_class_full_trust (class);
6074         /*We can't skip types with !has_references since this is calculated after we have run.*/
6075         if (!((class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) == TYPE_ATTRIBUTE_EXPLICIT_LAYOUT))
6076                 return TRUE;
6077
6078
6079         /*We must check for stuff overlapping reference fields.
6080           The outer loop uses mono_class_get_fields to ensure that MonoClass:fields get inited.
6081         */
6082         while ((field = mono_class_get_fields (class, &iter))) {
6083                 int fieldEnd = get_field_end (field);
6084                 gboolean is_valuetype = !MONO_TYPE_IS_REFERENCE (field->type);
6085                 ++i;
6086
6087                 if (mono_field_is_deleted (field) || (field->type->attrs & FIELD_ATTRIBUTE_STATIC))
6088                         continue;
6089
6090                 for (j = i; j < class->field.count; ++j) {
6091                         MonoClassField *other = &class->fields [j];
6092                         int otherEnd = get_field_end (other);
6093                         if (mono_field_is_deleted (other) || (is_valuetype && !MONO_TYPE_IS_REFERENCE (other->type)) || (other->type->attrs & FIELD_ATTRIBUTE_STATIC))
6094                                 continue;
6095
6096                         if (!is_valuetype && MONO_TYPE_IS_REFERENCE (other->type) && field->offset == other->offset && is_fulltrust)
6097                                 continue;
6098
6099                         if ((otherEnd > field->offset && otherEnd <= fieldEnd) || (other->offset >= field->offset && other->offset < fieldEnd))
6100                                 return FALSE;
6101                 }
6102         }
6103         return TRUE;
6104 }
6105
6106 static guint
6107 field_hash (gconstpointer key)
6108 {
6109         const MonoClassField *field = key;
6110         return g_str_hash (field->name) ^ mono_metadata_type_hash (field->type); /**/
6111 }
6112
6113 static gboolean
6114 field_equals (gconstpointer _a, gconstpointer _b)
6115 {
6116         const MonoClassField *a = _a;
6117         const MonoClassField *b = _b;
6118         return !strcmp (a->name, b->name) && mono_metadata_type_equal (a->type, b->type);
6119 }
6120
6121
6122 static gboolean
6123 verify_class_fields (MonoClass *class)
6124 {
6125         gpointer iter = NULL;
6126         MonoClassField *field;
6127         MonoGenericContext *context = mono_class_get_context (class);
6128         GHashTable *unique_fields = g_hash_table_new_full (&field_hash, &field_equals, NULL, NULL);
6129         if (class->generic_container)
6130                 context = &class->generic_container->context;
6131
6132         while ((field = mono_class_get_fields (class, &iter)) != NULL) {
6133                 if (!mono_type_is_valid_type_in_context (field->type, context)) {
6134                         g_hash_table_destroy (unique_fields);
6135                         return FALSE;
6136                 }
6137                 if (g_hash_table_lookup (unique_fields, field)) {
6138                         g_hash_table_destroy (unique_fields);
6139                         return FALSE;
6140                 }
6141                 g_hash_table_insert (unique_fields, field, field);
6142         }
6143         g_hash_table_destroy (unique_fields);
6144         return TRUE;
6145 }
6146
6147 static gboolean
6148 verify_interfaces (MonoClass *class)
6149 {
6150         int i;
6151         for (i = 0; i < class->interface_count; ++i) {
6152                 MonoClass *iface = class->interfaces [i];
6153                 if (!(iface->flags & TYPE_ATTRIBUTE_INTERFACE))
6154                         return FALSE;
6155         }
6156         return TRUE;
6157 }
6158
6159 static gboolean
6160 verify_valuetype_layout_with_target (MonoClass *class, MonoClass *target_class)
6161 {
6162         int type;
6163         gpointer iter = NULL;
6164         MonoClassField *field;
6165         MonoClass *field_class;
6166
6167         if (!class->valuetype)
6168                 return TRUE;
6169
6170         type = class->byval_arg.type;
6171         /*primitive type fields are not properly decoded*/
6172         if ((type >= MONO_TYPE_BOOLEAN && type <= MONO_TYPE_R8) || (type >= MONO_TYPE_I && type <= MONO_TYPE_U))
6173                 return TRUE;
6174
6175         while ((field = mono_class_get_fields (class, &iter)) != NULL) {
6176                 if (!field->type)
6177                         return FALSE;
6178
6179                 if (field->type->attrs & (FIELD_ATTRIBUTE_STATIC | FIELD_ATTRIBUTE_HAS_FIELD_RVA))
6180                         continue;
6181
6182                 field_class = mono_class_get_generic_type_definition (mono_class_from_mono_type (field->type));
6183
6184                 if (field_class == target_class || class == field_class || !verify_valuetype_layout_with_target (field_class, target_class))
6185                         return FALSE;
6186         }
6187
6188         return TRUE;
6189 }
6190
6191 static gboolean
6192 verify_valuetype_layout (MonoClass *class)
6193 {
6194         gboolean res;
6195         res = verify_valuetype_layout_with_target (class, class);
6196         return res;
6197 }
6198
6199 static gboolean
6200 recursive_mark_constraint_args (MonoBitSet *used_args, MonoGenericContainer *gc, MonoType *type)
6201 {
6202         int idx;
6203         MonoClass **constraints;
6204         MonoGenericParamInfo *param_info;
6205
6206         g_assert (mono_type_is_generic_argument (type));
6207
6208         idx = mono_type_get_generic_param_num (type);
6209         if (mono_bitset_test_fast (used_args, idx))
6210                 return FALSE;
6211
6212         mono_bitset_set_fast (used_args, idx);
6213         param_info = mono_generic_container_get_param_info (gc, idx);
6214
6215         if (!param_info->constraints)
6216                 return TRUE;
6217
6218         for (constraints = param_info->constraints; *constraints; ++constraints) {
6219                 MonoClass *ctr = *constraints;
6220                 MonoType *constraint_type = &ctr->byval_arg;
6221
6222                 if (mono_type_is_generic_argument (constraint_type) && !recursive_mark_constraint_args (used_args, gc, constraint_type))
6223                         return FALSE;
6224         }
6225         return TRUE;
6226 }
6227
6228 static gboolean
6229 verify_generic_parameters (MonoClass *class)
6230 {
6231         int i;
6232         MonoGenericContainer *gc = class->generic_container;
6233         MonoBitSet *used_args = mono_bitset_new (gc->type_argc, 0);
6234
6235         for (i = 0; i < gc->type_argc; ++i) {
6236                 MonoGenericParamInfo *param_info = mono_generic_container_get_param_info (gc, i);
6237                 MonoClass **constraints;
6238
6239                 if (!param_info->constraints)
6240                         continue;
6241
6242                 mono_bitset_clear_all (used_args);
6243                 mono_bitset_set_fast (used_args, i);
6244
6245                 for (constraints = param_info->constraints; *constraints; ++constraints) {
6246                         MonoClass *ctr = *constraints;
6247                         MonoType *constraint_type = &ctr->byval_arg;
6248
6249                         if (!mono_class_can_access_class (class, ctr))
6250                                 goto fail;
6251
6252                         if (!mono_type_is_valid_type_in_context (constraint_type, &gc->context))
6253                                 goto fail;
6254
6255                         if (mono_type_is_generic_argument (constraint_type) && !recursive_mark_constraint_args (used_args, gc, constraint_type))
6256                                 goto fail;
6257                         if (ctr->generic_class && !mono_class_is_valid_generic_instantiation (NULL, ctr))
6258                                 goto fail;
6259                 }
6260         }
6261         mono_bitset_free (used_args);
6262         return TRUE;
6263
6264 fail:
6265         mono_bitset_free (used_args);
6266         return FALSE;
6267 }
6268
6269 /*
6270  * Check if the class is verifiable.
6271  * 
6272  * Right now there are no conditions that make a class a valid but not verifiable. Both overlapping reference
6273  * field and invalid generic instantiation are fatal errors.
6274  * 
6275  * This method must be safe to be called from mono_class_init and all code must be carefull about that.
6276  * 
6277  */
6278 gboolean
6279 mono_verifier_verify_class (MonoClass *class)
6280 {
6281         /*Neither <Module>, object or ifaces have parent.*/
6282         if (!class->parent &&
6283                 class != mono_defaults.object_class && 
6284                 !MONO_CLASS_IS_INTERFACE (class) &&
6285                 (!class->image->dynamic && class->type_token != 0x2000001)) /*<Module> is the first type in the assembly*/
6286                 return FALSE;
6287         if (class->parent) {
6288                 if (MONO_CLASS_IS_INTERFACE (class->parent))
6289                         return FALSE;
6290                 if (!class->generic_class && class->parent->generic_container)
6291                         return FALSE;
6292                 if (class->parent->generic_class && !class->generic_class) {
6293                         MonoGenericContext *context = mono_class_get_context (class);
6294                         if (class->generic_container)
6295                                 context = &class->generic_container->context;
6296                         if (!mono_type_is_valid_type_in_context (&class->parent->byval_arg, context))
6297                                 return FALSE;
6298                 }
6299         }
6300         if (class->generic_container && (class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) == TYPE_ATTRIBUTE_EXPLICIT_LAYOUT)
6301                 return FALSE;
6302         if (class->generic_container && !verify_generic_parameters (class))
6303                 return FALSE;
6304         if (!verify_class_for_overlapping_reference_fields (class))
6305                 return FALSE;
6306         if (class->generic_class && !mono_class_is_valid_generic_instantiation (NULL, class))
6307                 return FALSE;
6308         if (class->generic_class == NULL && !verify_class_fields (class))
6309                 return FALSE;
6310         if (class->valuetype && !verify_valuetype_layout (class))
6311                 return FALSE;
6312         if (!verify_interfaces (class))
6313                 return FALSE;
6314         return TRUE;
6315 }
6316
6317 gboolean
6318 mono_verifier_class_is_valid_generic_instantiation (MonoClass *class)
6319 {
6320         return mono_class_is_valid_generic_instantiation (NULL, class);
6321 }
6322
6323 gboolean
6324 mono_verifier_is_method_valid_generic_instantiation (MonoMethod *method)
6325 {
6326         if (!method->is_inflated)
6327                 return TRUE;
6328         return mono_method_is_valid_generic_instantiation (NULL, method);
6329 }
6330
6331 #else
6332
6333 gboolean
6334 mono_verifier_verify_class (MonoClass *class)
6335 {
6336         /* The verifier was disabled at compile time */
6337         return TRUE;
6338 }
6339
6340 GSList*
6341 mono_method_verify_with_current_settings (MonoMethod *method, gboolean skip_visibility, gboolean is_fulltrust)
6342 {
6343         /* The verifier was disabled at compile time */
6344         return NULL;
6345 }
6346
6347 gboolean
6348 mono_verifier_is_class_full_trust (MonoClass *klass)
6349 {
6350         /* The verifier was disabled at compile time */
6351         return TRUE;
6352 }
6353
6354 gboolean
6355 mono_verifier_is_method_full_trust (MonoMethod *method)
6356 {
6357         /* The verifier was disabled at compile time */
6358         return TRUE;
6359 }
6360
6361 gboolean
6362 mono_verifier_is_enabled_for_image (MonoImage *image)
6363 {
6364         /* The verifier was disabled at compile time */
6365         return FALSE;
6366 }
6367
6368 gboolean
6369 mono_verifier_is_enabled_for_class (MonoClass *klass)
6370 {
6371         /* The verifier was disabled at compile time */
6372         return FALSE;
6373 }
6374
6375 gboolean
6376 mono_verifier_is_enabled_for_method (MonoMethod *method)
6377 {
6378         /* The verifier was disabled at compile time */
6379         return FALSE;
6380 }
6381
6382 GSList*
6383 mono_method_verify (MonoMethod *method, int level)
6384 {
6385         /* The verifier was disabled at compile time */
6386         return NULL;
6387 }
6388
6389 void
6390 mono_free_verify_list (GSList *list)
6391 {
6392         /* The verifier was disabled at compile time */
6393         /* will always be null if verifier is disabled */
6394 }
6395
6396 gboolean
6397 mono_verifier_class_is_valid_generic_instantiation (MonoClass *class)
6398 {
6399         return TRUE;
6400 }
6401
6402 gboolean
6403 mono_verifier_is_method_valid_generic_instantiation (MonoMethod *method)
6404 {
6405         return TRUE;
6406 }
6407
6408
6409
6410 #endif