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