]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - mm/hwpoison-inject.c
UBUNTU: Ubuntu-4.13.0-45.50
[mirror_ubuntu-artful-kernel.git] / mm / hwpoison-inject.c
CommitLineData
25985edc 1/* Inject a hwpoison memory failure on a arbitrary pfn */
cae681fc
AK
2#include <linux/module.h>
3#include <linux/debugfs.h>
4#include <linux/kernel.h>
5#include <linux/mm.h>
31d3d348
WF
6#include <linux/swap.h>
7#include <linux/pagemap.h>
43131e14 8#include <linux/hugetlb.h>
7c116f2b 9#include "internal.h"
cae681fc 10
847ce401 11static struct dentry *hwpoison_dir;
cae681fc
AK
12
13static int hwpoison_inject(void *data, u64 val)
14{
31d3d348
WF
15 unsigned long pfn = val;
16 struct page *p;
43131e14 17 struct page *hpage;
31d3d348
WF
18 int err;
19
cae681fc
AK
20 if (!capable(CAP_SYS_ADMIN))
21 return -EPERM;
31d3d348
WF
22
23 if (!pfn_valid(pfn))
24 return -ENXIO;
25
26 p = pfn_to_page(pfn);
43131e14 27 hpage = compound_head(p);
31d3d348
WF
28 /*
29 * This implies unable to support free buddy pages.
30 */
ead07f6a 31 if (!get_hwpoison_page(p))
31d3d348
WF
32 return 0;
33
fb31ba30
WL
34 if (!hwpoison_filter_enable)
35 goto inject;
36
8bcb74de 37 shake_page(hpage, 0);
31d3d348
WF
38 /*
39 * This implies unable to support non-LRU pages.
40 */
e386eed8 41 if (!PageLRU(hpage) && !PageHuge(p))
7ea434a4 42 goto put_out;
31d3d348
WF
43
44 /*
45 * do a racy check with elevated page count, to make sure PG_hwpoison
46 * will only be set for the targeted owner (or on a free page).
cd42f4a3 47 * memory_failure() will redo the check reliably inside page lock.
31d3d348 48 */
43131e14 49 err = hwpoison_filter(hpage);
31d3d348 50 if (err)
7ea434a4 51 goto put_out;
31d3d348 52
0d57eb8d 53inject:
4883e997 54 pr_info("Injecting memory failure at pfn %#lx\n", pfn);
cd42f4a3 55 return memory_failure(pfn, 18, MF_COUNT_INCREASED);
7ea434a4 56put_out:
be91748f 57 put_hwpoison_page(p);
7ea434a4 58 return 0;
cae681fc
AK
59}
60
847ce401
WF
61static int hwpoison_unpoison(void *data, u64 val)
62{
63 if (!capable(CAP_SYS_ADMIN))
64 return -EPERM;
65
66 return unpoison_memory(val);
67}
68
cae681fc 69DEFINE_SIMPLE_ATTRIBUTE(hwpoison_fops, NULL, hwpoison_inject, "%lli\n");
847ce401 70DEFINE_SIMPLE_ATTRIBUTE(unpoison_fops, NULL, hwpoison_unpoison, "%lli\n");
cae681fc
AK
71
72static void pfn_inject_exit(void)
73{
c2ea2181 74 debugfs_remove_recursive(hwpoison_dir);
cae681fc
AK
75}
76
77static int pfn_inject_init(void)
78{
847ce401
WF
79 struct dentry *dentry;
80
cae681fc
AK
81 hwpoison_dir = debugfs_create_dir("hwpoison", NULL);
82 if (hwpoison_dir == NULL)
83 return -ENOMEM;
847ce401
WF
84
85 /*
86 * Note that the below poison/unpoison interfaces do not involve
87 * hardware status change, hence do not require hardware support.
88 * They are mainly for testing hwpoison in software level.
89 */
2d1e8b3f 90 dentry = debugfs_create_file("corrupt-pfn", 0200, hwpoison_dir,
cae681fc 91 NULL, &hwpoison_fops);
847ce401
WF
92 if (!dentry)
93 goto fail;
94
2d1e8b3f 95 dentry = debugfs_create_file("unpoison-pfn", 0200, hwpoison_dir,
847ce401
WF
96 NULL, &unpoison_fops);
97 if (!dentry)
98 goto fail;
99
1bfe5feb
HL
100 dentry = debugfs_create_u32("corrupt-filter-enable", 0600,
101 hwpoison_dir, &hwpoison_filter_enable);
102 if (!dentry)
103 goto fail;
104
7c116f2b
WF
105 dentry = debugfs_create_u32("corrupt-filter-dev-major", 0600,
106 hwpoison_dir, &hwpoison_filter_dev_major);
107 if (!dentry)
108 goto fail;
109
110 dentry = debugfs_create_u32("corrupt-filter-dev-minor", 0600,
111 hwpoison_dir, &hwpoison_filter_dev_minor);
112 if (!dentry)
113 goto fail;
114
478c5ffc
WF
115 dentry = debugfs_create_u64("corrupt-filter-flags-mask", 0600,
116 hwpoison_dir, &hwpoison_filter_flags_mask);
117 if (!dentry)
118 goto fail;
119
120 dentry = debugfs_create_u64("corrupt-filter-flags-value", 0600,
121 hwpoison_dir, &hwpoison_filter_flags_value);
122 if (!dentry)
123 goto fail;
124
94a59fb3 125#ifdef CONFIG_MEMCG
4fd466eb
AK
126 dentry = debugfs_create_u64("corrupt-filter-memcg", 0600,
127 hwpoison_dir, &hwpoison_filter_memcg);
128 if (!dentry)
129 goto fail;
130#endif
131
cae681fc 132 return 0;
847ce401
WF
133fail:
134 pfn_inject_exit();
135 return -ENOMEM;
cae681fc
AK
136}
137
138module_init(pfn_inject_init);
139module_exit(pfn_inject_exit);
140MODULE_LICENSE("GPL");