blob: 6e8af6ddb5f70804b009419285b3c822f2a52fb4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*****************************************************************************/
2
3/*
4 * devio.c -- User space communication with USB devices.
5 *
6 * Copyright (C) 1999-2000 Thomas Sailer (sailer@ife.ee.ethz.ch)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * This file implements the usbfs/x/y files, where
23 * x is the bus number and y the device number.
24 *
25 * It allows user space programs/"drivers" to communicate directly
26 * with USB devices without intervening kernel driver.
27 *
28 * Revision history
29 * 22.12.1999 0.1 Initial release (split from proc_usb.c)
30 * 04.01.2000 0.2 Turned into its own filesystem
Harald Welte46113832005-10-10 19:44:29 +020031 * 30.09.2005 0.3 Fix user-triggerable oops in async URB delivery
32 * (CAN-2005-3055)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35/*****************************************************************************/
36
37#include <linux/fs.h>
38#include <linux/mm.h>
39#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/signal.h>
41#include <linux/poll.h>
42#include <linux/module.h>
43#include <linux/usb.h>
44#include <linux/usbdevice_fs.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020045#include <linux/usb/hcd.h> /* for usbcore internals */
Kay Sieversfbf82fd2005-07-31 01:05:53 +020046#include <linux/cdev.h>
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -070047#include <linux/notifier.h>
David Quigley7a019552006-06-30 01:55:48 -070048#include <linux/security.h>
Serge Hallynd178bc32011-09-26 10:45:18 -050049#include <linux/user_namespace.h>
Hans de Goede3d97ff62012-07-04 09:18:03 +020050#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/uaccess.h>
52#include <asm/byteorder.h>
53#include <linux/moduleparam.h>
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include "usb.h"
56
Kay Sieversfbf82fd2005-07-31 01:05:53 +020057#define USB_MAXBUS 64
58#define USB_DEVICE_MAX USB_MAXBUS * 128
Hans de Goede3d97ff62012-07-04 09:18:03 +020059#define USB_SG_SIZE 16384 /* split-size for large txs */
Kay Sieversfbf82fd2005-07-31 01:05:53 +020060
Alan Stern4a2a8a22006-07-01 22:05:01 -040061/* Mutual exclusion for removal, open, and release */
62DEFINE_MUTEX(usbfs_mutex);
63
Alan Sterncd9f0372008-06-24 14:47:04 -040064struct dev_state {
65 struct list_head list; /* state list */
66 struct usb_device *dev;
67 struct file *file;
68 spinlock_t lock; /* protects the async urb lists */
69 struct list_head async_pending;
70 struct list_head async_completed;
71 wait_queue_head_t wait; /* wake up if a request completed */
72 unsigned int discsignr;
73 struct pid *disc_pid;
Serge Hallynd178bc32011-09-26 10:45:18 -050074 const struct cred *cred;
Alan Sterncd9f0372008-06-24 14:47:04 -040075 void __user *disccontext;
76 unsigned long ifclaimed;
77 u32 secid;
Alan Stern01c64602009-09-01 11:09:56 -040078 u32 disabled_bulk_eps;
Alan Sterncd9f0372008-06-24 14:47:04 -040079};
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081struct async {
82 struct list_head asynclist;
83 struct dev_state *ps;
Eric W. Biederman2425c082006-10-02 02:17:28 -070084 struct pid *pid;
Serge Hallynd178bc32011-09-26 10:45:18 -050085 const struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 unsigned int signr;
87 unsigned int ifnum;
88 void __user *userbuffer;
89 void __user *userurb;
90 struct urb *urb;
Alan Sternadd1aae2011-11-17 16:41:25 -050091 unsigned int mem_usage;
Alan Sterne0152682007-08-24 15:42:52 -040092 int status;
David Quigley7a019552006-06-30 01:55:48 -070093 u32 secid;
Alan Stern01c64602009-09-01 11:09:56 -040094 u8 bulk_addr;
95 u8 bulk_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096};
97
Rusty Russell90ab5ee2012-01-13 09:32:20 +103098static bool usbfs_snoop;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -080099module_param(usbfs_snoop, bool, S_IRUGO | S_IWUSR);
100MODULE_PARM_DESC(usbfs_snoop, "true to log all usbfs traffic");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102#define snoop(dev, format, arg...) \
103 do { \
104 if (usbfs_snoop) \
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800105 dev_info(dev , format , ## arg); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 } while (0)
107
Alan Stern4c6e8972009-06-29 11:02:04 -0400108enum snoop_when {
109 SUBMIT, COMPLETE
110};
111
Alan Sternfad21bd2005-08-10 15:15:57 -0400112#define USB_DEVICE_DEV MKDEV(USB_DEVICE_MAJOR, 0)
113
Alan Sternadd1aae2011-11-17 16:41:25 -0500114/* Limit on the total amount of memory we can allocate for transfers */
Alan Stern3f5eb8d2011-11-17 16:41:35 -0500115static unsigned usbfs_memory_mb = 16;
116module_param(usbfs_memory_mb, uint, 0644);
117MODULE_PARM_DESC(usbfs_memory_mb,
118 "maximum MB allowed for usbfs buffers (0 = no limit)");
119
120/* Hard limit, necessary to avoid aithmetic overflow */
121#define USBFS_XFER_MAX (UINT_MAX / 2 - 1000000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Alan Sternadd1aae2011-11-17 16:41:25 -0500123static atomic_t usbfs_memory_usage; /* Total memory currently allocated */
124
125/* Check whether it's okay to allocate more memory for a transfer */
126static int usbfs_increase_memory_usage(unsigned amount)
127{
Alan Stern3f5eb8d2011-11-17 16:41:35 -0500128 unsigned lim;
129
130 /*
131 * Convert usbfs_memory_mb to bytes, avoiding overflows.
132 * 0 means use the hard limit (effectively unlimited).
133 */
134 lim = ACCESS_ONCE(usbfs_memory_mb);
135 if (lim == 0 || lim > (USBFS_XFER_MAX >> 20))
136 lim = USBFS_XFER_MAX;
137 else
138 lim <<= 20;
139
Alan Sternadd1aae2011-11-17 16:41:25 -0500140 atomic_add(amount, &usbfs_memory_usage);
Alan Stern3f5eb8d2011-11-17 16:41:35 -0500141 if (atomic_read(&usbfs_memory_usage) <= lim)
Alan Sternadd1aae2011-11-17 16:41:25 -0500142 return 0;
143 atomic_sub(amount, &usbfs_memory_usage);
144 return -ENOMEM;
145}
146
147/* Memory for a transfer is being deallocated */
148static void usbfs_decrease_memory_usage(unsigned amount)
149{
150 atomic_sub(amount, &usbfs_memory_usage);
151}
Alan Stern4c6e8972009-06-29 11:02:04 -0400152
Alan Sternd34d9722009-03-09 13:44:48 -0400153static int connected(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Alan Stern349710c2006-07-01 22:05:56 -0400155 return (!list_empty(&ps->list) &&
156 ps->dev->state != USB_STATE_NOTATTACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig)
160{
161 loff_t ret;
162
Al Viro496ad9a2013-01-23 17:07:38 -0500163 mutex_lock(&file_inode(file)->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 switch (orig) {
166 case 0:
167 file->f_pos = offset;
168 ret = file->f_pos;
169 break;
170 case 1:
171 file->f_pos += offset;
172 ret = file->f_pos;
173 break;
174 case 2:
175 default:
176 ret = -EINVAL;
177 }
178
Al Viro496ad9a2013-01-23 17:07:38 -0500179 mutex_unlock(&file_inode(file)->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return ret;
181}
182
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800183static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
184 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200186 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 struct usb_device *dev = ps->dev;
188 ssize_t ret = 0;
189 unsigned len;
190 loff_t pos;
191 int i;
192
193 pos = *ppos;
194 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -0400195 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 ret = -ENODEV;
197 goto err;
198 } else if (pos < 0) {
199 ret = -EINVAL;
200 goto err;
201 }
202
203 if (pos < sizeof(struct usb_device_descriptor)) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800204 /* 18 bytes - fits on the stack */
205 struct usb_device_descriptor temp_desc;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100206
207 memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
Andrew Morton9fcd5c32006-01-18 23:55:07 -0800208 le16_to_cpus(&temp_desc.bcdUSB);
209 le16_to_cpus(&temp_desc.idVendor);
210 le16_to_cpus(&temp_desc.idProduct);
211 le16_to_cpus(&temp_desc.bcdDevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 len = sizeof(struct usb_device_descriptor) - pos;
214 if (len > nbytes)
215 len = nbytes;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100216 if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 ret = -EFAULT;
218 goto err;
219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 *ppos += len;
222 buf += len;
223 nbytes -= len;
224 ret += len;
225 }
226
227 pos = sizeof(struct usb_device_descriptor);
228 for (i = 0; nbytes && i < dev->descriptor.bNumConfigurations; i++) {
229 struct usb_config_descriptor *config =
230 (struct usb_config_descriptor *)dev->rawdescriptors[i];
231 unsigned int length = le16_to_cpu(config->wTotalLength);
232
233 if (*ppos < pos + length) {
234
235 /* The descriptor may claim to be longer than it
236 * really is. Here is the actual allocated length. */
237 unsigned alloclen =
238 le16_to_cpu(dev->config[i].desc.wTotalLength);
239
240 len = length - (*ppos - pos);
241 if (len > nbytes)
242 len = nbytes;
243
244 /* Simply don't write (skip over) unallocated parts */
245 if (alloclen > (*ppos - pos)) {
246 alloclen -= (*ppos - pos);
247 if (copy_to_user(buf,
248 dev->rawdescriptors[i] + (*ppos - pos),
249 min(len, alloclen))) {
250 ret = -EFAULT;
251 goto err;
252 }
253 }
254
255 *ppos += len;
256 buf += len;
257 nbytes -= len;
258 ret += len;
259 }
260
261 pos += length;
262 }
263
264err:
265 usb_unlock_device(dev);
266 return ret;
267}
268
269/*
270 * async list handling
271 */
272
273static struct async *alloc_async(unsigned int numisoframes)
274{
Pete Zaitcevdd95b812008-01-05 02:01:07 -0800275 struct async *as;
Alan Stern0a1ef3b2005-10-24 15:38:24 -0400276
Pete Zaitcevdd95b812008-01-05 02:01:07 -0800277 as = kzalloc(sizeof(struct async), GFP_KERNEL);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800278 if (!as)
279 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
281 if (!as->urb) {
282 kfree(as);
283 return NULL;
284 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800285 return as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
288static void free_async(struct async *as)
289{
Hans de Goede3d97ff62012-07-04 09:18:03 +0200290 int i;
291
Eric W. Biederman2425c082006-10-02 02:17:28 -0700292 put_pid(as->pid);
Sarah Sharp1b41c832011-12-16 11:26:30 -0800293 if (as->cred)
294 put_cred(as->cred);
Hans de Goede3d97ff62012-07-04 09:18:03 +0200295 for (i = 0; i < as->urb->num_sgs; i++) {
296 if (sg_page(&as->urb->sg[i]))
297 kfree(sg_virt(&as->urb->sg[i]));
298 }
299 kfree(as->urb->sg);
Jesper Juhl6fd19f42005-04-18 17:39:33 -0700300 kfree(as->urb->transfer_buffer);
301 kfree(as->urb->setup_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 usb_free_urb(as->urb);
Alan Sternadd1aae2011-11-17 16:41:25 -0500303 usbfs_decrease_memory_usage(as->mem_usage);
Jesper Juhl6fd19f42005-04-18 17:39:33 -0700304 kfree(as);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Alan Sternd34d9722009-03-09 13:44:48 -0400307static void async_newpending(struct async *as)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800309 struct dev_state *ps = as->ps;
310 unsigned long flags;
311
312 spin_lock_irqsave(&ps->lock, flags);
313 list_add_tail(&as->asynclist, &ps->async_pending);
314 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Alan Sternd34d9722009-03-09 13:44:48 -0400317static void async_removepending(struct async *as)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800319 struct dev_state *ps = as->ps;
320 unsigned long flags;
321
322 spin_lock_irqsave(&ps->lock, flags);
323 list_del_init(&as->asynclist);
324 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Alan Sternd34d9722009-03-09 13:44:48 -0400327static struct async *async_getcompleted(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800329 unsigned long flags;
330 struct async *as = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800332 spin_lock_irqsave(&ps->lock, flags);
333 if (!list_empty(&ps->async_completed)) {
334 as = list_entry(ps->async_completed.next, struct async,
335 asynclist);
336 list_del_init(&as->asynclist);
337 }
338 spin_unlock_irqrestore(&ps->lock, flags);
339 return as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Alan Sternd34d9722009-03-09 13:44:48 -0400342static struct async *async_getpending(struct dev_state *ps,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800343 void __user *userurb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800345 struct async *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 list_for_each_entry(as, &ps->async_pending, asynclist)
348 if (as->userurb == userurb) {
349 list_del_init(&as->asynclist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return as;
351 }
Huajun Li4e09dcf2012-05-18 20:12:51 +0800352
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800353 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Alan Stern4c6e8972009-06-29 11:02:04 -0400356static void snoop_urb(struct usb_device *udev,
357 void __user *userurb, int pipe, unsigned length,
Chris Frey0880aef2010-01-26 17:07:29 -0500358 int timeout_or_status, enum snoop_when when,
359 unsigned char *data, unsigned data_len)
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700360{
Alan Stern4c6e8972009-06-29 11:02:04 -0400361 static const char *types[] = {"isoc", "int", "ctrl", "bulk"};
362 static const char *dirs[] = {"out", "in"};
363 int ep;
364 const char *t, *d;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700365
366 if (!usbfs_snoop)
367 return;
368
Alan Stern4c6e8972009-06-29 11:02:04 -0400369 ep = usb_pipeendpoint(pipe);
370 t = types[usb_pipetype(pipe)];
371 d = dirs[!!usb_pipein(pipe)];
372
373 if (userurb) { /* Async */
374 if (when == SUBMIT)
375 dev_info(&udev->dev, "userurb %p, ep%d %s-%s, "
376 "length %u\n",
377 userurb, ep, t, d, length);
378 else
379 dev_info(&udev->dev, "userurb %p, ep%d %s-%s, "
380 "actual_length %u status %d\n",
381 userurb, ep, t, d, length,
382 timeout_or_status);
383 } else {
384 if (when == SUBMIT)
385 dev_info(&udev->dev, "ep%d %s-%s, length %u, "
386 "timeout %d\n",
387 ep, t, d, length, timeout_or_status);
388 else
389 dev_info(&udev->dev, "ep%d %s-%s, actual_length %u, "
390 "status %d\n",
391 ep, t, d, length, timeout_or_status);
392 }
Chris Frey0880aef2010-01-26 17:07:29 -0500393
394 if (data && data_len > 0) {
395 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
396 data, data_len, 1);
397 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700398}
399
Hans de Goede3d97ff62012-07-04 09:18:03 +0200400static void snoop_urb_data(struct urb *urb, unsigned len)
401{
402 int i, size;
403
404 if (!usbfs_snoop)
405 return;
406
407 if (urb->num_sgs == 0) {
408 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
409 urb->transfer_buffer, len, 1);
410 return;
411 }
412
413 for (i = 0; i < urb->num_sgs && len; i++) {
414 size = (len > USB_SG_SIZE) ? USB_SG_SIZE : len;
415 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
416 sg_virt(&urb->sg[i]), size, 1);
417 len -= size;
418 }
419}
420
421static int copy_urb_data_to_user(u8 __user *userbuffer, struct urb *urb)
422{
423 unsigned i, len, size;
424
425 if (urb->number_of_packets > 0) /* Isochronous */
426 len = urb->transfer_buffer_length;
427 else /* Non-Isoc */
428 len = urb->actual_length;
429
430 if (urb->num_sgs == 0) {
431 if (copy_to_user(userbuffer, urb->transfer_buffer, len))
432 return -EFAULT;
433 return 0;
434 }
435
436 for (i = 0; i < urb->num_sgs && len; i++) {
437 size = (len > USB_SG_SIZE) ? USB_SG_SIZE : len;
438 if (copy_to_user(userbuffer, sg_virt(&urb->sg[i]), size))
439 return -EFAULT;
440 userbuffer += size;
441 len -= size;
442 }
443
444 return 0;
445}
446
Alan Stern01c64602009-09-01 11:09:56 -0400447#define AS_CONTINUATION 1
448#define AS_UNLINK 2
449
450static void cancel_bulk_urbs(struct dev_state *ps, unsigned bulk_addr)
451__releases(ps->lock)
452__acquires(ps->lock)
453{
Huajun Li4e09dcf2012-05-18 20:12:51 +0800454 struct urb *urb;
Alan Stern01c64602009-09-01 11:09:56 -0400455 struct async *as;
456
457 /* Mark all the pending URBs that match bulk_addr, up to but not
458 * including the first one without AS_CONTINUATION. If such an
459 * URB is encountered then a new transfer has already started so
460 * the endpoint doesn't need to be disabled; otherwise it does.
461 */
462 list_for_each_entry(as, &ps->async_pending, asynclist) {
463 if (as->bulk_addr == bulk_addr) {
464 if (as->bulk_status != AS_CONTINUATION)
465 goto rescan;
466 as->bulk_status = AS_UNLINK;
467 as->bulk_addr = 0;
468 }
469 }
470 ps->disabled_bulk_eps |= (1 << bulk_addr);
471
472 /* Now carefully unlink all the marked pending URBs */
473 rescan:
474 list_for_each_entry(as, &ps->async_pending, asynclist) {
475 if (as->bulk_status == AS_UNLINK) {
476 as->bulk_status = 0; /* Only once */
Huajun Li4e09dcf2012-05-18 20:12:51 +0800477 urb = as->urb;
478 usb_get_urb(urb);
Alan Stern01c64602009-09-01 11:09:56 -0400479 spin_unlock(&ps->lock); /* Allow completions */
Huajun Li4e09dcf2012-05-18 20:12:51 +0800480 usb_unlink_urb(urb);
481 usb_put_urb(urb);
Alan Stern01c64602009-09-01 11:09:56 -0400482 spin_lock(&ps->lock);
483 goto rescan;
484 }
485 }
486}
487
David Howells7d12e782006-10-05 14:55:46 +0100488static void async_completed(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800490 struct async *as = urb->context;
491 struct dev_state *ps = as->ps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct siginfo sinfo;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200493 struct pid *pid = NULL;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200494 u32 secid = 0;
Serge Hallynd178bc32011-09-26 10:45:18 -0500495 const struct cred *cred = NULL;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200496 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800498 spin_lock(&ps->lock);
499 list_move_tail(&as->asynclist, &ps->async_completed);
Alan Sterne0152682007-08-24 15:42:52 -0400500 as->status = urb->status;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200501 signr = as->signr;
502 if (signr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 sinfo.si_signo = as->signr;
Alan Sterne0152682007-08-24 15:42:52 -0400504 sinfo.si_errno = as->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 sinfo.si_code = SI_ASYNCIO;
506 sinfo.si_addr = as->userurb;
Serge Hallynaec01c52011-09-26 10:18:29 -0500507 pid = get_pid(as->pid);
Serge Hallynd178bc32011-09-26 10:45:18 -0500508 cred = get_cred(as->cred);
Oliver Neukum516a1a02009-07-08 19:09:23 +0200509 secid = as->secid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700511 snoop(&urb->dev->dev, "urb complete\n");
Alan Stern4c6e8972009-06-29 11:02:04 -0400512 snoop_urb(urb->dev, as->userurb, urb->pipe, urb->actual_length,
Hans de Goede3d97ff62012-07-04 09:18:03 +0200513 as->status, COMPLETE, NULL, 0);
514 if ((urb->transfer_flags & URB_DIR_MASK) == USB_DIR_IN)
515 snoop_urb_data(urb, urb->actual_length);
516
Alan Stern01c64602009-09-01 11:09:56 -0400517 if (as->status < 0 && as->bulk_addr && as->status != -ECONNRESET &&
518 as->status != -ENOENT)
519 cancel_bulk_urbs(ps, as->bulk_addr);
Oliver Neukum516a1a02009-07-08 19:09:23 +0200520 spin_unlock(&ps->lock);
521
Serge Hallynaec01c52011-09-26 10:18:29 -0500522 if (signr) {
Serge Hallynd178bc32011-09-26 10:45:18 -0500523 kill_pid_info_as_cred(sinfo.si_signo, &sinfo, pid, cred, secid);
Serge Hallynaec01c52011-09-26 10:18:29 -0500524 put_pid(pid);
Serge Hallynd178bc32011-09-26 10:45:18 -0500525 put_cred(cred);
Serge Hallynaec01c52011-09-26 10:18:29 -0500526 }
Oliver Neukum516a1a02009-07-08 19:09:23 +0200527
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700528 wake_up(&ps->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800531static void destroy_async(struct dev_state *ps, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Huajun Li4e09dcf2012-05-18 20:12:51 +0800533 struct urb *urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 struct async *as;
535 unsigned long flags;
536
537 spin_lock_irqsave(&ps->lock, flags);
538 while (!list_empty(list)) {
539 as = list_entry(list->next, struct async, asynclist);
540 list_del_init(&as->asynclist);
Huajun Li4e09dcf2012-05-18 20:12:51 +0800541 urb = as->urb;
542 usb_get_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /* drop the spinlock so the completion handler can run */
545 spin_unlock_irqrestore(&ps->lock, flags);
Huajun Li4e09dcf2012-05-18 20:12:51 +0800546 usb_kill_urb(urb);
547 usb_put_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 spin_lock_irqsave(&ps->lock, flags);
549 }
550 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800553static void destroy_async_on_interface(struct dev_state *ps,
554 unsigned int ifnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 struct list_head *p, *q, hitlist;
557 unsigned long flags;
558
559 INIT_LIST_HEAD(&hitlist);
560 spin_lock_irqsave(&ps->lock, flags);
561 list_for_each_safe(p, q, &ps->async_pending)
562 if (ifnum == list_entry(p, struct async, asynclist)->ifnum)
563 list_move_tail(p, &hitlist);
564 spin_unlock_irqrestore(&ps->lock, flags);
565 destroy_async(ps, &hitlist);
566}
567
Alan Sternd34d9722009-03-09 13:44:48 -0400568static void destroy_all_async(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800570 destroy_async(ps, &ps->async_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
573/*
574 * interface claims are made only at the request of user level code,
575 * which can also release them (explicitly or by closing files).
576 * they're also undone when devices disconnect.
577 */
578
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800579static int driver_probe(struct usb_interface *intf,
580 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 return -ENODEV;
583}
584
585static void driver_disconnect(struct usb_interface *intf)
586{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800587 struct dev_state *ps = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 unsigned int ifnum = intf->altsetting->desc.bInterfaceNumber;
589
590 if (!ps)
591 return;
592
593 /* NOTE: this relies on usbcore having canceled and completed
594 * all pending I/O requests; 2.6 does that.
595 */
596
597 if (likely(ifnum < 8*sizeof(ps->ifclaimed)))
598 clear_bit(ifnum, &ps->ifclaimed);
599 else
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700600 dev_warn(&intf->dev, "interface number %u out of range\n",
601 ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800603 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 /* force async requests to complete */
606 destroy_async_on_interface(ps, ifnum);
607}
608
Alan Stern2e2eb832007-12-04 14:35:15 -0500609/* The following routines are merely placeholders. There is no way
610 * to inform a user task about suspend or resumes.
611 */
612static int driver_suspend(struct usb_interface *intf, pm_message_t msg)
613{
614 return 0;
615}
616
617static int driver_resume(struct usb_interface *intf)
618{
619 return 0;
620}
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622struct usb_driver usbfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 .name = "usbfs",
624 .probe = driver_probe,
625 .disconnect = driver_disconnect,
Alan Stern2e2eb832007-12-04 14:35:15 -0500626 .suspend = driver_suspend,
627 .resume = driver_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628};
629
630static int claimintf(struct dev_state *ps, unsigned int ifnum)
631{
632 struct usb_device *dev = ps->dev;
633 struct usb_interface *intf;
634 int err;
635
636 if (ifnum >= 8*sizeof(ps->ifclaimed))
637 return -EINVAL;
638 /* already claimed */
639 if (test_bit(ifnum, &ps->ifclaimed))
640 return 0;
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 intf = usb_ifnum_to_if(dev, ifnum);
643 if (!intf)
644 err = -ENOENT;
645 else
646 err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (err == 0)
648 set_bit(ifnum, &ps->ifclaimed);
649 return err;
650}
651
652static int releaseintf(struct dev_state *ps, unsigned int ifnum)
653{
654 struct usb_device *dev;
655 struct usb_interface *intf;
656 int err;
657
658 err = -EINVAL;
659 if (ifnum >= 8*sizeof(ps->ifclaimed))
660 return err;
661 dev = ps->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 intf = usb_ifnum_to_if(dev, ifnum);
663 if (!intf)
664 err = -ENOENT;
665 else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
666 usb_driver_release_interface(&usbfs_driver, intf);
667 err = 0;
668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return err;
670}
671
672static int checkintf(struct dev_state *ps, unsigned int ifnum)
673{
674 if (ps->dev->state != USB_STATE_CONFIGURED)
675 return -EHOSTUNREACH;
676 if (ifnum >= 8*sizeof(ps->ifclaimed))
677 return -EINVAL;
678 if (test_bit(ifnum, &ps->ifclaimed))
679 return 0;
680 /* if not yet claimed, claim it for the driver */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800681 dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
682 "interface %u before use\n", task_pid_nr(current),
683 current->comm, ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return claimintf(ps, ifnum);
685}
686
687static int findintfep(struct usb_device *dev, unsigned int ep)
688{
689 unsigned int i, j, e;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800690 struct usb_interface *intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 struct usb_host_interface *alts;
692 struct usb_endpoint_descriptor *endpt;
693
694 if (ep & ~(USB_DIR_IN|0xf))
695 return -EINVAL;
696 if (!dev->actconfig)
697 return -ESRCH;
698 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
699 intf = dev->actconfig->interface[i];
700 for (j = 0; j < intf->num_altsetting; j++) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800701 alts = &intf->altsetting[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 for (e = 0; e < alts->desc.bNumEndpoints; e++) {
703 endpt = &alts->endpoint[e].desc;
704 if (endpt->bEndpointAddress == ep)
705 return alts->desc.bInterfaceNumber;
706 }
707 }
708 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800709 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800712static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype,
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200713 unsigned int request, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715 int ret = 0;
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200716 struct usb_host_interface *alt_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
David Vrabel6da9c992009-02-18 14:43:47 +0000718 if (ps->dev->state != USB_STATE_UNAUTHENTICATED
719 && ps->dev->state != USB_STATE_ADDRESS
Horst Schirmeier24f8b112006-03-11 00:16:55 -0800720 && ps->dev->state != USB_STATE_CONFIGURED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return -EHOSTUNREACH;
722 if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
723 return 0;
724
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200725 /*
726 * check for the special corner case 'get_device_id' in the printer
727 * class specification, where wIndex is (interface << 8 | altsetting)
728 * instead of just interface
729 */
730 if (requesttype == 0xa1 && request == 0) {
731 alt_setting = usb_find_alt_setting(ps->dev->actconfig,
732 index >> 8, index & 0xff);
733 if (alt_setting
734 && alt_setting->desc.bInterfaceClass == USB_CLASS_PRINTER)
735 index >>= 8;
736 }
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 index &= 0xff;
739 switch (requesttype & USB_RECIP_MASK) {
740 case USB_RECIP_ENDPOINT:
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800741 ret = findintfep(ps->dev, index);
742 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 ret = checkintf(ps, ret);
744 break;
745
746 case USB_RECIP_INTERFACE:
747 ret = checkintf(ps, index);
748 break;
749 }
750 return ret;
751}
752
Alan Stern61ad04a2008-06-24 14:47:12 -0400753static int match_devt(struct device *dev, void *data)
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700754{
David Howellsa80d5ff2008-07-02 12:28:55 +0100755 return dev->devt == (dev_t) (unsigned long) data;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100756}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700757
Alan Stern61ad04a2008-06-24 14:47:12 -0400758static struct usb_device *usbdev_lookup_by_devt(dev_t devt)
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100759{
760 struct device *dev;
761
David Howellsa80d5ff2008-07-02 12:28:55 +0100762 dev = bus_find_device(&usb_bus_type, NULL,
763 (void *) (unsigned long) devt, match_devt);
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100764 if (!dev)
765 return NULL;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100766 return container_of(dev, struct usb_device, dev);
767}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769/*
770 * file operations
771 */
772static int usbdev_open(struct inode *inode, struct file *file)
773{
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200774 struct usb_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 struct dev_state *ps;
776 int ret;
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 ret = -ENOMEM;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800779 ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
780 if (!ps)
Alan Stern62e299e2010-01-08 12:56:19 -0500781 goto out_free_ps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Alan Stern01105a22009-07-30 15:28:14 -0400783 ret = -ENODEV;
Alan Stern61ad04a2008-06-24 14:47:12 -0400784
Alan Stern62e299e2010-01-08 12:56:19 -0500785 /* Protect against simultaneous removal or release */
786 mutex_lock(&usbfs_mutex);
787
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100788 /* usbdev device-node */
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200789 if (imajor(inode) == USB_DEVICE_MAJOR)
Alan Stern61ad04a2008-06-24 14:47:12 -0400790 dev = usbdev_lookup_by_devt(inode->i_rdev);
Alan Stern62e299e2010-01-08 12:56:19 -0500791
Alan Stern62e299e2010-01-08 12:56:19 -0500792 mutex_unlock(&usbfs_mutex);
793
794 if (!dev)
795 goto out_free_ps;
796
797 usb_lock_device(dev);
798 if (dev->state == USB_STATE_NOTATTACHED)
799 goto out_unlock_device;
800
Alan Stern94fcda12006-11-20 11:38:46 -0500801 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -0400802 if (ret)
Alan Stern62e299e2010-01-08 12:56:19 -0500803 goto out_unlock_device;
Alan Stern01d883d2006-08-30 15:47:18 -0400804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 ps->dev = dev;
806 ps->file = file;
807 spin_lock_init(&ps->lock);
Dan Carpenter316547f2006-12-13 00:03:38 -0800808 INIT_LIST_HEAD(&ps->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 INIT_LIST_HEAD(&ps->async_pending);
810 INIT_LIST_HEAD(&ps->async_completed);
811 init_waitqueue_head(&ps->wait);
812 ps->discsignr = 0;
Eric W. Biederman2425c082006-10-02 02:17:28 -0700813 ps->disc_pid = get_pid(task_pid(current));
Serge Hallynd178bc32011-09-26 10:45:18 -0500814 ps->cred = get_current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 ps->disccontext = NULL;
816 ps->ifclaimed = 0;
David Quigley7a019552006-06-30 01:55:48 -0700817 security_task_getsecid(current, &ps->secid);
Oliver Neukum527660a2007-04-20 20:50:48 +0200818 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 list_add_tail(&ps->list, &dev->filelist);
820 file->private_data = ps;
Alan Stern62e299e2010-01-08 12:56:19 -0500821 usb_unlock_device(dev);
Alan Stern2da41d52008-10-06 11:24:26 -0400822 snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
823 current->comm);
Alan Stern62e299e2010-01-08 12:56:19 -0500824 return ret;
825
826 out_unlock_device:
827 usb_unlock_device(dev);
828 usb_put_dev(dev);
829 out_free_ps:
830 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400831 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834static int usbdev_release(struct inode *inode, struct file *file)
835{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200836 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 struct usb_device *dev = ps->dev;
838 unsigned int ifnum;
Alan Stern6ff10462009-03-09 13:44:02 -0400839 struct async *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 usb_lock_device(dev);
Alan Stern7cbe5dc2009-06-29 10:56:54 -0400842 usb_hub_release_all_ports(dev, ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 list_del_init(&ps->list);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
847 ifnum++) {
848 if (test_bit(ifnum, &ps->ifclaimed))
849 releaseintf(ps, ifnum);
850 }
851 destroy_all_async(ps);
Alan Stern94fcda12006-11-20 11:38:46 -0500852 usb_autosuspend_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 usb_unlock_device(dev);
854 usb_put_dev(dev);
Eric W. Biederman2425c082006-10-02 02:17:28 -0700855 put_pid(ps->disc_pid);
Serge Hallynd178bc32011-09-26 10:45:18 -0500856 put_cred(ps->cred);
Alan Stern6ff10462009-03-09 13:44:02 -0400857
858 as = async_getcompleted(ps);
859 while (as) {
860 free_async(as);
861 as = async_getcompleted(ps);
862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
867static int proc_control(struct dev_state *ps, void __user *arg)
868{
869 struct usb_device *dev = ps->dev;
870 struct usbdevfs_ctrltransfer ctrl;
871 unsigned int tmo;
872 unsigned char *tbuf;
Andrew Mortonff66e3c2008-03-12 13:32:24 -0700873 unsigned wLength;
Alan Stern4c6e8972009-06-29 11:02:04 -0400874 int i, pipe, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
877 return -EFAULT;
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200878 ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.bRequest,
879 ctrl.wIndex);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800880 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return ret;
Andrew Mortonff66e3c2008-03-12 13:32:24 -0700882 wLength = ctrl.wLength; /* To suppress 64k PAGE_SIZE warning */
883 if (wLength > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return -EINVAL;
Alan Sternadd1aae2011-11-17 16:41:25 -0500885 ret = usbfs_increase_memory_usage(PAGE_SIZE + sizeof(struct urb) +
886 sizeof(struct usb_ctrlrequest));
887 if (ret)
888 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800889 tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
Alan Sternadd1aae2011-11-17 16:41:25 -0500890 if (!tbuf) {
891 ret = -ENOMEM;
892 goto done;
893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 tmo = ctrl.timeout;
Chris Frey0880aef2010-01-26 17:07:29 -0500895 snoop(&dev->dev, "control urb: bRequestType=%02x "
896 "bRequest=%02x wValue=%04x "
897 "wIndex=%04x wLength=%04x\n",
898 ctrl.bRequestType, ctrl.bRequest,
899 __le16_to_cpup(&ctrl.wValue),
900 __le16_to_cpup(&ctrl.wIndex),
901 __le16_to_cpup(&ctrl.wLength));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (ctrl.bRequestType & 0x80) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800903 if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
904 ctrl.wLength)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500905 ret = -EINVAL;
906 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
Alan Stern4c6e8972009-06-29 11:02:04 -0400908 pipe = usb_rcvctrlpipe(dev, 0);
Chris Frey0880aef2010-01-26 17:07:29 -0500909 snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 usb_unlock_device(dev);
Alan Stern4c6e8972009-06-29 11:02:04 -0400912 i = usb_control_msg(dev, pipe, ctrl.bRequest,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800913 ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
914 tbuf, ctrl.wLength, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -0500916 snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE,
Michal Sojka9d02b422011-03-15 16:41:47 +0100917 tbuf, max(i, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if ((i > 0) && ctrl.wLength) {
Alan Sternfe0410c2005-07-29 12:16:58 -0700919 if (copy_to_user(ctrl.data, tbuf, i)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500920 ret = -EFAULT;
921 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923 }
924 } else {
925 if (ctrl.wLength) {
926 if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500927 ret = -EFAULT;
928 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930 }
Alan Stern4c6e8972009-06-29 11:02:04 -0400931 pipe = usb_sndctrlpipe(dev, 0);
Chris Frey0880aef2010-01-26 17:07:29 -0500932 snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT,
933 tbuf, ctrl.wLength);
Alan Stern4c6e8972009-06-29 11:02:04 -0400934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 usb_unlock_device(dev);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800936 i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
937 ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
938 tbuf, ctrl.wLength, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -0500940 snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800942 if (i < 0 && i != -EPIPE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
944 "failed cmd %s rqt %u rq %u len %u ret %d\n",
945 current->comm, ctrl.bRequestType, ctrl.bRequest,
946 ctrl.wLength, i);
947 }
Alan Stern52fb7432011-11-17 16:41:14 -0500948 ret = i;
949 done:
950 free_page((unsigned long) tbuf);
Alan Sternadd1aae2011-11-17 16:41:25 -0500951 usbfs_decrease_memory_usage(PAGE_SIZE + sizeof(struct urb) +
952 sizeof(struct usb_ctrlrequest));
Alan Stern52fb7432011-11-17 16:41:14 -0500953 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
956static int proc_bulk(struct dev_state *ps, void __user *arg)
957{
958 struct usb_device *dev = ps->dev;
959 struct usbdevfs_bulktransfer bulk;
960 unsigned int tmo, len1, pipe;
961 int len2;
962 unsigned char *tbuf;
Alan Stern4c6e8972009-06-29 11:02:04 -0400963 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 if (copy_from_user(&bulk, arg, sizeof(bulk)))
966 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800967 ret = findintfep(ps->dev, bulk.ep);
968 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800970 ret = checkintf(ps, ret);
971 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return ret;
973 if (bulk.ep & USB_DIR_IN)
974 pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
975 else
976 pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
977 if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
978 return -EINVAL;
979 len1 = bulk.len;
Alan Stern3f5eb8d2011-11-17 16:41:35 -0500980 if (len1 >= USBFS_XFER_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return -EINVAL;
Alan Sternadd1aae2011-11-17 16:41:25 -0500982 ret = usbfs_increase_memory_usage(len1 + sizeof(struct urb));
983 if (ret)
984 return ret;
985 if (!(tbuf = kmalloc(len1, GFP_KERNEL))) {
986 ret = -ENOMEM;
987 goto done;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 tmo = bulk.timeout;
990 if (bulk.ep & 0x80) {
991 if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500992 ret = -EINVAL;
993 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Chris Frey0880aef2010-01-26 17:07:29 -0500995 snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, NULL, 0);
Alan Stern4c6e8972009-06-29 11:02:04 -0400996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 usb_unlock_device(dev);
998 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
999 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -05001000 snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, tbuf, len2);
Alan Stern4c6e8972009-06-29 11:02:04 -04001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (!i && len2) {
1003 if (copy_to_user(bulk.data, tbuf, len2)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001004 ret = -EFAULT;
1005 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
1007 }
1008 } else {
1009 if (len1) {
1010 if (copy_from_user(tbuf, bulk.data, len1)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001011 ret = -EFAULT;
1012 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 }
1014 }
Chris Frey0880aef2010-01-26 17:07:29 -05001015 snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, tbuf, len1);
Alan Stern4c6e8972009-06-29 11:02:04 -04001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 usb_unlock_device(dev);
1018 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
1019 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -05001020 snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
Alan Stern52fb7432011-11-17 16:41:14 -05001022 ret = (i < 0 ? i : len2);
1023 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 kfree(tbuf);
Alan Sternadd1aae2011-11-17 16:41:25 -05001025 usbfs_decrease_memory_usage(len1 + sizeof(struct urb));
Alan Stern52fb7432011-11-17 16:41:14 -05001026 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
1029static int proc_resetep(struct dev_state *ps, void __user *arg)
1030{
1031 unsigned int ep;
1032 int ret;
1033
1034 if (get_user(ep, (unsigned int __user *)arg))
1035 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001036 ret = findintfep(ps->dev, ep);
1037 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001039 ret = checkintf(ps, ret);
1040 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return ret;
David Vrabel3444b262009-04-08 17:36:28 +00001042 usb_reset_endpoint(ps->dev, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return 0;
1044}
1045
1046static int proc_clearhalt(struct dev_state *ps, void __user *arg)
1047{
1048 unsigned int ep;
1049 int pipe;
1050 int ret;
1051
1052 if (get_user(ep, (unsigned int __user *)arg))
1053 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001054 ret = findintfep(ps->dev, ep);
1055 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001057 ret = checkintf(ps, ret);
1058 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return ret;
1060 if (ep & USB_DIR_IN)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001061 pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
1062 else
1063 pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 return usb_clear_halt(ps->dev, pipe);
1066}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068static int proc_getdriver(struct dev_state *ps, void __user *arg)
1069{
1070 struct usbdevfs_getdriver gd;
1071 struct usb_interface *intf;
1072 int ret;
1073
1074 if (copy_from_user(&gd, arg, sizeof(gd)))
1075 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 intf = usb_ifnum_to_if(ps->dev, gd.interface);
1077 if (!intf || !intf->dev.driver)
1078 ret = -ENODATA;
1079 else {
1080 strncpy(gd.driver, intf->dev.driver->name,
1081 sizeof(gd.driver));
1082 ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
1083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return ret;
1085}
1086
1087static int proc_connectinfo(struct dev_state *ps, void __user *arg)
1088{
Vasiliy Kulikov886ccd42010-11-06 17:41:28 +03001089 struct usbdevfs_connectinfo ci = {
1090 .devnum = ps->dev->devnum,
1091 .slow = ps->dev->speed == USB_SPEED_LOW
1092 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (copy_to_user(arg, &ci, sizeof(ci)))
1095 return -EFAULT;
1096 return 0;
1097}
1098
1099static int proc_resetdevice(struct dev_state *ps)
1100{
Ming Lei742120c2008-06-18 22:00:29 +08001101 return usb_reset_device(ps->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
1104static int proc_setintf(struct dev_state *ps, void __user *arg)
1105{
1106 struct usbdevfs_setinterface setintf;
1107 int ret;
1108
1109 if (copy_from_user(&setintf, arg, sizeof(setintf)))
1110 return -EFAULT;
1111 if ((ret = checkintf(ps, setintf.interface)))
1112 return ret;
1113 return usb_set_interface(ps->dev, setintf.interface,
1114 setintf.altsetting);
1115}
1116
1117static int proc_setconfig(struct dev_state *ps, void __user *arg)
1118{
Alan Stern3f141e22007-02-08 16:40:43 -05001119 int u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 int status = 0;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001121 struct usb_host_config *actconfig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Alan Stern3f141e22007-02-08 16:40:43 -05001123 if (get_user(u, (int __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return -EFAULT;
1125
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001126 actconfig = ps->dev->actconfig;
1127
1128 /* Don't touch the device if any interfaces are claimed.
1129 * It could interfere with other drivers' operations, and if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 * an interface is claimed by usbfs it could easily deadlock.
1131 */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001132 if (actconfig) {
1133 int i;
1134
1135 for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
1136 if (usb_interface_claimed(actconfig->interface[i])) {
1137 dev_warn(&ps->dev->dev,
David Brownell72ebddb2005-04-11 18:34:17 -07001138 "usbfs: interface %d claimed by %s "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 "while '%s' sets config #%d\n",
1140 actconfig->interface[i]
1141 ->cur_altsetting
1142 ->desc.bInterfaceNumber,
David Brownell72ebddb2005-04-11 18:34:17 -07001143 actconfig->interface[i]
1144 ->dev.driver->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 current->comm, u);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001146 status = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001149 }
1150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
1153 * so avoid usb_set_configuration()'s kick to sysfs
1154 */
1155 if (status == 0) {
1156 if (actconfig && actconfig->desc.bConfigurationValue == u)
1157 status = usb_reset_configuration(ps->dev);
1158 else
1159 status = usb_set_configuration(ps->dev, u);
1160 }
1161
1162 return status;
1163}
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001166 struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
1167 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
1169 struct usbdevfs_iso_packet_desc *isopkt = NULL;
1170 struct usb_host_endpoint *ep;
Alan Stern52fb7432011-11-17 16:41:14 -05001171 struct async *as = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 struct usb_ctrlrequest *dr = NULL;
1173 unsigned int u, totlen, isofrmlen;
Hans de Goede3d97ff62012-07-04 09:18:03 +02001174 int i, ret, is_in, num_sgs = 0, ifnum = -1;
1175 void *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Alan Stern14722ef2008-04-17 10:18:11 -04001177 if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP |
1178 USBDEVFS_URB_SHORT_NOT_OK |
Alan Stern01c64602009-09-01 11:09:56 -04001179 USBDEVFS_URB_BULK_CONTINUATION |
Alan Stern14722ef2008-04-17 10:18:11 -04001180 USBDEVFS_URB_NO_FSBR |
1181 USBDEVFS_URB_ZERO_PACKET |
1182 USBDEVFS_URB_NO_INTERRUPT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return -EINVAL;
Alan Stern91801352009-06-29 11:04:54 -04001184 if (uurb->buffer_length > 0 && !uurb->buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001186 if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
1187 (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
1188 ifnum = findintfep(ps->dev, uurb->endpoint);
1189 if (ifnum < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return ifnum;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001191 ret = checkintf(ps, ifnum);
1192 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 return ret;
1194 }
Alan Stern93cf9b92007-07-30 17:09:28 -04001195 if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
1196 is_in = 1;
1197 ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
1198 } else {
1199 is_in = 0;
1200 ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
1201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (!ep)
1203 return -ENOENT;
Alan Sternadd1aae2011-11-17 16:41:25 -05001204
1205 u = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 switch(uurb->type) {
1207 case USBDEVFS_URB_TYPE_CONTROL:
Alan Stern93cf9b92007-07-30 17:09:28 -04001208 if (!usb_endpoint_xfer_control(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return -EINVAL;
Alan Sternadd1aae2011-11-17 16:41:25 -05001210 /* min 8 byte setup packet */
1211 if (uurb->buffer_length < 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001213 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
1214 if (!dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 return -ENOMEM;
1216 if (copy_from_user(dr, uurb->buffer, 8)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001217 ret = -EFAULT;
1218 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220 if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001221 ret = -EINVAL;
1222 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
Matthias Dellweg393cbb52011-09-25 14:26:25 +02001224 ret = check_ctrlrecip(ps, dr->bRequestType, dr->bRequest,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001225 le16_to_cpup(&dr->wIndex));
Alan Stern52fb7432011-11-17 16:41:14 -05001226 if (ret)
1227 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 uurb->number_of_packets = 0;
1229 uurb->buffer_length = le16_to_cpup(&dr->wLength);
1230 uurb->buffer += 8;
Alan Stern93cf9b92007-07-30 17:09:28 -04001231 if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
1232 is_in = 1;
1233 uurb->endpoint |= USB_DIR_IN;
1234 } else {
1235 is_in = 0;
1236 uurb->endpoint &= ~USB_DIR_IN;
1237 }
Chris Frey0880aef2010-01-26 17:07:29 -05001238 snoop(&ps->dev->dev, "control urb: bRequestType=%02x "
1239 "bRequest=%02x wValue=%04x "
1240 "wIndex=%04x wLength=%04x\n",
1241 dr->bRequestType, dr->bRequest,
1242 __le16_to_cpup(&dr->wValue),
1243 __le16_to_cpup(&dr->wIndex),
1244 __le16_to_cpup(&dr->wLength));
Alan Sternadd1aae2011-11-17 16:41:25 -05001245 u = sizeof(struct usb_ctrlrequest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 break;
1247
1248 case USBDEVFS_URB_TYPE_BULK:
Alan Stern93cf9b92007-07-30 17:09:28 -04001249 switch (usb_endpoint_type(&ep->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 case USB_ENDPOINT_XFER_CONTROL:
1251 case USB_ENDPOINT_XFER_ISOC:
1252 return -EINVAL;
Alan Sternf661c6f2009-12-11 16:20:20 -05001253 case USB_ENDPOINT_XFER_INT:
1254 /* allow single-shot interrupt transfers */
1255 uurb->type = USBDEVFS_URB_TYPE_INTERRUPT;
1256 goto interrupt_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
1258 uurb->number_of_packets = 0;
Hans de Goede3d97ff62012-07-04 09:18:03 +02001259 num_sgs = DIV_ROUND_UP(uurb->buffer_length, USB_SG_SIZE);
1260 if (num_sgs == 1 || num_sgs > ps->dev->bus->sg_tablesize)
1261 num_sgs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 break;
1263
Alan Sternf661c6f2009-12-11 16:20:20 -05001264 case USBDEVFS_URB_TYPE_INTERRUPT:
1265 if (!usb_endpoint_xfer_int(&ep->desc))
1266 return -EINVAL;
1267 interrupt_urb:
1268 uurb->number_of_packets = 0;
Alan Sternf661c6f2009-12-11 16:20:20 -05001269 break;
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 case USBDEVFS_URB_TYPE_ISO:
1272 /* arbitrary limit */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001273 if (uurb->number_of_packets < 1 ||
1274 uurb->number_of_packets > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001276 if (!usb_endpoint_xfer_isoc(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001278 isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
1279 uurb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
1281 return -ENOMEM;
1282 if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001283 ret = -EFAULT;
1284 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001287 /* arbitrary limit,
1288 * sufficient for USB 2.0 high-bandwidth iso */
Micah Dowty36122422006-05-19 11:26:24 -07001289 if (isopkt[u].length > 8192) {
Alan Stern52fb7432011-11-17 16:41:14 -05001290 ret = -EINVAL;
1291 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293 totlen += isopkt[u].length;
1294 }
Alan Sternadd1aae2011-11-17 16:41:25 -05001295 u *= sizeof(struct usb_iso_packet_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 uurb->buffer_length = totlen;
1297 break;
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 default:
1300 return -EINVAL;
1301 }
Alan Sternadd1aae2011-11-17 16:41:25 -05001302
Alan Stern3f5eb8d2011-11-17 16:41:35 -05001303 if (uurb->buffer_length >= USBFS_XFER_MAX) {
Alan Sternadd1aae2011-11-17 16:41:25 -05001304 ret = -EINVAL;
1305 goto error;
1306 }
Alan Stern91801352009-06-29 11:04:54 -04001307 if (uurb->buffer_length > 0 &&
1308 !access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1309 uurb->buffer, uurb->buffer_length)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001310 ret = -EFAULT;
1311 goto error;
Alan Stern91801352009-06-29 11:04:54 -04001312 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001313 as = alloc_async(uurb->number_of_packets);
1314 if (!as) {
Alan Stern52fb7432011-11-17 16:41:14 -05001315 ret = -ENOMEM;
1316 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 }
Hans de Goede3d97ff62012-07-04 09:18:03 +02001318
1319 u += sizeof(struct async) + sizeof(struct urb) + uurb->buffer_length +
1320 num_sgs * sizeof(struct scatterlist);
Alan Sternadd1aae2011-11-17 16:41:25 -05001321 ret = usbfs_increase_memory_usage(u);
1322 if (ret)
1323 goto error;
1324 as->mem_usage = u;
1325
Hans de Goede3d97ff62012-07-04 09:18:03 +02001326 if (num_sgs) {
1327 as->urb->sg = kmalloc(num_sgs * sizeof(struct scatterlist),
1328 GFP_KERNEL);
1329 if (!as->urb->sg) {
1330 ret = -ENOMEM;
1331 goto error;
1332 }
1333 as->urb->num_sgs = num_sgs;
1334 sg_init_table(as->urb->sg, as->urb->num_sgs);
1335
1336 totlen = uurb->buffer_length;
1337 for (i = 0; i < as->urb->num_sgs; i++) {
1338 u = (totlen > USB_SG_SIZE) ? USB_SG_SIZE : totlen;
1339 buf = kmalloc(u, GFP_KERNEL);
1340 if (!buf) {
1341 ret = -ENOMEM;
1342 goto error;
1343 }
1344 sg_set_buf(&as->urb->sg[i], buf, u);
1345
1346 if (!is_in) {
1347 if (copy_from_user(buf, uurb->buffer, u)) {
1348 ret = -EFAULT;
1349 goto error;
1350 }
Henrik Rydberg01463902012-10-13 12:20:36 +02001351 uurb->buffer += u;
Hans de Goede3d97ff62012-07-04 09:18:03 +02001352 }
1353 totlen -= u;
1354 }
1355 } else if (uurb->buffer_length > 0) {
Alan Stern91801352009-06-29 11:04:54 -04001356 as->urb->transfer_buffer = kmalloc(uurb->buffer_length,
1357 GFP_KERNEL);
1358 if (!as->urb->transfer_buffer) {
Alan Stern52fb7432011-11-17 16:41:14 -05001359 ret = -ENOMEM;
1360 goto error;
Alan Stern91801352009-06-29 11:04:54 -04001361 }
Hans de Goede3d97ff62012-07-04 09:18:03 +02001362
1363 if (!is_in) {
1364 if (copy_from_user(as->urb->transfer_buffer,
1365 uurb->buffer,
1366 uurb->buffer_length)) {
1367 ret = -EFAULT;
1368 goto error;
1369 }
1370 } else if (uurb->type == USBDEVFS_URB_TYPE_ISO) {
1371 /*
1372 * Isochronous input data may end up being
1373 * discontiguous if some of the packets are short.
1374 * Clear the buffer so that the gaps don't leak
1375 * kernel data to userspace.
1376 */
Alan Stern7152b592010-03-06 15:04:03 -05001377 memset(as->urb->transfer_buffer, 0,
1378 uurb->buffer_length);
Hans de Goede3d97ff62012-07-04 09:18:03 +02001379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001381 as->urb->dev = ps->dev;
1382 as->urb->pipe = (uurb->type << 30) |
Alan Stern93cf9b92007-07-30 17:09:28 -04001383 __create_pipe(ps->dev, uurb->endpoint & 0xf) |
1384 (uurb->endpoint & USB_DIR_IN);
Alan Stern14722ef2008-04-17 10:18:11 -04001385
1386 /* This tedious sequence is necessary because the URB_* flags
1387 * are internal to the kernel and subject to change, whereas
1388 * the USBDEVFS_URB_* flags are a user API and must not be changed.
1389 */
1390 u = (is_in ? URB_DIR_IN : URB_DIR_OUT);
1391 if (uurb->flags & USBDEVFS_URB_ISO_ASAP)
1392 u |= URB_ISO_ASAP;
1393 if (uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
1394 u |= URB_SHORT_NOT_OK;
1395 if (uurb->flags & USBDEVFS_URB_NO_FSBR)
1396 u |= URB_NO_FSBR;
1397 if (uurb->flags & USBDEVFS_URB_ZERO_PACKET)
1398 u |= URB_ZERO_PACKET;
1399 if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
1400 u |= URB_NO_INTERRUPT;
1401 as->urb->transfer_flags = u;
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 as->urb->transfer_buffer_length = uurb->buffer_length;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001404 as->urb->setup_packet = (unsigned char *)dr;
Alan Stern52fb7432011-11-17 16:41:14 -05001405 dr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 as->urb->start_frame = uurb->start_frame;
1407 as->urb->number_of_packets = uurb->number_of_packets;
Alan Stern97b9eb92007-02-26 14:56:14 -05001408 if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
1409 ps->dev->speed == USB_SPEED_HIGH)
1410 as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
1411 else
1412 as->urb->interval = ep->desc.bInterval;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001413 as->urb->context = as;
1414 as->urb->complete = async_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
1416 as->urb->iso_frame_desc[u].offset = totlen;
1417 as->urb->iso_frame_desc[u].length = isopkt[u].length;
1418 totlen += isopkt[u].length;
1419 }
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001420 kfree(isopkt);
Alan Stern52fb7432011-11-17 16:41:14 -05001421 isopkt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 as->ps = ps;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001423 as->userurb = arg;
Alan Stern91801352009-06-29 11:04:54 -04001424 if (is_in && uurb->buffer_length > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 as->userbuffer = uurb->buffer;
1426 else
1427 as->userbuffer = NULL;
1428 as->signr = uurb->signr;
1429 as->ifnum = ifnum;
Eric W. Biederman2425c082006-10-02 02:17:28 -07001430 as->pid = get_pid(task_pid(current));
Serge Hallynd178bc32011-09-26 10:45:18 -05001431 as->cred = get_current_cred();
David Quigley7a019552006-06-30 01:55:48 -07001432 security_task_getsecid(current, &as->secid);
Alan Stern4c6e8972009-06-29 11:02:04 -04001433 snoop_urb(ps->dev, as->userurb, as->urb->pipe,
Chris Frey0880aef2010-01-26 17:07:29 -05001434 as->urb->transfer_buffer_length, 0, SUBMIT,
Hans de Goede3d97ff62012-07-04 09:18:03 +02001435 NULL, 0);
1436 if (!is_in)
1437 snoop_urb_data(as->urb, as->urb->transfer_buffer_length);
1438
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001439 async_newpending(as);
Alan Stern01c64602009-09-01 11:09:56 -04001440
1441 if (usb_endpoint_xfer_bulk(&ep->desc)) {
1442 spin_lock_irq(&ps->lock);
1443
1444 /* Not exactly the endpoint address; the direction bit is
1445 * shifted to the 0x10 position so that the value will be
1446 * between 0 and 31.
1447 */
1448 as->bulk_addr = usb_endpoint_num(&ep->desc) |
1449 ((ep->desc.bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1450 >> 3);
1451
1452 /* If this bulk URB is the start of a new transfer, re-enable
1453 * the endpoint. Otherwise mark it as a continuation URB.
1454 */
1455 if (uurb->flags & USBDEVFS_URB_BULK_CONTINUATION)
1456 as->bulk_status = AS_CONTINUATION;
1457 else
1458 ps->disabled_bulk_eps &= ~(1 << as->bulk_addr);
1459
1460 /* Don't accept continuation URBs if the endpoint is
1461 * disabled because of an earlier error.
1462 */
1463 if (ps->disabled_bulk_eps & (1 << as->bulk_addr))
1464 ret = -EREMOTEIO;
1465 else
1466 ret = usb_submit_urb(as->urb, GFP_ATOMIC);
1467 spin_unlock_irq(&ps->lock);
1468 } else {
1469 ret = usb_submit_urb(as->urb, GFP_KERNEL);
1470 }
1471
1472 if (ret) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001473 dev_printk(KERN_DEBUG, &ps->dev->dev,
1474 "usbfs: usb_submit_urb returned %d\n", ret);
Alan Stern4c6e8972009-06-29 11:02:04 -04001475 snoop_urb(ps->dev, as->userurb, as->urb->pipe,
Chris Frey0880aef2010-01-26 17:07:29 -05001476 0, ret, COMPLETE, NULL, 0);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001477 async_removepending(as);
Alan Stern52fb7432011-11-17 16:41:14 -05001478 goto error;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001479 }
1480 return 0;
Alan Stern52fb7432011-11-17 16:41:14 -05001481
1482 error:
1483 kfree(isopkt);
1484 kfree(dr);
1485 if (as)
1486 free_async(as);
1487 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489
1490static int proc_submiturb(struct dev_state *ps, void __user *arg)
1491{
1492 struct usbdevfs_urb uurb;
1493
1494 if (copy_from_user(&uurb, arg, sizeof(uurb)))
1495 return -EFAULT;
1496
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001497 return proc_do_submiturb(ps, &uurb,
1498 (((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
1499 arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
1502static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
1503{
Huajun Li4e09dcf2012-05-18 20:12:51 +08001504 struct urb *urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 struct async *as;
Huajun Li4e09dcf2012-05-18 20:12:51 +08001506 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Huajun Li4e09dcf2012-05-18 20:12:51 +08001508 spin_lock_irqsave(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 as = async_getpending(ps, arg);
Huajun Li4e09dcf2012-05-18 20:12:51 +08001510 if (!as) {
1511 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return -EINVAL;
Huajun Li4e09dcf2012-05-18 20:12:51 +08001513 }
1514
1515 urb = as->urb;
1516 usb_get_urb(urb);
1517 spin_unlock_irqrestore(&ps->lock, flags);
1518
1519 usb_kill_urb(urb);
1520 usb_put_urb(urb);
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return 0;
1523}
1524
1525static int processcompl(struct async *as, void __user * __user *arg)
1526{
1527 struct urb *urb = as->urb;
1528 struct usbdevfs_urb __user *userurb = as->userurb;
1529 void __user *addr = as->userurb;
1530 unsigned int i;
1531
Alan Stern7152b592010-03-06 15:04:03 -05001532 if (as->userbuffer && urb->actual_length) {
Hans de Goede3d97ff62012-07-04 09:18:03 +02001533 if (copy_urb_data_to_user(as->userbuffer, urb))
Oliver Neukumd794a022009-06-28 23:34:14 +02001534 goto err_out;
Alan Stern7152b592010-03-06 15:04:03 -05001535 }
Alan Sterne0152682007-08-24 15:42:52 -04001536 if (put_user(as->status, &userurb->status))
Oliver Neukumd794a022009-06-28 23:34:14 +02001537 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (put_user(urb->actual_length, &userurb->actual_length))
Oliver Neukumd794a022009-06-28 23:34:14 +02001539 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 if (put_user(urb->error_count, &userurb->error_count))
Oliver Neukumd794a022009-06-28 23:34:14 +02001541 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Alan Stern93cf9b92007-07-30 17:09:28 -04001543 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001544 for (i = 0; i < urb->number_of_packets; i++) {
1545 if (put_user(urb->iso_frame_desc[i].actual_length,
1546 &userurb->iso_frame_desc[i].actual_length))
Oliver Neukumd794a022009-06-28 23:34:14 +02001547 goto err_out;
Christopher Li668a9542005-04-18 17:39:26 -07001548 if (put_user(urb->iso_frame_desc[i].status,
1549 &userurb->iso_frame_desc[i].status))
Oliver Neukumd794a022009-06-28 23:34:14 +02001550 goto err_out;
Christopher Li668a9542005-04-18 17:39:26 -07001551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (put_user(addr, (void __user * __user *)arg))
1555 return -EFAULT;
1556 return 0;
Oliver Neukumd794a022009-06-28 23:34:14 +02001557
1558err_out:
Oliver Neukumd794a022009-06-28 23:34:14 +02001559 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001562static struct async *reap_as(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001564 DECLARE_WAITQUEUE(wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 struct async *as = NULL;
1566 struct usb_device *dev = ps->dev;
1567
1568 add_wait_queue(&ps->wait, &wait);
1569 for (;;) {
1570 __set_current_state(TASK_INTERRUPTIBLE);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001571 as = async_getcompleted(ps);
1572 if (as)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 break;
1574 if (signal_pending(current))
1575 break;
1576 usb_unlock_device(dev);
1577 schedule();
1578 usb_lock_device(dev);
1579 }
1580 remove_wait_queue(&ps->wait, &wait);
1581 set_current_state(TASK_RUNNING);
1582 return as;
1583}
1584
1585static int proc_reapurb(struct dev_state *ps, void __user *arg)
1586{
1587 struct async *as = reap_as(ps);
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001588 if (as) {
1589 int retval = processcompl(as, (void __user * __user *)arg);
1590 free_async(as);
1591 return retval;
1592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (signal_pending(current))
1594 return -EINTR;
1595 return -EIO;
1596}
1597
1598static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
1599{
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001600 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 struct async *as;
1602
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001603 as = async_getcompleted(ps);
1604 retval = -EAGAIN;
1605 if (as) {
1606 retval = processcompl(as, (void __user * __user *)arg);
1607 free_async(as);
1608 }
1609 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610}
1611
1612#ifdef CONFIG_COMPAT
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001613static int proc_control_compat(struct dev_state *ps,
1614 struct usbdevfs_ctrltransfer32 __user *p32)
1615{
1616 struct usbdevfs_ctrltransfer __user *p;
1617 __u32 udata;
1618 p = compat_alloc_user_space(sizeof(*p));
1619 if (copy_in_user(p, p32, (sizeof(*p32) - sizeof(compat_caddr_t))) ||
1620 get_user(udata, &p32->data) ||
1621 put_user(compat_ptr(udata), &p->data))
1622 return -EFAULT;
1623 return proc_control(ps, p);
1624}
1625
1626static int proc_bulk_compat(struct dev_state *ps,
1627 struct usbdevfs_bulktransfer32 __user *p32)
1628{
1629 struct usbdevfs_bulktransfer __user *p;
1630 compat_uint_t n;
1631 compat_caddr_t addr;
1632
1633 p = compat_alloc_user_space(sizeof(*p));
1634
1635 if (get_user(n, &p32->ep) || put_user(n, &p->ep) ||
1636 get_user(n, &p32->len) || put_user(n, &p->len) ||
1637 get_user(n, &p32->timeout) || put_user(n, &p->timeout) ||
1638 get_user(addr, &p32->data) || put_user(compat_ptr(addr), &p->data))
1639 return -EFAULT;
1640
1641 return proc_bulk(ps, p);
1642}
1643static int proc_disconnectsignal_compat(struct dev_state *ps, void __user *arg)
1644{
1645 struct usbdevfs_disconnectsignal32 ds;
1646
1647 if (copy_from_user(&ds, arg, sizeof(ds)))
1648 return -EFAULT;
1649 ps->discsignr = ds.signr;
1650 ps->disccontext = compat_ptr(ds.context);
1651 return 0;
1652}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654static int get_urb32(struct usbdevfs_urb *kurb,
1655 struct usbdevfs_urb32 __user *uurb)
1656{
1657 __u32 uptr;
Michael Buesch18753eb2009-07-29 11:39:03 +02001658 if (!access_ok(VERIFY_READ, uurb, sizeof(*uurb)) ||
1659 __get_user(kurb->type, &uurb->type) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 __get_user(kurb->endpoint, &uurb->endpoint) ||
1661 __get_user(kurb->status, &uurb->status) ||
1662 __get_user(kurb->flags, &uurb->flags) ||
1663 __get_user(kurb->buffer_length, &uurb->buffer_length) ||
1664 __get_user(kurb->actual_length, &uurb->actual_length) ||
1665 __get_user(kurb->start_frame, &uurb->start_frame) ||
1666 __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
1667 __get_user(kurb->error_count, &uurb->error_count) ||
1668 __get_user(kurb->signr, &uurb->signr))
1669 return -EFAULT;
1670
1671 if (__get_user(uptr, &uurb->buffer))
1672 return -EFAULT;
1673 kurb->buffer = compat_ptr(uptr);
Mark Lorded0c7722009-01-02 02:48:24 -05001674 if (__get_user(uptr, &uurb->usercontext))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return -EFAULT;
1676 kurb->usercontext = compat_ptr(uptr);
1677
1678 return 0;
1679}
1680
1681static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
1682{
1683 struct usbdevfs_urb uurb;
1684
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001685 if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 return -EFAULT;
1687
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001688 return proc_do_submiturb(ps, &uurb,
1689 ((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
1690 arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
1693static int processcompl_compat(struct async *as, void __user * __user *arg)
1694{
1695 struct urb *urb = as->urb;
1696 struct usbdevfs_urb32 __user *userurb = as->userurb;
1697 void __user *addr = as->userurb;
1698 unsigned int i;
1699
Hans de Goede2102e062012-07-04 09:18:01 +02001700 if (as->userbuffer && urb->actual_length) {
Hans de Goede3d97ff62012-07-04 09:18:03 +02001701 if (copy_urb_data_to_user(as->userbuffer, urb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 return -EFAULT;
Hans de Goede2102e062012-07-04 09:18:01 +02001703 }
Alan Sterne0152682007-08-24 15:42:52 -04001704 if (put_user(as->status, &userurb->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 return -EFAULT;
1706 if (put_user(urb->actual_length, &userurb->actual_length))
1707 return -EFAULT;
1708 if (put_user(urb->error_count, &userurb->error_count))
1709 return -EFAULT;
1710
Alan Stern93cf9b92007-07-30 17:09:28 -04001711 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001712 for (i = 0; i < urb->number_of_packets; i++) {
1713 if (put_user(urb->iso_frame_desc[i].actual_length,
1714 &userurb->iso_frame_desc[i].actual_length))
1715 return -EFAULT;
1716 if (put_user(urb->iso_frame_desc[i].status,
1717 &userurb->iso_frame_desc[i].status))
1718 return -EFAULT;
1719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 }
1721
Al Viroc714de52006-10-10 22:45:37 +01001722 if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 return -EFAULT;
1724 return 0;
1725}
1726
1727static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
1728{
1729 struct async *as = reap_as(ps);
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001730 if (as) {
1731 int retval = processcompl_compat(as, (void __user * __user *)arg);
1732 free_async(as);
1733 return retval;
1734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 if (signal_pending(current))
1736 return -EINTR;
1737 return -EIO;
1738}
1739
1740static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
1741{
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001742 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 struct async *as;
1744
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001745 retval = -EAGAIN;
1746 as = async_getcompleted(ps);
1747 if (as) {
1748 retval = processcompl_compat(as, (void __user * __user *)arg);
1749 free_async(as);
1750 }
1751 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752}
1753
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755#endif
1756
1757static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
1758{
1759 struct usbdevfs_disconnectsignal ds;
1760
1761 if (copy_from_user(&ds, arg, sizeof(ds)))
1762 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 ps->discsignr = ds.signr;
1764 ps->disccontext = ds.context;
1765 return 0;
1766}
1767
1768static int proc_claiminterface(struct dev_state *ps, void __user *arg)
1769{
1770 unsigned int ifnum;
1771
1772 if (get_user(ifnum, (unsigned int __user *)arg))
1773 return -EFAULT;
1774 return claimintf(ps, ifnum);
1775}
1776
1777static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
1778{
1779 unsigned int ifnum;
1780 int ret;
1781
1782 if (get_user(ifnum, (unsigned int __user *)arg))
1783 return -EFAULT;
1784 if ((ret = releaseintf(ps, ifnum)) < 0)
1785 return ret;
1786 destroy_async_on_interface (ps, ifnum);
1787 return 0;
1788}
1789
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001790static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 int size;
1793 void *buf = NULL;
1794 int retval = 0;
1795 struct usb_interface *intf = NULL;
1796 struct usb_driver *driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001798 /* alloc buffer */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001799 if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
1800 if ((buf = kmalloc(size, GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 return -ENOMEM;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001802 if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001803 if (copy_from_user(buf, ctl->data, size)) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001804 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return -EFAULT;
1806 }
1807 } else {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001808 memset(buf, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
1810 }
1811
Alan Stern349710c2006-07-01 22:05:56 -04001812 if (!connected(ps)) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001813 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return -ENODEV;
1815 }
1816
1817 if (ps->dev->state != USB_STATE_CONFIGURED)
1818 retval = -EHOSTUNREACH;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001819 else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
1820 retval = -EINVAL;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001821 else switch (ctl->ioctl_code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823 /* disconnect kernel driver from interface */
1824 case USBDEVFS_DISCONNECT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 if (intf->dev.driver) {
1826 driver = to_usb_driver(intf->dev.driver);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001827 dev_dbg(&intf->dev, "disconnect by usbfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 usb_driver_release_interface(driver, intf);
1829 } else
1830 retval = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 break;
1832
1833 /* let kernel drivers try to (re)bind to the interface */
1834 case USBDEVFS_CONNECT:
Alan Stern885e9742007-12-03 15:42:10 -05001835 if (!intf->dev.driver)
1836 retval = device_attach(&intf->dev);
1837 else
1838 retval = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 break;
1840
1841 /* talk directly to the interface's driver */
1842 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 if (intf->dev.driver)
1844 driver = to_usb_driver(intf->dev.driver);
Andi Kleenc532b292010-06-01 23:04:41 +02001845 if (driver == NULL || driver->unlocked_ioctl == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 retval = -ENOTTY;
1847 } else {
Andi Kleenc532b292010-06-01 23:04:41 +02001848 retval = driver->unlocked_ioctl(intf, ctl->ioctl_code, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 if (retval == -ENOIOCTLCMD)
1850 retval = -ENOTTY;
1851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853
1854 /* cleanup and return */
1855 if (retval >= 0
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001856 && (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 && size > 0
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001858 && copy_to_user(ctl->data, buf, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 retval = -EFAULT;
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001860
1861 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return retval;
1863}
1864
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001865static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
1866{
1867 struct usbdevfs_ioctl ctrl;
1868
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001869 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001870 return -EFAULT;
1871 return proc_ioctl(ps, &ctrl);
1872}
1873
1874#ifdef CONFIG_COMPAT
Andrew Morton777da592005-11-17 09:47:02 -08001875static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001876{
1877 struct usbdevfs_ioctl32 __user *uioc;
1878 struct usbdevfs_ioctl ctrl;
1879 u32 udata;
1880
Andrew Morton058120d2005-11-17 09:47:49 -08001881 uioc = compat_ptr((long)arg);
Michael Buesch18753eb2009-07-29 11:39:03 +02001882 if (!access_ok(VERIFY_READ, uioc, sizeof(*uioc)) ||
1883 __get_user(ctrl.ifno, &uioc->ifno) ||
1884 __get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001885 __get_user(udata, &uioc->data))
1886 return -EFAULT;
1887 ctrl.data = compat_ptr(udata);
1888
1889 return proc_ioctl(ps, &ctrl);
1890}
1891#endif
1892
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001893static int proc_claim_port(struct dev_state *ps, void __user *arg)
1894{
1895 unsigned portnum;
1896 int rc;
1897
1898 if (get_user(portnum, (unsigned __user *) arg))
1899 return -EFAULT;
1900 rc = usb_hub_claim_port(ps->dev, portnum, ps);
1901 if (rc == 0)
1902 snoop(&ps->dev->dev, "port %d claimed by process %d: %s\n",
1903 portnum, task_pid_nr(current), current->comm);
1904 return rc;
1905}
1906
1907static int proc_release_port(struct dev_state *ps, void __user *arg)
1908{
1909 unsigned portnum;
1910
1911 if (get_user(portnum, (unsigned __user *) arg))
1912 return -EFAULT;
1913 return usb_hub_release_port(ps->dev, portnum, ps);
1914}
1915
Hans de Goede19181bc2012-07-04 09:18:02 +02001916static int proc_get_capabilities(struct dev_state *ps, void __user *arg)
1917{
1918 __u32 caps;
1919
1920 caps = USBDEVFS_CAP_ZERO_PACKET | USBDEVFS_CAP_NO_PACKET_SIZE_LIM;
1921 if (!ps->dev->bus->no_stop_on_short)
1922 caps |= USBDEVFS_CAP_BULK_CONTINUATION;
Hans de Goede3d97ff62012-07-04 09:18:03 +02001923 if (ps->dev->bus->sg_tablesize)
1924 caps |= USBDEVFS_CAP_BULK_SCATTER_GATHER;
Hans de Goede19181bc2012-07-04 09:18:02 +02001925
1926 if (put_user(caps, (__u32 __user *)arg))
1927 return -EFAULT;
1928
1929 return 0;
1930}
1931
Hans de Goede0837e7e2012-09-08 20:02:05 +02001932static int proc_disconnect_claim(struct dev_state *ps, void __user *arg)
1933{
1934 struct usbdevfs_disconnect_claim dc;
1935 struct usb_interface *intf;
1936
1937 if (copy_from_user(&dc, arg, sizeof(dc)))
1938 return -EFAULT;
1939
1940 intf = usb_ifnum_to_if(ps->dev, dc.interface);
1941 if (!intf)
1942 return -EINVAL;
1943
1944 if (intf->dev.driver) {
1945 struct usb_driver *driver = to_usb_driver(intf->dev.driver);
1946
1947 if ((dc.flags & USBDEVFS_DISCONNECT_CLAIM_IF_DRIVER) &&
1948 strncmp(dc.driver, intf->dev.driver->name,
1949 sizeof(dc.driver)) != 0)
1950 return -EBUSY;
1951
1952 if ((dc.flags & USBDEVFS_DISCONNECT_CLAIM_EXCEPT_DRIVER) &&
1953 strncmp(dc.driver, intf->dev.driver->name,
1954 sizeof(dc.driver)) == 0)
1955 return -EBUSY;
1956
1957 dev_dbg(&intf->dev, "disconnect by usbfs\n");
1958 usb_driver_release_interface(driver, intf);
1959 }
1960
1961 return claimintf(ps, dc.interface);
1962}
1963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964/*
1965 * NOTE: All requests here that have interface numbers as parameters
1966 * are assuming that somehow the configuration has been prevented from
1967 * changing. But there's no mechanism to ensure that...
1968 */
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001969static long usbdev_do_ioctl(struct file *file, unsigned int cmd,
1970 void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971{
Tobias Klauserec17cf12006-09-13 21:38:41 +02001972 struct dev_state *ps = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001973 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 struct usb_device *dev = ps->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 int ret = -ENOTTY;
1976
1977 if (!(file->f_mode & FMODE_WRITE))
1978 return -EPERM;
Oliver Neukum01412a22010-01-13 15:33:43 +01001979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -04001981 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 usb_unlock_device(dev);
1983 return -ENODEV;
1984 }
1985
1986 switch (cmd) {
1987 case USBDEVFS_CONTROL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001988 snoop(&dev->dev, "%s: CONTROL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 ret = proc_control(ps, p);
1990 if (ret >= 0)
1991 inode->i_mtime = CURRENT_TIME;
1992 break;
1993
1994 case USBDEVFS_BULK:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001995 snoop(&dev->dev, "%s: BULK\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 ret = proc_bulk(ps, p);
1997 if (ret >= 0)
1998 inode->i_mtime = CURRENT_TIME;
1999 break;
2000
2001 case USBDEVFS_RESETEP:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002002 snoop(&dev->dev, "%s: RESETEP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 ret = proc_resetep(ps, p);
2004 if (ret >= 0)
2005 inode->i_mtime = CURRENT_TIME;
2006 break;
2007
2008 case USBDEVFS_RESET:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002009 snoop(&dev->dev, "%s: RESET\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 ret = proc_resetdevice(ps);
2011 break;
2012
2013 case USBDEVFS_CLEAR_HALT:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002014 snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 ret = proc_clearhalt(ps, p);
2016 if (ret >= 0)
2017 inode->i_mtime = CURRENT_TIME;
2018 break;
2019
2020 case USBDEVFS_GETDRIVER:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002021 snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 ret = proc_getdriver(ps, p);
2023 break;
2024
2025 case USBDEVFS_CONNECTINFO:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002026 snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 ret = proc_connectinfo(ps, p);
2028 break;
2029
2030 case USBDEVFS_SETINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002031 snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 ret = proc_setintf(ps, p);
2033 break;
2034
2035 case USBDEVFS_SETCONFIGURATION:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002036 snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 ret = proc_setconfig(ps, p);
2038 break;
2039
2040 case USBDEVFS_SUBMITURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002041 snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 ret = proc_submiturb(ps, p);
2043 if (ret >= 0)
2044 inode->i_mtime = CURRENT_TIME;
2045 break;
2046
2047#ifdef CONFIG_COMPAT
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002048 case USBDEVFS_CONTROL32:
2049 snoop(&dev->dev, "%s: CONTROL32\n", __func__);
2050 ret = proc_control_compat(ps, p);
2051 if (ret >= 0)
2052 inode->i_mtime = CURRENT_TIME;
2053 break;
2054
2055 case USBDEVFS_BULK32:
2056 snoop(&dev->dev, "%s: BULK32\n", __func__);
2057 ret = proc_bulk_compat(ps, p);
2058 if (ret >= 0)
2059 inode->i_mtime = CURRENT_TIME;
2060 break;
2061
2062 case USBDEVFS_DISCSIGNAL32:
2063 snoop(&dev->dev, "%s: DISCSIGNAL32\n", __func__);
2064 ret = proc_disconnectsignal_compat(ps, p);
2065 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 case USBDEVFS_SUBMITURB32:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002068 snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 ret = proc_submiturb_compat(ps, p);
2070 if (ret >= 0)
2071 inode->i_mtime = CURRENT_TIME;
2072 break;
2073
2074 case USBDEVFS_REAPURB32:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002075 snoop(&dev->dev, "%s: REAPURB32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 ret = proc_reapurb_compat(ps, p);
2077 break;
2078
2079 case USBDEVFS_REAPURBNDELAY32:
Alan Stern4c6e8972009-06-29 11:02:04 -04002080 snoop(&dev->dev, "%s: REAPURBNDELAY32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 ret = proc_reapurbnonblock_compat(ps, p);
2082 break;
2083
Pete Zaitcevc36fc882005-10-17 18:15:54 -07002084 case USBDEVFS_IOCTL32:
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002085 snoop(&dev->dev, "%s: IOCTL32\n", __func__);
Al Viroc714de52006-10-10 22:45:37 +01002086 ret = proc_ioctl_compat(ps, ptr_to_compat(p));
Pete Zaitcevc36fc882005-10-17 18:15:54 -07002087 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088#endif
2089
2090 case USBDEVFS_DISCARDURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002091 snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 ret = proc_unlinkurb(ps, p);
2093 break;
2094
2095 case USBDEVFS_REAPURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002096 snoop(&dev->dev, "%s: REAPURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 ret = proc_reapurb(ps, p);
2098 break;
2099
2100 case USBDEVFS_REAPURBNDELAY:
Alan Stern4c6e8972009-06-29 11:02:04 -04002101 snoop(&dev->dev, "%s: REAPURBNDELAY\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 ret = proc_reapurbnonblock(ps, p);
2103 break;
2104
2105 case USBDEVFS_DISCSIGNAL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002106 snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 ret = proc_disconnectsignal(ps, p);
2108 break;
2109
2110 case USBDEVFS_CLAIMINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002111 snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 ret = proc_claiminterface(ps, p);
2113 break;
2114
2115 case USBDEVFS_RELEASEINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002116 snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 ret = proc_releaseinterface(ps, p);
2118 break;
2119
2120 case USBDEVFS_IOCTL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002121 snoop(&dev->dev, "%s: IOCTL\n", __func__);
Pete Zaitcevc36fc882005-10-17 18:15:54 -07002122 ret = proc_ioctl_default(ps, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 break;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04002124
2125 case USBDEVFS_CLAIM_PORT:
2126 snoop(&dev->dev, "%s: CLAIM_PORT\n", __func__);
2127 ret = proc_claim_port(ps, p);
2128 break;
2129
2130 case USBDEVFS_RELEASE_PORT:
2131 snoop(&dev->dev, "%s: RELEASE_PORT\n", __func__);
2132 ret = proc_release_port(ps, p);
2133 break;
Hans de Goede19181bc2012-07-04 09:18:02 +02002134 case USBDEVFS_GET_CAPABILITIES:
2135 ret = proc_get_capabilities(ps, p);
2136 break;
Hans de Goede0837e7e2012-09-08 20:02:05 +02002137 case USBDEVFS_DISCONNECT_CLAIM:
2138 ret = proc_disconnect_claim(ps, p);
2139 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 }
2141 usb_unlock_device(dev);
2142 if (ret >= 0)
2143 inode->i_atime = CURRENT_TIME;
2144 return ret;
2145}
2146
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002147static long usbdev_ioctl(struct file *file, unsigned int cmd,
2148 unsigned long arg)
2149{
2150 int ret;
2151
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002152 ret = usbdev_do_ioctl(file, cmd, (void __user *)arg);
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002153
2154 return ret;
2155}
2156
2157#ifdef CONFIG_COMPAT
2158static long usbdev_compat_ioctl(struct file *file, unsigned int cmd,
2159 unsigned long arg)
2160{
2161 int ret;
2162
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002163 ret = usbdev_do_ioctl(file, cmd, compat_ptr(arg));
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002164
2165 return ret;
2166}
2167#endif
2168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169/* No kernel lock - fine */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08002170static unsigned int usbdev_poll(struct file *file,
2171 struct poll_table_struct *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
Tobias Klauserec17cf12006-09-13 21:38:41 +02002173 struct dev_state *ps = file->private_data;
2174 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176 poll_wait(file, &ps->wait, wait);
2177 if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
2178 mask |= POLLOUT | POLLWRNORM;
Alan Stern349710c2006-07-01 22:05:56 -04002179 if (!connected(ps))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 mask |= POLLERR | POLLHUP;
2181 return mask;
2182}
2183
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002184const struct file_operations usbdev_file_operations = {
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002185 .owner = THIS_MODULE,
2186 .llseek = usbdev_lseek,
2187 .read = usbdev_read,
2188 .poll = usbdev_poll,
2189 .unlocked_ioctl = usbdev_ioctl,
2190#ifdef CONFIG_COMPAT
2191 .compat_ioctl = usbdev_compat_ioctl,
2192#endif
2193 .open = usbdev_open,
2194 .release = usbdev_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195};
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002196
Alan Stern501950d2009-01-13 11:33:42 -05002197static void usbdev_remove(struct usb_device *udev)
Alan Sterncd9f0372008-06-24 14:47:04 -04002198{
2199 struct dev_state *ps;
2200 struct siginfo sinfo;
2201
2202 while (!list_empty(&udev->filelist)) {
2203 ps = list_entry(udev->filelist.next, struct dev_state, list);
2204 destroy_all_async(ps);
2205 wake_up_all(&ps->wait);
2206 list_del_init(&ps->list);
2207 if (ps->discsignr) {
2208 sinfo.si_signo = ps->discsignr;
2209 sinfo.si_errno = EPIPE;
2210 sinfo.si_code = SI_ASYNCIO;
2211 sinfo.si_addr = ps->disccontext;
Serge Hallynd178bc32011-09-26 10:45:18 -05002212 kill_pid_info_as_cred(ps->discsignr, &sinfo,
2213 ps->disc_pid, ps->cred, ps->secid);
Alan Sterncd9f0372008-06-24 14:47:04 -04002214 }
2215 }
2216}
2217
Alan Stern501950d2009-01-13 11:33:42 -05002218static int usbdev_notify(struct notifier_block *self,
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002219 unsigned long action, void *dev)
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002220{
2221 switch (action) {
2222 case USB_DEVICE_ADD:
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002223 break;
2224 case USB_DEVICE_REMOVE:
Alan Stern501950d2009-01-13 11:33:42 -05002225 usbdev_remove(dev);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002226 break;
2227 }
2228 return NOTIFY_OK;
2229}
2230
2231static struct notifier_block usbdev_nb = {
Alan Stern501950d2009-01-13 11:33:42 -05002232 .notifier_call = usbdev_notify,
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002233};
2234
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -07002235static struct cdev usb_device_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002236
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002237int __init usb_devio_init(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002238{
2239 int retval;
2240
Alan Sternfad21bd2005-08-10 15:15:57 -04002241 retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08002242 "usb_device");
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002243 if (retval) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07002244 printk(KERN_ERR "Unable to register minors for usb_device\n");
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002245 goto out;
2246 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002247 cdev_init(&usb_device_cdev, &usbdev_file_operations);
Alan Sternfad21bd2005-08-10 15:15:57 -04002248 retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002249 if (retval) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07002250 printk(KERN_ERR "Unable to get usb_device major %d\n",
2251 USB_DEVICE_MAJOR);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002252 goto error_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002253 }
Alan Stern501950d2009-01-13 11:33:42 -05002254 usb_register_notify(&usbdev_nb);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002255out:
2256 return retval;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002257
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002258error_cdev:
2259 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
2260 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002261}
2262
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002263void usb_devio_cleanup(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002264{
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002265 usb_unregister_notify(&usbdev_nb);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002266 cdev_del(&usb_device_cdev);
Alan Sternfad21bd2005-08-10 15:15:57 -04002267 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002268}