blob: b793e6e3c21e0937a2628fb8a72281ad9c7e4a5a [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 Bhattiprolu527b3e42008-10-13 10:43:08 +010030#define PTMX_MINOR 2
Miklos Szeredib87a2672008-02-08 04:21:41 -080031
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -070032extern int pty_limit; /* Config limit on Unix98 ptys */
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -070033static DEFINE_MUTEX(allocated_ptys_lock);
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static struct vfsmount *devpts_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000037struct pts_mount_opts {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 int setuid;
39 int setgid;
40 uid_t uid;
41 gid_t gid;
42 umode_t mode;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000043};
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Domen Puncer7a673c62006-03-23 03:00:59 -080045enum {
46 Opt_uid, Opt_gid, Opt_mode,
47 Opt_err
48};
49
Steven Whitehousea447c092008-10-13 10:46:57 +010050static const match_table_t tokens = {
Domen Puncer7a673c62006-03-23 03:00:59 -080051 {Opt_uid, "uid=%u"},
52 {Opt_gid, "gid=%u"},
53 {Opt_mode, "mode=%o"},
54 {Opt_err, NULL}
55};
56
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +000057struct pts_fs_info {
58 struct ida allocated_ptys;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000059 struct pts_mount_opts mount_opts;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +000060};
61
62static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
63{
64 return sb->s_fs_info;
65}
66
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +000067static inline struct super_block *pts_sb_from_inode(struct inode *inode)
68{
69 if (inode->i_sb->s_magic == DEVPTS_SUPER_MAGIC)
70 return inode->i_sb;
71
72 return devpts_mnt->mnt_sb;
73}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static int devpts_remount(struct super_block *sb, int *flags, char *data)
76{
Domen Puncer7a673c62006-03-23 03:00:59 -080077 char *p;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000078 struct pts_fs_info *fsi = DEVPTS_SB(sb);
79 struct pts_mount_opts *opts = &fsi->mount_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +000081 opts->setuid = 0;
82 opts->setgid = 0;
83 opts->uid = 0;
84 opts->gid = 0;
85 opts->mode = DEVPTS_DEFAULT_MODE;
Domen Puncer7a673c62006-03-23 03:00:59 -080086
87 while ((p = strsep(&data, ",")) != NULL) {
88 substring_t args[MAX_OPT_ARGS];
89 int token;
90 int option;
91
92 if (!*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 continue;
Domen Puncer7a673c62006-03-23 03:00:59 -080094
95 token = match_token(p, tokens, args);
96 switch (token) {
97 case Opt_uid:
98 if (match_int(&args[0], &option))
99 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000100 opts->uid = option;
101 opts->setuid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800102 break;
103 case Opt_gid:
104 if (match_int(&args[0], &option))
105 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000106 opts->gid = option;
107 opts->setgid = 1;
Domen Puncer7a673c62006-03-23 03:00:59 -0800108 break;
109 case Opt_mode:
110 if (match_octal(&args[0], &option))
111 return -EINVAL;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000112 opts->mode = option & S_IALLUGO;
Domen Puncer7a673c62006-03-23 03:00:59 -0800113 break;
114 default:
115 printk(KERN_ERR "devpts: called with bogus options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return -EINVAL;
117 }
118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 return 0;
121}
122
Miklos Szeredib87a2672008-02-08 04:21:41 -0800123static int devpts_show_options(struct seq_file *seq, struct vfsmount *vfs)
124{
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000125 struct pts_fs_info *fsi = DEVPTS_SB(vfs->mnt_sb);
126 struct pts_mount_opts *opts = &fsi->mount_opts;
127
128 if (opts->setuid)
129 seq_printf(seq, ",uid=%u", opts->uid);
130 if (opts->setgid)
131 seq_printf(seq, ",gid=%u", opts->gid);
132 seq_printf(seq, ",mode=%03o", opts->mode);
Miklos Szeredib87a2672008-02-08 04:21:41 -0800133
134 return 0;
135}
136
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800137static const struct super_operations devpts_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 .statfs = simple_statfs,
139 .remount_fs = devpts_remount,
Miklos Szeredib87a2672008-02-08 04:21:41 -0800140 .show_options = devpts_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000143static void *new_pts_fs_info(void)
144{
145 struct pts_fs_info *fsi;
146
147 fsi = kzalloc(sizeof(struct pts_fs_info), GFP_KERNEL);
148 if (!fsi)
149 return NULL;
150
151 ida_init(&fsi->allocated_ptys);
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000152 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE;
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000153
154 return fsi;
155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static int
158devpts_fill_super(struct super_block *s, void *data, int silent)
159{
160 struct inode * inode;
161
162 s->s_blocksize = 1024;
163 s->s_blocksize_bits = 10;
164 s->s_magic = DEVPTS_SUPER_MAGIC;
165 s->s_op = &devpts_sops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 s->s_time_gran = 1;
167
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000168 s->s_fs_info = new_pts_fs_info();
169 if (!s->s_fs_info)
170 goto fail;
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 inode = new_inode(s);
173 if (!inode)
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000174 goto free_fsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 inode->i_ino = 1;
176 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
177 inode->i_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 inode->i_uid = inode->i_gid = 0;
179 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
180 inode->i_op = &simple_dir_inode_operations;
181 inode->i_fop = &simple_dir_operations;
182 inode->i_nlink = 2;
183
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000184 s->s_root = d_alloc_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (s->s_root)
186 return 0;
187
188 printk("devpts: get root dentry failed\n");
189 iput(inode);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000190
191free_fsi:
192 kfree(s->s_fs_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193fail:
194 return -ENOMEM;
195}
196
David Howells454e2392006-06-23 02:02:57 -0700197static int devpts_get_sb(struct file_system_type *fs_type,
198 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
David Howells454e2392006-06-23 02:02:57 -0700200 return get_sb_single(fs_type, flags, data, devpts_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000203static void devpts_kill_sb(struct super_block *sb)
204{
205 struct pts_fs_info *fsi = DEVPTS_SB(sb);
206
207 kfree(fsi);
208 kill_anon_super(sb);
209}
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211static struct file_system_type devpts_fs_type = {
212 .owner = THIS_MODULE,
213 .name = "devpts",
214 .get_sb = devpts_get_sb,
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000215 .kill_sb = devpts_kill_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216};
217
218/*
219 * The normal naming convention is simply /dev/pts/<number>; this conforms
220 * to the System V naming convention
221 */
222
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100223int devpts_new_index(struct inode *ptmx_inode)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700224{
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000225 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
226 struct pts_fs_info *fsi = DEVPTS_SB(sb);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700227 int index;
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400228 int ida_ret;
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700229
230retry:
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000231 if (!ida_pre_get(&fsi->allocated_ptys, GFP_KERNEL)) {
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700232 return -ENOMEM;
233 }
234
235 mutex_lock(&allocated_ptys_lock);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000236 ida_ret = ida_get_new(&fsi->allocated_ptys, &index);
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400237 if (ida_ret < 0) {
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700238 mutex_unlock(&allocated_ptys_lock);
Alexey Dobriyan7ee7c122008-07-26 11:42:16 +0400239 if (ida_ret == -EAGAIN)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700240 goto retry;
241 return -EIO;
242 }
243
244 if (index >= pty_limit) {
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000245 ida_remove(&fsi->allocated_ptys, index);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700246 mutex_unlock(&allocated_ptys_lock);
247 return -EIO;
248 }
249 mutex_unlock(&allocated_ptys_lock);
250 return index;
251}
252
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100253void devpts_kill_index(struct inode *ptmx_inode, int idx)
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700254{
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000255 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
256 struct pts_fs_info *fsi = DEVPTS_SB(sb);
257
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700258 mutex_lock(&allocated_ptys_lock);
Sukadev Bhattiprolue76b7c02009-01-02 13:41:21 +0000259 ida_remove(&fsi->allocated_ptys, idx);
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700260 mutex_unlock(&allocated_ptys_lock);
261}
262
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100263int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -0700265 int number = tty->index; /* tty layer puts index from devpts_new_index() in here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 struct tty_driver *driver = tty->driver;
267 dev_t device = MKDEV(driver->major, driver->minor_start+number);
268 struct dentry *dentry;
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000269 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
270 struct inode *inode = new_inode(sb);
271 struct dentry *root = sb->s_root;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000272 struct pts_fs_info *fsi = DEVPTS_SB(sb);
273 struct pts_mount_opts *opts = &fsi->mount_opts;
Sukadev Bhattiprolu89a52e12008-10-13 10:43:18 +0100274 char s[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 /* We're supposed to be given the slave end of a pty */
277 BUG_ON(driver->type != TTY_DRIVER_TYPE_PTY);
278 BUG_ON(driver->subtype != PTY_TYPE_SLAVE);
279
280 if (!inode)
281 return -ENOMEM;
282
283 inode->i_ino = number+2;
David Howellsec4c2aa2008-11-14 10:38:49 +1100284 inode->i_uid = config.setuid ? config.uid : current_fsuid();
285 inode->i_gid = config.setgid ? config.gid : current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Sukadev Bhattiprolu31af0ab2009-01-02 13:41:33 +0000287 init_special_inode(inode, S_IFCHR|opts->mode, device);
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700288 inode->i_private = tty;
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100289 tty->driver_data = inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Sukadev Bhattiprolu89a52e12008-10-13 10:43:18 +0100291 sprintf(s, "%d", number);
292
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000293 mutex_lock(&root->d_inode->i_mutex);
Sukadev Bhattiprolu89a52e12008-10-13 10:43:18 +0100294
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000295 dentry = d_alloc_name(root, s);
Sukadev Bhattiprolu89a52e12008-10-13 10:43:18 +0100296 if (!IS_ERR(dentry)) {
297 d_add(dentry, inode);
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000298 fsnotify_create(root->d_inode, dentry);
Florin Malita3972b7f2007-05-08 00:24:18 -0700299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000301 mutex_unlock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 return 0;
304}
305
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100306struct tty_struct *devpts_get_tty(struct inode *pts_inode, int number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Sukadev Bhattiprolu527b3e42008-10-13 10:43:08 +0100308 BUG_ON(pts_inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Sukadev Bhattiprolu527b3e42008-10-13 10:43:08 +0100310 if (pts_inode->i_sb->s_magic == DEVPTS_SUPER_MAGIC)
311 return (struct tty_struct *)pts_inode->i_private;
312 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100315void devpts_pty_kill(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100317 struct inode *inode = tty->driver_data;
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000318 struct super_block *sb = pts_sb_from_inode(inode);
319 struct dentry *root = sb->s_root;
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100320 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100322 BUG_ON(inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
323
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000324 mutex_lock(&root->d_inode->i_mutex);
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100325
326 dentry = d_find_alias(inode);
327 if (dentry && !IS_ERR(dentry)) {
328 inode->i_nlink--;
329 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 dput(dentry);
331 }
Sukadev Bhattiprolua6f37da2008-10-13 10:43:27 +0100332
Sukadev Bhattiprolu59e55e62009-01-02 13:41:11 +0000333 mutex_unlock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336static int __init init_devpts_fs(void)
337{
338 int err = register_filesystem(&devpts_fs_type);
339 if (!err) {
340 devpts_mnt = kern_mount(&devpts_fs_type);
341 if (IS_ERR(devpts_mnt))
342 err = PTR_ERR(devpts_mnt);
343 }
344 return err;
345}
346
347static void __exit exit_devpts_fs(void)
348{
349 unregister_filesystem(&devpts_fs_type);
350 mntput(devpts_mnt);
351}
352
353module_init(init_devpts_fs)
354module_exit(exit_devpts_fs)
355MODULE_LICENSE("GPL");