blob: 2618933efdb361d974033380b00e5c86f6c31291 [file] [log] [blame]
Akinobu Mita6a11f752009-03-31 15:23:17 -07001#include <linux/kernel.h>
Akinobu Mita8c5fb8e2011-10-31 17:08:10 -07002#include <linux/string.h>
Akinobu Mita6a11f752009-03-31 15:23:17 -07003#include <linux/mm.h>
4#include <linux/page-debug-flags.h>
5#include <linux/poison.h>
Akinobu Mita77311132011-10-31 17:08:05 -07006#include <linux/ratelimit.h>
Akinobu Mita6a11f752009-03-31 15:23:17 -07007
8static inline void set_page_poison(struct page *page)
9{
10 __set_bit(PAGE_DEBUG_FLAG_POISON, &page->debug_flags);
11}
12
13static inline void clear_page_poison(struct page *page)
14{
15 __clear_bit(PAGE_DEBUG_FLAG_POISON, &page->debug_flags);
16}
17
18static inline bool page_poison(struct page *page)
19{
20 return test_bit(PAGE_DEBUG_FLAG_POISON, &page->debug_flags);
21}
22
23static void poison_highpage(struct page *page)
24{
25 /*
26 * Page poisoning for highmem pages is not implemented.
27 *
28 * This can be called from interrupt contexts.
29 * So we need to create a new kmap_atomic slot for this
30 * application and it will need interrupt protection.
31 */
32}
33
34static void poison_page(struct page *page)
35{
36 void *addr;
37
38 if (PageHighMem(page)) {
39 poison_highpage(page);
40 return;
41 }
42 set_page_poison(page);
43 addr = page_address(page);
44 memset(addr, PAGE_POISON, PAGE_SIZE);
45}
46
47static void poison_pages(struct page *page, int n)
48{
49 int i;
50
51 for (i = 0; i < n; i++)
52 poison_page(page + i);
53}
54
55static bool single_bit_flip(unsigned char a, unsigned char b)
56{
57 unsigned char error = a ^ b;
58
59 return error && !(error & (error - 1));
60}
61
62static void check_poison_mem(unsigned char *mem, size_t bytes)
63{
Akinobu Mita77311132011-10-31 17:08:05 -070064 static DEFINE_RATELIMIT_STATE(ratelimit, 5 * HZ, 10);
Akinobu Mita6a11f752009-03-31 15:23:17 -070065 unsigned char *start;
66 unsigned char *end;
67
Akinobu Mita8c5fb8e2011-10-31 17:08:10 -070068 start = memchr_inv(mem, PAGE_POISON, bytes);
69 if (!start)
Akinobu Mita6a11f752009-03-31 15:23:17 -070070 return;
71
72 for (end = mem + bytes - 1; end > start; end--) {
73 if (*end != PAGE_POISON)
74 break;
75 }
76
Akinobu Mita77311132011-10-31 17:08:05 -070077 if (!__ratelimit(&ratelimit))
Akinobu Mita6a11f752009-03-31 15:23:17 -070078 return;
79 else if (start == end && single_bit_flip(*start, PAGE_POISON))
80 printk(KERN_ERR "pagealloc: single bit error\n");
81 else
82 printk(KERN_ERR "pagealloc: memory corruption\n");
83
84 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_ADDRESS, 16, 1, start,
85 end - start + 1, 1);
86 dump_stack();
87}
88
89static void unpoison_highpage(struct page *page)
90{
91 /*
92 * See comment in poison_highpage().
93 * Highmem pages should not be poisoned for now
94 */
95 BUG_ON(page_poison(page));
96}
97
98static void unpoison_page(struct page *page)
99{
100 if (PageHighMem(page)) {
101 unpoison_highpage(page);
102 return;
103 }
104 if (page_poison(page)) {
105 void *addr = page_address(page);
106
107 check_poison_mem(addr, PAGE_SIZE);
108 clear_page_poison(page);
109 }
110}
111
112static void unpoison_pages(struct page *page, int n)
113{
114 int i;
115
116 for (i = 0; i < n; i++)
117 unpoison_page(page + i);
118}
119
120void kernel_map_pages(struct page *page, int numpages, int enable)
121{
122 if (!debug_pagealloc_enabled)
123 return;
124
125 if (enable)
126 unpoison_pages(page, numpages);
127 else
128 poison_pages(page, numpages);
129}