License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 14:07:57 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2007-12-14 01:35:10 +00:00
|
|
|
#ifndef __KVM_X86_MMU_H
|
|
|
|
#define __KVM_X86_MMU_H
|
|
|
|
|
2007-12-16 09:02:48 +00:00
|
|
|
#include <linux/kvm_host.h>
|
2009-12-07 10:16:48 +00:00
|
|
|
#include "kvm_cache_regs.h"
|
2020-07-10 15:48:03 +00:00
|
|
|
#include "cpuid.h"
|
2007-12-14 01:35:10 +00:00
|
|
|
|
2008-04-25 02:17:08 +00:00
|
|
|
#define PT64_PT_BITS 9
|
|
|
|
#define PT64_ENT_PER_PAGE (1 << PT64_PT_BITS)
|
|
|
|
#define PT32_PT_BITS 10
|
|
|
|
#define PT32_ENT_PER_PAGE (1 << PT32_PT_BITS)
|
|
|
|
|
|
|
|
#define PT_WRITABLE_SHIFT 1
|
2016-03-22 08:51:20 +00:00
|
|
|
#define PT_USER_SHIFT 2
|
2008-04-25 02:17:08 +00:00
|
|
|
|
|
|
|
#define PT_PRESENT_MASK (1ULL << 0)
|
|
|
|
#define PT_WRITABLE_MASK (1ULL << PT_WRITABLE_SHIFT)
|
2016-03-22 08:51:20 +00:00
|
|
|
#define PT_USER_MASK (1ULL << PT_USER_SHIFT)
|
2008-04-25 02:17:08 +00:00
|
|
|
#define PT_PWT_MASK (1ULL << 3)
|
|
|
|
#define PT_PCD_MASK (1ULL << 4)
|
2008-05-15 10:51:35 +00:00
|
|
|
#define PT_ACCESSED_SHIFT 5
|
|
|
|
#define PT_ACCESSED_MASK (1ULL << PT_ACCESSED_SHIFT)
|
2012-09-12 10:44:53 +00:00
|
|
|
#define PT_DIRTY_SHIFT 6
|
|
|
|
#define PT_DIRTY_MASK (1ULL << PT_DIRTY_SHIFT)
|
2012-09-12 17:46:56 +00:00
|
|
|
#define PT_PAGE_SIZE_SHIFT 7
|
|
|
|
#define PT_PAGE_SIZE_MASK (1ULL << PT_PAGE_SIZE_SHIFT)
|
2008-04-25 02:17:08 +00:00
|
|
|
#define PT_PAT_MASK (1ULL << 7)
|
|
|
|
#define PT_GLOBAL_MASK (1ULL << 8)
|
|
|
|
#define PT64_NX_SHIFT 63
|
|
|
|
#define PT64_NX_MASK (1ULL << PT64_NX_SHIFT)
|
|
|
|
|
|
|
|
#define PT_PAT_SHIFT 7
|
|
|
|
#define PT_DIR_PAT_SHIFT 12
|
|
|
|
#define PT_DIR_PAT_MASK (1ULL << PT_DIR_PAT_SHIFT)
|
|
|
|
|
|
|
|
#define PT32_DIR_PSE36_SIZE 4
|
|
|
|
#define PT32_DIR_PSE36_SHIFT 13
|
|
|
|
#define PT32_DIR_PSE36_MASK \
|
|
|
|
(((1ULL << PT32_DIR_PSE36_SIZE) - 1) << PT32_DIR_PSE36_SHIFT)
|
|
|
|
|
2017-08-24 12:27:55 +00:00
|
|
|
#define PT64_ROOT_5LEVEL 5
|
2017-08-24 12:27:54 +00:00
|
|
|
#define PT64_ROOT_4LEVEL 4
|
2008-04-25 02:17:08 +00:00
|
|
|
#define PT32_ROOT_LEVEL 2
|
|
|
|
#define PT32E_ROOT_LEVEL 3
|
|
|
|
|
2021-09-19 02:42:46 +00:00
|
|
|
#define KVM_MMU_CR4_ROLE_BITS (X86_CR4_PSE | X86_CR4_PAE | X86_CR4_LA57 | \
|
|
|
|
X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE)
|
2021-06-22 17:57:02 +00:00
|
|
|
|
|
|
|
#define KVM_MMU_CR0_ROLE_BITS (X86_CR0_PG | X86_CR0_WP)
|
2022-02-09 09:56:05 +00:00
|
|
|
#define KVM_MMU_EFER_ROLE_BITS (EFER_LME | EFER_NX)
|
2021-06-22 17:57:02 +00:00
|
|
|
|
2021-01-13 20:45:15 +00:00
|
|
|
static __always_inline u64 rsvd_bits(int s, int e)
|
2014-09-01 10:44:04 +00:00
|
|
|
{
|
2021-01-13 20:45:15 +00:00
|
|
|
BUILD_BUG_ON(__builtin_constant_p(e) && __builtin_constant_p(s) && e < s);
|
|
|
|
|
|
|
|
if (__builtin_constant_p(e))
|
|
|
|
BUILD_BUG_ON(e > 63);
|
|
|
|
else
|
|
|
|
e &= 63;
|
|
|
|
|
2017-08-24 12:27:53 +00:00
|
|
|
if (e < s)
|
|
|
|
return 0;
|
|
|
|
|
2020-12-22 10:20:43 +00:00
|
|
|
return ((2ULL << (e - s)) - 1) << s;
|
2014-09-01 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
2021-02-25 20:47:35 +00:00
|
|
|
void kvm_mmu_set_mmio_spte_mask(u64 mmio_value, u64 mmio_mask, u64 access_mask);
|
2021-02-25 20:47:42 +00:00
|
|
|
void kvm_mmu_set_ept_masks(bool has_ad_bits, bool has_exec_only);
|
2013-06-07 08:51:25 +00:00
|
|
|
|
2021-06-09 23:42:33 +00:00
|
|
|
void kvm_init_mmu(struct kvm_vcpu *vcpu);
|
2021-06-22 17:56:59 +00:00
|
|
|
void kvm_init_shadow_npt_mmu(struct kvm_vcpu *vcpu, unsigned long cr0,
|
|
|
|
unsigned long cr4, u64 efer, gpa_t nested_cr3);
|
2017-03-30 09:55:30 +00:00
|
|
|
void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, bool execonly,
|
2021-11-24 12:20:49 +00:00
|
|
|
int huge_page_level, bool accessed_dirty,
|
|
|
|
gpa_t new_eptp);
|
2017-06-09 03:13:40 +00:00
|
|
|
bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu);
|
2017-07-14 01:30:40 +00:00
|
|
|
int kvm_handle_page_fault(struct kvm_vcpu *vcpu, u64 error_code,
|
2017-08-11 16:36:43 +00:00
|
|
|
u64 fault_address, char *insn, int insn_len);
|
2009-06-11 15:07:42 +00:00
|
|
|
|
2021-03-05 01:10:59 +00:00
|
|
|
int kvm_mmu_load(struct kvm_vcpu *vcpu);
|
|
|
|
void kvm_mmu_unload(struct kvm_vcpu *vcpu);
|
2022-02-25 18:22:45 +00:00
|
|
|
void kvm_mmu_free_obsolete_roots(struct kvm_vcpu *vcpu);
|
2021-03-05 01:10:59 +00:00
|
|
|
void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu);
|
2021-10-19 11:01:54 +00:00
|
|
|
void kvm_mmu_sync_prev_roots(struct kvm_vcpu *vcpu);
|
2021-03-05 01:10:59 +00:00
|
|
|
|
2007-12-14 01:35:10 +00:00
|
|
|
static inline int kvm_mmu_reload(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
2022-02-21 14:28:33 +00:00
|
|
|
if (likely(vcpu->arch.mmu->root.hpa != INVALID_PAGE))
|
2007-12-14 01:35:10 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return kvm_mmu_load(vcpu);
|
|
|
|
}
|
|
|
|
|
2018-06-27 21:59:13 +00:00
|
|
|
static inline unsigned long kvm_get_pcid(struct kvm_vcpu *vcpu, gpa_t cr3)
|
|
|
|
{
|
|
|
|
BUILD_BUG_ON((X86_CR3_PCID_MASK & PAGE_MASK) != 0);
|
|
|
|
|
|
|
|
return kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE)
|
|
|
|
? cr3 & X86_CR3_PCID_MASK
|
|
|
|
: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long kvm_get_active_pcid(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return kvm_get_pcid(vcpu, kvm_read_cr3(vcpu));
|
|
|
|
}
|
|
|
|
|
2020-03-03 09:11:10 +00:00
|
|
|
static inline void kvm_mmu_load_pgd(struct kvm_vcpu *vcpu)
|
2018-06-27 21:59:08 +00:00
|
|
|
{
|
2022-02-21 14:28:33 +00:00
|
|
|
u64 root_hpa = vcpu->arch.mmu->root.hpa;
|
2020-07-16 03:41:18 +00:00
|
|
|
|
|
|
|
if (!VALID_PAGE(root_hpa))
|
|
|
|
return;
|
|
|
|
|
KVM: x86: Get active PCID only when writing a CR3 value
Retrieve the active PCID only when writing a guest CR3 value, i.e. don't
get the PCID when using EPT or NPT. The PCID is especially problematic
for EPT as the bits have different meaning, and so the PCID and must be
manually stripped, which is annoying and unnecessary. And on VMX,
getting the active PCID also involves reading the guest's CR3 and
CR4.PCIDE, i.e. may add pointless VMREADs.
Opportunistically rename the pgd/pgd_level params to root_hpa and
root_level to better reflect their new roles. Keep the function names,
as "load the guest PGD" is still accurate/correct.
Last, and probably least, pass root_hpa as a hpa_t/u64 instead of an
unsigned long. The EPTP holds a 64-bit value, even in 32-bit mode, so
in theory EPT could support HIGHMEM for 32-bit KVM. Never mind that
doing so would require changing the MMU page allocators and reworking
the MMU to use kmap().
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Signed-off-by: Sean Christopherson <seanjc@google.com>
Message-Id: <20210305183123.3978098-2-seanjc@google.com>
Reviewed-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2021-03-05 18:31:13 +00:00
|
|
|
static_call(kvm_x86_load_mmu_pgd)(vcpu, root_hpa,
|
|
|
|
vcpu->arch.mmu->shadow_root_level);
|
2018-06-27 21:59:08 +00:00
|
|
|
}
|
|
|
|
|
2021-08-06 07:52:18 +00:00
|
|
|
struct kvm_page_fault {
|
|
|
|
/* arguments to kvm_mmu_do_page_fault. */
|
|
|
|
const gpa_t addr;
|
|
|
|
const u32 error_code;
|
2021-09-29 13:19:32 +00:00
|
|
|
const bool prefetch;
|
2021-08-06 07:52:18 +00:00
|
|
|
|
|
|
|
/* Derived from error_code. */
|
|
|
|
const bool exec;
|
|
|
|
const bool write;
|
|
|
|
const bool present;
|
|
|
|
const bool rsvd;
|
|
|
|
const bool user;
|
|
|
|
|
2021-08-07 13:21:53 +00:00
|
|
|
/* Derived from mmu and global state. */
|
2021-08-06 07:52:18 +00:00
|
|
|
const bool is_tdp;
|
2021-08-07 13:21:53 +00:00
|
|
|
const bool nx_huge_page_workaround_enabled;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Whether a >4KB mapping can be created or is forbidden due to NX
|
|
|
|
* hugepages.
|
|
|
|
*/
|
|
|
|
bool huge_page_disallowed;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Maximum page size that can be created for this fault; input to
|
|
|
|
* FNAME(fetch), __direct_map and kvm_tdp_mmu_map.
|
|
|
|
*/
|
2021-08-06 08:21:58 +00:00
|
|
|
u8 max_level;
|
2021-08-06 08:21:58 +00:00
|
|
|
|
2021-08-07 13:21:53 +00:00
|
|
|
/*
|
|
|
|
* Page size that can be created based on the max_level and the
|
|
|
|
* page size used by the host mapping.
|
|
|
|
*/
|
|
|
|
u8 req_level;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Page size that will be created based on the req_level and
|
|
|
|
* huge_page_disallowed.
|
|
|
|
*/
|
|
|
|
u8 goal_level;
|
|
|
|
|
2021-08-06 08:21:58 +00:00
|
|
|
/* Shifted addr, or result of guest page table walk if addr is a gva. */
|
|
|
|
gfn_t gfn;
|
2021-08-07 12:57:34 +00:00
|
|
|
|
2021-09-24 09:05:26 +00:00
|
|
|
/* The memslot containing gfn. May be NULL. */
|
|
|
|
struct kvm_memory_slot *slot;
|
|
|
|
|
2021-08-07 12:57:34 +00:00
|
|
|
/* Outputs of kvm_faultin_pfn. */
|
|
|
|
kvm_pfn_t pfn;
|
|
|
|
hva_t hva;
|
|
|
|
bool map_writable;
|
2021-08-06 07:52:18 +00:00
|
|
|
};
|
|
|
|
|
2021-08-06 08:35:50 +00:00
|
|
|
int kvm_tdp_page_fault(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault);
|
2020-02-06 22:14:34 +00:00
|
|
|
|
2021-08-07 13:21:53 +00:00
|
|
|
extern int nx_huge_pages;
|
|
|
|
static inline bool is_nx_huge_page_enabled(void)
|
|
|
|
{
|
|
|
|
return READ_ONCE(nx_huge_pages);
|
|
|
|
}
|
|
|
|
|
2020-02-06 22:14:34 +00:00
|
|
|
static inline int kvm_mmu_do_page_fault(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
|
2021-09-29 13:19:32 +00:00
|
|
|
u32 err, bool prefetch)
|
2020-02-06 22:14:34 +00:00
|
|
|
{
|
2021-08-06 07:52:18 +00:00
|
|
|
struct kvm_page_fault fault = {
|
|
|
|
.addr = cr2_or_gpa,
|
|
|
|
.error_code = err,
|
|
|
|
.exec = err & PFERR_FETCH_MASK,
|
|
|
|
.write = err & PFERR_WRITE_MASK,
|
|
|
|
.present = err & PFERR_PRESENT_MASK,
|
|
|
|
.rsvd = err & PFERR_RSVD_MASK,
|
|
|
|
.user = err & PFERR_USER_MASK,
|
2021-09-29 13:19:32 +00:00
|
|
|
.prefetch = prefetch,
|
2021-08-06 07:52:18 +00:00
|
|
|
.is_tdp = likely(vcpu->arch.mmu->page_fault == kvm_tdp_page_fault),
|
2021-08-07 13:21:53 +00:00
|
|
|
.nx_huge_page_workaround_enabled = is_nx_huge_page_enabled(),
|
2021-08-06 08:21:58 +00:00
|
|
|
|
|
|
|
.max_level = KVM_MAX_HUGEPAGE_LEVEL,
|
2021-08-07 13:21:53 +00:00
|
|
|
.req_level = PG_LEVEL_4K,
|
|
|
|
.goal_level = PG_LEVEL_4K,
|
2021-08-06 07:52:18 +00:00
|
|
|
};
|
2020-02-06 22:14:34 +00:00
|
|
|
#ifdef CONFIG_RETPOLINE
|
2021-08-06 07:52:18 +00:00
|
|
|
if (fault.is_tdp)
|
2021-08-06 08:35:50 +00:00
|
|
|
return kvm_tdp_page_fault(vcpu, &fault);
|
2020-02-06 22:14:34 +00:00
|
|
|
#endif
|
2021-08-06 08:35:50 +00:00
|
|
|
return vcpu->arch.mmu->page_fault(vcpu, &fault);
|
2020-02-06 22:14:34 +00:00
|
|
|
}
|
|
|
|
|
KVM: MMU: Optimize pte permission checks
walk_addr_generic() permission checks are a maze of branchy code, which is
performed four times per lookup. It depends on the type of access, efer.nxe,
cr0.wp, cr4.smep, and in the near future, cr4.smap.
Optimize this away by precalculating all variants and storing them in a
bitmap. The bitmap is recalculated when rarely-changing variables change
(cr0, cr4) and is indexed by the often-changing variables (page fault error
code, pte access permissions).
The permission check is moved to the end of the loop, otherwise an SMEP
fault could be reported as a false positive, when PDE.U=1 but PTE.U=0.
Noted by Xiao Guangrong.
The result is short, branch-free code.
Reviewed-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
2012-09-12 11:52:00 +00:00
|
|
|
/*
|
2016-03-08 09:08:16 +00:00
|
|
|
* Check if a given access (described through the I/D, W/R and U/S bits of a
|
|
|
|
* page fault error code pfec) causes a permission fault with the given PTE
|
|
|
|
* access rights (in ACC_* format).
|
|
|
|
*
|
|
|
|
* Return zero if the access does not fault; return the page fault error code
|
|
|
|
* if the access faults.
|
KVM: MMU: Optimize pte permission checks
walk_addr_generic() permission checks are a maze of branchy code, which is
performed four times per lookup. It depends on the type of access, efer.nxe,
cr0.wp, cr4.smep, and in the near future, cr4.smap.
Optimize this away by precalculating all variants and storing them in a
bitmap. The bitmap is recalculated when rarely-changing variables change
(cr0, cr4) and is indexed by the often-changing variables (page fault error
code, pte access permissions).
The permission check is moved to the end of the loop, otherwise an SMEP
fault could be reported as a false positive, when PDE.U=1 but PTE.U=0.
Noted by Xiao Guangrong.
The result is short, branch-free code.
Reviewed-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
2012-09-12 11:52:00 +00:00
|
|
|
*/
|
2016-03-08 09:08:16 +00:00
|
|
|
static inline u8 permission_fault(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
|
2016-03-22 08:51:20 +00:00
|
|
|
unsigned pte_access, unsigned pte_pkey,
|
2022-03-11 07:03:41 +00:00
|
|
|
u64 access)
|
2011-07-11 19:23:20 +00:00
|
|
|
{
|
2022-03-11 07:03:41 +00:00
|
|
|
/* strip nested paging fault error codes */
|
|
|
|
unsigned int pfec = access;
|
2021-01-15 03:27:56 +00:00
|
|
|
int cpl = static_call(kvm_x86_get_cpl)(vcpu);
|
|
|
|
unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
|
2014-04-01 09:46:34 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If CPL < 3, SMAP prevention are disabled if EFLAGS.AC = 1.
|
|
|
|
*
|
|
|
|
* If CPL = 3, SMAP applies to all supervisor-mode data accesses
|
|
|
|
* (these are implicit supervisor accesses) regardless of the value
|
|
|
|
* of EFLAGS.AC.
|
|
|
|
*
|
|
|
|
* This computes (cpl < 3) && (rflags & X86_EFLAGS_AC), leaving
|
|
|
|
* the result in X86_EFLAGS_AC. We then insert it in place of
|
|
|
|
* the PFERR_RSVD_MASK bit; this bit will always be zero in pfec,
|
|
|
|
* but it will be one in index if SMAP checks are being overridden.
|
|
|
|
* It is important to keep this branchless.
|
|
|
|
*/
|
2022-03-11 07:03:43 +00:00
|
|
|
unsigned long not_smap = (cpl - 3) & (rflags & X86_EFLAGS_AC);
|
2014-04-01 09:46:34 +00:00
|
|
|
int index = (pfec >> 1) +
|
2022-03-11 07:03:43 +00:00
|
|
|
(not_smap >> (X86_EFLAGS_AC_BIT - PFERR_RSVD_BIT + 1));
|
2016-03-22 08:51:20 +00:00
|
|
|
bool fault = (mmu->permissions[index] >> pte_access) & 1;
|
2016-03-25 13:19:35 +00:00
|
|
|
u32 errcode = PFERR_PRESENT_MASK;
|
2014-04-01 09:46:34 +00:00
|
|
|
|
2016-03-22 08:51:20 +00:00
|
|
|
WARN_ON(pfec & (PFERR_PK_MASK | PFERR_RSVD_MASK));
|
|
|
|
if (unlikely(mmu->pkru_mask)) {
|
|
|
|
u32 pkru_bits, offset;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PKRU defines 32 bits, there are 16 domains and 2
|
|
|
|
* attribute bits per domain in pkru. pte_pkey is the
|
|
|
|
* index of the protection domain, so pte_pkey * 2 is
|
|
|
|
* is the index of the first bit for the domain.
|
|
|
|
*/
|
2017-08-23 21:14:38 +00:00
|
|
|
pkru_bits = (vcpu->arch.pkru >> (pte_pkey * 2)) & 3;
|
2016-03-22 08:51:20 +00:00
|
|
|
|
|
|
|
/* clear present bit, replace PFEC.RSVD with ACC_USER_MASK. */
|
2016-03-25 13:19:35 +00:00
|
|
|
offset = (pfec & ~1) +
|
2016-03-22 08:51:20 +00:00
|
|
|
((pte_access & PT_USER_MASK) << (PFERR_RSVD_BIT - PT_USER_SHIFT));
|
|
|
|
|
|
|
|
pkru_bits &= mmu->pkru_mask >> offset;
|
2016-03-25 13:19:35 +00:00
|
|
|
errcode |= -pkru_bits & PFERR_PK_MASK;
|
2016-03-22 08:51:20 +00:00
|
|
|
fault |= (pkru_bits != 0);
|
|
|
|
}
|
|
|
|
|
2016-03-25 13:19:35 +00:00
|
|
|
return -(u32)fault & errcode;
|
2011-07-11 19:23:20 +00:00
|
|
|
}
|
KVM: MMU: Optimize pte permission checks
walk_addr_generic() permission checks are a maze of branchy code, which is
performed four times per lookup. It depends on the type of access, efer.nxe,
cr0.wp, cr4.smep, and in the near future, cr4.smap.
Optimize this away by precalculating all variants and storing them in a
bitmap. The bitmap is recalculated when rarely-changing variables change
(cr0, cr4) and is indexed by the often-changing variables (page fault error
code, pte access permissions).
The permission check is moved to the end of the loop, otherwise an SMEP
fault could be reported as a false positive, when PDE.U=1 but PTE.U=0.
Noted by Xiao Guangrong.
The result is short, branch-free code.
Reviewed-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
2012-09-12 11:52:00 +00:00
|
|
|
|
2015-05-13 06:42:27 +00:00
|
|
|
void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end);
|
2016-02-24 09:51:07 +00:00
|
|
|
|
2020-06-22 20:20:31 +00:00
|
|
|
int kvm_arch_write_log_dirty(struct kvm_vcpu *vcpu);
|
2019-11-04 19:26:00 +00:00
|
|
|
|
|
|
|
int kvm_mmu_post_init_vm(struct kvm *kvm);
|
|
|
|
void kvm_mmu_pre_destroy_vm(struct kvm *kvm);
|
|
|
|
|
2021-10-15 16:30:21 +00:00
|
|
|
static inline bool kvm_shadow_root_allocated(struct kvm *kvm)
|
2021-05-18 17:34:13 +00:00
|
|
|
{
|
2021-05-18 17:34:14 +00:00
|
|
|
/*
|
2021-10-15 16:30:21 +00:00
|
|
|
* Read shadow_root_allocated before related pointers. Hence, threads
|
|
|
|
* reading shadow_root_allocated in any lock context are guaranteed to
|
|
|
|
* see the pointers. Pairs with smp_store_release in
|
|
|
|
* mmu_first_shadow_root_alloc.
|
2021-05-18 17:34:14 +00:00
|
|
|
*/
|
2021-10-15 16:30:21 +00:00
|
|
|
return smp_load_acquire(&kvm->arch.shadow_root_allocated);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
static inline bool is_tdp_mmu_enabled(struct kvm *kvm) { return kvm->arch.tdp_mmu_enabled; }
|
|
|
|
#else
|
|
|
|
static inline bool is_tdp_mmu_enabled(struct kvm *kvm) { return false; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline bool kvm_memslots_have_rmaps(struct kvm *kvm)
|
|
|
|
{
|
|
|
|
return !is_tdp_mmu_enabled(kvm) || kvm_shadow_root_allocated(kvm);
|
2021-05-18 17:34:13 +00:00
|
|
|
}
|
|
|
|
|
2021-07-30 22:04:51 +00:00
|
|
|
static inline gfn_t gfn_to_index(gfn_t gfn, gfn_t base_gfn, int level)
|
|
|
|
{
|
|
|
|
/* KVM_HPAGE_GFN_SHIFT(PG_LEVEL_4K) must be 0. */
|
|
|
|
return (gfn >> KVM_HPAGE_GFN_SHIFT(level)) -
|
|
|
|
(base_gfn >> KVM_HPAGE_GFN_SHIFT(level));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long
|
|
|
|
__kvm_mmu_slot_lpages(struct kvm_memory_slot *slot, unsigned long npages,
|
|
|
|
int level)
|
|
|
|
{
|
|
|
|
return gfn_to_index(slot->base_gfn + npages - 1,
|
|
|
|
slot->base_gfn, level) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long
|
|
|
|
kvm_mmu_slot_lpages(struct kvm_memory_slot *slot, int level)
|
|
|
|
{
|
|
|
|
return __kvm_mmu_slot_lpages(slot, slot->npages, level);
|
|
|
|
}
|
|
|
|
|
2021-08-03 04:46:07 +00:00
|
|
|
static inline void kvm_update_page_stats(struct kvm *kvm, int level, int count)
|
|
|
|
{
|
|
|
|
atomic64_add(count, &kvm->stat.pages[level - 1]);
|
|
|
|
}
|
2021-11-24 12:20:45 +00:00
|
|
|
|
2022-03-11 07:03:41 +00:00
|
|
|
gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u64 access,
|
2021-11-24 12:20:45 +00:00
|
|
|
struct x86_exception *exception);
|
|
|
|
|
|
|
|
static inline gpa_t kvm_translate_gpa(struct kvm_vcpu *vcpu,
|
|
|
|
struct kvm_mmu *mmu,
|
2022-03-11 07:03:41 +00:00
|
|
|
gpa_t gpa, u64 access,
|
2021-11-24 12:20:45 +00:00
|
|
|
struct x86_exception *exception)
|
|
|
|
{
|
|
|
|
if (mmu != &vcpu->arch.nested_mmu)
|
|
|
|
return gpa;
|
|
|
|
return translate_nested_gpa(vcpu, gpa, access, exception);
|
|
|
|
}
|
2007-12-14 01:35:10 +00:00
|
|
|
#endif
|