]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
x86/speculation/l1tf: Invert all not present mappings
authorAndi Kleen <ak@linux.intel.com>
Tue, 7 Aug 2018 22:09:36 +0000 (15:09 -0700)
committerStefan Bader <stefan.bader@canonical.com>
Thu, 9 Aug 2018 16:05:04 +0000 (18:05 +0200)
For kernel mappings PAGE_PROTNONE is not necessarily set for a non present
mapping, but the inversion logic explicitely checks for !PRESENT and
PROT_NONE.

Remove the PROT_NONE check and make the inversion unconditional for all not
present mappings.

Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
CVE-2018-3620
CVE-2018-3646

Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
arch/x86/include/asm/pgtable-invert.h

index 177564187fc063c5f16af8b405c7dc1d90d54b64..44b1203ece12abb31f0b782b7219f61eb8045ae6 100644 (file)
@@ -6,7 +6,7 @@
 
 static inline bool __pte_needs_invert(u64 val)
 {
-       return (val & (_PAGE_PRESENT|_PAGE_PROTNONE)) == _PAGE_PROTNONE;
+       return !(val & _PAGE_PRESENT);
 }
 
 /* Get a mask to xor with the page table entry to get the correct pfn. */