blob: 79a5941c2474622d7888c8e8c3bc925eabdb77e1 [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. Biedermaneedf2652016-06-02 10:29:47 -0500136struct pts_fs_info *devpts_acquire(struct file *filp)
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000137{
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500138 struct pts_fs_info *result;
139 struct path path;
140 struct super_block *sb;
141 int err;
142
143 path = filp->f_path;
144 path_get(&path);
145
146 /* Has the devpts filesystem already been found? */
147 sb = path.mnt->mnt_sb;
148 if (sb->s_magic != DEVPTS_SUPER_MAGIC) {
149 /* Is a devpts filesystem at "pts" in the same directory? */
150 err = path_pts(&path);
151 if (err) {
152 result = ERR_PTR(err);
153 goto out;
154 }
155
156 /* Is the path the root of a devpts filesystem? */
157 result = ERR_PTR(-ENODEV);
158 sb = path.mnt->mnt_sb;
159 if ((sb->s_magic != DEVPTS_SUPER_MAGIC) ||
160 (path.mnt->mnt_root != sb->s_root))
161 goto out;
162 }
163
164 /*
165 * pty code needs to hold extra references in case of last /dev/tty close
166 */
167 atomic_inc(&sb->s_active);
168 result = DEVPTS_SB(sb);
169
170out:
171 path_put(&path);
172 return result;
173}
174
175void devpts_release(struct pts_fs_info *fsi)
176{
177 deactivate_super(fsi->sb);
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000178}
179
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000180#define PARSE_MOUNT 0
181#define PARSE_REMOUNT 1
182
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700183/*
184 * parse_mount_options():
Fabian Frederick04541a22014-06-06 14:37:34 -0700185 * Set @opts to mount options specified in @data. If an option is not
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500186 * specified in @data, set it to its default value.
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700187 *
188 * Note: @data may be NULL (in which case all options are set to default).
189 */
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000190static int parse_mount_options(char *data, int op, struct pts_mount_opts *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Domen Puncer7a673c62006-03-23 03:00:59 -0800192 char *p;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800193 kuid_t uid;
194 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000196 opts->setuid = 0;
197 opts->setgid = 0;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800198 opts->uid = GLOBAL_ROOT_UID;
199 opts->gid = GLOBAL_ROOT_GID;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000200 opts->mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000201 opts->ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400202 opts->max = NR_UNIX98_PTY_MAX;
Domen Puncer7a673c62006-03-23 03:00:59 -0800203
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500204 /* Only allow instances mounted from the initial mount
205 * namespace to tap the reserve pool of ptys.
206 */
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000207 if (op == PARSE_MOUNT)
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500208 opts->reserve =
209 (current->nsproxy->mnt_ns == init_task.nsproxy->mnt_ns);
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000210
Domen Puncer7a673c62006-03-23 03:00:59 -0800211 while ((p = strsep(&data, ",")) != NULL) {
212 substring_t args[MAX_OPT_ARGS];
213 int token;
214 int option;
215
216 if (!*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 continue;
Domen Puncer7a673c62006-03-23 03:00:59 -0800218
219 token = match_token(p, tokens, args);
220 switch (token) {
221 case Opt_uid:
222 if (match_int(&args[0], &option))
223 return -EINVAL;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800224 uid = make_kuid(current_user_ns(), option);
225 if (!uid_valid(uid))
226 return -EINVAL;
227 opts->uid = uid;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000228 opts->setuid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800229 break;
230 case Opt_gid:
231 if (match_int(&args[0], &option))
232 return -EINVAL;
Eric W. Biedermanf04c6ce2012-02-07 16:22:56 -0800233 gid = make_kgid(current_user_ns(), option);
234 if (!gid_valid(gid))
235 return -EINVAL;
236 opts->gid = gid;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000237 opts->setgid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800238 break;
239 case Opt_mode:
240 if (match_octal(&args[0], &option))
241 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000242 opts->mode = option & S_IALLUGO;
Domen Puncer7a673c62006-03-23 03:00:59 -0800243 break;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000244 case Opt_ptmxmode:
245 if (match_octal(&args[0], &option))
246 return -EINVAL;
247 opts->ptmxmode = option & S_IALLUGO;
248 break;
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000249 case Opt_newinstance:
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000250 break;
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400251 case Opt_max:
252 if (match_int(&args[0], &option) ||
253 option < 0 || option > NR_UNIX98_PTY_MAX)
254 return -EINVAL;
255 opts->max = option;
256 break;
Domen Puncer7a673c62006-03-23 03:00:59 -0800257 default:
Fabian Frederick04541a22014-06-06 14:37:34 -0700258 pr_err("called with bogus options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return -EINVAL;
260 }
261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 return 0;
264}
265
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000266static int mknod_ptmx(struct super_block *sb)
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000267{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000268 int mode;
269 int rc = -ENOMEM;
270 struct dentry *dentry;
271 struct inode *inode;
272 struct dentry *root = sb->s_root;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000273 struct pts_fs_info *fsi = DEVPTS_SB(sb);
274 struct pts_mount_opts *opts = &fsi->mount_opts;
Eric W. Biedermanec2aa8e2012-08-20 17:28:58 -0700275 kuid_t root_uid;
276 kgid_t root_gid;
277
278 root_uid = make_kuid(current_user_ns(), 0);
279 root_gid = make_kgid(current_user_ns(), 0);
280 if (!uid_valid(root_uid) || !gid_valid(root_gid))
281 return -EINVAL;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000282
Al Viro59551022016-01-22 15:40:57 -0500283 inode_lock(d_inode(root));
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000284
285 /* If we have already created ptmx node, return */
286 if (fsi->ptmx_dentry) {
287 rc = 0;
288 goto out;
289 }
290
291 dentry = d_alloc_name(root, "ptmx");
292 if (!dentry) {
Fabian Frederick04541a22014-06-06 14:37:34 -0700293 pr_err("Unable to alloc dentry for ptmx node\n");
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000294 goto out;
295 }
296
297 /*
298 * Create a new 'ptmx' node in this mount of devpts.
299 */
300 inode = new_inode(sb);
301 if (!inode) {
Fabian Frederick04541a22014-06-06 14:37:34 -0700302 pr_err("Unable to alloc inode for ptmx node\n");
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000303 dput(dentry);
304 goto out;
305 }
306
307 inode->i_ino = 2;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000308 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
309
310 mode = S_IFCHR|opts->ptmxmode;
311 init_special_inode(inode, mode, MKDEV(TTYAUX_MAJOR, 2));
Eric W. Biedermanec2aa8e2012-08-20 17:28:58 -0700312 inode->i_uid = root_uid;
313 inode->i_gid = root_gid;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000314
315 d_add(dentry, inode);
316
317 fsi->ptmx_dentry = dentry;
318 rc = 0;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000319out:
Al Viro59551022016-01-22 15:40:57 -0500320 inode_unlock(d_inode(root));
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000321 return rc;
322}
323
324static void update_ptmx_mode(struct pts_fs_info *fsi)
325{
326 struct inode *inode;
327 if (fsi->ptmx_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +0000328 inode = d_inode(fsi->ptmx_dentry);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000329 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode;
330 }
331}
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000332
333static int devpts_remount(struct super_block *sb, int *flags, char *data)
334{
335 int err;
336 struct pts_fs_info *fsi = DEVPTS_SB(sb);
337 struct pts_mount_opts *opts = &fsi->mount_opts;
338
Theodore Ts'o02b99842014-03-13 10:14:33 -0400339 sync_filesystem(sb);
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000340 err = parse_mount_options(data, PARSE_REMOUNT, opts);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000341
342 /*
343 * parse_mount_options() restores options to default values
344 * before parsing and may have changed ptmxmode. So, update the
345 * mode in the inode too. Bogus options don't fail the remount,
346 * so do this even on error return.
347 */
348 update_ptmx_mode(fsi);
349
350 return err;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000351}
352
Al Viro34c80b12011-12-08 21:32:45 -0500353static int devpts_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredib87a2672008-02-08 04:21:41 -0800354{
Al Viro34c80b12011-12-08 21:32:45 -0500355 struct pts_fs_info *fsi = DEVPTS_SB(root->d_sb);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000356 struct pts_mount_opts *opts = &fsi->mount_opts;
357
358 if (opts->setuid)
Fabian Frederick04541a22014-06-06 14:37:34 -0700359 seq_printf(seq, ",uid=%u",
360 from_kuid_munged(&init_user_ns, opts->uid));
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000361 if (opts->setgid)
Fabian Frederick04541a22014-06-06 14:37:34 -0700362 seq_printf(seq, ",gid=%u",
363 from_kgid_munged(&init_user_ns, opts->gid));
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000364 seq_printf(seq, ",mode=%03o", opts->mode);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000365 seq_printf(seq, ",ptmxmode=%03o", opts->ptmxmode);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400366 if (opts->max < NR_UNIX98_PTY_MAX)
367 seq_printf(seq, ",max=%d", opts->max);
Miklos Szeredib87a2672008-02-08 04:21:41 -0800368
369 return 0;
370}
371
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800372static const struct super_operations devpts_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 .statfs = simple_statfs,
374 .remount_fs = devpts_remount,
Miklos Szeredib87a2672008-02-08 04:21:41 -0800375 .show_options = devpts_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376};
377
Linus Torvalds67245ff2016-04-16 15:16:07 -0700378static void *new_pts_fs_info(struct super_block *sb)
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000379{
380 struct pts_fs_info *fsi;
381
382 fsi = kzalloc(sizeof(struct pts_fs_info), GFP_KERNEL);
383 if (!fsi)
384 return NULL;
385
386 ida_init(&fsi->allocated_ptys);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000387 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000388 fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Linus Torvalds67245ff2016-04-16 15:16:07 -0700389 fsi->sb = sb;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000390
391 return fsi;
392}
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394static int
395devpts_fill_super(struct super_block *s, void *data, int silent)
396{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000397 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Eric W. Biedermancc50a072016-06-09 15:44:48 -0500399 s->s_iflags &= ~SB_I_NODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 s->s_blocksize = 1024;
401 s->s_blocksize_bits = 10;
402 s->s_magic = DEVPTS_SUPER_MAGIC;
403 s->s_op = &devpts_sops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 s->s_time_gran = 1;
405
Linus Torvalds67245ff2016-04-16 15:16:07 -0700406 s->s_fs_info = new_pts_fs_info(s);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000407 if (!s->s_fs_info)
408 goto fail;
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 inode = new_inode(s);
411 if (!inode)
Al Viro3850aba2012-01-08 19:40:27 -0500412 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 inode->i_ino = 1;
414 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
416 inode->i_op = &simple_dir_inode_operations;
417 inode->i_fop = &simple_dir_operations;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200418 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Al Viro48fde702012-01-08 22:15:13 -0500420 s->s_root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (s->s_root)
422 return 0;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000423
Fabian Frederick04541a22014-06-06 14:37:34 -0700424 pr_err("get root dentry failed\n");
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426fail:
427 return -ENOMEM;
428}
429
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000430/*
Al Virofc14f2f2010-07-25 01:48:30 +0400431 * devpts_mount()
Sukadev Bhattiprolu289f00e2009-03-07 10:12:06 -0800432 *
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500433 * Mount a new (private) instance of devpts. PTYs created in this
434 * instance are independent of the PTYs in other devpts instances.
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000435 */
Al Virofc14f2f2010-07-25 01:48:30 +0400436static struct dentry *devpts_mount(struct file_system_type *fs_type,
437 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Sukadev Bhattiprolu482984f2009-03-07 10:14:41 -0800439 int error;
440 struct pts_mount_opts opts;
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800441 struct super_block *s;
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000442
Sukadev Bhattiprolu1f71ebe2009-05-14 19:38:24 -0700443 error = parse_mount_options(data, PARSE_MOUNT, &opts);
444 if (error)
Al Virofc14f2f2010-07-25 01:48:30 +0400445 return ERR_PTR(error);
Sukadev Bhattiprolu2a1b2dc2009-01-02 13:42:27 +0000446
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500447 s = sget(fs_type, NULL, set_anon_super, flags, NULL);
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800448 if (IS_ERR(s))
Al Virofc14f2f2010-07-25 01:48:30 +0400449 return ERR_CAST(s);
Sukadev Bhattiprolu945cf2c2009-03-07 10:11:41 -0800450
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800451 if (!s->s_root) {
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800452 error = devpts_fill_super(s, data, flags & MS_SILENT ? 1 : 0);
453 if (error)
454 goto out_undo_sget;
455 s->s_flags |= MS_ACTIVE;
456 }
457
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800458 memcpy(&(DEVPTS_SB(s))->mount_opts, &opts, sizeof(opts));
459
460 error = mknod_ptmx(s);
Sukadev Bhattiprolu945cf2c2009-03-07 10:11:41 -0800461 if (error)
Al Viro89468072010-03-20 21:57:43 -0400462 goto out_undo_sget;
463
Al Virofc14f2f2010-07-25 01:48:30 +0400464 return dget(s->s_root);
Sukadev Bhattiprolu945cf2c2009-03-07 10:11:41 -0800465
Sukadev Bhattiprolu1bd79032009-03-07 10:12:32 -0800466out_undo_sget:
Al Viro6f5bbff2009-05-06 01:34:22 -0400467 deactivate_locked_super(s);
Al Virofc14f2f2010-07-25 01:48:30 +0400468 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
Sukadev Bhattiprolu482984f2009-03-07 10:14:41 -0800470
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000471static void devpts_kill_sb(struct super_block *sb)
472{
473 struct pts_fs_info *fsi = DEVPTS_SB(sb);
474
Ilija Hadzic66da0e12013-11-12 15:11:45 -0800475 ida_destroy(&fsi->allocated_ptys);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000476 kfree(fsi);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000477 kill_litter_super(sb);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480static struct file_system_type devpts_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 .name = "devpts",
Al Virofc14f2f2010-07-25 01:48:30 +0400482 .mount = devpts_mount,
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000483 .kill_sb = devpts_kill_sb,
Eric W. Biedermancc50a072016-06-09 15:44:48 -0500484 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485};
486
487/*
488 * The normal naming convention is simply /dev/pts/<number>; this conforms
489 * to the System V naming convention
490 */
491
Linus Torvalds67245ff2016-04-16 15:16:07 -0700492int devpts_new_index(struct pts_fs_info *fsi)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700493{
494 int index;
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400495 int ida_ret;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700496
497retry:
Alan Cox835aa442009-01-02 13:42:48 +0000498 if (!ida_pre_get(&fsi->allocated_ptys, GFP_KERNEL))
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700499 return -ENOMEM;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700500
501 mutex_lock(&allocated_ptys_lock);
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500502 if (pty_count >= (pty_limit -
503 (fsi->mount_opts.reserve ? 0 : pty_reserve))) {
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400504 mutex_unlock(&allocated_ptys_lock);
505 return -ENOSPC;
506 }
507
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000508 ida_ret = ida_get_new(&fsi->allocated_ptys, &index);
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400509 if (ida_ret < 0) {
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700510 mutex_unlock(&allocated_ptys_lock);
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400511 if (ida_ret == -EAGAIN)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700512 goto retry;
513 return -EIO;
514 }
515
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400516 if (index >= fsi->mount_opts.max) {
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000517 ida_remove(&fsi->allocated_ptys, index);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700518 mutex_unlock(&allocated_ptys_lock);
Konstantin Khlebnikove9aba512012-01-05 13:06:11 +0400519 return -ENOSPC;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700520 }
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +0400521 pty_count++;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700522 mutex_unlock(&allocated_ptys_lock);
523 return index;
524}
525
Linus Torvalds67245ff2016-04-16 15:16:07 -0700526void devpts_kill_index(struct pts_fs_info *fsi, int idx)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700527{
528 mutex_lock(&allocated_ptys_lock);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000529 ida_remove(&fsi->allocated_ptys, idx);
Konstantin Khlebnikova4834c12012-01-05 13:06:02 +0400530 pty_count--;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700531 mutex_unlock(&allocated_ptys_lock);
532}
533
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200534/**
535 * devpts_pty_new -- create a new inode in /dev/pts/
536 * @ptmx_inode: inode of the master
537 * @device: major+minor of the node to be created
538 * @index: used as a name of the node
539 * @priv: what's given back by devpts_get_priv
540 *
541 * The created inode is returned. Remove it from /dev/pts/ by devpts_pty_kill.
542 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700543struct dentry *devpts_pty_new(struct pts_fs_info *fsi, int index, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 struct dentry *dentry;
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500546 struct super_block *sb = fsi->sb;
Jiri Slaby162b97c2012-10-18 22:26:28 +0200547 struct inode *inode;
Josh Triplett9ce71142015-06-30 14:58:27 -0700548 struct dentry *root;
Josh Triplett9ce71142015-06-30 14:58:27 -0700549 struct pts_mount_opts *opts;
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100550 char s[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Josh Triplett9ce71142015-06-30 14:58:27 -0700552 root = sb->s_root;
Josh Triplett9ce71142015-06-30 14:58:27 -0700553 opts = &fsi->mount_opts;
554
Jiri Slaby162b97c2012-10-18 22:26:28 +0200555 inode = new_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (!inode)
Jiri Slaby162b97c2012-10-18 22:26:28 +0200557 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Jiri Slabyf11afb62012-10-18 22:26:29 +0200559 inode->i_ino = index + 3;
David Howellsd0eafc72009-01-02 13:44:49 +0000560 inode->i_uid = opts->setuid ? opts->uid : current_fsuid();
561 inode->i_gid = opts->setgid ? opts->gid : current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700563 init_special_inode(inode, S_IFCHR|opts->mode, MKDEV(UNIX98_PTY_SLAVE_MAJOR, index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Jiri Slabyf11afb62012-10-18 22:26:29 +0200565 sprintf(s, "%d", index);
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100566
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000567 dentry = d_alloc_name(root, s);
Andrey Vaginb12d1252011-03-22 16:35:11 -0700568 if (dentry) {
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700569 dentry->d_fsdata = priv;
Sukadev Bhattiprolu89a52e102008-10-13 10:43:18 +0100570 d_add(dentry, inode);
David Howells2b0143b2015-03-17 22:25:59 +0000571 fsnotify_create(d_inode(root), dentry);
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300572 } else {
573 iput(inode);
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700574 dentry = ERR_PTR(-ENOMEM);
Florin Malita3972b7f2007-05-08 00:24:18 -0700575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700577 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200580/**
581 * devpts_get_priv -- get private data for a slave
582 * @pts_inode: inode of the slave
583 *
584 * Returns whatever was passed as priv in devpts_pty_new for a given inode.
585 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700586void *devpts_get_priv(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Linus Torvalds3e423942016-09-03 11:02:50 -0700588 if (dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC)
589 return NULL;
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700590 return dentry->d_fsdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Jiri Slaby1dcb8e62012-10-18 22:26:30 +0200593/**
594 * devpts_pty_kill -- remove inode form /dev/pts/
595 * @inode: inode of the slave to be removed
596 *
597 * This is an inverse operation of devpts_pty_new.
598 */
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700599void devpts_pty_kill(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700601 WARN_ON_ONCE(dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Linus Torvalds8ead9dd2016-04-25 20:04:08 -0700603 dentry->d_fsdata = NULL;
604 drop_nlink(dentry->d_inode);
Andrey Vaginaa597bc2011-02-08 00:14:52 +0300605 d_delete(dentry);
606 dput(dentry); /* d_alloc_name() in devpts_pty_new() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609static int __init init_devpts_fs(void)
610{
611 int err = register_filesystem(&devpts_fs_type);
612 if (!err) {
Eric W. Biedermaneedf2652016-06-02 10:29:47 -0500613 register_sysctl_table(pty_root_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615 return err;
616}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617module_init(init_devpts_fs)