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