Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755365AbcCPRJe (ORCPT ); Wed, 16 Mar 2016 13:09:34 -0400 Received: from mail-oi0-f53.google.com ([209.85.218.53]:34375 "EHLO mail-oi0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752373AbcCPRJc convert rfc822-to-8bit (ORCPT ); Wed, 16 Mar 2016 13:09:32 -0400 MIME-Version: 1.0 In-Reply-To: <56E8D679.9020305@linux.intel.com> References: <1457729240-3846-1-git-send-email-dmatlack@google.com> <56E66C57.9080802@linux.intel.com> <56E8D679.9020305@linux.intel.com> From: David Matlack Date: Wed, 16 Mar 2016 10:09:10 -0700 Message-ID: Subject: Re: [PATCH 0/1] KVM: x86: using the fpu in interrupt context with a guest's xcr0 To: Xiao Guangrong Cc: "linux-kernel@vger.kernel.org" , X86 ML , kvm list , Paolo Bonzini , Ingo Molnar , Andy Lutomirski , "H. Peter Anvin" , Eric Northup Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1811 Lines: 47 On Tue, Mar 15, 2016 at 8:43 PM, Xiao Guangrong wrote: > > > On 03/16/2016 03:01 AM, David Matlack wrote: >> >> On Mon, Mar 14, 2016 at 12:46 AM, Xiao Guangrong >> wrote: >>> >>> On 03/12/2016 04:47 AM, David Matlack wrote: >>> >>>> I have not been able to trigger this bug on Linux 4.3, and suspect >>>> it is due to this commit from Linux 4.2: >>>> >>>> 653f52c kvm,x86: load guest FPU context more eagerly >>>> >>>> With this commit, as long as the host is using eagerfpu, the guest's >>>> fpu is always loaded just before the guest's xcr0 (vcpu->fpu_active >>>> is always 1 in the following snippet): >>>> >>>> 6569 if (vcpu->fpu_active) >>>> 6570 kvm_load_guest_fpu(vcpu); >>>> 6571 kvm_load_guest_xcr0(vcpu); >>>> >>>> When the guest's fpu is loaded, irq_fpu_usable() returns false. >>> >>> Er, i did not see that commit introduced this change. >>> >>>> >>>> We've included our workaround for this bug, which applies to Linux 3.11. >>>> It does not apply cleanly to HEAD since the fpu subsystem was refactored >>>> in Linux 4.2. While the latest kernel does not look vulnerable, we may >>>> want to apply a fix to the vulnerable stable kernels. >>> >>> Is the latest kvm safe if we use !eager fpu? >> >> Yes I believe so. When !eagerfpu, interrupted_kernel_fpu_idle() >> returns "!current->thread.fpu.fpregs_active && (read_cr0() & >> X86_CR0_TS)". This should ensure the interrupt handler never does >> XSAVE/XRSTOR with the guest's xcr0. > > interrupted_kernel_fpu_idle() returns true if KVM-based hypervisor (e.g. > QEMU) > is not using fpu. That can not stop handler using fpu. You are correct, the interrupt handler can still use the fpu. But kernel_fpu_{begin,end} will not execute XSAVE / XRSTOR.