blob: 98438985e1ed9c28b8554bbdc8b81c427178d66d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Akinobu Mita6a11f752009-03-31 15:23:17 -07002#include <linux/kernel.h>
Akinobu Mita8c5fb8e2011-10-31 17:08:10 -07003#include <linux/string.h>
Akinobu Mita6a11f752009-03-31 15:23:17 -07004#include <linux/mm.h>
Sergei Trofimovichf58bd532021-04-29 22:55:12 -07005#include <linux/mmdebug.h>
Akinobu Mita64212ec2011-10-31 17:08:38 -07006#include <linux/highmem.h>
Joonsoo Kime30825f2014-12-12 16:55:49 -08007#include <linux/page_ext.h>
Akinobu Mita6a11f752009-03-31 15:23:17 -07008#include <linux/poison.h>
Akinobu Mita77311132011-10-31 17:08:05 -07009#include <linux/ratelimit.h>
Qian Cai41179922019-03-05 15:41:24 -080010#include <linux/kasan.h>
Akinobu Mita6a11f752009-03-31 15:23:17 -070011
Vlastimil Babka8db26a32020-12-14 19:13:34 -080012bool _page_poisoning_enabled_early;
13EXPORT_SYMBOL(_page_poisoning_enabled_early);
14DEFINE_STATIC_KEY_FALSE(_page_poisoning_enabled);
15EXPORT_SYMBOL(_page_poisoning_enabled);
Laura Abbott8823b1d2016-03-15 14:56:27 -070016
Dou Liyang14298d32018-04-05 16:23:53 -070017static int __init early_page_poison_param(char *buf)
Laura Abbott8823b1d2016-03-15 14:56:27 -070018{
Vlastimil Babka8db26a32020-12-14 19:13:34 -080019 return kstrtobool(buf, &_page_poisoning_enabled_early);
Laura Abbott8823b1d2016-03-15 14:56:27 -070020}
21early_param("page_poison", early_page_poison_param);
22
Akinobu Mita6a11f752009-03-31 15:23:17 -070023static void poison_page(struct page *page)
24{
Akinobu Mita64212ec2011-10-31 17:08:38 -070025 void *addr = kmap_atomic(page);
Akinobu Mita6a11f752009-03-31 15:23:17 -070026
Qian Cai41179922019-03-05 15:41:24 -080027 /* KASAN still think the page is in-use, so skip it. */
28 kasan_disable_current();
Andrey Konovalovaa1ef4d2020-12-22 12:02:17 -080029 memset(kasan_reset_tag(addr), PAGE_POISON, PAGE_SIZE);
Qian Cai41179922019-03-05 15:41:24 -080030 kasan_enable_current();
Akinobu Mita64212ec2011-10-31 17:08:38 -070031 kunmap_atomic(addr);
Akinobu Mita6a11f752009-03-31 15:23:17 -070032}
33
Vlastimil Babka8db26a32020-12-14 19:13:34 -080034void __kernel_poison_pages(struct page *page, int n)
Akinobu Mita6a11f752009-03-31 15:23:17 -070035{
36 int i;
37
38 for (i = 0; i < n; i++)
39 poison_page(page + i);
40}
41
42static bool single_bit_flip(unsigned char a, unsigned char b)
43{
44 unsigned char error = a ^ b;
45
46 return error && !(error & (error - 1));
47}
48
Sergei Trofimovichf58bd532021-04-29 22:55:12 -070049static void check_poison_mem(struct page *page, unsigned char *mem, size_t bytes)
Akinobu Mita6a11f752009-03-31 15:23:17 -070050{
Akinobu Mita77311132011-10-31 17:08:05 -070051 static DEFINE_RATELIMIT_STATE(ratelimit, 5 * HZ, 10);
Akinobu Mita6a11f752009-03-31 15:23:17 -070052 unsigned char *start;
53 unsigned char *end;
54
Akinobu Mita8c5fb8e2011-10-31 17:08:10 -070055 start = memchr_inv(mem, PAGE_POISON, bytes);
56 if (!start)
Akinobu Mita6a11f752009-03-31 15:23:17 -070057 return;
58
59 for (end = mem + bytes - 1; end > start; end--) {
60 if (*end != PAGE_POISON)
61 break;
62 }
63
Akinobu Mita77311132011-10-31 17:08:05 -070064 if (!__ratelimit(&ratelimit))
Akinobu Mita6a11f752009-03-31 15:23:17 -070065 return;
66 else if (start == end && single_bit_flip(*start, PAGE_POISON))
Laura Abbott8823b1d2016-03-15 14:56:27 -070067 pr_err("pagealloc: single bit error\n");
Akinobu Mita6a11f752009-03-31 15:23:17 -070068 else
Laura Abbott8823b1d2016-03-15 14:56:27 -070069 pr_err("pagealloc: memory corruption\n");
Akinobu Mita6a11f752009-03-31 15:23:17 -070070
71 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_ADDRESS, 16, 1, start,
72 end - start + 1, 1);
73 dump_stack();
Sergei Trofimovichf58bd532021-04-29 22:55:12 -070074 dump_page(page, "pagealloc: corrupted page details");
Akinobu Mita6a11f752009-03-31 15:23:17 -070075}
76
Akinobu Mita6a11f752009-03-31 15:23:17 -070077static void unpoison_page(struct page *page)
78{
Akinobu Mita64212ec2011-10-31 17:08:38 -070079 void *addr;
Akinobu Mita6a11f752009-03-31 15:23:17 -070080
Akinobu Mita64212ec2011-10-31 17:08:38 -070081 addr = kmap_atomic(page);
Andrey Konovalov06b1f852021-04-09 13:27:38 -070082 kasan_disable_current();
Vinayak Menonbd33ef32017-05-03 14:54:42 -070083 /*
84 * Page poisoning when enabled poisons each and every page
85 * that is freed to buddy. Thus no extra check is done to
Christophe JAILLETdbf76842019-09-23 15:34:19 -070086 * see if a page was poisoned.
Vinayak Menonbd33ef32017-05-03 14:54:42 -070087 */
Sergei Trofimovichf58bd532021-04-29 22:55:12 -070088 check_poison_mem(page, kasan_reset_tag(addr), PAGE_SIZE);
Andrey Konovalov06b1f852021-04-09 13:27:38 -070089 kasan_enable_current();
Akinobu Mita64212ec2011-10-31 17:08:38 -070090 kunmap_atomic(addr);
Akinobu Mita6a11f752009-03-31 15:23:17 -070091}
92
Vlastimil Babka8db26a32020-12-14 19:13:34 -080093void __kernel_unpoison_pages(struct page *page, int n)
Akinobu Mita6a11f752009-03-31 15:23:17 -070094{
95 int i;
96
97 for (i = 0; i < n; i++)
98 unpoison_page(page + i);
99}
100
Laura Abbott8823b1d2016-03-15 14:56:27 -0700101#ifndef CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC
102void __kernel_map_pages(struct page *page, int numpages, int enable)
103{
104 /* This function does nothing, all work is done via poison pages */
105}
106#endif