System Management Mode: Difference between revisions
Content deleted Content added
192.102.209.29 (talk) No edit summary |
192.102.209.29 (talk) No edit summary |
||
Line 1: | Line 1: | ||
{{x86 Processor Modes}} |
{{x86 Processor Modes}} |
||
'''System Management Mode''' (SMM) is an operating mode in which all normal execution (including the [[operating system]]) is suspended, and special separate software (usually [[firmware]] or a hardware-assisted [[debugger]]) is executed in high-privilege mode. It was first released with the [[ |
'''System Management Mode''' (SMM) is an operating mode in which all normal execution (including the [[operating system]]) is suspended, and special separate software (usually [[firmware]] or a hardware-assisted [[debugger]]) is executed in high-privilege mode. It was first released with the [[Intel 386SL]]. While initially special SL versions were required for SMM, Intel incorporated SMM in its mainline 486 and Pentium processors in 1993. AMD copied Intel's SMM with the Enhanced [[Am486]] processors in 1994. It is available in all later [[microprocessor]]s in the [[x86 architecture]]. |
||
==Usage== |
==Usage== |
Revision as of 23:40, 28 May 2010
Part of a series on |
Microprocessor modes for the x86 architecture |
---|
|
First supported platform shown in parentheses |
System Management Mode (SMM) is an operating mode in which all normal execution (including the operating system) is suspended, and special separate software (usually firmware or a hardware-assisted debugger) is executed in high-privilege mode. It was first released with the Intel 386SL. While initially special SL versions were required for SMM, Intel incorporated SMM in its mainline 486 and Pentium processors in 1993. AMD copied Intel's SMM with the Enhanced Am486 processors in 1994. It is available in all later microprocessors in the x86 architecture.
Usage
Some uses of SMM are:
- Handle system events like memory or chipset errors.
- Manage system safety functions, such as shutdown on high CPU temperature.
- Control power management operations, such as turning on fans.
- Emulate motherboard hardware that is unimplemented or buggy.
- Emulate a PS/2 mouse or keyboard from a USB one.
- Centralize system configuration, such as on Toshiba and IBM notebook computers.
- Run high-privileged rootkits as shown at Black Hat 2008.[1]
- Emulate or forward calls to a Trusted Platform Module (TPM).[2]
Entering SMM
SMM is entered via the SMI (system management interrupt), which is caused by:
- Motherboard hardware or chipset signaling via a designated pin of the processor chip. This signal can be an independent event.
- Software SMI triggered by the system software via an I/O access to a location considered special by the motherboard logic (port 0B2h is common).
- An IO write to a location which the firmware has requested that the processor chip act on.
Problems
- By design, the operating system cannot override or disable the SMI.
- Since the SMM code (SMI handler) is installed by the system firmware (BIOS), the OS and the SMM code may have expectations about hardware settings that are incompatible, such as different ideas of how the Advanced Programmable Interrupt Controller (APIC) should be set up.
- Operations in SMM take CPU time away from the OS, since the CPU state must be stored to memory (SMRAM) and any write-back caches must be flushed. This can destroy real-time behavior and cause clock ticks to get lost. The Windows and Linux kernels define an ‘SMI Timeout’ setting a period within which SMM handlers must return control to the operating system or it will ‘hang’ or ‘crash’.
- The SMM may disrupt the behavior of real-time applications with constrained timing requirements.
- A digital logic analyzer may be required to determine if the CPU has entered SMM.
- Recovering the SMI handler code to analyze it for bugs, vulnerabilities and secrets requires a logic analyzer or disassembly of the system firmware.
References
- ^ Hackers find a new place to hide rootkits
- ^ http://www.youtube.com/watch?v=X72LgcMpM9k Google Tech Talks - Coreboot - 00:34:30
See also
- MediaGX processor which implements nonexistent hardware via SMM
- Intel 80486SL
- Extensible Firmware Interface (EFI)
- Coreboot implements an open source SMM/SMI handler for some chipsets