blob: c53814539070d5ac5d2196e2f4b7383055e11dd1 [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;
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -040049static atomic_t pty_count = ATOMIC_INIT(0);
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +040050
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 Bhattiprolu31af0ab2009-01-02 13:41:33 +000096struct pts_mount_opts {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 int setuid;
98 int setgid;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -080099 kuid_t uid;
100 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 umode_t mode;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000102 umode_t ptmxmode;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500103 int reserve;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400104 int max;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000105};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Domen Puncer7a673c62006-03-23 03:00:59 -0800107enum {
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400108 Opt_uid, Opt_gid, Opt_mode, Opt_ptmxmode, Opt_newinstance, Opt_max,
Domen Puncer7a673c62006-03-23 03:00:59 -0800109 Opt_err
110};
111
Steven Whitehousea447c092008-10-13 10:46:57 +0100112static const match_table_t tokens = {
Domen Puncer7a673c62006-03-23 03:00:59 -0800113 {Opt_uid, "uid=%u"},
114 {Opt_gid, "gid=%u"},
115 {Opt_mode, "mode=%o"},
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000116 {Opt_ptmxmode, "ptmxmode=%o"},
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000117 {Opt_newinstance, "newinstance"},
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400118 {Opt_max, "max=%d"},
Domen Puncer7a673c62006-03-23 03:00:59 -0800119 {Opt_err, NULL}
120};
121
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000122struct pts_fs_info {
123 struct ida allocated_ptys;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000124 struct pts_mount_opts mount_opts;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700125 struct super_block *sb;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000126 struct dentry *ptmx_dentry;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000127};
128
129static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
130{
131 return sb->s_fs_info;
132}
133
Eric W. Biederman311fc652017-08-24 15:13:29 -0500134static int devpts_ptmx_path(struct path *path)
135{
136 struct super_block *sb;
137 int err;
138
Eric W. Biederman311fc652017-08-24 15:13:29 -0500139 /* Is a devpts filesystem at "pts" in the same directory? */
140 err = path_pts(path);
141 if (err)
142 return err;
143
144 /* Is the path the root of a devpts filesystem? */
145 sb = path->mnt->mnt_sb;
146 if ((sb->s_magic != DEVPTS_SUPER_MAGIC) ||
147 (path->mnt->mnt_root != sb->s_root))
148 return -ENODEV;
149
150 return 0;
151}
152
Christian Brauner4e15f762018-03-13 17:55:26 +0100153/*
154 * Try to find a suitable devpts filesystem. We support the following
155 * scenarios:
156 * - The ptmx device node is located in the same directory as the devpts
157 * mount where the pts device nodes are located.
158 * This is e.g. the case when calling open on the /dev/pts/ptmx device
159 * node when the devpts filesystem is mounted at /dev/pts.
160 * - The ptmx device node is located outside the devpts filesystem mount
161 * where the pts device nodes are located. For example, the ptmx device
162 * is a symlink, separate device node, or bind-mount.
163 * A supported scenario is bind-mounting /dev/pts/ptmx to /dev/ptmx and
164 * then calling open on /dev/ptmx. In this case a suitable pts
165 * subdirectory can be found in the common parent directory /dev of the
166 * devpts mount and the ptmx bind-mount, after resolving the /dev/ptmx
167 * bind-mount.
168 * If no suitable pts subdirectory can be found this function will fail.
169 * This is e.g. the case when bind-mounting /dev/pts/ptmx to /ptmx.
170 */
Eric W. Biederman311fc652017-08-24 15:13:29 -0500171struct vfsmount *devpts_mntget(struct file *filp, struct pts_fs_info *fsi)
172{
173 struct path path;
Christian Brauner7d711092018-03-13 17:55:24 +0100174 int err = 0;
Eric W. Biederman311fc652017-08-24 15:13:29 -0500175
176 path = filp->f_path;
177 path_get(&path);
178
Christian Braunera319b012018-03-13 17:55:25 +0100179 /* Walk upward while the start point is a bind mount of
180 * a single file.
181 */
182 while (path.mnt->mnt_root == path.dentry)
183 if (follow_up(&path) == 0)
184 break;
185
186 /* devpts_ptmx_path() finds a devpts fs or returns an error. */
187 if ((path.mnt->mnt_sb->s_magic != DEVPTS_SUPER_MAGIC) ||
188 (DEVPTS_SB(path.mnt->mnt_sb) != fsi))
Christian Brauner7d711092018-03-13 17:55:24 +0100189 err = devpts_ptmx_path(&path);
Eric W. Biederman311fc652017-08-24 15:13:29 -0500190 dput(path.dentry);
Christian Braunera319b012018-03-13 17:55:25 +0100191 if (!err) {
192 if (DEVPTS_SB(path.mnt->mnt_sb) == fsi)
193 return path.mnt;
194
195 err = -ENODEV;
Eric W. Biederman311fc652017-08-24 15:13:29 -0500196 }
Christian Brauner7d711092018-03-13 17:55:24 +0100197
Christian Braunera319b012018-03-13 17:55:25 +0100198 mntput(path.mnt);
199 return ERR_PTR(err);
Eric W. Biederman311fc652017-08-24 15:13:29 -0500200}
201
Linus Torvalds143c97c2017-08-23 18:16:11 -0700202struct pts_fs_info *devpts_acquire(struct file *filp)
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000203{
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500204 struct pts_fs_info *result;
205 struct path path;
206 struct super_block *sb;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500207
208 path = filp->f_path;
209 path_get(&path);
210
Christian Brauner7d711092018-03-13 17:55:24 +0100211 /* Has the devpts filesystem already been found? */
212 if (path.mnt->mnt_sb->s_magic != DEVPTS_SUPER_MAGIC) {
213 int err;
214
215 err = devpts_ptmx_path(&path);
216 if (err) {
217 result = ERR_PTR(err);
218 goto out;
219 }
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500220 }
221
222 /*
223 * pty code needs to hold extra references in case of last /dev/tty close
224 */
Eric W. Biederman311fc652017-08-24 15:13:29 -0500225 sb = path.mnt->mnt_sb;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500226 atomic_inc(&sb->s_active);
227 result = DEVPTS_SB(sb);
228
229out:
230 path_put(&path);
231 return result;
232}
233
234void devpts_release(struct pts_fs_info *fsi)
235{
236 deactivate_super(fsi->sb);
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000237}
238
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000239#define PARSE_MOUNT 0
240#define PARSE_REMOUNT 1
241
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700242/*
243 * parse_mount_options():
Fabian Frederick04541a22014-06-06 14:37:34 -0700244 * Set @opts to mount options specified in @data. If an option is not
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500245 * specified in @data, set it to its default value.
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700246 *
247 * Note: @data may be NULL (in which case all options are set to default).
248 */
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000249static int parse_mount_options(char *data, int op, struct pts_mount_opts *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Domen Puncer7a673c62006-03-23 03:00:59 -0800251 char *p;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800252 kuid_t uid;
253 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000255 opts->setuid = 0;
256 opts->setgid = 0;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800257 opts->uid = GLOBAL_ROOT_UID;
258 opts->gid = GLOBAL_ROOT_GID;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000259 opts->mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000260 opts->ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400261 opts->max = NR_UNIX98_PTY_MAX;
Domen Puncer7a673c62006-03-23 03:00:59 -0800262
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500263 /* Only allow instances mounted from the initial mount
264 * namespace to tap the reserve pool of ptys.
265 */
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000266 if (op == PARSE_MOUNT)
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500267 opts->reserve =
268 (current->nsproxy->mnt_ns == init_task.nsproxy->mnt_ns);
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000269
Domen Puncer7a673c62006-03-23 03:00:59 -0800270 while ((p = strsep(&data, ",")) != NULL) {
271 substring_t args[MAX_OPT_ARGS];
272 int token;
273 int option;
274
275 if (!*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 continue;
Domen Puncer7a673c62006-03-23 03:00:59 -0800277
278 token = match_token(p, tokens, args);
279 switch (token) {
280 case Opt_uid:
281 if (match_int(&args[0], &option))
282 return -EINVAL;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800283 uid = make_kuid(current_user_ns(), option);
284 if (!uid_valid(uid))
285 return -EINVAL;
286 opts->uid = uid;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000287 opts->setuid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800288 break;
289 case Opt_gid:
290 if (match_int(&args[0], &option))
291 return -EINVAL;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800292 gid = make_kgid(current_user_ns(), option);
293 if (!gid_valid(gid))
294 return -EINVAL;
295 opts->gid = gid;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000296 opts->setgid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800297 break;
298 case Opt_mode:
299 if (match_octal(&args[0], &option))
300 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000301 opts->mode = option & S_IALLUGO;
Domen Puncer7a673c62006-03-23 03:00:59 -0800302 break;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000303 case Opt_ptmxmode:
304 if (match_octal(&args[0], &option))
305 return -EINVAL;
306 opts->ptmxmode = option & S_IALLUGO;
307 break;
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000308 case Opt_newinstance:
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000309 break;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400310 case Opt_max:
311 if (match_int(&args[0], &option) ||
312 option < 0 || option > NR_UNIX98_PTY_MAX)
313 return -EINVAL;
314 opts->max = option;
315 break;
Domen Puncer7a673c62006-03-23 03:00:59 -0800316 default:
Fabian Frederick04541a22014-06-06 14:37:34 -0700317 pr_err("called with bogus options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return -EINVAL;
319 }
320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 return 0;
323}
324
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000325static int mknod_ptmx(struct super_block *sb)
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000326{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000327 int mode;
328 int rc = -ENOMEM;
329 struct dentry *dentry;
330 struct inode *inode;
331 struct dentry *root = sb->s_root;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000332 struct pts_fs_info *fsi = DEVPTS_SB(sb);
333 struct pts_mount_opts *opts = &fsi->mount_opts;
Eric W. Biedermane98d4132016-09-14 13:53:38 -0500334 kuid_t ptmx_uid = current_fsuid();
335 kgid_t ptmx_gid = current_fsgid();
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000336
Al Viro59551022016-01-22 15:40:57 -0500337 inode_lock(d_inode(root));
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000338
339 /* If we have already created ptmx node, return */
340 if (fsi->ptmx_dentry) {
341 rc = 0;
342 goto out;
343 }
344
345 dentry = d_alloc_name(root, "ptmx");
346 if (!dentry) {
Fabian Frederick04541a22014-06-06 14:37:34 -0700347 pr_err("Unable to alloc dentry for ptmx node\n");
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000348 goto out;
349 }
350
351 /*
352 * Create a new 'ptmx' node in this mount of devpts.
353 */
354 inode = new_inode(sb);
355 if (!inode) {
Fabian Frederick04541a22014-06-06 14:37:34 -0700356 pr_err("Unable to alloc inode for ptmx node\n");
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000357 dput(dentry);
358 goto out;
359 }
360
361 inode->i_ino = 2;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700362 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000363
364 mode = S_IFCHR|opts->ptmxmode;
365 init_special_inode(inode, mode, MKDEV(TTYAUX_MAJOR, 2));
Eric W. Biedermane98d4132016-09-14 13:53:38 -0500366 inode->i_uid = ptmx_uid;
367 inode->i_gid = ptmx_gid;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000368
369 d_add(dentry, inode);
370
371 fsi->ptmx_dentry = dentry;
372 rc = 0;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000373out:
Al Viro59551022016-01-22 15:40:57 -0500374 inode_unlock(d_inode(root));
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000375 return rc;
376}
377
378static void update_ptmx_mode(struct pts_fs_info *fsi)
379{
380 struct inode *inode;
381 if (fsi->ptmx_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +0000382 inode = d_inode(fsi->ptmx_dentry);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000383 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode;
384 }
385}
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000386
387static int devpts_remount(struct super_block *sb, int *flags, char *data)
388{
389 int err;
390 struct pts_fs_info *fsi = DEVPTS_SB(sb);
391 struct pts_mount_opts *opts = &fsi->mount_opts;
392
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000393 err = parse_mount_options(data, PARSE_REMOUNT, opts);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000394
395 /*
396 * parse_mount_options() restores options to default values
397 * before parsing and may have changed ptmxmode. So, update the
398 * mode in the inode too. Bogus options don't fail the remount,
399 * so do this even on error return.
400 */
401 update_ptmx_mode(fsi);
402
403 return err;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000404}
405
Al Viro34c80b12011-12-08 21:32:45 -0500406static int devpts_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredib87a2672008-02-08 04:21:41 -0800407{
Al Viro34c80b12011-12-08 21:32:45 -0500408 struct pts_fs_info *fsi = DEVPTS_SB(root->d_sb);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000409 struct pts_mount_opts *opts = &fsi->mount_opts;
410
411 if (opts->setuid)
Fabian Frederick04541a22014-06-06 14:37:34 -0700412 seq_printf(seq, ",uid=%u",
413 from_kuid_munged(&init_user_ns, opts->uid));
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000414 if (opts->setgid)
Fabian Frederick04541a22014-06-06 14:37:34 -0700415 seq_printf(seq, ",gid=%u",
416 from_kgid_munged(&init_user_ns, opts->gid));
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000417 seq_printf(seq, ",mode=%03o", opts->mode);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000418 seq_printf(seq, ",ptmxmode=%03o", opts->ptmxmode);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400419 if (opts->max < NR_UNIX98_PTY_MAX)
420 seq_printf(seq, ",max=%d", opts->max);
Miklos Szeredib87a2672008-02-08 04:21:41 -0800421
422 return 0;
423}
424
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800425static const struct super_operations devpts_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 .statfs = simple_statfs,
427 .remount_fs = devpts_remount,
Miklos Szeredib87a2672008-02-08 04:21:41 -0800428 .show_options = devpts_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429};
430
Linus Torvalds67245ff2016-04-16 15:16:07 -0700431static void *new_pts_fs_info(struct super_block *sb)
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000432{
433 struct pts_fs_info *fsi;
434
435 fsi = kzalloc(sizeof(struct pts_fs_info), GFP_KERNEL);
436 if (!fsi)
437 return NULL;
438
439 ida_init(&fsi->allocated_ptys);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000440 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000441 fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700442 fsi->sb = sb;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000443
444 return fsi;
445}
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447static int
448devpts_fill_super(struct super_block *s, void *data, int silent)
449{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000450 struct inode *inode;
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500451 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Eric W. Biedermancc50a072016-06-09 15:44:48 -0500453 s->s_iflags &= ~SB_I_NODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 s->s_blocksize = 1024;
455 s->s_blocksize_bits = 10;
456 s->s_magic = DEVPTS_SUPER_MAGIC;
457 s->s_op = &devpts_sops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 s->s_time_gran = 1;
459
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500460 error = -ENOMEM;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700461 s->s_fs_info = new_pts_fs_info(s);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000462 if (!s->s_fs_info)
463 goto fail;
464
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500465 error = parse_mount_options(data, PARSE_MOUNT, &DEVPTS_SB(s)->mount_opts);
466 if (error)
467 goto fail;
468
469 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 inode = new_inode(s);
471 if (!inode)
Al Viro3850aba2012-01-08 19:40:27 -0500472 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 inode->i_ino = 1;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700474 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
476 inode->i_op = &simple_dir_inode_operations;
477 inode->i_fop = &simple_dir_operations;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200478 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Al Viro48fde702012-01-08 22:15:13 -0500480 s->s_root = d_make_root(inode);
Eric W. Biederman180d9042016-09-14 13:53:34 -0500481 if (!s->s_root) {
482 pr_err("get root dentry failed\n");
483 goto fail;
484 }
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000485
Eric W. Biederman180d9042016-09-14 13:53:34 -0500486 error = mknod_ptmx(s);
487 if (error)
488 goto fail_dput;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000489
Eric W. Biederman180d9042016-09-14 13:53:34 -0500490 return 0;
491fail_dput:
492 dput(s->s_root);
493 s->s_root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494fail:
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500495 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000498/*
Al Virofc14f2f2010-07-25 01:48:30 +0400499 * devpts_mount()
Sukadev Bhattiprolu289f00e2009-03-07 10:12:06 -0800500 *
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500501 * Mount a new (private) instance of devpts. PTYs created in this
502 * instance are independent of the PTYs in other devpts instances.
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000503 */
Al Virofc14f2f2010-07-25 01:48:30 +0400504static struct dentry *devpts_mount(struct file_system_type *fs_type,
505 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Eric W. Biedermanc1b241f2016-09-14 13:53:35 -0500507 return mount_nodev(fs_type, flags, data, devpts_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
Sukadev Bhattiprolu482984f2009-03-07 10:14:41 -0800509
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000510static void devpts_kill_sb(struct super_block *sb)
511{
512 struct pts_fs_info *fsi = DEVPTS_SB(sb);
513
Eric W. Biederman40b320e2016-09-14 13:53:36 -0500514 if (fsi)
515 ida_destroy(&fsi->allocated_ptys);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000516 kfree(fsi);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000517 kill_litter_super(sb);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520static struct file_system_type devpts_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 .name = "devpts",
Al Virofc14f2f2010-07-25 01:48:30 +0400522 .mount = devpts_mount,
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000523 .kill_sb = devpts_kill_sb,
Eric W. Biedermancc50a072016-06-09 15:44:48 -0500524 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525};
526
527/*
528 * The normal naming convention is simply /dev/pts/<number>; this conforms
529 * to the System V naming convention
530 */
531
Linus Torvalds67245ff2016-04-16 15:16:07 -0700532int devpts_new_index(struct pts_fs_info *fsi)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700533{
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -0400534 int index = -ENOSPC;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700535
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -0400536 if (atomic_inc_return(&pty_count) >= (pty_limit -
537 (fsi->mount_opts.reserve ? 0 : pty_reserve)))
538 goto out;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700539
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -0400540 index = ida_alloc_max(&fsi->allocated_ptys, fsi->mount_opts.max - 1,
541 GFP_KERNEL);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400542
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -0400543out:
544 if (index < 0)
545 atomic_dec(&pty_count);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700546 return index;
547}
548
Linus Torvalds67245ff2016-04-16 15:16:07 -0700549void devpts_kill_index(struct pts_fs_info *fsi, int idx)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700550{
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -0400551 ida_free(&fsi->allocated_ptys, idx);
552 atomic_dec(&pty_count);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700553}
554
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200555/**
556 * devpts_pty_new -- create a new inode in /dev/pts/
557 * @ptmx_inode: inode of the master
558 * @device: major+minor of the node to be created
559 * @index: used as a name of the node
560 * @priv: what's given back by devpts_get_priv
561 *
562 * The created inode is returned. Remove it from /dev/pts/ by devpts_pty_kill.
563 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700564struct dentry *devpts_pty_new(struct pts_fs_info *fsi, int index, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 struct dentry *dentry;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500567 struct super_block *sb = fsi->sb;
Jiri Slaby162b97c2012-10-18 22:26:28 +0200568 struct inode *inode;
Josh Triplett9ce71142015-06-30 14:58:27 -0700569 struct dentry *root;
Josh Triplett9ce71142015-06-30 14:58:27 -0700570 struct pts_mount_opts *opts;
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100571 char s[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Josh Triplett9ce71142015-06-30 14:58:27 -0700573 root = sb->s_root;
Josh Triplett9ce71142015-06-30 14:58:27 -0700574 opts = &fsi->mount_opts;
575
Jiri Slaby162b97c2012-10-18 22:26:28 +0200576 inode = new_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (!inode)
Jiri Slaby162b97c2012-10-18 22:26:28 +0200578 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Jiri Slabyf11afb62012-10-18 22:26:29 +0200580 inode->i_ino = index + 3;
David Howellsd0eafc72009-01-02 13:44:49 +0000581 inode->i_uid = opts->setuid ? opts->uid : current_fsuid();
582 inode->i_gid = opts->setgid ? opts->gid : current_fsgid();
Deepa Dinamani078cd822016-09-14 07:48:04 -0700583 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700584 init_special_inode(inode, S_IFCHR|opts->mode, MKDEV(UNIX98_PTY_SLAVE_MAJOR, index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Jiri Slabyf11afb62012-10-18 22:26:29 +0200586 sprintf(s, "%d", index);
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100587
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000588 dentry = d_alloc_name(root, s);
Andrey Vaginb12d1252011-03-22 16:35:11 -0700589 if (dentry) {
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700590 dentry->d_fsdata = priv;
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100591 d_add(dentry, inode);
David Howells2b0143b2015-03-17 22:25:59 +0000592 fsnotify_create(d_inode(root), dentry);
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300593 } else {
594 iput(inode);
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700595 dentry = ERR_PTR(-ENOMEM);
Florin Malita3972b7f2007-05-08 00:24:18 -0700596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700598 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200601/**
602 * devpts_get_priv -- get private data for a slave
603 * @pts_inode: inode of the slave
604 *
605 * Returns whatever was passed as priv in devpts_pty_new for a given inode.
606 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700607void *devpts_get_priv(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Linus Torvalds3e423942016-09-03 11:02:50 -0700609 if (dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC)
610 return NULL;
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700611 return dentry->d_fsdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200614/**
615 * devpts_pty_kill -- remove inode form /dev/pts/
616 * @inode: inode of the slave to be removed
617 *
618 * This is an inverse operation of devpts_pty_new.
619 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700620void devpts_pty_kill(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700622 WARN_ON_ONCE(dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700624 dentry->d_fsdata = NULL;
625 drop_nlink(dentry->d_inode);
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300626 d_delete(dentry);
627 dput(dentry); /* d_alloc_name() in devpts_pty_new() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
630static int __init init_devpts_fs(void)
631{
632 int err = register_filesystem(&devpts_fs_type);
633 if (!err) {
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500634 register_sysctl_table(pty_root_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636 return err;
637}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638module_init(init_devpts_fs)