]> xenbits.xensource.com Git - people/aperard/linux.git/commitdiff
x86/pat: fix W^X violation false-positives when running as Xen PV guest 9b5a105a-650c-4b33-9f4e-03612fb6701c@suse.com
authorJuergen Gross <jgross@suse.com>
Thu, 28 Mar 2024 11:24:48 +0000 (12:24 +0100)
committerAnthony PERARD <anthony.perard@gmail.com>
Thu, 28 Mar 2024 16:06:12 +0000 (16:06 +0000)
When running as Xen PV guest in some cases W^X violation WARN()s have
been observed. Those WARN()s are produced by verify_rwx(), which looks
into the PTE to verify that writable kernel pages have the NX bit set
in order to avoid code modifications of the kernel by rogue code.

As the NX bits of all levels of translation entries are or-ed and the
RW bits of all levels are and-ed, looking just into the PTE isn't enough
for the decision that a writable page is executable, too. When running
as a Xen PV guest, kernel initialization will set the NX bit in PMD
entries of the initial page tables covering the .data segment.

When finding the PTE to have set the RW bit but no NX bit, higher level
entries must be looked at. Only when all levels have the RW bit set and
no NX bit set, the W^X violation should be flagged.

Additionally show_fault_oops() has a similar problem: it will issue the
"kernel tried to execute NX-protected page" message only if it finds
the NX bit set in the leaf translation entry, while any NX bit in
non-leaf entries are being ignored for issuing the message.

Modify lookup_address_in_pgd() to return the effective NX and RW bit
values of the non-leaf translation entries and evaluate those as well
in verify_rwx() and show_fault_oops().

Fixes: 652c5bf380ad ("x86/mm: Refuse W^X violations")
Reported-by: Jason Andryuk <jandryuk@gmail.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
arch/x86/include/asm/pgtable_types.h
arch/x86/kernel/sev.c
arch/x86/mm/fault.c
arch/x86/mm/pat/set_memory.c

index f6116b66f289274aa45e813ccaadb710413298a0..030dbc8862cb0d8ca8177b726ea1c6f211711897 100644 (file)
@@ -542,7 +542,7 @@ static inline void update_page_count(int level, unsigned long pages) { }
  */
 extern pte_t *lookup_address(unsigned long address, unsigned int *level);
 extern pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
