aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/core
diff options
context:
space:
mode:
authorStefan Koch <stefan.koch10@gmail.com>2015-08-08 05:32:56 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-08-14 19:57:14 -0400
commit3cf1fc80655d3af7083ea4b3615e5f8532543be7 (patch)
tree9707c4b748238bf169f92fbf1c291aada550fdfa /drivers/usb/core
parent6ef2bf71764708f7c58ee9300acd8df05dbaa06f (diff)
usb: interface authorization: Use a flag for the default device authorization
With this patch a flag instead of a variable is used for the default device authorization. Signed-off-by: Stefan Koch <skoch@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/core')
-rw-r--r--drivers/usb/core/hcd.c31
-rw-r--r--drivers/usb/core/usb.c2
2 files changed, 22 insertions, 11 deletions
diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c
index 83df1dde9c08..86b3d1190500 100644
--- a/drivers/usb/core/hcd.c
+++ b/drivers/usb/core/hcd.c
@@ -854,10 +854,10 @@ static ssize_t authorized_default_show(struct device *dev,
854{ 854{
855 struct usb_device *rh_usb_dev = to_usb_device(dev); 855 struct usb_device *rh_usb_dev = to_usb_device(dev);
856 struct usb_bus *usb_bus = rh_usb_dev->bus; 856 struct usb_bus *usb_bus = rh_usb_dev->bus;
857 struct usb_hcd *usb_hcd; 857 struct usb_hcd *hcd;
858 858
859 usb_hcd = bus_to_hcd(usb_bus); 859 hcd = bus_to_hcd(usb_bus);
860 return snprintf(buf, PAGE_SIZE, "%u\n", usb_hcd->authorized_default); 860 return snprintf(buf, PAGE_SIZE, "%u\n", !!HCD_DEV_AUTHORIZED(hcd));
861} 861}
862 862
863static ssize_t authorized_default_store(struct device *dev, 863static ssize_t authorized_default_store(struct device *dev,
@@ -868,12 +868,16 @@ static ssize_t authorized_default_store(struct device *dev,
868 unsigned val; 868 unsigned val;
869 struct usb_device *rh_usb_dev = to_usb_device(dev); 869 struct usb_device *rh_usb_dev = to_usb_device(dev);
870 struct usb_bus *usb_bus = rh_usb_dev->bus; 870 struct usb_bus *usb_bus = rh_usb_dev->bus;
871 struct usb_hcd *usb_hcd; 871 struct usb_hcd *hcd;
872 872
873 usb_hcd = bus_to_hcd(usb_bus); 873 hcd = bus_to_hcd(usb_bus);
874 result = sscanf(buf, "%u\n", &val); 874 result = sscanf(buf, "%u\n", &val);
875 if (result == 1) { 875 if (result == 1) {
876 usb_hcd->authorized_default = val ? 1 : 0; 876 if (val)
877 set_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
878 else
879 clear_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
880
877 result = size; 881 result = size;
878 } else { 882 } else {
879 result = -EINVAL; 883 result = -EINVAL;
@@ -2720,10 +2724,17 @@ int usb_add_hcd(struct usb_hcd *hcd,
2720 dev_info(hcd->self.controller, "%s\n", hcd->product_desc); 2724 dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
2721 2725
2722 /* Keep old behaviour if authorized_default is not in [0, 1]. */ 2726 /* Keep old behaviour if authorized_default is not in [0, 1]. */
2723 if (authorized_default < 0 || authorized_default > 1) 2727 if (authorized_default < 0 || authorized_default > 1) {
2724 hcd->authorized_default = hcd->wireless ? 0 : 1; 2728 if (hcd->wireless)
2725 else 2729 clear_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
2726 hcd->authorized_default = authorized_default; 2730 else
2731 set_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
2732 } else {
2733 if (authorized_default)
2734 set_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
2735 else
2736 clear_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
2737 }
2727 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags); 2738 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
2728 2739
2729 /* per default all interfaces are authorized */ 2740 /* per default all interfaces are authorized */
diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c
index 8d5b2f4113cd..f8bbd0b6d9fe 100644
--- a/drivers/usb/core/usb.c
+++ b/drivers/usb/core/usb.c
@@ -510,7 +510,7 @@ struct usb_device *usb_alloc_dev(struct usb_device *parent,
510 if (root_hub) /* Root hub always ok [and always wired] */ 510 if (root_hub) /* Root hub always ok [and always wired] */
511 dev->authorized = 1; 511 dev->authorized = 1;
512 else { 512 else {
513 dev->authorized = usb_hcd->authorized_default; 513 dev->authorized = !!HCD_DEV_AUTHORIZED(usb_hcd);
514 dev->wusb = usb_bus_is_wusb(bus) ? 1 : 0; 514 dev->wusb = usb_bus_is_wusb(bus) ? 1 : 0;
515 } 515 }
516 return dev; 516 return dev;