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