blob: b69768b7d2264fdfef0de7acd7af79f4bac05e2b [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
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -080096static int usbfs_snoop;
97module_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-Hartman04e482ff2008-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 */
113#define MAX_USBFS_MEMORY_USAGE 16777216 /* 16 MB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Alan Sternadd1aae2011-11-17 16:41:25 -0500115static atomic_t usbfs_memory_usage; /* Total memory currently allocated */
116
117/* Check whether it's okay to allocate more memory for a transfer */
118static int usbfs_increase_memory_usage(unsigned amount)
119{
120 atomic_add(amount, &usbfs_memory_usage);
121 if (atomic_read(&usbfs_memory_usage) <= MAX_USBFS_MEMORY_USAGE)
122 return 0;
123 atomic_sub(amount, &usbfs_memory_usage);
124 return -ENOMEM;
125}
126
127/* Memory for a transfer is being deallocated */
128static void usbfs_decrease_memory_usage(unsigned amount)
129{
130 atomic_sub(amount, &usbfs_memory_usage);
131}
Alan Stern4c6e8972009-06-29 11:02:04 -0400132
Alan Sternd34d9722009-03-09 13:44:48 -0400133static int connected(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Alan Stern349710c2006-07-01 22:05:56 -0400135 return (!list_empty(&ps->list) &&
136 ps->dev->state != USB_STATE_NOTATTACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig)
140{
141 loff_t ret;
142
Oliver Neukumf9de3322010-01-13 15:32:21 +0100143 mutex_lock(&file->f_dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 switch (orig) {
146 case 0:
147 file->f_pos = offset;
148 ret = file->f_pos;
149 break;
150 case 1:
151 file->f_pos += offset;
152 ret = file->f_pos;
153 break;
154 case 2:
155 default:
156 ret = -EINVAL;
157 }
158
Oliver Neukumf9de3322010-01-13 15:32:21 +0100159 mutex_unlock(&file->f_dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return ret;
161}
162
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800163static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
164 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200166 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct usb_device *dev = ps->dev;
168 ssize_t ret = 0;
169 unsigned len;
170 loff_t pos;
171 int i;
172
173 pos = *ppos;
174 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -0400175 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 ret = -ENODEV;
177 goto err;
178 } else if (pos < 0) {
179 ret = -EINVAL;
180 goto err;
181 }
182
183 if (pos < sizeof(struct usb_device_descriptor)) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800184 /* 18 bytes - fits on the stack */
185 struct usb_device_descriptor temp_desc;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100186
187 memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
Andrew Morton9fcd5c32006-01-18 23:55:07 -0800188 le16_to_cpus(&temp_desc.bcdUSB);
189 le16_to_cpus(&temp_desc.idVendor);
190 le16_to_cpus(&temp_desc.idProduct);
191 le16_to_cpus(&temp_desc.bcdDevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 len = sizeof(struct usb_device_descriptor) - pos;
194 if (len > nbytes)
195 len = nbytes;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100196 if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 ret = -EFAULT;
198 goto err;
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 *ppos += len;
202 buf += len;
203 nbytes -= len;
204 ret += len;
205 }
206
207 pos = sizeof(struct usb_device_descriptor);
208 for (i = 0; nbytes && i < dev->descriptor.bNumConfigurations; i++) {
209 struct usb_config_descriptor *config =
210 (struct usb_config_descriptor *)dev->rawdescriptors[i];
211 unsigned int length = le16_to_cpu(config->wTotalLength);
212
213 if (*ppos < pos + length) {
214
215 /* The descriptor may claim to be longer than it
216 * really is. Here is the actual allocated length. */
217 unsigned alloclen =
218 le16_to_cpu(dev->config[i].desc.wTotalLength);
219
220 len = length - (*ppos - pos);
221 if (len > nbytes)
222 len = nbytes;
223
224 /* Simply don't write (skip over) unallocated parts */
225 if (alloclen > (*ppos - pos)) {
226 alloclen -= (*ppos - pos);
227 if (copy_to_user(buf,
228 dev->rawdescriptors[i] + (*ppos - pos),
229 min(len, alloclen))) {
230 ret = -EFAULT;
231 goto err;
232 }
233 }
234
235 *ppos += len;
236 buf += len;
237 nbytes -= len;
238 ret += len;
239 }
240
241 pos += length;
242 }
243
244err:
245 usb_unlock_device(dev);
246 return ret;
247}
248
249/*
250 * async list handling
251 */
252
253static struct async *alloc_async(unsigned int numisoframes)
254{
Pete Zaitcevdd95b812008-01-05 02:01:07 -0800255 struct async *as;
Alan Stern0a1ef3b2005-10-24 15:38:24 -0400256
Pete Zaitcevdd95b812008-01-05 02:01:07 -0800257 as = kzalloc(sizeof(struct async), GFP_KERNEL);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800258 if (!as)
259 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
261 if (!as->urb) {
262 kfree(as);
263 return NULL;
264 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800265 return as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268static void free_async(struct async *as)
269{
Eric W. Biederman2425c082006-10-02 02:17:28 -0700270 put_pid(as->pid);
Serge Hallynd178bc32011-09-26 10:45:18 -0500271 put_cred(as->cred);
Jesper Juhl6fd19f4b2005-04-18 17:39:33 -0700272 kfree(as->urb->transfer_buffer);
273 kfree(as->urb->setup_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 usb_free_urb(as->urb);
Alan Sternadd1aae2011-11-17 16:41:25 -0500275 usbfs_decrease_memory_usage(as->mem_usage);
Jesper Juhl6fd19f4b2005-04-18 17:39:33 -0700276 kfree(as);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
Alan Sternd34d9722009-03-09 13:44:48 -0400279static void async_newpending(struct async *as)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800281 struct dev_state *ps = as->ps;
282 unsigned long flags;
283
284 spin_lock_irqsave(&ps->lock, flags);
285 list_add_tail(&as->asynclist, &ps->async_pending);
286 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Alan Sternd34d9722009-03-09 13:44:48 -0400289static void async_removepending(struct async *as)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800291 struct dev_state *ps = as->ps;
292 unsigned long flags;
293
294 spin_lock_irqsave(&ps->lock, flags);
295 list_del_init(&as->asynclist);
296 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Alan Sternd34d9722009-03-09 13:44:48 -0400299static struct async *async_getcompleted(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800301 unsigned long flags;
302 struct async *as = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800304 spin_lock_irqsave(&ps->lock, flags);
305 if (!list_empty(&ps->async_completed)) {
306 as = list_entry(ps->async_completed.next, struct async,
307 asynclist);
308 list_del_init(&as->asynclist);
309 }
310 spin_unlock_irqrestore(&ps->lock, flags);
311 return as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Alan Sternd34d9722009-03-09 13:44:48 -0400314static struct async *async_getpending(struct dev_state *ps,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800315 void __user *userurb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800317 unsigned long flags;
318 struct async *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800320 spin_lock_irqsave(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 list_for_each_entry(as, &ps->async_pending, asynclist)
322 if (as->userurb == userurb) {
323 list_del_init(&as->asynclist);
324 spin_unlock_irqrestore(&ps->lock, flags);
325 return as;
326 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800327 spin_unlock_irqrestore(&ps->lock, flags);
328 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Alan Stern4c6e8972009-06-29 11:02:04 -0400331static void snoop_urb(struct usb_device *udev,
332 void __user *userurb, int pipe, unsigned length,
Chris Frey0880aef2010-01-26 17:07:29 -0500333 int timeout_or_status, enum snoop_when when,
334 unsigned char *data, unsigned data_len)
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700335{
Alan Stern4c6e8972009-06-29 11:02:04 -0400336 static const char *types[] = {"isoc", "int", "ctrl", "bulk"};
337 static const char *dirs[] = {"out", "in"};
338 int ep;
339 const char *t, *d;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700340
341 if (!usbfs_snoop)
342 return;
343
Alan Stern4c6e8972009-06-29 11:02:04 -0400344 ep = usb_pipeendpoint(pipe);
345 t = types[usb_pipetype(pipe)];
346 d = dirs[!!usb_pipein(pipe)];
347
348 if (userurb) { /* Async */
349 if (when == SUBMIT)
350 dev_info(&udev->dev, "userurb %p, ep%d %s-%s, "
351 "length %u\n",
352 userurb, ep, t, d, length);
353 else
354 dev_info(&udev->dev, "userurb %p, ep%d %s-%s, "
355 "actual_length %u status %d\n",
356 userurb, ep, t, d, length,
357 timeout_or_status);
358 } else {
359 if (when == SUBMIT)
360 dev_info(&udev->dev, "ep%d %s-%s, length %u, "
361 "timeout %d\n",
362 ep, t, d, length, timeout_or_status);
363 else
364 dev_info(&udev->dev, "ep%d %s-%s, actual_length %u, "
365 "status %d\n",
366 ep, t, d, length, timeout_or_status);
367 }
Chris Frey0880aef2010-01-26 17:07:29 -0500368
369 if (data && data_len > 0) {
370 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
371 data, data_len, 1);
372 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700373}
374
Alan Stern01c64602009-09-01 11:09:56 -0400375#define AS_CONTINUATION 1
376#define AS_UNLINK 2
377
378static void cancel_bulk_urbs(struct dev_state *ps, unsigned bulk_addr)
379__releases(ps->lock)
380__acquires(ps->lock)
381{
382 struct async *as;
383
384 /* Mark all the pending URBs that match bulk_addr, up to but not
385 * including the first one without AS_CONTINUATION. If such an
386 * URB is encountered then a new transfer has already started so
387 * the endpoint doesn't need to be disabled; otherwise it does.
388 */
389 list_for_each_entry(as, &ps->async_pending, asynclist) {
390 if (as->bulk_addr == bulk_addr) {
391 if (as->bulk_status != AS_CONTINUATION)
392 goto rescan;
393 as->bulk_status = AS_UNLINK;
394 as->bulk_addr = 0;
395 }
396 }
397 ps->disabled_bulk_eps |= (1 << bulk_addr);
398
399 /* Now carefully unlink all the marked pending URBs */
400 rescan:
401 list_for_each_entry(as, &ps->async_pending, asynclist) {
402 if (as->bulk_status == AS_UNLINK) {
403 as->bulk_status = 0; /* Only once */
404 spin_unlock(&ps->lock); /* Allow completions */
405 usb_unlink_urb(as->urb);
406 spin_lock(&ps->lock);
407 goto rescan;
408 }
409 }
410}
411
David Howells7d12e782006-10-05 14:55:46 +0100412static void async_completed(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800414 struct async *as = urb->context;
415 struct dev_state *ps = as->ps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct siginfo sinfo;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200417 struct pid *pid = NULL;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200418 u32 secid = 0;
Serge Hallynd178bc32011-09-26 10:45:18 -0500419 const struct cred *cred = NULL;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200420 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800422 spin_lock(&ps->lock);
423 list_move_tail(&as->asynclist, &ps->async_completed);
Alan Sterne0152682007-08-24 15:42:52 -0400424 as->status = urb->status;
Oliver Neukum516a1a02009-07-08 19:09:23 +0200425 signr = as->signr;
426 if (signr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 sinfo.si_signo = as->signr;
Alan Sterne0152682007-08-24 15:42:52 -0400428 sinfo.si_errno = as->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 sinfo.si_code = SI_ASYNCIO;
430 sinfo.si_addr = as->userurb;
Serge Hallynaec01c52011-09-26 10:18:29 -0500431 pid = get_pid(as->pid);
Serge Hallynd178bc32011-09-26 10:45:18 -0500432 cred = get_cred(as->cred);
Oliver Neukum516a1a02009-07-08 19:09:23 +0200433 secid = as->secid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700435 snoop(&urb->dev->dev, "urb complete\n");
Alan Stern4c6e8972009-06-29 11:02:04 -0400436 snoop_urb(urb->dev, as->userurb, urb->pipe, urb->actual_length,
Chris Frey0880aef2010-01-26 17:07:29 -0500437 as->status, COMPLETE,
438 ((urb->transfer_flags & URB_DIR_MASK) == USB_DIR_OUT) ?
439 NULL : urb->transfer_buffer, urb->actual_length);
Alan Stern01c64602009-09-01 11:09:56 -0400440 if (as->status < 0 && as->bulk_addr && as->status != -ECONNRESET &&
441 as->status != -ENOENT)
442 cancel_bulk_urbs(ps, as->bulk_addr);
Oliver Neukum516a1a02009-07-08 19:09:23 +0200443 spin_unlock(&ps->lock);
444
Serge Hallynaec01c52011-09-26 10:18:29 -0500445 if (signr) {
Serge Hallynd178bc32011-09-26 10:45:18 -0500446 kill_pid_info_as_cred(sinfo.si_signo, &sinfo, pid, cred, secid);
Serge Hallynaec01c52011-09-26 10:18:29 -0500447 put_pid(pid);
Serge Hallynd178bc32011-09-26 10:45:18 -0500448 put_cred(cred);
Serge Hallynaec01c52011-09-26 10:18:29 -0500449 }
Oliver Neukum516a1a02009-07-08 19:09:23 +0200450
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700451 wake_up(&ps->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800454static void destroy_async(struct dev_state *ps, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 struct async *as;
457 unsigned long flags;
458
459 spin_lock_irqsave(&ps->lock, flags);
460 while (!list_empty(list)) {
461 as = list_entry(list->next, struct async, asynclist);
462 list_del_init(&as->asynclist);
463
464 /* drop the spinlock so the completion handler can run */
465 spin_unlock_irqrestore(&ps->lock, flags);
466 usb_kill_urb(as->urb);
467 spin_lock_irqsave(&ps->lock, flags);
468 }
469 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800472static void destroy_async_on_interface(struct dev_state *ps,
473 unsigned int ifnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct list_head *p, *q, hitlist;
476 unsigned long flags;
477
478 INIT_LIST_HEAD(&hitlist);
479 spin_lock_irqsave(&ps->lock, flags);
480 list_for_each_safe(p, q, &ps->async_pending)
481 if (ifnum == list_entry(p, struct async, asynclist)->ifnum)
482 list_move_tail(p, &hitlist);
483 spin_unlock_irqrestore(&ps->lock, flags);
484 destroy_async(ps, &hitlist);
485}
486
Alan Sternd34d9722009-03-09 13:44:48 -0400487static void destroy_all_async(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800489 destroy_async(ps, &ps->async_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492/*
493 * interface claims are made only at the request of user level code,
494 * which can also release them (explicitly or by closing files).
495 * they're also undone when devices disconnect.
496 */
497
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800498static int driver_probe(struct usb_interface *intf,
499 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 return -ENODEV;
502}
503
504static void driver_disconnect(struct usb_interface *intf)
505{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800506 struct dev_state *ps = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 unsigned int ifnum = intf->altsetting->desc.bInterfaceNumber;
508
509 if (!ps)
510 return;
511
512 /* NOTE: this relies on usbcore having canceled and completed
513 * all pending I/O requests; 2.6 does that.
514 */
515
516 if (likely(ifnum < 8*sizeof(ps->ifclaimed)))
517 clear_bit(ifnum, &ps->ifclaimed);
518 else
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700519 dev_warn(&intf->dev, "interface number %u out of range\n",
520 ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800522 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /* force async requests to complete */
525 destroy_async_on_interface(ps, ifnum);
526}
527
Alan Stern2e2eb832007-12-04 14:35:15 -0500528/* The following routines are merely placeholders. There is no way
529 * to inform a user task about suspend or resumes.
530 */
531static int driver_suspend(struct usb_interface *intf, pm_message_t msg)
532{
533 return 0;
534}
535
536static int driver_resume(struct usb_interface *intf)
537{
538 return 0;
539}
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541struct usb_driver usbfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 .name = "usbfs",
543 .probe = driver_probe,
544 .disconnect = driver_disconnect,
Alan Stern2e2eb832007-12-04 14:35:15 -0500545 .suspend = driver_suspend,
546 .resume = driver_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547};
548
549static int claimintf(struct dev_state *ps, unsigned int ifnum)
550{
551 struct usb_device *dev = ps->dev;
552 struct usb_interface *intf;
553 int err;
554
555 if (ifnum >= 8*sizeof(ps->ifclaimed))
556 return -EINVAL;
557 /* already claimed */
558 if (test_bit(ifnum, &ps->ifclaimed))
559 return 0;
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 intf = usb_ifnum_to_if(dev, ifnum);
562 if (!intf)
563 err = -ENOENT;
564 else
565 err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (err == 0)
567 set_bit(ifnum, &ps->ifclaimed);
568 return err;
569}
570
571static int releaseintf(struct dev_state *ps, unsigned int ifnum)
572{
573 struct usb_device *dev;
574 struct usb_interface *intf;
575 int err;
576
577 err = -EINVAL;
578 if (ifnum >= 8*sizeof(ps->ifclaimed))
579 return err;
580 dev = ps->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 intf = usb_ifnum_to_if(dev, ifnum);
582 if (!intf)
583 err = -ENOENT;
584 else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
585 usb_driver_release_interface(&usbfs_driver, intf);
586 err = 0;
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return err;
589}
590
591static int checkintf(struct dev_state *ps, unsigned int ifnum)
592{
593 if (ps->dev->state != USB_STATE_CONFIGURED)
594 return -EHOSTUNREACH;
595 if (ifnum >= 8*sizeof(ps->ifclaimed))
596 return -EINVAL;
597 if (test_bit(ifnum, &ps->ifclaimed))
598 return 0;
599 /* if not yet claimed, claim it for the driver */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800600 dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
601 "interface %u before use\n", task_pid_nr(current),
602 current->comm, ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return claimintf(ps, ifnum);
604}
605
606static int findintfep(struct usb_device *dev, unsigned int ep)
607{
608 unsigned int i, j, e;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800609 struct usb_interface *intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct usb_host_interface *alts;
611 struct usb_endpoint_descriptor *endpt;
612
613 if (ep & ~(USB_DIR_IN|0xf))
614 return -EINVAL;
615 if (!dev->actconfig)
616 return -ESRCH;
617 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
618 intf = dev->actconfig->interface[i];
619 for (j = 0; j < intf->num_altsetting; j++) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800620 alts = &intf->altsetting[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 for (e = 0; e < alts->desc.bNumEndpoints; e++) {
622 endpt = &alts->endpoint[e].desc;
623 if (endpt->bEndpointAddress == ep)
624 return alts->desc.bInterfaceNumber;
625 }
626 }
627 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800628 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800631static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype,
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200632 unsigned int request, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 int ret = 0;
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200635 struct usb_host_interface *alt_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
David Vrabel6da9c992009-02-18 14:43:47 +0000637 if (ps->dev->state != USB_STATE_UNAUTHENTICATED
638 && ps->dev->state != USB_STATE_ADDRESS
Horst Schirmeier24f8b112006-03-11 00:16:55 -0800639 && ps->dev->state != USB_STATE_CONFIGURED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return -EHOSTUNREACH;
641 if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
642 return 0;
643
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200644 /*
645 * check for the special corner case 'get_device_id' in the printer
646 * class specification, where wIndex is (interface << 8 | altsetting)
647 * instead of just interface
648 */
649 if (requesttype == 0xa1 && request == 0) {
650 alt_setting = usb_find_alt_setting(ps->dev->actconfig,
651 index >> 8, index & 0xff);
652 if (alt_setting
653 && alt_setting->desc.bInterfaceClass == USB_CLASS_PRINTER)
654 index >>= 8;
655 }
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 index &= 0xff;
658 switch (requesttype & USB_RECIP_MASK) {
659 case USB_RECIP_ENDPOINT:
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800660 ret = findintfep(ps->dev, index);
661 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 ret = checkintf(ps, ret);
663 break;
664
665 case USB_RECIP_INTERFACE:
666 ret = checkintf(ps, index);
667 break;
668 }
669 return ret;
670}
671
Alan Stern61ad04a2008-06-24 14:47:12 -0400672static int match_devt(struct device *dev, void *data)
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700673{
David Howellsa80d5ff2008-07-02 12:28:55 +0100674 return dev->devt == (dev_t) (unsigned long) data;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100675}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700676
Alan Stern61ad04a2008-06-24 14:47:12 -0400677static struct usb_device *usbdev_lookup_by_devt(dev_t devt)
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100678{
679 struct device *dev;
680
David Howellsa80d5ff2008-07-02 12:28:55 +0100681 dev = bus_find_device(&usb_bus_type, NULL,
682 (void *) (unsigned long) devt, match_devt);
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100683 if (!dev)
684 return NULL;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100685 return container_of(dev, struct usb_device, dev);
686}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688/*
689 * file operations
690 */
691static int usbdev_open(struct inode *inode, struct file *file)
692{
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200693 struct usb_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 struct dev_state *ps;
695 int ret;
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 ret = -ENOMEM;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800698 ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
699 if (!ps)
Alan Stern62e299e2010-01-08 12:56:19 -0500700 goto out_free_ps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Alan Stern01105a22009-07-30 15:28:14 -0400702 ret = -ENODEV;
Alan Stern61ad04a2008-06-24 14:47:12 -0400703
Alan Stern62e299e2010-01-08 12:56:19 -0500704 /* Protect against simultaneous removal or release */
705 mutex_lock(&usbfs_mutex);
706
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100707 /* usbdev device-node */
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200708 if (imajor(inode) == USB_DEVICE_MAJOR)
Alan Stern61ad04a2008-06-24 14:47:12 -0400709 dev = usbdev_lookup_by_devt(inode->i_rdev);
Alan Stern62e299e2010-01-08 12:56:19 -0500710
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100711#ifdef CONFIG_USB_DEVICEFS
712 /* procfs file */
Alan Sternd64aac32008-06-24 14:47:19 -0400713 if (!dev) {
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700714 dev = inode->i_private;
Alan Sternd64aac32008-06-24 14:47:19 -0400715 if (dev && dev->usbfs_dentry &&
716 dev->usbfs_dentry->d_inode == inode)
717 usb_get_dev(dev);
718 else
719 dev = NULL;
720 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100721#endif
Alan Stern62e299e2010-01-08 12:56:19 -0500722 mutex_unlock(&usbfs_mutex);
723
724 if (!dev)
725 goto out_free_ps;
726
727 usb_lock_device(dev);
728 if (dev->state == USB_STATE_NOTATTACHED)
729 goto out_unlock_device;
730
Alan Stern94fcda12006-11-20 11:38:46 -0500731 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -0400732 if (ret)
Alan Stern62e299e2010-01-08 12:56:19 -0500733 goto out_unlock_device;
Alan Stern01d883d2006-08-30 15:47:18 -0400734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 ps->dev = dev;
736 ps->file = file;
737 spin_lock_init(&ps->lock);
Dan Carpenter316547f2006-12-13 00:03:38 -0800738 INIT_LIST_HEAD(&ps->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 INIT_LIST_HEAD(&ps->async_pending);
740 INIT_LIST_HEAD(&ps->async_completed);
741 init_waitqueue_head(&ps->wait);
742 ps->discsignr = 0;
Eric W. Biederman2425c082006-10-02 02:17:28 -0700743 ps->disc_pid = get_pid(task_pid(current));
Serge Hallynd178bc32011-09-26 10:45:18 -0500744 ps->cred = get_current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 ps->disccontext = NULL;
746 ps->ifclaimed = 0;
David Quigley7a019552006-06-30 01:55:48 -0700747 security_task_getsecid(current, &ps->secid);
Oliver Neukum527660a2007-04-20 20:50:48 +0200748 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 list_add_tail(&ps->list, &dev->filelist);
750 file->private_data = ps;
Alan Stern62e299e2010-01-08 12:56:19 -0500751 usb_unlock_device(dev);
Alan Stern2da41d52008-10-06 11:24:26 -0400752 snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
753 current->comm);
Alan Stern62e299e2010-01-08 12:56:19 -0500754 return ret;
755
756 out_unlock_device:
757 usb_unlock_device(dev);
758 usb_put_dev(dev);
759 out_free_ps:
760 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400761 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
764static int usbdev_release(struct inode *inode, struct file *file)
765{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200766 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 struct usb_device *dev = ps->dev;
768 unsigned int ifnum;
Alan Stern6ff10462009-03-09 13:44:02 -0400769 struct async *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 usb_lock_device(dev);
Alan Stern7cbe5dc2009-06-29 10:56:54 -0400772 usb_hub_release_all_ports(dev, ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 list_del_init(&ps->list);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
777 ifnum++) {
778 if (test_bit(ifnum, &ps->ifclaimed))
779 releaseintf(ps, ifnum);
780 }
781 destroy_all_async(ps);
Alan Stern94fcda12006-11-20 11:38:46 -0500782 usb_autosuspend_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 usb_unlock_device(dev);
784 usb_put_dev(dev);
Eric W. Biederman2425c082006-10-02 02:17:28 -0700785 put_pid(ps->disc_pid);
Serge Hallynd178bc32011-09-26 10:45:18 -0500786 put_cred(ps->cred);
Alan Stern6ff10462009-03-09 13:44:02 -0400787
788 as = async_getcompleted(ps);
789 while (as) {
790 free_async(as);
791 as = async_getcompleted(ps);
792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400794 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797static int proc_control(struct dev_state *ps, void __user *arg)
798{
799 struct usb_device *dev = ps->dev;
800 struct usbdevfs_ctrltransfer ctrl;
801 unsigned int tmo;
802 unsigned char *tbuf;
Andrew Mortonff66e3c2008-03-12 13:32:24 -0700803 unsigned wLength;
Alan Stern4c6e8972009-06-29 11:02:04 -0400804 int i, pipe, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
807 return -EFAULT;
Matthias Dellweg393cbb52011-09-25 14:26:25 +0200808 ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.bRequest,
809 ctrl.wIndex);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800810 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return ret;
Andrew Mortonff66e3c2008-03-12 13:32:24 -0700812 wLength = ctrl.wLength; /* To suppress 64k PAGE_SIZE warning */
813 if (wLength > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return -EINVAL;
Alan Sternadd1aae2011-11-17 16:41:25 -0500815 ret = usbfs_increase_memory_usage(PAGE_SIZE + sizeof(struct urb) +
816 sizeof(struct usb_ctrlrequest));
817 if (ret)
818 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800819 tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
Alan Sternadd1aae2011-11-17 16:41:25 -0500820 if (!tbuf) {
821 ret = -ENOMEM;
822 goto done;
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 tmo = ctrl.timeout;
Chris Frey0880aef2010-01-26 17:07:29 -0500825 snoop(&dev->dev, "control urb: bRequestType=%02x "
826 "bRequest=%02x wValue=%04x "
827 "wIndex=%04x wLength=%04x\n",
828 ctrl.bRequestType, ctrl.bRequest,
829 __le16_to_cpup(&ctrl.wValue),
830 __le16_to_cpup(&ctrl.wIndex),
831 __le16_to_cpup(&ctrl.wLength));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (ctrl.bRequestType & 0x80) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800833 if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
834 ctrl.wLength)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500835 ret = -EINVAL;
836 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
Alan Stern4c6e8972009-06-29 11:02:04 -0400838 pipe = usb_rcvctrlpipe(dev, 0);
Chris Frey0880aef2010-01-26 17:07:29 -0500839 snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 usb_unlock_device(dev);
Alan Stern4c6e8972009-06-29 11:02:04 -0400842 i = usb_control_msg(dev, pipe, ctrl.bRequest,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800843 ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
844 tbuf, ctrl.wLength, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -0500846 snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE,
Michal Sojka9d02b422011-03-15 16:41:47 +0100847 tbuf, max(i, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if ((i > 0) && ctrl.wLength) {
Alan Sternfe0410c2005-07-29 12:16:58 -0700849 if (copy_to_user(ctrl.data, tbuf, i)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500850 ret = -EFAULT;
851 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853 }
854 } else {
855 if (ctrl.wLength) {
856 if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500857 ret = -EFAULT;
858 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860 }
Alan Stern4c6e8972009-06-29 11:02:04 -0400861 pipe = usb_sndctrlpipe(dev, 0);
Chris Frey0880aef2010-01-26 17:07:29 -0500862 snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT,
863 tbuf, ctrl.wLength);
Alan Stern4c6e8972009-06-29 11:02:04 -0400864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 usb_unlock_device(dev);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800866 i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
867 ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
868 tbuf, ctrl.wLength, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -0500870 snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800872 if (i < 0 && i != -EPIPE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
874 "failed cmd %s rqt %u rq %u len %u ret %d\n",
875 current->comm, ctrl.bRequestType, ctrl.bRequest,
876 ctrl.wLength, i);
877 }
Alan Stern52fb7432011-11-17 16:41:14 -0500878 ret = i;
879 done:
880 free_page((unsigned long) tbuf);
Alan Sternadd1aae2011-11-17 16:41:25 -0500881 usbfs_decrease_memory_usage(PAGE_SIZE + sizeof(struct urb) +
882 sizeof(struct usb_ctrlrequest));
Alan Stern52fb7432011-11-17 16:41:14 -0500883 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
886static int proc_bulk(struct dev_state *ps, void __user *arg)
887{
888 struct usb_device *dev = ps->dev;
889 struct usbdevfs_bulktransfer bulk;
890 unsigned int tmo, len1, pipe;
891 int len2;
892 unsigned char *tbuf;
Alan Stern4c6e8972009-06-29 11:02:04 -0400893 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 if (copy_from_user(&bulk, arg, sizeof(bulk)))
896 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800897 ret = findintfep(ps->dev, bulk.ep);
898 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800900 ret = checkintf(ps, ret);
901 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return ret;
903 if (bulk.ep & USB_DIR_IN)
904 pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
905 else
906 pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
907 if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
908 return -EINVAL;
909 len1 = bulk.len;
Alan Sternadd1aae2011-11-17 16:41:25 -0500910 if (len1 > MAX_USBFS_MEMORY_USAGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return -EINVAL;
Alan Sternadd1aae2011-11-17 16:41:25 -0500912 ret = usbfs_increase_memory_usage(len1 + sizeof(struct urb));
913 if (ret)
914 return ret;
915 if (!(tbuf = kmalloc(len1, GFP_KERNEL))) {
916 ret = -ENOMEM;
917 goto done;
918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 tmo = bulk.timeout;
920 if (bulk.ep & 0x80) {
921 if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500922 ret = -EINVAL;
923 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
Chris Frey0880aef2010-01-26 17:07:29 -0500925 snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, NULL, 0);
Alan Stern4c6e8972009-06-29 11:02:04 -0400926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 usb_unlock_device(dev);
928 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
929 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -0500930 snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, tbuf, len2);
Alan Stern4c6e8972009-06-29 11:02:04 -0400931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (!i && len2) {
933 if (copy_to_user(bulk.data, tbuf, len2)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500934 ret = -EFAULT;
935 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937 }
938 } else {
939 if (len1) {
940 if (copy_from_user(tbuf, bulk.data, len1)) {
Alan Stern52fb7432011-11-17 16:41:14 -0500941 ret = -EFAULT;
942 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944 }
Chris Frey0880aef2010-01-26 17:07:29 -0500945 snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, tbuf, len1);
Alan Stern4c6e8972009-06-29 11:02:04 -0400946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 usb_unlock_device(dev);
948 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
949 usb_lock_device(dev);
Chris Frey0880aef2010-01-26 17:07:29 -0500950 snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
Alan Stern52fb7432011-11-17 16:41:14 -0500952 ret = (i < 0 ? i : len2);
953 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 kfree(tbuf);
Alan Sternadd1aae2011-11-17 16:41:25 -0500955 usbfs_decrease_memory_usage(len1 + sizeof(struct urb));
Alan Stern52fb7432011-11-17 16:41:14 -0500956 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
959static int proc_resetep(struct dev_state *ps, void __user *arg)
960{
961 unsigned int ep;
962 int ret;
963
964 if (get_user(ep, (unsigned int __user *)arg))
965 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800966 ret = findintfep(ps->dev, ep);
967 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800969 ret = checkintf(ps, ret);
970 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return ret;
David Vrabel3444b262009-04-08 17:36:28 +0000972 usb_reset_endpoint(ps->dev, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return 0;
974}
975
976static int proc_clearhalt(struct dev_state *ps, void __user *arg)
977{
978 unsigned int ep;
979 int pipe;
980 int ret;
981
982 if (get_user(ep, (unsigned int __user *)arg))
983 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800984 ret = findintfep(ps->dev, ep);
985 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800987 ret = checkintf(ps, ret);
988 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return ret;
990 if (ep & USB_DIR_IN)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800991 pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
992 else
993 pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 return usb_clear_halt(ps->dev, pipe);
996}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998static int proc_getdriver(struct dev_state *ps, void __user *arg)
999{
1000 struct usbdevfs_getdriver gd;
1001 struct usb_interface *intf;
1002 int ret;
1003
1004 if (copy_from_user(&gd, arg, sizeof(gd)))
1005 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 intf = usb_ifnum_to_if(ps->dev, gd.interface);
1007 if (!intf || !intf->dev.driver)
1008 ret = -ENODATA;
1009 else {
1010 strncpy(gd.driver, intf->dev.driver->name,
1011 sizeof(gd.driver));
1012 ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
1013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return ret;
1015}
1016
1017static int proc_connectinfo(struct dev_state *ps, void __user *arg)
1018{
Vasiliy Kulikov886ccd42010-11-06 17:41:28 +03001019 struct usbdevfs_connectinfo ci = {
1020 .devnum = ps->dev->devnum,
1021 .slow = ps->dev->speed == USB_SPEED_LOW
1022 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (copy_to_user(arg, &ci, sizeof(ci)))
1025 return -EFAULT;
1026 return 0;
1027}
1028
1029static int proc_resetdevice(struct dev_state *ps)
1030{
Ming Lei742120c2008-06-18 22:00:29 +08001031 return usb_reset_device(ps->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032}
1033
1034static int proc_setintf(struct dev_state *ps, void __user *arg)
1035{
1036 struct usbdevfs_setinterface setintf;
1037 int ret;
1038
1039 if (copy_from_user(&setintf, arg, sizeof(setintf)))
1040 return -EFAULT;
1041 if ((ret = checkintf(ps, setintf.interface)))
1042 return ret;
1043 return usb_set_interface(ps->dev, setintf.interface,
1044 setintf.altsetting);
1045}
1046
1047static int proc_setconfig(struct dev_state *ps, void __user *arg)
1048{
Alan Stern3f141e22007-02-08 16:40:43 -05001049 int u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 int status = 0;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001051 struct usb_host_config *actconfig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Alan Stern3f141e22007-02-08 16:40:43 -05001053 if (get_user(u, (int __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return -EFAULT;
1055
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001056 actconfig = ps->dev->actconfig;
1057
1058 /* Don't touch the device if any interfaces are claimed.
1059 * It could interfere with other drivers' operations, and if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 * an interface is claimed by usbfs it could easily deadlock.
1061 */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001062 if (actconfig) {
1063 int i;
1064
1065 for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
1066 if (usb_interface_claimed(actconfig->interface[i])) {
1067 dev_warn(&ps->dev->dev,
David Brownell72ebddb2005-04-11 18:34:17 -07001068 "usbfs: interface %d claimed by %s "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 "while '%s' sets config #%d\n",
1070 actconfig->interface[i]
1071 ->cur_altsetting
1072 ->desc.bInterfaceNumber,
David Brownell72ebddb2005-04-11 18:34:17 -07001073 actconfig->interface[i]
1074 ->dev.driver->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 current->comm, u);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001076 status = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001079 }
1080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
1083 * so avoid usb_set_configuration()'s kick to sysfs
1084 */
1085 if (status == 0) {
1086 if (actconfig && actconfig->desc.bConfigurationValue == u)
1087 status = usb_reset_configuration(ps->dev);
1088 else
1089 status = usb_set_configuration(ps->dev, u);
1090 }
1091
1092 return status;
1093}
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001096 struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
1097 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
1099 struct usbdevfs_iso_packet_desc *isopkt = NULL;
1100 struct usb_host_endpoint *ep;
Alan Stern52fb7432011-11-17 16:41:14 -05001101 struct async *as = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 struct usb_ctrlrequest *dr = NULL;
1103 unsigned int u, totlen, isofrmlen;
Alan Stern97b9eb92007-02-26 14:56:14 -05001104 int ret, ifnum = -1;
Alan Stern93cf9b92007-07-30 17:09:28 -04001105 int is_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Alan Stern14722ef2008-04-17 10:18:11 -04001107 if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP |
1108 USBDEVFS_URB_SHORT_NOT_OK |
Alan Stern01c64602009-09-01 11:09:56 -04001109 USBDEVFS_URB_BULK_CONTINUATION |
Alan Stern14722ef2008-04-17 10:18:11 -04001110 USBDEVFS_URB_NO_FSBR |
1111 USBDEVFS_URB_ZERO_PACKET |
1112 USBDEVFS_URB_NO_INTERRUPT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return -EINVAL;
Alan Stern91801352009-06-29 11:04:54 -04001114 if (uurb->buffer_length > 0 && !uurb->buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001116 if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
1117 (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
1118 ifnum = findintfep(ps->dev, uurb->endpoint);
1119 if (ifnum < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 return ifnum;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001121 ret = checkintf(ps, ifnum);
1122 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 return ret;
1124 }
Alan Stern93cf9b92007-07-30 17:09:28 -04001125 if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
1126 is_in = 1;
1127 ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
1128 } else {
1129 is_in = 0;
1130 ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
1131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (!ep)
1133 return -ENOENT;
Alan Sternadd1aae2011-11-17 16:41:25 -05001134
1135 u = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 switch(uurb->type) {
1137 case USBDEVFS_URB_TYPE_CONTROL:
Alan Stern93cf9b92007-07-30 17:09:28 -04001138 if (!usb_endpoint_xfer_control(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return -EINVAL;
Alan Sternadd1aae2011-11-17 16:41:25 -05001140 /* min 8 byte setup packet */
1141 if (uurb->buffer_length < 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001143 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
1144 if (!dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return -ENOMEM;
1146 if (copy_from_user(dr, uurb->buffer, 8)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001147 ret = -EFAULT;
1148 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150 if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001151 ret = -EINVAL;
1152 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
Matthias Dellweg393cbb52011-09-25 14:26:25 +02001154 ret = check_ctrlrecip(ps, dr->bRequestType, dr->bRequest,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001155 le16_to_cpup(&dr->wIndex));
Alan Stern52fb7432011-11-17 16:41:14 -05001156 if (ret)
1157 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 uurb->number_of_packets = 0;
1159 uurb->buffer_length = le16_to_cpup(&dr->wLength);
1160 uurb->buffer += 8;
Alan Stern93cf9b92007-07-30 17:09:28 -04001161 if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
1162 is_in = 1;
1163 uurb->endpoint |= USB_DIR_IN;
1164 } else {
1165 is_in = 0;
1166 uurb->endpoint &= ~USB_DIR_IN;
1167 }
Chris Frey0880aef2010-01-26 17:07:29 -05001168 snoop(&ps->dev->dev, "control urb: bRequestType=%02x "
1169 "bRequest=%02x wValue=%04x "
1170 "wIndex=%04x wLength=%04x\n",
1171 dr->bRequestType, dr->bRequest,
1172 __le16_to_cpup(&dr->wValue),
1173 __le16_to_cpup(&dr->wIndex),
1174 __le16_to_cpup(&dr->wLength));
Alan Sternadd1aae2011-11-17 16:41:25 -05001175 u = sizeof(struct usb_ctrlrequest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 break;
1177
1178 case USBDEVFS_URB_TYPE_BULK:
Alan Stern93cf9b92007-07-30 17:09:28 -04001179 switch (usb_endpoint_type(&ep->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 case USB_ENDPOINT_XFER_CONTROL:
1181 case USB_ENDPOINT_XFER_ISOC:
1182 return -EINVAL;
Alan Sternf661c6f2009-12-11 16:20:20 -05001183 case USB_ENDPOINT_XFER_INT:
1184 /* allow single-shot interrupt transfers */
1185 uurb->type = USBDEVFS_URB_TYPE_INTERRUPT;
1186 goto interrupt_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188 uurb->number_of_packets = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 break;
1190
Alan Sternf661c6f2009-12-11 16:20:20 -05001191 case USBDEVFS_URB_TYPE_INTERRUPT:
1192 if (!usb_endpoint_xfer_int(&ep->desc))
1193 return -EINVAL;
1194 interrupt_urb:
1195 uurb->number_of_packets = 0;
Alan Sternf661c6f2009-12-11 16:20:20 -05001196 break;
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 case USBDEVFS_URB_TYPE_ISO:
1199 /* arbitrary limit */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001200 if (uurb->number_of_packets < 1 ||
1201 uurb->number_of_packets > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001203 if (!usb_endpoint_xfer_isoc(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001205 isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
1206 uurb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
1208 return -ENOMEM;
1209 if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001210 ret = -EFAULT;
1211 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
1213 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001214 /* arbitrary limit,
1215 * sufficient for USB 2.0 high-bandwidth iso */
Micah Dowty36122422006-05-19 11:26:24 -07001216 if (isopkt[u].length > 8192) {
Alan Stern52fb7432011-11-17 16:41:14 -05001217 ret = -EINVAL;
1218 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220 totlen += isopkt[u].length;
1221 }
Alan Sternadd1aae2011-11-17 16:41:25 -05001222 u *= sizeof(struct usb_iso_packet_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 uurb->buffer_length = totlen;
1224 break;
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 default:
1227 return -EINVAL;
1228 }
Alan Sternadd1aae2011-11-17 16:41:25 -05001229
1230 if (uurb->buffer_length > MAX_USBFS_MEMORY_USAGE) {
1231 ret = -EINVAL;
1232 goto error;
1233 }
Alan Stern91801352009-06-29 11:04:54 -04001234 if (uurb->buffer_length > 0 &&
1235 !access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1236 uurb->buffer, uurb->buffer_length)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001237 ret = -EFAULT;
1238 goto error;
Alan Stern91801352009-06-29 11:04:54 -04001239 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001240 as = alloc_async(uurb->number_of_packets);
1241 if (!as) {
Alan Stern52fb7432011-11-17 16:41:14 -05001242 ret = -ENOMEM;
1243 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
Alan Sternadd1aae2011-11-17 16:41:25 -05001245 u += sizeof(struct async) + sizeof(struct urb) + uurb->buffer_length;
1246 ret = usbfs_increase_memory_usage(u);
1247 if (ret)
1248 goto error;
1249 as->mem_usage = u;
1250
Alan Stern91801352009-06-29 11:04:54 -04001251 if (uurb->buffer_length > 0) {
1252 as->urb->transfer_buffer = kmalloc(uurb->buffer_length,
1253 GFP_KERNEL);
1254 if (!as->urb->transfer_buffer) {
Alan Stern52fb7432011-11-17 16:41:14 -05001255 ret = -ENOMEM;
1256 goto error;
Alan Stern91801352009-06-29 11:04:54 -04001257 }
Alan Stern7152b592010-03-06 15:04:03 -05001258 /* Isochronous input data may end up being discontiguous
1259 * if some of the packets are short. Clear the buffer so
1260 * that the gaps don't leak kernel data to userspace.
1261 */
1262 if (is_in && uurb->type == USBDEVFS_URB_TYPE_ISO)
1263 memset(as->urb->transfer_buffer, 0,
1264 uurb->buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001266 as->urb->dev = ps->dev;
1267 as->urb->pipe = (uurb->type << 30) |
Alan Stern93cf9b92007-07-30 17:09:28 -04001268 __create_pipe(ps->dev, uurb->endpoint & 0xf) |
1269 (uurb->endpoint & USB_DIR_IN);
Alan Stern14722ef2008-04-17 10:18:11 -04001270
1271 /* This tedious sequence is necessary because the URB_* flags
1272 * are internal to the kernel and subject to change, whereas
1273 * the USBDEVFS_URB_* flags are a user API and must not be changed.
1274 */
1275 u = (is_in ? URB_DIR_IN : URB_DIR_OUT);
1276 if (uurb->flags & USBDEVFS_URB_ISO_ASAP)
1277 u |= URB_ISO_ASAP;
1278 if (uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
1279 u |= URB_SHORT_NOT_OK;
1280 if (uurb->flags & USBDEVFS_URB_NO_FSBR)
1281 u |= URB_NO_FSBR;
1282 if (uurb->flags & USBDEVFS_URB_ZERO_PACKET)
1283 u |= URB_ZERO_PACKET;
1284 if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
1285 u |= URB_NO_INTERRUPT;
1286 as->urb->transfer_flags = u;
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 as->urb->transfer_buffer_length = uurb->buffer_length;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001289 as->urb->setup_packet = (unsigned char *)dr;
Alan Stern52fb7432011-11-17 16:41:14 -05001290 dr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 as->urb->start_frame = uurb->start_frame;
1292 as->urb->number_of_packets = uurb->number_of_packets;
Alan Stern97b9eb92007-02-26 14:56:14 -05001293 if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
1294 ps->dev->speed == USB_SPEED_HIGH)
1295 as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
1296 else
1297 as->urb->interval = ep->desc.bInterval;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001298 as->urb->context = as;
1299 as->urb->complete = async_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
1301 as->urb->iso_frame_desc[u].offset = totlen;
1302 as->urb->iso_frame_desc[u].length = isopkt[u].length;
1303 totlen += isopkt[u].length;
1304 }
Jesper Juhl6fd19f4b2005-04-18 17:39:33 -07001305 kfree(isopkt);
Alan Stern52fb7432011-11-17 16:41:14 -05001306 isopkt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 as->ps = ps;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001308 as->userurb = arg;
Alan Stern91801352009-06-29 11:04:54 -04001309 if (is_in && uurb->buffer_length > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 as->userbuffer = uurb->buffer;
1311 else
1312 as->userbuffer = NULL;
1313 as->signr = uurb->signr;
1314 as->ifnum = ifnum;
Eric W. Biederman2425c082006-10-02 02:17:28 -07001315 as->pid = get_pid(task_pid(current));
Serge Hallynd178bc32011-09-26 10:45:18 -05001316 as->cred = get_current_cred();
David Quigley7a019552006-06-30 01:55:48 -07001317 security_task_getsecid(current, &as->secid);
Alan Stern91801352009-06-29 11:04:54 -04001318 if (!is_in && uurb->buffer_length > 0) {
Alan Stern93cf9b92007-07-30 17:09:28 -04001319 if (copy_from_user(as->urb->transfer_buffer, uurb->buffer,
Alan Stern91801352009-06-29 11:04:54 -04001320 uurb->buffer_length)) {
Alan Stern52fb7432011-11-17 16:41:14 -05001321 ret = -EFAULT;
1322 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
1324 }
Alan Stern4c6e8972009-06-29 11:02:04 -04001325 snoop_urb(ps->dev, as->userurb, as->urb->pipe,
Chris Frey0880aef2010-01-26 17:07:29 -05001326 as->urb->transfer_buffer_length, 0, SUBMIT,
1327 is_in ? NULL : as->urb->transfer_buffer,
1328 uurb->buffer_length);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001329 async_newpending(as);
Alan Stern01c64602009-09-01 11:09:56 -04001330
1331 if (usb_endpoint_xfer_bulk(&ep->desc)) {
1332 spin_lock_irq(&ps->lock);
1333
1334 /* Not exactly the endpoint address; the direction bit is
1335 * shifted to the 0x10 position so that the value will be
1336 * between 0 and 31.
1337 */
1338 as->bulk_addr = usb_endpoint_num(&ep->desc) |
1339 ((ep->desc.bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1340 >> 3);
1341
1342 /* If this bulk URB is the start of a new transfer, re-enable
1343 * the endpoint. Otherwise mark it as a continuation URB.
1344 */
1345 if (uurb->flags & USBDEVFS_URB_BULK_CONTINUATION)
1346 as->bulk_status = AS_CONTINUATION;
1347 else
1348 ps->disabled_bulk_eps &= ~(1 << as->bulk_addr);
1349
1350 /* Don't accept continuation URBs if the endpoint is
1351 * disabled because of an earlier error.
1352 */
1353 if (ps->disabled_bulk_eps & (1 << as->bulk_addr))
1354 ret = -EREMOTEIO;
1355 else
1356 ret = usb_submit_urb(as->urb, GFP_ATOMIC);
1357 spin_unlock_irq(&ps->lock);
1358 } else {
1359 ret = usb_submit_urb(as->urb, GFP_KERNEL);
1360 }
1361
1362 if (ret) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001363 dev_printk(KERN_DEBUG, &ps->dev->dev,
1364 "usbfs: usb_submit_urb returned %d\n", ret);
Alan Stern4c6e8972009-06-29 11:02:04 -04001365 snoop_urb(ps->dev, as->userurb, as->urb->pipe,
Chris Frey0880aef2010-01-26 17:07:29 -05001366 0, ret, COMPLETE, NULL, 0);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001367 async_removepending(as);
Alan Stern52fb7432011-11-17 16:41:14 -05001368 goto error;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001369 }
1370 return 0;
Alan Stern52fb7432011-11-17 16:41:14 -05001371
1372 error:
1373 kfree(isopkt);
1374 kfree(dr);
1375 if (as)
1376 free_async(as);
1377 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
1380static int proc_submiturb(struct dev_state *ps, void __user *arg)
1381{
1382 struct usbdevfs_urb uurb;
1383
1384 if (copy_from_user(&uurb, arg, sizeof(uurb)))
1385 return -EFAULT;
1386
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001387 return proc_do_submiturb(ps, &uurb,
1388 (((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
1389 arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
1392static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
1393{
1394 struct async *as;
1395
1396 as = async_getpending(ps, arg);
1397 if (!as)
1398 return -EINVAL;
1399 usb_kill_urb(as->urb);
1400 return 0;
1401}
1402
1403static int processcompl(struct async *as, void __user * __user *arg)
1404{
1405 struct urb *urb = as->urb;
1406 struct usbdevfs_urb __user *userurb = as->userurb;
1407 void __user *addr = as->userurb;
1408 unsigned int i;
1409
Alan Stern7152b592010-03-06 15:04:03 -05001410 if (as->userbuffer && urb->actual_length) {
1411 if (urb->number_of_packets > 0) /* Isochronous */
1412 i = urb->transfer_buffer_length;
1413 else /* Non-Isoc */
1414 i = urb->actual_length;
1415 if (copy_to_user(as->userbuffer, urb->transfer_buffer, i))
Oliver Neukumd794a022009-06-28 23:34:14 +02001416 goto err_out;
Alan Stern7152b592010-03-06 15:04:03 -05001417 }
Alan Sterne0152682007-08-24 15:42:52 -04001418 if (put_user(as->status, &userurb->status))
Oliver Neukumd794a022009-06-28 23:34:14 +02001419 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (put_user(urb->actual_length, &userurb->actual_length))
Oliver Neukumd794a022009-06-28 23:34:14 +02001421 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (put_user(urb->error_count, &userurb->error_count))
Oliver Neukumd794a022009-06-28 23:34:14 +02001423 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Alan Stern93cf9b92007-07-30 17:09:28 -04001425 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001426 for (i = 0; i < urb->number_of_packets; i++) {
1427 if (put_user(urb->iso_frame_desc[i].actual_length,
1428 &userurb->iso_frame_desc[i].actual_length))
Oliver Neukumd794a022009-06-28 23:34:14 +02001429 goto err_out;
Christopher Li668a9542005-04-18 17:39:26 -07001430 if (put_user(urb->iso_frame_desc[i].status,
1431 &userurb->iso_frame_desc[i].status))
Oliver Neukumd794a022009-06-28 23:34:14 +02001432 goto err_out;
Christopher Li668a9542005-04-18 17:39:26 -07001433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if (put_user(addr, (void __user * __user *)arg))
1437 return -EFAULT;
1438 return 0;
Oliver Neukumd794a022009-06-28 23:34:14 +02001439
1440err_out:
Oliver Neukumd794a022009-06-28 23:34:14 +02001441 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001444static struct async *reap_as(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001446 DECLARE_WAITQUEUE(wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 struct async *as = NULL;
1448 struct usb_device *dev = ps->dev;
1449
1450 add_wait_queue(&ps->wait, &wait);
1451 for (;;) {
1452 __set_current_state(TASK_INTERRUPTIBLE);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001453 as = async_getcompleted(ps);
1454 if (as)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 break;
1456 if (signal_pending(current))
1457 break;
1458 usb_unlock_device(dev);
1459 schedule();
1460 usb_lock_device(dev);
1461 }
1462 remove_wait_queue(&ps->wait, &wait);
1463 set_current_state(TASK_RUNNING);
1464 return as;
1465}
1466
1467static int proc_reapurb(struct dev_state *ps, void __user *arg)
1468{
1469 struct async *as = reap_as(ps);
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001470 if (as) {
1471 int retval = processcompl(as, (void __user * __user *)arg);
1472 free_async(as);
1473 return retval;
1474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if (signal_pending(current))
1476 return -EINTR;
1477 return -EIO;
1478}
1479
1480static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
1481{
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001482 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 struct async *as;
1484
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001485 as = async_getcompleted(ps);
1486 retval = -EAGAIN;
1487 if (as) {
1488 retval = processcompl(as, (void __user * __user *)arg);
1489 free_async(as);
1490 }
1491 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
1494#ifdef CONFIG_COMPAT
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001495static int proc_control_compat(struct dev_state *ps,
1496 struct usbdevfs_ctrltransfer32 __user *p32)
1497{
1498 struct usbdevfs_ctrltransfer __user *p;
1499 __u32 udata;
1500 p = compat_alloc_user_space(sizeof(*p));
1501 if (copy_in_user(p, p32, (sizeof(*p32) - sizeof(compat_caddr_t))) ||
1502 get_user(udata, &p32->data) ||
1503 put_user(compat_ptr(udata), &p->data))
1504 return -EFAULT;
1505 return proc_control(ps, p);
1506}
1507
1508static int proc_bulk_compat(struct dev_state *ps,
1509 struct usbdevfs_bulktransfer32 __user *p32)
1510{
1511 struct usbdevfs_bulktransfer __user *p;
1512 compat_uint_t n;
1513 compat_caddr_t addr;
1514
1515 p = compat_alloc_user_space(sizeof(*p));
1516
1517 if (get_user(n, &p32->ep) || put_user(n, &p->ep) ||
1518 get_user(n, &p32->len) || put_user(n, &p->len) ||
1519 get_user(n, &p32->timeout) || put_user(n, &p->timeout) ||
1520 get_user(addr, &p32->data) || put_user(compat_ptr(addr), &p->data))
1521 return -EFAULT;
1522
1523 return proc_bulk(ps, p);
1524}
1525static int proc_disconnectsignal_compat(struct dev_state *ps, void __user *arg)
1526{
1527 struct usbdevfs_disconnectsignal32 ds;
1528
1529 if (copy_from_user(&ds, arg, sizeof(ds)))
1530 return -EFAULT;
1531 ps->discsignr = ds.signr;
1532 ps->disccontext = compat_ptr(ds.context);
1533 return 0;
1534}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536static int get_urb32(struct usbdevfs_urb *kurb,
1537 struct usbdevfs_urb32 __user *uurb)
1538{
1539 __u32 uptr;
Michael Buesch18753eb2009-07-29 11:39:03 +02001540 if (!access_ok(VERIFY_READ, uurb, sizeof(*uurb)) ||
1541 __get_user(kurb->type, &uurb->type) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 __get_user(kurb->endpoint, &uurb->endpoint) ||
1543 __get_user(kurb->status, &uurb->status) ||
1544 __get_user(kurb->flags, &uurb->flags) ||
1545 __get_user(kurb->buffer_length, &uurb->buffer_length) ||
1546 __get_user(kurb->actual_length, &uurb->actual_length) ||
1547 __get_user(kurb->start_frame, &uurb->start_frame) ||
1548 __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
1549 __get_user(kurb->error_count, &uurb->error_count) ||
1550 __get_user(kurb->signr, &uurb->signr))
1551 return -EFAULT;
1552
1553 if (__get_user(uptr, &uurb->buffer))
1554 return -EFAULT;
1555 kurb->buffer = compat_ptr(uptr);
Mark Lorded0c7722009-01-02 02:48:24 -05001556 if (__get_user(uptr, &uurb->usercontext))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 return -EFAULT;
1558 kurb->usercontext = compat_ptr(uptr);
1559
1560 return 0;
1561}
1562
1563static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
1564{
1565 struct usbdevfs_urb uurb;
1566
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001567 if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 return -EFAULT;
1569
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001570 return proc_do_submiturb(ps, &uurb,
1571 ((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
1572 arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
1575static int processcompl_compat(struct async *as, void __user * __user *arg)
1576{
1577 struct urb *urb = as->urb;
1578 struct usbdevfs_urb32 __user *userurb = as->userurb;
1579 void __user *addr = as->userurb;
1580 unsigned int i;
1581
Greg KHd4a46832010-02-15 09:37:46 -08001582 if (as->userbuffer && urb->actual_length)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001583 if (copy_to_user(as->userbuffer, urb->transfer_buffer,
Greg KHd4a46832010-02-15 09:37:46 -08001584 urb->actual_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 return -EFAULT;
Alan Sterne0152682007-08-24 15:42:52 -04001586 if (put_user(as->status, &userurb->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return -EFAULT;
1588 if (put_user(urb->actual_length, &userurb->actual_length))
1589 return -EFAULT;
1590 if (put_user(urb->error_count, &userurb->error_count))
1591 return -EFAULT;
1592
Alan Stern93cf9b92007-07-30 17:09:28 -04001593 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001594 for (i = 0; i < urb->number_of_packets; i++) {
1595 if (put_user(urb->iso_frame_desc[i].actual_length,
1596 &userurb->iso_frame_desc[i].actual_length))
1597 return -EFAULT;
1598 if (put_user(urb->iso_frame_desc[i].status,
1599 &userurb->iso_frame_desc[i].status))
1600 return -EFAULT;
1601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 }
1603
Al Viroc714de52006-10-10 22:45:37 +01001604 if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 return -EFAULT;
1606 return 0;
1607}
1608
1609static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
1610{
1611 struct async *as = reap_as(ps);
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001612 if (as) {
1613 int retval = processcompl_compat(as, (void __user * __user *)arg);
1614 free_async(as);
1615 return retval;
1616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (signal_pending(current))
1618 return -EINTR;
1619 return -EIO;
1620}
1621
1622static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
1623{
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001624 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 struct async *as;
1626
Linus Torvaldsddeee0b2010-02-16 12:35:07 -08001627 retval = -EAGAIN;
1628 as = async_getcompleted(ps);
1629 if (as) {
1630 retval = processcompl_compat(as, (void __user * __user *)arg);
1631 free_async(as);
1632 }
1633 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637#endif
1638
1639static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
1640{
1641 struct usbdevfs_disconnectsignal ds;
1642
1643 if (copy_from_user(&ds, arg, sizeof(ds)))
1644 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 ps->discsignr = ds.signr;
1646 ps->disccontext = ds.context;
1647 return 0;
1648}
1649
1650static int proc_claiminterface(struct dev_state *ps, void __user *arg)
1651{
1652 unsigned int ifnum;
1653
1654 if (get_user(ifnum, (unsigned int __user *)arg))
1655 return -EFAULT;
1656 return claimintf(ps, ifnum);
1657}
1658
1659static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
1660{
1661 unsigned int ifnum;
1662 int ret;
1663
1664 if (get_user(ifnum, (unsigned int __user *)arg))
1665 return -EFAULT;
1666 if ((ret = releaseintf(ps, ifnum)) < 0)
1667 return ret;
1668 destroy_async_on_interface (ps, ifnum);
1669 return 0;
1670}
1671
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001672static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 int size;
1675 void *buf = NULL;
1676 int retval = 0;
1677 struct usb_interface *intf = NULL;
1678 struct usb_driver *driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001680 /* alloc buffer */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001681 if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
1682 if ((buf = kmalloc(size, GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return -ENOMEM;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001684 if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001685 if (copy_from_user(buf, ctl->data, size)) {
Jesper Juhl6fd19f4b2005-04-18 17:39:33 -07001686 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 return -EFAULT;
1688 }
1689 } else {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001690 memset(buf, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
1692 }
1693
Alan Stern349710c2006-07-01 22:05:56 -04001694 if (!connected(ps)) {
Jesper Juhl6fd19f4b2005-04-18 17:39:33 -07001695 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return -ENODEV;
1697 }
1698
1699 if (ps->dev->state != USB_STATE_CONFIGURED)
1700 retval = -EHOSTUNREACH;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001701 else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
1702 retval = -EINVAL;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001703 else switch (ctl->ioctl_code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
1705 /* disconnect kernel driver from interface */
1706 case USBDEVFS_DISCONNECT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (intf->dev.driver) {
1708 driver = to_usb_driver(intf->dev.driver);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001709 dev_dbg(&intf->dev, "disconnect by usbfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 usb_driver_release_interface(driver, intf);
1711 } else
1712 retval = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 break;
1714
1715 /* let kernel drivers try to (re)bind to the interface */
1716 case USBDEVFS_CONNECT:
Alan Stern885e9742007-12-03 15:42:10 -05001717 if (!intf->dev.driver)
1718 retval = device_attach(&intf->dev);
1719 else
1720 retval = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 break;
1722
1723 /* talk directly to the interface's driver */
1724 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (intf->dev.driver)
1726 driver = to_usb_driver(intf->dev.driver);
Andi Kleenc532b292010-06-01 23:04:41 +02001727 if (driver == NULL || driver->unlocked_ioctl == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 retval = -ENOTTY;
1729 } else {
Andi Kleenc532b292010-06-01 23:04:41 +02001730 retval = driver->unlocked_ioctl(intf, ctl->ioctl_code, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if (retval == -ENOIOCTLCMD)
1732 retval = -ENOTTY;
1733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
1735
1736 /* cleanup and return */
1737 if (retval >= 0
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001738 && (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 && size > 0
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001740 && copy_to_user(ctl->data, buf, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 retval = -EFAULT;
Jesper Juhl6fd19f4b2005-04-18 17:39:33 -07001742
1743 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 return retval;
1745}
1746
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001747static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
1748{
1749 struct usbdevfs_ioctl ctrl;
1750
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001751 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001752 return -EFAULT;
1753 return proc_ioctl(ps, &ctrl);
1754}
1755
1756#ifdef CONFIG_COMPAT
Andrew Morton777da592005-11-17 09:47:02 -08001757static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001758{
1759 struct usbdevfs_ioctl32 __user *uioc;
1760 struct usbdevfs_ioctl ctrl;
1761 u32 udata;
1762
Andrew Morton058120d2005-11-17 09:47:49 -08001763 uioc = compat_ptr((long)arg);
Michael Buesch18753eb2009-07-29 11:39:03 +02001764 if (!access_ok(VERIFY_READ, uioc, sizeof(*uioc)) ||
1765 __get_user(ctrl.ifno, &uioc->ifno) ||
1766 __get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001767 __get_user(udata, &uioc->data))
1768 return -EFAULT;
1769 ctrl.data = compat_ptr(udata);
1770
1771 return proc_ioctl(ps, &ctrl);
1772}
1773#endif
1774
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001775static int proc_claim_port(struct dev_state *ps, void __user *arg)
1776{
1777 unsigned portnum;
1778 int rc;
1779
1780 if (get_user(portnum, (unsigned __user *) arg))
1781 return -EFAULT;
1782 rc = usb_hub_claim_port(ps->dev, portnum, ps);
1783 if (rc == 0)
1784 snoop(&ps->dev->dev, "port %d claimed by process %d: %s\n",
1785 portnum, task_pid_nr(current), current->comm);
1786 return rc;
1787}
1788
1789static int proc_release_port(struct dev_state *ps, void __user *arg)
1790{
1791 unsigned portnum;
1792
1793 if (get_user(portnum, (unsigned __user *) arg))
1794 return -EFAULT;
1795 return usb_hub_release_port(ps->dev, portnum, ps);
1796}
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798/*
1799 * NOTE: All requests here that have interface numbers as parameters
1800 * are assuming that somehow the configuration has been prevented from
1801 * changing. But there's no mechanism to ensure that...
1802 */
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001803static long usbdev_do_ioctl(struct file *file, unsigned int cmd,
1804 void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Tobias Klauserec17cf12006-09-13 21:38:41 +02001806 struct dev_state *ps = file->private_data;
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001807 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 struct usb_device *dev = ps->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 int ret = -ENOTTY;
1810
1811 if (!(file->f_mode & FMODE_WRITE))
1812 return -EPERM;
Oliver Neukum01412a22010-01-13 15:33:43 +01001813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -04001815 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 usb_unlock_device(dev);
1817 return -ENODEV;
1818 }
1819
1820 switch (cmd) {
1821 case USBDEVFS_CONTROL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001822 snoop(&dev->dev, "%s: CONTROL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 ret = proc_control(ps, p);
1824 if (ret >= 0)
1825 inode->i_mtime = CURRENT_TIME;
1826 break;
1827
1828 case USBDEVFS_BULK:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001829 snoop(&dev->dev, "%s: BULK\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 ret = proc_bulk(ps, p);
1831 if (ret >= 0)
1832 inode->i_mtime = CURRENT_TIME;
1833 break;
1834
1835 case USBDEVFS_RESETEP:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001836 snoop(&dev->dev, "%s: RESETEP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 ret = proc_resetep(ps, p);
1838 if (ret >= 0)
1839 inode->i_mtime = CURRENT_TIME;
1840 break;
1841
1842 case USBDEVFS_RESET:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001843 snoop(&dev->dev, "%s: RESET\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 ret = proc_resetdevice(ps);
1845 break;
1846
1847 case USBDEVFS_CLEAR_HALT:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001848 snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 ret = proc_clearhalt(ps, p);
1850 if (ret >= 0)
1851 inode->i_mtime = CURRENT_TIME;
1852 break;
1853
1854 case USBDEVFS_GETDRIVER:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001855 snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 ret = proc_getdriver(ps, p);
1857 break;
1858
1859 case USBDEVFS_CONNECTINFO:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001860 snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 ret = proc_connectinfo(ps, p);
1862 break;
1863
1864 case USBDEVFS_SETINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001865 snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 ret = proc_setintf(ps, p);
1867 break;
1868
1869 case USBDEVFS_SETCONFIGURATION:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001870 snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 ret = proc_setconfig(ps, p);
1872 break;
1873
1874 case USBDEVFS_SUBMITURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001875 snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 ret = proc_submiturb(ps, p);
1877 if (ret >= 0)
1878 inode->i_mtime = CURRENT_TIME;
1879 break;
1880
1881#ifdef CONFIG_COMPAT
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001882 case USBDEVFS_CONTROL32:
1883 snoop(&dev->dev, "%s: CONTROL32\n", __func__);
1884 ret = proc_control_compat(ps, p);
1885 if (ret >= 0)
1886 inode->i_mtime = CURRENT_TIME;
1887 break;
1888
1889 case USBDEVFS_BULK32:
1890 snoop(&dev->dev, "%s: BULK32\n", __func__);
1891 ret = proc_bulk_compat(ps, p);
1892 if (ret >= 0)
1893 inode->i_mtime = CURRENT_TIME;
1894 break;
1895
1896 case USBDEVFS_DISCSIGNAL32:
1897 snoop(&dev->dev, "%s: DISCSIGNAL32\n", __func__);
1898 ret = proc_disconnectsignal_compat(ps, p);
1899 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 case USBDEVFS_SUBMITURB32:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001902 snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 ret = proc_submiturb_compat(ps, p);
1904 if (ret >= 0)
1905 inode->i_mtime = CURRENT_TIME;
1906 break;
1907
1908 case USBDEVFS_REAPURB32:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001909 snoop(&dev->dev, "%s: REAPURB32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 ret = proc_reapurb_compat(ps, p);
1911 break;
1912
1913 case USBDEVFS_REAPURBNDELAY32:
Alan Stern4c6e8972009-06-29 11:02:04 -04001914 snoop(&dev->dev, "%s: REAPURBNDELAY32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 ret = proc_reapurbnonblock_compat(ps, p);
1916 break;
1917
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001918 case USBDEVFS_IOCTL32:
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001919 snoop(&dev->dev, "%s: IOCTL32\n", __func__);
Al Viroc714de52006-10-10 22:45:37 +01001920 ret = proc_ioctl_compat(ps, ptr_to_compat(p));
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001921 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922#endif
1923
1924 case USBDEVFS_DISCARDURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001925 snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 ret = proc_unlinkurb(ps, p);
1927 break;
1928
1929 case USBDEVFS_REAPURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001930 snoop(&dev->dev, "%s: REAPURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 ret = proc_reapurb(ps, p);
1932 break;
1933
1934 case USBDEVFS_REAPURBNDELAY:
Alan Stern4c6e8972009-06-29 11:02:04 -04001935 snoop(&dev->dev, "%s: REAPURBNDELAY\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 ret = proc_reapurbnonblock(ps, p);
1937 break;
1938
1939 case USBDEVFS_DISCSIGNAL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001940 snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 ret = proc_disconnectsignal(ps, p);
1942 break;
1943
1944 case USBDEVFS_CLAIMINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001945 snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 ret = proc_claiminterface(ps, p);
1947 break;
1948
1949 case USBDEVFS_RELEASEINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001950 snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 ret = proc_releaseinterface(ps, p);
1952 break;
1953
1954 case USBDEVFS_IOCTL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001955 snoop(&dev->dev, "%s: IOCTL\n", __func__);
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001956 ret = proc_ioctl_default(ps, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 break;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001958
1959 case USBDEVFS_CLAIM_PORT:
1960 snoop(&dev->dev, "%s: CLAIM_PORT\n", __func__);
1961 ret = proc_claim_port(ps, p);
1962 break;
1963
1964 case USBDEVFS_RELEASE_PORT:
1965 snoop(&dev->dev, "%s: RELEASE_PORT\n", __func__);
1966 ret = proc_release_port(ps, p);
1967 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 }
1969 usb_unlock_device(dev);
1970 if (ret >= 0)
1971 inode->i_atime = CURRENT_TIME;
1972 return ret;
1973}
1974
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001975static long usbdev_ioctl(struct file *file, unsigned int cmd,
1976 unsigned long arg)
1977{
1978 int ret;
1979
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001980 ret = usbdev_do_ioctl(file, cmd, (void __user *)arg);
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001981
1982 return ret;
1983}
1984
1985#ifdef CONFIG_COMPAT
1986static long usbdev_compat_ioctl(struct file *file, unsigned int cmd,
1987 unsigned long arg)
1988{
1989 int ret;
1990
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001991 ret = usbdev_do_ioctl(file, cmd, compat_ptr(arg));
Arnd Bergmann637e8a62009-11-14 02:28:05 +01001992
1993 return ret;
1994}
1995#endif
1996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997/* No kernel lock - fine */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001998static unsigned int usbdev_poll(struct file *file,
1999 struct poll_table_struct *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
Tobias Klauserec17cf12006-09-13 21:38:41 +02002001 struct dev_state *ps = file->private_data;
2002 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 poll_wait(file, &ps->wait, wait);
2005 if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
2006 mask |= POLLOUT | POLLWRNORM;
Alan Stern349710c2006-07-01 22:05:56 -04002007 if (!connected(ps))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 mask |= POLLERR | POLLHUP;
2009 return mask;
2010}
2011
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002012const struct file_operations usbdev_file_operations = {
Arnd Bergmann637e8a62009-11-14 02:28:05 +01002013 .owner = THIS_MODULE,
2014 .llseek = usbdev_lseek,
2015 .read = usbdev_read,
2016 .poll = usbdev_poll,
2017 .unlocked_ioctl = usbdev_ioctl,
2018#ifdef CONFIG_COMPAT
2019 .compat_ioctl = usbdev_compat_ioctl,
2020#endif
2021 .open = usbdev_open,
2022 .release = usbdev_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023};
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002024
Alan Stern501950d2009-01-13 11:33:42 -05002025static void usbdev_remove(struct usb_device *udev)
Alan Sterncd9f0372008-06-24 14:47:04 -04002026{
2027 struct dev_state *ps;
2028 struct siginfo sinfo;
2029
2030 while (!list_empty(&udev->filelist)) {
2031 ps = list_entry(udev->filelist.next, struct dev_state, list);
2032 destroy_all_async(ps);
2033 wake_up_all(&ps->wait);
2034 list_del_init(&ps->list);
2035 if (ps->discsignr) {
2036 sinfo.si_signo = ps->discsignr;
2037 sinfo.si_errno = EPIPE;
2038 sinfo.si_code = SI_ASYNCIO;
2039 sinfo.si_addr = ps->disccontext;
Serge Hallynd178bc32011-09-26 10:45:18 -05002040 kill_pid_info_as_cred(ps->discsignr, &sinfo,
2041 ps->disc_pid, ps->cred, ps->secid);
Alan Sterncd9f0372008-06-24 14:47:04 -04002042 }
2043 }
2044}
2045
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002046#ifdef CONFIG_USB_DEVICE_CLASS
2047static struct class *usb_classdev_class;
2048
2049static int usb_classdev_add(struct usb_device *dev)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002050{
Alan Sterne04199b2008-06-24 14:47:29 -04002051 struct device *cldev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002052
Greg Kroah-Hartmanb0b090e2008-07-21 20:03:34 -07002053 cldev = device_create(usb_classdev_class, &dev->dev, dev->dev.devt,
2054 NULL, "usbdev%d.%d", dev->bus->busnum,
2055 dev->devnum);
Alan Sterne04199b2008-06-24 14:47:29 -04002056 if (IS_ERR(cldev))
2057 return PTR_ERR(cldev);
2058 dev->usb_classdev = cldev;
Akinobu Mita27d39e22006-10-09 18:09:33 +09002059 return 0;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002060}
2061
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002062static void usb_classdev_remove(struct usb_device *dev)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002063{
Alan Sterne04199b2008-06-24 14:47:29 -04002064 if (dev->usb_classdev)
2065 device_unregister(dev->usb_classdev);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002066}
2067
Alan Stern501950d2009-01-13 11:33:42 -05002068#else
2069#define usb_classdev_add(dev) 0
2070#define usb_classdev_remove(dev) do {} while (0)
2071
2072#endif
2073
2074static int usbdev_notify(struct notifier_block *self,
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002075 unsigned long action, void *dev)
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002076{
2077 switch (action) {
2078 case USB_DEVICE_ADD:
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002079 if (usb_classdev_add(dev))
Akinobu Mita27d39e22006-10-09 18:09:33 +09002080 return NOTIFY_BAD;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002081 break;
2082 case USB_DEVICE_REMOVE:
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002083 usb_classdev_remove(dev);
Alan Stern501950d2009-01-13 11:33:42 -05002084 usbdev_remove(dev);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002085 break;
2086 }
2087 return NOTIFY_OK;
2088}
2089
2090static struct notifier_block usbdev_nb = {
Alan Stern501950d2009-01-13 11:33:42 -05002091 .notifier_call = usbdev_notify,
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002092};
2093
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -07002094static struct cdev usb_device_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002095
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002096int __init usb_devio_init(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002097{
2098 int retval;
2099
Alan Sternfad21bd2005-08-10 15:15:57 -04002100 retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08002101 "usb_device");
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002102 if (retval) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07002103 printk(KERN_ERR "Unable to register minors for usb_device\n");
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002104 goto out;
2105 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002106 cdev_init(&usb_device_cdev, &usbdev_file_operations);
Alan Sternfad21bd2005-08-10 15:15:57 -04002107 retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002108 if (retval) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07002109 printk(KERN_ERR "Unable to get usb_device major %d\n",
2110 USB_DEVICE_MAJOR);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002111 goto error_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002112 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002113#ifdef CONFIG_USB_DEVICE_CLASS
2114 usb_classdev_class = class_create(THIS_MODULE, "usb_device");
2115 if (IS_ERR(usb_classdev_class)) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07002116 printk(KERN_ERR "Unable to register usb_device class\n");
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002117 retval = PTR_ERR(usb_classdev_class);
2118 cdev_del(&usb_device_cdev);
2119 usb_classdev_class = NULL;
2120 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002121 }
Dan Williamse105b8b2008-04-21 10:51:07 -07002122 /* devices of this class shadow the major:minor of their parent
2123 * device, so clear ->dev_kobj to prevent adding duplicate entries
2124 * to /sys/dev
2125 */
2126 usb_classdev_class->dev_kobj = NULL;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002127#endif
Alan Stern501950d2009-01-13 11:33:42 -05002128 usb_register_notify(&usbdev_nb);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002129out:
2130 return retval;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002131
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002132error_cdev:
2133 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
2134 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002135}
2136
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002137void usb_devio_cleanup(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002138{
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07002139 usb_unregister_notify(&usbdev_nb);
Alan Stern501950d2009-01-13 11:33:42 -05002140#ifdef CONFIG_USB_DEVICE_CLASS
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002141 class_destroy(usb_classdev_class);
2142#endif
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002143 cdev_del(&usb_device_cdev);
Alan Sternfad21bd2005-08-10 15:15:57 -04002144 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02002145}