blob: d2b9af59cba9ab13da2cdbaac1160a30219bf277 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*****************************************************************************/
2
3/*
4 * inode.c -- Inode/Dentry functions for the USB device file system.
5 *
6 * Copyright (C) 2000 Thomas Sailer (sailer@ife.ee.ethz.ch)
7 * Copyright (C) 2001,2002,2004 Greg Kroah-Hartman (greg@kroah.com)
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 * History:
24 * 0.1 04.01.2000 Created
25 * 0.2 10.12.2001 converted to use the vfs layer better
26 */
27
28/*****************************************************************************/
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
31#include <linux/fs.h>
32#include <linux/mount.h>
33#include <linux/pagemap.h>
34#include <linux/init.h>
35#include <linux/proc_fs.h>
36#include <linux/usb.h>
37#include <linux/namei.h>
38#include <linux/usbdevice_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/parser.h>
Greg Kroah-Hartman54a5c4c2005-06-20 21:15:16 -070040#include <linux/notifier.h>
Miklos Szeredi2e4f3c02008-01-24 20:34:07 +010041#include <linux/seq_file.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020042#include <linux/usb/hcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/byteorder.h>
44#include "usb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Miklos Szeredi2e4f3c02008-01-24 20:34:07 +010046#define USBFS_DEFAULT_DEVMODE (S_IWUSR | S_IRUGO)
47#define USBFS_DEFAULT_BUSMODE (S_IXUGO | S_IRUGO)
48#define USBFS_DEFAULT_LISTMODE S_IRUGO
49
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -030050static const struct file_operations default_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static struct vfsmount *usbfs_mount;
52static int usbfs_mount_count; /* = 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54static struct dentry *devices_usbfs_dentry;
55static int num_buses; /* = 0 */
56
57static uid_t devuid; /* = 0 */
58static uid_t busuid; /* = 0 */
59static uid_t listuid; /* = 0 */
60static gid_t devgid; /* = 0 */
61static gid_t busgid; /* = 0 */
62static gid_t listgid; /* = 0 */
Miklos Szeredi2e4f3c02008-01-24 20:34:07 +010063static umode_t devmode = USBFS_DEFAULT_DEVMODE;
64static umode_t busmode = USBFS_DEFAULT_BUSMODE;
65static umode_t listmode = USBFS_DEFAULT_LISTMODE;
66
Al Viro34c80b12011-12-08 21:32:45 -050067static int usbfs_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredi2e4f3c02008-01-24 20:34:07 +010068{
69 if (devuid != 0)
70 seq_printf(seq, ",devuid=%u", devuid);
71 if (devgid != 0)
72 seq_printf(seq, ",devgid=%u", devgid);
73 if (devmode != USBFS_DEFAULT_DEVMODE)
74 seq_printf(seq, ",devmode=%o", devmode);
75 if (busuid != 0)
76 seq_printf(seq, ",busuid=%u", busuid);
77 if (busgid != 0)
78 seq_printf(seq, ",busgid=%u", busgid);
79 if (busmode != USBFS_DEFAULT_BUSMODE)
80 seq_printf(seq, ",busmode=%o", busmode);
81 if (listuid != 0)
82 seq_printf(seq, ",listuid=%u", listuid);
83 if (listgid != 0)
84 seq_printf(seq, ",listgid=%u", listgid);
85 if (listmode != USBFS_DEFAULT_LISTMODE)
86 seq_printf(seq, ",listmode=%o", listmode);
87
88 return 0;
89}
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91enum {
92 Opt_devuid, Opt_devgid, Opt_devmode,
93 Opt_busuid, Opt_busgid, Opt_busmode,
94 Opt_listuid, Opt_listgid, Opt_listmode,
95 Opt_err,
96};
97
Steven Whitehousea447c092008-10-13 10:46:57 +010098static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 {Opt_devuid, "devuid=%u"},
100 {Opt_devgid, "devgid=%u"},
101 {Opt_devmode, "devmode=%o"},
102 {Opt_busuid, "busuid=%u"},
103 {Opt_busgid, "busgid=%u"},
104 {Opt_busmode, "busmode=%o"},
105 {Opt_listuid, "listuid=%u"},
106 {Opt_listgid, "listgid=%u"},
107 {Opt_listmode, "listmode=%o"},
108 {Opt_err, NULL}
109};
110
111static int parse_options(struct super_block *s, char *data)
112{
113 char *p;
114 int option;
115
116 /* (re)set to defaults. */
117 devuid = 0;
118 busuid = 0;
119 listuid = 0;
120 devgid = 0;
121 busgid = 0;
122 listgid = 0;
Miklos Szeredi2e4f3c02008-01-24 20:34:07 +0100123 devmode = USBFS_DEFAULT_DEVMODE;
124 busmode = USBFS_DEFAULT_BUSMODE;
125 listmode = USBFS_DEFAULT_LISTMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 while ((p = strsep(&data, ",")) != NULL) {
128 substring_t args[MAX_OPT_ARGS];
129 int token;
130 if (!*p)
131 continue;
132
133 token = match_token(p, tokens, args);
134 switch (token) {
135 case Opt_devuid:
136 if (match_int(&args[0], &option))
137 return -EINVAL;
138 devuid = option;
139 break;
140 case Opt_devgid:
141 if (match_int(&args[0], &option))
142 return -EINVAL;
143 devgid = option;
144 break;
145 case Opt_devmode:
146 if (match_octal(&args[0], &option))
147 return -EINVAL;
148 devmode = option & S_IRWXUGO;
149 break;
150 case Opt_busuid:
151 if (match_int(&args[0], &option))
152 return -EINVAL;
153 busuid = option;
154 break;
155 case Opt_busgid:
156 if (match_int(&args[0], &option))
157 return -EINVAL;
158 busgid = option;
159 break;
160 case Opt_busmode:
161 if (match_octal(&args[0], &option))
162 return -EINVAL;
163 busmode = option & S_IRWXUGO;
164 break;
165 case Opt_listuid:
166 if (match_int(&args[0], &option))
167 return -EINVAL;
168 listuid = option;
169 break;
170 case Opt_listgid:
171 if (match_int(&args[0], &option))
172 return -EINVAL;
173 listgid = option;
174 break;
175 case Opt_listmode:
176 if (match_octal(&args[0], &option))
177 return -EINVAL;
178 listmode = option & S_IRWXUGO;
179 break;
180 default:
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -0700181 printk(KERN_ERR "usbfs: unrecognised mount option "
182 "\"%s\" or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return -EINVAL;
184 }
185 }
186
187 return 0;
188}
189
190static void update_special(struct dentry *special)
191{
192 special->d_inode->i_uid = listuid;
193 special->d_inode->i_gid = listgid;
194 special->d_inode->i_mode = S_IFREG | listmode;
195}
196
197static void update_dev(struct dentry *dev)
198{
199 dev->d_inode->i_uid = devuid;
200 dev->d_inode->i_gid = devgid;
201 dev->d_inode->i_mode = S_IFREG | devmode;
202}
203
204static void update_bus(struct dentry *bus)
205{
206 struct dentry *dev = NULL;
207
208 bus->d_inode->i_uid = busuid;
209 bus->d_inode->i_gid = busgid;
210 bus->d_inode->i_mode = S_IFDIR | busmode;
211
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800212 mutex_lock(&bus->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Eric Dumazet5160ee62006-01-08 01:03:32 -0800214 list_for_each_entry(dev, &bus->d_subdirs, d_u.d_child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (dev->d_inode)
216 update_dev(dev);
217
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800218 mutex_unlock(&bus->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221static void update_sb(struct super_block *sb)
222{
223 struct dentry *root = sb->s_root;
224 struct dentry *bus = NULL;
225
226 if (!root)
227 return;
228
Ingo Molnarf2eace22006-07-03 00:25:05 -0700229 mutex_lock_nested(&root->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Eric Dumazet5160ee62006-01-08 01:03:32 -0800231 list_for_each_entry(bus, &root->d_subdirs, d_u.d_child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (bus->d_inode) {
233 switch (S_IFMT & bus->d_inode->i_mode) {
234 case S_IFDIR:
235 update_bus(bus);
236 break;
237 case S_IFREG:
238 update_special(bus);
239 break;
240 default:
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700241 printk(KERN_WARNING "usbfs: Unknown node %s "
242 "mode %x found on remount!\n",
243 bus->d_name.name, bus->d_inode->i_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 break;
245 }
246 }
247 }
248
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800249 mutex_unlock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252static int remount(struct super_block *sb, int *flags, char *data)
253{
254 /* If this is not a real mount,
255 * i.e. it's a simple_pin_fs from create_special_files,
256 * then ignore it.
257 */
Al Viro01e0fe02012-03-17 02:17:32 -0400258 if (*flags & MS_KERNMOUNT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return 0;
260
261 if (parse_options(sb, data)) {
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700262 printk(KERN_WARNING "usbfs: mount parameter error.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return -EINVAL;
264 }
265
Al Viroc972b4b2011-12-08 23:01:06 -0500266 if (usbfs_mount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 update_sb(usbfs_mount->mnt_sb);
268
269 return 0;
270}
271
Al Viro5b91aca2011-07-24 23:36:12 -0400272static struct inode *usbfs_get_inode (struct super_block *sb, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 struct inode *inode = new_inode(sb);
275
276 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400277 inode->i_ino = get_next_ino();
Al Viro5b91aca2011-07-24 23:36:12 -0400278 inode_init_owner(inode, NULL, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
280 switch (mode & S_IFMT) {
281 default:
282 init_special_inode(inode, mode, dev);
283 break;
284 case S_IFREG:
285 inode->i_fop = &default_file_operations;
286 break;
287 case S_IFDIR:
OGAWA Hirofumibc7cb322005-11-17 09:47:07 -0800288 inode->i_op = &simple_dir_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 inode->i_fop = &simple_dir_operations;
290
291 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -0700292 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 break;
294 }
295 }
296 return inode;
297}
298
299/* SMP-safe */
Al Viro5b91aca2011-07-24 23:36:12 -0400300static int usbfs_mknod (struct inode *dir, struct dentry *dentry, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 dev_t dev)
302{
303 struct inode *inode = usbfs_get_inode(dir->i_sb, mode, dev);
304 int error = -EPERM;
305
306 if (dentry->d_inode)
307 return -EEXIST;
308
309 if (inode) {
310 d_instantiate(dentry, inode);
311 dget(dentry);
312 error = 0;
313 }
314 return error;
315}
316
Al Viro5b91aca2011-07-24 23:36:12 -0400317static int usbfs_mkdir (struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 int res;
320
321 mode = (mode & (S_IRWXUGO | S_ISVTX)) | S_IFDIR;
322 res = usbfs_mknod (dir, dentry, mode, 0);
323 if (!res)
Dave Hansend8c76e62006-09-30 23:29:04 -0700324 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return res;
326}
327
Al Viro5b91aca2011-07-24 23:36:12 -0400328static int usbfs_create (struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 mode = (mode & S_IALLUGO) | S_IFREG;
331 return usbfs_mknod (dir, dentry, mode, 0);
332}
333
334static inline int usbfs_positive (struct dentry *dentry)
335{
336 return dentry->d_inode && !d_unhashed(dentry);
337}
338
339static int usbfs_empty (struct dentry *dentry)
340{
341 struct list_head *list;
342
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100343 spin_lock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 list_for_each(list, &dentry->d_subdirs) {
Eric Dumazet5160ee62006-01-08 01:03:32 -0800345 struct dentry *de = list_entry(list, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100346
347 spin_lock_nested(&de->d_lock, DENTRY_D_LOCK_NESTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (usbfs_positive(de)) {
Nick Pigginda502952011-01-07 17:49:33 +1100349 spin_unlock(&de->d_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100350 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return 0;
352 }
Nick Pigginda502952011-01-07 17:49:33 +1100353 spin_unlock(&de->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100355 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return 1;
357}
358
359static int usbfs_unlink (struct inode *dir, struct dentry *dentry)
360{
361 struct inode *inode = dentry->d_inode;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800362 mutex_lock(&inode->i_mutex);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700363 drop_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 dput(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800365 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 d_delete(dentry);
367 return 0;
368}
369
370static int usbfs_rmdir(struct inode *dir, struct dentry *dentry)
371{
372 int error = -ENOTEMPTY;
373 struct inode * inode = dentry->d_inode;
374
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800375 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 dentry_unhash(dentry);
377 if (usbfs_empty(dentry)) {
Al Virod83c49f2010-04-30 17:17:09 -0400378 dont_mount(dentry);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700379 drop_nlink(dentry->d_inode);
380 drop_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 dput(dentry);
382 inode->i_flags |= S_DEAD;
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700383 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 error = 0;
385 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800386 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!error)
388 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return error;
390}
391
392
393/* default file operations */
394static ssize_t default_read_file (struct file *file, char __user *buf,
395 size_t count, loff_t *ppos)
396{
397 return 0;
398}
399
400static ssize_t default_write_file (struct file *file, const char __user *buf,
401 size_t count, loff_t *ppos)
402{
403 return count;
404}
405
406static loff_t default_file_lseek (struct file *file, loff_t offset, int orig)
407{
408 loff_t retval = -EINVAL;
409
Josef Sipek33cb8992006-12-08 02:37:46 -0800410 mutex_lock(&file->f_path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 switch(orig) {
412 case 0:
413 if (offset > 0) {
414 file->f_pos = offset;
415 retval = file->f_pos;
416 }
417 break;
418 case 1:
419 if ((offset + file->f_pos) > 0) {
420 file->f_pos += offset;
421 retval = file->f_pos;
422 }
423 break;
424 default:
425 break;
426 }
Josef Sipek33cb8992006-12-08 02:37:46 -0800427 mutex_unlock(&file->f_path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return retval;
429}
430
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300431static const struct file_operations default_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 .read = default_read_file,
433 .write = default_write_file,
Stephen Boyd234e3402012-04-05 14:25:11 -0700434 .open = simple_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 .llseek = default_file_lseek,
436};
437
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700438static const struct super_operations usbfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 .statfs = simple_statfs,
440 .drop_inode = generic_delete_inode,
441 .remount_fs = remount,
Miklos Szeredi2e4f3c02008-01-24 20:34:07 +0100442 .show_options = usbfs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443};
444
445static int usbfs_fill_super(struct super_block *sb, void *data, int silent)
446{
447 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 sb->s_blocksize = PAGE_CACHE_SIZE;
450 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
451 sb->s_magic = USBDEVICE_SUPER_MAGIC;
452 sb->s_op = &usbfs_ops;
453 sb->s_time_gran = 1;
454 inode = usbfs_get_inode(sb, S_IFDIR | 0755, 0);
Al Viro318ceed2012-02-12 22:08:01 -0500455 sb->s_root = d_make_root(inode);
456 if (!sb->s_root) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800457 dbg("%s: could not get root dentry!",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return -ENOMEM;
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return 0;
461}
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/*
464 * fs_create_by_name - create a file, given a name
465 * @name: name of file
466 * @mode: type of file
467 * @parent: dentry of directory to create it in
468 * @dentry: resulting dentry of file
469 *
470 * This function handles both regular files and directories.
471 */
Al Viro5b91aca2011-07-24 23:36:12 -0400472static int fs_create_by_name (const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct dentry *parent, struct dentry **dentry)
474{
475 int error = 0;
476
477 /* If the parent is not specified, we create it in the root.
478 * We need the root dentry to do this, which is in the super
479 * block. A pointer to that is in the struct vfsmount that we
480 * have around.
481 */
482 if (!parent ) {
Al Viroc972b4b2011-12-08 23:01:06 -0500483 if (usbfs_mount)
Al Viro4c1d5a62011-12-07 18:21:57 -0500484 parent = usbfs_mount->mnt_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
487 if (!parent) {
488 dbg("Ah! can not find a parent!");
489 return -EFAULT;
490 }
491
492 *dentry = NULL;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800493 mutex_lock(&parent->d_inode->i_mutex);
Christoph Hellwig5f45f1a2005-06-23 00:09:12 -0700494 *dentry = lookup_one_len(name, parent, strlen(name));
Dan Carpenterfa7fe7a2010-04-22 12:00:52 +0200495 if (!IS_ERR(*dentry)) {
Al Viro5b91aca2011-07-24 23:36:12 -0400496 if (S_ISDIR(mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 error = usbfs_mkdir (parent->d_inode, *dentry, mode);
498 else
499 error = usbfs_create (parent->d_inode, *dentry, mode);
500 } else
Dan Carpenterfa7fe7a2010-04-22 12:00:52 +0200501 error = PTR_ERR(*dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800502 mutex_unlock(&parent->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 return error;
505}
506
Al Viro5b91aca2011-07-24 23:36:12 -0400507static struct dentry *fs_create_file (const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 struct dentry *parent, void *data,
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300509 const struct file_operations *fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 uid_t uid, gid_t gid)
511{
512 struct dentry *dentry;
513 int error;
514
515 dbg("creating file '%s'",name);
516
517 error = fs_create_by_name (name, mode, parent, &dentry);
518 if (error) {
519 dentry = NULL;
520 } else {
521 if (dentry->d_inode) {
522 if (data)
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700523 dentry->d_inode->i_private = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (fops)
525 dentry->d_inode->i_fop = fops;
526 dentry->d_inode->i_uid = uid;
527 dentry->d_inode->i_gid = gid;
528 }
529 }
530
531 return dentry;
532}
533
534static void fs_remove_file (struct dentry *dentry)
535{
536 struct dentry *parent = dentry->d_parent;
537
538 if (!parent || !parent->d_inode)
539 return;
540
Arjan van de Ven8e7795e2006-07-03 00:25:21 -0700541 mutex_lock_nested(&parent->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (usbfs_positive(dentry)) {
543 if (dentry->d_inode) {
544 if (S_ISDIR(dentry->d_inode->i_mode))
545 usbfs_rmdir(parent->d_inode, dentry);
546 else
547 usbfs_unlink(parent->d_inode, dentry);
548 dput(dentry);
549 }
550 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800551 mutex_unlock(&parent->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554/* --------------------------------------------------------------------- */
555
Al Virofc14f2f2010-07-25 01:48:30 +0400556static struct dentry *usb_mount(struct file_system_type *fs_type,
557 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Al Virofc14f2f2010-07-25 01:48:30 +0400559 return mount_single(fs_type, flags, data, usbfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562static struct file_system_type usb_fs_type = {
563 .owner = THIS_MODULE,
564 .name = "usbfs",
Al Virofc14f2f2010-07-25 01:48:30 +0400565 .mount = usb_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 .kill_sb = kill_litter_super,
567};
568
569/* --------------------------------------------------------------------- */
570
571static int create_special_files (void)
572{
573 struct dentry *parent;
574 int retval;
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /* create the devices special file */
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400577 retval = simple_pin_fs(&usb_fs_type, &usbfs_mount, &usbfs_mount_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (retval) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -0700579 printk(KERN_ERR "Unable to get usbfs mount\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 goto exit;
581 }
582
Al Viro4c1d5a62011-12-07 18:21:57 -0500583 parent = usbfs_mount->mnt_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 devices_usbfs_dentry = fs_create_file ("devices",
585 listmode | S_IFREG, parent,
586 NULL, &usbfs_devices_fops,
587 listuid, listgid);
588 if (devices_usbfs_dentry == NULL) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -0700589 printk(KERN_ERR "Unable to create devices usbfs file\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 retval = -ENODEV;
591 goto error_clean_mounts;
592 }
593
594 goto exit;
595
596error_clean_mounts:
597 simple_release_fs(&usbfs_mount, &usbfs_mount_count);
598exit:
599 return retval;
600}
601
602static void remove_special_files (void)
603{
604 if (devices_usbfs_dentry)
605 fs_remove_file (devices_usbfs_dentry);
606 devices_usbfs_dentry = NULL;
607 simple_release_fs(&usbfs_mount, &usbfs_mount_count);
608}
609
610void usbfs_update_special (void)
611{
612 struct inode *inode;
613
614 if (devices_usbfs_dentry) {
615 inode = devices_usbfs_dentry->d_inode;
616 if (inode)
617 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
618 }
619}
620
Greg Kroah-Hartman54a5c4c2005-06-20 21:15:16 -0700621static void usbfs_add_bus(struct usb_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 struct dentry *parent;
624 char name[8];
625 int retval;
626
627 /* create the special files if this is the first bus added */
628 if (num_buses == 0) {
629 retval = create_special_files();
630 if (retval)
631 return;
632 }
633 ++num_buses;
634
635 sprintf (name, "%03d", bus->busnum);
636
Al Viro4c1d5a62011-12-07 18:21:57 -0500637 parent = usbfs_mount->mnt_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 bus->usbfs_dentry = fs_create_file (name, busmode | S_IFDIR, parent,
639 bus, NULL, busuid, busgid);
640 if (bus->usbfs_dentry == NULL) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -0700641 printk(KERN_ERR "Error creating usbfs bus entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return;
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Greg Kroah-Hartman54a5c4c2005-06-20 21:15:16 -0700646static void usbfs_remove_bus(struct usb_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 if (bus->usbfs_dentry) {
649 fs_remove_file (bus->usbfs_dentry);
650 bus->usbfs_dentry = NULL;
651 }
652
653 --num_buses;
654 if (num_buses <= 0) {
655 remove_special_files();
656 num_buses = 0;
657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Greg Kroah-Hartman54a5c4c2005-06-20 21:15:16 -0700660static void usbfs_add_device(struct usb_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 char name[8];
663 int i;
664 int i_size;
665
666 sprintf (name, "%03d", dev->devnum);
667 dev->usbfs_dentry = fs_create_file (name, devmode | S_IFREG,
668 dev->bus->usbfs_dentry, dev,
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100669 &usbdev_file_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 devuid, devgid);
671 if (dev->usbfs_dentry == NULL) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -0700672 printk(KERN_ERR "Error creating usbfs device entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return;
674 }
675
676 /* Set the size of the device's file to be
677 * equal to the size of the device descriptors. */
678 i_size = sizeof (struct usb_device_descriptor);
679 for (i = 0; i < dev->descriptor.bNumConfigurations; ++i) {
680 struct usb_config_descriptor *config =
681 (struct usb_config_descriptor *)dev->rawdescriptors[i];
682 i_size += le16_to_cpu(config->wTotalLength);
683 }
684 if (dev->usbfs_dentry->d_inode)
685 dev->usbfs_dentry->d_inode->i_size = i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Greg Kroah-Hartman54a5c4c2005-06-20 21:15:16 -0700688static void usbfs_remove_device(struct usb_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (dev->usbfs_dentry) {
691 fs_remove_file (dev->usbfs_dentry);
692 dev->usbfs_dentry = NULL;
693 }
Greg Kroah-Hartman54a5c4c2005-06-20 21:15:16 -0700694}
695
696static int usbfs_notify(struct notifier_block *self, unsigned long action, void *dev)
697{
698 switch (action) {
699 case USB_DEVICE_ADD:
700 usbfs_add_device(dev);
701 break;
702 case USB_DEVICE_REMOVE:
703 usbfs_remove_device(dev);
704 break;
705 case USB_BUS_ADD:
706 usbfs_add_bus(dev);
707 break;
708 case USB_BUS_REMOVE:
709 usbfs_remove_bus(dev);
710 }
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 usbfs_update_special();
713 usbfs_conn_disc_event();
Greg Kroah-Hartman54a5c4c2005-06-20 21:15:16 -0700714 return NOTIFY_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Greg Kroah-Hartman54a5c4c2005-06-20 21:15:16 -0700717static struct notifier_block usbfs_nb = {
718 .notifier_call = usbfs_notify,
719};
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721/* --------------------------------------------------------------------- */
722
723static struct proc_dir_entry *usbdir = NULL;
724
725int __init usbfs_init(void)
726{
727 int retval;
728
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200729 retval = register_filesystem(&usb_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (retval)
731 return retval;
732
Greg Kroah-Hartman54a5c4c2005-06-20 21:15:16 -0700733 usb_register_notify(&usbfs_nb);
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 /* create mount point for usbfs */
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700736 usbdir = proc_mkdir("bus/usb", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 return 0;
739}
740
741void usbfs_cleanup(void)
742{
Greg Kroah-Hartman54a5c4c2005-06-20 21:15:16 -0700743 usb_unregister_notify(&usbfs_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 unregister_filesystem(&usb_fs_type);
745 if (usbdir)
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700746 remove_proc_entry("bus/usb", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748