1 /* Inject a hwpoison memory failure on a arbitrary pfn */
2 #include <linux/module.h>
3 #include <linux/debugfs.h>
4 #include <linux/kernel.h>
6 #include <linux/swap.h>
7 #include <linux/pagemap.h>
8 #include <linux/hugetlb.h>
11 static struct dentry
*hwpoison_dir
;
13 static int hwpoison_inject(void *data
, u64 val
)
15 unsigned long pfn
= val
;
20 if (!capable(CAP_SYS_ADMIN
))
27 hpage
= compound_head(p
);
29 * This implies unable to support free buddy pages.
31 if (!get_hwpoison_page(p
))
34 if (!hwpoison_filter_enable
)
39 * This implies unable to support non-LRU pages.
41 if (!PageLRU(hpage
) && !PageHuge(p
))
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).
47 * memory_failure() will redo the check reliably inside page lock.
49 err
= hwpoison_filter(hpage
);
54 pr_info("Injecting memory failure at pfn %#lx\n", pfn
);
55 return memory_failure(pfn
, MF_COUNT_INCREASED
);
61 static int hwpoison_unpoison(void *data
, u64 val
)
63 if (!capable(CAP_SYS_ADMIN
))
66 return unpoison_memory(val
);
69 DEFINE_SIMPLE_ATTRIBUTE(hwpoison_fops
, NULL
, hwpoison_inject
, "%lli\n");
70 DEFINE_SIMPLE_ATTRIBUTE(unpoison_fops
, NULL
, hwpoison_unpoison
, "%lli\n");
72 static void pfn_inject_exit(void)
74 debugfs_remove_recursive(hwpoison_dir
);
77 static int pfn_inject_init(void)
79 struct dentry
*dentry
;
81 hwpoison_dir
= debugfs_create_dir("hwpoison", NULL
);
82 if (hwpoison_dir
== NULL
)
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.
90 dentry
= debugfs_create_file("corrupt-pfn", 0200, hwpoison_dir
,
91 NULL
, &hwpoison_fops
);
95 dentry
= debugfs_create_file("unpoison-pfn", 0200, hwpoison_dir
,
96 NULL
, &unpoison_fops
);
100 dentry
= debugfs_create_u32("corrupt-filter-enable", 0600,
101 hwpoison_dir
, &hwpoison_filter_enable
);
105 dentry
= debugfs_create_u32("corrupt-filter-dev-major", 0600,
106 hwpoison_dir
, &hwpoison_filter_dev_major
);
110 dentry
= debugfs_create_u32("corrupt-filter-dev-minor", 0600,
111 hwpoison_dir
, &hwpoison_filter_dev_minor
);
115 dentry
= debugfs_create_u64("corrupt-filter-flags-mask", 0600,
116 hwpoison_dir
, &hwpoison_filter_flags_mask
);
120 dentry
= debugfs_create_u64("corrupt-filter-flags-value", 0600,
121 hwpoison_dir
, &hwpoison_filter_flags_value
);
126 dentry
= debugfs_create_u64("corrupt-filter-memcg", 0600,
127 hwpoison_dir
, &hwpoison_filter_memcg
);
138 module_init(pfn_inject_init
);
139 module_exit(pfn_inject_exit
);
140 MODULE_LICENSE("GPL");