Linux 4.20.5
[linux/fpc-iii.git] / mm / page_poison.c
blobf0c15e9017c02236e56cb71948d992c584226d0c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kernel.h>
3 #include <linux/string.h>
4 #include <linux/mm.h>
5 #include <linux/highmem.h>
6 #include <linux/page_ext.h>
7 #include <linux/poison.h>
8 #include <linux/ratelimit.h>
10 static bool want_page_poisoning __read_mostly;
12 static int __init early_page_poison_param(char *buf)
14 if (!buf)
15 return -EINVAL;
16 return strtobool(buf, &want_page_poisoning);
18 early_param("page_poison", early_page_poison_param);
20 /**
21 * page_poisoning_enabled - check if page poisoning is enabled
23 * Return true if page poisoning is enabled, or false if not.
25 bool page_poisoning_enabled(void)
28 * Assumes that debug_pagealloc_enabled is set before
29 * memblock_free_all.
30 * Page poisoning is debug page alloc for some arches. If
31 * either of those options are enabled, enable poisoning.
33 return (want_page_poisoning ||
34 (!IS_ENABLED(CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC) &&
35 debug_pagealloc_enabled()));
37 EXPORT_SYMBOL_GPL(page_poisoning_enabled);
39 static void poison_page(struct page *page)
41 void *addr = kmap_atomic(page);
43 memset(addr, PAGE_POISON, PAGE_SIZE);
44 kunmap_atomic(addr);
47 static void poison_pages(struct page *page, int n)
49 int i;
51 for (i = 0; i < n; i++)
52 poison_page(page + i);
55 static bool single_bit_flip(unsigned char a, unsigned char b)
57 unsigned char error = a ^ b;
59 return error && !(error & (error - 1));
62 static void check_poison_mem(unsigned char *mem, size_t bytes)
64 static DEFINE_RATELIMIT_STATE(ratelimit, 5 * HZ, 10);
65 unsigned char *start;
66 unsigned char *end;
68 if (IS_ENABLED(CONFIG_PAGE_POISONING_NO_SANITY))
69 return;
71 start = memchr_inv(mem, PAGE_POISON, bytes);
72 if (!start)
73 return;
75 for (end = mem + bytes - 1; end > start; end--) {
76 if (*end != PAGE_POISON)
77 break;
80 if (!__ratelimit(&ratelimit))
81 return;
82 else if (start == end && single_bit_flip(*start, PAGE_POISON))
83 pr_err("pagealloc: single bit error\n");
84 else
85 pr_err("pagealloc: memory corruption\n");
87 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_ADDRESS, 16, 1, start,
88 end - start + 1, 1);
89 dump_stack();
92 static void unpoison_page(struct page *page)
94 void *addr;
96 addr = kmap_atomic(page);
98 * Page poisoning when enabled poisons each and every page
99 * that is freed to buddy. Thus no extra check is done to
100 * see if a page was posioned.
102 check_poison_mem(addr, PAGE_SIZE);
103 kunmap_atomic(addr);
106 static void unpoison_pages(struct page *page, int n)
108 int i;
110 for (i = 0; i < n; i++)
111 unpoison_page(page + i);
114 void kernel_poison_pages(struct page *page, int numpages, int enable)
116 if (!page_poisoning_enabled())
117 return;
119 if (enable)
120 unpoison_pages(page, numpages);
121 else
122 poison_pages(page, numpages);
125 #ifndef CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC
126 void __kernel_map_pages(struct page *page, int numpages, int enable)
128 /* This function does nothing, all work is done via poison pages */
130 #endif