Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752870AbdHPMHL (ORCPT ); Wed, 16 Aug 2017 08:07:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35722 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751522AbdHPMHJ (ORCPT ); Wed, 16 Aug 2017 08:07:09 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com F31D472191 Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=rkrcmar@redhat.com Date: Wed, 16 Aug 2017 14:07:02 +0200 From: Radim =?utf-8?B?S3LEjW3DocWZ?= To: Paolo Bonzini Cc: linux-kernel@vger.kernel.org, kvm@vger.kernel.org, "Michael S . Tsirkin" , stable@vger.kernel.org Subject: Re: [PATCH] kvm: x86: disable KVM_FAST_MMIO_BUS Message-ID: <20170816120702.GC6408@flask> References: <20170816112249.28939-1-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20170816112249.28939-1-pbonzini@redhat.com> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Wed, 16 Aug 2017 12:07:09 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2661 Lines: 63 2017-08-16 13:22+0200, Paolo Bonzini: > Microsoft pointed out privately to me that KVM's handling of > KVM_FAST_MMIO_BUS is invalid. Using skip_emulation_instruction is invalid > in EPT misconfiguration vmexit handlers, because neither EPT violations > nor misconfigurations are listed in the manual among the VM exits that > set the VM-exit instruction length field. > > While physical processors seem to set the field, this is not architectural > and is just a side effect of the implementation. I couldn't convince > myself of any condition on the exit qualification where VM-exit > instruction length "has" to be defined; there are no trap-like VM-exits > that can be repurposed; and fault-like VM-exits such as descriptor-table > exits provide no decoding information. So I don't really see any elegant > way to fix it except by disabling KVM_FAST_MMIO_BUS, which means virtio > 1 will go slower. Do you have some numbers? We could keep the ugliness in KVM and add a new skip function with emulate_instruction(vcpu, EMULTYPE_SKIP) to decode the length of the instruction. (Adding a condition just for EPT violation exit reason to the existing skip function would be a dirtier solution.) Slower than what we have now, but faster than full emulation. I agree that configuring EPT to throw a violation when accessing fast MMIO has many drawbacks (although it seems to be what Intel expected). Thanks. > Adding a hypercall or MSR write that does a fast MMIO write to a physical > address would do it, but it adds hypervisor knowledge in virtio, including > CPUID handling. So it would be pretty ugly in the guest-side implementation, > but if somebody wants to do it and the virtio side is acceptable to the > virtio maintainers, I am okay with it. > > Cc: Michael S. Tsirkin > Cc: Radim Krčmář > Cc: stable@vger.kernel.org > Fixes: 68c3b4d1676d870f0453c31d5a52e7e65c7448ae > Signed-off-by: Paolo Bonzini > --- > arch/x86/kvm/vmx.c | 5 ----- > 1 file changed, 5 deletions(-) > > diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c > index 375dca24cf42..b3eaeb20670d 100644 > --- a/arch/x86/kvm/vmx.c > +++ b/arch/x86/kvm/vmx.c > @@ -6320,11 +6320,6 @@ static int handle_ept_misconfig(struct kvm_vcpu *vcpu) > gpa_t gpa; > > gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); > - if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) { > - trace_kvm_fast_mmio(gpa); > - return kvm_skip_emulated_instruction(vcpu); > - } > - > ret = handle_mmio_page_fault(vcpu, gpa, true); > vcpu->arch.gpa_available = true; > if (likely(ret == RET_MMIO_PF_EMULATE)) > -- > 2.13.5 >