blob: 0af8e7d70d2751afa67fd85867ef107a5c4ee3eb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* -*- linux-c -*- --------------------------------------------------------- *
2 *
3 * linux/fs/devpts/inode.c
4 *
5 * Copyright 1998-2004 H. Peter Anvin -- All Rights Reserved
6 *
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.
10 *
11 * ------------------------------------------------------------------------- */
12
Fabian Frederick04541a22014-06-06 14:37:34 -070013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/fs.h>
18#include <linux/sched.h>
19#include <linux/namei.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/mount.h>
22#include <linux/tty.h>
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -070023#include <linux/mutex.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070024#include <linux/magic.h>
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -070025#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/devpts_fs.h>
Domen Puncer7a673c62006-03-23 03:00:59 -080027#include <linux/parser.h>
Florin Malita3972b7f2007-05-08 00:24:18 -070028#include <linux/fsnotify.h>
Miklos Szeredib87a2672008-02-08 04:21:41 -080029#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Miklos Szeredib87a2672008-02-08 04:21:41 -080031#define DEVPTS_DEFAULT_MODE 0600
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +000032/*
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
36 * permissions.
37 */
38#define DEVPTS_DEFAULT_PTMX_MODE 0000
Sukadev Bhattiprolu527b3e42008-10-13 10:43:08 +010039#define PTMX_MINOR 2
Miklos Szeredib87a2672008-02-08 04:21:41 -080040
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +040041/*
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.
44 */
45static int pty_limit = NR_UNIX98_PTY_DEFAULT;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +040046static int pty_reserve = NR_UNIX98_PTY_RESERVE;
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +040047static int pty_limit_min;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +040048static int pty_limit_max = INT_MAX;
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +040049static int pty_count;
50
51static struct ctl_table pty_table[] = {
52 {
53 .procname = "max",
54 .maxlen = sizeof(int),
55 .mode = 0644,
56 .data = &pty_limit,
57 .proc_handler = proc_dointvec_minmax,
58 .extra1 = &pty_limit_min,
59 .extra2 = &pty_limit_max,
60 }, {
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +040061 .procname = "reserve",
62 .maxlen = sizeof(int),
63 .mode = 0644,
64 .data = &pty_reserve,
65 .proc_handler = proc_dointvec_minmax,
66 .extra1 = &pty_limit_min,
67 .extra2 = &pty_limit_max,
68 }, {
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +040069 .procname = "nr",
70 .maxlen = sizeof(int),
71 .mode = 0444,
72 .data = &pty_count,
73 .proc_handler = proc_dointvec,
74 },
75 {}
76};
77
78static struct ctl_table pty_kern_table[] = {
79 {
80 .procname = "pty",
81 .mode = 0555,
82 .child = pty_table,
83 },
84 {}
85};
86
87static struct ctl_table pty_root_table[] = {
88 {
89 .procname = "kernel",
90 .mode = 0555,
91 .child = pty_kern_table,
92 },
93 {}
94};
95
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -070096static DEFINE_MUTEX(allocated_ptys_lock);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static struct vfsmount *devpts_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000100struct pts_mount_opts {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 int setuid;
102 int setgid;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800103 kuid_t uid;
104 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 umode_t mode;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000106 umode_t ptmxmode;
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000107 int newinstance;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400108 int max;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000109};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Domen Puncer7a673c62006-03-23 03:00:59 -0800111enum {
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400112 Opt_uid, Opt_gid, Opt_mode, Opt_ptmxmode, Opt_newinstance, Opt_max,
Domen Puncer7a673c62006-03-23 03:00:59 -0800113 Opt_err
114};
115
Steven Whitehousea447c092008-10-13 10:46:57 +0100116static const match_table_t tokens = {
Domen Puncer7a673c62006-03-23 03:00:59 -0800117 {Opt_uid, "uid=%u"},
118 {Opt_gid, "gid=%u"},
119 {Opt_mode, "mode=%o"},
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000120#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
121 {Opt_ptmxmode, "ptmxmode=%o"},
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000122 {Opt_newinstance, "newinstance"},
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400123 {Opt_max, "max=%d"},
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000124#endif
Domen Puncer7a673c62006-03-23 03:00:59 -0800125 {Opt_err, NULL}
126};
127
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000128struct pts_fs_info {
129 struct ida allocated_ptys;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000130 struct pts_mount_opts mount_opts;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700131 struct super_block *sb;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000132 struct dentry *ptmx_dentry;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000133};
134
135static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
136{
137 return sb->s_fs_info;
138}
139
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000140static inline struct super_block *pts_sb_from_inode(struct inode *inode)
141{
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000142#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000143 if (inode->i_sb->s_magic == DEVPTS_SUPER_MAGIC)
144 return inode->i_sb;
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000145#endif
Josh Triplett9ce71142015-06-30 14:58:27 -0700146 if (!devpts_mnt)
147 return NULL;
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000148 return devpts_mnt->mnt_sb;
149}
150
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000151#define PARSE_MOUNT 0
152#define PARSE_REMOUNT 1
153
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700154/*
155 * parse_mount_options():
Fabian Frederick04541a22014-06-06 14:37:34 -0700156 * Set @opts to mount options specified in @data. If an option is not
157 * specified in @data, set it to its default value. The exception is
158 * 'newinstance' option which can only be set/cleared on a mount (i.e.
159 * cannot be changed during remount).
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700160 *
161 * Note: @data may be NULL (in which case all options are set to default).
162 */
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000163static int parse_mount_options(char *data, int op, struct pts_mount_opts *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Domen Puncer7a673c62006-03-23 03:00:59 -0800165 char *p;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800166 kuid_t uid;
167 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000169 opts->setuid = 0;
170 opts->setgid = 0;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800171 opts->uid = GLOBAL_ROOT_UID;
172 opts->gid = GLOBAL_ROOT_GID;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000173 opts->mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000174 opts->ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400175 opts->max = NR_UNIX98_PTY_MAX;
Domen Puncer7a673c62006-03-23 03:00:59 -0800176
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000177 /* newinstance makes sense only on initial mount */
178 if (op == PARSE_MOUNT)
179 opts->newinstance = 0;
180
Domen Puncer7a673c62006-03-23 03:00:59 -0800181 while ((p = strsep(&data, ",")) != NULL) {
182 substring_t args[MAX_OPT_ARGS];
183 int token;
184 int option;
185
186 if (!*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 continue;
Domen Puncer7a673c62006-03-23 03:00:59 -0800188
189 token = match_token(p, tokens, args);
190 switch (token) {
191 case Opt_uid:
192 if (match_int(&args[0], &option))
193 return -EINVAL;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800194 uid = make_kuid(current_user_ns(), option);
195 if (!uid_valid(uid))
196 return -EINVAL;
197 opts->uid = uid;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000198 opts->setuid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800199 break;
200 case Opt_gid:
201 if (match_int(&args[0], &option))
202 return -EINVAL;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800203 gid = make_kgid(current_user_ns(), option);
204 if (!gid_valid(gid))
205 return -EINVAL;
206 opts->gid = gid;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000207 opts->setgid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800208 break;
209 case Opt_mode:
210 if (match_octal(&args[0], &option))
211 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000212 opts->mode = option & S_IALLUGO;
Domen Puncer7a673c62006-03-23 03:00:59 -0800213 break;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000214#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
215 case Opt_ptmxmode:
216 if (match_octal(&args[0], &option))
217 return -EINVAL;
218 opts->ptmxmode = option & S_IALLUGO;
219 break;
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000220 case Opt_newinstance:
221 /* newinstance makes sense only on initial mount */
222 if (op == PARSE_MOUNT)
223 opts->newinstance = 1;
224 break;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400225 case Opt_max:
226 if (match_int(&args[0], &option) ||
227 option < 0 || option > NR_UNIX98_PTY_MAX)
228 return -EINVAL;
229 opts->max = option;
230 break;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000231#endif
Domen Puncer7a673c62006-03-23 03:00:59 -0800232 default:
Fabian Frederick04541a22014-06-06 14:37:34 -0700233 pr_err("called with bogus options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return -EINVAL;
235 }
236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 return 0;
239}
240
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000241#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
242static int mknod_ptmx(struct super_block *sb)
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000243{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000244 int mode;
245 int rc = -ENOMEM;
246 struct dentry *dentry;
247 struct inode *inode;
248 struct dentry *root = sb->s_root;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000249 struct pts_fs_info *fsi = DEVPTS_SB(sb);
250 struct pts_mount_opts *opts = &fsi->mount_opts;
Eric W. Biedermanec2aa8e2012-08-20 17:28:58 -0700251 kuid_t root_uid;
252 kgid_t root_gid;
253
254 root_uid = make_kuid(current_user_ns(), 0);
255 root_gid = make_kgid(current_user_ns(), 0);
256 if (!uid_valid(root_uid) || !gid_valid(root_gid))
257 return -EINVAL;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000258
Al Viro59551022016-01-22 15:40:57 -0500259 inode_lock(d_inode(root));
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000260
261 /* If we have already created ptmx node, return */
262 if (fsi->ptmx_dentry) {
263 rc = 0;
264 goto out;
265 }
266
267 dentry = d_alloc_name(root, "ptmx");
268 if (!dentry) {
Fabian Frederick04541a22014-06-06 14:37:34 -0700269 pr_err("Unable to alloc dentry for ptmx node\n");
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000270 goto out;
271 }
272
273 /*
274 * Create a new 'ptmx' node in this mount of devpts.
275 */
276 inode = new_inode(sb);
277 if (!inode) {
Fabian Frederick04541a22014-06-06 14:37:34 -0700278 pr_err("Unable to alloc inode for ptmx node\n");
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000279 dput(dentry);
280 goto out;
281 }
282
283 inode->i_ino = 2;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000284 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
285
286 mode = S_IFCHR|opts->ptmxmode;
287 init_special_inode(inode, mode, MKDEV(TTYAUX_MAJOR, 2));
Eric W. Biedermanec2aa8e2012-08-20 17:28:58 -0700288 inode->i_uid = root_uid;
289 inode->i_gid = root_gid;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000290
291 d_add(dentry, inode);
292
293 fsi->ptmx_dentry = dentry;
294 rc = 0;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000295out:
Al Viro59551022016-01-22 15:40:57 -0500296 inode_unlock(d_inode(root));
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000297 return rc;
298}
299
300static void update_ptmx_mode(struct pts_fs_info *fsi)
301{
302 struct inode *inode;
303 if (fsi->ptmx_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +0000304 inode = d_inode(fsi->ptmx_dentry);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000305 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode;
306 }
307}
308#else
309static inline void update_ptmx_mode(struct pts_fs_info *fsi)
310{
Fabian Frederick04541a22014-06-06 14:37:34 -0700311 return;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000312}
313#endif
314
315static int devpts_remount(struct super_block *sb, int *flags, char *data)
316{
317 int err;
318 struct pts_fs_info *fsi = DEVPTS_SB(sb);
319 struct pts_mount_opts *opts = &fsi->mount_opts;
320
Theodore Ts'o02b99842014-03-13 10:14:33 -0400321 sync_filesystem(sb);
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000322 err = parse_mount_options(data, PARSE_REMOUNT, opts);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000323
324 /*
325 * parse_mount_options() restores options to default values
326 * before parsing and may have changed ptmxmode. So, update the
327 * mode in the inode too. Bogus options don't fail the remount,
328 * so do this even on error return.
329 */
330 update_ptmx_mode(fsi);
331
332 return err;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000333}
334
Al Viro34c80b12011-12-08 21:32:45 -0500335static int devpts_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredib87a2672008-02-08 04:21:41 -0800336{
Al Viro34c80b12011-12-08 21:32:45 -0500337 struct pts_fs_info *fsi = DEVPTS_SB(root->d_sb);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000338 struct pts_mount_opts *opts = &fsi->mount_opts;
339
340 if (opts->setuid)
Fabian Frederick04541a22014-06-06 14:37:34 -0700341 seq_printf(seq, ",uid=%u",
342 from_kuid_munged(&init_user_ns, opts->uid));
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000343 if (opts->setgid)
Fabian Frederick04541a22014-06-06 14:37:34 -0700344 seq_printf(seq, ",gid=%u",
345 from_kgid_munged(&init_user_ns, opts->gid));
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000346 seq_printf(seq, ",mode=%03o", opts->mode);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000347#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
348 seq_printf(seq, ",ptmxmode=%03o", opts->ptmxmode);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400349 if (opts->max < NR_UNIX98_PTY_MAX)
350 seq_printf(seq, ",max=%d", opts->max);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000351#endif
Miklos Szeredib87a2672008-02-08 04:21:41 -0800352
353 return 0;
354}
355
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800356static const struct super_operations devpts_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 .statfs = simple_statfs,
358 .remount_fs = devpts_remount,
Miklos Szeredib87a2672008-02-08 04:21:41 -0800359 .show_options = devpts_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360};
361
Linus Torvalds67245ff2016-04-16 15:16:07 -0700362static void *new_pts_fs_info(struct super_block *sb)
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000363{
364 struct pts_fs_info *fsi;
365
366 fsi = kzalloc(sizeof(struct pts_fs_info), GFP_KERNEL);
367 if (!fsi)
368 return NULL;
369
370 ida_init(&fsi->allocated_ptys);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000371 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000372 fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700373 fsi->sb = sb;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000374
375 return fsi;
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378static int
379devpts_fill_super(struct super_block *s, void *data, int silent)
380{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000381 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 s->s_blocksize = 1024;
384 s->s_blocksize_bits = 10;
385 s->s_magic = DEVPTS_SUPER_MAGIC;
386 s->s_op = &devpts_sops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 s->s_time_gran = 1;
388
Linus Torvalds67245ff2016-04-16 15:16:07 -0700389 s->s_fs_info = new_pts_fs_info(s);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000390 if (!s->s_fs_info)
391 goto fail;
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 inode = new_inode(s);
394 if (!inode)
Al Viro3850aba2012-01-08 19:40:27 -0500395 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 inode->i_ino = 1;
397 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
399 inode->i_op = &simple_dir_inode_operations;
400 inode->i_fop = &simple_dir_operations;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200401 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Al Viro48fde702012-01-08 22:15:13 -0500403 s->s_root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (s->s_root)
405 return 0;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000406
Fabian Frederick04541a22014-06-06 14:37:34 -0700407 pr_err("get root dentry failed\n");
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409fail:
410 return -ENOMEM;
411}
412
Andrew Morton8c056e52009-01-02 13:44:12 +0000413#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000414static int compare_init_pts_sb(struct super_block *s, void *p)
415{
416 if (devpts_mnt)
417 return devpts_mnt->mnt_sb == s;
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000418 return 0;
419}
420
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000421/*
Al Virofc14f2f2010-07-25 01:48:30 +0400422 * devpts_mount()
Sukadev Bhattiprolu289f00e2009-03-07 10:12:06 -0800423 *
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800424 * If the '-o newinstance' mount option was specified, mount a new
425 * (private) instance of devpts. PTYs created in this instance are
426 * independent of the PTYs in other devpts instances.
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000427 *
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800428 * If the '-o newinstance' option was not specified, mount/remount the
429 * initial kernel mount of devpts. This type of mount gives the
430 * legacy, single-instance semantics.
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000431 *
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800432 * The 'newinstance' option is needed to support multiple namespace
433 * semantics in devpts while preserving backward compatibility of the
434 * current 'single-namespace' semantics. i.e all mounts of devpts
435 * without the 'newinstance' mount option should bind to the initial
Al Virofc14f2f2010-07-25 01:48:30 +0400436 * kernel mount, like mount_single().
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000437 *
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800438 * Mounts with 'newinstance' option create a new, private namespace.
439 *
440 * NOTE:
441 *
Al Virofc14f2f2010-07-25 01:48:30 +0400442 * For single-mount semantics, devpts cannot use mount_single(),
443 * because mount_single()/sget() find and use the super-block from
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000444 * the most recent mount of devpts. But that recent mount may be a
Al Virofc14f2f2010-07-25 01:48:30 +0400445 * 'newinstance' mount and mount_single() would pick the newinstance
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000446 * super-block instead of the initial super-block.
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000447 */
Al Virofc14f2f2010-07-25 01:48:30 +0400448static struct dentry *devpts_mount(struct file_system_type *fs_type,
449 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Sukadev Bhattiprolu482984f2009-03-07 10:14:41 -0800451 int error;
452 struct pts_mount_opts opts;
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800453 struct super_block *s;
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000454
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700455 error = parse_mount_options(data, PARSE_MOUNT, &opts);
456 if (error)
Al Virofc14f2f2010-07-25 01:48:30 +0400457 return ERR_PTR(error);
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000458
Eric W. Biedermanec2aa8e2012-08-20 17:28:58 -0700459 /* Require newinstance for all user namespace mounts to ensure
460 * the mount options are not changed.
461 */
462 if ((current_user_ns() != &init_user_ns) && !opts.newinstance)
463 return ERR_PTR(-EINVAL);
464
Sukadev Bhattiprolu482984f2009-03-07 10:14:41 -0800465 if (opts.newinstance)
David Howells9249e172012-06-25 12:55:37 +0100466 s = sget(fs_type, NULL, set_anon_super, flags, NULL);
Sukadev Bhattiprolu482984f2009-03-07 10:14:41 -0800467 else
David Howells9249e172012-06-25 12:55:37 +0100468 s = sget(fs_type, compare_init_pts_sb, set_anon_super, flags,
469 NULL);
Sukadev Bhattiprolu945cf2c2009-03-07 10:11:41 -0800470
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800471 if (IS_ERR(s))
Al Virofc14f2f2010-07-25 01:48:30 +0400472 return ERR_CAST(s);
Sukadev Bhattiprolu945cf2c2009-03-07 10:11:41 -0800473
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800474 if (!s->s_root) {
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800475 error = devpts_fill_super(s, data, flags & MS_SILENT ? 1 : 0);
476 if (error)
477 goto out_undo_sget;
478 s->s_flags |= MS_ACTIVE;
479 }
480
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800481 memcpy(&(DEVPTS_SB(s))->mount_opts, &opts, sizeof(opts));
482
483 error = mknod_ptmx(s);
Sukadev Bhattiprolu945cf2c2009-03-07 10:11:41 -0800484 if (error)
Al Viro89468072010-03-20 21:57:43 -0400485 goto out_undo_sget;
486
Al Virofc14f2f2010-07-25 01:48:30 +0400487 return dget(s->s_root);
Sukadev Bhattiprolu945cf2c2009-03-07 10:11:41 -0800488
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800489out_undo_sget:
Al Viro6f5bbff2009-05-06 01:34:22 -0400490 deactivate_locked_super(s);
Al Virofc14f2f2010-07-25 01:48:30 +0400491 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
Sukadev Bhattiprolu482984f2009-03-07 10:14:41 -0800493
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000494#else
495/*
496 * This supports only the legacy single-instance semantics (no
497 * multiple-instance semantics)
498 */
Al Virofc14f2f2010-07-25 01:48:30 +0400499static struct dentry *devpts_mount(struct file_system_type *fs_type, int flags,
500 const char *dev_name, void *data)
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000501{
Al Virofc14f2f2010-07-25 01:48:30 +0400502 return mount_single(fs_type, flags, data, devpts_fill_super);
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000503}
504#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000506static void devpts_kill_sb(struct super_block *sb)
507{
508 struct pts_fs_info *fsi = DEVPTS_SB(sb);
509
Ilija Hadzic66da0e12013-11-12 15:11:45 -0800510 ida_destroy(&fsi->allocated_ptys);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000511 kfree(fsi);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000512 kill_litter_super(sb);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000513}
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515static struct file_system_type devpts_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 .name = "devpts",
Al Virofc14f2f2010-07-25 01:48:30 +0400517 .mount = devpts_mount,
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000518 .kill_sb = devpts_kill_sb,
Eric W. Biedermanec2aa8e2012-08-20 17:28:58 -0700519#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
520 .fs_flags = FS_USERNS_MOUNT | FS_USERNS_DEV_MOUNT,
521#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522};
523
524/*
525 * The normal naming convention is simply /dev/pts/<number>; this conforms
526 * to the System V naming convention
527 */
528
Linus Torvalds67245ff2016-04-16 15:16:07 -0700529int devpts_new_index(struct pts_fs_info *fsi)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700530{
531 int index;
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400532 int ida_ret;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700533
Linus Torvalds67245ff2016-04-16 15:16:07 -0700534 if (!fsi)
Josh Triplett9ce71142015-06-30 14:58:27 -0700535 return -ENODEV;
536
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700537retry:
Alan Cox835aa442009-01-02 13:42:48 +0000538 if (!ida_pre_get(&fsi->allocated_ptys, GFP_KERNEL))
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700539 return -ENOMEM;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700540
541 mutex_lock(&allocated_ptys_lock);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400542 if (pty_count >= pty_limit -
543 (fsi->mount_opts.newinstance ? pty_reserve : 0)) {
544 mutex_unlock(&allocated_ptys_lock);
545 return -ENOSPC;
546 }
547
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000548 ida_ret = ida_get_new(&fsi->allocated_ptys, &index);
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400549 if (ida_ret < 0) {
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700550 mutex_unlock(&allocated_ptys_lock);
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400551 if (ida_ret == -EAGAIN)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700552 goto retry;
553 return -EIO;
554 }
555
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400556 if (index >= fsi->mount_opts.max) {
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000557 ida_remove(&fsi->allocated_ptys, index);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700558 mutex_unlock(&allocated_ptys_lock);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400559 return -ENOSPC;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700560 }
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +0400561 pty_count++;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700562 mutex_unlock(&allocated_ptys_lock);
563 return index;
564}
565
Linus Torvalds67245ff2016-04-16 15:16:07 -0700566void devpts_kill_index(struct pts_fs_info *fsi, int idx)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700567{
568 mutex_lock(&allocated_ptys_lock);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000569 ida_remove(&fsi->allocated_ptys, idx);
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +0400570 pty_count--;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700571 mutex_unlock(&allocated_ptys_lock);
572}
573
Herton R. Krzesinski1f55c712016-01-14 17:56:58 -0200574/*
575 * pty code needs to hold extra references in case of last /dev/tty close
576 */
Linus Torvalds67245ff2016-04-16 15:16:07 -0700577struct pts_fs_info *devpts_get_ref(struct inode *ptmx_inode, struct file *file)
Herton R. Krzesinski1f55c712016-01-14 17:56:58 -0200578{
Linus Torvalds67245ff2016-04-16 15:16:07 -0700579 struct super_block *sb;
580 struct pts_fs_info *fsi;
581
582 sb = pts_sb_from_inode(ptmx_inode);
583 if (!sb)
584 return NULL;
585 fsi = DEVPTS_SB(sb);
586 if (!fsi)
587 return NULL;
Herton R. Krzesinski1f55c712016-01-14 17:56:58 -0200588
589 atomic_inc(&sb->s_active);
Linus Torvalds67245ff2016-04-16 15:16:07 -0700590 return fsi;
Herton R. Krzesinski1f55c712016-01-14 17:56:58 -0200591}
592
Linus Torvalds67245ff2016-04-16 15:16:07 -0700593void devpts_put_ref(struct pts_fs_info *fsi)
Herton R. Krzesinski1f55c712016-01-14 17:56:58 -0200594{
Linus Torvalds67245ff2016-04-16 15:16:07 -0700595 deactivate_super(fsi->sb);
Herton R. Krzesinski1f55c712016-01-14 17:56:58 -0200596}
597
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200598/**
599 * devpts_pty_new -- create a new inode in /dev/pts/
600 * @ptmx_inode: inode of the master
601 * @device: major+minor of the node to be created
602 * @index: used as a name of the node
603 * @priv: what's given back by devpts_get_priv
604 *
605 * The created inode is returned. Remove it from /dev/pts/ by devpts_pty_kill.
606 */
Linus Torvalds67245ff2016-04-16 15:16:07 -0700607struct inode *devpts_pty_new(struct pts_fs_info *fsi, dev_t device, int index,
Jiri Slabyf11afb62012-10-18 22:26:29 +0200608 void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct dentry *dentry;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700611 struct super_block *sb;
Jiri Slaby162b97c2012-10-18 22:26:28 +0200612 struct inode *inode;
Josh Triplett9ce71142015-06-30 14:58:27 -0700613 struct dentry *root;
Josh Triplett9ce71142015-06-30 14:58:27 -0700614 struct pts_mount_opts *opts;
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100615 char s[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Linus Torvalds67245ff2016-04-16 15:16:07 -0700617 if (!fsi)
Josh Triplett9ce71142015-06-30 14:58:27 -0700618 return ERR_PTR(-ENODEV);
619
Linus Torvalds67245ff2016-04-16 15:16:07 -0700620 sb = fsi->sb;
Josh Triplett9ce71142015-06-30 14:58:27 -0700621 root = sb->s_root;
Josh Triplett9ce71142015-06-30 14:58:27 -0700622 opts = &fsi->mount_opts;
623
Jiri Slaby162b97c2012-10-18 22:26:28 +0200624 inode = new_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (!inode)
Jiri Slaby162b97c2012-10-18 22:26:28 +0200626 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Jiri Slabyf11afb62012-10-18 22:26:29 +0200628 inode->i_ino = index + 3;
David Howellsd0eafc72009-01-02 13:44:49 +0000629 inode->i_uid = opts->setuid ? opts->uid : current_fsuid();
630 inode->i_gid = opts->setgid ? opts->gid : current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000632 init_special_inode(inode, S_IFCHR|opts->mode, device);
Jiri Slabyf11afb62012-10-18 22:26:29 +0200633 inode->i_private = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Jiri Slabyf11afb62012-10-18 22:26:29 +0200635 sprintf(s, "%d", index);
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100636
Al Viro59551022016-01-22 15:40:57 -0500637 inode_lock(d_inode(root));
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100638
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000639 dentry = d_alloc_name(root, s);
Andrey Vaginb12d1252011-03-22 16:35:11 -0700640 if (dentry) {
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100641 d_add(dentry, inode);
David Howells2b0143b2015-03-17 22:25:59 +0000642 fsnotify_create(d_inode(root), dentry);
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300643 } else {
644 iput(inode);
Jiri Slaby162b97c2012-10-18 22:26:28 +0200645 inode = ERR_PTR(-ENOMEM);
Florin Malita3972b7f2007-05-08 00:24:18 -0700646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Al Viro59551022016-01-22 15:40:57 -0500648 inode_unlock(d_inode(root));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Jiri Slaby162b97c2012-10-18 22:26:28 +0200650 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200653/**
654 * devpts_get_priv -- get private data for a slave
655 * @pts_inode: inode of the slave
656 *
657 * Returns whatever was passed as priv in devpts_pty_new for a given inode.
658 */
Jiri Slaby8fcbaa22012-10-18 22:26:27 +0200659void *devpts_get_priv(struct inode *pts_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Sukadev Bhattiproluedfacdd2009-11-17 18:35:43 -0800661 struct dentry *dentry;
Jiri Slaby8fcbaa22012-10-18 22:26:27 +0200662 void *priv = NULL;
Sukadev Bhattiproluedfacdd2009-11-17 18:35:43 -0800663
Sukadev Bhattiprolu527b3e42008-10-13 10:43:08 +0100664 BUG_ON(pts_inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Sukadev Bhattiproluedfacdd2009-11-17 18:35:43 -0800666 /* Ensure dentry has not been deleted by devpts_pty_kill() */
667 dentry = d_find_alias(pts_inode);
668 if (!dentry)
669 return NULL;
670
Sukadev Bhattiprolu527b3e42008-10-13 10:43:08 +0100671 if (pts_inode->i_sb->s_magic == DEVPTS_SUPER_MAGIC)
Jiri Slaby8fcbaa22012-10-18 22:26:27 +0200672 priv = pts_inode->i_private;
Sukadev Bhattiproluedfacdd2009-11-17 18:35:43 -0800673
674 dput(dentry);
675
Jiri Slaby8fcbaa22012-10-18 22:26:27 +0200676 return priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200679/**
680 * devpts_pty_kill -- remove inode form /dev/pts/
681 * @inode: inode of the slave to be removed
682 *
683 * This is an inverse operation of devpts_pty_new.
684 */
Jiri Slabyf11afb62012-10-18 22:26:29 +0200685void devpts_pty_kill(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000687 struct super_block *sb = pts_sb_from_inode(inode);
688 struct dentry *root = sb->s_root;
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100689 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100691 BUG_ON(inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
692
Al Viro59551022016-01-22 15:40:57 -0500693 inode_lock(d_inode(root));
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100694
695 dentry = d_find_alias(inode);
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000696
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200697 drop_nlink(inode);
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300698 d_delete(dentry);
699 dput(dentry); /* d_alloc_name() in devpts_pty_new() */
Alan Cox835aa442009-01-02 13:42:48 +0000700 dput(dentry); /* d_find_alias above */
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300701
Al Viro59551022016-01-22 15:40:57 -0500702 inode_unlock(d_inode(root));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
705static int __init init_devpts_fs(void)
706{
707 int err = register_filesystem(&devpts_fs_type);
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +0400708 struct ctl_table_header *table;
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (!err) {
Josh Triplett9ce71142015-06-30 14:58:27 -0700711 struct vfsmount *mnt;
712
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +0400713 table = register_sysctl_table(pty_root_table);
Josh Triplett9ce71142015-06-30 14:58:27 -0700714 mnt = kern_mount(&devpts_fs_type);
715 if (IS_ERR(mnt)) {
716 err = PTR_ERR(mnt);
Alan Cox93d55812009-06-11 14:03:55 +0100717 unregister_filesystem(&devpts_fs_type);
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +0400718 unregister_sysctl_table(table);
Josh Triplett9ce71142015-06-30 14:58:27 -0700719 } else {
720 devpts_mnt = mnt;
Alan Cox93d55812009-06-11 14:03:55 +0100721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723 return err;
724}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725module_init(init_devpts_fs)