New tests.
[mono.git] / mono / metadata / metadata-verify.c
index 06670e54b5858167dd49b28fc0e1053c2610ce15..78a7a533d6489a8ad12a27d8c91addc7e521e069 100644 (file)
@@ -217,11 +217,12 @@ typedef struct {
 
 typedef struct {
        const char *data;
-       guint32 size;
+       guint32 size, token;
        GSList *errors;
        int valid;
        MonoImage *image;
        gboolean report_error;
+       gboolean report_warning;
        int stage;
 
        DataDirectory data_directories [16];
@@ -240,6 +241,21 @@ typedef struct {
                (__ctx)->errors = g_slist_prepend ((__ctx)->errors, vinfo);     \
        } while (0)
 
+#define ADD_WARNING(__ctx, __msg)      \
+       do {    \
+               if ((__ctx)->report_warning) { \
+                       ADD_VERIFY_INFO(__ctx, __msg, MONO_VERIFY_WARNING, MONO_EXCEPTION_INVALID_PROGRAM); \
+                       (__ctx)->valid = 0; \
+                       return; \
+               } \
+       } while (0)
+
+#define ADD_ERROR_NO_RETURN(__ctx, __msg)      \
+       do {    \
+               if ((__ctx)->report_error) \
+                       ADD_VERIFY_INFO(__ctx, __msg, MONO_VERIFY_ERROR, MONO_EXCEPTION_INVALID_PROGRAM); \
+               (__ctx)->valid = 0; \
+       } while (0)
 
 #define ADD_ERROR(__ctx, __msg)        \
        do {    \
@@ -733,7 +749,7 @@ verify_metadata_header (VerifyContext *ctx)
 {
        int i;
        DataDirectory it = get_data_dir (ctx, CLI_HEADER_IDX);
-       guint32 offset;
+       guint32 offset, section_count;
        const char *ptr;
 
        offset = it.translated_offset;
@@ -763,13 +779,14 @@ verify_metadata_header (VerifyContext *ctx)
 
        ptr = ctx->data + offset; //move to streams header 
 
-       if (read16 (ptr + 2) < 3)
+       section_count = read16 (ptr + 2);
+       if (section_count < 3)
                ADD_ERROR (ctx, g_strdup_printf ("Metadata root section must have at least 3 streams (#~, #GUID and #Blob"));
 
        ptr += 4;
        offset += 4;
 
-       for (i = 0; i < 5; ++i) {
+       for (i = 0; i < section_count; ++i) {
                guint32 stream_off, stream_size;
                int string_size, stream_idx;
 
@@ -805,8 +822,12 @@ verify_metadata_header (VerifyContext *ctx)
                        stream_idx = GUID_STREAM;
                else if (!strncmp ("#~", ptr, 3))
                        stream_idx = TILDE_STREAM;
-               else
-                       ADD_ERROR (ctx, g_strdup_printf ("Metadata stream header %d invalid name %s", i, ptr));
+               else {
+                       ADD_WARNING (ctx, g_strdup_printf ("Metadata stream header %d invalid name %s", i, ptr));
+                       offset = pad4 (offset);
+                       ptr = ctx->data + offset;
+                       continue;
+               }
 
                if (ctx->metadata_streams [stream_idx].offset != 0)
                        ADD_ERROR (ctx, g_strdup_printf ("Duplicated metadata stream header %s", ptr));
@@ -837,11 +858,9 @@ verify_tables_schema (VerifyContext *ctx)
        guint32 count;
        int i;
 
-       //printf ("tables_area size %d offset %x %s\n", tables_area.size, tables_area.offset, ctx->image->name);
        if (tables_area.size < 24)
                ADD_ERROR (ctx, g_strdup_printf ("Table schemata size (%d) too small to for initial decoding (requires 24 bytes)", tables_area.size));
 
-       //printf ("ptr %x %x\n", ptr[4], ptr[5]);
        if (ptr [4] != 2 && ptr [4] != 1)
                ADD_ERROR (ctx, g_strdup_printf ("Invalid table schemata major version %d, expected 2", ptr [4]));
        if (ptr [5] != 0)
@@ -860,7 +879,7 @@ verify_tables_schema (VerifyContext *ctx)
                  Unused: 0x1E 0x1F 0x2D-0x3F
                  We don't care about the MS extensions.*/
                if (i == 0x3 || i == 0x5 || i == 0x7 || i == 0x13 || i == 0x16)
-                       ADD_ERROR (ctx, g_strdup_printf ("The metadata verifies doesn't support MS specific table %x", i));
+                       ADD_ERROR (ctx, g_strdup_printf ("The metadata verifier doesn't support MS specific table %x", i));
                if (i == 0x1E || i == 0x1F || i >= 0x2D)
                        ADD_ERROR (ctx, g_strdup_printf ("Invalid table %x", i));
                ++count;
@@ -1100,7 +1119,7 @@ decode_value (const char *_ptr, unsigned available, unsigned *value, unsigned *s
 }
 
 static gboolean
-decode_signature_header (VerifyContext *ctx, guint32 offset, int *size, const char **first_byte)
+decode_signature_header (VerifyContext *ctx, guint32 offset, guint32 *size, const char **first_byte)
 {
        MonoStreamHeader blob = ctx->image->heap_blob;
        guint32 value, enc_size;
@@ -1111,34 +1130,36 @@ decode_signature_header (VerifyContext *ctx, guint32 offset, int *size, const ch
        if (!decode_value (blob.data + offset, blob.size - offset, &value, &enc_size))
                return FALSE;
 
-       if (offset + enc_size + value < offset)
+       if (CHECK_ADD4_OVERFLOW_UN (offset, enc_size))
                return FALSE;
 
-       if (offset + enc_size + value > blob.size)
+       offset += enc_size;
+
+       if (ADD_IS_GREATER_OR_OVF (offset, value, blob.size))
                return FALSE;
 
        *size = value;
-       *first_byte = blob.data + offset + enc_size;
+       *first_byte = blob.data + offset;
        return TRUE;
 }
 
 static gboolean
-safe_read (const char **_ptr, const char *limit, void *dest, int size)
+safe_read (const char **_ptr, const char *limit, unsigned *dest, int size)
 {
        const char *ptr = *_ptr;
        if (ptr + size > limit)
                return FALSE;
        switch (size) {
        case 1:
-               *((guint8*)dest) = *((guint8*)ptr);
+               *dest = *((guint8*)ptr);
                ++ptr;
                break;
        case 2:
-               *((guint16*)dest) = read16 (ptr);
+               *dest = read16 (ptr);
                ptr += 2;
                break;
        case 4:
-               *((guint32*)dest) = read32 (ptr);
+               *dest = read32 (ptr);
                ptr += 4;
                break;
        }
@@ -1171,8 +1192,8 @@ static gboolean
 parse_custom_mods (VerifyContext *ctx, const char **_ptr, const char *end)
 {
        const char *ptr = *_ptr;
-       guint type = 0;
-       guint32 token = 0;
+       unsigned type = 0;
+       unsigned token = 0;
 
        while (TRUE) {
                if (!safe_read8 (type, ptr, end))
@@ -1198,8 +1219,8 @@ static gboolean
 parse_array_shape (VerifyContext *ctx, const char **_ptr, const char *end)
 {
        const char *ptr = *_ptr;
-       guint8 val;
-       guint32 size, num, i;
+       unsigned val = 0;
+       unsigned size, num, i;
 
        if (!safe_read8 (val, ptr, end))
                FAIL (ctx, g_strdup ("ArrayShape: Not enough room for Rank"));
@@ -1231,8 +1252,8 @@ static gboolean
 parse_generic_inst (VerifyContext *ctx, const char **_ptr, const char *end)
 {
        const char *ptr = *_ptr;
-       guint8 type;
-       guint32 count, token, i;
+       unsigned type;
+       unsigned count, token, i;
 
        if (!safe_read8 (type, ptr, end))
                FAIL (ctx, g_strdup ("GenericInst: Not enough room for kind"));
@@ -1246,6 +1267,12 @@ parse_generic_inst (VerifyContext *ctx, const char **_ptr, const char *end)
        if (!is_valid_coded_index (ctx, TYPEDEF_OR_REF_DESC, token))
                FAIL (ctx, g_strdup_printf ("GenericInst: invalid TypeDefOrRef token %x", token));
 
+       if (ctx->token) {
+               if (mono_metadata_token_index (ctx->token) == get_coded_index_token (TYPEDEF_OR_REF_DESC, token) &&
+                       mono_metadata_token_table (ctx->token) == get_coded_index_table (TYPEDEF_OR_REF_DESC, token))
+                       FAIL (ctx, g_strdup_printf ("Type: Recurside generic instance specification (%x). A type signature can't reference itself", ctx->token));
+       }
+
        if (!safe_read_cint (count, ptr, end))
                FAIL (ctx, g_strdup ("GenericInst: Not enough room for argument count"));
 
@@ -1264,8 +1291,8 @@ static gboolean
 parse_type (VerifyContext *ctx, const char **_ptr, const char *end)
 {
        const char *ptr = *_ptr;
-       guint8 type = 0;
-       guint32 token = 0;
+       unsigned type;
+       unsigned token = 0;
 
        if (!safe_read8 (type, ptr, end))
                FAIL (ctx, g_strdup ("Type: Not enough room for the type"));
@@ -1298,6 +1325,11 @@ parse_type (VerifyContext *ctx, const char **_ptr, const char *end)
        
                if (!is_valid_coded_index (ctx, TYPEDEF_OR_REF_DESC, token))
                        FAIL (ctx, g_strdup_printf ("Type: invalid TypeDefOrRef token %x", token));
+               if (ctx->token) {
+                       if (mono_metadata_token_index (ctx->token) == get_coded_index_token (TYPEDEF_OR_REF_DESC, token) &&
+                               mono_metadata_token_table (ctx->token) == get_coded_index_table (TYPEDEF_OR_REF_DESC, token))
+                               FAIL (ctx, g_strdup_printf ("Type: Recurside type specification (%x). A type signature can't reference itself", ctx->token));
+               }
                break;
 
        case MONO_TYPE_VAR:
@@ -1338,7 +1370,7 @@ static gboolean
 parse_return_type (VerifyContext *ctx, const char **_ptr, const char *end)
 {
        const char *ptr;
-       int type = 0;
+       unsigned type = 0;
 
        if (!parse_custom_mods (ctx, _ptr, end))
                return FALSE;
@@ -1363,7 +1395,7 @@ static gboolean
 parse_param (VerifyContext *ctx, const char **_ptr, const char *end)
 {
        const char *ptr;
-       int type = 0;
+       unsigned type = 0;
 
        if (!parse_custom_mods (ctx, _ptr, end))
                return FALSE;
@@ -1387,7 +1419,7 @@ parse_param (VerifyContext *ctx, const char **_ptr, const char *end)
 static gboolean
 parse_method_signature (VerifyContext *ctx, const char **_ptr, const char *end, gboolean allow_sentinel, gboolean allow_unmanaged)
 {
-       int cconv = 0;
+       unsigned cconv = 0;
        unsigned param_count = 0, gparam_count = 0, type = 0, i;
        const char *ptr = *_ptr;
        gboolean saw_sentinel = FALSE;
@@ -1480,18 +1512,23 @@ static gboolean
 parse_field (VerifyContext *ctx, const char **_ptr, const char *end)
 {
        const char *ptr = *_ptr;
-       guint8 signature = 0;
+       unsigned signature = 0;
 
        if (!safe_read8 (signature, ptr, end))
                FAIL (ctx, g_strdup ("Field: Not enough room for field signature"));
 
        if (signature != 0x06)
                FAIL (ctx, g_strdup_printf ("Field: Invalid signature 0x%x, must be 6", signature));
-       *_ptr = ptr; 
 
-       if (!parse_custom_mods (ctx, _ptr, end))
+       if (!parse_custom_mods (ctx, &ptr, end))
                return FALSE;
 
+       if (safe_read8 (signature, ptr, end)) {
+               if (signature != MONO_TYPE_BYREF)
+                       --ptr;
+       }
+       *_ptr = ptr;
+
        return parse_type (ctx, _ptr, end);
 }
 
@@ -1520,16 +1557,25 @@ parse_locals_signature (VerifyContext *ctx, const char **_ptr, const char *end)
                if (!safe_read8 (sig, ptr, end))
                        FAIL (ctx, g_strdup ("LocalsSig: Not enough room for type"));
 
-               if (sig == MONO_TYPE_TYPEDBYREF)
-                       continue;
-
                while (sig == MONO_TYPE_CMOD_REQD || sig == MONO_TYPE_CMOD_OPT || sig == MONO_TYPE_PINNED) {
                        if (sig != MONO_TYPE_PINNED && !parse_custom_mods (ctx, &ptr, end))
                                FAIL (ctx, g_strdup_printf ("LocalsSig: Error parsing local %d", i));
                        if (!safe_read8 (sig, ptr, end))
                                FAIL (ctx, g_strdup ("LocalsSig: Not enough room for type"));
                }
+
+               if (sig == MONO_TYPE_BYREF) {
+                       if (!safe_read8 (sig, ptr, end))
+                               FAIL (ctx, g_strdup_printf ("Type: Not enough room for byref type for local %d", i));
+                       if (sig == MONO_TYPE_TYPEDBYREF)
+                               FAIL (ctx, g_strdup_printf ("Type: Invalid type typedref& for local %d", i));
+               }
+
+               if (sig == MONO_TYPE_TYPEDBYREF)
+                       continue;
+
                --ptr;
+
                if (!parse_type (ctx, &ptr, end))
                        FAIL (ctx, g_strdup_printf ("LocalsSig: Error parsing local %d", i));
        }
@@ -1541,7 +1587,8 @@ parse_locals_signature (VerifyContext *ctx, const char **_ptr, const char *end)
 static gboolean
 is_valid_field_signature (VerifyContext *ctx, guint32 offset)
 {
-       int size = 0, signature = 0;
+       guint32 size = 0;
+       unsigned signature = 0;
        const char *ptr = NULL, *end;
 
        if (!decode_signature_header (ctx, offset, &size, &ptr))
@@ -1561,7 +1608,7 @@ is_valid_field_signature (VerifyContext *ctx, guint32 offset)
 static gboolean
 is_valid_method_signature (VerifyContext *ctx, guint32 offset)
 {
-       int size = 0;
+       guint32 size = 0;
        const char *ptr = NULL, *end;
 
        if (!decode_signature_header (ctx, offset, &size, &ptr))
@@ -1574,7 +1621,7 @@ is_valid_method_signature (VerifyContext *ctx, guint32 offset)
 static gboolean
 is_valid_method_or_field_signature (VerifyContext *ctx, guint32 offset)
 {
-       int size = 0;
+       guint32 size = 0;
        unsigned signature = 0;
        const char *ptr = NULL, *end;
 
@@ -1593,10 +1640,10 @@ is_valid_method_or_field_signature (VerifyContext *ctx, guint32 offset)
 }
 
 static gboolean
-is_vald_cattr_blob (VerifyContext *ctx, guint32 offset)
+is_valid_cattr_blob (VerifyContext *ctx, guint32 offset)
 {
-       int size = 0;
-       guint16 prolog = 0;
+       guint32 size = 0;
+       unsigned prolog = 0;
        const char *ptr = NULL, *end;
 
        if (!offset)
@@ -1611,7 +1658,324 @@ is_vald_cattr_blob (VerifyContext *ctx, guint32 offset)
 
        if (prolog != 1)
                FAIL (ctx, g_strdup_printf ("CustomAttribute: Prolog is 0x%x, expected 0x1", prolog));
-               
+
+       return TRUE;
+}
+
+static gboolean
+is_valid_cattr_type (MonoType *type)
+{
+       MonoClass *klass;
+
+       if (type->type == MONO_TYPE_OBJECT || (type->type >= MONO_TYPE_BOOLEAN && type->type <= MONO_TYPE_STRING))
+               return TRUE;
+
+       if (type->type == MONO_TYPE_VALUETYPE) {
+               klass = mono_class_from_mono_type (type);
+               return klass && klass->enumtype;
+       }
+
+       if (type->type == MONO_TYPE_CLASS)
+               return mono_class_from_mono_type (type) == mono_defaults.systemtype_class;
+
+       return FALSE;
+}
+
+static gboolean
+is_valid_ser_string_full (VerifyContext *ctx, const char **str_start, guint32 *str_len, const char **_ptr, const char *end)
+{
+       guint32 size = 0;
+       const char *ptr = *_ptr;
+
+       *str_start = NULL;
+       *str_len = 0;
+
+       if (ptr >= end)
+               FAIL (ctx, g_strdup ("CustomAttribute: Not enough room for string size"));
+
+       /*NULL string*/
+       if (*ptr == (char)0xFF) {
+               *_ptr = ptr + 1;
+               return TRUE;
+       }
+
+       if (!safe_read_cint (size, ptr, end))
+               FAIL (ctx, g_strdup ("CustomAttribute: Not enough room for string size"));
+
+       if (ADDP_IS_GREATER_OR_OVF (ptr, size, end))
+               FAIL (ctx, g_strdup ("CustomAttribute: Not enough room for string"));
+
+       *str_start = ptr;
+       *str_len = size;
+
+       *_ptr = ptr + size;
+       return TRUE;
+}
+
+static gboolean
+is_valid_ser_string (VerifyContext *ctx, const char **_ptr, const char *end)
+{
+       const char *dummy_str;
+       guint32 dummy_int;
+       return is_valid_ser_string_full (ctx, &dummy_str, &dummy_int, _ptr, end);
+}
+
+static MonoClass*
+get_enum_by_encoded_name (VerifyContext *ctx, const char **_ptr, const char *end)
+{
+       MonoType *type;
+       MonoClass *klass;
+       const char *str_start = NULL;
+       const char *ptr = *_ptr;
+       char *enum_name;
+       guint32 str_len = 0;
+
+       if (!is_valid_ser_string_full (ctx, &str_start, &str_len, &ptr, end))
+               return NULL;
+
+       /*NULL or empty string*/
+       if (str_start == NULL || str_len == 0) {
+               ADD_ERROR_NO_RETURN (ctx, g_strdup ("CustomAttribute: Null or empty enum name"));
+               return NULL;
+       }
+
+       enum_name = g_memdup (str_start, str_len + 1);
+       enum_name [str_len] = 0;
+       type = mono_reflection_type_from_name (enum_name, ctx->image);
+       if (!type) {
+               ADD_ERROR_NO_RETURN (ctx, g_strdup_printf ("CustomAttribute: Invalid enum class %s", enum_name));
+               g_free (enum_name);
+               return NULL;
+       }
+       g_free (enum_name);
+
+       klass = mono_class_from_mono_type (type);
+       if (!klass || !klass->enumtype) {
+               ADD_ERROR_NO_RETURN (ctx, g_strdup_printf ("CustomAttribute:Class %s::%s is not an enum", klass->name_space, klass->name));
+               return NULL;
+       }
+
+       *_ptr = ptr;
+       return klass;
+}
+
+static gboolean
+is_valid_fixed_param (VerifyContext *ctx, MonoType *mono_type, const char **_ptr, const char *end)
+{
+       MonoClass *klass;
+       const char *ptr = *_ptr;
+       int elem_size = 0;
+       guint32 element_count, i;
+       int type;
+
+       klass = mono_type->data.klass;
+       type = mono_type->type;
+
+handle_enum:
+       switch (type) {
+       case MONO_TYPE_BOOLEAN:
+       case MONO_TYPE_I1:
+       case MONO_TYPE_U1:
+               elem_size = 1;
+               break;
+       case MONO_TYPE_I2:
+       case MONO_TYPE_U2:
+       case MONO_TYPE_CHAR:
+               elem_size = 2;
+               break;
+       case MONO_TYPE_I4:
+       case MONO_TYPE_U4:
+       case MONO_TYPE_R4:
+               elem_size = 4;
+               break;
+       case MONO_TYPE_I8:
+       case MONO_TYPE_U8:
+       case MONO_TYPE_R8:
+               elem_size = 8;
+               break;
+
+       case MONO_TYPE_STRING:
+               *_ptr = ptr;
+               return is_valid_ser_string (ctx, _ptr, end);
+
+       case MONO_TYPE_OBJECT: {
+               unsigned sub_type = 0;
+               if (!safe_read8 (sub_type, ptr, end))
+                       FAIL (ctx, g_strdup ("CustomAttribute: Not enough room for array type"));
+
+               if (sub_type >= MONO_TYPE_BOOLEAN && sub_type <= MONO_TYPE_STRING) {
+                       type = sub_type;
+                       goto handle_enum;
+               }
+               if (sub_type == MONO_TYPE_ENUM) {
+                       klass = get_enum_by_encoded_name (ctx, &ptr, end);
+                       if (!klass)
+                               return FALSE;
+
+                       klass = klass->element_class;
+                       type = klass->byval_arg.type;
+                       goto handle_enum;
+               }
+               if (sub_type == 0x50) { /*Type*/
+                       *_ptr = ptr;
+                       return is_valid_ser_string (ctx, _ptr, end);
+               }
+               if (sub_type == MONO_TYPE_SZARRAY) {
+                       MonoType simple_type = {{0}};
+                       unsigned etype = 0;
+                       if (!safe_read8 (etype, ptr, end))
+                               FAIL (ctx, g_strdup ("CustomAttribute: Not enough room for array element type"));
+
+                       if (etype == MONO_TYPE_ENUM) {
+                               klass = get_enum_by_encoded_name (ctx, &ptr, end);
+                               if (!klass)
+                                       return FALSE;
+                       } else if ((etype >= MONO_TYPE_BOOLEAN && etype <= MONO_TYPE_STRING) || etype == 0x51) {
+                               simple_type.type = etype == 0x51 ? MONO_TYPE_OBJECT : etype;
+                               klass = mono_class_from_mono_type (&simple_type);
+                       } else
+                               FAIL (ctx, g_strdup_printf ("CustomAttribute: Invalid array element type %x", etype));
+
+                       type = MONO_TYPE_SZARRAY;
+                       goto handle_enum;
+               }
+               FAIL (ctx, g_strdup_printf ("CustomAttribute: Invalid boxed object type %x", sub_type));
+       }
+
+
+       case MONO_TYPE_CLASS:
+               if (klass != mono_defaults.systemtype_class)
+                       FAIL (ctx, g_strdup_printf ("CustomAttribute: Invalid class parameter type %s:%s ",klass->name_space, klass->name));
+               *_ptr = ptr;
+               return is_valid_ser_string (ctx, _ptr, end);
+
+       case MONO_TYPE_VALUETYPE:
+               if (!klass || !klass->enumtype)
+                       FAIL (ctx, g_strdup_printf ("CustomAttribute: Invalid valuetype parameter expected enum %s:%s ",klass->name_space, klass->name));
+
+               klass = klass->element_class;
+               type = klass->byval_arg.type;
+               goto handle_enum;
+
+       case MONO_TYPE_SZARRAY:
+               mono_type = &klass->byval_arg;
+               if (!is_valid_cattr_type (mono_type))
+                       FAIL (ctx, g_strdup_printf ("CustomAttribute: Invalid array element type %s:%s ",klass->name_space, klass->name));
+               if (!safe_read32 (element_count, ptr, end))
+                       FAIL (ctx, g_strdup_printf ("CustomAttribute: Invalid class parameter type %s:%s ",klass->name_space, klass->name));
+               if (element_count == 0xFFFFFFFFu) {
+                       *_ptr = ptr;
+                       return TRUE;
+               }
+               for (i = 0; i < element_count; ++i) {
+                       if (!is_valid_fixed_param (ctx, mono_type, &ptr, end))
+                               return FALSE;
+               }
+               *_ptr = ptr;
+               return TRUE;
+       default:
+               FAIL (ctx, g_strdup_printf ("CustomAttribute: Invalid parameter type %x ", type));
+       }
+
+       if (ADDP_IS_GREATER_OR_OVF (ptr, elem_size, end))
+               FAIL (ctx, g_strdup ("CustomAttribute: Not enough space for element"));
+       *_ptr = ptr + elem_size;
+       return TRUE;
+}
+
+static gboolean
+is_valid_cattr_content (VerifyContext *ctx, MonoMethod *ctor, const char *ptr, guint32 size)
+{
+       MonoError error;
+       unsigned prolog = 0;
+       const char *end;
+       MonoMethodSignature *sig;
+       int args, i;
+       unsigned num_named;
+
+       if (!ctor)
+               FAIL (ctx, g_strdup ("CustomAttribute: Invalid constructor"));
+
+       sig = mono_method_signature_checked (ctor, &error);
+       if (!mono_error_ok (&error)) {
+               ADD_ERROR_NO_RETURN (ctx, g_strdup_printf ("CustomAttribute: Invalid constructor signature %s", mono_error_get_message (&error)));
+               mono_error_cleanup (&error);
+               return FALSE;
+       }
+
+       if (sig->sentinelpos != -1 || sig->call_convention == MONO_CALL_VARARG)
+               FAIL (ctx, g_strdup ("CustomAttribute: Constructor cannot have VARAG signature"));
+
+       end = ptr + size;
+
+       if (!safe_read16 (prolog, ptr, end))
+               FAIL (ctx, g_strdup ("CustomAttribute: Not enough room for prolog"));
+
+       if (prolog != 1)
+               FAIL (ctx, g_strdup_printf ("CustomAttribute: Prolog is 0x%x, expected 0x1", prolog));
+
+       args = sig->param_count;
+       for (i = 0; i < args; ++i) {
+               MonoType *arg_type = sig->params [i];
+               if (!is_valid_fixed_param (ctx, arg_type, &ptr, end))
+                       return FALSE;
+       }
+
+       if (!safe_read16 (num_named, ptr, end))
+               FAIL (ctx, g_strdup ("CustomAttribute: Not enough space for num_named field"));
+
+       for (i = 0; i < num_named; ++i) {
+               MonoType *type, simple_type = {{0}};
+               unsigned kind;
+
+               if (!safe_read8 (kind, ptr, end))
+                       FAIL (ctx, g_strdup_printf ("CustomAttribute: Not enough space for named parameter %d kind", i));
+               if (kind != 0x53 && kind != 0x54)
+                       FAIL (ctx, g_strdup_printf ("CustomAttribute: Invalid named parameter %d kind %x", i, kind));
+               if (!safe_read8 (kind, ptr, end))
+                       FAIL (ctx, g_strdup_printf ("CustomAttribute: Not enough space for named parameter %d type", i));
+
+               if (kind >= MONO_TYPE_BOOLEAN && kind <= MONO_TYPE_STRING) {
+                       simple_type.type = kind;
+                       type = &simple_type;
+               } else if (kind == MONO_TYPE_ENUM) {
+                       MonoClass *klass = get_enum_by_encoded_name (ctx, &ptr, end);
+                       if (!klass)
+                               return FALSE;
+                       type = &klass->byval_arg;
+               } else if (kind == 0x50) {
+                       type = &mono_defaults.systemtype_class->byval_arg;
+               } else if (kind == 0x51) {
+                       type = &mono_defaults.object_class->byval_arg;
+               } else if (kind == MONO_TYPE_SZARRAY) {
+                       MonoClass *klass;
+                       unsigned etype = 0;
+                       if (!safe_read8 (etype, ptr, end))
+                               FAIL (ctx, g_strdup ("CustomAttribute: Not enough room for array element type"));
+
+                       if (etype == MONO_TYPE_ENUM) {
+                               klass = get_enum_by_encoded_name (ctx, &ptr, end);
+                               if (!klass)
+                                       return FALSE;
+                       } else if ((etype >= MONO_TYPE_BOOLEAN && etype <= MONO_TYPE_STRING) || etype == 0x51) {
+                               simple_type.type = etype == 0x51 ? MONO_TYPE_OBJECT : etype;
+                               klass = mono_class_from_mono_type (&simple_type);
+                       } else
+                               FAIL (ctx, g_strdup_printf ("CustomAttribute: Invalid array element type %x", etype));
+
+                       type = &mono_array_class_get (klass, 1)->byval_arg;
+               } else {
+                       FAIL (ctx, g_strdup_printf ("CustomAttribute: Invalid named parameter type %x", kind));
+               }
+
+               if (!is_valid_ser_string (ctx, &ptr, end))
+                       return FALSE;
+
+               if (!is_valid_fixed_param (ctx, type, &ptr, end))
+                       return FALSE;
+
+       }
+
        return TRUE;
 }
 
@@ -1634,7 +1998,7 @@ is_valid_permission_set (VerifyContext *ctx, guint32 offset)
 static gboolean
 is_valid_standalonesig_blob (VerifyContext *ctx, guint32 offset)
 {
-       int size = 0;
+       guint32 size = 0;
        unsigned signature = 0;
        const char *ptr = NULL, *end;
 
@@ -1648,13 +2012,18 @@ is_valid_standalonesig_blob (VerifyContext *ctx, guint32 offset)
        --ptr;
        if (signature == 0x07)
                return parse_locals_signature (ctx, &ptr, end);
+
+       /*F# and managed C++ produce standalonesig for fields even thou the spec doesn't mention it.*/
+       if (signature == 0x06)
+               return parse_field (ctx, &ptr, end);
+
        return parse_method_signature (ctx, &ptr, end, TRUE, TRUE);
 }
 
 static gboolean
 is_valid_property_sig_blob (VerifyContext *ctx, guint32 offset)
 {
-       int size = 0;
+       guint32 size = 0;
        const char *ptr = NULL, *end;
 
        if (!decode_signature_header (ctx, offset, &size, &ptr))
@@ -1667,11 +2036,10 @@ is_valid_property_sig_blob (VerifyContext *ctx, guint32 offset)
 static gboolean
 is_valid_typespec_blob (VerifyContext *ctx, guint32 offset)
 {
-       int size = 0;
+       guint32 size = 0;
        const char *ptr = NULL, *end;
-       guint8 type = 0;
+       unsigned type = 0;
        
-
        if (!decode_signature_header (ctx, offset, &size, &ptr))
                FAIL (ctx, g_strdup ("TypeSpec: Could not decode signature header"));
        end = ptr + size;
@@ -1681,21 +2049,28 @@ is_valid_typespec_blob (VerifyContext *ctx, guint32 offset)
 
        if (!safe_read8 (type, ptr, end))
                FAIL (ctx, g_strdup ("TypeSpec: Not enough room for type"));
-       --ptr;
 
+       if (type == MONO_TYPE_BYREF) {
+               if (!safe_read8 (type, ptr, end)) 
+                       FAIL (ctx, g_strdup ("TypeSpec: Not enough room for byref type"));
+               if (type == MONO_TYPE_TYPEDBYREF)
+                       FAIL (ctx, g_strdup ("TypeSpec: Invalid type typedref&"));
+       }
+       
        if (type == MONO_TYPE_TYPEDBYREF)
                return TRUE;
 
+       --ptr;
        return parse_type (ctx, &ptr, end);
 }
 
 static gboolean
-is_valid_methodspec_blog (VerifyContext *ctx, guint32 offset)
+is_valid_methodspec_blob (VerifyContext *ctx, guint32 offset)
 {
-       int size = 0;
+       guint32 size = 0;
        const char *ptr = NULL, *end;
-       guint8 type = 0;
-       guint32 count = 0, i;
+       unsigned type = 0;
+       unsigned count = 0, i;
 
        if (!decode_signature_header (ctx, offset, &size, &ptr))
                FAIL (ctx, g_strdup ("MethodSpec: Could not decode signature header"));
@@ -1811,9 +2186,9 @@ is_valid_constant (VerifyContext *ctx, guint32 type, guint32 offset)
 static gboolean
 is_valid_method_header (VerifyContext *ctx, guint32 rva)
 {
-       guint32 local_vars_tok, code_size, offset = mono_cli_rva_image_map (ctx->image, rva);
-       guint8 header = 0;
-       guint16 fat_header = 0, size = 0, max_stack;
+       unsigned local_vars_tok, code_size, offset = mono_cli_rva_image_map (ctx->image, rva);
+       unsigned header = 0;
+       unsigned fat_header = 0, size = 0, max_stack;
        const char *ptr = NULL, *end;
 
        if (offset == INVALID_ADDRESS)
@@ -1872,7 +2247,7 @@ is_valid_method_header (VerifyContext *ctx, guint32 rva)
        ptr += code_size;
 
        do {
-               guint32 section_header = 0, section_size = 0;
+               unsigned section_header = 0, section_size = 0;
                gboolean is_fat;
 
                ptr = dword_align (ptr);
@@ -1892,14 +2267,19 @@ is_valid_method_header (VerifyContext *ctx, guint32 rva)
                        FAIL (ctx, g_strdup_printf ("MethodHeader: Not enough room for section content %d", section_size));
 
                if (section_header & METHOD_HEADER_SECTION_EHTABLE) {
-                       guint32 i, clauses = (section_size - 4) / (is_fat ? 24 : 12);
-                       if (clauses * (is_fat ? 24 : 12) + 4 != section_size)
-                               FAIL (ctx, g_strdup_printf ("MethodHeader: Invalid EH section size %d, it's not of the proper size", section_size));
+                       guint32 i, clauses = section_size / (is_fat ? 24 : 12);
+                       /*
+                               LAMEIMPL: MS emits section_size without accounting for header size.
+                               Mono does as the spec says. section_size is header + section
+                               MS's peverify happily accepts both. 
+                       */
+                       if ((clauses * (is_fat ? 24 : 12) != section_size) && (clauses * (is_fat ? 24 : 12) + 4 != section_size))
+                               FAIL (ctx, g_strdup_printf ("MethodHeader: Invalid EH section size %d, it's not of the expected size %d", section_size, clauses * (is_fat ? 24 : 12)));
 
                        /* only verify the class token is verified as the rest is done by the IL verifier*/
                        for (i = 0; i < clauses; ++i) {
-                               guint flags = *ptr;
-                               guint32 class_token = 0;
+                               unsigned flags = *(unsigned char*)ptr;
+                               unsigned class_token = 0;
                                ptr += (is_fat ? 20 : 8);
                                if (!safe_read32 (class_token, ptr, end))
                                        FAIL (ctx, g_strdup_printf ("MethodHeader: Not enough room for section %d", i));
@@ -1973,7 +2353,7 @@ verify_typedef_table (VerifyContext *ctx)
 {
        MonoTableInfo *table = &ctx->image->tables [MONO_TABLE_TYPEDEF];
        guint32 data [MONO_TYPEDEF_SIZE];
-       guint32 fieldlist = 1, methodlist = 1;
+       guint32 fieldlist = 1, methodlist = 1, visibility;
        int i;
 
        if (table->rows == 0)
@@ -2005,6 +2385,11 @@ verify_typedef_table (VerifyContext *ctx)
                if (data [MONO_TYPEDEF_EXTENDS] && !is_valid_coded_index (ctx, TYPEDEF_OR_REF_DESC, data [MONO_TYPEDEF_EXTENDS]))
                        ADD_ERROR (ctx, g_strdup_printf ("Invalid typedef row %d extend field coded index 0x%08x", i, data [MONO_TYPEDEF_EXTENDS]));
 
+               visibility = data [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
+               if ((visibility >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visibility <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM) &&
+                       search_sorted_table (ctx, MONO_TABLE_NESTEDCLASS, MONO_NESTED_CLASS_NESTED, i + 1) == -1)
+                       ADD_ERROR (ctx, g_strdup_printf ("Invalid typedef row %d has nested visibility but no rows in the NestedClass table", i));
+
                if (data [MONO_TYPEDEF_FIELD_LIST] == 0)
                        ADD_ERROR (ctx, g_strdup_printf ("Invalid typedef row %d FieldList be be >= 1", i));
 
@@ -2042,8 +2427,10 @@ verify_typedef_table_full (VerifyContext *ctx)
                mono_metadata_decode_row (table, i, data, MONO_TYPEDEF_SIZE);
 
                if (i == 0) {
-                       if (data [MONO_TYPEDEF_EXTENDS] != 0)
+                       /*XXX it's ok if <module> extends object, or anything at all, actually. */
+                       /*if (data [MONO_TYPEDEF_EXTENDS] != 0)
                                ADD_ERROR (ctx, g_strdup_printf ("Invalid typedef row 0 for the special <module> type must have a null extend field"));
+                       */
                        continue;
                }
 
@@ -2149,8 +2536,8 @@ verify_field_table_full (VerifyContext *ctx)
        }
 }
 
-/*bits 6,8,9,10,11,13,14,15*/
-#define INVALID_METHOD_IMPLFLAG_BITS ((1 << 6) | (1 << 8) | (1 << 9) | (1 << 10) | (1 << 11) | (1 << 13) | (1 << 14) | (1 << 15))
+/*bits 8,9,10,11,13,14,15*/
+#define INVALID_METHOD_IMPLFLAG_BITS ((1 << 8) | (1 << 9) | (1 << 10) | (1 << 11) | (1 << 13) | (1 << 14) | (1 << 15))
 static void
 verify_method_table (VerifyContext *ctx)
 {
@@ -2199,12 +2586,14 @@ verify_method_table (VerifyContext *ctx)
                if (flags & METHOD_ATTRIBUTE_ABSTRACT) {
                        if (flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)
                                ADD_ERROR (ctx, g_strdup_printf ("Invalid method row %d is Abstract and PinvokeImpl", i));
+                       if (flags & METHOD_ATTRIBUTE_FINAL)
+                               ADD_ERROR (ctx, g_strdup_printf ("Invalid method row %d is Abstract and Final", i));
                        if (!(flags & METHOD_ATTRIBUTE_VIRTUAL))
                                ADD_ERROR (ctx, g_strdup_printf ("Invalid method row %d is Abstract but not Virtual", i));
                }
 
                if (access == METHOD_ATTRIBUTE_COMPILER_CONTROLLED && (flags & (METHOD_ATTRIBUTE_RT_SPECIAL_NAME | METHOD_ATTRIBUTE_SPECIAL_NAME)))
-                       ADD_ERROR (ctx, g_strdup_printf ("Invalid method row %d is CompileControlled and SpecialName or RtSpecialName", i));
+                       ADD_WARNING (ctx, g_strdup_printf ("Invalid method row %d is CompileControlled and SpecialName or RtSpecialName", i));
 
                if ((flags & METHOD_ATTRIBUTE_RT_SPECIAL_NAME) && !(flags & METHOD_ATTRIBUTE_SPECIAL_NAME))
                        ADD_ERROR (ctx, g_strdup_printf ("Invalid method row %d is RTSpecialName but not SpecialName", i));
@@ -2227,8 +2616,12 @@ verify_method_table (VerifyContext *ctx)
                if ((flags & (METHOD_ATTRIBUTE_FINAL | METHOD_ATTRIBUTE_NEW_SLOT | METHOD_ATTRIBUTE_STRICT)) && !(flags & METHOD_ATTRIBUTE_VIRTUAL))
                        ADD_ERROR (ctx, g_strdup_printf ("Invalid method row %d is (Final, NewSlot or Strict) but not Virtual", i));
 
-               if ((flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) && (flags & METHOD_ATTRIBUTE_VIRTUAL))
-                       ADD_ERROR (ctx, g_strdup_printf ("Invalid method row %d is PinvokeImpl and Virtual", i));
+               if (flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
+                       if (flags & METHOD_ATTRIBUTE_VIRTUAL)
+                               ADD_ERROR (ctx, g_strdup_printf ("Invalid method row %d is PinvokeImpl and Virtual", i));
+                       if (!(flags & METHOD_ATTRIBUTE_STATIC))
+                               ADD_ERROR (ctx, g_strdup_printf ("Invalid method row %d is PinvokeImpl but not Static", i));
+               }
 
                if (!(flags & METHOD_ATTRIBUTE_ABSTRACT) && !rva && !(flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) && 
                                !(implflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) && code_type != METHOD_IMPL_ATTRIBUTE_RUNTIME)
@@ -2481,14 +2874,36 @@ static void
 verify_cattr_table_full (VerifyContext *ctx)
 {
        MonoTableInfo *table = &ctx->image->tables [MONO_TABLE_CUSTOMATTRIBUTE];
-       guint32 data [MONO_CUSTOM_ATTR_SIZE];
+       MonoMethod *ctor;
+       const char *ptr;
+       guint32 data [MONO_CUSTOM_ATTR_SIZE], mtoken, size;
        int i;
 
        for (i = 0; i < table->rows; ++i) {
                mono_metadata_decode_row (table, i, data, MONO_CUSTOM_ATTR_SIZE);
 
-               if (!is_vald_cattr_blob (ctx, data [MONO_CUSTOM_ATTR_VALUE]))
+               if (!is_valid_cattr_blob (ctx, data [MONO_CUSTOM_ATTR_VALUE]))
                        ADD_ERROR (ctx, g_strdup_printf ("Invalid CustomAttribute row %d Value field 0x%08x", i, data [MONO_CUSTOM_ATTR_VALUE]));
+
+               mtoken = data [MONO_CUSTOM_ATTR_TYPE] >> MONO_CUSTOM_ATTR_TYPE_BITS;
+               switch (data [MONO_CUSTOM_ATTR_TYPE] & MONO_CUSTOM_ATTR_TYPE_MASK) {
+               case MONO_CUSTOM_ATTR_TYPE_METHODDEF:
+                       mtoken |= MONO_TOKEN_METHOD_DEF;
+                       break;
+               case MONO_CUSTOM_ATTR_TYPE_MEMBERREF:
+                       mtoken |= MONO_TOKEN_MEMBER_REF;
+                       break;
+               default:
+                       ADD_ERROR (ctx, g_strdup_printf ("Invalid CustomAttribute constructor row %d Token 0x%08x", i, data [MONO_CUSTOM_ATTR_TYPE]));
+               }
+
+               ctor = mono_get_method (ctx->image, mtoken, NULL);
+
+               /*This can't fail since this is checked in is_valid_cattr_blob*/
+               g_assert (decode_signature_header (ctx, data [MONO_CUSTOM_ATTR_VALUE], &size, &ptr));
+
+               if (!is_valid_cattr_content (ctx, ctor, ptr, size))
+                       ADD_ERROR (ctx, g_strdup_printf ("Invalid CustomAttribute content row %d Value field 0x%08x", i, data [MONO_CUSTOM_ATTR_VALUE]));
        }
 }
 
@@ -2842,10 +3257,11 @@ verify_typespec_table_full (VerifyContext *ctx)
 
        for (i = 0; i < table->rows; ++i) {
                mono_metadata_decode_row (table, i, data, MONO_TYPESPEC_SIZE);
-
+               ctx->token = (i + 1) | MONO_TOKEN_TYPE_SPEC;
                if (!is_valid_typespec_blob (ctx, data [MONO_TYPESPEC_SIGNATURE]))
                        ADD_ERROR (ctx, g_strdup_printf ("Invalid TypeSpec row %d Signature field %08x", i, data [MONO_TYPESPEC_SIGNATURE]));
        }
+       ctx->token = 0;
 }
 
 #define INVALID_IMPLMAP_FLAGS_BITS ~((1 << 0) | (1 << 1) | (1 << 2) | (1 << 6) | (1 << 8) | (1 << 9) | (1 << 10))
@@ -2901,7 +3317,7 @@ verify_fieldrva_table (VerifyContext *ctx)
        }
 }
 
-#define INVALID_ASSEMBLY_FLAGS_BITS ~((1 << 0) | (1 << 8) | (1 << 14) | (1 << 15))
+#define INVALID_ASSEMBLY_FLAGS_BITS ~((1 << 0) | (1 << 4) | (1 << 8) | (1 << 14) | (1 << 15))
 static void
 verify_assembly_table (VerifyContext *ctx)
 {
@@ -3146,7 +3562,7 @@ verify_method_spec_table_full (VerifyContext *ctx)
        for (i = 0; i < table->rows; ++i) {
                mono_metadata_decode_row (table, i, data, MONO_METHODSPEC_SIZE);
 
-               if (!is_valid_methodspec_blog (ctx, data [MONO_METHODSPEC_SIGNATURE]))
+               if (!is_valid_methodspec_blob (ctx, data [MONO_METHODSPEC_SIGNATURE]))
                        ADD_ERROR (ctx, g_strdup_printf ("MethodSpec table row %d has invalid Instantiation token %08x", i, data [MONO_METHODSPEC_SIGNATURE]));
        }
 }
@@ -3172,6 +3588,104 @@ verify_generic_param_constraint_table (VerifyContext *ctx)
        }
 }
 
+
+typedef struct {
+       const char *name;
+       const char *name_space;
+       guint32 resolution_scope;
+} TypeDefUniqueId;
+
+static guint
+typedef_hash (gconstpointer _key)
+{
+       const TypeDefUniqueId *key = _key;
+       return g_str_hash (key->name) ^ g_str_hash (key->name_space) ^ key->resolution_scope; /*XXX better salt the int key*/
+}
+
+static gboolean
+typedef_equals (gconstpointer _a, gconstpointer _b)
+{
+       const TypeDefUniqueId *a = _a;
+       const TypeDefUniqueId *b = _b;
+       return !strcmp (a->name, b->name) && !strcmp (a->name_space, b->name_space) && a->resolution_scope == b->resolution_scope;
+}
+
+static void
+verify_typedef_table_global_constraints (VerifyContext *ctx)
+{
+       int i;
+       guint32 data [MONO_TYPEDEF_SIZE];
+       guint32 nested_data [MONO_NESTED_CLASS_SIZE];
+       MonoTableInfo *table = &ctx->image->tables [MONO_TABLE_TYPEDEF];
+       MonoTableInfo *nested_table = &ctx->image->tables [MONO_TABLE_NESTEDCLASS];
+       GHashTable *unique_types = g_hash_table_new_full (&typedef_hash, &typedef_equals, g_free, NULL);
+
+       for (i = 0; i < table->rows; ++i) {
+               guint visibility;
+               TypeDefUniqueId *type = g_new (TypeDefUniqueId, 1);
+               mono_metadata_decode_row (table, i, data, MONO_TYPEDEF_SIZE);
+
+               type->name = mono_metadata_string_heap (ctx->image, data [MONO_TYPEDEF_NAME]);
+               type->name_space = mono_metadata_string_heap (ctx->image, data [MONO_TYPEDEF_NAMESPACE]);
+               type->resolution_scope = 0;
+
+               visibility = data [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
+               if (visibility >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visibility <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM) {
+                       int res = search_sorted_table (ctx, MONO_TABLE_NESTEDCLASS, MONO_NESTED_CLASS_NESTED, i + 1);
+                       g_assert (res >= 0);
+
+                       mono_metadata_decode_row (nested_table, res, nested_data, MONO_NESTED_CLASS_SIZE);
+                       type->resolution_scope = nested_data [MONO_NESTED_CLASS_ENCLOSING];
+               }
+
+               if (g_hash_table_lookup (unique_types, type)) {
+                       ADD_ERROR_NO_RETURN (ctx, g_strdup_printf ("TypeDef table row %d has duplicate for tuple (%s,%s,%x)", i, type->name, type->name_space, type->resolution_scope));
+                       g_hash_table_destroy (unique_types);
+                       g_free (type);
+                       return;
+               }
+               g_hash_table_insert (unique_types, type, GUINT_TO_POINTER (1));
+       }
+
+       g_hash_table_destroy (unique_types);
+}
+
+static void
+verify_typeref_table_global_constraints (VerifyContext *ctx)
+{
+       int i;
+       guint32 data [MONO_TYPEREF_SIZE];
+       MonoTableInfo *table = &ctx->image->tables [MONO_TABLE_TYPEREF];
+       GHashTable *unique_types = g_hash_table_new_full (&typedef_hash, &typedef_equals, g_free, NULL);
+
+       for (i = 0; i < table->rows; ++i) {
+               TypeDefUniqueId *type = g_new (TypeDefUniqueId, 1);
+               mono_metadata_decode_row (table, i, data, MONO_TYPEREF_SIZE);
+
+               type->resolution_scope = data [MONO_TYPEREF_SCOPE];
+               type->name = mono_metadata_string_heap (ctx->image, data [MONO_TYPEREF_NAME]);
+               type->name_space = mono_metadata_string_heap (ctx->image, data [MONO_TYPEREF_NAMESPACE]);
+
+               if (g_hash_table_lookup (unique_types, type)) {
+                       ADD_ERROR_NO_RETURN (ctx, g_strdup_printf ("TypeRef table row %d has duplicate for tuple (%s,%s,%x)", i, type->name, type->name_space, type->resolution_scope));
+                       g_hash_table_destroy (unique_types);
+                       g_free (type);
+                       return;
+               }
+               g_hash_table_insert (unique_types, type, GUINT_TO_POINTER (1));
+       }
+
+       g_hash_table_destroy (unique_types);
+}
+
+static void
+verify_tables_data_global_constraints (VerifyContext *ctx)
+{
+       verify_typeref_table_global_constraints (ctx);
+       CHECK_ERROR ();
+       verify_typedef_table_global_constraints (ctx);
+}
+       
 static void
 verify_tables_data (VerifyContext *ctx)
 {
@@ -3262,6 +3776,8 @@ verify_tables_data (VerifyContext *ctx)
        verify_method_spec_table (ctx);
        CHECK_ERROR ();
        verify_generic_param_constraint_table (ctx);
+       CHECK_ERROR ();
+       verify_tables_data_global_constraints (ctx);
 }
 
 static void
@@ -3270,6 +3786,7 @@ init_verify_context (VerifyContext *ctx, MonoImage *image, GSList **error_list)
        memset (ctx, 0, sizeof (VerifyContext));
        ctx->image = image;
        ctx->report_error = error_list != NULL;
+       ctx->report_warning = FALSE; //export this setting in the API
        ctx->valid = 1;
        ctx->size = image->raw_data_len;
        ctx->data = image->raw_data;
@@ -3482,7 +3999,7 @@ mono_verifier_verify_standalone_signature (MonoImage *image, guint32 offset, GSL
 }
 
 gboolean
-mono_verifier_verify_typespec_signature (MonoImage *image, guint32 offset, GSList **error_list)
+mono_verifier_verify_typespec_signature (MonoImage *image, guint32 offset, guint32 token, GSList **error_list)
 {
        VerifyContext ctx;
 
@@ -3491,6 +4008,7 @@ mono_verifier_verify_typespec_signature (MonoImage *image, guint32 offset, GSLis
 
        init_verify_context (&ctx, image, error_list);
        ctx.stage = STAGE_TABLES;
+       ctx.token = token;
 
        is_valid_typespec_blob (&ctx, offset);
        return cleanup_context (&ctx, error_list);
@@ -3507,10 +4025,107 @@ mono_verifier_verify_methodspec_signature (MonoImage *image, guint32 offset, GSL
        init_verify_context (&ctx, image, error_list);
        ctx.stage = STAGE_TABLES;
 
-       is_valid_methodspec_blog (&ctx, offset);
+       is_valid_methodspec_blob (&ctx, offset);
        return cleanup_context (&ctx, error_list);
 }
 
+static void
+verify_user_string (VerifyContext *ctx, guint32 offset)
+{
+       OffsetAndSize heap_us = get_metadata_stream (ctx, &ctx->image->heap_us);
+       guint32 entry_size, bytes;
+
+       if (heap_us.size < offset)
+               ADD_ERROR (ctx, g_strdup ("User string offset beyond heap_us size"));
+
+       if (!decode_value (ctx->data + offset + heap_us.offset, heap_us.size - heap_us.offset, &entry_size, &bytes))
+               ADD_ERROR (ctx, g_strdup ("Could not decode user string blob size"));
+
+       if (CHECK_ADD4_OVERFLOW_UN (entry_size, bytes))
+               ADD_ERROR (ctx, g_strdup ("User string size overflow"));
+
+       entry_size += bytes;
+
+       if (ADD_IS_GREATER_OR_OVF (offset, entry_size, heap_us.size))
+               ADD_ERROR (ctx, g_strdup ("User string oveflow heap_us"));
+}
+
+gboolean
+mono_verifier_verify_string_signature (MonoImage *image, guint32 offset, GSList **error_list)
+{
+       VerifyContext ctx;
+
+       if (!mono_verifier_is_enabled_for_image (image))
+               return TRUE;
+
+       init_verify_context (&ctx, image, error_list);
+       ctx.stage = STAGE_TABLES;
+
+       verify_user_string (&ctx, offset);
+
+       return cleanup_context (&ctx, error_list);
+}
+
+gboolean
+mono_verifier_verify_cattr_blob (MonoImage *image, guint32 offset, GSList **error_list)
+{
+       VerifyContext ctx;
+
+       if (!mono_verifier_is_enabled_for_image (image))
+               return TRUE;
+
+       init_verify_context (&ctx, image, error_list);
+       ctx.stage = STAGE_TABLES;
+
+       is_valid_cattr_blob (&ctx, offset);
+
+       return cleanup_context (&ctx, error_list);
+}
+
+gboolean
+mono_verifier_verify_cattr_content (MonoImage *image, MonoMethod *ctor, const guchar *data, guint32 size, GSList **error_list)
+{
+       VerifyContext ctx;
+
+       if (!mono_verifier_is_enabled_for_image (image))
+               return TRUE;
+
+       init_verify_context (&ctx, image, error_list);
+       ctx.stage = STAGE_TABLES;
+
+       is_valid_cattr_content (&ctx, ctor, (const char*)data, size);
+
+       return cleanup_context (&ctx, error_list);
+}
+
+gboolean
+mono_verifier_is_sig_compatible (MonoImage *image, MonoMethod *method, MonoMethodSignature *signature)
+{
+       MonoMethodSignature *original_sig;
+       if (!mono_verifier_is_enabled_for_image (image))
+               return TRUE;
+
+       original_sig = mono_method_signature (method);
+       if (original_sig->call_convention == MONO_CALL_VARARG) {
+               if (original_sig->hasthis != signature->hasthis)
+                       return FALSE;
+               if (original_sig->call_convention != signature->call_convention)
+                       return FALSE;
+               if (original_sig->explicit_this != signature->explicit_this)
+                       return FALSE;
+               if (original_sig->call_convention != signature->call_convention)
+                       return FALSE;
+               if (original_sig->pinvoke != signature->pinvoke)
+                       return FALSE;
+               if (original_sig->sentinelpos != signature->sentinelpos)
+                       return FALSE;
+       } else if (!mono_metadata_signature_equal (signature, original_sig)) {
+               return FALSE;
+       }
+
+       return TRUE;
+}
+
 #else
 gboolean
 mono_verifier_verify_table_data (MonoImage *image, GSList **error_list)
@@ -3567,7 +4182,7 @@ mono_verifier_verify_standalone_signature (MonoImage *image, guint32 offset, GSL
 }
 
 gboolean
-mono_verifier_verify_typespec_signature (MonoImage *image, guint32 offset, GSList **error_list)
+mono_verifier_verify_typespec_signature (MonoImage *image, guint32 offset, guint32 token, GSList **error_list)
 {
        return TRUE;
 }
@@ -3578,4 +4193,29 @@ mono_verifier_verify_methodspec_signature (MonoImage *image, guint32 offset, GSL
        return TRUE;
 }
 
+gboolean
+mono_verifier_verify_string_signature (MonoImage *image, guint32 offset, GSList **error_list)
+{
+       return TRUE;
+}
+
+gboolean
+mono_verifier_verify_cattr_blob (MonoImage *image, guint32 offset, GSList **error_list)
+{
+       return TRUE;
+}
+
+gboolean
+mono_verifier_verify_cattr_content (MonoImage *image, MonoMethod *ctor, const guchar *data, guint32 size, GSList **error_list)
+{
+       return TRUE;
+}
+
+gboolean
+mono_verifier_is_sig_compatible (MonoImage *image, MonoMethod *method, MonoMethodSignature *signature)
+{
+       return TRUE;
+}
+
+
 #endif /* DISABLE_VERIFIER */