blob: 2d0eb2cf99e619706cb61313ba8f0745a50e5b0c [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
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/fs.h>
16#include <linux/sched.h>
17#include <linux/namei.h>
18#include <linux/mount.h>
19#include <linux/tty.h>
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -070020#include <linux/mutex.h>
21#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/devpts_fs.h>
Domen Puncer7a673c62006-03-23 03:00:59 -080023#include <linux/parser.h>
Florin Malita3972b7f2007-05-08 00:24:18 -070024#include <linux/fsnotify.h>
Miklos Szeredib87a2672008-02-08 04:21:41 -080025#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#define DEVPTS_SUPER_MAGIC 0x1cd1
28
Miklos Szeredib87a2672008-02-08 04:21:41 -080029#define DEVPTS_DEFAULT_MODE 0600
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +000030/*
31 * ptmx is a new node in /dev/pts and will be unused in legacy (single-
32 * instance) mode. To prevent surprises in user space, set permissions of
33 * ptmx to 0. Use 'chmod' or remount with '-o ptmxmode' to set meaningful
34 * permissions.
35 */
36#define DEVPTS_DEFAULT_PTMX_MODE 0000
Sukadev Bhattiprolu527b3e42008-10-13 10:43:08 +010037#define PTMX_MINOR 2
Miklos Szeredib87a2672008-02-08 04:21:41 -080038
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -070039extern int pty_limit; /* Config limit on Unix98 ptys */
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -070040static DEFINE_MUTEX(allocated_ptys_lock);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static struct vfsmount *devpts_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000044struct pts_mount_opts {
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 int setuid;
46 int setgid;
47 uid_t uid;
48 gid_t gid;
49 umode_t mode;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +000050 umode_t ptmxmode;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000051};
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Domen Puncer7a673c62006-03-23 03:00:59 -080053enum {
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +000054 Opt_uid, Opt_gid, Opt_mode, Opt_ptmxmode,
Domen Puncer7a673c62006-03-23 03:00:59 -080055 Opt_err
56};
57
Steven Whitehousea447c092008-10-13 10:46:57 +010058static const match_table_t tokens = {
Domen Puncer7a673c62006-03-23 03:00:59 -080059 {Opt_uid, "uid=%u"},
60 {Opt_gid, "gid=%u"},
61 {Opt_mode, "mode=%o"},
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +000062#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
63 {Opt_ptmxmode, "ptmxmode=%o"},
64#endif
Domen Puncer7a673c62006-03-23 03:00:59 -080065 {Opt_err, NULL}
66};
67
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +000068struct pts_fs_info {
69 struct ida allocated_ptys;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000070 struct pts_mount_opts mount_opts;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +000071 struct dentry *ptmx_dentry;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +000072};
73
74static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
75{
76 return sb->s_fs_info;
77}
78
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +000079static inline struct super_block *pts_sb_from_inode(struct inode *inode)
80{
81 if (inode->i_sb->s_magic == DEVPTS_SUPER_MAGIC)
82 return inode->i_sb;
83
84 return devpts_mnt->mnt_sb;
85}
86
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +000087static int parse_mount_options(char *data, struct pts_mount_opts *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Domen Puncer7a673c62006-03-23 03:00:59 -080089 char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000091 opts->setuid = 0;
92 opts->setgid = 0;
93 opts->uid = 0;
94 opts->gid = 0;
95 opts->mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +000096 opts->ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Domen Puncer7a673c62006-03-23 03:00:59 -080097
98 while ((p = strsep(&data, ",")) != NULL) {
99 substring_t args[MAX_OPT_ARGS];
100 int token;
101 int option;
102
103 if (!*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 continue;
Domen Puncer7a673c62006-03-23 03:00:59 -0800105
106 token = match_token(p, tokens, args);
107 switch (token) {
108 case Opt_uid:
109 if (match_int(&args[0], &option))
110 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000111 opts->uid = option;
112 opts->setuid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800113 break;
114 case Opt_gid:
115 if (match_int(&args[0], &option))
116 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000117 opts->gid = option;
118 opts->setgid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800119 break;
120 case Opt_mode:
121 if (match_octal(&args[0], &option))
122 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000123 opts->mode = option & S_IALLUGO;
Domen Puncer7a673c62006-03-23 03:00:59 -0800124 break;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000125#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
126 case Opt_ptmxmode:
127 if (match_octal(&args[0], &option))
128 return -EINVAL;
129 opts->ptmxmode = option & S_IALLUGO;
130 break;
131#endif
Domen Puncer7a673c62006-03-23 03:00:59 -0800132 default:
133 printk(KERN_ERR "devpts: called with bogus options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return -EINVAL;
135 }
136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 return 0;
139}
140
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000141#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
142static int mknod_ptmx(struct super_block *sb)
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000143{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000144 int mode;
145 int rc = -ENOMEM;
146 struct dentry *dentry;
147 struct inode *inode;
148 struct dentry *root = sb->s_root;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000149 struct pts_fs_info *fsi = DEVPTS_SB(sb);
150 struct pts_mount_opts *opts = &fsi->mount_opts;
151
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000152 mutex_lock(&root->d_inode->i_mutex);
153
154 /* If we have already created ptmx node, return */
155 if (fsi->ptmx_dentry) {
156 rc = 0;
157 goto out;
158 }
159
160 dentry = d_alloc_name(root, "ptmx");
161 if (!dentry) {
162 printk(KERN_NOTICE "Unable to alloc dentry for ptmx node\n");
163 goto out;
164 }
165
166 /*
167 * Create a new 'ptmx' node in this mount of devpts.
168 */
169 inode = new_inode(sb);
170 if (!inode) {
171 printk(KERN_ERR "Unable to alloc inode for ptmx node\n");
172 dput(dentry);
173 goto out;
174 }
175
176 inode->i_ino = 2;
177 inode->i_uid = inode->i_gid = 0;
178 inode->i_blocks = 0;
179 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
180
181 mode = S_IFCHR|opts->ptmxmode;
182 init_special_inode(inode, mode, MKDEV(TTYAUX_MAJOR, 2));
183
184 d_add(dentry, inode);
185
186 fsi->ptmx_dentry = dentry;
187 rc = 0;
188
189 printk(KERN_DEBUG "Created ptmx node in devpts ino %lu\n",
190 inode->i_ino);
191out:
192 mutex_unlock(&root->d_inode->i_mutex);
193 return rc;
194}
195
196static void update_ptmx_mode(struct pts_fs_info *fsi)
197{
198 struct inode *inode;
199 if (fsi->ptmx_dentry) {
200 inode = fsi->ptmx_dentry->d_inode;
201 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode;
202 }
203}
204#else
205static inline void update_ptmx_mode(struct pts_fs_info *fsi)
206{
207 return;
208}
209#endif
210
211static int devpts_remount(struct super_block *sb, int *flags, char *data)
212{
213 int err;
214 struct pts_fs_info *fsi = DEVPTS_SB(sb);
215 struct pts_mount_opts *opts = &fsi->mount_opts;
216
217 err = parse_mount_options(data, opts);
218
219 /*
220 * parse_mount_options() restores options to default values
221 * before parsing and may have changed ptmxmode. So, update the
222 * mode in the inode too. Bogus options don't fail the remount,
223 * so do this even on error return.
224 */
225 update_ptmx_mode(fsi);
226
227 return err;
Sukadev Bhattiprolu53af8ee2009-01-02 13:41:47 +0000228}
229
Miklos Szeredib87a2672008-02-08 04:21:41 -0800230static int devpts_show_options(struct seq_file *seq, struct vfsmount *vfs)
231{
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000232 struct pts_fs_info *fsi = DEVPTS_SB(vfs->mnt_sb);
233 struct pts_mount_opts *opts = &fsi->mount_opts;
234
235 if (opts->setuid)
236 seq_printf(seq, ",uid=%u", opts->uid);
237 if (opts->setgid)
238 seq_printf(seq, ",gid=%u", opts->gid);
239 seq_printf(seq, ",mode=%03o", opts->mode);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000240#ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
241 seq_printf(seq, ",ptmxmode=%03o", opts->ptmxmode);
242#endif
Miklos Szeredib87a2672008-02-08 04:21:41 -0800243
244 return 0;
245}
246
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800247static const struct super_operations devpts_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .statfs = simple_statfs,
249 .remount_fs = devpts_remount,
Miklos Szeredib87a2672008-02-08 04:21:41 -0800250 .show_options = devpts_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251};
252
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000253static void *new_pts_fs_info(void)
254{
255 struct pts_fs_info *fsi;
256
257 fsi = kzalloc(sizeof(struct pts_fs_info), GFP_KERNEL);
258 if (!fsi)
259 return NULL;
260
261 ida_init(&fsi->allocated_ptys);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000262 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000263 fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000264
265 return fsi;
266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268static int
269devpts_fill_super(struct super_block *s, void *data, int silent)
270{
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000271 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 s->s_blocksize = 1024;
274 s->s_blocksize_bits = 10;
275 s->s_magic = DEVPTS_SUPER_MAGIC;
276 s->s_op = &devpts_sops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 s->s_time_gran = 1;
278
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000279 s->s_fs_info = new_pts_fs_info();
280 if (!s->s_fs_info)
281 goto fail;
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 inode = new_inode(s);
284 if (!inode)
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000285 goto free_fsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 inode->i_ino = 1;
287 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
288 inode->i_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 inode->i_uid = inode->i_gid = 0;
290 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
291 inode->i_op = &simple_dir_inode_operations;
292 inode->i_fop = &simple_dir_operations;
293 inode->i_nlink = 2;
294
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000295 s->s_root = d_alloc_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (s->s_root)
297 return 0;
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 printk("devpts: get root dentry failed\n");
300 iput(inode);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000301
302free_fsi:
303 kfree(s->s_fs_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304fail:
305 return -ENOMEM;
306}
307
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000308static int compare_init_pts_sb(struct super_block *s, void *p)
309{
310 if (devpts_mnt)
311 return devpts_mnt->mnt_sb == s;
312
313 return 0;
314}
315
316/*
317 * get_init_pts_sb()
318 *
319 * This interface is needed to support multiple namespace semantics in
320 * devpts while preserving backward compatibility of the current 'single-
321 * namespace' semantics. i.e all mounts of devpts without the 'newinstance'
322 * mount option should bind to the initial kernel mount, like
323 * get_sb_single().
324 *
325 * Mounts with 'newinstance' option create a new private namespace.
326 *
327 * But for single-mount semantics, devpts cannot use get_sb_single(),
328 * because get_sb_single()/sget() find and use the super-block from
329 * the most recent mount of devpts. But that recent mount may be a
330 * 'newinstance' mount and get_sb_single() would pick the newinstance
331 * super-block instead of the initial super-block.
332 *
333 * This interface is identical to get_sb_single() except that it
334 * consistently selects the 'single-namespace' superblock even in the
335 * presence of the private namespace (i.e 'newinstance') super-blocks.
336 */
337static int get_init_pts_sb(struct file_system_type *fs_type, int flags,
338 void *data, struct vfsmount *mnt)
339{
340 struct super_block *s;
341 int error;
342
343 s = sget(fs_type, compare_init_pts_sb, set_anon_super, NULL);
344 if (IS_ERR(s))
345 return PTR_ERR(s);
346
347 if (!s->s_root) {
348 s->s_flags = flags;
349 error = devpts_fill_super(s, data, flags & MS_SILENT ? 1 : 0);
350 if (error) {
351 up_write(&s->s_umount);
352 deactivate_super(s);
353 return error;
354 }
355 s->s_flags |= MS_ACTIVE;
356 }
357 do_remount_sb(s, flags, data, 0);
358 return simple_set_mnt(mnt, s);
359}
360
David Howells454e2392006-06-23 02:02:57 -0700361static int devpts_get_sb(struct file_system_type *fs_type,
362 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Sukadev Bhattiprolud4076ac2009-01-02 13:42:19 +0000364 return get_init_pts_sb(fs_type, flags, data, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000367static void devpts_kill_sb(struct super_block *sb)
368{
369 struct pts_fs_info *fsi = DEVPTS_SB(sb);
370
371 kfree(fsi);
Sukadev Bhattiprolu1f8f1e22009-01-02 13:42:02 +0000372 kill_litter_super(sb);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375static struct file_system_type devpts_fs_type = {
376 .owner = THIS_MODULE,
377 .name = "devpts",
378 .get_sb = devpts_get_sb,
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000379 .kill_sb = devpts_kill_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380};
381
382/*
383 * The normal naming convention is simply /dev/pts/<number>; this conforms
384 * to the System V naming convention
385 */
386
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100387int devpts_new_index(struct inode *ptmx_inode)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700388{
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000389 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
390 struct pts_fs_info *fsi = DEVPTS_SB(sb);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700391 int index;
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400392 int ida_ret;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700393
394retry:
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000395 if (!ida_pre_get(&fsi->allocated_ptys, GFP_KERNEL)) {
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700396 return -ENOMEM;
397 }
398
399 mutex_lock(&allocated_ptys_lock);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000400 ida_ret = ida_get_new(&fsi->allocated_ptys, &index);
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400401 if (ida_ret < 0) {
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700402 mutex_unlock(&allocated_ptys_lock);
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400403 if (ida_ret == -EAGAIN)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700404 goto retry;
405 return -EIO;
406 }
407
408 if (index >= pty_limit) {
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000409 ida_remove(&fsi->allocated_ptys, index);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700410 mutex_unlock(&allocated_ptys_lock);
411 return -EIO;
412 }
413 mutex_unlock(&allocated_ptys_lock);
414 return index;
415}
416
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100417void devpts_kill_index(struct inode *ptmx_inode, int idx)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700418{
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000419 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
420 struct pts_fs_info *fsi = DEVPTS_SB(sb);
421
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700422 mutex_lock(&allocated_ptys_lock);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000423 ida_remove(&fsi->allocated_ptys, idx);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700424 mutex_unlock(&allocated_ptys_lock);
425}
426
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100427int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700429 int number = tty->index; /* tty layer puts index from devpts_new_index() in here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 struct tty_driver *driver = tty->driver;
431 dev_t device = MKDEV(driver->major, driver->minor_start+number);
432 struct dentry *dentry;
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000433 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
434 struct inode *inode = new_inode(sb);
435 struct dentry *root = sb->s_root;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000436 struct pts_fs_info *fsi = DEVPTS_SB(sb);
437 struct pts_mount_opts *opts = &fsi->mount_opts;
Sukadev Bhattiprolu89a52e12008-10-13 10:43:18 +0100438 char s[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 /* We're supposed to be given the slave end of a pty */
441 BUG_ON(driver->type != TTY_DRIVER_TYPE_PTY);
442 BUG_ON(driver->subtype != PTY_TYPE_SLAVE);
443
444 if (!inode)
445 return -ENOMEM;
446
447 inode->i_ino = number+2;
David Howellsec4c2aa2008-11-14 10:38:49 +1100448 inode->i_uid = config.setuid ? config.uid : current_fsuid();
449 inode->i_gid = config.setgid ? config.gid : current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000451 init_special_inode(inode, S_IFCHR|opts->mode, device);
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700452 inode->i_private = tty;
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100453 tty->driver_data = inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Sukadev Bhattiprolu89a52e12008-10-13 10:43:18 +0100455 sprintf(s, "%d", number);
456
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000457 mutex_lock(&root->d_inode->i_mutex);
Sukadev Bhattiprolu89a52e12008-10-13 10:43:18 +0100458
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000459 dentry = d_alloc_name(root, s);
Sukadev Bhattiprolu89a52e12008-10-13 10:43:18 +0100460 if (!IS_ERR(dentry)) {
461 d_add(dentry, inode);
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000462 fsnotify_create(root->d_inode, dentry);
Florin Malita3972b7f2007-05-08 00:24:18 -0700463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000465 mutex_unlock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 return 0;
468}
469
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100470struct tty_struct *devpts_get_tty(struct inode *pts_inode, int number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Sukadev Bhattiprolu527b3e42008-10-13 10:43:08 +0100472 BUG_ON(pts_inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Sukadev Bhattiprolu527b3e42008-10-13 10:43:08 +0100474 if (pts_inode->i_sb->s_magic == DEVPTS_SUPER_MAGIC)
475 return (struct tty_struct *)pts_inode->i_private;
476 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100479void devpts_pty_kill(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100481 struct inode *inode = tty->driver_data;
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000482 struct super_block *sb = pts_sb_from_inode(inode);
483 struct dentry *root = sb->s_root;
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100484 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100486 BUG_ON(inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
487
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000488 mutex_lock(&root->d_inode->i_mutex);
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100489
490 dentry = d_find_alias(inode);
491 if (dentry && !IS_ERR(dentry)) {
492 inode->i_nlink--;
493 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 dput(dentry);
495 }
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100496
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000497 mutex_unlock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500static int __init init_devpts_fs(void)
501{
502 int err = register_filesystem(&devpts_fs_type);
503 if (!err) {
504 devpts_mnt = kern_mount(&devpts_fs_type);
505 if (IS_ERR(devpts_mnt))
506 err = PTR_ERR(devpts_mnt);
507 }
508 return err;
509}
510
511static void __exit exit_devpts_fs(void)
512{
513 unregister_filesystem(&devpts_fs_type);
514 mntput(devpts_mnt);
515}
516
517module_init(init_devpts_fs)
518module_exit(exit_devpts_fs)
519MODULE_LICENSE("GPL");