VirtualBox

Changeset 75511 in vbox


Ignore:
Timestamp:
Nov 16, 2018 11:25:07 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
126669
Message:

VMM: Nested VMX: bugref:9180 The APIC-access page handler is registered on VM-entry when the feature is present, so always return VINF_SUCCESS (implying caller should not proceed with the access) unless VM-exit fails.

Location:
trunk/src/VBox/VMM/VMMAll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/CPUMAllVmx.cpp

    r75507 r75511  
    150150    RT_NOREF4(pVM, pvPhys, enmOrigin, pvUser);
    151151
     152    Assert(CPUMIsGuestInVmxNonRootMode(&pVCpu->cpum.s.Guest));
     153    Assert(CPUMIsGuestVmxProcCtls2Set(pVCpu, VMX_PROC_CTLS2_VIRT_APIC_ACCESS));
     154
    152155#ifdef VBOX_STRICT
    153156    RTGCPHYS const GCPhysApicBase   = CPUMGetGuestVmxApicAccessPageAddr(pVCpu, &pVCpu->cpum.s.Guest);
     
    159162    bool const fWrite = RT_BOOL(enmAccessType == PGMACCESSTYPE_WRITE);
    160163    VBOXSTRICTRC rcStrict = IEMExecVmxVirtApicAccessMem(pVCpu, offAccess, cbBuf, pvBuf, fWrite);
    161     if (rcStrict == VINF_VMX_MODIFIES_BEHAVIOR)
    162         rcStrict = VINF_SUCCESS;
    163     return rcStrict;
     164    if (RT_FAILURE(rcStrict))
     165        return rcStrict;
     166
     167    /* Any access on this APIC-access page has been handled, caller should not carry out the access. */
     168    return VINF_SUCCESS;
    164169}
    165170#endif
  • trunk/src/VBox/VMM/VMMAll/IEMAll.cpp

    r75507 r75511  
    1568615686 * @returns Strict VBox status code.
    1568715687 * @retval  VINF_VMX_MODIFIES_BEHAVIOR if the memory access was virtualized.
     15688 * @retval  VINF_VMX_VMEXIT if the access causes a VM-exit.
    1568815689 *
    1568915690 * @param   pVCpu       The cross context virtual CPU structure of the calling EMT.
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette