2009-06-04 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / verify.c
index 173d448e762e868df0086d4c074345be7defc023..dd71ec610f07f1e3bd142449a4198ad3766d2ecb 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * verify.c: 
+ *
+ * Author:
+ *     Mono Project (http://www.mono-project.com)
+ *
+ * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
+ * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
+ */
+#include <config.h>
 
 #include <mono/metadata/object-internals.h>
 #include <mono/metadata/verify.h>
 #include <mono/metadata/metadata.h>
 #include <mono/metadata/metadata-internals.h>
 #include <mono/metadata/class-internals.h>
+#include <mono/metadata/security-manager.h>
+#include <mono/metadata/security-core-clr.h>
 #include <mono/metadata/tokentype.h>
 #include <string.h>
 #include <signal.h>
 #include <ctype.h>
 
 
+static MiniVerifierMode verifier_mode = MONO_VERIFIER_MODE_OFF;
+static gboolean verify_all = FALSE;
+
+/*
+ * Set the desired level of checks for the verfier.
+ * 
+ */
+void
+mono_verifier_set_mode (MiniVerifierMode mode)
+{
+       verifier_mode = mode;
+}
+
+void
+mono_verifier_enable_verify_all ()
+{
+       verify_all = TRUE;
+}
+
+#ifndef DISABLE_VERIFIER
 /*
  * Pull the list of opcodes
  */
@@ -177,7 +209,7 @@ static int
 get_stack_type (MonoType *type);
 
 static gboolean
-mono_delegate_signature_equal (MonoMethodSignature *sig1, MonoMethodSignature *sig2);
+mono_delegate_signature_equal (MonoMethodSignature *delegate_sig, MonoMethodSignature *method_sig, gboolean is_static_ldftn);
 
 static gboolean
 mono_class_is_valid_generic_instantiation (VerifyContext *ctx, MonoClass *klass);
@@ -334,9 +366,9 @@ static MonoType*
 mono_type_get_underlying_type_any (MonoType *type)
 {
        if (type->type == MONO_TYPE_VALUETYPE && type->data.klass->enumtype)
-               return type->data.klass->enum_basetype;
+               return mono_class_enum_basetype (type->data.klass);
        if (type->type == MONO_TYPE_GENERICINST && type->data.generic_class->container_class->enumtype)
-               return type->data.generic_class->container_class->enum_basetype;
+               return mono_class_enum_basetype (type->data.generic_class->container_class);
        return type;
 }
 
@@ -379,15 +411,64 @@ static gboolean
 mono_class_interface_implements_interface (MonoClass *candidate, MonoClass *iface)
 {
        int i;
-       if (candidate == iface)
-               return TRUE;
-       for (i = 0; i < candidate->interface_count; ++i) {
-               if (candidate->interfaces [i] == iface || mono_class_interface_implements_interface (candidate->interfaces [i], iface))
+       do {
+               if (candidate == iface)
                        return TRUE;
-       }
+               mono_class_setup_interfaces (candidate);
+               for (i = 0; i < candidate->interface_count; ++i) {
+                       if (candidate->interfaces [i] == iface || mono_class_interface_implements_interface (candidate->interfaces [i], iface))
+                               return TRUE;
+               }
+               candidate = candidate->parent;
+       } while (candidate);
        return FALSE;
 }
 
+/*
+ * Verify if @type is valid for the given @ctx verification context.
+ * this function checks for VAR and MVAR types that are invalid under the current verifier,
+ */
+static gboolean
+mono_type_is_valid_type_in_context (MonoType *type, MonoGenericContext *context)
+{
+       int i;
+       MonoGenericInst *inst;
+
+       switch (type->type) {
+       case MONO_TYPE_VAR:
+       case MONO_TYPE_MVAR:
+               if (!context)
+                       return FALSE;
+               inst = type->type == MONO_TYPE_VAR ? context->class_inst : context->method_inst;
+               if (!inst || mono_type_get_generic_param_num (type) >= inst->type_argc)
+                       return FALSE;
+               break;
+       case MONO_TYPE_SZARRAY:
+               return mono_type_is_valid_type_in_context (&type->data.klass->byval_arg, context);
+       case MONO_TYPE_ARRAY:
+               return mono_type_is_valid_type_in_context (&type->data.array->eklass->byval_arg, context);
+       case MONO_TYPE_PTR:
+               return mono_type_is_valid_type_in_context (type->data.type, context);
+       case MONO_TYPE_GENERICINST:
+               inst = type->data.generic_class->context.class_inst;
+               if (!inst->is_open)
+                       break;
+               for (i = 0; i < inst->type_argc; ++i)
+                       if (!mono_type_is_valid_type_in_context (inst->type_argv [i], context))
+                               return FALSE;
+               break;
+       }
+       return TRUE;
+}
+
+/*This function returns NULL if the type is not instantiatable*/
+static MonoType*
+verifier_inflate_type (VerifyContext *ctx, MonoType *type, MonoGenericContext *context)
+{
+       if (!mono_type_is_valid_type_in_context (type, context))
+               return NULL;
+       return mono_class_inflate_generic_type (type, context);
+}
 /*
  * Test if @candidate is a subtype of @target using the minimal possible information
  * TODO move the code for non finished TypeBuilders to here.
@@ -437,11 +518,11 @@ is_valid_generic_instantiation (MonoGenericContainer *gc, MonoGenericContext *co
                return FALSE;
 
        for (i = 0; i < gc->type_argc; ++i) {
-               MonoGenericParam *param = &gc->type_params [i];
+               MonoGenericParamInfo *param_info = mono_generic_container_get_param_info (gc, i);
                MonoClass *paramClass;
                MonoClass **constraints;
 
-               if (!param->constraints && !(param->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK))
+               if (!param_info->constraints && !(param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK))
                        continue;
                if (mono_type_is_generic_argument (ginst->type_argv [i]))
                        continue; //it's not our job to validate type variables
@@ -457,19 +538,19 @@ is_valid_generic_instantiation (MonoGenericContainer *gc, MonoGenericContext *co
                                return FALSE;
                }
 
-               if ((param->flags & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT) && (!paramClass->valuetype || mono_class_is_nullable (paramClass)))
+               if ((param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT) && (!paramClass->valuetype || mono_class_is_nullable (paramClass)))
                        return FALSE;
 
-               if ((param->flags & GENERIC_PARAMETER_ATTRIBUTE_REFERENCE_TYPE_CONSTRAINT) && paramClass->valuetype)
+               if ((param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_REFERENCE_TYPE_CONSTRAINT) && paramClass->valuetype)
                        return FALSE;
 
-               if ((param->flags & GENERIC_PARAMETER_ATTRIBUTE_CONSTRUCTOR_CONSTRAINT) && !paramClass->valuetype && !mono_class_has_default_constructor (paramClass))
+               if ((param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_CONSTRUCTOR_CONSTRAINT) && !paramClass->valuetype && !mono_class_has_default_constructor (paramClass))
                        return FALSE;
 
-               if (!param->constraints)
+               if (!param_info->constraints)
                        continue;
 
-               for (constraints = param->constraints; *constraints; ++constraints) {
+               for (constraints = param_info->constraints; *constraints; ++constraints) {
                        MonoClass *ctr = *constraints;
                        MonoType *inflated;
 
@@ -490,26 +571,33 @@ is_valid_generic_instantiation (MonoGenericContainer *gc, MonoGenericContext *co
  * This means that @candidate constraints are a super set of @target constaints
  */
 static gboolean
-mono_generic_param_is_constraint_compatible (MonoGenericParam *target, MonoGenericParam *candidate, MonoGenericContext *context)
+mono_generic_param_is_constraint_compatible (VerifyContext *ctx, MonoGenericParam *target, MonoGenericParam *candidate, MonoGenericContext *context)
 {
-       int tmask = target->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;
-       int cmask = candidate->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;    
+       MonoGenericParamInfo *tinfo = mono_generic_param_info (target);
+       MonoGenericParamInfo *cinfo = mono_generic_param_info (candidate);
+
+       int tmask = tinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;
+       int cmask = cinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;
        if ((tmask & cmask) != tmask)
                return FALSE;
 
-       if (target->constraints) {
+       if (tinfo->constraints) {
                MonoClass **target_class, **candidate_class;
-               if (!candidate->constraints)
+               if (!cinfo->constraints)
                        return FALSE;
-               for (target_class = target->constraints; *target_class; ++target_class) {
-                       MonoType *inflated = mono_class_inflate_generic_type (&(*target_class)->byval_arg, context);
-                       MonoClass *tc = mono_class_from_mono_type (inflated);
+               for (target_class = tinfo->constraints; *target_class; ++target_class) {
+                       MonoClass *tc;
+                       MonoType *inflated = verifier_inflate_type (ctx, &(*target_class)->byval_arg, context);
+                       if (!inflated)
+                               return FALSE;
+                       tc = mono_class_from_mono_type (inflated);
                        mono_metadata_free_type (inflated);
 
-                       for (candidate_class = candidate->constraints; *candidate_class; ++candidate_class) {
+                       for (candidate_class = cinfo->constraints; *candidate_class; ++candidate_class) {
                                MonoClass *cc;
-
-                               inflated = mono_class_inflate_generic_type (&(*candidate_class)->byval_arg, context);
+                               inflated = verifier_inflate_type (ctx, &(*candidate_class)->byval_arg, ctx->generic_context);
+                               if (!inflated)
+                                       return FALSE;
                                cc = mono_class_from_mono_type (inflated);
                                mono_metadata_free_type (inflated);
 
@@ -530,7 +618,7 @@ verifier_get_generic_param_from_type (VerifyContext *ctx, MonoType *type)
        MonoMethod *method = ctx->method;
        int num;
 
-       num = type->data.generic_param->num;
+       num = mono_type_get_generic_param_num (type);
 
        if (type->type == MONO_TYPE_VAR) {
                MonoClass *gtd = method->klass;
@@ -545,7 +633,7 @@ verifier_get_generic_param_from_type (VerifyContext *ctx, MonoType *type)
        }
        if (!gc)
                return FALSE;
-       return &gc->type_params [num];
+       return mono_generic_container_get_param (gc, num);
 }
 
 
@@ -558,20 +646,7 @@ verifier_get_generic_param_from_type (VerifyContext *ctx, MonoType *type)
 static gboolean
 is_valid_type_in_context (VerifyContext *ctx, MonoType *type)
 {
-       if (mono_type_is_generic_argument (type) && !ctx->generic_context)
-               return FALSE;
-       if (type->type == MONO_TYPE_VAR) {
-               if (!ctx->generic_context->class_inst)
-                       return FALSE;
-               if (type->data.generic_param->num >= ctx->generic_context->class_inst->type_argc)
-                       return FALSE;
-       } else if (type->type == MONO_TYPE_MVAR) {
-               if (!ctx->generic_context->method_inst)
-                       return FALSE;
-               if (type->data.generic_param->num >= ctx->generic_context->method_inst->type_argc)
-                       return FALSE;
-       }
-       return TRUE;
+       return mono_type_is_valid_type_in_context (type, ctx->generic_context);
 }
 
 static gboolean
@@ -592,7 +667,7 @@ generic_arguments_respect_constraints (VerifyContext *ctx, MonoGenericContainer
        int i;
        for (i = 0; i < ginst->type_argc; ++i) {
                MonoType *type = ginst->type_argv [i];
-               MonoGenericParam *target = &gc->type_params [i];
+               MonoGenericParam *target = mono_generic_container_get_param (gc, i);
                MonoGenericParam *candidate;
 
                if (!mono_type_is_generic_argument (type))
@@ -603,7 +678,7 @@ generic_arguments_respect_constraints (VerifyContext *ctx, MonoGenericContainer
 
                candidate = verifier_get_generic_param_from_type (ctx, type);
 
-               if (!mono_generic_param_is_constraint_compatible (target, candidate, context))
+               if (!mono_generic_param_is_constraint_compatible (ctx, target, candidate, context))
                        return FALSE;
        }
        return TRUE;
@@ -732,7 +807,7 @@ verifier_load_field (VerifyContext *ctx, int token, MonoClass **klass, const cha
        }
 
        field = mono_field_from_token (ctx->image, token, klass, ctx->generic_context);
-       if (!field) {
+       if (!field || !field->parent) {
                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);
                return NULL;
        }
@@ -869,6 +944,49 @@ stack_slot_get_name (ILStackDesc *value)
 {
        return type_names [value->stype & TYPE_MASK];
 }
+
+#define APPEND_WITH_PREDICATE(PRED,NAME) do {\
+       if (PRED (value)) { \
+               if (!first) \
+                       g_string_append (str, ", "); \
+               g_string_append (str, NAME); \
+               first = FALSE; \
+       } } while (0)
+
+static char*
+stack_slot_stack_type_full_name (ILStackDesc *value)
+{
+       GString *str = g_string_new ("");
+       char *result;
+
+       if ((value->stype & TYPE_MASK) != value->stype) {
+               gboolean first = TRUE;
+               g_string_append(str, "[");
+               APPEND_WITH_PREDICATE (stack_slot_is_this_pointer, "this");
+               APPEND_WITH_PREDICATE (stack_slot_is_boxed_value, "boxed");
+               APPEND_WITH_PREDICATE (stack_slot_is_null_literal, "null");
+               APPEND_WITH_PREDICATE (stack_slot_is_managed_mutability_pointer, "cmmp");
+               APPEND_WITH_PREDICATE (stack_slot_is_managed_pointer, "mp");
+               g_string_append(str, "] ");
+       }
+
+       g_string_append (str, stack_slot_get_name (value));
+       result = str->str;
+       g_string_free (str, FALSE);
+       return result;
+}
+
+static char*
+stack_slot_full_name (ILStackDesc *value)
+{
+       char *type_name = mono_type_full_name (value->type);
+       char *stack_name = stack_slot_stack_type_full_name (value);
+       char *res = g_strdup_printf ("%s (%s)", type_name, stack_name);
+       g_free (type_name);
+       g_free (stack_name);
+       return res;
+}
+
 //////////////////////////////////////////////////////////////////
 void
 mono_free_verify_list (GSList *list)
@@ -2113,10 +2231,10 @@ dump_stack_value (ILStackDesc *value)
                                printf ("complex] (inst of %s )", value->type->data.generic_class->container_class->name);
                                return;
                        case MONO_TYPE_VAR:
-                               printf ("complex] (type generic param !%d - %s) ", value->type->data.generic_param->num, value->type->data.generic_param->name);
+                               printf ("complex] (type generic param !%d - %s) ", value->type->data.generic_param->num, mono_generic_param_info (value->type->data.generic_param)->name);
                                return;
                        case MONO_TYPE_MVAR:
-                               printf ("complex] (method generic param !!%d - %s) ", value->type->data.generic_param->num, value->type->data.generic_param->name);
+                               printf ("complex] (method generic param !!%d - %s) ", value->type->data.generic_param->num, mono_generic_param_info (value->type->data.generic_param)->name);
                                return;
                        default: {
                                //should be a boxed value 
@@ -2150,27 +2268,15 @@ dump_stack_state (ILCodeDesc *state)
 static gboolean
 is_array_type_compatible (MonoType *target, MonoType *candidate)
 {
-       int i;
        MonoArrayType *left = target->data.array;
        MonoArrayType *right = candidate->data.array;
 
        g_assert (target->type == MONO_TYPE_ARRAY);
        g_assert (candidate->type == MONO_TYPE_ARRAY);
 
-
-       if ((left->rank != right->rank) ||
-                       (left->numsizes != right->numsizes) ||
-                       (left->numlobounds != right->numlobounds))
+       if (left->rank != right->rank)
                return FALSE;
 
-       for (i = 0; i < left->numsizes; ++i) 
-               if (left->sizes [i] != right->sizes [i])
-                       return FALSE;
-
-       for (i = 0; i < left->numlobounds; ++i) 
-               if (left->lobounds [i] != right->lobounds [i])
-                       return FALSE;
-
        return mono_class_is_assignable_from (left->eklass, right->eklass);
 }
 
@@ -2346,6 +2452,8 @@ init_stack_with_value_at_exception_boundary (VerifyContext *ctx, ILCodeDesc *cod
        ctx->exception_types = g_slist_prepend (ctx->exception_types, type);
        code->size = 1;
        code->flags |= IL_CODE_FLAG_WAS_TARGET;
+       if (mono_type_is_generic_argument (type))
+               code->stack->stype |= BOXED_MASK;
 }
 
 /*Verify if type 'candidate' can be stored in type 'target'.
@@ -2359,7 +2467,7 @@ verify_type_compatibility_full (VerifyContext *ctx, MonoType *target, MonoType *
 #define IS_ONE_OF2(T, A, B) (T == A || T == B)
 
        MonoType *original_candidate = candidate;
-       VERIFIER_DEBUG ( printf ("checking type compatibility %p %p[%x][%x] %p[%x][%x]\n", ctx, target, target->type, target->byref, candidate, candidate->type, candidate->byref); );
+       VERIFIER_DEBUG ( printf ("checking type compatibility %s x %s strict %d\n", mono_type_full_name (target), mono_type_full_name (candidate), strict); );
 
        /*only one is byref */
        if (candidate->byref ^ target->byref) {
@@ -2474,9 +2582,9 @@ handle_enum:
                if (candidate->type != MONO_TYPE_SZARRAY)
                        return FALSE;
 
-               left = target->data.array->eklass;
-               right = candidate->data.array->eklass;
-               return mono_class_is_assignable_from(left, right);
+               left = mono_class_from_mono_type (target)->element_class;
+               right = mono_class_from_mono_type (candidate)->element_class;
+               return mono_class_is_assignable_from (left, right);
        }
 
        case MONO_TYPE_ARRAY:
@@ -2487,24 +2595,28 @@ handle_enum:
        case MONO_TYPE_TYPEDBYREF:
                return candidate->type == MONO_TYPE_TYPEDBYREF;
 
-       case MONO_TYPE_VALUETYPE:
-               if (candidate->type == MONO_TYPE_VALUETYPE && target->data.klass == candidate->data.klass)
+       case MONO_TYPE_VALUETYPE: {
+               MonoClass *target_klass  = mono_class_from_mono_type (target);
+               MonoClass *candidate_klass = mono_class_from_mono_type (candidate);
+
+               if (target_klass == candidate_klass)
                        return TRUE;
                if (mono_type_is_enum_type (target)) {
                        target = mono_type_get_underlying_type_any (target);
                        goto handle_enum;
                }
                return FALSE;
+       }
 
        case MONO_TYPE_VAR:
                if (candidate->type != MONO_TYPE_VAR)
                        return FALSE;
-               return candidate->data.generic_param->num == target->data.generic_param->num;
+               return mono_type_get_generic_param_num (candidate) == mono_type_get_generic_param_num (target);
 
        case MONO_TYPE_MVAR:
                if (candidate->type != MONO_TYPE_MVAR)
                        return FALSE;
-               return candidate->data.generic_param->num == target->data.generic_param->num;
+               return mono_type_get_generic_param_num (candidate) == mono_type_get_generic_param_num (target);
 
        default:
                VERIFIER_DEBUG ( printf ("unknown store type %d\n", target->type); );
@@ -2529,7 +2641,7 @@ verify_type_compatibility (VerifyContext *ctx, MonoType *target, MonoType *candi
 static MonoGenericParam*
 get_generic_param (VerifyContext *ctx, MonoType *param) 
 {
-       guint16 param_num = param->data.generic_param->num;
+       guint16 param_num = mono_type_get_generic_param_num (param);
        if (param->type == MONO_TYPE_VAR) {
                if (!ctx->generic_context->class_inst || ctx->generic_context->class_inst->type_argc <= param_num) {
                        ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid generic type argument %d", param_num));
@@ -2554,7 +2666,7 @@ get_generic_param (VerifyContext *ctx, MonoType *param)
  * @type The source type. It it tested to be of the proper type.    
  * @candidate type of the boxed valuetype.
  * @stack stack slot of the boxed valuetype, separate from @candidade since one could be changed before calling this function
- * @strict if TRUE candidate must be boxed compatible to type otherwise it's enough
+ * @strict if TRUE candidate must be boxed compatible to the target type
  * 
  */
 static gboolean
@@ -2568,7 +2680,7 @@ is_compatible_boxed_valuetype (VerifyContext *ctx, MonoType *type, MonoType *can
        if (mono_type_is_generic_argument (candidate)) {
                MonoGenericParam *param = get_generic_param (ctx, candidate);
                MonoClass **class;
-               for (class = param->constraints; class && *class; ++class) {
+               for (class = mono_generic_param_info (param)->constraints; class && *class; ++class) {
                        if (verify_type_compatibility_full (ctx, type, mono_type_get_type_byval (& (*class)->byval_arg), FALSE))
                                return TRUE;
                }
@@ -2578,10 +2690,9 @@ is_compatible_boxed_valuetype (VerifyContext *ctx, MonoType *type, MonoType *can
                return FALSE;
 
        if (!strict)
-               return MONO_TYPE_IS_REFERENCE (type);
+               return TRUE;
 
-       /*All boxed valuetypes are compatible to System.Object*/
-       return MONO_TYPE_IS_REFERENCE (type) && (type->type == MONO_TYPE_OBJECT || verify_type_compatibility_full (ctx, type, candidate, FALSE));
+       return MONO_TYPE_IS_REFERENCE (type) && mono_class_is_assignable_from (mono_class_from_mono_type (type), mono_class_from_mono_type (candidate));
 }
 
 static int
@@ -2644,7 +2755,7 @@ mono_delegate_type_equal (MonoType *target, MonoType *candidate)
        case MONO_TYPE_FNPTR:
                if (candidate->type != MONO_TYPE_FNPTR)
                        return FALSE;
-               return mono_delegate_signature_equal (mono_type_get_signature (target), mono_type_get_signature (candidate));
+               return mono_delegate_signature_equal (mono_type_get_signature (target), mono_type_get_signature (candidate), FALSE);
 
        case MONO_TYPE_GENERICINST: {
                MonoClass *target_klass;
@@ -2658,14 +2769,12 @@ mono_delegate_type_equal (MonoType *target, MonoType *candidate)
                return MONO_TYPE_IS_REFERENCE (candidate);
 
        case MONO_TYPE_CLASS:
-               if (candidate->type != MONO_TYPE_CLASS)
-                       return FALSE;
-               return mono_class_is_assignable_from(target->data.klass, candidate->data.klass);
+               return mono_class_is_assignable_from(target->data.klass, mono_class_from_mono_type (candidate));
 
        case MONO_TYPE_SZARRAY:
                if (candidate->type != MONO_TYPE_SZARRAY)
                        return FALSE;
-               return mono_class_is_assignable_from (target->data.array->eklass, candidate->data.array->eklass);
+               return mono_class_is_assignable_from (mono_class_from_mono_type (target)->element_class, mono_class_from_mono_type (candidate)->element_class);
 
        case MONO_TYPE_ARRAY:
                if (candidate->type != MONO_TYPE_ARRAY)
@@ -2674,14 +2783,14 @@ mono_delegate_type_equal (MonoType *target, MonoType *candidate)
 
        case MONO_TYPE_VALUETYPE:
                /*FIXME handle nullables and enum*/
-               return candidate->type == MONO_TYPE_VALUETYPE && target->data.klass == candidate->data.klass;
+               return mono_class_from_mono_type (candidate) == mono_class_from_mono_type (target);
 
        case MONO_TYPE_VAR:
-               return candidate->type == MONO_TYPE_VAR && target->data.generic_param->num == candidate->data.generic_param->num; 
+               return candidate->type == MONO_TYPE_VAR && mono_type_get_generic_param_num (target) == mono_type_get_generic_param_num (candidate);
                return FALSE;
 
        case MONO_TYPE_MVAR:
-               return candidate->type == MONO_TYPE_MVAR && target->data.generic_param->num == candidate->data.generic_param->num;
+               return candidate->type == MONO_TYPE_MVAR && mono_type_get_generic_param_num (target) == mono_type_get_generic_param_num (candidate);
                return FALSE;
 
        default:
@@ -2719,24 +2828,26 @@ mono_delegate_ret_equal (MonoType *delegate, MonoType *method)
  * FIXME can this function be eliminated and proper metadata functionality be used?
  */
 static gboolean
-mono_delegate_signature_equal (MonoMethodSignature *sig1, MonoMethodSignature *sig2)
+mono_delegate_signature_equal (MonoMethodSignature *delegate_sig, MonoMethodSignature *method_sig, gboolean is_static_ldftn)
 {
        int i;
-       if (sig1->param_count != sig2->param_count) 
+       int method_offset = is_static_ldftn ? 1 : 0;
+
+       if (delegate_sig->param_count + method_offset != method_sig->param_count) 
                return FALSE;
 
-       if (sig1->call_convention != sig2->call_convention)
+       if (delegate_sig->call_convention != method_sig->call_convention)
                return FALSE;
 
-       for (i = 0; i < sig1->param_count; i++) { 
-               MonoType *p1 = sig1->params [i];
-               MonoType *p2 = sig2->params [i];
+       for (i = 0; i < delegate_sig->param_count; i++) { 
+               MonoType *p1 = delegate_sig->params [i];
+               MonoType *p2 = method_sig->params [i + method_offset];
 
                if (!mono_delegate_param_equal (p1, p2))
                        return FALSE;
        }
 
-       if (!mono_delegate_ret_equal (sig1->ret, sig2->ret))
+       if (!mono_delegate_ret_equal (delegate_sig->ret, method_sig->ret))
                return FALSE;
 
        return TRUE;
@@ -2788,6 +2899,7 @@ verify_delegate_compatibility (VerifyContext *ctx, MonoClass *delegate, ILStackD
        MonoMethod *invoke, *method;
        const guint8 *ip = ctx->header->code;
        guint32 ip_offset = ctx->ip_offset;
+       gboolean is_static_ldftn = FALSE, is_first_arg_bound = FALSE;
        
        if (stack_slot_get_type (funptr) != TYPE_PTR || !funptr->method) {
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid function pointer parameter for delegate constructor at 0x%04x", ctx->ip_offset));
@@ -2797,8 +2909,18 @@ verify_delegate_compatibility (VerifyContext *ctx, MonoClass *delegate, ILStackD
        invoke = mono_get_delegate_invoke (delegate);
        method = funptr->method;
 
-       if (!mono_delegate_signature_equal (mono_method_signature (invoke), mono_method_signature (method)))
-               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Function pointer parameter for delegate constructor has diferent signature at 0x%04x", ctx->ip_offset));
+       is_static_ldftn = (ip_offset > 5 && IS_LOAD_FUN_PTR (CEE_LDFTN)) && method->flags & METHOD_ATTRIBUTE_STATIC;
+
+       if (is_static_ldftn)
+               is_first_arg_bound = mono_method_signature (invoke)->param_count + 1 ==  mono_method_signature (method)->param_count;
+
+       if (!mono_delegate_signature_equal (mono_method_signature (invoke), mono_method_signature (method), is_first_arg_bound)) {
+               char *fun_sig = mono_signature_get_desc (mono_method_signature (method), FALSE);
+               char *invoke_sig = mono_signature_get_desc (mono_method_signature (invoke), FALSE);
+               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));
+               g_free (fun_sig);
+               g_free (invoke_sig);
+       }
 
        /* 
         * Delegate code sequences:
@@ -2821,8 +2943,13 @@ verify_delegate_compatibility (VerifyContext *ctx, MonoClass *delegate, ILStackD
        ctx->code [ip_offset].flags |= IL_CODE_DELEGATE_SEQUENCE;
 
        //general tests
-       if (!verify_stack_type_compatibility_full (ctx, &method->klass->byval_arg, value, FALSE, TRUE) && !stack_slot_is_null_literal (value))
-               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("This object not compatible with function pointer for delegate creation at 0x%04x", ctx->ip_offset));
+       if (is_first_arg_bound) {
+               if (!verify_stack_type_compatibility_full (ctx, mono_method_signature (method)->params [0], value, FALSE, TRUE))
+                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("This object not compatible with function pointer for delegate creation at 0x%04x", ctx->ip_offset));
+       } else {
+               if (!verify_stack_type_compatibility_full (ctx, &method->klass->byval_arg, value, FALSE, TRUE) && !stack_slot_is_null_literal (value))
+                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("This object not compatible with function pointer for delegate creation at 0x%04x", ctx->ip_offset));
+       }
 
        if (stack_slot_get_type (value) != TYPE_COMPLEX)
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid first parameter for delegate creation at 0x%04x", ctx->ip_offset));
@@ -3022,7 +3149,7 @@ do_boolean_branch_op (VerifyContext *ctx, int delta)
 static gboolean
 stack_slot_is_complex_type_not_reference_type (ILStackDesc *slot)
 {
-       return stack_slot_get_type (slot) == TYPE_COMPLEX && !MONO_TYPE_IS_REFERENCE (slot->type);
+       return stack_slot_get_type (slot) == TYPE_COMPLEX && !MONO_TYPE_IS_REFERENCE (slot->type) && !stack_slot_is_boxed_value (slot);
 }
 
 static void
@@ -3204,8 +3331,13 @@ do_invoke_method (VerifyContext *ctx, int method_token, gboolean virtual)
        for (i = sig->param_count - 1; i >= 0; --i) {
                VERIFIER_DEBUG ( printf ("verifying argument %d\n", i); );
                value = stack_pop (ctx);
-               if (!verify_stack_type_compatibility (ctx, sig->params[i], value))
-                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible parameter value with function signature at 0x%04x", ctx->ip_offset));
+               if (!verify_stack_type_compatibility (ctx, sig->params[i], value)) {
+                       char *stack_name = stack_slot_full_name (value);
+                       char *sig_name = mono_type_full_name (sig->params [i]);
+                       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));
+                       g_free (stack_name);
+                       g_free (sig_name);
+               }
 
                if (stack_slot_is_managed_mutability_pointer (value))
                        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));
@@ -3265,11 +3397,17 @@ do_invoke_method (VerifyContext *ctx, int method_token, gboolean virtual)
                if (!verify_stack_type_compatibility (ctx, type, &copy))
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible this argument on stack with method signature at 0x%04x", ctx->ip_offset));
 
-               if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, value->type->data.klass))
-                       CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Method is not accessible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+               if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, mono_class_from_mono_type (value->type))) {
+                       char *name = mono_method_full_name (method, TRUE);
+                       CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Method %s is not accessible at 0x%04x", name, ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+                       g_free (name);
+               }
 
-       } else if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, NULL))
-               CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Method is not accessible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+       } else if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, NULL)) {
+               char *name = mono_method_full_name (method, TRUE);
+               CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Method %s is not accessible at 0x%04x", name, ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+               g_free (name);
+       }
 
        if (sig->ret->type != MONO_TYPE_VOID) {
                if (check_overflow (ctx)) {
@@ -3449,6 +3587,7 @@ do_box_value (VerifyContext *ctx, int klass_token)
 {
        ILStackDesc *value;
        MonoType *type = get_boxable_mono_type (ctx, klass_token, "box");
+       MonoClass *klass;       
 
        if (!type)
                return;
@@ -3468,6 +3607,9 @@ do_box_value (VerifyContext *ctx, int klass_token)
        if (!verify_stack_type_compatibility (ctx, type, value))
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type at stack for boxing operation at 0x%04x", ctx->ip_offset));
 
+       klass = mono_class_from_mono_type (type);
+       if (mono_class_is_nullable (klass))
+               type = &mono_class_get_nullable_param (klass)->byval_arg;
        stack_push_val (ctx, TYPE_COMPLEX | BOXED_MASK, type);
 }
 
@@ -3723,7 +3865,12 @@ do_initobj (VerifyContext *ctx, int token)
                else if (IS_STRICT_MODE (ctx) && !mono_metadata_type_equal (type, stack)) 
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type token of initobj not compatible with value on stack at 0x%04x", ctx->ip_offset));
        } else if (!verify_type_compatibility (ctx, stack, type)) {
-               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type token of initobj not compatible with value on stack at 0x%04x", ctx->ip_offset));
+               char *expected_name = mono_type_full_name (type);
+               char *stack_name = mono_type_full_name (stack);
+
+               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));
+               g_free (expected_name);
+               g_free (stack_name);
        }
 }
 
@@ -3747,8 +3894,13 @@ do_newobj (VerifyContext *ctx, int token)
        if (method->klass->flags & (TYPE_ATTRIBUTE_ABSTRACT | TYPE_ATTRIBUTE_INTERFACE))
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Trying to instantiate an abstract or interface type at 0x%04x", ctx->ip_offset));
 
-       if (!mono_method_can_access_method_full (ctx->method, method, NULL))
-               CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Constructor not visible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+       if (!mono_method_can_access_method_full (ctx->method, method, NULL)) {
+               char *from = mono_method_full_name (ctx->method, TRUE);
+               char *to = mono_method_full_name (method, TRUE);
+               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);
+               g_free (from);
+               g_free (to);
+       }
 
        //FIXME use mono_method_get_signature_full
        sig = mono_method_signature (method);
@@ -3771,8 +3923,13 @@ do_newobj (VerifyContext *ctx, int token)
                for (i = sig->param_count - 1; i >= 0; --i) {
                        VERIFIER_DEBUG ( printf ("verifying constructor argument %d\n", i); );
                        value = stack_pop (ctx);
-                       if (!verify_stack_type_compatibility (ctx, sig->params [i], value))
-                               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible parameter value with function signature at 0x%04x", ctx->ip_offset));
+                       if (!verify_stack_type_compatibility (ctx, sig->params [i], value)) {
+                               char *stack_name = stack_slot_full_name (value);
+                               char *sig_name = mono_type_full_name (sig->params [i]);
+                               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));
+                               g_free (stack_name);
+                               g_free (sig_name);
+                       }
 
                        if (stack_slot_is_managed_mutability_pointer (value))
                                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly pointer as argument of newobj at 0x%04x", ctx->ip_offset));
@@ -4138,6 +4295,11 @@ do_throw (VerifyContext *ctx)
        if (!stack_slot_is_null_literal (exception) && !(stack_slot_get_type (exception) == TYPE_COMPLEX && !mono_class_from_mono_type (exception->type)->valuetype))
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type on stack for throw, expected reference type at 0x%04x", ctx->ip_offset));
 
+       if (mono_type_is_generic_argument (exception->type) && !stack_slot_is_boxed_value (exception)) {
+               char *name = mono_type_full_name (exception->type);
+               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));
+               g_free (name);
+       }
        /*The stack is left empty after a throw*/
        ctx->eval.size = 0;
 }
@@ -4347,7 +4509,7 @@ do_ldstr (VerifyContext *ctx, guint32 token)
                return;
        }
 
-       if (mono_metadata_token_index (token) >= ctx->image->heap_us.size) {
+       if (!ctx->image->dynamic && mono_metadata_token_index (token) >= ctx->image->heap_us.size) {
                ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid string index %x at 0x%04x", token, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
                return;
        }
@@ -4492,7 +4654,11 @@ merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean sta
                }
 
                if (mono_type_is_generic_argument (old_type) || mono_type_is_generic_argument (new_type)) {
-                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Could not merge stack at depth %d, types not compatible old [%s] new [%s] at 0x%04x", i, stack_slot_get_name (old_slot), stack_slot_get_name (new_slot), ctx->ip_offset)); 
+                       char *old_name = stack_slot_full_name (old_slot); 
+                       char *new_name = stack_slot_full_name (new_slot);
+                       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));
+                       g_free (old_name);
+                       g_free (new_name);
                        goto end_verify;                        
                } 
 
@@ -4509,6 +4675,7 @@ merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean sta
                                }
                        }
 
+                       mono_class_setup_interfaces (old_class);
                        for (j = 0; j < old_class->interface_count; ++j) {
                                for (k = 0; k < new_class->interface_count; ++k) {
                                        if (mono_metadata_type_equal (&old_class->interfaces [j]->byval_arg, &new_class->interfaces [k]->byval_arg)) {
@@ -4524,9 +4691,15 @@ merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean sta
                } 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)) {
                        match_class = mono_defaults.object_class;
                        goto match_found;
-               } 
+               }
 
-               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Could not merge stack at depth %d, types not compatible old [%s] new [%s] at 0x%04x", i, stack_slot_get_name (old_slot), stack_slot_get_name (new_slot), ctx->ip_offset)); 
+               {
+               char *old_name = stack_slot_full_name (old_slot); 
+               char *new_name = stack_slot_full_name (new_slot);
+               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)); 
+               g_free (old_name);
+               g_free (new_name);
+               }
                set_stack_value (ctx, old_slot, &new_class->byval_arg, stack_slot_is_managed_pointer (old_slot));
                goto end_verify;
 
@@ -4600,10 +4773,8 @@ static void
 verify_clause_relationship (VerifyContext *ctx, MonoExceptionClause *clause, MonoExceptionClause *to_test)
 {
        /*clause is nested*/
-       if (is_clause_nested (to_test, clause)) {
-               if (to_test->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
-                       ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception clause inside filter"));
-               }
+       if (to_test->flags == MONO_EXCEPTION_CLAUSE_FILTER && is_clause_inside_range (clause, to_test->data.filter_offset, to_test->handler_offset)) {
+               ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception clause inside filter"));
                return;
        }
 
@@ -4630,8 +4801,8 @@ verify_clause_relationship (VerifyContext *ctx, MonoExceptionClause *clause, Mon
        }
 
        /*not completelly disjoint*/
-       if (is_clause_in_range (to_test, clause->try_offset, clause->try_offset + clause->try_len) ||
-               is_clause_in_range (to_test, HANDLER_START (clause), clause->handler_offset + clause->handler_len))
+       if ((is_clause_in_range (to_test, clause->try_offset, clause->try_offset + clause->try_len) ||
+               is_clause_in_range (to_test, HANDLER_START (clause), clause->handler_offset + clause->handler_len)) && !is_clause_nested (to_test, clause))
                ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception clauses overlap"));
 }
 
@@ -4744,14 +4915,14 @@ mono_method_verify (MonoMethod *method, int level)
                MonoExceptionClause *clause = ctx.header->clauses + i;
                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); );
 
-               if (clause->try_offset > ctx.code_size)
+               if (clause->try_offset > ctx.code_size || clause->try_offset + clause->try_len > ctx.code_size)
                        ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try clause out of bounds at 0x%04x", clause->try_offset));
 
                if (clause->try_len <= 0)
                        ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try clause len <= 0 at 0x%04x", clause->try_offset));
 
-               if (clause->handler_offset > ctx.code_size)
-                       ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try clause out of bounds at 0x%04x", clause->try_offset));
+               if (clause->handler_offset > ctx.code_size || clause->handler_offset + clause->handler_len > ctx.code_size)
+                       ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("handler clause out of bounds at 0x%04x", clause->try_offset));
 
                if (clause->handler_len <= 0)
                        ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try clause len <= 0 at 0x%04x", clause->try_offset));
@@ -4766,8 +4937,10 @@ mono_method_verify (MonoMethod *method, int level)
                        break;
 
                ctx.code [clause->try_offset].flags |= IL_CODE_FLAG_WAS_TARGET;
-               ctx.code [clause->try_offset + clause->try_len].flags |= IL_CODE_FLAG_WAS_TARGET;
-               ctx.code [clause->handler_offset + clause->handler_len].flags |= IL_CODE_FLAG_WAS_TARGET;
+               if (clause->try_offset + clause->try_len < ctx.code_size)
+                       ctx.code [clause->try_offset + clause->try_len].flags |= IL_CODE_FLAG_WAS_TARGET;
+               if (clause->handler_offset + clause->handler_len < ctx.code_size)
+                       ctx.code [clause->handler_offset + clause->handler_len].flags |= IL_CODE_FLAG_WAS_TARGET;
 
                if (clause->flags == MONO_EXCEPTION_CLAUSE_NONE) {
                        init_stack_with_value_at_exception_boundary (&ctx, ctx.code + clause->handler_offset, clause->data.catch_class);
@@ -4812,7 +4985,7 @@ mono_method_verify (MonoMethod *method, int level)
                                start = 1;
                        }
 
-                       if (clause->try_offset == ip_offset && ctx.eval.size > 0) {
+                       if (clause->try_offset == ip_offset && ctx.eval.size > 0 && start == 0) {
                                ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Try to enter try block with a non-empty stack at 0x%04x", ip_offset));
                                start = 1;
                        }
@@ -5591,6 +5764,7 @@ mono_method_verify (MonoMethod *method, int level)
                                if (!is_correct_rethrow (ctx.header, ip_offset))
                                        ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("rethrow must be used inside a catch handler at 0x%04x", ctx.ip_offset));
                                ctx.eval.size = 0;
+                               start = 1;
                                ++ip;
                                break;
                        case CEE_UNUSED:
@@ -5706,25 +5880,6 @@ mono_verify_corlib ()
        return NULL;
 }
 
-static MiniVerifierMode verifier_mode = MONO_VERIFIER_MODE_OFF;
-static gboolean verify_all = FALSE;
-
-/*
- * Set the desired level of checks for the verfier.
- * 
- */
-void
-mono_verifier_set_mode (MiniVerifierMode mode)
-{
-       verifier_mode = mode;
-}
-
-void
-mono_verifier_enable_verify_all ()
-{
-       verify_all = TRUE;
-}
-
 /*
  * Returns true if @method needs to be verified.
  * 
@@ -5745,6 +5900,12 @@ mono_verifier_is_enabled_for_class (MonoClass *klass)
        return verify_all || (verifier_mode > MONO_VERIFIER_MODE_OFF && !klass->image->assembly->in_gac && klass->image != mono_defaults.corlib);
 }
 
+gboolean
+mono_verifier_is_enabled_for_image (MonoImage *image)
+{
+       return verify_all || verifier_mode > MONO_VERIFIER_MODE_OFF;
+}
+
 gboolean
 mono_verifier_is_method_full_trust (MonoMethod *method)
 {
@@ -5756,18 +5917,19 @@ mono_verifier_is_method_full_trust (MonoMethod *method)
  * 
  * TODO This code doesn't take CAS into account.
  * 
- * This value is only pertinent to assembly verification and has
- * nothing to do with CoreClr security. 
- * 
  * Under verify_all all user code must be verifiable if no security option was set 
  * 
  */
 gboolean
 mono_verifier_is_class_full_trust (MonoClass *klass)
 {
+       /* under CoreCLR code is trusted if it is part of the "platform" otherwise all code inside the GAC is trusted */
+       gboolean trusted_location = (mono_security_get_mode () != MONO_SECURITY_MODE_CORE_CLR) ? 
+               klass->image->assembly->in_gac : mono_security_core_clr_is_platform_image (klass->image);
+
        if (verify_all && verifier_mode == MONO_VERIFIER_MODE_OFF)
-               return klass->image->assembly->in_gac || klass->image == mono_defaults.corlib;
-       return verifier_mode < MONO_VERIFIER_MODE_VERIFIABLE || klass->image->assembly->in_gac || klass->image == mono_defaults.corlib;
+               return trusted_location || klass->image == mono_defaults.corlib;
+       return verifier_mode < MONO_VERIFIER_MODE_VERIFIABLE || trusted_location || klass->image == mono_defaults.corlib;
 }
 
 GSList*
@@ -5842,3 +6004,75 @@ mono_verifier_verify_class (MonoClass *class)
                return FALSE;
        return TRUE;
 }
+#else
+
+gboolean
+mono_verifier_verify_class (MonoClass *class)
+{
+       /* The verifier was disabled at compile time */
+       return TRUE;
+}
+
+GSList*
+mono_method_verify_with_current_settings (MonoMethod *method, gboolean skip_visibility)
+{
+       /* The verifier was disabled at compile time */
+       return NULL;
+}
+
+gboolean
+mono_verifier_is_class_full_trust (MonoClass *klass)
+{
+       /* The verifier was disabled at compile time */
+       return TRUE;
+}
+
+gboolean
+mono_verifier_is_method_full_trust (MonoMethod *method)
+{
+       /* The verifier was disabled at compile time */
+       return TRUE;
+}
+
+gboolean
+mono_verifier_is_enabled_for_image (MonoImage *image)
+{
+       /* The verifier was disabled at compile time */
+       return FALSE;
+}
+
+gboolean
+mono_verifier_is_enabled_for_class (MonoClass *klass)
+{
+       /* The verifier was disabled at compile time */
+       return FALSE;
+}
+
+gboolean
+mono_verifier_is_enabled_for_method (MonoMethod *method)
+{
+       /* The verifier was disabled at compile time */
+       return FALSE;
+}
+
+GSList*
+mono_method_verify (MonoMethod *method, int level)
+{
+       /* The verifier was disabled at compile time */
+       return NULL;
+}
+
+void
+mono_free_verify_list (GSList *list)
+{
+       /* The verifier was disabled at compile time */
+       /* will always be null if verifier is disabled */
+}
+
+GSList*
+mono_image_verify_tables (MonoImage *image, int level)
+{
+       /* The verifier was disabled at compile time */
+       return NULL;
+}      
+#endif