blob: 2476d660319e7c1c367721dfc7b1aaf0f90129d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/usb.h>
Alan Stern615ae112007-06-08 15:23:27 -04002#include <linux/usb/ch9.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +02003#include <linux/usb/hcd.h>
Hans de Goede317149c2010-03-29 12:03:17 +02004#include <linux/usb/quirks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/slab.h>
7#include <linux/device.h>
8#include <asm/byteorder.h>
Greg KH6d5e8252005-04-18 17:39:24 -07009#include "usb.h"
Eric Lescouet27729aa2010-04-24 23:21:52 +020010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#define USB_MAXALTSETTING 128 /* Hard limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#define USB_MAXCONFIG 8 /* Arbitrary limit */
15
16
17static inline const char *plural(int n)
18{
19 return (n == 1 ? "" : "s");
20}
21
22static 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 Nymanb37d83a2016-02-12 16:40:13 +020046static 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 Stern842f1692010-04-30 12:44:46 -040067static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno,
Sarah Sharp663c30d2009-04-27 19:58:14 -070068 int inum, int asnum, struct usb_host_endpoint *ep,
Alan Stern842f1692010-04-30 12:44:46 -040069 unsigned char *buffer, int size)
Sarah Sharp663c30d2009-04-27 19:58:14 -070070{
Alan Stern842f1692010-04-30 12:44:46 -040071 struct usb_ss_ep_comp_descriptor *desc;
Sarah Sharp663c30d2009-04-27 19:58:14 -070072 int max_tx;
Sarah Sharp663c30d2009-04-27 19:58:14 -070073
Alan Stern842f1692010-04-30 12:44:46 -040074 /* The SuperSpeed endpoint companion descriptor is supposed to
75 * be the first thing immediately following the endpoint descriptor.
76 */
Sarah Sharpf0058c62009-04-29 19:06:20 -070077 desc = (struct usb_ss_ep_comp_descriptor *) buffer;
Mathias Nymanb37d83a2016-02-12 16:40:13 +020078
Alan Stern842f1692010-04-30 12:44:46 -040079 if (desc->bDescriptorType != USB_DT_SS_ENDPOINT_COMP ||
80 size < USB_DT_SS_EP_COMP_SIZE) {
Sarah Sharp663c30d2009-04-27 19:58:14 -070081 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 Sharp663c30d2009-04-27 19:58:14 -070085
Alan Stern842f1692010-04-30 12:44:46 -040086 /* 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 Nyman59b90232016-03-29 13:47:09 +0300101 buffer += desc->bLength;
102 size -= desc->bLength;
Alan Stern842f1692010-04-30 12:44:46 -0400103 memcpy(&ep->ss_ep_comp, desc, USB_DT_SS_EP_COMP_SIZE);
Sarah Sharp663c30d2009-04-27 19:58:14 -0700104
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 Stern842f1692010-04-30 12:44:46 -0400111 ep->ss_ep_comp.bMaxBurst = 0;
112 } else if (desc->bMaxBurst > 15) {
Sarah Sharp663c30d2009-04-27 19:58:14 -0700113 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 Stern842f1692010-04-30 12:44:46 -0400117 ep->ss_ep_comp.bMaxBurst = 15;
Sarah Sharp663c30d2009-04-27 19:58:14 -0700118 }
Alan Stern842f1692010-04-30 12:44:46 -0400119
120 if ((usb_endpoint_xfer_control(&ep->desc) ||
121 usb_endpoint_xfer_int(&ep->desc)) &&
122 desc->bmAttributes != 0) {
Sarah Sharp663c30d2009-04-27 19:58:14 -0700123 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 Stern842f1692010-04-30 12:44:46 -0400129 ep->ss_ep_comp.bmAttributes = 0;
130 } else if (usb_endpoint_xfer_bulk(&ep->desc) &&
131 desc->bmAttributes > 16) {
Sarah Sharp663c30d2009-04-27 19:58:14 -0700132 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 Stern842f1692010-04-30 12:44:46 -0400136 ep->ss_ep_comp.bmAttributes = 16;
137 } else if (usb_endpoint_xfer_isoc(&ep->desc) &&
Mathias Nymanb37d83a2016-02-12 16:40:13 +0200138 !USB_SS_SSP_ISOC_COMP(desc->bmAttributes) &&
Mathias Nymanff30cbc2015-09-21 17:46:09 +0300139 USB_SS_MULT(desc->bmAttributes) > 3) {
Sarah Sharp663c30d2009-04-27 19:58:14 -0700140 dev_warn(ddev, "Isoc endpoint has Mult of %d in "
141 "config %d interface %d altsetting %d ep %d: "
Ben Hutchings5377adb2015-11-18 02:01:21 +0000142 "setting to 3\n",
143 USB_SS_MULT(desc->bmAttributes),
Sarah Sharp663c30d2009-04-27 19:58:14 -0700144 cfgno, inum, asnum, ep->desc.bEndpointAddress);
Alan Stern842f1692010-04-30 12:44:46 -0400145 ep->ss_ep_comp.bmAttributes = 2;
Sarah Sharp663c30d2009-04-27 19:58:14 -0700146 }
Alan Stern842f1692010-04-30 12:44:46 -0400147
148 if (usb_endpoint_xfer_isoc(&ep->desc))
Mathias Nymanff30cbc2015-09-21 17:46:09 +0300149 max_tx = (desc->bMaxBurst + 1) *
150 (USB_SS_MULT(desc->bmAttributes)) *
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700151 usb_endpoint_maxp(&ep->desc);
Alan Stern842f1692010-04-30 12:44:46 -0400152 else if (usb_endpoint_xfer_int(&ep->desc))
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700153 max_tx = usb_endpoint_maxp(&ep->desc) *
Sebastian Andrzej Siewior7de7c7d2011-07-29 11:05:45 +0200154 (desc->bMaxBurst + 1);
Alan Stern842f1692010-04-30 12:44:46 -0400155 else
156 max_tx = 999999;
Sebastian Andrzej Siewior64b3c302011-04-11 20:19:12 +0200157 if (le16_to_cpu(desc->wBytesPerInterval) > max_tx) {
Sarah Sharp663c30d2009-04-27 19:58:14 -0700158 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 Siewior7de7c7d2011-07-29 11:05:45 +0200162 le16_to_cpu(desc->wBytesPerInterval),
Sarah Sharp663c30d2009-04-27 19:58:14 -0700163 cfgno, inum, asnum, ep->desc.bEndpointAddress,
164 max_tx);
Sebastian Andrzej Siewior7de7c7d2011-07-29 11:05:45 +0200165 ep->ss_ep_comp.wBytesPerInterval = cpu_to_le16(max_tx);
Sarah Sharp663c30d2009-04-27 19:58:14 -0700166 }
Mathias Nyman59b90232016-03-29 13:47:09 +0300167 /* 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 Sharp663c30d2009-04-27 19:58:14 -0700172}
173
Alan Sternaed9d652016-08-01 15:25:56 -0400174static 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};
180static 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};
186static const unsigned short high_speed_maxpacket_maxes[4] = {
187 [USB_ENDPOINT_XFER_CONTROL] = 64,
188 [USB_ENDPOINT_XFER_ISOC] = 1024,
Alan Stern1fac4fc2018-05-03 11:04:48 -0400189
190 /* Bulk should be 512, but some devices use 1024: we will warn below */
191 [USB_ENDPOINT_XFER_BULK] = 1024,
Alan Stern6c733582016-08-22 16:58:53 -0400192 [USB_ENDPOINT_XFER_INT] = 1024,
Alan Sternaed9d652016-08-01 15:25:56 -0400193};
194static 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 Torvalds1da177e2005-04-16 15:20:36 -0700201static 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 Sharp663c30d2009-04-27 19:58:14 -0700208 int n, i, j, retval;
Alan Sternaed9d652016-08-01 15:25:56 -0400209 unsigned int maxp;
210 const unsigned short *maxpacket_maxes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
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 Stern05b0f2f2016-12-19 12:03:41 -0500239 /* 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 Torvalds1da177e2005-04-16 15:20:36 -0700249 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 Stern08c5cd32016-09-16 10:24:26 -0400255 /*
256 * Fix up bInterval values outside the legal range.
257 * Use 10 or 8 ms if no proper value can be guessed.
258 */
Alan Stern615ae112007-06-08 15:23:27 -0400259 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 Nyman8a1b2722015-12-10 09:59:25 +0200264 case USB_SPEED_SUPER_PLUS:
Sarah Sharp6b403b02009-04-27 19:54:10 -0700265 case USB_SPEED_SUPER:
Alan Stern615ae112007-06-08 15:23:27 -0400266 case USB_SPEED_HIGH:
Alan Stern08c5cd32016-09-16 10:24:26 -0400267 /*
268 * Many device manufacturers are using full-speed
Laurent Pinchart300871c2007-06-12 21:47:17 +0200269 * bInterval values in high-speed interrupt endpoint
Alan Stern08c5cd32016-09-16 10:24:26 -0400270 * descriptors. Try to fix those and fall back to an
271 * 8-ms default value otherwise.
272 */
Laurent Pinchart300871c2007-06-12 21:47:17 +0200273 n = fls(d->bInterval*8);
274 if (n == 0)
Alan Stern08c5cd32016-09-16 10:24:26 -0400275 n = 7; /* 8 ms = 2^(7-1) uframes */
Alan Stern615ae112007-06-08 15:23:27 -0400276 j = 16;
James P Michels IIIcd83ce92014-07-27 13:28:04 -0400277
278 /*
279 * Adjust bInterval for quirked devices.
Samuel Thibault222ccd42017-03-13 20:50:08 +0100280 */
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 IIIcd83ce92014-07-27 13:28:04 -0400290 * 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 Stern615ae112007-06-08 15:23:27 -0400298 break;
299 default: /* USB_SPEED_FULL or _LOW */
Alan Stern08c5cd32016-09-16 10:24:26 -0400300 /*
301 * For low-speed, 10 ms is the official minimum.
Alan Stern615ae112007-06-08 15:23:27 -0400302 * But some "overclocked" devices might want faster
Alan Stern08c5cd32016-09-16 10:24:26 -0400303 * polling so we'll allow it.
304 */
305 n = 10;
Alan Stern615ae112007-06-08 15:23:27 -0400306 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 Stern08c5cd32016-09-16 10:24:26 -0400313 n = 7; /* 8 ms = 2^(7-1) uframes */
Alan Stern615ae112007-06-08 15:23:27 -0400314 break;
315 default: /* USB_SPEED_FULL */
Alan Stern08c5cd32016-09-16 10:24:26 -0400316 n = 4; /* 8 ms = 2^(4-1) frames */
Alan Stern615ae112007-06-08 15:23:27 -0400317 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 Stern60aac1e2007-06-08 15:25:02 -0400329 /* 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 Morimoto29cc8892011-08-23 03:12:03 -0700340 if (usb_endpoint_maxp(&endpoint->desc) > 8)
Alan Stern60aac1e2007-06-08 15:25:02 -0400341 endpoint->desc.wMaxPacketSize = cpu_to_le16(8);
342 }
343
Alan Sternaed9d652016-08-01 15:25:56 -0400344 /* 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 Brownellcaa9ef62008-02-08 15:08:44 -0800380 /*
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 Brownellcaa9ef62008-02-08 15:08:44 -0800387 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 Stern842f1692010-04-30 12:44:46 -0400394 /* Parse a possible SuperSpeed endpoint companion descriptor */
Mathias Nyman8a1b2722015-12-10 09:59:25 +0200395 if (to_usb_device(ddev)->speed >= USB_SPEED_SUPER)
Alan Stern842f1692010-04-30 12:44:46 -0400396 usb_parse_ss_endpoint_companion(ddev, cfgno,
397 inum, asnum, endpoint, buffer, size);
Sarah Sharp9f8e4432009-07-27 12:04:52 -0700398
Alan Stern842f1692010-04-30 12:44:46 -0400399 /* 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 Torvalds1da177e2005-04-16 15:20:36 -0700406 if (n > 0)
407 dev_dbg(ddev, "skipped %d descriptor%s after %s\n",
408 n, plural(n), "endpoint");
Sarah Sharp663c30d2009-04-27 19:58:14 -0700409 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411skip_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
417void 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 Stern4f62efe2005-10-24 16:24:14 -0400422 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 Torvalds1da177e2005-04-16 15:20:36 -0700428 kfree(intfc);
429}
430
431static 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-Hartman2c044a42008-01-30 15:21:33 -0800493 alt->desc.bNumEndpoints = 0; /* Use as a counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 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-Hartman2c044a42008-01-30 15:21:33 -0800501 if (num_ep > 0) {
502 /* Can't allocate 0 bytes */
Alan Stern57a21c12007-05-15 17:40:37 -0400503 len = sizeof(struct usb_host_endpoint) * num_ep;
504 alt->endpoint = kzalloc(len, GFP_KERNEL);
505 if (!alt->endpoint)
506 return -ENOMEM;
507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
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
532skip_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 Goede317149c2010-03-29 12:03:17 +0200538static int usb_parse_configuration(struct usb_device *dev, int cfgidx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct usb_host_config *config, unsigned char *buffer, int size)
540{
Hans de Goede317149c2010-03-29 12:03:17 +0200541 struct device *ddev = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 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. Nadler165fe972007-06-15 23:14:35 -0400552 unsigned iad_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 memcpy(&config->desc, buffer, USB_DT_CONFIG_SIZE);
Alan Stern99542e42017-12-12 14:25:13 -0500555 nintf = nintf_orig = config->desc.bNumInterfaces;
556 config->desc.bNumInterfaces = 0; // Adjusted later
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (config->desc.bDescriptorType != USB_DT_CONFIG ||
Hans de Goedeb4f17a482013-08-03 16:37:48 +0200559 config->desc.bLength < USB_DT_CONFIG_SIZE ||
560 config->desc.bLength > size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 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 Torvalds1da177e2005-04-16 15:20:36 -0700571 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 Goede317149c2010-03-29 12:03:17 +0200613
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 Torvalds1da177e2005-04-16 15:20:36 -0700623 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. Nadler165fe972007-06-15 23:14:35 -0400643 } else if (header->bDescriptorType ==
644 USB_DT_INTERFACE_ASSOCIATION) {
Greg Kroah-Hartmana6d4ce22017-09-19 15:07:17 +0200645 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. Nadler165fe972007-06-15 23:14:35 -0400655 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-Hartmana6d4ce22017-09-19 15:07:17 +0200661 config->intf_assoc[iad_num] = d;
Craig W. Nadler165fe972007-06-15 23:14:35 -0400662 iad_num++;
663 }
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 } 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 Stern0a1ef3b2005-10-24 15:38:24 -0400706 config->intf_cache[i] = intfc = kzalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (!intfc)
708 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 kref_init(&intfc->ref);
710 }
711
Sarah Sharp663c30d2009-04-27 19:58:14 -0700712 /* FIXME: parse the BOS descriptor */
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /* 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-Hartman2c044a42008-01-30 15:21:33 -0800755/* hub-only!! ... and only exported for reset/reinit path.
756 * otherwise used internally on disconnect/destroy path
757 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758void 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-Hartman0f8d02d2017-12-13 11:59:39 +0100766 for (i = 0; i < dev->descriptor.bNumConfigurations; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 kfree(dev->rawdescriptors[i]);
768
769 kfree(dev->rawdescriptors);
770 dev->rawdescriptors = NULL;
771 }
772
Greg Kroah-Hartman0f8d02d2017-12-13 11:59:39 +0100773 for (c = 0; c < dev->descriptor.bNumConfigurations; c++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 struct usb_host_config *cf = &dev->config[c];
775
776 kfree(cf->string);
Greg Kroah-Hartman0f8d02d2017-12-13 11:59:39 +0100777 for (i = 0; i < cf->desc.bNumInterfaces; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (cf->intf_cache[i])
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800779 kref_put(&cf->intf_cache[i]->ref,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 usb_release_interface_cache);
781 }
782 }
783 kfree(dev->config);
784 dev->config = NULL;
785}
786
787
Inaky Perez-Gonzalez11450652007-07-31 20:34:02 -0700788/*
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-Gonzalez11450652007-07-31 20:34:02 -0700793 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794int usb_get_configuration(struct usb_device *dev)
795{
796 struct device *ddev = &dev->dev;
797 int ncfg = dev->descriptor.bNumConfigurations;
Inaky Perez-Gonzalez11450652007-07-31 20:34:02 -0700798 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 unsigned int cfgno, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 unsigned char *bigbuffer;
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800801 struct usb_config_descriptor *desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Inaky Perez-Gonzalez11450652007-07-31 20:34:02 -0700803 cfgno = 0;
Inaky Perez-Gonzalez11450652007-07-31 20:34:02 -0700804 result = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 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 Stern0a1ef3b2005-10-24 15:38:24 -0400817 dev->config = kzalloc(length, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (!dev->config)
819 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 length = ncfg * sizeof(char *);
Alan Stern0a1ef3b2005-10-24 15:38:24 -0400822 dev->rawdescriptors = kzalloc(length, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (!dev->rawdescriptors)
824 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Michal Nazarewicze8f4af32010-04-17 17:12:58 +0200826 desc = kmalloc(USB_DT_CONFIG_SIZE, GFP_KERNEL);
827 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Inaky Perez-Gonzalez11450652007-07-31 20:34:02 -0700830 result = 0;
831 for (; cfgno < ncfg; cfgno++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /* 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 Nazarewicze8f4af32010-04-17 17:12:58 +0200835 desc, USB_DT_CONFIG_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (result < 0) {
837 dev_err(ddev, "unable to read config index %d "
Inaky Perez-Gonzalez11450652007-07-31 20:34:02 -0700838 "descriptor/%s: %d\n", cfgno, "start", result);
Lan Tianyu3a22b872012-09-05 13:44:37 +0800839 if (result != -EPIPE)
840 goto err;
Inaky Perez-Gonzalezcb4c8fe2006-08-25 19:35:28 -0700841 dev_err(ddev, "chopping to %d config(s)\n", cfgno);
842 dev->descriptor.bNumConfigurations = cfgno;
843 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 } 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 Wernerd86db252014-03-04 11:27:38 -0800860
861 if (dev->quirks & USB_QUIRK_DELAY_INIT)
Dmitry Fleytman43feb292017-09-05 11:40:56 +0300862 msleep(200);
Julius Wernerd86db252014-03-04 11:27:38 -0800863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 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 Goede317149c2010-03-29 12:03:17 +0200880 result = usb_parse_configuration(dev, cfgno,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 &dev->config[cfgno], bigbuffer, length);
882 if (result < 0) {
883 ++cfgno;
884 goto err;
885 }
886 }
887 result = 0;
888
889err:
Michal Nazarewicze8f4af32010-04-17 17:12:58 +0200890 kfree(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 dev->descriptor.bNumConfigurations = cfgno;
892err2:
893 if (result == -ENOMEM)
894 dev_err(ddev, "out of memory\n");
895 return result;
896}
Andiry Xu3148bf02011-09-23 14:19:47 -0700897
898void 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 Mokuno05ffc7e2017-11-10 01:25:50 +0900907static 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 Xu3148bf02011-09-23 14:19:47 -0700916/* Get BOS descriptor set */
917int 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 Mokuno05ffc7e2017-11-10 01:25:50 +0900922 struct usb_ssp_cap_descriptor *ssp_cap;
Andiry Xu3148bf02011-09-23 14:19:47 -0700923 unsigned char *buffer;
Masakazu Mokuno05ffc7e2017-11-10 01:25:50 +0900924 int length, total_len, num, i, ssac;
925 __u8 cap_type;
Andiry Xu3148bf02011-09-23 14:19:47 -0700926 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 Sternfeab6c82019-05-13 13:14:29 -0400934 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 Xu3148bf02011-09-23 14:19:47 -0700936 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 Xu3148bf02011-09-23 14:19:47 -0700973
Alan Stern9d13d3e2017-10-18 12:49:38 -0400974 if (total_len < sizeof(*cap) || total_len < cap->bLength) {
975 dev->bos->desc->bNumDeviceCaps = i;
Andiry Xu3148bf02011-09-23 14:19:47 -0700976 break;
Alan Stern9d13d3e2017-10-18 12:49:38 -0400977 }
Masakazu Mokuno05ffc7e2017-11-10 01:25:50 +0900978 cap_type = cap->bDevCapabilityType;
Alan Stern9d13d3e2017-10-18 12:49:38 -0400979 length = cap->bLength;
Masakazu Mokuno05ffc7e2017-11-10 01:25:50 +0900980 if (bos_desc_len[cap_type] && length < bos_desc_len[cap_type]) {
981 dev->bos->desc->bNumDeviceCaps = i;
982 break;
983 }
984
Andiry Xu3148bf02011-09-23 14:19:47 -0700985 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 Mokuno05ffc7e2017-11-10 01:25:50 +0900992 switch (cap_type) {
Andiry Xu3148bf02011-09-23 14:19:47 -0700993 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 Nyman3220bef2015-10-01 18:40:33 +03001004 case USB_SSP_CAP_TYPE:
Masakazu Mokuno05ffc7e2017-11-10 01:25:50 +09001005 ssp_cap = (struct usb_ssp_cap_descriptor *)buffer;
1006 ssac = (le32_to_cpu(ssp_cap->bmAttributes) &
Mathias Nymanab1fbfe2017-12-19 11:14:42 +02001007 USB_SSP_SUBLINK_SPEED_ATTRIBS);
Masakazu Mokuno05ffc7e2017-11-10 01:25:50 +09001008 if (length >= USB_DT_USB_SSP_CAP_SIZE(ssac))
1009 dev->bos->ssp_cap = ssp_cap;
Mathias Nyman3220bef2015-10-01 18:40:33 +03001010 break;
Andiry Xu3148bf02011-09-23 14:19:47 -07001011 case CONTAINER_ID_TYPE:
1012 dev->bos->ss_id =
1013 (struct usb_ss_container_id_descriptor *)buffer;
1014 break;
Mathias Nymanfaee8222016-02-12 16:40:14 +02001015 case USB_PTM_CAP_TYPE:
1016 dev->bos->ptm_cap =
1017 (struct usb_ptm_cap_descriptor *)buffer;
Hemant Kumar4abd5e52017-06-07 18:54:42 -07001018 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 Xu3148bf02011-09-23 14:19:47 -07001027 default:
1028 break;
1029 }
1030 }
1031
1032 return 0;
1033
1034err:
1035 usb_release_bos_descriptor(dev);
1036 return ret;
1037}