inet: frag: enforce memory limits earlier
[linux/fpc-iii.git] / drivers / usb / core / config.c
blob5e6136d2ed71dbb39563f05f361e5e21d3c9ac7c
1 #include <linux/usb.h>
2 #include <linux/usb/ch9.h>
3 #include <linux/usb/hcd.h>
4 #include <linux/usb/quirks.h>
5 #include <linux/module.h>
6 #include <linux/slab.h>
7 #include <linux/device.h>
8 #include <asm/byteorder.h>
9 #include "usb.h"
12 #define USB_MAXALTSETTING 128 /* Hard limit */
14 #define USB_MAXCONFIG 8 /* Arbitrary limit */
17 static inline const char *plural(int n)
19 return (n == 1 ? "" : "s");
22 static int find_next_descriptor(unsigned char *buffer, int size,
23 int dt1, int dt2, int *num_skipped)
25 struct usb_descriptor_header *h;
26 int n = 0;
27 unsigned char *buffer0 = buffer;
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;
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;
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)
50 struct usb_ssp_isoc_ep_comp_descriptor *desc;
53 * The SuperSpeedPlus Isoc endpoint companion descriptor immediately
54 * follows the SuperSpeed Endpoint Companion descriptor
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;
64 memcpy(&ep->ssp_isoc_ep_comp, desc, USB_DT_SSP_ISOC_EP_COMP_SIZE);
67 static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno,
68 int inum, int asnum, struct usb_host_endpoint *ep,
69 unsigned char *buffer, int size)
71 struct usb_ss_ep_comp_descriptor *desc;
72 int max_tx;
74 /* The SuperSpeed endpoint companion descriptor is supposed to
75 * be the first thing immediately following the endpoint descriptor.
77 desc = (struct usb_ss_ep_comp_descriptor *) buffer;
79 if (desc->bDescriptorType != USB_DT_SS_ENDPOINT_COMP ||
80 size < USB_DT_SS_EP_COMP_SIZE) {
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);
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.
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;
101 buffer += desc->bLength;
102 size -= desc->bLength;
103 memcpy(&ep->ss_ep_comp, desc, USB_DT_SS_EP_COMP_SIZE);
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);
111 ep->ss_ep_comp.bMaxBurst = 0;
112 } else if (desc->bMaxBurst > 15) {
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);
117 ep->ss_ep_comp.bMaxBurst = 15;
120 if ((usb_endpoint_xfer_control(&ep->desc) ||
121 usb_endpoint_xfer_int(&ep->desc)) &&
122 desc->bmAttributes != 0) {
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);
129 ep->ss_ep_comp.bmAttributes = 0;
130 } else if (usb_endpoint_xfer_bulk(&ep->desc) &&
131 desc->bmAttributes > 16) {
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);
136 ep->ss_ep_comp.bmAttributes = 16;
137 } else if (usb_endpoint_xfer_isoc(&ep->desc) &&
138 !USB_SS_SSP_ISOC_COMP(desc->bmAttributes) &&
139 USB_SS_MULT(desc->bmAttributes) > 3) {
140 dev_warn(ddev, "Isoc endpoint has Mult of %d in "
141 "config %d interface %d altsetting %d ep %d: "
142 "setting to 3\n",
143 USB_SS_MULT(desc->bmAttributes),
144 cfgno, inum, asnum, ep->desc.bEndpointAddress);
145 ep->ss_ep_comp.bmAttributes = 2;
148 if (usb_endpoint_xfer_isoc(&ep->desc))
149 max_tx = (desc->bMaxBurst + 1) *
150 (USB_SS_MULT(desc->bmAttributes)) *
151 usb_endpoint_maxp(&ep->desc);
152 else if (usb_endpoint_xfer_int(&ep->desc))
153 max_tx = usb_endpoint_maxp(&ep->desc) *
154 (desc->bMaxBurst + 1);
155 else
156 max_tx = 999999;
157 if (le16_to_cpu(desc->wBytesPerInterval) > max_tx) {
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",
162 le16_to_cpu(desc->wBytesPerInterval),
163 cfgno, inum, asnum, ep->desc.bEndpointAddress,
164 max_tx);
165 ep->ss_ep_comp.wBytesPerInterval = cpu_to_le16(max_tx);
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);
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,
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,
186 static const unsigned short high_speed_maxpacket_maxes[4] = {
187 [USB_ENDPOINT_XFER_CONTROL] = 64,
188 [USB_ENDPOINT_XFER_ISOC] = 1024,
190 /* Bulk should be 512, but some devices use 1024: we will warn below */
191 [USB_ENDPOINT_XFER_BULK] = 1024,
192 [USB_ENDPOINT_XFER_INT] = 1024,
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,
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)
205 unsigned char *buffer0 = buffer;
206 struct usb_endpoint_descriptor *d;
207 struct usb_host_endpoint *endpoint;
208 int n, i, j, retval;
209 unsigned int maxp;
210 const unsigned short *maxpacket_maxes;
212 d = (struct usb_endpoint_descriptor *) buffer;
213 buffer += d->bLength;
214 size -= d->bLength;
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;
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;
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;
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;
249 endpoint = &ifp->endpoint[ifp->desc.bNumEndpoints];
250 ++ifp->desc.bNumEndpoints;
252 memcpy(&endpoint->desc, d, n);
253 INIT_LIST_HEAD(&endpoint->urb_list);
256 * Fix up bInterval values outside the legal range.
257 * Use 10 or 8 ms if no proper value can be guessed.
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) {
264 case USB_SPEED_SUPER_PLUS:
265 case USB_SPEED_SUPER:
266 case USB_SPEED_HIGH:
268 * Many device manufacturers are using full-speed
269 * bInterval values in high-speed interrupt endpoint
270 * descriptors. Try to fix those and fall back to an
271 * 8-ms default value otherwise.
273 n = fls(d->bInterval*8);
274 if (n == 0)
275 n = 7; /* 8 ms = 2^(7-1) uframes */
276 j = 16;
279 * Adjust bInterval for quirked devices.
282 * This quirk fixes bIntervals reported in ms.
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;
290 * This quirk fixes bIntervals reported in
291 * linear microframes.
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;
298 break;
299 default: /* USB_SPEED_FULL or _LOW */
301 * For low-speed, 10 ms is the official minimum.
302 * But some "overclocked" devices might want faster
303 * polling so we'll allow it.
305 n = 10;
306 break;
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:
313 n = 7; /* 8 ms = 2^(7-1) uframes */
314 break;
315 default: /* USB_SPEED_FULL */
316 n = 4; /* 8 ms = 2^(4-1) frames */
317 break;
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;
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.
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;
340 if (usb_endpoint_maxp(&endpoint->desc) > 8)
341 endpoint->desc.wMaxPacketSize = cpu_to_le16(8);
344 /* Validate the wMaxPacketSize field */
345 maxp = usb_endpoint_maxp(&endpoint->desc);
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;
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;
371 j = maxpacket_maxes[usb_endpoint_type(&endpoint->desc)];
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);
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...
385 if (to_usb_device(ddev)->speed == USB_SPEED_HIGH
386 && usb_endpoint_xfer_bulk(d)) {
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);
394 /* Parse a possible SuperSpeed endpoint companion descriptor */
395 if (to_usb_device(ddev)->speed >= USB_SPEED_SUPER)
396 usb_parse_ss_endpoint_companion(ddev, cfgno,
397 inum, asnum, endpoint, buffer, size);
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;
406 if (n > 0)
407 dev_dbg(ddev, "skipped %d descriptor%s after %s\n",
408 n, plural(n), "endpoint");
409 return retval;
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;
417 void usb_release_interface_cache(struct kref *ref)
419 struct usb_interface_cache *intfc = ref_to_usb_interface_cache(ref);
420 int j;
422 for (j = 0; j < intfc->num_altsetting; j++) {
423 struct usb_host_interface *alt = &intfc->altsetting[j];
425 kfree(alt->endpoint);
426 kfree(alt->string);
428 kfree(intfc);
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[])
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;
444 d = (struct usb_interface_descriptor *) buffer;
445 buffer += d->bLength;
446 size -= d->bLength;
448 if (d->bLength < USB_DT_INTERFACE_SIZE)
449 goto skip_to_next_interface_descriptor;
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;
460 if (!intfc || intfc->num_altsetting >= nalts[i])
461 goto skip_to_next_interface_descriptor;
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;
476 ++intfc->num_altsetting;
477 memcpy(&alt->desc, d, USB_DT_INTERFACE_SIZE);
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;
491 /* Allocate space for the right(?) number of endpoints */
492 num_ep = num_ep_orig = alt->desc.bNumEndpoints;
493 alt->desc.bNumEndpoints = 0; /* Use as a counter */
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;
501 if (num_ep > 0) {
502 /* Can't allocate 0 bytes */
503 len = sizeof(struct usb_host_endpoint) * num_ep;
504 alt->endpoint = kzalloc(len, GFP_KERNEL);
505 if (!alt->endpoint)
506 return -ENOMEM;
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;
521 buffer += retval;
522 size -= retval;
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;
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;
538 static int usb_parse_configuration(struct usb_device *dev, int cfgidx,
539 struct usb_host_config *config, unsigned char *buffer, int size)
541 struct device *ddev = &dev->dev;
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];
552 unsigned iad_num = 0;
554 memcpy(&config->desc, buffer, USB_DT_CONFIG_SIZE);
555 nintf = nintf_orig = config->desc.bNumInterfaces;
556 config->desc.bNumInterfaces = 0; // Adjusted later
558 if (config->desc.bDescriptorType != USB_DT_CONFIG ||
559 config->desc.bLength < USB_DT_CONFIG_SIZE ||
560 config->desc.bLength > size) {
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;
566 cfgno = config->desc.bConfigurationValue;
568 buffer += config->desc.bLength;
569 size -= config->desc.bLength;
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;
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)) {
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;
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;
600 if (header->bDescriptorType == USB_DT_INTERFACE) {
601 struct usb_interface_descriptor *d;
602 int inum;
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;
612 inum = d->bInterfaceNumber;
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;
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);
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;
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;
643 } else if (header->bDescriptorType ==
644 USB_DT_INTERFACE_ASSOCIATION) {
645 struct usb_interface_assoc_descriptor *d;
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;
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 {
661 config->intf_assoc[iad_num] = d;
662 iad_num++;
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);
671 } /* for ((buffer2 = buffer, size2 = size); ...) */
672 size = buffer2 - buffer;
673 config->desc.wTotalLength = cpu_to_le16(buffer2 - buffer0);
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;
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;
689 if (j >= nintf)
690 dev_warn(ddev, "config %d has no interface number "
691 "%d\n", cfgno, i);
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;
705 len = sizeof(*intfc) + sizeof(struct usb_host_interface) * j;
706 config->intf_cache[i] = intfc = kzalloc(len, GFP_KERNEL);
707 if (!intfc)
708 return -ENOMEM;
709 kref_init(&intfc->ref);
712 /* FIXME: parse the BOS descriptor */
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;
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;
733 buffer += retval;
734 size -= retval;
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;
746 if (n >= intfc->num_altsetting)
747 dev_warn(ddev, "config %d interface %d has no "
748 "altsetting %d\n", cfgno, inums[i], j);
752 return 0;
755 /* hub-only!! ... and only exported for reset/reinit path.
756 * otherwise used internally on disconnect/destroy path
758 void usb_destroy_configuration(struct usb_device *dev)
760 int c, i;
762 if (!dev->config)
763 return;
765 if (dev->rawdescriptors) {
766 for (i = 0; i < dev->descriptor.bNumConfigurations; i++)
767 kfree(dev->rawdescriptors[i]);
769 kfree(dev->rawdescriptors);
770 dev->rawdescriptors = NULL;
773 for (c = 0; c < dev->descriptor.bNumConfigurations; c++) {
774 struct usb_host_config *cf = &dev->config[c];
776 kfree(cf->string);
777 for (i = 0; i < cf->desc.bNumInterfaces; i++) {
778 if (cf->intf_cache[i])
779 kref_put(&cf->intf_cache[i]->ref,
780 usb_release_interface_cache);
783 kfree(dev->config);
784 dev->config = NULL;
789 * Get the USB config descriptors, cache and parse'em
791 * hub-only!! ... and only in reset path, or usb_new_device()
792 * (used by real hubs and virtual root hubs)
794 int usb_get_configuration(struct usb_device *dev)
796 struct device *ddev = &dev->dev;
797 int ncfg = dev->descriptor.bNumConfigurations;
798 int result = 0;
799 unsigned int cfgno, length;
800 unsigned char *bigbuffer;
801 struct usb_config_descriptor *desc;
803 cfgno = 0;
804 result = -ENOMEM;
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;
811 if (ncfg < 1) {
812 dev_err(ddev, "no configurations\n");
813 return -EINVAL;
816 length = ncfg * sizeof(struct usb_host_config);
817 dev->config = kzalloc(length, GFP_KERNEL);
818 if (!dev->config)
819 goto err2;
821 length = ncfg * sizeof(char *);
822 dev->rawdescriptors = kzalloc(length, GFP_KERNEL);
823 if (!dev->rawdescriptors)
824 goto err2;
826 desc = kmalloc(USB_DT_CONFIG_SIZE, GFP_KERNEL);
827 if (!desc)
828 goto err2;
830 result = 0;
831 for (; cfgno < ncfg; cfgno++) {
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,
835 desc, USB_DT_CONFIG_SIZE);
836 if (result < 0) {
837 dev_err(ddev, "unable to read config index %d "
838 "descriptor/%s: %d\n", cfgno, "start", result);
839 if (result != -EPIPE)
840 goto err;
841 dev_err(ddev, "chopping to %d config(s)\n", cfgno);
842 dev->descriptor.bNumConfigurations = cfgno;
843 break;
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;
851 length = max((int) le16_to_cpu(desc->wTotalLength),
852 USB_DT_CONFIG_SIZE);
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;
861 if (dev->quirks & USB_QUIRK_DELAY_INIT)
862 msleep(200);
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;
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;
878 dev->rawdescriptors[cfgno] = bigbuffer;
880 result = usb_parse_configuration(dev, cfgno,
881 &dev->config[cfgno], bigbuffer, length);
882 if (result < 0) {
883 ++cfgno;
884 goto err;
887 result = 0;
889 err:
890 kfree(desc);
891 dev->descriptor.bNumConfigurations = cfgno;
892 err2:
893 if (result == -ENOMEM)
894 dev_err(ddev, "out of memory\n");
895 return result;
898 void usb_release_bos_descriptor(struct usb_device *dev)
900 if (dev->bos) {
901 kfree(dev->bos->desc);
902 kfree(dev->bos);
903 dev->bos = NULL;
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,
916 /* Get BOS descriptor set */
917 int usb_get_bos_descriptor(struct usb_device *dev)
919 struct device *ddev = &dev->dev;
920 struct usb_bos_descriptor *bos;
921 struct usb_dev_cap_header *cap;
922 struct usb_ssp_cap_descriptor *ssp_cap;
923 unsigned char *buffer;
924 int length, total_len, num, i, ssac;
925 __u8 cap_type;
926 int ret;
928 bos = kzalloc(sizeof(struct usb_bos_descriptor), GFP_KERNEL);
929 if (!bos)
930 return -ENOMEM;
932 /* Get BOS descriptor */
933 ret = usb_get_descriptor(dev, USB_DT_BOS, 0, bos, USB_DT_BOS_SIZE);
934 if (ret < USB_DT_BOS_SIZE) {
935 dev_err(ddev, "unable to get BOS descriptor\n");
936 if (ret >= 0)
937 ret = -ENOMSG;
938 kfree(bos);
939 return ret;
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;
949 dev->bos = kzalloc(sizeof(struct usb_host_bos), GFP_KERNEL);
950 if (!dev->bos)
951 return -ENOMEM;
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;
959 dev->bos->desc = (struct usb_bos_descriptor *)buffer;
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;
968 total_len -= length;
970 for (i = 0; i < num; i++) {
971 buffer += length;
972 cap = (struct usb_dev_cap_header *)buffer;
974 if (total_len < sizeof(*cap) || total_len < cap->bLength) {
975 dev->bos->desc->bNumDeviceCaps = i;
976 break;
978 cap_type = cap->bDevCapabilityType;
979 length = cap->bLength;
980 if (bos_desc_len[cap_type] && length < bos_desc_len[cap_type]) {
981 dev->bos->desc->bNumDeviceCaps = i;
982 break;
985 total_len -= length;
987 if (cap->bDescriptorType != USB_DT_DEVICE_CAPABILITY) {
988 dev_warn(ddev, "descriptor type invalid, skip\n");
989 continue;
992 switch (cap_type) {
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;
1004 case USB_SSP_CAP_TYPE:
1005 ssp_cap = (struct usb_ssp_cap_descriptor *)buffer;
1006 ssac = (le32_to_cpu(ssp_cap->bmAttributes) &
1007 USB_SSP_SUBLINK_SPEED_ATTRIBS);
1008 if (length >= USB_DT_USB_SSP_CAP_SIZE(ssac))
1009 dev->bos->ssp_cap = ssp_cap;
1010 break;
1011 case CONTAINER_ID_TYPE:
1012 dev->bos->ss_id =
1013 (struct usb_ss_container_id_descriptor *)buffer;
1014 break;
1015 case USB_PTM_CAP_TYPE:
1016 dev->bos->ptm_cap =
1017 (struct usb_ptm_cap_descriptor *)buffer;
1018 default:
1019 break;
1023 return 0;
1025 err:
1026 usb_release_bos_descriptor(dev);
1027 return ret;