Received: by 10.223.176.46 with SMTP id f43csp2668836wra; Mon, 22 Jan 2018 01:14:33 -0800 (PST) X-Google-Smtp-Source: AH8x227muEnA7tlNAdkD5OyD260Rkjn+uotoF+IOW/G9+QeDfRDCqXh5g4QdNpvL6NwGLVGTlh25 X-Received: by 10.99.122.15 with SMTP id v15mr6662046pgc.175.1516612472920; Mon, 22 Jan 2018 01:14:32 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1516612472; cv=none; d=google.com; s=arc-20160816; b=sa/4g6bTYMyPFTdY8ZFB3GnuwvigoMpj6TOBTh3RQPumd/nkeuaYtlOhXjAwsWIU3Q 29nL7smof7sYMoREyHYGNzNaCZsOxyOxwKpp7EHVdxeatngmGDgh0jNMMJ1Ebkx5ILww h0nC2HeBitXZf3tXuBrnkGqpSg40pTOBR8TKYAcbpIU9IGE8tKHmPA2hESozHmjEs56R AAXETRoayMRlg3NSi6dIK65TsY33uK+GKspeKmHqm3iMu0A74QkaNTw7+tDdZ/HTdWiX +nmeEk9kNsJlNZTmPQ6dDuz3P3lmjxvHkbqpE8hWjLvSKRx9b3sLWNicZ+NcJjtiaSQS op4w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=3YjPgPHr/titdYclWcc7uUblLz5WBJqOSVrt/YB4d1U=; b=W2Iox0i6w95LbEq8RSxQw0OLdzWOsEPDz/uAAvtyqfhFKMXEKY3FKeB6RMRpjVTwLE aObAfIWB/3JmRT5fPAJAyNQmQwDbEEa1xHaqRL4z8A4GFuGTWYyvi3+TBD1uyNGeUwBa +6S4dsK6Dcq/Mi9xNttThEvZbYvJg4jzXCLIhn9F7BIGRWDPShAHUamXvYYmqq9l6mkg E2avssVXyC6DrKo1S+IuJI3jD5nMcmxKoXTm0hGGUR0aDO/Bfy9YE8Jsb8Uy4Fta5J5S s69lbeczlHmBe9c76Xy3Z1b5udXwORVxd48p4Iq7GpI81AGKuMBQk1M6jg3Sli8v1Ckq b1EQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id c11-v6si3216594pls.10.2018.01.22.01.14.18; Mon, 22 Jan 2018 01:14:32 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752930AbeAVIvh (ORCPT + 99 others); Mon, 22 Jan 2018 03:51:37 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:33336 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752879AbeAVIve (ORCPT ); Mon, 22 Jan 2018 03:51:34 -0500 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 8E209EFC; Mon, 22 Jan 2018 08:51:33 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Tom Lendacky , Thomas Gleixner , Borislav Petkov , David Woodhouse , Arjan van de Ven , Rik van Riel , Andi Kleen , Paul Turner , Peter Zijlstra , Tim Chen , Jiri Kosina , Dave Hansen , Andy Lutomirski , Josh Poimboeuf , Dan Williams , Linus Torvalds , Kees Cook , Greg Kroah-Hartman Subject: [PATCH 4.14 33/89] x86/retpoline: Add LFENCE to the retpoline/RSB filling RSB macros Date: Mon, 22 Jan 2018 09:45:13 +0100 Message-Id: <20180122083957.965826209@linuxfoundation.org> X-Mailer: git-send-email 2.16.0 In-Reply-To: <20180122083954.683903493@linuxfoundation.org> References: <20180122083954.683903493@linuxfoundation.org> User-Agent: quilt/0.65 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Tom Lendacky commit 28d437d550e1e39f805d99f9f8ac399c778827b7 upstream. The PAUSE instruction is currently used in the retpoline and RSB filling macros as a speculation trap. The use of PAUSE was originally suggested because it showed a very, very small difference in the amount of cycles/time used to execute the retpoline as compared to LFENCE. On AMD, the PAUSE instruction is not a serializing instruction, so the pause/jmp loop will use excess power as it is speculated over waiting for return to mispredict to the correct target. The RSB filling macro is applicable to AMD, and, if software is unable to verify that LFENCE is serializing on AMD (possible when running under a hypervisor), the generic retpoline support will be used and, so, is also applicable to AMD. Keep the current usage of PAUSE for Intel, but add an LFENCE instruction to the speculation trap for AMD. The same sequence has been adopted by GCC for the GCC generated retpolines. Signed-off-by: Tom Lendacky Signed-off-by: Thomas Gleixner Reviewed-by: Borislav Petkov Acked-by: David Woodhouse Acked-by: Arjan van de Ven Cc: Rik van Riel Cc: Andi Kleen Cc: Paul Turner Cc: Peter Zijlstra Cc: Tim Chen Cc: Jiri Kosina Cc: Dave Hansen Cc: Andy Lutomirski Cc: Josh Poimboeuf Cc: Dan Williams Cc: Linus Torvalds Cc: Greg Kroah-Hartman Cc: Kees Cook Link: https://lkml.kernel.org/r/20180113232730.31060.36287.stgit@tlendack-t1.amdoffice.net Signed-off-by: Greg Kroah-Hartman --- arch/x86/include/asm/nospec-branch.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/arch/x86/include/asm/nospec-branch.h +++ b/arch/x86/include/asm/nospec-branch.h @@ -11,7 +11,7 @@ * Fill the CPU return stack buffer. * * Each entry in the RSB, if used for a speculative 'ret', contains an - * infinite 'pause; jmp' loop to capture speculative execution. + * infinite 'pause; lfence; jmp' loop to capture speculative execution. * * This is required in various cases for retpoline and IBRS-based * mitigations for the Spectre variant 2 vulnerability. Sometimes to @@ -38,11 +38,13 @@ call 772f; \ 773: /* speculation trap */ \ pause; \ + lfence; \ jmp 773b; \ 772: \ call 774f; \ 775: /* speculation trap */ \ pause; \ + lfence; \ jmp 775b; \ 774: \ dec reg; \ @@ -73,6 +75,7 @@ call .Ldo_rop_\@ .Lspec_trap_\@: pause + lfence jmp .Lspec_trap_\@ .Ldo_rop_\@: mov \reg, (%_ASM_SP) @@ -165,6 +168,7 @@ " .align 16\n" \ "901: call 903f;\n" \ "902: pause;\n" \ + " lfence;\n" \ " jmp 902b;\n" \ " .align 16\n" \ "903: addl $4, %%esp;\n" \