• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*****************************************************************************/
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 
30 #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>
39 #include <linux/parser.h>
40 #include <linux/notifier.h>
41 #include <linux/seq_file.h>
42 #include <asm/byteorder.h>
43 #include "usb.h"
44 #include "hcd.h"
45 
46 #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 
50 static struct super_operations usbfs_ops;
51 static const struct file_operations default_file_operations;
52 static struct vfsmount *usbfs_mount;
53 static int usbfs_mount_count;	/* = 0 */
54 static int ignore_mount = 0;
55 
56 static struct dentry *devices_usbfs_dentry;
57 static int num_buses;	/* = 0 */
58 
59 static uid_t devuid;	/* = 0 */
60 static uid_t busuid;	/* = 0 */
61 static uid_t listuid;	/* = 0 */
62 static gid_t devgid;	/* = 0 */
63 static gid_t busgid;	/* = 0 */
64 static gid_t listgid;	/* = 0 */
65 static umode_t devmode = USBFS_DEFAULT_DEVMODE;
66 static umode_t busmode = USBFS_DEFAULT_BUSMODE;
67 static umode_t listmode = USBFS_DEFAULT_LISTMODE;
68 
usbfs_show_options(struct seq_file * seq,struct vfsmount * mnt)69 static int usbfs_show_options(struct seq_file *seq, struct vfsmount *mnt)
70 {
71 	if (devuid != 0)
72 		seq_printf(seq, ",devuid=%u", devuid);
73 	if (devgid != 0)
74 		seq_printf(seq, ",devgid=%u", devgid);
75 	if (devmode != USBFS_DEFAULT_DEVMODE)
76 		seq_printf(seq, ",devmode=%o", devmode);
77 	if (busuid != 0)
78 		seq_printf(seq, ",busuid=%u", busuid);
79 	if (busgid != 0)
80 		seq_printf(seq, ",busgid=%u", busgid);
81 	if (busmode != USBFS_DEFAULT_BUSMODE)
82 		seq_printf(seq, ",busmode=%o", busmode);
83 	if (listuid != 0)
84 		seq_printf(seq, ",listuid=%u", listuid);
85 	if (listgid != 0)
86 		seq_printf(seq, ",listgid=%u", listgid);
87 	if (listmode != USBFS_DEFAULT_LISTMODE)
88 		seq_printf(seq, ",listmode=%o", listmode);
89 
90 	return 0;
91 }
92 
93 enum {
94 	Opt_devuid, Opt_devgid, Opt_devmode,
95 	Opt_busuid, Opt_busgid, Opt_busmode,
96 	Opt_listuid, Opt_listgid, Opt_listmode,
97 	Opt_err,
98 };
99 
100 static const match_table_t tokens = {
101 	{Opt_devuid, "devuid=%u"},
102 	{Opt_devgid, "devgid=%u"},
103 	{Opt_devmode, "devmode=%o"},
104 	{Opt_busuid, "busuid=%u"},
105 	{Opt_busgid, "busgid=%u"},
106 	{Opt_busmode, "busmode=%o"},
107 	{Opt_listuid, "listuid=%u"},
108 	{Opt_listgid, "listgid=%u"},
109 	{Opt_listmode, "listmode=%o"},
110 	{Opt_err, NULL}
111 };
112 
parse_options(struct super_block * s,char * data)113 static int parse_options(struct super_block *s, char *data)
114 {
115 	char *p;
116 	int option;
117 
118 	/* (re)set to defaults. */
119 	devuid = 0;
120 	busuid = 0;
121 	listuid = 0;
122 	devgid = 0;
123 	busgid = 0;
124 	listgid = 0;
125 	devmode = USBFS_DEFAULT_DEVMODE;
126 	busmode = USBFS_DEFAULT_BUSMODE;
127 	listmode = USBFS_DEFAULT_LISTMODE;
128 
129 	while ((p = strsep(&data, ",")) != NULL) {
130 		substring_t args[MAX_OPT_ARGS];
131 		int token;
132 		if (!*p)
133 			continue;
134 
135 		token = match_token(p, tokens, args);
136 		switch (token) {
137 		case Opt_devuid:
138 			if (match_int(&args[0], &option))
139 			       return -EINVAL;
140 			devuid = option;
141 			break;
142 		case Opt_devgid:
143 			if (match_int(&args[0], &option))
144 			       return -EINVAL;
145 			devgid = option;
146 			break;
147 		case Opt_devmode:
148 			if (match_octal(&args[0], &option))
149 				return -EINVAL;
150 			devmode = option & S_IRWXUGO;
151 			break;
152 		case Opt_busuid:
153 			if (match_int(&args[0], &option))
154 			       return -EINVAL;
155 			busuid = option;
156 			break;
157 		case Opt_busgid:
158 			if (match_int(&args[0], &option))
159 			       return -EINVAL;
160 			busgid = option;
161 			break;
162 		case Opt_busmode:
163 			if (match_octal(&args[0], &option))
164 				return -EINVAL;
165 			busmode = option & S_IRWXUGO;
166 			break;
167 		case Opt_listuid:
168 			if (match_int(&args[0], &option))
169 			       return -EINVAL;
170 			listuid = option;
171 			break;
172 		case Opt_listgid:
173 			if (match_int(&args[0], &option))
174 			       return -EINVAL;
175 			listgid = option;
176 			break;
177 		case Opt_listmode:
178 			if (match_octal(&args[0], &option))
179 				return -EINVAL;
180 			listmode = option & S_IRWXUGO;
181 			break;
182 		default:
183 			printk(KERN_ERR "usbfs: unrecognised mount option "
184 			       "\"%s\" or missing value\n", p);
185 			return -EINVAL;
186 		}
187 	}
188 
189 	return 0;
190 }
191 
update_special(struct dentry * special)192 static void update_special(struct dentry *special)
193 {
194 	special->d_inode->i_uid = listuid;
195 	special->d_inode->i_gid = listgid;
196 	special->d_inode->i_mode = S_IFREG | listmode;
197 }
198 
update_dev(struct dentry * dev)199 static void update_dev(struct dentry *dev)
200 {
201 	dev->d_inode->i_uid = devuid;
202 	dev->d_inode->i_gid = devgid;
203 	dev->d_inode->i_mode = S_IFREG | devmode;
204 }
205 
update_bus(struct dentry * bus)206 static void update_bus(struct dentry *bus)
207 {
208 	struct dentry *dev = NULL;
209 
210 	bus->d_inode->i_uid = busuid;
211 	bus->d_inode->i_gid = busgid;
212 	bus->d_inode->i_mode = S_IFDIR | busmode;
213 
214 	mutex_lock(&bus->d_inode->i_mutex);
215 
216 	list_for_each_entry(dev, &bus->d_subdirs, d_u.d_child)
217 		if (dev->d_inode)
218 			update_dev(dev);
219 
220 	mutex_unlock(&bus->d_inode->i_mutex);
221 }
222 
update_sb(struct super_block * sb)223 static void update_sb(struct super_block *sb)
224 {
225 	struct dentry *root = sb->s_root;
226 	struct dentry *bus = NULL;
227 
228 	if (!root)
229 		return;
230 
231 	mutex_lock_nested(&root->d_inode->i_mutex, I_MUTEX_PARENT);
232 
233 	list_for_each_entry(bus, &root->d_subdirs, d_u.d_child) {
234 		if (bus->d_inode) {
235 			switch (S_IFMT & bus->d_inode->i_mode) {
236 			case S_IFDIR:
237 				update_bus(bus);
238 				break;
239 			case S_IFREG:
240 				update_special(bus);
241 				break;
242 			default:
243 				printk(KERN_WARNING "usbfs: Unknown node %s "
244 				       "mode %x found on remount!\n",
245 				       bus->d_name.name, bus->d_inode->i_mode);
246 				break;
247 			}
248 		}
249 	}
250 
251 	mutex_unlock(&root->d_inode->i_mutex);
252 }
253 
remount(struct super_block * sb,int * flags,char * data)254 static int remount(struct super_block *sb, int *flags, char *data)
255 {
256 	/* If this is not a real mount,
257 	 * i.e. it's a simple_pin_fs from create_special_files,
258 	 * then ignore it.
259 	 */
260 	if (ignore_mount)
261 		return 0;
262 
263 	if (parse_options(sb, data)) {
264 		printk(KERN_WARNING "usbfs: mount parameter error.\n");
265 		return -EINVAL;
266 	}
267 
268 	if (usbfs_mount && usbfs_mount->mnt_sb)
269 		update_sb(usbfs_mount->mnt_sb);
270 
271 	return 0;
272 }
273 
usbfs_get_inode(struct super_block * sb,int mode,dev_t dev)274 static struct inode *usbfs_get_inode (struct super_block *sb, int mode, dev_t dev)
275 {
276 	struct inode *inode = new_inode(sb);
277 
278 	if (inode) {
279 		inode->i_mode = mode;
280 		inode->i_uid = current_fsuid();
281 		inode->i_gid = current_fsgid();
282 		inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
283 		switch (mode & S_IFMT) {
284 		default:
285 			init_special_inode(inode, mode, dev);
286 			break;
287 		case S_IFREG:
288 			inode->i_fop = &default_file_operations;
289 			break;
290 		case S_IFDIR:
291 			inode->i_op = &simple_dir_inode_operations;
292 			inode->i_fop = &simple_dir_operations;
293 
294 			/* directory inodes start off with i_nlink == 2 (for "." entry) */
295 			inc_nlink(inode);
296 			break;
297 		}
298 	}
299 	return inode;
300 }
301 
302 /* SMP-safe */
usbfs_mknod(struct inode * dir,struct dentry * dentry,int mode,dev_t dev)303 static int usbfs_mknod (struct inode *dir, struct dentry *dentry, int mode,
304 			dev_t dev)
305 {
306 	struct inode *inode = usbfs_get_inode(dir->i_sb, mode, dev);
307 	int error = -EPERM;
308 
309 	if (dentry->d_inode)
310 		return -EEXIST;
311 
312 	if (inode) {
313 		d_instantiate(dentry, inode);
314 		dget(dentry);
315 		error = 0;
316 	}
317 	return error;
318 }
319 
usbfs_mkdir(struct inode * dir,struct dentry * dentry,int mode)320 static int usbfs_mkdir (struct inode *dir, struct dentry *dentry, int mode)
321 {
322 	int res;
323 
324 	mode = (mode & (S_IRWXUGO | S_ISVTX)) | S_IFDIR;
325 	res = usbfs_mknod (dir, dentry, mode, 0);
326 	if (!res)
327 		inc_nlink(dir);
328 	return res;
329 }
330 
usbfs_create(struct inode * dir,struct dentry * dentry,int mode)331 static int usbfs_create (struct inode *dir, struct dentry *dentry, int mode)
332 {
333 	mode = (mode & S_IALLUGO) | S_IFREG;
334 	return usbfs_mknod (dir, dentry, mode, 0);
335 }
336 
usbfs_positive(struct dentry * dentry)337 static inline int usbfs_positive (struct dentry *dentry)
338 {
339 	return dentry->d_inode && !d_unhashed(dentry);
340 }
341 
usbfs_empty(struct dentry * dentry)342 static int usbfs_empty (struct dentry *dentry)
343 {
344 	struct list_head *list;
345 
346 	spin_lock(&dcache_lock);
347 
348 	list_for_each(list, &dentry->d_subdirs) {
349 		struct dentry *de = list_entry(list, struct dentry, d_u.d_child);
350 		if (usbfs_positive(de)) {
351 			spin_unlock(&dcache_lock);
352 			return 0;
353 		}
354 	}
355 
356 	spin_unlock(&dcache_lock);
357 	return 1;
358 }
359 
usbfs_unlink(struct inode * dir,struct dentry * dentry)360 static int usbfs_unlink (struct inode *dir, struct dentry *dentry)
361 {
362 	struct inode *inode = dentry->d_inode;
363 	mutex_lock(&inode->i_mutex);
364 	drop_nlink(dentry->d_inode);
365 	dput(dentry);
366 	mutex_unlock(&inode->i_mutex);
367 	d_delete(dentry);
368 	return 0;
369 }
370 
usbfs_rmdir(struct inode * dir,struct dentry * dentry)371 static int usbfs_rmdir(struct inode *dir, struct dentry *dentry)
372 {
373 	int error = -ENOTEMPTY;
374 	struct inode * inode = dentry->d_inode;
375 
376 	mutex_lock(&inode->i_mutex);
377 	dentry_unhash(dentry);
378 	if (usbfs_empty(dentry)) {
379 		drop_nlink(dentry->d_inode);
380 		drop_nlink(dentry->d_inode);
381 		dput(dentry);
382 		inode->i_flags |= S_DEAD;
383 		drop_nlink(dir);
384 		error = 0;
385 	}
386 	mutex_unlock(&inode->i_mutex);
387 	if (!error)
388 		d_delete(dentry);
389 	dput(dentry);
390 	return error;
391 }
392 
393 
394 /* default file operations */
default_read_file(struct file * file,char __user * buf,size_t count,loff_t * ppos)395 static ssize_t default_read_file (struct file *file, char __user *buf,
396 				  size_t count, loff_t *ppos)
397 {
398 	return 0;
399 }
400 
default_write_file(struct file * file,const char __user * buf,size_t count,loff_t * ppos)401 static ssize_t default_write_file (struct file *file, const char __user *buf,
402 				   size_t count, loff_t *ppos)
403 {
404 	return count;
405 }
406 
default_file_lseek(struct file * file,loff_t offset,int orig)407 static loff_t default_file_lseek (struct file *file, loff_t offset, int orig)
408 {
409 	loff_t retval = -EINVAL;
410 
411 	mutex_lock(&file->f_path.dentry->d_inode->i_mutex);
412 	switch(orig) {
413 	case 0:
414 		if (offset > 0) {
415 			file->f_pos = offset;
416 			retval = file->f_pos;
417 		}
418 		break;
419 	case 1:
420 		if ((offset + file->f_pos) > 0) {
421 			file->f_pos += offset;
422 			retval = file->f_pos;
423 		}
424 		break;
425 	default:
426 		break;
427 	}
428 	mutex_unlock(&file->f_path.dentry->d_inode->i_mutex);
429 	return retval;
430 }
431 
default_open(struct inode * inode,struct file * file)432 static int default_open (struct inode *inode, struct file *file)
433 {
434 	if (inode->i_private)
435 		file->private_data = inode->i_private;
436 
437 	return 0;
438 }
439 
440 static const struct file_operations default_file_operations = {
441 	.read =		default_read_file,
442 	.write =	default_write_file,
443 	.open =		default_open,
444 	.llseek =	default_file_lseek,
445 };
446 
447 static struct super_operations usbfs_ops = {
448 	.statfs =	simple_statfs,
449 	.drop_inode =	generic_delete_inode,
450 	.remount_fs =	remount,
451 	.show_options = usbfs_show_options,
452 };
453 
usbfs_fill_super(struct super_block * sb,void * data,int silent)454 static int usbfs_fill_super(struct super_block *sb, void *data, int silent)
455 {
456 	struct inode *inode;
457 	struct dentry *root;
458 
459 	sb->s_blocksize = PAGE_CACHE_SIZE;
460 	sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
461 	sb->s_magic = USBDEVICE_SUPER_MAGIC;
462 	sb->s_op = &usbfs_ops;
463 	sb->s_time_gran = 1;
464 	inode = usbfs_get_inode(sb, S_IFDIR | 0755, 0);
465 
466 	if (!inode) {
467 		dbg("%s: could not get inode!",__func__);
468 		return -ENOMEM;
469 	}
470 
471 	root = d_alloc_root(inode);
472 	if (!root) {
473 		dbg("%s: could not get root dentry!",__func__);
474 		iput(inode);
475 		return -ENOMEM;
476 	}
477 	sb->s_root = root;
478 	return 0;
479 }
480 
481 /*
482  * fs_create_by_name - create a file, given a name
483  * @name:	name of file
484  * @mode:	type of file
485  * @parent:	dentry of directory to create it in
486  * @dentry:	resulting dentry of file
487  *
488  * This function handles both regular files and directories.
489  */
fs_create_by_name(const char * name,mode_t mode,struct dentry * parent,struct dentry ** dentry)490 static int fs_create_by_name (const char *name, mode_t mode,
491 			      struct dentry *parent, struct dentry **dentry)
492 {
493 	int error = 0;
494 
495 	/* If the parent is not specified, we create it in the root.
496 	 * We need the root dentry to do this, which is in the super
497 	 * block. A pointer to that is in the struct vfsmount that we
498 	 * have around.
499 	 */
500 	if (!parent ) {
501 		if (usbfs_mount && usbfs_mount->mnt_sb) {
502 			parent = usbfs_mount->mnt_sb->s_root;
503 		}
504 	}
505 
506 	if (!parent) {
507 		dbg("Ah! can not find a parent!");
508 		return -EFAULT;
509 	}
510 
511 	*dentry = NULL;
512 	mutex_lock(&parent->d_inode->i_mutex);
513 	*dentry = lookup_one_len(name, parent, strlen(name));
514 	if (!IS_ERR(dentry)) {
515 		if ((mode & S_IFMT) == S_IFDIR)
516 			error = usbfs_mkdir (parent->d_inode, *dentry, mode);
517 		else
518 			error = usbfs_create (parent->d_inode, *dentry, mode);
519 	} else
520 		error = PTR_ERR(dentry);
521 	mutex_unlock(&parent->d_inode->i_mutex);
522 
523 	return error;
524 }
525 
fs_create_file(const char * name,mode_t mode,struct dentry * parent,void * data,const struct file_operations * fops,uid_t uid,gid_t gid)526 static struct dentry *fs_create_file (const char *name, mode_t mode,
527 				      struct dentry *parent, void *data,
528 				      const struct file_operations *fops,
529 				      uid_t uid, gid_t gid)
530 {
531 	struct dentry *dentry;
532 	int error;
533 
534 	dbg("creating file '%s'",name);
535 
536 	error = fs_create_by_name (name, mode, parent, &dentry);
537 	if (error) {
538 		dentry = NULL;
539 	} else {
540 		if (dentry->d_inode) {
541 			if (data)
542 				dentry->d_inode->i_private = data;
543 			if (fops)
544 				dentry->d_inode->i_fop = fops;
545 			dentry->d_inode->i_uid = uid;
546 			dentry->d_inode->i_gid = gid;
547 		}
548 	}
549 
550 	return dentry;
551 }
552 
fs_remove_file(struct dentry * dentry)553 static void fs_remove_file (struct dentry *dentry)
554 {
555 	struct dentry *parent = dentry->d_parent;
556 
557 	if (!parent || !parent->d_inode)
558 		return;
559 
560 	mutex_lock_nested(&parent->d_inode->i_mutex, I_MUTEX_PARENT);
561 	if (usbfs_positive(dentry)) {
562 		if (dentry->d_inode) {
563 			if (S_ISDIR(dentry->d_inode->i_mode))
564 				usbfs_rmdir(parent->d_inode, dentry);
565 			else
566 				usbfs_unlink(parent->d_inode, dentry);
567 		dput(dentry);
568 		}
569 	}
570 	mutex_unlock(&parent->d_inode->i_mutex);
571 }
572 
573 /* --------------------------------------------------------------------- */
574 
usb_get_sb(struct file_system_type * fs_type,int flags,const char * dev_name,void * data,struct vfsmount * mnt)575 static int usb_get_sb(struct file_system_type *fs_type,
576 	int flags, const char *dev_name, void *data, struct vfsmount *mnt)
577 {
578 	return get_sb_single(fs_type, flags, data, usbfs_fill_super, mnt);
579 }
580 
581 static struct file_system_type usb_fs_type = {
582 	.owner =	THIS_MODULE,
583 	.name =		"usbfs",
584 	.get_sb =	usb_get_sb,
585 	.kill_sb =	kill_litter_super,
586 };
587 
588 /* --------------------------------------------------------------------- */
589 
create_special_files(void)590 static int create_special_files (void)
591 {
592 	struct dentry *parent;
593 	int retval;
594 
595 	/* the simple_pin_fs calls will call remount with no options
596 	 * without this flag that would overwrite the real mount options (if any)
597 	 */
598 	ignore_mount = 1;
599 
600 	/* create the devices special file */
601 	retval = simple_pin_fs(&usb_fs_type, &usbfs_mount, &usbfs_mount_count);
602 	if (retval) {
603 		printk(KERN_ERR "Unable to get usbfs mount\n");
604 		goto exit;
605 	}
606 
607 	ignore_mount = 0;
608 
609 	parent = usbfs_mount->mnt_sb->s_root;
610 	devices_usbfs_dentry = fs_create_file ("devices",
611 					       listmode | S_IFREG, parent,
612 					       NULL, &usbfs_devices_fops,
613 					       listuid, listgid);
614 	if (devices_usbfs_dentry == NULL) {
615 		printk(KERN_ERR "Unable to create devices usbfs file\n");
616 		retval = -ENODEV;
617 		goto error_clean_mounts;
618 	}
619 
620 	goto exit;
621 
622 error_clean_mounts:
623 	simple_release_fs(&usbfs_mount, &usbfs_mount_count);
624 exit:
625 	return retval;
626 }
627 
remove_special_files(void)628 static void remove_special_files (void)
629 {
630 	if (devices_usbfs_dentry)
631 		fs_remove_file (devices_usbfs_dentry);
632 	devices_usbfs_dentry = NULL;
633 	simple_release_fs(&usbfs_mount, &usbfs_mount_count);
634 }
635 
usbfs_update_special(void)636 void usbfs_update_special (void)
637 {
638 	struct inode *inode;
639 
640 	if (devices_usbfs_dentry) {
641 		inode = devices_usbfs_dentry->d_inode;
642 		if (inode)
643 			inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
644 	}
645 }
646 
usbfs_add_bus(struct usb_bus * bus)647 static void usbfs_add_bus(struct usb_bus *bus)
648 {
649 	struct dentry *parent;
650 	char name[8];
651 	int retval;
652 
653 	/* create the special files if this is the first bus added */
654 	if (num_buses == 0) {
655 		retval = create_special_files();
656 		if (retval)
657 			return;
658 	}
659 	++num_buses;
660 
661 	sprintf (name, "%03d", bus->busnum);
662 
663 	parent = usbfs_mount->mnt_sb->s_root;
664 	bus->usbfs_dentry = fs_create_file (name, busmode | S_IFDIR, parent,
665 					    bus, NULL, busuid, busgid);
666 	if (bus->usbfs_dentry == NULL) {
667 		printk(KERN_ERR "Error creating usbfs bus entry\n");
668 		return;
669 	}
670 }
671 
usbfs_remove_bus(struct usb_bus * bus)672 static void usbfs_remove_bus(struct usb_bus *bus)
673 {
674 	if (bus->usbfs_dentry) {
675 		fs_remove_file (bus->usbfs_dentry);
676 		bus->usbfs_dentry = NULL;
677 	}
678 
679 	--num_buses;
680 	if (num_buses <= 0) {
681 		remove_special_files();
682 		num_buses = 0;
683 	}
684 }
685 
usbfs_add_device(struct usb_device * dev)686 static void usbfs_add_device(struct usb_device *dev)
687 {
688 	char name[8];
689 	int i;
690 	int i_size;
691 
692 	sprintf (name, "%03d", dev->devnum);
693 	dev->usbfs_dentry = fs_create_file (name, devmode | S_IFREG,
694 					    dev->bus->usbfs_dentry, dev,
695 					    &usbdev_file_operations,
696 					    devuid, devgid);
697 	if (dev->usbfs_dentry == NULL) {
698 		printk(KERN_ERR "Error creating usbfs device entry\n");
699 		return;
700 	}
701 
702 	/* Set the size of the device's file to be
703 	 * equal to the size of the device descriptors. */
704 	i_size = sizeof (struct usb_device_descriptor);
705 	for (i = 0; i < dev->descriptor.bNumConfigurations; ++i) {
706 		struct usb_config_descriptor *config =
707 			(struct usb_config_descriptor *)dev->rawdescriptors[i];
708 		i_size += le16_to_cpu(config->wTotalLength);
709 	}
710 	if (dev->usbfs_dentry->d_inode)
711 		dev->usbfs_dentry->d_inode->i_size = i_size;
712 }
713 
usbfs_remove_device(struct usb_device * dev)714 static void usbfs_remove_device(struct usb_device *dev)
715 {
716 	if (dev->usbfs_dentry) {
717 		fs_remove_file (dev->usbfs_dentry);
718 		dev->usbfs_dentry = NULL;
719 	}
720 }
721 
usbfs_notify(struct notifier_block * self,unsigned long action,void * dev)722 static int usbfs_notify(struct notifier_block *self, unsigned long action, void *dev)
723 {
724 	switch (action) {
725 	case USB_DEVICE_ADD:
726 		usbfs_add_device(dev);
727 		break;
728 	case USB_DEVICE_REMOVE:
729 		usbfs_remove_device(dev);
730 		break;
731 	case USB_BUS_ADD:
732 		usbfs_add_bus(dev);
733 		break;
734 	case USB_BUS_REMOVE:
735 		usbfs_remove_bus(dev);
736 	}
737 
738 	usbfs_update_special();
739 	usbfs_conn_disc_event();
740 	return NOTIFY_OK;
741 }
742 
743 static struct notifier_block usbfs_nb = {
744 	.notifier_call = 	usbfs_notify,
745 };
746 
747 /* --------------------------------------------------------------------- */
748 
749 static struct proc_dir_entry *usbdir = NULL;
750 
usbfs_init(void)751 int __init usbfs_init(void)
752 {
753 	int retval;
754 
755 	retval = register_filesystem(&usb_fs_type);
756 	if (retval)
757 		return retval;
758 
759 	usb_register_notify(&usbfs_nb);
760 
761 	/* create mount point for usbfs */
762 	usbdir = proc_mkdir("bus/usb", NULL);
763 
764 	return 0;
765 }
766 
usbfs_cleanup(void)767 void usbfs_cleanup(void)
768 {
769 	usb_unregister_notify(&usbfs_nb);
770 	unregister_filesystem(&usb_fs_type);
771 	if (usbdir)
772 		remove_proc_entry("bus/usb", NULL);
773 }
774 
775