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 X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4E002C4320A for ; Sat, 28 Aug 2021 22:11:46 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 307EA60551 for ; Sat, 28 Aug 2021 22:11:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232464AbhH1WMf (ORCPT ); Sat, 28 Aug 2021 18:12:35 -0400 Received: from zeniv-ca.linux.org.uk ([142.44.231.140]:35788 "EHLO zeniv-ca.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230253AbhH1WMe (ORCPT ); Sat, 28 Aug 2021 18:12:34 -0400 Received: from viro by zeniv-ca.linux.org.uk with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1mK6Y4-00GtwB-63; Sat, 28 Aug 2021 22:11:36 +0000 Date: Sat, 28 Aug 2021 22:11:36 +0000 From: Al Viro To: Thomas Gleixner Cc: "Luck, Tony" , Linus Torvalds , Andreas Gruenbacher , Christoph Hellwig , "Darrick J. Wong" , Jan Kara , Matthew Wilcox , cluster-devel , linux-fsdevel , Linux Kernel Mailing List , ocfs2-devel@oss.oracle.com, Borislav Petkov , x86@kernel.org Subject: Re: [PATCH v7 05/19] iov_iter: Introduce fault_in_iov_iter_writeable Message-ID: References: <20210827232246.GA1668365@agluck-desk2.amr.corp.intel.com> <87r1edgs2w.ffs@tglx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: Al Viro Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Aug 28, 2021 at 10:04:41PM +0000, Al Viro wrote: > On Sat, Aug 28, 2021 at 11:47:03PM +0200, Thomas Gleixner wrote: > > > /* Try to handle #PF, but anything else is fatal. */ > > if (ret != -EFAULT) > > return -EINVAL; > > > which all end up in user_insn(). user_insn() returns 0 or the negated > > trap number, which results in -EFAULT for #PF, but for #MC the negated > > trap number is -18 i.e. != -EFAULT. IOW, there is no endless loop. > > > > This used to be a problem before commit: > > > > aee8c67a4faa ("x86/fpu: Return proper error codes from user access functions") > > > > and as the changelog says the initial reason for this was #GP going into > > the fault path, but I'm pretty sure that I also discussed the #MC angle with > > Borislav back then. Should have added some more comments there > > obviously. > > ... or at least have that check spelled > > if (ret != -X86_TRAP_PF) > return -EINVAL; > > Unless I'm misreading your explanation, that is... BTW, is #MC triggered on stored to a poisoned cacheline? Existence of CLZERO would seem to argue against that...