2d0eb2cf99e619706cb61313ba8f0745a50e5b0c
[firefly-linux-kernel-4.4.55.git] / fs / devpts / inode.c
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
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>
20 #include <linux/mutex.h>
21 #include <linux/idr.h>
22 #include <linux/devpts_fs.h>
23 #include <linux/parser.h>
24 #include <linux/fsnotify.h>
25 #include <linux/seq_file.h>
26
27 #define DEVPTS_SUPER_MAGIC 0x1cd1
28
29 #define DEVPTS_DEFAULT_MODE 0600
30 /*
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
37 #define PTMX_MINOR      2
38
39 extern int pty_limit;                   /* Config limit on Unix98 ptys */
40 static DEFINE_MUTEX(allocated_ptys_lock);
41
42 static struct vfsmount *devpts_mnt;
43
44 struct pts_mount_opts {
45         int setuid;
46         int setgid;
47         uid_t   uid;
48         gid_t   gid;
49         umode_t mode;
50         umode_t ptmxmode;
51 };
52
53 enum {
54         Opt_uid, Opt_gid, Opt_mode, Opt_ptmxmode,
55         Opt_err
56 };
57
58 static const match_table_t tokens = {
59         {Opt_uid, "uid=%u"},
60         {Opt_gid, "gid=%u"},
61         {Opt_mode, "mode=%o"},
62 #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
63         {Opt_ptmxmode, "ptmxmode=%o"},
64 #endif
65         {Opt_err, NULL}
66 };
67
68 struct pts_fs_info {
69         struct ida allocated_ptys;
70         struct pts_mount_opts mount_opts;
71         struct dentry *ptmx_dentry;
72 };
73
74 static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
75 {
76         return sb->s_fs_info;
77 }
78
79 static 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
87 static int parse_mount_options(char *data, struct pts_mount_opts *opts)
88 {
89         char *p;
90
91         opts->setuid  = 0;
92         opts->setgid  = 0;
93         opts->uid     = 0;
94         opts->gid     = 0;
95         opts->mode    = DEVPTS_DEFAULT_MODE;
96         opts->ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
97
98         while ((p = strsep(&data, ",")) != NULL) {
99                 substring_t args[MAX_OPT_ARGS];
100                 int token;
101                 int option;
102
103                 if (!*p)
104                         continue;
105
106                 token = match_token(p, tokens, args);
107                 switch (token) {
108                 case Opt_uid:
109                         if (match_int(&args[0], &option))
110                                 return -EINVAL;
111                         opts->uid = option;
112                         opts->setuid = 1;
113                         break;
114                 case Opt_gid:
115                         if (match_int(&args[0], &option))
116                                 return -EINVAL;
117                         opts->gid = option;
118                         opts->setgid = 1;
119                         break;
120                 case Opt_mode:
121                         if (match_octal(&args[0], &option))
122                                 return -EINVAL;
123                         opts->mode = option & S_IALLUGO;
124                         break;
125 #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
132                 default:
133                         printk(KERN_ERR "devpts: called with bogus options\n");
134                         return -EINVAL;
135                 }
136         }
137
138         return 0;
139 }
140
141 #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
142 static int mknod_ptmx(struct super_block *sb)
143 {
144         int mode;
145         int rc = -ENOMEM;
146         struct dentry *dentry;
147         struct inode *inode;
148         struct dentry *root = sb->s_root;
149         struct pts_fs_info *fsi = DEVPTS_SB(sb);
150         struct pts_mount_opts *opts = &fsi->mount_opts;
151
152         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);
191 out:
192         mutex_unlock(&root->d_inode->i_mutex);
193         return rc;
194 }
195
196 static 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
205 static inline void update_ptmx_mode(struct pts_fs_info *fsi)
206 {
207        return;
208 }
209 #endif
210
211 static 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;
228 }
229
230 static int devpts_show_options(struct seq_file *seq, struct vfsmount *vfs)
231 {
232         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);
240 #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES
241         seq_printf(seq, ",ptmxmode=%03o", opts->ptmxmode);
242 #endif
243
244         return 0;
245 }
246
247 static const struct super_operations devpts_sops = {
248         .statfs         = simple_statfs,
249         .remount_fs     = devpts_remount,
250         .show_options   = devpts_show_options,
251 };
252
253 static 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);
262         fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
263         fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE;
264
265         return fsi;
266 }
267
268 static int
269 devpts_fill_super(struct super_block *s, void *data, int silent)
270 {
271         struct inode *inode;
272
273         s->s_blocksize = 1024;
274         s->s_blocksize_bits = 10;
275         s->s_magic = DEVPTS_SUPER_MAGIC;
276         s->s_op = &devpts_sops;
277         s->s_time_gran = 1;
278
279         s->s_fs_info = new_pts_fs_info();
280         if (!s->s_fs_info)
281                 goto fail;
282
283         inode = new_inode(s);
284         if (!inode)
285                 goto free_fsi;
286         inode->i_ino = 1;
287         inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
288         inode->i_blocks = 0;
289         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
295         s->s_root = d_alloc_root(inode);
296         if (s->s_root)
297                 return 0;
298
299         printk("devpts: get root dentry failed\n");
300         iput(inode);
301
302 free_fsi:
303         kfree(s->s_fs_info);
304 fail:
305         return -ENOMEM;
306 }
307
308 static 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  */
337 static 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
361 static int devpts_get_sb(struct file_system_type *fs_type,
362         int flags, const char *dev_name, void *data, struct vfsmount *mnt)
363 {
364         return get_init_pts_sb(fs_type, flags, data, mnt);
365 }
366
367 static void devpts_kill_sb(struct super_block *sb)
368 {
369         struct pts_fs_info *fsi = DEVPTS_SB(sb);
370
371         kfree(fsi);
372         kill_litter_super(sb);
373 }
374
375 static struct file_system_type devpts_fs_type = {
376         .owner          = THIS_MODULE,
377         .name           = "devpts",
378         .get_sb         = devpts_get_sb,
379         .kill_sb        = devpts_kill_sb,
380 };
381
382 /*
383  * The normal naming convention is simply /dev/pts/<number>; this conforms
384  * to the System V naming convention
385  */
386
387 int devpts_new_index(struct inode *ptmx_inode)
388 {
389         struct super_block *sb = pts_sb_from_inode(ptmx_inode);
390         struct pts_fs_info *fsi = DEVPTS_SB(sb);
391         int index;
392         int ida_ret;
393
394 retry:
395         if (!ida_pre_get(&fsi->allocated_ptys, GFP_KERNEL)) {
396                 return -ENOMEM;
397         }
398
399         mutex_lock(&allocated_ptys_lock);
400         ida_ret = ida_get_new(&fsi->allocated_ptys, &index);
401         if (ida_ret < 0) {
402                 mutex_unlock(&allocated_ptys_lock);
403                 if (ida_ret == -EAGAIN)
404                         goto retry;
405                 return -EIO;
406         }
407
408         if (index >= pty_limit) {
409                 ida_remove(&fsi->allocated_ptys, index);
410                 mutex_unlock(&allocated_ptys_lock);
411                 return -EIO;
412         }
413         mutex_unlock(&allocated_ptys_lock);
414         return index;
415 }
416
417 void devpts_kill_index(struct inode *ptmx_inode, int idx)
418 {
419         struct super_block *sb = pts_sb_from_inode(ptmx_inode);
420         struct pts_fs_info *fsi = DEVPTS_SB(sb);
421
422         mutex_lock(&allocated_ptys_lock);
423         ida_remove(&fsi->allocated_ptys, idx);
424         mutex_unlock(&allocated_ptys_lock);
425 }
426
427 int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty)
428 {
429         int number = tty->index; /* tty layer puts index from devpts_new_index() in here */
430         struct tty_driver *driver = tty->driver;
431         dev_t device = MKDEV(driver->major, driver->minor_start+number);
432         struct dentry *dentry;
433         struct super_block *sb = pts_sb_from_inode(ptmx_inode);
434         struct inode *inode = new_inode(sb);
435         struct dentry *root = sb->s_root;
436         struct pts_fs_info *fsi = DEVPTS_SB(sb);
437         struct pts_mount_opts *opts = &fsi->mount_opts;
438         char s[12];
439
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;
448         inode->i_uid = config.setuid ? config.uid : current_fsuid();
449         inode->i_gid = config.setgid ? config.gid : current_fsgid();
450         inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
451         init_special_inode(inode, S_IFCHR|opts->mode, device);
452         inode->i_private = tty;
453         tty->driver_data = inode;
454
455         sprintf(s, "%d", number);
456
457         mutex_lock(&root->d_inode->i_mutex);
458
459         dentry = d_alloc_name(root, s);
460         if (!IS_ERR(dentry)) {
461                 d_add(dentry, inode);
462                 fsnotify_create(root->d_inode, dentry);
463         }
464
465         mutex_unlock(&root->d_inode->i_mutex);
466
467         return 0;
468 }
469
470 struct tty_struct *devpts_get_tty(struct inode *pts_inode, int number)
471 {
472         BUG_ON(pts_inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
473
474         if (pts_inode->i_sb->s_magic == DEVPTS_SUPER_MAGIC)
475                 return (struct tty_struct *)pts_inode->i_private;
476         return NULL;
477 }
478
479 void devpts_pty_kill(struct tty_struct *tty)
480 {
481         struct inode *inode = tty->driver_data;
482         struct super_block *sb = pts_sb_from_inode(inode);
483         struct dentry *root = sb->s_root;
484         struct dentry *dentry;
485
486         BUG_ON(inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
487
488         mutex_lock(&root->d_inode->i_mutex);
489
490         dentry = d_find_alias(inode);
491         if (dentry && !IS_ERR(dentry)) {
492                 inode->i_nlink--;
493                 d_delete(dentry);
494                 dput(dentry);
495         }
496
497         mutex_unlock(&root->d_inode->i_mutex);
498 }
499
500 static 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
511 static void __exit exit_devpts_fs(void)
512 {
513         unregister_filesystem(&devpts_fs_type);
514         mntput(devpts_mnt);
515 }
516
517 module_init(init_devpts_fs)
518 module_exit(exit_devpts_fs)
519 MODULE_LICENSE("GPL");