Commit 1a9a8c2c authored by Al Viro's avatar Al Viro Committed by Greg Kroah-Hartman

Nest rename_lock inside vfsmount_lock

commit 7ea600b5 upstream.

... lest we get livelocks between path_is_under() and d_path() and friends.

The thing is, wrt fairness lglocks are more similar to rwsems than to rwlocks;
it is possible to have thread B spin on attempt to take lock shared while thread
A is already holding it shared, if B is on lower-numbered CPU than A and there's
a thread C spinning on attempt to take the same lock exclusive.

As the result, we need consistent ordering between vfsmount_lock (lglock) and
rename_lock (seq_lock), even though everything that takes both is going to take
vfsmount_lock only shared.
Spotted-by: default avatarBrad Spengler <spender@grsecurity.net>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
[ zhj: backport to 3.4:
  - Adjust context
  - s/&vfsmount_lock/vfsmount_lock/]
Signed-off-by: default avatarZhao Hongjiang <zhaohongjiang@huawei.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent acf9ebde
...@@ -2513,7 +2513,6 @@ static int prepend_path(const struct path *path, ...@@ -2513,7 +2513,6 @@ static int prepend_path(const struct path *path,
bool slash = false; bool slash = false;
int error = 0; int error = 0;
br_read_lock(vfsmount_lock);
while (dentry != root->dentry || vfsmnt != root->mnt) { while (dentry != root->dentry || vfsmnt != root->mnt) {
struct dentry * parent; struct dentry * parent;
...@@ -2543,8 +2542,6 @@ static int prepend_path(const struct path *path, ...@@ -2543,8 +2542,6 @@ static int prepend_path(const struct path *path,
if (!error && !slash) if (!error && !slash)
error = prepend(buffer, buflen, "/", 1); error = prepend(buffer, buflen, "/", 1);
out:
br_read_unlock(vfsmount_lock);
return error; return error;
global_root: global_root:
...@@ -2561,7 +2558,7 @@ static int prepend_path(const struct path *path, ...@@ -2561,7 +2558,7 @@ static int prepend_path(const struct path *path,
error = prepend(buffer, buflen, "/", 1); error = prepend(buffer, buflen, "/", 1);
if (!error) if (!error)
error = real_mount(vfsmnt)->mnt_ns ? 1 : 2; error = real_mount(vfsmnt)->mnt_ns ? 1 : 2;
goto out; return error;
} }
/** /**
...@@ -2588,9 +2585,11 @@ char *__d_path(const struct path *path, ...@@ -2588,9 +2585,11 @@ char *__d_path(const struct path *path,
int error; int error;
prepend(&res, &buflen, "\0", 1); prepend(&res, &buflen, "\0", 1);
br_read_lock(vfsmount_lock);
write_seqlock(&rename_lock); write_seqlock(&rename_lock);
error = prepend_path(path, root, &res, &buflen); error = prepend_path(path, root, &res, &buflen);
write_sequnlock(&rename_lock); write_sequnlock(&rename_lock);
br_read_unlock(vfsmount_lock);
if (error < 0) if (error < 0)
return ERR_PTR(error); return ERR_PTR(error);
...@@ -2607,9 +2606,11 @@ char *d_absolute_path(const struct path *path, ...@@ -2607,9 +2606,11 @@ char *d_absolute_path(const struct path *path,
int error; int error;
prepend(&res, &buflen, "\0", 1); prepend(&res, &buflen, "\0", 1);
br_read_lock(vfsmount_lock);
write_seqlock(&rename_lock); write_seqlock(&rename_lock);
error = prepend_path(path, &root, &res, &buflen); error = prepend_path(path, &root, &res, &buflen);
write_sequnlock(&rename_lock); write_sequnlock(&rename_lock);
br_read_unlock(vfsmount_lock);
if (error > 1) if (error > 1)
error = -EINVAL; error = -EINVAL;
...@@ -2673,11 +2674,13 @@ char *d_path(const struct path *path, char *buf, int buflen) ...@@ -2673,11 +2674,13 @@ char *d_path(const struct path *path, char *buf, int buflen)
return path->dentry->d_op->d_dname(path->dentry, buf, buflen); return path->dentry->d_op->d_dname(path->dentry, buf, buflen);
get_fs_root(current->fs, &root); get_fs_root(current->fs, &root);
br_read_lock(vfsmount_lock);
write_seqlock(&rename_lock); write_seqlock(&rename_lock);
error = path_with_deleted(path, &root, &res, &buflen); error = path_with_deleted(path, &root, &res, &buflen);
write_sequnlock(&rename_lock);
br_read_unlock(vfsmount_lock);
if (error < 0) if (error < 0)
res = ERR_PTR(error); res = ERR_PTR(error);
write_sequnlock(&rename_lock);
path_put(&root); path_put(&root);
return res; return res;
} }
...@@ -2832,6 +2835,7 @@ SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size) ...@@ -2832,6 +2835,7 @@ SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size)
get_fs_root_and_pwd(current->fs, &root, &pwd); get_fs_root_and_pwd(current->fs, &root, &pwd);
error = -ENOENT; error = -ENOENT;
br_read_lock(vfsmount_lock);
write_seqlock(&rename_lock); write_seqlock(&rename_lock);
if (!d_unlinked(pwd.dentry)) { if (!d_unlinked(pwd.dentry)) {
unsigned long len; unsigned long len;
...@@ -2841,6 +2845,7 @@ SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size) ...@@ -2841,6 +2845,7 @@ SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size)
prepend(&cwd, &buflen, "\0", 1); prepend(&cwd, &buflen, "\0", 1);
error = prepend_path(&pwd, &root, &cwd, &buflen); error = prepend_path(&pwd, &root, &cwd, &buflen);
write_sequnlock(&rename_lock); write_sequnlock(&rename_lock);
br_read_unlock(vfsmount_lock);
if (error < 0) if (error < 0)
goto out; goto out;
...@@ -2861,6 +2866,7 @@ SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size) ...@@ -2861,6 +2866,7 @@ SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size)
} }
} else { } else {
write_sequnlock(&rename_lock); write_sequnlock(&rename_lock);
br_read_unlock(vfsmount_lock);
} }
out: 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