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