Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752317AbdF3R6e (ORCPT ); Fri, 30 Jun 2017 13:58:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33034 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751657AbdF3R6d (ORCPT ); Fri, 30 Jun 2017 13:58:33 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 9730CC0587F1 Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=bsd@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 9730CC0587F1 From: Bandan Das To: Jim Mattson Cc: kvm list , Paolo Bonzini , LKML Subject: Re: [PATCH 0/2] Expose VMFUNC to the nested hypervisor References: <20170629232956.12300-1-bsd@redhat.com> Date: Fri, 30 Jun 2017 13:58:31 -0400 In-Reply-To: (Jim Mattson's message of "Fri, 30 Jun 2017 10:06:43 -0700") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Fri, 30 Jun 2017 17:58:32 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1317 Lines: 35 Jim Mattson writes: > Isn't McAfee DeepSAFE defunct? Are there any other consumers of EPTP switching? I don't know of any real users but I think we should be providing this functionality to the L1 hypervisor :) IIRC, Xen lets you use EPTP switching as part of VM introspection ? Bandan > On Thu, Jun 29, 2017 at 4:29 PM, Bandan Das wrote: >> These patches expose eptp switching/vmfunc to the nested hypervisor. Testing with >> kvm-unit-tests seems to work ok. >> >> If the guest hypervisor enables vmfunc/eptp switching, a "shadow" eptp list >> address page is written to the VMCS. Initially, it would be unpopulated which >> would result in a vmexit with exit reason 59. This hooks to handle_vmfunc() >> to rewrite vmcs12->ept_pointer to reload the mmu and get a new root hpa. >> This new shadow ept pointer is written to the shadow eptp list in the given >> index. A next vmfunc call to switch to the given index would succeed without >> an exit. >> >> Bandan Das (2): >> KVM: nVMX: Implement EPTP switching for the L1 hypervisor >> KVM: nVMX: Advertise VMFUNC to L1 hypervisor >> >> arch/x86/include/asm/vmx.h | 9 ++++ >> arch/x86/kvm/vmx.c | 122 +++++++++++++++++++++++++++++++++++++++++++++ >> 2 files changed, 131 insertions(+) >> >> -- >> 2.9.4 >>