1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kernel.h>
3 #include <linux/string.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
)
16 return strtobool(buf
, &want_page_poisoning
);
18 early_param("page_poison", early_page_poison_param
);
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
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
);
47 static void poison_pages(struct page
*page
, int n
)
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);
68 if (IS_ENABLED(CONFIG_PAGE_POISONING_NO_SANITY
))
71 start
= memchr_inv(mem
, PAGE_POISON
, bytes
);
75 for (end
= mem
+ bytes
- 1; end
> start
; end
--) {
76 if (*end
!= PAGE_POISON
)
80 if (!__ratelimit(&ratelimit
))
82 else if (start
== end
&& single_bit_flip(*start
, PAGE_POISON
))
83 pr_err("pagealloc: single bit error\n");
85 pr_err("pagealloc: memory corruption\n");
87 print_hex_dump(KERN_ERR
, "", DUMP_PREFIX_ADDRESS
, 16, 1, start
,
92 static void unpoison_page(struct page
*page
)
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
);
106 static void unpoison_pages(struct page
*page
, int n
)
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())
120 unpoison_pages(page
, numpages
);
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 */