1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Inject a hwpoison memory failure on a arbitrary pfn */
3 #include <linux/module.h>
4 #include <linux/debugfs.h>
5 #include <linux/kernel.h>
7 #include <linux/swap.h>
8 #include <linux/pagemap.h>
9 #include <linux/hugetlb.h>
12 static struct dentry *hwpoison_dir;
14 static int hwpoison_inject(void *data, u64 val)
16 unsigned long pfn = val;
21 if (!capable(CAP_SYS_ADMIN))
28 hpage = compound_head(p);
30 * This implies unable to support free buddy pages.
32 if (!get_hwpoison_page(p))
35 if (!hwpoison_filter_enable)
40 * This implies unable to support non-LRU pages.
42 if (!PageLRU(hpage) && !PageHuge(p))
46 * do a racy check with elevated page count, to make sure PG_hwpoison
47 * will only be set for the targeted owner (or on a free page).
48 * memory_failure() will redo the check reliably inside page lock.
50 err = hwpoison_filter(hpage);
55 pr_info("Injecting memory failure at pfn %#lx\n", pfn);
56 return memory_failure(pfn, MF_COUNT_INCREASED);
62 static int hwpoison_unpoison(void *data, u64 val)
64 if (!capable(CAP_SYS_ADMIN))
67 return unpoison_memory(val);
70 DEFINE_DEBUGFS_ATTRIBUTE(hwpoison_fops, NULL, hwpoison_inject, "%lli\n");
71 DEFINE_DEBUGFS_ATTRIBUTE(unpoison_fops, NULL, hwpoison_unpoison, "%lli\n");
73 static void pfn_inject_exit(void)
75 debugfs_remove_recursive(hwpoison_dir);
78 static int pfn_inject_init(void)
80 hwpoison_dir = debugfs_create_dir("hwpoison", NULL);
83 * Note that the below poison/unpoison interfaces do not involve
84 * hardware status change, hence do not require hardware support.
85 * They are mainly for testing hwpoison in software level.
87 debugfs_create_file("corrupt-pfn", 0200, hwpoison_dir, NULL,
90 debugfs_create_file("unpoison-pfn", 0200, hwpoison_dir, NULL,
93 debugfs_create_u32("corrupt-filter-enable", 0600, hwpoison_dir,
94 &hwpoison_filter_enable);
96 debugfs_create_u32("corrupt-filter-dev-major", 0600, hwpoison_dir,
97 &hwpoison_filter_dev_major);
99 debugfs_create_u32("corrupt-filter-dev-minor", 0600, hwpoison_dir,
100 &hwpoison_filter_dev_minor);
102 debugfs_create_u64("corrupt-filter-flags-mask", 0600, hwpoison_dir,
103 &hwpoison_filter_flags_mask);
105 debugfs_create_u64("corrupt-filter-flags-value", 0600, hwpoison_dir,
106 &hwpoison_filter_flags_value);
109 debugfs_create_u64("corrupt-filter-memcg", 0600, hwpoison_dir,
110 &hwpoison_filter_memcg);
116 module_init(pfn_inject_init);
117 module_exit(pfn_inject_exit);
118 MODULE_LICENSE("GPL");