Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 36368
b: refs/heads/master
c: 4a2a8a2
h: refs/heads/master
v: v3
  • Loading branch information
Alan Stern authored and Greg Kroah-Hartman committed Sep 27, 2006
1 parent 12a71e9 commit 09183dc
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: da308e8da700637d6271dddda08128094691b980
refs/heads/master: 4a2a8a2cce86b9d001378cc25acb5c61e6ca7d63
26 changes: 15 additions & 11 deletions trunk/drivers/usb/core/devio.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@
#define USB_DEVICE_MAX USB_MAXBUS * 128
static struct class *usb_device_class;

/* Mutual exclusion for removal, open, and release */
DEFINE_MUTEX(usbfs_mutex);

struct async {
struct list_head asynclist;
struct dev_state *ps;
Expand Down Expand Up @@ -541,15 +544,13 @@ static int usbdev_open(struct inode *inode, struct file *file)
struct dev_state *ps;
int ret;

/*
* no locking necessary here, as chrdev_open has the kernel lock
* (still acquire the kernel lock for safety)
*/
/* Protect against simultaneous removal or release */
mutex_lock(&usbfs_mutex);

ret = -ENOMEM;
if (!(ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL)))
goto out_nolock;
goto out;

lock_kernel();
ret = -ENOENT;
/* check if we are called from a real node or usbfs */
if (imajor(inode) == USB_DEVICE_MAJOR)
Expand Down Expand Up @@ -579,9 +580,8 @@ static int usbdev_open(struct inode *inode, struct file *file)
list_add_tail(&ps->list, &dev->filelist);
file->private_data = ps;
out:
unlock_kernel();
out_nolock:
return ret;
mutex_unlock(&usbfs_mutex);
return ret;
}

static int usbdev_release(struct inode *inode, struct file *file)
Expand All @@ -591,7 +591,12 @@ static int usbdev_release(struct inode *inode, struct file *file)
unsigned int ifnum;

usb_lock_device(dev);

/* Protect against simultaneous open */
mutex_lock(&usbfs_mutex);
list_del_init(&ps->list);
mutex_unlock(&usbfs_mutex);

for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
ifnum++) {
if (test_bit(ifnum, &ps->ifclaimed))
Expand All @@ -600,9 +605,8 @@ static int usbdev_release(struct inode *inode, struct file *file)
destroy_all_async(ps);
usb_unlock_device(dev);
usb_put_dev(dev);
ps->dev = NULL;
kfree(ps);
return 0;
return 0;
}

static int proc_control(struct dev_state *ps, void __user *arg)
Expand Down
3 changes: 3 additions & 0 deletions trunk/drivers/usb/core/notify.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,11 @@ void usb_notify_add_device(struct usb_device *udev)

void usb_notify_remove_device(struct usb_device *udev)
{
/* Protect against simultaneous usbfs open */
mutex_lock(&usbfs_mutex);
blocking_notifier_call_chain(&usb_notifier_list,
USB_DEVICE_REMOVE, udev);
mutex_unlock(&usbfs_mutex);
}

void usb_notify_add_bus(struct usb_bus *ubus)
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/usb/core/usb.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ static inline int is_active(struct usb_interface *f)
extern const char *usbcore_name;

/* usbfs stuff */
extern struct mutex usbfs_mutex;
extern struct usb_driver usbfs_driver;
extern struct file_operations usbfs_devices_fops;
extern struct file_operations usbfs_device_file_operations;
Expand Down

0 comments on commit 09183dc

Please sign in to comment.