]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - fs/devpts/inode.c
Merge branches 'for-5.1/upstream-fixes', 'for-5.2/core', 'for-5.2/ish', 'for-5.2...
[mirror_ubuntu-kernels.git] / fs / devpts / inode.c
CommitLineData
1da177e4
LT
1/* -*- 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
04541a2f
FF
13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
1da177e4
LT
15#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/fs.h>
18#include <linux/sched.h>
19#include <linux/namei.h>
5a0e3ad6 20#include <linux/slab.h>
1da177e4
LT
21#include <linux/mount.h>
22#include <linux/tty.h>
718a9163 23#include <linux/mutex.h>
1fd7317d 24#include <linux/magic.h>
718a9163 25#include <linux/idr.h>
1da177e4 26#include <linux/devpts_fs.h>
7a673c6b 27#include <linux/parser.h>
3972b7f6 28#include <linux/fsnotify.h>
b87a267e 29#include <linux/seq_file.h>
1da177e4 30
b87a267e 31#define DEVPTS_DEFAULT_MODE 0600
1f8f1e29
SB
32/*
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
527b3e47 39#define PTMX_MINOR 2
b87a267e 40
a4834c10
KK
41/*
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;
e9aba515 46static int pty_reserve = NR_UNIX98_PTY_RESERVE;
a4834c10 47static int pty_limit_min;
e9aba515 48static int pty_limit_max = INT_MAX;
0f0a0e54 49static atomic_t pty_count = ATOMIC_INIT(0);
a4834c10
KK
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,
e9aba515
KK
60 }, {
61 .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,
a4834c10
KK
68 }, {
69 .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
31af0abb 96struct pts_mount_opts {
1da177e4
LT
97 int setuid;
98 int setgid;
f04c6ce2
EB
99 kuid_t uid;
100 kgid_t gid;
1da177e4 101 umode_t mode;
1f8f1e29 102 umode_t ptmxmode;
eedf265a 103 int reserve;
e9aba515 104 int max;
31af0abb 105};
1da177e4 106
7a673c6b 107enum {
e9aba515 108 Opt_uid, Opt_gid, Opt_mode, Opt_ptmxmode, Opt_newinstance, Opt_max,
7a673c6b
DP
109 Opt_err
110};
111
a447c093 112static const match_table_t tokens = {
7a673c6b
DP
113 {Opt_uid, "uid=%u"},
114 {Opt_gid, "gid=%u"},
115 {Opt_mode, "mode=%o"},
1f8f1e29 116 {Opt_ptmxmode, "ptmxmode=%o"},
2a1b2dc0 117 {Opt_newinstance, "newinstance"},
e9aba515 118 {Opt_max, "max=%d"},
7a673c6b
DP
119 {Opt_err, NULL}
120};
121
e76b7c01
SB
122struct pts_fs_info {
123 struct ida allocated_ptys;
31af0abb 124 struct pts_mount_opts mount_opts;
67245ff3 125 struct super_block *sb;
1f8f1e29 126 struct dentry *ptmx_dentry;
e76b7c01
SB
127};
128
129static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
130{
131 return sb->s_fs_info;
132}
133
311fc65c
EB
134static int devpts_ptmx_path(struct path *path)
135{
136 struct super_block *sb;
137 int err;
138
311fc65c
EB
139 /* 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
4e15f760
CB
153/*
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 */
311fc65c
EB
171struct vfsmount *devpts_mntget(struct file *filp, struct pts_fs_info *fsi)
172{
173 struct path path;
7d71109d 174 int err = 0;
311fc65c
EB
175
176 path = filp->f_path;
177 path_get(&path);
178
a319b01d
CB
179 /* 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))
7d71109d 189 err = devpts_ptmx_path(&path);
311fc65c 190 dput(path.dentry);
a319b01d
CB
191 if (!err) {
192 if (DEVPTS_SB(path.mnt->mnt_sb) == fsi)
193 return path.mnt;
7d71109d 194
a319b01d 195 err = -ENODEV;
311fc65c 196 }
7d71109d 197
a319b01d
CB
198 mntput(path.mnt);
199 return ERR_PTR(err);
311fc65c
EB
200}
201
143c97cc 202struct pts_fs_info *devpts_acquire(struct file *filp)
59e55e6c 203{
eedf265a
EB
204 struct pts_fs_info *result;
205 struct path path;
206 struct super_block *sb;
eedf265a
EB
207
208 path = filp->f_path;
209 path_get(&path);
210
7d71109d
CB
211 /* 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 }
eedf265a
EB
220 }
221
222 /*
223 * pty code needs to hold extra references in case of last /dev/tty close
224 */
311fc65c 225 sb = path.mnt->mnt_sb;
eedf265a
EB
226 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);
59e55e6c
SB
237}
238
2a1b2dc0
SB
239#define PARSE_MOUNT 0
240#define PARSE_REMOUNT 1
241
1f71ebed
SB
242/*
243 * parse_mount_options():
04541a2f 244 * Set @opts to mount options specified in @data. If an option is not
eedf265a 245 * specified in @data, set it to its default value.
1f71ebed
SB
246 *
247 * Note: @data may be NULL (in which case all options are set to default).
248 */
2a1b2dc0 249static int parse_mount_options(char *data, int op, struct pts_mount_opts *opts)
1da177e4 250{
7a673c6b 251 char *p;
f04c6ce2
EB
252 kuid_t uid;
253 kgid_t gid;
7a673c6b 254
31af0abb
SB
255 opts->setuid = 0;
256 opts->setgid = 0;
f04c6ce2
EB
257 opts->uid = GLOBAL_ROOT_UID;
258 opts->gid = GLOBAL_ROOT_GID;
31af0abb 259 opts->mode = DEVPTS_DEFAULT_MODE;
1f8f1e29 260 opts->ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
e9aba515 261 opts->max = NR_UNIX98_PTY_MAX;
7a673c6b 262
eedf265a
EB
263 /* Only allow instances mounted from the initial mount
264 * namespace to tap the reserve pool of ptys.
265 */
2a1b2dc0 266 if (op == PARSE_MOUNT)
eedf265a
EB
267 opts->reserve =
268 (current->nsproxy->mnt_ns == init_task.nsproxy->mnt_ns);
2a1b2dc0 269
7a673c6b
DP
270 while ((p = strsep(&data, ",")) != NULL) {
271 substring_t args[MAX_OPT_ARGS];
272 int token;
273 int option;
274
275 if (!*p)
1da177e4 276 continue;
7a673c6b
DP
277
278 token = match_token(p, tokens, args);
279 switch (token) {
280 case Opt_uid:
281 if (match_int(&args[0], &option))
282 return -EINVAL;
f04c6ce2
EB
283 uid = make_kuid(current_user_ns(), option);
284 if (!uid_valid(uid))
285 return -EINVAL;
286 opts->uid = uid;
31af0abb 287 opts->setuid = 1;
7a673c6b
DP
288 break;
289 case Opt_gid:
290 if (match_int(&args[0], &option))
291 return -EINVAL;
f04c6ce2
EB
292 gid = make_kgid(current_user_ns(), option);
293 if (!gid_valid(gid))
294 return -EINVAL;
295 opts->gid = gid;
31af0abb 296 opts->setgid = 1;
7a673c6b
DP
297 break;
298 case Opt_mode:
299 if (match_octal(&args[0], &option))
300 return -EINVAL;
31af0abb 301 opts->mode = option & S_IALLUGO;
7a673c6b 302 break;
1f8f1e29
SB
303 case Opt_ptmxmode:
304 if (match_octal(&args[0], &option))
305 return -EINVAL;
306 opts->ptmxmode = option & S_IALLUGO;
307 break;
2a1b2dc0 308 case Opt_newinstance:
2a1b2dc0 309 break;
e9aba515
KK
310 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;
7a673c6b 316 default:
04541a2f 317 pr_err("called with bogus options\n");
1da177e4
LT
318 return -EINVAL;
319 }
320 }
1da177e4
LT
321
322 return 0;
323}
324
1f8f1e29
SB
325static int mknod_ptmx(struct super_block *sb)
326{
327 int mode;
328 int rc = -ENOMEM;
329 struct dentry *dentry;
330 struct inode *inode;
331 struct dentry *root = sb->s_root;
332 struct pts_fs_info *fsi = DEVPTS_SB(sb);
333 struct pts_mount_opts *opts = &fsi->mount_opts;
e98d4137
EB
334 kuid_t ptmx_uid = current_fsuid();
335 kgid_t ptmx_gid = current_fsgid();
1f8f1e29 336
5955102c 337 inode_lock(d_inode(root));
1f8f1e29
SB
338
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) {
04541a2f 347 pr_err("Unable to alloc dentry for ptmx node\n");
1f8f1e29
SB
348 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) {
04541a2f 356 pr_err("Unable to alloc inode for ptmx node\n");
1f8f1e29
SB
357 dput(dentry);
358 goto out;
359 }
360
361 inode->i_ino = 2;
078cd827 362 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
1f8f1e29
SB
363
364 mode = S_IFCHR|opts->ptmxmode;
365 init_special_inode(inode, mode, MKDEV(TTYAUX_MAJOR, 2));
e98d4137
EB
366 inode->i_uid = ptmx_uid;
367 inode->i_gid = ptmx_gid;
1f8f1e29
SB
368
369 d_add(dentry, inode);
370
371 fsi->ptmx_dentry = dentry;
372 rc = 0;
1f8f1e29 373out:
5955102c 374 inode_unlock(d_inode(root));
1f8f1e29
SB
375 return rc;
376}
377
378static void update_ptmx_mode(struct pts_fs_info *fsi)
379{
380 struct inode *inode;
381 if (fsi->ptmx_dentry) {
2b0143b5 382 inode = d_inode(fsi->ptmx_dentry);
1f8f1e29
SB
383 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode;
384 }
385}
1f8f1e29 386
53af8ee4
SB
387static int devpts_remount(struct super_block *sb, int *flags, char *data)
388{
1f8f1e29 389 int err;
53af8ee4
SB
390 struct pts_fs_info *fsi = DEVPTS_SB(sb);
391 struct pts_mount_opts *opts = &fsi->mount_opts;
392
2a1b2dc0 393 err = parse_mount_options(data, PARSE_REMOUNT, opts);
1f8f1e29
SB
394
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;
53af8ee4
SB
404}
405
34c80b1d 406static int devpts_show_options(struct seq_file *seq, struct dentry *root)
b87a267e 407{
34c80b1d 408 struct pts_fs_info *fsi = DEVPTS_SB(root->d_sb);
31af0abb
SB
409 struct pts_mount_opts *opts = &fsi->mount_opts;
410
411 if (opts->setuid)
04541a2f
FF
412 seq_printf(seq, ",uid=%u",
413 from_kuid_munged(&init_user_ns, opts->uid));
31af0abb 414 if (opts->setgid)
04541a2f
FF
415 seq_printf(seq, ",gid=%u",
416 from_kgid_munged(&init_user_ns, opts->gid));
31af0abb 417 seq_printf(seq, ",mode=%03o", opts->mode);
1f8f1e29 418 seq_printf(seq, ",ptmxmode=%03o", opts->ptmxmode);
e9aba515
KK
419 if (opts->max < NR_UNIX98_PTY_MAX)
420 seq_printf(seq, ",max=%d", opts->max);
b87a267e
MS
421
422 return 0;
423}
424
ee9b6d61 425static const struct super_operations devpts_sops = {
1da177e4
LT
426 .statfs = simple_statfs,
427 .remount_fs = devpts_remount,
b87a267e 428 .show_options = devpts_show_options,
1da177e4
LT
429};
430
67245ff3 431static void *new_pts_fs_info(struct super_block *sb)
e76b7c01
SB
432{
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);
31af0abb 440 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
1f8f1e29 441 fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
67245ff3 442 fsi->sb = sb;
e76b7c01
SB
443
444 return fsi;
445}
446
1da177e4
LT
447static int
448devpts_fill_super(struct super_block *s, void *data, int silent)
449{
1f8f1e29 450 struct inode *inode;
dee87d47 451 int error;
1da177e4 452
cc50a07a 453 s->s_iflags &= ~SB_I_NODEV;
1da177e4
LT
454 s->s_blocksize = 1024;
455 s->s_blocksize_bits = 10;
456 s->s_magic = DEVPTS_SUPER_MAGIC;
457 s->s_op = &devpts_sops;
73052b0d 458 s->s_d_op = &simple_dentry_operations;
1da177e4
LT
459 s->s_time_gran = 1;
460
dee87d47 461 error = -ENOMEM;
67245ff3 462 s->s_fs_info = new_pts_fs_info(s);
e76b7c01
SB
463 if (!s->s_fs_info)
464 goto fail;
465
dee87d47
EB
466 error = parse_mount_options(data, PARSE_MOUNT, &DEVPTS_SB(s)->mount_opts);
467 if (error)
468 goto fail;
469
470 error = -ENOMEM;
1da177e4
LT
471 inode = new_inode(s);
472 if (!inode)
3850aba7 473 goto fail;
1da177e4 474 inode->i_ino = 1;
078cd827 475 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
1da177e4
LT
476 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
477 inode->i_op = &simple_dir_inode_operations;
478 inode->i_fop = &simple_dir_operations;
bfe86848 479 set_nlink(inode, 2);
1da177e4 480
48fde701 481 s->s_root = d_make_root(inode);
180d9044
EB
482 if (!s->s_root) {
483 pr_err("get root dentry failed\n");
484 goto fail;
485 }
1f8f1e29 486
180d9044
EB
487 error = mknod_ptmx(s);
488 if (error)
489 goto fail_dput;
e76b7c01 490
180d9044
EB
491 return 0;
492fail_dput:
493 dput(s->s_root);
494 s->s_root = NULL;
1da177e4 495fail:
dee87d47 496 return error;
1da177e4
LT
497}
498
2a1b2dc0 499/*
fc14f2fe 500 * devpts_mount()
1bd79035 501 *
eedf265a
EB
502 * Mount a new (private) instance of devpts. PTYs created in this
503 * instance are independent of the PTYs in other devpts instances.
d4076ac5 504 */
fc14f2fe
AV
505static struct dentry *devpts_mount(struct file_system_type *fs_type,
506 int flags, const char *dev_name, void *data)
1da177e4 507{
c1b241f0 508 return mount_nodev(fs_type, flags, data, devpts_fill_super);
1da177e4 509}
482984f0 510
e76b7c01
SB
511static void devpts_kill_sb(struct super_block *sb)
512{
513 struct pts_fs_info *fsi = DEVPTS_SB(sb);
514
40b320e1
EB
515 if (fsi)
516 ida_destroy(&fsi->allocated_ptys);
e76b7c01 517 kfree(fsi);
1f8f1e29 518 kill_litter_super(sb);
e76b7c01
SB
519}
520
1da177e4 521static struct file_system_type devpts_fs_type = {
1da177e4 522 .name = "devpts",
fc14f2fe 523 .mount = devpts_mount,
e76b7c01 524 .kill_sb = devpts_kill_sb,
cc50a07a 525 .fs_flags = FS_USERNS_MOUNT,
1da177e4
LT
526};
527
528/*
529 * The normal naming convention is simply /dev/pts/<number>; this conforms
530 * to the System V naming convention
531 */
532
67245ff3 533int devpts_new_index(struct pts_fs_info *fsi)
718a9163 534{
0f0a0e54 535 int index = -ENOSPC;
e9aba515 536
0f0a0e54
MW
537 if (atomic_inc_return(&pty_count) >= (pty_limit -
538 (fsi->mount_opts.reserve ? 0 : pty_reserve)))
539 goto out;
718a9163 540
0f0a0e54
MW
541 index = ida_alloc_max(&fsi->allocated_ptys, fsi->mount_opts.max - 1,
542 GFP_KERNEL);
543
544out:
545 if (index < 0)
546 atomic_dec(&pty_count);
718a9163
SB
547 return index;
548}
549
67245ff3 550void devpts_kill_index(struct pts_fs_info *fsi, int idx)
718a9163 551{
0f0a0e54
MW
552 ida_free(&fsi->allocated_ptys, idx);
553 atomic_dec(&pty_count);
718a9163
SB
554}
555
1dcb8e6d
JS
556/**
557 * devpts_pty_new -- create a new inode in /dev/pts/
558 * @ptmx_inode: inode of the master
559 * @device: major+minor of the node to be created
560 * @index: used as a name of the node
561 * @priv: what's given back by devpts_get_priv
562 *
563 * The created inode is returned. Remove it from /dev/pts/ by devpts_pty_kill.
564 */
8ead9dd5 565struct dentry *devpts_pty_new(struct pts_fs_info *fsi, int index, void *priv)
1da177e4 566{
1da177e4 567 struct dentry *dentry;
eedf265a 568 struct super_block *sb = fsi->sb;
162b97cf 569 struct inode *inode;
9ce71148 570 struct dentry *root;
9ce71148 571 struct pts_mount_opts *opts;
89a52e10 572 char s[12];
1da177e4 573
9ce71148 574 root = sb->s_root;
9ce71148
JT
575 opts = &fsi->mount_opts;
576
162b97cf 577 inode = new_inode(sb);
1da177e4 578 if (!inode)
162b97cf 579 return ERR_PTR(-ENOMEM);
1da177e4 580
f11afb61 581 inode->i_ino = index + 3;
d0eafc7d
DH
582 inode->i_uid = opts->setuid ? opts->uid : current_fsuid();
583 inode->i_gid = opts->setgid ? opts->gid : current_fsgid();
078cd827 584 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
8ead9dd5 585 init_special_inode(inode, S_IFCHR|opts->mode, MKDEV(UNIX98_PTY_SLAVE_MAJOR, index));
1da177e4 586
f11afb61 587 sprintf(s, "%d", index);
89a52e10 588
59e55e6c 589 dentry = d_alloc_name(root, s);
b12d1259 590 if (dentry) {
8ead9dd5 591 dentry->d_fsdata = priv;
89a52e10 592 d_add(dentry, inode);
2b0143b5 593 fsnotify_create(d_inode(root), dentry);
aa597bc1
AV
594 } else {
595 iput(inode);
8ead9dd5 596 dentry = ERR_PTR(-ENOMEM);
3972b7f6 597 }
1da177e4 598
8ead9dd5 599 return dentry;
1da177e4
LT
600}
601
1dcb8e6d
JS
602/**
603 * devpts_get_priv -- get private data for a slave
604 * @pts_inode: inode of the slave
605 *
606 * Returns whatever was passed as priv in devpts_pty_new for a given inode.
607 */
8ead9dd5 608void *devpts_get_priv(struct dentry *dentry)
1da177e4 609{
3e423945
LT
610 if (dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC)
611 return NULL;
8ead9dd5 612 return dentry->d_fsdata;
1da177e4
LT
613}
614
1dcb8e6d
JS
615/**
616 * devpts_pty_kill -- remove inode form /dev/pts/
617 * @inode: inode of the slave to be removed
618 *
619 * This is an inverse operation of devpts_pty_new.
620 */
8ead9dd5 621void devpts_pty_kill(struct dentry *dentry)
1da177e4 622{
8ead9dd5 623 WARN_ON_ONCE(dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC);
1da177e4 624
8ead9dd5
LT
625 dentry->d_fsdata = NULL;
626 drop_nlink(dentry->d_inode);
aa597bc1
AV
627 d_delete(dentry);
628 dput(dentry); /* d_alloc_name() in devpts_pty_new() */
1da177e4
LT
629}
630
631static int __init init_devpts_fs(void)
632{
633 int err = register_filesystem(&devpts_fs_type);
634 if (!err) {
eedf265a 635 register_sysctl_table(pty_root_table);
1da177e4
LT
636 }
637 return err;
638}
1da177e4 639module_init(init_devpts_fs)