Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp67972pxf; Tue, 6 Apr 2021 15:12:20 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzWgupihYWGUqbm/P7R/D7QvGGNTH5yqrayaMHrCFmd6dXK58Bl1+ycGE56w1kvHmMDY4Pq X-Received: by 2002:a6b:fd07:: with SMTP id c7mr61112ioi.198.1617747140815; Tue, 06 Apr 2021 15:12:20 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1617747140; cv=none; d=google.com; s=arc-20160816; b=Fukgk94eRhOYK2W7+hbtlzNLplRnjvE1P447brBMZgISsO7ZETnJFCSh/APZCO62aN tuY6sRf0wliRgJnzXG/xyeMqIPuxaC5FWBSxrWGKQrSXSSw1YcowEvpvPtRZM17Bh2MZ YI/8vtWkDJ6pvbV/jKKgT2y5WH3j4zA0zt/P4OhjcvF1gtahTH44M3OVMVLyPm8pzv8F LhfkI9ngNHS6CviA+170Ca+43RFNZ6o5LVBpBnsV4/EiK6NOZyoDqw8hvqMq2x2va2mf 322PtjXi3/qVJhm2YCfSyymh+dRDgsyMOK452ZKQ2fGWuyGchPK0aZXrj0R13nvADecc GefA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=VPRTOQv2ZSGuBB/a5IA0Y40wYJJ0ab1S73rmTMcfEcc=; b=tIBzvT42bZNMZ78gaOW2kYWdOK2NfwIoTXHcQ84TT5kuqnLgraf8ULxew/QqwtCZ4Z kIpBdN/yeTcUoPGA7ID4NYz8WyRashSnZWjcz92dsfbYvlcmDsBeWogE6M00vm9ZzhFl 86E78zgSRiTFupr0Xc3x4Lwf0frm8eSmcmL7xMEi6uV+m59EgVhenWawy2Mj2v8d5qBN jy1dtyNUaRVvKXAH+jXaGPKU5lEQJMobybjcqvyLzzszo+snY9XNXbKYwf4pih8AJvV5 kED6PBvxJ/SxnGNNwFmSyFHJ2PbkM/gM44GPhjAFFLLWkXh6M6G8VmmBiWw/NahPPpLf WnCA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id n5si18117556iob.85.2021.04.06.15.12.07; Tue, 06 Apr 2021 15:12:20 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242577AbhDFNWV (ORCPT + 99 others); Tue, 6 Apr 2021 09:22:21 -0400 Received: from mail.kernel.org ([198.145.29.99]:57326 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231897AbhDFNWS (ORCPT ); Tue, 6 Apr 2021 09:22:18 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 5A3FA613B8; Tue, 6 Apr 2021 13:22:08 +0000 (UTC) Date: Tue, 6 Apr 2021 15:22:05 +0200 From: Christian Brauner To: Al Viro Cc: Jens Axboe , syzbot , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com, io-uring@vger.kernel.org Subject: Re: [syzbot] WARNING in mntput_no_expire (2) Message-ID: <20210406132205.qnherkzif64xmgxg@wittgenstein> References: <20210405114437.hjcojekyp5zt6huu@wittgenstein> <20210405170801.zrdhnon6g4ggb6c7@wittgenstein> <20210405200737.qurhkqitoxweousx@wittgenstein> <20210406123505.auxqtquoys6xg6yf@wittgenstein> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Apr 06, 2021 at 01:13:13PM +0000, Al Viro wrote: > On Tue, Apr 06, 2021 at 02:35:05PM +0200, Christian Brauner wrote: > > > And while we're at it might I bring up the possibility of an additional > > cleanup of how we currently call path_init(). > > Right now we pass the return value from path_init() directly into e.g. > > link_path_walk() which as a first thing checks for error. Which feels > > rather wrong and has always confused me when looking at these codepaths. > > Why? Why is a another function in charge of checking the return value of an initialization function. If something like path_init() fails why is the next caller responsible for rejecting it's return value and then we're passing that failure value through the whole function with if (!err) ladders but as I said it's mostly style preferences. > > > I get that it might make sense for reasons unrelated to path_init() that > > link_path_walk() checks its first argument for error but path_init() > > should be checked for error right away especially now that we return > > early when LOOKUP_CACHED is set without LOOKUP_RCU. > > But you are making the _callers_ of path_init() do that, for no good > reason. I'm confused why having callers of functions responsible for checking error values is such an out-of-band concept suddenly. I don't think it's worth arguing over this though. > > > thing especially in longer functions such as path_lookupat() where it > > gets convoluted pretty quickly. I think it would be cleaner to have > > something like [1]. The early exists make the code easier to reason > > about imho. But I get that that's a style discussion. > > Your variant is a lot more brittle, actually. > > > @@ -2424,33 +2424,49 @@ static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path > > int err; > > > > s = path_init(nd, flags); > > - if (IS_ERR(s)) > > - return PTR_ERR(s); > > Where has that come from, BTW? Currently path_lookupat() does no such thing. Hm? Are you maybe overlooking path_init() which assigns straight into the variable declaration? Or are you referring to sm else? static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path) { const char *s = path_init(nd, flags); int err; if (unlikely(flags & LOOKUP_DOWN) && !IS_ERR(s)) { err = handle_lookup_down(nd); if (unlikely(err < 0)) s = ERR_PTR(err); } while (!(err = link_path_walk(s, nd)) && (s = lookup_last(nd)) != NULL) ;