1 /* -*- linux-c -*- --------------------------------------------------------- *
3 * linux/fs/devpts/inode.c
5 * Copyright 1998-2004 H. Peter Anvin -- All Rights Reserved
7 * This file is part of the Linux kernel and is made available under
8 * the terms of the GNU General Public License, version 2, or at your
9 * option, any later version, incorporated herein by reference.
11 * ------------------------------------------------------------------------- */
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/module.h>
16 #include <linux/init.h>
18 #include <linux/sched.h>
19 #include <linux/namei.h>
20 #include <linux/slab.h>
21 #include <linux/mount.h>
22 #include <linux/tty.h>
23 #include <linux/mutex.h>
24 #include <linux/magic.h>
25 #include <linux/idr.h>
26 #include <linux/devpts_fs.h>
27 #include <linux/parser.h>
28 #include <linux/fsnotify.h>
29 #include <linux/seq_file.h>
31 #define DEVPTS_DEFAULT_MODE 0600
33 * ptmx is a new node in /dev/pts and will be unused in legacy (single-
34 * instance) mode. To prevent surprises in user space, set permissions of
35 * ptmx to 0. Use 'chmod' or remount with '-o ptmxmode' to set meaningful
38 #define DEVPTS_DEFAULT_PTMX_MODE 0000
42 * sysctl support for setting limits on the number of Unix98 ptys allocated.
43 * Otherwise one can eat up all kernel memory by opening /dev/ptmx repeatedly.
45 static int pty_limit
= NR_UNIX98_PTY_DEFAULT
;
46 static int pty_reserve
= NR_UNIX98_PTY_RESERVE
;
47 static int pty_limit_min
;
48 static int pty_limit_max
= INT_MAX
;
51 static struct ctl_table pty_table
[] = {
54 .maxlen
= sizeof(int),
57 .proc_handler
= proc_dointvec_minmax
,
58 .extra1
= &pty_limit_min
,
59 .extra2
= &pty_limit_max
,
61 .procname
= "reserve",
62 .maxlen
= sizeof(int),
65 .proc_handler
= proc_dointvec_minmax
,
66 .extra1
= &pty_limit_min
,
67 .extra2
= &pty_limit_max
,
70 .maxlen
= sizeof(int),
73 .proc_handler
= proc_dointvec
,
78 static struct ctl_table pty_kern_table
[] = {
87 static struct ctl_table pty_root_table
[] = {
91 .child
= pty_kern_table
,
96 static DEFINE_MUTEX(allocated_ptys_lock
);
98 static struct vfsmount
*devpts_mnt
;
100 struct pts_mount_opts
{
112 Opt_uid
, Opt_gid
, Opt_mode
, Opt_ptmxmode
, Opt_newinstance
, Opt_max
,
116 static const match_table_t tokens
= {
119 {Opt_mode
, "mode=%o"},
120 #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
121 {Opt_ptmxmode
, "ptmxmode=%o"},
122 {Opt_newinstance
, "newinstance"},
129 struct ida allocated_ptys
;
130 struct pts_mount_opts mount_opts
;
131 struct dentry
*ptmx_dentry
;
134 static inline struct pts_fs_info
*DEVPTS_SB(struct super_block
*sb
)
136 return sb
->s_fs_info
;
139 static inline struct super_block
*pts_sb_from_inode(struct inode
*inode
)
141 #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
142 if (inode
->i_sb
->s_magic
== DEVPTS_SUPER_MAGIC
)
145 return devpts_mnt
->mnt_sb
;
148 #define PARSE_MOUNT 0
149 #define PARSE_REMOUNT 1
152 * parse_mount_options():
153 * Set @opts to mount options specified in @data. If an option is not
154 * specified in @data, set it to its default value. The exception is
155 * 'newinstance' option which can only be set/cleared on a mount (i.e.
156 * cannot be changed during remount).
158 * Note: @data may be NULL (in which case all options are set to default).
160 static int parse_mount_options(char *data
, int op
, struct pts_mount_opts
*opts
)
168 opts
->uid
= GLOBAL_ROOT_UID
;
169 opts
->gid
= GLOBAL_ROOT_GID
;
170 opts
->mode
= DEVPTS_DEFAULT_MODE
;
171 opts
->ptmxmode
= DEVPTS_DEFAULT_PTMX_MODE
;
172 opts
->max
= NR_UNIX98_PTY_MAX
;
174 /* newinstance makes sense only on initial mount */
175 if (op
== PARSE_MOUNT
)
176 opts
->newinstance
= 0;
178 while ((p
= strsep(&data
, ",")) != NULL
) {
179 substring_t args
[MAX_OPT_ARGS
];
186 token
= match_token(p
, tokens
, args
);
189 if (match_int(&args
[0], &option
))
191 uid
= make_kuid(current_user_ns(), option
);
198 if (match_int(&args
[0], &option
))
200 gid
= make_kgid(current_user_ns(), option
);
207 if (match_octal(&args
[0], &option
))
209 opts
->mode
= option
& S_IALLUGO
;
211 #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
213 if (match_octal(&args
[0], &option
))
215 opts
->ptmxmode
= option
& S_IALLUGO
;
217 case Opt_newinstance
:
218 /* newinstance makes sense only on initial mount */
219 if (op
== PARSE_MOUNT
)
220 opts
->newinstance
= 1;
223 if (match_int(&args
[0], &option
) ||
224 option
< 0 || option
> NR_UNIX98_PTY_MAX
)
230 pr_err("called with bogus options\n");
238 #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
239 static int mknod_ptmx(struct super_block
*sb
)
243 struct dentry
*dentry
;
245 struct dentry
*root
= sb
->s_root
;
246 struct pts_fs_info
*fsi
= DEVPTS_SB(sb
);
247 struct pts_mount_opts
*opts
= &fsi
->mount_opts
;
251 root_uid
= make_kuid(current_user_ns(), 0);
252 root_gid
= make_kgid(current_user_ns(), 0);
253 if (!uid_valid(root_uid
) || !gid_valid(root_gid
))
256 mutex_lock(&root
->d_inode
->i_mutex
);
258 /* If we have already created ptmx node, return */
259 if (fsi
->ptmx_dentry
) {
264 dentry
= d_alloc_name(root
, "ptmx");
266 pr_err("Unable to alloc dentry for ptmx node\n");
271 * Create a new 'ptmx' node in this mount of devpts.
273 inode
= new_inode(sb
);
275 pr_err("Unable to alloc inode for ptmx node\n");
281 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
283 mode
= S_IFCHR
|opts
->ptmxmode
;
284 init_special_inode(inode
, mode
, MKDEV(TTYAUX_MAJOR
, 2));
285 inode
->i_uid
= root_uid
;
286 inode
->i_gid
= root_gid
;
288 d_add(dentry
, inode
);
290 fsi
->ptmx_dentry
= dentry
;
293 mutex_unlock(&root
->d_inode
->i_mutex
);
297 static void update_ptmx_mode(struct pts_fs_info
*fsi
)
300 if (fsi
->ptmx_dentry
) {
301 inode
= fsi
->ptmx_dentry
->d_inode
;
302 inode
->i_mode
= S_IFCHR
|fsi
->mount_opts
.ptmxmode
;
306 static inline void update_ptmx_mode(struct pts_fs_info
*fsi
)
312 static int devpts_remount(struct super_block
*sb
, int *flags
, char *data
)
315 struct pts_fs_info
*fsi
= DEVPTS_SB(sb
);
316 struct pts_mount_opts
*opts
= &fsi
->mount_opts
;
319 err
= parse_mount_options(data
, PARSE_REMOUNT
, opts
);
322 * parse_mount_options() restores options to default values
323 * before parsing and may have changed ptmxmode. So, update the
324 * mode in the inode too. Bogus options don't fail the remount,
325 * so do this even on error return.
327 update_ptmx_mode(fsi
);
332 static int devpts_show_options(struct seq_file
*seq
, struct dentry
*root
)
334 struct pts_fs_info
*fsi
= DEVPTS_SB(root
->d_sb
);
335 struct pts_mount_opts
*opts
= &fsi
->mount_opts
;
338 seq_printf(seq
, ",uid=%u",
339 from_kuid_munged(&init_user_ns
, opts
->uid
));
341 seq_printf(seq
, ",gid=%u",
342 from_kgid_munged(&init_user_ns
, opts
->gid
));
343 seq_printf(seq
, ",mode=%03o", opts
->mode
);
344 #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
345 seq_printf(seq
, ",ptmxmode=%03o", opts
->ptmxmode
);
346 if (opts
->max
< NR_UNIX98_PTY_MAX
)
347 seq_printf(seq
, ",max=%d", opts
->max
);
353 static const struct super_operations devpts_sops
= {
354 .statfs
= simple_statfs
,
355 .remount_fs
= devpts_remount
,
356 .show_options
= devpts_show_options
,
359 static void *new_pts_fs_info(void)
361 struct pts_fs_info
*fsi
;
363 fsi
= kzalloc(sizeof(struct pts_fs_info
), GFP_KERNEL
);
367 ida_init(&fsi
->allocated_ptys
);
368 fsi
->mount_opts
.mode
= DEVPTS_DEFAULT_MODE
;
369 fsi
->mount_opts
.ptmxmode
= DEVPTS_DEFAULT_PTMX_MODE
;
375 devpts_fill_super(struct super_block
*s
, void *data
, int silent
)
379 s
->s_blocksize
= 1024;
380 s
->s_blocksize_bits
= 10;
381 s
->s_magic
= DEVPTS_SUPER_MAGIC
;
382 s
->s_op
= &devpts_sops
;
385 s
->s_fs_info
= new_pts_fs_info();
389 inode
= new_inode(s
);
393 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
394 inode
->i_mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
| S_IWUSR
;
395 inode
->i_op
= &simple_dir_inode_operations
;
396 inode
->i_fop
= &simple_dir_operations
;
399 s
->s_root
= d_make_root(inode
);
403 pr_err("get root dentry failed\n");
409 #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
410 static int compare_init_pts_sb(struct super_block
*s
, void *p
)
413 return devpts_mnt
->mnt_sb
== s
;
420 * If the '-o newinstance' mount option was specified, mount a new
421 * (private) instance of devpts. PTYs created in this instance are
422 * independent of the PTYs in other devpts instances.
424 * If the '-o newinstance' option was not specified, mount/remount the
425 * initial kernel mount of devpts. This type of mount gives the
426 * legacy, single-instance semantics.
428 * The 'newinstance' option is needed to support multiple namespace
429 * semantics in devpts while preserving backward compatibility of the
430 * current 'single-namespace' semantics. i.e all mounts of devpts
431 * without the 'newinstance' mount option should bind to the initial
432 * kernel mount, like mount_single().
434 * Mounts with 'newinstance' option create a new, private namespace.
438 * For single-mount semantics, devpts cannot use mount_single(),
439 * because mount_single()/sget() find and use the super-block from
440 * the most recent mount of devpts. But that recent mount may be a
441 * 'newinstance' mount and mount_single() would pick the newinstance
442 * super-block instead of the initial super-block.
444 static struct dentry
*devpts_mount(struct file_system_type
*fs_type
,
445 int flags
, const char *dev_name
, void *data
)
448 struct pts_mount_opts opts
;
449 struct super_block
*s
;
451 error
= parse_mount_options(data
, PARSE_MOUNT
, &opts
);
453 return ERR_PTR(error
);
455 /* Require newinstance for all user namespace mounts to ensure
456 * the mount options are not changed.
458 if ((current_user_ns() != &init_user_ns
) && !opts
.newinstance
)
459 return ERR_PTR(-EINVAL
);
461 if (opts
.newinstance
)
462 s
= sget(fs_type
, NULL
, set_anon_super
, flags
, NULL
);
464 s
= sget(fs_type
, compare_init_pts_sb
, set_anon_super
, flags
,
471 error
= devpts_fill_super(s
, data
, flags
& MS_SILENT
? 1 : 0);
474 s
->s_flags
|= MS_ACTIVE
;
477 memcpy(&(DEVPTS_SB(s
))->mount_opts
, &opts
, sizeof(opts
));
479 error
= mknod_ptmx(s
);
483 return dget(s
->s_root
);
486 deactivate_locked_super(s
);
487 return ERR_PTR(error
);
492 * This supports only the legacy single-instance semantics (no
493 * multiple-instance semantics)
495 static struct dentry
*devpts_mount(struct file_system_type
*fs_type
, int flags
,
496 const char *dev_name
, void *data
)
498 return mount_single(fs_type
, flags
, data
, devpts_fill_super
);
502 static void devpts_kill_sb(struct super_block
*sb
)
504 struct pts_fs_info
*fsi
= DEVPTS_SB(sb
);
506 ida_destroy(&fsi
->allocated_ptys
);
508 kill_litter_super(sb
);
511 static struct file_system_type devpts_fs_type
= {
513 .mount
= devpts_mount
,
514 .kill_sb
= devpts_kill_sb
,
515 #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
516 .fs_flags
= FS_USERNS_MOUNT
| FS_USERNS_DEV_MOUNT
,
521 * The normal naming convention is simply /dev/pts/<number>; this conforms
522 * to the System V naming convention
525 int devpts_new_index(struct inode
*ptmx_inode
)
527 struct super_block
*sb
= pts_sb_from_inode(ptmx_inode
);
528 struct pts_fs_info
*fsi
= DEVPTS_SB(sb
);
533 if (!ida_pre_get(&fsi
->allocated_ptys
, GFP_KERNEL
))
536 mutex_lock(&allocated_ptys_lock
);
537 if (pty_count
>= pty_limit
-
538 (fsi
->mount_opts
.newinstance
? pty_reserve
: 0)) {
539 mutex_unlock(&allocated_ptys_lock
);
543 ida_ret
= ida_get_new(&fsi
->allocated_ptys
, &index
);
545 mutex_unlock(&allocated_ptys_lock
);
546 if (ida_ret
== -EAGAIN
)
551 if (index
>= fsi
->mount_opts
.max
) {
552 ida_remove(&fsi
->allocated_ptys
, index
);
553 mutex_unlock(&allocated_ptys_lock
);
557 mutex_unlock(&allocated_ptys_lock
);
561 void devpts_kill_index(struct inode
*ptmx_inode
, int idx
)
563 struct super_block
*sb
= pts_sb_from_inode(ptmx_inode
);
564 struct pts_fs_info
*fsi
= DEVPTS_SB(sb
);
566 mutex_lock(&allocated_ptys_lock
);
567 ida_remove(&fsi
->allocated_ptys
, idx
);
569 mutex_unlock(&allocated_ptys_lock
);
573 * devpts_pty_new -- create a new inode in /dev/pts/
574 * @ptmx_inode: inode of the master
575 * @device: major+minor of the node to be created
576 * @index: used as a name of the node
577 * @priv: what's given back by devpts_get_priv
579 * The created inode is returned. Remove it from /dev/pts/ by devpts_pty_kill.
581 struct inode
*devpts_pty_new(struct inode
*ptmx_inode
, dev_t device
, int index
,
584 struct dentry
*dentry
;
585 struct super_block
*sb
= pts_sb_from_inode(ptmx_inode
);
587 struct dentry
*root
= sb
->s_root
;
588 struct pts_fs_info
*fsi
= DEVPTS_SB(sb
);
589 struct pts_mount_opts
*opts
= &fsi
->mount_opts
;
592 inode
= new_inode(sb
);
594 return ERR_PTR(-ENOMEM
);
596 inode
->i_ino
= index
+ 3;
597 inode
->i_uid
= opts
->setuid
? opts
->uid
: current_fsuid();
598 inode
->i_gid
= opts
->setgid
? opts
->gid
: current_fsgid();
599 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
600 init_special_inode(inode
, S_IFCHR
|opts
->mode
, device
);
601 inode
->i_private
= priv
;
603 sprintf(s
, "%d", index
);
605 mutex_lock(&root
->d_inode
->i_mutex
);
607 dentry
= d_alloc_name(root
, s
);
609 d_add(dentry
, inode
);
610 fsnotify_create(root
->d_inode
, dentry
);
613 inode
= ERR_PTR(-ENOMEM
);
616 mutex_unlock(&root
->d_inode
->i_mutex
);
622 * devpts_get_priv -- get private data for a slave
623 * @pts_inode: inode of the slave
625 * Returns whatever was passed as priv in devpts_pty_new for a given inode.
627 void *devpts_get_priv(struct inode
*pts_inode
)
629 struct dentry
*dentry
;
632 BUG_ON(pts_inode
->i_rdev
== MKDEV(TTYAUX_MAJOR
, PTMX_MINOR
));
634 /* Ensure dentry has not been deleted by devpts_pty_kill() */
635 dentry
= d_find_alias(pts_inode
);
639 if (pts_inode
->i_sb
->s_magic
== DEVPTS_SUPER_MAGIC
)
640 priv
= pts_inode
->i_private
;
648 * devpts_pty_kill -- remove inode form /dev/pts/
649 * @inode: inode of the slave to be removed
651 * This is an inverse operation of devpts_pty_new.
653 void devpts_pty_kill(struct inode
*inode
)
655 struct super_block
*sb
= pts_sb_from_inode(inode
);
656 struct dentry
*root
= sb
->s_root
;
657 struct dentry
*dentry
;
659 BUG_ON(inode
->i_rdev
== MKDEV(TTYAUX_MAJOR
, PTMX_MINOR
));
661 mutex_lock(&root
->d_inode
->i_mutex
);
663 dentry
= d_find_alias(inode
);
667 dput(dentry
); /* d_alloc_name() in devpts_pty_new() */
668 dput(dentry
); /* d_find_alias above */
670 mutex_unlock(&root
->d_inode
->i_mutex
);
673 static int __init
init_devpts_fs(void)
675 int err
= register_filesystem(&devpts_fs_type
);
676 struct ctl_table_header
*table
;
679 table
= register_sysctl_table(pty_root_table
);
680 devpts_mnt
= kern_mount(&devpts_fs_type
);
681 if (IS_ERR(devpts_mnt
)) {
682 err
= PTR_ERR(devpts_mnt
);
683 unregister_filesystem(&devpts_fs_type
);
684 unregister_sysctl_table(table
);
689 module_init(init_devpts_fs
)