Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753252AbeAFTgI (ORCPT + 1 other); Sat, 6 Jan 2018 14:36:08 -0500 Received: from mail-ot0-f193.google.com ([74.125.82.193]:40014 "EHLO mail-ot0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752338AbeAFTgG (ORCPT ); Sat, 6 Jan 2018 14:36:06 -0500 X-Google-Smtp-Source: ACJfBovNavA9qvJ3FH16I8eMVa6uVORhLY84iDWh9eCYoJIzo0ViQroTlkweQ6A1v8frN1S5vf8NcdSevxuZzsDtOoM= MIME-Version: 1.0 In-Reply-To: <20180106192517.ykvlcq4564cqy4u6@ast-mbp> References: <151520099201.32271.4677179499894422956.stgit@dwillia2-desk3.amr.corp.intel.com> <151520102670.32271.8447983009852138826.stgit@dwillia2-desk3.amr.corp.intel.com> <20180106123242.77f4d860@alans-desktop> <20180106181331.mmrqwwbu2jcjj2si@ast-mbp> <20180106183937.vkseldf4arkdlkum@ast-mbp> <20180106192517.ykvlcq4564cqy4u6@ast-mbp> From: Dan Williams Date: Sat, 6 Jan 2018 11:36:04 -0800 Message-ID: Subject: Re: [PATCH 06/18] x86, barrier: stop speculation for failed access_ok To: Alexei Starovoitov Cc: Alan Cox , Linus Torvalds , Linux Kernel Mailing List , linux-arch@vger.kernel.org, Andi Kleen , Arnd Bergmann , Greg Kroah-Hartman , Peter Zijlstra , Netdev , Ingo Molnar , "H. Peter Anvin" , Thomas Gleixner Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Sat, Jan 6, 2018 at 11:25 AM, Alexei Starovoitov wrote: > On Sat, Jan 06, 2018 at 10:54:27AM -0800, Dan Williams wrote: >> On Sat, Jan 6, 2018 at 10:39 AM, Alexei Starovoitov >> wrote: >> [..] >> >> retpoline is variant-2, this patch series is about variant-1. >> > >> > that's exactly the point. Don't slow down the kernel with lfences >> > to solve variant 1. retpoline for 2 is ok from long term kernel >> > viability perspective. >> > >> >> Setting aside that we still need to measure the impact of these >> changes the end result will still be nospec_array_ptr() sprinkled in >> various locations. So can we save the debate about what's inside that >> macro on various architectures and at least proceed with annotating >> the problematic locations? Perhaps we can go a step further and have a >> config option to switch between the clever array_access() approach >> from Linus that might be fine depending on the compiler, and the >> cpu-vendor-recommended not to speculate implementation of >> nospec_array_ptr(). > > recommended by panicing vendors who had no better ideas? > Ohh, speculation is exploitable, let's stop speculation. > Instead of fighting it we can safely steer it where it doesn't leak > kernel data. AND approach is doing exactly that. > It probably can be made independent of compiler choice to use setbe-like insn. Right, when that 'probably' is 'certainly' for the architecture you care about just update the nospec_array_ptr() definition at that point.