blob: 039ba23cc8b69809264794eca7281e2f7ecd5c79 [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
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -080078static int usbfs_snoop;
79module_param(usbfs_snoop, bool, S_IRUGO | S_IWUSR);
80MODULE_PARM_DESC(usbfs_snoop, "true to log all usbfs traffic");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82#define snoop(dev, format, arg...) \
83 do { \
84 if (usbfs_snoop) \
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -080085 dev_info(dev , format , ## arg); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 } 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
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -080093static 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
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800123static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
124 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200126 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 struct usb_device *dev = ps->dev;
128 ssize_t ret = 0;
129 unsigned len;
130 loff_t pos;
131 int i;
132
133 pos = *ppos;
134 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -0400135 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 ret = -ENODEV;
137 goto err;
138 } else if (pos < 0) {
139 ret = -EINVAL;
140 goto err;
141 }
142
143 if (pos < sizeof(struct usb_device_descriptor)) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800144 /* 18 bytes - fits on the stack */
145 struct usb_device_descriptor temp_desc;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100146
147 memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
Andrew Morton9fcd5c32006-01-18 23:55:07 -0800148 le16_to_cpus(&temp_desc.bcdUSB);
149 le16_to_cpus(&temp_desc.idVendor);
150 le16_to_cpus(&temp_desc.idProduct);
151 le16_to_cpus(&temp_desc.bcdDevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 len = sizeof(struct usb_device_descriptor) - pos;
154 if (len > nbytes)
155 len = nbytes;
Oliver Neukum8781ba02006-01-06 21:24:25 +0100156 if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 ret = -EFAULT;
158 goto err;
159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 *ppos += len;
162 buf += len;
163 nbytes -= len;
164 ret += len;
165 }
166
167 pos = sizeof(struct usb_device_descriptor);
168 for (i = 0; nbytes && i < dev->descriptor.bNumConfigurations; i++) {
169 struct usb_config_descriptor *config =
170 (struct usb_config_descriptor *)dev->rawdescriptors[i];
171 unsigned int length = le16_to_cpu(config->wTotalLength);
172
173 if (*ppos < pos + length) {
174
175 /* The descriptor may claim to be longer than it
176 * really is. Here is the actual allocated length. */
177 unsigned alloclen =
178 le16_to_cpu(dev->config[i].desc.wTotalLength);
179
180 len = length - (*ppos - pos);
181 if (len > nbytes)
182 len = nbytes;
183
184 /* Simply don't write (skip over) unallocated parts */
185 if (alloclen > (*ppos - pos)) {
186 alloclen -= (*ppos - pos);
187 if (copy_to_user(buf,
188 dev->rawdescriptors[i] + (*ppos - pos),
189 min(len, alloclen))) {
190 ret = -EFAULT;
191 goto err;
192 }
193 }
194
195 *ppos += len;
196 buf += len;
197 nbytes -= len;
198 ret += len;
199 }
200
201 pos += length;
202 }
203
204err:
205 usb_unlock_device(dev);
206 return ret;
207}
208
209/*
210 * async list handling
211 */
212
213static struct async *alloc_async(unsigned int numisoframes)
214{
Pete Zaitcevdd95b812008-01-05 02:01:07 -0800215 struct async *as;
Alan Stern0a1ef3b2005-10-24 15:38:24 -0400216
Pete Zaitcevdd95b812008-01-05 02:01:07 -0800217 as = kzalloc(sizeof(struct async), GFP_KERNEL);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800218 if (!as)
219 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
221 if (!as->urb) {
222 kfree(as);
223 return NULL;
224 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800225 return as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
228static void free_async(struct async *as)
229{
Eric W. Biederman2425c082006-10-02 02:17:28 -0700230 put_pid(as->pid);
Jesper Juhl6fd19f42005-04-18 17:39:33 -0700231 kfree(as->urb->transfer_buffer);
232 kfree(as->urb->setup_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 usb_free_urb(as->urb);
Jesper Juhl6fd19f42005-04-18 17:39:33 -0700234 kfree(as);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237static inline void async_newpending(struct async *as)
238{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800239 struct dev_state *ps = as->ps;
240 unsigned long flags;
241
242 spin_lock_irqsave(&ps->lock, flags);
243 list_add_tail(&as->asynclist, &ps->async_pending);
244 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247static inline void async_removepending(struct async *as)
248{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800249 struct dev_state *ps = as->ps;
250 unsigned long flags;
251
252 spin_lock_irqsave(&ps->lock, flags);
253 list_del_init(&as->asynclist);
254 spin_unlock_irqrestore(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257static inline struct async *async_getcompleted(struct dev_state *ps)
258{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800259 unsigned long flags;
260 struct async *as = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800262 spin_lock_irqsave(&ps->lock, flags);
263 if (!list_empty(&ps->async_completed)) {
264 as = list_entry(ps->async_completed.next, struct async,
265 asynclist);
266 list_del_init(&as->asynclist);
267 }
268 spin_unlock_irqrestore(&ps->lock, flags);
269 return as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800272static inline struct async *async_getpending(struct dev_state *ps,
273 void __user *userurb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800275 unsigned long flags;
276 struct async *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800278 spin_lock_irqsave(&ps->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 list_for_each_entry(as, &ps->async_pending, asynclist)
280 if (as->userurb == userurb) {
281 list_del_init(&as->asynclist);
282 spin_unlock_irqrestore(&ps->lock, flags);
283 return as;
284 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800285 spin_unlock_irqrestore(&ps->lock, flags);
286 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700289static void snoop_urb(struct urb *urb, void __user *userurb)
290{
291 int j;
292 unsigned char *data = urb->transfer_buffer;
293
294 if (!usbfs_snoop)
295 return;
296
Alan Stern93cf9b92007-07-30 17:09:28 -0400297 dev_info(&urb->dev->dev, "direction=%s\n",
298 usb_urb_dir_in(urb) ? "IN" : "OUT");
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700299 dev_info(&urb->dev->dev, "userurb=%p\n", userurb);
300 dev_info(&urb->dev->dev, "transfer_buffer_length=%d\n",
301 urb->transfer_buffer_length);
302 dev_info(&urb->dev->dev, "actual_length=%d\n", urb->actual_length);
303 dev_info(&urb->dev->dev, "data: ");
304 for (j = 0; j < urb->transfer_buffer_length; ++j)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800305 printk("%02x ", data[j]);
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700306 printk("\n");
307}
308
David Howells7d12e782006-10-05 14:55:46 +0100309static void async_completed(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800311 struct async *as = urb->context;
312 struct dev_state *ps = as->ps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct siginfo sinfo;
314
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800315 spin_lock(&ps->lock);
316 list_move_tail(&as->asynclist, &ps->async_completed);
317 spin_unlock(&ps->lock);
Alan Sterne0152682007-08-24 15:42:52 -0400318 as->status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (as->signr) {
320 sinfo.si_signo = as->signr;
Alan Sterne0152682007-08-24 15:42:52 -0400321 sinfo.si_errno = as->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 sinfo.si_code = SI_ASYNCIO;
323 sinfo.si_addr = as->userurb;
Eric W. Biederman2425c082006-10-02 02:17:28 -0700324 kill_pid_info_as_uid(as->signr, &sinfo, as->pid, as->uid,
David Quigley7a019552006-06-30 01:55:48 -0700325 as->euid, as->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700327 snoop(&urb->dev->dev, "urb complete\n");
328 snoop_urb(urb, as->userurb);
329 wake_up(&ps->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800332static void destroy_async(struct dev_state *ps, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 struct async *as;
335 unsigned long flags;
336
337 spin_lock_irqsave(&ps->lock, flags);
338 while (!list_empty(list)) {
339 as = list_entry(list->next, struct async, asynclist);
340 list_del_init(&as->asynclist);
341
342 /* drop the spinlock so the completion handler can run */
343 spin_unlock_irqrestore(&ps->lock, flags);
344 usb_kill_urb(as->urb);
345 spin_lock_irqsave(&ps->lock, flags);
346 }
347 spin_unlock_irqrestore(&ps->lock, flags);
348 as = async_getcompleted(ps);
349 while (as) {
350 free_async(as);
351 as = async_getcompleted(ps);
352 }
353}
354
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800355static void destroy_async_on_interface(struct dev_state *ps,
356 unsigned int ifnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 struct list_head *p, *q, hitlist;
359 unsigned long flags;
360
361 INIT_LIST_HEAD(&hitlist);
362 spin_lock_irqsave(&ps->lock, flags);
363 list_for_each_safe(p, q, &ps->async_pending)
364 if (ifnum == list_entry(p, struct async, asynclist)->ifnum)
365 list_move_tail(p, &hitlist);
366 spin_unlock_irqrestore(&ps->lock, flags);
367 destroy_async(ps, &hitlist);
368}
369
370static inline void destroy_all_async(struct dev_state *ps)
371{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800372 destroy_async(ps, &ps->async_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375/*
376 * interface claims are made only at the request of user level code,
377 * which can also release them (explicitly or by closing files).
378 * they're also undone when devices disconnect.
379 */
380
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800381static int driver_probe(struct usb_interface *intf,
382 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 return -ENODEV;
385}
386
387static void driver_disconnect(struct usb_interface *intf)
388{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800389 struct dev_state *ps = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 unsigned int ifnum = intf->altsetting->desc.bInterfaceNumber;
391
392 if (!ps)
393 return;
394
395 /* NOTE: this relies on usbcore having canceled and completed
396 * all pending I/O requests; 2.6 does that.
397 */
398
399 if (likely(ifnum < 8*sizeof(ps->ifclaimed)))
400 clear_bit(ifnum, &ps->ifclaimed);
401 else
402 warn("interface number %u out of range", ifnum);
403
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800404 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 /* force async requests to complete */
407 destroy_async_on_interface(ps, ifnum);
408}
409
Alan Stern2e2eb832007-12-04 14:35:15 -0500410/* The following routines are merely placeholders. There is no way
411 * to inform a user task about suspend or resumes.
412 */
413static int driver_suspend(struct usb_interface *intf, pm_message_t msg)
414{
415 return 0;
416}
417
418static int driver_resume(struct usb_interface *intf)
419{
420 return 0;
421}
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423struct usb_driver usbfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 .name = "usbfs",
425 .probe = driver_probe,
426 .disconnect = driver_disconnect,
Alan Stern2e2eb832007-12-04 14:35:15 -0500427 .suspend = driver_suspend,
428 .resume = driver_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429};
430
431static int claimintf(struct dev_state *ps, unsigned int ifnum)
432{
433 struct usb_device *dev = ps->dev;
434 struct usb_interface *intf;
435 int err;
436
437 if (ifnum >= 8*sizeof(ps->ifclaimed))
438 return -EINVAL;
439 /* already claimed */
440 if (test_bit(ifnum, &ps->ifclaimed))
441 return 0;
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 intf = usb_ifnum_to_if(dev, ifnum);
444 if (!intf)
445 err = -ENOENT;
446 else
447 err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (err == 0)
449 set_bit(ifnum, &ps->ifclaimed);
450 return err;
451}
452
453static int releaseintf(struct dev_state *ps, unsigned int ifnum)
454{
455 struct usb_device *dev;
456 struct usb_interface *intf;
457 int err;
458
459 err = -EINVAL;
460 if (ifnum >= 8*sizeof(ps->ifclaimed))
461 return err;
462 dev = ps->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 intf = usb_ifnum_to_if(dev, ifnum);
464 if (!intf)
465 err = -ENOENT;
466 else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
467 usb_driver_release_interface(&usbfs_driver, intf);
468 err = 0;
469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return err;
471}
472
473static int checkintf(struct dev_state *ps, unsigned int ifnum)
474{
475 if (ps->dev->state != USB_STATE_CONFIGURED)
476 return -EHOSTUNREACH;
477 if (ifnum >= 8*sizeof(ps->ifclaimed))
478 return -EINVAL;
479 if (test_bit(ifnum, &ps->ifclaimed))
480 return 0;
481 /* if not yet claimed, claim it for the driver */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800482 dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
483 "interface %u before use\n", task_pid_nr(current),
484 current->comm, ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return claimintf(ps, ifnum);
486}
487
488static int findintfep(struct usb_device *dev, unsigned int ep)
489{
490 unsigned int i, j, e;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800491 struct usb_interface *intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct usb_host_interface *alts;
493 struct usb_endpoint_descriptor *endpt;
494
495 if (ep & ~(USB_DIR_IN|0xf))
496 return -EINVAL;
497 if (!dev->actconfig)
498 return -ESRCH;
499 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
500 intf = dev->actconfig->interface[i];
501 for (j = 0; j < intf->num_altsetting; j++) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800502 alts = &intf->altsetting[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 for (e = 0; e < alts->desc.bNumEndpoints; e++) {
504 endpt = &alts->endpoint[e].desc;
505 if (endpt->bEndpointAddress == ep)
506 return alts->desc.bInterfaceNumber;
507 }
508 }
509 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800510 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800513static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype,
514 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 int ret = 0;
517
Horst Schirmeier24f8b112006-03-11 00:16:55 -0800518 if (ps->dev->state != USB_STATE_ADDRESS
519 && ps->dev->state != USB_STATE_CONFIGURED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return -EHOSTUNREACH;
521 if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
522 return 0;
523
524 index &= 0xff;
525 switch (requesttype & USB_RECIP_MASK) {
526 case USB_RECIP_ENDPOINT:
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800527 ret = findintfep(ps->dev, index);
528 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 ret = checkintf(ps, ret);
530 break;
531
532 case USB_RECIP_INTERFACE:
533 ret = checkintf(ps, index);
534 break;
535 }
536 return ret;
537}
538
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100539static int __match_minor(struct device *dev, void *data)
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700540{
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100541 int minor = *((int *)data);
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700542
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100543 if (dev->devt == MKDEV(USB_DEVICE_MAJOR, minor))
544 return 1;
545 return 0;
546}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700547
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100548static struct usb_device *usbdev_lookup_by_minor(int minor)
549{
550 struct device *dev;
551
552 dev = bus_find_device(&usb_bus_type, NULL, &minor, __match_minor);
553 if (!dev)
554 return NULL;
555 put_device(dev);
556 return container_of(dev, struct usb_device, dev);
557}
Greg Kroah-Hartman4592bf52005-06-20 21:15:16 -0700558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559/*
560 * file operations
561 */
562static int usbdev_open(struct inode *inode, struct file *file)
563{
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200564 struct usb_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 struct dev_state *ps;
566 int ret;
567
Alan Stern4a2a8a22006-07-01 22:05:01 -0400568 /* Protect against simultaneous removal or release */
569 mutex_lock(&usbfs_mutex);
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 ret = -ENOMEM;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800572 ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
573 if (!ps)
Alan Stern4a2a8a22006-07-01 22:05:01 -0400574 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 ret = -ENOENT;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100577 /* usbdev device-node */
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200578 if (imajor(inode) == USB_DEVICE_MAJOR)
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100579 dev = usbdev_lookup_by_minor(iminor(inode));
580#ifdef CONFIG_USB_DEVICEFS
581 /* procfs file */
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200582 if (!dev)
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700583 dev = inode->i_private;
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100584#endif
Alan Stern01d883d2006-08-30 15:47:18 -0400585 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 goto out;
Alan Stern94fcda12006-11-20 11:38:46 -0500587 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -0400588 if (ret)
589 goto out;
590
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200591 usb_get_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 ret = 0;
593 ps->dev = dev;
594 ps->file = file;
595 spin_lock_init(&ps->lock);
Dan Carpenter316547f2006-12-13 00:03:38 -0800596 INIT_LIST_HEAD(&ps->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 INIT_LIST_HEAD(&ps->async_pending);
598 INIT_LIST_HEAD(&ps->async_completed);
599 init_waitqueue_head(&ps->wait);
600 ps->discsignr = 0;
Eric W. Biederman2425c082006-10-02 02:17:28 -0700601 ps->disc_pid = get_pid(task_pid(current));
Linus Torvaldsd7dd8a72005-10-10 16:31:30 -0700602 ps->disc_uid = current->uid;
603 ps->disc_euid = current->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 ps->disccontext = NULL;
605 ps->ifclaimed = 0;
David Quigley7a019552006-06-30 01:55:48 -0700606 security_task_getsecid(current, &ps->secid);
Oliver Neukum527660a2007-04-20 20:50:48 +0200607 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 list_add_tail(&ps->list, &dev->filelist);
609 file->private_data = ps;
610 out:
Alan Stern01d883d2006-08-30 15:47:18 -0400611 if (ret)
612 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400613 mutex_unlock(&usbfs_mutex);
614 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
617static int usbdev_release(struct inode *inode, struct file *file)
618{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200619 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 struct usb_device *dev = ps->dev;
621 unsigned int ifnum;
622
623 usb_lock_device(dev);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400624
625 /* Protect against simultaneous open */
626 mutex_lock(&usbfs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 list_del_init(&ps->list);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400628 mutex_unlock(&usbfs_mutex);
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
631 ifnum++) {
632 if (test_bit(ifnum, &ps->ifclaimed))
633 releaseintf(ps, ifnum);
634 }
635 destroy_all_async(ps);
Alan Stern94fcda12006-11-20 11:38:46 -0500636 usb_autosuspend_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 usb_unlock_device(dev);
638 usb_put_dev(dev);
Eric W. Biederman2425c082006-10-02 02:17:28 -0700639 put_pid(ps->disc_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 kfree(ps);
Alan Stern4a2a8a22006-07-01 22:05:01 -0400641 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
644static int proc_control(struct dev_state *ps, void __user *arg)
645{
646 struct usb_device *dev = ps->dev;
647 struct usbdevfs_ctrltransfer ctrl;
648 unsigned int tmo;
649 unsigned char *tbuf;
Andrew Mortonff66e3c2008-03-12 13:32:24 -0700650 unsigned wLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 int i, j, ret;
652
653 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
654 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800655 ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.wIndex);
656 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return ret;
Andrew Mortonff66e3c2008-03-12 13:32:24 -0700658 wLength = ctrl.wLength; /* To suppress 64k PAGE_SIZE warning */
659 if (wLength > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800661 tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
662 if (!tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return -ENOMEM;
664 tmo = ctrl.timeout;
665 if (ctrl.bRequestType & 0x80) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800666 if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
667 ctrl.wLength)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 free_page((unsigned long)tbuf);
669 return -EINVAL;
670 }
Alan Sternfe0410c2005-07-29 12:16:58 -0700671 snoop(&dev->dev, "control read: 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
677 usb_unlock_device(dev);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800678 i = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), ctrl.bRequest,
679 ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
680 tbuf, ctrl.wLength, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 usb_lock_device(dev);
682 if ((i > 0) && ctrl.wLength) {
683 if (usbfs_snoop) {
684 dev_info(&dev->dev, "control read: data ");
Alan Sternfe0410c2005-07-29 12:16:58 -0700685 for (j = 0; j < i; ++j)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800686 printk("%02x ", (u8)(tbuf)[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 printk("\n");
688 }
Alan Sternfe0410c2005-07-29 12:16:58 -0700689 if (copy_to_user(ctrl.data, tbuf, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 free_page((unsigned long)tbuf);
691 return -EFAULT;
692 }
693 }
694 } else {
695 if (ctrl.wLength) {
696 if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
697 free_page((unsigned long)tbuf);
698 return -EFAULT;
699 }
700 }
Alan Sternfe0410c2005-07-29 12:16:58 -0700701 snoop(&dev->dev, "control write: bRequest=%02x "
702 "bRrequestType=%02x wValue=%04x "
703 "wIndex=%04x wLength=%04x\n",
704 ctrl.bRequest, ctrl.bRequestType, ctrl.wValue,
705 ctrl.wIndex, ctrl.wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (usbfs_snoop) {
707 dev_info(&dev->dev, "control write: data: ");
708 for (j = 0; j < ctrl.wLength; ++j)
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700709 printk("%02x ", (unsigned char)(tbuf)[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 printk("\n");
711 }
712 usb_unlock_device(dev);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800713 i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
714 ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
715 tbuf, ctrl.wLength, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 usb_lock_device(dev);
717 }
718 free_page((unsigned long)tbuf);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800719 if (i < 0 && i != -EPIPE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
721 "failed cmd %s rqt %u rq %u len %u ret %d\n",
722 current->comm, ctrl.bRequestType, ctrl.bRequest,
723 ctrl.wLength, i);
724 }
725 return i;
726}
727
728static int proc_bulk(struct dev_state *ps, void __user *arg)
729{
730 struct usb_device *dev = ps->dev;
731 struct usbdevfs_bulktransfer bulk;
732 unsigned int tmo, len1, pipe;
733 int len2;
734 unsigned char *tbuf;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700735 int i, j, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 if (copy_from_user(&bulk, arg, sizeof(bulk)))
738 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800739 ret = findintfep(ps->dev, bulk.ep);
740 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800742 ret = checkintf(ps, ret);
743 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return ret;
745 if (bulk.ep & USB_DIR_IN)
746 pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
747 else
748 pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
749 if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
750 return -EINVAL;
751 len1 = bulk.len;
752 if (len1 > MAX_USBFS_BUFFER_SIZE)
753 return -EINVAL;
754 if (!(tbuf = kmalloc(len1, GFP_KERNEL)))
755 return -ENOMEM;
756 tmo = bulk.timeout;
757 if (bulk.ep & 0x80) {
758 if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
759 kfree(tbuf);
760 return -EINVAL;
761 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700762 snoop(&dev->dev, "bulk read: len=0x%02x timeout=%04d\n",
763 bulk.len, bulk.timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 usb_unlock_device(dev);
765 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
766 usb_lock_device(dev);
767 if (!i && len2) {
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700768 if (usbfs_snoop) {
769 dev_info(&dev->dev, "bulk read: data ");
770 for (j = 0; j < len2; ++j)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800771 printk("%02x ", (u8)(tbuf)[j]);
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700772 printk("\n");
773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (copy_to_user(bulk.data, tbuf, len2)) {
775 kfree(tbuf);
776 return -EFAULT;
777 }
778 }
779 } else {
780 if (len1) {
781 if (copy_from_user(tbuf, bulk.data, len1)) {
782 kfree(tbuf);
783 return -EFAULT;
784 }
785 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -0700786 snoop(&dev->dev, "bulk write: len=0x%02x timeout=%04d\n",
787 bulk.len, bulk.timeout);
788 if (usbfs_snoop) {
789 dev_info(&dev->dev, "bulk write: data: ");
790 for (j = 0; j < len1; ++j)
791 printk("%02x ", (unsigned char)(tbuf)[j]);
792 printk("\n");
793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 usb_unlock_device(dev);
795 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
796 usb_lock_device(dev);
797 }
798 kfree(tbuf);
799 if (i < 0)
800 return i;
801 return len2;
802}
803
804static int proc_resetep(struct dev_state *ps, void __user *arg)
805{
806 unsigned int ep;
807 int ret;
808
809 if (get_user(ep, (unsigned int __user *)arg))
810 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800811 ret = findintfep(ps->dev, ep);
812 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800814 ret = checkintf(ps, ret);
815 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return ret;
817 usb_settoggle(ps->dev, ep & 0xf, !(ep & USB_DIR_IN), 0);
818 return 0;
819}
820
821static int proc_clearhalt(struct dev_state *ps, void __user *arg)
822{
823 unsigned int ep;
824 int pipe;
825 int ret;
826
827 if (get_user(ep, (unsigned int __user *)arg))
828 return -EFAULT;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800829 ret = findintfep(ps->dev, ep);
830 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return ret;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800832 ret = checkintf(ps, ret);
833 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return ret;
835 if (ep & USB_DIR_IN)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800836 pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
837 else
838 pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 return usb_clear_halt(ps->dev, pipe);
841}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843static int proc_getdriver(struct dev_state *ps, void __user *arg)
844{
845 struct usbdevfs_getdriver gd;
846 struct usb_interface *intf;
847 int ret;
848
849 if (copy_from_user(&gd, arg, sizeof(gd)))
850 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 intf = usb_ifnum_to_if(ps->dev, gd.interface);
852 if (!intf || !intf->dev.driver)
853 ret = -ENODATA;
854 else {
855 strncpy(gd.driver, intf->dev.driver->name,
856 sizeof(gd.driver));
857 ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return ret;
860}
861
862static int proc_connectinfo(struct dev_state *ps, void __user *arg)
863{
864 struct usbdevfs_connectinfo ci;
865
866 ci.devnum = ps->dev->devnum;
867 ci.slow = ps->dev->speed == USB_SPEED_LOW;
868 if (copy_to_user(arg, &ci, sizeof(ci)))
869 return -EFAULT;
870 return 0;
871}
872
873static int proc_resetdevice(struct dev_state *ps)
874{
Alan Stern79efa092006-06-01 13:33:42 -0400875 return usb_reset_composite_device(ps->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
878static int proc_setintf(struct dev_state *ps, void __user *arg)
879{
880 struct usbdevfs_setinterface setintf;
881 int ret;
882
883 if (copy_from_user(&setintf, arg, sizeof(setintf)))
884 return -EFAULT;
885 if ((ret = checkintf(ps, setintf.interface)))
886 return ret;
887 return usb_set_interface(ps->dev, setintf.interface,
888 setintf.altsetting);
889}
890
891static int proc_setconfig(struct dev_state *ps, void __user *arg)
892{
Alan Stern3f141e22007-02-08 16:40:43 -0500893 int u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 int status = 0;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800895 struct usb_host_config *actconfig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Alan Stern3f141e22007-02-08 16:40:43 -0500897 if (get_user(u, (int __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return -EFAULT;
899
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800900 actconfig = ps->dev->actconfig;
901
902 /* Don't touch the device if any interfaces are claimed.
903 * It could interfere with other drivers' operations, and if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 * an interface is claimed by usbfs it could easily deadlock.
905 */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800906 if (actconfig) {
907 int i;
908
909 for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
910 if (usb_interface_claimed(actconfig->interface[i])) {
911 dev_warn(&ps->dev->dev,
David Brownell72ebddb2005-04-11 18:34:17 -0700912 "usbfs: interface %d claimed by %s "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 "while '%s' sets config #%d\n",
914 actconfig->interface[i]
915 ->cur_altsetting
916 ->desc.bInterfaceNumber,
David Brownell72ebddb2005-04-11 18:34:17 -0700917 actconfig->interface[i]
918 ->dev.driver->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 current->comm, u);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800920 status = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800923 }
924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
927 * so avoid usb_set_configuration()'s kick to sysfs
928 */
929 if (status == 0) {
930 if (actconfig && actconfig->desc.bConfigurationValue == u)
931 status = usb_reset_configuration(ps->dev);
932 else
933 status = usb_set_configuration(ps->dev, u);
934 }
935
936 return status;
937}
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800940 struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
941 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 struct usbdevfs_iso_packet_desc *isopkt = NULL;
944 struct usb_host_endpoint *ep;
945 struct async *as;
946 struct usb_ctrlrequest *dr = NULL;
947 unsigned int u, totlen, isofrmlen;
Alan Stern97b9eb92007-02-26 14:56:14 -0500948 int ret, ifnum = -1;
Alan Stern93cf9b92007-07-30 17:09:28 -0400949 int is_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP|USBDEVFS_URB_SHORT_NOT_OK|
952 URB_NO_FSBR|URB_ZERO_PACKET))
953 return -EINVAL;
954 if (!uurb->buffer)
955 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800956 if (uurb->signr != 0 && (uurb->signr < SIGRTMIN ||
957 uurb->signr > SIGRTMAX))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800959 if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
960 (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
961 ifnum = findintfep(ps->dev, uurb->endpoint);
962 if (ifnum < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return ifnum;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800964 ret = checkintf(ps, ifnum);
965 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 return ret;
967 }
Alan Stern93cf9b92007-07-30 17:09:28 -0400968 if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
969 is_in = 1;
970 ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
971 } else {
972 is_in = 0;
973 ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (!ep)
976 return -ENOENT;
977 switch(uurb->type) {
978 case USBDEVFS_URB_TYPE_CONTROL:
Alan Stern93cf9b92007-07-30 17:09:28 -0400979 if (!usb_endpoint_xfer_control(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800981 /* min 8 byte setup packet,
982 * max 8 byte setup plus an arbitrary data stage */
983 if (uurb->buffer_length < 8 ||
984 uurb->buffer_length > (8 + MAX_USBFS_BUFFER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800986 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
987 if (!dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return -ENOMEM;
989 if (copy_from_user(dr, uurb->buffer, 8)) {
990 kfree(dr);
991 return -EFAULT;
992 }
993 if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
994 kfree(dr);
995 return -EINVAL;
996 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -0800997 ret = check_ctrlrecip(ps, dr->bRequestType,
998 le16_to_cpup(&dr->wIndex));
999 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 kfree(dr);
1001 return ret;
1002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 uurb->number_of_packets = 0;
1004 uurb->buffer_length = le16_to_cpup(&dr->wLength);
1005 uurb->buffer += 8;
Alan Stern93cf9b92007-07-30 17:09:28 -04001006 if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
1007 is_in = 1;
1008 uurb->endpoint |= USB_DIR_IN;
1009 } else {
1010 is_in = 0;
1011 uurb->endpoint &= ~USB_DIR_IN;
1012 }
1013 if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1014 uurb->buffer, uurb->buffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 kfree(dr);
1016 return -EFAULT;
1017 }
Chris Freydf251b82006-12-16 02:37:42 -05001018 snoop(&ps->dev->dev, "control urb: bRequest=%02x "
1019 "bRrequestType=%02x wValue=%04x "
1020 "wIndex=%04x wLength=%04x\n",
Alan Stern93cf9b92007-07-30 17:09:28 -04001021 dr->bRequest, dr->bRequestType,
1022 __le16_to_cpup(&dr->wValue),
1023 __le16_to_cpup(&dr->wIndex),
1024 __le16_to_cpup(&dr->wLength));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 break;
1026
1027 case USBDEVFS_URB_TYPE_BULK:
Alan Stern93cf9b92007-07-30 17:09:28 -04001028 switch (usb_endpoint_type(&ep->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 case USB_ENDPOINT_XFER_CONTROL:
1030 case USB_ENDPOINT_XFER_ISOC:
1031 return -EINVAL;
1032 /* allow single-shot interrupt transfers, at bogus rates */
1033 }
1034 uurb->number_of_packets = 0;
1035 if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
1036 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001037 if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1038 uurb->buffer, uurb->buffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return -EFAULT;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001040 snoop(&ps->dev->dev, "bulk urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 break;
1042
1043 case USBDEVFS_URB_TYPE_ISO:
1044 /* arbitrary limit */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001045 if (uurb->number_of_packets < 1 ||
1046 uurb->number_of_packets > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001048 if (!usb_endpoint_xfer_isoc(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return -EINVAL;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001050 isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
1051 uurb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
1053 return -ENOMEM;
1054 if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
1055 kfree(isopkt);
1056 return -EFAULT;
1057 }
1058 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001059 /* arbitrary limit,
1060 * sufficient for USB 2.0 high-bandwidth iso */
Micah Dowty36122422006-05-19 11:26:24 -07001061 if (isopkt[u].length > 8192) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 kfree(isopkt);
1063 return -EINVAL;
1064 }
1065 totlen += isopkt[u].length;
1066 }
1067 if (totlen > 32768) {
1068 kfree(isopkt);
1069 return -EINVAL;
1070 }
1071 uurb->buffer_length = totlen;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001072 snoop(&ps->dev->dev, "iso urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 break;
1074
1075 case USBDEVFS_URB_TYPE_INTERRUPT:
1076 uurb->number_of_packets = 0;
Alan Stern93cf9b92007-07-30 17:09:28 -04001077 if (!usb_endpoint_xfer_int(&ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
1080 return -EINVAL;
Alan Stern93cf9b92007-07-30 17:09:28 -04001081 if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1082 uurb->buffer, uurb->buffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return -EFAULT;
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001084 snoop(&ps->dev->dev, "interrupt urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 break;
1086
1087 default:
1088 return -EINVAL;
1089 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001090 as = alloc_async(uurb->number_of_packets);
1091 if (!as) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001092 kfree(isopkt);
1093 kfree(dr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return -ENOMEM;
1095 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001096 as->urb->transfer_buffer = kmalloc(uurb->buffer_length, GFP_KERNEL);
1097 if (!as->urb->transfer_buffer) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001098 kfree(isopkt);
1099 kfree(dr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 free_async(as);
1101 return -ENOMEM;
1102 }
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001103 as->urb->dev = ps->dev;
1104 as->urb->pipe = (uurb->type << 30) |
Alan Stern93cf9b92007-07-30 17:09:28 -04001105 __create_pipe(ps->dev, uurb->endpoint & 0xf) |
1106 (uurb->endpoint & USB_DIR_IN);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001107 as->urb->transfer_flags = uurb->flags |
Alan Stern93cf9b92007-07-30 17:09:28 -04001108 (is_in ? URB_DIR_IN : URB_DIR_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 as->urb->transfer_buffer_length = uurb->buffer_length;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001110 as->urb->setup_packet = (unsigned char *)dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 as->urb->start_frame = uurb->start_frame;
1112 as->urb->number_of_packets = uurb->number_of_packets;
Alan Stern97b9eb92007-02-26 14:56:14 -05001113 if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
1114 ps->dev->speed == USB_SPEED_HIGH)
1115 as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
1116 else
1117 as->urb->interval = ep->desc.bInterval;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001118 as->urb->context = as;
1119 as->urb->complete = async_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 for (totlen = u = 0; u < uurb->number_of_packets; u++) {
1121 as->urb->iso_frame_desc[u].offset = totlen;
1122 as->urb->iso_frame_desc[u].length = isopkt[u].length;
1123 totlen += isopkt[u].length;
1124 }
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001125 kfree(isopkt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 as->ps = ps;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001127 as->userurb = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (uurb->endpoint & USB_DIR_IN)
1129 as->userbuffer = uurb->buffer;
1130 else
1131 as->userbuffer = NULL;
1132 as->signr = uurb->signr;
1133 as->ifnum = ifnum;
Eric W. Biederman2425c082006-10-02 02:17:28 -07001134 as->pid = get_pid(task_pid(current));
Harald Welte46113832005-10-10 19:44:29 +02001135 as->uid = current->uid;
1136 as->euid = current->euid;
David Quigley7a019552006-06-30 01:55:48 -07001137 security_task_getsecid(current, &as->secid);
Alan Stern93cf9b92007-07-30 17:09:28 -04001138 if (!is_in) {
1139 if (copy_from_user(as->urb->transfer_buffer, uurb->buffer,
1140 as->urb->transfer_buffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 free_async(as);
1142 return -EFAULT;
1143 }
1144 }
Greg Kroah-Hartmane639dd32005-06-20 21:15:16 -07001145 snoop_urb(as->urb, as->userurb);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001146 async_newpending(as);
1147 if ((ret = usb_submit_urb(as->urb, GFP_KERNEL))) {
1148 dev_printk(KERN_DEBUG, &ps->dev->dev,
1149 "usbfs: usb_submit_urb returned %d\n", ret);
1150 async_removepending(as);
1151 free_async(as);
1152 return ret;
1153 }
1154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
1157static int proc_submiturb(struct dev_state *ps, void __user *arg)
1158{
1159 struct usbdevfs_urb uurb;
1160
1161 if (copy_from_user(&uurb, arg, sizeof(uurb)))
1162 return -EFAULT;
1163
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001164 return proc_do_submiturb(ps, &uurb,
1165 (((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
1166 arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
1169static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
1170{
1171 struct async *as;
1172
1173 as = async_getpending(ps, arg);
1174 if (!as)
1175 return -EINVAL;
1176 usb_kill_urb(as->urb);
1177 return 0;
1178}
1179
1180static int processcompl(struct async *as, void __user * __user *arg)
1181{
1182 struct urb *urb = as->urb;
1183 struct usbdevfs_urb __user *userurb = as->userurb;
1184 void __user *addr = as->userurb;
1185 unsigned int i;
1186
1187 if (as->userbuffer)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001188 if (copy_to_user(as->userbuffer, urb->transfer_buffer,
1189 urb->transfer_buffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return -EFAULT;
Alan Sterne0152682007-08-24 15:42:52 -04001191 if (put_user(as->status, &userurb->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 return -EFAULT;
1193 if (put_user(urb->actual_length, &userurb->actual_length))
1194 return -EFAULT;
1195 if (put_user(urb->error_count, &userurb->error_count))
1196 return -EFAULT;
1197
Alan Stern93cf9b92007-07-30 17:09:28 -04001198 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001199 for (i = 0; i < urb->number_of_packets; i++) {
1200 if (put_user(urb->iso_frame_desc[i].actual_length,
1201 &userurb->iso_frame_desc[i].actual_length))
1202 return -EFAULT;
1203 if (put_user(urb->iso_frame_desc[i].status,
1204 &userurb->iso_frame_desc[i].status))
1205 return -EFAULT;
1206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
1208
1209 free_async(as);
1210
1211 if (put_user(addr, (void __user * __user *)arg))
1212 return -EFAULT;
1213 return 0;
1214}
1215
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001216static struct async *reap_as(struct dev_state *ps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001218 DECLARE_WAITQUEUE(wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 struct async *as = NULL;
1220 struct usb_device *dev = ps->dev;
1221
1222 add_wait_queue(&ps->wait, &wait);
1223 for (;;) {
1224 __set_current_state(TASK_INTERRUPTIBLE);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001225 as = async_getcompleted(ps);
1226 if (as)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 break;
1228 if (signal_pending(current))
1229 break;
1230 usb_unlock_device(dev);
1231 schedule();
1232 usb_lock_device(dev);
1233 }
1234 remove_wait_queue(&ps->wait, &wait);
1235 set_current_state(TASK_RUNNING);
1236 return as;
1237}
1238
1239static int proc_reapurb(struct dev_state *ps, void __user *arg)
1240{
1241 struct async *as = reap_as(ps);
1242 if (as)
1243 return processcompl(as, (void __user * __user *)arg);
1244 if (signal_pending(current))
1245 return -EINTR;
1246 return -EIO;
1247}
1248
1249static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
1250{
1251 struct async *as;
1252
1253 if (!(as = async_getcompleted(ps)))
1254 return -EAGAIN;
1255 return processcompl(as, (void __user * __user *)arg);
1256}
1257
1258#ifdef CONFIG_COMPAT
1259
1260static int get_urb32(struct usbdevfs_urb *kurb,
1261 struct usbdevfs_urb32 __user *uurb)
1262{
1263 __u32 uptr;
1264 if (get_user(kurb->type, &uurb->type) ||
1265 __get_user(kurb->endpoint, &uurb->endpoint) ||
1266 __get_user(kurb->status, &uurb->status) ||
1267 __get_user(kurb->flags, &uurb->flags) ||
1268 __get_user(kurb->buffer_length, &uurb->buffer_length) ||
1269 __get_user(kurb->actual_length, &uurb->actual_length) ||
1270 __get_user(kurb->start_frame, &uurb->start_frame) ||
1271 __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
1272 __get_user(kurb->error_count, &uurb->error_count) ||
1273 __get_user(kurb->signr, &uurb->signr))
1274 return -EFAULT;
1275
1276 if (__get_user(uptr, &uurb->buffer))
1277 return -EFAULT;
1278 kurb->buffer = compat_ptr(uptr);
1279 if (__get_user(uptr, &uurb->buffer))
1280 return -EFAULT;
1281 kurb->usercontext = compat_ptr(uptr);
1282
1283 return 0;
1284}
1285
1286static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
1287{
1288 struct usbdevfs_urb uurb;
1289
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001290 if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return -EFAULT;
1292
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001293 return proc_do_submiturb(ps, &uurb,
1294 ((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
1295 arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
1297
1298static int processcompl_compat(struct async *as, void __user * __user *arg)
1299{
1300 struct urb *urb = as->urb;
1301 struct usbdevfs_urb32 __user *userurb = as->userurb;
1302 void __user *addr = as->userurb;
1303 unsigned int i;
1304
1305 if (as->userbuffer)
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001306 if (copy_to_user(as->userbuffer, urb->transfer_buffer,
1307 urb->transfer_buffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 return -EFAULT;
Alan Sterne0152682007-08-24 15:42:52 -04001309 if (put_user(as->status, &userurb->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return -EFAULT;
1311 if (put_user(urb->actual_length, &userurb->actual_length))
1312 return -EFAULT;
1313 if (put_user(urb->error_count, &userurb->error_count))
1314 return -EFAULT;
1315
Alan Stern93cf9b92007-07-30 17:09:28 -04001316 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
Christopher Li668a9542005-04-18 17:39:26 -07001317 for (i = 0; i < urb->number_of_packets; i++) {
1318 if (put_user(urb->iso_frame_desc[i].actual_length,
1319 &userurb->iso_frame_desc[i].actual_length))
1320 return -EFAULT;
1321 if (put_user(urb->iso_frame_desc[i].status,
1322 &userurb->iso_frame_desc[i].status))
1323 return -EFAULT;
1324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
1326
1327 free_async(as);
Al Viroc714de52006-10-10 22:45:37 +01001328 if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return -EFAULT;
1330 return 0;
1331}
1332
1333static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
1334{
1335 struct async *as = reap_as(ps);
1336 if (as)
1337 return processcompl_compat(as, (void __user * __user *)arg);
1338 if (signal_pending(current))
1339 return -EINTR;
1340 return -EIO;
1341}
1342
1343static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
1344{
1345 struct async *as;
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (!(as = async_getcompleted(ps)))
1348 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return processcompl_compat(as, (void __user * __user *)arg);
1350}
1351
1352#endif
1353
1354static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
1355{
1356 struct usbdevfs_disconnectsignal ds;
1357
1358 if (copy_from_user(&ds, arg, sizeof(ds)))
1359 return -EFAULT;
1360 if (ds.signr != 0 && (ds.signr < SIGRTMIN || ds.signr > SIGRTMAX))
1361 return -EINVAL;
1362 ps->discsignr = ds.signr;
1363 ps->disccontext = ds.context;
1364 return 0;
1365}
1366
1367static int proc_claiminterface(struct dev_state *ps, void __user *arg)
1368{
1369 unsigned int ifnum;
1370
1371 if (get_user(ifnum, (unsigned int __user *)arg))
1372 return -EFAULT;
1373 return claimintf(ps, ifnum);
1374}
1375
1376static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
1377{
1378 unsigned int ifnum;
1379 int ret;
1380
1381 if (get_user(ifnum, (unsigned int __user *)arg))
1382 return -EFAULT;
1383 if ((ret = releaseintf(ps, ifnum)) < 0)
1384 return ret;
1385 destroy_async_on_interface (ps, ifnum);
1386 return 0;
1387}
1388
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001389static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 int size;
1392 void *buf = NULL;
1393 int retval = 0;
1394 struct usb_interface *intf = NULL;
1395 struct usb_driver *driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001397 /* alloc buffer */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001398 if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
1399 if ((buf = kmalloc(size, GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 return -ENOMEM;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001401 if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001402 if (copy_from_user(buf, ctl->data, size)) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001403 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return -EFAULT;
1405 }
1406 } else {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001407 memset(buf, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409 }
1410
Alan Stern349710c2006-07-01 22:05:56 -04001411 if (!connected(ps)) {
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001412 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return -ENODEV;
1414 }
1415
1416 if (ps->dev->state != USB_STATE_CONFIGURED)
1417 retval = -EHOSTUNREACH;
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001418 else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
1419 retval = -EINVAL;
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001420 else switch (ctl->ioctl_code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 /* disconnect kernel driver from interface */
1423 case USBDEVFS_DISCONNECT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (intf->dev.driver) {
1425 driver = to_usb_driver(intf->dev.driver);
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001426 dev_dbg(&intf->dev, "disconnect by usbfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 usb_driver_release_interface(driver, intf);
1428 } else
1429 retval = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 break;
1431
1432 /* let kernel drivers try to (re)bind to the interface */
1433 case USBDEVFS_CONNECT:
Alan Stern885e9742007-12-03 15:42:10 -05001434 if (!intf->dev.driver)
1435 retval = device_attach(&intf->dev);
1436 else
1437 retval = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 break;
1439
1440 /* talk directly to the interface's driver */
1441 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (intf->dev.driver)
1443 driver = to_usb_driver(intf->dev.driver);
1444 if (driver == NULL || driver->ioctl == NULL) {
1445 retval = -ENOTTY;
1446 } else {
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001447 retval = driver->ioctl(intf, ctl->ioctl_code, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (retval == -ENOIOCTLCMD)
1449 retval = -ENOTTY;
1450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452
1453 /* cleanup and return */
1454 if (retval >= 0
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001455 && (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 && size > 0
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001457 && copy_to_user(ctl->data, buf, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 retval = -EFAULT;
Jesper Juhl6fd19f42005-04-18 17:39:33 -07001459
1460 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return retval;
1462}
1463
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001464static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
1465{
1466 struct usbdevfs_ioctl ctrl;
1467
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001468 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001469 return -EFAULT;
1470 return proc_ioctl(ps, &ctrl);
1471}
1472
1473#ifdef CONFIG_COMPAT
Andrew Morton777da592005-11-17 09:47:02 -08001474static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001475{
1476 struct usbdevfs_ioctl32 __user *uioc;
1477 struct usbdevfs_ioctl ctrl;
1478 u32 udata;
1479
Andrew Morton058120d2005-11-17 09:47:49 -08001480 uioc = compat_ptr((long)arg);
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001481 if (get_user(ctrl.ifno, &uioc->ifno) ||
1482 get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
1483 __get_user(udata, &uioc->data))
1484 return -EFAULT;
1485 ctrl.data = compat_ptr(udata);
1486
1487 return proc_ioctl(ps, &ctrl);
1488}
1489#endif
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491/*
1492 * NOTE: All requests here that have interface numbers as parameters
1493 * are assuming that somehow the configuration has been prevented from
1494 * changing. But there's no mechanism to ensure that...
1495 */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001496static int usbdev_ioctl(struct inode *inode, struct file *file,
1497 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Tobias Klauserec17cf12006-09-13 21:38:41 +02001499 struct dev_state *ps = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 struct usb_device *dev = ps->dev;
1501 void __user *p = (void __user *)arg;
1502 int ret = -ENOTTY;
1503
1504 if (!(file->f_mode & FMODE_WRITE))
1505 return -EPERM;
1506 usb_lock_device(dev);
Alan Stern349710c2006-07-01 22:05:56 -04001507 if (!connected(ps)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 usb_unlock_device(dev);
1509 return -ENODEV;
1510 }
1511
1512 switch (cmd) {
1513 case USBDEVFS_CONTROL:
1514 snoop(&dev->dev, "%s: CONTROL\n", __FUNCTION__);
1515 ret = proc_control(ps, p);
1516 if (ret >= 0)
1517 inode->i_mtime = CURRENT_TIME;
1518 break;
1519
1520 case USBDEVFS_BULK:
1521 snoop(&dev->dev, "%s: BULK\n", __FUNCTION__);
1522 ret = proc_bulk(ps, p);
1523 if (ret >= 0)
1524 inode->i_mtime = CURRENT_TIME;
1525 break;
1526
1527 case USBDEVFS_RESETEP:
1528 snoop(&dev->dev, "%s: RESETEP\n", __FUNCTION__);
1529 ret = proc_resetep(ps, p);
1530 if (ret >= 0)
1531 inode->i_mtime = CURRENT_TIME;
1532 break;
1533
1534 case USBDEVFS_RESET:
1535 snoop(&dev->dev, "%s: RESET\n", __FUNCTION__);
1536 ret = proc_resetdevice(ps);
1537 break;
1538
1539 case USBDEVFS_CLEAR_HALT:
1540 snoop(&dev->dev, "%s: CLEAR_HALT\n", __FUNCTION__);
1541 ret = proc_clearhalt(ps, p);
1542 if (ret >= 0)
1543 inode->i_mtime = CURRENT_TIME;
1544 break;
1545
1546 case USBDEVFS_GETDRIVER:
1547 snoop(&dev->dev, "%s: GETDRIVER\n", __FUNCTION__);
1548 ret = proc_getdriver(ps, p);
1549 break;
1550
1551 case USBDEVFS_CONNECTINFO:
1552 snoop(&dev->dev, "%s: CONNECTINFO\n", __FUNCTION__);
1553 ret = proc_connectinfo(ps, p);
1554 break;
1555
1556 case USBDEVFS_SETINTERFACE:
1557 snoop(&dev->dev, "%s: SETINTERFACE\n", __FUNCTION__);
1558 ret = proc_setintf(ps, p);
1559 break;
1560
1561 case USBDEVFS_SETCONFIGURATION:
1562 snoop(&dev->dev, "%s: SETCONFIGURATION\n", __FUNCTION__);
1563 ret = proc_setconfig(ps, p);
1564 break;
1565
1566 case USBDEVFS_SUBMITURB:
1567 snoop(&dev->dev, "%s: SUBMITURB\n", __FUNCTION__);
1568 ret = proc_submiturb(ps, p);
1569 if (ret >= 0)
1570 inode->i_mtime = CURRENT_TIME;
1571 break;
1572
1573#ifdef CONFIG_COMPAT
1574
1575 case USBDEVFS_SUBMITURB32:
1576 snoop(&dev->dev, "%s: SUBMITURB32\n", __FUNCTION__);
1577 ret = proc_submiturb_compat(ps, p);
1578 if (ret >= 0)
1579 inode->i_mtime = CURRENT_TIME;
1580 break;
1581
1582 case USBDEVFS_REAPURB32:
1583 snoop(&dev->dev, "%s: REAPURB32\n", __FUNCTION__);
1584 ret = proc_reapurb_compat(ps, p);
1585 break;
1586
1587 case USBDEVFS_REAPURBNDELAY32:
1588 snoop(&dev->dev, "%s: REAPURBDELAY32\n", __FUNCTION__);
1589 ret = proc_reapurbnonblock_compat(ps, p);
1590 break;
1591
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001592 case USBDEVFS_IOCTL32:
1593 snoop(&dev->dev, "%s: IOCTL\n", __FUNCTION__);
Al Viroc714de52006-10-10 22:45:37 +01001594 ret = proc_ioctl_compat(ps, ptr_to_compat(p));
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001595 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596#endif
1597
1598 case USBDEVFS_DISCARDURB:
1599 snoop(&dev->dev, "%s: DISCARDURB\n", __FUNCTION__);
1600 ret = proc_unlinkurb(ps, p);
1601 break;
1602
1603 case USBDEVFS_REAPURB:
1604 snoop(&dev->dev, "%s: REAPURB\n", __FUNCTION__);
1605 ret = proc_reapurb(ps, p);
1606 break;
1607
1608 case USBDEVFS_REAPURBNDELAY:
1609 snoop(&dev->dev, "%s: REAPURBDELAY\n", __FUNCTION__);
1610 ret = proc_reapurbnonblock(ps, p);
1611 break;
1612
1613 case USBDEVFS_DISCSIGNAL:
1614 snoop(&dev->dev, "%s: DISCSIGNAL\n", __FUNCTION__);
1615 ret = proc_disconnectsignal(ps, p);
1616 break;
1617
1618 case USBDEVFS_CLAIMINTERFACE:
1619 snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __FUNCTION__);
1620 ret = proc_claiminterface(ps, p);
1621 break;
1622
1623 case USBDEVFS_RELEASEINTERFACE:
1624 snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __FUNCTION__);
1625 ret = proc_releaseinterface(ps, p);
1626 break;
1627
1628 case USBDEVFS_IOCTL:
1629 snoop(&dev->dev, "%s: IOCTL\n", __FUNCTION__);
Pete Zaitcevc36fc882005-10-17 18:15:54 -07001630 ret = proc_ioctl_default(ps, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 break;
1632 }
1633 usb_unlock_device(dev);
1634 if (ret >= 0)
1635 inode->i_atime = CURRENT_TIME;
1636 return ret;
1637}
1638
1639/* No kernel lock - fine */
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001640static unsigned int usbdev_poll(struct file *file,
1641 struct poll_table_struct *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Tobias Klauserec17cf12006-09-13 21:38:41 +02001643 struct dev_state *ps = file->private_data;
1644 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 poll_wait(file, &ps->wait, wait);
1647 if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
1648 mask |= POLLOUT | POLLWRNORM;
Alan Stern349710c2006-07-01 22:05:56 -04001649 if (!connected(ps))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 mask |= POLLERR | POLLHUP;
1651 return mask;
1652}
1653
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001654const struct file_operations usbdev_file_operations = {
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -07001655 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 .llseek = usbdev_lseek,
1657 .read = usbdev_read,
1658 .poll = usbdev_poll,
1659 .ioctl = usbdev_ioctl,
1660 .open = usbdev_open,
1661 .release = usbdev_release,
1662};
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001663
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001664#ifdef CONFIG_USB_DEVICE_CLASS
1665static struct class *usb_classdev_class;
1666
1667static int usb_classdev_add(struct usb_device *dev)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001668{
1669 int minor = ((dev->bus->busnum-1) * 128) + (dev->devnum-1);
1670
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001671 dev->usb_classdev = device_create(usb_classdev_class, &dev->dev,
Greg Kroah-Hartman7bc3d632006-06-19 23:59:31 -07001672 MKDEV(USB_DEVICE_MAJOR, minor),
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001673 "usbdev%d.%d", dev->bus->busnum, dev->devnum);
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001674 if (IS_ERR(dev->usb_classdev))
1675 return PTR_ERR(dev->usb_classdev);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001676
Akinobu Mita27d39e22006-10-09 18:09:33 +09001677 return 0;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001678}
1679
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001680static void usb_classdev_remove(struct usb_device *dev)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001681{
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001682 device_unregister(dev->usb_classdev);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001683}
1684
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001685static int usb_classdev_notify(struct notifier_block *self,
1686 unsigned long action, void *dev)
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001687{
1688 switch (action) {
1689 case USB_DEVICE_ADD:
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001690 if (usb_classdev_add(dev))
Akinobu Mita27d39e22006-10-09 18:09:33 +09001691 return NOTIFY_BAD;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001692 break;
1693 case USB_DEVICE_REMOVE:
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001694 usb_classdev_remove(dev);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001695 break;
1696 }
1697 return NOTIFY_OK;
1698}
1699
1700static struct notifier_block usbdev_nb = {
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001701 .notifier_call = usb_classdev_notify,
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001702};
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001703#endif
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001704
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -07001705static struct cdev usb_device_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001706
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001707int __init usb_devio_init(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001708{
1709 int retval;
1710
Alan Sternfad21bd2005-08-10 15:15:57 -04001711 retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
Greg Kroah-Hartman04e482ff2008-01-30 15:21:33 -08001712 "usb_device");
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001713 if (retval) {
1714 err("unable to register minors for usb_device");
1715 goto out;
1716 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001717 cdev_init(&usb_device_cdev, &usbdev_file_operations);
Alan Sternfad21bd2005-08-10 15:15:57 -04001718 retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001719 if (retval) {
1720 err("unable to get usb_device major %d", USB_DEVICE_MAJOR);
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001721 goto error_cdev;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001722 }
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001723#ifdef CONFIG_USB_DEVICE_CLASS
1724 usb_classdev_class = class_create(THIS_MODULE, "usb_device");
1725 if (IS_ERR(usb_classdev_class)) {
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001726 err("unable to register usb_device class");
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001727 retval = PTR_ERR(usb_classdev_class);
1728 cdev_del(&usb_device_cdev);
1729 usb_classdev_class = NULL;
1730 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001731 }
1732
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001733 usb_register_notify(&usbdev_nb);
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001734#endif
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001735out:
1736 return retval;
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001737
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001738error_cdev:
1739 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
1740 goto out;
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001741}
1742
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001743void usb_devio_cleanup(void)
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001744{
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001745#ifdef CONFIG_USB_DEVICE_CLASS
Greg Kroah-Hartmana7b986b2005-06-20 21:15:16 -07001746 usb_unregister_notify(&usbdev_nb);
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001747 class_destroy(usb_classdev_class);
1748#endif
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001749 cdev_del(&usb_device_cdev);
Alan Sternfad21bd2005-08-10 15:15:57 -04001750 unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001751}