Message ID | 20221027205533.17873-2-surajjs@amazon.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show
Return-Path: <kvm-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E1159FA3740 for <kvm@archiver.kernel.org>; Thu, 27 Oct 2022 21:03:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236502AbiJ0VDu (ORCPT <rfc822;kvm@archiver.kernel.org>); Thu, 27 Oct 2022 17:03:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53138 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235659AbiJ0VDH (ORCPT <rfc822;kvm@vger.kernel.org>); Thu, 27 Oct 2022 17:03:07 -0400 Received: from smtp-fw-33001.amazon.com (smtp-fw-33001.amazon.com [207.171.190.10]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C60DA814C1; Thu, 27 Oct 2022 13:55:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amazon.com; i=@amazon.com; q=dns/txt; s=amazon201209; t=1666904148; x=1698440148; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version; bh=Hh167AI5Vou0EeJ42nJg7ou8wvGIRupc2Wh3BClfUuQ=; b=Q+tzhmieSqCfZxD6RM1Jv6QYQBLO5kJUl9mfVeg6ge0JxHANDtsh7MY4 TwgsTkzc5gpxPsQNH2UNUnVg3mSO5jyJJ8UShQBq8NsehHyfS5a9q+B6O V6j2rGhdaiSEASZr1OlOuCBdgXWs0QMnfihl4krkjVeEmciuoe136Zke/ g=; X-IronPort-AV: E=Sophos;i="5.95,218,1661817600"; d="scan'208";a="236704604" Received: from iad12-co-svc-p1-lb1-vlan3.amazon.com (HELO email-inbound-relay-pdx-2a-m6i4x-d40ec5a9.us-west-2.amazon.com) ([10.43.8.6]) by smtp-border-fw-33001.sea14.amazon.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Oct 2022 20:55:46 +0000 Received: from EX13MTAUWB001.ant.amazon.com (pdx1-ws-svc-p6-lb9-vlan2.pdx.amazon.com [10.236.137.194]) by email-inbound-relay-pdx-2a-m6i4x-d40ec5a9.us-west-2.amazon.com (Postfix) with ESMTPS id 0E27641727; Thu, 27 Oct 2022 20:55:44 +0000 (UTC) Received: from EX19D030UWB002.ant.amazon.com (10.13.139.182) by EX13MTAUWB001.ant.amazon.com (10.43.161.207) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Thu, 27 Oct 2022 20:55:43 +0000 Received: from u3c3f5cfe23135f.ant.amazon.com (10.43.161.14) by EX19D030UWB002.ant.amazon.com (10.13.139.182) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384) id 15.2.1118.15; Thu, 27 Oct 2022 20:55:42 +0000 From: Suraj Jitindar Singh <surajjs@amazon.com> To: <stable@vger.kernel.org> CC: <surajjs@amazon.com>, <sjitindarsingh@gmail.com>, <cascardo@canonical.com>, <kvm@vger.kernel.org>, <pbonzini@redhat.com>, <jpoimboe@kernel.org>, <peterz@infradead.org>, <x86@kernel.org> Subject: [PATCH 4.14 26/34] KVM: VMX: Fix IBRS handling after vmexit Date: Thu, 27 Oct 2022 13:55:31 -0700 Message-ID: <20221027205533.17873-2-surajjs@amazon.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20221027205533.17873-1-surajjs@amazon.com> References: <20221027204801.13146-1-surajjs@amazon.com> <20221027205533.17873-1-surajjs@amazon.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.43.161.14] X-ClientProxiedBy: EX13D34UWA002.ant.amazon.com (10.43.160.245) To EX19D030UWB002.ant.amazon.com (10.13.139.182) Precedence: bulk List-ID: <kvm.vger.kernel.org> X-Mailing-List: kvm@vger.kernel.org |
Series |
Retbleed & PBRSB Mitigations
|
expand
|
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 539720a8e094..e35cb9560eeb 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -9781,8 +9781,13 @@ u64 __always_inline vmx_spec_ctrl_restore_host(struct vcpu_vmx *vmx) /* * If the guest/host SPEC_CTRL values differ, restore the host value. + * + * For legacy IBRS, the IBRS bit always needs to be written after + * transitioning from a less privileged predictor mode, regardless of + * whether the guest/host values differ. */ - if (guestval != hostval) + if (cpu_feature_enabled(X86_FEATURE_KERNEL_IBRS) || + guestval != hostval) native_wrmsrl(MSR_IA32_SPEC_CTRL, hostval); barrier_nospec();