kasan: print page description after stacks
authorAndrey Konovalov <[email protected]>
Wed, 3 May 2017 21:56:44 +0000 (14:56 -0700)
committerLinus Torvalds <[email protected]>
Wed, 3 May 2017 22:52:12 +0000 (15:52 -0700)
Moves page description after the stacks since it's less important.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Andrey Konovalov <[email protected]>
Acked-by: Dmitry Vyukov <[email protected]>
Cc: Andrey Ryabinin <[email protected]>
Cc: Alexander Potapenko <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/kasan/report.c

index a1b1ef7a19f5e44a7f91be906ce9937a151b8ebe..b015acc80876b9031abcf414830092b3171e9f30 100644 (file)
@@ -261,9 +261,6 @@ static void print_address_description(struct kasan_access_info *info)
        void *addr = (void *)info->access_addr;
        struct page *page = addr_to_page(addr);
 
-       if (page)
-               dump_page(page, "kasan: bad access detected");
-
        dump_stack();
 
        if (page && PageSlab(page)) {
@@ -273,9 +270,14 @@ static void print_address_description(struct kasan_access_info *info)
                describe_object(cache, object, addr);
        }
 
-       if (kernel_or_module_addr(addr)) {
-               if (!init_task_stack_addr(addr))
-                       pr_err("Address belongs to variable %pS\n", addr);
+       if (kernel_or_module_addr(addr) && !init_task_stack_addr(addr)) {
+               pr_err("The buggy address belongs to the variable:\n");
+               pr_err(" %pS\n", addr);
+       }
+
+       if (page) {
+               pr_err("The buggy address belongs to the page:\n");
+               dump_page(page, "kasan: bad access detected");
        }
 }