blob: e488876b168a6b635a97dd9cb3b72b13978c1f75 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002/* Inject a hwpoison memory failure on a arbitrary pfn */
Andi Kleencae681f2009-09-16 11:50:17 +02003#include <linux/module.h>
4#include <linux/debugfs.h>
5#include <linux/kernel.h>
6#include <linux/mm.h>
Wu Fengguang31d3d342009-12-16 12:19:59 +01007#include <linux/swap.h>
8#include <linux/pagemap.h>
Naoya Horiguchi43131e12010-05-28 09:29:22 +09009#include <linux/hugetlb.h>
Wu Fengguang7c116f22009-12-16 12:19:59 +010010#include "internal.h"
Andi Kleencae681f2009-09-16 11:50:17 +020011
Wu Fengguang847ce402009-12-16 12:19:58 +010012static struct dentry *hwpoison_dir;
Andi Kleencae681f2009-09-16 11:50:17 +020013
14static int hwpoison_inject(void *data, u64 val)
15{
Wu Fengguang31d3d342009-12-16 12:19:59 +010016 unsigned long pfn = val;
17 struct page *p;
Naoya Horiguchi43131e12010-05-28 09:29:22 +090018 struct page *hpage;
Wu Fengguang31d3d342009-12-16 12:19:59 +010019 int err;
20
Andi Kleencae681f2009-09-16 11:50:17 +020021 if (!capable(CAP_SYS_ADMIN))
22 return -EPERM;
Wu Fengguang31d3d342009-12-16 12:19:59 +010023
24 if (!pfn_valid(pfn))
25 return -ENXIO;
26
27 p = pfn_to_page(pfn);
Naoya Horiguchi43131e12010-05-28 09:29:22 +090028 hpage = compound_head(p);
Wu Fengguang31d3d342009-12-16 12:19:59 +010029 /*
30 * This implies unable to support free buddy pages.
31 */
Naoya Horiguchiead07f62015-06-24 16:56:48 -070032 if (!get_hwpoison_page(p))
Wu Fengguang31d3d342009-12-16 12:19:59 +010033 return 0;
34
Wanpeng Lifb31ba32013-09-30 13:45:24 -070035 if (!hwpoison_filter_enable)
36 goto inject;
37
Naoya Horiguchi8bcb74d2017-05-03 14:56:19 -070038 shake_page(hpage, 0);
Wu Fengguang31d3d342009-12-16 12:19:59 +010039 /*
40 * This implies unable to support non-LRU pages.
41 */
Naoya Horiguchie386eed2015-05-05 16:23:52 -070042 if (!PageLRU(hpage) && !PageHuge(p))
Naoya Horiguchi7ea434a42015-05-05 16:23:49 -070043 goto put_out;
Wu Fengguang31d3d342009-12-16 12:19:59 +010044
45 /*
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).
Tony Luckcd42f4a2011-12-15 10:48:12 -080048 * memory_failure() will redo the check reliably inside page lock.
Wu Fengguang31d3d342009-12-16 12:19:59 +010049 */
Naoya Horiguchi43131e12010-05-28 09:29:22 +090050 err = hwpoison_filter(hpage);
Wu Fengguang31d3d342009-12-16 12:19:59 +010051 if (err)
Naoya Horiguchi7ea434a42015-05-05 16:23:49 -070052 goto put_out;
Wu Fengguang31d3d342009-12-16 12:19:59 +010053
Andi Kleen0d57eb8d2009-12-16 12:20:01 +010054inject:
Wanpeng Li4883e992014-01-21 15:50:56 -080055 pr_info("Injecting memory failure at pfn %#lx\n", pfn);
Eric W. Biederman83b57532017-07-09 18:14:01 -050056 return memory_failure(pfn, MF_COUNT_INCREASED);
Naoya Horiguchi7ea434a42015-05-05 16:23:49 -070057put_out:
Wanpeng Libe917482015-09-08 15:03:18 -070058 put_hwpoison_page(p);
Naoya Horiguchi7ea434a42015-05-05 16:23:49 -070059 return 0;
Andi Kleencae681f2009-09-16 11:50:17 +020060}
61
Wu Fengguang847ce402009-12-16 12:19:58 +010062static int hwpoison_unpoison(void *data, u64 val)
63{
64 if (!capable(CAP_SYS_ADMIN))
65 return -EPERM;
66
67 return unpoison_memory(val);
68}
69
zhong jiang35e3d562019-11-30 17:57:35 -080070DEFINE_DEBUGFS_ATTRIBUTE(hwpoison_fops, NULL, hwpoison_inject, "%lli\n");
71DEFINE_DEBUGFS_ATTRIBUTE(unpoison_fops, NULL, hwpoison_unpoison, "%lli\n");
Andi Kleencae681f2009-09-16 11:50:17 +020072
73static void pfn_inject_exit(void)
74{
Fabian Frederickc2ea2182014-08-06 16:06:41 -070075 debugfs_remove_recursive(hwpoison_dir);
Andi Kleencae681f2009-09-16 11:50:17 +020076}
77
78static int pfn_inject_init(void)
79{
80 hwpoison_dir = debugfs_create_dir("hwpoison", NULL);
Wu Fengguang847ce402009-12-16 12:19:58 +010081
82 /*
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.
86 */
Greg Kroah-Hartman2fcc6e22019-01-22 16:21:10 +010087 debugfs_create_file("corrupt-pfn", 0200, hwpoison_dir, NULL,
88 &hwpoison_fops);
Wu Fengguang847ce402009-12-16 12:19:58 +010089
Greg Kroah-Hartman2fcc6e22019-01-22 16:21:10 +010090 debugfs_create_file("unpoison-pfn", 0200, hwpoison_dir, NULL,
91 &unpoison_fops);
Wu Fengguang847ce402009-12-16 12:19:58 +010092
Greg Kroah-Hartman2fcc6e22019-01-22 16:21:10 +010093 debugfs_create_u32("corrupt-filter-enable", 0600, hwpoison_dir,
94 &hwpoison_filter_enable);
Haicheng Li1bfe5fe2009-12-16 12:19:59 +010095
Greg Kroah-Hartman2fcc6e22019-01-22 16:21:10 +010096 debugfs_create_u32("corrupt-filter-dev-major", 0600, hwpoison_dir,
97 &hwpoison_filter_dev_major);
Wu Fengguang7c116f22009-12-16 12:19:59 +010098
Greg Kroah-Hartman2fcc6e22019-01-22 16:21:10 +010099 debugfs_create_u32("corrupt-filter-dev-minor", 0600, hwpoison_dir,
100 &hwpoison_filter_dev_minor);
Wu Fengguang7c116f22009-12-16 12:19:59 +0100101
Greg Kroah-Hartman2fcc6e22019-01-22 16:21:10 +0100102 debugfs_create_u64("corrupt-filter-flags-mask", 0600, hwpoison_dir,
103 &hwpoison_filter_flags_mask);
Wu Fengguang478c5ff2009-12-16 12:19:59 +0100104
Greg Kroah-Hartman2fcc6e22019-01-22 16:21:10 +0100105 debugfs_create_u64("corrupt-filter-flags-value", 0600, hwpoison_dir,
106 &hwpoison_filter_flags_value);
Wu Fengguang478c5ff2009-12-16 12:19:59 +0100107
Vladimir Davydov94a59fb2015-09-09 15:35:31 -0700108#ifdef CONFIG_MEMCG
Greg Kroah-Hartman2fcc6e22019-01-22 16:21:10 +0100109 debugfs_create_u64("corrupt-filter-memcg", 0600, hwpoison_dir,
110 &hwpoison_filter_memcg);
Andi Kleen4fd466e2009-12-16 12:19:59 +0100111#endif
112
Andi Kleencae681f2009-09-16 11:50:17 +0200113 return 0;
Andi Kleencae681f2009-09-16 11:50:17 +0200114}
115
116module_init(pfn_inject_init);
117module_exit(pfn_inject_exit);
118MODULE_LICENSE("GPL");