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 22:07:57 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2008-07-03 19:59:22 +08:00
|
|
|
#ifndef ARCH_X86_KVM_X86_H
|
|
|
|
#define ARCH_X86_KVM_X86_H
|
|
|
|
|
|
|
|
#include <linux/kvm_host.h>
|
2016-06-21 09:28:02 +08:00
|
|
|
#include <asm/pvclock.h>
|
2010-01-21 21:31:48 +08:00
|
|
|
#include "kvm_cache_regs.h"
|
2020-02-19 07:29:49 +08:00
|
|
|
#include "kvm_emulate.h"
|
2008-07-03 19:59:22 +08:00
|
|
|
|
2018-03-17 04:37:24 +08:00
|
|
|
#define KVM_DEFAULT_PLE_GAP 128
|
|
|
|
#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
|
|
|
|
#define KVM_DEFAULT_PLE_WINDOW_GROW 2
|
|
|
|
#define KVM_DEFAULT_PLE_WINDOW_SHRINK 0
|
|
|
|
#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX UINT_MAX
|
2018-03-17 04:37:26 +08:00
|
|
|
#define KVM_SVM_DEFAULT_PLE_WINDOW_MAX USHRT_MAX
|
|
|
|
#define KVM_SVM_DEFAULT_PLE_WINDOW 3000
|
2018-03-17 04:37:24 +08:00
|
|
|
|
|
|
|
static inline unsigned int __grow_ple_window(unsigned int val,
|
|
|
|
unsigned int base, unsigned int modifier, unsigned int max)
|
|
|
|
{
|
|
|
|
u64 ret = val;
|
|
|
|
|
|
|
|
if (modifier < 1)
|
|
|
|
return base;
|
|
|
|
|
|
|
|
if (modifier < base)
|
|
|
|
ret *= modifier;
|
|
|
|
else
|
|
|
|
ret += modifier;
|
|
|
|
|
|
|
|
return min(ret, (u64)max);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned int __shrink_ple_window(unsigned int val,
|
|
|
|
unsigned int base, unsigned int modifier, unsigned int min)
|
|
|
|
{
|
|
|
|
if (modifier < 1)
|
|
|
|
return base;
|
|
|
|
|
|
|
|
if (modifier < base)
|
|
|
|
val /= modifier;
|
|
|
|
else
|
|
|
|
val -= modifier;
|
|
|
|
|
|
|
|
return max(val, min);
|
|
|
|
}
|
|
|
|
|
2015-04-27 21:11:25 +08:00
|
|
|
#define MSR_IA32_CR_PAT_DEFAULT 0x0007040600070406ULL
|
|
|
|
|
2008-07-03 19:59:22 +08:00
|
|
|
static inline void kvm_clear_exception_queue(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
2017-11-20 00:25:43 +08:00
|
|
|
vcpu->arch.exception.pending = false;
|
2017-08-24 18:35:09 +08:00
|
|
|
vcpu->arch.exception.injected = false;
|
2008-07-03 19:59:22 +08:00
|
|
|
}
|
|
|
|
|
2009-05-11 18:35:50 +08:00
|
|
|
static inline void kvm_queue_interrupt(struct kvm_vcpu *vcpu, u8 vector,
|
|
|
|
bool soft)
|
2008-07-03 20:17:01 +08:00
|
|
|
{
|
KVM: x86: Rename interrupt.pending to interrupt.injected
For exceptions & NMIs events, KVM code use the following
coding convention:
*) "pending" represents an event that should be injected to guest at
some point but it's side-effects have not yet occurred.
*) "injected" represents an event that it's side-effects have already
occurred.
However, interrupts don't conform to this coding convention.
All current code flows mark interrupt.pending when it's side-effects
have already taken place (For example, bit moved from LAPIC IRR to
ISR). Therefore, it makes sense to just rename
interrupt.pending to interrupt.injected.
This change follows logic of previous commit 664f8e26b00c ("KVM: X86:
Fix loss of exception which has not yet been injected") which changed
exception to follow this coding convention as well.
It is important to note that in case !lapic_in_kernel(vcpu),
interrupt.pending usage was and still incorrect.
In this case, interrrupt.pending can only be set using one of the
following ioctls: KVM_INTERRUPT, KVM_SET_VCPU_EVENTS and
KVM_SET_SREGS. Looking at how QEMU uses these ioctls, one can see that
QEMU uses them either to re-set an "interrupt.pending" state it has
received from KVM (via KVM_GET_VCPU_EVENTS interrupt.pending or
via KVM_GET_SREGS interrupt_bitmap) or by dispatching a new interrupt
from QEMU's emulated LAPIC which reset bit in IRR and set bit in ISR
before sending ioctl to KVM. So it seems that indeed "interrupt.pending"
in this case is also suppose to represent "interrupt.injected".
However, kvm_cpu_has_interrupt() & kvm_cpu_has_injectable_intr()
is misusing (now named) interrupt.injected in order to return if
there is a pending interrupt.
This leads to nVMX/nSVM not be able to distinguish if it should exit
from L2 to L1 on EXTERNAL_INTERRUPT on pending interrupt or should
re-inject an injected interrupt.
Therefore, add a FIXME at these functions for handling this issue.
This patch introduce no semantics change.
Signed-off-by: Liran Alon <liran.alon@oracle.com>
Reviewed-by: Nikita Leshenko <nikita.leshchenko@oracle.com>
Reviewed-by: Jim Mattson <jmattson@google.com>
Signed-off-by: Krish Sadhukhan <krish.sadhukhan@oracle.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
2018-03-23 08:01:31 +08:00
|
|
|
vcpu->arch.interrupt.injected = true;
|
2009-05-11 18:35:50 +08:00
|
|
|
vcpu->arch.interrupt.soft = soft;
|
2008-07-03 20:17:01 +08:00
|
|
|
vcpu->arch.interrupt.nr = vector;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void kvm_clear_interrupt_queue(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
KVM: x86: Rename interrupt.pending to interrupt.injected
For exceptions & NMIs events, KVM code use the following
coding convention:
*) "pending" represents an event that should be injected to guest at
some point but it's side-effects have not yet occurred.
*) "injected" represents an event that it's side-effects have already
occurred.
However, interrupts don't conform to this coding convention.
All current code flows mark interrupt.pending when it's side-effects
have already taken place (For example, bit moved from LAPIC IRR to
ISR). Therefore, it makes sense to just rename
interrupt.pending to interrupt.injected.
This change follows logic of previous commit 664f8e26b00c ("KVM: X86:
Fix loss of exception which has not yet been injected") which changed
exception to follow this coding convention as well.
It is important to note that in case !lapic_in_kernel(vcpu),
interrupt.pending usage was and still incorrect.
In this case, interrrupt.pending can only be set using one of the
following ioctls: KVM_INTERRUPT, KVM_SET_VCPU_EVENTS and
KVM_SET_SREGS. Looking at how QEMU uses these ioctls, one can see that
QEMU uses them either to re-set an "interrupt.pending" state it has
received from KVM (via KVM_GET_VCPU_EVENTS interrupt.pending or
via KVM_GET_SREGS interrupt_bitmap) or by dispatching a new interrupt
from QEMU's emulated LAPIC which reset bit in IRR and set bit in ISR
before sending ioctl to KVM. So it seems that indeed "interrupt.pending"
in this case is also suppose to represent "interrupt.injected".
However, kvm_cpu_has_interrupt() & kvm_cpu_has_injectable_intr()
is misusing (now named) interrupt.injected in order to return if
there is a pending interrupt.
This leads to nVMX/nSVM not be able to distinguish if it should exit
from L2 to L1 on EXTERNAL_INTERRUPT on pending interrupt or should
re-inject an injected interrupt.
Therefore, add a FIXME at these functions for handling this issue.
This patch introduce no semantics change.
Signed-off-by: Liran Alon <liran.alon@oracle.com>
Reviewed-by: Nikita Leshenko <nikita.leshchenko@oracle.com>
Reviewed-by: Jim Mattson <jmattson@google.com>
Signed-off-by: Krish Sadhukhan <krish.sadhukhan@oracle.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
2018-03-23 08:01:31 +08:00
|
|
|
vcpu->arch.interrupt.injected = false;
|
2008-07-03 20:17:01 +08:00
|
|
|
}
|
|
|
|
|
2009-05-11 18:35:46 +08:00
|
|
|
static inline bool kvm_event_needs_reinjection(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
KVM: x86: Rename interrupt.pending to interrupt.injected
For exceptions & NMIs events, KVM code use the following
coding convention:
*) "pending" represents an event that should be injected to guest at
some point but it's side-effects have not yet occurred.
*) "injected" represents an event that it's side-effects have already
occurred.
However, interrupts don't conform to this coding convention.
All current code flows mark interrupt.pending when it's side-effects
have already taken place (For example, bit moved from LAPIC IRR to
ISR). Therefore, it makes sense to just rename
interrupt.pending to interrupt.injected.
This change follows logic of previous commit 664f8e26b00c ("KVM: X86:
Fix loss of exception which has not yet been injected") which changed
exception to follow this coding convention as well.
It is important to note that in case !lapic_in_kernel(vcpu),
interrupt.pending usage was and still incorrect.
In this case, interrrupt.pending can only be set using one of the
following ioctls: KVM_INTERRUPT, KVM_SET_VCPU_EVENTS and
KVM_SET_SREGS. Looking at how QEMU uses these ioctls, one can see that
QEMU uses them either to re-set an "interrupt.pending" state it has
received from KVM (via KVM_GET_VCPU_EVENTS interrupt.pending or
via KVM_GET_SREGS interrupt_bitmap) or by dispatching a new interrupt
from QEMU's emulated LAPIC which reset bit in IRR and set bit in ISR
before sending ioctl to KVM. So it seems that indeed "interrupt.pending"
in this case is also suppose to represent "interrupt.injected".
However, kvm_cpu_has_interrupt() & kvm_cpu_has_injectable_intr()
is misusing (now named) interrupt.injected in order to return if
there is a pending interrupt.
This leads to nVMX/nSVM not be able to distinguish if it should exit
from L2 to L1 on EXTERNAL_INTERRUPT on pending interrupt or should
re-inject an injected interrupt.
Therefore, add a FIXME at these functions for handling this issue.
This patch introduce no semantics change.
Signed-off-by: Liran Alon <liran.alon@oracle.com>
Reviewed-by: Nikita Leshenko <nikita.leshchenko@oracle.com>
Reviewed-by: Jim Mattson <jmattson@google.com>
Signed-off-by: Krish Sadhukhan <krish.sadhukhan@oracle.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
2018-03-23 08:01:31 +08:00
|
|
|
return vcpu->arch.exception.injected || vcpu->arch.interrupt.injected ||
|
2009-05-11 18:35:46 +08:00
|
|
|
vcpu->arch.nmi_injected;
|
|
|
|
}
|
2009-05-11 18:35:50 +08:00
|
|
|
|
|
|
|
static inline bool kvm_exception_is_soft(unsigned int nr)
|
|
|
|
{
|
|
|
|
return (nr == BP_VECTOR) || (nr == OF_VECTOR);
|
|
|
|
}
|
2009-07-05 22:39:35 +08:00
|
|
|
|
2010-01-21 21:31:48 +08:00
|
|
|
static inline bool is_protmode(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return kvm_read_cr0_bits(vcpu, X86_CR0_PE);
|
|
|
|
}
|
|
|
|
|
2010-01-21 21:31:49 +08:00
|
|
|
static inline int is_long_mode(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_X86_64
|
2010-01-21 21:31:50 +08:00
|
|
|
return vcpu->arch.efer & EFER_LMA;
|
2010-01-21 21:31:49 +08:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-06-18 22:19:23 +08:00
|
|
|
static inline bool is_64_bit_mode(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
int cs_db, cs_l;
|
|
|
|
|
|
|
|
if (!is_long_mode(vcpu))
|
|
|
|
return false;
|
2020-03-22 04:26:00 +08:00
|
|
|
kvm_x86_ops.get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
|
2014-06-18 22:19:23 +08:00
|
|
|
return cs_l;
|
|
|
|
}
|
|
|
|
|
2017-08-24 20:27:55 +08:00
|
|
|
static inline bool is_la57_mode(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
return (vcpu->arch.efer & EFER_LMA) &&
|
|
|
|
kvm_read_cr4_bits(vcpu, X86_CR4_LA57);
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-06-21 08:21:29 +08:00
|
|
|
static inline bool x86_exception_has_error_code(unsigned int vector)
|
|
|
|
{
|
|
|
|
static u32 exception_has_error_code = BIT(DF_VECTOR) | BIT(TS_VECTOR) |
|
|
|
|
BIT(NP_VECTOR) | BIT(SS_VECTOR) | BIT(GP_VECTOR) |
|
|
|
|
BIT(PF_VECTOR) | BIT(AC_VECTOR);
|
|
|
|
|
|
|
|
return (1U << vector) & exception_has_error_code;
|
|
|
|
}
|
|
|
|
|
2010-09-10 23:30:50 +08:00
|
|
|
static inline bool mmu_is_nested(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return vcpu->arch.walk_mmu == &vcpu->arch.nested_mmu;
|
|
|
|
}
|
|
|
|
|
2010-01-21 21:31:49 +08:00
|
|
|
static inline int is_pae(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return kvm_read_cr4_bits(vcpu, X86_CR4_PAE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int is_pse(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return kvm_read_cr4_bits(vcpu, X86_CR4_PSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int is_paging(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
2012-03-08 19:45:54 +08:00
|
|
|
return likely(kvm_read_cr0_bits(vcpu, X86_CR0_PG));
|
2010-01-21 21:31:49 +08:00
|
|
|
}
|
|
|
|
|
2019-06-07 00:52:44 +08:00
|
|
|
static inline bool is_pae_paging(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return !is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu);
|
|
|
|
}
|
|
|
|
|
2017-08-24 20:27:56 +08:00
|
|
|
static inline u8 vcpu_virt_addr_bits(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return kvm_read_cr4_bits(vcpu, X86_CR4_LA57) ? 57 : 48;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u64 get_canonical(u64 la, u8 vaddr_bits)
|
|
|
|
{
|
|
|
|
return ((int64_t)la << (64 - vaddr_bits)) >> (64 - vaddr_bits);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool is_noncanonical_address(u64 la, struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return get_canonical(la, vcpu_virt_addr_bits(vcpu)) != la;
|
|
|
|
}
|
|
|
|
|
2011-07-12 03:23:20 +08:00
|
|
|
static inline void vcpu_cache_mmio_info(struct kvm_vcpu *vcpu,
|
|
|
|
gva_t gva, gfn_t gfn, unsigned access)
|
|
|
|
{
|
2019-02-06 05:01:13 +08:00
|
|
|
u64 gen = kvm_memslots(vcpu->kvm)->generation;
|
|
|
|
|
KVM: Explicitly define the "memslot update in-progress" bit
KVM uses bit 0 of the memslots generation as an "update in-progress"
flag, which is used by x86 to prevent caching MMIO access while the
memslots are changing. Although the intended behavior is flag-like,
e.g. MMIO sptes intentionally drop the in-progress bit so as to avoid
caching data from in-flux memslots, the implementation oftentimes treats
the bit as part of the generation number itself, e.g. incrementing the
generation increments twice, once to set the flag and once to clear it.
Prior to commit 4bd518f1598d ("KVM: use separate generations for
each address space"), incorporating the "update in-progress" bit into
the generation number largely made sense, e.g. "real" generations are
even, "bogus" generations are odd, most code doesn't need to be aware of
the bit, etc...
Now that unique memslots generation numbers are assigned to each address
space, stealthing the in-progress status into the generation number
results in a wide variety of subtle code, e.g. kvm_create_vm() jumps
over bit 0 when initializing the memslots generation without any hint as
to why.
Explicitly define the flag and convert as much code as possible (which
isn't much) to actually treat it like a flag. This paves the way for
eventually using a different bit for "update in-progress" so that it can
be a flag in truth instead of a awkward extension to the generation
number.
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2019-02-06 05:01:14 +08:00
|
|
|
if (unlikely(gen & KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS))
|
2019-02-06 05:01:13 +08:00
|
|
|
return;
|
|
|
|
|
2017-08-18 00:36:58 +08:00
|
|
|
/*
|
|
|
|
* If this is a shadow nested page table, the "GVA" is
|
|
|
|
* actually a nGPA.
|
|
|
|
*/
|
|
|
|
vcpu->arch.mmio_gva = mmu_is_nested(vcpu) ? 0 : gva & PAGE_MASK;
|
2019-08-02 04:35:21 +08:00
|
|
|
vcpu->arch.mmio_access = access;
|
2011-07-12 03:23:20 +08:00
|
|
|
vcpu->arch.mmio_gfn = gfn;
|
2019-02-06 05:01:13 +08:00
|
|
|
vcpu->arch.mmio_gen = gen;
|
2014-08-19 06:46:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool vcpu_match_mmio_gen(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return vcpu->arch.mmio_gen == kvm_memslots(vcpu->kvm)->generation;
|
2011-07-12 03:23:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-08-19 06:46:07 +08:00
|
|
|
* Clear the mmio cache info for the given gva. If gva is MMIO_GVA_ANY, we
|
|
|
|
* clear all mmio cache info.
|
2011-07-12 03:23:20 +08:00
|
|
|
*/
|
2014-08-19 06:46:07 +08:00
|
|
|
#define MMIO_GVA_ANY (~(gva_t)0)
|
|
|
|
|
2011-07-12 03:23:20 +08:00
|
|
|
static inline void vcpu_clear_mmio_info(struct kvm_vcpu *vcpu, gva_t gva)
|
|
|
|
{
|
2014-08-19 06:46:07 +08:00
|
|
|
if (gva != MMIO_GVA_ANY && vcpu->arch.mmio_gva != (gva & PAGE_MASK))
|
2011-07-12 03:23:20 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
vcpu->arch.mmio_gva = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool vcpu_match_mmio_gva(struct kvm_vcpu *vcpu, unsigned long gva)
|
|
|
|
{
|
2014-08-19 06:46:07 +08:00
|
|
|
if (vcpu_match_mmio_gen(vcpu) && vcpu->arch.mmio_gva &&
|
|
|
|
vcpu->arch.mmio_gva == (gva & PAGE_MASK))
|
2011-07-12 03:23:20 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool vcpu_match_mmio_gpa(struct kvm_vcpu *vcpu, gpa_t gpa)
|
|
|
|
{
|
2014-08-19 06:46:07 +08:00
|
|
|
if (vcpu_match_mmio_gen(vcpu) && vcpu->arch.mmio_gfn &&
|
|
|
|
vcpu->arch.mmio_gfn == gpa >> PAGE_SHIFT)
|
2011-07-12 03:23:20 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-09-28 05:45:20 +08:00
|
|
|
static inline unsigned long kvm_register_readl(struct kvm_vcpu *vcpu, int reg)
|
2014-06-18 22:19:23 +08:00
|
|
|
{
|
|
|
|
unsigned long val = kvm_register_read(vcpu, reg);
|
|
|
|
|
|
|
|
return is_64_bit_mode(vcpu) ? val : (u32)val;
|
|
|
|
}
|
|
|
|
|
2014-06-18 22:19:26 +08:00
|
|
|
static inline void kvm_register_writel(struct kvm_vcpu *vcpu,
|
2019-09-28 05:45:20 +08:00
|
|
|
int reg, unsigned long val)
|
2014-06-18 22:19:26 +08:00
|
|
|
{
|
|
|
|
if (!is_64_bit_mode(vcpu))
|
|
|
|
val = (u32)val;
|
|
|
|
return kvm_register_write(vcpu, reg, val);
|
|
|
|
}
|
|
|
|
|
2015-07-23 14:22:45 +08:00
|
|
|
static inline bool kvm_check_has_quirk(struct kvm *kvm, u64 quirk)
|
|
|
|
{
|
|
|
|
return !(kvm->arch.disabled_quirks & quirk);
|
|
|
|
}
|
|
|
|
|
2019-11-11 17:16:40 +08:00
|
|
|
static inline bool kvm_vcpu_latch_init(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
2020-03-22 04:26:00 +08:00
|
|
|
return is_smm(vcpu) || kvm_x86_ops.apic_init_signal_blocked(vcpu);
|
2019-11-11 17:16:40 +08:00
|
|
|
}
|
|
|
|
|
2015-01-02 11:05:18 +08:00
|
|
|
void kvm_set_pending_timer(struct kvm_vcpu *vcpu);
|
2019-08-28 05:40:36 +08:00
|
|
|
void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip);
|
2010-04-19 13:32:45 +08:00
|
|
|
|
2012-11-30 04:42:12 +08:00
|
|
|
void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr);
|
2016-09-01 20:21:03 +08:00
|
|
|
u64 get_kvmclock_ns(struct kvm *kvm);
|
2010-08-20 16:07:17 +08:00
|
|
|
|
2018-06-06 23:37:49 +08:00
|
|
|
int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
|
2011-05-26 04:04:56 +08:00
|
|
|
gva_t addr, void *val, unsigned int bytes,
|
|
|
|
struct x86_exception *exception);
|
|
|
|
|
2018-06-06 23:37:49 +08:00
|
|
|
int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu,
|
2011-05-26 04:08:00 +08:00
|
|
|
gva_t addr, void *val, unsigned int bytes,
|
|
|
|
struct x86_exception *exception);
|
|
|
|
|
2018-04-04 07:28:48 +08:00
|
|
|
int handle_ud(struct kvm_vcpu *vcpu);
|
|
|
|
|
2018-10-17 05:29:22 +08:00
|
|
|
void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu);
|
|
|
|
|
2015-06-15 16:55:31 +08:00
|
|
|
void kvm_vcpu_mtrr_init(struct kvm_vcpu *vcpu);
|
2015-06-15 16:55:22 +08:00
|
|
|
u8 kvm_mtrr_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn);
|
2014-09-19 03:39:44 +08:00
|
|
|
bool kvm_mtrr_valid(struct kvm_vcpu *vcpu, u32 msr, u64 data);
|
2015-06-15 16:55:22 +08:00
|
|
|
int kvm_mtrr_set_msr(struct kvm_vcpu *vcpu, u32 msr, u64 data);
|
|
|
|
int kvm_mtrr_get_msr(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
|
2015-06-15 16:55:35 +08:00
|
|
|
bool kvm_mtrr_check_gfn_range_consistency(struct kvm_vcpu *vcpu, gfn_t gfn,
|
|
|
|
int page_num);
|
2016-01-25 16:53:33 +08:00
|
|
|
bool kvm_vector_hashing_enabled(void);
|
2019-12-07 07:57:14 +08:00
|
|
|
int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
|
2018-08-24 04:56:53 +08:00
|
|
|
int emulation_type, void *insn, int insn_len);
|
2019-11-21 11:17:11 +08:00
|
|
|
enum exit_fastpath_completion handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu);
|
2014-09-19 03:39:44 +08:00
|
|
|
|
2011-11-23 22:30:32 +08:00
|
|
|
extern u64 host_xcr0;
|
2020-03-03 07:56:23 +08:00
|
|
|
extern u64 supported_xcr0;
|
2020-03-05 23:11:56 +08:00
|
|
|
extern u64 supported_xss;
|
2014-02-24 19:15:16 +08:00
|
|
|
|
2020-03-03 07:56:25 +08:00
|
|
|
static inline bool kvm_mpx_supported(void)
|
|
|
|
{
|
|
|
|
return (supported_xcr0 & (XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR))
|
|
|
|
== (XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR);
|
|
|
|
}
|
|
|
|
|
2014-01-06 22:00:02 +08:00
|
|
|
extern unsigned int min_timer_period_us;
|
|
|
|
|
2018-03-12 19:12:47 +08:00
|
|
|
extern bool enable_vmware_backdoor;
|
|
|
|
|
2019-07-06 09:26:51 +08:00
|
|
|
extern int pi_inject_timer;
|
|
|
|
|
2012-08-05 20:58:32 +08:00
|
|
|
extern struct static_key kvm_no_apic_vcpu;
|
2016-01-22 18:39:22 +08:00
|
|
|
|
2016-06-21 09:28:02 +08:00
|
|
|
static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec)
|
|
|
|
{
|
|
|
|
return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult,
|
|
|
|
vcpu->arch.virtual_tsc_shift);
|
|
|
|
}
|
|
|
|
|
2016-01-22 18:39:22 +08:00
|
|
|
/* Same "calling convention" as do_div:
|
|
|
|
* - divide (n << 32) by base
|
|
|
|
* - put result in n
|
|
|
|
* - return remainder
|
|
|
|
*/
|
|
|
|
#define do_shl32_div32(n, base) \
|
|
|
|
({ \
|
|
|
|
u32 __quot, __rem; \
|
|
|
|
asm("divl %2" : "=a" (__quot), "=d" (__rem) \
|
|
|
|
: "rm" (base), "0" (0), "1" ((u32) n)); \
|
|
|
|
n = __quot; \
|
|
|
|
__rem; \
|
|
|
|
})
|
|
|
|
|
2018-03-12 19:53:02 +08:00
|
|
|
static inline bool kvm_mwait_in_guest(struct kvm *kvm)
|
2017-04-21 18:27:17 +08:00
|
|
|
{
|
2018-03-12 19:53:02 +08:00
|
|
|
return kvm->arch.mwait_in_guest;
|
2017-04-21 18:27:17 +08:00
|
|
|
}
|
|
|
|
|
2018-03-12 19:53:03 +08:00
|
|
|
static inline bool kvm_hlt_in_guest(struct kvm *kvm)
|
|
|
|
{
|
|
|
|
return kvm->arch.hlt_in_guest;
|
|
|
|
}
|
|
|
|
|
2018-03-12 19:53:04 +08:00
|
|
|
static inline bool kvm_pause_in_guest(struct kvm *kvm)
|
|
|
|
{
|
|
|
|
return kvm->arch.pause_in_guest;
|
|
|
|
}
|
|
|
|
|
2019-05-21 14:06:53 +08:00
|
|
|
static inline bool kvm_cstate_in_guest(struct kvm *kvm)
|
|
|
|
{
|
|
|
|
return kvm->arch.cstate_in_guest;
|
|
|
|
}
|
|
|
|
|
2017-07-26 08:20:32 +08:00
|
|
|
DECLARE_PER_CPU(struct kvm_vcpu *, current_vcpu);
|
|
|
|
|
|
|
|
static inline void kvm_before_interrupt(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
__this_cpu_write(current_vcpu, vcpu);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void kvm_after_interrupt(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
__this_cpu_write(current_vcpu, NULL);
|
|
|
|
}
|
|
|
|
|
2019-04-10 17:41:40 +08:00
|
|
|
|
|
|
|
static inline bool kvm_pat_valid(u64 data)
|
|
|
|
{
|
|
|
|
if (data & 0xF8F8F8F8F8F8F8F8ull)
|
|
|
|
return false;
|
|
|
|
/* 0, 1, 4, 5, 6, 7 are valid values. */
|
|
|
|
return (data | ((data & 0x0202020202020202ull) << 1)) == data;
|
|
|
|
}
|
|
|
|
|
2020-01-25 07:07:22 +08:00
|
|
|
static inline bool kvm_dr7_valid(u64 data)
|
2020-01-16 08:54:32 +08:00
|
|
|
{
|
|
|
|
/* Bits [63:32] are reserved */
|
|
|
|
return !(data >> 32);
|
|
|
|
}
|
|
|
|
|
2019-10-22 07:30:25 +08:00
|
|
|
void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu);
|
|
|
|
void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu);
|
2020-01-20 23:33:06 +08:00
|
|
|
u64 kvm_spec_ctrl_valid_bits(struct kvm_vcpu *vcpu);
|
2019-04-10 17:41:40 +08:00
|
|
|
|
2008-07-03 19:59:22 +08:00
|
|
|
#endif
|