blob: 42e5a766d33c7d1fea3ca9c05be73639c38c421e [file] [log] [blame]
Thomas Gleixnerd6910052019-05-22 09:51:29 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* -*- linux-c -*- --------------------------------------------------------- *
3 *
4 * linux/fs/devpts/inode.c
5 *
6 * Copyright 1998-2004 H. Peter Anvin -- All Rights Reserved
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * ------------------------------------------------------------------------- */
9
Fabian Frederick04541a22014-06-06 14:37:34 -070010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/fs.h>
15#include <linux/sched.h>
16#include <linux/namei.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/mount.h>
19#include <linux/tty.h>
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -070020#include <linux/mutex.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070021#include <linux/magic.h>
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -070022#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/devpts_fs.h>
Domen Puncer7a673c62006-03-23 03:00:59 -080024#include <linux/parser.h>
Florin Malita3972b7f2007-05-08 00:24:18 -070025#include <linux/fsnotify.h>
Miklos Szeredib87a2672008-02-08 04:21:41 -080026#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Miklos Szeredib87a2672008-02-08 04:21:41 -080028#define DEVPTS_DEFAULT_MODE 0600
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +000029/*
30 * ptmx is a new node in /dev/pts and will be unused in legacy (single-
31 * instance) mode. To prevent surprises in user space, set permissions of
32 * ptmx to 0. Use 'chmod' or remount with '-o ptmxmode' to set meaningful
33 * permissions.
34 */
35#define DEVPTS_DEFAULT_PTMX_MODE 0000
Sukadev Bhattiprolu527b3e42008-10-13 10:43:08 +010036#define PTMX_MINOR 2
Miklos Szeredib87a2672008-02-08 04:21:41 -080037
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +040038/*
39 * sysctl support for setting limits on the number of Unix98 ptys allocated.
40 * Otherwise one can eat up all kernel memory by opening /dev/ptmx repeatedly.
41 */
42static int pty_limit = NR_UNIX98_PTY_DEFAULT;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +040043static int pty_reserve = NR_UNIX98_PTY_RESERVE;
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +040044static int pty_limit_min;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +040045static int pty_limit_max = INT_MAX;
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -040046static atomic_t pty_count = ATOMIC_INIT(0);
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +040047
48static struct ctl_table pty_table[] = {
49 {
50 .procname = "max",
51 .maxlen = sizeof(int),
52 .mode = 0644,
53 .data = &pty_limit,
54 .proc_handler = proc_dointvec_minmax,
55 .extra1 = &pty_limit_min,
56 .extra2 = &pty_limit_max,
57 }, {
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +040058 .procname = "reserve",
59 .maxlen = sizeof(int),
60 .mode = 0644,
61 .data = &pty_reserve,
62 .proc_handler = proc_dointvec_minmax,
63 .extra1 = &pty_limit_min,
64 .extra2 = &pty_limit_max,
65 }, {
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +040066 .procname = "nr",
67 .maxlen = sizeof(int),
68 .mode = 0444,
69 .data = &pty_count,
70 .proc_handler = proc_dointvec,
71 },
72 {}
73};
74
75static struct ctl_table pty_kern_table[] = {
76 {
77 .procname = "pty",
78 .mode = 0555,
79 .child = pty_table,
80 },
81 {}
82};
83
84static struct ctl_table pty_root_table[] = {
85 {
86 .procname = "kernel",
87 .mode = 0555,
88 .child = pty_kern_table,
89 },
90 {}
91};
92
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000093struct pts_mount_opts {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 int setuid;
95 int setgid;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -080096 kuid_t uid;
97 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 umode_t mode;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +000099 umode_t ptmxmode;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500100 int reserve;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400101 int max;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000102};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Domen Puncer7a673c62006-03-23 03:00:59 -0800104enum {
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400105 Opt_uid, Opt_gid, Opt_mode, Opt_ptmxmode, Opt_newinstance, Opt_max,
Domen Puncer7a673c62006-03-23 03:00:59 -0800106 Opt_err
107};
108
Steven Whitehousea447c092008-10-13 10:46:57 +0100109static const match_table_t tokens = {
Domen Puncer7a673c62006-03-23 03:00:59 -0800110 {Opt_uid, "uid=%u"},
111 {Opt_gid, "gid=%u"},
112 {Opt_mode, "mode=%o"},
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000113 {Opt_ptmxmode, "ptmxmode=%o"},
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000114 {Opt_newinstance, "newinstance"},
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400115 {Opt_max, "max=%d"},
Domen Puncer7a673c62006-03-23 03:00:59 -0800116 {Opt_err, NULL}
117};
118
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000119struct pts_fs_info {
120 struct ida allocated_ptys;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000121 struct pts_mount_opts mount_opts;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700122 struct super_block *sb;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000123 struct dentry *ptmx_dentry;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000124};
125
126static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
127{
128 return sb->s_fs_info;
129}
130
Eric W. Biederman311fc652017-08-24 15:13:29 -0500131static int devpts_ptmx_path(struct path *path)
132{
133 struct super_block *sb;
134 int err;
135
Eric W. Biederman311fc652017-08-24 15:13:29 -0500136 /* Is a devpts filesystem at "pts" in the same directory? */
137 err = path_pts(path);
138 if (err)
139 return err;
140
141 /* Is the path the root of a devpts filesystem? */
142 sb = path->mnt->mnt_sb;
143 if ((sb->s_magic != DEVPTS_SUPER_MAGIC) ||
144 (path->mnt->mnt_root != sb->s_root))
145 return -ENODEV;
146
147 return 0;
148}
149
Christian Brauner4e15f762018-03-13 17:55:26 +0100150/*
151 * Try to find a suitable devpts filesystem. We support the following
152 * scenarios:
153 * - The ptmx device node is located in the same directory as the devpts
154 * mount where the pts device nodes are located.
155 * This is e.g. the case when calling open on the /dev/pts/ptmx device
156 * node when the devpts filesystem is mounted at /dev/pts.
157 * - The ptmx device node is located outside the devpts filesystem mount
158 * where the pts device nodes are located. For example, the ptmx device
159 * is a symlink, separate device node, or bind-mount.
160 * A supported scenario is bind-mounting /dev/pts/ptmx to /dev/ptmx and
161 * then calling open on /dev/ptmx. In this case a suitable pts
162 * subdirectory can be found in the common parent directory /dev of the
163 * devpts mount and the ptmx bind-mount, after resolving the /dev/ptmx
164 * bind-mount.
165 * If no suitable pts subdirectory can be found this function will fail.
166 * This is e.g. the case when bind-mounting /dev/pts/ptmx to /ptmx.
167 */
Eric W. Biederman311fc652017-08-24 15:13:29 -0500168struct vfsmount *devpts_mntget(struct file *filp, struct pts_fs_info *fsi)
169{
170 struct path path;
Christian Brauner7d711092018-03-13 17:55:24 +0100171 int err = 0;
Eric W. Biederman311fc652017-08-24 15:13:29 -0500172
173 path = filp->f_path;
174 path_get(&path);
175
Christian Braunera319b012018-03-13 17:55:25 +0100176 /* Walk upward while the start point is a bind mount of
177 * a single file.
178 */
179 while (path.mnt->mnt_root == path.dentry)
180 if (follow_up(&path) == 0)
181 break;
182
183 /* devpts_ptmx_path() finds a devpts fs or returns an error. */
184 if ((path.mnt->mnt_sb->s_magic != DEVPTS_SUPER_MAGIC) ||
185 (DEVPTS_SB(path.mnt->mnt_sb) != fsi))
Christian Brauner7d711092018-03-13 17:55:24 +0100186 err = devpts_ptmx_path(&path);
Eric W. Biederman311fc652017-08-24 15:13:29 -0500187 dput(path.dentry);
Christian Braunera319b012018-03-13 17:55:25 +0100188 if (!err) {
189 if (DEVPTS_SB(path.mnt->mnt_sb) == fsi)
190 return path.mnt;
191
192 err = -ENODEV;
Eric W. Biederman311fc652017-08-24 15:13:29 -0500193 }
Christian Brauner7d711092018-03-13 17:55:24 +0100194
Christian Braunera319b012018-03-13 17:55:25 +0100195 mntput(path.mnt);
196 return ERR_PTR(err);
Eric W. Biederman311fc652017-08-24 15:13:29 -0500197}
198
Linus Torvalds143c97c2017-08-23 18:16:11 -0700199struct pts_fs_info *devpts_acquire(struct file *filp)
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000200{
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500201 struct pts_fs_info *result;
202 struct path path;
203 struct super_block *sb;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500204
205 path = filp->f_path;
206 path_get(&path);
207
Christian Brauner7d711092018-03-13 17:55:24 +0100208 /* Has the devpts filesystem already been found? */
209 if (path.mnt->mnt_sb->s_magic != DEVPTS_SUPER_MAGIC) {
210 int err;
211
212 err = devpts_ptmx_path(&path);
213 if (err) {
214 result = ERR_PTR(err);
215 goto out;
216 }
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500217 }
218
219 /*
220 * pty code needs to hold extra references in case of last /dev/tty close
221 */
Eric W. Biederman311fc652017-08-24 15:13:29 -0500222 sb = path.mnt->mnt_sb;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500223 atomic_inc(&sb->s_active);
224 result = DEVPTS_SB(sb);
225
226out:
227 path_put(&path);
228 return result;
229}
230
231void devpts_release(struct pts_fs_info *fsi)
232{
233 deactivate_super(fsi->sb);
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000234}
235
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000236#define PARSE_MOUNT 0
237#define PARSE_REMOUNT 1
238
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700239/*
240 * parse_mount_options():
Fabian Frederick04541a22014-06-06 14:37:34 -0700241 * Set @opts to mount options specified in @data. If an option is not
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500242 * specified in @data, set it to its default value.
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700243 *
244 * Note: @data may be NULL (in which case all options are set to default).
245 */
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000246static int parse_mount_options(char *data, int op, struct pts_mount_opts *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Domen Puncer7a673c62006-03-23 03:00:59 -0800248 char *p;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800249 kuid_t uid;
250 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000252 opts->setuid = 0;
253 opts->setgid = 0;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800254 opts->uid = GLOBAL_ROOT_UID;
255 opts->gid = GLOBAL_ROOT_GID;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000256 opts->mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000257 opts->ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400258 opts->max = NR_UNIX98_PTY_MAX;
Domen Puncer7a673c62006-03-23 03:00:59 -0800259
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500260 /* Only allow instances mounted from the initial mount
261 * namespace to tap the reserve pool of ptys.
262 */
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000263 if (op == PARSE_MOUNT)
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500264 opts->reserve =
265 (current->nsproxy->mnt_ns == init_task.nsproxy->mnt_ns);
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000266
Domen Puncer7a673c62006-03-23 03:00:59 -0800267 while ((p = strsep(&data, ",")) != NULL) {
268 substring_t args[MAX_OPT_ARGS];
269 int token;
270 int option;
271
272 if (!*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 continue;
Domen Puncer7a673c62006-03-23 03:00:59 -0800274
275 token = match_token(p, tokens, args);
276 switch (token) {
277 case Opt_uid:
278 if (match_int(&args[0], &option))
279 return -EINVAL;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800280 uid = make_kuid(current_user_ns(), option);
281 if (!uid_valid(uid))
282 return -EINVAL;
283 opts->uid = uid;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000284 opts->setuid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800285 break;
286 case Opt_gid:
287 if (match_int(&args[0], &option))
288 return -EINVAL;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800289 gid = make_kgid(current_user_ns(), option);
290 if (!gid_valid(gid))
291 return -EINVAL;
292 opts->gid = gid;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000293 opts->setgid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800294 break;
295 case Opt_mode:
296 if (match_octal(&args[0], &option))
297 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000298 opts->mode = option & S_IALLUGO;
Domen Puncer7a673c62006-03-23 03:00:59 -0800299 break;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000300 case Opt_ptmxmode:
301 if (match_octal(&args[0], &option))
302 return -EINVAL;
303 opts->ptmxmode = option & S_IALLUGO;
304 break;
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000305 case Opt_newinstance:
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000306 break;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400307 case Opt_max:
308 if (match_int(&args[0], &option) ||
309 option < 0 || option > NR_UNIX98_PTY_MAX)
310 return -EINVAL;
311 opts->max = option;
312 break;
Domen Puncer7a673c62006-03-23 03:00:59 -0800313 default:
Fabian Frederick04541a22014-06-06 14:37:34 -0700314 pr_err("called with bogus options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return -EINVAL;
316 }
317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 return 0;
320}
321
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000322static int mknod_ptmx(struct super_block *sb)
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000323{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000324 int mode;
325 int rc = -ENOMEM;
326 struct dentry *dentry;
327 struct inode *inode;
328 struct dentry *root = sb->s_root;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000329 struct pts_fs_info *fsi = DEVPTS_SB(sb);
330 struct pts_mount_opts *opts = &fsi->mount_opts;
Eric W. Biedermane98d4132016-09-14 13:53:38 -0500331 kuid_t ptmx_uid = current_fsuid();
332 kgid_t ptmx_gid = current_fsgid();
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000333
Al Viro59551022016-01-22 15:40:57 -0500334 inode_lock(d_inode(root));
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000335
336 /* If we have already created ptmx node, return */
337 if (fsi->ptmx_dentry) {
338 rc = 0;
339 goto out;
340 }
341
342 dentry = d_alloc_name(root, "ptmx");
343 if (!dentry) {
Fabian Frederick04541a22014-06-06 14:37:34 -0700344 pr_err("Unable to alloc dentry for ptmx node\n");
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000345 goto out;
346 }
347
348 /*
349 * Create a new 'ptmx' node in this mount of devpts.
350 */
351 inode = new_inode(sb);
352 if (!inode) {
Fabian Frederick04541a22014-06-06 14:37:34 -0700353 pr_err("Unable to alloc inode for ptmx node\n");
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000354 dput(dentry);
355 goto out;
356 }
357
358 inode->i_ino = 2;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700359 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000360
361 mode = S_IFCHR|opts->ptmxmode;
362 init_special_inode(inode, mode, MKDEV(TTYAUX_MAJOR, 2));
Eric W. Biedermane98d4132016-09-14 13:53:38 -0500363 inode->i_uid = ptmx_uid;
364 inode->i_gid = ptmx_gid;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000365
366 d_add(dentry, inode);
367
368 fsi->ptmx_dentry = dentry;
369 rc = 0;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000370out:
Al Viro59551022016-01-22 15:40:57 -0500371 inode_unlock(d_inode(root));
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000372 return rc;
373}
374
375static void update_ptmx_mode(struct pts_fs_info *fsi)
376{
377 struct inode *inode;
378 if (fsi->ptmx_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +0000379 inode = d_inode(fsi->ptmx_dentry);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000380 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode;
381 }
382}
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000383
384static int devpts_remount(struct super_block *sb, int *flags, char *data)
385{
386 int err;
387 struct pts_fs_info *fsi = DEVPTS_SB(sb);
388 struct pts_mount_opts *opts = &fsi->mount_opts;
389
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000390 err = parse_mount_options(data, PARSE_REMOUNT, opts);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000391
392 /*
393 * parse_mount_options() restores options to default values
394 * before parsing and may have changed ptmxmode. So, update the
395 * mode in the inode too. Bogus options don't fail the remount,
396 * so do this even on error return.
397 */
398 update_ptmx_mode(fsi);
399
400 return err;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000401}
402
Al Viro34c80b12011-12-08 21:32:45 -0500403static int devpts_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredib87a2672008-02-08 04:21:41 -0800404{
Al Viro34c80b12011-12-08 21:32:45 -0500405 struct pts_fs_info *fsi = DEVPTS_SB(root->d_sb);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000406 struct pts_mount_opts *opts = &fsi->mount_opts;
407
408 if (opts->setuid)
Fabian Frederick04541a22014-06-06 14:37:34 -0700409 seq_printf(seq, ",uid=%u",
410 from_kuid_munged(&init_user_ns, opts->uid));
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000411 if (opts->setgid)
Fabian Frederick04541a22014-06-06 14:37:34 -0700412 seq_printf(seq, ",gid=%u",
413 from_kgid_munged(&init_user_ns, opts->gid));
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000414 seq_printf(seq, ",mode=%03o", opts->mode);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000415 seq_printf(seq, ",ptmxmode=%03o", opts->ptmxmode);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400416 if (opts->max < NR_UNIX98_PTY_MAX)
417 seq_printf(seq, ",max=%d", opts->max);
Miklos Szeredib87a2672008-02-08 04:21:41 -0800418
419 return 0;
420}
421
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800422static const struct super_operations devpts_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 .statfs = simple_statfs,
424 .remount_fs = devpts_remount,
Miklos Szeredib87a2672008-02-08 04:21:41 -0800425 .show_options = devpts_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426};
427
Linus Torvalds67245ff2016-04-16 15:16:07 -0700428static void *new_pts_fs_info(struct super_block *sb)
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000429{
430 struct pts_fs_info *fsi;
431
432 fsi = kzalloc(sizeof(struct pts_fs_info), GFP_KERNEL);
433 if (!fsi)
434 return NULL;
435
436 ida_init(&fsi->allocated_ptys);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000437 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000438 fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700439 fsi->sb = sb;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000440
441 return fsi;
442}
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444static int
445devpts_fill_super(struct super_block *s, void *data, int silent)
446{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000447 struct inode *inode;
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500448 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Eric W. Biedermancc50a072016-06-09 15:44:48 -0500450 s->s_iflags &= ~SB_I_NODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 s->s_blocksize = 1024;
452 s->s_blocksize_bits = 10;
453 s->s_magic = DEVPTS_SUPER_MAGIC;
454 s->s_op = &devpts_sops;
Varad Gautam73052b02019-01-24 14:03:06 +0100455 s->s_d_op = &simple_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 s->s_time_gran = 1;
457
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500458 error = -ENOMEM;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700459 s->s_fs_info = new_pts_fs_info(s);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000460 if (!s->s_fs_info)
461 goto fail;
462
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500463 error = parse_mount_options(data, PARSE_MOUNT, &DEVPTS_SB(s)->mount_opts);
464 if (error)
465 goto fail;
466
467 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 inode = new_inode(s);
469 if (!inode)
Al Viro3850aba2012-01-08 19:40:27 -0500470 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 inode->i_ino = 1;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700472 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
474 inode->i_op = &simple_dir_inode_operations;
475 inode->i_fop = &simple_dir_operations;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200476 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Al Viro48fde702012-01-08 22:15:13 -0500478 s->s_root = d_make_root(inode);
Eric W. Biederman180d9042016-09-14 13:53:34 -0500479 if (!s->s_root) {
480 pr_err("get root dentry failed\n");
481 goto fail;
482 }
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000483
Eric W. Biederman180d9042016-09-14 13:53:34 -0500484 error = mknod_ptmx(s);
485 if (error)
486 goto fail_dput;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000487
Eric W. Biederman180d9042016-09-14 13:53:34 -0500488 return 0;
489fail_dput:
490 dput(s->s_root);
491 s->s_root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492fail:
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500493 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000496/*
Al Virofc14f2f2010-07-25 01:48:30 +0400497 * devpts_mount()
Sukadev Bhattiprolu289f00e2009-03-07 10:12:06 -0800498 *
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500499 * Mount a new (private) instance of devpts. PTYs created in this
500 * instance are independent of the PTYs in other devpts instances.
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000501 */
Al Virofc14f2f2010-07-25 01:48:30 +0400502static struct dentry *devpts_mount(struct file_system_type *fs_type,
503 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Eric W. Biedermanc1b241f2016-09-14 13:53:35 -0500505 return mount_nodev(fs_type, flags, data, devpts_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
Sukadev Bhattiprolu482984f2009-03-07 10:14:41 -0800507
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000508static void devpts_kill_sb(struct super_block *sb)
509{
510 struct pts_fs_info *fsi = DEVPTS_SB(sb);
511
Eric W. Biederman40b320e2016-09-14 13:53:36 -0500512 if (fsi)
513 ida_destroy(&fsi->allocated_ptys);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000514 kfree(fsi);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000515 kill_litter_super(sb);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000516}
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518static struct file_system_type devpts_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 .name = "devpts",
Al Virofc14f2f2010-07-25 01:48:30 +0400520 .mount = devpts_mount,
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000521 .kill_sb = devpts_kill_sb,
Eric W. Biedermancc50a072016-06-09 15:44:48 -0500522 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523};
524
525/*
526 * The normal naming convention is simply /dev/pts/<number>; this conforms
527 * to the System V naming convention
528 */
529
Linus Torvalds67245ff2016-04-16 15:16:07 -0700530int devpts_new_index(struct pts_fs_info *fsi)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700531{
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -0400532 int index = -ENOSPC;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700533
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -0400534 if (atomic_inc_return(&pty_count) >= (pty_limit -
535 (fsi->mount_opts.reserve ? 0 : pty_reserve)))
536 goto out;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700537
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -0400538 index = ida_alloc_max(&fsi->allocated_ptys, fsi->mount_opts.max - 1,
539 GFP_KERNEL);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400540
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -0400541out:
542 if (index < 0)
543 atomic_dec(&pty_count);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700544 return index;
545}
546
Linus Torvalds67245ff2016-04-16 15:16:07 -0700547void devpts_kill_index(struct pts_fs_info *fsi, int idx)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700548{
Matthew Wilcox0f0a0e52018-06-11 15:17:58 -0400549 ida_free(&fsi->allocated_ptys, idx);
550 atomic_dec(&pty_count);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700551}
552
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200553/**
554 * devpts_pty_new -- create a new inode in /dev/pts/
555 * @ptmx_inode: inode of the master
556 * @device: major+minor of the node to be created
557 * @index: used as a name of the node
558 * @priv: what's given back by devpts_get_priv
559 *
560 * The created inode is returned. Remove it from /dev/pts/ by devpts_pty_kill.
561 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700562struct dentry *devpts_pty_new(struct pts_fs_info *fsi, int index, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 struct dentry *dentry;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500565 struct super_block *sb = fsi->sb;
Jiri Slaby162b97c2012-10-18 22:26:28 +0200566 struct inode *inode;
Josh Triplett9ce71142015-06-30 14:58:27 -0700567 struct dentry *root;
Josh Triplett9ce71142015-06-30 14:58:27 -0700568 struct pts_mount_opts *opts;
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100569 char s[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Josh Triplett9ce71142015-06-30 14:58:27 -0700571 root = sb->s_root;
Josh Triplett9ce71142015-06-30 14:58:27 -0700572 opts = &fsi->mount_opts;
573
Jiri Slaby162b97c2012-10-18 22:26:28 +0200574 inode = new_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (!inode)
Jiri Slaby162b97c2012-10-18 22:26:28 +0200576 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Jiri Slabyf11afb62012-10-18 22:26:29 +0200578 inode->i_ino = index + 3;
David Howellsd0eafc72009-01-02 13:44:49 +0000579 inode->i_uid = opts->setuid ? opts->uid : current_fsuid();
580 inode->i_gid = opts->setgid ? opts->gid : current_fsgid();
Deepa Dinamani078cd822016-09-14 07:48:04 -0700581 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700582 init_special_inode(inode, S_IFCHR|opts->mode, MKDEV(UNIX98_PTY_SLAVE_MAJOR, index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Jiri Slabyf11afb62012-10-18 22:26:29 +0200584 sprintf(s, "%d", index);
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100585
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000586 dentry = d_alloc_name(root, s);
Andrey Vaginb12d1252011-03-22 16:35:11 -0700587 if (dentry) {
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700588 dentry->d_fsdata = priv;
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100589 d_add(dentry, inode);
David Howells2b0143b2015-03-17 22:25:59 +0000590 fsnotify_create(d_inode(root), dentry);
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300591 } else {
592 iput(inode);
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700593 dentry = ERR_PTR(-ENOMEM);
Florin Malita3972b7f2007-05-08 00:24:18 -0700594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700596 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200599/**
600 * devpts_get_priv -- get private data for a slave
601 * @pts_inode: inode of the slave
602 *
603 * Returns whatever was passed as priv in devpts_pty_new for a given inode.
604 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700605void *devpts_get_priv(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Linus Torvalds3e423942016-09-03 11:02:50 -0700607 if (dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC)
608 return NULL;
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700609 return dentry->d_fsdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200612/**
613 * devpts_pty_kill -- remove inode form /dev/pts/
614 * @inode: inode of the slave to be removed
615 *
616 * This is an inverse operation of devpts_pty_new.
617 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700618void devpts_pty_kill(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700620 WARN_ON_ONCE(dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700622 dentry->d_fsdata = NULL;
623 drop_nlink(dentry->d_inode);
Amir Goldsteinfd0d5062019-05-26 17:34:06 +0300624 fsnotify_unlink(d_inode(dentry->d_parent), dentry);
Al Viro46c46f82019-07-27 16:29:22 -0400625 d_drop(dentry);
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300626 dput(dentry); /* d_alloc_name() in devpts_pty_new() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
629static int __init init_devpts_fs(void)
630{
631 int err = register_filesystem(&devpts_fs_type);
632 if (!err) {
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500633 register_sysctl_table(pty_root_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635 return err;
636}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637module_init(init_devpts_fs)