Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751972AbdHAOzj (ORCPT ); Tue, 1 Aug 2017 10:55:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51846 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751295AbdHAOzh (ORCPT ); Tue, 1 Aug 2017 10:55:37 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 5FFFE209998 Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=rkrcmar@redhat.com Date: Tue, 1 Aug 2017 16:55:31 +0200 From: Radim =?utf-8?B?S3LEjW3DocWZ?= To: David Hildenbrand Cc: Bandan Das , kvm@vger.kernel.org, pbonzini@redhat.com, jmattson@google.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH v5 3/3] KVM: nVMX: Emulate EPTP switching for the L1 hypervisor Message-ID: <20170801145531.GB302@flask> References: <20170728195245.1018-1-bsd@redhat.com> <20170728195245.1018-4-bsd@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Tue, 01 Aug 2017 14:55:37 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2282 Lines: 62 2017-08-01 13:40+0200, David Hildenbrand: > On 31.07.2017 21:32, Bandan Das wrote: > > David Hildenbrand writes: > >>> + /* AD, if set, should be supported */ > >>> + if ((address & VMX_EPT_AD_ENABLE_BIT)) { > >>> + if (!enable_ept_ad_bits) > >>> + return false; > >>> + mmu->ept_ad = true; > >>> + } else > >>> + mmu->ept_ad = false; This block should also set the mmu->base_role.ad_disabled. (The idea being that things should be done as if the EPTP was set during a VM entry. The only notable difference is that we do not reload PDPTRS.) > >> I wouldn't expect a "check" function to modify the mmu. Can you move > >> modifying the mmu outside of this function (leaving the > >> enable_ept_ad_bits check in place)? (and maybe even set mmu->ept_ad > >> _after_ the kvm_mmu_unload(vcpu)?, just when setting vmcs12->ept_pointer?) > >> > > > > Well, the correct thing to do is have a wrapper around it in mmu.c > > without directly calling here and also call this function before > > nested_mmu is initialized. I am working on a separate patch for this btw. > > Sounds good. Also thought that encapsulating this might be a good option. Seconded. :) > >>> + if (vmcs12->ept_pointer != address) { > >>> + if (!check_ept_address_valid(vcpu, address)) { > >>> + kunmap(page); > >>> + nested_release_page_clean(page); > >>> + return 1; > >>> + } > >>> + kvm_mmu_unload(vcpu); > >>> + vmcs12->ept_pointer = address; > >>> + /* > >>> + * TODO: Check what's the correct approach in case > >>> + * mmu reload fails. Currently, we just let the next > >>> + * reload potentially fail > >>> + */ > >>> + kvm_mmu_reload(vcpu); > >> > >> So, what actually happens if this generates a tripple fault? I guess we > >> will kill the (nested) hypervisor? > > > > Yes. Not sure what's the right thing to do is though... Right, we even drop kvm_mmu_reload() here for now and let the one in vcpu_enter_guest() take care of the thing. > Wonder what happens on real hardware. This operation cannot fail or real hardware. All addresses within the physical address limit return something when read. On Intel, this is a value with all bits set (-1) and will cause an EPT misconfiguration VM exit on the next page walk (instruction decoding). Thanks.