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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8BFDAC433F5 for ; Tue, 4 Oct 2022 08:36:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230201AbiJDIgi (ORCPT ); Tue, 4 Oct 2022 04:36:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52534 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229702AbiJDIgd (ORCPT ); Tue, 4 Oct 2022 04:36:33 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2499827FF8; Tue, 4 Oct 2022 01:36:32 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id D2E90B80D6C; Tue, 4 Oct 2022 08:36:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 59C95C433D6; Tue, 4 Oct 2022 08:36:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1664872589; bh=Vta9NNBr6nkHrzFHJhf3d1KXNnH13ptRWqXqAZ9UuEA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=fd64pqzS0vr1Ay1lpgWB0pzIJx/pan0dcKrQm+bEESTb6QvXN8YvuzOiuxvO9KTVb ek5+IBL+J9KydBy0BbecAAwU/jxjdjCx56Ix+M4Fx5jiW8JCShwS8lw8EgWGDBZ39w imMW7YzBADcIahbEZlNGpHe/fwLHm0MzdExPXLojDaBIOxijF18NtWIpX3cjiXiq14 fdUAAFs6aJtZBqP0tmFC061PEhUaAjdIpRo1lbbVrBDU1hH8c4ylTSdv75dGF/t0Pp B31dqnsqa4pOzRFODOizMXWBrH8EJlmGGC1zGaiWCUjHcwYrfuGNdzIQZsvIT/Y5jX 31+AYNaAKcBkQ== Date: Tue, 4 Oct 2022 11:36:05 +0300 From: Mike Rapoport To: Dave Hansen Cc: Kees Cook , Rick Edgecombe , x86@kernel.org, "H . Peter Anvin" , Thomas Gleixner , Ingo Molnar , linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, linux-mm@kvack.org, linux-arch@vger.kernel.org, linux-api@vger.kernel.org, Arnd Bergmann , Andy Lutomirski , Balbir Singh , Borislav Petkov , Cyrill Gorcunov , Dave Hansen , Eugene Syromiatnikov , Florian Weimer , "H . J . Lu" , Jann Horn , Jonathan Corbet , Mike Kravetz , Nadav Amit , Oleg Nesterov , Pavel Machek , Peter Zijlstra , Randy Dunlap , "Ravi V . Shankar" , Weijiang Yang , "Kirill A . Shutemov" , joao.moreira@intel.com, John Allen , kcc@google.com, eranian@google.com, jamorris@linux.microsoft.com, dethoma@microsoft.com, Tom Lendacky , "Moger, Babu" Subject: Re: [PATCH v2 33/39] x86/cpufeatures: Limit shadow stack to Intel CPUs Message-ID: References: <20220929222936.14584-1-rick.p.edgecombe@intel.com> <20220929222936.14584-34-rick.p.edgecombe@intel.com> <202210031656.23FAA3195@keescook> <559f937f-cab4-d408-6d95-fc85b4809aa9@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <559f937f-cab4-d408-6d95-fc85b4809aa9@intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 03, 2022 at 05:09:04PM -0700, Dave Hansen wrote: > On 10/3/22 16:57, Kees Cook wrote: > > On Thu, Sep 29, 2022 at 03:29:30PM -0700, Rick Edgecombe wrote: > >> Shadow stack is supported on newer AMD processors, but the kernel > >> implementation has not been tested on them. Prevent basic issues from > >> showing up for normal users by disabling shadow stack on all CPUs except > >> Intel until it has been tested. At which point the limitation should be > >> removed. > >> > >> Signed-off-by: Rick Edgecombe > > So running the selftests on an AMD system is sufficient to drop this > > patch? > > Yes, that's enough. > > I _thought_ the AMD folks provided some tested-by's at some point in the > past. But, maybe I'm confusing this for one of the other shared > features. Either way, I'm sure no tested-by's were dropped on purpose. > > I'm sure Rick is eager to trim down his series and this would be a great > patch to drop. Does anyone want to make that easy for Rick? FWIW, I've run CRIU test suite with the previous version of this set on an AMD machine. > -- Sincerely yours, Mike.