Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761066AbaJaGrd (ORCPT ); Fri, 31 Oct 2014 02:47:33 -0400 Received: from mga03.intel.com ([134.134.136.65]:62132 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759064AbaJaGrb (ORCPT ); Fri, 31 Oct 2014 02:47:31 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,293,1413270000"; d="scan'208";a="628820225" Message-ID: <54533080.4070202@intel.com> Date: Fri, 31 Oct 2014 14:47:28 +0800 From: "Chen, Tiejun" User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: Wanpeng Li , Paolo Bonzini CC: Gleb Natapov , Alexei Starovoitov , Takashi Iwai , kvm@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] KVM: x86: fix access memslots w/o hold srcu read lock References: <1414736819-9625-1-git-send-email-wanpeng.li@linux.intel.com> In-Reply-To: <1414736819-9625-1-git-send-email-wanpeng.li@linux.intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2014/10/31 14:26, Wanpeng Li wrote: > The srcu read lock must be held while accessing memslots (e.g. > when using gfn_to_* functions), however, commit c24ae0dcd3e8 > ("kvm: x86: Unpin and remove kvm_arch->apic_access_page") call > gfn_to_page() in kvm_vcpu_reload_apic_access_page() w/o hold it in > vmx_vcpu_reset() path which leads to suspicious rcu_dereference_check() > usage warning. This patch fix it by holding srcu read lock when call > gfn_to_page() in vmx_vcpu_reset() path. > > > [ INFO: suspicious RCU usage. ] > 3.18.0-rc2-test2+ #70 Not tainted > ------------------------------- > include/linux/kvm_host.h:474 suspicious rcu_dereference_check() usage! > > other info that might help us debug this: > > rcu_scheduler_active = 1, debug_locks = 0 > 1 lock held by qemu-system-x86/2371: > #0: (&vcpu->mutex){+.+...}, at: [] vcpu_load+0x20/0xd0 [kvm] > > stack backtrace: > CPU: 4 PID: 2371 Comm: qemu-system-x86 Not tainted 3.18.0-rc2-test2+ #70 > Hardware name: Dell Inc. OptiPlex 9010/0M9KCM, BIOS A12 01/10/2013 > 0000000000000001 ffff880209983ca8 ffffffff816f514f 0000000000000000 > ffff8802099b8990 ffff880209983cd8 ffffffff810bd687 00000000000fee00 > ffff880208a2c000 ffff880208a10000 ffff88020ef50040 ffff880209983d08 > Call Trace: > [] dump_stack+0x4e/0x71 > [] lockdep_rcu_suspicious+0xe7/0x120 > [] gfn_to_memslot+0xd5/0xe0 [kvm] > [] __gfn_to_pfn+0x33/0x60 [kvm] > [] gfn_to_page+0x25/0x90 [kvm] > [] kvm_vcpu_reload_apic_access_page+0x3c/0x80 [kvm] > [] vmx_vcpu_reset+0x20c/0x460 [kvm_intel] > [] kvm_vcpu_reset+0x15e/0x1b0 [kvm] > [] kvm_arch_vcpu_setup+0x2c/0x50 [kvm] > [] kvm_vm_ioctl+0x1d0/0x780 [kvm] > [] ? __lock_is_held+0x54/0x80 > [] do_vfs_ioctl+0x300/0x520 > [] ? __fget+0x5/0x250 > [] ? __fget_light+0x2a/0xe0 > [] SyS_ioctl+0x81/0xa0 > [] system_call_fastpath+0x16/0x1b > > Reported-by: Takashi Iwai > Reported-by: Alexei Starovoitov > Suggested-by: Tiejun Chen Reviewed-by: Tiejun Chen > Signed-off-by: Wanpeng Li > --- > arch/x86/kvm/vmx.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c > index a0f78db..bd9be01 100644 > --- a/arch/x86/kvm/vmx.c > +++ b/arch/x86/kvm/vmx.c > @@ -4512,6 +4512,7 @@ static void vmx_vcpu_reset(struct kvm_vcpu *vcpu) > { > struct vcpu_vmx *vmx = to_vmx(vcpu); > struct msr_data apic_base_msr; > + int idx; > > vmx->rmode.vm86_active = 0; > > @@ -4579,7 +4580,9 @@ static void vmx_vcpu_reset(struct kvm_vcpu *vcpu) > vmcs_write32(TPR_THRESHOLD, 0); > } > > + idx = srcu_read_lock(&vcpu->kvm->srcu); > kvm_vcpu_reload_apic_access_page(vcpu); > + srcu_read_unlock(&vcpu->kvm->srcu, idx); > > if (vmx_vm_has_apicv(vcpu->kvm)) > memset(&vmx->pi_desc, 0, sizeof(struct pi_desc)); > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/