Do the same for i386 as amd64:
authorbrynet <brynet@openbsd.org>
Tue, 24 Jul 2018 17:31:23 +0000 (17:31 +0000)
committerbrynet <brynet@openbsd.org>
Tue, 24 Jul 2018 17:31:23 +0000 (17:31 +0000)
Add "Mitigation G-2" per AMD's Whitepaper "Software Techniques for
Managing Speculation on AMD Processors"

By setting MSR C001_1029[1]=1, LFENCE becomes a dispatch serializing
instruction.

ok deraadt@

sys/arch/i386/i386/machdep.c
sys/arch/i386/include/specialreg.h

index 350c7d6..e44bc0f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.620 2018/07/10 04:19:59 guenther Exp $  */
+/*     $OpenBSD: machdep.c,v 1.621 2018/07/24 17:31:23 brynet Exp $    */
 /*     $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $    */
 
 /*-
@@ -2023,6 +2023,26 @@ identifycpu(struct cpu_info *ci)
                printf("\n");
        }
 
+       /*
+        * "Mitigation G-2" per AMD's Whitepaper "Software Techniques
+        * for Managing Speculation on AMD Processors"
+        *
+        * By setting MSR C001_1029[1]=1, LFENCE becomes a dispatch
+        * serializing instruction.
+        *
+        * This MSR is available on all AMD families >= 10h, except 11h
+        * where LFENCE is always serializing.
+        */
+       if (!strcmp(cpu_vendor, "AuthenticAMD")) {
+               if (ci->ci_family >= 0x10 && ci->ci_family != 0x11) {
+                       uint64_t msr;
+
+                       msr = rdmsr(MSR_DE_CFG);
+                       msr |= DE_CFG_SERIALIZE_LFENCE;
+                       wrmsr(MSR_DE_CFG, msr);
+               }
+       }
+
        /*
         * Attempt to disable Silicon Debug and lock the configuration
         * if it's enabled and unlocked.
index 3c5de81..ad4668b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: specialreg.h,v 1.66 2018/05/28 20:52:44 bluhm Exp $   */
+/*     $OpenBSD: specialreg.h,v 1.67 2018/07/24 17:31:23 brynet Exp $  */
 /*     $NetBSD: specialreg.h,v 1.7 1994/10/27 04:16:26 cgd Exp $       */
 
 /*-
 
 #define MSR_DE_CFG     0xc0011029              /* Decode Configuration */
 #define        DE_CFG_721      0x00000001      /* errata 721 */
+#define        DE_CFG_SERIALIZE_LFENCE (1 << 1)        /* Enable serializing lfence */
 
 #define IPM_C1E_CMP_HLT        0x10000000
 #define IPM_SMI_CMP_HLT        0x08000000