-                                   unsigned int *level);
+                                   unsigned int *level, bool *nx, bool *rw);
 extern pmd_t *lookup_pmd_address(unsigned long address);
 extern phys_addr_t slow_virt_to_phys(void *__address);
 extern int __init kernel_map_pages_in_pgd(pgd_t *pgd, u64 pfn,
index c8dfb0fdde7f990b7e0d2573d370eb52dde79d32..182dc28649fcfe62421d7c07cdf283eb2447db19 100644 (file)
@@ -485,12 +485,13 @@ static enum es_result vc_slow_virt_to_phys(struct ghcb *ghcb, struct es_em_ctxt
        unsigned long va = (unsigned long)vaddr;
        unsigned int level;
        phys_addr_t pa;
+       bool nx, rw;
        pgd_t *pgd;
        pte_t *pte;
 
        pgd = __va(read_cr3_pa());
        pgd = &pgd[pgd_index(va)];
-       pte = lookup_address_in_pgd(pgd, va, &level);
+       pte = lookup_address_in_pgd(pgd, va, &level, &nx, &rw);
        if (!pte) {
                ctxt->fi.vector     = X86_TRAP_PF;
                ctxt->fi.cr2        = vaddr;
index 1dbbad73192a16679cf2055185936d2524e82e03..7d5447e6833fe7149d416895731d50b965a0f28c 100644 (file)
@@ -532,18 +532,19 @@ show_fault_oops(struct pt_regs *regs, unsigned long error_code, unsigned long ad
 
        if (error_code & X86_PF_INSTR) {
                unsigned int level;
+               bool nx, rw;
                pgd_t *pgd;
                pte_t *pte;
 
                pgd = __va(read_cr3_pa());
                pgd += pgd_index(address);
 
-               pte = lookup_address_in_pgd(pgd, address, &level);
+               pte = lookup_address_in_pgd(pgd, address, &level, &nx, &rw);
 
-               if (pte && pte_present(*pte) && !pte_exec(*pte))
+               if (pte && pte_present(*pte) && (!pte_exec(*pte) || nx))
                        pr_crit("kernel tried to execute NX-protected page - exploit attempt? (uid: %d)\n",
                                from_kuid(&init_user_ns, current_uid()));
-               if (pte && pte_present(*pte) && pte_exec(*pte) &&
+               if (pte && pte_present(*pte) && pte_exec(*pte) && !nx &&
                                (pgd_flags(*pgd) & _PAGE_USER) &&
                                (__read_cr4() & X86_CR4_SMEP))
                        pr_crit("unable to execute userspace code (SMEP?) (uid: %d)\n",
index 5f0ce77a259d8d38f3c19376ba3b4b3eac7c10c2..63134d5612cac7eab3f6cac7e9d59de8ffd8a113 100644 (file)
@@ -583,7 +583,8 @@ static inline pgprot_t static_protections(pgprot_t prot, unsigned long start,
  * Validate strict W^X semantics.
  */
 static inline pgprot_t verify_rwx(pgprot_t old, pgprot_t new, unsigned long start,
-                                 unsigned long pfn, unsigned long npg)
+                                 unsigned long pfn, unsigned long npg,
+                                 bool nx, bool rw)
 {
        unsigned long end;
 
@@ -609,6 +610,10 @@ static inline pgprot_t verify_rwx(pgprot_t old, pgprot_t new, unsigned long star
        if ((pgprot_val(new) & (_PAGE_RW | _PAGE_NX)) != _PAGE_RW)
                return new;
 
+       /* Non-leaf translation entries can disable writing or execution. */
+       if (!rw || nx)
+               return new;
+
        end = start + npg * PAGE_SIZE - 1;
        WARN_ONCE(1, "CPA detected W^X violation: %016llx -> %016llx range: 0x%016lx - 0x%016lx PFN %lx\n",
                  (unsigned long long)pgprot_val(old),
@@ -628,17 +633,22 @@ static inline pgprot_t verify_rwx(pgprot_t old, pgprot_t new, unsigned long star
  * Return a pointer to the entry and the level of the mapping.
  */
 pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
-                            unsigned int *level)
+                            unsigned int *level, bool *nx, bool *rw)
 {
        p4d_t *p4d;
        pud_t *pud;
        pmd_t *pmd;
 
        *level = PG_LEVEL_NONE;
+       *nx = false;
+       *rw = true;
 
        if (pgd_none(*pgd))
                return NULL;
 
+       *nx |= pgd_flags(*pgd) & _PAGE_NX;
+       *rw &= pgd_flags(*pgd) & _PAGE_RW;
+
        p4d = p4d_offset(pgd, address);
        if (p4d_none(*p4d))
                return NULL;
@@ -647,6 +657,9 @@ pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
        if (p4d_large(*p4d) || !p4d_present(*p4d))
                return (pte_t *)p4d;
 
+       *nx |= p4d_flags(*p4d) & _PAGE_NX;
+       *rw &= p4d_flags(*p4d) & _PAGE_RW;
+
        pud = pud_offset(p4d, address);
        if (pud_none(*pud))
                return NULL;
@@ -655,6 +668,9 @@ pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
        if (pud_large(*pud) || !pud_present(*pud))
                return (pte_t *)pud;
 
+       *nx |= pud_flags(*pud) & _PAGE_NX;
+       *rw &= pud_flags(*pud) & _PAGE_RW;
+
        pmd = pmd_offset(pud, address);
        if (pmd_none(*pmd))
                return NULL;
@@ -663,6 +679,9 @@ pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
        if (pmd_large(*pmd) || !pmd_present(*pmd))
                return (pte_t *)pmd;
 
+       *nx |= pmd_flags(*pmd) & _PAGE_NX;
+       *rw &= pmd_flags(*pmd) & _PAGE_RW;
+
        *level = PG_LEVEL_4K;
 
        return pte_offset_kernel(pmd, address);
@@ -678,18 +697,24 @@ pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
  */
 pte_t *lookup_address(unsigned long address, unsigned int *level)
 {
-       return lookup_address_in_pgd(pgd_offset_k(address), address, level);
+       bool nx, rw;
+
+       return lookup_address_in_pgd(pgd_offset_k(address), address, level,
+                                    &nx, &rw);
 }
 EXPORT_SYMBOL_GPL(lookup_address);
 
 static pte_t *_lookup_address_cpa(struct cpa_data *cpa, unsigned long address,
-                                 unsigned int *level)
+                                 unsigned int *level, bool *nx, bool *rw)
 {
-       if (cpa->pgd)
-               return lookup_address_in_pgd(cpa->pgd + pgd_index(address),
-                                              address, level);
+       pgd_t *pgd;
+
+       if (!cpa->pgd)
+               pgd = pgd_offset_k(address);
+       else
+               pgd = cpa->pgd + pgd_index(address);
 
-       return lookup_address(address, level);
+       return lookup_address_in_pgd(pgd, address, level, nx, rw);
 }
 
 /*
@@ -813,12 +838,13 @@ static int __should_split_large_page(pte_t *kpte, unsigned long address,
        pgprot_t old_prot, new_prot, req_prot, chk_prot;
        pte_t new_pte, *tmp;
        enum pg_level level;
+       bool nx, rw;
 
        /*
         * Check for races, another CPU might have split this page
         * up already:
         */
-       tmp = _lookup_address_cpa(cpa, address, &level);
+       tmp = _lookup_address_cpa(cpa, address, &level, &nx, &rw);
        if (tmp != kpte)
                return 1;
 
@@ -929,7 +955,8 @@ static int __should_split_large_page(pte_t *kpte, unsigned long address,
        new_prot = static_protections(req_prot, lpaddr, old_pfn, numpages,
                                      psize, CPA_DETECT);
 
-       new_prot = verify_rwx(old_prot, new_prot, lpaddr, old_pfn, numpages);
+       new_prot = verify_rwx(old_prot, new_prot, lpaddr, old_pfn, numpages,
+                             nx, rw);
 
        /*
         * If there is a conflict, split the large page.
@@ -1010,6 +1037,7 @@ __split_large_page(struct cpa_data *cpa, pte_t *kpte, unsigned long address,
        pte_t *pbase = (pte_t *)page_address(base);
        unsigned int i, level;
        pgprot_t ref_prot;
+       bool nx, rw;
        pte_t *tmp;
 
        spin_lock(&pgd_lock);
@@ -1017,7 +1045,7 @@ __split_large_page(struct cpa_data *cpa, pte_t *kpte, unsigned long address,
         * Check for races, another CPU might have split this page
         * up for us already:
         */
-       tmp = _lookup_address_cpa(cpa, address, &level);
+       tmp = _lookup_address_cpa(cpa, address, &level, &nx, &rw);
        if (tmp != kpte) {
                spin_unlock(&pgd_lock);
                return 1;
@@ -1558,10 +1586,11 @@ static int __change_page_attr(struct cpa_data *cpa, int primary)
        int do_split, err;
        unsigned int level;
        pte_t *kpte, old_pte;
+       bool nx, rw;
 
        address = __cpa_addr(cpa, cpa->curpage);
 repeat:
-       kpte = _lookup_address_cpa(cpa, address, &level);
+       kpte = _lookup_address_cpa(cpa, address, &level, &nx, &rw);
        if (!kpte)
                return __cpa_process_fault(cpa, address, primary);
 
@@ -1583,7 +1612,8 @@ repeat:
                new_prot = static_protections(new_prot, address, pfn, 1, 0,
                                              CPA_PROTECT);
 
-               new_prot = verify_rwx(old_prot, new_prot, address, pfn, 1);
+               new_prot = verify_rwx(old_prot, new_prot, address, pfn, 1,
+                                     nx, rw);
 
                new_prot = pgprot_clear_protnone_bits(new_prot);