Commit bdf6cbf1 authored by Al Viro's avatar Al Viro

link_path_walk: final preparations to killing recursion

reduce the number of returns in there - turn all places
where it returns zero into goto OK and places where it
returns non-zero into goto Err.  The only non-trivial
detail is that all breaks in the loop are guaranteed
to be with non-zero err.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent bb8603f8
...@@ -1716,7 +1716,7 @@ static int link_path_walk(const char *name, struct nameidata *nd) ...@@ -1716,7 +1716,7 @@ static int link_path_walk(const char *name, struct nameidata *nd)
while (*name=='/') while (*name=='/')
name++; name++;
if (!*name) if (!*name)
return 0; goto OK;
/* At this point we know we have a real path component. */ /* At this point we know we have a real path component. */
for(;;) { for(;;) {
...@@ -1759,7 +1759,7 @@ static int link_path_walk(const char *name, struct nameidata *nd) ...@@ -1759,7 +1759,7 @@ static int link_path_walk(const char *name, struct nameidata *nd)
name += hashlen_len(hash_len); name += hashlen_len(hash_len);
if (!*name) if (!*name)
return 0; goto OK;
/* /*
* If it wasn't NUL, we know it was '/'. Skip that * If it wasn't NUL, we know it was '/'. Skip that
* slash, and continue until no more slashes. * slash, and continue until no more slashes.
...@@ -1768,12 +1768,12 @@ static int link_path_walk(const char *name, struct nameidata *nd) ...@@ -1768,12 +1768,12 @@ static int link_path_walk(const char *name, struct nameidata *nd)
name++; name++;
} while (unlikely(*name == '/')); } while (unlikely(*name == '/'));
if (!*name) if (!*name)
return 0; goto OK;
err = walk_component(nd, LOOKUP_FOLLOW); err = walk_component(nd, LOOKUP_FOLLOW);
Walked: Walked:
if (err < 0) if (err < 0)
return err; goto Err;
if (err) { if (err) {
struct path link; struct path link;
...@@ -1783,7 +1783,8 @@ static int link_path_walk(const char *name, struct nameidata *nd) ...@@ -1783,7 +1783,8 @@ static int link_path_walk(const char *name, struct nameidata *nd)
if (unlikely(current->link_count >= MAX_NESTED_LINKS)) { if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
path_put_conditional(&nd->link, nd); path_put_conditional(&nd->link, nd);
path_put(&nd->path); path_put(&nd->path);
return -ELOOP; err = -ELOOP;
goto Err;
} }
BUG_ON(nd->depth >= MAX_NESTED_LINKS); BUG_ON(nd->depth >= MAX_NESTED_LINKS);
...@@ -1797,7 +1798,7 @@ static int link_path_walk(const char *name, struct nameidata *nd) ...@@ -1797,7 +1798,7 @@ static int link_path_walk(const char *name, struct nameidata *nd)
err = PTR_ERR(s); err = PTR_ERR(s);
current->link_count--; current->link_count--;
nd->depth--; nd->depth--;
return err; goto Err;
} }
err = 0; err = 0;
if (unlikely(!s)) { if (unlikely(!s)) {
...@@ -1820,7 +1821,7 @@ static int link_path_walk(const char *name, struct nameidata *nd) ...@@ -1820,7 +1821,7 @@ static int link_path_walk(const char *name, struct nameidata *nd)
put_link(nd, &link, cookie); put_link(nd, &link, cookie);
current->link_count--; current->link_count--;
nd->depth--; nd->depth--;
return err; goto Err;
} else { } else {
err = walk_component(nd, LOOKUP_FOLLOW); err = walk_component(nd, LOOKUP_FOLLOW);
put_link(nd, &link, cookie); put_link(nd, &link, cookie);
...@@ -1836,7 +1837,10 @@ static int link_path_walk(const char *name, struct nameidata *nd) ...@@ -1836,7 +1837,10 @@ static int link_path_walk(const char *name, struct nameidata *nd)
} }
} }
terminate_walk(nd); terminate_walk(nd);
Err:
return err; return err;
OK:
return 0;
} }
static int path_init(int dfd, const struct filename *name, unsigned int flags, static int path_init(int dfd, const struct filename *name, unsigned int flags,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment