#include <linux/mman.h>
 #include <linux/module.h>
 #include <linux/printk.h>
+#include <linux/random.h>
 #include <linux/slab.h>
 #include <linux/string.h>
 #include <linux/uaccess.h>
        vfree(area);
 }
 
+/*
+ * Check that the assigned pointer tag falls within the [KASAN_TAG_MIN,
+ * KASAN_TAG_KERNEL) range (note: excluding the match-all tag) for tag-based
+ * modes.
+ */
+static void match_all_not_assigned(struct kunit *test)
+{
+       char *ptr;
+       struct page *pages;
+       int i, size, order;
+
+       KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_KASAN_GENERIC);
+
+       for (i = 0; i < 256; i++) {
+               size = (get_random_int() % 1024) + 1;
+               ptr = kmalloc(size, GFP_KERNEL);
+               KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
+               KUNIT_EXPECT_GE(test, (u8)get_tag(ptr), (u8)KASAN_TAG_MIN);
+               KUNIT_EXPECT_LT(test, (u8)get_tag(ptr), (u8)KASAN_TAG_KERNEL);
+               kfree(ptr);
+       }
+
+       for (i = 0; i < 256; i++) {
+               order = (get_random_int() % 4) + 1;
+               pages = alloc_pages(GFP_KERNEL, order);
+               ptr = page_address(pages);
+               KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
+               KUNIT_EXPECT_GE(test, (u8)get_tag(ptr), (u8)KASAN_TAG_MIN);
+               KUNIT_EXPECT_LT(test, (u8)get_tag(ptr), (u8)KASAN_TAG_KERNEL);
+               free_pages((unsigned long)ptr, order);
+       }
+}
+
+/* Check that 0xff works as a match-all pointer tag for tag-based modes. */
+static void match_all_ptr_tag(struct kunit *test)
+{
+       char *ptr;
+       u8 tag;
+
+       KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_KASAN_GENERIC);
+
+       ptr = kmalloc(128, GFP_KERNEL);
+       KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
+
+       /* Backup the assigned tag. */
+       tag = get_tag(ptr);
+       KUNIT_EXPECT_NE(test, tag, (u8)KASAN_TAG_KERNEL);
+
+       /* Reset the tag to 0xff.*/
+       ptr = set_tag(ptr, KASAN_TAG_KERNEL);
+
+       /* This access shouldn't trigger a KASAN report. */
+       *ptr = 0;
+
+       /* Recover the pointer tag and free. */
+       ptr = set_tag(ptr, tag);
+       kfree(ptr);
+}
+
+/* Check that there are no match-all memory tags for tag-based modes. */
+static void match_all_mem_tag(struct kunit *test)
+{
+       char *ptr;
+       int tag;
+
+       KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_KASAN_GENERIC);
+
+       ptr = kmalloc(128, GFP_KERNEL);
+       KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
+       KUNIT_EXPECT_NE(test, (u8)get_tag(ptr), (u8)KASAN_TAG_KERNEL);
+
+       /* For each possible tag value not matching the pointer tag. */
+       for (tag = KASAN_TAG_MIN; tag <= KASAN_TAG_KERNEL; tag++) {
+               if (tag == get_tag(ptr))
+                       continue;
+
+               /* Mark the first memory granule with the chosen memory tag. */
+               kasan_poison(ptr, KASAN_GRANULE_SIZE, (u8)tag);
+
+               /* This access must cause a KASAN report. */
+               KUNIT_EXPECT_KASAN_FAIL(test, *ptr = 0);
+       }
+
+       /* Recover the memory tag and free. */
+       kasan_poison(ptr, KASAN_GRANULE_SIZE, get_tag(ptr));
+       kfree(ptr);
+}
+
 static struct kunit_case kasan_kunit_test_cases[] = {
        KUNIT_CASE(kmalloc_oob_right),
        KUNIT_CASE(kmalloc_oob_left),
        KUNIT_CASE(kasan_bitops_tags),
        KUNIT_CASE(kmalloc_double_kzfree),
        KUNIT_CASE(vmalloc_oob),
+       KUNIT_CASE(match_all_not_assigned),
+       KUNIT_CASE(match_all_ptr_tag),
+       KUNIT_CASE(match_all_mem_tag),
        {}
 };