lkml.org 
[lkml]   [2021]   [Dec]   [31]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v5 6/8] KVM: VMX: enable IPI virtualization
    Date
    From: Gao Chao <chao.gao@intel.com>

    With IPI virtualization enabled, the processor emulates writes to
    APIC registers that would send IPIs. The processor sets the bit
    corresponding to the vector in target vCPU's PIR and may send a
    notification (IPI) specified by NDST and NV fields in target vCPU's
    Posted-Interrupt Descriptor (PID). It is similar to what IOMMU
    engine does when dealing with posted interrupt from devices.

    A PID-pointer table is used by the processor to locate the PID of a
    vCPU with the vCPU's APIC ID.

    Like VT-d PI, if a vCPU goes to blocked state, VMM needs to switch its
    notification vector to wakeup vector. This can ensure that when an IPI
    for blocked vCPUs arrives, VMM can get control and wake up blocked
    vCPUs. And if a VCPU is preempted, its posted interrupt notification
    is suppressed.

    Note that IPI virtualization can only virualize physical-addressing,
    flat mode, unicast IPIs. Sending other IPIs would still cause a
    trap-like APIC-write VM-exit and need to be handled by VMM.

    Signed-off-by: Gao Chao <chao.gao@intel.com>
    Signed-off-by: Zeng Guang <guang.zeng@intel.com>
    ---
    arch/x86/include/asm/vmx.h | 8 ++++
    arch/x86/include/asm/vmxfeatures.h | 2 +
    arch/x86/kvm/vmx/capabilities.h | 7 +++
    arch/x86/kvm/vmx/posted_intr.c | 9 +++-
    arch/x86/kvm/vmx/vmx.c | 74 +++++++++++++++++++++++++++---
    arch/x86/kvm/vmx/vmx.h | 3 ++
    6 files changed, 94 insertions(+), 9 deletions(-)

    diff --git a/arch/x86/include/asm/vmx.h b/arch/x86/include/asm/vmx.h
    index 8c929596a299..b79b6438acaa 100644
    --- a/arch/x86/include/asm/vmx.h
    +++ b/arch/x86/include/asm/vmx.h
    @@ -76,6 +76,11 @@
    #define SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE VMCS_CONTROL_BIT(USR_WAIT_PAUSE)
    #define SECONDARY_EXEC_BUS_LOCK_DETECTION VMCS_CONTROL_BIT(BUS_LOCK_DETECTION)

    +/*
    + * Definitions of Tertiary Processor-Based VM-Execution Controls.
    + */
    +#define TERTIARY_EXEC_IPI_VIRT VMCS_CONTROL_BIT(IPI_VIRT)
    +
    #define PIN_BASED_EXT_INTR_MASK VMCS_CONTROL_BIT(INTR_EXITING)
    #define PIN_BASED_NMI_EXITING VMCS_CONTROL_BIT(NMI_EXITING)
    #define PIN_BASED_VIRTUAL_NMIS VMCS_CONTROL_BIT(VIRTUAL_NMIS)
    @@ -159,6 +164,7 @@ static inline int vmx_misc_mseg_revid(u64 vmx_misc)
    enum vmcs_field {
    VIRTUAL_PROCESSOR_ID = 0x00000000,
    POSTED_INTR_NV = 0x00000002,
    + LAST_PID_POINTER_INDEX = 0x00000008,
    GUEST_ES_SELECTOR = 0x00000800,
    GUEST_CS_SELECTOR = 0x00000802,
    GUEST_SS_SELECTOR = 0x00000804,
    @@ -224,6 +230,8 @@ enum vmcs_field {
    TSC_MULTIPLIER_HIGH = 0x00002033,
    TERTIARY_VM_EXEC_CONTROL = 0x00002034,
    TERTIARY_VM_EXEC_CONTROL_HIGH = 0x00002035,
    + PID_POINTER_TABLE = 0x00002042,
    + PID_POINTER_TABLE_HIGH = 0x00002043,
    GUEST_PHYSICAL_ADDRESS = 0x00002400,
    GUEST_PHYSICAL_ADDRESS_HIGH = 0x00002401,
    VMCS_LINK_POINTER = 0x00002800,
    diff --git a/arch/x86/include/asm/vmxfeatures.h b/arch/x86/include/asm/vmxfeatures.h
    index ff20776dc83b..7ce616af2db2 100644
    --- a/arch/x86/include/asm/vmxfeatures.h
    +++ b/arch/x86/include/asm/vmxfeatures.h
    @@ -86,4 +86,6 @@
    #define VMX_FEATURE_ENCLV_EXITING ( 2*32+ 28) /* "" VM-Exit on ENCLV (leaf dependent) */
    #define VMX_FEATURE_BUS_LOCK_DETECTION ( 2*32+ 30) /* "" VM-Exit when bus lock caused */

    +/* Tertiary Processor-Based VM-Execution Controls, word 3 */
    +#define VMX_FEATURE_IPI_VIRT (3*32 + 4) /* "" Enable IPI virtualization */
    #endif /* _ASM_X86_VMXFEATURES_H */
    diff --git a/arch/x86/kvm/vmx/capabilities.h b/arch/x86/kvm/vmx/capabilities.h
    index 38d414f64e61..78b0525dd991 100644
    --- a/arch/x86/kvm/vmx/capabilities.h
    +++ b/arch/x86/kvm/vmx/capabilities.h
    @@ -12,6 +12,7 @@ extern bool __read_mostly enable_ept;
    extern bool __read_mostly enable_unrestricted_guest;
    extern bool __read_mostly enable_ept_ad_bits;
    extern bool __read_mostly enable_pml;
    +extern bool __read_mostly enable_ipiv;
    extern int __read_mostly pt_mode;

    #define PT_MODE_SYSTEM 0
    @@ -283,6 +284,12 @@ static inline bool cpu_has_vmx_apicv(void)
    cpu_has_vmx_posted_intr();
    }

    +static inline bool cpu_has_vmx_ipiv(void)
    +{
    + return vmcs_config.cpu_based_3rd_exec_ctrl &
    + TERTIARY_EXEC_IPI_VIRT;
    +}
    +
    static inline bool cpu_has_vmx_flexpriority(void)
    {
    return cpu_has_vmx_tpr_shadow() &&
    diff --git a/arch/x86/kvm/vmx/posted_intr.c b/arch/x86/kvm/vmx/posted_intr.c
    index 1c94783b5a54..bd9c9a89726a 100644
    --- a/arch/x86/kvm/vmx/posted_intr.c
    +++ b/arch/x86/kvm/vmx/posted_intr.c
    @@ -85,11 +85,16 @@ static bool vmx_can_use_vtd_pi(struct kvm *kvm)
    irq_remapping_cap(IRQ_POSTING_CAP);
    }

    +static bool vmx_can_use_ipiv_pi(struct kvm *kvm)
    +{
    + return irqchip_in_kernel(kvm) && enable_apicv && enable_ipiv;
    +}
    +
    void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
    {
    struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);

    - if (!vmx_can_use_vtd_pi(vcpu->kvm))
    + if (!(vmx_can_use_ipiv_pi(vcpu->kvm) || vmx_can_use_vtd_pi(vcpu->kvm)))
    return;

    /* Set SN when the vCPU is preempted */
    @@ -147,7 +152,7 @@ int pi_pre_block(struct kvm_vcpu *vcpu)
    struct pi_desc old, new;
    struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);

    - if (!vmx_can_use_vtd_pi(vcpu->kvm))
    + if (!(vmx_can_use_ipiv_pi(vcpu->kvm) || vmx_can_use_vtd_pi(vcpu->kvm)))
    return 0;

    WARN_ON(irqs_disabled());
    diff --git a/arch/x86/kvm/vmx/vmx.c b/arch/x86/kvm/vmx/vmx.c
    index 5716db9704c0..2e65464d6dee 100644
    --- a/arch/x86/kvm/vmx/vmx.c
    +++ b/arch/x86/kvm/vmx/vmx.c
    @@ -104,6 +104,9 @@ module_param(fasteoi, bool, S_IRUGO);

    module_param(enable_apicv, bool, S_IRUGO);

    +bool __read_mostly enable_ipiv = true;
    +module_param(enable_ipiv, bool, 0444);
    +
    /*
    * If nested=1, nested virtualization is supported, i.e., guests may use
    * VMX and be a hypervisor for its own guests. If nested=0, guests may not
    @@ -224,6 +227,11 @@ static const struct {
    };

    #define L1D_CACHE_ORDER 4
    +
    +/* PID(Posted-Interrupt Descriptor)-pointer table entry is 64-bit long */
    +#define MAX_PID_TABLE_ORDER get_order(KVM_MAX_VCPU_IDS * sizeof(u64))
    +#define PID_TABLE_ENTRY_VALID 1
    +
    static void *vmx_l1d_flush_pages;

    static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf)
    @@ -2504,7 +2512,7 @@ static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf,
    }

    if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_TERTIARY_CONTROLS) {
    - u64 opt3 = 0;
    + u64 opt3 = TERTIARY_EXEC_IPI_VIRT;
    u64 min3 = 0;

    if (adjust_vmx_controls_64(min3, opt3,
    @@ -3841,6 +3849,8 @@ static void vmx_update_msr_bitmap_x2apic(struct kvm_vcpu *vcpu)
    vmx_enable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_RW);
    vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
    vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
    + vmx_set_intercept_for_msr(vcpu, X2APIC_MSR(APIC_ICR),
    + MSR_TYPE_RW, !enable_ipiv);
    }
    }

    @@ -4117,14 +4127,21 @@ static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)

    pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
    if (cpu_has_secondary_exec_ctrls()) {
    - if (kvm_vcpu_apicv_active(vcpu))
    + if (kvm_vcpu_apicv_active(vcpu)) {
    secondary_exec_controls_setbit(vmx,
    SECONDARY_EXEC_APIC_REGISTER_VIRT |
    SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
    - else
    + if (cpu_has_tertiary_exec_ctrls() && enable_ipiv)
    + tertiary_exec_controls_setbit(vmx,
    + TERTIARY_EXEC_IPI_VIRT);
    + } else {
    secondary_exec_controls_clearbit(vmx,
    SECONDARY_EXEC_APIC_REGISTER_VIRT |
    SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
    + if (cpu_has_tertiary_exec_ctrls())
    + tertiary_exec_controls_clearbit(vmx,
    + TERTIARY_EXEC_IPI_VIRT);
    + }
    }

    vmx_update_msr_bitmap_x2apic(vcpu);
    @@ -4158,7 +4175,16 @@ static u32 vmx_exec_control(struct vcpu_vmx *vmx)

    static u64 vmx_tertiary_exec_control(struct vcpu_vmx *vmx)
    {
    - return vmcs_config.cpu_based_3rd_exec_ctrl;
    + u64 exec_control = vmcs_config.cpu_based_3rd_exec_ctrl;
    +
    + /*
    + * IPI virtualization relies on APICv. Disable IPI
    + * virtualization if APICv is inhibited.
    + */
    + if (!enable_ipiv || !kvm_vcpu_apicv_active(&vmx->vcpu))
    + exec_control &= ~TERTIARY_EXEC_IPI_VIRT;
    +
    + return exec_control;
    }

    /*
    @@ -4310,6 +4336,9 @@ static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)

    static void init_vmcs(struct vcpu_vmx *vmx)
    {
    + struct kvm_vcpu *vcpu = &vmx->vcpu;
    + struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
    +
    if (nested)
    nested_vmx_set_vmcs_shadowing_bitmap();

    @@ -4329,7 +4358,7 @@ static void init_vmcs(struct vcpu_vmx *vmx)
    if (cpu_has_tertiary_exec_ctrls())
    tertiary_exec_controls_set(vmx, vmx_tertiary_exec_control(vmx));

    - if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
    + if (kvm_vcpu_apicv_active(vcpu)) {
    vmcs_write64(EOI_EXIT_BITMAP0, 0);
    vmcs_write64(EOI_EXIT_BITMAP1, 0);
    vmcs_write64(EOI_EXIT_BITMAP2, 0);
    @@ -4339,6 +4368,13 @@ static void init_vmcs(struct vcpu_vmx *vmx)

    vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
    vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
    +
    + if (enable_ipiv) {
    + WRITE_ONCE(kvm_vmx->pid_table[vcpu->vcpu_id],
    + __pa(&vmx->pi_desc) | PID_TABLE_ENTRY_VALID);
    + vmcs_write64(PID_POINTER_TABLE, __pa(kvm_vmx->pid_table));
    + vmcs_write16(LAST_PID_POINTER_INDEX, kvm_vmx->pid_last_index);
    + }
    }

    if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
    @@ -4390,7 +4426,7 @@ static void init_vmcs(struct vcpu_vmx *vmx)
    vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
    }

    - vmx_write_encls_bitmap(&vmx->vcpu, NULL);
    + vmx_write_encls_bitmap(vcpu, NULL);

    if (vmx_pt_mode_is_host_guest()) {
    memset(&vmx->pt_desc, 0, sizeof(vmx->pt_desc));
    @@ -4406,7 +4442,7 @@ static void init_vmcs(struct vcpu_vmx *vmx)

    if (cpu_has_vmx_tpr_shadow()) {
    vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
    - if (cpu_need_tpr_shadow(&vmx->vcpu))
    + if (cpu_need_tpr_shadow(vcpu))
    vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
    __pa(vmx->vcpu.arch.apic->regs));
    vmcs_write32(TPR_THRESHOLD, 0);
    @@ -6963,6 +6999,18 @@ static int vmx_vm_init(struct kvm *kvm)
    break;
    }
    }
    +
    + if (enable_ipiv) {
    + struct page *pages;
    +
    + pages = alloc_pages(GFP_KERNEL | __GFP_ZERO, MAX_PID_TABLE_ORDER);
    + if (!pages)
    + return -ENOMEM;
    +
    + to_kvm_vmx(kvm)->pid_table = (void *)page_address(pages);
    + to_kvm_vmx(kvm)->pid_last_index = KVM_MAX_VCPU_IDS - 1;
    + }
    +
    return 0;
    }

    @@ -7577,6 +7625,14 @@ static bool vmx_check_apicv_inhibit_reasons(ulong bit)
    return supported & BIT(bit);
    }

    +static void vmx_vm_destroy(struct kvm *kvm)
    +{
    + struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
    +
    + if (kvm_vmx->pid_table)
    + free_pages((unsigned long)kvm_vmx->pid_table, MAX_PID_TABLE_ORDER);
    +}
    +
    static struct kvm_x86_ops vmx_x86_ops __initdata = {
    .name = "kvm_intel",

    @@ -7589,6 +7645,7 @@ static struct kvm_x86_ops vmx_x86_ops __initdata = {

    .vm_size = sizeof(struct kvm_vmx),
    .vm_init = vmx_vm_init,
    + .vm_destroy = vmx_vm_destroy,

    .vcpu_create = vmx_create_vcpu,
    .vcpu_free = vmx_free_vcpu,
    @@ -7828,6 +7885,9 @@ static __init int hardware_setup(void)
    if (!enable_apicv)
    vmx_x86_ops.sync_pir_to_irr = NULL;

    + if (!enable_apicv || !cpu_has_vmx_ipiv())
    + enable_ipiv = false;
    +
    if (cpu_has_vmx_tsc_scaling()) {
    kvm_has_tsc_control = true;
    kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
    diff --git a/arch/x86/kvm/vmx/vmx.h b/arch/x86/kvm/vmx/vmx.h
    index ee94068ca8fb..c8ae1458eb9e 100644
    --- a/arch/x86/kvm/vmx/vmx.h
    +++ b/arch/x86/kvm/vmx/vmx.h
    @@ -353,6 +353,9 @@ struct kvm_vmx {
    unsigned int tss_addr;
    bool ept_identity_pagetable_done;
    gpa_t ept_identity_map_addr;
    + /* PID table for IPI virtualization */
    + u64 *pid_table;
    + u16 pid_last_index;
    };

    bool nested_vmx_allowed(struct kvm_vcpu *vcpu);
    --
    2.27.0
    \
     
     \ /
      Last update: 2021-12-31 16:00    [W:2.626 / U:0.120 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site