Received: by 2002:a25:1506:0:0:0:0:0 with SMTP id 6csp873351ybv; Sat, 22 Feb 2020 17:21:52 -0800 (PST) X-Google-Smtp-Source: APXvYqwYG5PPcrZQPEjiadZiE/k8kfFiYtor2z0XRce8vYZvVc6SieHLQ2WI5xQNTjlIN20Y8ar2 X-Received: by 2002:a9d:2c2:: with SMTP id 60mr34742620otl.208.1582420912586; Sat, 22 Feb 2020 17:21:52 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1582420912; cv=none; d=google.com; s=arc-20160816; b=m+tuyPc4CPp3Ah/AUfxkHS/fHl6t4OS+G7+wW4rbiHDwffvKBvSrkXvqCTAH7qxVzk wyrwmNxtpHhMaJ07F62NowtrGzIsQ0Rn0MmdvapmQpPmiX8b4acjLT4ZidJpntl57mjL ydxILH494XgDRcxc3YIpiYKnATWBNe9uL6ApfurHRx7kIVH0L+O08E3HNUNqFKJW1iS9 FE6bmjaFWll3eoEDgdpCfjE7ESA5cho1vnrnir7W1mm08dKFNg8iEgOmAYce5R6xgaP4 QXaR0TEQw4t0tN7VYYbahnvSpkegaNq9wVBtldFwuUtOywe6fqdo4UkM8eUApiCmelNA axAw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=iRisE0YNrfItBUl1DjH5NgKdfnT60Wam0TAi5i8/6PU=; b=i71h+moKf/HQaEX7BNuPGMn7194fNWDUE8U6AbpLnJzst/+Jg1RYzLYVbRyBVzUsPL rjKeSevkF7wIc13HmaoassY2czF0JM5VXbgafJO04hkhFyglmpQQ85ve52ivrBqWEjyd f3rFFbnr5INUCQY/0jVl2VnLr9quZCQa45hokGBbNYwwJdiWbU8o2MlUWOAIlmBiVf5Z lK6FQ93Xtm7IC8lhKjCD2LIDwHyrym+Q4gk+zomzz0EBo/OSTB/rLfGTduBx6vhJupQO Z1RCT6F0t6cd4QpT7A5zUo+N2WayBckcN/CW2Eegsyhu9YFu1CNzx943jc/fxOKQTrUJ zMQg== 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 z3si2656034oib.164.2020.02.22.17.21.40; Sat, 22 Feb 2020 17:21:52 -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 S1727250AbgBWBUb (ORCPT + 99 others); Sat, 22 Feb 2020 20:20:31 -0500 Received: from zeniv.linux.org.uk ([195.92.253.2]:50162 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727115AbgBWBUb (ORCPT ); Sat, 22 Feb 2020 20:20:31 -0500 Received: from viro by ZenIV.linux.org.uk with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1j5fwN-00HDfk-79; Sun, 23 Feb 2020 01:20:19 +0000 From: Al Viro To: linux-fsdevel@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Linus Torvalds Subject: [RFC][PATCH v2 15/34] fold handle_mounts() into step_into() Date: Sun, 23 Feb 2020 01:16:07 +0000 Message-Id: <20200223011626.4103706-15-viro@ZenIV.linux.org.uk> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200223011626.4103706-1-viro@ZenIV.linux.org.uk> References: <20200223011154.GY23230@ZenIV.linux.org.uk> <20200223011626.4103706-1-viro@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Al Viro The following is true: * calls of handle_mounts() and step_into() are always paired in sequences like err = handle_mounts(nd, dentry, &path, &inode, &seq); if (unlikely(err < 0)) return err; err = step_into(nd, &path, flags, inode, seq); * in all such sequences path is uninitialized before and unused after this pair of calls * in all such sequences inode and seq are unused afterwards. So the call of handle_mounts() can be shifted inside step_into(), turning 'path' into a local variable in the combined function. Signed-off-by: Al Viro --- fs/namei.c | 41 +++++++++++++++-------------------------- 1 file changed, 15 insertions(+), 26 deletions(-) diff --git a/fs/namei.c b/fs/namei.c index fe48a8d00ae5..28835ee7168a 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -1835,31 +1835,35 @@ enum {WALK_FOLLOW = 1, WALK_MORE = 2, WALK_NOFOLLOW = 4}; * so we keep a cache of "no, this doesn't need follow_link" * for the common case. */ -static inline int step_into(struct nameidata *nd, struct path *path, - int flags, struct inode *inode, unsigned seq) +static int step_into(struct nameidata *nd, int flags, + struct dentry *dentry, struct inode *inode, unsigned seq) { + struct path path; + int err = handle_mounts(nd, dentry, &path, &inode, &seq); + + if (err < 0) + return err; if (!(flags & WALK_MORE) && nd->depth) put_link(nd); - if (likely(!d_is_symlink(path->dentry)) || + if (likely(!d_is_symlink(path.dentry)) || !(flags & WALK_FOLLOW || nd->flags & LOOKUP_FOLLOW) || flags & WALK_NOFOLLOW) { /* not a symlink or should not follow */ - path_to_nameidata(path, nd); + path_to_nameidata(&path, nd); nd->inode = inode; nd->seq = seq; return 0; } /* make sure that d_is_symlink above matches inode */ if (nd->flags & LOOKUP_RCU) { - if (read_seqcount_retry(&path->dentry->d_seq, seq)) + if (read_seqcount_retry(&path.dentry->d_seq, seq)) return -ECHILD; } - return pick_link(nd, path, inode, seq); + return pick_link(nd, &path, inode, seq); } static int walk_component(struct nameidata *nd, int flags) { - struct path path; struct dentry *dentry; struct inode *inode; unsigned seq; @@ -1883,11 +1887,7 @@ static int walk_component(struct nameidata *nd, int flags) if (IS_ERR(dentry)) return PTR_ERR(dentry); } - - err = handle_mounts(nd, dentry, &path, &inode, &seq); - if (unlikely(err < 0)) - return err; - return step_into(nd, &path, flags, inode, seq); + return step_into(nd, flags, dentry, inode, seq); } /* @@ -2354,17 +2354,10 @@ static inline int lookup_last(struct nameidata *nd) static int handle_lookup_down(struct nameidata *nd) { - struct path path; - struct inode *inode = nd->inode; - unsigned seq = nd->seq; - int err; - if (!(nd->flags & LOOKUP_RCU)) dget(nd->path.dentry); - err = handle_mounts(nd, nd->path.dentry, &path, &inode, &seq); - if (unlikely(err < 0)) - return err; - return step_into(nd, &path, WALK_NOFOLLOW, inode, seq); + return step_into(nd, WALK_NOFOLLOW, + nd->path.dentry, nd->inode, nd->seq); } /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ @@ -3283,7 +3276,6 @@ static int do_last(struct nameidata *nd, int acc_mode = op->acc_mode; unsigned seq; struct inode *inode; - struct path path; struct dentry *dentry; int error; @@ -3382,10 +3374,7 @@ static int do_last(struct nameidata *nd, } finish_lookup: - error = handle_mounts(nd, dentry, &path, &inode, &seq); - if (unlikely(error < 0)) - return error; - error = step_into(nd, &path, 0, inode, seq); + error = step_into(nd, 0, dentry, inode, seq); if (unlikely(error)) return error; -- 2.11.0