include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[linux-2.6-block.git] / arch / x86 / kernel / cpu / mcheck / mce-inject.c
CommitLineData
ea149b36
AK
1/*
2 * Machine check injection support.
3 * Copyright 2008 Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; version 2
8 * of the License.
9 *
10 * Authors:
11 * Andi Kleen
12 * Ying Huang
13 */
98a9c8c3 14#include <linux/uaccess.h>
ea149b36
AK
15#include <linux/module.h>
16#include <linux/timer.h>
17#include <linux/kernel.h>
18#include <linux/string.h>
19#include <linux/fs.h>
20#include <linux/smp.h>
5b7e88ed
HY
21#include <linux/notifier.h>
22#include <linux/kdebug.h>
23#include <linux/cpu.h>
24#include <linux/sched.h>
5a0e3ad6 25#include <linux/gfp.h>
ea149b36 26#include <asm/mce.h>
5b7e88ed 27#include <asm/apic.h>
ea149b36
AK
28
29/* Update fake mce registers on current CPU. */
30static void inject_mce(struct mce *m)
31{
d620c67f 32 struct mce *i = &per_cpu(injectm, m->extcpu);
ea149b36
AK
33
34 /* Make sure noone reads partially written injectm */
35 i->finished = 0;
36 mb();
37 m->finished = 0;
38 /* First set the fields after finished */
d620c67f 39 i->extcpu = m->extcpu;
ea149b36
AK
40 mb();
41 /* Now write record in order, finished last (except above) */
42 memcpy(i, m, sizeof(struct mce));
43 /* Finally activate it */
44 mb();
45 i->finished = 1;
46}
47
0dcc6685 48static void raise_poll(struct mce *m)
5b7e88ed
HY
49{
50 unsigned long flags;
51 mce_banks_t b;
52
53 memset(&b, 0xff, sizeof(mce_banks_t));
54 local_irq_save(flags);
55 machine_check_poll(0, &b);
56 local_irq_restore(flags);
57 m->finished = 0;
58}
59
0dcc6685 60static void raise_exception(struct mce *m, struct pt_regs *pregs)
5b7e88ed
HY
61{
62 struct pt_regs regs;
63 unsigned long flags;
64
65 if (!pregs) {
66 memset(&regs, 0, sizeof(struct pt_regs));
67 regs.ip = m->ip;
68 regs.cs = m->cs;
69 pregs = &regs;
70 }
71 /* in mcheck exeception handler, irq will be disabled */
72 local_irq_save(flags);
73 do_machine_check(pregs, 0);
74 local_irq_restore(flags);
75 m->finished = 0;
76}
77
6ac5c531 78static cpumask_var_t mce_inject_cpumask;
5b7e88ed
HY
79
80static int mce_raise_notify(struct notifier_block *self,
81 unsigned long val, void *data)
82{
83 struct die_args *args = (struct die_args *)data;
84 int cpu = smp_processor_id();
85 struct mce *m = &__get_cpu_var(injectm);
6ac5c531 86 if (val != DIE_NMI_IPI || !cpumask_test_cpu(cpu, mce_inject_cpumask))
5b7e88ed 87 return NOTIFY_DONE;
6ac5c531 88 cpumask_clear_cpu(cpu, mce_inject_cpumask);
0dcc6685
HY
89 if (m->inject_flags & MCJ_EXCEPTION)
90 raise_exception(m, args->regs);
5b7e88ed 91 else if (m->status)
0dcc6685 92 raise_poll(m);
5b7e88ed
HY
93 return NOTIFY_STOP;
94}
95
96static struct notifier_block mce_raise_nb = {
97 .notifier_call = mce_raise_notify,
98 .priority = 1000,
ea149b36
AK
99};
100
101/* Inject mce on current CPU */
14c0abf1 102static int raise_local(void)
ea149b36 103{
14c0abf1 104 struct mce *m = &__get_cpu_var(injectm);
5b7e88ed
HY
105 int context = MCJ_CTX(m->inject_flags);
106 int ret = 0;
d620c67f 107 int cpu = m->extcpu;
ea149b36 108
0dcc6685 109 if (m->inject_flags & MCJ_EXCEPTION) {
ea149b36 110 printk(KERN_INFO "Triggering MCE exception on CPU %d\n", cpu);
5b7e88ed
HY
111 switch (context) {
112 case MCJ_CTX_IRQ:
113 /*
114 * Could do more to fake interrupts like
115 * calling irq_enter, but the necessary
116 * machinery isn't exported currently.
117 */
118 /*FALL THROUGH*/
119 case MCJ_CTX_PROCESS:
0dcc6685 120 raise_exception(m, NULL);
5b7e88ed
HY
121 break;
122 default:
123 printk(KERN_INFO "Invalid MCE context\n");
124 ret = -EINVAL;
125 }
ea149b36 126 printk(KERN_INFO "MCE exception done on CPU %d\n", cpu);
5b7e88ed 127 } else if (m->status) {
ea149b36 128 printk(KERN_INFO "Starting machine check poll CPU %d\n", cpu);
0dcc6685 129 raise_poll(m);
9ff36ee9 130 mce_notify_irq();
5b7e88ed
HY
131 printk(KERN_INFO "Machine check poll done on CPU %d\n", cpu);
132 } else
133 m->finished = 0;
134
135 return ret;
136}
137
138static void raise_mce(struct mce *m)
139{
140 int context = MCJ_CTX(m->inject_flags);
141
142 inject_mce(m);
143
144 if (context == MCJ_CTX_RANDOM)
145 return;
146
147#ifdef CONFIG_X86_LOCAL_APIC
148 if (m->inject_flags & MCJ_NMI_BROADCAST) {
149 unsigned long start;
150 int cpu;
151 get_online_cpus();
6ac5c531
RR
152 cpumask_copy(mce_inject_cpumask, cpu_online_mask);
153 cpumask_clear_cpu(get_cpu(), mce_inject_cpumask);
5b7e88ed
HY
154 for_each_online_cpu(cpu) {
155 struct mce *mcpu = &per_cpu(injectm, cpu);
156 if (!mcpu->finished ||
157 MCJ_CTX(mcpu->inject_flags) != MCJ_CTX_RANDOM)
6ac5c531 158 cpumask_clear_cpu(cpu, mce_inject_cpumask);
5b7e88ed 159 }
6ac5c531
RR
160 if (!cpumask_empty(mce_inject_cpumask))
161 apic->send_IPI_mask(mce_inject_cpumask, NMI_VECTOR);
5b7e88ed 162 start = jiffies;
6ac5c531 163 while (!cpumask_empty(mce_inject_cpumask)) {
5b7e88ed
HY
164 if (!time_before(jiffies, start + 2*HZ)) {
165 printk(KERN_ERR
166 "Timeout waiting for mce inject NMI %lx\n",
6ac5c531 167 *cpumask_bits(mce_inject_cpumask));
5b7e88ed
HY
168 break;
169 }
170 cpu_relax();
171 }
14c0abf1 172 raise_local();
5b7e88ed
HY
173 put_cpu();
174 put_online_cpus();
175 } else
176#endif
14c0abf1 177 raise_local();
ea149b36
AK
178}
179
180/* Error injection interface */
181static ssize_t mce_write(struct file *filp, const char __user *ubuf,
182 size_t usize, loff_t *off)
183{
ea149b36
AK
184 struct mce m;
185
186 if (!capable(CAP_SYS_ADMIN))
187 return -EPERM;
188 /*
189 * There are some cases where real MSR reads could slip
190 * through.
191 */
192 if (!boot_cpu_has(X86_FEATURE_MCE) || !boot_cpu_has(X86_FEATURE_MCA))
193 return -EIO;
194
195 if ((unsigned long)usize > sizeof(struct mce))
196 usize = sizeof(struct mce);
197 if (copy_from_user(&m, ubuf, usize))
198 return -EFAULT;
199
d620c67f 200 if (m.extcpu >= num_possible_cpus() || !cpu_online(m.extcpu))
ea149b36
AK
201 return -EINVAL;
202
ea149b36
AK
203 /*
204 * Need to give user space some time to set everything up,
205 * so do it a jiffie or two later everywhere.
ea149b36 206 */
5b7e88ed
HY
207 schedule_timeout(2);
208 raise_mce(&m);
ea149b36
AK
209 return usize;
210}
211
212static int inject_init(void)
213{
6ac5c531
RR
214 if (!alloc_cpumask_var(&mce_inject_cpumask, GFP_KERNEL))
215 return -ENOMEM;
ea149b36
AK
216 printk(KERN_INFO "Machine check injector initialized\n");
217 mce_chrdev_ops.write = mce_write;
5b7e88ed 218 register_die_notifier(&mce_raise_nb);
ea149b36
AK
219 return 0;
220}
221
222module_init(inject_init);
5706001a
PA
223/*
224 * Cannot tolerate unloading currently because we cannot
ea149b36
AK
225 * guarantee all openers of mce_chrdev will get a reference to us.
226 */
227MODULE_LICENSE("GPL");