Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/usb.h> |
Alan Stern | 615ae11 | 2007-06-08 15:23:27 -0400 | [diff] [blame] | 2 | #include <linux/usb/ch9.h> |
Eric Lescouet | 27729aa | 2010-04-24 23:21:52 +0200 | [diff] [blame] | 3 | #include <linux/usb/hcd.h> |
Hans de Goede | 317149c | 2010-03-29 12:03:17 +0200 | [diff] [blame] | 4 | #include <linux/usb/quirks.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <linux/slab.h> |
| 7 | #include <linux/device.h> |
| 8 | #include <asm/byteorder.h> |
Greg KH | 6d5e825 | 2005-04-18 17:39:24 -0700 | [diff] [blame] | 9 | #include "usb.h" |
Eric Lescouet | 27729aa | 2010-04-24 23:21:52 +0200 | [diff] [blame] | 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
| 12 | #define USB_MAXALTSETTING 128 /* Hard limit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | #define USB_MAXCONFIG 8 /* Arbitrary limit */ |
| 15 | |
| 16 | |
| 17 | static inline const char *plural(int n) |
| 18 | { |
| 19 | return (n == 1 ? "" : "s"); |
| 20 | } |
| 21 | |
| 22 | static int find_next_descriptor(unsigned char *buffer, int size, |
| 23 | int dt1, int dt2, int *num_skipped) |
| 24 | { |
| 25 | struct usb_descriptor_header *h; |
| 26 | int n = 0; |
| 27 | unsigned char *buffer0 = buffer; |
| 28 | |
| 29 | /* Find the next descriptor of type dt1 or dt2 */ |
| 30 | while (size > 0) { |
| 31 | h = (struct usb_descriptor_header *) buffer; |
| 32 | if (h->bDescriptorType == dt1 || h->bDescriptorType == dt2) |
| 33 | break; |
| 34 | buffer += h->bLength; |
| 35 | size -= h->bLength; |
| 36 | ++n; |
| 37 | } |
| 38 | |
| 39 | /* Store the number of descriptors skipped and return the |
| 40 | * number of bytes skipped */ |
| 41 | if (num_skipped) |
| 42 | *num_skipped = n; |
| 43 | return buffer - buffer0; |
| 44 | } |
| 45 | |
Mathias Nyman | b37d83a | 2016-02-12 16:40:13 +0200 | [diff] [blame] | 46 | static void usb_parse_ssp_isoc_endpoint_companion(struct device *ddev, |
| 47 | int cfgno, int inum, int asnum, struct usb_host_endpoint *ep, |
| 48 | unsigned char *buffer, int size) |
| 49 | { |
| 50 | struct usb_ssp_isoc_ep_comp_descriptor *desc; |
| 51 | |
| 52 | /* |
| 53 | * The SuperSpeedPlus Isoc endpoint companion descriptor immediately |
| 54 | * follows the SuperSpeed Endpoint Companion descriptor |
| 55 | */ |
| 56 | desc = (struct usb_ssp_isoc_ep_comp_descriptor *) buffer; |
| 57 | if (desc->bDescriptorType != USB_DT_SSP_ISOC_ENDPOINT_COMP || |
| 58 | size < USB_DT_SSP_ISOC_EP_COMP_SIZE) { |
| 59 | dev_warn(ddev, "Invalid SuperSpeedPlus isoc endpoint companion" |
| 60 | "for config %d interface %d altsetting %d ep %d.\n", |
| 61 | cfgno, inum, asnum, ep->desc.bEndpointAddress); |
| 62 | return; |
| 63 | } |
| 64 | memcpy(&ep->ssp_isoc_ep_comp, desc, USB_DT_SSP_ISOC_EP_COMP_SIZE); |
| 65 | } |
| 66 | |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 67 | static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno, |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 68 | int inum, int asnum, struct usb_host_endpoint *ep, |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 69 | unsigned char *buffer, int size) |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 70 | { |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 71 | struct usb_ss_ep_comp_descriptor *desc; |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 72 | int max_tx; |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 73 | |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 74 | /* The SuperSpeed endpoint companion descriptor is supposed to |
| 75 | * be the first thing immediately following the endpoint descriptor. |
| 76 | */ |
Sarah Sharp | f0058c6 | 2009-04-29 19:06:20 -0700 | [diff] [blame] | 77 | desc = (struct usb_ss_ep_comp_descriptor *) buffer; |
Mathias Nyman | b37d83a | 2016-02-12 16:40:13 +0200 | [diff] [blame] | 78 | |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 79 | if (desc->bDescriptorType != USB_DT_SS_ENDPOINT_COMP || |
| 80 | size < USB_DT_SS_EP_COMP_SIZE) { |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 81 | dev_warn(ddev, "No SuperSpeed endpoint companion for config %d " |
| 82 | " interface %d altsetting %d ep %d: " |
| 83 | "using minimum values\n", |
| 84 | cfgno, inum, asnum, ep->desc.bEndpointAddress); |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 85 | |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 86 | /* Fill in some default values. |
| 87 | * Leave bmAttributes as zero, which will mean no streams for |
| 88 | * bulk, and isoc won't support multiple bursts of packets. |
| 89 | * With bursts of only one packet, and a Mult of 1, the max |
| 90 | * amount of data moved per endpoint service interval is one |
| 91 | * packet. |
| 92 | */ |
| 93 | ep->ss_ep_comp.bLength = USB_DT_SS_EP_COMP_SIZE; |
| 94 | ep->ss_ep_comp.bDescriptorType = USB_DT_SS_ENDPOINT_COMP; |
| 95 | if (usb_endpoint_xfer_isoc(&ep->desc) || |
| 96 | usb_endpoint_xfer_int(&ep->desc)) |
| 97 | ep->ss_ep_comp.wBytesPerInterval = |
| 98 | ep->desc.wMaxPacketSize; |
| 99 | return; |
| 100 | } |
Mathias Nyman | 59b9023 | 2016-03-29 13:47:09 +0300 | [diff] [blame] | 101 | buffer += desc->bLength; |
| 102 | size -= desc->bLength; |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 103 | memcpy(&ep->ss_ep_comp, desc, USB_DT_SS_EP_COMP_SIZE); |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 104 | |
| 105 | /* Check the various values */ |
| 106 | if (usb_endpoint_xfer_control(&ep->desc) && desc->bMaxBurst != 0) { |
| 107 | dev_warn(ddev, "Control endpoint with bMaxBurst = %d in " |
| 108 | "config %d interface %d altsetting %d ep %d: " |
| 109 | "setting to zero\n", desc->bMaxBurst, |
| 110 | cfgno, inum, asnum, ep->desc.bEndpointAddress); |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 111 | ep->ss_ep_comp.bMaxBurst = 0; |
| 112 | } else if (desc->bMaxBurst > 15) { |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 113 | dev_warn(ddev, "Endpoint with bMaxBurst = %d in " |
| 114 | "config %d interface %d altsetting %d ep %d: " |
| 115 | "setting to 15\n", desc->bMaxBurst, |
| 116 | cfgno, inum, asnum, ep->desc.bEndpointAddress); |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 117 | ep->ss_ep_comp.bMaxBurst = 15; |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 118 | } |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 119 | |
| 120 | if ((usb_endpoint_xfer_control(&ep->desc) || |
| 121 | usb_endpoint_xfer_int(&ep->desc)) && |
| 122 | desc->bmAttributes != 0) { |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 123 | dev_warn(ddev, "%s endpoint with bmAttributes = %d in " |
| 124 | "config %d interface %d altsetting %d ep %d: " |
| 125 | "setting to zero\n", |
| 126 | usb_endpoint_xfer_control(&ep->desc) ? "Control" : "Bulk", |
| 127 | desc->bmAttributes, |
| 128 | cfgno, inum, asnum, ep->desc.bEndpointAddress); |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 129 | ep->ss_ep_comp.bmAttributes = 0; |
| 130 | } else if (usb_endpoint_xfer_bulk(&ep->desc) && |
| 131 | desc->bmAttributes > 16) { |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 132 | dev_warn(ddev, "Bulk endpoint with more than 65536 streams in " |
| 133 | "config %d interface %d altsetting %d ep %d: " |
| 134 | "setting to max\n", |
| 135 | cfgno, inum, asnum, ep->desc.bEndpointAddress); |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 136 | ep->ss_ep_comp.bmAttributes = 16; |
| 137 | } else if (usb_endpoint_xfer_isoc(&ep->desc) && |
Mathias Nyman | b37d83a | 2016-02-12 16:40:13 +0200 | [diff] [blame] | 138 | !USB_SS_SSP_ISOC_COMP(desc->bmAttributes) && |
Mathias Nyman | ff30cbc | 2015-09-21 17:46:09 +0300 | [diff] [blame] | 139 | USB_SS_MULT(desc->bmAttributes) > 3) { |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 140 | dev_warn(ddev, "Isoc endpoint has Mult of %d in " |
| 141 | "config %d interface %d altsetting %d ep %d: " |
Ben Hutchings | 5377adb | 2015-11-18 02:01:21 +0000 | [diff] [blame] | 142 | "setting to 3\n", |
| 143 | USB_SS_MULT(desc->bmAttributes), |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 144 | cfgno, inum, asnum, ep->desc.bEndpointAddress); |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 145 | ep->ss_ep_comp.bmAttributes = 2; |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 146 | } |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 147 | |
| 148 | if (usb_endpoint_xfer_isoc(&ep->desc)) |
Mathias Nyman | ff30cbc | 2015-09-21 17:46:09 +0300 | [diff] [blame] | 149 | max_tx = (desc->bMaxBurst + 1) * |
| 150 | (USB_SS_MULT(desc->bmAttributes)) * |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 151 | usb_endpoint_maxp(&ep->desc); |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 152 | else if (usb_endpoint_xfer_int(&ep->desc)) |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 153 | max_tx = usb_endpoint_maxp(&ep->desc) * |
Sebastian Andrzej Siewior | 7de7c7d | 2011-07-29 11:05:45 +0200 | [diff] [blame] | 154 | (desc->bMaxBurst + 1); |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 155 | else |
| 156 | max_tx = 999999; |
Sebastian Andrzej Siewior | 64b3c30 | 2011-04-11 20:19:12 +0200 | [diff] [blame] | 157 | if (le16_to_cpu(desc->wBytesPerInterval) > max_tx) { |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 158 | dev_warn(ddev, "%s endpoint with wBytesPerInterval of %d in " |
| 159 | "config %d interface %d altsetting %d ep %d: " |
| 160 | "setting to %d\n", |
| 161 | usb_endpoint_xfer_isoc(&ep->desc) ? "Isoc" : "Int", |
Sebastian Andrzej Siewior | 7de7c7d | 2011-07-29 11:05:45 +0200 | [diff] [blame] | 162 | le16_to_cpu(desc->wBytesPerInterval), |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 163 | cfgno, inum, asnum, ep->desc.bEndpointAddress, |
| 164 | max_tx); |
Sebastian Andrzej Siewior | 7de7c7d | 2011-07-29 11:05:45 +0200 | [diff] [blame] | 165 | ep->ss_ep_comp.wBytesPerInterval = cpu_to_le16(max_tx); |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 166 | } |
Mathias Nyman | 59b9023 | 2016-03-29 13:47:09 +0300 | [diff] [blame] | 167 | /* Parse a possible SuperSpeedPlus isoc ep companion descriptor */ |
| 168 | if (usb_endpoint_xfer_isoc(&ep->desc) && |
| 169 | USB_SS_SSP_ISOC_COMP(desc->bmAttributes)) |
| 170 | usb_parse_ssp_isoc_endpoint_companion(ddev, cfgno, inum, asnum, |
| 171 | ep, buffer, size); |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 172 | } |
| 173 | |
Alan Stern | aed9d65 | 2016-08-01 15:25:56 -0400 | [diff] [blame] | 174 | static const unsigned short low_speed_maxpacket_maxes[4] = { |
| 175 | [USB_ENDPOINT_XFER_CONTROL] = 8, |
| 176 | [USB_ENDPOINT_XFER_ISOC] = 0, |
| 177 | [USB_ENDPOINT_XFER_BULK] = 0, |
| 178 | [USB_ENDPOINT_XFER_INT] = 8, |
| 179 | }; |
| 180 | static const unsigned short full_speed_maxpacket_maxes[4] = { |
| 181 | [USB_ENDPOINT_XFER_CONTROL] = 64, |
| 182 | [USB_ENDPOINT_XFER_ISOC] = 1023, |
| 183 | [USB_ENDPOINT_XFER_BULK] = 64, |
| 184 | [USB_ENDPOINT_XFER_INT] = 64, |
| 185 | }; |
| 186 | static const unsigned short high_speed_maxpacket_maxes[4] = { |
| 187 | [USB_ENDPOINT_XFER_CONTROL] = 64, |
| 188 | [USB_ENDPOINT_XFER_ISOC] = 1024, |
Alan Stern | 1fac4fc | 2018-05-03 11:04:48 -0400 | [diff] [blame] | 189 | |
| 190 | /* Bulk should be 512, but some devices use 1024: we will warn below */ |
| 191 | [USB_ENDPOINT_XFER_BULK] = 1024, |
Alan Stern | 6c73358 | 2016-08-22 16:58:53 -0400 | [diff] [blame] | 192 | [USB_ENDPOINT_XFER_INT] = 1024, |
Alan Stern | aed9d65 | 2016-08-01 15:25:56 -0400 | [diff] [blame] | 193 | }; |
| 194 | static const unsigned short super_speed_maxpacket_maxes[4] = { |
| 195 | [USB_ENDPOINT_XFER_CONTROL] = 512, |
| 196 | [USB_ENDPOINT_XFER_ISOC] = 1024, |
| 197 | [USB_ENDPOINT_XFER_BULK] = 1024, |
| 198 | [USB_ENDPOINT_XFER_INT] = 1024, |
| 199 | }; |
| 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | static int usb_parse_endpoint(struct device *ddev, int cfgno, int inum, |
| 202 | int asnum, struct usb_host_interface *ifp, int num_ep, |
| 203 | unsigned char *buffer, int size) |
| 204 | { |
| 205 | unsigned char *buffer0 = buffer; |
| 206 | struct usb_endpoint_descriptor *d; |
| 207 | struct usb_host_endpoint *endpoint; |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 208 | int n, i, j, retval; |
Alan Stern | aed9d65 | 2016-08-01 15:25:56 -0400 | [diff] [blame] | 209 | unsigned int maxp; |
| 210 | const unsigned short *maxpacket_maxes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | d = (struct usb_endpoint_descriptor *) buffer; |
| 213 | buffer += d->bLength; |
| 214 | size -= d->bLength; |
| 215 | |
| 216 | if (d->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE) |
| 217 | n = USB_DT_ENDPOINT_AUDIO_SIZE; |
| 218 | else if (d->bLength >= USB_DT_ENDPOINT_SIZE) |
| 219 | n = USB_DT_ENDPOINT_SIZE; |
| 220 | else { |
| 221 | dev_warn(ddev, "config %d interface %d altsetting %d has an " |
| 222 | "invalid endpoint descriptor of length %d, skipping\n", |
| 223 | cfgno, inum, asnum, d->bLength); |
| 224 | goto skip_to_next_endpoint_or_interface_descriptor; |
| 225 | } |
| 226 | |
| 227 | i = d->bEndpointAddress & ~USB_ENDPOINT_DIR_MASK; |
| 228 | if (i >= 16 || i == 0) { |
| 229 | dev_warn(ddev, "config %d interface %d altsetting %d has an " |
| 230 | "invalid endpoint with address 0x%X, skipping\n", |
| 231 | cfgno, inum, asnum, d->bEndpointAddress); |
| 232 | goto skip_to_next_endpoint_or_interface_descriptor; |
| 233 | } |
| 234 | |
| 235 | /* Only store as many endpoints as we have room for */ |
| 236 | if (ifp->desc.bNumEndpoints >= num_ep) |
| 237 | goto skip_to_next_endpoint_or_interface_descriptor; |
| 238 | |
Alan Stern | 05b0f2f | 2016-12-19 12:03:41 -0500 | [diff] [blame] | 239 | /* Check for duplicate endpoint addresses */ |
| 240 | for (i = 0; i < ifp->desc.bNumEndpoints; ++i) { |
| 241 | if (ifp->endpoint[i].desc.bEndpointAddress == |
| 242 | d->bEndpointAddress) { |
| 243 | dev_warn(ddev, "config %d interface %d altsetting %d has a duplicate endpoint with address 0x%X, skipping\n", |
| 244 | cfgno, inum, asnum, d->bEndpointAddress); |
| 245 | goto skip_to_next_endpoint_or_interface_descriptor; |
| 246 | } |
| 247 | } |
| 248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | endpoint = &ifp->endpoint[ifp->desc.bNumEndpoints]; |
| 250 | ++ifp->desc.bNumEndpoints; |
| 251 | |
| 252 | memcpy(&endpoint->desc, d, n); |
| 253 | INIT_LIST_HEAD(&endpoint->urb_list); |
| 254 | |
Alan Stern | 08c5cd3 | 2016-09-16 10:24:26 -0400 | [diff] [blame] | 255 | /* |
| 256 | * Fix up bInterval values outside the legal range. |
| 257 | * Use 10 or 8 ms if no proper value can be guessed. |
| 258 | */ |
Alan Stern | 615ae11 | 2007-06-08 15:23:27 -0400 | [diff] [blame] | 259 | i = 0; /* i = min, j = max, n = default */ |
| 260 | j = 255; |
| 261 | if (usb_endpoint_xfer_int(d)) { |
| 262 | i = 1; |
| 263 | switch (to_usb_device(ddev)->speed) { |
Mathias Nyman | 8a1b272 | 2015-12-10 09:59:25 +0200 | [diff] [blame] | 264 | case USB_SPEED_SUPER_PLUS: |
Sarah Sharp | 6b403b0 | 2009-04-27 19:54:10 -0700 | [diff] [blame] | 265 | case USB_SPEED_SUPER: |
Alan Stern | 615ae11 | 2007-06-08 15:23:27 -0400 | [diff] [blame] | 266 | case USB_SPEED_HIGH: |
Alan Stern | 08c5cd3 | 2016-09-16 10:24:26 -0400 | [diff] [blame] | 267 | /* |
| 268 | * Many device manufacturers are using full-speed |
Laurent Pinchart | 300871c | 2007-06-12 21:47:17 +0200 | [diff] [blame] | 269 | * bInterval values in high-speed interrupt endpoint |
Alan Stern | 08c5cd3 | 2016-09-16 10:24:26 -0400 | [diff] [blame] | 270 | * descriptors. Try to fix those and fall back to an |
| 271 | * 8-ms default value otherwise. |
| 272 | */ |
Laurent Pinchart | 300871c | 2007-06-12 21:47:17 +0200 | [diff] [blame] | 273 | n = fls(d->bInterval*8); |
| 274 | if (n == 0) |
Alan Stern | 08c5cd3 | 2016-09-16 10:24:26 -0400 | [diff] [blame] | 275 | n = 7; /* 8 ms = 2^(7-1) uframes */ |
Alan Stern | 615ae11 | 2007-06-08 15:23:27 -0400 | [diff] [blame] | 276 | j = 16; |
James P Michels III | cd83ce9 | 2014-07-27 13:28:04 -0400 | [diff] [blame] | 277 | |
| 278 | /* |
| 279 | * Adjust bInterval for quirked devices. |
Samuel Thibault | 222ccd4 | 2017-03-13 20:50:08 +0100 | [diff] [blame] | 280 | */ |
| 281 | /* |
| 282 | * This quirk fixes bIntervals reported in ms. |
| 283 | */ |
| 284 | if (to_usb_device(ddev)->quirks & |
| 285 | USB_QUIRK_LINEAR_FRAME_INTR_BINTERVAL) { |
| 286 | n = clamp(fls(d->bInterval) + 3, i, j); |
| 287 | i = j = n; |
| 288 | } |
| 289 | /* |
James P Michels III | cd83ce9 | 2014-07-27 13:28:04 -0400 | [diff] [blame] | 290 | * This quirk fixes bIntervals reported in |
| 291 | * linear microframes. |
| 292 | */ |
| 293 | if (to_usb_device(ddev)->quirks & |
| 294 | USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL) { |
| 295 | n = clamp(fls(d->bInterval), i, j); |
| 296 | i = j = n; |
| 297 | } |
Alan Stern | 615ae11 | 2007-06-08 15:23:27 -0400 | [diff] [blame] | 298 | break; |
| 299 | default: /* USB_SPEED_FULL or _LOW */ |
Alan Stern | 08c5cd3 | 2016-09-16 10:24:26 -0400 | [diff] [blame] | 300 | /* |
| 301 | * For low-speed, 10 ms is the official minimum. |
Alan Stern | 615ae11 | 2007-06-08 15:23:27 -0400 | [diff] [blame] | 302 | * But some "overclocked" devices might want faster |
Alan Stern | 08c5cd3 | 2016-09-16 10:24:26 -0400 | [diff] [blame] | 303 | * polling so we'll allow it. |
| 304 | */ |
| 305 | n = 10; |
Alan Stern | 615ae11 | 2007-06-08 15:23:27 -0400 | [diff] [blame] | 306 | break; |
| 307 | } |
| 308 | } else if (usb_endpoint_xfer_isoc(d)) { |
| 309 | i = 1; |
| 310 | j = 16; |
| 311 | switch (to_usb_device(ddev)->speed) { |
| 312 | case USB_SPEED_HIGH: |
Alan Stern | 08c5cd3 | 2016-09-16 10:24:26 -0400 | [diff] [blame] | 313 | n = 7; /* 8 ms = 2^(7-1) uframes */ |
Alan Stern | 615ae11 | 2007-06-08 15:23:27 -0400 | [diff] [blame] | 314 | break; |
| 315 | default: /* USB_SPEED_FULL */ |
Alan Stern | 08c5cd3 | 2016-09-16 10:24:26 -0400 | [diff] [blame] | 316 | n = 4; /* 8 ms = 2^(4-1) frames */ |
Alan Stern | 615ae11 | 2007-06-08 15:23:27 -0400 | [diff] [blame] | 317 | break; |
| 318 | } |
| 319 | } |
| 320 | if (d->bInterval < i || d->bInterval > j) { |
| 321 | dev_warn(ddev, "config %d interface %d altsetting %d " |
| 322 | "endpoint 0x%X has an invalid bInterval %d, " |
| 323 | "changing to %d\n", |
| 324 | cfgno, inum, asnum, |
| 325 | d->bEndpointAddress, d->bInterval, n); |
| 326 | endpoint->desc.bInterval = n; |
| 327 | } |
| 328 | |
Alan Stern | 60aac1e | 2007-06-08 15:25:02 -0400 | [diff] [blame] | 329 | /* Some buggy low-speed devices have Bulk endpoints, which is |
| 330 | * explicitly forbidden by the USB spec. In an attempt to make |
| 331 | * them usable, we will try treating them as Interrupt endpoints. |
| 332 | */ |
| 333 | if (to_usb_device(ddev)->speed == USB_SPEED_LOW && |
| 334 | usb_endpoint_xfer_bulk(d)) { |
| 335 | dev_warn(ddev, "config %d interface %d altsetting %d " |
| 336 | "endpoint 0x%X is Bulk; changing to Interrupt\n", |
| 337 | cfgno, inum, asnum, d->bEndpointAddress); |
| 338 | endpoint->desc.bmAttributes = USB_ENDPOINT_XFER_INT; |
| 339 | endpoint->desc.bInterval = 1; |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 340 | if (usb_endpoint_maxp(&endpoint->desc) > 8) |
Alan Stern | 60aac1e | 2007-06-08 15:25:02 -0400 | [diff] [blame] | 341 | endpoint->desc.wMaxPacketSize = cpu_to_le16(8); |
| 342 | } |
| 343 | |
Alan Stern | aed9d65 | 2016-08-01 15:25:56 -0400 | [diff] [blame] | 344 | /* Validate the wMaxPacketSize field */ |
| 345 | maxp = usb_endpoint_maxp(&endpoint->desc); |
| 346 | |
| 347 | /* Find the highest legal maxpacket size for this endpoint */ |
| 348 | i = 0; /* additional transactions per microframe */ |
| 349 | switch (to_usb_device(ddev)->speed) { |
| 350 | case USB_SPEED_LOW: |
| 351 | maxpacket_maxes = low_speed_maxpacket_maxes; |
| 352 | break; |
| 353 | case USB_SPEED_FULL: |
| 354 | maxpacket_maxes = full_speed_maxpacket_maxes; |
| 355 | break; |
| 356 | case USB_SPEED_HIGH: |
| 357 | /* Bits 12..11 are allowed only for HS periodic endpoints */ |
| 358 | if (usb_endpoint_xfer_int(d) || usb_endpoint_xfer_isoc(d)) { |
| 359 | i = maxp & (BIT(12) | BIT(11)); |
| 360 | maxp &= ~i; |
| 361 | } |
| 362 | /* fallthrough */ |
| 363 | default: |
| 364 | maxpacket_maxes = high_speed_maxpacket_maxes; |
| 365 | break; |
| 366 | case USB_SPEED_SUPER: |
| 367 | case USB_SPEED_SUPER_PLUS: |
| 368 | maxpacket_maxes = super_speed_maxpacket_maxes; |
| 369 | break; |
| 370 | } |
| 371 | j = maxpacket_maxes[usb_endpoint_type(&endpoint->desc)]; |
| 372 | |
| 373 | if (maxp > j) { |
| 374 | dev_warn(ddev, "config %d interface %d altsetting %d endpoint 0x%X has invalid maxpacket %d, setting to %d\n", |
| 375 | cfgno, inum, asnum, d->bEndpointAddress, maxp, j); |
| 376 | maxp = j; |
| 377 | endpoint->desc.wMaxPacketSize = cpu_to_le16(i | maxp); |
| 378 | } |
| 379 | |
David Brownell | caa9ef6 | 2008-02-08 15:08:44 -0800 | [diff] [blame] | 380 | /* |
| 381 | * Some buggy high speed devices have bulk endpoints using |
| 382 | * maxpacket sizes other than 512. High speed HCDs may not |
| 383 | * be able to handle that particular bug, so let's warn... |
| 384 | */ |
| 385 | if (to_usb_device(ddev)->speed == USB_SPEED_HIGH |
| 386 | && usb_endpoint_xfer_bulk(d)) { |
David Brownell | caa9ef6 | 2008-02-08 15:08:44 -0800 | [diff] [blame] | 387 | if (maxp != 512) |
| 388 | dev_warn(ddev, "config %d interface %d altsetting %d " |
| 389 | "bulk endpoint 0x%X has invalid maxpacket %d\n", |
| 390 | cfgno, inum, asnum, d->bEndpointAddress, |
| 391 | maxp); |
| 392 | } |
| 393 | |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 394 | /* Parse a possible SuperSpeed endpoint companion descriptor */ |
Mathias Nyman | 8a1b272 | 2015-12-10 09:59:25 +0200 | [diff] [blame] | 395 | if (to_usb_device(ddev)->speed >= USB_SPEED_SUPER) |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 396 | usb_parse_ss_endpoint_companion(ddev, cfgno, |
| 397 | inum, asnum, endpoint, buffer, size); |
Sarah Sharp | 9f8e443 | 2009-07-27 12:04:52 -0700 | [diff] [blame] | 398 | |
Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 399 | /* Skip over any Class Specific or Vendor Specific descriptors; |
| 400 | * find the next endpoint or interface descriptor */ |
| 401 | endpoint->extra = buffer; |
| 402 | i = find_next_descriptor(buffer, size, USB_DT_ENDPOINT, |
| 403 | USB_DT_INTERFACE, &n); |
| 404 | endpoint->extralen = i; |
| 405 | retval = buffer - buffer0 + i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | if (n > 0) |
| 407 | dev_dbg(ddev, "skipped %d descriptor%s after %s\n", |
| 408 | n, plural(n), "endpoint"); |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 409 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
| 411 | skip_to_next_endpoint_or_interface_descriptor: |
| 412 | i = find_next_descriptor(buffer, size, USB_DT_ENDPOINT, |
| 413 | USB_DT_INTERFACE, NULL); |
| 414 | return buffer - buffer0 + i; |
| 415 | } |
| 416 | |
| 417 | void usb_release_interface_cache(struct kref *ref) |
| 418 | { |
| 419 | struct usb_interface_cache *intfc = ref_to_usb_interface_cache(ref); |
| 420 | int j; |
| 421 | |
Alan Stern | 4f62efe | 2005-10-24 16:24:14 -0400 | [diff] [blame] | 422 | for (j = 0; j < intfc->num_altsetting; j++) { |
| 423 | struct usb_host_interface *alt = &intfc->altsetting[j]; |
| 424 | |
| 425 | kfree(alt->endpoint); |
| 426 | kfree(alt->string); |
| 427 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | kfree(intfc); |
| 429 | } |
| 430 | |
| 431 | static int usb_parse_interface(struct device *ddev, int cfgno, |
| 432 | struct usb_host_config *config, unsigned char *buffer, int size, |
| 433 | u8 inums[], u8 nalts[]) |
| 434 | { |
| 435 | unsigned char *buffer0 = buffer; |
| 436 | struct usb_interface_descriptor *d; |
| 437 | int inum, asnum; |
| 438 | struct usb_interface_cache *intfc; |
| 439 | struct usb_host_interface *alt; |
| 440 | int i, n; |
| 441 | int len, retval; |
| 442 | int num_ep, num_ep_orig; |
| 443 | |
| 444 | d = (struct usb_interface_descriptor *) buffer; |
| 445 | buffer += d->bLength; |
| 446 | size -= d->bLength; |
| 447 | |
| 448 | if (d->bLength < USB_DT_INTERFACE_SIZE) |
| 449 | goto skip_to_next_interface_descriptor; |
| 450 | |
| 451 | /* Which interface entry is this? */ |
| 452 | intfc = NULL; |
| 453 | inum = d->bInterfaceNumber; |
| 454 | for (i = 0; i < config->desc.bNumInterfaces; ++i) { |
| 455 | if (inums[i] == inum) { |
| 456 | intfc = config->intf_cache[i]; |
| 457 | break; |
| 458 | } |
| 459 | } |
| 460 | if (!intfc || intfc->num_altsetting >= nalts[i]) |
| 461 | goto skip_to_next_interface_descriptor; |
| 462 | |
| 463 | /* Check for duplicate altsetting entries */ |
| 464 | asnum = d->bAlternateSetting; |
| 465 | for ((i = 0, alt = &intfc->altsetting[0]); |
| 466 | i < intfc->num_altsetting; |
| 467 | (++i, ++alt)) { |
| 468 | if (alt->desc.bAlternateSetting == asnum) { |
| 469 | dev_warn(ddev, "Duplicate descriptor for config %d " |
| 470 | "interface %d altsetting %d, skipping\n", |
| 471 | cfgno, inum, asnum); |
| 472 | goto skip_to_next_interface_descriptor; |
| 473 | } |
| 474 | } |
| 475 | |
| 476 | ++intfc->num_altsetting; |
| 477 | memcpy(&alt->desc, d, USB_DT_INTERFACE_SIZE); |
| 478 | |
| 479 | /* Skip over any Class Specific or Vendor Specific descriptors; |
| 480 | * find the first endpoint or interface descriptor */ |
| 481 | alt->extra = buffer; |
| 482 | i = find_next_descriptor(buffer, size, USB_DT_ENDPOINT, |
| 483 | USB_DT_INTERFACE, &n); |
| 484 | alt->extralen = i; |
| 485 | if (n > 0) |
| 486 | dev_dbg(ddev, "skipped %d descriptor%s after %s\n", |
| 487 | n, plural(n), "interface"); |
| 488 | buffer += i; |
| 489 | size -= i; |
| 490 | |
| 491 | /* Allocate space for the right(?) number of endpoints */ |
| 492 | num_ep = num_ep_orig = alt->desc.bNumEndpoints; |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 493 | alt->desc.bNumEndpoints = 0; /* Use as a counter */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | if (num_ep > USB_MAXENDPOINTS) { |
| 495 | dev_warn(ddev, "too many endpoints for config %d interface %d " |
| 496 | "altsetting %d: %d, using maximum allowed: %d\n", |
| 497 | cfgno, inum, asnum, num_ep, USB_MAXENDPOINTS); |
| 498 | num_ep = USB_MAXENDPOINTS; |
| 499 | } |
| 500 | |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 501 | if (num_ep > 0) { |
| 502 | /* Can't allocate 0 bytes */ |
Alan Stern | 57a21c1 | 2007-05-15 17:40:37 -0400 | [diff] [blame] | 503 | len = sizeof(struct usb_host_endpoint) * num_ep; |
| 504 | alt->endpoint = kzalloc(len, GFP_KERNEL); |
| 505 | if (!alt->endpoint) |
| 506 | return -ENOMEM; |
| 507 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
| 509 | /* Parse all the endpoint descriptors */ |
| 510 | n = 0; |
| 511 | while (size > 0) { |
| 512 | if (((struct usb_descriptor_header *) buffer)->bDescriptorType |
| 513 | == USB_DT_INTERFACE) |
| 514 | break; |
| 515 | retval = usb_parse_endpoint(ddev, cfgno, inum, asnum, alt, |
| 516 | num_ep, buffer, size); |
| 517 | if (retval < 0) |
| 518 | return retval; |
| 519 | ++n; |
| 520 | |
| 521 | buffer += retval; |
| 522 | size -= retval; |
| 523 | } |
| 524 | |
| 525 | if (n != num_ep_orig) |
| 526 | dev_warn(ddev, "config %d interface %d altsetting %d has %d " |
| 527 | "endpoint descriptor%s, different from the interface " |
| 528 | "descriptor's value: %d\n", |
| 529 | cfgno, inum, asnum, n, plural(n), num_ep_orig); |
| 530 | return buffer - buffer0; |
| 531 | |
| 532 | skip_to_next_interface_descriptor: |
| 533 | i = find_next_descriptor(buffer, size, USB_DT_INTERFACE, |
| 534 | USB_DT_INTERFACE, NULL); |
| 535 | return buffer - buffer0 + i; |
| 536 | } |
| 537 | |
Hans de Goede | 317149c | 2010-03-29 12:03:17 +0200 | [diff] [blame] | 538 | static int usb_parse_configuration(struct usb_device *dev, int cfgidx, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | struct usb_host_config *config, unsigned char *buffer, int size) |
| 540 | { |
Hans de Goede | 317149c | 2010-03-29 12:03:17 +0200 | [diff] [blame] | 541 | struct device *ddev = &dev->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | unsigned char *buffer0 = buffer; |
| 543 | int cfgno; |
| 544 | int nintf, nintf_orig; |
| 545 | int i, j, n; |
| 546 | struct usb_interface_cache *intfc; |
| 547 | unsigned char *buffer2; |
| 548 | int size2; |
| 549 | struct usb_descriptor_header *header; |
| 550 | int len, retval; |
| 551 | u8 inums[USB_MAXINTERFACES], nalts[USB_MAXINTERFACES]; |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 552 | unsigned iad_num = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
| 554 | memcpy(&config->desc, buffer, USB_DT_CONFIG_SIZE); |
Alan Stern | 99542e4 | 2017-12-12 14:25:13 -0500 | [diff] [blame] | 555 | nintf = nintf_orig = config->desc.bNumInterfaces; |
| 556 | config->desc.bNumInterfaces = 0; // Adjusted later |
| 557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | if (config->desc.bDescriptorType != USB_DT_CONFIG || |
Hans de Goede | b4f17a48 | 2013-08-03 16:37:48 +0200 | [diff] [blame] | 559 | config->desc.bLength < USB_DT_CONFIG_SIZE || |
| 560 | config->desc.bLength > size) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | dev_err(ddev, "invalid descriptor for config index %d: " |
| 562 | "type = 0x%X, length = %d\n", cfgidx, |
| 563 | config->desc.bDescriptorType, config->desc.bLength); |
| 564 | return -EINVAL; |
| 565 | } |
| 566 | cfgno = config->desc.bConfigurationValue; |
| 567 | |
| 568 | buffer += config->desc.bLength; |
| 569 | size -= config->desc.bLength; |
| 570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | if (nintf > USB_MAXINTERFACES) { |
| 572 | dev_warn(ddev, "config %d has too many interfaces: %d, " |
| 573 | "using maximum allowed: %d\n", |
| 574 | cfgno, nintf, USB_MAXINTERFACES); |
| 575 | nintf = USB_MAXINTERFACES; |
| 576 | } |
| 577 | |
| 578 | /* Go through the descriptors, checking their length and counting the |
| 579 | * number of altsettings for each interface */ |
| 580 | n = 0; |
| 581 | for ((buffer2 = buffer, size2 = size); |
| 582 | size2 > 0; |
| 583 | (buffer2 += header->bLength, size2 -= header->bLength)) { |
| 584 | |
| 585 | if (size2 < sizeof(struct usb_descriptor_header)) { |
| 586 | dev_warn(ddev, "config %d descriptor has %d excess " |
| 587 | "byte%s, ignoring\n", |
| 588 | cfgno, size2, plural(size2)); |
| 589 | break; |
| 590 | } |
| 591 | |
| 592 | header = (struct usb_descriptor_header *) buffer2; |
| 593 | if ((header->bLength > size2) || (header->bLength < 2)) { |
| 594 | dev_warn(ddev, "config %d has an invalid descriptor " |
| 595 | "of length %d, skipping remainder of the config\n", |
| 596 | cfgno, header->bLength); |
| 597 | break; |
| 598 | } |
| 599 | |
| 600 | if (header->bDescriptorType == USB_DT_INTERFACE) { |
| 601 | struct usb_interface_descriptor *d; |
| 602 | int inum; |
| 603 | |
| 604 | d = (struct usb_interface_descriptor *) header; |
| 605 | if (d->bLength < USB_DT_INTERFACE_SIZE) { |
| 606 | dev_warn(ddev, "config %d has an invalid " |
| 607 | "interface descriptor of length %d, " |
| 608 | "skipping\n", cfgno, d->bLength); |
| 609 | continue; |
| 610 | } |
| 611 | |
| 612 | inum = d->bInterfaceNumber; |
Hans de Goede | 317149c | 2010-03-29 12:03:17 +0200 | [diff] [blame] | 613 | |
| 614 | if ((dev->quirks & USB_QUIRK_HONOR_BNUMINTERFACES) && |
| 615 | n >= nintf_orig) { |
| 616 | dev_warn(ddev, "config %d has more interface " |
| 617 | "descriptors, than it declares in " |
| 618 | "bNumInterfaces, ignoring interface " |
| 619 | "number: %d\n", cfgno, inum); |
| 620 | continue; |
| 621 | } |
| 622 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | if (inum >= nintf_orig) |
| 624 | dev_warn(ddev, "config %d has an invalid " |
| 625 | "interface number: %d but max is %d\n", |
| 626 | cfgno, inum, nintf_orig - 1); |
| 627 | |
| 628 | /* Have we already encountered this interface? |
| 629 | * Count its altsettings */ |
| 630 | for (i = 0; i < n; ++i) { |
| 631 | if (inums[i] == inum) |
| 632 | break; |
| 633 | } |
| 634 | if (i < n) { |
| 635 | if (nalts[i] < 255) |
| 636 | ++nalts[i]; |
| 637 | } else if (n < USB_MAXINTERFACES) { |
| 638 | inums[n] = inum; |
| 639 | nalts[n] = 1; |
| 640 | ++n; |
| 641 | } |
| 642 | |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 643 | } else if (header->bDescriptorType == |
| 644 | USB_DT_INTERFACE_ASSOCIATION) { |
Greg Kroah-Hartman | a6d4ce2 | 2017-09-19 15:07:17 +0200 | [diff] [blame] | 645 | struct usb_interface_assoc_descriptor *d; |
| 646 | |
| 647 | d = (struct usb_interface_assoc_descriptor *)header; |
| 648 | if (d->bLength < USB_DT_INTERFACE_ASSOCIATION_SIZE) { |
| 649 | dev_warn(ddev, |
| 650 | "config %d has an invalid interface association descriptor of length %d, skipping\n", |
| 651 | cfgno, d->bLength); |
| 652 | continue; |
| 653 | } |
| 654 | |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 655 | if (iad_num == USB_MAXIADS) { |
| 656 | dev_warn(ddev, "found more Interface " |
| 657 | "Association Descriptors " |
| 658 | "than allocated for in " |
| 659 | "configuration %d\n", cfgno); |
| 660 | } else { |
Greg Kroah-Hartman | a6d4ce2 | 2017-09-19 15:07:17 +0200 | [diff] [blame] | 661 | config->intf_assoc[iad_num] = d; |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 662 | iad_num++; |
| 663 | } |
| 664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | } else if (header->bDescriptorType == USB_DT_DEVICE || |
| 666 | header->bDescriptorType == USB_DT_CONFIG) |
| 667 | dev_warn(ddev, "config %d contains an unexpected " |
| 668 | "descriptor of type 0x%X, skipping\n", |
| 669 | cfgno, header->bDescriptorType); |
| 670 | |
| 671 | } /* for ((buffer2 = buffer, size2 = size); ...) */ |
| 672 | size = buffer2 - buffer; |
| 673 | config->desc.wTotalLength = cpu_to_le16(buffer2 - buffer0); |
| 674 | |
| 675 | if (n != nintf) |
| 676 | dev_warn(ddev, "config %d has %d interface%s, different from " |
| 677 | "the descriptor's value: %d\n", |
| 678 | cfgno, n, plural(n), nintf_orig); |
| 679 | else if (n == 0) |
| 680 | dev_warn(ddev, "config %d has no interfaces?\n", cfgno); |
| 681 | config->desc.bNumInterfaces = nintf = n; |
| 682 | |
| 683 | /* Check for missing interface numbers */ |
| 684 | for (i = 0; i < nintf; ++i) { |
| 685 | for (j = 0; j < nintf; ++j) { |
| 686 | if (inums[j] == i) |
| 687 | break; |
| 688 | } |
| 689 | if (j >= nintf) |
| 690 | dev_warn(ddev, "config %d has no interface number " |
| 691 | "%d\n", cfgno, i); |
| 692 | } |
| 693 | |
| 694 | /* Allocate the usb_interface_caches and altsetting arrays */ |
| 695 | for (i = 0; i < nintf; ++i) { |
| 696 | j = nalts[i]; |
| 697 | if (j > USB_MAXALTSETTING) { |
| 698 | dev_warn(ddev, "too many alternate settings for " |
| 699 | "config %d interface %d: %d, " |
| 700 | "using maximum allowed: %d\n", |
| 701 | cfgno, inums[i], j, USB_MAXALTSETTING); |
| 702 | nalts[i] = j = USB_MAXALTSETTING; |
| 703 | } |
| 704 | |
| 705 | len = sizeof(*intfc) + sizeof(struct usb_host_interface) * j; |
Alan Stern | 0a1ef3b | 2005-10-24 15:38:24 -0400 | [diff] [blame] | 706 | config->intf_cache[i] = intfc = kzalloc(len, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | if (!intfc) |
| 708 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | kref_init(&intfc->ref); |
| 710 | } |
| 711 | |
Sarah Sharp | 663c30d | 2009-04-27 19:58:14 -0700 | [diff] [blame] | 712 | /* FIXME: parse the BOS descriptor */ |
| 713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | /* Skip over any Class Specific or Vendor Specific descriptors; |
| 715 | * find the first interface descriptor */ |
| 716 | config->extra = buffer; |
| 717 | i = find_next_descriptor(buffer, size, USB_DT_INTERFACE, |
| 718 | USB_DT_INTERFACE, &n); |
| 719 | config->extralen = i; |
| 720 | if (n > 0) |
| 721 | dev_dbg(ddev, "skipped %d descriptor%s after %s\n", |
| 722 | n, plural(n), "configuration"); |
| 723 | buffer += i; |
| 724 | size -= i; |
| 725 | |
| 726 | /* Parse all the interface/altsetting descriptors */ |
| 727 | while (size > 0) { |
| 728 | retval = usb_parse_interface(ddev, cfgno, config, |
| 729 | buffer, size, inums, nalts); |
| 730 | if (retval < 0) |
| 731 | return retval; |
| 732 | |
| 733 | buffer += retval; |
| 734 | size -= retval; |
| 735 | } |
| 736 | |
| 737 | /* Check for missing altsettings */ |
| 738 | for (i = 0; i < nintf; ++i) { |
| 739 | intfc = config->intf_cache[i]; |
| 740 | for (j = 0; j < intfc->num_altsetting; ++j) { |
| 741 | for (n = 0; n < intfc->num_altsetting; ++n) { |
| 742 | if (intfc->altsetting[n].desc. |
| 743 | bAlternateSetting == j) |
| 744 | break; |
| 745 | } |
| 746 | if (n >= intfc->num_altsetting) |
| 747 | dev_warn(ddev, "config %d interface %d has no " |
| 748 | "altsetting %d\n", cfgno, inums[i], j); |
| 749 | } |
| 750 | } |
| 751 | |
| 752 | return 0; |
| 753 | } |
| 754 | |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 755 | /* hub-only!! ... and only exported for reset/reinit path. |
| 756 | * otherwise used internally on disconnect/destroy path |
| 757 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | void usb_destroy_configuration(struct usb_device *dev) |
| 759 | { |
| 760 | int c, i; |
| 761 | |
| 762 | if (!dev->config) |
| 763 | return; |
| 764 | |
| 765 | if (dev->rawdescriptors) { |
Greg Kroah-Hartman | 0f8d02d | 2017-12-13 11:59:39 +0100 | [diff] [blame] | 766 | for (i = 0; i < dev->descriptor.bNumConfigurations; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | kfree(dev->rawdescriptors[i]); |
| 768 | |
| 769 | kfree(dev->rawdescriptors); |
| 770 | dev->rawdescriptors = NULL; |
| 771 | } |
| 772 | |
Greg Kroah-Hartman | 0f8d02d | 2017-12-13 11:59:39 +0100 | [diff] [blame] | 773 | for (c = 0; c < dev->descriptor.bNumConfigurations; c++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | struct usb_host_config *cf = &dev->config[c]; |
| 775 | |
| 776 | kfree(cf->string); |
Greg Kroah-Hartman | 0f8d02d | 2017-12-13 11:59:39 +0100 | [diff] [blame] | 777 | for (i = 0; i < cf->desc.bNumInterfaces; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | if (cf->intf_cache[i]) |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 779 | kref_put(&cf->intf_cache[i]->ref, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | usb_release_interface_cache); |
| 781 | } |
| 782 | } |
| 783 | kfree(dev->config); |
| 784 | dev->config = NULL; |
| 785 | } |
| 786 | |
| 787 | |
Inaky Perez-Gonzalez | 1145065 | 2007-07-31 20:34:02 -0700 | [diff] [blame] | 788 | /* |
| 789 | * Get the USB config descriptors, cache and parse'em |
| 790 | * |
| 791 | * hub-only!! ... and only in reset path, or usb_new_device() |
| 792 | * (used by real hubs and virtual root hubs) |
Inaky Perez-Gonzalez | 1145065 | 2007-07-31 20:34:02 -0700 | [diff] [blame] | 793 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | int usb_get_configuration(struct usb_device *dev) |
| 795 | { |
| 796 | struct device *ddev = &dev->dev; |
| 797 | int ncfg = dev->descriptor.bNumConfigurations; |
Inaky Perez-Gonzalez | 1145065 | 2007-07-31 20:34:02 -0700 | [diff] [blame] | 798 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | unsigned int cfgno, length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | unsigned char *bigbuffer; |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 801 | struct usb_config_descriptor *desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | |
Inaky Perez-Gonzalez | 1145065 | 2007-07-31 20:34:02 -0700 | [diff] [blame] | 803 | cfgno = 0; |
Inaky Perez-Gonzalez | 1145065 | 2007-07-31 20:34:02 -0700 | [diff] [blame] | 804 | result = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | if (ncfg > USB_MAXCONFIG) { |
| 806 | dev_warn(ddev, "too many configurations: %d, " |
| 807 | "using maximum allowed: %d\n", ncfg, USB_MAXCONFIG); |
| 808 | dev->descriptor.bNumConfigurations = ncfg = USB_MAXCONFIG; |
| 809 | } |
| 810 | |
| 811 | if (ncfg < 1) { |
| 812 | dev_err(ddev, "no configurations\n"); |
| 813 | return -EINVAL; |
| 814 | } |
| 815 | |
| 816 | length = ncfg * sizeof(struct usb_host_config); |
Alan Stern | 0a1ef3b | 2005-10-24 15:38:24 -0400 | [diff] [blame] | 817 | dev->config = kzalloc(length, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | if (!dev->config) |
| 819 | goto err2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | |
| 821 | length = ncfg * sizeof(char *); |
Alan Stern | 0a1ef3b | 2005-10-24 15:38:24 -0400 | [diff] [blame] | 822 | dev->rawdescriptors = kzalloc(length, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | if (!dev->rawdescriptors) |
| 824 | goto err2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | |
Michal Nazarewicz | e8f4af3 | 2010-04-17 17:12:58 +0200 | [diff] [blame] | 826 | desc = kmalloc(USB_DT_CONFIG_SIZE, GFP_KERNEL); |
| 827 | if (!desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | goto err2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
Inaky Perez-Gonzalez | 1145065 | 2007-07-31 20:34:02 -0700 | [diff] [blame] | 830 | result = 0; |
| 831 | for (; cfgno < ncfg; cfgno++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | /* We grab just the first descriptor so we know how long |
| 833 | * the whole configuration is */ |
| 834 | result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, |
Michal Nazarewicz | e8f4af3 | 2010-04-17 17:12:58 +0200 | [diff] [blame] | 835 | desc, USB_DT_CONFIG_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | if (result < 0) { |
| 837 | dev_err(ddev, "unable to read config index %d " |
Inaky Perez-Gonzalez | 1145065 | 2007-07-31 20:34:02 -0700 | [diff] [blame] | 838 | "descriptor/%s: %d\n", cfgno, "start", result); |
Lan Tianyu | 3a22b87 | 2012-09-05 13:44:37 +0800 | [diff] [blame] | 839 | if (result != -EPIPE) |
| 840 | goto err; |
Inaky Perez-Gonzalez | cb4c8fe | 2006-08-25 19:35:28 -0700 | [diff] [blame] | 841 | dev_err(ddev, "chopping to %d config(s)\n", cfgno); |
| 842 | dev->descriptor.bNumConfigurations = cfgno; |
| 843 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | } else if (result < 4) { |
| 845 | dev_err(ddev, "config index %d descriptor too short " |
| 846 | "(expected %i, got %i)\n", cfgno, |
| 847 | USB_DT_CONFIG_SIZE, result); |
| 848 | result = -EINVAL; |
| 849 | goto err; |
| 850 | } |
| 851 | length = max((int) le16_to_cpu(desc->wTotalLength), |
| 852 | USB_DT_CONFIG_SIZE); |
| 853 | |
| 854 | /* Now that we know the length, get the whole thing */ |
| 855 | bigbuffer = kmalloc(length, GFP_KERNEL); |
| 856 | if (!bigbuffer) { |
| 857 | result = -ENOMEM; |
| 858 | goto err; |
| 859 | } |
Julius Werner | d86db25 | 2014-03-04 11:27:38 -0800 | [diff] [blame] | 860 | |
| 861 | if (dev->quirks & USB_QUIRK_DELAY_INIT) |
Dmitry Fleytman | 43feb29 | 2017-09-05 11:40:56 +0300 | [diff] [blame] | 862 | msleep(200); |
Julius Werner | d86db25 | 2014-03-04 11:27:38 -0800 | [diff] [blame] | 863 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, |
| 865 | bigbuffer, length); |
| 866 | if (result < 0) { |
| 867 | dev_err(ddev, "unable to read config index %d " |
| 868 | "descriptor/%s\n", cfgno, "all"); |
| 869 | kfree(bigbuffer); |
| 870 | goto err; |
| 871 | } |
| 872 | if (result < length) { |
| 873 | dev_warn(ddev, "config index %d descriptor too short " |
| 874 | "(expected %i, got %i)\n", cfgno, length, result); |
| 875 | length = result; |
| 876 | } |
| 877 | |
| 878 | dev->rawdescriptors[cfgno] = bigbuffer; |
| 879 | |
Hans de Goede | 317149c | 2010-03-29 12:03:17 +0200 | [diff] [blame] | 880 | result = usb_parse_configuration(dev, cfgno, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | &dev->config[cfgno], bigbuffer, length); |
| 882 | if (result < 0) { |
| 883 | ++cfgno; |
| 884 | goto err; |
| 885 | } |
| 886 | } |
| 887 | result = 0; |
| 888 | |
| 889 | err: |
Michal Nazarewicz | e8f4af3 | 2010-04-17 17:12:58 +0200 | [diff] [blame] | 890 | kfree(desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | dev->descriptor.bNumConfigurations = cfgno; |
| 892 | err2: |
| 893 | if (result == -ENOMEM) |
| 894 | dev_err(ddev, "out of memory\n"); |
| 895 | return result; |
| 896 | } |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 897 | |
| 898 | void usb_release_bos_descriptor(struct usb_device *dev) |
| 899 | { |
| 900 | if (dev->bos) { |
| 901 | kfree(dev->bos->desc); |
| 902 | kfree(dev->bos); |
| 903 | dev->bos = NULL; |
| 904 | } |
| 905 | } |
| 906 | |
Masakazu Mokuno | 05ffc7e | 2017-11-10 01:25:50 +0900 | [diff] [blame] | 907 | static const __u8 bos_desc_len[256] = { |
| 908 | [USB_CAP_TYPE_WIRELESS_USB] = USB_DT_USB_WIRELESS_CAP_SIZE, |
| 909 | [USB_CAP_TYPE_EXT] = USB_DT_USB_EXT_CAP_SIZE, |
| 910 | [USB_SS_CAP_TYPE] = USB_DT_USB_SS_CAP_SIZE, |
| 911 | [USB_SSP_CAP_TYPE] = USB_DT_USB_SSP_CAP_SIZE(1), |
| 912 | [CONTAINER_ID_TYPE] = USB_DT_USB_SS_CONTN_ID_SIZE, |
| 913 | [USB_PTM_CAP_TYPE] = USB_DT_USB_PTM_ID_SIZE, |
| 914 | }; |
| 915 | |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 916 | /* Get BOS descriptor set */ |
| 917 | int usb_get_bos_descriptor(struct usb_device *dev) |
| 918 | { |
| 919 | struct device *ddev = &dev->dev; |
| 920 | struct usb_bos_descriptor *bos; |
| 921 | struct usb_dev_cap_header *cap; |
Masakazu Mokuno | 05ffc7e | 2017-11-10 01:25:50 +0900 | [diff] [blame] | 922 | struct usb_ssp_cap_descriptor *ssp_cap; |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 923 | unsigned char *buffer; |
Masakazu Mokuno | 05ffc7e | 2017-11-10 01:25:50 +0900 | [diff] [blame] | 924 | int length, total_len, num, i, ssac; |
| 925 | __u8 cap_type; |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 926 | int ret; |
| 927 | |
| 928 | bos = kzalloc(sizeof(struct usb_bos_descriptor), GFP_KERNEL); |
| 929 | if (!bos) |
| 930 | return -ENOMEM; |
| 931 | |
| 932 | /* Get BOS descriptor */ |
| 933 | ret = usb_get_descriptor(dev, USB_DT_BOS, 0, bos, USB_DT_BOS_SIZE); |
Alan Stern | feab6c8 | 2019-05-13 13:14:29 -0400 | [diff] [blame] | 934 | if (ret < USB_DT_BOS_SIZE || bos->bLength < USB_DT_BOS_SIZE) { |
| 935 | dev_err(ddev, "unable to get BOS descriptor or descriptor too short\n"); |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 936 | if (ret >= 0) |
| 937 | ret = -ENOMSG; |
| 938 | kfree(bos); |
| 939 | return ret; |
| 940 | } |
| 941 | |
| 942 | length = bos->bLength; |
| 943 | total_len = le16_to_cpu(bos->wTotalLength); |
| 944 | num = bos->bNumDeviceCaps; |
| 945 | kfree(bos); |
| 946 | if (total_len < length) |
| 947 | return -EINVAL; |
| 948 | |
| 949 | dev->bos = kzalloc(sizeof(struct usb_host_bos), GFP_KERNEL); |
| 950 | if (!dev->bos) |
| 951 | return -ENOMEM; |
| 952 | |
| 953 | /* Now let's get the whole BOS descriptor set */ |
| 954 | buffer = kzalloc(total_len, GFP_KERNEL); |
| 955 | if (!buffer) { |
| 956 | ret = -ENOMEM; |
| 957 | goto err; |
| 958 | } |
| 959 | dev->bos->desc = (struct usb_bos_descriptor *)buffer; |
| 960 | |
| 961 | ret = usb_get_descriptor(dev, USB_DT_BOS, 0, buffer, total_len); |
| 962 | if (ret < total_len) { |
| 963 | dev_err(ddev, "unable to get BOS descriptor set\n"); |
| 964 | if (ret >= 0) |
| 965 | ret = -ENOMSG; |
| 966 | goto err; |
| 967 | } |
| 968 | total_len -= length; |
| 969 | |
| 970 | for (i = 0; i < num; i++) { |
| 971 | buffer += length; |
| 972 | cap = (struct usb_dev_cap_header *)buffer; |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 973 | |
Alan Stern | 9d13d3e | 2017-10-18 12:49:38 -0400 | [diff] [blame] | 974 | if (total_len < sizeof(*cap) || total_len < cap->bLength) { |
| 975 | dev->bos->desc->bNumDeviceCaps = i; |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 976 | break; |
Alan Stern | 9d13d3e | 2017-10-18 12:49:38 -0400 | [diff] [blame] | 977 | } |
Masakazu Mokuno | 05ffc7e | 2017-11-10 01:25:50 +0900 | [diff] [blame] | 978 | cap_type = cap->bDevCapabilityType; |
Alan Stern | 9d13d3e | 2017-10-18 12:49:38 -0400 | [diff] [blame] | 979 | length = cap->bLength; |
Masakazu Mokuno | 05ffc7e | 2017-11-10 01:25:50 +0900 | [diff] [blame] | 980 | if (bos_desc_len[cap_type] && length < bos_desc_len[cap_type]) { |
| 981 | dev->bos->desc->bNumDeviceCaps = i; |
| 982 | break; |
| 983 | } |
| 984 | |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 985 | total_len -= length; |
| 986 | |
| 987 | if (cap->bDescriptorType != USB_DT_DEVICE_CAPABILITY) { |
| 988 | dev_warn(ddev, "descriptor type invalid, skip\n"); |
| 989 | continue; |
| 990 | } |
| 991 | |
Masakazu Mokuno | 05ffc7e | 2017-11-10 01:25:50 +0900 | [diff] [blame] | 992 | switch (cap_type) { |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 993 | case USB_CAP_TYPE_WIRELESS_USB: |
| 994 | /* Wireless USB cap descriptor is handled by wusb */ |
| 995 | break; |
| 996 | case USB_CAP_TYPE_EXT: |
| 997 | dev->bos->ext_cap = |
| 998 | (struct usb_ext_cap_descriptor *)buffer; |
| 999 | break; |
| 1000 | case USB_SS_CAP_TYPE: |
| 1001 | dev->bos->ss_cap = |
| 1002 | (struct usb_ss_cap_descriptor *)buffer; |
| 1003 | break; |
Mathias Nyman | 3220bef | 2015-10-01 18:40:33 +0300 | [diff] [blame] | 1004 | case USB_SSP_CAP_TYPE: |
Masakazu Mokuno | 05ffc7e | 2017-11-10 01:25:50 +0900 | [diff] [blame] | 1005 | ssp_cap = (struct usb_ssp_cap_descriptor *)buffer; |
| 1006 | ssac = (le32_to_cpu(ssp_cap->bmAttributes) & |
Mathias Nyman | ab1fbfe | 2017-12-19 11:14:42 +0200 | [diff] [blame] | 1007 | USB_SSP_SUBLINK_SPEED_ATTRIBS); |
Masakazu Mokuno | 05ffc7e | 2017-11-10 01:25:50 +0900 | [diff] [blame] | 1008 | if (length >= USB_DT_USB_SSP_CAP_SIZE(ssac)) |
| 1009 | dev->bos->ssp_cap = ssp_cap; |
Mathias Nyman | 3220bef | 2015-10-01 18:40:33 +0300 | [diff] [blame] | 1010 | break; |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 1011 | case CONTAINER_ID_TYPE: |
| 1012 | dev->bos->ss_id = |
| 1013 | (struct usb_ss_container_id_descriptor *)buffer; |
| 1014 | break; |
Mathias Nyman | faee822 | 2016-02-12 16:40:14 +0200 | [diff] [blame] | 1015 | case USB_PTM_CAP_TYPE: |
| 1016 | dev->bos->ptm_cap = |
| 1017 | (struct usb_ptm_cap_descriptor *)buffer; |
Hemant Kumar | 4abd5e5 | 2017-06-07 18:54:42 -0700 | [diff] [blame] | 1018 | break; |
| 1019 | case USB_CAP_TYPE_CONFIG_SUMMARY: |
| 1020 | /* one such desc per configuration */ |
| 1021 | if (!dev->bos->num_config_summary_desc) |
| 1022 | dev->bos->config_summary = |
| 1023 | (struct usb_config_summary_descriptor *)buffer; |
| 1024 | |
| 1025 | dev->bos->num_config_summary_desc++; |
| 1026 | break; |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 1027 | default: |
| 1028 | break; |
| 1029 | } |
| 1030 | } |
| 1031 | |
| 1032 | return 0; |
| 1033 | |
| 1034 | err: |
| 1035 | usb_release_bos_descriptor(dev); |
| 1036 | return ret; |
| 1037 | } |