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