Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357757
b: refs/heads/master
c: ec2aa8e
h: refs/heads/master
i:
  357755: 651056f
v: v3
  • Loading branch information
Eric W. Biederman committed Jan 27, 2013
1 parent baa9788 commit aaa6fa7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e11f0ae388f227d7ad03953e19034dec55286650
refs/heads/master: ec2aa8e8dd7d35524a68c89b9e7ceb07fb002561
18 changes: 18 additions & 0 deletions trunk/fs/devpts/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,13 @@ static int mknod_ptmx(struct super_block *sb)
struct dentry *root = sb->s_root;
struct pts_fs_info *fsi = DEVPTS_SB(sb);
struct pts_mount_opts *opts = &fsi->mount_opts;
kuid_t root_uid;
kgid_t root_gid;

root_uid = make_kuid(current_user_ns(), 0);
root_gid = make_kgid(current_user_ns(), 0);
if (!uid_valid(root_uid) || !gid_valid(root_gid))
return -EINVAL;

mutex_lock(&root->d_inode->i_mutex);

Expand Down Expand Up @@ -273,6 +280,8 @@ static int mknod_ptmx(struct super_block *sb)

mode = S_IFCHR|opts->ptmxmode;
init_special_inode(inode, mode, MKDEV(TTYAUX_MAJOR, 2));
inode->i_uid = root_uid;
inode->i_gid = root_gid;

d_add(dentry, inode);

Expand Down Expand Up @@ -438,6 +447,12 @@ static struct dentry *devpts_mount(struct file_system_type *fs_type,
if (error)
return ERR_PTR(error);

/* Require newinstance for all user namespace mounts to ensure
* the mount options are not changed.
*/
if ((current_user_ns() != &init_user_ns) && !opts.newinstance)
return ERR_PTR(-EINVAL);

if (opts.newinstance)
s = sget(fs_type, NULL, set_anon_super, flags, NULL);
else
Expand Down Expand Up @@ -491,6 +506,9 @@ static struct file_system_type devpts_fs_type = {
.name = "devpts",
.mount = devpts_mount,
.kill_sb = devpts_kill_sb,
#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
.fs_flags = FS_USERNS_MOUNT | FS_USERNS_DEV_MOUNT,
#endif
};

/*
Expand Down

0 comments on commit aaa6fa7

Please sign in to comment.