]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/devpts/inode.c
VFS: security/: d_inode() annotations
[mirror_ubuntu-artful-kernel.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;
a4834c10
KK
49static 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,
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
718a9163
SB
96static DEFINE_MUTEX(allocated_ptys_lock);
97
1da177e4 98static struct vfsmount *devpts_mnt;
1da177e4 99
31af0abb 100struct pts_mount_opts {
1da177e4
LT
101 int setuid;
102 int setgid;
f04c6ce2
EB
103 kuid_t uid;
104 kgid_t gid;
1da177e4 105 umode_t mode;
1f8f1e29 106 umode_t ptmxmode;
2a1b2dc0 107 int newinstance;
e9aba515 108 int max;
31af0abb 109};
1da177e4 110
7a673c6b 111enum {
e9aba515 112 Opt_uid, Opt_gid, Opt_mode, Opt_ptmxmode, Opt_newinstance, Opt_max,
7a673c6b
DP
113 Opt_err
114};
115
a447c093 116static const match_table_t tokens = {
7a673c6b
DP
117 {Opt_uid, "uid=%u"},
118 {Opt_gid, "gid=%u"},
119 {Opt_mode, "mode=%o"},
1f8f1e29
SB
120#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
121 {Opt_ptmxmode, "ptmxmode=%o"},
2a1b2dc0 122 {Opt_newinstance, "newinstance"},
e9aba515 123 {Opt_max, "max=%d"},
1f8f1e29 124#endif
7a673c6b
DP
125 {Opt_err, NULL}
126};
127
e76b7c01
SB
128struct pts_fs_info {
129 struct ida allocated_ptys;
31af0abb 130 struct pts_mount_opts mount_opts;
1f8f1e29 131 struct dentry *ptmx_dentry;
e76b7c01
SB
132};
133
134static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
135{
136 return sb->s_fs_info;
137}
138
59e55e6c
SB
139static inline struct super_block *pts_sb_from_inode(struct inode *inode)
140{
2a1b2dc0 141#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
59e55e6c
SB
142 if (inode->i_sb->s_magic == DEVPTS_SUPER_MAGIC)
143 return inode->i_sb;
2a1b2dc0 144#endif
59e55e6c
SB
145 return devpts_mnt->mnt_sb;
146}
147
2a1b2dc0
SB
148#define PARSE_MOUNT 0
149#define PARSE_REMOUNT 1
150
1f71ebed
SB
151/*
152 * parse_mount_options():
04541a2f
FF
153 * Set @opts to mount options specified in @data. If an option is not
154 * specified in @data, set it to its default value. The exception is
155 * 'newinstance' option which can only be set/cleared on a mount (i.e.
156 * cannot be changed during remount).
1f71ebed
SB
157 *
158 * Note: @data may be NULL (in which case all options are set to default).
159 */
2a1b2dc0 160static int parse_mount_options(char *data, int op, struct pts_mount_opts *opts)
1da177e4 161{
7a673c6b 162 char *p;
f04c6ce2
EB
163 kuid_t uid;
164 kgid_t gid;
7a673c6b 165
31af0abb
SB
166 opts->setuid = 0;
167 opts->setgid = 0;
f04c6ce2
EB
168 opts->uid = GLOBAL_ROOT_UID;
169 opts->gid = GLOBAL_ROOT_GID;
31af0abb 170 opts->mode = DEVPTS_DEFAULT_MODE;
1f8f1e29 171 opts->ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
e9aba515 172 opts->max = NR_UNIX98_PTY_MAX;
7a673c6b 173
2a1b2dc0
SB
174 /* newinstance makes sense only on initial mount */
175 if (op == PARSE_MOUNT)
176 opts->newinstance = 0;
177
7a673c6b
DP
178 while ((p = strsep(&data, ",")) != NULL) {
179 substring_t args[MAX_OPT_ARGS];
180 int token;
181 int option;
182
183 if (!*p)
1da177e4 184 continue;
7a673c6b
DP
185
186 token = match_token(p, tokens, args);
187 switch (token) {
188 case Opt_uid:
189 if (match_int(&args[0], &option))
190 return -EINVAL;
f04c6ce2
EB
191 uid = make_kuid(current_user_ns(), option);
192 if (!uid_valid(uid))
193 return -EINVAL;
194 opts->uid = uid;
31af0abb 195 opts->setuid = 1;
7a673c6b
DP
196 break;
197 case Opt_gid:
198 if (match_int(&args[0], &option))
199 return -EINVAL;
f04c6ce2
EB
200 gid = make_kgid(current_user_ns(), option);
201 if (!gid_valid(gid))
202 return -EINVAL;
203 opts->gid = gid;
31af0abb 204 opts->setgid = 1;
7a673c6b
DP
205 break;
206 case Opt_mode:
207 if (match_octal(&args[0], &option))
208 return -EINVAL;
31af0abb 209 opts->mode = option & S_IALLUGO;
7a673c6b 210 break;
1f8f1e29
SB
211#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
212 case Opt_ptmxmode:
213 if (match_octal(&args[0], &option))
214 return -EINVAL;
215 opts->ptmxmode = option & S_IALLUGO;
216 break;
2a1b2dc0
SB
217 case Opt_newinstance:
218 /* newinstance makes sense only on initial mount */
219 if (op == PARSE_MOUNT)
220 opts->newinstance = 1;
221 break;
e9aba515
KK
222 case Opt_max:
223 if (match_int(&args[0], &option) ||
224 option < 0 || option > NR_UNIX98_PTY_MAX)
225 return -EINVAL;
226 opts->max = option;
227 break;
1f8f1e29 228#endif
7a673c6b 229 default:
04541a2f 230 pr_err("called with bogus options\n");
1da177e4
LT
231 return -EINVAL;
232 }
233 }
1da177e4
LT
234
235 return 0;
236}
237
1f8f1e29
SB
238#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
239static int mknod_ptmx(struct super_block *sb)
240{
241 int mode;
242 int rc = -ENOMEM;
243 struct dentry *dentry;
244 struct inode *inode;
245 struct dentry *root = sb->s_root;
246 struct pts_fs_info *fsi = DEVPTS_SB(sb);
247 struct pts_mount_opts *opts = &fsi->mount_opts;
ec2aa8e8
EB
248 kuid_t root_uid;
249 kgid_t root_gid;
250
251 root_uid = make_kuid(current_user_ns(), 0);
252 root_gid = make_kgid(current_user_ns(), 0);
253 if (!uid_valid(root_uid) || !gid_valid(root_gid))
254 return -EINVAL;
1f8f1e29
SB
255
256 mutex_lock(&root->d_inode->i_mutex);
257
258 /* If we have already created ptmx node, return */
259 if (fsi->ptmx_dentry) {
260 rc = 0;
261 goto out;
262 }
263
264 dentry = d_alloc_name(root, "ptmx");
265 if (!dentry) {
04541a2f 266 pr_err("Unable to alloc dentry for ptmx node\n");
1f8f1e29
SB
267 goto out;
268 }
269
270 /*
271 * Create a new 'ptmx' node in this mount of devpts.
272 */
273 inode = new_inode(sb);
274 if (!inode) {
04541a2f 275 pr_err("Unable to alloc inode for ptmx node\n");
1f8f1e29
SB
276 dput(dentry);
277 goto out;
278 }
279
280 inode->i_ino = 2;
1f8f1e29
SB
281 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
282
283 mode = S_IFCHR|opts->ptmxmode;
284 init_special_inode(inode, mode, MKDEV(TTYAUX_MAJOR, 2));
ec2aa8e8
EB
285 inode->i_uid = root_uid;
286 inode->i_gid = root_gid;
1f8f1e29
SB
287
288 d_add(dentry, inode);
289
290 fsi->ptmx_dentry = dentry;
291 rc = 0;
1f8f1e29
SB
292out:
293 mutex_unlock(&root->d_inode->i_mutex);
294 return rc;
295}
296
297static void update_ptmx_mode(struct pts_fs_info *fsi)
298{
299 struct inode *inode;
300 if (fsi->ptmx_dentry) {
301 inode = fsi->ptmx_dentry->d_inode;
302 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode;
303 }
304}
305#else
306static inline void update_ptmx_mode(struct pts_fs_info *fsi)
307{
04541a2f 308 return;
1f8f1e29
SB
309}
310#endif
311
53af8ee4
SB
312static int devpts_remount(struct super_block *sb, int *flags, char *data)
313{
1f8f1e29 314 int err;
53af8ee4
SB
315 struct pts_fs_info *fsi = DEVPTS_SB(sb);
316 struct pts_mount_opts *opts = &fsi->mount_opts;
317
02b9984d 318 sync_filesystem(sb);
2a1b2dc0 319 err = parse_mount_options(data, PARSE_REMOUNT, opts);
1f8f1e29
SB
320
321 /*
322 * parse_mount_options() restores options to default values
323 * before parsing and may have changed ptmxmode. So, update the
324 * mode in the inode too. Bogus options don't fail the remount,
325 * so do this even on error return.
326 */
327 update_ptmx_mode(fsi);
328
329 return err;
53af8ee4
SB
330}
331
34c80b1d 332static int devpts_show_options(struct seq_file *seq, struct dentry *root)
b87a267e 333{
34c80b1d 334 struct pts_fs_info *fsi = DEVPTS_SB(root->d_sb);
31af0abb
SB
335 struct pts_mount_opts *opts = &fsi->mount_opts;
336
337 if (opts->setuid)
04541a2f
FF
338 seq_printf(seq, ",uid=%u",
339 from_kuid_munged(&init_user_ns, opts->uid));
31af0abb 340 if (opts->setgid)
04541a2f
FF
341 seq_printf(seq, ",gid=%u",
342 from_kgid_munged(&init_user_ns, opts->gid));
31af0abb 343 seq_printf(seq, ",mode=%03o", opts->mode);
1f8f1e29
SB
344#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
345 seq_printf(seq, ",ptmxmode=%03o", opts->ptmxmode);
e9aba515
KK
346 if (opts->max < NR_UNIX98_PTY_MAX)
347 seq_printf(seq, ",max=%d", opts->max);
1f8f1e29 348#endif
b87a267e
MS
349
350 return 0;
351}
352
ee9b6d61 353static const struct super_operations devpts_sops = {
1da177e4
LT
354 .statfs = simple_statfs,
355 .remount_fs = devpts_remount,
b87a267e 356 .show_options = devpts_show_options,
1da177e4
LT
357};
358
e76b7c01
SB
359static void *new_pts_fs_info(void)
360{
361 struct pts_fs_info *fsi;
362
363 fsi = kzalloc(sizeof(struct pts_fs_info), GFP_KERNEL);
364 if (!fsi)
365 return NULL;
366
367 ida_init(&fsi->allocated_ptys);
31af0abb 368 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
1f8f1e29 369 fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
e76b7c01
SB
370
371 return fsi;
372}
373
1da177e4
LT
374static int
375devpts_fill_super(struct super_block *s, void *data, int silent)
376{
1f8f1e29 377 struct inode *inode;
1da177e4
LT
378
379 s->s_blocksize = 1024;
380 s->s_blocksize_bits = 10;
381 s->s_magic = DEVPTS_SUPER_MAGIC;
382 s->s_op = &devpts_sops;
1da177e4
LT
383 s->s_time_gran = 1;
384
e76b7c01
SB
385 s->s_fs_info = new_pts_fs_info();
386 if (!s->s_fs_info)
387 goto fail;
388
1da177e4
LT
389 inode = new_inode(s);
390 if (!inode)
3850aba7 391 goto fail;
1da177e4
LT
392 inode->i_ino = 1;
393 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
1da177e4
LT
394 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
395 inode->i_op = &simple_dir_inode_operations;
396 inode->i_fop = &simple_dir_operations;
bfe86848 397 set_nlink(inode, 2);
1da177e4 398
48fde701 399 s->s_root = d_make_root(inode);
1da177e4
LT
400 if (s->s_root)
401 return 0;
1f8f1e29 402
04541a2f 403 pr_err("get root dentry failed\n");
e76b7c01 404
1da177e4
LT
405fail:
406 return -ENOMEM;
407}
408
8c056e5b 409#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
d4076ac5
SB
410static int compare_init_pts_sb(struct super_block *s, void *p)
411{
412 if (devpts_mnt)
413 return devpts_mnt->mnt_sb == s;
2a1b2dc0
SB
414 return 0;
415}
416
2a1b2dc0 417/*
fc14f2fe 418 * devpts_mount()
1bd79035
SB
419 *
420 * If the '-o newinstance' mount option was specified, mount a new
421 * (private) instance of devpts. PTYs created in this instance are
422 * independent of the PTYs in other devpts instances.
423 *
424 * If the '-o newinstance' option was not specified, mount/remount the
425 * initial kernel mount of devpts. This type of mount gives the
426 * legacy, single-instance semantics.
289f00e2 427 *
1bd79035
SB
428 * The 'newinstance' option is needed to support multiple namespace
429 * semantics in devpts while preserving backward compatibility of the
430 * current 'single-namespace' semantics. i.e all mounts of devpts
431 * without the 'newinstance' mount option should bind to the initial
fc14f2fe 432 * kernel mount, like mount_single().
d4076ac5 433 *
1bd79035 434 * Mounts with 'newinstance' option create a new, private namespace.
d4076ac5 435 *
1bd79035 436 * NOTE:
d4076ac5 437 *
fc14f2fe
AV
438 * For single-mount semantics, devpts cannot use mount_single(),
439 * because mount_single()/sget() find and use the super-block from
d4076ac5 440 * the most recent mount of devpts. But that recent mount may be a
fc14f2fe 441 * 'newinstance' mount and mount_single() would pick the newinstance
d4076ac5 442 * super-block instead of the initial super-block.
d4076ac5 443 */
fc14f2fe
AV
444static struct dentry *devpts_mount(struct file_system_type *fs_type,
445 int flags, const char *dev_name, void *data)
1da177e4 446{
482984f0
SB
447 int error;
448 struct pts_mount_opts opts;
1bd79035 449 struct super_block *s;
2a1b2dc0 450
1f71ebed
SB
451 error = parse_mount_options(data, PARSE_MOUNT, &opts);
452 if (error)
fc14f2fe 453 return ERR_PTR(error);
2a1b2dc0 454
ec2aa8e8
EB
455 /* Require newinstance for all user namespace mounts to ensure
456 * the mount options are not changed.
457 */
458 if ((current_user_ns() != &init_user_ns) && !opts.newinstance)
459 return ERR_PTR(-EINVAL);
460
482984f0 461 if (opts.newinstance)
9249e17f 462 s = sget(fs_type, NULL, set_anon_super, flags, NULL);
482984f0 463 else
9249e17f
DH
464 s = sget(fs_type, compare_init_pts_sb, set_anon_super, flags,
465 NULL);
945cf2c7 466
1bd79035 467 if (IS_ERR(s))
fc14f2fe 468 return ERR_CAST(s);
1bd79035
SB
469
470 if (!s->s_root) {
1bd79035
SB
471 error = devpts_fill_super(s, data, flags & MS_SILENT ? 1 : 0);
472 if (error)
473 goto out_undo_sget;
474 s->s_flags |= MS_ACTIVE;
475 }
476
1bd79035 477 memcpy(&(DEVPTS_SB(s))->mount_opts, &opts, sizeof(opts));
945cf2c7 478
1bd79035 479 error = mknod_ptmx(s);
945cf2c7 480 if (error)
89468071 481 goto out_undo_sget;
945cf2c7 482
fc14f2fe 483 return dget(s->s_root);
1bd79035
SB
484
485out_undo_sget:
6f5bbff9 486 deactivate_locked_super(s);
fc14f2fe 487 return ERR_PTR(error);
1da177e4 488}
482984f0 489
2a1b2dc0
SB
490#else
491/*
492 * This supports only the legacy single-instance semantics (no
493 * multiple-instance semantics)
494 */
fc14f2fe
AV
495static struct dentry *devpts_mount(struct file_system_type *fs_type, int flags,
496 const char *dev_name, void *data)
2a1b2dc0 497{
fc14f2fe 498 return mount_single(fs_type, flags, data, devpts_fill_super);
2a1b2dc0
SB
499}
500#endif
1da177e4 501
e76b7c01
SB
502static void devpts_kill_sb(struct super_block *sb)
503{
504 struct pts_fs_info *fsi = DEVPTS_SB(sb);
505
66da0e1f 506 ida_destroy(&fsi->allocated_ptys);
e76b7c01 507 kfree(fsi);
1f8f1e29 508 kill_litter_super(sb);
e76b7c01
SB
509}
510
1da177e4 511static struct file_system_type devpts_fs_type = {
1da177e4 512 .name = "devpts",
fc14f2fe 513 .mount = devpts_mount,
e76b7c01 514 .kill_sb = devpts_kill_sb,
ec2aa8e8
EB
515#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
516 .fs_flags = FS_USERNS_MOUNT | FS_USERNS_DEV_MOUNT,
517#endif
1da177e4
LT
518};
519
520/*
521 * The normal naming convention is simply /dev/pts/<number>; this conforms
522 * to the System V naming convention
523 */
524
15f1a633 525int devpts_new_index(struct inode *ptmx_inode)
718a9163 526{
e76b7c01
SB
527 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
528 struct pts_fs_info *fsi = DEVPTS_SB(sb);
718a9163 529 int index;
7ee7c12b 530 int ida_ret;
718a9163
SB
531
532retry:
835aa440 533 if (!ida_pre_get(&fsi->allocated_ptys, GFP_KERNEL))
718a9163 534 return -ENOMEM;
718a9163
SB
535
536 mutex_lock(&allocated_ptys_lock);
e9aba515
KK
537 if (pty_count >= pty_limit -
538 (fsi->mount_opts.newinstance ? pty_reserve : 0)) {
539 mutex_unlock(&allocated_ptys_lock);
540 return -ENOSPC;
541 }
542
e76b7c01 543 ida_ret = ida_get_new(&fsi->allocated_ptys, &index);
7ee7c12b 544 if (ida_ret < 0) {
718a9163 545 mutex_unlock(&allocated_ptys_lock);
7ee7c12b 546 if (ida_ret == -EAGAIN)
718a9163
SB
547 goto retry;
548 return -EIO;
549 }
550
e9aba515 551 if (index >= fsi->mount_opts.max) {
e76b7c01 552 ida_remove(&fsi->allocated_ptys, index);
718a9163 553 mutex_unlock(&allocated_ptys_lock);
e9aba515 554 return -ENOSPC;
718a9163 555 }
a4834c10 556 pty_count++;
718a9163
SB
557 mutex_unlock(&allocated_ptys_lock);
558 return index;
559}
560
15f1a633 561void devpts_kill_index(struct inode *ptmx_inode, int idx)
718a9163 562{
e76b7c01
SB
563 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
564 struct pts_fs_info *fsi = DEVPTS_SB(sb);
565
718a9163 566 mutex_lock(&allocated_ptys_lock);
e76b7c01 567 ida_remove(&fsi->allocated_ptys, idx);
a4834c10 568 pty_count--;
718a9163
SB
569 mutex_unlock(&allocated_ptys_lock);
570}
571
1dcb8e6d
JS
572/**
573 * devpts_pty_new -- create a new inode in /dev/pts/
574 * @ptmx_inode: inode of the master
575 * @device: major+minor of the node to be created
576 * @index: used as a name of the node
577 * @priv: what's given back by devpts_get_priv
578 *
579 * The created inode is returned. Remove it from /dev/pts/ by devpts_pty_kill.
580 */
f11afb61
JS
581struct inode *devpts_pty_new(struct inode *ptmx_inode, dev_t device, int index,
582 void *priv)
1da177e4 583{
1da177e4 584 struct dentry *dentry;
59e55e6c 585 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
162b97cf 586 struct inode *inode;
59e55e6c 587 struct dentry *root = sb->s_root;
31af0abb
SB
588 struct pts_fs_info *fsi = DEVPTS_SB(sb);
589 struct pts_mount_opts *opts = &fsi->mount_opts;
89a52e10 590 char s[12];
1da177e4 591
162b97cf 592 inode = new_inode(sb);
1da177e4 593 if (!inode)
162b97cf 594 return ERR_PTR(-ENOMEM);
1da177e4 595
f11afb61 596 inode->i_ino = index + 3;
d0eafc7d
DH
597 inode->i_uid = opts->setuid ? opts->uid : current_fsuid();
598 inode->i_gid = opts->setgid ? opts->gid : current_fsgid();
1da177e4 599 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
31af0abb 600 init_special_inode(inode, S_IFCHR|opts->mode, device);
f11afb61 601 inode->i_private = priv;
1da177e4 602
f11afb61 603 sprintf(s, "%d", index);
89a52e10 604
59e55e6c 605 mutex_lock(&root->d_inode->i_mutex);
89a52e10 606
59e55e6c 607 dentry = d_alloc_name(root, s);
b12d1259 608 if (dentry) {
89a52e10 609 d_add(dentry, inode);
59e55e6c 610 fsnotify_create(root->d_inode, dentry);
aa597bc1
AV
611 } else {
612 iput(inode);
162b97cf 613 inode = ERR_PTR(-ENOMEM);
3972b7f6 614 }
1da177e4 615
59e55e6c 616 mutex_unlock(&root->d_inode->i_mutex);
1da177e4 617
162b97cf 618 return inode;
1da177e4
LT
619}
620
1dcb8e6d
JS
621/**
622 * devpts_get_priv -- get private data for a slave
623 * @pts_inode: inode of the slave
624 *
625 * Returns whatever was passed as priv in devpts_pty_new for a given inode.
626 */
8fcbaa2b 627void *devpts_get_priv(struct inode *pts_inode)
1da177e4 628{
edfacdd6 629 struct dentry *dentry;
8fcbaa2b 630 void *priv = NULL;
edfacdd6 631
527b3e47 632 BUG_ON(pts_inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
1da177e4 633
edfacdd6
SB
634 /* Ensure dentry has not been deleted by devpts_pty_kill() */
635 dentry = d_find_alias(pts_inode);
636 if (!dentry)
637 return NULL;
638
527b3e47 639 if (pts_inode->i_sb->s_magic == DEVPTS_SUPER_MAGIC)
8fcbaa2b 640 priv = pts_inode->i_private;
edfacdd6
SB
641
642 dput(dentry);
643
8fcbaa2b 644 return priv;
1da177e4
LT
645}
646
1dcb8e6d
JS
647/**
648 * devpts_pty_kill -- remove inode form /dev/pts/
649 * @inode: inode of the slave to be removed
650 *
651 * This is an inverse operation of devpts_pty_new.
652 */
f11afb61 653void devpts_pty_kill(struct inode *inode)
1da177e4 654{
59e55e6c
SB
655 struct super_block *sb = pts_sb_from_inode(inode);
656 struct dentry *root = sb->s_root;
a6f37daa 657 struct dentry *dentry;
1da177e4 658
a6f37daa
SB
659 BUG_ON(inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
660
59e55e6c 661 mutex_lock(&root->d_inode->i_mutex);
a6f37daa
SB
662
663 dentry = d_find_alias(inode);
a6f37daa 664
6d6b77f1 665 drop_nlink(inode);
aa597bc1
AV
666 d_delete(dentry);
667 dput(dentry); /* d_alloc_name() in devpts_pty_new() */
835aa440 668 dput(dentry); /* d_find_alias above */
aa597bc1 669
59e55e6c 670 mutex_unlock(&root->d_inode->i_mutex);
1da177e4
LT
671}
672
673static int __init init_devpts_fs(void)
674{
675 int err = register_filesystem(&devpts_fs_type);
a4834c10
KK
676 struct ctl_table_header *table;
677
1da177e4 678 if (!err) {
a4834c10 679 table = register_sysctl_table(pty_root_table);
1da177e4 680 devpts_mnt = kern_mount(&devpts_fs_type);
93d5581e 681 if (IS_ERR(devpts_mnt)) {
1da177e4 682 err = PTR_ERR(devpts_mnt);
93d5581e 683 unregister_filesystem(&devpts_fs_type);
a4834c10 684 unregister_sysctl_table(table);
93d5581e 685 }
1da177e4
LT
686 }
687 return err;
688}
1da177e4 689module_init(init_devpts_fs)