Commit 69086a78 authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs

Pull vfs fix from Al Viro:
 "Fix for 3.8 breakage introduced by "vfs: Allow unprivileged
  manipulation of the mount namespace" - accessing mnt->mnt_ns is done
  there without needed locking *and* without any real need.

  Definite -stable fodder, fortunately not going too far back.

  This is *not* all - there will be much bigger vfs pull request
  tomorrow."

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
  get rid of unprotected dereferencing of mnt->mnt_ns
parents 94f2f142 9b40bc90
...@@ -1237,6 +1237,14 @@ static int do_umount(struct mount *mnt, int flags) ...@@ -1237,6 +1237,14 @@ static int do_umount(struct mount *mnt, int flags)
return retval; return retval;
} }
/*
* Is the caller allowed to modify his namespace?
*/
static inline bool may_mount(void)
{
return ns_capable(current->nsproxy->mnt_ns->user_ns, CAP_SYS_ADMIN);
}
/* /*
* Now umount can handle mount points as well as block devices. * Now umount can handle mount points as well as block devices.
* This is important for filesystems which use unnamed block devices. * This is important for filesystems which use unnamed block devices.
...@@ -1255,6 +1263,9 @@ SYSCALL_DEFINE2(umount, char __user *, name, int, flags) ...@@ -1255,6 +1263,9 @@ SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW)) if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
return -EINVAL; return -EINVAL;
if (!may_mount())
return -EPERM;
if (!(flags & UMOUNT_NOFOLLOW)) if (!(flags & UMOUNT_NOFOLLOW))
lookup_flags |= LOOKUP_FOLLOW; lookup_flags |= LOOKUP_FOLLOW;
...@@ -1268,10 +1279,6 @@ SYSCALL_DEFINE2(umount, char __user *, name, int, flags) ...@@ -1268,10 +1279,6 @@ SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
if (!check_mnt(mnt)) if (!check_mnt(mnt))
goto dput_and_out; goto dput_and_out;
retval = -EPERM;
if (!ns_capable(mnt->mnt_ns->user_ns, CAP_SYS_ADMIN))
goto dput_and_out;
retval = do_umount(mnt, flags); retval = do_umount(mnt, flags);
dput_and_out: dput_and_out:
/* we mustn't call path_put() as that would clear mnt_expiry_mark */ /* we mustn't call path_put() as that would clear mnt_expiry_mark */
...@@ -1295,7 +1302,7 @@ SYSCALL_DEFINE1(oldumount, char __user *, name) ...@@ -1295,7 +1302,7 @@ SYSCALL_DEFINE1(oldumount, char __user *, name)
static int mount_is_safe(struct path *path) static int mount_is_safe(struct path *path)
{ {
if (ns_capable(real_mount(path->mnt)->mnt_ns->user_ns, CAP_SYS_ADMIN)) if (may_mount())
return 0; return 0;
return -EPERM; return -EPERM;
#ifdef notyet #ifdef notyet
...@@ -1633,7 +1640,7 @@ static int do_change_type(struct path *path, int flag) ...@@ -1633,7 +1640,7 @@ static int do_change_type(struct path *path, int flag)
int type; int type;
int err = 0; int err = 0;
if (!ns_capable(mnt->mnt_ns->user_ns, CAP_SYS_ADMIN)) if (!may_mount())
return -EPERM; return -EPERM;
if (path->dentry != path->mnt->mnt_root) if (path->dentry != path->mnt->mnt_root)
...@@ -1797,7 +1804,7 @@ static int do_move_mount(struct path *path, const char *old_name) ...@@ -1797,7 +1804,7 @@ static int do_move_mount(struct path *path, const char *old_name)
struct mount *p; struct mount *p;
struct mount *old; struct mount *old;
int err = 0; int err = 0;
if (!ns_capable(real_mount(path->mnt)->mnt_ns->user_ns, CAP_SYS_ADMIN)) if (!may_mount())
return -EPERM; return -EPERM;
if (!old_name || !*old_name) if (!old_name || !*old_name)
return -EINVAL; return -EINVAL;
...@@ -1933,16 +1940,14 @@ static int do_new_mount(struct path *path, const char *fstype, int flags, ...@@ -1933,16 +1940,14 @@ static int do_new_mount(struct path *path, const char *fstype, int flags,
int mnt_flags, const char *name, void *data) int mnt_flags, const char *name, void *data)
{ {
struct file_system_type *type; struct file_system_type *type;
struct user_namespace *user_ns; struct user_namespace *user_ns = current->nsproxy->mnt_ns->user_ns;
struct vfsmount *mnt; struct vfsmount *mnt;
int err; int err;
if (!fstype) if (!fstype)
return -EINVAL; return -EINVAL;
/* we need capabilities... */ if (!may_mount())
user_ns = real_mount(path->mnt)->mnt_ns->user_ns;
if (!ns_capable(user_ns, CAP_SYS_ADMIN))
return -EPERM; return -EPERM;
type = get_fs_type(fstype); type = get_fs_type(fstype);
...@@ -2567,7 +2572,7 @@ SYSCALL_DEFINE2(pivot_root, const char __user *, new_root, ...@@ -2567,7 +2572,7 @@ SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
struct mount *new_mnt, *root_mnt; struct mount *new_mnt, *root_mnt;
int error; int error;
if (!ns_capable(current->nsproxy->mnt_ns->user_ns, CAP_SYS_ADMIN)) if (!may_mount())
return -EPERM; return -EPERM;
error = user_path_dir(new_root, &new); error = user_path_dir(new_root, &new);
......
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