GNU Linux-libre 4.9.309-gnu1
[releases.git] / drivers / usb / core / message.c
1 /*
2  * message.c - synchronous message handling
3  */
4
5 #include <linux/pci.h>  /* for scatterlist macros */
6 #include <linux/usb.h>
7 #include <linux/module.h>
8 #include <linux/slab.h>
9 #include <linux/mm.h>
10 #include <linux/timer.h>
11 #include <linux/ctype.h>
12 #include <linux/nls.h>
13 #include <linux/device.h>
14 #include <linux/scatterlist.h>
15 #include <linux/usb/cdc.h>
16 #include <linux/usb/quirks.h>
17 #include <linux/usb/hcd.h>      /* for usbcore internals */
18 #include <asm/byteorder.h>
19
20 #include "usb.h"
21
22 static void cancel_async_set_config(struct usb_device *udev);
23
24 struct api_context {
25         struct completion       done;
26         int                     status;
27 };
28
29 static void usb_api_blocking_completion(struct urb *urb)
30 {
31         struct api_context *ctx = urb->context;
32
33         ctx->status = urb->status;
34         complete(&ctx->done);
35 }
36
37
38 /*
39  * Starts urb and waits for completion or timeout. Note that this call
40  * is NOT interruptible. Many device driver i/o requests should be
41  * interruptible and therefore these drivers should implement their
42  * own interruptible routines.
43  */
44 static int usb_start_wait_urb(struct urb *urb, int timeout, int *actual_length)
45 {
46         struct api_context ctx;
47         unsigned long expire;
48         int retval;
49
50         init_completion(&ctx.done);
51         urb->context = &ctx;
52         urb->actual_length = 0;
53         retval = usb_submit_urb(urb, GFP_NOIO);
54         if (unlikely(retval))
55                 goto out;
56
57         expire = timeout ? msecs_to_jiffies(timeout) : MAX_SCHEDULE_TIMEOUT;
58         if (!wait_for_completion_timeout(&ctx.done, expire)) {
59                 usb_kill_urb(urb);
60                 retval = (ctx.status == -ENOENT ? -ETIMEDOUT : ctx.status);
61
62                 dev_dbg(&urb->dev->dev,
63                         "%s timed out on ep%d%s len=%u/%u\n",
64                         current->comm,
65                         usb_endpoint_num(&urb->ep->desc),
66                         usb_urb_dir_in(urb) ? "in" : "out",
67                         urb->actual_length,
68                         urb->transfer_buffer_length);
69         } else
70                 retval = ctx.status;
71 out:
72         if (actual_length)
73                 *actual_length = urb->actual_length;
74
75         usb_free_urb(urb);
76         return retval;
77 }
78
79 /*-------------------------------------------------------------------*/
80 /* returns status (negative) or length (positive) */
81 static int usb_internal_control_msg(struct usb_device *usb_dev,
82                                     unsigned int pipe,
83                                     struct usb_ctrlrequest *cmd,
84                                     void *data, int len, int timeout)
85 {
86         struct urb *urb;
87         int retv;
88         int length;
89
90         urb = usb_alloc_urb(0, GFP_NOIO);
91         if (!urb)
92                 return -ENOMEM;
93
94         usb_fill_control_urb(urb, usb_dev, pipe, (unsigned char *)cmd, data,
95                              len, usb_api_blocking_completion, NULL);
96
97         retv = usb_start_wait_urb(urb, timeout, &length);
98         if (retv < 0)
99                 return retv;
100         else
101                 return length;
102 }
103
104 /**
105  * usb_control_msg - Builds a control urb, sends it off and waits for completion
106  * @dev: pointer to the usb device to send the message to
107  * @pipe: endpoint "pipe" to send the message to
108  * @request: USB message request value
109  * @requesttype: USB message request type value
110  * @value: USB message value
111  * @index: USB message index value
112  * @data: pointer to the data to send
113  * @size: length in bytes of the data to send
114  * @timeout: time in msecs to wait for the message to complete before timing
115  *      out (if 0 the wait is forever)
116  *
117  * Context: !in_interrupt ()
118  *
119  * This function sends a simple control message to a specified endpoint and
120  * waits for the message to complete, or timeout.
121  *
122  * Don't use this function from within an interrupt context, like a bottom half
123  * handler.  If you need an asynchronous message, or need to send a message
124  * from within interrupt context, use usb_submit_urb().
125  * If a thread in your driver uses this call, make sure your disconnect()
126  * method can wait for it to complete.  Since you don't have a handle on the
127  * URB used, you can't cancel the request.
128  *
129  * Return: If successful, the number of bytes transferred. Otherwise, a negative
130  * error number.
131  */
132 int usb_control_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
133                     __u8 requesttype, __u16 value, __u16 index, void *data,
134                     __u16 size, int timeout)
135 {
136         struct usb_ctrlrequest *dr;
137         int ret;
138
139         dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_NOIO);
140         if (!dr)
141                 return -ENOMEM;
142
143         dr->bRequestType = requesttype;
144         dr->bRequest = request;
145         dr->wValue = cpu_to_le16(value);
146         dr->wIndex = cpu_to_le16(index);
147         dr->wLength = cpu_to_le16(size);
148
149         ret = usb_internal_control_msg(dev, pipe, dr, data, size, timeout);
150
151         /* Linger a bit, prior to the next control message. */
152         if (dev->quirks & USB_QUIRK_DELAY_CTRL_MSG)
153                 msleep(200);
154
155         kfree(dr);
156
157         return ret;
158 }
159 EXPORT_SYMBOL_GPL(usb_control_msg);
160
161 /**
162  * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion
163  * @usb_dev: pointer to the usb device to send the message to
164  * @pipe: endpoint "pipe" to send the message to
165  * @data: pointer to the data to send
166  * @len: length in bytes of the data to send
167  * @actual_length: pointer to a location to put the actual length transferred
168  *      in bytes
169  * @timeout: time in msecs to wait for the message to complete before
170  *      timing out (if 0 the wait is forever)
171  *
172  * Context: !in_interrupt ()
173  *
174  * This function sends a simple interrupt message to a specified endpoint and
175  * waits for the message to complete, or timeout.
176  *
177  * Don't use this function from within an interrupt context, like a bottom half
178  * handler.  If you need an asynchronous message, or need to send a message
179  * from within interrupt context, use usb_submit_urb() If a thread in your
180  * driver uses this call, make sure your disconnect() method can wait for it to
181  * complete.  Since you don't have a handle on the URB used, you can't cancel
182  * the request.
183  *
184  * Return:
185  * If successful, 0. Otherwise a negative error number. The number of actual
186  * bytes transferred will be stored in the @actual_length parameter.
187  */
188 int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe,
189                       void *data, int len, int *actual_length, int timeout)
190 {
191         return usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout);
192 }
193 EXPORT_SYMBOL_GPL(usb_interrupt_msg);
194
195 /**
196  * usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion
197  * @usb_dev: pointer to the usb device to send the message to
198  * @pipe: endpoint "pipe" to send the message to
199  * @data: pointer to the data to send
200  * @len: length in bytes of the data to send
201  * @actual_length: pointer to a location to put the actual length transferred
202  *      in bytes
203  * @timeout: time in msecs to wait for the message to complete before
204  *      timing out (if 0 the wait is forever)
205  *
206  * Context: !in_interrupt ()
207  *
208  * This function sends a simple bulk message to a specified endpoint
209  * and waits for the message to complete, or timeout.
210  *
211  * Don't use this function from within an interrupt context, like a bottom half
212  * handler.  If you need an asynchronous message, or need to send a message
213  * from within interrupt context, use usb_submit_urb() If a thread in your
214  * driver uses this call, make sure your disconnect() method can wait for it to
215  * complete.  Since you don't have a handle on the URB used, you can't cancel
216  * the request.
217  *
218  * Because there is no usb_interrupt_msg() and no USBDEVFS_INTERRUPT ioctl,
219  * users are forced to abuse this routine by using it to submit URBs for
220  * interrupt endpoints.  We will take the liberty of creating an interrupt URB
221  * (with the default interval) if the target is an interrupt endpoint.
222  *
223  * Return:
224  * If successful, 0. Otherwise a negative error number. The number of actual
225  * bytes transferred will be stored in the @actual_length parameter.
226  *
227  */
228 int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe,
229                  void *data, int len, int *actual_length, int timeout)
230 {
231         struct urb *urb;
232         struct usb_host_endpoint *ep;
233
234         ep = usb_pipe_endpoint(usb_dev, pipe);
235         if (!ep || len < 0)
236                 return -EINVAL;
237
238         urb = usb_alloc_urb(0, GFP_KERNEL);
239         if (!urb)
240                 return -ENOMEM;
241
242         if ((ep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
243                         USB_ENDPOINT_XFER_INT) {
244                 pipe = (pipe & ~(3 << 30)) | (PIPE_INTERRUPT << 30);
245                 usb_fill_int_urb(urb, usb_dev, pipe, data, len,
246                                 usb_api_blocking_completion, NULL,
247                                 ep->desc.bInterval);
248         } else
249                 usb_fill_bulk_urb(urb, usb_dev, pipe, data, len,
250                                 usb_api_blocking_completion, NULL);
251
252         return usb_start_wait_urb(urb, timeout, actual_length);
253 }
254 EXPORT_SYMBOL_GPL(usb_bulk_msg);
255
256 /*-------------------------------------------------------------------*/
257
258 static void sg_clean(struct usb_sg_request *io)
259 {
260         if (io->urbs) {
261                 while (io->entries--)
262                         usb_free_urb(io->urbs[io->entries]);
263                 kfree(io->urbs);
264                 io->urbs = NULL;
265         }
266         io->dev = NULL;
267 }
268
269 static void sg_complete(struct urb *urb)
270 {
271         struct usb_sg_request *io = urb->context;
272         int status = urb->status;
273
274         spin_lock(&io->lock);
275
276         /* In 2.5 we require hcds' endpoint queues not to progress after fault
277          * reports, until the completion callback (this!) returns.  That lets
278          * device driver code (like this routine) unlink queued urbs first,
279          * if it needs to, since the HC won't work on them at all.  So it's
280          * not possible for page N+1 to overwrite page N, and so on.
281          *
282          * That's only for "hard" faults; "soft" faults (unlinks) sometimes
283          * complete before the HCD can get requests away from hardware,
284          * though never during cleanup after a hard fault.
285          */
286         if (io->status
287                         && (io->status != -ECONNRESET
288                                 || status != -ECONNRESET)
289                         && urb->actual_length) {
290                 dev_err(io->dev->bus->controller,
291                         "dev %s ep%d%s scatterlist error %d/%d\n",
292                         io->dev->devpath,
293                         usb_endpoint_num(&urb->ep->desc),
294                         usb_urb_dir_in(urb) ? "in" : "out",
295                         status, io->status);
296                 /* BUG (); */
297         }
298
299         if (io->status == 0 && status && status != -ECONNRESET) {
300                 int i, found, retval;
301
302                 io->status = status;
303
304                 /* the previous urbs, and this one, completed already.
305                  * unlink pending urbs so they won't rx/tx bad data.
306                  * careful: unlink can sometimes be synchronous...
307                  */
308                 spin_unlock(&io->lock);
309                 for (i = 0, found = 0; i < io->entries; i++) {
310                         if (!io->urbs[i])
311                                 continue;
312                         if (found) {
313                                 usb_block_urb(io->urbs[i]);
314                                 retval = usb_unlink_urb(io->urbs[i]);
315                                 if (retval != -EINPROGRESS &&
316                                     retval != -ENODEV &&
317                                     retval != -EBUSY &&
318                                     retval != -EIDRM)
319                                         dev_err(&io->dev->dev,
320                                                 "%s, unlink --> %d\n",
321                                                 __func__, retval);
322                         } else if (urb == io->urbs[i])
323                                 found = 1;
324                 }
325                 spin_lock(&io->lock);
326         }
327
328         /* on the last completion, signal usb_sg_wait() */
329         io->bytes += urb->actual_length;
330         io->count--;
331         if (!io->count)
332                 complete(&io->complete);
333
334         spin_unlock(&io->lock);
335 }
336
337
338 /**
339  * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
340  * @io: request block being initialized.  until usb_sg_wait() returns,
341  *      treat this as a pointer to an opaque block of memory,
342  * @dev: the usb device that will send or receive the data
343  * @pipe: endpoint "pipe" used to transfer the data
344  * @period: polling rate for interrupt endpoints, in frames or
345  *      (for high speed endpoints) microframes; ignored for bulk
346  * @sg: scatterlist entries
347  * @nents: how many entries in the scatterlist
348  * @length: how many bytes to send from the scatterlist, or zero to
349  *      send every byte identified in the list.
350  * @mem_flags: SLAB_* flags affecting memory allocations in this call
351  *
352  * This initializes a scatter/gather request, allocating resources such as
353  * I/O mappings and urb memory (except maybe memory used by USB controller
354  * drivers).
355  *
356  * The request must be issued using usb_sg_wait(), which waits for the I/O to
357  * complete (or to be canceled) and then cleans up all resources allocated by
358  * usb_sg_init().
359  *
360  * The request may be canceled with usb_sg_cancel(), either before or after
361  * usb_sg_wait() is called.
362  *
363  * Return: Zero for success, else a negative errno value.
364  */
365 int usb_sg_init(struct usb_sg_request *io, struct usb_device *dev,
366                 unsigned pipe, unsigned period, struct scatterlist *sg,
367                 int nents, size_t length, gfp_t mem_flags)
368 {
369         int i;
370         int urb_flags;
371         int use_sg;
372
373         if (!io || !dev || !sg
374                         || usb_pipecontrol(pipe)
375                         || usb_pipeisoc(pipe)
376                         || nents <= 0)
377                 return -EINVAL;
378
379         spin_lock_init(&io->lock);
380         io->dev = dev;
381         io->pipe = pipe;
382
383         if (dev->bus->sg_tablesize > 0) {
384                 use_sg = true;
385                 io->entries = 1;
386         } else {
387                 use_sg = false;
388                 io->entries = nents;
389         }
390
391         /* initialize all the urbs we'll use */
392         io->urbs = kmalloc(io->entries * sizeof(*io->urbs), mem_flags);
393         if (!io->urbs)
394                 goto nomem;
395
396         urb_flags = URB_NO_INTERRUPT;
397         if (usb_pipein(pipe))
398                 urb_flags |= URB_SHORT_NOT_OK;
399
400         for_each_sg(sg, sg, io->entries, i) {
401                 struct urb *urb;
402                 unsigned len;
403
404                 urb = usb_alloc_urb(0, mem_flags);
405                 if (!urb) {
406                         io->entries = i;
407                         goto nomem;
408                 }
409                 io->urbs[i] = urb;
410
411                 urb->dev = NULL;
412                 urb->pipe = pipe;
413                 urb->interval = period;
414                 urb->transfer_flags = urb_flags;
415                 urb->complete = sg_complete;
416                 urb->context = io;
417                 urb->sg = sg;
418
419                 if (use_sg) {
420                         /* There is no single transfer buffer */
421                         urb->transfer_buffer = NULL;
422                         urb->num_sgs = nents;
423
424                         /* A length of zero means transfer the whole sg list */
425                         len = length;
426                         if (len == 0) {
427                                 struct scatterlist      *sg2;
428                                 int                     j;
429
430                                 for_each_sg(sg, sg2, nents, j)
431                                         len += sg2->length;
432                         }
433                 } else {
434                         /*
435                          * Some systems can't use DMA; they use PIO instead.
436                          * For their sakes, transfer_buffer is set whenever
437                          * possible.
438                          */
439                         if (!PageHighMem(sg_page(sg)))
440                                 urb->transfer_buffer = sg_virt(sg);
441                         else
442                                 urb->transfer_buffer = NULL;
443
444                         len = sg->length;
445                         if (length) {
446                                 len = min_t(size_t, len, length);
447                                 length -= len;
448                                 if (length == 0)
449                                         io->entries = i + 1;
450                         }
451                 }
452                 urb->transfer_buffer_length = len;
453         }
454         io->urbs[--i]->transfer_flags &= ~URB_NO_INTERRUPT;
455
456         /* transaction state */
457         io->count = io->entries;
458         io->status = 0;
459         io->bytes = 0;
460         init_completion(&io->complete);
461         return 0;
462
463 nomem:
464         sg_clean(io);
465         return -ENOMEM;
466 }
467 EXPORT_SYMBOL_GPL(usb_sg_init);
468
469 /**
470  * usb_sg_wait - synchronously execute scatter/gather request
471  * @io: request block handle, as initialized with usb_sg_init().
472  *      some fields become accessible when this call returns.
473  * Context: !in_interrupt ()
474  *
475  * This function blocks until the specified I/O operation completes.  It
476  * leverages the grouping of the related I/O requests to get good transfer
477  * rates, by queueing the requests.  At higher speeds, such queuing can
478  * significantly improve USB throughput.
479  *
480  * There are three kinds of completion for this function.
481  * (1) success, where io->status is zero.  The number of io->bytes
482  *     transferred is as requested.
483  * (2) error, where io->status is a negative errno value.  The number
484  *     of io->bytes transferred before the error is usually less
485  *     than requested, and can be nonzero.
486  * (3) cancellation, a type of error with status -ECONNRESET that
487  *     is initiated by usb_sg_cancel().
488  *
489  * When this function returns, all memory allocated through usb_sg_init() or
490  * this call will have been freed.  The request block parameter may still be
491  * passed to usb_sg_cancel(), or it may be freed.  It could also be
492  * reinitialized and then reused.
493  *
494  * Data Transfer Rates:
495  *
496  * Bulk transfers are valid for full or high speed endpoints.
497  * The best full speed data rate is 19 packets of 64 bytes each
498  * per frame, or 1216 bytes per millisecond.
499  * The best high speed data rate is 13 packets of 512 bytes each
500  * per microframe, or 52 KBytes per millisecond.
501  *
502  * The reason to use interrupt transfers through this API would most likely
503  * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
504  * could be transferred.  That capability is less useful for low or full
505  * speed interrupt endpoints, which allow at most one packet per millisecond,
506  * of at most 8 or 64 bytes (respectively).
507  *
508  * It is not necessary to call this function to reserve bandwidth for devices
509  * under an xHCI host controller, as the bandwidth is reserved when the
510  * configuration or interface alt setting is selected.
511  */
512 void usb_sg_wait(struct usb_sg_request *io)
513 {
514         int i;
515         int entries = io->entries;
516
517         /* queue the urbs.  */
518         spin_lock_irq(&io->lock);
519         i = 0;
520         while (i < entries && !io->status) {
521                 int retval;
522
523                 io->urbs[i]->dev = io->dev;
524                 spin_unlock_irq(&io->lock);
525
526                 retval = usb_submit_urb(io->urbs[i], GFP_NOIO);
527
528                 switch (retval) {
529                         /* maybe we retrying will recover */
530                 case -ENXIO:    /* hc didn't queue this one */
531                 case -EAGAIN:
532                 case -ENOMEM:
533                         retval = 0;
534                         yield();
535                         break;
536
537                         /* no error? continue immediately.
538                          *
539                          * NOTE: to work better with UHCI (4K I/O buffer may
540                          * need 3K of TDs) it may be good to limit how many
541                          * URBs are queued at once; N milliseconds?
542                          */
543                 case 0:
544                         ++i;
545                         cpu_relax();
546                         break;
547
548                         /* fail any uncompleted urbs */
549                 default:
550                         io->urbs[i]->status = retval;
551                         dev_dbg(&io->dev->dev, "%s, submit --> %d\n",
552                                 __func__, retval);
553                         usb_sg_cancel(io);
554                 }
555                 spin_lock_irq(&io->lock);
556                 if (retval && (io->status == 0 || io->status == -ECONNRESET))
557                         io->status = retval;
558         }
559         io->count -= entries - i;
560         if (io->count == 0)
561                 complete(&io->complete);
562         spin_unlock_irq(&io->lock);
563
564         /* OK, yes, this could be packaged as non-blocking.
565          * So could the submit loop above ... but it's easier to
566          * solve neither problem than to solve both!
567          */
568         wait_for_completion(&io->complete);
569
570         sg_clean(io);
571 }
572 EXPORT_SYMBOL_GPL(usb_sg_wait);
573
574 /**
575  * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
576  * @io: request block, initialized with usb_sg_init()
577  *
578  * This stops a request after it has been started by usb_sg_wait().
579  * It can also prevents one initialized by usb_sg_init() from starting,
580  * so that call just frees resources allocated to the request.
581  */
582 void usb_sg_cancel(struct usb_sg_request *io)
583 {
584         unsigned long flags;
585         int i, retval;
586
587         spin_lock_irqsave(&io->lock, flags);
588         if (io->status || io->count == 0) {
589                 spin_unlock_irqrestore(&io->lock, flags);
590                 return;
591         }
592         /* shut everything down */
593         io->status = -ECONNRESET;
594         io->count++;            /* Keep the request alive until we're done */
595         spin_unlock_irqrestore(&io->lock, flags);
596
597         for (i = io->entries - 1; i >= 0; --i) {
598                 usb_block_urb(io->urbs[i]);
599
600                 retval = usb_unlink_urb(io->urbs[i]);
601                 if (retval != -EINPROGRESS
602                     && retval != -ENODEV
603                     && retval != -EBUSY
604                     && retval != -EIDRM)
605                         dev_warn(&io->dev->dev, "%s, unlink --> %d\n",
606                                  __func__, retval);
607         }
608
609         spin_lock_irqsave(&io->lock, flags);
610         io->count--;
611         if (!io->count)
612                 complete(&io->complete);
613         spin_unlock_irqrestore(&io->lock, flags);
614 }
615 EXPORT_SYMBOL_GPL(usb_sg_cancel);
616
617 /*-------------------------------------------------------------------*/
618
619 /**
620  * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
621  * @dev: the device whose descriptor is being retrieved
622  * @type: the descriptor type (USB_DT_*)
623  * @index: the number of the descriptor
624  * @buf: where to put the descriptor
625  * @size: how big is "buf"?
626  * Context: !in_interrupt ()
627  *
628  * Gets a USB descriptor.  Convenience functions exist to simplify
629  * getting some types of descriptors.  Use
630  * usb_get_string() or usb_string() for USB_DT_STRING.
631  * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
632  * are part of the device structure.
633  * In addition to a number of USB-standard descriptors, some
634  * devices also use class-specific or vendor-specific descriptors.
635  *
636  * This call is synchronous, and may not be used in an interrupt context.
637  *
638  * Return: The number of bytes received on success, or else the status code
639  * returned by the underlying usb_control_msg() call.
640  */
641 int usb_get_descriptor(struct usb_device *dev, unsigned char type,
642                        unsigned char index, void *buf, int size)
643 {
644         int i;
645         int result;
646
647         memset(buf, 0, size);   /* Make sure we parse really received data */
648
649         for (i = 0; i < 3; ++i) {
650                 /* retry on length 0 or error; some devices are flakey */
651                 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
652                                 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
653                                 (type << 8) + index, 0, buf, size,
654                                 USB_CTRL_GET_TIMEOUT);
655                 if (result <= 0 && result != -ETIMEDOUT)
656                         continue;
657                 if (result > 1 && ((u8 *)buf)[1] != type) {
658                         result = -ENODATA;
659                         continue;
660                 }
661                 break;
662         }
663         return result;
664 }
665 EXPORT_SYMBOL_GPL(usb_get_descriptor);
666
667 /**
668  * usb_get_string - gets a string descriptor
669  * @dev: the device whose string descriptor is being retrieved
670  * @langid: code for language chosen (from string descriptor zero)
671  * @index: the number of the descriptor
672  * @buf: where to put the string
673  * @size: how big is "buf"?
674  * Context: !in_interrupt ()
675  *
676  * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
677  * in little-endian byte order).
678  * The usb_string() function will often be a convenient way to turn
679  * these strings into kernel-printable form.
680  *
681  * Strings may be referenced in device, configuration, interface, or other
682  * descriptors, and could also be used in vendor-specific ways.
683  *
684  * This call is synchronous, and may not be used in an interrupt context.
685  *
686  * Return: The number of bytes received on success, or else the status code
687  * returned by the underlying usb_control_msg() call.
688  */
689 static int usb_get_string(struct usb_device *dev, unsigned short langid,
690                           unsigned char index, void *buf, int size)
691 {
692         int i;
693         int result;
694
695         for (i = 0; i < 3; ++i) {
696                 /* retry on length 0 or stall; some devices are flakey */
697                 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
698                         USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
699                         (USB_DT_STRING << 8) + index, langid, buf, size,
700                         USB_CTRL_GET_TIMEOUT);
701                 if (result == 0 || result == -EPIPE)
702                         continue;
703                 if (result > 1 && ((u8 *) buf)[1] != USB_DT_STRING) {
704                         result = -ENODATA;
705                         continue;
706                 }
707                 break;
708         }
709         return result;
710 }
711
712 static void usb_try_string_workarounds(unsigned char *buf, int *length)
713 {
714         int newlength, oldlength = *length;
715
716         for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
717                 if (!isprint(buf[newlength]) || buf[newlength + 1])
718                         break;
719
720         if (newlength > 2) {
721                 buf[0] = newlength;
722                 *length = newlength;
723         }
724 }
725
726 static int usb_string_sub(struct usb_device *dev, unsigned int langid,
727                           unsigned int index, unsigned char *buf)
728 {
729         int rc;
730
731         /* Try to read the string descriptor by asking for the maximum
732          * possible number of bytes */
733         if (dev->quirks & USB_QUIRK_STRING_FETCH_255)
734                 rc = -EIO;
735         else
736                 rc = usb_get_string(dev, langid, index, buf, 255);
737
738         /* If that failed try to read the descriptor length, then
739          * ask for just that many bytes */
740         if (rc < 2) {
741                 rc = usb_get_string(dev, langid, index, buf, 2);
742                 if (rc == 2)
743                         rc = usb_get_string(dev, langid, index, buf, buf[0]);
744         }
745
746         if (rc >= 2) {
747                 if (!buf[0] && !buf[1])
748                         usb_try_string_workarounds(buf, &rc);
749
750                 /* There might be extra junk at the end of the descriptor */
751                 if (buf[0] < rc)
752                         rc = buf[0];
753
754                 rc = rc - (rc & 1); /* force a multiple of two */
755         }
756
757         if (rc < 2)
758                 rc = (rc < 0 ? rc : -EINVAL);
759
760         return rc;
761 }
762
763 static int usb_get_langid(struct usb_device *dev, unsigned char *tbuf)
764 {
765         int err;
766
767         if (dev->have_langid)
768                 return 0;
769
770         if (dev->string_langid < 0)
771                 return -EPIPE;
772
773         err = usb_string_sub(dev, 0, 0, tbuf);
774
775         /* If the string was reported but is malformed, default to english
776          * (0x0409) */
777         if (err == -ENODATA || (err > 0 && err < 4)) {
778                 dev->string_langid = 0x0409;
779                 dev->have_langid = 1;
780                 dev_err(&dev->dev,
781                         "language id specifier not provided by device, defaulting to English\n");
782                 return 0;
783         }
784
785         /* In case of all other errors, we assume the device is not able to
786          * deal with strings at all. Set string_langid to -1 in order to
787          * prevent any string to be retrieved from the device */
788         if (err < 0) {
789                 dev_err(&dev->dev, "string descriptor 0 read error: %d\n",
790                                         err);
791                 dev->string_langid = -1;
792                 return -EPIPE;
793         }
794
795         /* always use the first langid listed */
796         dev->string_langid = tbuf[2] | (tbuf[3] << 8);
797         dev->have_langid = 1;
798         dev_dbg(&dev->dev, "default language 0x%04x\n",
799                                 dev->string_langid);
800         return 0;
801 }
802
803 /**
804  * usb_string - returns UTF-8 version of a string descriptor
805  * @dev: the device whose string descriptor is being retrieved
806  * @index: the number of the descriptor
807  * @buf: where to put the string
808  * @size: how big is "buf"?
809  * Context: !in_interrupt ()
810  *
811  * This converts the UTF-16LE encoded strings returned by devices, from
812  * usb_get_string_descriptor(), to null-terminated UTF-8 encoded ones
813  * that are more usable in most kernel contexts.  Note that this function
814  * chooses strings in the first language supported by the device.
815  *
816  * This call is synchronous, and may not be used in an interrupt context.
817  *
818  * Return: length of the string (>= 0) or usb_control_msg status (< 0).
819  */
820 int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
821 {
822         unsigned char *tbuf;
823         int err;
824
825         if (dev->state == USB_STATE_SUSPENDED)
826                 return -EHOSTUNREACH;
827         if (size <= 0 || !buf)
828                 return -EINVAL;
829         buf[0] = 0;
830         if (index <= 0 || index >= 256)
831                 return -EINVAL;
832         tbuf = kmalloc(256, GFP_NOIO);
833         if (!tbuf)
834                 return -ENOMEM;
835
836         err = usb_get_langid(dev, tbuf);
837         if (err < 0)
838                 goto errout;
839
840         err = usb_string_sub(dev, dev->string_langid, index, tbuf);
841         if (err < 0)
842                 goto errout;
843
844         size--;         /* leave room for trailing NULL char in output buffer */
845         err = utf16s_to_utf8s((wchar_t *) &tbuf[2], (err - 2) / 2,
846                         UTF16_LITTLE_ENDIAN, buf, size);
847         buf[err] = 0;
848
849         if (tbuf[1] != USB_DT_STRING)
850                 dev_dbg(&dev->dev,
851                         "wrong descriptor type %02x for string %d (\"%s\")\n",
852                         tbuf[1], index, buf);
853
854  errout:
855         kfree(tbuf);
856         return err;
857 }
858 EXPORT_SYMBOL_GPL(usb_string);
859
860 /* one UTF-8-encoded 16-bit character has at most three bytes */
861 #define MAX_USB_STRING_SIZE (127 * 3 + 1)
862
863 /**
864  * usb_cache_string - read a string descriptor and cache it for later use
865  * @udev: the device whose string descriptor is being read
866  * @index: the descriptor index
867  *
868  * Return: A pointer to a kmalloc'ed buffer containing the descriptor string,
869  * or %NULL if the index is 0 or the string could not be read.
870  */
871 char *usb_cache_string(struct usb_device *udev, int index)
872 {
873         char *buf;
874         char *smallbuf = NULL;
875         int len;
876
877         if (index <= 0)
878                 return NULL;
879
880         buf = kmalloc(MAX_USB_STRING_SIZE, GFP_NOIO);
881         if (buf) {
882                 len = usb_string(udev, index, buf, MAX_USB_STRING_SIZE);
883                 if (len > 0) {
884                         smallbuf = kmalloc(++len, GFP_NOIO);
885                         if (!smallbuf)
886                                 return buf;
887                         memcpy(smallbuf, buf, len);
888                 }
889                 kfree(buf);
890         }
891         return smallbuf;
892 }
893
894 /*
895  * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
896  * @dev: the device whose device descriptor is being updated
897  * @size: how much of the descriptor to read
898  * Context: !in_interrupt ()
899  *
900  * Updates the copy of the device descriptor stored in the device structure,
901  * which dedicates space for this purpose.
902  *
903  * Not exported, only for use by the core.  If drivers really want to read
904  * the device descriptor directly, they can call usb_get_descriptor() with
905  * type = USB_DT_DEVICE and index = 0.
906  *
907  * This call is synchronous, and may not be used in an interrupt context.
908  *
909  * Return: The number of bytes received on success, or else the status code
910  * returned by the underlying usb_control_msg() call.
911  */
912 int usb_get_device_descriptor(struct usb_device *dev, unsigned int size)
913 {
914         struct usb_device_descriptor *desc;
915         int ret;
916
917         if (size > sizeof(*desc))
918                 return -EINVAL;
919         desc = kmalloc(sizeof(*desc), GFP_NOIO);
920         if (!desc)
921                 return -ENOMEM;
922
923         ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size);
924         if (ret >= 0)
925                 memcpy(&dev->descriptor, desc, size);
926         kfree(desc);
927         return ret;
928 }
929
930 /**
931  * usb_get_status - issues a GET_STATUS call
932  * @dev: the device whose status is being checked
933  * @type: USB_RECIP_*; for device, interface, or endpoint
934  * @target: zero (for device), else interface or endpoint number
935  * @data: pointer to two bytes of bitmap data
936  * Context: !in_interrupt ()
937  *
938  * Returns device, interface, or endpoint status.  Normally only of
939  * interest to see if the device is self powered, or has enabled the
940  * remote wakeup facility; or whether a bulk or interrupt endpoint
941  * is halted ("stalled").
942  *
943  * Bits in these status bitmaps are set using the SET_FEATURE request,
944  * and cleared using the CLEAR_FEATURE request.  The usb_clear_halt()
945  * function should be used to clear halt ("stall") status.
946  *
947  * This call is synchronous, and may not be used in an interrupt context.
948  *
949  * Returns 0 and the status value in *@data (in host byte order) on success,
950  * or else the status code from the underlying usb_control_msg() call.
951  */
952 int usb_get_status(struct usb_device *dev, int type, int target, void *data)
953 {
954         int ret;
955         __le16 *status = kmalloc(sizeof(*status), GFP_KERNEL);
956
957         if (!status)
958                 return -ENOMEM;
959
960         ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
961                 USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, status,
962                 sizeof(*status), USB_CTRL_GET_TIMEOUT);
963
964         if (ret == 2) {
965                 *(u16 *) data = le16_to_cpu(*status);
966                 ret = 0;
967         } else if (ret >= 0) {
968                 ret = -EIO;
969         }
970         kfree(status);
971         return ret;
972 }
973 EXPORT_SYMBOL_GPL(usb_get_status);
974
975 /**
976  * usb_clear_halt - tells device to clear endpoint halt/stall condition
977  * @dev: device whose endpoint is halted
978  * @pipe: endpoint "pipe" being cleared
979  * Context: !in_interrupt ()
980  *
981  * This is used to clear halt conditions for bulk and interrupt endpoints,
982  * as reported by URB completion status.  Endpoints that are halted are
983  * sometimes referred to as being "stalled".  Such endpoints are unable
984  * to transmit or receive data until the halt status is cleared.  Any URBs
985  * queued for such an endpoint should normally be unlinked by the driver
986  * before clearing the halt condition, as described in sections 5.7.5
987  * and 5.8.5 of the USB 2.0 spec.
988  *
989  * Note that control and isochronous endpoints don't halt, although control
990  * endpoints report "protocol stall" (for unsupported requests) using the
991  * same status code used to report a true stall.
992  *
993  * This call is synchronous, and may not be used in an interrupt context.
994  *
995  * Return: Zero on success, or else the status code returned by the
996  * underlying usb_control_msg() call.
997  */
998 int usb_clear_halt(struct usb_device *dev, int pipe)
999 {
1000         int result;
1001         int endp = usb_pipeendpoint(pipe);
1002
1003         if (usb_pipein(pipe))
1004                 endp |= USB_DIR_IN;
1005
1006         /* we don't care if it wasn't halted first. in fact some devices
1007          * (like some ibmcam model 1 units) seem to expect hosts to make
1008          * this request for iso endpoints, which can't halt!
1009          */
1010         result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1011                 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
1012                 USB_ENDPOINT_HALT, endp, NULL, 0,
1013                 USB_CTRL_SET_TIMEOUT);
1014
1015         /* don't un-halt or force to DATA0 except on success */
1016         if (result < 0)
1017                 return result;
1018
1019         /* NOTE:  seems like Microsoft and Apple don't bother verifying
1020          * the clear "took", so some devices could lock up if you check...
1021          * such as the Hagiwara FlashGate DUAL.  So we won't bother.
1022          *
1023          * NOTE:  make sure the logic here doesn't diverge much from
1024          * the copy in usb-storage, for as long as we need two copies.
1025          */
1026
1027         usb_reset_endpoint(dev, endp);
1028
1029         return 0;
1030 }
1031 EXPORT_SYMBOL_GPL(usb_clear_halt);
1032
1033 static int create_intf_ep_devs(struct usb_interface *intf)
1034 {
1035         struct usb_device *udev = interface_to_usbdev(intf);
1036         struct usb_host_interface *alt = intf->cur_altsetting;
1037         int i;
1038
1039         if (intf->ep_devs_created || intf->unregistering)
1040                 return 0;
1041
1042         for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1043                 (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev);
1044         intf->ep_devs_created = 1;
1045         return 0;
1046 }
1047
1048 static void remove_intf_ep_devs(struct usb_interface *intf)
1049 {
1050         struct usb_host_interface *alt = intf->cur_altsetting;
1051         int i;
1052
1053         if (!intf->ep_devs_created)
1054                 return;
1055
1056         for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1057                 usb_remove_ep_devs(&alt->endpoint[i]);
1058         intf->ep_devs_created = 0;
1059 }
1060
1061 /**
1062  * usb_disable_endpoint -- Disable an endpoint by address
1063  * @dev: the device whose endpoint is being disabled
1064  * @epaddr: the endpoint's address.  Endpoint number for output,
1065  *      endpoint number + USB_DIR_IN for input
1066  * @reset_hardware: flag to erase any endpoint state stored in the
1067  *      controller hardware
1068  *
1069  * Disables the endpoint for URB submission and nukes all pending URBs.
1070  * If @reset_hardware is set then also deallocates hcd/hardware state
1071  * for the endpoint.
1072  */
1073 void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
1074                 bool reset_hardware)
1075 {
1076         unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1077         struct usb_host_endpoint *ep;
1078
1079         if (!dev)
1080                 return;
1081
1082         if (usb_endpoint_out(epaddr)) {
1083                 ep = dev->ep_out[epnum];
1084                 if (reset_hardware && epnum != 0)
1085                         dev->ep_out[epnum] = NULL;
1086         } else {
1087                 ep = dev->ep_in[epnum];
1088                 if (reset_hardware && epnum != 0)
1089                         dev->ep_in[epnum] = NULL;
1090         }
1091         if (ep) {
1092                 ep->enabled = 0;
1093                 usb_hcd_flush_endpoint(dev, ep);
1094                 if (reset_hardware)
1095                         usb_hcd_disable_endpoint(dev, ep);
1096         }
1097 }
1098
1099 /**
1100  * usb_reset_endpoint - Reset an endpoint's state.
1101  * @dev: the device whose endpoint is to be reset
1102  * @epaddr: the endpoint's address.  Endpoint number for output,
1103  *      endpoint number + USB_DIR_IN for input
1104  *
1105  * Resets any host-side endpoint state such as the toggle bit,
1106  * sequence number or current window.
1107  */
1108 void usb_reset_endpoint(struct usb_device *dev, unsigned int epaddr)
1109 {
1110         unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1111         struct usb_host_endpoint *ep;
1112
1113         if (usb_endpoint_out(epaddr))
1114                 ep = dev->ep_out[epnum];
1115         else
1116                 ep = dev->ep_in[epnum];
1117         if (ep)
1118                 usb_hcd_reset_endpoint(dev, ep);
1119 }
1120 EXPORT_SYMBOL_GPL(usb_reset_endpoint);
1121
1122
1123 /**
1124  * usb_disable_interface -- Disable all endpoints for an interface
1125  * @dev: the device whose interface is being disabled
1126  * @intf: pointer to the interface descriptor
1127  * @reset_hardware: flag to erase any endpoint state stored in the
1128  *      controller hardware
1129  *
1130  * Disables all the endpoints for the interface's current altsetting.
1131  */
1132 void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf,
1133                 bool reset_hardware)
1134 {
1135         struct usb_host_interface *alt = intf->cur_altsetting;
1136         int i;
1137
1138         for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
1139                 usb_disable_endpoint(dev,
1140                                 alt->endpoint[i].desc.bEndpointAddress,
1141                                 reset_hardware);
1142         }
1143 }
1144
1145 /*
1146  * usb_disable_device_endpoints -- Disable all endpoints for a device
1147  * @dev: the device whose endpoints are being disabled
1148  * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1149  */
1150 static void usb_disable_device_endpoints(struct usb_device *dev, int skip_ep0)
1151 {
1152         struct usb_hcd *hcd = bus_to_hcd(dev->bus);
1153         int i;
1154
1155         if (hcd->driver->check_bandwidth) {
1156                 /* First pass: Cancel URBs, leave endpoint pointers intact. */
1157                 for (i = skip_ep0; i < 16; ++i) {
1158                         usb_disable_endpoint(dev, i, false);
1159                         usb_disable_endpoint(dev, i + USB_DIR_IN, false);
1160                 }
1161                 /* Remove endpoints from the host controller internal state */
1162                 mutex_lock(hcd->bandwidth_mutex);
1163                 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
1164                 mutex_unlock(hcd->bandwidth_mutex);
1165         }
1166         /* Second pass: remove endpoint pointers */
1167         for (i = skip_ep0; i < 16; ++i) {
1168                 usb_disable_endpoint(dev, i, true);
1169                 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
1170         }
1171 }
1172
1173 /**
1174  * usb_disable_device - Disable all the endpoints for a USB device
1175  * @dev: the device whose endpoints are being disabled
1176  * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1177  *
1178  * Disables all the device's endpoints, potentially including endpoint 0.
1179  * Deallocates hcd/hardware state for the endpoints (nuking all or most
1180  * pending urbs) and usbcore state for the interfaces, so that usbcore
1181  * must usb_set_configuration() before any interfaces could be used.
1182  */
1183 void usb_disable_device(struct usb_device *dev, int skip_ep0)
1184 {
1185         int i;
1186
1187         /* getting rid of interfaces will disconnect
1188          * any drivers bound to them (a key side effect)
1189          */
1190         if (dev->actconfig) {
1191                 /*
1192                  * FIXME: In order to avoid self-deadlock involving the
1193                  * bandwidth_mutex, we have to mark all the interfaces
1194                  * before unregistering any of them.
1195                  */
1196                 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++)
1197                         dev->actconfig->interface[i]->unregistering = 1;
1198
1199                 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
1200                         struct usb_interface    *interface;
1201
1202                         /* remove this interface if it has been registered */
1203                         interface = dev->actconfig->interface[i];
1204                         if (!device_is_registered(&interface->dev))
1205                                 continue;
1206                         dev_dbg(&dev->dev, "unregistering interface %s\n",
1207                                 dev_name(&interface->dev));
1208                         remove_intf_ep_devs(interface);
1209                         device_del(&interface->dev);
1210                 }
1211
1212                 /* Now that the interfaces are unbound, nobody should
1213                  * try to access them.
1214                  */
1215                 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
1216                         put_device(&dev->actconfig->interface[i]->dev);
1217                         dev->actconfig->interface[i] = NULL;
1218                 }
1219
1220                 usb_disable_usb2_hardware_lpm(dev);
1221                 usb_unlocked_disable_lpm(dev);
1222                 usb_disable_ltm(dev);
1223
1224                 dev->actconfig = NULL;
1225                 if (dev->state == USB_STATE_CONFIGURED)
1226                         usb_set_device_state(dev, USB_STATE_ADDRESS);
1227         }
1228
1229         dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__,
1230                 skip_ep0 ? "non-ep0" : "all");
1231
1232         usb_disable_device_endpoints(dev, skip_ep0);
1233 }
1234
1235 /**
1236  * usb_enable_endpoint - Enable an endpoint for USB communications
1237  * @dev: the device whose interface is being enabled
1238  * @ep: the endpoint
1239  * @reset_ep: flag to reset the endpoint state
1240  *
1241  * Resets the endpoint state if asked, and sets dev->ep_{in,out} pointers.
1242  * For control endpoints, both the input and output sides are handled.
1243  */
1244 void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep,
1245                 bool reset_ep)
1246 {
1247         int epnum = usb_endpoint_num(&ep->desc);
1248         int is_out = usb_endpoint_dir_out(&ep->desc);
1249         int is_control = usb_endpoint_xfer_control(&ep->desc);
1250
1251         if (reset_ep)
1252                 usb_hcd_reset_endpoint(dev, ep);
1253         if (is_out || is_control)
1254                 dev->ep_out[epnum] = ep;
1255         if (!is_out || is_control)
1256                 dev->ep_in[epnum] = ep;
1257         ep->enabled = 1;
1258 }
1259
1260 /**
1261  * usb_enable_interface - Enable all the endpoints for an interface
1262  * @dev: the device whose interface is being enabled
1263  * @intf: pointer to the interface descriptor
1264  * @reset_eps: flag to reset the endpoints' state
1265  *
1266  * Enables all the endpoints for the interface's current altsetting.
1267  */
1268 void usb_enable_interface(struct usb_device *dev,
1269                 struct usb_interface *intf, bool reset_eps)
1270 {
1271         struct usb_host_interface *alt = intf->cur_altsetting;
1272         int i;
1273
1274         for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1275                 usb_enable_endpoint(dev, &alt->endpoint[i], reset_eps);
1276 }
1277
1278 /**
1279  * usb_set_interface - Makes a particular alternate setting be current
1280  * @dev: the device whose interface is being updated
1281  * @interface: the interface being updated
1282  * @alternate: the setting being chosen.
1283  * Context: !in_interrupt ()
1284  *
1285  * This is used to enable data transfers on interfaces that may not
1286  * be enabled by default.  Not all devices support such configurability.
1287  * Only the driver bound to an interface may change its setting.
1288  *
1289  * Within any given configuration, each interface may have several
1290  * alternative settings.  These are often used to control levels of
1291  * bandwidth consumption.  For example, the default setting for a high
1292  * speed interrupt endpoint may not send more than 64 bytes per microframe,
1293  * while interrupt transfers of up to 3KBytes per microframe are legal.
1294  * Also, isochronous endpoints may never be part of an
1295  * interface's default setting.  To access such bandwidth, alternate
1296  * interface settings must be made current.
1297  *
1298  * Note that in the Linux USB subsystem, bandwidth associated with
1299  * an endpoint in a given alternate setting is not reserved until an URB
1300  * is submitted that needs that bandwidth.  Some other operating systems
1301  * allocate bandwidth early, when a configuration is chosen.
1302  *
1303  * xHCI reserves bandwidth and configures the alternate setting in
1304  * usb_hcd_alloc_bandwidth(). If it fails the original interface altsetting
1305  * may be disabled. Drivers cannot rely on any particular alternate
1306  * setting being in effect after a failure.
1307  *
1308  * This call is synchronous, and may not be used in an interrupt context.
1309  * Also, drivers must not change altsettings while urbs are scheduled for
1310  * endpoints in that interface; all such urbs must first be completed
1311  * (perhaps forced by unlinking).
1312  *
1313  * Return: Zero on success, or else the status code returned by the
1314  * underlying usb_control_msg() call.
1315  */
1316 int usb_set_interface(struct usb_device *dev, int interface, int alternate)
1317 {
1318         struct usb_interface *iface;
1319         struct usb_host_interface *alt;
1320         struct usb_hcd *hcd = bus_to_hcd(dev->bus);
1321         int i, ret, manual = 0;
1322         unsigned int epaddr;
1323         unsigned int pipe;
1324
1325         if (dev->state == USB_STATE_SUSPENDED)
1326                 return -EHOSTUNREACH;
1327
1328         iface = usb_ifnum_to_if(dev, interface);
1329         if (!iface) {
1330                 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
1331                         interface);
1332                 return -EINVAL;
1333         }
1334         if (iface->unregistering)
1335                 return -ENODEV;
1336
1337         alt = usb_altnum_to_altsetting(iface, alternate);
1338         if (!alt) {
1339                 dev_warn(&dev->dev, "selecting invalid altsetting %d\n",
1340                          alternate);
1341                 return -EINVAL;
1342         }
1343         /*
1344          * usb3 hosts configure the interface in usb_hcd_alloc_bandwidth,
1345          * including freeing dropped endpoint ring buffers.
1346          * Make sure the interface endpoints are flushed before that
1347          */
1348         usb_disable_interface(dev, iface, false);
1349
1350         /* Make sure we have enough bandwidth for this alternate interface.
1351          * Remove the current alt setting and add the new alt setting.
1352          */
1353         mutex_lock(hcd->bandwidth_mutex);
1354         /* Disable LPM, and re-enable it once the new alt setting is installed,
1355          * so that the xHCI driver can recalculate the U1/U2 timeouts.
1356          */
1357         if (usb_disable_lpm(dev)) {
1358                 dev_err(&iface->dev, "%s Failed to disable LPM\n.", __func__);
1359                 mutex_unlock(hcd->bandwidth_mutex);
1360                 return -ENOMEM;
1361         }
1362         /* Changing alt-setting also frees any allocated streams */
1363         for (i = 0; i < iface->cur_altsetting->desc.bNumEndpoints; i++)
1364                 iface->cur_altsetting->endpoint[i].streams = 0;
1365
1366         ret = usb_hcd_alloc_bandwidth(dev, NULL, iface->cur_altsetting, alt);
1367         if (ret < 0) {
1368                 dev_info(&dev->dev, "Not enough bandwidth for altsetting %d\n",
1369                                 alternate);
1370                 usb_enable_lpm(dev);
1371                 mutex_unlock(hcd->bandwidth_mutex);
1372                 return ret;
1373         }
1374
1375         if (dev->quirks & USB_QUIRK_NO_SET_INTF)
1376                 ret = -EPIPE;
1377         else
1378                 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1379                                    USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
1380                                    alternate, interface, NULL, 0, 5000);
1381
1382         /* 9.4.10 says devices don't need this and are free to STALL the
1383          * request if the interface only has one alternate setting.
1384          */
1385         if (ret == -EPIPE && iface->num_altsetting == 1) {
1386                 dev_dbg(&dev->dev,
1387                         "manual set_interface for iface %d, alt %d\n",
1388                         interface, alternate);
1389                 manual = 1;
1390         } else if (ret < 0) {
1391                 /* Re-instate the old alt setting */
1392                 usb_hcd_alloc_bandwidth(dev, NULL, alt, iface->cur_altsetting);
1393                 usb_enable_lpm(dev);
1394                 mutex_unlock(hcd->bandwidth_mutex);
1395                 return ret;
1396         }
1397         mutex_unlock(hcd->bandwidth_mutex);
1398
1399         /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1400          * when they implement async or easily-killable versions of this or
1401          * other "should-be-internal" functions (like clear_halt).
1402          * should hcd+usbcore postprocess control requests?
1403          */
1404
1405         /* prevent submissions using previous endpoint settings */
1406         if (iface->cur_altsetting != alt) {
1407                 remove_intf_ep_devs(iface);
1408                 usb_remove_sysfs_intf_files(iface);
1409         }
1410         usb_disable_interface(dev, iface, true);
1411
1412         iface->cur_altsetting = alt;
1413
1414         /* Now that the interface is installed, re-enable LPM. */
1415         usb_unlocked_enable_lpm(dev);
1416
1417         /* If the interface only has one altsetting and the device didn't
1418          * accept the request, we attempt to carry out the equivalent action
1419          * by manually clearing the HALT feature for each endpoint in the
1420          * new altsetting.
1421          */
1422         if (manual) {
1423                 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
1424                         epaddr = alt->endpoint[i].desc.bEndpointAddress;
1425                         pipe = __create_pipe(dev,
1426                                         USB_ENDPOINT_NUMBER_MASK & epaddr) |
1427                                         (usb_endpoint_out(epaddr) ?
1428                                         USB_DIR_OUT : USB_DIR_IN);
1429
1430                         usb_clear_halt(dev, pipe);
1431                 }
1432         }
1433
1434         /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1435          *
1436          * Note:
1437          * Despite EP0 is always present in all interfaces/AS, the list of
1438          * endpoints from the descriptor does not contain EP0. Due to its
1439          * omnipresence one might expect EP0 being considered "affected" by
1440          * any SetInterface request and hence assume toggles need to be reset.
1441          * However, EP0 toggles are re-synced for every individual transfer
1442          * during the SETUP stage - hence EP0 toggles are "don't care" here.
1443          * (Likewise, EP0 never "halts" on well designed devices.)
1444          */
1445         usb_enable_interface(dev, iface, true);
1446         if (device_is_registered(&iface->dev)) {
1447                 usb_create_sysfs_intf_files(iface);
1448                 create_intf_ep_devs(iface);
1449         }
1450         return 0;
1451 }
1452 EXPORT_SYMBOL_GPL(usb_set_interface);
1453
1454 /**
1455  * usb_reset_configuration - lightweight device reset
1456  * @dev: the device whose configuration is being reset
1457  *
1458  * This issues a standard SET_CONFIGURATION request to the device using
1459  * the current configuration.  The effect is to reset most USB-related
1460  * state in the device, including interface altsettings (reset to zero),
1461  * endpoint halts (cleared), and endpoint state (only for bulk and interrupt
1462  * endpoints).  Other usbcore state is unchanged, including bindings of
1463  * usb device drivers to interfaces.
1464  *
1465  * Because this affects multiple interfaces, avoid using this with composite
1466  * (multi-interface) devices.  Instead, the driver for each interface may
1467  * use usb_set_interface() on the interfaces it claims.  Be careful though;
1468  * some devices don't support the SET_INTERFACE request, and others won't
1469  * reset all the interface state (notably endpoint state).  Resetting the whole
1470  * configuration would affect other drivers' interfaces.
1471  *
1472  * The caller must own the device lock.
1473  *
1474  * Return: Zero on success, else a negative error code.
1475  *
1476  * If this routine fails the device will probably be in an unusable state
1477  * with endpoints disabled, and interfaces only partially enabled.
1478  */
1479 int usb_reset_configuration(struct usb_device *dev)
1480 {
1481         int                     i, retval;
1482         struct usb_host_config  *config;
1483         struct usb_hcd *hcd = bus_to_hcd(dev->bus);
1484
1485         if (dev->state == USB_STATE_SUSPENDED)
1486                 return -EHOSTUNREACH;
1487
1488         /* caller must have locked the device and must own
1489          * the usb bus readlock (so driver bindings are stable);
1490          * calls during probe() are fine
1491          */
1492
1493         usb_disable_device_endpoints(dev, 1); /* skip ep0*/
1494
1495         config = dev->actconfig;
1496         retval = 0;
1497         mutex_lock(hcd->bandwidth_mutex);
1498         /* Disable LPM, and re-enable it once the configuration is reset, so
1499          * that the xHCI driver can recalculate the U1/U2 timeouts.
1500          */
1501         if (usb_disable_lpm(dev)) {
1502                 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1503                 mutex_unlock(hcd->bandwidth_mutex);
1504                 return -ENOMEM;
1505         }
1506
1507         /* xHCI adds all endpoints in usb_hcd_alloc_bandwidth */
1508         retval = usb_hcd_alloc_bandwidth(dev, config, NULL, NULL);
1509         if (retval < 0) {
1510                 usb_enable_lpm(dev);
1511                 mutex_unlock(hcd->bandwidth_mutex);
1512                 return retval;
1513         }
1514         retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1515                         USB_REQ_SET_CONFIGURATION, 0,
1516                         config->desc.bConfigurationValue, 0,
1517                         NULL, 0, USB_CTRL_SET_TIMEOUT);
1518         if (retval < 0) {
1519                 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
1520                 usb_enable_lpm(dev);
1521                 mutex_unlock(hcd->bandwidth_mutex);
1522                 return retval;
1523         }
1524         mutex_unlock(hcd->bandwidth_mutex);
1525
1526         /* re-init hc/hcd interface/endpoint state */
1527         for (i = 0; i < config->desc.bNumInterfaces; i++) {
1528                 struct usb_interface *intf = config->interface[i];
1529                 struct usb_host_interface *alt;
1530
1531                 alt = usb_altnum_to_altsetting(intf, 0);
1532
1533                 /* No altsetting 0?  We'll assume the first altsetting.
1534                  * We could use a GetInterface call, but if a device is
1535                  * so non-compliant that it doesn't have altsetting 0
1536                  * then I wouldn't trust its reply anyway.
1537                  */
1538                 if (!alt)
1539                         alt = &intf->altsetting[0];
1540
1541                 if (alt != intf->cur_altsetting) {
1542                         remove_intf_ep_devs(intf);
1543                         usb_remove_sysfs_intf_files(intf);
1544                 }
1545                 intf->cur_altsetting = alt;
1546                 usb_enable_interface(dev, intf, true);
1547                 if (device_is_registered(&intf->dev)) {
1548                         usb_create_sysfs_intf_files(intf);
1549                         create_intf_ep_devs(intf);
1550                 }
1551         }
1552         /* Now that the interfaces are installed, re-enable LPM. */
1553         usb_unlocked_enable_lpm(dev);
1554         return 0;
1555 }
1556 EXPORT_SYMBOL_GPL(usb_reset_configuration);
1557
1558 static void usb_release_interface(struct device *dev)
1559 {
1560         struct usb_interface *intf = to_usb_interface(dev);
1561         struct usb_interface_cache *intfc =
1562                         altsetting_to_usb_interface_cache(intf->altsetting);
1563
1564         kref_put(&intfc->ref, usb_release_interface_cache);
1565         usb_put_dev(interface_to_usbdev(intf));
1566         kfree(intf);
1567 }
1568
1569 /*
1570  * usb_deauthorize_interface - deauthorize an USB interface
1571  *
1572  * @intf: USB interface structure
1573  */
1574 void usb_deauthorize_interface(struct usb_interface *intf)
1575 {
1576         struct device *dev = &intf->dev;
1577
1578         device_lock(dev->parent);
1579
1580         if (intf->authorized) {
1581                 device_lock(dev);
1582                 intf->authorized = 0;
1583                 device_unlock(dev);
1584
1585                 usb_forced_unbind_intf(intf);
1586         }
1587
1588         device_unlock(dev->parent);
1589 }
1590
1591 /*
1592  * usb_authorize_interface - authorize an USB interface
1593  *
1594  * @intf: USB interface structure
1595  */
1596 void usb_authorize_interface(struct usb_interface *intf)
1597 {
1598         struct device *dev = &intf->dev;
1599
1600         if (!intf->authorized) {
1601                 device_lock(dev);
1602                 intf->authorized = 1; /* authorize interface */
1603                 device_unlock(dev);
1604         }
1605 }
1606
1607 static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
1608 {
1609         struct usb_device *usb_dev;
1610         struct usb_interface *intf;
1611         struct usb_host_interface *alt;
1612
1613         intf = to_usb_interface(dev);
1614         usb_dev = interface_to_usbdev(intf);
1615         alt = intf->cur_altsetting;
1616
1617         if (add_uevent_var(env, "INTERFACE=%d/%d/%d",
1618                    alt->desc.bInterfaceClass,
1619                    alt->desc.bInterfaceSubClass,
1620                    alt->desc.bInterfaceProtocol))
1621                 return -ENOMEM;
1622
1623         if (add_uevent_var(env,
1624                    "MODALIAS=usb:"
1625                    "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02Xin%02X",
1626                    le16_to_cpu(usb_dev->descriptor.idVendor),
1627                    le16_to_cpu(usb_dev->descriptor.idProduct),
1628                    le16_to_cpu(usb_dev->descriptor.bcdDevice),
1629                    usb_dev->descriptor.bDeviceClass,
1630                    usb_dev->descriptor.bDeviceSubClass,
1631                    usb_dev->descriptor.bDeviceProtocol,
1632                    alt->desc.bInterfaceClass,
1633                    alt->desc.bInterfaceSubClass,
1634                    alt->desc.bInterfaceProtocol,
1635                    alt->desc.bInterfaceNumber))
1636                 return -ENOMEM;
1637
1638         return 0;
1639 }
1640
1641 struct device_type usb_if_device_type = {
1642         .name =         "usb_interface",
1643         .release =      usb_release_interface,
1644         .uevent =       usb_if_uevent,
1645 };
1646
1647 static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev,
1648                                                 struct usb_host_config *config,
1649                                                 u8 inum)
1650 {
1651         struct usb_interface_assoc_descriptor *retval = NULL;
1652         struct usb_interface_assoc_descriptor *intf_assoc;
1653         int first_intf;
1654         int last_intf;
1655         int i;
1656
1657         for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) {
1658                 intf_assoc = config->intf_assoc[i];
1659                 if (intf_assoc->bInterfaceCount == 0)
1660                         continue;
1661
1662                 first_intf = intf_assoc->bFirstInterface;
1663                 last_intf = first_intf + (intf_assoc->bInterfaceCount - 1);
1664                 if (inum >= first_intf && inum <= last_intf) {
1665                         if (!retval)
1666                                 retval = intf_assoc;
1667                         else
1668                                 dev_err(&dev->dev, "Interface #%d referenced"
1669                                         " by multiple IADs\n", inum);
1670                 }
1671         }
1672
1673         return retval;
1674 }
1675
1676
1677 /*
1678  * Internal function to queue a device reset
1679  * See usb_queue_reset_device() for more details
1680  */
1681 static void __usb_queue_reset_device(struct work_struct *ws)
1682 {
1683         int rc;
1684         struct usb_interface *iface =
1685                 container_of(ws, struct usb_interface, reset_ws);
1686         struct usb_device *udev = interface_to_usbdev(iface);
1687
1688         rc = usb_lock_device_for_reset(udev, iface);
1689         if (rc >= 0) {
1690                 usb_reset_device(udev);
1691                 usb_unlock_device(udev);
1692         }
1693         usb_put_intf(iface);    /* Undo _get_ in usb_queue_reset_device() */
1694 }
1695
1696
1697 /*
1698  * usb_set_configuration - Makes a particular device setting be current
1699  * @dev: the device whose configuration is being updated
1700  * @configuration: the configuration being chosen.
1701  * Context: !in_interrupt(), caller owns the device lock
1702  *
1703  * This is used to enable non-default device modes.  Not all devices
1704  * use this kind of configurability; many devices only have one
1705  * configuration.
1706  *
1707  * @configuration is the value of the configuration to be installed.
1708  * According to the USB spec (e.g. section 9.1.1.5), configuration values
1709  * must be non-zero; a value of zero indicates that the device in
1710  * unconfigured.  However some devices erroneously use 0 as one of their
1711  * configuration values.  To help manage such devices, this routine will
1712  * accept @configuration = -1 as indicating the device should be put in
1713  * an unconfigured state.
1714  *
1715  * USB device configurations may affect Linux interoperability,
1716  * power consumption and the functionality available.  For example,
1717  * the default configuration is limited to using 100mA of bus power,
1718  * so that when certain device functionality requires more power,
1719  * and the device is bus powered, that functionality should be in some
1720  * non-default device configuration.  Other device modes may also be
1721  * reflected as configuration options, such as whether two ISDN
1722  * channels are available independently; and choosing between open
1723  * standard device protocols (like CDC) or proprietary ones.
1724  *
1725  * Note that a non-authorized device (dev->authorized == 0) will only
1726  * be put in unconfigured mode.
1727  *
1728  * Note that USB has an additional level of device configurability,
1729  * associated with interfaces.  That configurability is accessed using
1730  * usb_set_interface().
1731  *
1732  * This call is synchronous. The calling context must be able to sleep,
1733  * must own the device lock, and must not hold the driver model's USB
1734  * bus mutex; usb interface driver probe() methods cannot use this routine.
1735  *
1736  * Returns zero on success, or else the status code returned by the
1737  * underlying call that failed.  On successful completion, each interface
1738  * in the original device configuration has been destroyed, and each one
1739  * in the new configuration has been probed by all relevant usb device
1740  * drivers currently known to the kernel.
1741  */
1742 int usb_set_configuration(struct usb_device *dev, int configuration)
1743 {
1744         int i, ret;
1745         struct usb_host_config *cp = NULL;
1746         struct usb_interface **new_interfaces = NULL;
1747         struct usb_hcd *hcd = bus_to_hcd(dev->bus);
1748         int n, nintf;
1749
1750         if (dev->authorized == 0 || configuration == -1)
1751                 configuration = 0;
1752         else {
1753                 for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
1754                         if (dev->config[i].desc.bConfigurationValue ==
1755                                         configuration) {
1756                                 cp = &dev->config[i];
1757                                 break;
1758                         }
1759                 }
1760         }
1761         if ((!cp && configuration != 0))
1762                 return -EINVAL;
1763
1764         /* The USB spec says configuration 0 means unconfigured.
1765          * But if a device includes a configuration numbered 0,
1766          * we will accept it as a correctly configured state.
1767          * Use -1 if you really want to unconfigure the device.
1768          */
1769         if (cp && configuration == 0)
1770                 dev_warn(&dev->dev, "config 0 descriptor??\n");
1771
1772         /* Allocate memory for new interfaces before doing anything else,
1773          * so that if we run out then nothing will have changed. */
1774         n = nintf = 0;
1775         if (cp) {
1776                 nintf = cp->desc.bNumInterfaces;
1777                 new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
1778                                 GFP_NOIO);
1779                 if (!new_interfaces)
1780                         return -ENOMEM;
1781
1782                 for (; n < nintf; ++n) {
1783                         new_interfaces[n] = kzalloc(
1784                                         sizeof(struct usb_interface),
1785                                         GFP_NOIO);
1786                         if (!new_interfaces[n]) {
1787                                 ret = -ENOMEM;
1788 free_interfaces:
1789                                 while (--n >= 0)
1790                                         kfree(new_interfaces[n]);
1791                                 kfree(new_interfaces);
1792                                 return ret;
1793                         }
1794                 }
1795
1796                 i = dev->bus_mA - usb_get_max_power(dev, cp);
1797                 if (i < 0)
1798                         dev_warn(&dev->dev, "new config #%d exceeds power "
1799                                         "limit by %dmA\n",
1800                                         configuration, -i);
1801         }
1802
1803         /* Wake up the device so we can send it the Set-Config request */
1804         ret = usb_autoresume_device(dev);
1805         if (ret)
1806                 goto free_interfaces;
1807
1808         /* if it's already configured, clear out old state first.
1809          * getting rid of old interfaces means unbinding their drivers.
1810          */
1811         if (dev->state != USB_STATE_ADDRESS)
1812                 usb_disable_device(dev, 1);     /* Skip ep0 */
1813
1814         /* Get rid of pending async Set-Config requests for this device */
1815         cancel_async_set_config(dev);
1816
1817         /* Make sure we have bandwidth (and available HCD resources) for this
1818          * configuration.  Remove endpoints from the schedule if we're dropping
1819          * this configuration to set configuration 0.  After this point, the
1820          * host controller will not allow submissions to dropped endpoints.  If
1821          * this call fails, the device state is unchanged.
1822          */
1823         mutex_lock(hcd->bandwidth_mutex);
1824         /* Disable LPM, and re-enable it once the new configuration is
1825          * installed, so that the xHCI driver can recalculate the U1/U2
1826          * timeouts.
1827          */
1828         if (dev->actconfig && usb_disable_lpm(dev)) {
1829                 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1830                 mutex_unlock(hcd->bandwidth_mutex);
1831                 ret = -ENOMEM;
1832                 goto free_interfaces;
1833         }
1834         ret = usb_hcd_alloc_bandwidth(dev, cp, NULL, NULL);
1835         if (ret < 0) {
1836                 if (dev->actconfig)
1837                         usb_enable_lpm(dev);
1838                 mutex_unlock(hcd->bandwidth_mutex);
1839                 usb_autosuspend_device(dev);
1840                 goto free_interfaces;
1841         }
1842
1843         /*
1844          * Initialize the new interface structures and the
1845          * hc/hcd/usbcore interface/endpoint state.
1846          */
1847         for (i = 0; i < nintf; ++i) {
1848                 struct usb_interface_cache *intfc;
1849                 struct usb_interface *intf;
1850                 struct usb_host_interface *alt;
1851
1852                 cp->interface[i] = intf = new_interfaces[i];
1853                 intfc = cp->intf_cache[i];
1854                 intf->altsetting = intfc->altsetting;
1855                 intf->num_altsetting = intfc->num_altsetting;
1856                 intf->authorized = !!HCD_INTF_AUTHORIZED(hcd);
1857                 kref_get(&intfc->ref);
1858
1859                 alt = usb_altnum_to_altsetting(intf, 0);
1860
1861                 /* No altsetting 0?  We'll assume the first altsetting.
1862                  * We could use a GetInterface call, but if a device is
1863                  * so non-compliant that it doesn't have altsetting 0
1864                  * then I wouldn't trust its reply anyway.
1865                  */
1866                 if (!alt)
1867                         alt = &intf->altsetting[0];
1868
1869                 intf->intf_assoc =
1870                         find_iad(dev, cp, alt->desc.bInterfaceNumber);
1871                 intf->cur_altsetting = alt;
1872                 usb_enable_interface(dev, intf, true);
1873                 intf->dev.parent = &dev->dev;
1874                 intf->dev.driver = NULL;
1875                 intf->dev.bus = &usb_bus_type;
1876                 intf->dev.type = &usb_if_device_type;
1877                 intf->dev.groups = usb_interface_groups;
1878                 /*
1879                  * Please refer to usb_alloc_dev() to see why we set
1880                  * dma_mask and dma_pfn_offset.
1881                  */
1882                 intf->dev.dma_mask = dev->dev.dma_mask;
1883                 intf->dev.dma_pfn_offset = dev->dev.dma_pfn_offset;
1884                 INIT_WORK(&intf->reset_ws, __usb_queue_reset_device);
1885                 intf->minor = -1;
1886                 device_initialize(&intf->dev);
1887                 pm_runtime_no_callbacks(&intf->dev);
1888                 dev_set_name(&intf->dev, "%d-%s:%d.%d",
1889                         dev->bus->busnum, dev->devpath,
1890                         configuration, alt->desc.bInterfaceNumber);
1891                 usb_get_dev(dev);
1892         }
1893         kfree(new_interfaces);
1894
1895         ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1896                               USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
1897                               NULL, 0, USB_CTRL_SET_TIMEOUT);
1898         if (ret < 0 && cp) {
1899                 /*
1900                  * All the old state is gone, so what else can we do?
1901                  * The device is probably useless now anyway.
1902                  */
1903                 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
1904                 for (i = 0; i < nintf; ++i) {
1905                         usb_disable_interface(dev, cp->interface[i], true);
1906                         put_device(&cp->interface[i]->dev);
1907                         cp->interface[i] = NULL;
1908                 }
1909                 cp = NULL;
1910         }
1911
1912         dev->actconfig = cp;
1913         mutex_unlock(hcd->bandwidth_mutex);
1914
1915         if (!cp) {
1916                 usb_set_device_state(dev, USB_STATE_ADDRESS);
1917
1918                 /* Leave LPM disabled while the device is unconfigured. */
1919                 usb_autosuspend_device(dev);
1920                 return ret;
1921         }
1922         usb_set_device_state(dev, USB_STATE_CONFIGURED);
1923
1924         if (cp->string == NULL &&
1925                         !(dev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
1926                 cp->string = usb_cache_string(dev, cp->desc.iConfiguration);
1927
1928         /* Now that the interfaces are installed, re-enable LPM. */
1929         usb_unlocked_enable_lpm(dev);
1930         /* Enable LTM if it was turned off by usb_disable_device. */
1931         usb_enable_ltm(dev);
1932
1933         /* Now that all the interfaces are set up, register them
1934          * to trigger binding of drivers to interfaces.  probe()
1935          * routines may install different altsettings and may
1936          * claim() any interfaces not yet bound.  Many class drivers
1937          * need that: CDC, audio, video, etc.
1938          */
1939         for (i = 0; i < nintf; ++i) {
1940                 struct usb_interface *intf = cp->interface[i];
1941
1942                 dev_dbg(&dev->dev,
1943                         "adding %s (config #%d, interface %d)\n",
1944                         dev_name(&intf->dev), configuration,
1945                         intf->cur_altsetting->desc.bInterfaceNumber);
1946                 device_enable_async_suspend(&intf->dev);
1947                 ret = device_add(&intf->dev);
1948                 if (ret != 0) {
1949                         dev_err(&dev->dev, "device_add(%s) --> %d\n",
1950                                 dev_name(&intf->dev), ret);
1951                         continue;
1952                 }
1953                 create_intf_ep_devs(intf);
1954         }
1955
1956         usb_autosuspend_device(dev);
1957         return 0;
1958 }
1959 EXPORT_SYMBOL_GPL(usb_set_configuration);
1960
1961 static LIST_HEAD(set_config_list);
1962 static DEFINE_SPINLOCK(set_config_lock);
1963
1964 struct set_config_request {
1965         struct usb_device       *udev;
1966         int                     config;
1967         struct work_struct      work;
1968         struct list_head        node;
1969 };
1970
1971 /* Worker routine for usb_driver_set_configuration() */
1972 static void driver_set_config_work(struct work_struct *work)
1973 {
1974         struct set_config_request *req =
1975                 container_of(work, struct set_config_request, work);
1976         struct usb_device *udev = req->udev;
1977
1978         usb_lock_device(udev);
1979         spin_lock(&set_config_lock);
1980         list_del(&req->node);
1981         spin_unlock(&set_config_lock);
1982
1983         if (req->config >= -1)          /* Is req still valid? */
1984                 usb_set_configuration(udev, req->config);
1985         usb_unlock_device(udev);
1986         usb_put_dev(udev);
1987         kfree(req);
1988 }
1989
1990 /* Cancel pending Set-Config requests for a device whose configuration
1991  * was just changed
1992  */
1993 static void cancel_async_set_config(struct usb_device *udev)
1994 {
1995         struct set_config_request *req;
1996
1997         spin_lock(&set_config_lock);
1998         list_for_each_entry(req, &set_config_list, node) {
1999                 if (req->udev == udev)
2000                         req->config = -999;     /* Mark as cancelled */
2001         }
2002         spin_unlock(&set_config_lock);
2003 }
2004
2005 /**
2006  * usb_driver_set_configuration - Provide a way for drivers to change device configurations
2007  * @udev: the device whose configuration is being updated
2008  * @config: the configuration being chosen.
2009  * Context: In process context, must be able to sleep
2010  *
2011  * Device interface drivers are not allowed to change device configurations.
2012  * This is because changing configurations will destroy the interface the
2013  * driver is bound to and create new ones; it would be like a floppy-disk
2014  * driver telling the computer to replace the floppy-disk drive with a
2015  * tape drive!
2016  *
2017  * Still, in certain specialized circumstances the need may arise.  This
2018  * routine gets around the normal restrictions by using a work thread to
2019  * submit the change-config request.
2020  *
2021  * Return: 0 if the request was successfully queued, error code otherwise.
2022  * The caller has no way to know whether the queued request will eventually
2023  * succeed.
2024  */
2025 int usb_driver_set_configuration(struct usb_device *udev, int config)
2026 {
2027         struct set_config_request *req;
2028
2029         req = kmalloc(sizeof(*req), GFP_KERNEL);
2030         if (!req)
2031                 return -ENOMEM;
2032         req->udev = udev;
2033         req->config = config;
2034         INIT_WORK(&req->work, driver_set_config_work);
2035
2036         spin_lock(&set_config_lock);
2037         list_add(&req->node, &set_config_list);
2038         spin_unlock(&set_config_lock);
2039
2040         usb_get_dev(udev);
2041         schedule_work(&req->work);
2042         return 0;
2043 }
2044 EXPORT_SYMBOL_GPL(usb_driver_set_configuration);
2045
2046 /**
2047  * cdc_parse_cdc_header - parse the extra headers present in CDC devices
2048  * @hdr: the place to put the results of the parsing
2049  * @intf: the interface for which parsing is requested
2050  * @buffer: pointer to the extra headers to be parsed
2051  * @buflen: length of the extra headers
2052  *
2053  * This evaluates the extra headers present in CDC devices which
2054  * bind the interfaces for data and control and provide details
2055  * about the capabilities of the device.
2056  *
2057  * Return: number of descriptors parsed or -EINVAL
2058  * if the header is contradictory beyond salvage
2059  */
2060
2061 int cdc_parse_cdc_header(struct usb_cdc_parsed_header *hdr,
2062                                 struct usb_interface *intf,
2063                                 u8 *buffer,
2064                                 int buflen)
2065 {
2066         /* duplicates are ignored */
2067         struct usb_cdc_union_desc *union_header = NULL;
2068
2069         /* duplicates are not tolerated */
2070         struct usb_cdc_header_desc *header = NULL;
2071         struct usb_cdc_ether_desc *ether = NULL;
2072         struct usb_cdc_mdlm_detail_desc *detail = NULL;
2073         struct usb_cdc_mdlm_desc *desc = NULL;
2074
2075         unsigned int elength;
2076         int cnt = 0;
2077
2078         memset(hdr, 0x00, sizeof(struct usb_cdc_parsed_header));
2079         hdr->phonet_magic_present = false;
2080         while (buflen > 0) {
2081                 elength = buffer[0];
2082                 if (!elength) {
2083                         dev_err(&intf->dev, "skipping garbage byte\n");
2084                         elength = 1;
2085                         goto next_desc;
2086                 }
2087                 if ((buflen < elength) || (elength < 3)) {
2088                         dev_err(&intf->dev, "invalid descriptor buffer length\n");
2089                         break;
2090                 }
2091                 if (buffer[1] != USB_DT_CS_INTERFACE) {
2092                         dev_err(&intf->dev, "skipping garbage\n");
2093                         goto next_desc;
2094                 }
2095
2096                 switch (buffer[2]) {
2097                 case USB_CDC_UNION_TYPE: /* we've found it */
2098                         if (elength < sizeof(struct usb_cdc_union_desc))
2099                                 goto next_desc;
2100                         if (union_header) {
2101                                 dev_err(&intf->dev, "More than one union descriptor, skipping ...\n");
2102                                 goto next_desc;
2103                         }
2104                         union_header = (struct usb_cdc_union_desc *)buffer;
2105                         break;
2106                 case USB_CDC_COUNTRY_TYPE:
2107                         if (elength < sizeof(struct usb_cdc_country_functional_desc))
2108                                 goto next_desc;
2109                         hdr->usb_cdc_country_functional_desc =
2110                                 (struct usb_cdc_country_functional_desc *)buffer;
2111                         break;
2112                 case USB_CDC_HEADER_TYPE:
2113                         if (elength != sizeof(struct usb_cdc_header_desc))
2114                                 goto next_desc;
2115                         if (header)
2116                                 return -EINVAL;
2117                         header = (struct usb_cdc_header_desc *)buffer;
2118                         break;
2119                 case USB_CDC_ACM_TYPE:
2120                         if (elength < sizeof(struct usb_cdc_acm_descriptor))
2121                                 goto next_desc;
2122                         hdr->usb_cdc_acm_descriptor =
2123                                 (struct usb_cdc_acm_descriptor *)buffer;
2124                         break;
2125                 case USB_CDC_ETHERNET_TYPE:
2126                         if (elength != sizeof(struct usb_cdc_ether_desc))
2127                                 goto next_desc;
2128                         if (ether)
2129                                 return -EINVAL;
2130                         ether = (struct usb_cdc_ether_desc *)buffer;
2131                         break;
2132                 case USB_CDC_CALL_MANAGEMENT_TYPE:
2133                         if (elength < sizeof(struct usb_cdc_call_mgmt_descriptor))
2134                                 goto next_desc;
2135                         hdr->usb_cdc_call_mgmt_descriptor =
2136                                 (struct usb_cdc_call_mgmt_descriptor *)buffer;
2137                         break;
2138                 case USB_CDC_DMM_TYPE:
2139                         if (elength < sizeof(struct usb_cdc_dmm_desc))
2140                                 goto next_desc;
2141                         hdr->usb_cdc_dmm_desc =
2142                                 (struct usb_cdc_dmm_desc *)buffer;
2143                         break;
2144                 case USB_CDC_MDLM_TYPE:
2145                         if (elength < sizeof(struct usb_cdc_mdlm_desc))
2146                                 goto next_desc;
2147                         if (desc)
2148                                 return -EINVAL;
2149                         desc = (struct usb_cdc_mdlm_desc *)buffer;
2150                         break;
2151                 case USB_CDC_MDLM_DETAIL_TYPE:
2152                         if (elength < sizeof(struct usb_cdc_mdlm_detail_desc))
2153                                 goto next_desc;
2154                         if (detail)
2155                                 return -EINVAL;
2156                         detail = (struct usb_cdc_mdlm_detail_desc *)buffer;
2157                         break;
2158                 case USB_CDC_NCM_TYPE:
2159                         if (elength < sizeof(struct usb_cdc_ncm_desc))
2160                                 goto next_desc;
2161                         hdr->usb_cdc_ncm_desc = (struct usb_cdc_ncm_desc *)buffer;
2162                         break;
2163                 case USB_CDC_MBIM_TYPE:
2164                         if (elength < sizeof(struct usb_cdc_mbim_desc))
2165                                 goto next_desc;
2166
2167                         hdr->usb_cdc_mbim_desc = (struct usb_cdc_mbim_desc *)buffer;
2168                         break;
2169                 case USB_CDC_MBIM_EXTENDED_TYPE:
2170                         if (elength < sizeof(struct usb_cdc_mbim_extended_desc))
2171                                 break;
2172                         hdr->usb_cdc_mbim_extended_desc =
2173                                 (struct usb_cdc_mbim_extended_desc *)buffer;
2174                         break;
2175                 case CDC_PHONET_MAGIC_NUMBER:
2176                         hdr->phonet_magic_present = true;
2177                         break;
2178                 default:
2179                         /*
2180                          * there are LOTS more CDC descriptors that
2181                          * could legitimately be found here.
2182                          */
2183                         dev_dbg(&intf->dev, "Ignoring descriptor: type %02x, length %ud\n",
2184                                         buffer[2], elength);
2185                         goto next_desc;
2186                 }
2187                 cnt++;
2188 next_desc:
2189                 buflen -= elength;
2190                 buffer += elength;
2191         }
2192         hdr->usb_cdc_union_desc = union_header;
2193         hdr->usb_cdc_header_desc = header;
2194         hdr->usb_cdc_mdlm_detail_desc = detail;
2195         hdr->usb_cdc_mdlm_desc = desc;
2196         hdr->usb_cdc_ether_desc = ether;
2197         return cnt;
2198 }
2199
2200 EXPORT_SYMBOL(cdc_parse_cdc_header);