blob: b4faed7fe0d338dffd6e57aaf4256cf859af5e10 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: capifs.c,v 1.1.2.3 2004/01/16 21:09:26 keil Exp $
2 *
3 * Copyright 2000 by Carsten Paeth <calle@calle.de>
4 *
5 * Heavily based on devpts filesystem from H. Peter Anvin
6 *
7 * This software may be used and distributed according to the terms
8 * of the GNU General Public License, incorporated herein by reference.
9 *
10 */
11
12#include <linux/fs.h>
13#include <linux/mount.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/namei.h>
16#include <linux/module.h>
17#include <linux/init.h>
18#include <linux/ctype.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080019#include <linux/sched.h> /* current */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Adrian Bunk6e21bd92006-01-08 01:05:15 -080021#include "capifs.h"
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023MODULE_DESCRIPTION("CAPI4Linux: /dev/capi/ filesystem");
24MODULE_AUTHOR("Carsten Paeth");
25MODULE_LICENSE("GPL");
26
27/* ------------------------------------------------------------------ */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#define CAPIFS_SUPER_MAGIC (('C'<<8)|'N')
30
31static struct vfsmount *capifs_mnt;
Jan Kiszkae11e7ac2010-02-08 10:12:08 +000032static int capifs_mnt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34static struct {
35 int setuid;
36 int setgid;
37 uid_t uid;
38 gid_t gid;
39 umode_t mode;
40} config = {.mode = 0600};
41
42/* ------------------------------------------------------------------ */
43
44static int capifs_remount(struct super_block *s, int *flags, char *data)
45{
46 int setuid = 0;
47 int setgid = 0;
48 uid_t uid = 0;
49 gid_t gid = 0;
50 umode_t mode = 0600;
51 char *this_char;
Miklos Szeredie55e2122008-02-08 04:21:40 -080052 char *new_opt = kstrdup(data, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 this_char = NULL;
55 while ((this_char = strsep(&data, ",")) != NULL) {
56 int n;
57 char dummy;
58 if (!*this_char)
59 continue;
60 if (sscanf(this_char, "uid=%i%c", &n, &dummy) == 1) {
61 setuid = 1;
62 uid = n;
63 } else if (sscanf(this_char, "gid=%i%c", &n, &dummy) == 1) {
64 setgid = 1;
65 gid = n;
66 } else if (sscanf(this_char, "mode=%o%c", &n, &dummy) == 1)
67 mode = n & ~S_IFMT;
68 else {
Cyrill Gorcunovc24e9b32008-04-28 02:14:41 -070069 kfree(new_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 printk("capifs: called with bogus options\n");
71 return -EINVAL;
72 }
73 }
Miklos Szeredie55e2122008-02-08 04:21:40 -080074
Al Virob0c4f322009-05-08 16:23:30 -040075 mutex_lock(&s->s_root->d_inode->i_mutex);
Miklos Szeredie55e2122008-02-08 04:21:40 -080076
Al Virob0c4f322009-05-08 16:23:30 -040077 replace_mount_options(s, new_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 config.setuid = setuid;
79 config.setgid = setgid;
80 config.uid = uid;
81 config.gid = gid;
82 config.mode = mode;
Miklos Szeredie55e2122008-02-08 04:21:40 -080083
Al Virob0c4f322009-05-08 16:23:30 -040084 mutex_unlock(&s->s_root->d_inode->i_mutex);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return 0;
87}
88
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070089static const struct super_operations capifs_sops =
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 .statfs = simple_statfs,
92 .remount_fs = capifs_remount,
Miklos Szeredie55e2122008-02-08 04:21:40 -080093 .show_options = generic_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094};
95
96
97static int
98capifs_fill_super(struct super_block *s, void *data, int silent)
99{
100 struct inode * inode;
101
102 s->s_blocksize = 1024;
103 s->s_blocksize_bits = 10;
104 s->s_magic = CAPIFS_SUPER_MAGIC;
105 s->s_op = &capifs_sops;
106 s->s_time_gran = 1;
107
108 inode = new_inode(s);
109 if (!inode)
110 goto fail;
111 inode->i_ino = 1;
112 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
114 inode->i_op = &simple_dir_inode_operations;
115 inode->i_fop = &simple_dir_operations;
116 inode->i_nlink = 2;
117
Jan Kiszka07ad6032010-02-08 10:12:07 +0000118 s->s_root = d_alloc_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (s->s_root)
120 return 0;
121
122 printk("capifs: get root dentry failed\n");
123 iput(inode);
124fail:
125 return -ENOMEM;
126}
127
Al Virofc14f2f2010-07-25 01:48:30 +0400128static struct dentry *capifs_mount(struct file_system_type *fs_type,
129 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Al Virofc14f2f2010-07-25 01:48:30 +0400131 return mount_single(fs_type, flags, data, capifs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134static struct file_system_type capifs_fs_type = {
135 .owner = THIS_MODULE,
136 .name = "capifs",
Al Virofc14f2f2010-07-25 01:48:30 +0400137 .mount = capifs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 .kill_sb = kill_anon_super,
139};
140
Jan Kiszkae11e7ac2010-02-08 10:12:08 +0000141static struct dentry *new_ncci(unsigned int number, dev_t device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Jan Kiszka07ad6032010-02-08 10:12:07 +0000143 struct super_block *s = capifs_mnt->mnt_sb;
144 struct dentry *root = s->s_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct dentry *dentry;
Jan Kiszkac9478622010-02-08 10:12:05 +0000146 struct inode *inode;
Jan Kiszka90926f02010-02-08 10:12:06 +0000147 char name[10];
148 int namelen;
Al Virob0c4f322009-05-08 16:23:30 -0400149
Jan Kiszka07ad6032010-02-08 10:12:07 +0000150 mutex_lock(&root->d_inode->i_mutex);
Jan Kiszka90926f02010-02-08 10:12:06 +0000151
152 namelen = sprintf(name, "%d", number);
Jan Kiszka07ad6032010-02-08 10:12:07 +0000153 dentry = lookup_one_len(name, root, namelen);
Jan Kiszka90926f02010-02-08 10:12:06 +0000154 if (IS_ERR(dentry)) {
155 dentry = NULL;
Jan Kiszkac9478622010-02-08 10:12:05 +0000156 goto unlock_out;
Jan Kiszka90926f02010-02-08 10:12:06 +0000157 }
Jan Kiszkac9478622010-02-08 10:12:05 +0000158
159 if (dentry->d_inode) {
160 dput(dentry);
Jan Kiszka90926f02010-02-08 10:12:06 +0000161 dentry = NULL;
Jan Kiszkac9478622010-02-08 10:12:05 +0000162 goto unlock_out;
163 }
164
Jan Kiszka07ad6032010-02-08 10:12:07 +0000165 inode = new_inode(s);
Jan Kiszkac9478622010-02-08 10:12:05 +0000166 if (!inode) {
167 dput(dentry);
Jan Kiszka90926f02010-02-08 10:12:06 +0000168 dentry = NULL;
Jan Kiszkac9478622010-02-08 10:12:05 +0000169 goto unlock_out;
170 }
Al Virob0c4f322009-05-08 16:23:30 -0400171
172 /* config contents is protected by root's i_mutex */
David Howells0e164b62008-11-14 10:38:42 +1100173 inode->i_uid = config.setuid ? config.uid : current_fsuid();
174 inode->i_gid = config.setgid ? config.gid : current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Jan Kiszkac9478622010-02-08 10:12:05 +0000176 inode->i_ino = number + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 init_special_inode(inode, S_IFCHR|config.mode, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Jan Kiszkac9478622010-02-08 10:12:05 +0000179 d_instantiate(dentry, inode);
Jan Kiszka90926f02010-02-08 10:12:06 +0000180 dget(dentry);
Jan Kiszkac9478622010-02-08 10:12:05 +0000181
182unlock_out:
Jan Kiszka07ad6032010-02-08 10:12:07 +0000183 mutex_unlock(&root->d_inode->i_mutex);
Jan Kiszka90926f02010-02-08 10:12:06 +0000184
185 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
Jan Kiszkae11e7ac2010-02-08 10:12:08 +0000188struct dentry *capifs_new_ncci(unsigned int number, dev_t device)
189{
190 struct dentry *dentry;
191
192 if (simple_pin_fs(&capifs_fs_type, &capifs_mnt, &capifs_mnt_count) < 0)
193 return NULL;
194
195 dentry = new_ncci(number, device);
196 if (!dentry)
197 simple_release_fs(&capifs_mnt, &capifs_mnt_count);
198
199 return dentry;
200}
201
Jan Kiszka90926f02010-02-08 10:12:06 +0000202void capifs_free_ncci(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Jan Kiszka07ad6032010-02-08 10:12:07 +0000204 struct dentry *root = capifs_mnt->mnt_sb->s_root;
Jan Kiszka90926f02010-02-08 10:12:06 +0000205 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Jan Kiszka90926f02010-02-08 10:12:06 +0000207 if (!dentry)
208 return;
209
Jan Kiszka07ad6032010-02-08 10:12:07 +0000210 mutex_lock(&root->d_inode->i_mutex);
Jan Kiszka90926f02010-02-08 10:12:06 +0000211
212 inode = dentry->d_inode;
213 if (inode) {
214 drop_nlink(inode);
215 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 dput(dentry);
217 }
Jan Kiszka90926f02010-02-08 10:12:06 +0000218 dput(dentry);
219
Jan Kiszka07ad6032010-02-08 10:12:07 +0000220 mutex_unlock(&root->d_inode->i_mutex);
Jan Kiszkae11e7ac2010-02-08 10:12:08 +0000221
222 simple_release_fs(&capifs_mnt, &capifs_mnt_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225static int __init capifs_init(void)
226{
Jan Kiszka88549d62010-02-08 10:12:09 +0000227 return register_filesystem(&capifs_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
230static void __exit capifs_exit(void)
231{
232 unregister_filesystem(&capifs_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235EXPORT_SYMBOL(capifs_new_ncci);
236EXPORT_SYMBOL(capifs_free_ncci);
237
238module_init(capifs_init);
239module_exit(capifs_exit);