Machine-check exception
A Machine Check Exception (MCE) is a type of computer hardware error that occurs when a computer's central processing unit detects a hardware problem.
Modern versions of Microsoft Windows handle machine check exceptions through the Windows Hardware Error Architecture. When WHEA detects a machine check exception, it displays the error in a Blue Screen of Death, with the following parameters (which vary, but the first parameter is always 0x0 for a machine check exception):[1]
*** STOP: 0x00000124 (0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000)
On Linux, a process (such as klogd
[2]) writes a message to the kernel log and/or the console screen (usually only to the console when the error is non-recoverable and the machine crashes as a result):
CPU 0: Machine Check Exception: 0000000000000004 Bank 2: f200200000000863 Kernel panic: CPU context corrupt
The error usually occurs due to failure or overstressing of hardware components where the error cannot be more specifically identified with a different error message. Diagnosing the error message can be difficult, although Intel Pentium processors do generate more specific codes which can be decoded by contacting the manufacturer.
Most MCEs require a restart of the system before users can continue normal operation, and indicate a long-term problem of a general nature.
Problem types
Most of these errors relate specifically to the Pentium processor family. Similar errors may occur on other processors and will cause similar problems.
Some of the main hardware problems that cause MCEs include:
- System bus errors: (error communicating between the processor and the motherboard).
- Memory errors: parity checking detects when a memory error has occurred. Error correction code (ECC) can correct limited memory errors so that processing can continue.
- Cache errors in the processor.
Possible causes
Normal causes for MCE errors include overheating and/or incorrect hardware installation. Specific manually-induced causes include:
- overclocking (which normally increases heat-output)
- poorly-fitted heatsink/computer fans (the same problem can happen with excessive dust in the CPU fan)
- an overloaded internal or external power-supply (fixable by upgrading)
Computer software can also cause MCE errors (normally by corrupting data which programs read or write). For example, software performing read or write operations from or to non-existent memory regions can lead to confusion for the processor and/or the system bus. Accessing memory marked off-limits by UEFI may cause MCE errors.[3]
Decoding MCEs
As noted previously, decoding MCE errors can prove difficult. Normally the manufacturer (especially processor manufacturers) will be able to provide information about specific codes. Consult the Intel 64 and IA-32 Architectures Software Developer's Manual[4] Chapter 15 (Machine-Check Architecture), or the Microsoft KB Article on Windows Exceptions.[5]
Programs to Decode MCEs
- mcat: A Windows command-line program from AMD to decode MCEs from AMD K8, Family 0x10 and 0x11 processors.
- mcelog[6] A Linux daemon by Andi Kleen to handle MCEs for modern x86 processors. mcelog can also decode machine checks.
- parsemce[7] a Linux program by Dave Jones to decode MCEs from AMD K7 processors.
- mced[8] a Linux program by Tim Hockin to gather MCEs from the kernel and alert interested applications. It does not try to interpret the MCE data, it just alerts other programs.
See also
References
- ↑ "Bug Check 0x124: WHEA_UNCORRECTABLE_ERROR". MSDN. 2016-09-29. Retrieved 2016-10-26.
- ↑ Steve Lord, Greg Wettstein. "klogd(8) - Linux man page". Retrieved 2016-10-26.
klogd is a system daemon which intercepts and logs Linux kernel messages.
- ↑ "Bug 47121: UEFI boot panics on a new Samsung Series 9 laptop throwing a machine check exception". Linux kernel bug tracker. 2012-10-13. Retrieved 2016-10-26.
- ↑ "Intel 64 and IA-32 Architectures Software Developer's Manual: Volume 3A: System Programming Guide, Part 1" (PDF). Intel. May 2011. Retrieved 2016-10-26.
- ↑ "Stop error message in Windows XP that you may receive: "0x0000009C (0x00000004, 0x00000000, 0xb2000000, 0x00020151)"". MSDN. 2015-12-07. Retrieved 2016-10-26.
- ↑ "mcelog: Advanced hardware error handling for x86 Linux". 2015-04-20. Retrieved 2016-10-26.
- ↑ "parsemce: Linux Machine check exception handler parser.". 2003-07-22. Retrieved 2016-10-26.
- ↑ mcedaemon on GitHub
External links
- mcelog: Advanced hardware error handling for x86 Linux
- parsemce: Linux Machine check exception handler parser