2010-01-18 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / verify.c
index 1e16c5ec50cc27122d3747dd5c9e482276c7986f..3ca8b590296fb2514529544f3ffeb260033af28b 100644 (file)
@@ -409,6 +409,8 @@ mono_class_has_default_constructor (MonoClass *klass)
        int i;
 
        mono_class_setup_methods (klass);
+       if (klass->exception_type)
+               return FALSE;
 
        for (i = 0; i < klass->method.count; ++i) {
                method = klass->methods [i];
@@ -421,23 +423,6 @@ mono_class_has_default_constructor (MonoClass *klass)
        return FALSE;
 }
 
-static gboolean
-mono_class_interface_implements_interface (MonoClass *candidate, MonoClass *iface)
-{
-       int i;
-       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,
@@ -489,45 +474,7 @@ verifier_inflate_type (VerifyContext *ctx, MonoType *type, MonoGenericContext *c
        }
        return result;
 }
-/*
- * Test if @candidate is a subtype of @target using the minimal possible information
- * TODO move the code for non finished TypeBuilders to here.
- */
-static gboolean
-mono_class_is_constraint_compatible (MonoClass *candidate, MonoClass *target)
-{
-       if (candidate == target)
-               return TRUE;
-       if (target == mono_defaults.object_class)
-                       return TRUE;
-
-       //setup_supertypes don't mono_class_init anything
-       mono_class_setup_supertypes (candidate);
-       mono_class_setup_supertypes (target);
 
-       if (mono_class_has_parent (candidate, target))
-               return TRUE;
-
-       //if target is not a supertype it must be an interface
-       if (!MONO_CLASS_IS_INTERFACE (target))
-                       return FALSE;
-
-       if (candidate->image->dynamic && !candidate->wastypebuilder) {
-               MonoReflectionTypeBuilder *tb = candidate->reflection_info;
-               int j;
-               if (tb->interfaces) {
-                       for (j = mono_array_length (tb->interfaces) - 1; j >= 0; --j) {
-                               MonoReflectionType *iface = mono_array_get (tb->interfaces, MonoReflectionType*, j);
-                               MonoClass *ifaceClass = mono_class_from_mono_type (iface->type);
-                               if (mono_class_is_constraint_compatible (ifaceClass, target)) {
-                                       return TRUE;
-                               }
-                       }
-               }
-               return FALSE;
-       }
-       return mono_class_interface_implements_interface (candidate, target);
-}
 
 static gboolean
 is_valid_generic_instantiation (MonoGenericContainer *gc, MonoGenericContext *context, MonoGenericInst *ginst)
@@ -583,7 +530,7 @@ is_valid_generic_instantiation (MonoGenericContainer *gc, MonoGenericContext *co
                        ctr = mono_class_from_mono_type (inflated);
                        mono_metadata_free_type (inflated);
 
-                       if (!mono_class_is_constraint_compatible (paramClass, ctr))
+                       if (!mono_class_is_assignable_from_slow (ctr, paramClass))
                                return FALSE;
                }
        }
@@ -2497,6 +2444,11 @@ init_stack_with_value_at_exception_boundary (VerifyContext *ctx, ILCodeDesc *cod
                return;
        }
 
+       if (!ctx->max_stack) {
+               ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Stack overflow at 0x%04x", ctx->ip_offset));
+               return;
+       }
+
        stack_init (ctx, code);
        set_stack_value (ctx, code->stack, type, FALSE);
        ctx->exception_types = g_slist_prepend (ctx->exception_types, type);
@@ -4698,6 +4650,7 @@ do_ckfinite (VerifyContext *ctx)
 static void
 merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean start, gboolean external) 
 {
+       MonoError error;
        int i, j, k;
        stack_init (ctx, to);
 
@@ -4764,7 +4717,12 @@ merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean sta
                                }
                        }
 
-                       mono_class_setup_interfaces (old_class);
+                       mono_class_setup_interfaces (old_class, &error);
+                       if (!mono_error_ok (&error)) {
+                               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));
+                               mono_error_cleanup (&error);
+                               goto end_verify;
+                       }
                        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)) {
@@ -5365,8 +5323,8 @@ mono_method_verify (MonoMethod *method, int level)
                        ip += 2;
                        break;
 
-               /* FIXME: warn/error instead? */
                case CEE_UNUSED99:
+                       ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Use of the `unused' opcode"));
                        ++ip;
                        break; 
 
@@ -5557,7 +5515,8 @@ mono_method_verify (MonoMethod *method, int level)
 
                case CEE_UNUSED58:
                case CEE_UNUSED1:
-                       ++ip; /* warn, error ? */
+                       ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Use of the `unused' opcode"));
+                       ++ip;
                        break;
 
                case CEE_UNBOX:
@@ -5811,10 +5770,6 @@ mono_method_verify (MonoMethod *method, int level)
                                ip += 5;
                                break;
 
-                       case CEE_UNUSED56:
-                               ++ip;
-                               break;
-
                        case CEE_LDARG:
                        case CEE_LDARGA:
                                code_bounds_check (3);
@@ -5834,7 +5789,11 @@ mono_method_verify (MonoMethod *method, int level)
                                ++ip;
                                break;
 
+                       case CEE_UNUSED56:
                        case CEE_UNUSED57:
+                       case CEE_UNUSED70:
+                       case CEE_UNUSED:
+                               ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Use of the `unused' opcode"));
                                ++ip;
                                break;
                        case CEE_ENDFILTER:
@@ -5902,9 +5861,6 @@ mono_method_verify (MonoMethod *method, int level)
                                start = 1;
                                ++ip;
                                break;
-                       case CEE_UNUSED:
-                               ++ip;
-                               break;
 
                        case CEE_SIZEOF:
                                code_bounds_check (5);
@@ -6208,7 +6164,7 @@ verify_valuetype_layout_with_target (MonoClass *class, MonoClass *target_class)
 
                field_class = mono_class_get_generic_type_definition (mono_class_from_mono_type (field->type));
 
-               if (field_class == target_class || !verify_valuetype_layout_with_target (field_class, target_class))
+               if (field_class == target_class || class == field_class || !verify_valuetype_layout_with_target (field_class, target_class))
                        return FALSE;
        }
 
@@ -6235,6 +6191,14 @@ verify_valuetype_layout (MonoClass *class)
 gboolean
 mono_verifier_verify_class (MonoClass *class)
 {
+       /*Neither <Module>, object or ifaces have parent.*/
+       if (!class->parent &&
+               class != mono_defaults.object_class && 
+               !MONO_CLASS_IS_INTERFACE (class) &&
+               (!class->image->dynamic && class->type_token != 0x2000001)) /*<Module> is the first type in the assembly*/
+               return FALSE;
+       if (class->parent && MONO_CLASS_IS_INTERFACE (class->parent))
+               return FALSE;
        if (class->generic_container && (class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) == TYPE_ATTRIBUTE_EXPLICIT_LAYOUT)
                return FALSE;
        if (!verify_class_for_overlapping_reference_fields (class))