blob: e072e955ce3334e44bdc529c2650518a6ca74a6c [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
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000098struct pts_mount_opts {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 int setuid;
100 int setgid;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800101 kuid_t uid;
102 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 umode_t mode;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000104 umode_t ptmxmode;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500105 int reserve;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400106 int max;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000107};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Domen Puncer7a673c62006-03-23 03:00:59 -0800109enum {
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400110 Opt_uid, Opt_gid, Opt_mode, Opt_ptmxmode, Opt_newinstance, Opt_max,
Domen Puncer7a673c62006-03-23 03:00:59 -0800111 Opt_err
112};
113
Steven Whitehousea447c092008-10-13 10:46:57 +0100114static const match_table_t tokens = {
Domen Puncer7a673c62006-03-23 03:00:59 -0800115 {Opt_uid, "uid=%u"},
116 {Opt_gid, "gid=%u"},
117 {Opt_mode, "mode=%o"},
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000118 {Opt_ptmxmode, "ptmxmode=%o"},
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000119 {Opt_newinstance, "newinstance"},
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400120 {Opt_max, "max=%d"},
Domen Puncer7a673c62006-03-23 03:00:59 -0800121 {Opt_err, NULL}
122};
123
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000124struct pts_fs_info {
125 struct ida allocated_ptys;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000126 struct pts_mount_opts mount_opts;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700127 struct super_block *sb;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000128 struct dentry *ptmx_dentry;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000129};
130
131static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
132{
133 return sb->s_fs_info;
134}
135
Eric W. Biederman311fc652017-08-24 15:13:29 -0500136static int devpts_ptmx_path(struct path *path)
137{
138 struct super_block *sb;
139 int err;
140
Eric W. Biederman311fc652017-08-24 15:13:29 -0500141 /* Is a devpts filesystem at "pts" in the same directory? */
142 err = path_pts(path);
143 if (err)
144 return err;
145
146 /* Is the path the root of a devpts filesystem? */
147 sb = path->mnt->mnt_sb;
148 if ((sb->s_magic != DEVPTS_SUPER_MAGIC) ||
149 (path->mnt->mnt_root != sb->s_root))
150 return -ENODEV;
151
152 return 0;
153}
154
Christian Brauner4e15f762018-03-13 17:55:26 +0100155/*
156 * Try to find a suitable devpts filesystem. We support the following
157 * scenarios:
158 * - The ptmx device node is located in the same directory as the devpts
159 * mount where the pts device nodes are located.
160 * This is e.g. the case when calling open on the /dev/pts/ptmx device
161 * node when the devpts filesystem is mounted at /dev/pts.
162 * - The ptmx device node is located outside the devpts filesystem mount
163 * where the pts device nodes are located. For example, the ptmx device
164 * is a symlink, separate device node, or bind-mount.
165 * A supported scenario is bind-mounting /dev/pts/ptmx to /dev/ptmx and
166 * then calling open on /dev/ptmx. In this case a suitable pts
167 * subdirectory can be found in the common parent directory /dev of the
168 * devpts mount and the ptmx bind-mount, after resolving the /dev/ptmx
169 * bind-mount.
170 * If no suitable pts subdirectory can be found this function will fail.
171 * This is e.g. the case when bind-mounting /dev/pts/ptmx to /ptmx.
172 */
Eric W. Biederman311fc652017-08-24 15:13:29 -0500173struct vfsmount *devpts_mntget(struct file *filp, struct pts_fs_info *fsi)
174{
175 struct path path;
Christian Brauner7d711092018-03-13 17:55:24 +0100176 int err = 0;
Eric W. Biederman311fc652017-08-24 15:13:29 -0500177
178 path = filp->f_path;
179 path_get(&path);
180
Christian Braunera319b012018-03-13 17:55:25 +0100181 /* Walk upward while the start point is a bind mount of
182 * a single file.
183 */
184 while (path.mnt->mnt_root == path.dentry)
185 if (follow_up(&path) == 0)
186 break;
187
188 /* devpts_ptmx_path() finds a devpts fs or returns an error. */
189 if ((path.mnt->mnt_sb->s_magic != DEVPTS_SUPER_MAGIC) ||
190 (DEVPTS_SB(path.mnt->mnt_sb) != fsi))
Christian Brauner7d711092018-03-13 17:55:24 +0100191 err = devpts_ptmx_path(&path);
Eric W. Biederman311fc652017-08-24 15:13:29 -0500192 dput(path.dentry);
Christian Braunera319b012018-03-13 17:55:25 +0100193 if (!err) {
194 if (DEVPTS_SB(path.mnt->mnt_sb) == fsi)
195 return path.mnt;
196
197 err = -ENODEV;
Eric W. Biederman311fc652017-08-24 15:13:29 -0500198 }
Christian Brauner7d711092018-03-13 17:55:24 +0100199
Christian Braunera319b012018-03-13 17:55:25 +0100200 mntput(path.mnt);
201 return ERR_PTR(err);
Eric W. Biederman311fc652017-08-24 15:13:29 -0500202}
203
Linus Torvalds143c97c2017-08-23 18:16:11 -0700204struct pts_fs_info *devpts_acquire(struct file *filp)
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000205{
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500206 struct pts_fs_info *result;
207 struct path path;
208 struct super_block *sb;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500209
210 path = filp->f_path;
211 path_get(&path);
212
Christian Brauner7d711092018-03-13 17:55:24 +0100213 /* Has the devpts filesystem already been found? */
214 if (path.mnt->mnt_sb->s_magic != DEVPTS_SUPER_MAGIC) {
215 int err;
216
217 err = devpts_ptmx_path(&path);
218 if (err) {
219 result = ERR_PTR(err);
220 goto out;
221 }
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500222 }
223
224 /*
225 * pty code needs to hold extra references in case of last /dev/tty close
226 */
Eric W. Biederman311fc652017-08-24 15:13:29 -0500227 sb = path.mnt->mnt_sb;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500228 atomic_inc(&sb->s_active);
229 result = DEVPTS_SB(sb);
230
231out:
232 path_put(&path);
233 return result;
234}
235
236void devpts_release(struct pts_fs_info *fsi)
237{
238 deactivate_super(fsi->sb);
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000239}
240
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000241#define PARSE_MOUNT 0
242#define PARSE_REMOUNT 1
243
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700244/*
245 * parse_mount_options():
Fabian Frederick04541a22014-06-06 14:37:34 -0700246 * Set @opts to mount options specified in @data. If an option is not
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500247 * specified in @data, set it to its default value.
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700248 *
249 * Note: @data may be NULL (in which case all options are set to default).
250 */
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000251static int parse_mount_options(char *data, int op, struct pts_mount_opts *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Domen Puncer7a673c62006-03-23 03:00:59 -0800253 char *p;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800254 kuid_t uid;
255 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000257 opts->setuid = 0;
258 opts->setgid = 0;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800259 opts->uid = GLOBAL_ROOT_UID;
260 opts->gid = GLOBAL_ROOT_GID;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000261 opts->mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000262 opts->ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400263 opts->max = NR_UNIX98_PTY_MAX;
Domen Puncer7a673c62006-03-23 03:00:59 -0800264
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500265 /* Only allow instances mounted from the initial mount
266 * namespace to tap the reserve pool of ptys.
267 */
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000268 if (op == PARSE_MOUNT)
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500269 opts->reserve =
270 (current->nsproxy->mnt_ns == init_task.nsproxy->mnt_ns);
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000271
Domen Puncer7a673c62006-03-23 03:00:59 -0800272 while ((p = strsep(&data, ",")) != NULL) {
273 substring_t args[MAX_OPT_ARGS];
274 int token;
275 int option;
276
277 if (!*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 continue;
Domen Puncer7a673c62006-03-23 03:00:59 -0800279
280 token = match_token(p, tokens, args);
281 switch (token) {
282 case Opt_uid:
283 if (match_int(&args[0], &option))
284 return -EINVAL;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800285 uid = make_kuid(current_user_ns(), option);
286 if (!uid_valid(uid))
287 return -EINVAL;
288 opts->uid = uid;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000289 opts->setuid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800290 break;
291 case Opt_gid:
292 if (match_int(&args[0], &option))
293 return -EINVAL;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800294 gid = make_kgid(current_user_ns(), option);
295 if (!gid_valid(gid))
296 return -EINVAL;
297 opts->gid = gid;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000298 opts->setgid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800299 break;
300 case Opt_mode:
301 if (match_octal(&args[0], &option))
302 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000303 opts->mode = option & S_IALLUGO;
Domen Puncer7a673c62006-03-23 03:00:59 -0800304 break;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000305 case Opt_ptmxmode:
306 if (match_octal(&args[0], &option))
307 return -EINVAL;
308 opts->ptmxmode = option & S_IALLUGO;
309 break;
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000310 case Opt_newinstance:
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000311 break;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400312 case Opt_max:
313 if (match_int(&args[0], &option) ||
314 option < 0 || option > NR_UNIX98_PTY_MAX)
315 return -EINVAL;
316 opts->max = option;
317 break;
Domen Puncer7a673c62006-03-23 03:00:59 -0800318 default:
Fabian Frederick04541a22014-06-06 14:37:34 -0700319 pr_err("called with bogus options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return -EINVAL;
321 }
322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 return 0;
325}
326
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000327static int mknod_ptmx(struct super_block *sb)
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000328{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000329 int mode;
330 int rc = -ENOMEM;
331 struct dentry *dentry;
332 struct inode *inode;
333 struct dentry *root = sb->s_root;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000334 struct pts_fs_info *fsi = DEVPTS_SB(sb);
335 struct pts_mount_opts *opts = &fsi->mount_opts;
Eric W. Biedermane98d4132016-09-14 13:53:38 -0500336 kuid_t ptmx_uid = current_fsuid();
337 kgid_t ptmx_gid = current_fsgid();
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000338
Al Viro59551022016-01-22 15:40:57 -0500339 inode_lock(d_inode(root));
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000340
341 /* If we have already created ptmx node, return */
342 if (fsi->ptmx_dentry) {
343 rc = 0;
344 goto out;
345 }
346
347 dentry = d_alloc_name(root, "ptmx");
348 if (!dentry) {
Fabian Frederick04541a22014-06-06 14:37:34 -0700349 pr_err("Unable to alloc dentry for ptmx node\n");
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000350 goto out;
351 }
352
353 /*
354 * Create a new 'ptmx' node in this mount of devpts.
355 */
356 inode = new_inode(sb);
357 if (!inode) {
Fabian Frederick04541a22014-06-06 14:37:34 -0700358 pr_err("Unable to alloc inode for ptmx node\n");
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000359 dput(dentry);
360 goto out;
361 }
362
363 inode->i_ino = 2;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700364 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000365
366 mode = S_IFCHR|opts->ptmxmode;
367 init_special_inode(inode, mode, MKDEV(TTYAUX_MAJOR, 2));
Eric W. Biedermane98d4132016-09-14 13:53:38 -0500368 inode->i_uid = ptmx_uid;
369 inode->i_gid = ptmx_gid;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000370
371 d_add(dentry, inode);
372
373 fsi->ptmx_dentry = dentry;
374 rc = 0;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000375out:
Al Viro59551022016-01-22 15:40:57 -0500376 inode_unlock(d_inode(root));
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000377 return rc;
378}
379
380static void update_ptmx_mode(struct pts_fs_info *fsi)
381{
382 struct inode *inode;
383 if (fsi->ptmx_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +0000384 inode = d_inode(fsi->ptmx_dentry);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000385 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode;
386 }
387}
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000388
389static int devpts_remount(struct super_block *sb, int *flags, char *data)
390{
391 int err;
392 struct pts_fs_info *fsi = DEVPTS_SB(sb);
393 struct pts_mount_opts *opts = &fsi->mount_opts;
394
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000395 err = parse_mount_options(data, PARSE_REMOUNT, opts);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000396
397 /*
398 * parse_mount_options() restores options to default values
399 * before parsing and may have changed ptmxmode. So, update the
400 * mode in the inode too. Bogus options don't fail the remount,
401 * so do this even on error return.
402 */
403 update_ptmx_mode(fsi);
404
405 return err;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000406}
407
Al Viro34c80b12011-12-08 21:32:45 -0500408static int devpts_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredib87a2672008-02-08 04:21:41 -0800409{
Al Viro34c80b12011-12-08 21:32:45 -0500410 struct pts_fs_info *fsi = DEVPTS_SB(root->d_sb);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000411 struct pts_mount_opts *opts = &fsi->mount_opts;
412
413 if (opts->setuid)
Fabian Frederick04541a22014-06-06 14:37:34 -0700414 seq_printf(seq, ",uid=%u",
415 from_kuid_munged(&init_user_ns, opts->uid));
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000416 if (opts->setgid)
Fabian Frederick04541a22014-06-06 14:37:34 -0700417 seq_printf(seq, ",gid=%u",
418 from_kgid_munged(&init_user_ns, opts->gid));
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000419 seq_printf(seq, ",mode=%03o", opts->mode);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000420 seq_printf(seq, ",ptmxmode=%03o", opts->ptmxmode);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400421 if (opts->max < NR_UNIX98_PTY_MAX)
422 seq_printf(seq, ",max=%d", opts->max);
Miklos Szeredib87a2672008-02-08 04:21:41 -0800423
424 return 0;
425}
426
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800427static const struct super_operations devpts_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 .statfs = simple_statfs,
429 .remount_fs = devpts_remount,
Miklos Szeredib87a2672008-02-08 04:21:41 -0800430 .show_options = devpts_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431};
432
Linus Torvalds67245ff2016-04-16 15:16:07 -0700433static void *new_pts_fs_info(struct super_block *sb)
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000434{
435 struct pts_fs_info *fsi;
436
437 fsi = kzalloc(sizeof(struct pts_fs_info), GFP_KERNEL);
438 if (!fsi)
439 return NULL;
440
441 ida_init(&fsi->allocated_ptys);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000442 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000443 fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700444 fsi->sb = sb;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000445
446 return fsi;
447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449static int
450devpts_fill_super(struct super_block *s, void *data, int silent)
451{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000452 struct inode *inode;
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500453 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Eric W. Biedermancc50a072016-06-09 15:44:48 -0500455 s->s_iflags &= ~SB_I_NODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 s->s_blocksize = 1024;
457 s->s_blocksize_bits = 10;
458 s->s_magic = DEVPTS_SUPER_MAGIC;
459 s->s_op = &devpts_sops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 s->s_time_gran = 1;
461
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500462 error = -ENOMEM;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700463 s->s_fs_info = new_pts_fs_info(s);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000464 if (!s->s_fs_info)
465 goto fail;
466
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500467 error = parse_mount_options(data, PARSE_MOUNT, &DEVPTS_SB(s)->mount_opts);
468 if (error)
469 goto fail;
470
471 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 inode = new_inode(s);
473 if (!inode)
Al Viro3850aba2012-01-08 19:40:27 -0500474 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 inode->i_ino = 1;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700476 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
478 inode->i_op = &simple_dir_inode_operations;
479 inode->i_fop = &simple_dir_operations;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200480 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Al Viro48fde702012-01-08 22:15:13 -0500482 s->s_root = d_make_root(inode);
Eric W. Biederman180d9042016-09-14 13:53:34 -0500483 if (!s->s_root) {
484 pr_err("get root dentry failed\n");
485 goto fail;
486 }
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000487
Eric W. Biederman180d9042016-09-14 13:53:34 -0500488 error = mknod_ptmx(s);
489 if (error)
490 goto fail_dput;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000491
Eric W. Biederman180d9042016-09-14 13:53:34 -0500492 return 0;
493fail_dput:
494 dput(s->s_root);
495 s->s_root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496fail:
Eric W. Biedermandee87d42016-09-14 13:53:33 -0500497 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000500/*
Al Virofc14f2f2010-07-25 01:48:30 +0400501 * devpts_mount()
Sukadev Bhattiprolu289f00e2009-03-07 10:12:06 -0800502 *
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500503 * Mount a new (private) instance of devpts. PTYs created in this
504 * instance are independent of the PTYs in other devpts instances.
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000505 */
Al Virofc14f2f2010-07-25 01:48:30 +0400506static struct dentry *devpts_mount(struct file_system_type *fs_type,
507 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Eric W. Biedermanc1b241f2016-09-14 13:53:35 -0500509 return mount_nodev(fs_type, flags, data, devpts_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
Sukadev Bhattiprolu482984f2009-03-07 10:14:41 -0800511
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000512static void devpts_kill_sb(struct super_block *sb)
513{
514 struct pts_fs_info *fsi = DEVPTS_SB(sb);
515
Eric W. Biederman40b320e2016-09-14 13:53:36 -0500516 if (fsi)
517 ida_destroy(&fsi->allocated_ptys);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000518 kfree(fsi);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000519 kill_litter_super(sb);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522static struct file_system_type devpts_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 .name = "devpts",
Al Virofc14f2f2010-07-25 01:48:30 +0400524 .mount = devpts_mount,
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000525 .kill_sb = devpts_kill_sb,
Eric W. Biedermancc50a072016-06-09 15:44:48 -0500526 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527};
528
529/*
530 * The normal naming convention is simply /dev/pts/<number>; this conforms
531 * to the System V naming convention
532 */
533
Linus Torvalds67245ff2016-04-16 15:16:07 -0700534int devpts_new_index(struct pts_fs_info *fsi)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700535{
536 int index;
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400537 int ida_ret;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700538
539retry:
Alan Cox835aa442009-01-02 13:42:48 +0000540 if (!ida_pre_get(&fsi->allocated_ptys, GFP_KERNEL))
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700541 return -ENOMEM;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700542
543 mutex_lock(&allocated_ptys_lock);
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500544 if (pty_count >= (pty_limit -
545 (fsi->mount_opts.reserve ? 0 : pty_reserve))) {
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400546 mutex_unlock(&allocated_ptys_lock);
547 return -ENOSPC;
548 }
549
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000550 ida_ret = ida_get_new(&fsi->allocated_ptys, &index);
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400551 if (ida_ret < 0) {
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700552 mutex_unlock(&allocated_ptys_lock);
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400553 if (ida_ret == -EAGAIN)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700554 goto retry;
555 return -EIO;
556 }
557
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400558 if (index >= fsi->mount_opts.max) {
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000559 ida_remove(&fsi->allocated_ptys, index);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700560 mutex_unlock(&allocated_ptys_lock);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400561 return -ENOSPC;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700562 }
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +0400563 pty_count++;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700564 mutex_unlock(&allocated_ptys_lock);
565 return index;
566}
567
Linus Torvalds67245ff2016-04-16 15:16:07 -0700568void devpts_kill_index(struct pts_fs_info *fsi, int idx)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700569{
570 mutex_lock(&allocated_ptys_lock);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000571 ida_remove(&fsi->allocated_ptys, idx);
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +0400572 pty_count--;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700573 mutex_unlock(&allocated_ptys_lock);
574}
575
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200576/**
577 * devpts_pty_new -- create a new inode in /dev/pts/
578 * @ptmx_inode: inode of the master
579 * @device: major+minor of the node to be created
580 * @index: used as a name of the node
581 * @priv: what's given back by devpts_get_priv
582 *
583 * The created inode is returned. Remove it from /dev/pts/ by devpts_pty_kill.
584 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700585struct dentry *devpts_pty_new(struct pts_fs_info *fsi, int index, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 struct dentry *dentry;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500588 struct super_block *sb = fsi->sb;
Jiri Slaby162b97c2012-10-18 22:26:28 +0200589 struct inode *inode;
Josh Triplett9ce71142015-06-30 14:58:27 -0700590 struct dentry *root;
Josh Triplett9ce71142015-06-30 14:58:27 -0700591 struct pts_mount_opts *opts;
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100592 char s[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Josh Triplett9ce71142015-06-30 14:58:27 -0700594 root = sb->s_root;
Josh Triplett9ce71142015-06-30 14:58:27 -0700595 opts = &fsi->mount_opts;
596
Jiri Slaby162b97c2012-10-18 22:26:28 +0200597 inode = new_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (!inode)
Jiri Slaby162b97c2012-10-18 22:26:28 +0200599 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Jiri Slabyf11afb62012-10-18 22:26:29 +0200601 inode->i_ino = index + 3;
David Howellsd0eafc72009-01-02 13:44:49 +0000602 inode->i_uid = opts->setuid ? opts->uid : current_fsuid();
603 inode->i_gid = opts->setgid ? opts->gid : current_fsgid();
Deepa Dinamani078cd822016-09-14 07:48:04 -0700604 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700605 init_special_inode(inode, S_IFCHR|opts->mode, MKDEV(UNIX98_PTY_SLAVE_MAJOR, index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Jiri Slabyf11afb62012-10-18 22:26:29 +0200607 sprintf(s, "%d", index);
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100608
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000609 dentry = d_alloc_name(root, s);
Andrey Vaginb12d1252011-03-22 16:35:11 -0700610 if (dentry) {
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700611 dentry->d_fsdata = priv;
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100612 d_add(dentry, inode);
David Howells2b0143b2015-03-17 22:25:59 +0000613 fsnotify_create(d_inode(root), dentry);
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300614 } else {
615 iput(inode);
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700616 dentry = ERR_PTR(-ENOMEM);
Florin Malita3972b7f2007-05-08 00:24:18 -0700617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700619 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200622/**
623 * devpts_get_priv -- get private data for a slave
624 * @pts_inode: inode of the slave
625 *
626 * Returns whatever was passed as priv in devpts_pty_new for a given inode.
627 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700628void *devpts_get_priv(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Linus Torvalds3e423942016-09-03 11:02:50 -0700630 if (dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC)
631 return NULL;
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700632 return dentry->d_fsdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200635/**
636 * devpts_pty_kill -- remove inode form /dev/pts/
637 * @inode: inode of the slave to be removed
638 *
639 * This is an inverse operation of devpts_pty_new.
640 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700641void devpts_pty_kill(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700643 WARN_ON_ONCE(dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700645 dentry->d_fsdata = NULL;
646 drop_nlink(dentry->d_inode);
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300647 d_delete(dentry);
648 dput(dentry); /* d_alloc_name() in devpts_pty_new() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
651static int __init init_devpts_fs(void)
652{
653 int err = register_filesystem(&devpts_fs_type);
654 if (!err) {
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500655 register_sysctl_table(pty_root_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657 return err;
658}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659module_init(init_devpts_fs)