]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usb: interface authorization: Introduces the USB interface authorization
authorStefan Koch <stefan.koch10@gmail.com>
Tue, 25 Aug 2015 19:10:08 +0000 (21:10 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 Sep 2015 19:08:40 +0000 (12:08 -0700)
The kernel supports the device authorization because of wireless USB.
These is usable for wired USB devices, too.
These new interface authorization allows to enable or disable
individual interfaces instead a whole device.

If a deauthorized interface will be authorized so the driver probing must
be triggered manually by writing INTERFACE to /sys/bus/usb/drivers_probe

Signed-off-by: Stefan Koch <stefan.koch10@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/core/message.c
drivers/usb/core/usb.h

index 3d25d89671d71b772b2510b4147df1d6eb017ec0..c090f50af1021a363ca7207d83944c63a79f1db7 100644 (file)
@@ -1555,6 +1555,44 @@ static void usb_release_interface(struct device *dev)
        kfree(intf);
 }
 
+/*
+ * usb_deauthorize_interface - deauthorize an USB interface
+ *
+ * @intf: USB interface structure
+ */
+void usb_deauthorize_interface(struct usb_interface *intf)
+{
+       struct device *dev = &intf->dev;
+
+       device_lock(dev->parent);
+
+       if (intf->authorized) {
+               device_lock(dev);
+               intf->authorized = 0;
+               device_unlock(dev);
+
+               usb_forced_unbind_intf(intf);
+       }
+
+       device_unlock(dev->parent);
+}
+
+/*
+ * usb_authorize_interface - authorize an USB interface
+ *
+ * @intf: USB interface structure
+ */
+void usb_authorize_interface(struct usb_interface *intf)
+{
+       struct device *dev = &intf->dev;
+
+       if (!intf->authorized) {
+               device_lock(dev);
+               intf->authorized = 1; /* authorize interface */
+               device_unlock(dev);
+       }
+}
+
 static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
 {
        struct usb_device *usb_dev;
index 457255a3306a3c2837674d22aa9560bf30842220..05b5e17abf92fc158530d13f3e2ae8edf9923c5a 100644 (file)
@@ -27,6 +27,8 @@ extern void usb_release_interface_cache(struct kref *ref);
 extern void usb_disable_device(struct usb_device *dev, int skip_ep0);
 extern int usb_deauthorize_device(struct usb_device *);
 extern int usb_authorize_device(struct usb_device *);
+extern void usb_deauthorize_interface(struct usb_interface *);
+extern void usb_authorize_interface(struct usb_interface *);
 extern void usb_detect_quirks(struct usb_device *udev);
 extern void usb_detect_interface_quirks(struct usb_device *udev);
 extern int usb_remove_device(struct usb_device *udev);