Commit 806b681c authored by Al Viro's avatar Al Viro

Turn do_link spaghetty into a normal loop

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 10fa8e62
...@@ -1844,17 +1844,38 @@ reval: ...@@ -1844,17 +1844,38 @@ reval:
if (open_flag & O_EXCL) if (open_flag & O_EXCL)
nd.flags |= LOOKUP_EXCL; nd.flags |= LOOKUP_EXCL;
filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname); filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
if (!filp) while (unlikely(!filp)) { /* trailing symlink */
goto do_link; error = -ELOOP;
goto out; if ((open_flag & O_NOFOLLOW) || count++ == 32)
goto exit_dput;
exit_dput: /*
path_put_conditional(&path, &nd); * This is subtle. Instead of calling do_follow_link() we do
if (!IS_ERR(nd.intent.open.file)) * the thing by hands. The reason is that this way we have zero
release_open_intent(&nd); * link_count and path_walk() (called from ->follow_link)
exit_parent: * honoring LOOKUP_PARENT. After that we have the parent and
path_put(&nd.path); * last component, i.e. we are in the same situation as after
filp = ERR_PTR(error); * the first path_walk(). Well, almost - if the last component
* is normal we get its copy stored in nd->last.name and we will
* have to putname() it when we are done. Procfs-like symlinks
* just set LAST_BIND.
*/
nd.flags |= LOOKUP_PARENT;
error = security_inode_follow_link(path.dentry, &nd);
if (error)
goto exit_dput;
error = __do_follow_link(&path, &nd);
path_put(&path);
if (error) {
/* nd.path had been dropped */
release_open_intent(&nd);
filp = ERR_PTR(error);
goto out;
}
nd.flags &= ~LOOKUP_PARENT;
filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
if (nd.last_type == LAST_NORM)
__putname(nd.last.name);
}
out: out:
if (nd.root.mnt) if (nd.root.mnt)
path_put(&nd.root); path_put(&nd.root);
...@@ -1864,41 +1885,13 @@ out: ...@@ -1864,41 +1885,13 @@ out:
} }
return filp; return filp;
do_link: exit_dput:
error = -ELOOP; path_put_conditional(&path, &nd);
if ((open_flag & O_NOFOLLOW) || count++ == 32) if (!IS_ERR(nd.intent.open.file))
goto exit_dput;
/*
* This is subtle. Instead of calling do_follow_link() we do the
* thing by hands. The reason is that this way we have zero link_count
* and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
* After that we have the parent and last component, i.e.
* we are in the same situation as after the first path_walk().
* Well, almost - if the last component is normal we get its copy
* stored in nd->last.name and we will have to putname() it when we
* are done. Procfs-like symlinks just set LAST_BIND.
*/
nd.flags |= LOOKUP_PARENT;
error = security_inode_follow_link(path.dentry, &nd);
if (error)
goto exit_dput;
error = __do_follow_link(&path, &nd);
path_put(&path);
if (error) {
/* Does someone understand code flow here? Or it is only
* me so stupid? Anathema to whoever designed this non-sense
* with "intent.open".
*/
release_open_intent(&nd); release_open_intent(&nd);
filp = ERR_PTR(error); exit_parent:
goto out; path_put(&nd.path);
} filp = ERR_PTR(error);
nd.flags &= ~LOOKUP_PARENT;
filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
if (nd.last_type == LAST_NORM)
__putname(nd.last.name);
if (!filp)
goto do_link;
goto out; goto out;
} }
......
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