Skip to content

Commit

Permalink
mqueue: set ->user_ns before ->get_tree()
Browse files Browse the repository at this point in the history
... so that we could lift the capability checks into ->get_tree()
caller

Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed May 25, 2019
1 parent 20284ab commit 709a643
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions ipc/mqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,8 +364,6 @@ static int mqueue_get_tree(struct fs_context *fc)
{
struct mqueue_fs_context *ctx = fc->fs_private;

put_user_ns(fc->user_ns);
fc->user_ns = get_user_ns(ctx->ipc_ns->user_ns);
fc->s_fs_info = ctx->ipc_ns;
return vfs_get_super(fc, vfs_get_keyed_super, mqueue_fill_super);
}
Expand All @@ -374,8 +372,7 @@ static void mqueue_fs_context_free(struct fs_context *fc)
{
struct mqueue_fs_context *ctx = fc->fs_private;

if (ctx->ipc_ns)
put_ipc_ns(ctx->ipc_ns);
put_ipc_ns(ctx->ipc_ns);
kfree(ctx);
}

Expand All @@ -388,6 +385,8 @@ static int mqueue_init_fs_context(struct fs_context *fc)
return -ENOMEM;

ctx->ipc_ns = get_ipc_ns(current->nsproxy->ipc_ns);
put_user_ns(fc->user_ns);
fc->user_ns = get_user_ns(ctx->ipc_ns->user_ns);
fc->fs_private = ctx;
fc->ops = &mqueue_fs_context_ops;
return 0;
Expand All @@ -406,6 +405,8 @@ static struct vfsmount *mq_create_mount(struct ipc_namespace *ns)
ctx = fc->fs_private;
put_ipc_ns(ctx->ipc_ns);
ctx->ipc_ns = get_ipc_ns(ns);
put_user_ns(fc->user_ns);
fc->user_ns = get_user_ns(ctx->ipc_ns->user_ns);

mnt = fc_mount(fc);
put_fs_context(fc);
Expand Down

0 comments on commit 709a643

Please sign in to comment.