blob: 0e6ab0a17c08284d69a9dc326169bb4a485c1c69 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * message.c - synchronous message handling
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/pci.h> /* for scatterlist macros */
6#include <linux/usb.h>
7#include <linux/module.h>
8#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mm.h>
10#include <linux/timer.h>
11#include <linux/ctype.h>
Clemens Ladischa853a3d2009-04-24 10:12:18 +020012#include <linux/nls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/device.h>
Ralf Baechle11763602007-10-23 20:42:11 +020014#include <linux/scatterlist.h>
Oliver Neukume4c6fb72016-07-14 15:41:30 +020015#include <linux/usb/cdc.h>
Oliver Neukum7ceec1f2007-01-26 14:26:21 +010016#include <linux/usb/quirks.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020017#include <linux/usb/hcd.h> /* for usbcore internals */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/byteorder.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "usb.h"
21
Alan Sterndf718962008-12-19 10:27:56 -050022static void cancel_async_set_config(struct usb_device *udev);
23
Alan Stern67f5dde2007-07-24 18:23:23 -040024struct api_context {
25 struct completion done;
26 int status;
27};
28
David Howells7d12e782006-10-05 14:55:46 +010029static void usb_api_blocking_completion(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Alan Stern67f5dde2007-07-24 18:23:23 -040031 struct api_context *ctx = urb->context;
32
33 ctx->status = urb->status;
34 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
37
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020038/*
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 */
44static int usb_start_wait_urb(struct urb *urb, int timeout, int *actual_length)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080045{
Alan Stern67f5dde2007-07-24 18:23:23 -040046 struct api_context ctx;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020047 unsigned long expire;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070048 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Alan Stern67f5dde2007-07-24 18:23:23 -040050 init_completion(&ctx.done);
51 urb->context = &ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 urb->actual_length = 0;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070053 retval = usb_submit_urb(urb, GFP_NOIO);
54 if (unlikely(retval))
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020055 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020057 expire = timeout ? msecs_to_jiffies(timeout) : MAX_SCHEDULE_TIMEOUT;
Alan Stern67f5dde2007-07-24 18:23:23 -040058 if (!wait_for_completion_timeout(&ctx.done, expire)) {
59 usb_kill_urb(urb);
60 retval = (ctx.status == -ENOENT ? -ETIMEDOUT : ctx.status);
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020061
62 dev_dbg(&urb->dev->dev,
Roel Kluin71d27182009-03-13 12:19:18 +010063 "%s timed out on ep%d%s len=%u/%u\n",
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020064 current->comm,
Alan Stern5e60a162007-07-30 17:07:21 -040065 usb_endpoint_num(&urb->ep->desc),
66 usb_urb_dir_in(urb) ? "in" : "out",
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020067 urb->actual_length,
68 urb->transfer_buffer_length);
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020069 } else
Alan Stern67f5dde2007-07-24 18:23:23 -040070 retval = ctx.status;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020071out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (actual_length)
73 *actual_length = urb->actual_length;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 usb_free_urb(urb);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070076 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/*-------------------------------------------------------------------*/
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080080/* returns status (negative) or length (positive) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int usb_internal_control_msg(struct usb_device *usb_dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080082 unsigned int pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 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;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 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/**
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800105 * 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800117 * Context: !in_interrupt ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800119 * This function sends a simple control message to a specified endpoint and
120 * waits for the message to complete, or timeout.
121 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800122 * Don't use this function from within an interrupt context, like a bottom half
123 * handler. If you need an asynchronous message, or need to send a message
124 * from within interrupt context, use usb_submit_urb().
125 * If a thread in your driver uses this call, make sure your disconnect()
126 * method can wait for it to complete. Since you don't have a handle on the
127 * URB used, you can't cancel the request.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200128 *
129 * Return: If successful, the number of bytes transferred. Otherwise, a negative
130 * error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800132int 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800136 struct usb_ctrlrequest *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int ret;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800138
139 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (!dr)
141 return -ENOMEM;
142
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800143 dr->bRequestType = requesttype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 dr->bRequest = request;
Harvey Harrisonda2bbdc2008-10-29 14:25:51 -0700145 dr->wValue = cpu_to_le16(value);
146 dr->wIndex = cpu_to_le16(index);
147 dr->wLength = cpu_to_le16(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 ret = usb_internal_control_msg(dev, pipe, dr, data, size, timeout);
150
Danilo Krummrichb2708e12018-03-06 09:38:49 +0100151 /* Linger a bit, prior to the next control message. */
152 if (dev->quirks & USB_QUIRK_DELAY_CTRL_MSG)
153 msleep(200);
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 kfree(dr);
156
157 return ret;
158}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600159EXPORT_SYMBOL_GPL(usb_control_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161/**
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700162 * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion
163 * @usb_dev: pointer to the usb device to send the message to
164 * @pipe: endpoint "pipe" to send the message to
165 * @data: pointer to the data to send
166 * @len: length in bytes of the data to send
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800167 * @actual_length: pointer to a location to put the actual length transferred
168 * in bytes
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700169 * @timeout: time in msecs to wait for the message to complete before
170 * timing out (if 0 the wait is forever)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800171 *
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700172 * Context: !in_interrupt ()
173 *
174 * This function sends a simple interrupt message to a specified endpoint and
175 * waits for the message to complete, or timeout.
176 *
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700177 * 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.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200183 *
184 * Return:
185 * If successful, 0. Otherwise a negative error number. The number of actual
Masanari Iidae2278672014-02-18 22:54:36 +0900186 * bytes transferred will be stored in the @actual_length parameter.
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700187 */
188int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe,
189 void *data, int len, int *actual_length, int timeout)
190{
191 return usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout);
192}
193EXPORT_SYMBOL_GPL(usb_interrupt_msg);
194
195/**
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800196 * usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion
197 * @usb_dev: pointer to the usb device to send the message to
198 * @pipe: endpoint "pipe" to send the message to
199 * @data: pointer to the data to send
200 * @len: length in bytes of the data to send
201 * @actual_length: pointer to a location to put the actual length transferred
202 * in bytes
203 * @timeout: time in msecs to wait for the message to complete before
204 * timing out (if 0 the wait is forever)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800206 * Context: !in_interrupt ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800208 * This function sends a simple bulk message to a specified endpoint
209 * and waits for the message to complete, or timeout.
Alan Sternd09d36a2005-09-26 16:22:45 -0400210 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800211 * 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.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200222 *
223 * Return:
224 * If successful, 0. Otherwise a negative error number. The number of actual
Rahul Bedarkar025d4432014-01-04 11:24:41 +0530225 * bytes transferred will be stored in the @actual_length parameter.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200226 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800228int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe,
229 void *data, int len, int *actual_length, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 struct urb *urb;
Alan Sternd09d36a2005-09-26 16:22:45 -0400232 struct usb_host_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Matthew Wilcoxfe54b052010-04-30 13:11:29 -0600234 ep = usb_pipe_endpoint(usb_dev, pipe);
Alan Sternd09d36a2005-09-26 16:22:45 -0400235 if (!ep || len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return -EINVAL;
237
Alan Sternd09d36a2005-09-26 16:22:45 -0400238 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (!urb)
240 return -ENOMEM;
241
Alan Sternd09d36a2005-09-26 16:22:45 -0400242 if ((ep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
243 USB_ENDPOINT_XFER_INT) {
244 pipe = (pipe & ~(3 << 30)) | (PIPE_INTERRUPT << 30);
245 usb_fill_int_urb(urb, usb_dev, pipe, data, len,
Alan Stern8d062b92007-04-23 17:30:32 -0400246 usb_api_blocking_completion, NULL,
247 ep->desc.bInterval);
Alan Sternd09d36a2005-09-26 16:22:45 -0400248 } else
249 usb_fill_bulk_urb(urb, usb_dev, pipe, data, len,
250 usb_api_blocking_completion, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 return usb_start_wait_urb(urb, timeout, actual_length);
253}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600254EXPORT_SYMBOL_GPL(usb_bulk_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256/*-------------------------------------------------------------------*/
257
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800258static void sg_clean(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 if (io->urbs) {
261 while (io->entries--)
Tülin İzer085528e2013-05-17 10:32:35 +0300262 usb_free_urb(io->urbs[io->entries]);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800263 kfree(io->urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 io->urbs = NULL;
265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 io->dev = NULL;
267}
268
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800269static void sg_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800271 struct usb_sg_request *io = urb->context;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700272 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800274 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 /* In 2.5 we require hcds' endpoint queues not to progress after fault
277 * reports, until the completion callback (this!) returns. That lets
278 * device driver code (like this routine) unlink queued urbs first,
279 * if it needs to, since the HC won't work on them at all. So it's
280 * not possible for page N+1 to overwrite page N, and so on.
281 *
282 * That's only for "hard" faults; "soft" faults (unlinks) sometimes
283 * complete before the HCD can get requests away from hardware,
284 * though never during cleanup after a hard fault.
285 */
286 if (io->status
287 && (io->status != -ECONNRESET
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700288 || status != -ECONNRESET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 && urb->actual_length) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800290 dev_err(io->dev->bus->controller,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 "dev %s ep%d%s scatterlist error %d/%d\n",
292 io->dev->devpath,
Alan Stern5e60a162007-07-30 17:07:21 -0400293 usb_endpoint_num(&urb->ep->desc),
294 usb_urb_dir_in(urb) ? "in" : "out",
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700295 status, io->status);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800296 /* BUG (); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700299 if (io->status == 0 && status && status != -ECONNRESET) {
300 int i, found, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700302 io->status = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* the previous urbs, and this one, completed already.
305 * unlink pending urbs so they won't rx/tx bad data.
306 * careful: unlink can sometimes be synchronous...
307 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800308 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 for (i = 0, found = 0; i < io->entries; i++) {
David Mosberger98b74b02016-03-08 14:42:48 -0700310 if (!io->urbs[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 continue;
312 if (found) {
David Mosberger98b74b02016-03-08 14:42:48 -0700313 usb_block_urb(io->urbs[i]);
Tülin İzer085528e2013-05-17 10:32:35 +0300314 retval = usb_unlink_urb(io->urbs[i]);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700315 if (retval != -EINPROGRESS &&
316 retval != -ENODEV &&
Alan Sternbcf39852012-03-22 11:00:21 -0400317 retval != -EBUSY &&
318 retval != -EIDRM)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800319 dev_err(&io->dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 "%s, unlink --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800321 __func__, retval);
Tülin İzer085528e2013-05-17 10:32:35 +0300322 } else if (urb == io->urbs[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 found = 1;
324 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800325 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /* on the last completion, signal usb_sg_wait() */
329 io->bytes += urb->actual_length;
330 io->count--;
331 if (!io->count)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800332 complete(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800334 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
337
338/**
339 * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
340 * @io: request block being initialized. until usb_sg_wait() returns,
341 * treat this as a pointer to an opaque block of memory,
342 * @dev: the usb device that will send or receive the data
343 * @pipe: endpoint "pipe" used to transfer the data
344 * @period: polling rate for interrupt endpoints, in frames or
345 * (for high speed endpoints) microframes; ignored for bulk
346 * @sg: scatterlist entries
347 * @nents: how many entries in the scatterlist
348 * @length: how many bytes to send from the scatterlist, or zero to
349 * send every byte identified in the list.
350 * @mem_flags: SLAB_* flags affecting memory allocations in this call
351 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200352 * This initializes a scatter/gather request, allocating resources such as
353 * I/O mappings and urb memory (except maybe memory used by USB controller
354 * drivers).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 *
356 * The request must be issued using usb_sg_wait(), which waits for the I/O to
357 * complete (or to be canceled) and then cleans up all resources allocated by
358 * usb_sg_init().
359 *
360 * The request may be canceled with usb_sg_cancel(), either before or after
361 * usb_sg_wait() is called.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200362 *
363 * Return: Zero for success, else a negative errno value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800365int usb_sg_init(struct usb_sg_request *io, struct usb_device *dev,
366 unsigned pipe, unsigned period, struct scatterlist *sg,
367 int nents, size_t length, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800369 int i;
370 int urb_flags;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700371 int use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 if (!io || !dev || !sg
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800374 || usb_pipecontrol(pipe)
375 || usb_pipeisoc(pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 || nents <= 0)
377 return -EINVAL;
378
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800379 spin_lock_init(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 io->dev = dev;
381 io->pipe = pipe;
Alan Stern0ba169af2010-05-05 15:26:17 -0400382
383 if (dev->bus->sg_tablesize > 0) {
384 use_sg = true;
385 io->entries = 1;
386 } else {
387 use_sg = false;
388 io->entries = nents;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 /* initialize all the urbs we'll use */
Tülin İzera1fefaa2013-05-17 10:33:05 +0300392 io->urbs = kmalloc(io->entries * sizeof(*io->urbs), mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!io->urbs)
394 goto nomem;
395
Alan Stern0ba169af2010-05-05 15:26:17 -0400396 urb_flags = URB_NO_INTERRUPT;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800397 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 urb_flags |= URB_SHORT_NOT_OK;
399
Alan Stern0ba169af2010-05-05 15:26:17 -0400400 for_each_sg(sg, sg, io->entries, i) {
401 struct urb *urb;
402 unsigned len;
403
404 urb = usb_alloc_urb(0, mem_flags);
405 if (!urb) {
406 io->entries = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 goto nomem;
408 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400409 io->urbs[i] = urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Alan Stern0ba169af2010-05-05 15:26:17 -0400411 urb->dev = NULL;
412 urb->pipe = pipe;
413 urb->interval = period;
414 urb->transfer_flags = urb_flags;
415 urb->complete = sg_complete;
416 urb->context = io;
417 urb->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Alan Stern0ba169af2010-05-05 15:26:17 -0400419 if (use_sg) {
420 /* There is no single transfer buffer */
421 urb->transfer_buffer = NULL;
422 urb->num_sgs = nents;
Alan Sternff9c8952010-04-02 13:27:28 -0400423
Alan Stern0ba169af2010-05-05 15:26:17 -0400424 /* A length of zero means transfer the whole sg list */
425 len = length;
426 if (len == 0) {
Alan Stern64d65872010-06-18 10:16:33 -0400427 struct scatterlist *sg2;
428 int j;
429
430 for_each_sg(sg, sg2, nents, j)
431 len += sg2->length;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700432 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400433 } else {
Sarah Sharpe04748e2009-04-27 19:59:01 -0700434 /*
Alan Sternff9c8952010-04-02 13:27:28 -0400435 * Some systems can't use DMA; they use PIO instead.
436 * For their sakes, transfer_buffer is set whenever
437 * possible.
Sarah Sharpe04748e2009-04-27 19:59:01 -0700438 */
Alan Sternff9c8952010-04-02 13:27:28 -0400439 if (!PageHighMem(sg_page(sg)))
Alan Stern0ba169af2010-05-05 15:26:17 -0400440 urb->transfer_buffer = sg_virt(sg);
Pete Zaitcev81bf46f2009-06-11 08:40:39 -0600441 else
Alan Stern0ba169af2010-05-05 15:26:17 -0400442 urb->transfer_buffer = NULL;
Pete Zaitcev81bf46f2009-06-11 08:40:39 -0600443
Alan Sternff9c8952010-04-02 13:27:28 -0400444 len = sg->length;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700445 if (length) {
Dan Carpenteredb2b252011-09-27 09:25:19 +0300446 len = min_t(size_t, len, length);
Sarah Sharpe04748e2009-04-27 19:59:01 -0700447 length -= len;
448 if (length == 0)
449 io->entries = i + 1;
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400452 urb->transfer_buffer_length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400454 io->urbs[--i]->transfer_flags &= ~URB_NO_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 /* transaction state */
Alan Stern580da342008-08-05 13:05:17 -0400457 io->count = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 io->status = 0;
459 io->bytes = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800460 init_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return 0;
462
463nomem:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800464 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return -ENOMEM;
466}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600467EXPORT_SYMBOL_GPL(usb_sg_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469/**
470 * usb_sg_wait - synchronously execute scatter/gather request
471 * @io: request block handle, as initialized with usb_sg_init().
472 * some fields become accessible when this call returns.
473 * Context: !in_interrupt ()
474 *
475 * This function blocks until the specified I/O operation completes. It
476 * leverages the grouping of the related I/O requests to get good transfer
477 * rates, by queueing the requests. At higher speeds, such queuing can
478 * significantly improve USB throughput.
479 *
480 * There are three kinds of completion for this function.
481 * (1) success, where io->status is zero. The number of io->bytes
482 * transferred is as requested.
483 * (2) error, where io->status is a negative errno value. The number
484 * of io->bytes transferred before the error is usually less
485 * than requested, and can be nonzero.
Steven Cole093cf722005-05-03 19:07:24 -0600486 * (3) cancellation, a type of error with status -ECONNRESET that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 * is initiated by usb_sg_cancel().
488 *
489 * When this function returns, all memory allocated through usb_sg_init() or
490 * this call will have been freed. The request block parameter may still be
491 * passed to usb_sg_cancel(), or it may be freed. It could also be
492 * reinitialized and then reused.
493 *
494 * Data Transfer Rates:
495 *
496 * Bulk transfers are valid for full or high speed endpoints.
497 * The best full speed data rate is 19 packets of 64 bytes each
498 * per frame, or 1216 bytes per millisecond.
499 * The best high speed data rate is 13 packets of 512 bytes each
500 * per microframe, or 52 KBytes per millisecond.
501 *
502 * The reason to use interrupt transfers through this API would most likely
503 * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
504 * could be transferred. That capability is less useful for low or full
505 * speed interrupt endpoints, which allow at most one packet per millisecond,
506 * of at most 8 or 64 bytes (respectively).
Sarah Sharp79abb1a2009-04-27 19:58:26 -0700507 *
508 * It is not necessary to call this function to reserve bandwidth for devices
509 * under an xHCI host controller, as the bandwidth is reserved when the
510 * configuration or interface alt setting is selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800512void usb_sg_wait(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800514 int i;
515 int entries = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 /* queue the urbs. */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800518 spin_lock_irq(&io->lock);
Alan Stern8ccef0d2007-06-21 16:26:46 -0400519 i = 0;
520 while (i < entries && !io->status) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800521 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800523 io->urbs[i]->dev = io->dev;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800524 spin_unlock_irq(&io->lock);
David Mosberger98b74b02016-03-08 14:42:48 -0700525
526 retval = usb_submit_urb(io->urbs[i], GFP_NOIO);
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 switch (retval) {
529 /* maybe we retrying will recover */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800530 case -ENXIO: /* hc didn't queue this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 case -EAGAIN:
532 case -ENOMEM:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 retval = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800534 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 break;
536
537 /* no error? continue immediately.
538 *
539 * NOTE: to work better with UHCI (4K I/O buffer may
540 * need 3K of TDs) it may be good to limit how many
541 * URBs are queued at once; N milliseconds?
542 */
543 case 0:
Alan Stern8ccef0d2007-06-21 16:26:46 -0400544 ++i;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800545 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 break;
547
548 /* fail any uncompleted urbs */
549 default:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800550 io->urbs[i]->status = retval;
551 dev_dbg(&io->dev->dev, "%s, submit --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800552 __func__, retval);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800553 usb_sg_cancel(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800555 spin_lock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (retval && (io->status == 0 || io->status == -ECONNRESET))
557 io->status = retval;
558 }
559 io->count -= entries - i;
560 if (io->count == 0)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800561 complete(&io->complete);
562 spin_unlock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 /* OK, yes, this could be packaged as non-blocking.
565 * So could the submit loop above ... but it's easier to
566 * solve neither problem than to solve both!
567 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800568 wait_for_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800570 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600572EXPORT_SYMBOL_GPL(usb_sg_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574/**
575 * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
576 * @io: request block, initialized with usb_sg_init()
577 *
578 * This stops a request after it has been started by usb_sg_wait().
579 * It can also prevents one initialized by usb_sg_init() from starting,
580 * so that call just frees resources allocated to the request.
581 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800582void usb_sg_cancel(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800584 unsigned long flags;
David Mosberger5f2e5fb2016-03-08 14:42:49 -0700585 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800587 spin_lock_irqsave(&io->lock, flags);
David Mosberger5f2e5fb2016-03-08 14:42:49 -0700588 if (io->status) {
589 spin_unlock_irqrestore(&io->lock, flags);
590 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
David Mosberger5f2e5fb2016-03-08 14:42:49 -0700592 /* shut everything down */
593 io->status = -ECONNRESET;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800594 spin_unlock_irqrestore(&io->lock, flags);
David Mosberger5f2e5fb2016-03-08 14:42:49 -0700595
596 for (i = io->entries - 1; i >= 0; --i) {
597 usb_block_urb(io->urbs[i]);
598
599 retval = usb_unlink_urb(io->urbs[i]);
600 if (retval != -EINPROGRESS
601 && retval != -ENODEV
602 && retval != -EBUSY
603 && retval != -EIDRM)
604 dev_warn(&io->dev->dev, "%s, unlink --> %d\n",
605 __func__, retval);
606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600608EXPORT_SYMBOL_GPL(usb_sg_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610/*-------------------------------------------------------------------*/
611
612/**
613 * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
614 * @dev: the device whose descriptor is being retrieved
615 * @type: the descriptor type (USB_DT_*)
616 * @index: the number of the descriptor
617 * @buf: where to put the descriptor
618 * @size: how big is "buf"?
619 * Context: !in_interrupt ()
620 *
621 * Gets a USB descriptor. Convenience functions exist to simplify
622 * getting some types of descriptors. Use
623 * usb_get_string() or usb_string() for USB_DT_STRING.
624 * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
625 * are part of the device structure.
626 * In addition to a number of USB-standard descriptors, some
627 * devices also use class-specific or vendor-specific descriptors.
628 *
629 * This call is synchronous, and may not be used in an interrupt context.
630 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200631 * Return: The number of bytes received on success, or else the status code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 * returned by the underlying usb_control_msg() call.
633 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800634int usb_get_descriptor(struct usb_device *dev, unsigned char type,
635 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
637 int i;
638 int result;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800639
640 memset(buf, 0, size); /* Make sure we parse really received data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 for (i = 0; i < 3; ++i) {
Alan Sternc39772d2007-08-20 10:45:28 -0400643 /* retry on length 0 or error; some devices are flakey */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
645 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
646 (type << 8) + index, 0, buf, size,
647 USB_CTRL_GET_TIMEOUT);
Alan Sternc39772d2007-08-20 10:45:28 -0400648 if (result <= 0 && result != -ETIMEDOUT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 continue;
650 if (result > 1 && ((u8 *)buf)[1] != type) {
Alan Stern67f5a4b2009-02-20 16:33:08 -0500651 result = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 continue;
653 }
654 break;
655 }
656 return result;
657}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600658EXPORT_SYMBOL_GPL(usb_get_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660/**
661 * usb_get_string - gets a string descriptor
662 * @dev: the device whose string descriptor is being retrieved
663 * @langid: code for language chosen (from string descriptor zero)
664 * @index: the number of the descriptor
665 * @buf: where to put the string
666 * @size: how big is "buf"?
667 * Context: !in_interrupt ()
668 *
669 * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
670 * in little-endian byte order).
671 * The usb_string() function will often be a convenient way to turn
672 * these strings into kernel-printable form.
673 *
674 * Strings may be referenced in device, configuration, interface, or other
675 * descriptors, and could also be used in vendor-specific ways.
676 *
677 * This call is synchronous, and may not be used in an interrupt context.
678 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200679 * Return: The number of bytes received on success, or else the status code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 * returned by the underlying usb_control_msg() call.
681 */
Adrian Bunke266a122005-11-08 21:05:43 +0100682static int usb_get_string(struct usb_device *dev, unsigned short langid,
683 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 int i;
686 int result;
687
688 for (i = 0; i < 3; ++i) {
689 /* retry on length 0 or stall; some devices are flakey */
690 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
691 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
692 (USB_DT_STRING << 8) + index, langid, buf, size,
693 USB_CTRL_GET_TIMEOUT);
Alan Stern67f5a4b2009-02-20 16:33:08 -0500694 if (result == 0 || result == -EPIPE)
695 continue;
696 if (result > 1 && ((u8 *) buf)[1] != USB_DT_STRING) {
697 result = -ENODATA;
698 continue;
699 }
700 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702 return result;
703}
704
705static void usb_try_string_workarounds(unsigned char *buf, int *length)
706{
707 int newlength, oldlength = *length;
708
709 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
710 if (!isprint(buf[newlength]) || buf[newlength + 1])
711 break;
712
713 if (newlength > 2) {
714 buf[0] = newlength;
715 *length = newlength;
716 }
717}
718
719static int usb_string_sub(struct usb_device *dev, unsigned int langid,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800720 unsigned int index, unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 int rc;
723
724 /* Try to read the string descriptor by asking for the maximum
725 * possible number of bytes */
Oliver Neukum7ceec1f2007-01-26 14:26:21 +0100726 if (dev->quirks & USB_QUIRK_STRING_FETCH_255)
727 rc = -EIO;
728 else
729 rc = usb_get_string(dev, langid, index, buf, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 /* If that failed try to read the descriptor length, then
732 * ask for just that many bytes */
733 if (rc < 2) {
734 rc = usb_get_string(dev, langid, index, buf, 2);
735 if (rc == 2)
736 rc = usb_get_string(dev, langid, index, buf, buf[0]);
737 }
738
739 if (rc >= 2) {
740 if (!buf[0] && !buf[1])
741 usb_try_string_workarounds(buf, &rc);
742
743 /* There might be extra junk at the end of the descriptor */
744 if (buf[0] < rc)
745 rc = buf[0];
746
747 rc = rc - (rc & 1); /* force a multiple of two */
748 }
749
750 if (rc < 2)
751 rc = (rc < 0 ? rc : -EINVAL);
752
753 return rc;
754}
755
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200756static int usb_get_langid(struct usb_device *dev, unsigned char *tbuf)
757{
758 int err;
759
760 if (dev->have_langid)
761 return 0;
762
763 if (dev->string_langid < 0)
764 return -EPIPE;
765
766 err = usb_string_sub(dev, 0, 0, tbuf);
767
768 /* If the string was reported but is malformed, default to english
769 * (0x0409) */
770 if (err == -ENODATA || (err > 0 && err < 4)) {
771 dev->string_langid = 0x0409;
772 dev->have_langid = 1;
773 dev_err(&dev->dev,
Scot Doyle586af072014-09-25 15:16:48 +0000774 "language id specifier not provided by device, defaulting to English\n");
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200775 return 0;
776 }
777
778 /* In case of all other errors, we assume the device is not able to
779 * deal with strings at all. Set string_langid to -1 in order to
780 * prevent any string to be retrieved from the device */
781 if (err < 0) {
782 dev_err(&dev->dev, "string descriptor 0 read error: %d\n",
783 err);
784 dev->string_langid = -1;
785 return -EPIPE;
786 }
787
788 /* always use the first langid listed */
789 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
790 dev->have_langid = 1;
791 dev_dbg(&dev->dev, "default language 0x%04x\n",
792 dev->string_langid);
793 return 0;
794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/**
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200797 * usb_string - returns UTF-8 version of a string descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 * @dev: the device whose string descriptor is being retrieved
799 * @index: the number of the descriptor
800 * @buf: where to put the string
801 * @size: how big is "buf"?
802 * Context: !in_interrupt ()
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800803 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * This converts the UTF-16LE encoded strings returned by devices, from
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200805 * usb_get_string_descriptor(), to null-terminated UTF-8 encoded ones
806 * that are more usable in most kernel contexts. Note that this function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 * chooses strings in the first language supported by the device.
808 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 * This call is synchronous, and may not be used in an interrupt context.
810 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200811 * Return: length of the string (>= 0) or usb_control_msg status (< 0).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 */
813int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
814{
815 unsigned char *tbuf;
816 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 if (dev->state == USB_STATE_SUSPENDED)
819 return -EHOSTUNREACH;
820 if (size <= 0 || !buf || !index)
821 return -EINVAL;
822 buf[0] = 0;
Alan Stern74675a52009-04-30 10:08:18 -0400823 tbuf = kmalloc(256, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (!tbuf)
825 return -ENOMEM;
826
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200827 err = usb_get_langid(dev, tbuf);
828 if (err < 0)
829 goto errout;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
832 if (err < 0)
833 goto errout;
834
835 size--; /* leave room for trailing NULL char in output buffer */
Alan Stern74675a52009-04-30 10:08:18 -0400836 err = utf16s_to_utf8s((wchar_t *) &tbuf[2], (err - 2) / 2,
837 UTF16_LITTLE_ENDIAN, buf, size);
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200838 buf[err] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 if (tbuf[1] != USB_DT_STRING)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800841 dev_dbg(&dev->dev,
842 "wrong descriptor type %02x for string %d (\"%s\")\n",
843 tbuf[1], index, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 errout:
846 kfree(tbuf);
847 return err;
848}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600849EXPORT_SYMBOL_GPL(usb_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200851/* one UTF-8-encoded 16-bit character has at most three bytes */
852#define MAX_USB_STRING_SIZE (127 * 3 + 1)
853
Alan Stern4f62efe2005-10-24 16:24:14 -0400854/**
855 * usb_cache_string - read a string descriptor and cache it for later use
856 * @udev: the device whose string descriptor is being read
857 * @index: the descriptor index
858 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200859 * Return: A pointer to a kmalloc'ed buffer containing the descriptor string,
860 * or %NULL if the index is 0 or the string could not be read.
Alan Stern4f62efe2005-10-24 16:24:14 -0400861 */
862char *usb_cache_string(struct usb_device *udev, int index)
863{
864 char *buf;
865 char *smallbuf = NULL;
866 int len;
867
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800868 if (index <= 0)
869 return NULL;
870
Oliver Neukumacbe2fe2010-01-12 12:32:50 +0100871 buf = kmalloc(MAX_USB_STRING_SIZE, GFP_NOIO);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800872 if (buf) {
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200873 len = usb_string(udev, index, buf, MAX_USB_STRING_SIZE);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800874 if (len > 0) {
Oliver Neukumacbe2fe2010-01-12 12:32:50 +0100875 smallbuf = kmalloc(++len, GFP_NOIO);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800876 if (!smallbuf)
Alan Stern4f62efe2005-10-24 16:24:14 -0400877 return buf;
878 memcpy(smallbuf, buf, len);
879 }
880 kfree(buf);
881 }
882 return smallbuf;
883}
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885/*
886 * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
887 * @dev: the device whose device descriptor is being updated
888 * @size: how much of the descriptor to read
889 * Context: !in_interrupt ()
890 *
891 * Updates the copy of the device descriptor stored in the device structure,
Laurent Pinchart6ab16a92006-11-07 10:16:25 +0100892 * which dedicates space for this purpose.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 *
894 * Not exported, only for use by the core. If drivers really want to read
895 * the device descriptor directly, they can call usb_get_descriptor() with
896 * type = USB_DT_DEVICE and index = 0.
897 *
898 * This call is synchronous, and may not be used in an interrupt context.
899 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200900 * Return: The number of bytes received on success, or else the status code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 * returned by the underlying usb_control_msg() call.
902 */
903int usb_get_device_descriptor(struct usb_device *dev, unsigned int size)
904{
905 struct usb_device_descriptor *desc;
906 int ret;
907
908 if (size > sizeof(*desc))
909 return -EINVAL;
910 desc = kmalloc(sizeof(*desc), GFP_NOIO);
911 if (!desc)
912 return -ENOMEM;
913
914 ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800915 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 memcpy(&dev->descriptor, desc, size);
917 kfree(desc);
918 return ret;
919}
920
921/**
922 * usb_get_status - issues a GET_STATUS call
923 * @dev: the device whose status is being checked
924 * @type: USB_RECIP_*; for device, interface, or endpoint
925 * @target: zero (for device), else interface or endpoint number
926 * @data: pointer to two bytes of bitmap data
927 * Context: !in_interrupt ()
928 *
929 * Returns device, interface, or endpoint status. Normally only of
930 * interest to see if the device is self powered, or has enabled the
931 * remote wakeup facility; or whether a bulk or interrupt endpoint
932 * is halted ("stalled").
933 *
934 * Bits in these status bitmaps are set using the SET_FEATURE request,
935 * and cleared using the CLEAR_FEATURE request. The usb_clear_halt()
936 * function should be used to clear halt ("stall") status.
937 *
938 * This call is synchronous, and may not be used in an interrupt context.
939 *
Alan Stern15b73362013-07-30 15:35:40 -0400940 * Returns 0 and the status value in *@data (in host byte order) on success,
941 * or else the status code from the underlying usb_control_msg() call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 */
943int usb_get_status(struct usb_device *dev, int type, int target, void *data)
944{
945 int ret;
Alan Stern15b73362013-07-30 15:35:40 -0400946 __le16 *status = kmalloc(sizeof(*status), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 if (!status)
949 return -ENOMEM;
950
951 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
952 USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, status,
953 sizeof(*status), USB_CTRL_GET_TIMEOUT);
954
Alan Stern15b73362013-07-30 15:35:40 -0400955 if (ret == 2) {
956 *(u16 *) data = le16_to_cpu(*status);
957 ret = 0;
958 } else if (ret >= 0) {
959 ret = -EIO;
960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 kfree(status);
962 return ret;
963}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600964EXPORT_SYMBOL_GPL(usb_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966/**
967 * usb_clear_halt - tells device to clear endpoint halt/stall condition
968 * @dev: device whose endpoint is halted
969 * @pipe: endpoint "pipe" being cleared
970 * Context: !in_interrupt ()
971 *
972 * This is used to clear halt conditions for bulk and interrupt endpoints,
973 * as reported by URB completion status. Endpoints that are halted are
974 * sometimes referred to as being "stalled". Such endpoints are unable
975 * to transmit or receive data until the halt status is cleared. Any URBs
976 * queued for such an endpoint should normally be unlinked by the driver
977 * before clearing the halt condition, as described in sections 5.7.5
978 * and 5.8.5 of the USB 2.0 spec.
979 *
980 * Note that control and isochronous endpoints don't halt, although control
981 * endpoints report "protocol stall" (for unsupported requests) using the
982 * same status code used to report a true stall.
983 *
984 * This call is synchronous, and may not be used in an interrupt context.
985 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200986 * Return: Zero on success, or else the status code returned by the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 * underlying usb_control_msg() call.
988 */
989int usb_clear_halt(struct usb_device *dev, int pipe)
990{
991 int result;
992 int endp = usb_pipeendpoint(pipe);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800993
994 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 endp |= USB_DIR_IN;
996
997 /* we don't care if it wasn't halted first. in fact some devices
998 * (like some ibmcam model 1 units) seem to expect hosts to make
999 * this request for iso endpoints, which can't halt!
1000 */
1001 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1002 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
1003 USB_ENDPOINT_HALT, endp, NULL, 0,
1004 USB_CTRL_SET_TIMEOUT);
1005
1006 /* don't un-halt or force to DATA0 except on success */
1007 if (result < 0)
1008 return result;
1009
1010 /* NOTE: seems like Microsoft and Apple don't bother verifying
1011 * the clear "took", so some devices could lock up if you check...
1012 * such as the Hagiwara FlashGate DUAL. So we won't bother.
1013 *
1014 * NOTE: make sure the logic here doesn't diverge much from
1015 * the copy in usb-storage, for as long as we need two copies.
1016 */
1017
David Vrabel3444b262009-04-08 17:36:28 +00001018 usb_reset_endpoint(dev, endp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 return 0;
1021}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001022EXPORT_SYMBOL_GPL(usb_clear_halt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Alan Stern3b23dd62008-12-05 14:10:34 -05001024static int create_intf_ep_devs(struct usb_interface *intf)
1025{
1026 struct usb_device *udev = interface_to_usbdev(intf);
1027 struct usb_host_interface *alt = intf->cur_altsetting;
1028 int i;
1029
1030 if (intf->ep_devs_created || intf->unregistering)
1031 return 0;
1032
1033 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1034 (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev);
1035 intf->ep_devs_created = 1;
1036 return 0;
1037}
1038
1039static void remove_intf_ep_devs(struct usb_interface *intf)
1040{
1041 struct usb_host_interface *alt = intf->cur_altsetting;
1042 int i;
1043
1044 if (!intf->ep_devs_created)
1045 return;
1046
1047 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1048 usb_remove_ep_devs(&alt->endpoint[i]);
1049 intf->ep_devs_created = 0;
1050}
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052/**
1053 * usb_disable_endpoint -- Disable an endpoint by address
1054 * @dev: the device whose endpoint is being disabled
1055 * @epaddr: the endpoint's address. Endpoint number for output,
1056 * endpoint number + USB_DIR_IN for input
Alan Sternddeac4e72009-01-15 17:03:33 -05001057 * @reset_hardware: flag to erase any endpoint state stored in the
1058 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 *
Alan Sternddeac4e72009-01-15 17:03:33 -05001060 * Disables the endpoint for URB submission and nukes all pending URBs.
1061 * If @reset_hardware is set then also deallocates hcd/hardware state
1062 * for the endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 */
Alan Sternddeac4e72009-01-15 17:03:33 -05001064void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
1065 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
1067 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1068 struct usb_host_endpoint *ep;
1069
1070 if (!dev)
1071 return;
1072
1073 if (usb_endpoint_out(epaddr)) {
1074 ep = dev->ep_out[epnum];
Alan Sternddeac4e72009-01-15 17:03:33 -05001075 if (reset_hardware)
1076 dev->ep_out[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 } else {
1078 ep = dev->ep_in[epnum];
Alan Sternddeac4e72009-01-15 17:03:33 -05001079 if (reset_hardware)
1080 dev->ep_in[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001082 if (ep) {
1083 ep->enabled = 0;
Alan Stern95cf82f2007-09-10 11:33:05 -04001084 usb_hcd_flush_endpoint(dev, ep);
Alan Sternddeac4e72009-01-15 17:03:33 -05001085 if (reset_hardware)
1086 usb_hcd_disable_endpoint(dev, ep);
Alan Sternbdd016b2007-07-30 17:05:22 -04001087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
1090/**
David Vrabel3444b262009-04-08 17:36:28 +00001091 * usb_reset_endpoint - Reset an endpoint's state.
1092 * @dev: the device whose endpoint is to be reset
1093 * @epaddr: the endpoint's address. Endpoint number for output,
1094 * endpoint number + USB_DIR_IN for input
1095 *
1096 * Resets any host-side endpoint state such as the toggle bit,
1097 * sequence number or current window.
1098 */
1099void usb_reset_endpoint(struct usb_device *dev, unsigned int epaddr)
1100{
1101 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1102 struct usb_host_endpoint *ep;
1103
1104 if (usb_endpoint_out(epaddr))
1105 ep = dev->ep_out[epnum];
1106 else
1107 ep = dev->ep_in[epnum];
1108 if (ep)
1109 usb_hcd_reset_endpoint(dev, ep);
1110}
1111EXPORT_SYMBOL_GPL(usb_reset_endpoint);
1112
1113
1114/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 * usb_disable_interface -- Disable all endpoints for an interface
1116 * @dev: the device whose interface is being disabled
1117 * @intf: pointer to the interface descriptor
Alan Sternddeac4e72009-01-15 17:03:33 -05001118 * @reset_hardware: flag to erase any endpoint state stored in the
1119 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 *
1121 * Disables all the endpoints for the interface's current altsetting.
1122 */
Alan Sternddeac4e72009-01-15 17:03:33 -05001123void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf,
1124 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
1126 struct usb_host_interface *alt = intf->cur_altsetting;
1127 int i;
1128
1129 for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
1130 usb_disable_endpoint(dev,
Alan Sternddeac4e72009-01-15 17:03:33 -05001131 alt->endpoint[i].desc.bEndpointAddress,
1132 reset_hardware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134}
1135
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001136/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 * usb_disable_device - Disable all the endpoints for a USB device
1138 * @dev: the device whose endpoints are being disabled
1139 * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1140 *
1141 * Disables all the device's endpoints, potentially including endpoint 0.
1142 * Deallocates hcd/hardware state for the endpoints (nuking all or most
1143 * pending urbs) and usbcore state for the interfaces, so that usbcore
1144 * must usb_set_configuration() before any interfaces could be used.
1145 */
1146void usb_disable_device(struct usb_device *dev, int skip_ep0)
1147{
1148 int i;
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001149 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 /* getting rid of interfaces will disconnect
1152 * any drivers bound to them (a key side effect)
1153 */
1154 if (dev->actconfig) {
Alan Sternca5c4852011-07-06 17:03:45 -04001155 /*
1156 * FIXME: In order to avoid self-deadlock involving the
1157 * bandwidth_mutex, we have to mark all the interfaces
1158 * before unregistering any of them.
1159 */
1160 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++)
1161 dev->actconfig->interface[i]->unregistering = 1;
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
1164 struct usb_interface *interface;
1165
Alan Stern86d30742005-07-29 12:17:16 -07001166 /* remove this interface if it has been registered */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 interface = dev->actconfig->interface[i];
Daniel Ritzd305ef52005-09-22 00:47:24 -07001168 if (!device_is_registered(&interface->dev))
Alan Stern86d30742005-07-29 12:17:16 -07001169 continue;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001170 dev_dbg(&dev->dev, "unregistering interface %s\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001171 dev_name(&interface->dev));
Alan Stern3b23dd62008-12-05 14:10:34 -05001172 remove_intf_ep_devs(interface);
Alan Stern1a211752008-07-30 11:31:50 -04001173 device_del(&interface->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175
1176 /* Now that the interfaces are unbound, nobody should
1177 * try to access them.
1178 */
1179 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001180 put_device(&dev->actconfig->interface[i]->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 dev->actconfig->interface[i] = NULL;
1182 }
Sarah Sharpf468f7b2013-10-08 08:28:43 -07001183
Kai-Heng Feng9b916af2019-01-12 03:54:25 +08001184 usb_disable_usb2_hardware_lpm(dev);
Sarah Sharp24971912012-07-05 14:09:30 -07001185 usb_unlocked_disable_lpm(dev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07001186 usb_disable_ltm(dev);
Sarah Sharpf468f7b2013-10-08 08:28:43 -07001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 dev->actconfig = NULL;
1189 if (dev->state == USB_STATE_CONFIGURED)
1190 usb_set_device_state(dev, USB_STATE_ADDRESS);
1191 }
Alan Stern80f0cf32010-09-30 15:16:23 -04001192
1193 dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__,
1194 skip_ep0 ? "non-ep0" : "all");
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001195 if (hcd->driver->check_bandwidth) {
1196 /* First pass: Cancel URBs, leave endpoint pointers intact. */
1197 for (i = skip_ep0; i < 16; ++i) {
1198 usb_disable_endpoint(dev, i, false);
1199 usb_disable_endpoint(dev, i + USB_DIR_IN, false);
1200 }
1201 /* Remove endpoints from the host controller internal state */
Alan Stern8963c482012-04-17 15:22:39 -04001202 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001203 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
Alan Stern8963c482012-04-17 15:22:39 -04001204 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001205 /* Second pass: remove endpoint pointers */
1206 }
Alan Stern80f0cf32010-09-30 15:16:23 -04001207 for (i = skip_ep0; i < 16; ++i) {
1208 usb_disable_endpoint(dev, i, true);
1209 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
1210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001213/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 * usb_enable_endpoint - Enable an endpoint for USB communications
1215 * @dev: the device whose interface is being enabled
1216 * @ep: the endpoint
David Vrabel3444b262009-04-08 17:36:28 +00001217 * @reset_ep: flag to reset the endpoint state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 *
David Vrabel3444b262009-04-08 17:36:28 +00001219 * Resets the endpoint state if asked, and sets dev->ep_{in,out} pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 * For control endpoints, both the input and output sides are handled.
1221 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001222void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep,
David Vrabel3444b262009-04-08 17:36:28 +00001223 bool reset_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Alan Sternbdd016b2007-07-30 17:05:22 -04001225 int epnum = usb_endpoint_num(&ep->desc);
1226 int is_out = usb_endpoint_dir_out(&ep->desc);
1227 int is_control = usb_endpoint_xfer_control(&ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
David Vrabel3444b262009-04-08 17:36:28 +00001229 if (reset_ep)
1230 usb_hcd_reset_endpoint(dev, ep);
1231 if (is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 dev->ep_out[epnum] = ep;
David Vrabel3444b262009-04-08 17:36:28 +00001233 if (!is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 dev->ep_in[epnum] = ep;
Alan Sternbdd016b2007-07-30 17:05:22 -04001235 ep->enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001238/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 * usb_enable_interface - Enable all the endpoints for an interface
1240 * @dev: the device whose interface is being enabled
1241 * @intf: pointer to the interface descriptor
David Vrabel3444b262009-04-08 17:36:28 +00001242 * @reset_eps: flag to reset the endpoints' state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 *
1244 * Enables all the endpoints for the interface's current altsetting.
1245 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001246void usb_enable_interface(struct usb_device *dev,
David Vrabel3444b262009-04-08 17:36:28 +00001247 struct usb_interface *intf, bool reset_eps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
1249 struct usb_host_interface *alt = intf->cur_altsetting;
1250 int i;
1251
1252 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
David Vrabel3444b262009-04-08 17:36:28 +00001253 usb_enable_endpoint(dev, &alt->endpoint[i], reset_eps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
1256/**
1257 * usb_set_interface - Makes a particular alternate setting be current
1258 * @dev: the device whose interface is being updated
1259 * @interface: the interface being updated
1260 * @alternate: the setting being chosen.
1261 * Context: !in_interrupt ()
1262 *
1263 * This is used to enable data transfers on interfaces that may not
1264 * be enabled by default. Not all devices support such configurability.
1265 * Only the driver bound to an interface may change its setting.
1266 *
1267 * Within any given configuration, each interface may have several
1268 * alternative settings. These are often used to control levels of
1269 * bandwidth consumption. For example, the default setting for a high
1270 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1271 * while interrupt transfers of up to 3KBytes per microframe are legal.
1272 * Also, isochronous endpoints may never be part of an
1273 * interface's default setting. To access such bandwidth, alternate
1274 * interface settings must be made current.
1275 *
1276 * Note that in the Linux USB subsystem, bandwidth associated with
1277 * an endpoint in a given alternate setting is not reserved until an URB
1278 * is submitted that needs that bandwidth. Some other operating systems
1279 * allocate bandwidth early, when a configuration is chosen.
1280 *
Mathias Nymanc531c702018-09-03 15:44:16 +03001281 * xHCI reserves bandwidth and configures the alternate setting in
1282 * usb_hcd_alloc_bandwidth(). If it fails the original interface altsetting
1283 * may be disabled. Drivers cannot rely on any particular alternate
1284 * setting being in effect after a failure.
1285 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 * This call is synchronous, and may not be used in an interrupt context.
1287 * Also, drivers must not change altsettings while urbs are scheduled for
1288 * endpoints in that interface; all such urbs must first be completed
1289 * (perhaps forced by unlinking).
1290 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02001291 * Return: Zero on success, or else the status code returned by the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 * underlying usb_control_msg() call.
1293 */
1294int usb_set_interface(struct usb_device *dev, int interface, int alternate)
1295{
1296 struct usb_interface *iface;
1297 struct usb_host_interface *alt;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001298 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Hans de Goede7a7b5622013-11-08 16:37:26 +01001299 int i, ret, manual = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001300 unsigned int epaddr;
1301 unsigned int pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 if (dev->state == USB_STATE_SUSPENDED)
1304 return -EHOSTUNREACH;
1305
1306 iface = usb_ifnum_to_if(dev, interface);
1307 if (!iface) {
1308 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
1309 interface);
1310 return -EINVAL;
1311 }
Alan Sterne534c5b2011-07-01 16:43:02 -04001312 if (iface->unregistering)
1313 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 alt = usb_altnum_to_altsetting(iface, alternate);
1316 if (!alt) {
Thadeu Lima de Souza Cascardo385f6902010-01-17 19:24:03 -02001317 dev_warn(&dev->dev, "selecting invalid altsetting %d\n",
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -07001318 alternate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return -EINVAL;
1320 }
Mathias Nymanc531c702018-09-03 15:44:16 +03001321 /*
1322 * usb3 hosts configure the interface in usb_hcd_alloc_bandwidth,
1323 * including freeing dropped endpoint ring buffers.
1324 * Make sure the interface endpoints are flushed before that
1325 */
1326 usb_disable_interface(dev, iface, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001328 /* Make sure we have enough bandwidth for this alternate interface.
1329 * Remove the current alt setting and add the new alt setting.
1330 */
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001331 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001332 /* Disable LPM, and re-enable it once the new alt setting is installed,
1333 * so that the xHCI driver can recalculate the U1/U2 timeouts.
1334 */
1335 if (usb_disable_lpm(dev)) {
1336 dev_err(&iface->dev, "%s Failed to disable LPM\n.", __func__);
1337 mutex_unlock(hcd->bandwidth_mutex);
1338 return -ENOMEM;
1339 }
Hans de Goede7a7b5622013-11-08 16:37:26 +01001340 /* Changing alt-setting also frees any allocated streams */
1341 for (i = 0; i < iface->cur_altsetting->desc.bNumEndpoints; i++)
1342 iface->cur_altsetting->endpoint[i].streams = 0;
1343
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001344 ret = usb_hcd_alloc_bandwidth(dev, NULL, iface->cur_altsetting, alt);
1345 if (ret < 0) {
1346 dev_info(&dev->dev, "Not enough bandwidth for altsetting %d\n",
1347 alternate);
Sarah Sharp83060952012-05-02 14:25:52 -07001348 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001349 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001350 return ret;
1351 }
1352
Alan Stern392e1d92008-03-11 10:20:12 -04001353 if (dev->quirks & USB_QUIRK_NO_SET_INTF)
1354 ret = -EPIPE;
1355 else
1356 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
1358 alternate, interface, NULL, 0, 5000);
1359
1360 /* 9.4.10 says devices don't need this and are free to STALL the
1361 * request if the interface only has one alternate setting.
1362 */
1363 if (ret == -EPIPE && iface->num_altsetting == 1) {
1364 dev_dbg(&dev->dev,
1365 "manual set_interface for iface %d, alt %d\n",
1366 interface, alternate);
1367 manual = 1;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001368 } else if (ret < 0) {
1369 /* Re-instate the old alt setting */
1370 usb_hcd_alloc_bandwidth(dev, NULL, alt, iface->cur_altsetting);
Sarah Sharp83060952012-05-02 14:25:52 -07001371 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001372 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return ret;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001374 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001375 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1378 * when they implement async or easily-killable versions of this or
1379 * other "should-be-internal" functions (like clear_halt).
1380 * should hcd+usbcore postprocess control requests?
1381 */
1382
1383 /* prevent submissions using previous endpoint settings */
Alan Stern3b23dd62008-12-05 14:10:34 -05001384 if (iface->cur_altsetting != alt) {
1385 remove_intf_ep_devs(iface);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001386 usb_remove_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001387 }
Alan Sternddeac4e72009-01-15 17:03:33 -05001388 usb_disable_interface(dev, iface, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 iface->cur_altsetting = alt;
1391
Sarah Sharp83060952012-05-02 14:25:52 -07001392 /* Now that the interface is installed, re-enable LPM. */
1393 usb_unlocked_enable_lpm(dev);
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /* If the interface only has one altsetting and the device didn't
David Brownella81e7ec2005-04-18 17:39:25 -07001396 * accept the request, we attempt to carry out the equivalent action
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 * by manually clearing the HALT feature for each endpoint in the
1398 * new altsetting.
1399 */
1400 if (manual) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001402 epaddr = alt->endpoint[i].desc.bEndpointAddress;
1403 pipe = __create_pipe(dev,
1404 USB_ENDPOINT_NUMBER_MASK & epaddr) |
1405 (usb_endpoint_out(epaddr) ?
1406 USB_DIR_OUT : USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 usb_clear_halt(dev, pipe);
1409 }
1410 }
1411
1412 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1413 *
1414 * Note:
1415 * Despite EP0 is always present in all interfaces/AS, the list of
1416 * endpoints from the descriptor does not contain EP0. Due to its
1417 * omnipresence one might expect EP0 being considered "affected" by
1418 * any SetInterface request and hence assume toggles need to be reset.
1419 * However, EP0 toggles are re-synced for every individual transfer
1420 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1421 * (Likewise, EP0 never "halts" on well designed devices.)
1422 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001423 usb_enable_interface(dev, iface, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001424 if (device_is_registered(&iface->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001425 usb_create_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001426 create_intf_ep_devs(iface);
1427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return 0;
1429}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001430EXPORT_SYMBOL_GPL(usb_set_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
1432/**
1433 * usb_reset_configuration - lightweight device reset
1434 * @dev: the device whose configuration is being reset
1435 *
1436 * This issues a standard SET_CONFIGURATION request to the device using
1437 * the current configuration. The effect is to reset most USB-related
1438 * state in the device, including interface altsettings (reset to zero),
David Vrabel3444b262009-04-08 17:36:28 +00001439 * endpoint halts (cleared), and endpoint state (only for bulk and interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 * endpoints). Other usbcore state is unchanged, including bindings of
1441 * usb device drivers to interfaces.
1442 *
1443 * Because this affects multiple interfaces, avoid using this with composite
1444 * (multi-interface) devices. Instead, the driver for each interface may
David Brownella81e7ec2005-04-18 17:39:25 -07001445 * use usb_set_interface() on the interfaces it claims. Be careful though;
1446 * some devices don't support the SET_INTERFACE request, and others won't
David Vrabel3444b262009-04-08 17:36:28 +00001447 * reset all the interface state (notably endpoint state). Resetting the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 * configuration would affect other drivers' interfaces.
1449 *
1450 * The caller must own the device lock.
1451 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02001452 * Return: Zero on success, else a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 */
1454int usb_reset_configuration(struct usb_device *dev)
1455{
1456 int i, retval;
1457 struct usb_host_config *config;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001458 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 if (dev->state == USB_STATE_SUSPENDED)
1461 return -EHOSTUNREACH;
1462
1463 /* caller must have locked the device and must own
1464 * the usb bus readlock (so driver bindings are stable);
1465 * calls during probe() are fine
1466 */
1467
1468 for (i = 1; i < 16; ++i) {
Alan Sternddeac4e72009-01-15 17:03:33 -05001469 usb_disable_endpoint(dev, i, true);
1470 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
1472
1473 config = dev->actconfig;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001474 retval = 0;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001475 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001476 /* Disable LPM, and re-enable it once the configuration is reset, so
1477 * that the xHCI driver can recalculate the U1/U2 timeouts.
1478 */
1479 if (usb_disable_lpm(dev)) {
1480 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1481 mutex_unlock(hcd->bandwidth_mutex);
1482 return -ENOMEM;
1483 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001484 /* Make sure we have enough bandwidth for each alternate setting 0 */
1485 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1486 struct usb_interface *intf = config->interface[i];
1487 struct usb_host_interface *alt;
1488
1489 alt = usb_altnum_to_altsetting(intf, 0);
1490 if (!alt)
1491 alt = &intf->altsetting[0];
1492 if (alt != intf->cur_altsetting)
1493 retval = usb_hcd_alloc_bandwidth(dev, NULL,
1494 intf->cur_altsetting, alt);
1495 if (retval < 0)
1496 break;
1497 }
1498 /* If not, reinstate the old alternate settings */
1499 if (retval < 0) {
1500reset_old_alts:
Roel Kluine4a3d942010-02-18 02:36:23 +01001501 for (i--; i >= 0; i--) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001502 struct usb_interface *intf = config->interface[i];
1503 struct usb_host_interface *alt;
1504
1505 alt = usb_altnum_to_altsetting(intf, 0);
1506 if (!alt)
1507 alt = &intf->altsetting[0];
1508 if (alt != intf->cur_altsetting)
1509 usb_hcd_alloc_bandwidth(dev, NULL,
1510 alt, intf->cur_altsetting);
1511 }
Sarah Sharp83060952012-05-02 14:25:52 -07001512 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001513 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001514 return retval;
1515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1517 USB_REQ_SET_CONFIGURATION, 0,
1518 config->desc.bConfigurationValue, 0,
1519 NULL, 0, USB_CTRL_SET_TIMEOUT);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001520 if (retval < 0)
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001521 goto reset_old_alts;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001522 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 /* re-init hc/hcd interface/endpoint state */
1525 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1526 struct usb_interface *intf = config->interface[i];
1527 struct usb_host_interface *alt;
1528
1529 alt = usb_altnum_to_altsetting(intf, 0);
1530
1531 /* No altsetting 0? We'll assume the first altsetting.
1532 * We could use a GetInterface call, but if a device is
1533 * so non-compliant that it doesn't have altsetting 0
1534 * then I wouldn't trust its reply anyway.
1535 */
1536 if (!alt)
1537 alt = &intf->altsetting[0];
1538
Alan Stern3b23dd62008-12-05 14:10:34 -05001539 if (alt != intf->cur_altsetting) {
1540 remove_intf_ep_devs(intf);
1541 usb_remove_sysfs_intf_files(intf);
1542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001544 usb_enable_interface(dev, intf, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001545 if (device_is_registered(&intf->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001546 usb_create_sysfs_intf_files(intf);
Alan Stern3b23dd62008-12-05 14:10:34 -05001547 create_intf_ep_devs(intf);
1548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
Sarah Sharp83060952012-05-02 14:25:52 -07001550 /* Now that the interfaces are installed, re-enable LPM. */
1551 usb_unlocked_enable_lpm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 return 0;
1553}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001554EXPORT_SYMBOL_GPL(usb_reset_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Greg Kroah-Hartmanb0e396e2007-08-02 22:44:27 -06001556static void usb_release_interface(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
1558 struct usb_interface *intf = to_usb_interface(dev);
1559 struct usb_interface_cache *intfc =
1560 altsetting_to_usb_interface_cache(intf->altsetting);
1561
1562 kref_put(&intfc->ref, usb_release_interface_cache);
Alan Stern524134d2015-01-21 14:02:43 -05001563 usb_put_dev(interface_to_usbdev(intf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 kfree(intf);
1565}
1566
Stefan Kochb3910ce2015-08-25 21:10:08 +02001567/*
1568 * usb_deauthorize_interface - deauthorize an USB interface
1569 *
1570 * @intf: USB interface structure
1571 */
1572void usb_deauthorize_interface(struct usb_interface *intf)
1573{
1574 struct device *dev = &intf->dev;
1575
1576 device_lock(dev->parent);
1577
1578 if (intf->authorized) {
1579 device_lock(dev);
1580 intf->authorized = 0;
1581 device_unlock(dev);
1582
1583 usb_forced_unbind_intf(intf);
1584 }
1585
1586 device_unlock(dev->parent);
1587}
1588
1589/*
1590 * usb_authorize_interface - authorize an USB interface
1591 *
1592 * @intf: USB interface structure
1593 */
1594void usb_authorize_interface(struct usb_interface *intf)
1595{
1596 struct device *dev = &intf->dev;
1597
1598 if (!intf->authorized) {
1599 device_lock(dev);
1600 intf->authorized = 1; /* authorize interface */
1601 device_unlock(dev);
1602 }
1603}
1604
Kay Sievers7eff2e72007-08-14 15:15:12 +02001605static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001606{
1607 struct usb_device *usb_dev;
1608 struct usb_interface *intf;
1609 struct usb_host_interface *alt;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001610
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001611 intf = to_usb_interface(dev);
1612 usb_dev = interface_to_usbdev(intf);
1613 alt = intf->cur_altsetting;
1614
Kay Sievers7eff2e72007-08-14 15:15:12 +02001615 if (add_uevent_var(env, "INTERFACE=%d/%d/%d",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001616 alt->desc.bInterfaceClass,
1617 alt->desc.bInterfaceSubClass,
1618 alt->desc.bInterfaceProtocol))
1619 return -ENOMEM;
1620
Kay Sievers7eff2e72007-08-14 15:15:12 +02001621 if (add_uevent_var(env,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001622 "MODALIAS=usb:"
Bjørn Mork81df2d52012-05-18 21:27:43 +02001623 "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02Xin%02X",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001624 le16_to_cpu(usb_dev->descriptor.idVendor),
1625 le16_to_cpu(usb_dev->descriptor.idProduct),
1626 le16_to_cpu(usb_dev->descriptor.bcdDevice),
1627 usb_dev->descriptor.bDeviceClass,
1628 usb_dev->descriptor.bDeviceSubClass,
1629 usb_dev->descriptor.bDeviceProtocol,
1630 alt->desc.bInterfaceClass,
1631 alt->desc.bInterfaceSubClass,
Bjørn Mork81df2d52012-05-18 21:27:43 +02001632 alt->desc.bInterfaceProtocol,
1633 alt->desc.bInterfaceNumber))
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001634 return -ENOMEM;
1635
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001636 return 0;
1637}
1638
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001639struct device_type usb_if_device_type = {
1640 .name = "usb_interface",
1641 .release = usb_release_interface,
1642 .uevent = usb_if_uevent,
1643};
1644
Craig W. Nadler165fe972007-06-15 23:14:35 -04001645static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001646 struct usb_host_config *config,
1647 u8 inum)
Craig W. Nadler165fe972007-06-15 23:14:35 -04001648{
1649 struct usb_interface_assoc_descriptor *retval = NULL;
1650 struct usb_interface_assoc_descriptor *intf_assoc;
1651 int first_intf;
1652 int last_intf;
1653 int i;
1654
1655 for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) {
1656 intf_assoc = config->intf_assoc[i];
1657 if (intf_assoc->bInterfaceCount == 0)
1658 continue;
1659
1660 first_intf = intf_assoc->bFirstInterface;
1661 last_intf = first_intf + (intf_assoc->bInterfaceCount - 1);
1662 if (inum >= first_intf && inum <= last_intf) {
1663 if (!retval)
1664 retval = intf_assoc;
1665 else
1666 dev_err(&dev->dev, "Interface #%d referenced"
1667 " by multiple IADs\n", inum);
1668 }
1669 }
1670
1671 return retval;
1672}
1673
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001674
1675/*
1676 * Internal function to queue a device reset
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001677 * See usb_queue_reset_device() for more details
1678 */
Felipe Balbi09e81f32009-12-04 15:47:44 +02001679static void __usb_queue_reset_device(struct work_struct *ws)
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001680{
1681 int rc;
1682 struct usb_interface *iface =
1683 container_of(ws, struct usb_interface, reset_ws);
1684 struct usb_device *udev = interface_to_usbdev(iface);
1685
1686 rc = usb_lock_device_for_reset(udev, iface);
1687 if (rc >= 0) {
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001688 usb_reset_device(udev);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001689 usb_unlock_device(udev);
1690 }
Alan Stern524134d2015-01-21 14:02:43 -05001691 usb_put_intf(iface); /* Undo _get_ in usb_queue_reset_device() */
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001692}
1693
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695/*
1696 * usb_set_configuration - Makes a particular device setting be current
1697 * @dev: the device whose configuration is being updated
1698 * @configuration: the configuration being chosen.
1699 * Context: !in_interrupt(), caller owns the device lock
1700 *
1701 * This is used to enable non-default device modes. Not all devices
1702 * use this kind of configurability; many devices only have one
1703 * configuration.
1704 *
Alan Stern3f141e22007-02-08 16:40:43 -05001705 * @configuration is the value of the configuration to be installed.
1706 * According to the USB spec (e.g. section 9.1.1.5), configuration values
1707 * must be non-zero; a value of zero indicates that the device in
1708 * unconfigured. However some devices erroneously use 0 as one of their
1709 * configuration values. To help manage such devices, this routine will
1710 * accept @configuration = -1 as indicating the device should be put in
1711 * an unconfigured state.
1712 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 * USB device configurations may affect Linux interoperability,
1714 * power consumption and the functionality available. For example,
1715 * the default configuration is limited to using 100mA of bus power,
1716 * so that when certain device functionality requires more power,
1717 * and the device is bus powered, that functionality should be in some
1718 * non-default device configuration. Other device modes may also be
1719 * reflected as configuration options, such as whether two ISDN
1720 * channels are available independently; and choosing between open
1721 * standard device protocols (like CDC) or proprietary ones.
1722 *
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001723 * Note that a non-authorized device (dev->authorized == 0) will only
1724 * be put in unconfigured mode.
1725 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 * Note that USB has an additional level of device configurability,
1727 * associated with interfaces. That configurability is accessed using
1728 * usb_set_interface().
1729 *
1730 * This call is synchronous. The calling context must be able to sleep,
1731 * must own the device lock, and must not hold the driver model's USB
Ming Lei6d243e52008-06-17 23:24:08 +08001732 * bus mutex; usb interface driver probe() methods cannot use this routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 *
1734 * Returns zero on success, or else the status code returned by the
Steven Cole093cf722005-05-03 19:07:24 -06001735 * underlying call that failed. On successful completion, each interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 * in the original device configuration has been destroyed, and each one
1737 * in the new configuration has been probed by all relevant usb device
1738 * drivers currently known to the kernel.
1739 */
1740int usb_set_configuration(struct usb_device *dev, int configuration)
1741{
1742 int i, ret;
1743 struct usb_host_config *cp = NULL;
1744 struct usb_interface **new_interfaces = NULL;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001745 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 int n, nintf;
1747
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001748 if (dev->authorized == 0 || configuration == -1)
Alan Stern3f141e22007-02-08 16:40:43 -05001749 configuration = 0;
1750 else {
1751 for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
1752 if (dev->config[i].desc.bConfigurationValue ==
1753 configuration) {
1754 cp = &dev->config[i];
1755 break;
1756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 }
1758 }
1759 if ((!cp && configuration != 0))
1760 return -EINVAL;
1761
1762 /* The USB spec says configuration 0 means unconfigured.
1763 * But if a device includes a configuration numbered 0,
1764 * we will accept it as a correctly configured state.
Alan Stern3f141e22007-02-08 16:40:43 -05001765 * Use -1 if you really want to unconfigure the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 */
1767 if (cp && configuration == 0)
1768 dev_warn(&dev->dev, "config 0 descriptor??\n");
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 /* Allocate memory for new interfaces before doing anything else,
1771 * so that if we run out then nothing will have changed. */
1772 n = nintf = 0;
1773 if (cp) {
1774 nintf = cp->desc.bNumInterfaces;
1775 new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
Oliver Neukumacbe2fe2010-01-12 12:32:50 +01001776 GFP_NOIO);
Wolfram Sang93fab792016-08-25 19:39:00 +02001777 if (!new_interfaces)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780 for (; n < nintf; ++n) {
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001781 new_interfaces[n] = kzalloc(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 sizeof(struct usb_interface),
Oliver Neukumacbe2fe2010-01-12 12:32:50 +01001783 GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (!new_interfaces[n]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 ret = -ENOMEM;
1786free_interfaces:
1787 while (--n >= 0)
1788 kfree(new_interfaces[n]);
1789 kfree(new_interfaces);
1790 return ret;
1791 }
1792 }
Alan Stern6ad07122006-06-01 13:59:16 -04001793
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01001794 i = dev->bus_mA - usb_get_max_power(dev, cp);
Alan Stern6ad07122006-06-01 13:59:16 -04001795 if (i < 0)
1796 dev_warn(&dev->dev, "new config #%d exceeds power "
1797 "limit by %dmA\n",
1798 configuration, -i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 }
1800
Alan Stern01d883d2006-08-30 15:47:18 -04001801 /* Wake up the device so we can send it the Set-Config request */
Alan Stern94fcda12006-11-20 11:38:46 -05001802 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -04001803 if (ret)
1804 goto free_interfaces;
1805
Thadeu Lima de Souza Cascardo07919712010-08-28 03:06:29 -03001806 /* if it's already configured, clear out old state first.
1807 * getting rid of old interfaces means unbinding their drivers.
1808 */
1809 if (dev->state != USB_STATE_ADDRESS)
1810 usb_disable_device(dev, 1); /* Skip ep0 */
1811
1812 /* Get rid of pending async Set-Config requests for this device */
1813 cancel_async_set_config(dev);
1814
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001815 /* Make sure we have bandwidth (and available HCD resources) for this
1816 * configuration. Remove endpoints from the schedule if we're dropping
1817 * this configuration to set configuration 0. After this point, the
1818 * host controller will not allow submissions to dropped endpoints. If
1819 * this call fails, the device state is unchanged.
1820 */
Alan Stern8963c482012-04-17 15:22:39 -04001821 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001822 /* Disable LPM, and re-enable it once the new configuration is
1823 * installed, so that the xHCI driver can recalculate the U1/U2
1824 * timeouts.
1825 */
Sarah Sharp9cf65992012-07-03 23:22:38 -07001826 if (dev->actconfig && usb_disable_lpm(dev)) {
Sarah Sharp83060952012-05-02 14:25:52 -07001827 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1828 mutex_unlock(hcd->bandwidth_mutex);
Sachin Kamatc058f7a2012-11-21 11:01:19 +05301829 ret = -ENOMEM;
1830 goto free_interfaces;
Sarah Sharp83060952012-05-02 14:25:52 -07001831 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001832 ret = usb_hcd_alloc_bandwidth(dev, cp, NULL, NULL);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001833 if (ret < 0) {
Sarah Sharp9cf65992012-07-03 23:22:38 -07001834 if (dev->actconfig)
1835 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001836 mutex_unlock(hcd->bandwidth_mutex);
Thadeu Lima de Souza Cascardo07919712010-08-28 03:06:29 -03001837 usb_autosuspend_device(dev);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001838 goto free_interfaces;
1839 }
1840
Alan Stern36caff52012-11-07 10:31:30 -05001841 /*
1842 * Initialize the new interface structures and the
Alan Stern6ad07122006-06-01 13:59:16 -04001843 * hc/hcd/usbcore interface/endpoint state.
1844 */
1845 for (i = 0; i < nintf; ++i) {
1846 struct usb_interface_cache *intfc;
1847 struct usb_interface *intf;
1848 struct usb_host_interface *alt;
1849
1850 cp->interface[i] = intf = new_interfaces[i];
1851 intfc = cp->intf_cache[i];
1852 intf->altsetting = intfc->altsetting;
1853 intf->num_altsetting = intfc->num_altsetting;
Stefan Koch6b2bd3c2015-08-25 21:10:06 +02001854 intf->authorized = !!HCD_INTF_AUTHORIZED(hcd);
Alan Stern6ad07122006-06-01 13:59:16 -04001855 kref_get(&intfc->ref);
1856
1857 alt = usb_altnum_to_altsetting(intf, 0);
1858
1859 /* No altsetting 0? We'll assume the first altsetting.
1860 * We could use a GetInterface call, but if a device is
1861 * so non-compliant that it doesn't have altsetting 0
1862 * then I wouldn't trust its reply anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 */
Alan Stern6ad07122006-06-01 13:59:16 -04001864 if (!alt)
1865 alt = &intf->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Daniel Mackb3a3dd02012-06-12 20:23:52 +02001867 intf->intf_assoc =
1868 find_iad(dev, cp, alt->desc.bInterfaceNumber);
Alan Stern6ad07122006-06-01 13:59:16 -04001869 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001870 usb_enable_interface(dev, intf, true);
Alan Stern6ad07122006-06-01 13:59:16 -04001871 intf->dev.parent = &dev->dev;
1872 intf->dev.driver = NULL;
1873 intf->dev.bus = &usb_bus_type;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001874 intf->dev.type = &usb_if_device_type;
Alan Stern2e5f10e2008-04-30 15:37:19 -04001875 intf->dev.groups = usb_interface_groups;
Roger Quadrosb44bbc42016-09-13 11:16:03 +03001876 /*
1877 * Please refer to usb_alloc_dev() to see why we set
1878 * dma_mask and dma_pfn_offset.
1879 */
Alan Stern6ad07122006-06-01 13:59:16 -04001880 intf->dev.dma_mask = dev->dev.dma_mask;
Roger Quadrosb44bbc42016-09-13 11:16:03 +03001881 intf->dev.dma_pfn_offset = dev->dev.dma_pfn_offset;
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001882 INIT_WORK(&intf->reset_ws, __usb_queue_reset_device);
Alan Stern0026e002010-09-21 15:01:53 -04001883 intf->minor = -1;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001884 device_initialize(&intf->dev);
Ming Lei63defa72010-11-15 15:56:54 -05001885 pm_runtime_no_callbacks(&intf->dev);
Kay Sievers0031a062008-05-02 06:02:41 +02001886 dev_set_name(&intf->dev, "%d-%s:%d.%d",
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001887 dev->bus->busnum, dev->devpath,
1888 configuration, alt->desc.bInterfaceNumber);
Alan Stern524134d2015-01-21 14:02:43 -05001889 usb_get_dev(dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001890 }
1891 kfree(new_interfaces);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Alan Stern36caff52012-11-07 10:31:30 -05001893 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1894 USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
1895 NULL, 0, USB_CTRL_SET_TIMEOUT);
1896 if (ret < 0 && cp) {
1897 /*
1898 * All the old state is gone, so what else can we do?
1899 * The device is probably useless now anyway.
1900 */
1901 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
1902 for (i = 0; i < nintf; ++i) {
1903 usb_disable_interface(dev, cp->interface[i], true);
1904 put_device(&cp->interface[i]->dev);
1905 cp->interface[i] = NULL;
1906 }
1907 cp = NULL;
1908 }
1909
1910 dev->actconfig = cp;
1911 mutex_unlock(hcd->bandwidth_mutex);
1912
1913 if (!cp) {
1914 usb_set_device_state(dev, USB_STATE_ADDRESS);
1915
1916 /* Leave LPM disabled while the device is unconfigured. */
1917 usb_autosuspend_device(dev);
1918 return ret;
1919 }
1920 usb_set_device_state(dev, USB_STATE_CONFIGURED);
1921
Alan Stern1662e3a2009-03-18 14:28:53 -04001922 if (cp->string == NULL &&
1923 !(dev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
Alan Stern6ad07122006-06-01 13:59:16 -04001924 cp->string = usb_cache_string(dev, cp->desc.iConfiguration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Sarah Sharp83060952012-05-02 14:25:52 -07001926 /* Now that the interfaces are installed, re-enable LPM. */
1927 usb_unlocked_enable_lpm(dev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07001928 /* Enable LTM if it was turned off by usb_disable_device. */
1929 usb_enable_ltm(dev);
Sarah Sharp83060952012-05-02 14:25:52 -07001930
Alan Stern6ad07122006-06-01 13:59:16 -04001931 /* Now that all the interfaces are set up, register them
1932 * to trigger binding of drivers to interfaces. probe()
1933 * routines may install different altsettings and may
1934 * claim() any interfaces not yet bound. Many class drivers
1935 * need that: CDC, audio, video, etc.
1936 */
1937 for (i = 0; i < nintf; ++i) {
1938 struct usb_interface *intf = cp->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001940 dev_dbg(&dev->dev,
Alan Stern6ad07122006-06-01 13:59:16 -04001941 "adding %s (config #%d, interface %d)\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001942 dev_name(&intf->dev), configuration,
Alan Stern6ad07122006-06-01 13:59:16 -04001943 intf->cur_altsetting->desc.bInterfaceNumber);
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01001944 device_enable_async_suspend(&intf->dev);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001945 ret = device_add(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001946 if (ret != 0) {
1947 dev_err(&dev->dev, "device_add(%s) --> %d\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001948 dev_name(&intf->dev), ret);
Alan Stern6ad07122006-06-01 13:59:16 -04001949 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
Alan Stern3b23dd62008-12-05 14:10:34 -05001951 create_intf_ep_devs(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 }
1953
Alan Stern94fcda12006-11-20 11:38:46 -05001954 usb_autosuspend_device(dev);
Alan Stern86d30742005-07-29 12:17:16 -07001955 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
Valentina Maneab7945b72014-01-23 23:12:29 +02001957EXPORT_SYMBOL_GPL(usb_set_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Alan Sterndf718962008-12-19 10:27:56 -05001959static LIST_HEAD(set_config_list);
1960static DEFINE_SPINLOCK(set_config_lock);
1961
Alan Stern088dc272006-08-21 12:08:19 -04001962struct set_config_request {
1963 struct usb_device *udev;
1964 int config;
1965 struct work_struct work;
Alan Sterndf718962008-12-19 10:27:56 -05001966 struct list_head node;
Alan Stern088dc272006-08-21 12:08:19 -04001967};
1968
1969/* Worker routine for usb_driver_set_configuration() */
David Howellsc4028952006-11-22 14:57:56 +00001970static void driver_set_config_work(struct work_struct *work)
Alan Stern088dc272006-08-21 12:08:19 -04001971{
David Howellsc4028952006-11-22 14:57:56 +00001972 struct set_config_request *req =
1973 container_of(work, struct set_config_request, work);
Alan Sterndf718962008-12-19 10:27:56 -05001974 struct usb_device *udev = req->udev;
Alan Stern088dc272006-08-21 12:08:19 -04001975
Alan Sterndf718962008-12-19 10:27:56 -05001976 usb_lock_device(udev);
1977 spin_lock(&set_config_lock);
1978 list_del(&req->node);
1979 spin_unlock(&set_config_lock);
1980
1981 if (req->config >= -1) /* Is req still valid? */
1982 usb_set_configuration(udev, req->config);
1983 usb_unlock_device(udev);
1984 usb_put_dev(udev);
Alan Stern088dc272006-08-21 12:08:19 -04001985 kfree(req);
1986}
1987
Alan Sterndf718962008-12-19 10:27:56 -05001988/* Cancel pending Set-Config requests for a device whose configuration
1989 * was just changed
1990 */
1991static void cancel_async_set_config(struct usb_device *udev)
1992{
1993 struct set_config_request *req;
1994
1995 spin_lock(&set_config_lock);
1996 list_for_each_entry(req, &set_config_list, node) {
1997 if (req->udev == udev)
1998 req->config = -999; /* Mark as cancelled */
1999 }
2000 spin_unlock(&set_config_lock);
2001}
2002
Alan Stern088dc272006-08-21 12:08:19 -04002003/**
2004 * usb_driver_set_configuration - Provide a way for drivers to change device configurations
2005 * @udev: the device whose configuration is being updated
2006 * @config: the configuration being chosen.
2007 * Context: In process context, must be able to sleep
2008 *
2009 * Device interface drivers are not allowed to change device configurations.
2010 * This is because changing configurations will destroy the interface the
2011 * driver is bound to and create new ones; it would be like a floppy-disk
2012 * driver telling the computer to replace the floppy-disk drive with a
2013 * tape drive!
2014 *
2015 * Still, in certain specialized circumstances the need may arise. This
2016 * routine gets around the normal restrictions by using a work thread to
2017 * submit the change-config request.
2018 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02002019 * Return: 0 if the request was successfully queued, error code otherwise.
Alan Stern088dc272006-08-21 12:08:19 -04002020 * The caller has no way to know whether the queued request will eventually
2021 * succeed.
2022 */
2023int usb_driver_set_configuration(struct usb_device *udev, int config)
2024{
2025 struct set_config_request *req;
2026
2027 req = kmalloc(sizeof(*req), GFP_KERNEL);
2028 if (!req)
2029 return -ENOMEM;
2030 req->udev = udev;
2031 req->config = config;
David Howellsc4028952006-11-22 14:57:56 +00002032 INIT_WORK(&req->work, driver_set_config_work);
Alan Stern088dc272006-08-21 12:08:19 -04002033
Alan Sterndf718962008-12-19 10:27:56 -05002034 spin_lock(&set_config_lock);
2035 list_add(&req->node, &set_config_list);
2036 spin_unlock(&set_config_lock);
2037
Alan Stern088dc272006-08-21 12:08:19 -04002038 usb_get_dev(udev);
Alan Stern1737bf22006-12-15 16:04:52 -05002039 schedule_work(&req->work);
Alan Stern088dc272006-08-21 12:08:19 -04002040 return 0;
2041}
2042EXPORT_SYMBOL_GPL(usb_driver_set_configuration);
Oliver Neukume4c6fb72016-07-14 15:41:30 +02002043
2044/**
2045 * cdc_parse_cdc_header - parse the extra headers present in CDC devices
2046 * @hdr: the place to put the results of the parsing
2047 * @intf: the interface for which parsing is requested
2048 * @buffer: pointer to the extra headers to be parsed
2049 * @buflen: length of the extra headers
2050 *
2051 * This evaluates the extra headers present in CDC devices which
2052 * bind the interfaces for data and control and provide details
2053 * about the capabilities of the device.
2054 *
2055 * Return: number of descriptors parsed or -EINVAL
2056 * if the header is contradictory beyond salvage
2057 */
2058
2059int cdc_parse_cdc_header(struct usb_cdc_parsed_header *hdr,
2060 struct usb_interface *intf,
2061 u8 *buffer,
2062 int buflen)
2063{
2064 /* duplicates are ignored */
2065 struct usb_cdc_union_desc *union_header = NULL;
2066
2067 /* duplicates are not tolerated */
2068 struct usb_cdc_header_desc *header = NULL;
2069 struct usb_cdc_ether_desc *ether = NULL;
2070 struct usb_cdc_mdlm_detail_desc *detail = NULL;
2071 struct usb_cdc_mdlm_desc *desc = NULL;
2072
2073 unsigned int elength;
2074 int cnt = 0;
2075
2076 memset(hdr, 0x00, sizeof(struct usb_cdc_parsed_header));
2077 hdr->phonet_magic_present = false;
2078 while (buflen > 0) {
2079 elength = buffer[0];
2080 if (!elength) {
2081 dev_err(&intf->dev, "skipping garbage byte\n");
2082 elength = 1;
2083 goto next_desc;
2084 }
Greg Kroah-Hartman767f7a22017-09-21 16:58:48 +02002085 if ((buflen < elength) || (elength < 3)) {
2086 dev_err(&intf->dev, "invalid descriptor buffer length\n");
2087 break;
2088 }
Oliver Neukume4c6fb72016-07-14 15:41:30 +02002089 if (buffer[1] != USB_DT_CS_INTERFACE) {
2090 dev_err(&intf->dev, "skipping garbage\n");
2091 goto next_desc;
2092 }
2093
2094 switch (buffer[2]) {
2095 case USB_CDC_UNION_TYPE: /* we've found it */
2096 if (elength < sizeof(struct usb_cdc_union_desc))
2097 goto next_desc;
2098 if (union_header) {
2099 dev_err(&intf->dev, "More than one union descriptor, skipping ...\n");
2100 goto next_desc;
2101 }
2102 union_header = (struct usb_cdc_union_desc *)buffer;
2103 break;
2104 case USB_CDC_COUNTRY_TYPE:
2105 if (elength < sizeof(struct usb_cdc_country_functional_desc))
2106 goto next_desc;
2107 hdr->usb_cdc_country_functional_desc =
2108 (struct usb_cdc_country_functional_desc *)buffer;
2109 break;
2110 case USB_CDC_HEADER_TYPE:
2111 if (elength != sizeof(struct usb_cdc_header_desc))
2112 goto next_desc;
2113 if (header)
2114 return -EINVAL;
2115 header = (struct usb_cdc_header_desc *)buffer;
2116 break;
2117 case USB_CDC_ACM_TYPE:
2118 if (elength < sizeof(struct usb_cdc_acm_descriptor))
2119 goto next_desc;
2120 hdr->usb_cdc_acm_descriptor =
2121 (struct usb_cdc_acm_descriptor *)buffer;
2122 break;
2123 case USB_CDC_ETHERNET_TYPE:
2124 if (elength != sizeof(struct usb_cdc_ether_desc))
2125 goto next_desc;
2126 if (ether)
2127 return -EINVAL;
2128 ether = (struct usb_cdc_ether_desc *)buffer;
2129 break;
2130 case USB_CDC_CALL_MANAGEMENT_TYPE:
2131 if (elength < sizeof(struct usb_cdc_call_mgmt_descriptor))
2132 goto next_desc;
2133 hdr->usb_cdc_call_mgmt_descriptor =
2134 (struct usb_cdc_call_mgmt_descriptor *)buffer;
2135 break;
2136 case USB_CDC_DMM_TYPE:
2137 if (elength < sizeof(struct usb_cdc_dmm_desc))
2138 goto next_desc;
2139 hdr->usb_cdc_dmm_desc =
2140 (struct usb_cdc_dmm_desc *)buffer;
2141 break;
2142 case USB_CDC_MDLM_TYPE:
2143 if (elength < sizeof(struct usb_cdc_mdlm_desc *))
2144 goto next_desc;
2145 if (desc)
2146 return -EINVAL;
2147 desc = (struct usb_cdc_mdlm_desc *)buffer;
2148 break;
2149 case USB_CDC_MDLM_DETAIL_TYPE:
2150 if (elength < sizeof(struct usb_cdc_mdlm_detail_desc *))
2151 goto next_desc;
2152 if (detail)
2153 return -EINVAL;
2154 detail = (struct usb_cdc_mdlm_detail_desc *)buffer;
2155 break;
2156 case USB_CDC_NCM_TYPE:
2157 if (elength < sizeof(struct usb_cdc_ncm_desc))
2158 goto next_desc;
2159 hdr->usb_cdc_ncm_desc = (struct usb_cdc_ncm_desc *)buffer;
2160 break;
2161 case USB_CDC_MBIM_TYPE:
2162 if (elength < sizeof(struct usb_cdc_mbim_desc))
2163 goto next_desc;
2164
2165 hdr->usb_cdc_mbim_desc = (struct usb_cdc_mbim_desc *)buffer;
2166 break;
2167 case USB_CDC_MBIM_EXTENDED_TYPE:
2168 if (elength < sizeof(struct usb_cdc_mbim_extended_desc))
2169 break;
2170 hdr->usb_cdc_mbim_extended_desc =
2171 (struct usb_cdc_mbim_extended_desc *)buffer;
2172 break;
2173 case CDC_PHONET_MAGIC_NUMBER:
2174 hdr->phonet_magic_present = true;
2175 break;
2176 default:
2177 /*
2178 * there are LOTS more CDC descriptors that
2179 * could legitimately be found here.
2180 */
2181 dev_dbg(&intf->dev, "Ignoring descriptor: type %02x, length %ud\n",
2182 buffer[2], elength);
2183 goto next_desc;
2184 }
2185 cnt++;
2186next_desc:
2187 buflen -= elength;
2188 buffer += elength;
2189 }
2190 hdr->usb_cdc_union_desc = union_header;
2191 hdr->usb_cdc_header_desc = header;
2192 hdr->usb_cdc_mdlm_detail_desc = detail;
2193 hdr->usb_cdc_mdlm_desc = desc;
2194 hdr->usb_cdc_ether_desc = ether;
2195 return cnt;
2196}
2197
2198EXPORT_SYMBOL(cdc_parse_cdc_header);