blob: 1ae1ebc2b9b1694cf96b77ee5910f4f88214e46f [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/* Inject a hwpoison memory failure on a arbitrary pfn */
3#include <linux/module.h>
4#include <linux/debugfs.h>
5#include <linux/kernel.h>
6#include <linux/mm.h>
7#include <linux/swap.h>
8#include <linux/pagemap.h>
9#include <linux/hugetlb.h>
10#include "internal.h"
11
12static struct dentry *hwpoison_dir;
13
14static int hwpoison_inject(void *data, u64 val)
15{
16 unsigned long pfn = val;
17 struct page *p;
18 struct page *hpage;
19 int err;
20
21 if (!capable(CAP_SYS_ADMIN))
22 return -EPERM;
23
24 if (!pfn_valid(pfn))
25 return -ENXIO;
26
27 p = pfn_to_page(pfn);
28 hpage = compound_head(p);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000029
30 if (!hwpoison_filter_enable)
31 goto inject;
32
33 shake_page(hpage, 0);
34 /*
35 * This implies unable to support non-LRU pages.
36 */
37 if (!PageLRU(hpage) && !PageHuge(p))
Olivier Deprez157378f2022-04-04 15:47:50 +020038 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000039
40 /*
Olivier Deprez157378f2022-04-04 15:47:50 +020041 * do a racy check to make sure PG_hwpoison will only be set for
42 * the targeted owner (or on a free page).
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000043 * memory_failure() will redo the check reliably inside page lock.
44 */
45 err = hwpoison_filter(hpage);
46 if (err)
Olivier Deprez157378f2022-04-04 15:47:50 +020047 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000048
49inject:
50 pr_info("Injecting memory failure at pfn %#lx\n", pfn);
Olivier Deprez157378f2022-04-04 15:47:50 +020051 return memory_failure(pfn, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000052}
53
54static int hwpoison_unpoison(void *data, u64 val)
55{
56 if (!capable(CAP_SYS_ADMIN))
57 return -EPERM;
58
59 return unpoison_memory(val);
60}
61
Olivier Deprez157378f2022-04-04 15:47:50 +020062DEFINE_DEBUGFS_ATTRIBUTE(hwpoison_fops, NULL, hwpoison_inject, "%lli\n");
63DEFINE_DEBUGFS_ATTRIBUTE(unpoison_fops, NULL, hwpoison_unpoison, "%lli\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000064
65static void pfn_inject_exit(void)
66{
67 debugfs_remove_recursive(hwpoison_dir);
68}
69
70static int pfn_inject_init(void)
71{
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000072 hwpoison_dir = debugfs_create_dir("hwpoison", NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000073
74 /*
75 * Note that the below poison/unpoison interfaces do not involve
76 * hardware status change, hence do not require hardware support.
77 * They are mainly for testing hwpoison in software level.
78 */
David Brazdil0f672f62019-12-10 10:32:29 +000079 debugfs_create_file("corrupt-pfn", 0200, hwpoison_dir, NULL,
80 &hwpoison_fops);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000081
David Brazdil0f672f62019-12-10 10:32:29 +000082 debugfs_create_file("unpoison-pfn", 0200, hwpoison_dir, NULL,
83 &unpoison_fops);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000084
David Brazdil0f672f62019-12-10 10:32:29 +000085 debugfs_create_u32("corrupt-filter-enable", 0600, hwpoison_dir,
86 &hwpoison_filter_enable);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000087
David Brazdil0f672f62019-12-10 10:32:29 +000088 debugfs_create_u32("corrupt-filter-dev-major", 0600, hwpoison_dir,
89 &hwpoison_filter_dev_major);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000090
David Brazdil0f672f62019-12-10 10:32:29 +000091 debugfs_create_u32("corrupt-filter-dev-minor", 0600, hwpoison_dir,
92 &hwpoison_filter_dev_minor);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000093
David Brazdil0f672f62019-12-10 10:32:29 +000094 debugfs_create_u64("corrupt-filter-flags-mask", 0600, hwpoison_dir,
95 &hwpoison_filter_flags_mask);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000096
David Brazdil0f672f62019-12-10 10:32:29 +000097 debugfs_create_u64("corrupt-filter-flags-value", 0600, hwpoison_dir,
98 &hwpoison_filter_flags_value);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000099
100#ifdef CONFIG_MEMCG
David Brazdil0f672f62019-12-10 10:32:29 +0000101 debugfs_create_u64("corrupt-filter-memcg", 0600, hwpoison_dir,
102 &hwpoison_filter_memcg);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000103#endif
104
105 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000106}
107
108module_init(pfn_inject_init);
109module_exit(pfn_inject_exit);
110MODULE_LICENSE("GPL");