Ticket #42 (assigned defect)

Opened 2 years ago

Last modified 2 years ago

Disable SMM on K8 platforms

Reported by: stepan Owned by: stepan
Priority: major Milestone: Going mainstream
Component: coreboot Version: v2
Keywords: SMM, security Cc:
Dependencies: Patch Status: patch needs review

Description

This was a while ago, but it got forgotten.

Loïc Duflot, security engineer and researcher for the scientific division of the french Central Directorate for Information Systems Security ("french version of the NSA"), gives some insight on fun that can be had with the system management mode (SMM) of x86 CPUs.

See http://www.securityfocus.com/print/columnists/402 for more information.

While, as Loïc writes later in his article, the whole issue of exploiting SMM is pretty pointless in Linux as the super user can conquer ring 0 without further effort, the idea of fixing what we can fix on the bios level seems worthwhile.

If something seems as simple as setting the D_LCK bit of SMM, we should definitely do it.. It will at least be a marketable feature against other upcoming firmware implementations.

Carl-Daniel Hailfinger said:

I believe that setting D_LCK will mitigate a few attacks but I strongly
doubt that it cannot be cleared during system operation. Yes, the manual
specifies it, but manuals have been underspecified before. Since we don't
use SMM for anything, we might as well
* clear D_OPEN
* set D_CLOSE
* clear "Enable"
* set D_LCK.

So, by all means, do it now. Until somebody figures out a way to disable
D_LCK again we offer a much higher degree of security than everybody
else.

Ok, D_LCK/D_OPEN/D_CLOSE is intel vocabulary. There is no such thing on AMD. They call it SMMLOCK in their BKDG:

6.11.6 Locking SMM

The SMM registers can be locked by setting the SMMLOCK (HWCR, bit 0). Once set, the SMM_BASE, the SMM_ADDR, all but the two close bits of SMM_MASK and the RSMSPCYCDIS, SMISPCYCDIS, and SMMLOCK bits of HWCR are locked and cannot be changed. The only way to unlock the SMM registers is to assert reset. This provides security to the SMM mechanism. The BIOS can lock the SMM environment after setting it up so that it can not be tampered with.

So I propose the following patch for LinuxBIOS to fix the SMM problem for all supported AMD K8 mainboards:

Set SMMLOCK on K8 to avoid exploits messing with SMM 

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>

Index: src/cpu/amd/model_fxx/model_fxx_init.c
===================================================================
--- src/cpu/amd/model_fxx/model_fxx_init.c      (revision 2302)
+++ src/cpu/amd/model_fxx/model_fxx_init.c      (working copy)
@@ -454,6 +454,12 @@

        k8_errata();

+       /* Set SMMLOCK to avoid exploits messing with SMM */
+       msr = rdmsr(HWCR_MSR);
+       msr.lo |= (1 << 0);
+       wrmsr(HWCR_MSR, msr);
+
+
        enable_cache();

        /* Enable the local cpu apics */

Attachments

Change History

in reply to: ↑ description   Changed 2 years ago by segher

You'll need to lock SMM on the chipset too, if you don't already. It's amazing how much fun can be had there otherwise :-)

  Changed 2 years ago by Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@…>

What settings for SMM_BASE, the SMM_ADDR, RSMSPCYCDIS, SMISPCYCDIS do we need? Not specifiying them probably leaves them at default values and I don't know whether the default settings leave some exploits unfixed.

  Changed 2 years ago by uwe

  • keywords SMM, security added; SMM removed

This is great stuff! I'd definately make this a Kconfig option in LBv3 with a good help text...

follow-up: ↓ 5   Changed 2 years ago by stepan

  • status changed from new to assigned

SMM is a CPU/Northbridge thing on AMD64 processors. No need to do anything with the chipset. Check out chapter 6 of the the BKDG at http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/26094.PDF

What we _might_ want do though is add a small SMM handler at 38000 but that is a completely different issue.

SMM_BASE register holds the base of the system management memory region, and its default value is 30000h. The first SMI handler instruction is fetched at SMM_BASE + 8000h.

in reply to: ↑ 4   Changed 2 years ago by segher

Replying to stepan:

SMM is a CPU/Northbridge thing on AMD64 processors. No need to do anything with the chipset.

Well you need to make sure that SMI (and SCI) are correctly handled, so they cannot hang the system. It's not obvious to me that this is automatically the case, but you know this stuff better I'm sure :-)

The other thing the chipset can do is disable certain regions of memory while not in SMM, but that's not too interesting if you don't do SMM at all :-)

Segher

  Changed 2 years ago by nemesis@…

Most BIOSes relocate SMBASE to 0xA0000 so as to map it into the VGA framebuffer area instead of on top of memory.

  Changed 2 years ago by uwe

  • patchstatus changed from there is no patch to patch needs review

Add/Change #42 (Disable SMM on K8 platforms)

Author



Action
as assigned
 
Note: See TracTickets for help on using tickets.