2 * Machine check handler.
4 * K8 parts Copyright 2002,2003 Andi Kleen, SuSE Labs.
5 * Rest from unknown author(s).
6 * 2004 Andi Kleen. Rewrote most of it.
7 * Copyright 2008 Intel Corporation
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/thread_info.h>
14 #include <linux/capability.h>
15 #include <linux/miscdevice.h>
16 #include <linux/ratelimit.h>
17 #include <linux/kallsyms.h>
18 #include <linux/rcupdate.h>
19 #include <linux/kobject.h>
20 #include <linux/uaccess.h>
21 #include <linux/kdebug.h>
22 #include <linux/kernel.h>
23 #include <linux/percpu.h>
24 #include <linux/string.h>
25 #include <linux/device.h>
26 #include <linux/syscore_ops.h>
27 #include <linux/delay.h>
28 #include <linux/ctype.h>
29 #include <linux/sched.h>
30 #include <linux/sysfs.h>
31 #include <linux/types.h>
32 #include <linux/slab.h>
33 #include <linux/init.h>
34 #include <linux/kmod.h>
35 #include <linux/poll.h>
36 #include <linux/nmi.h>
37 #include <linux/cpu.h>
38 #include <linux/smp.h>
41 #include <linux/debugfs.h>
42 #include <linux/irq_work.h>
43 #include <linux/export.h>
45 #include <asm/processor.h>
46 #include <asm/traps.h>
47 #include <asm/tlbflush.h>
51 #include "mce-internal.h"
53 static DEFINE_MUTEX(mce_chrdev_read_mutex
);
55 #define mce_log_get_idx_check(p) \
57 RCU_LOCKDEP_WARN(!rcu_read_lock_sched_held() && \
58 !lockdep_is_held(&mce_chrdev_read_mutex), \
59 "suspicious mce_log_get_idx_check() usage"); \
60 smp_load_acquire(&(p)); \
63 #define CREATE_TRACE_POINTS
64 #include <trace/events/mce.h>
66 #define SPINUNIT 100 /* 100ns */
68 DEFINE_PER_CPU(unsigned, mce_exception_count
);
70 struct mce_bank
*mce_banks __read_mostly
;
71 struct mce_vendor_flags mce_flags __read_mostly
;
73 struct mca_config mca_cfg __read_mostly
= {
77 * 0: always panic on uncorrected errors, log corrected errors
78 * 1: panic or SIGBUS on uncorrected errors, log corrected errors
79 * 2: SIGBUS or log uncorrected errors (if possible), log corr. errors
80 * 3: never panic or SIGBUS, log all errors (for testing only)
86 /* User mode helper program triggered by machine check event */
87 static unsigned long mce_need_notify
;
88 static char mce_helper
[128];
89 static char *mce_helper_argv
[2] = { mce_helper
, NULL
};
91 static DECLARE_WAIT_QUEUE_HEAD(mce_chrdev_wait
);
93 static DEFINE_PER_CPU(struct mce
, mces_seen
);
94 static int cpu_missing
;
97 * MCA banks polled by the period polling timer for corrected events.
98 * With Intel CMCI, this only has MCA banks which do not support CMCI (if any).
100 DEFINE_PER_CPU(mce_banks_t
, mce_poll_banks
) = {
101 [0 ... BITS_TO_LONGS(MAX_NR_BANKS
)-1] = ~0UL
105 * MCA banks controlled through firmware first for corrected errors.
106 * This is a global list of banks for which we won't enable CMCI and we
107 * won't poll. Firmware controls these banks and is responsible for
108 * reporting corrected errors through GHES. Uncorrected/recoverable
109 * errors are still notified through a machine check.
111 mce_banks_t mce_banks_ce_disabled
;
113 static struct work_struct mce_work
;
114 static struct irq_work mce_irq_work
;
116 static void (*quirk_no_way_out
)(int bank
, struct mce
*m
, struct pt_regs
*regs
);
119 * CPU/chipset specific EDAC code can register a notifier call here to print
120 * MCE errors in a human-readable form.
122 ATOMIC_NOTIFIER_HEAD(x86_mce_decoder_chain
);
124 /* Do initial initialization of a struct mce */
125 void mce_setup(struct mce
*m
)
127 memset(m
, 0, sizeof(struct mce
));
128 m
->cpu
= m
->extcpu
= smp_processor_id();
130 /* We hope get_seconds stays lockless */
131 m
->time
= get_seconds();
132 m
->cpuvendor
= boot_cpu_data
.x86_vendor
;
133 m
->cpuid
= cpuid_eax(1);
134 m
->socketid
= cpu_data(m
->extcpu
).phys_proc_id
;
135 m
->apicid
= cpu_data(m
->extcpu
).initial_apicid
;
136 rdmsrl(MSR_IA32_MCG_CAP
, m
->mcgcap
);
139 DEFINE_PER_CPU(struct mce
, injectm
);
140 EXPORT_PER_CPU_SYMBOL_GPL(injectm
);
143 * Lockless MCE logging infrastructure.
144 * This avoids deadlocks on printk locks without having to break locks. Also
145 * separate MCEs from kernel messages to avoid bogus bug reports.
148 static struct mce_log mcelog
= {
149 .signature
= MCE_LOG_SIGNATURE
,
151 .recordlen
= sizeof(struct mce
),
154 void mce_log(struct mce
*mce
)
156 unsigned next
, entry
;
158 /* Emit the trace record: */
159 trace_mce_record(mce
);
161 if (!mce_gen_pool_add(mce
))
162 irq_work_queue(&mce_irq_work
);
167 entry
= mce_log_get_idx_check(mcelog
.next
);
171 * When the buffer fills up discard new entries.
172 * Assume that the earlier errors are the more
175 if (entry
>= MCE_LOG_LEN
) {
176 set_bit(MCE_OVERFLOW
,
177 (unsigned long *)&mcelog
.flags
);
180 /* Old left over entry. Skip: */
181 if (mcelog
.entry
[entry
].finished
) {
189 if (cmpxchg(&mcelog
.next
, entry
, next
) == entry
)
192 memcpy(mcelog
.entry
+ entry
, mce
, sizeof(struct mce
));
194 mcelog
.entry
[entry
].finished
= 1;
198 set_bit(0, &mce_need_notify
);
201 void mce_inject_log(struct mce
*m
)
203 mutex_lock(&mce_chrdev_read_mutex
);
205 mutex_unlock(&mce_chrdev_read_mutex
);
207 EXPORT_SYMBOL_GPL(mce_inject_log
);
209 static struct notifier_block mce_srao_nb
;
211 void mce_register_decode_chain(struct notifier_block
*nb
)
213 /* Ensure SRAO notifier has the highest priority in the decode chain. */
214 if (nb
!= &mce_srao_nb
&& nb
->priority
== INT_MAX
)
217 atomic_notifier_chain_register(&x86_mce_decoder_chain
, nb
);
219 EXPORT_SYMBOL_GPL(mce_register_decode_chain
);
221 void mce_unregister_decode_chain(struct notifier_block
*nb
)
223 atomic_notifier_chain_unregister(&x86_mce_decoder_chain
, nb
);
225 EXPORT_SYMBOL_GPL(mce_unregister_decode_chain
);
227 static void print_mce(struct mce
*m
)
231 pr_emerg(HW_ERR
"CPU %d: Machine Check Exception: %Lx Bank %d: %016Lx\n",
232 m
->extcpu
, m
->mcgstatus
, m
->bank
, m
->status
);
235 pr_emerg(HW_ERR
"RIP%s %02x:<%016Lx> ",
236 !(m
->mcgstatus
& MCG_STATUS_EIPV
) ? " !INEXACT!" : "",
239 if (m
->cs
== __KERNEL_CS
)
240 print_symbol("{%s}", m
->ip
);
244 pr_emerg(HW_ERR
"TSC %llx ", m
->tsc
);
246 pr_cont("ADDR %llx ", m
->addr
);
248 pr_cont("MISC %llx ", m
->misc
);
252 * Note this output is parsed by external tools and old fields
253 * should not be changed.
255 pr_emerg(HW_ERR
"PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x microcode %x\n",
256 m
->cpuvendor
, m
->cpuid
, m
->time
, m
->socketid
, m
->apicid
,
257 cpu_data(m
->extcpu
).microcode
);
260 * Print out human-readable details about the MCE error,
261 * (if the CPU has an implementation for that)
263 ret
= atomic_notifier_call_chain(&x86_mce_decoder_chain
, 0, m
);
264 if (ret
== NOTIFY_STOP
)
267 pr_emerg_ratelimited(HW_ERR
"Run the above through 'mcelog --ascii'\n");
270 #define PANIC_TIMEOUT 5 /* 5 seconds */
272 static atomic_t mce_panicked
;
274 static int fake_panic
;
275 static atomic_t mce_fake_panicked
;
277 /* Panic in progress. Enable interrupts and wait for final IPI */
278 static void wait_for_panic(void)
280 long timeout
= PANIC_TIMEOUT
*USEC_PER_SEC
;
284 while (timeout
-- > 0)
286 if (panic_timeout
== 0)
287 panic_timeout
= mca_cfg
.panic_timeout
;
288 panic("Panicing machine check CPU died");
291 static void mce_panic(const char *msg
, struct mce
*final
, char *exp
)
297 * Make sure only one CPU runs in machine check panic
299 if (atomic_inc_return(&mce_panicked
) > 1)
306 /* Don't log too much for fake panic */
307 if (atomic_inc_return(&mce_fake_panicked
) > 1)
310 /* First print corrected ones that are still unlogged */
311 for (i
= 0; i
< MCE_LOG_LEN
; i
++) {
312 struct mce
*m
= &mcelog
.entry
[i
];
313 if (!(m
->status
& MCI_STATUS_VAL
))
315 if (!(m
->status
& MCI_STATUS_UC
)) {
318 apei_err
= apei_write_mce(m
);
321 /* Now print uncorrected but with the final one last */
322 for (i
= 0; i
< MCE_LOG_LEN
; i
++) {
323 struct mce
*m
= &mcelog
.entry
[i
];
324 if (!(m
->status
& MCI_STATUS_VAL
))
326 if (!(m
->status
& MCI_STATUS_UC
))
328 if (!final
|| memcmp(m
, final
, sizeof(struct mce
))) {
331 apei_err
= apei_write_mce(m
);
337 apei_err
= apei_write_mce(final
);
340 pr_emerg(HW_ERR
"Some CPUs didn't answer in synchronization\n");
342 pr_emerg(HW_ERR
"Machine check: %s\n", exp
);
344 if (panic_timeout
== 0)
345 panic_timeout
= mca_cfg
.panic_timeout
;
348 pr_emerg(HW_ERR
"Fake kernel panic: %s\n", msg
);
351 /* Support code for software error injection */
353 static int msr_to_offset(u32 msr
)
355 unsigned bank
= __this_cpu_read(injectm
.bank
);
357 if (msr
== mca_cfg
.rip_msr
)
358 return offsetof(struct mce
, ip
);
359 if (msr
== MSR_IA32_MCx_STATUS(bank
))
360 return offsetof(struct mce
, status
);
361 if (msr
== MSR_IA32_MCx_ADDR(bank
))
362 return offsetof(struct mce
, addr
);
363 if (msr
== MSR_IA32_MCx_MISC(bank
))
364 return offsetof(struct mce
, misc
);
365 if (msr
== MSR_IA32_MCG_STATUS
)
366 return offsetof(struct mce
, mcgstatus
);
370 /* MSR access wrappers used for error injection */
371 static u64
mce_rdmsrl(u32 msr
)
375 if (__this_cpu_read(injectm
.finished
)) {
376 int offset
= msr_to_offset(msr
);
380 return *(u64
*)((char *)this_cpu_ptr(&injectm
) + offset
);
383 if (rdmsrl_safe(msr
, &v
)) {
384 WARN_ONCE(1, "mce: Unable to read msr %d!\n", msr
);
386 * Return zero in case the access faulted. This should
387 * not happen normally but can happen if the CPU does
388 * something weird, or if the code is buggy.
396 static void mce_wrmsrl(u32 msr
, u64 v
)
398 if (__this_cpu_read(injectm
.finished
)) {
399 int offset
= msr_to_offset(msr
);
402 *(u64
*)((char *)this_cpu_ptr(&injectm
) + offset
) = v
;
409 * Collect all global (w.r.t. this processor) status about this machine
410 * check into our "mce" struct so that we can use it later to assess
411 * the severity of the problem as we read per-bank specific details.
413 static inline void mce_gather_info(struct mce
*m
, struct pt_regs
*regs
)
417 m
->mcgstatus
= mce_rdmsrl(MSR_IA32_MCG_STATUS
);
420 * Get the address of the instruction at the time of
421 * the machine check error.
423 if (m
->mcgstatus
& (MCG_STATUS_RIPV
|MCG_STATUS_EIPV
)) {
428 * When in VM86 mode make the cs look like ring 3
429 * always. This is a lie, but it's better than passing
430 * the additional vm86 bit around everywhere.
432 if (v8086_mode(regs
))
435 /* Use accurate RIP reporting if available. */
437 m
->ip
= mce_rdmsrl(mca_cfg
.rip_msr
);
441 int mce_available(struct cpuinfo_x86
*c
)
443 if (mca_cfg
.disabled
)
445 return cpu_has(c
, X86_FEATURE_MCE
) && cpu_has(c
, X86_FEATURE_MCA
);
448 static void mce_schedule_work(void)
450 if (!mce_gen_pool_empty() && keventd_up())
451 schedule_work(&mce_work
);
454 static void mce_irq_work_cb(struct irq_work
*entry
)
460 static void mce_report_event(struct pt_regs
*regs
)
462 if (regs
->flags
& (X86_VM_MASK
|X86_EFLAGS_IF
)) {
465 * Triggering the work queue here is just an insurance
466 * policy in case the syscall exit notify handler
467 * doesn't run soon enough or ends up running on the
468 * wrong CPU (can happen when audit sleeps)
474 irq_work_queue(&mce_irq_work
);
478 * Check if the address reported by the CPU is in a format we can parse.
479 * It would be possible to add code for most other cases, but all would
480 * be somewhat complicated (e.g. segment offset would require an instruction
481 * parser). So only support physical addresses up to page granuality for now.
483 static int mce_usable_address(struct mce
*m
)
485 if (!(m
->status
& MCI_STATUS_MISCV
) || !(m
->status
& MCI_STATUS_ADDRV
))
488 /* Checks after this one are Intel-specific: */
489 if (boot_cpu_data
.x86_vendor
!= X86_VENDOR_INTEL
)
492 if (MCI_MISC_ADDR_LSB(m
->misc
) > PAGE_SHIFT
)
494 if (MCI_MISC_ADDR_MODE(m
->misc
) != MCI_MISC_ADDR_PHYS
)
499 static int srao_decode_notifier(struct notifier_block
*nb
, unsigned long val
,
502 struct mce
*mce
= (struct mce
*)data
;
508 if (mce_usable_address(mce
) && (mce
->severity
== MCE_AO_SEVERITY
)) {
509 pfn
= mce
->addr
>> PAGE_SHIFT
;
510 memory_failure(pfn
, MCE_VECTOR
, 0);
515 static struct notifier_block mce_srao_nb
= {
516 .notifier_call
= srao_decode_notifier
,
521 * Read ADDR and MISC registers.
523 static void mce_read_aux(struct mce
*m
, int i
)
525 if (m
->status
& MCI_STATUS_MISCV
)
526 m
->misc
= mce_rdmsrl(MSR_IA32_MCx_MISC(i
));
527 if (m
->status
& MCI_STATUS_ADDRV
) {
528 m
->addr
= mce_rdmsrl(MSR_IA32_MCx_ADDR(i
));
531 * Mask the reported address by the reported granularity.
533 if (mca_cfg
.ser
&& (m
->status
& MCI_STATUS_MISCV
)) {
534 u8 shift
= MCI_MISC_ADDR_LSB(m
->misc
);
541 static bool memory_error(struct mce
*m
)
543 struct cpuinfo_x86
*c
= &boot_cpu_data
;
545 if (c
->x86_vendor
== X86_VENDOR_AMD
) {
546 /* ErrCodeExt[20:16] */
547 u8 xec
= (m
->status
>> 16) & 0x1f;
549 return (xec
== 0x0 || xec
== 0x8);
550 } else if (c
->x86_vendor
== X86_VENDOR_INTEL
) {
552 * Intel SDM Volume 3B - 15.9.2 Compound Error Codes
554 * Bit 7 of the MCACOD field of IA32_MCi_STATUS is used for
555 * indicating a memory error. Bit 8 is used for indicating a
556 * cache hierarchy error. The combination of bit 2 and bit 3
557 * is used for indicating a `generic' cache hierarchy error
558 * But we can't just blindly check the above bits, because if
559 * bit 11 is set, then it is a bus/interconnect error - and
560 * either way the above bits just gives more detail on what
561 * bus/interconnect error happened. Note that bit 12 can be
562 * ignored, as it's the "filter" bit.
564 return (m
->status
& 0xef80) == BIT(7) ||
565 (m
->status
& 0xef00) == BIT(8) ||
566 (m
->status
& 0xeffc) == 0xc;
572 DEFINE_PER_CPU(unsigned, mce_poll_count
);
575 * Poll for corrected events or events that happened before reset.
576 * Those are just logged through /dev/mcelog.
578 * This is executed in standard interrupt context.
580 * Note: spec recommends to panic for fatal unsignalled
581 * errors here. However this would be quite problematic --
582 * we would need to reimplement the Monarch handling and
583 * it would mess up the exclusion between exception handler
584 * and poll hander -- * so we skip this for now.
585 * These cases should not happen anyways, or only when the CPU
586 * is already totally * confused. In this case it's likely it will
587 * not fully execute the machine check handler either.
589 bool machine_check_poll(enum mcp_flags flags
, mce_banks_t
*b
)
591 bool error_seen
= false;
596 this_cpu_inc(mce_poll_count
);
598 mce_gather_info(&m
, NULL
);
600 for (i
= 0; i
< mca_cfg
.banks
; i
++) {
601 if (!mce_banks
[i
].ctl
|| !test_bit(i
, *b
))
610 m
.status
= mce_rdmsrl(MSR_IA32_MCx_STATUS(i
));
611 if (!(m
.status
& MCI_STATUS_VAL
))
616 * Uncorrected or signalled events are handled by the exception
617 * handler when it is enabled, so don't process those here.
619 * TBD do the same check for MCI_STATUS_EN here?
621 if (!(flags
& MCP_UC
) &&
622 (m
.status
& (mca_cfg
.ser
? MCI_STATUS_S
: MCI_STATUS_UC
)))
629 if (!(flags
& MCP_TIMESTAMP
))
632 severity
= mce_severity(&m
, mca_cfg
.tolerant
, NULL
, false);
634 if (severity
== MCE_DEFERRED_SEVERITY
&& memory_error(&m
))
635 if (m
.status
& MCI_STATUS_ADDRV
)
636 m
.severity
= severity
;
639 * Don't get the IP here because it's unlikely to
640 * have anything to do with the actual error location.
642 if (!(flags
& MCP_DONTLOG
) && !mca_cfg
.dont_log_ce
)
644 else if (mce_usable_address(&m
)) {
646 * Although we skipped logging this, we still want
647 * to take action. Add to the pool so the registered
648 * notifiers will see it.
650 if (!mce_gen_pool_add(&m
))
655 * Clear state for this bank.
657 mce_wrmsrl(MSR_IA32_MCx_STATUS(i
), 0);
661 * Don't clear MCG_STATUS here because it's only defined for
669 EXPORT_SYMBOL_GPL(machine_check_poll
);
672 * Do a quick check if any of the events requires a panic.
673 * This decides if we keep the events around or clear them.
675 static int mce_no_way_out(struct mce
*m
, char **msg
, unsigned long *validp
,
676 struct pt_regs
*regs
)
681 for (i
= 0; i
< mca_cfg
.banks
; i
++) {
682 m
->status
= mce_rdmsrl(MSR_IA32_MCx_STATUS(i
));
683 if (m
->status
& MCI_STATUS_VAL
) {
684 __set_bit(i
, validp
);
685 if (quirk_no_way_out
)
686 quirk_no_way_out(i
, m
, regs
);
689 if (mce_severity(m
, mca_cfg
.tolerant
, &tmp
, true) >= MCE_PANIC_SEVERITY
) {
698 * Variable to establish order between CPUs while scanning.
699 * Each CPU spins initially until executing is equal its number.
701 static atomic_t mce_executing
;
704 * Defines order of CPUs on entry. First CPU becomes Monarch.
706 static atomic_t mce_callin
;
709 * Check if a timeout waiting for other CPUs happened.
711 static int mce_timed_out(u64
*t
, const char *msg
)
714 * The others already did panic for some reason.
715 * Bail out like in a timeout.
716 * rmb() to tell the compiler that system_state
717 * might have been modified by someone else.
720 if (atomic_read(&mce_panicked
))
722 if (!mca_cfg
.monarch_timeout
)
724 if ((s64
)*t
< SPINUNIT
) {
725 if (mca_cfg
.tolerant
<= 1)
726 mce_panic(msg
, NULL
, NULL
);
732 touch_nmi_watchdog();
737 * The Monarch's reign. The Monarch is the CPU who entered
738 * the machine check handler first. It waits for the others to
739 * raise the exception too and then grades them. When any
740 * error is fatal panic. Only then let the others continue.
742 * The other CPUs entering the MCE handler will be controlled by the
743 * Monarch. They are called Subjects.
745 * This way we prevent any potential data corruption in a unrecoverable case
746 * and also makes sure always all CPU's errors are examined.
748 * Also this detects the case of a machine check event coming from outer
749 * space (not detected by any CPUs) In this case some external agent wants
750 * us to shut down, so panic too.
752 * The other CPUs might still decide to panic if the handler happens
753 * in a unrecoverable place, but in this case the system is in a semi-stable
754 * state and won't corrupt anything by itself. It's ok to let the others
755 * continue for a bit first.
757 * All the spin loops have timeouts; when a timeout happens a CPU
758 * typically elects itself to be Monarch.
760 static void mce_reign(void)
763 struct mce
*m
= NULL
;
764 int global_worst
= 0;
769 * This CPU is the Monarch and the other CPUs have run
770 * through their handlers.
771 * Grade the severity of the errors of all the CPUs.
773 for_each_possible_cpu(cpu
) {
774 int severity
= mce_severity(&per_cpu(mces_seen
, cpu
),
777 if (severity
> global_worst
) {
779 global_worst
= severity
;
780 m
= &per_cpu(mces_seen
, cpu
);
785 * Cannot recover? Panic here then.
786 * This dumps all the mces in the log buffer and stops the
789 if (m
&& global_worst
>= MCE_PANIC_SEVERITY
&& mca_cfg
.tolerant
< 3)
790 mce_panic("Fatal machine check", m
, msg
);
793 * For UC somewhere we let the CPU who detects it handle it.
794 * Also must let continue the others, otherwise the handling
795 * CPU could deadlock on a lock.
799 * No machine check event found. Must be some external
800 * source or one CPU is hung. Panic.
802 if (global_worst
<= MCE_KEEP_SEVERITY
&& mca_cfg
.tolerant
< 3)
803 mce_panic("Fatal machine check from unknown source", NULL
, NULL
);
806 * Now clear all the mces_seen so that they don't reappear on
809 for_each_possible_cpu(cpu
)
810 memset(&per_cpu(mces_seen
, cpu
), 0, sizeof(struct mce
));
813 static atomic_t global_nwo
;
816 * Start of Monarch synchronization. This waits until all CPUs have
817 * entered the exception handler and then determines if any of them
818 * saw a fatal event that requires panic. Then it executes them
819 * in the entry order.
820 * TBD double check parallel CPU hotunplug
822 static int mce_start(int *no_way_out
)
825 int cpus
= num_online_cpus();
826 u64 timeout
= (u64
)mca_cfg
.monarch_timeout
* NSEC_PER_USEC
;
831 atomic_add(*no_way_out
, &global_nwo
);
833 * global_nwo should be updated before mce_callin
836 order
= atomic_inc_return(&mce_callin
);
841 while (atomic_read(&mce_callin
) != cpus
) {
842 if (mce_timed_out(&timeout
,
843 "Timeout: Not all CPUs entered broadcast exception handler")) {
844 atomic_set(&global_nwo
, 0);
851 * mce_callin should be read before global_nwo
857 * Monarch: Starts executing now, the others wait.
859 atomic_set(&mce_executing
, 1);
862 * Subject: Now start the scanning loop one by one in
863 * the original callin order.
864 * This way when there are any shared banks it will be
865 * only seen by one CPU before cleared, avoiding duplicates.
867 while (atomic_read(&mce_executing
) < order
) {
868 if (mce_timed_out(&timeout
,
869 "Timeout: Subject CPUs unable to finish machine check processing")) {
870 atomic_set(&global_nwo
, 0);
878 * Cache the global no_way_out state.
880 *no_way_out
= atomic_read(&global_nwo
);
886 * Synchronize between CPUs after main scanning loop.
887 * This invokes the bulk of the Monarch processing.
889 static int mce_end(int order
)
892 u64 timeout
= (u64
)mca_cfg
.monarch_timeout
* NSEC_PER_USEC
;
900 * Allow others to run.
902 atomic_inc(&mce_executing
);
905 /* CHECKME: Can this race with a parallel hotplug? */
906 int cpus
= num_online_cpus();
909 * Monarch: Wait for everyone to go through their scanning
912 while (atomic_read(&mce_executing
) <= cpus
) {
913 if (mce_timed_out(&timeout
,
914 "Timeout: Monarch CPU unable to finish machine check processing"))
924 * Subject: Wait for Monarch to finish.
926 while (atomic_read(&mce_executing
) != 0) {
927 if (mce_timed_out(&timeout
,
928 "Timeout: Monarch CPU did not finish machine check processing"))
934 * Don't reset anything. That's done by the Monarch.
940 * Reset all global state.
943 atomic_set(&global_nwo
, 0);
944 atomic_set(&mce_callin
, 0);
948 * Let others run again.
950 atomic_set(&mce_executing
, 0);
954 static void mce_clear_state(unsigned long *toclear
)
958 for (i
= 0; i
< mca_cfg
.banks
; i
++) {
959 if (test_bit(i
, toclear
))
960 mce_wrmsrl(MSR_IA32_MCx_STATUS(i
), 0);
965 * The actual machine check handler. This only handles real
966 * exceptions when something got corrupted coming in through int 18.
968 * This is executed in NMI context not subject to normal locking rules. This
969 * implies that most kernel services cannot be safely used. Don't even
970 * think about putting a printk in there!
972 * On Intel systems this is entered on all CPUs in parallel through
973 * MCE broadcast. However some CPUs might be broken beyond repair,
974 * so be always careful when synchronizing with others.
976 void do_machine_check(struct pt_regs
*regs
, long error_code
)
978 struct mca_config
*cfg
= &mca_cfg
;
979 struct mce m
, *final
;
984 * Establish sequential order between the CPUs entering the machine
989 * If no_way_out gets set, there is no safe way to recover from this
990 * MCE. If mca_cfg.tolerant is cranked up, we'll try anyway.
994 * If kill_it gets set, there might be a way to recover from this
998 DECLARE_BITMAP(toclear
, MAX_NR_BANKS
);
999 DECLARE_BITMAP(valid_banks
, MAX_NR_BANKS
);
1000 char *msg
= "Unknown";
1001 u64 recover_paddr
= ~0ull;
1002 int flags
= MF_ACTION_REQUIRED
;
1005 /* If this CPU is offline, just bail out. */
1006 if (cpu_is_offline(smp_processor_id())) {
1009 mcgstatus
= mce_rdmsrl(MSR_IA32_MCG_STATUS
);
1010 if (mcgstatus
& MCG_STATUS_RIPV
) {
1011 mce_wrmsrl(MSR_IA32_MCG_STATUS
, 0);
1018 this_cpu_inc(mce_exception_count
);
1023 mce_gather_info(&m
, regs
);
1025 final
= this_cpu_ptr(&mces_seen
);
1028 memset(valid_banks
, 0, sizeof(valid_banks
));
1029 no_way_out
= mce_no_way_out(&m
, &msg
, valid_banks
, regs
);
1034 * When no restart IP might need to kill or panic.
1035 * Assume the worst for now, but if we find the
1036 * severity is MCE_AR_SEVERITY we have other options.
1038 if (!(m
.mcgstatus
& MCG_STATUS_RIPV
))
1042 * Check if this MCE is signaled to only this logical processor
1044 if (m
.mcgstatus
& MCG_STATUS_LMCES
)
1048 * Go through all the banks in exclusion of the other CPUs.
1049 * This way we don't report duplicated events on shared banks
1050 * because the first one to see it will clear it.
1051 * If this is a Local MCE, then no need to perform rendezvous.
1053 order
= mce_start(&no_way_out
);
1056 for (i
= 0; i
< cfg
->banks
; i
++) {
1057 __clear_bit(i
, toclear
);
1058 if (!test_bit(i
, valid_banks
))
1060 if (!mce_banks
[i
].ctl
)
1067 m
.status
= mce_rdmsrl(MSR_IA32_MCx_STATUS(i
));
1068 if ((m
.status
& MCI_STATUS_VAL
) == 0)
1072 * Non uncorrected or non signaled errors are handled by
1073 * machine_check_poll. Leave them alone, unless this panics.
1075 if (!(m
.status
& (cfg
->ser
? MCI_STATUS_S
: MCI_STATUS_UC
)) &&
1080 * Set taint even when machine check was not enabled.
1082 add_taint(TAINT_MACHINE_CHECK
, LOCKDEP_NOW_UNRELIABLE
);
1084 severity
= mce_severity(&m
, cfg
->tolerant
, NULL
, true);
1087 * When machine check was for corrected/deferred handler don't
1088 * touch, unless we're panicing.
1090 if ((severity
== MCE_KEEP_SEVERITY
||
1091 severity
== MCE_UCNA_SEVERITY
) && !no_way_out
)
1093 __set_bit(i
, toclear
);
1094 if (severity
== MCE_NO_SEVERITY
) {
1096 * Machine check event was not enabled. Clear, but
1102 mce_read_aux(&m
, i
);
1104 /* assuming valid severity level != 0 */
1105 m
.severity
= severity
;
1109 if (severity
> worst
) {
1115 /* mce_clear_state will clear *final, save locally for use later */
1119 mce_clear_state(toclear
);
1122 * Do most of the synchronization with other CPUs.
1123 * When there's any problem use only local no_way_out state.
1126 if (mce_end(order
) < 0)
1127 no_way_out
= worst
>= MCE_PANIC_SEVERITY
;
1130 * Local MCE skipped calling mce_reign()
1131 * If we found a fatal error, we need to panic here.
1133 if (worst
>= MCE_PANIC_SEVERITY
&& mca_cfg
.tolerant
< 3)
1134 mce_panic("Machine check from unknown source",
1139 * At insane "tolerant" levels we take no action. Otherwise
1140 * we only die if we have no other choice. For less serious
1141 * issues we try to recover, or limit damage to the current
1144 if (cfg
->tolerant
< 3) {
1146 mce_panic("Fatal machine check on current CPU", &m
, msg
);
1147 if (worst
== MCE_AR_SEVERITY
) {
1148 recover_paddr
= m
.addr
;
1149 if (!(m
.mcgstatus
& MCG_STATUS_RIPV
))
1150 flags
|= MF_MUST_KILL
;
1151 } else if (kill_it
) {
1152 force_sig(SIGBUS
, current
);
1157 mce_report_event(regs
);
1158 mce_wrmsrl(MSR_IA32_MCG_STATUS
, 0);
1162 if (recover_paddr
== ~0ull)
1165 pr_err("Uncorrected hardware memory error in user-access at %llx",
1168 * We must call memory_failure() here even if the current process is
1169 * doomed. We still need to mark the page as poisoned and alert any
1170 * other users of the page.
1172 ist_begin_non_atomic(regs
);
1174 if (memory_failure(recover_paddr
>> PAGE_SHIFT
, MCE_VECTOR
, flags
) < 0) {
1175 pr_err("Memory error not recovered");
1176 force_sig(SIGBUS
, current
);
1178 local_irq_disable();
1179 ist_end_non_atomic();
1183 EXPORT_SYMBOL_GPL(do_machine_check
);
1185 #ifndef CONFIG_MEMORY_FAILURE
1186 int memory_failure(unsigned long pfn
, int vector
, int flags
)
1188 /* mce_severity() should not hand us an ACTION_REQUIRED error */
1189 BUG_ON(flags
& MF_ACTION_REQUIRED
);
1190 pr_err("Uncorrected memory error in page 0x%lx ignored\n"
1191 "Rebuild kernel with CONFIG_MEMORY_FAILURE=y for smarter handling\n",
1199 * Action optional processing happens here (picking up
1200 * from the list of faulting pages that do_machine_check()
1201 * placed into the genpool).
1203 static void mce_process_work(struct work_struct
*dummy
)
1205 mce_gen_pool_process();
1208 #ifdef CONFIG_X86_MCE_INTEL
1210 * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog
1211 * @cpu: The CPU on which the event occurred.
1212 * @status: Event status information
1214 * This function should be called by the thermal interrupt after the
1215 * event has been processed and the decision was made to log the event
1218 * The status parameter will be saved to the 'status' field of 'struct mce'
1219 * and historically has been the register value of the
1220 * MSR_IA32_THERMAL_STATUS (Intel) msr.
1222 void mce_log_therm_throt_event(__u64 status
)
1227 m
.bank
= MCE_THERMAL_BANK
;
1231 #endif /* CONFIG_X86_MCE_INTEL */
1234 * Periodic polling timer for "silent" machine check errors. If the
1235 * poller finds an MCE, poll 2x faster. When the poller finds no more
1236 * errors, poll 2x slower (up to check_interval seconds).
1238 static unsigned long check_interval
= INITIAL_CHECK_INTERVAL
;
1240 static DEFINE_PER_CPU(unsigned long, mce_next_interval
); /* in jiffies */
1241 static DEFINE_PER_CPU(struct timer_list
, mce_timer
);
1243 static unsigned long mce_adjust_timer_default(unsigned long interval
)
1248 static unsigned long (*mce_adjust_timer
)(unsigned long interval
) = mce_adjust_timer_default
;
1250 static void __restart_timer(struct timer_list
*t
, unsigned long interval
)
1252 unsigned long when
= jiffies
+ interval
;
1253 unsigned long flags
;
1255 local_irq_save(flags
);
1257 if (timer_pending(t
)) {
1258 if (time_before(when
, t
->expires
))
1259 mod_timer_pinned(t
, when
);
1261 t
->expires
= round_jiffies(when
);
1262 add_timer_on(t
, smp_processor_id());
1265 local_irq_restore(flags
);
1268 static void mce_timer_fn(unsigned long data
)
1270 struct timer_list
*t
= this_cpu_ptr(&mce_timer
);
1271 int cpu
= smp_processor_id();
1274 WARN_ON(cpu
!= data
);
1276 iv
= __this_cpu_read(mce_next_interval
);
1278 if (mce_available(this_cpu_ptr(&cpu_info
))) {
1279 machine_check_poll(MCP_TIMESTAMP
, this_cpu_ptr(&mce_poll_banks
));
1281 if (mce_intel_cmci_poll()) {
1282 iv
= mce_adjust_timer(iv
);
1288 * Alert userspace if needed. If we logged an MCE, reduce the polling
1289 * interval, otherwise increase the polling interval.
1291 if (mce_notify_irq())
1292 iv
= max(iv
/ 2, (unsigned long) HZ
/100);
1294 iv
= min(iv
* 2, round_jiffies_relative(check_interval
* HZ
));
1297 __this_cpu_write(mce_next_interval
, iv
);
1298 __restart_timer(t
, iv
);
1302 * Ensure that the timer is firing in @interval from now.
1304 void mce_timer_kick(unsigned long interval
)
1306 struct timer_list
*t
= this_cpu_ptr(&mce_timer
);
1307 unsigned long iv
= __this_cpu_read(mce_next_interval
);
1309 __restart_timer(t
, interval
);
1312 __this_cpu_write(mce_next_interval
, interval
);
1315 /* Must not be called in IRQ context where del_timer_sync() can deadlock */
1316 static void mce_timer_delete_all(void)
1320 for_each_online_cpu(cpu
)
1321 del_timer_sync(&per_cpu(mce_timer
, cpu
));
1324 static void mce_do_trigger(struct work_struct
*work
)
1326 call_usermodehelper(mce_helper
, mce_helper_argv
, NULL
, UMH_NO_WAIT
);
1329 static DECLARE_WORK(mce_trigger_work
, mce_do_trigger
);
1332 * Notify the user(s) about new machine check events.
1333 * Can be called from interrupt context, but not from machine check/NMI
1336 int mce_notify_irq(void)
1338 /* Not more than two messages every minute */
1339 static DEFINE_RATELIMIT_STATE(ratelimit
, 60*HZ
, 2);
1341 if (test_and_clear_bit(0, &mce_need_notify
)) {
1342 /* wake processes polling /dev/mcelog */
1343 wake_up_interruptible(&mce_chrdev_wait
);
1346 schedule_work(&mce_trigger_work
);
1348 if (__ratelimit(&ratelimit
))
1349 pr_info(HW_ERR
"Machine check events logged\n");
1355 EXPORT_SYMBOL_GPL(mce_notify_irq
);
1357 static int __mcheck_cpu_mce_banks_init(void)
1360 u8 num_banks
= mca_cfg
.banks
;
1362 mce_banks
= kzalloc(num_banks
* sizeof(struct mce_bank
), GFP_KERNEL
);
1366 for (i
= 0; i
< num_banks
; i
++) {
1367 struct mce_bank
*b
= &mce_banks
[i
];
1376 * Initialize Machine Checks for a CPU.
1378 static int __mcheck_cpu_cap_init(void)
1383 rdmsrl(MSR_IA32_MCG_CAP
, cap
);
1385 b
= cap
& MCG_BANKCNT_MASK
;
1387 pr_info("CPU supports %d MCE banks\n", b
);
1389 if (b
> MAX_NR_BANKS
) {
1390 pr_warn("Using only %u machine check banks out of %u\n",
1395 /* Don't support asymmetric configurations today */
1396 WARN_ON(mca_cfg
.banks
!= 0 && b
!= mca_cfg
.banks
);
1400 int err
= __mcheck_cpu_mce_banks_init();
1406 /* Use accurate RIP reporting if available. */
1407 if ((cap
& MCG_EXT_P
) && MCG_EXT_CNT(cap
) >= 9)
1408 mca_cfg
.rip_msr
= MSR_IA32_MCG_EIP
;
1410 if (cap
& MCG_SER_P
)
1416 static void __mcheck_cpu_init_generic(void)
1418 enum mcp_flags m_fl
= 0;
1419 mce_banks_t all_banks
;
1423 if (!mca_cfg
.bootlog
)
1427 * Log the machine checks left over from the previous reset.
1429 bitmap_fill(all_banks
, MAX_NR_BANKS
);
1430 machine_check_poll(MCP_UC
| m_fl
, &all_banks
);
1432 cr4_set_bits(X86_CR4_MCE
);
1434 rdmsrl(MSR_IA32_MCG_CAP
, cap
);
1435 if (cap
& MCG_CTL_P
)
1436 wrmsr(MSR_IA32_MCG_CTL
, 0xffffffff, 0xffffffff);
1438 for (i
= 0; i
< mca_cfg
.banks
; i
++) {
1439 struct mce_bank
*b
= &mce_banks
[i
];
1443 wrmsrl(MSR_IA32_MCx_CTL(i
), b
->ctl
);
1444 wrmsrl(MSR_IA32_MCx_STATUS(i
), 0);
1449 * During IFU recovery Sandy Bridge -EP4S processors set the RIPV and
1450 * EIPV bits in MCG_STATUS to zero on the affected logical processor (SDM
1451 * Vol 3B Table 15-20). But this confuses both the code that determines
1452 * whether the machine check occurred in kernel or user mode, and also
1453 * the severity assessment code. Pretend that EIPV was set, and take the
1454 * ip/cs values from the pt_regs that mce_gather_info() ignored earlier.
1456 static void quirk_sandybridge_ifu(int bank
, struct mce
*m
, struct pt_regs
*regs
)
1460 if ((m
->mcgstatus
& (MCG_STATUS_EIPV
|MCG_STATUS_RIPV
)) != 0)
1462 if ((m
->status
& (MCI_STATUS_OVER
|MCI_STATUS_UC
|
1463 MCI_STATUS_EN
|MCI_STATUS_MISCV
|MCI_STATUS_ADDRV
|
1464 MCI_STATUS_PCC
|MCI_STATUS_S
|MCI_STATUS_AR
|
1466 (MCI_STATUS_UC
|MCI_STATUS_EN
|
1467 MCI_STATUS_MISCV
|MCI_STATUS_ADDRV
|MCI_STATUS_S
|
1468 MCI_STATUS_AR
|MCACOD_INSTR
))
1471 m
->mcgstatus
|= MCG_STATUS_EIPV
;
1476 /* Add per CPU specific workarounds here */
1477 static int __mcheck_cpu_apply_quirks(struct cpuinfo_x86
*c
)
1479 struct mca_config
*cfg
= &mca_cfg
;
1481 if (c
->x86_vendor
== X86_VENDOR_UNKNOWN
) {
1482 pr_info("unknown CPU type - not enabling MCE support\n");
1486 /* This should be disabled by the BIOS, but isn't always */
1487 if (c
->x86_vendor
== X86_VENDOR_AMD
) {
1488 if (c
->x86
== 15 && cfg
->banks
> 4) {
1490 * disable GART TBL walk error reporting, which
1491 * trips off incorrectly with the IOMMU & 3ware
1494 clear_bit(10, (unsigned long *)&mce_banks
[4].ctl
);
1496 if (c
->x86
<= 17 && cfg
->bootlog
< 0) {
1498 * Lots of broken BIOS around that don't clear them
1499 * by default and leave crap in there. Don't log:
1504 * Various K7s with broken bank 0 around. Always disable
1507 if (c
->x86
== 6 && cfg
->banks
> 0)
1508 mce_banks
[0].ctl
= 0;
1511 * overflow_recov is supported for F15h Models 00h-0fh
1512 * even though we don't have a CPUID bit for it.
1514 if (c
->x86
== 0x15 && c
->x86_model
<= 0xf)
1515 mce_flags
.overflow_recov
= 1;
1518 * Turn off MC4_MISC thresholding banks on those models since
1519 * they're not supported there.
1521 if (c
->x86
== 0x15 &&
1522 (c
->x86_model
>= 0x10 && c
->x86_model
<= 0x1f)) {
1527 0x00000413, /* MC4_MISC0 */
1528 0xc0000408, /* MC4_MISC1 */
1531 rdmsrl(MSR_K7_HWCR
, hwcr
);
1533 /* McStatusWrEn has to be set */
1534 need_toggle
= !(hwcr
& BIT(18));
1537 wrmsrl(MSR_K7_HWCR
, hwcr
| BIT(18));
1539 /* Clear CntP bit safely */
1540 for (i
= 0; i
< ARRAY_SIZE(msrs
); i
++)
1541 msr_clear_bit(msrs
[i
], 62);
1543 /* restore old settings */
1545 wrmsrl(MSR_K7_HWCR
, hwcr
);
1549 if (c
->x86_vendor
== X86_VENDOR_INTEL
) {
1551 * SDM documents that on family 6 bank 0 should not be written
1552 * because it aliases to another special BIOS controlled
1554 * But it's not aliased anymore on model 0x1a+
1555 * Don't ignore bank 0 completely because there could be a
1556 * valid event later, merely don't write CTL0.
1559 if (c
->x86
== 6 && c
->x86_model
< 0x1A && cfg
->banks
> 0)
1560 mce_banks
[0].init
= 0;
1563 * All newer Intel systems support MCE broadcasting. Enable
1564 * synchronization with a one second timeout.
1566 if ((c
->x86
> 6 || (c
->x86
== 6 && c
->x86_model
>= 0xe)) &&
1567 cfg
->monarch_timeout
< 0)
1568 cfg
->monarch_timeout
= USEC_PER_SEC
;
1571 * There are also broken BIOSes on some Pentium M and
1574 if (c
->x86
== 6 && c
->x86_model
<= 13 && cfg
->bootlog
< 0)
1577 if (c
->x86
== 6 && c
->x86_model
== 45)
1578 quirk_no_way_out
= quirk_sandybridge_ifu
;
1580 * MCG_CAP.MCG_SER_P is necessary but not sufficient to know
1581 * whether this processor will actually generate recoverable
1582 * machine checks. Check to see if this is an E7 model Xeon.
1583 * We can't do a model number check because E5 and E7 use the
1584 * same model number. E5 doesn't support recovery, E7 does.
1586 if (mca_cfg
.recovery
|| (mca_cfg
.ser
&&
1587 !strncmp(c
->x86_model_id
,
1588 "Intel(R) Xeon(R) CPU E7-", 24)))
1589 set_cpu_cap(c
, X86_FEATURE_MCE_RECOVERY
);
1591 if (cfg
->monarch_timeout
< 0)
1592 cfg
->monarch_timeout
= 0;
1593 if (cfg
->bootlog
!= 0)
1594 cfg
->panic_timeout
= 30;
1599 static int __mcheck_cpu_ancient_init(struct cpuinfo_x86
*c
)
1604 switch (c
->x86_vendor
) {
1605 case X86_VENDOR_INTEL
:
1606 intel_p5_mcheck_init(c
);
1609 case X86_VENDOR_CENTAUR
:
1610 winchip_mcheck_init(c
);
1620 static void __mcheck_cpu_init_vendor(struct cpuinfo_x86
*c
)
1622 switch (c
->x86_vendor
) {
1623 case X86_VENDOR_INTEL
:
1624 mce_intel_feature_init(c
);
1625 mce_adjust_timer
= cmci_intel_adjust_timer
;
1628 case X86_VENDOR_AMD
: {
1629 u32 ebx
= cpuid_ebx(0x80000007);
1631 mce_amd_feature_init(c
);
1632 mce_flags
.overflow_recov
= !!(ebx
& BIT(0));
1633 mce_flags
.succor
= !!(ebx
& BIT(1));
1634 mce_flags
.smca
= !!(ebx
& BIT(3));
1644 static void __mcheck_cpu_clear_vendor(struct cpuinfo_x86
*c
)
1646 switch (c
->x86_vendor
) {
1647 case X86_VENDOR_INTEL
:
1648 mce_intel_feature_clear(c
);
1655 static void mce_start_timer(unsigned int cpu
, struct timer_list
*t
)
1657 unsigned long iv
= check_interval
* HZ
;
1659 if (mca_cfg
.ignore_ce
|| !iv
)
1662 per_cpu(mce_next_interval
, cpu
) = iv
;
1664 t
->expires
= round_jiffies(jiffies
+ iv
);
1665 add_timer_on(t
, cpu
);
1668 static void __mcheck_cpu_init_timer(void)
1670 struct timer_list
*t
= this_cpu_ptr(&mce_timer
);
1671 unsigned int cpu
= smp_processor_id();
1673 setup_timer(t
, mce_timer_fn
, cpu
);
1674 mce_start_timer(cpu
, t
);
1677 /* Handle unconfigured int18 (should never happen) */
1678 static void unexpected_machine_check(struct pt_regs
*regs
, long error_code
)
1680 pr_err("CPU#%d: Unexpected int18 (Machine Check)\n",
1681 smp_processor_id());
1684 /* Call the installed machine check handler for this CPU setup. */
1685 void (*machine_check_vector
)(struct pt_regs
*, long error_code
) =
1686 unexpected_machine_check
;
1689 * Called for each booted CPU to set up machine checks.
1690 * Must be called with preempt off:
1692 void mcheck_cpu_init(struct cpuinfo_x86
*c
)
1694 if (mca_cfg
.disabled
)
1697 if (__mcheck_cpu_ancient_init(c
))
1700 if (!mce_available(c
))
1703 if (__mcheck_cpu_cap_init() < 0 || __mcheck_cpu_apply_quirks(c
) < 0) {
1704 mca_cfg
.disabled
= true;
1708 if (mce_gen_pool_init()) {
1709 mca_cfg
.disabled
= true;
1710 pr_emerg("Couldn't allocate MCE records pool!\n");
1714 machine_check_vector
= do_machine_check
;
1716 __mcheck_cpu_init_generic();
1717 __mcheck_cpu_init_vendor(c
);
1718 __mcheck_cpu_init_timer();
1722 * Called for each booted CPU to clear some machine checks opt-ins
1724 void mcheck_cpu_clear(struct cpuinfo_x86
*c
)
1726 if (mca_cfg
.disabled
)
1729 if (!mce_available(c
))
1733 * Possibly to clear general settings generic to x86
1734 * __mcheck_cpu_clear_generic(c);
1736 __mcheck_cpu_clear_vendor(c
);
1741 * mce_chrdev: Character device /dev/mcelog to read and clear the MCE log.
1744 static DEFINE_SPINLOCK(mce_chrdev_state_lock
);
1745 static int mce_chrdev_open_count
; /* #times opened */
1746 static int mce_chrdev_open_exclu
; /* already open exclusive? */
1748 static int mce_chrdev_open(struct inode
*inode
, struct file
*file
)
1750 spin_lock(&mce_chrdev_state_lock
);
1752 if (mce_chrdev_open_exclu
||
1753 (mce_chrdev_open_count
&& (file
->f_flags
& O_EXCL
))) {
1754 spin_unlock(&mce_chrdev_state_lock
);
1759 if (file
->f_flags
& O_EXCL
)
1760 mce_chrdev_open_exclu
= 1;
1761 mce_chrdev_open_count
++;
1763 spin_unlock(&mce_chrdev_state_lock
);
1765 return nonseekable_open(inode
, file
);
1768 static int mce_chrdev_release(struct inode
*inode
, struct file
*file
)
1770 spin_lock(&mce_chrdev_state_lock
);
1772 mce_chrdev_open_count
--;
1773 mce_chrdev_open_exclu
= 0;
1775 spin_unlock(&mce_chrdev_state_lock
);
1780 static void collect_tscs(void *data
)
1782 unsigned long *cpu_tsc
= (unsigned long *)data
;
1784 cpu_tsc
[smp_processor_id()] = rdtsc();
1787 static int mce_apei_read_done
;
1789 /* Collect MCE record of previous boot in persistent storage via APEI ERST. */
1790 static int __mce_read_apei(char __user
**ubuf
, size_t usize
)
1796 if (usize
< sizeof(struct mce
))
1799 rc
= apei_read_mce(&m
, &record_id
);
1800 /* Error or no more MCE record */
1802 mce_apei_read_done
= 1;
1804 * When ERST is disabled, mce_chrdev_read() should return
1805 * "no record" instead of "no device."
1812 if (copy_to_user(*ubuf
, &m
, sizeof(struct mce
)))
1815 * In fact, we should have cleared the record after that has
1816 * been flushed to the disk or sent to network in
1817 * /sbin/mcelog, but we have no interface to support that now,
1818 * so just clear it to avoid duplication.
1820 rc
= apei_clear_mce(record_id
);
1822 mce_apei_read_done
= 1;
1825 *ubuf
+= sizeof(struct mce
);
1830 static ssize_t
mce_chrdev_read(struct file
*filp
, char __user
*ubuf
,
1831 size_t usize
, loff_t
*off
)
1833 char __user
*buf
= ubuf
;
1834 unsigned long *cpu_tsc
;
1835 unsigned prev
, next
;
1838 cpu_tsc
= kmalloc(nr_cpu_ids
* sizeof(long), GFP_KERNEL
);
1842 mutex_lock(&mce_chrdev_read_mutex
);
1844 if (!mce_apei_read_done
) {
1845 err
= __mce_read_apei(&buf
, usize
);
1846 if (err
|| buf
!= ubuf
)
1850 next
= mce_log_get_idx_check(mcelog
.next
);
1852 /* Only supports full reads right now */
1854 if (*off
!= 0 || usize
< MCE_LOG_LEN
*sizeof(struct mce
))
1860 for (i
= prev
; i
< next
; i
++) {
1861 unsigned long start
= jiffies
;
1862 struct mce
*m
= &mcelog
.entry
[i
];
1864 while (!m
->finished
) {
1865 if (time_after_eq(jiffies
, start
+ 2)) {
1866 memset(m
, 0, sizeof(*m
));
1872 err
|= copy_to_user(buf
, m
, sizeof(*m
));
1878 memset(mcelog
.entry
+ prev
, 0,
1879 (next
- prev
) * sizeof(struct mce
));
1881 next
= cmpxchg(&mcelog
.next
, prev
, 0);
1882 } while (next
!= prev
);
1884 synchronize_sched();
1887 * Collect entries that were still getting written before the
1890 on_each_cpu(collect_tscs
, cpu_tsc
, 1);
1892 for (i
= next
; i
< MCE_LOG_LEN
; i
++) {
1893 struct mce
*m
= &mcelog
.entry
[i
];
1895 if (m
->finished
&& m
->tsc
< cpu_tsc
[m
->cpu
]) {
1896 err
|= copy_to_user(buf
, m
, sizeof(*m
));
1899 memset(m
, 0, sizeof(*m
));
1907 mutex_unlock(&mce_chrdev_read_mutex
);
1910 return err
? err
: buf
- ubuf
;
1913 static unsigned int mce_chrdev_poll(struct file
*file
, poll_table
*wait
)
1915 poll_wait(file
, &mce_chrdev_wait
, wait
);
1916 if (READ_ONCE(mcelog
.next
))
1917 return POLLIN
| POLLRDNORM
;
1918 if (!mce_apei_read_done
&& apei_check_mce())
1919 return POLLIN
| POLLRDNORM
;
1923 static long mce_chrdev_ioctl(struct file
*f
, unsigned int cmd
,
1926 int __user
*p
= (int __user
*)arg
;
1928 if (!capable(CAP_SYS_ADMIN
))
1932 case MCE_GET_RECORD_LEN
:
1933 return put_user(sizeof(struct mce
), p
);
1934 case MCE_GET_LOG_LEN
:
1935 return put_user(MCE_LOG_LEN
, p
);
1936 case MCE_GETCLEAR_FLAGS
: {
1940 flags
= mcelog
.flags
;
1941 } while (cmpxchg(&mcelog
.flags
, flags
, 0) != flags
);
1943 return put_user(flags
, p
);
1950 static ssize_t (*mce_write
)(struct file
*filp
, const char __user
*ubuf
,
1951 size_t usize
, loff_t
*off
);
1953 void register_mce_write_callback(ssize_t (*fn
)(struct file
*filp
,
1954 const char __user
*ubuf
,
1955 size_t usize
, loff_t
*off
))
1959 EXPORT_SYMBOL_GPL(register_mce_write_callback
);
1961 static ssize_t
mce_chrdev_write(struct file
*filp
, const char __user
*ubuf
,
1962 size_t usize
, loff_t
*off
)
1965 return mce_write(filp
, ubuf
, usize
, off
);
1970 static const struct file_operations mce_chrdev_ops
= {
1971 .open
= mce_chrdev_open
,
1972 .release
= mce_chrdev_release
,
1973 .read
= mce_chrdev_read
,
1974 .write
= mce_chrdev_write
,
1975 .poll
= mce_chrdev_poll
,
1976 .unlocked_ioctl
= mce_chrdev_ioctl
,
1977 .llseek
= no_llseek
,
1980 static struct miscdevice mce_chrdev_device
= {
1986 static void __mce_disable_bank(void *arg
)
1988 int bank
= *((int *)arg
);
1989 __clear_bit(bank
, this_cpu_ptr(mce_poll_banks
));
1990 cmci_disable_bank(bank
);
1993 void mce_disable_bank(int bank
)
1995 if (bank
>= mca_cfg
.banks
) {
1997 "Ignoring request to disable invalid MCA bank %d.\n",
2001 set_bit(bank
, mce_banks_ce_disabled
);
2002 on_each_cpu(__mce_disable_bank
, &bank
, 1);
2006 * mce=off Disables machine check
2007 * mce=no_cmci Disables CMCI
2008 * mce=no_lmce Disables LMCE
2009 * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
2010 * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
2011 * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
2012 * monarchtimeout is how long to wait for other CPUs on machine
2013 * check, or 0 to not wait
2014 * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
2015 * mce=nobootlog Don't log MCEs from before booting.
2016 * mce=bios_cmci_threshold Don't program the CMCI threshold
2018 static int __init
mcheck_enable(char *str
)
2020 struct mca_config
*cfg
= &mca_cfg
;
2028 if (!strcmp(str
, "off"))
2029 cfg
->disabled
= true;
2030 else if (!strcmp(str
, "no_cmci"))
2031 cfg
->cmci_disabled
= true;
2032 else if (!strcmp(str
, "no_lmce"))
2033 cfg
->lmce_disabled
= true;
2034 else if (!strcmp(str
, "dont_log_ce"))
2035 cfg
->dont_log_ce
= true;
2036 else if (!strcmp(str
, "ignore_ce"))
2037 cfg
->ignore_ce
= true;
2038 else if (!strcmp(str
, "bootlog") || !strcmp(str
, "nobootlog"))
2039 cfg
->bootlog
= (str
[0] == 'b');
2040 else if (!strcmp(str
, "bios_cmci_threshold"))
2041 cfg
->bios_cmci_threshold
= true;
2042 else if (!strcmp(str
, "recovery"))
2043 cfg
->recovery
= true;
2044 else if (isdigit(str
[0])) {
2045 if (get_option(&str
, &cfg
->tolerant
) == 2)
2046 get_option(&str
, &(cfg
->monarch_timeout
));
2048 pr_info("mce argument %s ignored. Please use /sys\n", str
);
2053 __setup("mce", mcheck_enable
);
2055 int __init
mcheck_init(void)
2057 mcheck_intel_therm_init();
2058 mce_register_decode_chain(&mce_srao_nb
);
2059 mcheck_vendor_init_severity();
2061 INIT_WORK(&mce_work
, mce_process_work
);
2062 init_irq_work(&mce_irq_work
, mce_irq_work_cb
);
2068 * mce_syscore: PM support
2072 * Disable machine checks on suspend and shutdown. We can't really handle
2075 static void mce_disable_error_reporting(void)
2079 for (i
= 0; i
< mca_cfg
.banks
; i
++) {
2080 struct mce_bank
*b
= &mce_banks
[i
];
2083 wrmsrl(MSR_IA32_MCx_CTL(i
), 0);
2088 static void vendor_disable_error_reporting(void)
2091 * Don't clear on Intel CPUs. Some of these MSRs are socket-wide.
2092 * Disabling them for just a single offlined CPU is bad, since it will
2093 * inhibit reporting for all shared resources on the socket like the
2094 * last level cache (LLC), the integrated memory controller (iMC), etc.
2096 if (boot_cpu_data
.x86_vendor
== X86_VENDOR_INTEL
)
2099 mce_disable_error_reporting();
2102 static int mce_syscore_suspend(void)
2104 vendor_disable_error_reporting();
2108 static void mce_syscore_shutdown(void)
2110 vendor_disable_error_reporting();
2114 * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
2115 * Only one CPU is active at this time, the others get re-added later using
2118 static void mce_syscore_resume(void)
2120 __mcheck_cpu_init_generic();
2121 __mcheck_cpu_init_vendor(raw_cpu_ptr(&cpu_info
));
2124 static struct syscore_ops mce_syscore_ops
= {
2125 .suspend
= mce_syscore_suspend
,
2126 .shutdown
= mce_syscore_shutdown
,
2127 .resume
= mce_syscore_resume
,
2131 * mce_device: Sysfs support
2134 static void mce_cpu_restart(void *data
)
2136 if (!mce_available(raw_cpu_ptr(&cpu_info
)))
2138 __mcheck_cpu_init_generic();
2139 __mcheck_cpu_init_timer();
2142 /* Reinit MCEs after user configuration changes */
2143 static void mce_restart(void)
2145 mce_timer_delete_all();
2146 on_each_cpu(mce_cpu_restart
, NULL
, 1);
2149 /* Toggle features for corrected errors */
2150 static void mce_disable_cmci(void *data
)
2152 if (!mce_available(raw_cpu_ptr(&cpu_info
)))
2157 static void mce_enable_ce(void *all
)
2159 if (!mce_available(raw_cpu_ptr(&cpu_info
)))
2164 __mcheck_cpu_init_timer();
2167 static struct bus_type mce_subsys
= {
2168 .name
= "machinecheck",
2169 .dev_name
= "machinecheck",
2172 DEFINE_PER_CPU(struct device
*, mce_device
);
2174 void (*threshold_cpu_callback
)(unsigned long action
, unsigned int cpu
);
2176 static inline struct mce_bank
*attr_to_bank(struct device_attribute
*attr
)
2178 return container_of(attr
, struct mce_bank
, attr
);
2181 static ssize_t
show_bank(struct device
*s
, struct device_attribute
*attr
,
2184 return sprintf(buf
, "%llx\n", attr_to_bank(attr
)->ctl
);
2187 static ssize_t
set_bank(struct device
*s
, struct device_attribute
*attr
,
2188 const char *buf
, size_t size
)
2192 if (kstrtou64(buf
, 0, &new) < 0)
2195 attr_to_bank(attr
)->ctl
= new;
2202 show_trigger(struct device
*s
, struct device_attribute
*attr
, char *buf
)
2204 strcpy(buf
, mce_helper
);
2206 return strlen(mce_helper
) + 1;
2209 static ssize_t
set_trigger(struct device
*s
, struct device_attribute
*attr
,
2210 const char *buf
, size_t siz
)
2214 strncpy(mce_helper
, buf
, sizeof(mce_helper
));
2215 mce_helper
[sizeof(mce_helper
)-1] = 0;
2216 p
= strchr(mce_helper
, '\n');
2221 return strlen(mce_helper
) + !!p
;
2224 static ssize_t
set_ignore_ce(struct device
*s
,
2225 struct device_attribute
*attr
,
2226 const char *buf
, size_t size
)
2230 if (kstrtou64(buf
, 0, &new) < 0)
2233 if (mca_cfg
.ignore_ce
^ !!new) {
2235 /* disable ce features */
2236 mce_timer_delete_all();
2237 on_each_cpu(mce_disable_cmci
, NULL
, 1);
2238 mca_cfg
.ignore_ce
= true;
2240 /* enable ce features */
2241 mca_cfg
.ignore_ce
= false;
2242 on_each_cpu(mce_enable_ce
, (void *)1, 1);
2248 static ssize_t
set_cmci_disabled(struct device
*s
,
2249 struct device_attribute
*attr
,
2250 const char *buf
, size_t size
)
2254 if (kstrtou64(buf
, 0, &new) < 0)
2257 if (mca_cfg
.cmci_disabled
^ !!new) {
2260 on_each_cpu(mce_disable_cmci
, NULL
, 1);
2261 mca_cfg
.cmci_disabled
= true;
2264 mca_cfg
.cmci_disabled
= false;
2265 on_each_cpu(mce_enable_ce
, NULL
, 1);
2271 static ssize_t
store_int_with_restart(struct device
*s
,
2272 struct device_attribute
*attr
,
2273 const char *buf
, size_t size
)
2275 ssize_t ret
= device_store_int(s
, attr
, buf
, size
);
2280 static DEVICE_ATTR(trigger
, 0644, show_trigger
, set_trigger
);
2281 static DEVICE_INT_ATTR(tolerant
, 0644, mca_cfg
.tolerant
);
2282 static DEVICE_INT_ATTR(monarch_timeout
, 0644, mca_cfg
.monarch_timeout
);
2283 static DEVICE_BOOL_ATTR(dont_log_ce
, 0644, mca_cfg
.dont_log_ce
);
2285 static struct dev_ext_attribute dev_attr_check_interval
= {
2286 __ATTR(check_interval
, 0644, device_show_int
, store_int_with_restart
),
2290 static struct dev_ext_attribute dev_attr_ignore_ce
= {
2291 __ATTR(ignore_ce
, 0644, device_show_bool
, set_ignore_ce
),
2295 static struct dev_ext_attribute dev_attr_cmci_disabled
= {
2296 __ATTR(cmci_disabled
, 0644, device_show_bool
, set_cmci_disabled
),
2297 &mca_cfg
.cmci_disabled
2300 static struct device_attribute
*mce_device_attrs
[] = {
2301 &dev_attr_tolerant
.attr
,
2302 &dev_attr_check_interval
.attr
,
2304 &dev_attr_monarch_timeout
.attr
,
2305 &dev_attr_dont_log_ce
.attr
,
2306 &dev_attr_ignore_ce
.attr
,
2307 &dev_attr_cmci_disabled
.attr
,
2311 static cpumask_var_t mce_device_initialized
;
2313 static void mce_device_release(struct device
*dev
)
2318 /* Per cpu device init. All of the cpus still share the same ctrl bank: */
2319 static int mce_device_create(unsigned int cpu
)
2325 if (!mce_available(&boot_cpu_data
))
2328 dev
= kzalloc(sizeof *dev
, GFP_KERNEL
);
2332 dev
->bus
= &mce_subsys
;
2333 dev
->release
= &mce_device_release
;
2335 err
= device_register(dev
);
2341 for (i
= 0; mce_device_attrs
[i
]; i
++) {
2342 err
= device_create_file(dev
, mce_device_attrs
[i
]);
2346 for (j
= 0; j
< mca_cfg
.banks
; j
++) {
2347 err
= device_create_file(dev
, &mce_banks
[j
].attr
);
2351 cpumask_set_cpu(cpu
, mce_device_initialized
);
2352 per_cpu(mce_device
, cpu
) = dev
;
2357 device_remove_file(dev
, &mce_banks
[j
].attr
);
2360 device_remove_file(dev
, mce_device_attrs
[i
]);
2362 device_unregister(dev
);
2367 static void mce_device_remove(unsigned int cpu
)
2369 struct device
*dev
= per_cpu(mce_device
, cpu
);
2372 if (!cpumask_test_cpu(cpu
, mce_device_initialized
))
2375 for (i
= 0; mce_device_attrs
[i
]; i
++)
2376 device_remove_file(dev
, mce_device_attrs
[i
]);
2378 for (i
= 0; i
< mca_cfg
.banks
; i
++)
2379 device_remove_file(dev
, &mce_banks
[i
].attr
);
2381 device_unregister(dev
);
2382 cpumask_clear_cpu(cpu
, mce_device_initialized
);
2383 per_cpu(mce_device
, cpu
) = NULL
;
2386 /* Make sure there are no machine checks on offlined CPUs. */
2387 static void mce_disable_cpu(void *h
)
2389 unsigned long action
= *(unsigned long *)h
;
2391 if (!mce_available(raw_cpu_ptr(&cpu_info
)))
2394 if (!(action
& CPU_TASKS_FROZEN
))
2397 vendor_disable_error_reporting();
2400 static void mce_reenable_cpu(void *h
)
2402 unsigned long action
= *(unsigned long *)h
;
2405 if (!mce_available(raw_cpu_ptr(&cpu_info
)))
2408 if (!(action
& CPU_TASKS_FROZEN
))
2410 for (i
= 0; i
< mca_cfg
.banks
; i
++) {
2411 struct mce_bank
*b
= &mce_banks
[i
];
2414 wrmsrl(MSR_IA32_MCx_CTL(i
), b
->ctl
);
2418 /* Get notified when a cpu comes on/off. Be hotplug friendly. */
2420 mce_cpu_callback(struct notifier_block
*nfb
, unsigned long action
, void *hcpu
)
2422 unsigned int cpu
= (unsigned long)hcpu
;
2423 struct timer_list
*t
= &per_cpu(mce_timer
, cpu
);
2425 switch (action
& ~CPU_TASKS_FROZEN
) {
2427 mce_device_create(cpu
);
2428 if (threshold_cpu_callback
)
2429 threshold_cpu_callback(action
, cpu
);
2432 if (threshold_cpu_callback
)
2433 threshold_cpu_callback(action
, cpu
);
2434 mce_device_remove(cpu
);
2435 mce_intel_hcpu_update(cpu
);
2437 /* intentionally ignoring frozen here */
2438 if (!(action
& CPU_TASKS_FROZEN
))
2441 case CPU_DOWN_PREPARE
:
2442 smp_call_function_single(cpu
, mce_disable_cpu
, &action
, 1);
2445 case CPU_DOWN_FAILED
:
2446 smp_call_function_single(cpu
, mce_reenable_cpu
, &action
, 1);
2447 mce_start_timer(cpu
, t
);
2454 static struct notifier_block mce_cpu_notifier
= {
2455 .notifier_call
= mce_cpu_callback
,
2458 static __init
void mce_init_banks(void)
2462 for (i
= 0; i
< mca_cfg
.banks
; i
++) {
2463 struct mce_bank
*b
= &mce_banks
[i
];
2464 struct device_attribute
*a
= &b
->attr
;
2466 sysfs_attr_init(&a
->attr
);
2467 a
->attr
.name
= b
->attrname
;
2468 snprintf(b
->attrname
, ATTR_LEN
, "bank%d", i
);
2470 a
->attr
.mode
= 0644;
2471 a
->show
= show_bank
;
2472 a
->store
= set_bank
;
2476 static __init
int mcheck_init_device(void)
2481 if (!mce_available(&boot_cpu_data
)) {
2486 if (!zalloc_cpumask_var(&mce_device_initialized
, GFP_KERNEL
)) {
2493 err
= subsys_system_register(&mce_subsys
, NULL
);
2497 cpu_notifier_register_begin();
2498 for_each_online_cpu(i
) {
2499 err
= mce_device_create(i
);
2502 * Register notifier anyway (and do not unreg it) so
2503 * that we don't leave undeleted timers, see notifier
2506 __register_hotcpu_notifier(&mce_cpu_notifier
);
2507 cpu_notifier_register_done();
2508 goto err_device_create
;
2512 __register_hotcpu_notifier(&mce_cpu_notifier
);
2513 cpu_notifier_register_done();
2515 register_syscore_ops(&mce_syscore_ops
);
2517 /* register character device /dev/mcelog */
2518 err
= misc_register(&mce_chrdev_device
);
2525 unregister_syscore_ops(&mce_syscore_ops
);
2529 * We didn't keep track of which devices were created above, but
2530 * even if we had, the set of online cpus might have changed.
2531 * Play safe and remove for every possible cpu, since
2532 * mce_device_remove() will do the right thing.
2534 for_each_possible_cpu(i
)
2535 mce_device_remove(i
);
2538 free_cpumask_var(mce_device_initialized
);
2541 pr_err("Unable to init device /dev/mcelog (rc: %d)\n", err
);
2545 device_initcall_sync(mcheck_init_device
);
2548 * Old style boot options parsing. Only for compatibility.
2550 static int __init
mcheck_disable(char *str
)
2552 mca_cfg
.disabled
= true;
2555 __setup("nomce", mcheck_disable
);
2557 #ifdef CONFIG_DEBUG_FS
2558 struct dentry
*mce_get_debugfs_dir(void)
2560 static struct dentry
*dmce
;
2563 dmce
= debugfs_create_dir("mce", NULL
);
2568 static void mce_reset(void)
2571 atomic_set(&mce_fake_panicked
, 0);
2572 atomic_set(&mce_executing
, 0);
2573 atomic_set(&mce_callin
, 0);
2574 atomic_set(&global_nwo
, 0);
2577 static int fake_panic_get(void *data
, u64
*val
)
2583 static int fake_panic_set(void *data
, u64 val
)
2590 DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops
, fake_panic_get
,
2591 fake_panic_set
, "%llu\n");
2593 static int __init
mcheck_debugfs_init(void)
2595 struct dentry
*dmce
, *ffake_panic
;
2597 dmce
= mce_get_debugfs_dir();
2600 ffake_panic
= debugfs_create_file("fake_panic", 0444, dmce
, NULL
,
2608 static int __init
mcheck_debugfs_init(void) { return -EINVAL
; }
2611 static int __init
mcheck_late_init(void)
2613 mcheck_debugfs_init();
2616 * Flush out everything that has been logged during early boot, now that
2617 * everything has been initialized (workqueues, decoders, ...).
2619 mce_schedule_work();
2623 late_initcall(mcheck_late_init
);