blob: ff669f92a1750c700010d6a85dd4404d61dabbef [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/uaccess.h>
51#include <asm/byteorder.h>
52#include <linux/moduleparam.h>
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "usb.h"
55
Kay Sieversfbf82fd2005-07-31 01:05:53 +020056#define USB_MAXBUS 64
57#define USB_DEVICE_MAX USB_MAXBUS * 128
Kay Sieversfbf82fd2005-07-31 01:05:53 +020058
Alan Stern4a2a8a22006-07-01 22:05:01 -040059/* Mutual exclusion for removal, open, and release */
60DEFINE_MUTEX(usbfs_mutex);
61
Alan Sterncd9f0372008-06-24 14:47:04 -040062struct dev_state {
63 struct list_head list; /* state list */
64 struct usb_device *dev;
65 struct file *file;
66 spinlock_t lock; /* protects the async urb lists */
67 struct list_head async_pending;
68 struct list_head async_completed;
69 wait_queue_head_t wait; /* wake up if a request completed */
70 unsigned int discsignr;
71 struct pid *disc_pid;
Serge Hallynd178bc32011-09-26 10:45:18 -050072 const struct cred *cred;
Alan Sterncd9f0372008-06-24 14:47:04 -040073 void __user *disccontext;
74 unsigned long ifclaimed;
75 u32 secid;
Alan Stern01c64602009-09-01 11:09:56 -040076 u32 disabled_bulk_eps;
Alan Sterncd9f0372008-06-24 14:47:04 -040077};
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079struct async {
80 struct list_head asynclist;
81 struct dev_state *ps;
Eric W. Biederman2425c082006-10-02 02:17:28 -070082 struct pid *pid;
Serge Hallynd178bc32011-09-26 10:45:18 -050083 const struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 unsigned int signr;
85 unsigned int ifnum;
86 void __user *userbuffer;
87 void __user *userurb;
88 struct urb *urb;
Alan Sternadd1aae2011-11-17 16:41:25 -050089 unsigned int mem_usage;
Alan Sterne0152682007-08-24 15:42:52 -040090 int status;
David Quigley7a019552006-06-30 01:55:48 -070091 u32 secid;
Alan Stern01c64602009-09-01 11:09:56 -040092 u8 bulk_addr;
93 u8 bulk_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094};
95
Rusty Russell90ab5ee2012-01-13 09:32:20 +103096static bool usbfs_snoop;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -080097module_param(usbfs_snoop, bool, S_IRUGO | S_IWUSR);
98MODULE_PARM_DESC(usbfs_snoop, "true to log all usbfs traffic");
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100#define snoop(dev, format, arg...) \
101 do { \
102 if (usbfs_snoop) \
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800103 dev_info(dev , format , ## arg); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 } while (0)
105
Alan Stern4c6e8972009-06-29 11:02:04 -0400106enum snoop_when {
107 SUBMIT, COMPLETE
108};
109
Alan Sternfad21bd2005-08-10 15:15:57 -0400110#define USB_DEVICE_DEV MKDEV(USB_DEVICE_MAJOR, 0)
111
Alan Sternadd1aae2011-11-17 16:41:25 -0500112/* Limit on the total amount of memory we can allocate for transfers */
Alan Stern3f5eb8d2011-11-17 16:41:35 -0500113static unsigned usbfs_memory_mb = 16;
114module_param(usbfs_memory_mb, uint, 0644);
115MODULE_PARM_DESC(usbfs_memory_mb,
116 "maximum MB allowed for usbfs buffers (0 = no limit)");
117
118/* Hard limit, necessary to avoid aithmetic overflow */
119#define USBFS_XFER_MAX (UINT_MAX / 2 - 1000000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Alan Sternadd1aae2011-11-17 16:41:25 -0500121static atomic_t usbfs_memory_usage; /* Total memory currently allocated */
122
123/* Check whether it's okay to allocate more memory for a transfer */
124static int usbfs_increase_memory_usage(unsigned amount)
125{
Alan Stern3f5eb8d2011-11-17 16:41:35 -0500126 unsigned lim;
127
128 /*
129 * Convert usbfs_memory_mb to bytes, avoiding overflows.
130 * 0 means use the hard limit (effectively unlimited).
131 */
132 lim = ACCESS_ONCE(usbfs_memory_mb);
133 if (lim == 0 || lim > (USBFS_XFER_MAX >> 20))
134 lim = USBFS_XFER_MAX;
135 else
136 lim <<= 20;
137
Alan Sternadd1aae2011-11-17 16:41:25 -0500138 atomic_add(amount, &usbfs_memory_usage);
Alan Stern3f5eb8d2011-11-17 16:41:35 -0500139 if (atomic_read(&usbfs_memory_usage) <= lim)
Alan Sternadd1aae2011-11-17 16:41:25 -0500140 return 0;
141 atomic_sub(amount, &usbfs_memory_usage);
142 return -ENOMEM;
143}
144
145/* Memory for a transfer is being deallocated */
146static void usbfs_decrease_memory_usage(unsigned amount)
147{
148 atomic_sub(amount, &usbfs_memory_usage);
149}
Alan Stern4c6e8972009-06-29 11:02:04 -0400150
Alan Sternd34d9722009-03-09 13:44:48 -0400151static int connected(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Alan Stern349710c2006-07-01 22:05:56 -0400153 return (!list_empty(&ps->list) &&
154 ps->dev->state != USB_STATE_NOTATTACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
157static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig)
158{
159 loff_t ret;
160
Oliver Neukumf9de3322010-01-13 15:32:21 +0100161 mutex_lock(&file->f_dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 switch (orig) {
164 case 0:
165 file->f_pos = offset;
166 ret = file->f_pos;
167 break;
168 case 1:
169 file->f_pos += offset;
170 ret = file->f_pos;
171 break;
172 case 2:
173 default:
174 ret = -EINVAL;
175 }
176
Oliver Neukumf9de3322010-01-13 15:32:21 +0100177 mutex_unlock(&file->f_dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return ret;
179}
180
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800181static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
182 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200184 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 struct usb_device *dev = ps->dev;
186 ssize_t ret = 0;
187 unsigned len;
188 loff_t pos;
189 int i;
190
191 pos = *ppos;
192 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -0400193 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 ret = -ENODEV;
195 goto err;
196 } else if (pos < 0) {
197 ret = -EINVAL;
198 goto err;
199 }
200
201 if (pos < sizeof(struct usb_device_descriptor)) {
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800202 /* 18 bytes - fits on the stack */
203 struct usb_device_descriptor temp_desc;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100204
205 memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
Andrew Morton9fcd5c32006-01-18 23:55:07 -0800206 le16_to_cpus(&temp_desc.bcdUSB);
207 le16_to_cpus(&temp_desc.idVendor);
208 le16_to_cpus(&temp_desc.idProduct);
209 le16_to_cpus(&temp_desc.bcdDevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 len = sizeof(struct usb_device_descriptor) - pos;
212 if (len > nbytes)
213 len = nbytes;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100214 if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 ret = -EFAULT;
216 goto err;
217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 *ppos += len;
220 buf += len;
221 nbytes -= len;
222 ret += len;
223 }
224
225 pos = sizeof(struct usb_device_descriptor);
226 for (i = 0; nbytes && i < dev->descriptor.bNumConfigurations; i++) {
227 struct usb_config_descriptor *config =
228 (struct usb_config_descriptor *)dev->rawdescriptors[i];
229 unsigned int length = le16_to_cpu(config->wTotalLength);
230
231 if (*ppos < pos + length) {
232
233 /* The descriptor may claim to be longer than it
234 * really is. Here is the actual allocated length. */
235 unsigned alloclen =
236 le16_to_cpu(dev->config[i].desc.wTotalLength);
237
238 len = length - (*ppos - pos);
239 if (len > nbytes)
240 len = nbytes;
241
242 /* Simply don't write (skip over) unallocated parts */
243 if (alloclen > (*ppos - pos)) {
244 alloclen -= (*ppos - pos);
245 if (copy_to_user(buf,
246 dev->rawdescriptors[i] + (*ppos - pos),
247 min(len, alloclen))) {
248 ret = -EFAULT;
249 goto err;
250 }
251 }
252
253 *ppos += len;
254 buf += len;
255 nbytes -= len;
256 ret += len;
257 }
258
259 pos += length;
260 }
261
262err:
263 usb_unlock_device(dev);
264 return ret;
265}
266
267/*
268 * async list handling
269 */
270
271static struct async *alloc_async(unsigned int numisoframes)
272{
Pete Zaitcevdd95b812008-01-05 02:01:07 -0800273 struct async *as;
Alan Stern0a1ef3b2005-10-24 15:38:24 -0400274
Pete Zaitcevdd95b812008-01-05 02:01:07 -0800275 as = kzalloc(sizeof(struct async), GFP_KERNEL);
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800276 if (!as)
277 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
279 if (!as->urb) {
280 kfree(as);
281 return NULL;
282 }
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800283 return as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286static void free_async(struct async *as)
287{
Eric W. Biederman2425c082006-10-02 02:17:28 -0700288 put_pid(as->pid);
Sarah Sharp1b41c832011-12-16 11:26:30 -0800289 if (as->cred)
290 put_cred(as->cred);
Jesper Juhl6fd19f42005-04-18 17:39:33 -0700291 kfree(as->urb->transfer_buffer);
292 kfree(as->urb->setup_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 usb_free_urb(as->urb);
Alan Sternadd1aae2011-11-17 16:41:25 -0500294 usbfs_decrease_memory_usage(as->mem_usage);
Jesper Juhl6fd19f42005-04-18 17:39:33 -0700295 kfree(as);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Alan Sternd34d9722009-03-09 13:44:48 -0400298static void async_newpending(struct async *as)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800300 struct dev_state *ps = as->ps;
301 unsigned long flags;
302
303 spin_lock_irqsave(&ps->lock, flags);
304 list_add_tail(&as->asynclist, &ps->async_pending);
305 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Alan Sternd34d9722009-03-09 13:44:48 -0400308static void async_removepending(struct async *as)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800310 struct dev_state *ps = as->ps;
311 unsigned long flags;
312
313 spin_lock_irqsave(&ps->lock, flags);
314 list_del_init(&as->asynclist);
315 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Alan Sternd34d9722009-03-09 13:44:48 -0400318static struct async *async_getcompleted(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800320 unsigned long flags;
321 struct async *as = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800323 spin_lock_irqsave(&ps->lock, flags);
324 if (!list_empty(&ps->async_completed)) {
325 as = list_entry(ps->async_completed.next, struct async,
326 asynclist);
327 list_del_init(&as->asynclist);
328 }
329 spin_unlock_irqrestore(&ps->lock, flags);
330 return as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Alan Sternd34d9722009-03-09 13:44:48 -0400333static struct async *async_getpending(struct dev_state *ps,
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800334 void __user *userurb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800336 struct async *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 list_for_each_entry(as, &ps->async_pending, asynclist)
339 if (as->userurb == userurb) {
340 list_del_init(&as->asynclist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return as;
342 }
Huajun Lida223282012-05-18 20:12:51 +0800343
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800344 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Alan Stern4c6e8972009-06-29 11:02:04 -0400347static void snoop_urb(struct usb_device *udev,
348 void __user *userurb, int pipe, unsigned length,
Chris Frey0880aef2010-01-26 17:07:29 -0500349 int timeout_or_status, enum snoop_when when,
350 unsigned char *data, unsigned data_len)
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700351{
Alan Stern4c6e8972009-06-29 11:02:04 -0400352 static const char *types[] = {"isoc", "int", "ctrl", "bulk"};
353 static const char *dirs[] = {"out", "in"};
354 int ep;
355 const char *t, *d;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700356
357 if (!usbfs_snoop)
358 return;
359
Alan Stern4c6e8972009-06-29 11:02:04 -0400360 ep = usb_pipeendpoint(pipe);
361 t = types[usb_pipetype(pipe)];
362 d = dirs[!!usb_pipein(pipe)];
363
364 if (userurb) { /* Async */
365 if (when == SUBMIT)
Manu Gautamaa3f1082017-02-24 15:22:40 +0530366 dev_info(&udev->dev, "userurb %pK, ep%d %s-%s, "
Alan Stern4c6e8972009-06-29 11:02:04 -0400367 "length %u\n",
368 userurb, ep, t, d, length);
369 else
Manu Gautamaa3f1082017-02-24 15:22:40 +0530370 dev_info(&udev->dev, "userurb %pK, ep%d %s-%s, "
Alan Stern4c6e8972009-06-29 11:02:04 -0400371 "actual_length %u status %d\n",
372 userurb, ep, t, d, length,
373 timeout_or_status);
374 } else {
375 if (when == SUBMIT)
376 dev_info(&udev->dev, "ep%d %s-%s, length %u, "
377 "timeout %d\n",
378 ep, t, d, length, timeout_or_status);
379 else
380 dev_info(&udev->dev, "ep%d %s-%s, actual_length %u, "
381 "status %d\n",
382 ep, t, d, length, timeout_or_status);
383 }
Chris Frey0880aef2010-01-26 17:07:29 -0500384
385 if (data && data_len > 0) {
386 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
387 data, data_len, 1);
388 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700389}
390
Alan Stern01c64602009-09-01 11:09:56 -0400391#define AS_CONTINUATION 1
392#define AS_UNLINK 2
393
394static void cancel_bulk_urbs(struct dev_state *ps, unsigned bulk_addr)
395__releases(ps->lock)
396__acquires(ps->lock)
397{
Huajun Lida223282012-05-18 20:12:51 +0800398 struct urb *urb;
Alan Stern01c64602009-09-01 11:09:56 -0400399 struct async *as;
400
401 /* Mark all the pending URBs that match bulk_addr, up to but not
402 * including the first one without AS_CONTINUATION. If such an
403 * URB is encountered then a new transfer has already started so
404 * the endpoint doesn't need to be disabled; otherwise it does.
405 */
406 list_for_each_entry(as, &ps->async_pending, asynclist) {
407 if (as->bulk_addr == bulk_addr) {
408 if (as->bulk_status != AS_CONTINUATION)
409 goto rescan;
410 as->bulk_status = AS_UNLINK;
411 as->bulk_addr = 0;
412 }
413 }
414 ps->disabled_bulk_eps |= (1 << bulk_addr);
415
416 /* Now carefully unlink all the marked pending URBs */
417 rescan:
418 list_for_each_entry(as, &ps->async_pending, asynclist) {
419 if (as->bulk_status == AS_UNLINK) {
420 as->bulk_status = 0; /* Only once */
Huajun Lida223282012-05-18 20:12:51 +0800421 urb = as->urb;
422 usb_get_urb(urb);
Alan Stern01c64602009-09-01 11:09:56 -0400423 spin_unlock(&ps->lock); /* Allow completions */
Huajun Lida223282012-05-18 20:12:51 +0800424 usb_unlink_urb(urb);
425 usb_put_urb(urb);
Alan Stern01c64602009-09-01 11:09:56 -0400426 spin_lock(&ps->lock);
427 goto rescan;
428 }
429 }
430}
431
David Howells7d12e782006-10-05 14:55:46 +0100432static void async_completed(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800434 struct async *as = urb->context;
435 struct dev_state *ps = as->ps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 struct siginfo sinfo;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200437 struct pid *pid = NULL;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200438 u32 secid = 0;
Serge Hallynd178bc32011-09-26 10:45:18 -0500439 const struct cred *cred = NULL;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200440 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800442 spin_lock(&ps->lock);
443 list_move_tail(&as->asynclist, &ps->async_completed);
Alan Sterne0152682007-08-24 15:42:52 -0400444 as->status = urb->status;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200445 signr = as->signr;
446 if (signr) {
Alan Stern692773552015-02-13 10:54:53 -0500447 memset(&sinfo, 0, sizeof(sinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 sinfo.si_signo = as->signr;
Alan Sterne0152682007-08-24 15:42:52 -0400449 sinfo.si_errno = as->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 sinfo.si_code = SI_ASYNCIO;
451 sinfo.si_addr = as->userurb;
Serge Hallynaec01c52011-09-26 10:18:29 -0500452 pid = get_pid(as->pid);
Serge Hallynd178bc32011-09-26 10:45:18 -0500453 cred = get_cred(as->cred);
Oliver Neukum516a1a02009-07-08 19:09:23 +0200454 secid = as->secid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700456 snoop(&urb->dev->dev, "urb complete\n");
Alan Stern4c6e8972009-06-29 11:02:04 -0400457 snoop_urb(urb->dev, as->userurb, urb->pipe, urb->actual_length,
Chris Frey0880aef2010-01-26 17:07:29 -0500458 as->status, COMPLETE,
459 ((urb->transfer_flags & URB_DIR_MASK) == USB_DIR_OUT) ?
460 NULL : urb->transfer_buffer, urb->actual_length);
Alan Stern01c64602009-09-01 11:09:56 -0400461 if (as->status < 0 && as->bulk_addr && as->status != -ECONNRESET &&
462 as->status != -ENOENT)
463 cancel_bulk_urbs(ps, as->bulk_addr);
Oliver Neukum516a1a02009-07-08 19:09:23 +0200464 spin_unlock(&ps->lock);
465
Serge Hallynaec01c52011-09-26 10:18:29 -0500466 if (signr) {
Serge Hallynd178bc32011-09-26 10:45:18 -0500467 kill_pid_info_as_cred(sinfo.si_signo, &sinfo, pid, cred, secid);
Serge Hallynaec01c52011-09-26 10:18:29 -0500468 put_pid(pid);
Serge Hallynd178bc32011-09-26 10:45:18 -0500469 put_cred(cred);
Serge Hallynaec01c52011-09-26 10:18:29 -0500470 }
Oliver Neukum516a1a02009-07-08 19:09:23 +0200471
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700472 wake_up(&ps->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800475static void destroy_async(struct dev_state *ps, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Huajun Lida223282012-05-18 20:12:51 +0800477 struct urb *urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 struct async *as;
479 unsigned long flags;
480
481 spin_lock_irqsave(&ps->lock, flags);
482 while (!list_empty(list)) {
483 as = list_entry(list->next, struct async, asynclist);
484 list_del_init(&as->asynclist);
Huajun Lida223282012-05-18 20:12:51 +0800485 urb = as->urb;
486 usb_get_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 /* drop the spinlock so the completion handler can run */
489 spin_unlock_irqrestore(&ps->lock, flags);
Huajun Lida223282012-05-18 20:12:51 +0800490 usb_kill_urb(urb);
491 usb_put_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 spin_lock_irqsave(&ps->lock, flags);
493 }
494 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800497static void destroy_async_on_interface(struct dev_state *ps,
498 unsigned int ifnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct list_head *p, *q, hitlist;
501 unsigned long flags;
502
503 INIT_LIST_HEAD(&hitlist);
504 spin_lock_irqsave(&ps->lock, flags);
505 list_for_each_safe(p, q, &ps->async_pending)
506 if (ifnum == list_entry(p, struct async, asynclist)->ifnum)
507 list_move_tail(p, &hitlist);
508 spin_unlock_irqrestore(&ps->lock, flags);
509 destroy_async(ps, &hitlist);
510}
511
Alan Sternd34d9722009-03-09 13:44:48 -0400512static void destroy_all_async(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800514 destroy_async(ps, &ps->async_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
517/*
518 * interface claims are made only at the request of user level code,
519 * which can also release them (explicitly or by closing files).
520 * they're also undone when devices disconnect.
521 */
522
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800523static int driver_probe(struct usb_interface *intf,
524 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 return -ENODEV;
527}
528
529static void driver_disconnect(struct usb_interface *intf)
530{
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800531 struct dev_state *ps = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 unsigned int ifnum = intf->altsetting->desc.bInterfaceNumber;
533
534 if (!ps)
535 return;
536
537 /* NOTE: this relies on usbcore having canceled and completed
538 * all pending I/O requests; 2.6 does that.
539 */
540
541 if (likely(ifnum < 8*sizeof(ps->ifclaimed)))
542 clear_bit(ifnum, &ps->ifclaimed);
543 else
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700544 dev_warn(&intf->dev, "interface number %u out of range\n",
545 ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800547 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 /* force async requests to complete */
550 destroy_async_on_interface(ps, ifnum);
551}
552
Alan Stern2e2eb832007-12-04 14:35:15 -0500553/* The following routines are merely placeholders. There is no way
554 * to inform a user task about suspend or resumes.
555 */
556static int driver_suspend(struct usb_interface *intf, pm_message_t msg)
557{
558 return 0;
559}
560
561static int driver_resume(struct usb_interface *intf)
562{
563 return 0;
564}
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566struct usb_driver usbfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 .name = "usbfs",
568 .probe = driver_probe,
569 .disconnect = driver_disconnect,
Alan Stern2e2eb832007-12-04 14:35:15 -0500570 .suspend = driver_suspend,
571 .resume = driver_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572};
573
574static int claimintf(struct dev_state *ps, unsigned int ifnum)
575{
576 struct usb_device *dev = ps->dev;
577 struct usb_interface *intf;
578 int err;
579
580 if (ifnum >= 8*sizeof(ps->ifclaimed))
581 return -EINVAL;
582 /* already claimed */
583 if (test_bit(ifnum, &ps->ifclaimed))
584 return 0;
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 intf = usb_ifnum_to_if(dev, ifnum);
587 if (!intf)
588 err = -ENOENT;
589 else
590 err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (err == 0)
592 set_bit(ifnum, &ps->ifclaimed);
593 return err;
594}
595
596static int releaseintf(struct dev_state *ps, unsigned int ifnum)
597{
598 struct usb_device *dev;
599 struct usb_interface *intf;
600 int err;
601
602 err = -EINVAL;
603 if (ifnum >= 8*sizeof(ps->ifclaimed))
604 return err;
605 dev = ps->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 intf = usb_ifnum_to_if(dev, ifnum);
607 if (!intf)
608 err = -ENOENT;
609 else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
610 usb_driver_release_interface(&usbfs_driver, intf);
611 err = 0;
612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return err;
614}
615
616static int checkintf(struct dev_state *ps, unsigned int ifnum)
617{
618 if (ps->dev->state != USB_STATE_CONFIGURED)
619 return -EHOSTUNREACH;
620 if (ifnum >= 8*sizeof(ps->ifclaimed))
621 return -EINVAL;
622 if (test_bit(ifnum, &ps->ifclaimed))
623 return 0;
624 /* if not yet claimed, claim it for the driver */
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800625 dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
626 "interface %u before use\n", task_pid_nr(current),
627 current->comm, ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return claimintf(ps, ifnum);
629}
630
631static int findintfep(struct usb_device *dev, unsigned int ep)
632{
633 unsigned int i, j, e;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800634 struct usb_interface *intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 struct usb_host_interface *alts;
636 struct usb_endpoint_descriptor *endpt;
637
638 if (ep & ~(USB_DIR_IN|0xf))
639 return -EINVAL;
640 if (!dev->actconfig)
641 return -ESRCH;
642 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
643 intf = dev->actconfig->interface[i];
644 for (j = 0; j < intf->num_altsetting; j++) {
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800645 alts = &intf->altsetting[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 for (e = 0; e < alts->desc.bNumEndpoints; e++) {
647 endpt = &alts->endpoint[e].desc;
648 if (endpt->bEndpointAddress == ep)
649 return alts->desc.bInterfaceNumber;
650 }
651 }
652 }
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800653 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800656static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype,
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200657 unsigned int request, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
659 int ret = 0;
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200660 struct usb_host_interface *alt_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
David Vrabel6da9c992009-02-18 14:43:47 +0000662 if (ps->dev->state != USB_STATE_UNAUTHENTICATED
663 && ps->dev->state != USB_STATE_ADDRESS
Horst Schirmeier24f8b112006-03-11 00:16:55 -0800664 && ps->dev->state != USB_STATE_CONFIGURED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return -EHOSTUNREACH;
666 if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
667 return 0;
668
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200669 /*
670 * check for the special corner case 'get_device_id' in the printer
671 * class specification, where wIndex is (interface << 8 | altsetting)
672 * instead of just interface
673 */
674 if (requesttype == 0xa1 && request == 0) {
675 alt_setting = usb_find_alt_setting(ps->dev->actconfig,
676 index >> 8, index & 0xff);
677 if (alt_setting
678 && alt_setting->desc.bInterfaceClass == USB_CLASS_PRINTER)
679 index >>= 8;
680 }
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 index &= 0xff;
683 switch (requesttype & USB_RECIP_MASK) {
684 case USB_RECIP_ENDPOINT:
Hans de Goedeb1b11d82013-04-16 11:08:33 +0200685 if ((index & ~USB_DIR_IN) == 0)
686 return 0;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800687 ret = findintfep(ps->dev, index);
Kurt Garlofff649e162013-09-24 14:13:48 +0200688 if (ret < 0) {
689 /*
690 * Some not fully compliant Win apps seem to get
691 * index wrong and have the endpoint number here
692 * rather than the endpoint address (with the
693 * correct direction). Win does let this through,
694 * so we'll not reject it here but leave it to
695 * the device to not break KVM. But we warn.
696 */
697 ret = findintfep(ps->dev, index ^ 0x80);
698 if (ret >= 0)
699 dev_info(&ps->dev->dev,
700 "%s: process %i (%s) requesting ep %02x but needs %02x\n",
701 __func__, task_pid_nr(current),
702 current->comm, index, index ^ 0x80);
703 }
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800704 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 ret = checkintf(ps, ret);
706 break;
707
708 case USB_RECIP_INTERFACE:
709 ret = checkintf(ps, index);
710 break;
711 }
712 return ret;
713}
714
Alan Stern61ad04a2008-06-24 14:47:12 -0400715static int match_devt(struct device *dev, void *data)
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700716{
David Howellsa80d5ff2008-07-02 12:28:55 +0100717 return dev->devt == (dev_t) (unsigned long) data;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100718}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700719
Alan Stern61ad04a2008-06-24 14:47:12 -0400720static struct usb_device *usbdev_lookup_by_devt(dev_t devt)
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100721{
722 struct device *dev;
723
David Howellsa80d5ff2008-07-02 12:28:55 +0100724 dev = bus_find_device(&usb_bus_type, NULL,
725 (void *) (unsigned long) devt, match_devt);
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100726 if (!dev)
727 return NULL;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100728 return container_of(dev, struct usb_device, dev);
729}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731/*
732 * file operations
733 */
734static int usbdev_open(struct inode *inode, struct file *file)
735{
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200736 struct usb_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 struct dev_state *ps;
738 int ret;
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 ret = -ENOMEM;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800741 ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
742 if (!ps)
Alan Stern62e299e2010-01-08 12:56:19 -0500743 goto out_free_ps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Alan Stern01105a22009-07-30 15:28:14 -0400745 ret = -ENODEV;
Alan Stern61ad04a2008-06-24 14:47:12 -0400746
Alan Stern62e299e2010-01-08 12:56:19 -0500747 /* Protect against simultaneous removal or release */
748 mutex_lock(&usbfs_mutex);
749
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100750 /* usbdev device-node */
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200751 if (imajor(inode) == USB_DEVICE_MAJOR)
Alan Stern61ad04a2008-06-24 14:47:12 -0400752 dev = usbdev_lookup_by_devt(inode->i_rdev);
Alan Stern62e299e2010-01-08 12:56:19 -0500753
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100754#ifdef CONFIG_USB_DEVICEFS
755 /* procfs file */
Alan Sternd64aac32008-06-24 14:47:19 -0400756 if (!dev) {
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700757 dev = inode->i_private;
Alan Sternd64aac32008-06-24 14:47:19 -0400758 if (dev && dev->usbfs_dentry &&
759 dev->usbfs_dentry->d_inode == inode)
760 usb_get_dev(dev);
761 else
762 dev = NULL;
763 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100764#endif
Alan Stern62e299e2010-01-08 12:56:19 -0500765 mutex_unlock(&usbfs_mutex);
766
767 if (!dev)
768 goto out_free_ps;
769
770 usb_lock_device(dev);
771 if (dev->state == USB_STATE_NOTATTACHED)
772 goto out_unlock_device;
773
Alan Stern94fcda12006-11-20 11:38:46 -0500774 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -0400775 if (ret)
Alan Stern62e299e2010-01-08 12:56:19 -0500776 goto out_unlock_device;
Alan Stern01d883d2006-08-30 15:47:18 -0400777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 ps->dev = dev;
779 ps->file = file;
780 spin_lock_init(&ps->lock);
Dan Carpenter316547f2006-12-13 00:03:38 -0800781 INIT_LIST_HEAD(&ps->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 INIT_LIST_HEAD(&ps->async_pending);
783 INIT_LIST_HEAD(&ps->async_completed);
784 init_waitqueue_head(&ps->wait);
785 ps->discsignr = 0;
Eric W. Biederman2425c082006-10-02 02:17:28 -0700786 ps->disc_pid = get_pid(task_pid(current));
Serge Hallynd178bc32011-09-26 10:45:18 -0500787 ps->cred = get_current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 ps->disccontext = NULL;
789 ps->ifclaimed = 0;
David Quigley7a019552006-06-30 01:55:48 -0700790 security_task_getsecid(current, &ps->secid);
Oliver Neukum527660a2007-04-20 20:50:48 +0200791 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 list_add_tail(&ps->list, &dev->filelist);
793 file->private_data = ps;
Alan Stern62e299e2010-01-08 12:56:19 -0500794 usb_unlock_device(dev);
Alan Stern2da41d5f2008-10-06 11:24:26 -0400795 snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
796 current->comm);
Alan Stern62e299e2010-01-08 12:56:19 -0500797 return ret;
798
799 out_unlock_device:
800 usb_unlock_device(dev);
801 usb_put_dev(dev);
802 out_free_ps:
803 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400804 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
807static int usbdev_release(struct inode *inode, struct file *file)
808{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200809 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 struct usb_device *dev = ps->dev;
811 unsigned int ifnum;
Alan Stern6ff10462009-03-09 13:44:02 -0400812 struct async *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 usb_lock_device(dev);
Alan Stern7cbe5dc2009-06-29 10:56:54 -0400815 usb_hub_release_all_ports(dev, ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 list_del_init(&ps->list);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
820 ifnum++) {
821 if (test_bit(ifnum, &ps->ifclaimed))
822 releaseintf(ps, ifnum);
823 }
824 destroy_all_async(ps);
Alan Stern94fcda12006-11-20 11:38:46 -0500825 usb_autosuspend_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 usb_unlock_device(dev);
827 usb_put_dev(dev);
Eric W. Biederman2425c082006-10-02 02:17:28 -0700828 put_pid(ps->disc_pid);
Serge Hallynd178bc32011-09-26 10:45:18 -0500829 put_cred(ps->cred);
Alan Stern6ff10462009-03-09 13:44:02 -0400830
831 as = async_getcompleted(ps);
832 while (as) {
833 free_async(as);
834 as = async_getcompleted(ps);
835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400837 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
840static int proc_control(struct dev_state *ps, void __user *arg)
841{
842 struct usb_device *dev = ps->dev;
843 struct usbdevfs_ctrltransfer ctrl;
844 unsigned int tmo;
845 unsigned char *tbuf;
Andrew Mortonff66e3c2008-03-12 13:32:24 -0700846 unsigned wLength;
Alan Stern4c6e8972009-06-29 11:02:04 -0400847 int i, pipe, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
850 return -EFAULT;
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200851 ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.bRequest,
852 ctrl.wIndex);
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800853 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return ret;
Andrew Mortonff66e3c2008-03-12 13:32:24 -0700855 wLength = ctrl.wLength; /* To suppress 64k PAGE_SIZE warning */
856 if (wLength > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 return -EINVAL;
Alan Sternadd1aae2011-11-17 16:41:25 -0500858 ret = usbfs_increase_memory_usage(PAGE_SIZE + sizeof(struct urb) +
859 sizeof(struct usb_ctrlrequest));
860 if (ret)
861 return ret;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800862 tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
Alan Sternadd1aae2011-11-17 16:41:25 -0500863 if (!tbuf) {
864 ret = -ENOMEM;
865 goto done;
866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 tmo = ctrl.timeout;
Chris Frey0880aef2010-01-26 17:07:29 -0500868 snoop(&dev->dev, "control urb: bRequestType=%02x "
869 "bRequest=%02x wValue=%04x "
870 "wIndex=%04x wLength=%04x\n",
871 ctrl.bRequestType, ctrl.bRequest,
872 __le16_to_cpup(&ctrl.wValue),
873 __le16_to_cpup(&ctrl.wIndex),
874 __le16_to_cpup(&ctrl.wLength));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (ctrl.bRequestType & 0x80) {
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800876 if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
877 ctrl.wLength)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500878 ret = -EINVAL;
879 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
Alan Stern4c6e8972009-06-29 11:02:04 -0400881 pipe = usb_rcvctrlpipe(dev, 0);
Chris Frey0880aef2010-01-26 17:07:29 -0500882 snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 usb_unlock_device(dev);
Alan Stern4c6e8972009-06-29 11:02:04 -0400885 i = usb_control_msg(dev, pipe, ctrl.bRequest,
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800886 ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
887 tbuf, ctrl.wLength, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -0500889 snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE,
Michal Sojka9d02b422011-03-15 16:41:47 +0100890 tbuf, max(i, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if ((i > 0) && ctrl.wLength) {
Alan Sternfe0410c2005-07-29 12:16:58 -0700892 if (copy_to_user(ctrl.data, tbuf, i)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500893 ret = -EFAULT;
894 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896 }
897 } else {
898 if (ctrl.wLength) {
899 if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500900 ret = -EFAULT;
901 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
903 }
Alan Stern4c6e8972009-06-29 11:02:04 -0400904 pipe = usb_sndctrlpipe(dev, 0);
Chris Frey0880aef2010-01-26 17:07:29 -0500905 snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT,
906 tbuf, ctrl.wLength);
Alan Stern4c6e8972009-06-29 11:02:04 -0400907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 usb_unlock_device(dev);
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800909 i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
910 ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
911 tbuf, ctrl.wLength, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -0500913 snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800915 if (i < 0 && i != -EPIPE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
917 "failed cmd %s rqt %u rq %u len %u ret %d\n",
918 current->comm, ctrl.bRequestType, ctrl.bRequest,
919 ctrl.wLength, i);
920 }
Alan Stern52fb7432011-11-17 16:41:14 -0500921 ret = i;
922 done:
923 free_page((unsigned long) tbuf);
Alan Sternadd1aae2011-11-17 16:41:25 -0500924 usbfs_decrease_memory_usage(PAGE_SIZE + sizeof(struct urb) +
925 sizeof(struct usb_ctrlrequest));
Alan Stern52fb7432011-11-17 16:41:14 -0500926 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
929static int proc_bulk(struct dev_state *ps, void __user *arg)
930{
931 struct usb_device *dev = ps->dev;
932 struct usbdevfs_bulktransfer bulk;
933 unsigned int tmo, len1, pipe;
934 int len2;
935 unsigned char *tbuf;
Alan Stern4c6e8972009-06-29 11:02:04 -0400936 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 if (copy_from_user(&bulk, arg, sizeof(bulk)))
939 return -EFAULT;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800940 ret = findintfep(ps->dev, bulk.ep);
941 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 return ret;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -0800943 ret = checkintf(ps, ret);
944 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return ret;
946 if (bulk.ep & USB_DIR_IN)
947 pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
948 else
949 pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
950 if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
951 return -EINVAL;
952 len1 = bulk.len;
Alan Stern3f5eb8d2011-11-17 16:41:35 -0500953 if (len1 >= USBFS_XFER_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return -EINVAL;
Alan Sternadd1aae2011-11-17 16:41:25 -0500955 ret = usbfs_increase_memory_usage(len1 + sizeof(struct urb));
956 if (ret)
957 return ret;
958 if (!(tbuf = kmalloc(len1, GFP_KERNEL))) {
959 ret = -ENOMEM;
960 goto done;
961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 tmo = bulk.timeout;
963 if (bulk.ep & 0x80) {
964 if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500965 ret = -EINVAL;
966 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
Chris Frey0880aef2010-01-26 17:07:29 -0500968 snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, NULL, 0);
Alan Stern4c6e8972009-06-29 11:02:04 -0400969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 usb_unlock_device(dev);
971 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
972 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -0500973 snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, tbuf, len2);
Alan Stern4c6e8972009-06-29 11:02:04 -0400974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (!i && len2) {
976 if (copy_to_user(bulk.data, tbuf, len2)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500977 ret = -EFAULT;
978 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980 }
981 } else {
982 if (len1) {
983 if (copy_from_user(tbuf, bulk.data, len1)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500984 ret = -EFAULT;
985 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 }
Chris Frey0880aef2010-01-26 17:07:29 -0500988 snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, tbuf, len1);
Alan Stern4c6e8972009-06-29 11:02:04 -0400989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 usb_unlock_device(dev);
991 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
992 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -0500993 snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Alan Stern52fb7432011-11-17 16:41:14 -0500995 ret = (i < 0 ? i : len2);
996 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 kfree(tbuf);
Alan Sternadd1aae2011-11-17 16:41:25 -0500998 usbfs_decrease_memory_usage(len1 + sizeof(struct urb));
Alan Stern52fb7432011-11-17 16:41:14 -0500999 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
1002static int proc_resetep(struct dev_state *ps, void __user *arg)
1003{
1004 unsigned int ep;
1005 int ret;
1006
1007 if (get_user(ep, (unsigned int __user *)arg))
1008 return -EFAULT;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001009 ret = findintfep(ps->dev, ep);
1010 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return ret;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001012 ret = checkintf(ps, ret);
1013 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return ret;
David Vrabel3444b262009-04-08 17:36:28 +00001015 usb_reset_endpoint(ps->dev, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return 0;
1017}
1018
1019static int proc_clearhalt(struct dev_state *ps, void __user *arg)
1020{
1021 unsigned int ep;
1022 int pipe;
1023 int ret;
1024
1025 if (get_user(ep, (unsigned int __user *)arg))
1026 return -EFAULT;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001027 ret = findintfep(ps->dev, ep);
1028 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return ret;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001030 ret = checkintf(ps, ret);
1031 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 return ret;
1033 if (ep & USB_DIR_IN)
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001034 pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
1035 else
1036 pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 return usb_clear_halt(ps->dev, pipe);
1039}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041static int proc_getdriver(struct dev_state *ps, void __user *arg)
1042{
1043 struct usbdevfs_getdriver gd;
1044 struct usb_interface *intf;
1045 int ret;
1046
1047 if (copy_from_user(&gd, arg, sizeof(gd)))
1048 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 intf = usb_ifnum_to_if(ps->dev, gd.interface);
1050 if (!intf || !intf->dev.driver)
1051 ret = -ENODATA;
1052 else {
1053 strncpy(gd.driver, intf->dev.driver->name,
1054 sizeof(gd.driver));
1055 ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
1056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return ret;
1058}
1059
1060static int proc_connectinfo(struct dev_state *ps, void __user *arg)
1061{
Kangjie Luc216a1c2016-07-19 13:39:29 +05301062 struct usbdevfs_connectinfo ci;
1063
1064 memset(&ci, 0, sizeof(ci));
1065 ci.devnum = ps->dev->devnum;
1066 ci.slow = ps->dev->speed == USB_SPEED_LOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (copy_to_user(arg, &ci, sizeof(ci)))
1069 return -EFAULT;
1070 return 0;
1071}
1072
1073static int proc_resetdevice(struct dev_state *ps)
1074{
Ming Lei742120c2008-06-18 22:00:29 +08001075 return usb_reset_device(ps->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
1078static int proc_setintf(struct dev_state *ps, void __user *arg)
1079{
1080 struct usbdevfs_setinterface setintf;
1081 int ret;
1082
1083 if (copy_from_user(&setintf, arg, sizeof(setintf)))
1084 return -EFAULT;
1085 if ((ret = checkintf(ps, setintf.interface)))
1086 return ret;
1087 return usb_set_interface(ps->dev, setintf.interface,
1088 setintf.altsetting);
1089}
1090
1091static int proc_setconfig(struct dev_state *ps, void __user *arg)
1092{
Alan Stern3f141e22007-02-08 16:40:43 -05001093 int u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 int status = 0;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001095 struct usb_host_config *actconfig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Alan Stern3f141e22007-02-08 16:40:43 -05001097 if (get_user(u, (int __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return -EFAULT;
1099
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001100 actconfig = ps->dev->actconfig;
1101
1102 /* Don't touch the device if any interfaces are claimed.
1103 * It could interfere with other drivers' operations, and if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 * an interface is claimed by usbfs it could easily deadlock.
1105 */
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001106 if (actconfig) {
1107 int i;
1108
1109 for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
1110 if (usb_interface_claimed(actconfig->interface[i])) {
1111 dev_warn(&ps->dev->dev,
David Brownell72ebddb2005-04-11 18:34:17 -07001112 "usbfs: interface %d claimed by %s "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 "while '%s' sets config #%d\n",
1114 actconfig->interface[i]
1115 ->cur_altsetting
1116 ->desc.bInterfaceNumber,
David Brownell72ebddb2005-04-11 18:34:17 -07001117 actconfig->interface[i]
1118 ->dev.driver->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 current->comm, u);
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001120 status = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001123 }
1124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
1127 * so avoid usb_set_configuration()'s kick to sysfs
1128 */
1129 if (status == 0) {
1130 if (actconfig && actconfig->desc.bConfigurationValue == u)
1131 status = usb_reset_configuration(ps->dev);
1132 else
1133 status = usb_set_configuration(ps->dev, u);
1134 }
1135
1136 return status;
1137}
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001140 struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
1141 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 struct usbdevfs_iso_packet_desc *isopkt = NULL;
1144 struct usb_host_endpoint *ep;
Alan Stern52fb7432011-11-17 16:41:14 -05001145 struct async *as = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 struct usb_ctrlrequest *dr = NULL;
1147 unsigned int u, totlen, isofrmlen;
Alan Stern97b9eb92007-02-26 14:56:14 -05001148 int ret, ifnum = -1;
Alan Stern93cf9b92007-07-30 17:09:28 -04001149 int is_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Alan Stern14722ef2008-04-17 10:18:11 -04001151 if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP |
1152 USBDEVFS_URB_SHORT_NOT_OK |
Alan Stern01c64602009-09-01 11:09:56 -04001153 USBDEVFS_URB_BULK_CONTINUATION |
Alan Stern14722ef2008-04-17 10:18:11 -04001154 USBDEVFS_URB_NO_FSBR |
1155 USBDEVFS_URB_ZERO_PACKET |
1156 USBDEVFS_URB_NO_INTERRUPT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 return -EINVAL;
Alan Stern91801352009-06-29 11:04:54 -04001158 if (uurb->buffer_length > 0 && !uurb->buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return -EINVAL;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001160 if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
1161 (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
1162 ifnum = findintfep(ps->dev, uurb->endpoint);
1163 if (ifnum < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 return ifnum;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001165 ret = checkintf(ps, ifnum);
1166 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return ret;
1168 }
Alan Stern93cf9b92007-07-30 17:09:28 -04001169 if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
1170 is_in = 1;
1171 ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
1172 } else {
1173 is_in = 0;
1174 ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
1175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (!ep)
1177 return -ENOENT;
Alan Sternadd1aae2011-11-17 16:41:25 -05001178
1179 u = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 switch(uurb->type) {
1181 case USBDEVFS_URB_TYPE_CONTROL:
Alan Stern93cf9b92007-07-30 17:09:28 -04001182 if (!usb_endpoint_xfer_control(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return -EINVAL;
Alan Sternadd1aae2011-11-17 16:41:25 -05001184 /* min 8 byte setup packet */
1185 if (uurb->buffer_length < 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return -EINVAL;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001187 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
1188 if (!dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return -ENOMEM;
1190 if (copy_from_user(dr, uurb->buffer, 8)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001191 ret = -EFAULT;
1192 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
1194 if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001195 ret = -EINVAL;
1196 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
Matthias Dellweg393cbb52011-09-25 14:26:25 +02001198 ret = check_ctrlrecip(ps, dr->bRequestType, dr->bRequest,
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001199 le16_to_cpup(&dr->wIndex));
Alan Stern52fb7432011-11-17 16:41:14 -05001200 if (ret)
1201 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 uurb->number_of_packets = 0;
1203 uurb->buffer_length = le16_to_cpup(&dr->wLength);
1204 uurb->buffer += 8;
Alan Stern93cf9b92007-07-30 17:09:28 -04001205 if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
1206 is_in = 1;
1207 uurb->endpoint |= USB_DIR_IN;
1208 } else {
1209 is_in = 0;
1210 uurb->endpoint &= ~USB_DIR_IN;
1211 }
Chris Frey0880aef2010-01-26 17:07:29 -05001212 snoop(&ps->dev->dev, "control urb: bRequestType=%02x "
1213 "bRequest=%02x wValue=%04x "
1214 "wIndex=%04x wLength=%04x\n",
1215 dr->bRequestType, dr->bRequest,
1216 __le16_to_cpup(&dr->wValue),
1217 __le16_to_cpup(&dr->wIndex),
1218 __le16_to_cpup(&dr->wLength));
Alan Sternadd1aae2011-11-17 16:41:25 -05001219 u = sizeof(struct usb_ctrlrequest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 break;
1221
1222 case USBDEVFS_URB_TYPE_BULK:
Alan Stern93cf9b92007-07-30 17:09:28 -04001223 switch (usb_endpoint_type(&ep->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 case USB_ENDPOINT_XFER_CONTROL:
1225 case USB_ENDPOINT_XFER_ISOC:
1226 return -EINVAL;
Alan Sternf661c6f2009-12-11 16:20:20 -05001227 case USB_ENDPOINT_XFER_INT:
1228 /* allow single-shot interrupt transfers */
1229 uurb->type = USBDEVFS_URB_TYPE_INTERRUPT;
1230 goto interrupt_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
1232 uurb->number_of_packets = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 break;
1234
Alan Sternf661c6f2009-12-11 16:20:20 -05001235 case USBDEVFS_URB_TYPE_INTERRUPT:
1236 if (!usb_endpoint_xfer_int(&ep->desc))
1237 return -EINVAL;
1238 interrupt_urb:
1239 uurb->number_of_packets = 0;
Alan Sternf661c6f2009-12-11 16:20:20 -05001240 break;
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 case USBDEVFS_URB_TYPE_ISO:
1243 /* arbitrary limit */
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001244 if (uurb->number_of_packets < 1 ||
1245 uurb->number_of_packets > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001247 if (!usb_endpoint_xfer_isoc(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return -EINVAL;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001249 isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
1250 uurb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
1252 return -ENOMEM;
1253 if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001254 ret = -EFAULT;
1255 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
1257 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001258 /* arbitrary limit,
1259 * sufficient for USB 2.0 high-bandwidth iso */
Micah Dowty36122422006-05-19 11:26:24 -07001260 if (isopkt[u].length > 8192) {
Alan Stern52fb7432011-11-17 16:41:14 -05001261 ret = -EINVAL;
1262 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
1264 totlen += isopkt[u].length;
1265 }
Alan Sternadd1aae2011-11-17 16:41:25 -05001266 u *= sizeof(struct usb_iso_packet_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 uurb->buffer_length = totlen;
1268 break;
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 default:
1271 return -EINVAL;
1272 }
Alan Sternadd1aae2011-11-17 16:41:25 -05001273
Alan Stern3f5eb8d2011-11-17 16:41:35 -05001274 if (uurb->buffer_length >= USBFS_XFER_MAX) {
Alan Sternadd1aae2011-11-17 16:41:25 -05001275 ret = -EINVAL;
1276 goto error;
1277 }
Alan Stern91801352009-06-29 11:04:54 -04001278 if (uurb->buffer_length > 0 &&
1279 !access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1280 uurb->buffer, uurb->buffer_length)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001281 ret = -EFAULT;
1282 goto error;
Alan Stern91801352009-06-29 11:04:54 -04001283 }
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001284 as = alloc_async(uurb->number_of_packets);
1285 if (!as) {
Alan Stern52fb7432011-11-17 16:41:14 -05001286 ret = -ENOMEM;
1287 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
Alan Sternadd1aae2011-11-17 16:41:25 -05001289 u += sizeof(struct async) + sizeof(struct urb) + uurb->buffer_length;
1290 ret = usbfs_increase_memory_usage(u);
1291 if (ret)
1292 goto error;
1293 as->mem_usage = u;
1294
Alan Stern91801352009-06-29 11:04:54 -04001295 if (uurb->buffer_length > 0) {
1296 as->urb->transfer_buffer = kmalloc(uurb->buffer_length,
1297 GFP_KERNEL);
1298 if (!as->urb->transfer_buffer) {
Alan Stern52fb7432011-11-17 16:41:14 -05001299 ret = -ENOMEM;
1300 goto error;
Alan Stern91801352009-06-29 11:04:54 -04001301 }
Alan Stern7152b592010-03-06 15:04:03 -05001302 /* Isochronous input data may end up being discontiguous
1303 * if some of the packets are short. Clear the buffer so
1304 * that the gaps don't leak kernel data to userspace.
1305 */
1306 if (is_in && uurb->type == USBDEVFS_URB_TYPE_ISO)
1307 memset(as->urb->transfer_buffer, 0,
1308 uurb->buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001310 as->urb->dev = ps->dev;
1311 as->urb->pipe = (uurb->type << 30) |
Alan Stern93cf9b92007-07-30 17:09:28 -04001312 __create_pipe(ps->dev, uurb->endpoint & 0xf) |
1313 (uurb->endpoint & USB_DIR_IN);
Alan Stern14722ef2008-04-17 10:18:11 -04001314
1315 /* This tedious sequence is necessary because the URB_* flags
1316 * are internal to the kernel and subject to change, whereas
1317 * the USBDEVFS_URB_* flags are a user API and must not be changed.
1318 */
1319 u = (is_in ? URB_DIR_IN : URB_DIR_OUT);
1320 if (uurb->flags & USBDEVFS_URB_ISO_ASAP)
1321 u |= URB_ISO_ASAP;
1322 if (uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
1323 u |= URB_SHORT_NOT_OK;
1324 if (uurb->flags & USBDEVFS_URB_NO_FSBR)
1325 u |= URB_NO_FSBR;
1326 if (uurb->flags & USBDEVFS_URB_ZERO_PACKET)
1327 u |= URB_ZERO_PACKET;
1328 if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
1329 u |= URB_NO_INTERRUPT;
1330 as->urb->transfer_flags = u;
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 as->urb->transfer_buffer_length = uurb->buffer_length;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001333 as->urb->setup_packet = (unsigned char *)dr;
Alan Stern52fb7432011-11-17 16:41:14 -05001334 dr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 as->urb->start_frame = uurb->start_frame;
1336 as->urb->number_of_packets = uurb->number_of_packets;
Alan Stern97b9eb92007-02-26 14:56:14 -05001337 if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
1338 ps->dev->speed == USB_SPEED_HIGH)
1339 as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
1340 else
1341 as->urb->interval = ep->desc.bInterval;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001342 as->urb->context = as;
1343 as->urb->complete = async_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
1345 as->urb->iso_frame_desc[u].offset = totlen;
1346 as->urb->iso_frame_desc[u].length = isopkt[u].length;
1347 totlen += isopkt[u].length;
1348 }
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001349 kfree(isopkt);
Alan Stern52fb7432011-11-17 16:41:14 -05001350 isopkt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 as->ps = ps;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001352 as->userurb = arg;
Alan Stern91801352009-06-29 11:04:54 -04001353 if (is_in && uurb->buffer_length > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 as->userbuffer = uurb->buffer;
1355 else
1356 as->userbuffer = NULL;
1357 as->signr = uurb->signr;
1358 as->ifnum = ifnum;
Eric W. Biederman2425c082006-10-02 02:17:28 -07001359 as->pid = get_pid(task_pid(current));
Serge Hallynd178bc32011-09-26 10:45:18 -05001360 as->cred = get_current_cred();
David Quigley7a019552006-06-30 01:55:48 -07001361 security_task_getsecid(current, &as->secid);
Alan Stern91801352009-06-29 11:04:54 -04001362 if (!is_in && uurb->buffer_length > 0) {
Alan Stern93cf9b92007-07-30 17:09:28 -04001363 if (copy_from_user(as->urb->transfer_buffer, uurb->buffer,
Alan Stern91801352009-06-29 11:04:54 -04001364 uurb->buffer_length)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001365 ret = -EFAULT;
1366 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368 }
Alan Stern4c6e8972009-06-29 11:02:04 -04001369 snoop_urb(ps->dev, as->userurb, as->urb->pipe,
Chris Frey0880aef2010-01-26 17:07:29 -05001370 as->urb->transfer_buffer_length, 0, SUBMIT,
1371 is_in ? NULL : as->urb->transfer_buffer,
1372 uurb->buffer_length);
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001373 async_newpending(as);
Alan Stern01c64602009-09-01 11:09:56 -04001374
1375 if (usb_endpoint_xfer_bulk(&ep->desc)) {
1376 spin_lock_irq(&ps->lock);
1377
1378 /* Not exactly the endpoint address; the direction bit is
1379 * shifted to the 0x10 position so that the value will be
1380 * between 0 and 31.
1381 */
1382 as->bulk_addr = usb_endpoint_num(&ep->desc) |
1383 ((ep->desc.bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1384 >> 3);
1385
1386 /* If this bulk URB is the start of a new transfer, re-enable
1387 * the endpoint. Otherwise mark it as a continuation URB.
1388 */
1389 if (uurb->flags & USBDEVFS_URB_BULK_CONTINUATION)
1390 as->bulk_status = AS_CONTINUATION;
1391 else
1392 ps->disabled_bulk_eps &= ~(1 << as->bulk_addr);
1393
1394 /* Don't accept continuation URBs if the endpoint is
1395 * disabled because of an earlier error.
1396 */
1397 if (ps->disabled_bulk_eps & (1 << as->bulk_addr))
1398 ret = -EREMOTEIO;
1399 else
1400 ret = usb_submit_urb(as->urb, GFP_ATOMIC);
1401 spin_unlock_irq(&ps->lock);
1402 } else {
1403 ret = usb_submit_urb(as->urb, GFP_KERNEL);
1404 }
1405
1406 if (ret) {
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001407 dev_printk(KERN_DEBUG, &ps->dev->dev,
1408 "usbfs: usb_submit_urb returned %d\n", ret);
Alan Stern4c6e8972009-06-29 11:02:04 -04001409 snoop_urb(ps->dev, as->userurb, as->urb->pipe,
Chris Frey0880aef2010-01-26 17:07:29 -05001410 0, ret, COMPLETE, NULL, 0);
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001411 async_removepending(as);
Alan Stern52fb7432011-11-17 16:41:14 -05001412 goto error;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001413 }
1414 return 0;
Alan Stern52fb7432011-11-17 16:41:14 -05001415
1416 error:
1417 kfree(isopkt);
1418 kfree(dr);
1419 if (as)
1420 free_async(as);
1421 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
1424static int proc_submiturb(struct dev_state *ps, void __user *arg)
1425{
1426 struct usbdevfs_urb uurb;
1427
1428 if (copy_from_user(&uurb, arg, sizeof(uurb)))
1429 return -EFAULT;
1430
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001431 return proc_do_submiturb(ps, &uurb,
1432 (((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
1433 arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
1436static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
1437{
Huajun Lida223282012-05-18 20:12:51 +08001438 struct urb *urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 struct async *as;
Huajun Lida223282012-05-18 20:12:51 +08001440 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Huajun Lida223282012-05-18 20:12:51 +08001442 spin_lock_irqsave(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 as = async_getpending(ps, arg);
Huajun Lida223282012-05-18 20:12:51 +08001444 if (!as) {
1445 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return -EINVAL;
Huajun Lida223282012-05-18 20:12:51 +08001447 }
1448
1449 urb = as->urb;
1450 usb_get_urb(urb);
1451 spin_unlock_irqrestore(&ps->lock, flags);
1452
1453 usb_kill_urb(urb);
1454 usb_put_urb(urb);
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 return 0;
1457}
1458
1459static int processcompl(struct async *as, void __user * __user *arg)
1460{
1461 struct urb *urb = as->urb;
1462 struct usbdevfs_urb __user *userurb = as->userurb;
1463 void __user *addr = as->userurb;
1464 unsigned int i;
1465
Alan Stern7152b592010-03-06 15:04:03 -05001466 if (as->userbuffer && urb->actual_length) {
1467 if (urb->number_of_packets > 0) /* Isochronous */
1468 i = urb->transfer_buffer_length;
1469 else /* Non-Isoc */
1470 i = urb->actual_length;
1471 if (copy_to_user(as->userbuffer, urb->transfer_buffer, i))
Oliver Neukumd794a022009-06-28 23:34:14 +02001472 goto err_out;
Alan Stern7152b592010-03-06 15:04:03 -05001473 }
Alan Sterne0152682007-08-24 15:42:52 -04001474 if (put_user(as->status, &userurb->status))
Oliver Neukumd794a022009-06-28 23:34:14 +02001475 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (put_user(urb->actual_length, &userurb->actual_length))
Oliver Neukumd794a022009-06-28 23:34:14 +02001477 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (put_user(urb->error_count, &userurb->error_count))
Oliver Neukumd794a022009-06-28 23:34:14 +02001479 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Alan Stern93cf9b92007-07-30 17:09:28 -04001481 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001482 for (i = 0; i < urb->number_of_packets; i++) {
1483 if (put_user(urb->iso_frame_desc[i].actual_length,
1484 &userurb->iso_frame_desc[i].actual_length))
Oliver Neukumd794a022009-06-28 23:34:14 +02001485 goto err_out;
Christopher Li668a9542005-04-18 17:39:26 -07001486 if (put_user(urb->iso_frame_desc[i].status,
1487 &userurb->iso_frame_desc[i].status))
Oliver Neukumd794a022009-06-28 23:34:14 +02001488 goto err_out;
Christopher Li668a9542005-04-18 17:39:26 -07001489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 }
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (put_user(addr, (void __user * __user *)arg))
1493 return -EFAULT;
1494 return 0;
Oliver Neukumd794a022009-06-28 23:34:14 +02001495
1496err_out:
Oliver Neukumd794a022009-06-28 23:34:14 +02001497 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001500static struct async *reap_as(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001502 DECLARE_WAITQUEUE(wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 struct async *as = NULL;
1504 struct usb_device *dev = ps->dev;
1505
1506 add_wait_queue(&ps->wait, &wait);
1507 for (;;) {
1508 __set_current_state(TASK_INTERRUPTIBLE);
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001509 as = async_getcompleted(ps);
1510 if (as)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 break;
1512 if (signal_pending(current))
1513 break;
1514 usb_unlock_device(dev);
1515 schedule();
1516 usb_lock_device(dev);
1517 }
1518 remove_wait_queue(&ps->wait, &wait);
1519 set_current_state(TASK_RUNNING);
1520 return as;
1521}
1522
1523static int proc_reapurb(struct dev_state *ps, void __user *arg)
1524{
1525 struct async *as = reap_as(ps);
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001526 if (as) {
1527 int retval = processcompl(as, (void __user * __user *)arg);
1528 free_async(as);
1529 return retval;
1530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 if (signal_pending(current))
1532 return -EINTR;
1533 return -EIO;
1534}
1535
1536static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
1537{
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001538 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 struct async *as;
1540
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001541 as = async_getcompleted(ps);
1542 retval = -EAGAIN;
1543 if (as) {
1544 retval = processcompl(as, (void __user * __user *)arg);
1545 free_async(as);
1546 }
1547 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
1550#ifdef CONFIG_COMPAT
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001551static int proc_control_compat(struct dev_state *ps,
1552 struct usbdevfs_ctrltransfer32 __user *p32)
1553{
1554 struct usbdevfs_ctrltransfer __user *p;
1555 __u32 udata;
1556 p = compat_alloc_user_space(sizeof(*p));
1557 if (copy_in_user(p, p32, (sizeof(*p32) - sizeof(compat_caddr_t))) ||
1558 get_user(udata, &p32->data) ||
1559 put_user(compat_ptr(udata), &p->data))
1560 return -EFAULT;
1561 return proc_control(ps, p);
1562}
1563
1564static int proc_bulk_compat(struct dev_state *ps,
1565 struct usbdevfs_bulktransfer32 __user *p32)
1566{
1567 struct usbdevfs_bulktransfer __user *p;
1568 compat_uint_t n;
1569 compat_caddr_t addr;
1570
1571 p = compat_alloc_user_space(sizeof(*p));
1572
1573 if (get_user(n, &p32->ep) || put_user(n, &p->ep) ||
1574 get_user(n, &p32->len) || put_user(n, &p->len) ||
1575 get_user(n, &p32->timeout) || put_user(n, &p->timeout) ||
1576 get_user(addr, &p32->data) || put_user(compat_ptr(addr), &p->data))
1577 return -EFAULT;
1578
1579 return proc_bulk(ps, p);
1580}
1581static int proc_disconnectsignal_compat(struct dev_state *ps, void __user *arg)
1582{
1583 struct usbdevfs_disconnectsignal32 ds;
1584
1585 if (copy_from_user(&ds, arg, sizeof(ds)))
1586 return -EFAULT;
1587 ps->discsignr = ds.signr;
1588 ps->disccontext = compat_ptr(ds.context);
1589 return 0;
1590}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592static int get_urb32(struct usbdevfs_urb *kurb,
1593 struct usbdevfs_urb32 __user *uurb)
1594{
1595 __u32 uptr;
Michael Buesch18753eb2009-07-29 11:39:03 +02001596 if (!access_ok(VERIFY_READ, uurb, sizeof(*uurb)) ||
1597 __get_user(kurb->type, &uurb->type) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 __get_user(kurb->endpoint, &uurb->endpoint) ||
1599 __get_user(kurb->status, &uurb->status) ||
1600 __get_user(kurb->flags, &uurb->flags) ||
1601 __get_user(kurb->buffer_length, &uurb->buffer_length) ||
1602 __get_user(kurb->actual_length, &uurb->actual_length) ||
1603 __get_user(kurb->start_frame, &uurb->start_frame) ||
1604 __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
1605 __get_user(kurb->error_count, &uurb->error_count) ||
1606 __get_user(kurb->signr, &uurb->signr))
1607 return -EFAULT;
1608
1609 if (__get_user(uptr, &uurb->buffer))
1610 return -EFAULT;
1611 kurb->buffer = compat_ptr(uptr);
Mark Lorded0c7722009-01-02 02:48:24 -05001612 if (__get_user(uptr, &uurb->usercontext))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return -EFAULT;
1614 kurb->usercontext = compat_ptr(uptr);
1615
1616 return 0;
1617}
1618
1619static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
1620{
1621 struct usbdevfs_urb uurb;
1622
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001623 if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return -EFAULT;
1625
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001626 return proc_do_submiturb(ps, &uurb,
1627 ((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
1628 arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629}
1630
1631static int processcompl_compat(struct async *as, void __user * __user *arg)
1632{
1633 struct urb *urb = as->urb;
1634 struct usbdevfs_urb32 __user *userurb = as->userurb;
1635 void __user *addr = as->userurb;
1636 unsigned int i;
1637
Hans de Goedeee5569c2012-07-04 09:18:01 +02001638 if (as->userbuffer && urb->actual_length) {
1639 if (urb->number_of_packets > 0) /* Isochronous */
1640 i = urb->transfer_buffer_length;
1641 else /* Non-Isoc */
1642 i = urb->actual_length;
1643 if (copy_to_user(as->userbuffer, urb->transfer_buffer, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return -EFAULT;
Hans de Goedeee5569c2012-07-04 09:18:01 +02001645 }
Alan Sterne0152682007-08-24 15:42:52 -04001646 if (put_user(as->status, &userurb->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return -EFAULT;
1648 if (put_user(urb->actual_length, &userurb->actual_length))
1649 return -EFAULT;
1650 if (put_user(urb->error_count, &userurb->error_count))
1651 return -EFAULT;
1652
Alan Stern93cf9b92007-07-30 17:09:28 -04001653 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001654 for (i = 0; i < urb->number_of_packets; i++) {
1655 if (put_user(urb->iso_frame_desc[i].actual_length,
1656 &userurb->iso_frame_desc[i].actual_length))
1657 return -EFAULT;
1658 if (put_user(urb->iso_frame_desc[i].status,
1659 &userurb->iso_frame_desc[i].status))
1660 return -EFAULT;
1661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
1663
Al Viroc714de52006-10-10 22:45:37 +01001664 if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return -EFAULT;
1666 return 0;
1667}
1668
1669static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
1670{
1671 struct async *as = reap_as(ps);
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001672 if (as) {
1673 int retval = processcompl_compat(as, (void __user * __user *)arg);
1674 free_async(as);
1675 return retval;
1676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 if (signal_pending(current))
1678 return -EINTR;
1679 return -EIO;
1680}
1681
1682static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
1683{
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001684 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 struct async *as;
1686
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001687 retval = -EAGAIN;
1688 as = async_getcompleted(ps);
1689 if (as) {
1690 retval = processcompl_compat(as, (void __user * __user *)arg);
1691 free_async(as);
1692 }
1693 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
1695
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697#endif
1698
1699static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
1700{
1701 struct usbdevfs_disconnectsignal ds;
1702
1703 if (copy_from_user(&ds, arg, sizeof(ds)))
1704 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 ps->discsignr = ds.signr;
1706 ps->disccontext = ds.context;
1707 return 0;
1708}
1709
1710static int proc_claiminterface(struct dev_state *ps, void __user *arg)
1711{
1712 unsigned int ifnum;
1713
1714 if (get_user(ifnum, (unsigned int __user *)arg))
1715 return -EFAULT;
1716 return claimintf(ps, ifnum);
1717}
1718
1719static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
1720{
1721 unsigned int ifnum;
1722 int ret;
1723
1724 if (get_user(ifnum, (unsigned int __user *)arg))
1725 return -EFAULT;
1726 if ((ret = releaseintf(ps, ifnum)) < 0)
1727 return ret;
1728 destroy_async_on_interface (ps, ifnum);
1729 return 0;
1730}
1731
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001732static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 int size;
1735 void *buf = NULL;
1736 int retval = 0;
1737 struct usb_interface *intf = NULL;
1738 struct usb_driver *driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001740 /* alloc buffer */
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001741 if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
1742 if ((buf = kmalloc(size, GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return -ENOMEM;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001744 if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001745 if (copy_from_user(buf, ctl->data, size)) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001746 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 return -EFAULT;
1748 }
1749 } else {
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001750 memset(buf, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
1752 }
1753
Alan Stern349710c2006-07-01 22:05:56 -04001754 if (!connected(ps)) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001755 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 return -ENODEV;
1757 }
1758
1759 if (ps->dev->state != USB_STATE_CONFIGURED)
1760 retval = -EHOSTUNREACH;
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001761 else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
1762 retval = -EINVAL;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001763 else switch (ctl->ioctl_code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 /* disconnect kernel driver from interface */
1766 case USBDEVFS_DISCONNECT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 if (intf->dev.driver) {
1768 driver = to_usb_driver(intf->dev.driver);
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001769 dev_dbg(&intf->dev, "disconnect by usbfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 usb_driver_release_interface(driver, intf);
1771 } else
1772 retval = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 break;
1774
1775 /* let kernel drivers try to (re)bind to the interface */
1776 case USBDEVFS_CONNECT:
Alan Stern885e9742007-12-03 15:42:10 -05001777 if (!intf->dev.driver)
1778 retval = device_attach(&intf->dev);
1779 else
1780 retval = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 break;
1782
1783 /* talk directly to the interface's driver */
1784 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 if (intf->dev.driver)
1786 driver = to_usb_driver(intf->dev.driver);
Andi Kleenc532b292010-06-01 23:04:41 +02001787 if (driver == NULL || driver->unlocked_ioctl == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 retval = -ENOTTY;
1789 } else {
Andi Kleenc532b292010-06-01 23:04:41 +02001790 retval = driver->unlocked_ioctl(intf, ctl->ioctl_code, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 if (retval == -ENOIOCTLCMD)
1792 retval = -ENOTTY;
1793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
1795
1796 /* cleanup and return */
1797 if (retval >= 0
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001798 && (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 && size > 0
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001800 && copy_to_user(ctl->data, buf, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 retval = -EFAULT;
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001802
1803 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return retval;
1805}
1806
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001807static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
1808{
1809 struct usbdevfs_ioctl ctrl;
1810
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08001811 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001812 return -EFAULT;
1813 return proc_ioctl(ps, &ctrl);
1814}
1815
1816#ifdef CONFIG_COMPAT
Andrew Morton777da592005-11-17 09:47:02 -08001817static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001818{
1819 struct usbdevfs_ioctl32 __user *uioc;
1820 struct usbdevfs_ioctl ctrl;
1821 u32 udata;
1822
Andrew Morton058120d2005-11-17 09:47:49 -08001823 uioc = compat_ptr((long)arg);
Michael Buesch18753eb2009-07-29 11:39:03 +02001824 if (!access_ok(VERIFY_READ, uioc, sizeof(*uioc)) ||
1825 __get_user(ctrl.ifno, &uioc->ifno) ||
1826 __get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001827 __get_user(udata, &uioc->data))
1828 return -EFAULT;
1829 ctrl.data = compat_ptr(udata);
1830
1831 return proc_ioctl(ps, &ctrl);
1832}
1833#endif
1834
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001835static int proc_claim_port(struct dev_state *ps, void __user *arg)
1836{
1837 unsigned portnum;
1838 int rc;
1839
1840 if (get_user(portnum, (unsigned __user *) arg))
1841 return -EFAULT;
1842 rc = usb_hub_claim_port(ps->dev, portnum, ps);
1843 if (rc == 0)
1844 snoop(&ps->dev->dev, "port %d claimed by process %d: %s\n",
1845 portnum, task_pid_nr(current), current->comm);
1846 return rc;
1847}
1848
1849static int proc_release_port(struct dev_state *ps, void __user *arg)
1850{
1851 unsigned portnum;
1852
1853 if (get_user(portnum, (unsigned __user *) arg))
1854 return -EFAULT;
1855 return usb_hub_release_port(ps->dev, portnum, ps);
1856}
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858/*
1859 * NOTE: All requests here that have interface numbers as parameters
1860 * are assuming that somehow the configuration has been prevented from
1861 * changing. But there's no mechanism to ensure that...
1862 */
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001863static long usbdev_do_ioctl(struct file *file, unsigned int cmd,
1864 void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865{
Tobias Klauserec17cf12006-09-13 21:38:41 +02001866 struct dev_state *ps = file->private_data;
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001867 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 struct usb_device *dev = ps->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 int ret = -ENOTTY;
1870
1871 if (!(file->f_mode & FMODE_WRITE))
1872 return -EPERM;
Oliver Neukum01412a22010-01-13 15:33:43 +01001873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -04001875 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 usb_unlock_device(dev);
1877 return -ENODEV;
1878 }
1879
1880 switch (cmd) {
1881 case USBDEVFS_CONTROL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001882 snoop(&dev->dev, "%s: CONTROL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 ret = proc_control(ps, p);
1884 if (ret >= 0)
1885 inode->i_mtime = CURRENT_TIME;
1886 break;
1887
1888 case USBDEVFS_BULK:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001889 snoop(&dev->dev, "%s: BULK\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 ret = proc_bulk(ps, p);
1891 if (ret >= 0)
1892 inode->i_mtime = CURRENT_TIME;
1893 break;
1894
1895 case USBDEVFS_RESETEP:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001896 snoop(&dev->dev, "%s: RESETEP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 ret = proc_resetep(ps, p);
1898 if (ret >= 0)
1899 inode->i_mtime = CURRENT_TIME;
1900 break;
1901
1902 case USBDEVFS_RESET:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001903 snoop(&dev->dev, "%s: RESET\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 ret = proc_resetdevice(ps);
1905 break;
1906
1907 case USBDEVFS_CLEAR_HALT:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001908 snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 ret = proc_clearhalt(ps, p);
1910 if (ret >= 0)
1911 inode->i_mtime = CURRENT_TIME;
1912 break;
1913
1914 case USBDEVFS_GETDRIVER:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001915 snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 ret = proc_getdriver(ps, p);
1917 break;
1918
1919 case USBDEVFS_CONNECTINFO:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001920 snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 ret = proc_connectinfo(ps, p);
1922 break;
1923
1924 case USBDEVFS_SETINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001925 snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 ret = proc_setintf(ps, p);
1927 break;
1928
1929 case USBDEVFS_SETCONFIGURATION:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001930 snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 ret = proc_setconfig(ps, p);
1932 break;
1933
1934 case USBDEVFS_SUBMITURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001935 snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 ret = proc_submiturb(ps, p);
1937 if (ret >= 0)
1938 inode->i_mtime = CURRENT_TIME;
1939 break;
1940
1941#ifdef CONFIG_COMPAT
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001942 case USBDEVFS_CONTROL32:
1943 snoop(&dev->dev, "%s: CONTROL32\n", __func__);
1944 ret = proc_control_compat(ps, p);
1945 if (ret >= 0)
1946 inode->i_mtime = CURRENT_TIME;
1947 break;
1948
1949 case USBDEVFS_BULK32:
1950 snoop(&dev->dev, "%s: BULK32\n", __func__);
1951 ret = proc_bulk_compat(ps, p);
1952 if (ret >= 0)
1953 inode->i_mtime = CURRENT_TIME;
1954 break;
1955
1956 case USBDEVFS_DISCSIGNAL32:
1957 snoop(&dev->dev, "%s: DISCSIGNAL32\n", __func__);
1958 ret = proc_disconnectsignal_compat(ps, p);
1959 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 case USBDEVFS_SUBMITURB32:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001962 snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 ret = proc_submiturb_compat(ps, p);
1964 if (ret >= 0)
1965 inode->i_mtime = CURRENT_TIME;
1966 break;
1967
1968 case USBDEVFS_REAPURB32:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001969 snoop(&dev->dev, "%s: REAPURB32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 ret = proc_reapurb_compat(ps, p);
1971 break;
1972
1973 case USBDEVFS_REAPURBNDELAY32:
Alan Stern4c6e8972009-06-29 11:02:04 -04001974 snoop(&dev->dev, "%s: REAPURBNDELAY32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 ret = proc_reapurbnonblock_compat(ps, p);
1976 break;
1977
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001978 case USBDEVFS_IOCTL32:
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001979 snoop(&dev->dev, "%s: IOCTL32\n", __func__);
Al Viroc714de52006-10-10 22:45:37 +01001980 ret = proc_ioctl_compat(ps, ptr_to_compat(p));
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001981 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982#endif
1983
1984 case USBDEVFS_DISCARDURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001985 snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 ret = proc_unlinkurb(ps, p);
1987 break;
1988
1989 case USBDEVFS_REAPURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001990 snoop(&dev->dev, "%s: REAPURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 ret = proc_reapurb(ps, p);
1992 break;
1993
1994 case USBDEVFS_REAPURBNDELAY:
Alan Stern4c6e8972009-06-29 11:02:04 -04001995 snoop(&dev->dev, "%s: REAPURBNDELAY\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 ret = proc_reapurbnonblock(ps, p);
1997 break;
1998
1999 case USBDEVFS_DISCSIGNAL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002000 snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 ret = proc_disconnectsignal(ps, p);
2002 break;
2003
2004 case USBDEVFS_CLAIMINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002005 snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 ret = proc_claiminterface(ps, p);
2007 break;
2008
2009 case USBDEVFS_RELEASEINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002010 snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 ret = proc_releaseinterface(ps, p);
2012 break;
2013
2014 case USBDEVFS_IOCTL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002015 snoop(&dev->dev, "%s: IOCTL\n", __func__);
Pete Zaitcevc36fc882005-10-17 18:15:54 -07002016 ret = proc_ioctl_default(ps, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 break;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04002018
2019 case USBDEVFS_CLAIM_PORT:
2020 snoop(&dev->dev, "%s: CLAIM_PORT\n", __func__);
2021 ret = proc_claim_port(ps, p);
2022 break;
2023
2024 case USBDEVFS_RELEASE_PORT:
2025 snoop(&dev->dev, "%s: RELEASE_PORT\n", __func__);
2026 ret = proc_release_port(ps, p);
2027 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
2029 usb_unlock_device(dev);
2030 if (ret >= 0)
2031 inode->i_atime = CURRENT_TIME;
2032 return ret;
2033}
2034
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002035static long usbdev_ioctl(struct file *file, unsigned int cmd,
2036 unsigned long arg)
2037{
2038 int ret;
2039
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002040 ret = usbdev_do_ioctl(file, cmd, (void __user *)arg);
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002041
2042 return ret;
2043}
2044
2045#ifdef CONFIG_COMPAT
2046static long usbdev_compat_ioctl(struct file *file, unsigned int cmd,
2047 unsigned long arg)
2048{
2049 int ret;
2050
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002051 ret = usbdev_do_ioctl(file, cmd, compat_ptr(arg));
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002052
2053 return ret;
2054}
2055#endif
2056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057/* No kernel lock - fine */
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08002058static unsigned int usbdev_poll(struct file *file,
2059 struct poll_table_struct *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Tobias Klauserec17cf12006-09-13 21:38:41 +02002061 struct dev_state *ps = file->private_data;
2062 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064 poll_wait(file, &ps->wait, wait);
2065 if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
2066 mask |= POLLOUT | POLLWRNORM;
Alan Stern349710c2006-07-01 22:05:56 -04002067 if (!connected(ps))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 mask |= POLLERR | POLLHUP;
2069 return mask;
2070}
2071
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002072const struct file_operations usbdev_file_operations = {
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002073 .owner = THIS_MODULE,
2074 .llseek = usbdev_lseek,
2075 .read = usbdev_read,
2076 .poll = usbdev_poll,
2077 .unlocked_ioctl = usbdev_ioctl,
2078#ifdef CONFIG_COMPAT
2079 .compat_ioctl = usbdev_compat_ioctl,
2080#endif
2081 .open = usbdev_open,
2082 .release = usbdev_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083};
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002084
Alan Stern501950d2009-01-13 11:33:42 -05002085static void usbdev_remove(struct usb_device *udev)
Alan Sterncd9f0372008-06-24 14:47:04 -04002086{
2087 struct dev_state *ps;
2088 struct siginfo sinfo;
2089
2090 while (!list_empty(&udev->filelist)) {
2091 ps = list_entry(udev->filelist.next, struct dev_state, list);
2092 destroy_all_async(ps);
2093 wake_up_all(&ps->wait);
2094 list_del_init(&ps->list);
2095 if (ps->discsignr) {
Alan Stern692773552015-02-13 10:54:53 -05002096 memset(&sinfo, 0, sizeof(sinfo));
Alan Sterncd9f0372008-06-24 14:47:04 -04002097 sinfo.si_signo = ps->discsignr;
2098 sinfo.si_errno = EPIPE;
2099 sinfo.si_code = SI_ASYNCIO;
2100 sinfo.si_addr = ps->disccontext;
Serge Hallynd178bc32011-09-26 10:45:18 -05002101 kill_pid_info_as_cred(ps->discsignr, &sinfo,
2102 ps->disc_pid, ps->cred, ps->secid);
Alan Sterncd9f0372008-06-24 14:47:04 -04002103 }
2104 }
2105}
2106
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002107#ifdef CONFIG_USB_DEVICE_CLASS
2108static struct class *usb_classdev_class;
2109
2110static int usb_classdev_add(struct usb_device *dev)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002111{
Alan Sterne04199b2008-06-24 14:47:29 -04002112 struct device *cldev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002113
Greg Kroah-Hartmanb0b090e2008-07-21 20:03:34 -07002114 cldev = device_create(usb_classdev_class, &dev->dev, dev->dev.devt,
2115 NULL, "usbdev%d.%d", dev->bus->busnum,
2116 dev->devnum);
Alan Sterne04199b2008-06-24 14:47:29 -04002117 if (IS_ERR(cldev))
2118 return PTR_ERR(cldev);
2119 dev->usb_classdev = cldev;
Akinobu Mita27d39e22006-10-09 18:09:33 +09002120 return 0;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002121}
2122
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002123static void usb_classdev_remove(struct usb_device *dev)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002124{
Alan Sterne04199b2008-06-24 14:47:29 -04002125 if (dev->usb_classdev)
2126 device_unregister(dev->usb_classdev);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002127}
2128
Alan Stern501950d2009-01-13 11:33:42 -05002129#else
2130#define usb_classdev_add(dev) 0
2131#define usb_classdev_remove(dev) do {} while (0)
2132
2133#endif
2134
2135static int usbdev_notify(struct notifier_block *self,
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002136 unsigned long action, void *dev)
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002137{
2138 switch (action) {
2139 case USB_DEVICE_ADD:
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002140 if (usb_classdev_add(dev))
Akinobu Mita27d39e22006-10-09 18:09:33 +09002141 return NOTIFY_BAD;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002142 break;
2143 case USB_DEVICE_REMOVE:
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002144 usb_classdev_remove(dev);
Alan Stern501950d2009-01-13 11:33:42 -05002145 usbdev_remove(dev);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002146 break;
2147 }
2148 return NOTIFY_OK;
2149}
2150
2151static struct notifier_block usbdev_nb = {
Alan Stern501950d2009-01-13 11:33:42 -05002152 .notifier_call = usbdev_notify,
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002153};
2154
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -07002155static struct cdev usb_device_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002156
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002157int __init usb_devio_init(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002158{
2159 int retval;
2160
Alan Sternfad21bd2005-08-10 15:15:57 -04002161 retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
Greg Kroah-Hartman04e482f2008-01-30 15:21:33 -08002162 "usb_device");
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002163 if (retval) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07002164 printk(KERN_ERR "Unable to register minors for usb_device\n");
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002165 goto out;
2166 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002167 cdev_init(&usb_device_cdev, &usbdev_file_operations);
Alan Sternfad21bd2005-08-10 15:15:57 -04002168 retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002169 if (retval) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07002170 printk(KERN_ERR "Unable to get usb_device major %d\n",
2171 USB_DEVICE_MAJOR);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002172 goto error_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002173 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002174#ifdef CONFIG_USB_DEVICE_CLASS
2175 usb_classdev_class = class_create(THIS_MODULE, "usb_device");
2176 if (IS_ERR(usb_classdev_class)) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07002177 printk(KERN_ERR "Unable to register usb_device class\n");
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002178 retval = PTR_ERR(usb_classdev_class);
2179 cdev_del(&usb_device_cdev);
2180 usb_classdev_class = NULL;
2181 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002182 }
Dan Williamse105b8b2008-04-21 10:51:07 -07002183 /* devices of this class shadow the major:minor of their parent
2184 * device, so clear ->dev_kobj to prevent adding duplicate entries
2185 * to /sys/dev
2186 */
2187 usb_classdev_class->dev_kobj = NULL;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002188#endif
Alan Stern501950d2009-01-13 11:33:42 -05002189 usb_register_notify(&usbdev_nb);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002190out:
2191 return retval;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002192
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002193error_cdev:
2194 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
2195 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002196}
2197
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002198void usb_devio_cleanup(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002199{
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002200 usb_unregister_notify(&usbdev_nb);
Alan Stern501950d2009-01-13 11:33:42 -05002201#ifdef CONFIG_USB_DEVICE_CLASS
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002202 class_destroy(usb_classdev_class);
2203#endif
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002204 cdev_del(&usb_device_cdev);
Alan Sternfad21bd2005-08-10 15:15:57 -04002205 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002206}