1 /* -*- linux-c -*- --------------------------------------------------------- *
3 * linux/fs/devpts/inode.c
5 * Copyright 1998-2004 H. Peter Anvin -- All Rights Reserved
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.
11 * ------------------------------------------------------------------------- */
13 #include <linux/module.h>
14 #include <linux/init.h>
16 #include <linux/sched.h>
17 #include <linux/namei.h>
18 #include <linux/mount.h>
19 #include <linux/tty.h>
20 #include <linux/devpts_fs.h>
21 #include <linux/parser.h>
22 #include <linux/fsnotify.h>
23 #include <linux/seq_file.h>
25 #define DEVPTS_SUPER_MAGIC 0x1cd1
27 #define DEVPTS_DEFAULT_MODE 0600
29 static struct vfsmount
*devpts_mnt
;
30 static struct dentry
*devpts_root
;
38 } config
= {.mode
= DEVPTS_DEFAULT_MODE
};
41 Opt_uid
, Opt_gid
, Opt_mode
,
45 static match_table_t tokens
= {
48 {Opt_mode
, "mode=%o"},
52 static int devpts_remount(struct super_block
*sb
, int *flags
, char *data
)
60 config
.mode
= DEVPTS_DEFAULT_MODE
;
62 while ((p
= strsep(&data
, ",")) != NULL
) {
63 substring_t args
[MAX_OPT_ARGS
];
70 token
= match_token(p
, tokens
, args
);
73 if (match_int(&args
[0], &option
))
79 if (match_int(&args
[0], &option
))
85 if (match_octal(&args
[0], &option
))
87 config
.mode
= option
& S_IALLUGO
;
90 printk(KERN_ERR
"devpts: called with bogus options\n");
98 static int devpts_show_options(struct seq_file
*seq
, struct vfsmount
*vfs
)
101 seq_printf(seq
, ",uid=%u", config
.uid
);
103 seq_printf(seq
, ",gid=%u", config
.gid
);
104 seq_printf(seq
, ",mode=%03o", config
.mode
);
109 static const struct super_operations devpts_sops
= {
110 .statfs
= simple_statfs
,
111 .remount_fs
= devpts_remount
,
112 .show_options
= devpts_show_options
,
116 devpts_fill_super(struct super_block
*s
, void *data
, int silent
)
118 struct inode
* inode
;
120 s
->s_blocksize
= 1024;
121 s
->s_blocksize_bits
= 10;
122 s
->s_magic
= DEVPTS_SUPER_MAGIC
;
123 s
->s_op
= &devpts_sops
;
126 inode
= new_inode(s
);
130 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
132 inode
->i_uid
= inode
->i_gid
= 0;
133 inode
->i_mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
| S_IWUSR
;
134 inode
->i_op
= &simple_dir_inode_operations
;
135 inode
->i_fop
= &simple_dir_operations
;
138 devpts_root
= s
->s_root
= d_alloc_root(inode
);
142 printk("devpts: get root dentry failed\n");
148 static int devpts_get_sb(struct file_system_type
*fs_type
,
149 int flags
, const char *dev_name
, void *data
, struct vfsmount
*mnt
)
151 return get_sb_single(fs_type
, flags
, data
, devpts_fill_super
, mnt
);
154 static struct file_system_type devpts_fs_type
= {
155 .owner
= THIS_MODULE
,
157 .get_sb
= devpts_get_sb
,
158 .kill_sb
= kill_anon_super
,
162 * The normal naming convention is simply /dev/pts/<number>; this conforms
163 * to the System V naming convention
166 static struct dentry
*get_node(int num
)
169 struct dentry
*root
= devpts_root
;
170 mutex_lock(&root
->d_inode
->i_mutex
);
171 return lookup_one_len(s
, root
, sprintf(s
, "%d", num
));
174 int devpts_pty_new(struct tty_struct
*tty
)
176 int number
= tty
->index
;
177 struct tty_driver
*driver
= tty
->driver
;
178 dev_t device
= MKDEV(driver
->major
, driver
->minor_start
+number
);
179 struct dentry
*dentry
;
180 struct inode
*inode
= new_inode(devpts_mnt
->mnt_sb
);
182 /* We're supposed to be given the slave end of a pty */
183 BUG_ON(driver
->type
!= TTY_DRIVER_TYPE_PTY
);
184 BUG_ON(driver
->subtype
!= PTY_TYPE_SLAVE
);
189 inode
->i_ino
= number
+2;
190 inode
->i_uid
= config
.setuid
? config
.uid
: current
->fsuid
;
191 inode
->i_gid
= config
.setgid
? config
.gid
: current
->fsgid
;
192 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
193 init_special_inode(inode
, S_IFCHR
|config
.mode
, device
);
194 inode
->i_private
= tty
;
196 dentry
= get_node(number
);
197 if (!IS_ERR(dentry
) && !dentry
->d_inode
) {
198 d_instantiate(dentry
, inode
);
199 fsnotify_create(devpts_root
->d_inode
, dentry
);
202 mutex_unlock(&devpts_root
->d_inode
->i_mutex
);
207 struct tty_struct
*devpts_get_tty(int number
)
209 struct dentry
*dentry
= get_node(number
);
210 struct tty_struct
*tty
;
213 if (!IS_ERR(dentry
)) {
215 tty
= dentry
->d_inode
->i_private
;
219 mutex_unlock(&devpts_root
->d_inode
->i_mutex
);
224 void devpts_pty_kill(int number
)
226 struct dentry
*dentry
= get_node(number
);
228 if (!IS_ERR(dentry
)) {
229 struct inode
*inode
= dentry
->d_inode
;
237 mutex_unlock(&devpts_root
->d_inode
->i_mutex
);
240 static int __init
init_devpts_fs(void)
242 int err
= register_filesystem(&devpts_fs_type
);
244 devpts_mnt
= kern_mount(&devpts_fs_type
);
245 if (IS_ERR(devpts_mnt
))
246 err
= PTR_ERR(devpts_mnt
);
251 static void __exit
exit_devpts_fs(void)
253 unregister_filesystem(&devpts_fs_type
);
257 module_init(init_devpts_fs
)
258 module_exit(exit_devpts_fs
)
259 MODULE_LICENSE("GPL");