Define mknod_ptmx()
[deliverable/linux.git] / fs / devpts / inode.c
... / ...
CommitLineData
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
39extern int pty_limit; /* Config limit on Unix98 ptys */
40static DEFINE_MUTEX(allocated_ptys_lock);
41
42static struct vfsmount *devpts_mnt;
43
44struct 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
53enum {
54 Opt_uid, Opt_gid, Opt_mode, Opt_ptmxmode,
55 Opt_err
56};
57
58static 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
68struct pts_fs_info {
69 struct ida allocated_ptys;
70 struct pts_mount_opts mount_opts;
71 struct dentry *ptmx_dentry;
72};
73
74static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb)
75{
76 return sb->s_fs_info;
77}
78
79static 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
87static 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
142static 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);
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;
228}
229
230static 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
247static const struct super_operations devpts_sops = {
248 .statfs = simple_statfs,
249 .remount_fs = devpts_remount,
250 .show_options = devpts_show_options,
251};
252
253static 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
268static int
269devpts_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
302free_fsi:
303 kfree(s->s_fs_info);
304fail:
305 return -ENOMEM;
306}
307
308static int devpts_get_sb(struct file_system_type *fs_type,
309 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
310{
311 return get_sb_single(fs_type, flags, data, devpts_fill_super, mnt);
312}
313
314static void devpts_kill_sb(struct super_block *sb)
315{
316 struct pts_fs_info *fsi = DEVPTS_SB(sb);
317
318 kfree(fsi);
319 kill_litter_super(sb);
320}
321
322static struct file_system_type devpts_fs_type = {
323 .owner = THIS_MODULE,
324 .name = "devpts",
325 .get_sb = devpts_get_sb,
326 .kill_sb = devpts_kill_sb,
327};
328
329/*
330 * The normal naming convention is simply /dev/pts/<number>; this conforms
331 * to the System V naming convention
332 */
333
334int devpts_new_index(struct inode *ptmx_inode)
335{
336 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
337 struct pts_fs_info *fsi = DEVPTS_SB(sb);
338 int index;
339 int ida_ret;
340
341retry:
342 if (!ida_pre_get(&fsi->allocated_ptys, GFP_KERNEL)) {
343 return -ENOMEM;
344 }
345
346 mutex_lock(&allocated_ptys_lock);
347 ida_ret = ida_get_new(&fsi->allocated_ptys, &index);
348 if (ida_ret < 0) {
349 mutex_unlock(&allocated_ptys_lock);
350 if (ida_ret == -EAGAIN)
351 goto retry;
352 return -EIO;
353 }
354
355 if (index >= pty_limit) {
356 ida_remove(&fsi->allocated_ptys, index);
357 mutex_unlock(&allocated_ptys_lock);
358 return -EIO;
359 }
360 mutex_unlock(&allocated_ptys_lock);
361 return index;
362}
363
364void devpts_kill_index(struct inode *ptmx_inode, int idx)
365{
366 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
367 struct pts_fs_info *fsi = DEVPTS_SB(sb);
368
369 mutex_lock(&allocated_ptys_lock);
370 ida_remove(&fsi->allocated_ptys, idx);
371 mutex_unlock(&allocated_ptys_lock);
372}
373
374int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty)
375{
376 int number = tty->index; /* tty layer puts index from devpts_new_index() in here */
377 struct tty_driver *driver = tty->driver;
378 dev_t device = MKDEV(driver->major, driver->minor_start+number);
379 struct dentry *dentry;
380 struct super_block *sb = pts_sb_from_inode(ptmx_inode);
381 struct inode *inode = new_inode(sb);
382 struct dentry *root = sb->s_root;
383 struct pts_fs_info *fsi = DEVPTS_SB(sb);
384 struct pts_mount_opts *opts = &fsi->mount_opts;
385 char s[12];
386
387 /* We're supposed to be given the slave end of a pty */
388 BUG_ON(driver->type != TTY_DRIVER_TYPE_PTY);
389 BUG_ON(driver->subtype != PTY_TYPE_SLAVE);
390
391 if (!inode)
392 return -ENOMEM;
393
394 inode->i_ino = number+2;
395 inode->i_uid = config.setuid ? config.uid : current_fsuid();
396 inode->i_gid = config.setgid ? config.gid : current_fsgid();
397 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
398 init_special_inode(inode, S_IFCHR|opts->mode, device);
399 inode->i_private = tty;
400 tty->driver_data = inode;
401
402 sprintf(s, "%d", number);
403
404 mutex_lock(&root->d_inode->i_mutex);
405
406 dentry = d_alloc_name(root, s);
407 if (!IS_ERR(dentry)) {
408 d_add(dentry, inode);
409 fsnotify_create(root->d_inode, dentry);
410 }
411
412 mutex_unlock(&root->d_inode->i_mutex);
413
414 return 0;
415}
416
417struct tty_struct *devpts_get_tty(struct inode *pts_inode, int number)
418{
419 BUG_ON(pts_inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
420
421 if (pts_inode->i_sb->s_magic == DEVPTS_SUPER_MAGIC)
422 return (struct tty_struct *)pts_inode->i_private;
423 return NULL;
424}
425
426void devpts_pty_kill(struct tty_struct *tty)
427{
428 struct inode *inode = tty->driver_data;
429 struct super_block *sb = pts_sb_from_inode(inode);
430 struct dentry *root = sb->s_root;
431 struct dentry *dentry;
432
433 BUG_ON(inode->i_rdev == MKDEV(TTYAUX_MAJOR, PTMX_MINOR));
434
435 mutex_lock(&root->d_inode->i_mutex);
436
437 dentry = d_find_alias(inode);
438 if (dentry && !IS_ERR(dentry)) {
439 inode->i_nlink--;
440 d_delete(dentry);
441 dput(dentry);
442 }
443
444 mutex_unlock(&root->d_inode->i_mutex);
445}
446
447static int __init init_devpts_fs(void)
448{
449 int err = register_filesystem(&devpts_fs_type);
450 if (!err) {
451 devpts_mnt = kern_mount(&devpts_fs_type);
452 if (IS_ERR(devpts_mnt))
453 err = PTR_ERR(devpts_mnt);
454 }
455 return err;
456}
457
458static void __exit exit_devpts_fs(void)
459{
460 unregister_filesystem(&devpts_fs_type);
461 mntput(devpts_mnt);
462}
463
464module_init(init_devpts_fs)
465module_exit(exit_devpts_fs)
466MODULE_LICENSE("GPL");
This page took 0.028197 seconds and 5 git commands to generate.