aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2015-05-04 18:26:59 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2015-05-10 22:20:13 -0400
commit626de99676e1e41fc70fc890776518ba936a58c6 (patch)
tree512c0c59eb5b2f42748afc8fa180aae45ad3d039 /fs
parentnamei: make should_follow_link() store the link in nd->link (diff)
downloadlinux-dev-626de99676e1e41fc70fc890776518ba936a58c6.tar.xz
linux-dev-626de99676e1e41fc70fc890776518ba936a58c6.zip
namei: move link count check and stack allocation into pick_link()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r--fs/namei.c27
1 files changed, 12 insertions, 15 deletions
diff --git a/fs/namei.c b/fs/namei.c
index 1b4bc1b7ffae..046a703c081d 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);
@@ -1568,12 +1562,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;
}
@@ -1840,15 +1845,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);