Commit 31af0abb authored by Sukadev Bhattiprolu's avatar Sukadev Bhattiprolu Committed by Linus Torvalds

Per-mount 'config' object

With support for multiple mounts of devpts, the 'config' structure really
represents per-mount options rather than config parameters. Rename 'config'
structure to 'pts_mount_opts' and store it in the super-block.
Signed-off-by: default avatarSukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e76b7c01
...@@ -34,13 +34,13 @@ static DEFINE_MUTEX(allocated_ptys_lock); ...@@ -34,13 +34,13 @@ static DEFINE_MUTEX(allocated_ptys_lock);
static struct vfsmount *devpts_mnt; static struct vfsmount *devpts_mnt;
static struct { struct pts_mount_opts {
int setuid; int setuid;
int setgid; int setgid;
uid_t uid; uid_t uid;
gid_t gid; gid_t gid;
umode_t mode; umode_t mode;
} config = {.mode = DEVPTS_DEFAULT_MODE}; };
enum { enum {
Opt_uid, Opt_gid, Opt_mode, Opt_uid, Opt_gid, Opt_mode,
...@@ -56,6 +56,7 @@ static const match_table_t tokens = { ...@@ -56,6 +56,7 @@ static const match_table_t tokens = {
struct pts_fs_info { struct pts_fs_info {
struct ida allocated_ptys; struct ida allocated_ptys;
struct pts_mount_opts mount_opts;
}; };
static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb) static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
...@@ -74,12 +75,14 @@ static inline struct super_block *pts_sb_from_inode(struct inode *inode) ...@@ -74,12 +75,14 @@ static inline struct super_block *pts_sb_from_inode(struct inode *inode)
static int devpts_remount(struct super_block *sb, int *flags, char *data) static int devpts_remount(struct super_block *sb, int *flags, char *data)
{ {
char *p; char *p;
struct pts_fs_info *fsi = DEVPTS_SB(sb);
struct pts_mount_opts *opts = &fsi->mount_opts;
config.setuid = 0; opts->setuid = 0;
config.setgid = 0; opts->setgid = 0;
config.uid = 0; opts->uid = 0;
config.gid = 0; opts->gid = 0;
config.mode = DEVPTS_DEFAULT_MODE; opts->mode = DEVPTS_DEFAULT_MODE;
while ((p = strsep(&data, ",")) != NULL) { while ((p = strsep(&data, ",")) != NULL) {
substring_t args[MAX_OPT_ARGS]; substring_t args[MAX_OPT_ARGS];
...@@ -94,19 +97,19 @@ static int devpts_remount(struct super_block *sb, int *flags, char *data) ...@@ -94,19 +97,19 @@ static int devpts_remount(struct super_block *sb, int *flags, char *data)
case Opt_uid: case Opt_uid:
if (match_int(&args[0], &option)) if (match_int(&args[0], &option))
return -EINVAL; return -EINVAL;
config.uid = option; opts->uid = option;
config.setuid = 1; opts->setuid = 1;
break; break;
case Opt_gid: case Opt_gid:
if (match_int(&args[0], &option)) if (match_int(&args[0], &option))
return -EINVAL; return -EINVAL;
config.gid = option; opts->gid = option;
config.setgid = 1; opts->setgid = 1;
break; break;
case Opt_mode: case Opt_mode:
if (match_octal(&args[0], &option)) if (match_octal(&args[0], &option))
return -EINVAL; return -EINVAL;
config.mode = option & S_IALLUGO; opts->mode = option & S_IALLUGO;
break; break;
default: default:
printk(KERN_ERR "devpts: called with bogus options\n"); printk(KERN_ERR "devpts: called with bogus options\n");
...@@ -119,11 +122,14 @@ static int devpts_remount(struct super_block *sb, int *flags, char *data) ...@@ -119,11 +122,14 @@ static int devpts_remount(struct super_block *sb, int *flags, char *data)
static int devpts_show_options(struct seq_file *seq, struct vfsmount *vfs) static int devpts_show_options(struct seq_file *seq, struct vfsmount *vfs)
{ {
if (config.setuid) struct pts_fs_info *fsi = DEVPTS_SB(vfs->mnt_sb);
seq_printf(seq, ",uid=%u", config.uid); struct pts_mount_opts *opts = &fsi->mount_opts;
if (config.setgid)
seq_printf(seq, ",gid=%u", config.gid); if (opts->setuid)
seq_printf(seq, ",mode=%03o", config.mode); seq_printf(seq, ",uid=%u", opts->uid);
if (opts->setgid)
seq_printf(seq, ",gid=%u", opts->gid);
seq_printf(seq, ",mode=%03o", opts->mode);
return 0; return 0;
} }
...@@ -143,6 +149,7 @@ static void *new_pts_fs_info(void) ...@@ -143,6 +149,7 @@ static void *new_pts_fs_info(void)
return NULL; return NULL;
ida_init(&fsi->allocated_ptys); ida_init(&fsi->allocated_ptys);
fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
return fsi; return fsi;
} }
...@@ -262,6 +269,8 @@ int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty) ...@@ -262,6 +269,8 @@ int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty)
struct super_block *sb = pts_sb_from_inode(ptmx_inode); struct super_block *sb = pts_sb_from_inode(ptmx_inode);
struct inode *inode = new_inode(sb); struct inode *inode = new_inode(sb);
struct dentry *root = sb->s_root; struct dentry *root = sb->s_root;
struct pts_fs_info *fsi = DEVPTS_SB(sb);
struct pts_mount_opts *opts = &fsi->mount_opts;
char s[12]; char s[12];
/* We're supposed to be given the slave end of a pty */ /* We're supposed to be given the slave end of a pty */
...@@ -275,7 +284,7 @@ int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty) ...@@ -275,7 +284,7 @@ int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty)
inode->i_uid = config.setuid ? config.uid : current_fsuid(); inode->i_uid = config.setuid ? config.uid : current_fsuid();
inode->i_gid = config.setgid ? config.gid : current_fsgid(); inode->i_gid = config.setgid ? config.gid : current_fsgid();
inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
init_special_inode(inode, S_IFCHR|config.mode, device); init_special_inode(inode, S_IFCHR|opts->mode, device);
inode->i_private = tty; inode->i_private = tty;
tty->driver_data = inode; tty->driver_data = inode;
......
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