blob: 2bccefebff1b4a05caf7f07961751c68e73cc462 [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>
40#include <linux/smp_lock.h>
41#include <linux/signal.h>
42#include <linux/poll.h>
43#include <linux/module.h>
44#include <linux/usb.h>
45#include <linux/usbdevice_fs.h>
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/uaccess.h>
50#include <asm/byteorder.h>
51#include <linux/moduleparam.h>
52
53#include "hcd.h" /* for usbcore internals */
54#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;
72 uid_t disc_uid, disc_euid;
73 void __user *disccontext;
74 unsigned long ifclaimed;
75 u32 secid;
76};
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078struct async {
79 struct list_head asynclist;
80 struct dev_state *ps;
Eric W. Biederman2425c082006-10-02 02:17:28 -070081 struct pid *pid;
Harald Welte46113832005-10-10 19:44:29 +020082 uid_t uid, euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 unsigned int signr;
84 unsigned int ifnum;
85 void __user *userbuffer;
86 void __user *userurb;
87 struct urb *urb;
Alan Sterne0152682007-08-24 15:42:52 -040088 int status;
David Quigley7a019552006-06-30 01:55:48 -070089 u32 secid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -080092static int usbfs_snoop;
93module_param(usbfs_snoop, bool, S_IRUGO | S_IWUSR);
94MODULE_PARM_DESC(usbfs_snoop, "true to log all usbfs traffic");
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#define snoop(dev, format, arg...) \
97 do { \
98 if (usbfs_snoop) \
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -080099 dev_info(dev , format , ## arg); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 } while (0)
101
Alan Sternfad21bd2005-08-10 15:15:57 -0400102#define USB_DEVICE_DEV MKDEV(USB_DEVICE_MAJOR, 0)
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105#define MAX_USBFS_BUFFER_SIZE 16384
106
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800107static inline int connected(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Alan Stern349710c2006-07-01 22:05:56 -0400109 return (!list_empty(&ps->list) &&
110 ps->dev->state != USB_STATE_NOTATTACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig)
114{
115 loff_t ret;
116
117 lock_kernel();
118
119 switch (orig) {
120 case 0:
121 file->f_pos = offset;
122 ret = file->f_pos;
123 break;
124 case 1:
125 file->f_pos += offset;
126 ret = file->f_pos;
127 break;
128 case 2:
129 default:
130 ret = -EINVAL;
131 }
132
133 unlock_kernel();
134 return ret;
135}
136
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800137static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
138 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200140 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 struct usb_device *dev = ps->dev;
142 ssize_t ret = 0;
143 unsigned len;
144 loff_t pos;
145 int i;
146
147 pos = *ppos;
148 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -0400149 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 ret = -ENODEV;
151 goto err;
152 } else if (pos < 0) {
153 ret = -EINVAL;
154 goto err;
155 }
156
157 if (pos < sizeof(struct usb_device_descriptor)) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800158 /* 18 bytes - fits on the stack */
159 struct usb_device_descriptor temp_desc;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100160
161 memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
Andrew Morton9fcd5c32006-01-18 23:55:07 -0800162 le16_to_cpus(&temp_desc.bcdUSB);
163 le16_to_cpus(&temp_desc.idVendor);
164 le16_to_cpus(&temp_desc.idProduct);
165 le16_to_cpus(&temp_desc.bcdDevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 len = sizeof(struct usb_device_descriptor) - pos;
168 if (len > nbytes)
169 len = nbytes;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100170 if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 ret = -EFAULT;
172 goto err;
173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 *ppos += len;
176 buf += len;
177 nbytes -= len;
178 ret += len;
179 }
180
181 pos = sizeof(struct usb_device_descriptor);
182 for (i = 0; nbytes && i < dev->descriptor.bNumConfigurations; i++) {
183 struct usb_config_descriptor *config =
184 (struct usb_config_descriptor *)dev->rawdescriptors[i];
185 unsigned int length = le16_to_cpu(config->wTotalLength);
186
187 if (*ppos < pos + length) {
188
189 /* The descriptor may claim to be longer than it
190 * really is. Here is the actual allocated length. */
191 unsigned alloclen =
192 le16_to_cpu(dev->config[i].desc.wTotalLength);
193
194 len = length - (*ppos - pos);
195 if (len > nbytes)
196 len = nbytes;
197
198 /* Simply don't write (skip over) unallocated parts */
199 if (alloclen > (*ppos - pos)) {
200 alloclen -= (*ppos - pos);
201 if (copy_to_user(buf,
202 dev->rawdescriptors[i] + (*ppos - pos),
203 min(len, alloclen))) {
204 ret = -EFAULT;
205 goto err;
206 }
207 }
208
209 *ppos += len;
210 buf += len;
211 nbytes -= len;
212 ret += len;
213 }
214
215 pos += length;
216 }
217
218err:
219 usb_unlock_device(dev);
220 return ret;
221}
222
223/*
224 * async list handling
225 */
226
227static struct async *alloc_async(unsigned int numisoframes)
228{
Pete Zaitcevdd95b812008-01-05 02:01:07 -0800229 struct async *as;
Alan Stern0a1ef3b2005-10-24 15:38:24 -0400230
Pete Zaitcevdd95b812008-01-05 02:01:07 -0800231 as = kzalloc(sizeof(struct async), GFP_KERNEL);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800232 if (!as)
233 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
235 if (!as->urb) {
236 kfree(as);
237 return NULL;
238 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800239 return as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242static void free_async(struct async *as)
243{
Eric W. Biederman2425c082006-10-02 02:17:28 -0700244 put_pid(as->pid);
Jesper Juhl6fd19f42005-04-18 17:39:33 -0700245 kfree(as->urb->transfer_buffer);
246 kfree(as->urb->setup_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 usb_free_urb(as->urb);
Jesper Juhl6fd19f42005-04-18 17:39:33 -0700248 kfree(as);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251static inline void async_newpending(struct async *as)
252{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800253 struct dev_state *ps = as->ps;
254 unsigned long flags;
255
256 spin_lock_irqsave(&ps->lock, flags);
257 list_add_tail(&as->asynclist, &ps->async_pending);
258 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261static inline void async_removepending(struct async *as)
262{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800263 struct dev_state *ps = as->ps;
264 unsigned long flags;
265
266 spin_lock_irqsave(&ps->lock, flags);
267 list_del_init(&as->asynclist);
268 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271static inline struct async *async_getcompleted(struct dev_state *ps)
272{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800273 unsigned long flags;
274 struct async *as = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800276 spin_lock_irqsave(&ps->lock, flags);
277 if (!list_empty(&ps->async_completed)) {
278 as = list_entry(ps->async_completed.next, struct async,
279 asynclist);
280 list_del_init(&as->asynclist);
281 }
282 spin_unlock_irqrestore(&ps->lock, flags);
283 return as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800286static inline struct async *async_getpending(struct dev_state *ps,
287 void __user *userurb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800289 unsigned long flags;
290 struct async *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800292 spin_lock_irqsave(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 list_for_each_entry(as, &ps->async_pending, asynclist)
294 if (as->userurb == userurb) {
295 list_del_init(&as->asynclist);
296 spin_unlock_irqrestore(&ps->lock, flags);
297 return as;
298 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800299 spin_unlock_irqrestore(&ps->lock, flags);
300 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700303static void snoop_urb(struct urb *urb, void __user *userurb)
304{
305 int j;
306 unsigned char *data = urb->transfer_buffer;
307
308 if (!usbfs_snoop)
309 return;
310
Alan Stern93cf9b92007-07-30 17:09:28 -0400311 dev_info(&urb->dev->dev, "direction=%s\n",
312 usb_urb_dir_in(urb) ? "IN" : "OUT");
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700313 dev_info(&urb->dev->dev, "userurb=%p\n", userurb);
314 dev_info(&urb->dev->dev, "transfer_buffer_length=%d\n",
315 urb->transfer_buffer_length);
316 dev_info(&urb->dev->dev, "actual_length=%d\n", urb->actual_length);
317 dev_info(&urb->dev->dev, "data: ");
318 for (j = 0; j < urb->transfer_buffer_length; ++j)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800319 printk("%02x ", data[j]);
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700320 printk("\n");
321}
322
David Howells7d12e782006-10-05 14:55:46 +0100323static void async_completed(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800325 struct async *as = urb->context;
326 struct dev_state *ps = as->ps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct siginfo sinfo;
328
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800329 spin_lock(&ps->lock);
330 list_move_tail(&as->asynclist, &ps->async_completed);
331 spin_unlock(&ps->lock);
Alan Sterne0152682007-08-24 15:42:52 -0400332 as->status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (as->signr) {
334 sinfo.si_signo = as->signr;
Alan Sterne0152682007-08-24 15:42:52 -0400335 sinfo.si_errno = as->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 sinfo.si_code = SI_ASYNCIO;
337 sinfo.si_addr = as->userurb;
Eric W. Biederman2425c082006-10-02 02:17:28 -0700338 kill_pid_info_as_uid(as->signr, &sinfo, as->pid, as->uid,
David Quigley7a019552006-06-30 01:55:48 -0700339 as->euid, as->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700341 snoop(&urb->dev->dev, "urb complete\n");
342 snoop_urb(urb, as->userurb);
343 wake_up(&ps->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800346static void destroy_async(struct dev_state *ps, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 struct async *as;
349 unsigned long flags;
350
351 spin_lock_irqsave(&ps->lock, flags);
352 while (!list_empty(list)) {
353 as = list_entry(list->next, struct async, asynclist);
354 list_del_init(&as->asynclist);
355
356 /* drop the spinlock so the completion handler can run */
357 spin_unlock_irqrestore(&ps->lock, flags);
358 usb_kill_urb(as->urb);
359 spin_lock_irqsave(&ps->lock, flags);
360 }
361 spin_unlock_irqrestore(&ps->lock, flags);
362 as = async_getcompleted(ps);
363 while (as) {
364 free_async(as);
365 as = async_getcompleted(ps);
366 }
367}
368
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800369static void destroy_async_on_interface(struct dev_state *ps,
370 unsigned int ifnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 struct list_head *p, *q, hitlist;
373 unsigned long flags;
374
375 INIT_LIST_HEAD(&hitlist);
376 spin_lock_irqsave(&ps->lock, flags);
377 list_for_each_safe(p, q, &ps->async_pending)
378 if (ifnum == list_entry(p, struct async, asynclist)->ifnum)
379 list_move_tail(p, &hitlist);
380 spin_unlock_irqrestore(&ps->lock, flags);
381 destroy_async(ps, &hitlist);
382}
383
384static inline void destroy_all_async(struct dev_state *ps)
385{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800386 destroy_async(ps, &ps->async_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
389/*
390 * interface claims are made only at the request of user level code,
391 * which can also release them (explicitly or by closing files).
392 * they're also undone when devices disconnect.
393 */
394
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800395static int driver_probe(struct usb_interface *intf,
396 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 return -ENODEV;
399}
400
401static void driver_disconnect(struct usb_interface *intf)
402{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800403 struct dev_state *ps = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 unsigned int ifnum = intf->altsetting->desc.bInterfaceNumber;
405
406 if (!ps)
407 return;
408
409 /* NOTE: this relies on usbcore having canceled and completed
410 * all pending I/O requests; 2.6 does that.
411 */
412
413 if (likely(ifnum < 8*sizeof(ps->ifclaimed)))
414 clear_bit(ifnum, &ps->ifclaimed);
415 else
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700416 dev_warn(&intf->dev, "interface number %u out of range\n",
417 ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800419 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 /* force async requests to complete */
422 destroy_async_on_interface(ps, ifnum);
423}
424
Alan Stern2e2eb832007-12-04 14:35:15 -0500425/* The following routines are merely placeholders. There is no way
426 * to inform a user task about suspend or resumes.
427 */
428static int driver_suspend(struct usb_interface *intf, pm_message_t msg)
429{
430 return 0;
431}
432
433static int driver_resume(struct usb_interface *intf)
434{
435 return 0;
436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438struct usb_driver usbfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 .name = "usbfs",
440 .probe = driver_probe,
441 .disconnect = driver_disconnect,
Alan Stern2e2eb832007-12-04 14:35:15 -0500442 .suspend = driver_suspend,
443 .resume = driver_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444};
445
446static int claimintf(struct dev_state *ps, unsigned int ifnum)
447{
448 struct usb_device *dev = ps->dev;
449 struct usb_interface *intf;
450 int err;
451
452 if (ifnum >= 8*sizeof(ps->ifclaimed))
453 return -EINVAL;
454 /* already claimed */
455 if (test_bit(ifnum, &ps->ifclaimed))
456 return 0;
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 intf = usb_ifnum_to_if(dev, ifnum);
459 if (!intf)
460 err = -ENOENT;
461 else
462 err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (err == 0)
464 set_bit(ifnum, &ps->ifclaimed);
465 return err;
466}
467
468static int releaseintf(struct dev_state *ps, unsigned int ifnum)
469{
470 struct usb_device *dev;
471 struct usb_interface *intf;
472 int err;
473
474 err = -EINVAL;
475 if (ifnum >= 8*sizeof(ps->ifclaimed))
476 return err;
477 dev = ps->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 intf = usb_ifnum_to_if(dev, ifnum);
479 if (!intf)
480 err = -ENOENT;
481 else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
482 usb_driver_release_interface(&usbfs_driver, intf);
483 err = 0;
484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return err;
486}
487
488static int checkintf(struct dev_state *ps, unsigned int ifnum)
489{
490 if (ps->dev->state != USB_STATE_CONFIGURED)
491 return -EHOSTUNREACH;
492 if (ifnum >= 8*sizeof(ps->ifclaimed))
493 return -EINVAL;
494 if (test_bit(ifnum, &ps->ifclaimed))
495 return 0;
496 /* if not yet claimed, claim it for the driver */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800497 dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
498 "interface %u before use\n", task_pid_nr(current),
499 current->comm, ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return claimintf(ps, ifnum);
501}
502
503static int findintfep(struct usb_device *dev, unsigned int ep)
504{
505 unsigned int i, j, e;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800506 struct usb_interface *intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct usb_host_interface *alts;
508 struct usb_endpoint_descriptor *endpt;
509
510 if (ep & ~(USB_DIR_IN|0xf))
511 return -EINVAL;
512 if (!dev->actconfig)
513 return -ESRCH;
514 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
515 intf = dev->actconfig->interface[i];
516 for (j = 0; j < intf->num_altsetting; j++) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800517 alts = &intf->altsetting[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 for (e = 0; e < alts->desc.bNumEndpoints; e++) {
519 endpt = &alts->endpoint[e].desc;
520 if (endpt->bEndpointAddress == ep)
521 return alts->desc.bInterfaceNumber;
522 }
523 }
524 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800525 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800528static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype,
529 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 int ret = 0;
532
Horst Schirmeier24f8b112006-03-11 00:16:55 -0800533 if (ps->dev->state != USB_STATE_ADDRESS
534 && ps->dev->state != USB_STATE_CONFIGURED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return -EHOSTUNREACH;
536 if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
537 return 0;
538
539 index &= 0xff;
540 switch (requesttype & USB_RECIP_MASK) {
541 case USB_RECIP_ENDPOINT:
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800542 ret = findintfep(ps->dev, index);
543 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 ret = checkintf(ps, ret);
545 break;
546
547 case USB_RECIP_INTERFACE:
548 ret = checkintf(ps, index);
549 break;
550 }
551 return ret;
552}
553
Alan Stern61ad04a2008-06-24 14:47:12 -0400554static int match_devt(struct device *dev, void *data)
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700555{
David Howellsa80d5ff2008-07-02 12:28:55 +0100556 return dev->devt == (dev_t) (unsigned long) data;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100557}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700558
Alan Stern61ad04a2008-06-24 14:47:12 -0400559static struct usb_device *usbdev_lookup_by_devt(dev_t devt)
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100560{
561 struct device *dev;
562
David Howellsa80d5ff2008-07-02 12:28:55 +0100563 dev = bus_find_device(&usb_bus_type, NULL,
564 (void *) (unsigned long) devt, match_devt);
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100565 if (!dev)
566 return NULL;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100567 return container_of(dev, struct usb_device, dev);
568}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570/*
571 * file operations
572 */
573static int usbdev_open(struct inode *inode, struct file *file)
574{
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200575 struct usb_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 struct dev_state *ps;
577 int ret;
578
Jonathan Corbetb5b4aa62008-05-16 14:25:20 -0600579 lock_kernel();
Alan Stern4a2a8a22006-07-01 22:05:01 -0400580 /* Protect against simultaneous removal or release */
581 mutex_lock(&usbfs_mutex);
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 ret = -ENOMEM;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800584 ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
585 if (!ps)
Alan Stern4a2a8a22006-07-01 22:05:01 -0400586 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 ret = -ENOENT;
Alan Stern61ad04a2008-06-24 14:47:12 -0400589
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100590 /* usbdev device-node */
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200591 if (imajor(inode) == USB_DEVICE_MAJOR)
Alan Stern61ad04a2008-06-24 14:47:12 -0400592 dev = usbdev_lookup_by_devt(inode->i_rdev);
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100593#ifdef CONFIG_USB_DEVICEFS
594 /* procfs file */
Alan Sternd64aac32008-06-24 14:47:19 -0400595 if (!dev) {
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700596 dev = inode->i_private;
Alan Sternd64aac32008-06-24 14:47:19 -0400597 if (dev && dev->usbfs_dentry &&
598 dev->usbfs_dentry->d_inode == inode)
599 usb_get_dev(dev);
600 else
601 dev = NULL;
602 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100603#endif
Alan Sternd64aac32008-06-24 14:47:19 -0400604 if (!dev || dev->state == USB_STATE_NOTATTACHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 goto out;
Alan Stern94fcda12006-11-20 11:38:46 -0500606 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -0400607 if (ret)
608 goto out;
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 ret = 0;
611 ps->dev = dev;
612 ps->file = file;
613 spin_lock_init(&ps->lock);
Dan Carpenter316547f2006-12-13 00:03:38 -0800614 INIT_LIST_HEAD(&ps->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 INIT_LIST_HEAD(&ps->async_pending);
616 INIT_LIST_HEAD(&ps->async_completed);
617 init_waitqueue_head(&ps->wait);
618 ps->discsignr = 0;
Eric W. Biederman2425c082006-10-02 02:17:28 -0700619 ps->disc_pid = get_pid(task_pid(current));
Linus Torvaldsd7dd8a72005-10-10 16:31:30 -0700620 ps->disc_uid = current->uid;
621 ps->disc_euid = current->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 ps->disccontext = NULL;
623 ps->ifclaimed = 0;
David Quigley7a019552006-06-30 01:55:48 -0700624 security_task_getsecid(current, &ps->secid);
Oliver Neukum527660a2007-04-20 20:50:48 +0200625 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 list_add_tail(&ps->list, &dev->filelist);
627 file->private_data = ps;
Alan Stern2da41d52008-10-06 11:24:26 -0400628 snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
629 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 out:
Alan Sternd64aac32008-06-24 14:47:19 -0400631 if (ret) {
Alan Stern01d883d2006-08-30 15:47:18 -0400632 kfree(ps);
Alan Sternd64aac32008-06-24 14:47:19 -0400633 usb_put_dev(dev);
634 }
Alan Stern4a2a8a22006-07-01 22:05:01 -0400635 mutex_unlock(&usbfs_mutex);
Jonathan Corbetb5b4aa62008-05-16 14:25:20 -0600636 unlock_kernel();
Alan Stern4a2a8a22006-07-01 22:05:01 -0400637 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640static int usbdev_release(struct inode *inode, struct file *file)
641{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200642 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 struct usb_device *dev = ps->dev;
644 unsigned int ifnum;
645
646 usb_lock_device(dev);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400647
648 /* Protect against simultaneous open */
649 mutex_lock(&usbfs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 list_del_init(&ps->list);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400651 mutex_unlock(&usbfs_mutex);
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
654 ifnum++) {
655 if (test_bit(ifnum, &ps->ifclaimed))
656 releaseintf(ps, ifnum);
657 }
658 destroy_all_async(ps);
Alan Stern94fcda12006-11-20 11:38:46 -0500659 usb_autosuspend_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 usb_unlock_device(dev);
661 usb_put_dev(dev);
Eric W. Biederman2425c082006-10-02 02:17:28 -0700662 put_pid(ps->disc_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400664 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667static int proc_control(struct dev_state *ps, void __user *arg)
668{
669 struct usb_device *dev = ps->dev;
670 struct usbdevfs_ctrltransfer ctrl;
671 unsigned int tmo;
672 unsigned char *tbuf;
Andrew Mortonff66e3c2008-03-12 13:32:24 -0700673 unsigned wLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 int i, j, ret;
675
676 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
677 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800678 ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.wIndex);
679 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return ret;
Andrew Mortonff66e3c2008-03-12 13:32:24 -0700681 wLength = ctrl.wLength; /* To suppress 64k PAGE_SIZE warning */
682 if (wLength > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800684 tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
685 if (!tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return -ENOMEM;
687 tmo = ctrl.timeout;
688 if (ctrl.bRequestType & 0x80) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800689 if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
690 ctrl.wLength)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 free_page((unsigned long)tbuf);
692 return -EINVAL;
693 }
Alan Sternfe0410c2005-07-29 12:16:58 -0700694 snoop(&dev->dev, "control read: bRequest=%02x "
695 "bRrequestType=%02x wValue=%04x "
696 "wIndex=%04x wLength=%04x\n",
697 ctrl.bRequest, ctrl.bRequestType, ctrl.wValue,
698 ctrl.wIndex, ctrl.wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 usb_unlock_device(dev);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800701 i = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), ctrl.bRequest,
702 ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
703 tbuf, ctrl.wLength, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 usb_lock_device(dev);
705 if ((i > 0) && ctrl.wLength) {
706 if (usbfs_snoop) {
707 dev_info(&dev->dev, "control read: data ");
Alan Sternfe0410c2005-07-29 12:16:58 -0700708 for (j = 0; j < i; ++j)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800709 printk("%02x ", (u8)(tbuf)[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 printk("\n");
711 }
Alan Sternfe0410c2005-07-29 12:16:58 -0700712 if (copy_to_user(ctrl.data, tbuf, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 free_page((unsigned long)tbuf);
714 return -EFAULT;
715 }
716 }
717 } else {
718 if (ctrl.wLength) {
719 if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
720 free_page((unsigned long)tbuf);
721 return -EFAULT;
722 }
723 }
Alan Sternfe0410c2005-07-29 12:16:58 -0700724 snoop(&dev->dev, "control write: bRequest=%02x "
725 "bRrequestType=%02x wValue=%04x "
726 "wIndex=%04x wLength=%04x\n",
727 ctrl.bRequest, ctrl.bRequestType, ctrl.wValue,
728 ctrl.wIndex, ctrl.wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (usbfs_snoop) {
730 dev_info(&dev->dev, "control write: data: ");
731 for (j = 0; j < ctrl.wLength; ++j)
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700732 printk("%02x ", (unsigned char)(tbuf)[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 printk("\n");
734 }
735 usb_unlock_device(dev);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800736 i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
737 ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
738 tbuf, ctrl.wLength, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 usb_lock_device(dev);
740 }
741 free_page((unsigned long)tbuf);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800742 if (i < 0 && i != -EPIPE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
744 "failed cmd %s rqt %u rq %u len %u ret %d\n",
745 current->comm, ctrl.bRequestType, ctrl.bRequest,
746 ctrl.wLength, i);
747 }
748 return i;
749}
750
751static int proc_bulk(struct dev_state *ps, void __user *arg)
752{
753 struct usb_device *dev = ps->dev;
754 struct usbdevfs_bulktransfer bulk;
755 unsigned int tmo, len1, pipe;
756 int len2;
757 unsigned char *tbuf;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700758 int i, j, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 if (copy_from_user(&bulk, arg, sizeof(bulk)))
761 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800762 ret = findintfep(ps->dev, bulk.ep);
763 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800765 ret = checkintf(ps, ret);
766 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return ret;
768 if (bulk.ep & USB_DIR_IN)
769 pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
770 else
771 pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
772 if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
773 return -EINVAL;
774 len1 = bulk.len;
775 if (len1 > MAX_USBFS_BUFFER_SIZE)
776 return -EINVAL;
777 if (!(tbuf = kmalloc(len1, GFP_KERNEL)))
778 return -ENOMEM;
779 tmo = bulk.timeout;
780 if (bulk.ep & 0x80) {
781 if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
782 kfree(tbuf);
783 return -EINVAL;
784 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700785 snoop(&dev->dev, "bulk read: len=0x%02x timeout=%04d\n",
786 bulk.len, bulk.timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 usb_unlock_device(dev);
788 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
789 usb_lock_device(dev);
790 if (!i && len2) {
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700791 if (usbfs_snoop) {
792 dev_info(&dev->dev, "bulk read: data ");
793 for (j = 0; j < len2; ++j)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800794 printk("%02x ", (u8)(tbuf)[j]);
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700795 printk("\n");
796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (copy_to_user(bulk.data, tbuf, len2)) {
798 kfree(tbuf);
799 return -EFAULT;
800 }
801 }
802 } else {
803 if (len1) {
804 if (copy_from_user(tbuf, bulk.data, len1)) {
805 kfree(tbuf);
806 return -EFAULT;
807 }
808 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700809 snoop(&dev->dev, "bulk write: len=0x%02x timeout=%04d\n",
810 bulk.len, bulk.timeout);
811 if (usbfs_snoop) {
812 dev_info(&dev->dev, "bulk write: data: ");
813 for (j = 0; j < len1; ++j)
814 printk("%02x ", (unsigned char)(tbuf)[j]);
815 printk("\n");
816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 usb_unlock_device(dev);
818 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
819 usb_lock_device(dev);
820 }
821 kfree(tbuf);
822 if (i < 0)
823 return i;
824 return len2;
825}
826
827static int proc_resetep(struct dev_state *ps, void __user *arg)
828{
829 unsigned int ep;
830 int ret;
831
832 if (get_user(ep, (unsigned int __user *)arg))
833 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800834 ret = findintfep(ps->dev, ep);
835 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800837 ret = checkintf(ps, ret);
838 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return ret;
840 usb_settoggle(ps->dev, ep & 0xf, !(ep & USB_DIR_IN), 0);
841 return 0;
842}
843
844static int proc_clearhalt(struct dev_state *ps, void __user *arg)
845{
846 unsigned int ep;
847 int pipe;
848 int ret;
849
850 if (get_user(ep, (unsigned int __user *)arg))
851 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800852 ret = findintfep(ps->dev, ep);
853 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800855 ret = checkintf(ps, ret);
856 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 return ret;
858 if (ep & USB_DIR_IN)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800859 pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
860 else
861 pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 return usb_clear_halt(ps->dev, pipe);
864}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866static int proc_getdriver(struct dev_state *ps, void __user *arg)
867{
868 struct usbdevfs_getdriver gd;
869 struct usb_interface *intf;
870 int ret;
871
872 if (copy_from_user(&gd, arg, sizeof(gd)))
873 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 intf = usb_ifnum_to_if(ps->dev, gd.interface);
875 if (!intf || !intf->dev.driver)
876 ret = -ENODATA;
877 else {
878 strncpy(gd.driver, intf->dev.driver->name,
879 sizeof(gd.driver));
880 ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return ret;
883}
884
885static int proc_connectinfo(struct dev_state *ps, void __user *arg)
886{
887 struct usbdevfs_connectinfo ci;
888
889 ci.devnum = ps->dev->devnum;
890 ci.slow = ps->dev->speed == USB_SPEED_LOW;
891 if (copy_to_user(arg, &ci, sizeof(ci)))
892 return -EFAULT;
893 return 0;
894}
895
896static int proc_resetdevice(struct dev_state *ps)
897{
Ming Lei742120c2008-06-18 22:00:29 +0800898 return usb_reset_device(ps->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
901static int proc_setintf(struct dev_state *ps, void __user *arg)
902{
903 struct usbdevfs_setinterface setintf;
904 int ret;
905
906 if (copy_from_user(&setintf, arg, sizeof(setintf)))
907 return -EFAULT;
908 if ((ret = checkintf(ps, setintf.interface)))
909 return ret;
910 return usb_set_interface(ps->dev, setintf.interface,
911 setintf.altsetting);
912}
913
914static int proc_setconfig(struct dev_state *ps, void __user *arg)
915{
Alan Stern3f141e22007-02-08 16:40:43 -0500916 int u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 int status = 0;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800918 struct usb_host_config *actconfig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Alan Stern3f141e22007-02-08 16:40:43 -0500920 if (get_user(u, (int __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return -EFAULT;
922
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800923 actconfig = ps->dev->actconfig;
924
925 /* Don't touch the device if any interfaces are claimed.
926 * It could interfere with other drivers' operations, and if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 * an interface is claimed by usbfs it could easily deadlock.
928 */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800929 if (actconfig) {
930 int i;
931
932 for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
933 if (usb_interface_claimed(actconfig->interface[i])) {
934 dev_warn(&ps->dev->dev,
David Brownell72ebddb2005-04-11 18:34:17 -0700935 "usbfs: interface %d claimed by %s "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 "while '%s' sets config #%d\n",
937 actconfig->interface[i]
938 ->cur_altsetting
939 ->desc.bInterfaceNumber,
David Brownell72ebddb2005-04-11 18:34:17 -0700940 actconfig->interface[i]
941 ->dev.driver->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 current->comm, u);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800943 status = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800946 }
947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
950 * so avoid usb_set_configuration()'s kick to sysfs
951 */
952 if (status == 0) {
953 if (actconfig && actconfig->desc.bConfigurationValue == u)
954 status = usb_reset_configuration(ps->dev);
955 else
956 status = usb_set_configuration(ps->dev, u);
957 }
958
959 return status;
960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800963 struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
964 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 struct usbdevfs_iso_packet_desc *isopkt = NULL;
967 struct usb_host_endpoint *ep;
968 struct async *as;
969 struct usb_ctrlrequest *dr = NULL;
970 unsigned int u, totlen, isofrmlen;
Alan Stern97b9eb92007-02-26 14:56:14 -0500971 int ret, ifnum = -1;
Alan Stern93cf9b92007-07-30 17:09:28 -0400972 int is_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Alan Stern14722ef2008-04-17 10:18:11 -0400974 if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP |
975 USBDEVFS_URB_SHORT_NOT_OK |
976 USBDEVFS_URB_NO_FSBR |
977 USBDEVFS_URB_ZERO_PACKET |
978 USBDEVFS_URB_NO_INTERRUPT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return -EINVAL;
980 if (!uurb->buffer)
981 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800982 if (uurb->signr != 0 && (uurb->signr < SIGRTMIN ||
983 uurb->signr > SIGRTMAX))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800985 if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
986 (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
987 ifnum = findintfep(ps->dev, uurb->endpoint);
988 if (ifnum < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return ifnum;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800990 ret = checkintf(ps, ifnum);
991 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return ret;
993 }
Alan Stern93cf9b92007-07-30 17:09:28 -0400994 if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
995 is_in = 1;
996 ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
997 } else {
998 is_in = 0;
999 ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
1000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (!ep)
1002 return -ENOENT;
1003 switch(uurb->type) {
1004 case USBDEVFS_URB_TYPE_CONTROL:
Alan Stern93cf9b92007-07-30 17:09:28 -04001005 if (!usb_endpoint_xfer_control(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001007 /* min 8 byte setup packet,
1008 * max 8 byte setup plus an arbitrary data stage */
1009 if (uurb->buffer_length < 8 ||
1010 uurb->buffer_length > (8 + MAX_USBFS_BUFFER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001012 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
1013 if (!dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return -ENOMEM;
1015 if (copy_from_user(dr, uurb->buffer, 8)) {
1016 kfree(dr);
1017 return -EFAULT;
1018 }
1019 if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
1020 kfree(dr);
1021 return -EINVAL;
1022 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001023 ret = check_ctrlrecip(ps, dr->bRequestType,
1024 le16_to_cpup(&dr->wIndex));
1025 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 kfree(dr);
1027 return ret;
1028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 uurb->number_of_packets = 0;
1030 uurb->buffer_length = le16_to_cpup(&dr->wLength);
1031 uurb->buffer += 8;
Alan Stern93cf9b92007-07-30 17:09:28 -04001032 if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
1033 is_in = 1;
1034 uurb->endpoint |= USB_DIR_IN;
1035 } else {
1036 is_in = 0;
1037 uurb->endpoint &= ~USB_DIR_IN;
1038 }
1039 if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1040 uurb->buffer, uurb->buffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 kfree(dr);
1042 return -EFAULT;
1043 }
Chris Freydf251b82006-12-16 02:37:42 -05001044 snoop(&ps->dev->dev, "control urb: bRequest=%02x "
1045 "bRrequestType=%02x wValue=%04x "
1046 "wIndex=%04x wLength=%04x\n",
Alan Stern93cf9b92007-07-30 17:09:28 -04001047 dr->bRequest, dr->bRequestType,
1048 __le16_to_cpup(&dr->wValue),
1049 __le16_to_cpup(&dr->wIndex),
1050 __le16_to_cpup(&dr->wLength));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 break;
1052
1053 case USBDEVFS_URB_TYPE_BULK:
Alan Stern93cf9b92007-07-30 17:09:28 -04001054 switch (usb_endpoint_type(&ep->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 case USB_ENDPOINT_XFER_CONTROL:
1056 case USB_ENDPOINT_XFER_ISOC:
1057 return -EINVAL;
1058 /* allow single-shot interrupt transfers, at bogus rates */
1059 }
1060 uurb->number_of_packets = 0;
1061 if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
1062 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001063 if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1064 uurb->buffer, uurb->buffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return -EFAULT;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001066 snoop(&ps->dev->dev, "bulk urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 break;
1068
1069 case USBDEVFS_URB_TYPE_ISO:
1070 /* arbitrary limit */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001071 if (uurb->number_of_packets < 1 ||
1072 uurb->number_of_packets > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001074 if (!usb_endpoint_xfer_isoc(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001076 isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
1077 uurb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
1079 return -ENOMEM;
1080 if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
1081 kfree(isopkt);
1082 return -EFAULT;
1083 }
1084 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001085 /* arbitrary limit,
1086 * sufficient for USB 2.0 high-bandwidth iso */
Micah Dowty36122422006-05-19 11:26:24 -07001087 if (isopkt[u].length > 8192) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 kfree(isopkt);
1089 return -EINVAL;
1090 }
1091 totlen += isopkt[u].length;
1092 }
1093 if (totlen > 32768) {
1094 kfree(isopkt);
1095 return -EINVAL;
1096 }
1097 uurb->buffer_length = totlen;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001098 snoop(&ps->dev->dev, "iso urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 break;
1100
1101 case USBDEVFS_URB_TYPE_INTERRUPT:
1102 uurb->number_of_packets = 0;
Alan Stern93cf9b92007-07-30 17:09:28 -04001103 if (!usb_endpoint_xfer_int(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
1106 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001107 if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1108 uurb->buffer, uurb->buffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return -EFAULT;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001110 snoop(&ps->dev->dev, "interrupt urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 break;
1112
1113 default:
1114 return -EINVAL;
1115 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001116 as = alloc_async(uurb->number_of_packets);
1117 if (!as) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001118 kfree(isopkt);
1119 kfree(dr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 return -ENOMEM;
1121 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001122 as->urb->transfer_buffer = kmalloc(uurb->buffer_length, GFP_KERNEL);
1123 if (!as->urb->transfer_buffer) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001124 kfree(isopkt);
1125 kfree(dr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 free_async(as);
1127 return -ENOMEM;
1128 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001129 as->urb->dev = ps->dev;
1130 as->urb->pipe = (uurb->type << 30) |
Alan Stern93cf9b92007-07-30 17:09:28 -04001131 __create_pipe(ps->dev, uurb->endpoint & 0xf) |
1132 (uurb->endpoint & USB_DIR_IN);
Alan Stern14722ef2008-04-17 10:18:11 -04001133
1134 /* This tedious sequence is necessary because the URB_* flags
1135 * are internal to the kernel and subject to change, whereas
1136 * the USBDEVFS_URB_* flags are a user API and must not be changed.
1137 */
1138 u = (is_in ? URB_DIR_IN : URB_DIR_OUT);
1139 if (uurb->flags & USBDEVFS_URB_ISO_ASAP)
1140 u |= URB_ISO_ASAP;
1141 if (uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
1142 u |= URB_SHORT_NOT_OK;
1143 if (uurb->flags & USBDEVFS_URB_NO_FSBR)
1144 u |= URB_NO_FSBR;
1145 if (uurb->flags & USBDEVFS_URB_ZERO_PACKET)
1146 u |= URB_ZERO_PACKET;
1147 if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
1148 u |= URB_NO_INTERRUPT;
1149 as->urb->transfer_flags = u;
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 as->urb->transfer_buffer_length = uurb->buffer_length;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001152 as->urb->setup_packet = (unsigned char *)dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 as->urb->start_frame = uurb->start_frame;
1154 as->urb->number_of_packets = uurb->number_of_packets;
Alan Stern97b9eb92007-02-26 14:56:14 -05001155 if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
1156 ps->dev->speed == USB_SPEED_HIGH)
1157 as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
1158 else
1159 as->urb->interval = ep->desc.bInterval;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001160 as->urb->context = as;
1161 as->urb->complete = async_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
1163 as->urb->iso_frame_desc[u].offset = totlen;
1164 as->urb->iso_frame_desc[u].length = isopkt[u].length;
1165 totlen += isopkt[u].length;
1166 }
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001167 kfree(isopkt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 as->ps = ps;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001169 as->userurb = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (uurb->endpoint & USB_DIR_IN)
1171 as->userbuffer = uurb->buffer;
1172 else
1173 as->userbuffer = NULL;
1174 as->signr = uurb->signr;
1175 as->ifnum = ifnum;
Eric W. Biederman2425c082006-10-02 02:17:28 -07001176 as->pid = get_pid(task_pid(current));
Harald Welte46113832005-10-10 19:44:29 +02001177 as->uid = current->uid;
1178 as->euid = current->euid;
David Quigley7a019552006-06-30 01:55:48 -07001179 security_task_getsecid(current, &as->secid);
Alan Stern93cf9b92007-07-30 17:09:28 -04001180 if (!is_in) {
1181 if (copy_from_user(as->urb->transfer_buffer, uurb->buffer,
1182 as->urb->transfer_buffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 free_async(as);
1184 return -EFAULT;
1185 }
1186 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001187 snoop_urb(as->urb, as->userurb);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001188 async_newpending(as);
1189 if ((ret = usb_submit_urb(as->urb, GFP_KERNEL))) {
1190 dev_printk(KERN_DEBUG, &ps->dev->dev,
1191 "usbfs: usb_submit_urb returned %d\n", ret);
1192 async_removepending(as);
1193 free_async(as);
1194 return ret;
1195 }
1196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
1199static int proc_submiturb(struct dev_state *ps, void __user *arg)
1200{
1201 struct usbdevfs_urb uurb;
1202
1203 if (copy_from_user(&uurb, arg, sizeof(uurb)))
1204 return -EFAULT;
1205
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001206 return proc_do_submiturb(ps, &uurb,
1207 (((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
1208 arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
1211static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
1212{
1213 struct async *as;
1214
1215 as = async_getpending(ps, arg);
1216 if (!as)
1217 return -EINVAL;
1218 usb_kill_urb(as->urb);
1219 return 0;
1220}
1221
1222static int processcompl(struct async *as, void __user * __user *arg)
1223{
1224 struct urb *urb = as->urb;
1225 struct usbdevfs_urb __user *userurb = as->userurb;
1226 void __user *addr = as->userurb;
1227 unsigned int i;
1228
1229 if (as->userbuffer)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001230 if (copy_to_user(as->userbuffer, urb->transfer_buffer,
1231 urb->transfer_buffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return -EFAULT;
Alan Sterne0152682007-08-24 15:42:52 -04001233 if (put_user(as->status, &userurb->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return -EFAULT;
1235 if (put_user(urb->actual_length, &userurb->actual_length))
1236 return -EFAULT;
1237 if (put_user(urb->error_count, &userurb->error_count))
1238 return -EFAULT;
1239
Alan Stern93cf9b92007-07-30 17:09:28 -04001240 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001241 for (i = 0; i < urb->number_of_packets; i++) {
1242 if (put_user(urb->iso_frame_desc[i].actual_length,
1243 &userurb->iso_frame_desc[i].actual_length))
1244 return -EFAULT;
1245 if (put_user(urb->iso_frame_desc[i].status,
1246 &userurb->iso_frame_desc[i].status))
1247 return -EFAULT;
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250
1251 free_async(as);
1252
1253 if (put_user(addr, (void __user * __user *)arg))
1254 return -EFAULT;
1255 return 0;
1256}
1257
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001258static struct async *reap_as(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001260 DECLARE_WAITQUEUE(wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 struct async *as = NULL;
1262 struct usb_device *dev = ps->dev;
1263
1264 add_wait_queue(&ps->wait, &wait);
1265 for (;;) {
1266 __set_current_state(TASK_INTERRUPTIBLE);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001267 as = async_getcompleted(ps);
1268 if (as)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 break;
1270 if (signal_pending(current))
1271 break;
1272 usb_unlock_device(dev);
1273 schedule();
1274 usb_lock_device(dev);
1275 }
1276 remove_wait_queue(&ps->wait, &wait);
1277 set_current_state(TASK_RUNNING);
1278 return as;
1279}
1280
1281static int proc_reapurb(struct dev_state *ps, void __user *arg)
1282{
1283 struct async *as = reap_as(ps);
1284 if (as)
1285 return processcompl(as, (void __user * __user *)arg);
1286 if (signal_pending(current))
1287 return -EINTR;
1288 return -EIO;
1289}
1290
1291static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
1292{
1293 struct async *as;
1294
1295 if (!(as = async_getcompleted(ps)))
1296 return -EAGAIN;
1297 return processcompl(as, (void __user * __user *)arg);
1298}
1299
1300#ifdef CONFIG_COMPAT
1301
1302static int get_urb32(struct usbdevfs_urb *kurb,
1303 struct usbdevfs_urb32 __user *uurb)
1304{
1305 __u32 uptr;
1306 if (get_user(kurb->type, &uurb->type) ||
1307 __get_user(kurb->endpoint, &uurb->endpoint) ||
1308 __get_user(kurb->status, &uurb->status) ||
1309 __get_user(kurb->flags, &uurb->flags) ||
1310 __get_user(kurb->buffer_length, &uurb->buffer_length) ||
1311 __get_user(kurb->actual_length, &uurb->actual_length) ||
1312 __get_user(kurb->start_frame, &uurb->start_frame) ||
1313 __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
1314 __get_user(kurb->error_count, &uurb->error_count) ||
1315 __get_user(kurb->signr, &uurb->signr))
1316 return -EFAULT;
1317
1318 if (__get_user(uptr, &uurb->buffer))
1319 return -EFAULT;
1320 kurb->buffer = compat_ptr(uptr);
1321 if (__get_user(uptr, &uurb->buffer))
1322 return -EFAULT;
1323 kurb->usercontext = compat_ptr(uptr);
1324
1325 return 0;
1326}
1327
1328static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
1329{
1330 struct usbdevfs_urb uurb;
1331
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001332 if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return -EFAULT;
1334
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001335 return proc_do_submiturb(ps, &uurb,
1336 ((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
1337 arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338}
1339
1340static int processcompl_compat(struct async *as, void __user * __user *arg)
1341{
1342 struct urb *urb = as->urb;
1343 struct usbdevfs_urb32 __user *userurb = as->userurb;
1344 void __user *addr = as->userurb;
1345 unsigned int i;
1346
1347 if (as->userbuffer)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001348 if (copy_to_user(as->userbuffer, urb->transfer_buffer,
1349 urb->transfer_buffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return -EFAULT;
Alan Sterne0152682007-08-24 15:42:52 -04001351 if (put_user(as->status, &userurb->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return -EFAULT;
1353 if (put_user(urb->actual_length, &userurb->actual_length))
1354 return -EFAULT;
1355 if (put_user(urb->error_count, &userurb->error_count))
1356 return -EFAULT;
1357
Alan Stern93cf9b92007-07-30 17:09:28 -04001358 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001359 for (i = 0; i < urb->number_of_packets; i++) {
1360 if (put_user(urb->iso_frame_desc[i].actual_length,
1361 &userurb->iso_frame_desc[i].actual_length))
1362 return -EFAULT;
1363 if (put_user(urb->iso_frame_desc[i].status,
1364 &userurb->iso_frame_desc[i].status))
1365 return -EFAULT;
1366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368
1369 free_async(as);
Al Viroc714de52006-10-10 22:45:37 +01001370 if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return -EFAULT;
1372 return 0;
1373}
1374
1375static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
1376{
1377 struct async *as = reap_as(ps);
1378 if (as)
1379 return processcompl_compat(as, (void __user * __user *)arg);
1380 if (signal_pending(current))
1381 return -EINTR;
1382 return -EIO;
1383}
1384
1385static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
1386{
1387 struct async *as;
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 if (!(as = async_getcompleted(ps)))
1390 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return processcompl_compat(as, (void __user * __user *)arg);
1392}
1393
1394#endif
1395
1396static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
1397{
1398 struct usbdevfs_disconnectsignal ds;
1399
1400 if (copy_from_user(&ds, arg, sizeof(ds)))
1401 return -EFAULT;
1402 if (ds.signr != 0 && (ds.signr < SIGRTMIN || ds.signr > SIGRTMAX))
1403 return -EINVAL;
1404 ps->discsignr = ds.signr;
1405 ps->disccontext = ds.context;
1406 return 0;
1407}
1408
1409static int proc_claiminterface(struct dev_state *ps, void __user *arg)
1410{
1411 unsigned int ifnum;
1412
1413 if (get_user(ifnum, (unsigned int __user *)arg))
1414 return -EFAULT;
1415 return claimintf(ps, ifnum);
1416}
1417
1418static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
1419{
1420 unsigned int ifnum;
1421 int ret;
1422
1423 if (get_user(ifnum, (unsigned int __user *)arg))
1424 return -EFAULT;
1425 if ((ret = releaseintf(ps, ifnum)) < 0)
1426 return ret;
1427 destroy_async_on_interface (ps, ifnum);
1428 return 0;
1429}
1430
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001431static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 int size;
1434 void *buf = NULL;
1435 int retval = 0;
1436 struct usb_interface *intf = NULL;
1437 struct usb_driver *driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001439 /* alloc buffer */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001440 if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
1441 if ((buf = kmalloc(size, GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return -ENOMEM;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001443 if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001444 if (copy_from_user(buf, ctl->data, size)) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001445 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return -EFAULT;
1447 }
1448 } else {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001449 memset(buf, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451 }
1452
Alan Stern349710c2006-07-01 22:05:56 -04001453 if (!connected(ps)) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001454 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 return -ENODEV;
1456 }
1457
1458 if (ps->dev->state != USB_STATE_CONFIGURED)
1459 retval = -EHOSTUNREACH;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001460 else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
1461 retval = -EINVAL;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001462 else switch (ctl->ioctl_code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 /* disconnect kernel driver from interface */
1465 case USBDEVFS_DISCONNECT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (intf->dev.driver) {
1467 driver = to_usb_driver(intf->dev.driver);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001468 dev_dbg(&intf->dev, "disconnect by usbfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 usb_driver_release_interface(driver, intf);
1470 } else
1471 retval = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 break;
1473
1474 /* let kernel drivers try to (re)bind to the interface */
1475 case USBDEVFS_CONNECT:
Alan Stern885e9742007-12-03 15:42:10 -05001476 if (!intf->dev.driver)
1477 retval = device_attach(&intf->dev);
1478 else
1479 retval = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 break;
1481
1482 /* talk directly to the interface's driver */
1483 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if (intf->dev.driver)
1485 driver = to_usb_driver(intf->dev.driver);
1486 if (driver == NULL || driver->ioctl == NULL) {
1487 retval = -ENOTTY;
1488 } else {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001489 retval = driver->ioctl(intf, ctl->ioctl_code, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (retval == -ENOIOCTLCMD)
1491 retval = -ENOTTY;
1492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
1494
1495 /* cleanup and return */
1496 if (retval >= 0
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001497 && (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 && size > 0
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001499 && copy_to_user(ctl->data, buf, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 retval = -EFAULT;
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001501
1502 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return retval;
1504}
1505
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001506static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
1507{
1508 struct usbdevfs_ioctl ctrl;
1509
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001510 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001511 return -EFAULT;
1512 return proc_ioctl(ps, &ctrl);
1513}
1514
1515#ifdef CONFIG_COMPAT
Andrew Morton777da592005-11-17 09:47:02 -08001516static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001517{
1518 struct usbdevfs_ioctl32 __user *uioc;
1519 struct usbdevfs_ioctl ctrl;
1520 u32 udata;
1521
Andrew Morton058120d2005-11-17 09:47:49 -08001522 uioc = compat_ptr((long)arg);
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001523 if (get_user(ctrl.ifno, &uioc->ifno) ||
1524 get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
1525 __get_user(udata, &uioc->data))
1526 return -EFAULT;
1527 ctrl.data = compat_ptr(udata);
1528
1529 return proc_ioctl(ps, &ctrl);
1530}
1531#endif
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533/*
1534 * NOTE: All requests here that have interface numbers as parameters
1535 * are assuming that somehow the configuration has been prevented from
1536 * changing. But there's no mechanism to ensure that...
1537 */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001538static int usbdev_ioctl(struct inode *inode, struct file *file,
1539 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Tobias Klauserec17cf12006-09-13 21:38:41 +02001541 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 struct usb_device *dev = ps->dev;
1543 void __user *p = (void __user *)arg;
1544 int ret = -ENOTTY;
1545
1546 if (!(file->f_mode & FMODE_WRITE))
1547 return -EPERM;
1548 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -04001549 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 usb_unlock_device(dev);
1551 return -ENODEV;
1552 }
1553
1554 switch (cmd) {
1555 case USBDEVFS_CONTROL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001556 snoop(&dev->dev, "%s: CONTROL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 ret = proc_control(ps, p);
1558 if (ret >= 0)
1559 inode->i_mtime = CURRENT_TIME;
1560 break;
1561
1562 case USBDEVFS_BULK:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001563 snoop(&dev->dev, "%s: BULK\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 ret = proc_bulk(ps, p);
1565 if (ret >= 0)
1566 inode->i_mtime = CURRENT_TIME;
1567 break;
1568
1569 case USBDEVFS_RESETEP:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001570 snoop(&dev->dev, "%s: RESETEP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 ret = proc_resetep(ps, p);
1572 if (ret >= 0)
1573 inode->i_mtime = CURRENT_TIME;
1574 break;
1575
1576 case USBDEVFS_RESET:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001577 snoop(&dev->dev, "%s: RESET\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 ret = proc_resetdevice(ps);
1579 break;
1580
1581 case USBDEVFS_CLEAR_HALT:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001582 snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 ret = proc_clearhalt(ps, p);
1584 if (ret >= 0)
1585 inode->i_mtime = CURRENT_TIME;
1586 break;
1587
1588 case USBDEVFS_GETDRIVER:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001589 snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 ret = proc_getdriver(ps, p);
1591 break;
1592
1593 case USBDEVFS_CONNECTINFO:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001594 snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 ret = proc_connectinfo(ps, p);
1596 break;
1597
1598 case USBDEVFS_SETINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001599 snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 ret = proc_setintf(ps, p);
1601 break;
1602
1603 case USBDEVFS_SETCONFIGURATION:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001604 snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 ret = proc_setconfig(ps, p);
1606 break;
1607
1608 case USBDEVFS_SUBMITURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001609 snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 ret = proc_submiturb(ps, p);
1611 if (ret >= 0)
1612 inode->i_mtime = CURRENT_TIME;
1613 break;
1614
1615#ifdef CONFIG_COMPAT
1616
1617 case USBDEVFS_SUBMITURB32:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001618 snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 ret = proc_submiturb_compat(ps, p);
1620 if (ret >= 0)
1621 inode->i_mtime = CURRENT_TIME;
1622 break;
1623
1624 case USBDEVFS_REAPURB32:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001625 snoop(&dev->dev, "%s: REAPURB32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 ret = proc_reapurb_compat(ps, p);
1627 break;
1628
1629 case USBDEVFS_REAPURBNDELAY32:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001630 snoop(&dev->dev, "%s: REAPURBDELAY32\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 ret = proc_reapurbnonblock_compat(ps, p);
1632 break;
1633
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001634 case USBDEVFS_IOCTL32:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001635 snoop(&dev->dev, "%s: IOCTL\n", __func__);
Al Viroc714de52006-10-10 22:45:37 +01001636 ret = proc_ioctl_compat(ps, ptr_to_compat(p));
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001637 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638#endif
1639
1640 case USBDEVFS_DISCARDURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001641 snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 ret = proc_unlinkurb(ps, p);
1643 break;
1644
1645 case USBDEVFS_REAPURB:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001646 snoop(&dev->dev, "%s: REAPURB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 ret = proc_reapurb(ps, p);
1648 break;
1649
1650 case USBDEVFS_REAPURBNDELAY:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001651 snoop(&dev->dev, "%s: REAPURBDELAY\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 ret = proc_reapurbnonblock(ps, p);
1653 break;
1654
1655 case USBDEVFS_DISCSIGNAL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001656 snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 ret = proc_disconnectsignal(ps, p);
1658 break;
1659
1660 case USBDEVFS_CLAIMINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001661 snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 ret = proc_claiminterface(ps, p);
1663 break;
1664
1665 case USBDEVFS_RELEASEINTERFACE:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001666 snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 ret = proc_releaseinterface(ps, p);
1668 break;
1669
1670 case USBDEVFS_IOCTL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001671 snoop(&dev->dev, "%s: IOCTL\n", __func__);
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001672 ret = proc_ioctl_default(ps, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 break;
1674 }
1675 usb_unlock_device(dev);
1676 if (ret >= 0)
1677 inode->i_atime = CURRENT_TIME;
1678 return ret;
1679}
1680
1681/* No kernel lock - fine */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001682static unsigned int usbdev_poll(struct file *file,
1683 struct poll_table_struct *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
Tobias Klauserec17cf12006-09-13 21:38:41 +02001685 struct dev_state *ps = file->private_data;
1686 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 poll_wait(file, &ps->wait, wait);
1689 if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
1690 mask |= POLLOUT | POLLWRNORM;
Alan Stern349710c2006-07-01 22:05:56 -04001691 if (!connected(ps))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 mask |= POLLERR | POLLHUP;
1693 return mask;
1694}
1695
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001696const struct file_operations usbdev_file_operations = {
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -07001697 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 .llseek = usbdev_lseek,
1699 .read = usbdev_read,
1700 .poll = usbdev_poll,
1701 .ioctl = usbdev_ioctl,
1702 .open = usbdev_open,
1703 .release = usbdev_release,
1704};
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001705
Alan Sterncd9f0372008-06-24 14:47:04 -04001706void usb_fs_classdev_common_remove(struct usb_device *udev)
1707{
1708 struct dev_state *ps;
1709 struct siginfo sinfo;
1710
1711 while (!list_empty(&udev->filelist)) {
1712 ps = list_entry(udev->filelist.next, struct dev_state, list);
1713 destroy_all_async(ps);
1714 wake_up_all(&ps->wait);
1715 list_del_init(&ps->list);
1716 if (ps->discsignr) {
1717 sinfo.si_signo = ps->discsignr;
1718 sinfo.si_errno = EPIPE;
1719 sinfo.si_code = SI_ASYNCIO;
1720 sinfo.si_addr = ps->disccontext;
1721 kill_pid_info_as_uid(ps->discsignr, &sinfo,
1722 ps->disc_pid, ps->disc_uid,
1723 ps->disc_euid, ps->secid);
1724 }
1725 }
1726}
1727
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001728#ifdef CONFIG_USB_DEVICE_CLASS
1729static struct class *usb_classdev_class;
1730
1731static int usb_classdev_add(struct usb_device *dev)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001732{
Alan Sterne04199b2008-06-24 14:47:29 -04001733 struct device *cldev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001734
Greg Kroah-Hartmanb0b090e2008-07-21 20:03:34 -07001735 cldev = device_create(usb_classdev_class, &dev->dev, dev->dev.devt,
1736 NULL, "usbdev%d.%d", dev->bus->busnum,
1737 dev->devnum);
Alan Sterne04199b2008-06-24 14:47:29 -04001738 if (IS_ERR(cldev))
1739 return PTR_ERR(cldev);
1740 dev->usb_classdev = cldev;
Akinobu Mita27d39e22006-10-09 18:09:33 +09001741 return 0;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001742}
1743
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001744static void usb_classdev_remove(struct usb_device *dev)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001745{
Alan Sterne04199b2008-06-24 14:47:29 -04001746 if (dev->usb_classdev)
1747 device_unregister(dev->usb_classdev);
Alan Sterncd9f0372008-06-24 14:47:04 -04001748 usb_fs_classdev_common_remove(dev);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001749}
1750
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001751static int usb_classdev_notify(struct notifier_block *self,
1752 unsigned long action, void *dev)
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001753{
1754 switch (action) {
1755 case USB_DEVICE_ADD:
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001756 if (usb_classdev_add(dev))
Akinobu Mita27d39e22006-10-09 18:09:33 +09001757 return NOTIFY_BAD;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001758 break;
1759 case USB_DEVICE_REMOVE:
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001760 usb_classdev_remove(dev);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001761 break;
1762 }
1763 return NOTIFY_OK;
1764}
1765
1766static struct notifier_block usbdev_nb = {
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001767 .notifier_call = usb_classdev_notify,
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001768};
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001769#endif
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001770
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -07001771static struct cdev usb_device_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001772
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001773int __init usb_devio_init(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001774{
1775 int retval;
1776
Alan Sternfad21bd2005-08-10 15:15:57 -04001777 retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001778 "usb_device");
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001779 if (retval) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07001780 printk(KERN_ERR "Unable to register minors for usb_device\n");
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001781 goto out;
1782 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001783 cdev_init(&usb_device_cdev, &usbdev_file_operations);
Alan Sternfad21bd2005-08-10 15:15:57 -04001784 retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001785 if (retval) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07001786 printk(KERN_ERR "Unable to get usb_device major %d\n",
1787 USB_DEVICE_MAJOR);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001788 goto error_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001789 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001790#ifdef CONFIG_USB_DEVICE_CLASS
1791 usb_classdev_class = class_create(THIS_MODULE, "usb_device");
1792 if (IS_ERR(usb_classdev_class)) {
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -07001793 printk(KERN_ERR "Unable to register usb_device class\n");
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001794 retval = PTR_ERR(usb_classdev_class);
1795 cdev_del(&usb_device_cdev);
1796 usb_classdev_class = NULL;
1797 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001798 }
Dan Williamse105b8b2008-04-21 10:51:07 -07001799 /* devices of this class shadow the major:minor of their parent
1800 * device, so clear ->dev_kobj to prevent adding duplicate entries
1801 * to /sys/dev
1802 */
1803 usb_classdev_class->dev_kobj = NULL;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001804
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001805 usb_register_notify(&usbdev_nb);
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001806#endif
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001807out:
1808 return retval;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001809
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001810error_cdev:
1811 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
1812 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001813}
1814
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001815void usb_devio_cleanup(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001816{
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001817#ifdef CONFIG_USB_DEVICE_CLASS
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001818 usb_unregister_notify(&usbdev_nb);
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001819 class_destroy(usb_classdev_class);
1820#endif
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001821 cdev_del(&usb_device_cdev);
Alan Sternfad21bd2005-08-10 15:15:57 -04001822 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001823}