blob: 85ec65ada123a5718d7ab1d889f4bd49c1e9d22c [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 *
22 * $Id: devio.c,v 1.7 2000/02/01 17:28:48 fliegl Exp $
23 *
24 * This file implements the usbfs/x/y files, where
25 * x is the bus number and y the device number.
26 *
27 * It allows user space programs/"drivers" to communicate directly
28 * with USB devices without intervening kernel driver.
29 *
30 * Revision history
31 * 22.12.1999 0.1 Initial release (split from proc_usb.c)
32 * 04.01.2000 0.2 Turned into its own filesystem
Harald Welte46113832005-10-10 19:44:29 +020033 * 30.09.2005 0.3 Fix user-triggerable oops in async URB delivery
34 * (CAN-2005-3055)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36
37/*****************************************************************************/
38
39#include <linux/fs.h>
40#include <linux/mm.h>
41#include <linux/slab.h>
42#include <linux/smp_lock.h>
43#include <linux/signal.h>
44#include <linux/poll.h>
45#include <linux/module.h>
46#include <linux/usb.h>
47#include <linux/usbdevice_fs.h>
Kay Sieversfbf82fd2005-07-31 01:05:53 +020048#include <linux/cdev.h>
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -070049#include <linux/notifier.h>
David Quigley7a019552006-06-30 01:55:48 -070050#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/uaccess.h>
52#include <asm/byteorder.h>
53#include <linux/moduleparam.h>
54
55#include "hcd.h" /* for usbcore internals */
56#include "usb.h"
57
Kay Sieversfbf82fd2005-07-31 01:05:53 +020058#define USB_MAXBUS 64
59#define USB_DEVICE_MAX USB_MAXBUS * 128
Kay Sieversfbf82fd2005-07-31 01:05:53 +020060
Alan Stern4a2a8a22006-07-01 22:05:01 -040061/* Mutual exclusion for removal, open, and release */
62DEFINE_MUTEX(usbfs_mutex);
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064struct async {
65 struct list_head asynclist;
66 struct dev_state *ps;
Eric W. Biederman2425c082006-10-02 02:17:28 -070067 struct pid *pid;
Harald Welte46113832005-10-10 19:44:29 +020068 uid_t uid, euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 unsigned int signr;
70 unsigned int ifnum;
71 void __user *userbuffer;
72 void __user *userurb;
73 struct urb *urb;
Alan Sterne0152682007-08-24 15:42:52 -040074 int status;
David Quigley7a019552006-06-30 01:55:48 -070075 u32 secid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
78static int usbfs_snoop = 0;
79module_param (usbfs_snoop, bool, S_IRUGO | S_IWUSR);
80MODULE_PARM_DESC (usbfs_snoop, "true to log all usbfs traffic");
81
82#define snoop(dev, format, arg...) \
83 do { \
84 if (usbfs_snoop) \
85 dev_info( dev , format , ## arg); \
86 } while (0)
87
Alan Sternfad21bd2005-08-10 15:15:57 -040088#define USB_DEVICE_DEV MKDEV(USB_DEVICE_MAJOR, 0)
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91#define MAX_USBFS_BUFFER_SIZE 16384
92
Alan Stern349710c2006-07-01 22:05:56 -040093static inline int connected (struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Alan Stern349710c2006-07-01 22:05:56 -040095 return (!list_empty(&ps->list) &&
96 ps->dev->state != USB_STATE_NOTATTACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig)
100{
101 loff_t ret;
102
103 lock_kernel();
104
105 switch (orig) {
106 case 0:
107 file->f_pos = offset;
108 ret = file->f_pos;
109 break;
110 case 1:
111 file->f_pos += offset;
112 ret = file->f_pos;
113 break;
114 case 2:
115 default:
116 ret = -EINVAL;
117 }
118
119 unlock_kernel();
120 return ret;
121}
122
123static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
124{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200125 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct usb_device *dev = ps->dev;
127 ssize_t ret = 0;
128 unsigned len;
129 loff_t pos;
130 int i;
131
132 pos = *ppos;
133 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -0400134 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 ret = -ENODEV;
136 goto err;
137 } else if (pos < 0) {
138 ret = -EINVAL;
139 goto err;
140 }
141
142 if (pos < sizeof(struct usb_device_descriptor)) {
Oliver Neukum8781ba02006-01-06 21:24:25 +0100143 struct usb_device_descriptor temp_desc ; /* 18 bytes - fits on the stack */
144
145 memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
Andrew Morton9fcd5c32006-01-18 23:55:07 -0800146 le16_to_cpus(&temp_desc.bcdUSB);
147 le16_to_cpus(&temp_desc.idVendor);
148 le16_to_cpus(&temp_desc.idProduct);
149 le16_to_cpus(&temp_desc.bcdDevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 len = sizeof(struct usb_device_descriptor) - pos;
152 if (len > nbytes)
153 len = nbytes;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100154 if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 ret = -EFAULT;
156 goto err;
157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 *ppos += len;
160 buf += len;
161 nbytes -= len;
162 ret += len;
163 }
164
165 pos = sizeof(struct usb_device_descriptor);
166 for (i = 0; nbytes && i < dev->descriptor.bNumConfigurations; i++) {
167 struct usb_config_descriptor *config =
168 (struct usb_config_descriptor *)dev->rawdescriptors[i];
169 unsigned int length = le16_to_cpu(config->wTotalLength);
170
171 if (*ppos < pos + length) {
172
173 /* The descriptor may claim to be longer than it
174 * really is. Here is the actual allocated length. */
175 unsigned alloclen =
176 le16_to_cpu(dev->config[i].desc.wTotalLength);
177
178 len = length - (*ppos - pos);
179 if (len > nbytes)
180 len = nbytes;
181
182 /* Simply don't write (skip over) unallocated parts */
183 if (alloclen > (*ppos - pos)) {
184 alloclen -= (*ppos - pos);
185 if (copy_to_user(buf,
186 dev->rawdescriptors[i] + (*ppos - pos),
187 min(len, alloclen))) {
188 ret = -EFAULT;
189 goto err;
190 }
191 }
192
193 *ppos += len;
194 buf += len;
195 nbytes -= len;
196 ret += len;
197 }
198
199 pos += length;
200 }
201
202err:
203 usb_unlock_device(dev);
204 return ret;
205}
206
207/*
208 * async list handling
209 */
210
211static struct async *alloc_async(unsigned int numisoframes)
212{
213 unsigned int assize = sizeof(struct async) + numisoframes * sizeof(struct usb_iso_packet_descriptor);
Alan Stern0a1ef3b2005-10-24 15:38:24 -0400214 struct async *as = kzalloc(assize, GFP_KERNEL);
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (!as)
217 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
219 if (!as->urb) {
220 kfree(as);
221 return NULL;
222 }
223 return as;
224}
225
226static void free_async(struct async *as)
227{
Eric W. Biederman2425c082006-10-02 02:17:28 -0700228 put_pid(as->pid);
Jesper Juhl6fd19f42005-04-18 17:39:33 -0700229 kfree(as->urb->transfer_buffer);
230 kfree(as->urb->setup_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 usb_free_urb(as->urb);
Jesper Juhl6fd19f42005-04-18 17:39:33 -0700232 kfree(as);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235static inline void async_newpending(struct async *as)
236{
237 struct dev_state *ps = as->ps;
238 unsigned long flags;
239
240 spin_lock_irqsave(&ps->lock, flags);
241 list_add_tail(&as->asynclist, &ps->async_pending);
242 spin_unlock_irqrestore(&ps->lock, flags);
243}
244
245static inline void async_removepending(struct async *as)
246{
247 struct dev_state *ps = as->ps;
248 unsigned long flags;
249
250 spin_lock_irqsave(&ps->lock, flags);
251 list_del_init(&as->asynclist);
252 spin_unlock_irqrestore(&ps->lock, flags);
253}
254
255static inline struct async *async_getcompleted(struct dev_state *ps)
256{
257 unsigned long flags;
258 struct async *as = NULL;
259
260 spin_lock_irqsave(&ps->lock, flags);
261 if (!list_empty(&ps->async_completed)) {
262 as = list_entry(ps->async_completed.next, struct async, asynclist);
263 list_del_init(&as->asynclist);
264 }
265 spin_unlock_irqrestore(&ps->lock, flags);
266 return as;
267}
268
269static inline struct async *async_getpending(struct dev_state *ps, void __user *userurb)
270{
271 unsigned long flags;
272 struct async *as;
273
274 spin_lock_irqsave(&ps->lock, flags);
275 list_for_each_entry(as, &ps->async_pending, asynclist)
276 if (as->userurb == userurb) {
277 list_del_init(&as->asynclist);
278 spin_unlock_irqrestore(&ps->lock, flags);
279 return as;
280 }
281 spin_unlock_irqrestore(&ps->lock, flags);
282 return NULL;
283}
284
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700285static void snoop_urb(struct urb *urb, void __user *userurb)
286{
287 int j;
288 unsigned char *data = urb->transfer_buffer;
289
290 if (!usbfs_snoop)
291 return;
292
Alan Stern93cf9b92007-07-30 17:09:28 -0400293 dev_info(&urb->dev->dev, "direction=%s\n",
294 usb_urb_dir_in(urb) ? "IN" : "OUT");
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700295 dev_info(&urb->dev->dev, "userurb=%p\n", userurb);
296 dev_info(&urb->dev->dev, "transfer_buffer_length=%d\n",
297 urb->transfer_buffer_length);
298 dev_info(&urb->dev->dev, "actual_length=%d\n", urb->actual_length);
299 dev_info(&urb->dev->dev, "data: ");
300 for (j = 0; j < urb->transfer_buffer_length; ++j)
301 printk ("%02x ", data[j]);
302 printk("\n");
303}
304
David Howells7d12e782006-10-05 14:55:46 +0100305static void async_completed(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200307 struct async *as = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct dev_state *ps = as->ps;
309 struct siginfo sinfo;
310
311 spin_lock(&ps->lock);
312 list_move_tail(&as->asynclist, &ps->async_completed);
313 spin_unlock(&ps->lock);
Alan Sterne0152682007-08-24 15:42:52 -0400314 as->status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (as->signr) {
316 sinfo.si_signo = as->signr;
Alan Sterne0152682007-08-24 15:42:52 -0400317 sinfo.si_errno = as->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 sinfo.si_code = SI_ASYNCIO;
319 sinfo.si_addr = as->userurb;
Eric W. Biederman2425c082006-10-02 02:17:28 -0700320 kill_pid_info_as_uid(as->signr, &sinfo, as->pid, as->uid,
David Quigley7a019552006-06-30 01:55:48 -0700321 as->euid, as->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700323 snoop(&urb->dev->dev, "urb complete\n");
324 snoop_urb(urb, as->userurb);
325 wake_up(&ps->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328static void destroy_async (struct dev_state *ps, struct list_head *list)
329{
330 struct async *as;
331 unsigned long flags;
332
333 spin_lock_irqsave(&ps->lock, flags);
334 while (!list_empty(list)) {
335 as = list_entry(list->next, struct async, asynclist);
336 list_del_init(&as->asynclist);
337
338 /* drop the spinlock so the completion handler can run */
339 spin_unlock_irqrestore(&ps->lock, flags);
340 usb_kill_urb(as->urb);
341 spin_lock_irqsave(&ps->lock, flags);
342 }
343 spin_unlock_irqrestore(&ps->lock, flags);
344 as = async_getcompleted(ps);
345 while (as) {
346 free_async(as);
347 as = async_getcompleted(ps);
348 }
349}
350
351static void destroy_async_on_interface (struct dev_state *ps, unsigned int ifnum)
352{
353 struct list_head *p, *q, hitlist;
354 unsigned long flags;
355
356 INIT_LIST_HEAD(&hitlist);
357 spin_lock_irqsave(&ps->lock, flags);
358 list_for_each_safe(p, q, &ps->async_pending)
359 if (ifnum == list_entry(p, struct async, asynclist)->ifnum)
360 list_move_tail(p, &hitlist);
361 spin_unlock_irqrestore(&ps->lock, flags);
362 destroy_async(ps, &hitlist);
363}
364
365static inline void destroy_all_async(struct dev_state *ps)
366{
367 destroy_async(ps, &ps->async_pending);
368}
369
370/*
371 * interface claims are made only at the request of user level code,
372 * which can also release them (explicitly or by closing files).
373 * they're also undone when devices disconnect.
374 */
375
376static int driver_probe (struct usb_interface *intf,
377 const struct usb_device_id *id)
378{
379 return -ENODEV;
380}
381
382static void driver_disconnect(struct usb_interface *intf)
383{
384 struct dev_state *ps = usb_get_intfdata (intf);
385 unsigned int ifnum = intf->altsetting->desc.bInterfaceNumber;
386
387 if (!ps)
388 return;
389
390 /* NOTE: this relies on usbcore having canceled and completed
391 * all pending I/O requests; 2.6 does that.
392 */
393
394 if (likely(ifnum < 8*sizeof(ps->ifclaimed)))
395 clear_bit(ifnum, &ps->ifclaimed);
396 else
397 warn("interface number %u out of range", ifnum);
398
399 usb_set_intfdata (intf, NULL);
400
401 /* force async requests to complete */
402 destroy_async_on_interface(ps, ifnum);
403}
404
405struct usb_driver usbfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 .name = "usbfs",
407 .probe = driver_probe,
408 .disconnect = driver_disconnect,
409};
410
411static int claimintf(struct dev_state *ps, unsigned int ifnum)
412{
413 struct usb_device *dev = ps->dev;
414 struct usb_interface *intf;
415 int err;
416
417 if (ifnum >= 8*sizeof(ps->ifclaimed))
418 return -EINVAL;
419 /* already claimed */
420 if (test_bit(ifnum, &ps->ifclaimed))
421 return 0;
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 intf = usb_ifnum_to_if(dev, ifnum);
424 if (!intf)
425 err = -ENOENT;
426 else
427 err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (err == 0)
429 set_bit(ifnum, &ps->ifclaimed);
430 return err;
431}
432
433static int releaseintf(struct dev_state *ps, unsigned int ifnum)
434{
435 struct usb_device *dev;
436 struct usb_interface *intf;
437 int err;
438
439 err = -EINVAL;
440 if (ifnum >= 8*sizeof(ps->ifclaimed))
441 return err;
442 dev = ps->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 intf = usb_ifnum_to_if(dev, ifnum);
444 if (!intf)
445 err = -ENOENT;
446 else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
447 usb_driver_release_interface(&usbfs_driver, intf);
448 err = 0;
449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return err;
451}
452
453static int checkintf(struct dev_state *ps, unsigned int ifnum)
454{
455 if (ps->dev->state != USB_STATE_CONFIGURED)
456 return -EHOSTUNREACH;
457 if (ifnum >= 8*sizeof(ps->ifclaimed))
458 return -EINVAL;
459 if (test_bit(ifnum, &ps->ifclaimed))
460 return 0;
461 /* if not yet claimed, claim it for the driver */
462 dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim interface %u before use\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700463 task_pid_nr(current), current->comm, ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return claimintf(ps, ifnum);
465}
466
467static int findintfep(struct usb_device *dev, unsigned int ep)
468{
469 unsigned int i, j, e;
470 struct usb_interface *intf;
471 struct usb_host_interface *alts;
472 struct usb_endpoint_descriptor *endpt;
473
474 if (ep & ~(USB_DIR_IN|0xf))
475 return -EINVAL;
476 if (!dev->actconfig)
477 return -ESRCH;
478 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
479 intf = dev->actconfig->interface[i];
480 for (j = 0; j < intf->num_altsetting; j++) {
481 alts = &intf->altsetting[j];
482 for (e = 0; e < alts->desc.bNumEndpoints; e++) {
483 endpt = &alts->endpoint[e].desc;
484 if (endpt->bEndpointAddress == ep)
485 return alts->desc.bInterfaceNumber;
486 }
487 }
488 }
489 return -ENOENT;
490}
491
492static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype, unsigned int index)
493{
494 int ret = 0;
495
Horst Schirmeier24f8b112006-03-11 00:16:55 -0800496 if (ps->dev->state != USB_STATE_ADDRESS
497 && ps->dev->state != USB_STATE_CONFIGURED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return -EHOSTUNREACH;
499 if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
500 return 0;
501
502 index &= 0xff;
503 switch (requesttype & USB_RECIP_MASK) {
504 case USB_RECIP_ENDPOINT:
505 if ((ret = findintfep(ps->dev, index)) >= 0)
506 ret = checkintf(ps, ret);
507 break;
508
509 case USB_RECIP_INTERFACE:
510 ret = checkintf(ps, index);
511 break;
512 }
513 return ret;
514}
515
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100516static int __match_minor(struct device *dev, void *data)
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700517{
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100518 int minor = *((int *)data);
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700519
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100520 if (dev->devt == MKDEV(USB_DEVICE_MAJOR, minor))
521 return 1;
522 return 0;
523}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700524
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100525static struct usb_device *usbdev_lookup_by_minor(int minor)
526{
527 struct device *dev;
528
529 dev = bus_find_device(&usb_bus_type, NULL, &minor, __match_minor);
530 if (!dev)
531 return NULL;
532 put_device(dev);
533 return container_of(dev, struct usb_device, dev);
534}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536/*
537 * file operations
538 */
539static int usbdev_open(struct inode *inode, struct file *file)
540{
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200541 struct usb_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 struct dev_state *ps;
543 int ret;
544
Alan Stern4a2a8a22006-07-01 22:05:01 -0400545 /* Protect against simultaneous removal or release */
546 mutex_lock(&usbfs_mutex);
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 ret = -ENOMEM;
549 if (!(ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL)))
Alan Stern4a2a8a22006-07-01 22:05:01 -0400550 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 ret = -ENOENT;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100553 /* usbdev device-node */
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200554 if (imajor(inode) == USB_DEVICE_MAJOR)
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100555 dev = usbdev_lookup_by_minor(iminor(inode));
556#ifdef CONFIG_USB_DEVICEFS
557 /* procfs file */
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200558 if (!dev)
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700559 dev = inode->i_private;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100560#endif
Alan Stern01d883d2006-08-30 15:47:18 -0400561 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 goto out;
Alan Stern94fcda12006-11-20 11:38:46 -0500563 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -0400564 if (ret)
565 goto out;
566
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200567 usb_get_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 ret = 0;
569 ps->dev = dev;
570 ps->file = file;
571 spin_lock_init(&ps->lock);
Dan Carpenter316547f2006-12-13 00:03:38 -0800572 INIT_LIST_HEAD(&ps->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 INIT_LIST_HEAD(&ps->async_pending);
574 INIT_LIST_HEAD(&ps->async_completed);
575 init_waitqueue_head(&ps->wait);
576 ps->discsignr = 0;
Eric W. Biederman2425c082006-10-02 02:17:28 -0700577 ps->disc_pid = get_pid(task_pid(current));
Linus Torvaldsd7dd8a72005-10-10 16:31:30 -0700578 ps->disc_uid = current->uid;
579 ps->disc_euid = current->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 ps->disccontext = NULL;
581 ps->ifclaimed = 0;
David Quigley7a019552006-06-30 01:55:48 -0700582 security_task_getsecid(current, &ps->secid);
Oliver Neukum527660a2007-04-20 20:50:48 +0200583 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 list_add_tail(&ps->list, &dev->filelist);
585 file->private_data = ps;
586 out:
Alan Stern01d883d2006-08-30 15:47:18 -0400587 if (ret)
588 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400589 mutex_unlock(&usbfs_mutex);
590 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593static int usbdev_release(struct inode *inode, struct file *file)
594{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200595 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 struct usb_device *dev = ps->dev;
597 unsigned int ifnum;
598
599 usb_lock_device(dev);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400600
601 /* Protect against simultaneous open */
602 mutex_lock(&usbfs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 list_del_init(&ps->list);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400604 mutex_unlock(&usbfs_mutex);
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
607 ifnum++) {
608 if (test_bit(ifnum, &ps->ifclaimed))
609 releaseintf(ps, ifnum);
610 }
611 destroy_all_async(ps);
Alan Stern94fcda12006-11-20 11:38:46 -0500612 usb_autosuspend_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 usb_unlock_device(dev);
614 usb_put_dev(dev);
Eric W. Biederman2425c082006-10-02 02:17:28 -0700615 put_pid(ps->disc_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400617 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620static int proc_control(struct dev_state *ps, void __user *arg)
621{
622 struct usb_device *dev = ps->dev;
623 struct usbdevfs_ctrltransfer ctrl;
624 unsigned int tmo;
625 unsigned char *tbuf;
626 int i, j, ret;
627
628 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
629 return -EFAULT;
630 if ((ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.wIndex)))
631 return ret;
632 if (ctrl.wLength > PAGE_SIZE)
633 return -EINVAL;
634 if (!(tbuf = (unsigned char *)__get_free_page(GFP_KERNEL)))
635 return -ENOMEM;
636 tmo = ctrl.timeout;
637 if (ctrl.bRequestType & 0x80) {
638 if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data, ctrl.wLength)) {
639 free_page((unsigned long)tbuf);
640 return -EINVAL;
641 }
Alan Sternfe0410c2005-07-29 12:16:58 -0700642 snoop(&dev->dev, "control read: bRequest=%02x "
643 "bRrequestType=%02x wValue=%04x "
644 "wIndex=%04x wLength=%04x\n",
645 ctrl.bRequest, ctrl.bRequestType, ctrl.wValue,
646 ctrl.wIndex, ctrl.wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 usb_unlock_device(dev);
649 i = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), ctrl.bRequest, ctrl.bRequestType,
650 ctrl.wValue, ctrl.wIndex, tbuf, ctrl.wLength, tmo);
651 usb_lock_device(dev);
652 if ((i > 0) && ctrl.wLength) {
653 if (usbfs_snoop) {
654 dev_info(&dev->dev, "control read: data ");
Alan Sternfe0410c2005-07-29 12:16:58 -0700655 for (j = 0; j < i; ++j)
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700656 printk("%02x ", (unsigned char)(tbuf)[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 printk("\n");
658 }
Alan Sternfe0410c2005-07-29 12:16:58 -0700659 if (copy_to_user(ctrl.data, tbuf, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 free_page((unsigned long)tbuf);
661 return -EFAULT;
662 }
663 }
664 } else {
665 if (ctrl.wLength) {
666 if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
667 free_page((unsigned long)tbuf);
668 return -EFAULT;
669 }
670 }
Alan Sternfe0410c2005-07-29 12:16:58 -0700671 snoop(&dev->dev, "control write: bRequest=%02x "
672 "bRrequestType=%02x wValue=%04x "
673 "wIndex=%04x wLength=%04x\n",
674 ctrl.bRequest, ctrl.bRequestType, ctrl.wValue,
675 ctrl.wIndex, ctrl.wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (usbfs_snoop) {
677 dev_info(&dev->dev, "control write: data: ");
678 for (j = 0; j < ctrl.wLength; ++j)
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700679 printk("%02x ", (unsigned char)(tbuf)[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 printk("\n");
681 }
682 usb_unlock_device(dev);
683 i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest, ctrl.bRequestType,
684 ctrl.wValue, ctrl.wIndex, tbuf, ctrl.wLength, tmo);
685 usb_lock_device(dev);
686 }
687 free_page((unsigned long)tbuf);
688 if (i<0 && i != -EPIPE) {
689 dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
690 "failed cmd %s rqt %u rq %u len %u ret %d\n",
691 current->comm, ctrl.bRequestType, ctrl.bRequest,
692 ctrl.wLength, i);
693 }
694 return i;
695}
696
697static int proc_bulk(struct dev_state *ps, void __user *arg)
698{
699 struct usb_device *dev = ps->dev;
700 struct usbdevfs_bulktransfer bulk;
701 unsigned int tmo, len1, pipe;
702 int len2;
703 unsigned char *tbuf;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700704 int i, j, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (copy_from_user(&bulk, arg, sizeof(bulk)))
707 return -EFAULT;
708 if ((ret = findintfep(ps->dev, bulk.ep)) < 0)
709 return ret;
710 if ((ret = checkintf(ps, ret)))
711 return ret;
712 if (bulk.ep & USB_DIR_IN)
713 pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
714 else
715 pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
716 if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
717 return -EINVAL;
718 len1 = bulk.len;
719 if (len1 > MAX_USBFS_BUFFER_SIZE)
720 return -EINVAL;
721 if (!(tbuf = kmalloc(len1, GFP_KERNEL)))
722 return -ENOMEM;
723 tmo = bulk.timeout;
724 if (bulk.ep & 0x80) {
725 if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
726 kfree(tbuf);
727 return -EINVAL;
728 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700729 snoop(&dev->dev, "bulk read: len=0x%02x timeout=%04d\n",
730 bulk.len, bulk.timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 usb_unlock_device(dev);
732 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
733 usb_lock_device(dev);
734 if (!i && len2) {
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700735 if (usbfs_snoop) {
736 dev_info(&dev->dev, "bulk read: data ");
737 for (j = 0; j < len2; ++j)
738 printk("%02x ", (unsigned char)(tbuf)[j]);
739 printk("\n");
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (copy_to_user(bulk.data, tbuf, len2)) {
742 kfree(tbuf);
743 return -EFAULT;
744 }
745 }
746 } else {
747 if (len1) {
748 if (copy_from_user(tbuf, bulk.data, len1)) {
749 kfree(tbuf);
750 return -EFAULT;
751 }
752 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700753 snoop(&dev->dev, "bulk write: len=0x%02x timeout=%04d\n",
754 bulk.len, bulk.timeout);
755 if (usbfs_snoop) {
756 dev_info(&dev->dev, "bulk write: data: ");
757 for (j = 0; j < len1; ++j)
758 printk("%02x ", (unsigned char)(tbuf)[j]);
759 printk("\n");
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 usb_unlock_device(dev);
762 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
763 usb_lock_device(dev);
764 }
765 kfree(tbuf);
766 if (i < 0)
767 return i;
768 return len2;
769}
770
771static int proc_resetep(struct dev_state *ps, void __user *arg)
772{
773 unsigned int ep;
774 int ret;
775
776 if (get_user(ep, (unsigned int __user *)arg))
777 return -EFAULT;
778 if ((ret = findintfep(ps->dev, ep)) < 0)
779 return ret;
780 if ((ret = checkintf(ps, ret)))
781 return ret;
782 usb_settoggle(ps->dev, ep & 0xf, !(ep & USB_DIR_IN), 0);
783 return 0;
784}
785
786static int proc_clearhalt(struct dev_state *ps, void __user *arg)
787{
788 unsigned int ep;
789 int pipe;
790 int ret;
791
792 if (get_user(ep, (unsigned int __user *)arg))
793 return -EFAULT;
794 if ((ret = findintfep(ps->dev, ep)) < 0)
795 return ret;
796 if ((ret = checkintf(ps, ret)))
797 return ret;
798 if (ep & USB_DIR_IN)
799 pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
800 else
801 pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
802
803 return usb_clear_halt(ps->dev, pipe);
804}
805
806
807static int proc_getdriver(struct dev_state *ps, void __user *arg)
808{
809 struct usbdevfs_getdriver gd;
810 struct usb_interface *intf;
811 int ret;
812
813 if (copy_from_user(&gd, arg, sizeof(gd)))
814 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 intf = usb_ifnum_to_if(ps->dev, gd.interface);
816 if (!intf || !intf->dev.driver)
817 ret = -ENODATA;
818 else {
819 strncpy(gd.driver, intf->dev.driver->name,
820 sizeof(gd.driver));
821 ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return ret;
824}
825
826static int proc_connectinfo(struct dev_state *ps, void __user *arg)
827{
828 struct usbdevfs_connectinfo ci;
829
830 ci.devnum = ps->dev->devnum;
831 ci.slow = ps->dev->speed == USB_SPEED_LOW;
832 if (copy_to_user(arg, &ci, sizeof(ci)))
833 return -EFAULT;
834 return 0;
835}
836
837static int proc_resetdevice(struct dev_state *ps)
838{
Alan Stern79efa092006-06-01 13:33:42 -0400839 return usb_reset_composite_device(ps->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
842static int proc_setintf(struct dev_state *ps, void __user *arg)
843{
844 struct usbdevfs_setinterface setintf;
845 int ret;
846
847 if (copy_from_user(&setintf, arg, sizeof(setintf)))
848 return -EFAULT;
849 if ((ret = checkintf(ps, setintf.interface)))
850 return ret;
851 return usb_set_interface(ps->dev, setintf.interface,
852 setintf.altsetting);
853}
854
855static int proc_setconfig(struct dev_state *ps, void __user *arg)
856{
Alan Stern3f141e22007-02-08 16:40:43 -0500857 int u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 int status = 0;
859 struct usb_host_config *actconfig;
860
Alan Stern3f141e22007-02-08 16:40:43 -0500861 if (get_user(u, (int __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return -EFAULT;
863
864 actconfig = ps->dev->actconfig;
865
866 /* Don't touch the device if any interfaces are claimed.
867 * It could interfere with other drivers' operations, and if
868 * an interface is claimed by usbfs it could easily deadlock.
869 */
870 if (actconfig) {
871 int i;
872
873 for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
874 if (usb_interface_claimed(actconfig->interface[i])) {
875 dev_warn (&ps->dev->dev,
David Brownell72ebddb2005-04-11 18:34:17 -0700876 "usbfs: interface %d claimed by %s "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 "while '%s' sets config #%d\n",
878 actconfig->interface[i]
879 ->cur_altsetting
880 ->desc.bInterfaceNumber,
David Brownell72ebddb2005-04-11 18:34:17 -0700881 actconfig->interface[i]
882 ->dev.driver->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 current->comm, u);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 status = -EBUSY;
885 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887 }
888 }
889
890 /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
891 * so avoid usb_set_configuration()'s kick to sysfs
892 */
893 if (status == 0) {
894 if (actconfig && actconfig->desc.bConfigurationValue == u)
895 status = usb_reset_configuration(ps->dev);
896 else
897 status = usb_set_configuration(ps->dev, u);
898 }
899
900 return status;
901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
904 struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
905 void __user *arg)
906{
907 struct usbdevfs_iso_packet_desc *isopkt = NULL;
908 struct usb_host_endpoint *ep;
909 struct async *as;
910 struct usb_ctrlrequest *dr = NULL;
911 unsigned int u, totlen, isofrmlen;
Alan Stern97b9eb92007-02-26 14:56:14 -0500912 int ret, ifnum = -1;
Alan Stern93cf9b92007-07-30 17:09:28 -0400913 int is_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP|USBDEVFS_URB_SHORT_NOT_OK|
916 URB_NO_FSBR|URB_ZERO_PACKET))
917 return -EINVAL;
918 if (!uurb->buffer)
919 return -EINVAL;
920 if (uurb->signr != 0 && (uurb->signr < SIGRTMIN || uurb->signr > SIGRTMAX))
921 return -EINVAL;
922 if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL && (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
923 if ((ifnum = findintfep(ps->dev, uurb->endpoint)) < 0)
924 return ifnum;
925 if ((ret = checkintf(ps, ifnum)))
926 return ret;
927 }
Alan Stern93cf9b92007-07-30 17:09:28 -0400928 if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
929 is_in = 1;
930 ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
931 } else {
932 is_in = 0;
933 ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (!ep)
936 return -ENOENT;
937 switch(uurb->type) {
938 case USBDEVFS_URB_TYPE_CONTROL:
Alan Stern93cf9b92007-07-30 17:09:28 -0400939 if (!usb_endpoint_xfer_control(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return -EINVAL;
Micah Dowtye0166832006-05-19 11:20:11 -0700941 /* min 8 byte setup packet, max 8 byte setup plus an arbitrary data stage */
942 if (uurb->buffer_length < 8 || uurb->buffer_length > (8 + MAX_USBFS_BUFFER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return -EINVAL;
944 if (!(dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL)))
945 return -ENOMEM;
946 if (copy_from_user(dr, uurb->buffer, 8)) {
947 kfree(dr);
948 return -EFAULT;
949 }
950 if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
951 kfree(dr);
952 return -EINVAL;
953 }
954 if ((ret = check_ctrlrecip(ps, dr->bRequestType, le16_to_cpup(&dr->wIndex)))) {
955 kfree(dr);
956 return ret;
957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 uurb->number_of_packets = 0;
959 uurb->buffer_length = le16_to_cpup(&dr->wLength);
960 uurb->buffer += 8;
Alan Stern93cf9b92007-07-30 17:09:28 -0400961 if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
962 is_in = 1;
963 uurb->endpoint |= USB_DIR_IN;
964 } else {
965 is_in = 0;
966 uurb->endpoint &= ~USB_DIR_IN;
967 }
968 if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
969 uurb->buffer, uurb->buffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 kfree(dr);
971 return -EFAULT;
972 }
Chris Freydf251b82006-12-16 02:37:42 -0500973 snoop(&ps->dev->dev, "control urb: bRequest=%02x "
974 "bRrequestType=%02x wValue=%04x "
975 "wIndex=%04x wLength=%04x\n",
Alan Stern93cf9b92007-07-30 17:09:28 -0400976 dr->bRequest, dr->bRequestType,
977 __le16_to_cpup(&dr->wValue),
978 __le16_to_cpup(&dr->wIndex),
979 __le16_to_cpup(&dr->wLength));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 break;
981
982 case USBDEVFS_URB_TYPE_BULK:
Alan Stern93cf9b92007-07-30 17:09:28 -0400983 switch (usb_endpoint_type(&ep->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 case USB_ENDPOINT_XFER_CONTROL:
985 case USB_ENDPOINT_XFER_ISOC:
986 return -EINVAL;
987 /* allow single-shot interrupt transfers, at bogus rates */
988 }
989 uurb->number_of_packets = 0;
990 if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
991 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -0400992 if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
993 uurb->buffer, uurb->buffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return -EFAULT;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700995 snoop(&ps->dev->dev, "bulk urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 break;
997
998 case USBDEVFS_URB_TYPE_ISO:
999 /* arbitrary limit */
1000 if (uurb->number_of_packets < 1 || uurb->number_of_packets > 128)
1001 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001002 if (!usb_endpoint_xfer_isoc(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) * uurb->number_of_packets;
1005 if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
1006 return -ENOMEM;
1007 if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
1008 kfree(isopkt);
1009 return -EFAULT;
1010 }
1011 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
Micah Dowty36122422006-05-19 11:26:24 -07001012 /* arbitrary limit, sufficient for USB 2.0 high-bandwidth iso */
1013 if (isopkt[u].length > 8192) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 kfree(isopkt);
1015 return -EINVAL;
1016 }
1017 totlen += isopkt[u].length;
1018 }
1019 if (totlen > 32768) {
1020 kfree(isopkt);
1021 return -EINVAL;
1022 }
1023 uurb->buffer_length = totlen;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001024 snoop(&ps->dev->dev, "iso urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 break;
1026
1027 case USBDEVFS_URB_TYPE_INTERRUPT:
1028 uurb->number_of_packets = 0;
Alan Stern93cf9b92007-07-30 17:09:28 -04001029 if (!usb_endpoint_xfer_int(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
1032 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001033 if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1034 uurb->buffer, uurb->buffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return -EFAULT;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001036 snoop(&ps->dev->dev, "interrupt urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 break;
1038
1039 default:
1040 return -EINVAL;
1041 }
1042 if (!(as = alloc_async(uurb->number_of_packets))) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001043 kfree(isopkt);
1044 kfree(dr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return -ENOMEM;
1046 }
1047 if (!(as->urb->transfer_buffer = kmalloc(uurb->buffer_length, GFP_KERNEL))) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001048 kfree(isopkt);
1049 kfree(dr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 free_async(as);
1051 return -ENOMEM;
1052 }
1053 as->urb->dev = ps->dev;
Alan Stern93cf9b92007-07-30 17:09:28 -04001054 as->urb->pipe = (uurb->type << 30) |
1055 __create_pipe(ps->dev, uurb->endpoint & 0xf) |
1056 (uurb->endpoint & USB_DIR_IN);
1057 as->urb->transfer_flags = uurb->flags |
1058 (is_in ? URB_DIR_IN : URB_DIR_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 as->urb->transfer_buffer_length = uurb->buffer_length;
1060 as->urb->setup_packet = (unsigned char*)dr;
1061 as->urb->start_frame = uurb->start_frame;
1062 as->urb->number_of_packets = uurb->number_of_packets;
Alan Stern97b9eb92007-02-26 14:56:14 -05001063 if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
1064 ps->dev->speed == USB_SPEED_HIGH)
1065 as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
1066 else
1067 as->urb->interval = ep->desc.bInterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 as->urb->context = as;
1069 as->urb->complete = async_completed;
1070 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
1071 as->urb->iso_frame_desc[u].offset = totlen;
1072 as->urb->iso_frame_desc[u].length = isopkt[u].length;
1073 totlen += isopkt[u].length;
1074 }
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001075 kfree(isopkt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 as->ps = ps;
1077 as->userurb = arg;
1078 if (uurb->endpoint & USB_DIR_IN)
1079 as->userbuffer = uurb->buffer;
1080 else
1081 as->userbuffer = NULL;
1082 as->signr = uurb->signr;
1083 as->ifnum = ifnum;
Eric W. Biederman2425c082006-10-02 02:17:28 -07001084 as->pid = get_pid(task_pid(current));
Harald Welte46113832005-10-10 19:44:29 +02001085 as->uid = current->uid;
1086 as->euid = current->euid;
David Quigley7a019552006-06-30 01:55:48 -07001087 security_task_getsecid(current, &as->secid);
Alan Stern93cf9b92007-07-30 17:09:28 -04001088 if (!is_in) {
1089 if (copy_from_user(as->urb->transfer_buffer, uurb->buffer,
1090 as->urb->transfer_buffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 free_async(as);
1092 return -EFAULT;
1093 }
1094 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001095 snoop_urb(as->urb, as->userurb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 async_newpending(as);
1097 if ((ret = usb_submit_urb(as->urb, GFP_KERNEL))) {
1098 dev_printk(KERN_DEBUG, &ps->dev->dev, "usbfs: usb_submit_urb returned %d\n", ret);
1099 async_removepending(as);
1100 free_async(as);
1101 return ret;
1102 }
1103 return 0;
1104}
1105
1106static int proc_submiturb(struct dev_state *ps, void __user *arg)
1107{
1108 struct usbdevfs_urb uurb;
1109
1110 if (copy_from_user(&uurb, arg, sizeof(uurb)))
1111 return -EFAULT;
1112
Linus Torvalds83626b02006-06-24 17:47:09 -07001113 return proc_do_submiturb(ps, &uurb, (((struct usbdevfs_urb __user *)arg)->iso_frame_desc), arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
1116static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
1117{
1118 struct async *as;
1119
1120 as = async_getpending(ps, arg);
1121 if (!as)
1122 return -EINVAL;
1123 usb_kill_urb(as->urb);
1124 return 0;
1125}
1126
1127static int processcompl(struct async *as, void __user * __user *arg)
1128{
1129 struct urb *urb = as->urb;
1130 struct usbdevfs_urb __user *userurb = as->userurb;
1131 void __user *addr = as->userurb;
1132 unsigned int i;
1133
1134 if (as->userbuffer)
1135 if (copy_to_user(as->userbuffer, urb->transfer_buffer, urb->transfer_buffer_length))
1136 return -EFAULT;
Alan Sterne0152682007-08-24 15:42:52 -04001137 if (put_user(as->status, &userurb->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return -EFAULT;
1139 if (put_user(urb->actual_length, &userurb->actual_length))
1140 return -EFAULT;
1141 if (put_user(urb->error_count, &userurb->error_count))
1142 return -EFAULT;
1143
Alan Stern93cf9b92007-07-30 17:09:28 -04001144 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001145 for (i = 0; i < urb->number_of_packets; i++) {
1146 if (put_user(urb->iso_frame_desc[i].actual_length,
1147 &userurb->iso_frame_desc[i].actual_length))
1148 return -EFAULT;
1149 if (put_user(urb->iso_frame_desc[i].status,
1150 &userurb->iso_frame_desc[i].status))
1151 return -EFAULT;
1152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
1154
1155 free_async(as);
1156
1157 if (put_user(addr, (void __user * __user *)arg))
1158 return -EFAULT;
1159 return 0;
1160}
1161
1162static struct async* reap_as(struct dev_state *ps)
1163{
1164 DECLARE_WAITQUEUE(wait, current);
1165 struct async *as = NULL;
1166 struct usb_device *dev = ps->dev;
1167
1168 add_wait_queue(&ps->wait, &wait);
1169 for (;;) {
1170 __set_current_state(TASK_INTERRUPTIBLE);
1171 if ((as = async_getcompleted(ps)))
1172 break;
1173 if (signal_pending(current))
1174 break;
1175 usb_unlock_device(dev);
1176 schedule();
1177 usb_lock_device(dev);
1178 }
1179 remove_wait_queue(&ps->wait, &wait);
1180 set_current_state(TASK_RUNNING);
1181 return as;
1182}
1183
1184static int proc_reapurb(struct dev_state *ps, void __user *arg)
1185{
1186 struct async *as = reap_as(ps);
1187 if (as)
1188 return processcompl(as, (void __user * __user *)arg);
1189 if (signal_pending(current))
1190 return -EINTR;
1191 return -EIO;
1192}
1193
1194static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
1195{
1196 struct async *as;
1197
1198 if (!(as = async_getcompleted(ps)))
1199 return -EAGAIN;
1200 return processcompl(as, (void __user * __user *)arg);
1201}
1202
1203#ifdef CONFIG_COMPAT
1204
1205static int get_urb32(struct usbdevfs_urb *kurb,
1206 struct usbdevfs_urb32 __user *uurb)
1207{
1208 __u32 uptr;
1209 if (get_user(kurb->type, &uurb->type) ||
1210 __get_user(kurb->endpoint, &uurb->endpoint) ||
1211 __get_user(kurb->status, &uurb->status) ||
1212 __get_user(kurb->flags, &uurb->flags) ||
1213 __get_user(kurb->buffer_length, &uurb->buffer_length) ||
1214 __get_user(kurb->actual_length, &uurb->actual_length) ||
1215 __get_user(kurb->start_frame, &uurb->start_frame) ||
1216 __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
1217 __get_user(kurb->error_count, &uurb->error_count) ||
1218 __get_user(kurb->signr, &uurb->signr))
1219 return -EFAULT;
1220
1221 if (__get_user(uptr, &uurb->buffer))
1222 return -EFAULT;
1223 kurb->buffer = compat_ptr(uptr);
1224 if (__get_user(uptr, &uurb->buffer))
1225 return -EFAULT;
1226 kurb->usercontext = compat_ptr(uptr);
1227
1228 return 0;
1229}
1230
1231static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
1232{
1233 struct usbdevfs_urb uurb;
1234
Al Viroc714de52006-10-10 22:45:37 +01001235 if (get_urb32(&uurb,(struct usbdevfs_urb32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 return -EFAULT;
1237
Linus Torvalds83626b02006-06-24 17:47:09 -07001238 return proc_do_submiturb(ps, &uurb, ((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
1241static int processcompl_compat(struct async *as, void __user * __user *arg)
1242{
1243 struct urb *urb = as->urb;
1244 struct usbdevfs_urb32 __user *userurb = as->userurb;
1245 void __user *addr = as->userurb;
1246 unsigned int i;
1247
1248 if (as->userbuffer)
1249 if (copy_to_user(as->userbuffer, urb->transfer_buffer, urb->transfer_buffer_length))
1250 return -EFAULT;
Alan Sterne0152682007-08-24 15:42:52 -04001251 if (put_user(as->status, &userurb->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 return -EFAULT;
1253 if (put_user(urb->actual_length, &userurb->actual_length))
1254 return -EFAULT;
1255 if (put_user(urb->error_count, &userurb->error_count))
1256 return -EFAULT;
1257
Alan Stern93cf9b92007-07-30 17:09:28 -04001258 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001259 for (i = 0; i < urb->number_of_packets; i++) {
1260 if (put_user(urb->iso_frame_desc[i].actual_length,
1261 &userurb->iso_frame_desc[i].actual_length))
1262 return -EFAULT;
1263 if (put_user(urb->iso_frame_desc[i].status,
1264 &userurb->iso_frame_desc[i].status))
1265 return -EFAULT;
1266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
1268
1269 free_async(as);
Al Viroc714de52006-10-10 22:45:37 +01001270 if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return -EFAULT;
1272 return 0;
1273}
1274
1275static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
1276{
1277 struct async *as = reap_as(ps);
1278 if (as)
1279 return processcompl_compat(as, (void __user * __user *)arg);
1280 if (signal_pending(current))
1281 return -EINTR;
1282 return -EIO;
1283}
1284
1285static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
1286{
1287 struct async *as;
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (!(as = async_getcompleted(ps)))
1290 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return processcompl_compat(as, (void __user * __user *)arg);
1292}
1293
1294#endif
1295
1296static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
1297{
1298 struct usbdevfs_disconnectsignal ds;
1299
1300 if (copy_from_user(&ds, arg, sizeof(ds)))
1301 return -EFAULT;
1302 if (ds.signr != 0 && (ds.signr < SIGRTMIN || ds.signr > SIGRTMAX))
1303 return -EINVAL;
1304 ps->discsignr = ds.signr;
1305 ps->disccontext = ds.context;
1306 return 0;
1307}
1308
1309static int proc_claiminterface(struct dev_state *ps, void __user *arg)
1310{
1311 unsigned int ifnum;
1312
1313 if (get_user(ifnum, (unsigned int __user *)arg))
1314 return -EFAULT;
1315 return claimintf(ps, ifnum);
1316}
1317
1318static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
1319{
1320 unsigned int ifnum;
1321 int ret;
1322
1323 if (get_user(ifnum, (unsigned int __user *)arg))
1324 return -EFAULT;
1325 if ((ret = releaseintf(ps, ifnum)) < 0)
1326 return ret;
1327 destroy_async_on_interface (ps, ifnum);
1328 return 0;
1329}
1330
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001331static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 int size;
1334 void *buf = NULL;
1335 int retval = 0;
1336 struct usb_interface *intf = NULL;
1337 struct usb_driver *driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001339 /* alloc buffer */
1340 if ((size = _IOC_SIZE (ctl->ioctl_code)) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if ((buf = kmalloc (size, GFP_KERNEL)) == NULL)
1342 return -ENOMEM;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001343 if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
1344 if (copy_from_user (buf, ctl->data, size)) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001345 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return -EFAULT;
1347 }
1348 } else {
1349 memset (buf, 0, size);
1350 }
1351 }
1352
Alan Stern349710c2006-07-01 22:05:56 -04001353 if (!connected(ps)) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001354 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return -ENODEV;
1356 }
1357
1358 if (ps->dev->state != USB_STATE_CONFIGURED)
1359 retval = -EHOSTUNREACH;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001360 else if (!(intf = usb_ifnum_to_if (ps->dev, ctl->ifno)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 retval = -EINVAL;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001362 else switch (ctl->ioctl_code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
1364 /* disconnect kernel driver from interface */
1365 case USBDEVFS_DISCONNECT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (intf->dev.driver) {
1367 driver = to_usb_driver(intf->dev.driver);
1368 dev_dbg (&intf->dev, "disconnect by usbfs\n");
1369 usb_driver_release_interface(driver, intf);
1370 } else
1371 retval = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 break;
1373
1374 /* let kernel drivers try to (re)bind to the interface */
1375 case USBDEVFS_CONNECT:
Alan Stern885e9742007-12-03 15:42:10 -05001376 if (!intf->dev.driver)
1377 retval = device_attach(&intf->dev);
1378 else
1379 retval = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 break;
1381
1382 /* talk directly to the interface's driver */
1383 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (intf->dev.driver)
1385 driver = to_usb_driver(intf->dev.driver);
1386 if (driver == NULL || driver->ioctl == NULL) {
1387 retval = -ENOTTY;
1388 } else {
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001389 retval = driver->ioctl (intf, ctl->ioctl_code, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (retval == -ENOIOCTLCMD)
1391 retval = -ENOTTY;
1392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
1394
1395 /* cleanup and return */
1396 if (retval >= 0
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001397 && (_IOC_DIR (ctl->ioctl_code) & _IOC_READ) != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 && size > 0
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001399 && copy_to_user (ctl->data, buf, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 retval = -EFAULT;
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001401
1402 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return retval;
1404}
1405
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001406static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
1407{
1408 struct usbdevfs_ioctl ctrl;
1409
1410 if (copy_from_user(&ctrl, arg, sizeof (ctrl)))
1411 return -EFAULT;
1412 return proc_ioctl(ps, &ctrl);
1413}
1414
1415#ifdef CONFIG_COMPAT
Andrew Morton777da592005-11-17 09:47:02 -08001416static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001417{
1418 struct usbdevfs_ioctl32 __user *uioc;
1419 struct usbdevfs_ioctl ctrl;
1420 u32 udata;
1421
Andrew Morton058120d2005-11-17 09:47:49 -08001422 uioc = compat_ptr((long)arg);
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001423 if (get_user(ctrl.ifno, &uioc->ifno) ||
1424 get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
1425 __get_user(udata, &uioc->data))
1426 return -EFAULT;
1427 ctrl.data = compat_ptr(udata);
1428
1429 return proc_ioctl(ps, &ctrl);
1430}
1431#endif
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433/*
1434 * NOTE: All requests here that have interface numbers as parameters
1435 * are assuming that somehow the configuration has been prevented from
1436 * changing. But there's no mechanism to ensure that...
1437 */
1438static int usbdev_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
1439{
Tobias Klauserec17cf12006-09-13 21:38:41 +02001440 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 struct usb_device *dev = ps->dev;
1442 void __user *p = (void __user *)arg;
1443 int ret = -ENOTTY;
1444
1445 if (!(file->f_mode & FMODE_WRITE))
1446 return -EPERM;
1447 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -04001448 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 usb_unlock_device(dev);
1450 return -ENODEV;
1451 }
1452
1453 switch (cmd) {
1454 case USBDEVFS_CONTROL:
1455 snoop(&dev->dev, "%s: CONTROL\n", __FUNCTION__);
1456 ret = proc_control(ps, p);
1457 if (ret >= 0)
1458 inode->i_mtime = CURRENT_TIME;
1459 break;
1460
1461 case USBDEVFS_BULK:
1462 snoop(&dev->dev, "%s: BULK\n", __FUNCTION__);
1463 ret = proc_bulk(ps, p);
1464 if (ret >= 0)
1465 inode->i_mtime = CURRENT_TIME;
1466 break;
1467
1468 case USBDEVFS_RESETEP:
1469 snoop(&dev->dev, "%s: RESETEP\n", __FUNCTION__);
1470 ret = proc_resetep(ps, p);
1471 if (ret >= 0)
1472 inode->i_mtime = CURRENT_TIME;
1473 break;
1474
1475 case USBDEVFS_RESET:
1476 snoop(&dev->dev, "%s: RESET\n", __FUNCTION__);
1477 ret = proc_resetdevice(ps);
1478 break;
1479
1480 case USBDEVFS_CLEAR_HALT:
1481 snoop(&dev->dev, "%s: CLEAR_HALT\n", __FUNCTION__);
1482 ret = proc_clearhalt(ps, p);
1483 if (ret >= 0)
1484 inode->i_mtime = CURRENT_TIME;
1485 break;
1486
1487 case USBDEVFS_GETDRIVER:
1488 snoop(&dev->dev, "%s: GETDRIVER\n", __FUNCTION__);
1489 ret = proc_getdriver(ps, p);
1490 break;
1491
1492 case USBDEVFS_CONNECTINFO:
1493 snoop(&dev->dev, "%s: CONNECTINFO\n", __FUNCTION__);
1494 ret = proc_connectinfo(ps, p);
1495 break;
1496
1497 case USBDEVFS_SETINTERFACE:
1498 snoop(&dev->dev, "%s: SETINTERFACE\n", __FUNCTION__);
1499 ret = proc_setintf(ps, p);
1500 break;
1501
1502 case USBDEVFS_SETCONFIGURATION:
1503 snoop(&dev->dev, "%s: SETCONFIGURATION\n", __FUNCTION__);
1504 ret = proc_setconfig(ps, p);
1505 break;
1506
1507 case USBDEVFS_SUBMITURB:
1508 snoop(&dev->dev, "%s: SUBMITURB\n", __FUNCTION__);
1509 ret = proc_submiturb(ps, p);
1510 if (ret >= 0)
1511 inode->i_mtime = CURRENT_TIME;
1512 break;
1513
1514#ifdef CONFIG_COMPAT
1515
1516 case USBDEVFS_SUBMITURB32:
1517 snoop(&dev->dev, "%s: SUBMITURB32\n", __FUNCTION__);
1518 ret = proc_submiturb_compat(ps, p);
1519 if (ret >= 0)
1520 inode->i_mtime = CURRENT_TIME;
1521 break;
1522
1523 case USBDEVFS_REAPURB32:
1524 snoop(&dev->dev, "%s: REAPURB32\n", __FUNCTION__);
1525 ret = proc_reapurb_compat(ps, p);
1526 break;
1527
1528 case USBDEVFS_REAPURBNDELAY32:
1529 snoop(&dev->dev, "%s: REAPURBDELAY32\n", __FUNCTION__);
1530 ret = proc_reapurbnonblock_compat(ps, p);
1531 break;
1532
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001533 case USBDEVFS_IOCTL32:
1534 snoop(&dev->dev, "%s: IOCTL\n", __FUNCTION__);
Al Viroc714de52006-10-10 22:45:37 +01001535 ret = proc_ioctl_compat(ps, ptr_to_compat(p));
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001536 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537#endif
1538
1539 case USBDEVFS_DISCARDURB:
1540 snoop(&dev->dev, "%s: DISCARDURB\n", __FUNCTION__);
1541 ret = proc_unlinkurb(ps, p);
1542 break;
1543
1544 case USBDEVFS_REAPURB:
1545 snoop(&dev->dev, "%s: REAPURB\n", __FUNCTION__);
1546 ret = proc_reapurb(ps, p);
1547 break;
1548
1549 case USBDEVFS_REAPURBNDELAY:
1550 snoop(&dev->dev, "%s: REAPURBDELAY\n", __FUNCTION__);
1551 ret = proc_reapurbnonblock(ps, p);
1552 break;
1553
1554 case USBDEVFS_DISCSIGNAL:
1555 snoop(&dev->dev, "%s: DISCSIGNAL\n", __FUNCTION__);
1556 ret = proc_disconnectsignal(ps, p);
1557 break;
1558
1559 case USBDEVFS_CLAIMINTERFACE:
1560 snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __FUNCTION__);
1561 ret = proc_claiminterface(ps, p);
1562 break;
1563
1564 case USBDEVFS_RELEASEINTERFACE:
1565 snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __FUNCTION__);
1566 ret = proc_releaseinterface(ps, p);
1567 break;
1568
1569 case USBDEVFS_IOCTL:
1570 snoop(&dev->dev, "%s: IOCTL\n", __FUNCTION__);
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001571 ret = proc_ioctl_default(ps, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 break;
1573 }
1574 usb_unlock_device(dev);
1575 if (ret >= 0)
1576 inode->i_atime = CURRENT_TIME;
1577 return ret;
1578}
1579
1580/* No kernel lock - fine */
1581static unsigned int usbdev_poll(struct file *file, struct poll_table_struct *wait)
1582{
Tobias Klauserec17cf12006-09-13 21:38:41 +02001583 struct dev_state *ps = file->private_data;
1584 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 poll_wait(file, &ps->wait, wait);
1587 if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
1588 mask |= POLLOUT | POLLWRNORM;
Alan Stern349710c2006-07-01 22:05:56 -04001589 if (!connected(ps))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 mask |= POLLERR | POLLHUP;
1591 return mask;
1592}
1593
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001594const struct file_operations usbdev_file_operations = {
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -07001595 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 .llseek = usbdev_lseek,
1597 .read = usbdev_read,
1598 .poll = usbdev_poll,
1599 .ioctl = usbdev_ioctl,
1600 .open = usbdev_open,
1601 .release = usbdev_release,
1602};
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001603
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001604#ifdef CONFIG_USB_DEVICE_CLASS
1605static struct class *usb_classdev_class;
1606
1607static int usb_classdev_add(struct usb_device *dev)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001608{
1609 int minor = ((dev->bus->busnum-1) * 128) + (dev->devnum-1);
1610
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001611 dev->usb_classdev = device_create(usb_classdev_class, &dev->dev,
Greg Kroah-Hartman7bc3d632006-06-19 23:59:31 -07001612 MKDEV(USB_DEVICE_MAJOR, minor),
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001613 "usbdev%d.%d", dev->bus->busnum, dev->devnum);
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001614 if (IS_ERR(dev->usb_classdev))
1615 return PTR_ERR(dev->usb_classdev);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001616
Akinobu Mita27d39e22006-10-09 18:09:33 +09001617 return 0;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001618}
1619
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001620static void usb_classdev_remove(struct usb_device *dev)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001621{
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001622 device_unregister(dev->usb_classdev);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001623}
1624
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001625static int usb_classdev_notify(struct notifier_block *self,
1626 unsigned long action, void *dev)
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001627{
1628 switch (action) {
1629 case USB_DEVICE_ADD:
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001630 if (usb_classdev_add(dev))
Akinobu Mita27d39e22006-10-09 18:09:33 +09001631 return NOTIFY_BAD;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001632 break;
1633 case USB_DEVICE_REMOVE:
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001634 usb_classdev_remove(dev);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001635 break;
1636 }
1637 return NOTIFY_OK;
1638}
1639
1640static struct notifier_block usbdev_nb = {
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001641 .notifier_call = usb_classdev_notify,
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001642};
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001643#endif
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001644
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -07001645static struct cdev usb_device_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001646
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001647int __init usb_devio_init(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001648{
1649 int retval;
1650
Alan Sternfad21bd2005-08-10 15:15:57 -04001651 retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
1652 "usb_device");
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001653 if (retval) {
1654 err("unable to register minors for usb_device");
1655 goto out;
1656 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001657 cdev_init(&usb_device_cdev, &usbdev_file_operations);
Alan Sternfad21bd2005-08-10 15:15:57 -04001658 retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001659 if (retval) {
1660 err("unable to get usb_device major %d", USB_DEVICE_MAJOR);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001661 goto error_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001662 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001663#ifdef CONFIG_USB_DEVICE_CLASS
1664 usb_classdev_class = class_create(THIS_MODULE, "usb_device");
1665 if (IS_ERR(usb_classdev_class)) {
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001666 err("unable to register usb_device class");
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001667 retval = PTR_ERR(usb_classdev_class);
1668 cdev_del(&usb_device_cdev);
1669 usb_classdev_class = NULL;
1670 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001671 }
1672
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001673 usb_register_notify(&usbdev_nb);
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001674#endif
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001675out:
1676 return retval;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001677
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001678error_cdev:
1679 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
1680 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001681}
1682
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001683void usb_devio_cleanup(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001684{
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001685#ifdef CONFIG_USB_DEVICE_CLASS
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001686 usb_unregister_notify(&usbdev_nb);
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001687 class_destroy(usb_classdev_class);
1688#endif
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001689 cdev_del(&usb_device_cdev);
Alan Sternfad21bd2005-08-10 15:15:57 -04001690 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001691}