Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030202AbbEEFfA (ORCPT ); Tue, 5 May 2015 01:35:00 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:40034 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755626AbbEEFXH (ORCPT ); Tue, 5 May 2015 01:23:07 -0400 From: Al Viro To: Linus Torvalds Cc: Neil Brown , Christoph Hellwig , linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: [PATCH 72/79] namei: move link count check and stack allocation into pick_link() Date: Tue, 5 May 2015 06:22:46 +0100 Message-Id: <1430803373-4948-72-git-send-email-viro@ZenIV.linux.org.uk> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <20150505052205.GS889@ZenIV.linux.org.uk> References: <20150505052205.GS889@ZenIV.linux.org.uk> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1789 Lines: 77 From: Al Viro Signed-off-by: Al Viro --- fs/namei.c | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/fs/namei.c b/fs/namei.c index 026d7df..9822b37 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -891,16 +891,10 @@ const char *get_link(struct nameidata *nd) if (nd->link.mnt == nd->path.mnt) mntget(nd->link.mnt); - if (unlikely(current->total_link_count >= MAXSYMLINKS)) { - path_put(&nd->link); - return ERR_PTR(-ELOOP); - } - last->link = nd->link; last->cookie = NULL; cond_resched(); - current->total_link_count++; touch_atime(&last->link); @@ -1560,12 +1554,23 @@ static void terminate_walk(struct nameidata *nd) static int pick_link(struct nameidata *nd, struct path *link) { + int error; + if (unlikely(current->total_link_count++ >= MAXSYMLINKS)) { + path_to_nameidata(link, nd); + return -ELOOP; + } if (nd->flags & LOOKUP_RCU) { if (unlikely(nd->path.mnt != link->mnt || unlazy_walk(nd, link->dentry))) { return -ECHILD; } } + error = nd_alloc_stack(nd); + if (unlikely(error)) { + path_to_nameidata(link, nd); + return error; + } + nd->link = *link; return 1; } @@ -1832,15 +1837,7 @@ OK: break; if (err) { - const char *s; - - err = nd_alloc_stack(nd); - if (unlikely(err)) { - path_to_nameidata(&nd->link, nd); - break; - } - - s = get_link(nd); + const char *s = get_link(nd); if (unlikely(IS_ERR(s))) { err = PTR_ERR(s); -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/