From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A1852C433F5 for ; Thu, 28 Apr 2022 08:47:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=gfKRBsZDr8mbFRAtAttwBBAvaSidxXekdDwW2zkP8no=; b=tq7tlfE50as9Km X0qLjDbF8S6/SDtdOlqpawzNHzplRQINBrabVDpuwdhkqoVPODhkZQLNESUXktzjILP/aSXu+Q+yn R0lWhfE+FHJV5XlhVi+6AqbkCTSWgI5rHzpJz5xLmweuEwPeEfLL0nQnqC/HExKY4Mj1YMjX21pRV a3Z1fP2646lRsHd8c3XT3E7q/cLcQ1dhY9V7N2bl2h4g/yOSSz9SOayOrUSynmpkxrNdryaReN5RO Vj+GkwJo0d14/OXte9mCw7NigyiubxE5OXNdXhErfgSxrNazgItk9mLdMKHOD0gxjJZrsF7KGD6lh n/EKWP1R+BRRTebNDYtA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1njzn9-005aIK-9o; Thu, 28 Apr 2022 08:46:27 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1njzn5-005aH5-MX for linux-arm-kernel@lists.infradead.org; Thu, 28 Apr 2022 08:46:25 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id BD9FF1474; Thu, 28 Apr 2022 01:46:21 -0700 (PDT) Received: from monolith.localdoman (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 09E693F774; Thu, 28 Apr 2022 01:46:19 -0700 (PDT) Date: Thu, 28 Apr 2022 09:46:21 +0100 From: Alexandru Elisei To: Marc Zyngier Cc: kvm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu, James Morse , Suzuki K Poulose , kernel-team@android.com, Quentin Perret , Will Deacon , Christoffer Dall Subject: Re: [PATCH v2] KVM: arm64: Inject exception on out-of-IPA-range translation fault Message-ID: References: <20220427220434.3097449-1-maz@kernel.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20220427220434.3097449-1-maz@kernel.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220428_014623_867577_511309D2 X-CRM114-Status: GOOD ( 26.03 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi, On Wed, Apr 27, 2022 at 11:04:34PM +0100, Marc Zyngier wrote: > When taking a translation fault for an IPA that is outside of > the range defined by the hypervisor (between the HW PARange and > the IPA range), we stupidly treat it as an IO and forward the access > to userspace. Of course, userspace can't do much with it, and things > end badly. > > Arguably, the guest is braindead, but we should at least catch the > case and inject an exception. > > Check the faulting IPA against: > - the sanitised PARange: inject an address size fault > - the IPA size: inject an abort > > Reported-by: Christoffer Dall > Signed-off-by: Marc Zyngier > --- > arch/arm64/include/asm/kvm_emulate.h | 1 + > arch/arm64/kvm/inject_fault.c | 28 ++++++++++++++++++++++++++++ > arch/arm64/kvm/mmu.c | 19 +++++++++++++++++++ > 3 files changed, 48 insertions(+) > > diff --git a/arch/arm64/include/asm/kvm_emulate.h b/arch/arm64/include/asm/kvm_emulate.h > index 7496deab025a..f71358271b71 100644 > --- a/arch/arm64/include/asm/kvm_emulate.h > +++ b/arch/arm64/include/asm/kvm_emulate.h > @@ -40,6 +40,7 @@ void kvm_inject_undefined(struct kvm_vcpu *vcpu); > void kvm_inject_vabt(struct kvm_vcpu *vcpu); > void kvm_inject_dabt(struct kvm_vcpu *vcpu, unsigned long addr); > void kvm_inject_pabt(struct kvm_vcpu *vcpu, unsigned long addr); > +void kvm_inject_size_fault(struct kvm_vcpu *vcpu); > > void kvm_vcpu_wfi(struct kvm_vcpu *vcpu); > > diff --git a/arch/arm64/kvm/inject_fault.c b/arch/arm64/kvm/inject_fault.c > index b47df73e98d7..ba20405d2dc2 100644 > --- a/arch/arm64/kvm/inject_fault.c > +++ b/arch/arm64/kvm/inject_fault.c > @@ -145,6 +145,34 @@ void kvm_inject_pabt(struct kvm_vcpu *vcpu, unsigned long addr) > inject_abt64(vcpu, true, addr); > } > > +void kvm_inject_size_fault(struct kvm_vcpu *vcpu) > +{ > + unsigned long addr, esr; > + > + addr = kvm_vcpu_get_fault_ipa(vcpu); > + addr |= kvm_vcpu_get_hfar(vcpu) & GENMASK(11, 0); > + > + if (kvm_vcpu_trap_is_iabt(vcpu)) > + kvm_inject_pabt(vcpu, addr); > + else > + kvm_inject_dabt(vcpu, addr); > + > + /* > + * If AArch64 or LPAE, set FSC to 0 to indicate an Address > + * Size Fault at level 0, as if exceeding PARange. > + * > + * Non-LPAE guests will only get the external abort, as there > + * is no way to to describe the ASF. > + */ > + if (vcpu_el1_is_32bit(vcpu) && > + !(vcpu_read_sys_reg(vcpu, TCR_EL1) & TTBCR_EAE)) > + return; > + > + esr = vcpu_read_sys_reg(vcpu, ESR_EL1); > + esr &= ~GENMASK_ULL(5, 0); > + vcpu_write_sys_reg(vcpu, esr, ESR_EL1); > +} > + > /** > * kvm_inject_undefined - inject an undefined instruction into the guest > * @vcpu: The vCPU in which to inject the exception > diff --git a/arch/arm64/kvm/mmu.c b/arch/arm64/kvm/mmu.c > index 53ae2c0640bc..5400fc020164 100644 > --- a/arch/arm64/kvm/mmu.c > +++ b/arch/arm64/kvm/mmu.c > @@ -1337,6 +1337,25 @@ int kvm_handle_guest_abort(struct kvm_vcpu *vcpu) > fault_ipa = kvm_vcpu_get_fault_ipa(vcpu); > is_iabt = kvm_vcpu_trap_is_iabt(vcpu); > > + if (fault_status == FSC_FAULT) { > + /* Beyond sanitised PARange (which is the IPA limit) */ > + if (fault_ipa >= BIT_ULL(get_kvm_ipa_limit())) { > + kvm_inject_size_fault(vcpu); > + return 1; > + } > + > + /* Falls between the IPA range and the PARange? */ > + if (fault_ipa >= BIT_ULL(vcpu->arch.hw_mmu->pgt->ia_bits)) { > + fault_ipa |= kvm_vcpu_get_hfar(vcpu) & GENMASK(11, 0); > + > + if (is_iabt) > + kvm_inject_pabt(vcpu, fault_ipa); > + else > + kvm_inject_dabt(vcpu, fault_ipa); > + return 1; > + } Doesn't KVM treat faults outside a valid memslot (aka guest RAM) as MMIO aborts? From the guest's point of view, the IPA is valid because it's inside the HW PARange, so it's not entirely impossible that the VMM put a device there. Thanks, Alex > + } > + > /* Synchronous External Abort? */ > if (kvm_vcpu_abt_issea(vcpu)) { > /* > -- > 2.34.1 > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel