• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*****************************************************************************/
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  *  This file implements the usbfs/x/y files, where
23  *  x is the bus number and y the device number.
24  *
25  *  It allows user space programs/"drivers" to communicate directly
26  *  with USB devices without intervening kernel driver.
27  *
28  *  Revision history
29  *    22.12.1999   0.1   Initial release (split from proc_usb.c)
30  *    04.01.2000   0.2   Turned into its own filesystem
31  *    30.09.2005   0.3   Fix user-triggerable oops in async URB delivery
32  *    			 (CAN-2005-3055)
33  */
34 
35 /*****************************************************************************/
36 
37 #include <linux/fs.h>
38 #include <linux/mm.h>
39 #include <linux/slab.h>
40 #include <linux/signal.h>
41 #include <linux/poll.h>
42 #include <linux/module.h>
43 #include <linux/string.h>
44 #include <linux/usb.h>
45 #include <linux/usbdevice_fs.h>
46 #include <linux/usb/hcd.h>	/* for usbcore internals */
47 #include <linux/cdev.h>
48 #include <linux/notifier.h>
49 #include <linux/security.h>
50 #include <linux/user_namespace.h>
51 #include <linux/scatterlist.h>
52 #include <linux/uaccess.h>
53 #include <asm/byteorder.h>
54 #include <linux/moduleparam.h>
55 
56 #include "usb.h"
57 
58 #define USB_MAXBUS			64
59 #define USB_DEVICE_MAX			(USB_MAXBUS * 128)
60 #define USB_SG_SIZE			16384 /* split-size for large txs */
61 
62 /* Mutual exclusion for removal, open, and release */
63 DEFINE_MUTEX(usbfs_mutex);
64 
65 struct usb_dev_state {
66 	struct list_head list;      /* state list */
67 	struct usb_device *dev;
68 	struct file *file;
69 	spinlock_t lock;            /* protects the async urb lists */
70 	struct list_head async_pending;
71 	struct list_head async_completed;
72 	wait_queue_head_t wait;     /* wake up if a request completed */
73 	unsigned int discsignr;
74 	struct pid *disc_pid;
75 	const struct cred *cred;
76 	void __user *disccontext;
77 	unsigned long ifclaimed;
78 	u32 secid;
79 	u32 disabled_bulk_eps;
80 };
81 
82 struct async {
83 	struct list_head asynclist;
84 	struct usb_dev_state *ps;
85 	struct pid *pid;
86 	const struct cred *cred;
87 	unsigned int signr;
88 	unsigned int ifnum;
89 	void __user *userbuffer;
90 	void __user *userurb;
91 	struct urb *urb;
92 	unsigned int mem_usage;
93 	int status;
94 	u32 secid;
95 	u8 bulk_addr;
96 	u8 bulk_status;
97 };
98 
99 static bool usbfs_snoop;
100 module_param(usbfs_snoop, bool, S_IRUGO | S_IWUSR);
101 MODULE_PARM_DESC(usbfs_snoop, "true to log all usbfs traffic");
102 
103 #define snoop(dev, format, arg...)				\
104 	do {							\
105 		if (usbfs_snoop)				\
106 			dev_info(dev , format , ## arg);	\
107 	} while (0)
108 
109 enum snoop_when {
110 	SUBMIT, COMPLETE
111 };
112 
113 #define USB_DEVICE_DEV		MKDEV(USB_DEVICE_MAJOR, 0)
114 
115 /* Limit on the total amount of memory we can allocate for transfers */
116 static u32 usbfs_memory_mb = 16;
117 module_param(usbfs_memory_mb, uint, 0644);
118 MODULE_PARM_DESC(usbfs_memory_mb,
119 		"maximum MB allowed for usbfs buffers (0 = no limit)");
120 
121 /* Hard limit, necessary to avoid arithmetic overflow */
122 #define USBFS_XFER_MAX         (UINT_MAX / 2 - 1000000)
123 
124 static atomic64_t usbfs_memory_usage;	/* Total memory currently allocated */
125 
126 /* Check whether it's okay to allocate more memory for a transfer */
usbfs_increase_memory_usage(u64 amount)127 static int usbfs_increase_memory_usage(u64 amount)
128 {
129 	u64 lim;
130 
131 	lim = ACCESS_ONCE(usbfs_memory_mb);
132 	lim <<= 20;
133 
134 	atomic64_add(amount, &usbfs_memory_usage);
135 
136 	if (lim > 0 && atomic64_read(&usbfs_memory_usage) > lim) {
137 		atomic64_sub(amount, &usbfs_memory_usage);
138 		return -ENOMEM;
139 	}
140 
141 	return 0;
142 }
143 
144 /* Memory for a transfer is being deallocated */
usbfs_decrease_memory_usage(u64 amount)145 static void usbfs_decrease_memory_usage(u64 amount)
146 {
147 	atomic64_sub(amount, &usbfs_memory_usage);
148 }
149 
connected(struct usb_dev_state * ps)150 static int connected(struct usb_dev_state *ps)
151 {
152 	return (!list_empty(&ps->list) &&
153 			ps->dev->state != USB_STATE_NOTATTACHED);
154 }
155 
usbdev_lseek(struct file * file,loff_t offset,int orig)156 static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig)
157 {
158 	loff_t ret;
159 
160 	mutex_lock(&file_inode(file)->i_mutex);
161 
162 	switch (orig) {
163 	case 0:
164 		file->f_pos = offset;
165 		ret = file->f_pos;
166 		break;
167 	case 1:
168 		file->f_pos += offset;
169 		ret = file->f_pos;
170 		break;
171 	case 2:
172 	default:
173 		ret = -EINVAL;
174 	}
175 
176 	mutex_unlock(&file_inode(file)->i_mutex);
177 	return ret;
178 }
179 
usbdev_read(struct file * file,char __user * buf,size_t nbytes,loff_t * ppos)180 static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
181 			   loff_t *ppos)
182 {
183 	struct usb_dev_state *ps = file->private_data;
184 	struct usb_device *dev = ps->dev;
185 	ssize_t ret = 0;
186 	unsigned len;
187 	loff_t pos;
188 	int i;
189 
190 	pos = *ppos;
191 	usb_lock_device(dev);
192 	if (!connected(ps)) {
193 		ret = -ENODEV;
194 		goto err;
195 	} else if (pos < 0) {
196 		ret = -EINVAL;
197 		goto err;
198 	}
199 
200 	if (pos < sizeof(struct usb_device_descriptor)) {
201 		/* 18 bytes - fits on the stack */
202 		struct usb_device_descriptor temp_desc;
203 
204 		memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
205 		le16_to_cpus(&temp_desc.bcdUSB);
206 		le16_to_cpus(&temp_desc.idVendor);
207 		le16_to_cpus(&temp_desc.idProduct);
208 		le16_to_cpus(&temp_desc.bcdDevice);
209 
210 		len = sizeof(struct usb_device_descriptor) - pos;
211 		if (len > nbytes)
212 			len = nbytes;
213 		if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
214 			ret = -EFAULT;
215 			goto err;
216 		}
217 
218 		*ppos += len;
219 		buf += len;
220 		nbytes -= len;
221 		ret += len;
222 	}
223 
224 	pos = sizeof(struct usb_device_descriptor);
225 	for (i = 0; nbytes && i < dev->descriptor.bNumConfigurations; i++) {
226 		struct usb_config_descriptor *config =
227 			(struct usb_config_descriptor *)dev->rawdescriptors[i];
228 		unsigned int length = le16_to_cpu(config->wTotalLength);
229 
230 		if (*ppos < pos + length) {
231 
232 			/* The descriptor may claim to be longer than it
233 			 * really is.  Here is the actual allocated length. */
234 			unsigned alloclen =
235 				le16_to_cpu(dev->config[i].desc.wTotalLength);
236 
237 			len = length - (*ppos - pos);
238 			if (len > nbytes)
239 				len = nbytes;
240 
241 			/* Simply don't write (skip over) unallocated parts */
242 			if (alloclen > (*ppos - pos)) {
243 				alloclen -= (*ppos - pos);
244 				if (copy_to_user(buf,
245 				    dev->rawdescriptors[i] + (*ppos - pos),
246 				    min(len, alloclen))) {
247 					ret = -EFAULT;
248 					goto err;
249 				}
250 			}
251 
252 			*ppos += len;
253 			buf += len;
254 			nbytes -= len;
255 			ret += len;
256 		}
257 
258 		pos += length;
259 	}
260 
261 err:
262 	usb_unlock_device(dev);
263 	return ret;
264 }
265 
266 /*
267  * async list handling
268  */
269 
alloc_async(unsigned int numisoframes)270 static struct async *alloc_async(unsigned int numisoframes)
271 {
272 	struct async *as;
273 
274 	as = kzalloc(sizeof(struct async), GFP_KERNEL);
275 	if (!as)
276 		return NULL;
277 	as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
278 	if (!as->urb) {
279 		kfree(as);
280 		return NULL;
281 	}
282 	return as;
283 }
284 
free_async(struct async * as)285 static void free_async(struct async *as)
286 {
287 	int i;
288 
289 	put_pid(as->pid);
290 	if (as->cred)
291 		put_cred(as->cred);
292 	for (i = 0; i < as->urb->num_sgs; i++) {
293 		if (sg_page(&as->urb->sg[i]))
294 			kfree(sg_virt(&as->urb->sg[i]));
295 	}
296 	kfree(as->urb->sg);
297 	kfree(as->urb->transfer_buffer);
298 	kfree(as->urb->setup_packet);
299 	usb_free_urb(as->urb);
300 	usbfs_decrease_memory_usage(as->mem_usage);
301 	kfree(as);
302 }
303 
async_newpending(struct async * as)304 static void async_newpending(struct async *as)
305 {
306 	struct usb_dev_state *ps = as->ps;
307 	unsigned long flags;
308 
309 	spin_lock_irqsave(&ps->lock, flags);
310 	list_add_tail(&as->asynclist, &ps->async_pending);
311 	spin_unlock_irqrestore(&ps->lock, flags);
312 }
313 
async_removepending(struct async * as)314 static void async_removepending(struct async *as)
315 {
316 	struct usb_dev_state *ps = as->ps;
317 	unsigned long flags;
318 
319 	spin_lock_irqsave(&ps->lock, flags);
320 	list_del_init(&as->asynclist);
321 	spin_unlock_irqrestore(&ps->lock, flags);
322 }
323 
async_getcompleted(struct usb_dev_state * ps)324 static struct async *async_getcompleted(struct usb_dev_state *ps)
325 {
326 	unsigned long flags;
327 	struct async *as = NULL;
328 
329 	spin_lock_irqsave(&ps->lock, flags);
330 	if (!list_empty(&ps->async_completed)) {
331 		as = list_entry(ps->async_completed.next, struct async,
332 				asynclist);
333 		list_del_init(&as->asynclist);
334 	}
335 	spin_unlock_irqrestore(&ps->lock, flags);
336 	return as;
337 }
338 
async_getpending(struct usb_dev_state * ps,void __user * userurb)339 static struct async *async_getpending(struct usb_dev_state *ps,
340 					     void __user *userurb)
341 {
342 	struct async *as;
343 
344 	list_for_each_entry(as, &ps->async_pending, asynclist)
345 		if (as->userurb == userurb) {
346 			list_del_init(&as->asynclist);
347 			return as;
348 		}
349 
350 	return NULL;
351 }
352 
snoop_urb(struct usb_device * udev,void __user * userurb,int pipe,unsigned length,int timeout_or_status,enum snoop_when when,unsigned char * data,unsigned data_len)353 static void snoop_urb(struct usb_device *udev,
354 		void __user *userurb, int pipe, unsigned length,
355 		int timeout_or_status, enum snoop_when when,
356 		unsigned char *data, unsigned data_len)
357 {
358 	static const char *types[] = {"isoc", "int", "ctrl", "bulk"};
359 	static const char *dirs[] = {"out", "in"};
360 	int ep;
361 	const char *t, *d;
362 
363 	if (!usbfs_snoop)
364 		return;
365 
366 	ep = usb_pipeendpoint(pipe);
367 	t = types[usb_pipetype(pipe)];
368 	d = dirs[!!usb_pipein(pipe)];
369 
370 	if (userurb) {		/* Async */
371 		if (when == SUBMIT)
372 			dev_info(&udev->dev, "userurb %pK, ep%d %s-%s, "
373 					"length %u\n",
374 					userurb, ep, t, d, length);
375 		else
376 			dev_info(&udev->dev, "userurb %pK, ep%d %s-%s, "
377 					"actual_length %u status %d\n",
378 					userurb, ep, t, d, length,
379 					timeout_or_status);
380 	} else {
381 		if (when == SUBMIT)
382 			dev_info(&udev->dev, "ep%d %s-%s, length %u, "
383 					"timeout %d\n",
384 					ep, t, d, length, timeout_or_status);
385 		else
386 			dev_info(&udev->dev, "ep%d %s-%s, actual_length %u, "
387 					"status %d\n",
388 					ep, t, d, length, timeout_or_status);
389 	}
390 
391 	if (data && data_len > 0) {
392 		print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
393 			data, data_len, 1);
394 	}
395 }
396 
snoop_urb_data(struct urb * urb,unsigned len)397 static void snoop_urb_data(struct urb *urb, unsigned len)
398 {
399 	int i, size;
400 
401 	if (!usbfs_snoop)
402 		return;
403 
404 	if (urb->num_sgs == 0) {
405 		print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
406 			urb->transfer_buffer, len, 1);
407 		return;
408 	}
409 
410 	for (i = 0; i < urb->num_sgs && len; i++) {
411 		size = (len > USB_SG_SIZE) ? USB_SG_SIZE : len;
412 		print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
413 			sg_virt(&urb->sg[i]), size, 1);
414 		len -= size;
415 	}
416 }
417 
copy_urb_data_to_user(u8 __user * userbuffer,struct urb * urb)418 static int copy_urb_data_to_user(u8 __user *userbuffer, struct urb *urb)
419 {
420 	unsigned i, len, size;
421 
422 	if (urb->number_of_packets > 0)		/* Isochronous */
423 		len = urb->transfer_buffer_length;
424 	else					/* Non-Isoc */
425 		len = urb->actual_length;
426 
427 	if (urb->num_sgs == 0) {
428 		if (copy_to_user(userbuffer, urb->transfer_buffer, len))
429 			return -EFAULT;
430 		return 0;
431 	}
432 
433 	for (i = 0; i < urb->num_sgs && len; i++) {
434 		size = (len > USB_SG_SIZE) ? USB_SG_SIZE : len;
435 		if (copy_to_user(userbuffer, sg_virt(&urb->sg[i]), size))
436 			return -EFAULT;
437 		userbuffer += size;
438 		len -= size;
439 	}
440 
441 	return 0;
442 }
443 
444 #define AS_CONTINUATION	1
445 #define AS_UNLINK	2
446 
cancel_bulk_urbs(struct usb_dev_state * ps,unsigned bulk_addr)447 static void cancel_bulk_urbs(struct usb_dev_state *ps, unsigned bulk_addr)
448 __releases(ps->lock)
449 __acquires(ps->lock)
450 {
451 	struct urb *urb;
452 	struct async *as;
453 
454 	/* Mark all the pending URBs that match bulk_addr, up to but not
455 	 * including the first one without AS_CONTINUATION.  If such an
456 	 * URB is encountered then a new transfer has already started so
457 	 * the endpoint doesn't need to be disabled; otherwise it does.
458 	 */
459 	list_for_each_entry(as, &ps->async_pending, asynclist) {
460 		if (as->bulk_addr == bulk_addr) {
461 			if (as->bulk_status != AS_CONTINUATION)
462 				goto rescan;
463 			as->bulk_status = AS_UNLINK;
464 			as->bulk_addr = 0;
465 		}
466 	}
467 	ps->disabled_bulk_eps |= (1 << bulk_addr);
468 
469 	/* Now carefully unlink all the marked pending URBs */
470  rescan:
471 	list_for_each_entry(as, &ps->async_pending, asynclist) {
472 		if (as->bulk_status == AS_UNLINK) {
473 			as->bulk_status = 0;		/* Only once */
474 			urb = as->urb;
475 			usb_get_urb(urb);
476 			spin_unlock(&ps->lock);		/* Allow completions */
477 			usb_unlink_urb(urb);
478 			usb_put_urb(urb);
479 			spin_lock(&ps->lock);
480 			goto rescan;
481 		}
482 	}
483 }
484 
async_completed(struct urb * urb)485 static void async_completed(struct urb *urb)
486 {
487 	struct async *as = urb->context;
488 	struct usb_dev_state *ps = as->ps;
489 	struct siginfo sinfo;
490 	struct pid *pid = NULL;
491 	u32 secid = 0;
492 	const struct cred *cred = NULL;
493 	int signr;
494 
495 	spin_lock(&ps->lock);
496 	list_move_tail(&as->asynclist, &ps->async_completed);
497 	as->status = urb->status;
498 	signr = as->signr;
499 	if (signr) {
500 		memset(&sinfo, 0, sizeof(sinfo));
501 		sinfo.si_signo = as->signr;
502 		sinfo.si_errno = as->status;
503 		sinfo.si_code = SI_ASYNCIO;
504 		sinfo.si_addr = as->userurb;
505 		pid = get_pid(as->pid);
506 		cred = get_cred(as->cred);
507 		secid = as->secid;
508 	}
509 	snoop(&urb->dev->dev, "urb complete\n");
510 	snoop_urb(urb->dev, as->userurb, urb->pipe, urb->actual_length,
511 			as->status, COMPLETE, NULL, 0);
512 	if ((urb->transfer_flags & URB_DIR_MASK) == URB_DIR_IN)
513 		snoop_urb_data(urb, urb->actual_length);
514 
515 	if (as->status < 0 && as->bulk_addr && as->status != -ECONNRESET &&
516 			as->status != -ENOENT)
517 		cancel_bulk_urbs(ps, as->bulk_addr);
518 
519 	wake_up(&ps->wait);
520 	spin_unlock(&ps->lock);
521 
522 	if (signr) {
523 		kill_pid_info_as_cred(sinfo.si_signo, &sinfo, pid, cred, secid);
524 		put_pid(pid);
525 		put_cred(cred);
526 	}
527 }
528 
destroy_async(struct usb_dev_state * ps,struct list_head * list)529 static void destroy_async(struct usb_dev_state *ps, struct list_head *list)
530 {
531 	struct urb *urb;
532 	struct async *as;
533 	unsigned long flags;
534 
535 	spin_lock_irqsave(&ps->lock, flags);
536 	while (!list_empty(list)) {
537 		as = list_entry(list->next, struct async, asynclist);
538 		list_del_init(&as->asynclist);
539 		urb = as->urb;
540 		usb_get_urb(urb);
541 
542 		/* drop the spinlock so the completion handler can run */
543 		spin_unlock_irqrestore(&ps->lock, flags);
544 		usb_kill_urb(urb);
545 		usb_put_urb(urb);
546 		spin_lock_irqsave(&ps->lock, flags);
547 	}
548 	spin_unlock_irqrestore(&ps->lock, flags);
549 }
550 
destroy_async_on_interface(struct usb_dev_state * ps,unsigned int ifnum)551 static void destroy_async_on_interface(struct usb_dev_state *ps,
552 				       unsigned int ifnum)
553 {
554 	struct list_head *p, *q, hitlist;
555 	unsigned long flags;
556 
557 	INIT_LIST_HEAD(&hitlist);
558 	spin_lock_irqsave(&ps->lock, flags);
559 	list_for_each_safe(p, q, &ps->async_pending)
560 		if (ifnum == list_entry(p, struct async, asynclist)->ifnum)
561 			list_move_tail(p, &hitlist);
562 	spin_unlock_irqrestore(&ps->lock, flags);
563 	destroy_async(ps, &hitlist);
564 }
565 
destroy_all_async(struct usb_dev_state * ps)566 static void destroy_all_async(struct usb_dev_state *ps)
567 {
568 	destroy_async(ps, &ps->async_pending);
569 }
570 
571 /*
572  * interface claims are made only at the request of user level code,
573  * which can also release them (explicitly or by closing files).
574  * they're also undone when devices disconnect.
575  */
576 
driver_probe(struct usb_interface * intf,const struct usb_device_id * id)577 static int driver_probe(struct usb_interface *intf,
578 			const struct usb_device_id *id)
579 {
580 	return -ENODEV;
581 }
582 
driver_disconnect(struct usb_interface * intf)583 static void driver_disconnect(struct usb_interface *intf)
584 {
585 	struct usb_dev_state *ps = usb_get_intfdata(intf);
586 	unsigned int ifnum = intf->altsetting->desc.bInterfaceNumber;
587 
588 	if (!ps)
589 		return;
590 
591 	/* NOTE:  this relies on usbcore having canceled and completed
592 	 * all pending I/O requests; 2.6 does that.
593 	 */
594 
595 	if (likely(ifnum < 8*sizeof(ps->ifclaimed)))
596 		clear_bit(ifnum, &ps->ifclaimed);
597 	else
598 		dev_warn(&intf->dev, "interface number %u out of range\n",
599 			 ifnum);
600 
601 	usb_set_intfdata(intf, NULL);
602 
603 	/* force async requests to complete */
604 	destroy_async_on_interface(ps, ifnum);
605 }
606 
607 /* The following routines are merely placeholders.  There is no way
608  * to inform a user task about suspend or resumes.
609  */
driver_suspend(struct usb_interface * intf,pm_message_t msg)610 static int driver_suspend(struct usb_interface *intf, pm_message_t msg)
611 {
612 	return 0;
613 }
614 
driver_resume(struct usb_interface * intf)615 static int driver_resume(struct usb_interface *intf)
616 {
617 	return 0;
618 }
619 
620 struct usb_driver usbfs_driver = {
621 	.name =		"usbfs",
622 	.probe =	driver_probe,
623 	.disconnect =	driver_disconnect,
624 	.suspend =	driver_suspend,
625 	.resume =	driver_resume,
626 };
627 
claimintf(struct usb_dev_state * ps,unsigned int ifnum)628 static int claimintf(struct usb_dev_state *ps, unsigned int ifnum)
629 {
630 	struct usb_device *dev = ps->dev;
631 	struct usb_interface *intf;
632 	int err;
633 
634 	if (ifnum >= 8*sizeof(ps->ifclaimed))
635 		return -EINVAL;
636 	/* already claimed */
637 	if (test_bit(ifnum, &ps->ifclaimed))
638 		return 0;
639 
640 	intf = usb_ifnum_to_if(dev, ifnum);
641 	if (!intf)
642 		err = -ENOENT;
643 	else
644 		err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
645 	if (err == 0)
646 		set_bit(ifnum, &ps->ifclaimed);
647 	return err;
648 }
649 
releaseintf(struct usb_dev_state * ps,unsigned int ifnum)650 static int releaseintf(struct usb_dev_state *ps, unsigned int ifnum)
651 {
652 	struct usb_device *dev;
653 	struct usb_interface *intf;
654 	int err;
655 
656 	err = -EINVAL;
657 	if (ifnum >= 8*sizeof(ps->ifclaimed))
658 		return err;
659 	dev = ps->dev;
660 	intf = usb_ifnum_to_if(dev, ifnum);
661 	if (!intf)
662 		err = -ENOENT;
663 	else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
664 		usb_driver_release_interface(&usbfs_driver, intf);
665 		err = 0;
666 	}
667 	return err;
668 }
669 
checkintf(struct usb_dev_state * ps,unsigned int ifnum)670 static int checkintf(struct usb_dev_state *ps, unsigned int ifnum)
671 {
672 	if (ps->dev->state != USB_STATE_CONFIGURED)
673 		return -EHOSTUNREACH;
674 	if (ifnum >= 8*sizeof(ps->ifclaimed))
675 		return -EINVAL;
676 	if (test_bit(ifnum, &ps->ifclaimed))
677 		return 0;
678 	/* if not yet claimed, claim it for the driver */
679 	dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
680 		 "interface %u before use\n", task_pid_nr(current),
681 		 current->comm, ifnum);
682 	return claimintf(ps, ifnum);
683 }
684 
findintfep(struct usb_device * dev,unsigned int ep)685 static int findintfep(struct usb_device *dev, unsigned int ep)
686 {
687 	unsigned int i, j, e;
688 	struct usb_interface *intf;
689 	struct usb_host_interface *alts;
690 	struct usb_endpoint_descriptor *endpt;
691 
692 	if (ep & ~(USB_DIR_IN|0xf))
693 		return -EINVAL;
694 	if (!dev->actconfig)
695 		return -ESRCH;
696 	for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
697 		intf = dev->actconfig->interface[i];
698 		for (j = 0; j < intf->num_altsetting; j++) {
699 			alts = &intf->altsetting[j];
700 			for (e = 0; e < alts->desc.bNumEndpoints; e++) {
701 				endpt = &alts->endpoint[e].desc;
702 				if (endpt->bEndpointAddress == ep)
703 					return alts->desc.bInterfaceNumber;
704 			}
705 		}
706 	}
707 	return -ENOENT;
708 }
709 
check_ctrlrecip(struct usb_dev_state * ps,unsigned int requesttype,unsigned int request,unsigned int index)710 static int check_ctrlrecip(struct usb_dev_state *ps, unsigned int requesttype,
711 			   unsigned int request, unsigned int index)
712 {
713 	int ret = 0;
714 	struct usb_host_interface *alt_setting;
715 
716 	if (ps->dev->state != USB_STATE_UNAUTHENTICATED
717 	 && ps->dev->state != USB_STATE_ADDRESS
718 	 && ps->dev->state != USB_STATE_CONFIGURED)
719 		return -EHOSTUNREACH;
720 	if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
721 		return 0;
722 
723 	/*
724 	 * check for the special corner case 'get_device_id' in the printer
725 	 * class specification, which we always want to allow as it is used
726 	 * to query things like ink level, etc.
727 	 */
728 	if (requesttype == 0xa1 && request == 0) {
729 		alt_setting = usb_find_alt_setting(ps->dev->actconfig,
730 						   index >> 8, index & 0xff);
731 		if (alt_setting
732 		 && alt_setting->desc.bInterfaceClass == USB_CLASS_PRINTER)
733 			return 0;
734 	}
735 
736 	index &= 0xff;
737 	switch (requesttype & USB_RECIP_MASK) {
738 	case USB_RECIP_ENDPOINT:
739 		if ((index & ~USB_DIR_IN) == 0)
740 			return 0;
741 		ret = findintfep(ps->dev, index);
742 		if (ret < 0) {
743 			/*
744 			 * Some not fully compliant Win apps seem to get
745 			 * index wrong and have the endpoint number here
746 			 * rather than the endpoint address (with the
747 			 * correct direction). Win does let this through,
748 			 * so we'll not reject it here but leave it to
749 			 * the device to not break KVM. But we warn.
750 			 */
751 			ret = findintfep(ps->dev, index ^ 0x80);
752 			if (ret >= 0)
753 				dev_info(&ps->dev->dev,
754 					"%s: process %i (%s) requesting ep %02x but needs %02x\n",
755 					__func__, task_pid_nr(current),
756 					current->comm, index, index ^ 0x80);
757 		}
758 		if (ret >= 0)
759 			ret = checkintf(ps, ret);
760 		break;
761 
762 	case USB_RECIP_INTERFACE:
763 		ret = checkintf(ps, index);
764 		break;
765 	}
766 	return ret;
767 }
768 
ep_to_host_endpoint(struct usb_device * dev,unsigned char ep)769 static struct usb_host_endpoint *ep_to_host_endpoint(struct usb_device *dev,
770 						     unsigned char ep)
771 {
772 	if (ep & USB_ENDPOINT_DIR_MASK)
773 		return dev->ep_in[ep & USB_ENDPOINT_NUMBER_MASK];
774 	else
775 		return dev->ep_out[ep & USB_ENDPOINT_NUMBER_MASK];
776 }
777 
parse_usbdevfs_streams(struct usb_dev_state * ps,struct usbdevfs_streams __user * streams,unsigned int * num_streams_ret,unsigned int * num_eps_ret,struct usb_host_endpoint *** eps_ret,struct usb_interface ** intf_ret)778 static int parse_usbdevfs_streams(struct usb_dev_state *ps,
779 				  struct usbdevfs_streams __user *streams,
780 				  unsigned int *num_streams_ret,
781 				  unsigned int *num_eps_ret,
782 				  struct usb_host_endpoint ***eps_ret,
783 				  struct usb_interface **intf_ret)
784 {
785 	unsigned int i, num_streams, num_eps;
786 	struct usb_host_endpoint **eps;
787 	struct usb_interface *intf = NULL;
788 	unsigned char ep;
789 	int ifnum, ret;
790 
791 	if (get_user(num_streams, &streams->num_streams) ||
792 	    get_user(num_eps, &streams->num_eps))
793 		return -EFAULT;
794 
795 	if (num_eps < 1 || num_eps > USB_MAXENDPOINTS)
796 		return -EINVAL;
797 
798 	/* The XHCI controller allows max 2 ^ 16 streams */
799 	if (num_streams_ret && (num_streams < 2 || num_streams > 65536))
800 		return -EINVAL;
801 
802 	eps = kmalloc(num_eps * sizeof(*eps), GFP_KERNEL);
803 	if (!eps)
804 		return -ENOMEM;
805 
806 	for (i = 0; i < num_eps; i++) {
807 		if (get_user(ep, &streams->eps[i])) {
808 			ret = -EFAULT;
809 			goto error;
810 		}
811 		eps[i] = ep_to_host_endpoint(ps->dev, ep);
812 		if (!eps[i]) {
813 			ret = -EINVAL;
814 			goto error;
815 		}
816 
817 		/* usb_alloc/free_streams operate on an usb_interface */
818 		ifnum = findintfep(ps->dev, ep);
819 		if (ifnum < 0) {
820 			ret = ifnum;
821 			goto error;
822 		}
823 
824 		if (i == 0) {
825 			ret = checkintf(ps, ifnum);
826 			if (ret < 0)
827 				goto error;
828 			intf = usb_ifnum_to_if(ps->dev, ifnum);
829 		} else {
830 			/* Verify all eps belong to the same interface */
831 			if (ifnum != intf->altsetting->desc.bInterfaceNumber) {
832 				ret = -EINVAL;
833 				goto error;
834 			}
835 		}
836 	}
837 
838 	if (num_streams_ret)
839 		*num_streams_ret = num_streams;
840 	*num_eps_ret = num_eps;
841 	*eps_ret = eps;
842 	*intf_ret = intf;
843 
844 	return 0;
845 
846 error:
847 	kfree(eps);
848 	return ret;
849 }
850 
match_devt(struct device * dev,void * data)851 static int match_devt(struct device *dev, void *data)
852 {
853 	return dev->devt == (dev_t) (unsigned long) data;
854 }
855 
usbdev_lookup_by_devt(dev_t devt)856 static struct usb_device *usbdev_lookup_by_devt(dev_t devt)
857 {
858 	struct device *dev;
859 
860 	dev = bus_find_device(&usb_bus_type, NULL,
861 			      (void *) (unsigned long) devt, match_devt);
862 	if (!dev)
863 		return NULL;
864 	return container_of(dev, struct usb_device, dev);
865 }
866 
867 /*
868  * file operations
869  */
usbdev_open(struct inode * inode,struct file * file)870 static int usbdev_open(struct inode *inode, struct file *file)
871 {
872 	struct usb_device *dev = NULL;
873 	struct usb_dev_state *ps;
874 	int ret;
875 
876 	ret = -ENOMEM;
877 	ps = kmalloc(sizeof(struct usb_dev_state), GFP_KERNEL);
878 	if (!ps)
879 		goto out_free_ps;
880 
881 	ret = -ENODEV;
882 
883 	/* Protect against simultaneous removal or release */
884 	mutex_lock(&usbfs_mutex);
885 
886 	/* usbdev device-node */
887 	if (imajor(inode) == USB_DEVICE_MAJOR)
888 		dev = usbdev_lookup_by_devt(inode->i_rdev);
889 
890 	mutex_unlock(&usbfs_mutex);
891 
892 	if (!dev)
893 		goto out_free_ps;
894 
895 	usb_lock_device(dev);
896 	if (dev->state == USB_STATE_NOTATTACHED)
897 		goto out_unlock_device;
898 
899 	ret = usb_autoresume_device(dev);
900 	if (ret)
901 		goto out_unlock_device;
902 
903 	ps->dev = dev;
904 	ps->file = file;
905 	spin_lock_init(&ps->lock);
906 	INIT_LIST_HEAD(&ps->list);
907 	INIT_LIST_HEAD(&ps->async_pending);
908 	INIT_LIST_HEAD(&ps->async_completed);
909 	init_waitqueue_head(&ps->wait);
910 	ps->discsignr = 0;
911 	ps->disc_pid = get_pid(task_pid(current));
912 	ps->cred = get_current_cred();
913 	ps->disccontext = NULL;
914 	ps->ifclaimed = 0;
915 	security_task_getsecid(current, &ps->secid);
916 	smp_wmb();
917 	list_add_tail(&ps->list, &dev->filelist);
918 	file->private_data = ps;
919 	usb_unlock_device(dev);
920 	snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
921 			current->comm);
922 	return ret;
923 
924  out_unlock_device:
925 	usb_unlock_device(dev);
926 	usb_put_dev(dev);
927  out_free_ps:
928 	kfree(ps);
929 	return ret;
930 }
931 
usbdev_release(struct inode * inode,struct file * file)932 static int usbdev_release(struct inode *inode, struct file *file)
933 {
934 	struct usb_dev_state *ps = file->private_data;
935 	struct usb_device *dev = ps->dev;
936 	unsigned int ifnum;
937 	struct async *as;
938 
939 	usb_lock_device(dev);
940 	usb_hub_release_all_ports(dev, ps);
941 
942 	list_del_init(&ps->list);
943 
944 	for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
945 			ifnum++) {
946 		if (test_bit(ifnum, &ps->ifclaimed))
947 			releaseintf(ps, ifnum);
948 	}
949 	destroy_all_async(ps);
950 	usb_autosuspend_device(dev);
951 	usb_unlock_device(dev);
952 	usb_put_dev(dev);
953 	put_pid(ps->disc_pid);
954 	put_cred(ps->cred);
955 
956 	as = async_getcompleted(ps);
957 	while (as) {
958 		free_async(as);
959 		as = async_getcompleted(ps);
960 	}
961 	kfree(ps);
962 	return 0;
963 }
964 
proc_control(struct usb_dev_state * ps,void __user * arg)965 static int proc_control(struct usb_dev_state *ps, void __user *arg)
966 {
967 	struct usb_device *dev = ps->dev;
968 	struct usbdevfs_ctrltransfer ctrl;
969 	unsigned int tmo;
970 	unsigned char *tbuf;
971 	unsigned wLength;
972 	int i, pipe, ret;
973 
974 	if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
975 		return -EFAULT;
976 	ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.bRequest,
977 			      ctrl.wIndex);
978 	if (ret)
979 		return ret;
980 	wLength = ctrl.wLength;		/* To suppress 64k PAGE_SIZE warning */
981 	if (wLength > PAGE_SIZE)
982 		return -EINVAL;
983 	ret = usbfs_increase_memory_usage(PAGE_SIZE + sizeof(struct urb) +
984 			sizeof(struct usb_ctrlrequest));
985 	if (ret)
986 		return ret;
987 	tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
988 	if (!tbuf) {
989 		ret = -ENOMEM;
990 		goto done;
991 	}
992 	tmo = ctrl.timeout;
993 	snoop(&dev->dev, "control urb: bRequestType=%02x "
994 		"bRequest=%02x wValue=%04x "
995 		"wIndex=%04x wLength=%04x\n",
996 		ctrl.bRequestType, ctrl.bRequest, ctrl.wValue,
997 		ctrl.wIndex, ctrl.wLength);
998 	if (ctrl.bRequestType & 0x80) {
999 		if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
1000 					       ctrl.wLength)) {
1001 			ret = -EINVAL;
1002 			goto done;
1003 		}
1004 		pipe = usb_rcvctrlpipe(dev, 0);
1005 		snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT, NULL, 0);
1006 
1007 		usb_unlock_device(dev);
1008 		i = usb_control_msg(dev, pipe, ctrl.bRequest,
1009 				    ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
1010 				    tbuf, ctrl.wLength, tmo);
1011 		usb_lock_device(dev);
1012 		snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE,
1013 			  tbuf, max(i, 0));
1014 		if ((i > 0) && ctrl.wLength) {
1015 			if (copy_to_user(ctrl.data, tbuf, i)) {
1016 				ret = -EFAULT;
1017 				goto done;
1018 			}
1019 		}
1020 	} else {
1021 		if (ctrl.wLength) {
1022 			if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
1023 				ret = -EFAULT;
1024 				goto done;
1025 			}
1026 		}
1027 		pipe = usb_sndctrlpipe(dev, 0);
1028 		snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT,
1029 			tbuf, ctrl.wLength);
1030 
1031 		usb_unlock_device(dev);
1032 		i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
1033 				    ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
1034 				    tbuf, ctrl.wLength, tmo);
1035 		usb_lock_device(dev);
1036 		snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE, NULL, 0);
1037 	}
1038 	if (i < 0 && i != -EPIPE) {
1039 		dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
1040 			   "failed cmd %s rqt %u rq %u len %u ret %d\n",
1041 			   current->comm, ctrl.bRequestType, ctrl.bRequest,
1042 			   ctrl.wLength, i);
1043 	}
1044 	ret = i;
1045  done:
1046 	free_page((unsigned long) tbuf);
1047 	usbfs_decrease_memory_usage(PAGE_SIZE + sizeof(struct urb) +
1048 			sizeof(struct usb_ctrlrequest));
1049 	return ret;
1050 }
1051 
proc_bulk(struct usb_dev_state * ps,void __user * arg)1052 static int proc_bulk(struct usb_dev_state *ps, void __user *arg)
1053 {
1054 	struct usb_device *dev = ps->dev;
1055 	struct usbdevfs_bulktransfer bulk;
1056 	unsigned int tmo, len1, pipe;
1057 	int len2;
1058 	unsigned char *tbuf;
1059 	int i, ret;
1060 
1061 	if (copy_from_user(&bulk, arg, sizeof(bulk)))
1062 		return -EFAULT;
1063 	ret = findintfep(ps->dev, bulk.ep);
1064 	if (ret < 0)
1065 		return ret;
1066 	ret = checkintf(ps, ret);
1067 	if (ret)
1068 		return ret;
1069 	if (bulk.ep & USB_DIR_IN)
1070 		pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
1071 	else
1072 		pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
1073 	if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
1074 		return -EINVAL;
1075 	len1 = bulk.len;
1076 	if (len1 >= (INT_MAX - sizeof(struct urb)))
1077 		return -EINVAL;
1078 	ret = usbfs_increase_memory_usage(len1 + sizeof(struct urb));
1079 	if (ret)
1080 		return ret;
1081 	if (!(tbuf = kmalloc(len1, GFP_KERNEL))) {
1082 		ret = -ENOMEM;
1083 		goto done;
1084 	}
1085 	tmo = bulk.timeout;
1086 	if (bulk.ep & 0x80) {
1087 		if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
1088 			ret = -EINVAL;
1089 			goto done;
1090 		}
1091 		snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, NULL, 0);
1092 
1093 		usb_unlock_device(dev);
1094 		i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
1095 		usb_lock_device(dev);
1096 		snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, tbuf, len2);
1097 
1098 		if (!i && len2) {
1099 			if (copy_to_user(bulk.data, tbuf, len2)) {
1100 				ret = -EFAULT;
1101 				goto done;
1102 			}
1103 		}
1104 	} else {
1105 		if (len1) {
1106 			if (copy_from_user(tbuf, bulk.data, len1)) {
1107 				ret = -EFAULT;
1108 				goto done;
1109 			}
1110 		}
1111 		snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, tbuf, len1);
1112 
1113 		usb_unlock_device(dev);
1114 		i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
1115 		usb_lock_device(dev);
1116 		snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, NULL, 0);
1117 	}
1118 	ret = (i < 0 ? i : len2);
1119  done:
1120 	kfree(tbuf);
1121 	usbfs_decrease_memory_usage(len1 + sizeof(struct urb));
1122 	return ret;
1123 }
1124 
check_reset_of_active_ep(struct usb_device * udev,unsigned int epnum,char * ioctl_name)1125 static void check_reset_of_active_ep(struct usb_device *udev,
1126 		unsigned int epnum, char *ioctl_name)
1127 {
1128 	struct usb_host_endpoint **eps;
1129 	struct usb_host_endpoint *ep;
1130 
1131 	eps = (epnum & USB_DIR_IN) ? udev->ep_in : udev->ep_out;
1132 	ep = eps[epnum & 0x0f];
1133 	if (ep && !list_empty(&ep->urb_list))
1134 		dev_warn(&udev->dev, "Process %d (%s) called USBDEVFS_%s for active endpoint 0x%02x\n",
1135 				task_pid_nr(current), current->comm,
1136 				ioctl_name, epnum);
1137 }
1138 
proc_resetep(struct usb_dev_state * ps,void __user * arg)1139 static int proc_resetep(struct usb_dev_state *ps, void __user *arg)
1140 {
1141 	unsigned int ep;
1142 	int ret;
1143 
1144 	if (get_user(ep, (unsigned int __user *)arg))
1145 		return -EFAULT;
1146 	ret = findintfep(ps->dev, ep);
1147 	if (ret < 0)
1148 		return ret;
1149 	ret = checkintf(ps, ret);
1150 	if (ret)
1151 		return ret;
1152 	check_reset_of_active_ep(ps->dev, ep, "RESETEP");
1153 	usb_reset_endpoint(ps->dev, ep);
1154 	return 0;
1155 }
1156 
proc_clearhalt(struct usb_dev_state * ps,void __user * arg)1157 static int proc_clearhalt(struct usb_dev_state *ps, void __user *arg)
1158 {
1159 	unsigned int ep;
1160 	int pipe;
1161 	int ret;
1162 
1163 	if (get_user(ep, (unsigned int __user *)arg))
1164 		return -EFAULT;
1165 	ret = findintfep(ps->dev, ep);
1166 	if (ret < 0)
1167 		return ret;
1168 	ret = checkintf(ps, ret);
1169 	if (ret)
1170 		return ret;
1171 	check_reset_of_active_ep(ps->dev, ep, "CLEAR_HALT");
1172 	if (ep & USB_DIR_IN)
1173 		pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
1174 	else
1175 		pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
1176 
1177 	return usb_clear_halt(ps->dev, pipe);
1178 }
1179 
proc_getdriver(struct usb_dev_state * ps,void __user * arg)1180 static int proc_getdriver(struct usb_dev_state *ps, void __user *arg)
1181 {
1182 	struct usbdevfs_getdriver gd;
1183 	struct usb_interface *intf;
1184 	int ret;
1185 
1186 	if (copy_from_user(&gd, arg, sizeof(gd)))
1187 		return -EFAULT;
1188 	intf = usb_ifnum_to_if(ps->dev, gd.interface);
1189 	if (!intf || !intf->dev.driver)
1190 		ret = -ENODATA;
1191 	else {
1192 		strlcpy(gd.driver, intf->dev.driver->name,
1193 				sizeof(gd.driver));
1194 		ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
1195 	}
1196 	return ret;
1197 }
1198 
proc_connectinfo(struct usb_dev_state * ps,void __user * arg)1199 static int proc_connectinfo(struct usb_dev_state *ps, void __user *arg)
1200 {
1201 	struct usbdevfs_connectinfo ci;
1202 
1203 	memset(&ci, 0, sizeof(ci));
1204 	ci.devnum = ps->dev->devnum;
1205 	ci.slow = ps->dev->speed == USB_SPEED_LOW;
1206 
1207 	if (copy_to_user(arg, &ci, sizeof(ci)))
1208 		return -EFAULT;
1209 	return 0;
1210 }
1211 
proc_resetdevice(struct usb_dev_state * ps)1212 static int proc_resetdevice(struct usb_dev_state *ps)
1213 {
1214 	return usb_reset_device(ps->dev);
1215 }
1216 
proc_setintf(struct usb_dev_state * ps,void __user * arg)1217 static int proc_setintf(struct usb_dev_state *ps, void __user *arg)
1218 {
1219 	struct usbdevfs_setinterface setintf;
1220 	int ret;
1221 
1222 	if (copy_from_user(&setintf, arg, sizeof(setintf)))
1223 		return -EFAULT;
1224 	if ((ret = checkintf(ps, setintf.interface)))
1225 		return ret;
1226 
1227 	destroy_async_on_interface(ps, setintf.interface);
1228 
1229 	return usb_set_interface(ps->dev, setintf.interface,
1230 			setintf.altsetting);
1231 }
1232 
proc_setconfig(struct usb_dev_state * ps,void __user * arg)1233 static int proc_setconfig(struct usb_dev_state *ps, void __user *arg)
1234 {
1235 	int u;
1236 	int status = 0;
1237 	struct usb_host_config *actconfig;
1238 
1239 	if (get_user(u, (int __user *)arg))
1240 		return -EFAULT;
1241 
1242 	actconfig = ps->dev->actconfig;
1243 
1244 	/* Don't touch the device if any interfaces are claimed.
1245 	 * It could interfere with other drivers' operations, and if
1246 	 * an interface is claimed by usbfs it could easily deadlock.
1247 	 */
1248 	if (actconfig) {
1249 		int i;
1250 
1251 		for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
1252 			if (usb_interface_claimed(actconfig->interface[i])) {
1253 				dev_warn(&ps->dev->dev,
1254 					"usbfs: interface %d claimed by %s "
1255 					"while '%s' sets config #%d\n",
1256 					actconfig->interface[i]
1257 						->cur_altsetting
1258 						->desc.bInterfaceNumber,
1259 					actconfig->interface[i]
1260 						->dev.driver->name,
1261 					current->comm, u);
1262 				status = -EBUSY;
1263 				break;
1264 			}
1265 		}
1266 	}
1267 
1268 	/* SET_CONFIGURATION is often abused as a "cheap" driver reset,
1269 	 * so avoid usb_set_configuration()'s kick to sysfs
1270 	 */
1271 	if (status == 0) {
1272 		if (actconfig && actconfig->desc.bConfigurationValue == u)
1273 			status = usb_reset_configuration(ps->dev);
1274 		else
1275 			status = usb_set_configuration(ps->dev, u);
1276 	}
1277 
1278 	return status;
1279 }
1280 
proc_do_submiturb(struct usb_dev_state * ps,struct usbdevfs_urb * uurb,struct usbdevfs_iso_packet_desc __user * iso_frame_desc,void __user * arg)1281 static int proc_do_submiturb(struct usb_dev_state *ps, struct usbdevfs_urb *uurb,
1282 			struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
1283 			void __user *arg)
1284 {
1285 	struct usbdevfs_iso_packet_desc *isopkt = NULL;
1286 	struct usb_host_endpoint *ep;
1287 	struct async *as = NULL;
1288 	struct usb_ctrlrequest *dr = NULL;
1289 	unsigned int u, totlen, isofrmlen;
1290 	int i, ret, is_in, num_sgs = 0, ifnum = -1;
1291 	int number_of_packets = 0;
1292 	unsigned int stream_id = 0;
1293 	void *buf;
1294 	unsigned long mask =	USBDEVFS_URB_SHORT_NOT_OK |
1295 				USBDEVFS_URB_BULK_CONTINUATION |
1296 				USBDEVFS_URB_NO_FSBR |
1297 				USBDEVFS_URB_ZERO_PACKET |
1298 				USBDEVFS_URB_NO_INTERRUPT;
1299 	/* USBDEVFS_URB_ISO_ASAP is a special case */
1300 	if (uurb->type == USBDEVFS_URB_TYPE_ISO)
1301 		mask |= USBDEVFS_URB_ISO_ASAP;
1302 
1303 	if (uurb->flags & ~mask)
1304 			return -EINVAL;
1305 
1306 	if ((unsigned int)uurb->buffer_length >= USBFS_XFER_MAX)
1307 		return -EINVAL;
1308 	if (uurb->buffer_length > 0 && !uurb->buffer)
1309 		return -EINVAL;
1310 	if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
1311 	    (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
1312 		ifnum = findintfep(ps->dev, uurb->endpoint);
1313 		if (ifnum < 0)
1314 			return ifnum;
1315 		ret = checkintf(ps, ifnum);
1316 		if (ret)
1317 			return ret;
1318 	}
1319 	ep = ep_to_host_endpoint(ps->dev, uurb->endpoint);
1320 	if (!ep)
1321 		return -ENOENT;
1322 	is_in = (uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0;
1323 
1324 	u = 0;
1325 	switch(uurb->type) {
1326 	case USBDEVFS_URB_TYPE_CONTROL:
1327 		if (!usb_endpoint_xfer_control(&ep->desc))
1328 			return -EINVAL;
1329 		/* min 8 byte setup packet */
1330 		if (uurb->buffer_length < 8)
1331 			return -EINVAL;
1332 		dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
1333 		if (!dr)
1334 			return -ENOMEM;
1335 		if (copy_from_user(dr, uurb->buffer, 8)) {
1336 			ret = -EFAULT;
1337 			goto error;
1338 		}
1339 		if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
1340 			ret = -EINVAL;
1341 			goto error;
1342 		}
1343 		ret = check_ctrlrecip(ps, dr->bRequestType, dr->bRequest,
1344 				      le16_to_cpup(&dr->wIndex));
1345 		if (ret)
1346 			goto error;
1347 		uurb->buffer_length = le16_to_cpup(&dr->wLength);
1348 		uurb->buffer += 8;
1349 		if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
1350 			is_in = 1;
1351 			uurb->endpoint |= USB_DIR_IN;
1352 		} else {
1353 			is_in = 0;
1354 			uurb->endpoint &= ~USB_DIR_IN;
1355 		}
1356 		snoop(&ps->dev->dev, "control urb: bRequestType=%02x "
1357 			"bRequest=%02x wValue=%04x "
1358 			"wIndex=%04x wLength=%04x\n",
1359 			dr->bRequestType, dr->bRequest,
1360 			__le16_to_cpup(&dr->wValue),
1361 			__le16_to_cpup(&dr->wIndex),
1362 			__le16_to_cpup(&dr->wLength));
1363 		u = sizeof(struct usb_ctrlrequest);
1364 		break;
1365 
1366 	case USBDEVFS_URB_TYPE_BULK:
1367 		switch (usb_endpoint_type(&ep->desc)) {
1368 		case USB_ENDPOINT_XFER_CONTROL:
1369 		case USB_ENDPOINT_XFER_ISOC:
1370 			return -EINVAL;
1371 		case USB_ENDPOINT_XFER_INT:
1372 			/* allow single-shot interrupt transfers */
1373 			uurb->type = USBDEVFS_URB_TYPE_INTERRUPT;
1374 			goto interrupt_urb;
1375 		}
1376 		num_sgs = DIV_ROUND_UP(uurb->buffer_length, USB_SG_SIZE);
1377 		if (num_sgs == 1 || num_sgs > ps->dev->bus->sg_tablesize)
1378 			num_sgs = 0;
1379 		if (ep->streams)
1380 			stream_id = uurb->stream_id;
1381 		break;
1382 
1383 	case USBDEVFS_URB_TYPE_INTERRUPT:
1384 		if (!usb_endpoint_xfer_int(&ep->desc))
1385 			return -EINVAL;
1386  interrupt_urb:
1387 		break;
1388 
1389 	case USBDEVFS_URB_TYPE_ISO:
1390 		/* arbitrary limit */
1391 		if (uurb->number_of_packets < 1 ||
1392 		    uurb->number_of_packets > 128)
1393 			return -EINVAL;
1394 		if (!usb_endpoint_xfer_isoc(&ep->desc))
1395 			return -EINVAL;
1396 		number_of_packets = uurb->number_of_packets;
1397 		isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
1398 				   number_of_packets;
1399 		if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
1400 			return -ENOMEM;
1401 		if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
1402 			ret = -EFAULT;
1403 			goto error;
1404 		}
1405 		for (totlen = u = 0; u < number_of_packets; u++) {
1406 			/*
1407 			 * arbitrary limit need for USB 3.0
1408 			 * bMaxBurst (0~15 allowed, 1~16 packets)
1409 			 * bmAttributes (bit 1:0, mult 0~2, 1~3 packets)
1410 			 * sizemax: 1024 * 16 * 3 = 49152
1411 			 */
1412 			if (isopkt[u].length > 49152) {
1413 				ret = -EINVAL;
1414 				goto error;
1415 			}
1416 			totlen += isopkt[u].length;
1417 		}
1418 		u *= sizeof(struct usb_iso_packet_descriptor);
1419 		uurb->buffer_length = totlen;
1420 		break;
1421 
1422 	default:
1423 		return -EINVAL;
1424 	}
1425 
1426 	if (uurb->buffer_length > 0 &&
1427 			!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
1428 				uurb->buffer, uurb->buffer_length)) {
1429 		ret = -EFAULT;
1430 		goto error;
1431 	}
1432 	as = alloc_async(number_of_packets);
1433 	if (!as) {
1434 		ret = -ENOMEM;
1435 		goto error;
1436 	}
1437 
1438 	u += sizeof(struct async) + sizeof(struct urb) + uurb->buffer_length +
1439 	     num_sgs * sizeof(struct scatterlist);
1440 	ret = usbfs_increase_memory_usage(u);
1441 	if (ret)
1442 		goto error;
1443 	as->mem_usage = u;
1444 
1445 	if (num_sgs) {
1446 		as->urb->sg = kmalloc(num_sgs * sizeof(struct scatterlist),
1447 				      GFP_KERNEL);
1448 		if (!as->urb->sg) {
1449 			ret = -ENOMEM;
1450 			goto error;
1451 		}
1452 		as->urb->num_sgs = num_sgs;
1453 		sg_init_table(as->urb->sg, as->urb->num_sgs);
1454 
1455 		totlen = uurb->buffer_length;
1456 		for (i = 0; i < as->urb->num_sgs; i++) {
1457 			u = (totlen > USB_SG_SIZE) ? USB_SG_SIZE : totlen;
1458 			buf = kmalloc(u, GFP_KERNEL);
1459 			if (!buf) {
1460 				ret = -ENOMEM;
1461 				goto error;
1462 			}
1463 			sg_set_buf(&as->urb->sg[i], buf, u);
1464 
1465 			if (!is_in) {
1466 				if (copy_from_user(buf, uurb->buffer, u)) {
1467 					ret = -EFAULT;
1468 					goto error;
1469 				}
1470 				uurb->buffer += u;
1471 			}
1472 			totlen -= u;
1473 		}
1474 	} else if (uurb->buffer_length > 0) {
1475 		as->urb->transfer_buffer = kmalloc(uurb->buffer_length,
1476 				GFP_KERNEL);
1477 		if (!as->urb->transfer_buffer) {
1478 			ret = -ENOMEM;
1479 			goto error;
1480 		}
1481 
1482 		if (!is_in) {
1483 			if (copy_from_user(as->urb->transfer_buffer,
1484 					   uurb->buffer,
1485 					   uurb->buffer_length)) {
1486 				ret = -EFAULT;
1487 				goto error;
1488 			}
1489 		} else if (uurb->type == USBDEVFS_URB_TYPE_ISO) {
1490 			/*
1491 			 * Isochronous input data may end up being
1492 			 * discontiguous if some of the packets are short.
1493 			 * Clear the buffer so that the gaps don't leak
1494 			 * kernel data to userspace.
1495 			 */
1496 			memset(as->urb->transfer_buffer, 0,
1497 					uurb->buffer_length);
1498 		}
1499 	}
1500 	as->urb->dev = ps->dev;
1501 	as->urb->pipe = (uurb->type << 30) |
1502 			__create_pipe(ps->dev, uurb->endpoint & 0xf) |
1503 			(uurb->endpoint & USB_DIR_IN);
1504 
1505 	/* This tedious sequence is necessary because the URB_* flags
1506 	 * are internal to the kernel and subject to change, whereas
1507 	 * the USBDEVFS_URB_* flags are a user API and must not be changed.
1508 	 */
1509 	u = (is_in ? URB_DIR_IN : URB_DIR_OUT);
1510 	if (uurb->flags & USBDEVFS_URB_ISO_ASAP)
1511 		u |= URB_ISO_ASAP;
1512 	if (uurb->flags & USBDEVFS_URB_SHORT_NOT_OK && is_in)
1513 		u |= URB_SHORT_NOT_OK;
1514 	if (uurb->flags & USBDEVFS_URB_NO_FSBR)
1515 		u |= URB_NO_FSBR;
1516 	if (uurb->flags & USBDEVFS_URB_ZERO_PACKET)
1517 		u |= URB_ZERO_PACKET;
1518 	if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
1519 		u |= URB_NO_INTERRUPT;
1520 	as->urb->transfer_flags = u;
1521 
1522 	as->urb->transfer_buffer_length = uurb->buffer_length;
1523 	as->urb->setup_packet = (unsigned char *)dr;
1524 	dr = NULL;
1525 	as->urb->start_frame = uurb->start_frame;
1526 	as->urb->number_of_packets = number_of_packets;
1527 	as->urb->stream_id = stream_id;
1528 
1529 	if (ep->desc.bInterval) {
1530 		if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
1531 				ps->dev->speed == USB_SPEED_HIGH ||
1532 				ps->dev->speed >= USB_SPEED_SUPER)
1533 			as->urb->interval = 1 <<
1534 					min(15, ep->desc.bInterval - 1);
1535 		else
1536 			as->urb->interval = ep->desc.bInterval;
1537 	}
1538 
1539 	as->urb->context = as;
1540 	as->urb->complete = async_completed;
1541 	for (totlen = u = 0; u < number_of_packets; u++) {
1542 		as->urb->iso_frame_desc[u].offset = totlen;
1543 		as->urb->iso_frame_desc[u].length = isopkt[u].length;
1544 		totlen += isopkt[u].length;
1545 	}
1546 	kfree(isopkt);
1547 	isopkt = NULL;
1548 	as->ps = ps;
1549 	as->userurb = arg;
1550 	if (is_in && uurb->buffer_length > 0)
1551 		as->userbuffer = uurb->buffer;
1552 	else
1553 		as->userbuffer = NULL;
1554 	as->signr = uurb->signr;
1555 	as->ifnum = ifnum;
1556 	as->pid = get_pid(task_pid(current));
1557 	as->cred = get_current_cred();
1558 	security_task_getsecid(current, &as->secid);
1559 	snoop_urb(ps->dev, as->userurb, as->urb->pipe,
1560 			as->urb->transfer_buffer_length, 0, SUBMIT,
1561 			NULL, 0);
1562 	if (!is_in)
1563 		snoop_urb_data(as->urb, as->urb->transfer_buffer_length);
1564 
1565 	async_newpending(as);
1566 
1567 	if (usb_endpoint_xfer_bulk(&ep->desc)) {
1568 		spin_lock_irq(&ps->lock);
1569 
1570 		/* Not exactly the endpoint address; the direction bit is
1571 		 * shifted to the 0x10 position so that the value will be
1572 		 * between 0 and 31.
1573 		 */
1574 		as->bulk_addr = usb_endpoint_num(&ep->desc) |
1575 			((ep->desc.bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1576 				>> 3);
1577 
1578 		/* If this bulk URB is the start of a new transfer, re-enable
1579 		 * the endpoint.  Otherwise mark it as a continuation URB.
1580 		 */
1581 		if (uurb->flags & USBDEVFS_URB_BULK_CONTINUATION)
1582 			as->bulk_status = AS_CONTINUATION;
1583 		else
1584 			ps->disabled_bulk_eps &= ~(1 << as->bulk_addr);
1585 
1586 		/* Don't accept continuation URBs if the endpoint is
1587 		 * disabled because of an earlier error.
1588 		 */
1589 		if (ps->disabled_bulk_eps & (1 << as->bulk_addr))
1590 			ret = -EREMOTEIO;
1591 		else
1592 			ret = usb_submit_urb(as->urb, GFP_ATOMIC);
1593 		spin_unlock_irq(&ps->lock);
1594 	} else {
1595 		ret = usb_submit_urb(as->urb, GFP_KERNEL);
1596 	}
1597 
1598 	if (ret) {
1599 		dev_printk(KERN_DEBUG, &ps->dev->dev,
1600 			   "usbfs: usb_submit_urb returned %d\n", ret);
1601 		snoop_urb(ps->dev, as->userurb, as->urb->pipe,
1602 				0, ret, COMPLETE, NULL, 0);
1603 		async_removepending(as);
1604 		goto error;
1605 	}
1606 	return 0;
1607 
1608  error:
1609 	kfree(isopkt);
1610 	kfree(dr);
1611 	if (as)
1612 		free_async(as);
1613 	return ret;
1614 }
1615 
proc_submiturb(struct usb_dev_state * ps,void __user * arg)1616 static int proc_submiturb(struct usb_dev_state *ps, void __user *arg)
1617 {
1618 	struct usbdevfs_urb uurb;
1619 
1620 	if (copy_from_user(&uurb, arg, sizeof(uurb)))
1621 		return -EFAULT;
1622 
1623 	return proc_do_submiturb(ps, &uurb,
1624 			(((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
1625 			arg);
1626 }
1627 
proc_unlinkurb(struct usb_dev_state * ps,void __user * arg)1628 static int proc_unlinkurb(struct usb_dev_state *ps, void __user *arg)
1629 {
1630 	struct urb *urb;
1631 	struct async *as;
1632 	unsigned long flags;
1633 
1634 	spin_lock_irqsave(&ps->lock, flags);
1635 	as = async_getpending(ps, arg);
1636 	if (!as) {
1637 		spin_unlock_irqrestore(&ps->lock, flags);
1638 		return -EINVAL;
1639 	}
1640 
1641 	urb = as->urb;
1642 	usb_get_urb(urb);
1643 	spin_unlock_irqrestore(&ps->lock, flags);
1644 
1645 	usb_kill_urb(urb);
1646 	usb_put_urb(urb);
1647 
1648 	return 0;
1649 }
1650 
compute_isochronous_actual_length(struct urb * urb)1651 static void compute_isochronous_actual_length(struct urb *urb)
1652 {
1653 	unsigned int i;
1654 
1655 	if (urb->number_of_packets > 0) {
1656 		urb->actual_length = 0;
1657 		for (i = 0; i < urb->number_of_packets; i++)
1658 			urb->actual_length +=
1659 					urb->iso_frame_desc[i].actual_length;
1660 	}
1661 }
1662 
processcompl(struct async * as,void __user * __user * arg)1663 static int processcompl(struct async *as, void __user * __user *arg)
1664 {
1665 	struct urb *urb = as->urb;
1666 	struct usbdevfs_urb __user *userurb = as->userurb;
1667 	void __user *addr = as->userurb;
1668 	unsigned int i;
1669 
1670 	compute_isochronous_actual_length(urb);
1671 	if (as->userbuffer && urb->actual_length) {
1672 		if (copy_urb_data_to_user(as->userbuffer, urb))
1673 			goto err_out;
1674 	}
1675 	if (put_user(as->status, &userurb->status))
1676 		goto err_out;
1677 	if (put_user(urb->actual_length, &userurb->actual_length))
1678 		goto err_out;
1679 	if (put_user(urb->error_count, &userurb->error_count))
1680 		goto err_out;
1681 
1682 	if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
1683 		for (i = 0; i < urb->number_of_packets; i++) {
1684 			if (put_user(urb->iso_frame_desc[i].actual_length,
1685 				     &userurb->iso_frame_desc[i].actual_length))
1686 				goto err_out;
1687 			if (put_user(urb->iso_frame_desc[i].status,
1688 				     &userurb->iso_frame_desc[i].status))
1689 				goto err_out;
1690 		}
1691 	}
1692 
1693 	if (put_user(addr, (void __user * __user *)arg))
1694 		return -EFAULT;
1695 	return 0;
1696 
1697 err_out:
1698 	return -EFAULT;
1699 }
1700 
reap_as(struct usb_dev_state * ps)1701 static struct async *reap_as(struct usb_dev_state *ps)
1702 {
1703 	DECLARE_WAITQUEUE(wait, current);
1704 	struct async *as = NULL;
1705 	struct usb_device *dev = ps->dev;
1706 
1707 	add_wait_queue(&ps->wait, &wait);
1708 	for (;;) {
1709 		__set_current_state(TASK_INTERRUPTIBLE);
1710 		as = async_getcompleted(ps);
1711 		if (as || !connected(ps))
1712 			break;
1713 		if (signal_pending(current))
1714 			break;
1715 		usb_unlock_device(dev);
1716 		schedule();
1717 		usb_lock_device(dev);
1718 	}
1719 	remove_wait_queue(&ps->wait, &wait);
1720 	set_current_state(TASK_RUNNING);
1721 	return as;
1722 }
1723 
proc_reapurb(struct usb_dev_state * ps,void __user * arg)1724 static int proc_reapurb(struct usb_dev_state *ps, void __user *arg)
1725 {
1726 	struct async *as = reap_as(ps);
1727 	if (as) {
1728 		int retval = processcompl(as, (void __user * __user *)arg);
1729 		free_async(as);
1730 		return retval;
1731 	}
1732 	if (signal_pending(current))
1733 		return -EINTR;
1734 	return -ENODEV;
1735 }
1736 
proc_reapurbnonblock(struct usb_dev_state * ps,void __user * arg)1737 static int proc_reapurbnonblock(struct usb_dev_state *ps, void __user *arg)
1738 {
1739 	int retval;
1740 	struct async *as;
1741 
1742 	as = async_getcompleted(ps);
1743 	if (as) {
1744 		retval = processcompl(as, (void __user * __user *)arg);
1745 		free_async(as);
1746 	} else {
1747 		retval = (connected(ps) ? -EAGAIN : -ENODEV);
1748 	}
1749 	return retval;
1750 }
1751 
1752 #ifdef CONFIG_COMPAT
proc_control_compat(struct usb_dev_state * ps,struct usbdevfs_ctrltransfer32 __user * p32)1753 static int proc_control_compat(struct usb_dev_state *ps,
1754 				struct usbdevfs_ctrltransfer32 __user *p32)
1755 {
1756 	struct usbdevfs_ctrltransfer __user *p;
1757 	__u32 udata;
1758 	p = compat_alloc_user_space(sizeof(*p));
1759 	if (copy_in_user(p, p32, (sizeof(*p32) - sizeof(compat_caddr_t))) ||
1760 	    get_user(udata, &p32->data) ||
1761 	    put_user(compat_ptr(udata), &p->data))
1762 		return -EFAULT;
1763 	return proc_control(ps, p);
1764 }
1765 
proc_bulk_compat(struct usb_dev_state * ps,struct usbdevfs_bulktransfer32 __user * p32)1766 static int proc_bulk_compat(struct usb_dev_state *ps,
1767 			struct usbdevfs_bulktransfer32 __user *p32)
1768 {
1769 	struct usbdevfs_bulktransfer __user *p;
1770 	compat_uint_t n;
1771 	compat_caddr_t addr;
1772 
1773 	p = compat_alloc_user_space(sizeof(*p));
1774 
1775 	if (get_user(n, &p32->ep) || put_user(n, &p->ep) ||
1776 	    get_user(n, &p32->len) || put_user(n, &p->len) ||
1777 	    get_user(n, &p32->timeout) || put_user(n, &p->timeout) ||
1778 	    get_user(addr, &p32->data) || put_user(compat_ptr(addr), &p->data))
1779 		return -EFAULT;
1780 
1781 	return proc_bulk(ps, p);
1782 }
proc_disconnectsignal_compat(struct usb_dev_state * ps,void __user * arg)1783 static int proc_disconnectsignal_compat(struct usb_dev_state *ps, void __user *arg)
1784 {
1785 	struct usbdevfs_disconnectsignal32 ds;
1786 
1787 	if (copy_from_user(&ds, arg, sizeof(ds)))
1788 		return -EFAULT;
1789 	ps->discsignr = ds.signr;
1790 	ps->disccontext = compat_ptr(ds.context);
1791 	return 0;
1792 }
1793 
get_urb32(struct usbdevfs_urb * kurb,struct usbdevfs_urb32 __user * uurb)1794 static int get_urb32(struct usbdevfs_urb *kurb,
1795 		     struct usbdevfs_urb32 __user *uurb)
1796 {
1797 	__u32  uptr;
1798 	if (!access_ok(VERIFY_READ, uurb, sizeof(*uurb)) ||
1799 	    __get_user(kurb->type, &uurb->type) ||
1800 	    __get_user(kurb->endpoint, &uurb->endpoint) ||
1801 	    __get_user(kurb->status, &uurb->status) ||
1802 	    __get_user(kurb->flags, &uurb->flags) ||
1803 	    __get_user(kurb->buffer_length, &uurb->buffer_length) ||
1804 	    __get_user(kurb->actual_length, &uurb->actual_length) ||
1805 	    __get_user(kurb->start_frame, &uurb->start_frame) ||
1806 	    __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
1807 	    __get_user(kurb->error_count, &uurb->error_count) ||
1808 	    __get_user(kurb->signr, &uurb->signr))
1809 		return -EFAULT;
1810 
1811 	if (__get_user(uptr, &uurb->buffer))
1812 		return -EFAULT;
1813 	kurb->buffer = compat_ptr(uptr);
1814 	if (__get_user(uptr, &uurb->usercontext))
1815 		return -EFAULT;
1816 	kurb->usercontext = compat_ptr(uptr);
1817 
1818 	return 0;
1819 }
1820 
proc_submiturb_compat(struct usb_dev_state * ps,void __user * arg)1821 static int proc_submiturb_compat(struct usb_dev_state *ps, void __user *arg)
1822 {
1823 	struct usbdevfs_urb uurb;
1824 
1825 	if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
1826 		return -EFAULT;
1827 
1828 	return proc_do_submiturb(ps, &uurb,
1829 			((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
1830 			arg);
1831 }
1832 
processcompl_compat(struct async * as,void __user * __user * arg)1833 static int processcompl_compat(struct async *as, void __user * __user *arg)
1834 {
1835 	struct urb *urb = as->urb;
1836 	struct usbdevfs_urb32 __user *userurb = as->userurb;
1837 	void __user *addr = as->userurb;
1838 	unsigned int i;
1839 
1840 	compute_isochronous_actual_length(urb);
1841 	if (as->userbuffer && urb->actual_length) {
1842 		if (copy_urb_data_to_user(as->userbuffer, urb))
1843 			return -EFAULT;
1844 	}
1845 	if (put_user(as->status, &userurb->status))
1846 		return -EFAULT;
1847 	if (put_user(urb->actual_length, &userurb->actual_length))
1848 		return -EFAULT;
1849 	if (put_user(urb->error_count, &userurb->error_count))
1850 		return -EFAULT;
1851 
1852 	if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
1853 		for (i = 0; i < urb->number_of_packets; i++) {
1854 			if (put_user(urb->iso_frame_desc[i].actual_length,
1855 				     &userurb->iso_frame_desc[i].actual_length))
1856 				return -EFAULT;
1857 			if (put_user(urb->iso_frame_desc[i].status,
1858 				     &userurb->iso_frame_desc[i].status))
1859 				return -EFAULT;
1860 		}
1861 	}
1862 
1863 	if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
1864 		return -EFAULT;
1865 	return 0;
1866 }
1867 
proc_reapurb_compat(struct usb_dev_state * ps,void __user * arg)1868 static int proc_reapurb_compat(struct usb_dev_state *ps, void __user *arg)
1869 {
1870 	struct async *as = reap_as(ps);
1871 	if (as) {
1872 		int retval = processcompl_compat(as, (void __user * __user *)arg);
1873 		free_async(as);
1874 		return retval;
1875 	}
1876 	if (signal_pending(current))
1877 		return -EINTR;
1878 	return -ENODEV;
1879 }
1880 
proc_reapurbnonblock_compat(struct usb_dev_state * ps,void __user * arg)1881 static int proc_reapurbnonblock_compat(struct usb_dev_state *ps, void __user *arg)
1882 {
1883 	int retval;
1884 	struct async *as;
1885 
1886 	as = async_getcompleted(ps);
1887 	if (as) {
1888 		retval = processcompl_compat(as, (void __user * __user *)arg);
1889 		free_async(as);
1890 	} else {
1891 		retval = (connected(ps) ? -EAGAIN : -ENODEV);
1892 	}
1893 	return retval;
1894 }
1895 
1896 
1897 #endif
1898 
proc_disconnectsignal(struct usb_dev_state * ps,void __user * arg)1899 static int proc_disconnectsignal(struct usb_dev_state *ps, void __user *arg)
1900 {
1901 	struct usbdevfs_disconnectsignal ds;
1902 
1903 	if (copy_from_user(&ds, arg, sizeof(ds)))
1904 		return -EFAULT;
1905 	ps->discsignr = ds.signr;
1906 	ps->disccontext = ds.context;
1907 	return 0;
1908 }
1909 
proc_claiminterface(struct usb_dev_state * ps,void __user * arg)1910 static int proc_claiminterface(struct usb_dev_state *ps, void __user *arg)
1911 {
1912 	unsigned int ifnum;
1913 
1914 	if (get_user(ifnum, (unsigned int __user *)arg))
1915 		return -EFAULT;
1916 	return claimintf(ps, ifnum);
1917 }
1918 
proc_releaseinterface(struct usb_dev_state * ps,void __user * arg)1919 static int proc_releaseinterface(struct usb_dev_state *ps, void __user *arg)
1920 {
1921 	unsigned int ifnum;
1922 	int ret;
1923 
1924 	if (get_user(ifnum, (unsigned int __user *)arg))
1925 		return -EFAULT;
1926 	if ((ret = releaseintf(ps, ifnum)) < 0)
1927 		return ret;
1928 	destroy_async_on_interface (ps, ifnum);
1929 	return 0;
1930 }
1931 
proc_ioctl(struct usb_dev_state * ps,struct usbdevfs_ioctl * ctl)1932 static int proc_ioctl(struct usb_dev_state *ps, struct usbdevfs_ioctl *ctl)
1933 {
1934 	int			size;
1935 	void			*buf = NULL;
1936 	int			retval = 0;
1937 	struct usb_interface    *intf = NULL;
1938 	struct usb_driver       *driver = NULL;
1939 
1940 	/* alloc buffer */
1941 	if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
1942 		buf = kmalloc(size, GFP_KERNEL);
1943 		if (buf == NULL)
1944 			return -ENOMEM;
1945 		if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
1946 			if (copy_from_user(buf, ctl->data, size)) {
1947 				kfree(buf);
1948 				return -EFAULT;
1949 			}
1950 		} else {
1951 			memset(buf, 0, size);
1952 		}
1953 	}
1954 
1955 	if (!connected(ps)) {
1956 		kfree(buf);
1957 		return -ENODEV;
1958 	}
1959 
1960 	if (ps->dev->state != USB_STATE_CONFIGURED)
1961 		retval = -EHOSTUNREACH;
1962 	else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
1963 		retval = -EINVAL;
1964 	else switch (ctl->ioctl_code) {
1965 
1966 	/* disconnect kernel driver from interface */
1967 	case USBDEVFS_DISCONNECT:
1968 		if (intf->dev.driver) {
1969 			driver = to_usb_driver(intf->dev.driver);
1970 			dev_dbg(&intf->dev, "disconnect by usbfs\n");
1971 			usb_driver_release_interface(driver, intf);
1972 		} else
1973 			retval = -ENODATA;
1974 		break;
1975 
1976 	/* let kernel drivers try to (re)bind to the interface */
1977 	case USBDEVFS_CONNECT:
1978 		if (!intf->dev.driver)
1979 			retval = device_attach(&intf->dev);
1980 		else
1981 			retval = -EBUSY;
1982 		break;
1983 
1984 	/* talk directly to the interface's driver */
1985 	default:
1986 		if (intf->dev.driver)
1987 			driver = to_usb_driver(intf->dev.driver);
1988 		if (driver == NULL || driver->unlocked_ioctl == NULL) {
1989 			retval = -ENOTTY;
1990 		} else {
1991 			retval = driver->unlocked_ioctl(intf, ctl->ioctl_code, buf);
1992 			if (retval == -ENOIOCTLCMD)
1993 				retval = -ENOTTY;
1994 		}
1995 	}
1996 
1997 	/* cleanup and return */
1998 	if (retval >= 0
1999 			&& (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
2000 			&& size > 0
2001 			&& copy_to_user(ctl->data, buf, size) != 0)
2002 		retval = -EFAULT;
2003 
2004 	kfree(buf);
2005 	return retval;
2006 }
2007 
proc_ioctl_default(struct usb_dev_state * ps,void __user * arg)2008 static int proc_ioctl_default(struct usb_dev_state *ps, void __user *arg)
2009 {
2010 	struct usbdevfs_ioctl	ctrl;
2011 
2012 	if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
2013 		return -EFAULT;
2014 	return proc_ioctl(ps, &ctrl);
2015 }
2016 
2017 #ifdef CONFIG_COMPAT
proc_ioctl_compat(struct usb_dev_state * ps,compat_uptr_t arg)2018 static int proc_ioctl_compat(struct usb_dev_state *ps, compat_uptr_t arg)
2019 {
2020 	struct usbdevfs_ioctl32 __user *uioc;
2021 	struct usbdevfs_ioctl ctrl;
2022 	u32 udata;
2023 
2024 	uioc = compat_ptr((long)arg);
2025 	if (!access_ok(VERIFY_READ, uioc, sizeof(*uioc)) ||
2026 	    __get_user(ctrl.ifno, &uioc->ifno) ||
2027 	    __get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
2028 	    __get_user(udata, &uioc->data))
2029 		return -EFAULT;
2030 	ctrl.data = compat_ptr(udata);
2031 
2032 	return proc_ioctl(ps, &ctrl);
2033 }
2034 #endif
2035 
proc_claim_port(struct usb_dev_state * ps,void __user * arg)2036 static int proc_claim_port(struct usb_dev_state *ps, void __user *arg)
2037 {
2038 	unsigned portnum;
2039 	int rc;
2040 
2041 	if (get_user(portnum, (unsigned __user *) arg))
2042 		return -EFAULT;
2043 	rc = usb_hub_claim_port(ps->dev, portnum, ps);
2044 	if (rc == 0)
2045 		snoop(&ps->dev->dev, "port %d claimed by process %d: %s\n",
2046 			portnum, task_pid_nr(current), current->comm);
2047 	return rc;
2048 }
2049 
proc_release_port(struct usb_dev_state * ps,void __user * arg)2050 static int proc_release_port(struct usb_dev_state *ps, void __user *arg)
2051 {
2052 	unsigned portnum;
2053 
2054 	if (get_user(portnum, (unsigned __user *) arg))
2055 		return -EFAULT;
2056 	return usb_hub_release_port(ps->dev, portnum, ps);
2057 }
2058 
proc_get_capabilities(struct usb_dev_state * ps,void __user * arg)2059 static int proc_get_capabilities(struct usb_dev_state *ps, void __user *arg)
2060 {
2061 	__u32 caps;
2062 
2063 	caps = USBDEVFS_CAP_ZERO_PACKET | USBDEVFS_CAP_NO_PACKET_SIZE_LIM |
2064 			USBDEVFS_CAP_REAP_AFTER_DISCONNECT;
2065 	if (!ps->dev->bus->no_stop_on_short)
2066 		caps |= USBDEVFS_CAP_BULK_CONTINUATION;
2067 	if (ps->dev->bus->sg_tablesize)
2068 		caps |= USBDEVFS_CAP_BULK_SCATTER_GATHER;
2069 
2070 	if (put_user(caps, (__u32 __user *)arg))
2071 		return -EFAULT;
2072 
2073 	return 0;
2074 }
2075 
proc_disconnect_claim(struct usb_dev_state * ps,void __user * arg)2076 static int proc_disconnect_claim(struct usb_dev_state *ps, void __user *arg)
2077 {
2078 	struct usbdevfs_disconnect_claim dc;
2079 	struct usb_interface *intf;
2080 
2081 	if (copy_from_user(&dc, arg, sizeof(dc)))
2082 		return -EFAULT;
2083 
2084 	intf = usb_ifnum_to_if(ps->dev, dc.interface);
2085 	if (!intf)
2086 		return -EINVAL;
2087 
2088 	if (intf->dev.driver) {
2089 		struct usb_driver *driver = to_usb_driver(intf->dev.driver);
2090 
2091 		if ((dc.flags & USBDEVFS_DISCONNECT_CLAIM_IF_DRIVER) &&
2092 				strncmp(dc.driver, intf->dev.driver->name,
2093 					sizeof(dc.driver)) != 0)
2094 			return -EBUSY;
2095 
2096 		if ((dc.flags & USBDEVFS_DISCONNECT_CLAIM_EXCEPT_DRIVER) &&
2097 				strncmp(dc.driver, intf->dev.driver->name,
2098 					sizeof(dc.driver)) == 0)
2099 			return -EBUSY;
2100 
2101 		dev_dbg(&intf->dev, "disconnect by usbfs\n");
2102 		usb_driver_release_interface(driver, intf);
2103 	}
2104 
2105 	return claimintf(ps, dc.interface);
2106 }
2107 
proc_alloc_streams(struct usb_dev_state * ps,void __user * arg)2108 static int proc_alloc_streams(struct usb_dev_state *ps, void __user *arg)
2109 {
2110 	unsigned num_streams, num_eps;
2111 	struct usb_host_endpoint **eps;
2112 	struct usb_interface *intf;
2113 	int r;
2114 
2115 	r = parse_usbdevfs_streams(ps, arg, &num_streams, &num_eps,
2116 				   &eps, &intf);
2117 	if (r)
2118 		return r;
2119 
2120 	destroy_async_on_interface(ps,
2121 				   intf->altsetting[0].desc.bInterfaceNumber);
2122 
2123 	r = usb_alloc_streams(intf, eps, num_eps, num_streams, GFP_KERNEL);
2124 	kfree(eps);
2125 	return r;
2126 }
2127 
proc_free_streams(struct usb_dev_state * ps,void __user * arg)2128 static int proc_free_streams(struct usb_dev_state *ps, void __user *arg)
2129 {
2130 	unsigned num_eps;
2131 	struct usb_host_endpoint **eps;
2132 	struct usb_interface *intf;
2133 	int r;
2134 
2135 	r = parse_usbdevfs_streams(ps, arg, NULL, &num_eps, &eps, &intf);
2136 	if (r)
2137 		return r;
2138 
2139 	destroy_async_on_interface(ps,
2140 				   intf->altsetting[0].desc.bInterfaceNumber);
2141 
2142 	r = usb_free_streams(intf, eps, num_eps, GFP_KERNEL);
2143 	kfree(eps);
2144 	return r;
2145 }
2146 
2147 /*
2148  * NOTE:  All requests here that have interface numbers as parameters
2149  * are assuming that somehow the configuration has been prevented from
2150  * changing.  But there's no mechanism to ensure that...
2151  */
usbdev_do_ioctl(struct file * file,unsigned int cmd,void __user * p)2152 static long usbdev_do_ioctl(struct file *file, unsigned int cmd,
2153 				void __user *p)
2154 {
2155 	struct usb_dev_state *ps = file->private_data;
2156 	struct inode *inode = file_inode(file);
2157 	struct usb_device *dev = ps->dev;
2158 	int ret = -ENOTTY;
2159 
2160 	if (!(file->f_mode & FMODE_WRITE))
2161 		return -EPERM;
2162 
2163 	usb_lock_device(dev);
2164 
2165 	/* Reap operations are allowed even after disconnection */
2166 	switch (cmd) {
2167 	case USBDEVFS_REAPURB:
2168 		snoop(&dev->dev, "%s: REAPURB\n", __func__);
2169 		ret = proc_reapurb(ps, p);
2170 		goto done;
2171 
2172 	case USBDEVFS_REAPURBNDELAY:
2173 		snoop(&dev->dev, "%s: REAPURBNDELAY\n", __func__);
2174 		ret = proc_reapurbnonblock(ps, p);
2175 		goto done;
2176 
2177 #ifdef CONFIG_COMPAT
2178 	case USBDEVFS_REAPURB32:
2179 		snoop(&dev->dev, "%s: REAPURB32\n", __func__);
2180 		ret = proc_reapurb_compat(ps, p);
2181 		goto done;
2182 
2183 	case USBDEVFS_REAPURBNDELAY32:
2184 		snoop(&dev->dev, "%s: REAPURBNDELAY32\n", __func__);
2185 		ret = proc_reapurbnonblock_compat(ps, p);
2186 		goto done;
2187 #endif
2188 	}
2189 
2190 	if (!connected(ps)) {
2191 		usb_unlock_device(dev);
2192 		return -ENODEV;
2193 	}
2194 
2195 	switch (cmd) {
2196 	case USBDEVFS_CONTROL:
2197 		snoop(&dev->dev, "%s: CONTROL\n", __func__);
2198 		ret = proc_control(ps, p);
2199 		if (ret >= 0)
2200 			inode->i_mtime = CURRENT_TIME;
2201 		break;
2202 
2203 	case USBDEVFS_BULK:
2204 		snoop(&dev->dev, "%s: BULK\n", __func__);
2205 		ret = proc_bulk(ps, p);
2206 		if (ret >= 0)
2207 			inode->i_mtime = CURRENT_TIME;
2208 		break;
2209 
2210 	case USBDEVFS_RESETEP:
2211 		snoop(&dev->dev, "%s: RESETEP\n", __func__);
2212 		ret = proc_resetep(ps, p);
2213 		if (ret >= 0)
2214 			inode->i_mtime = CURRENT_TIME;
2215 		break;
2216 
2217 	case USBDEVFS_RESET:
2218 		snoop(&dev->dev, "%s: RESET\n", __func__);
2219 		ret = proc_resetdevice(ps);
2220 		break;
2221 
2222 	case USBDEVFS_CLEAR_HALT:
2223 		snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
2224 		ret = proc_clearhalt(ps, p);
2225 		if (ret >= 0)
2226 			inode->i_mtime = CURRENT_TIME;
2227 		break;
2228 
2229 	case USBDEVFS_GETDRIVER:
2230 		snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
2231 		ret = proc_getdriver(ps, p);
2232 		break;
2233 
2234 	case USBDEVFS_CONNECTINFO:
2235 		snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
2236 		ret = proc_connectinfo(ps, p);
2237 		break;
2238 
2239 	case USBDEVFS_SETINTERFACE:
2240 		snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
2241 		ret = proc_setintf(ps, p);
2242 		break;
2243 
2244 	case USBDEVFS_SETCONFIGURATION:
2245 		snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
2246 		ret = proc_setconfig(ps, p);
2247 		break;
2248 
2249 	case USBDEVFS_SUBMITURB:
2250 		snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
2251 		ret = proc_submiturb(ps, p);
2252 		if (ret >= 0)
2253 			inode->i_mtime = CURRENT_TIME;
2254 		break;
2255 
2256 #ifdef CONFIG_COMPAT
2257 	case USBDEVFS_CONTROL32:
2258 		snoop(&dev->dev, "%s: CONTROL32\n", __func__);
2259 		ret = proc_control_compat(ps, p);
2260 		if (ret >= 0)
2261 			inode->i_mtime = CURRENT_TIME;
2262 		break;
2263 
2264 	case USBDEVFS_BULK32:
2265 		snoop(&dev->dev, "%s: BULK32\n", __func__);
2266 		ret = proc_bulk_compat(ps, p);
2267 		if (ret >= 0)
2268 			inode->i_mtime = CURRENT_TIME;
2269 		break;
2270 
2271 	case USBDEVFS_DISCSIGNAL32:
2272 		snoop(&dev->dev, "%s: DISCSIGNAL32\n", __func__);
2273 		ret = proc_disconnectsignal_compat(ps, p);
2274 		break;
2275 
2276 	case USBDEVFS_SUBMITURB32:
2277 		snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
2278 		ret = proc_submiturb_compat(ps, p);
2279 		if (ret >= 0)
2280 			inode->i_mtime = CURRENT_TIME;
2281 		break;
2282 
2283 	case USBDEVFS_IOCTL32:
2284 		snoop(&dev->dev, "%s: IOCTL32\n", __func__);
2285 		ret = proc_ioctl_compat(ps, ptr_to_compat(p));
2286 		break;
2287 #endif
2288 
2289 	case USBDEVFS_DISCARDURB:
2290 		snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
2291 		ret = proc_unlinkurb(ps, p);
2292 		break;
2293 
2294 	case USBDEVFS_DISCSIGNAL:
2295 		snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
2296 		ret = proc_disconnectsignal(ps, p);
2297 		break;
2298 
2299 	case USBDEVFS_CLAIMINTERFACE:
2300 		snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
2301 		ret = proc_claiminterface(ps, p);
2302 		break;
2303 
2304 	case USBDEVFS_RELEASEINTERFACE:
2305 		snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
2306 		ret = proc_releaseinterface(ps, p);
2307 		break;
2308 
2309 	case USBDEVFS_IOCTL:
2310 		snoop(&dev->dev, "%s: IOCTL\n", __func__);
2311 		ret = proc_ioctl_default(ps, p);
2312 		break;
2313 
2314 	case USBDEVFS_CLAIM_PORT:
2315 		snoop(&dev->dev, "%s: CLAIM_PORT\n", __func__);
2316 		ret = proc_claim_port(ps, p);
2317 		break;
2318 
2319 	case USBDEVFS_RELEASE_PORT:
2320 		snoop(&dev->dev, "%s: RELEASE_PORT\n", __func__);
2321 		ret = proc_release_port(ps, p);
2322 		break;
2323 	case USBDEVFS_GET_CAPABILITIES:
2324 		ret = proc_get_capabilities(ps, p);
2325 		break;
2326 	case USBDEVFS_DISCONNECT_CLAIM:
2327 		ret = proc_disconnect_claim(ps, p);
2328 		break;
2329 	case USBDEVFS_ALLOC_STREAMS:
2330 		ret = proc_alloc_streams(ps, p);
2331 		break;
2332 	case USBDEVFS_FREE_STREAMS:
2333 		ret = proc_free_streams(ps, p);
2334 		break;
2335 	}
2336 
2337  done:
2338 	usb_unlock_device(dev);
2339 	if (ret >= 0)
2340 		inode->i_atime = CURRENT_TIME;
2341 	return ret;
2342 }
2343 
usbdev_ioctl(struct file * file,unsigned int cmd,unsigned long arg)2344 static long usbdev_ioctl(struct file *file, unsigned int cmd,
2345 			unsigned long arg)
2346 {
2347 	int ret;
2348 
2349 	ret = usbdev_do_ioctl(file, cmd, (void __user *)arg);
2350 
2351 	return ret;
2352 }
2353 
2354 #ifdef CONFIG_COMPAT
usbdev_compat_ioctl(struct file * file,unsigned int cmd,unsigned long arg)2355 static long usbdev_compat_ioctl(struct file *file, unsigned int cmd,
2356 			unsigned long arg)
2357 {
2358 	int ret;
2359 
2360 	ret = usbdev_do_ioctl(file, cmd, compat_ptr(arg));
2361 
2362 	return ret;
2363 }
2364 #endif
2365 
2366 /* No kernel lock - fine */
usbdev_poll(struct file * file,struct poll_table_struct * wait)2367 static unsigned int usbdev_poll(struct file *file,
2368 				struct poll_table_struct *wait)
2369 {
2370 	struct usb_dev_state *ps = file->private_data;
2371 	unsigned int mask = 0;
2372 
2373 	poll_wait(file, &ps->wait, wait);
2374 	if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
2375 		mask |= POLLOUT | POLLWRNORM;
2376 	if (!connected(ps))
2377 		mask |= POLLERR | POLLHUP;
2378 	return mask;
2379 }
2380 
2381 const struct file_operations usbdev_file_operations = {
2382 	.owner =	  THIS_MODULE,
2383 	.llseek =	  usbdev_lseek,
2384 	.read =		  usbdev_read,
2385 	.poll =		  usbdev_poll,
2386 	.unlocked_ioctl = usbdev_ioctl,
2387 #ifdef CONFIG_COMPAT
2388 	.compat_ioctl =   usbdev_compat_ioctl,
2389 #endif
2390 	.open =		  usbdev_open,
2391 	.release =	  usbdev_release,
2392 };
2393 
usbdev_remove(struct usb_device * udev)2394 static void usbdev_remove(struct usb_device *udev)
2395 {
2396 	struct usb_dev_state *ps;
2397 	struct siginfo sinfo;
2398 
2399 	while (!list_empty(&udev->filelist)) {
2400 		ps = list_entry(udev->filelist.next, struct usb_dev_state, list);
2401 		destroy_all_async(ps);
2402 		wake_up_all(&ps->wait);
2403 		list_del_init(&ps->list);
2404 		if (ps->discsignr) {
2405 			memset(&sinfo, 0, sizeof(sinfo));
2406 			sinfo.si_signo = ps->discsignr;
2407 			sinfo.si_errno = EPIPE;
2408 			sinfo.si_code = SI_ASYNCIO;
2409 			sinfo.si_addr = ps->disccontext;
2410 			kill_pid_info_as_cred(ps->discsignr, &sinfo,
2411 					ps->disc_pid, ps->cred, ps->secid);
2412 		}
2413 	}
2414 }
2415 
usbdev_notify(struct notifier_block * self,unsigned long action,void * dev)2416 static int usbdev_notify(struct notifier_block *self,
2417 			       unsigned long action, void *dev)
2418 {
2419 	switch (action) {
2420 	case USB_DEVICE_ADD:
2421 		break;
2422 	case USB_DEVICE_REMOVE:
2423 		usbdev_remove(dev);
2424 		break;
2425 	}
2426 	return NOTIFY_OK;
2427 }
2428 
2429 static struct notifier_block usbdev_nb = {
2430 	.notifier_call = 	usbdev_notify,
2431 };
2432 
2433 static struct cdev usb_device_cdev;
2434 
usb_devio_init(void)2435 int __init usb_devio_init(void)
2436 {
2437 	int retval;
2438 
2439 	retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
2440 					"usb_device");
2441 	if (retval) {
2442 		printk(KERN_ERR "Unable to register minors for usb_device\n");
2443 		goto out;
2444 	}
2445 	cdev_init(&usb_device_cdev, &usbdev_file_operations);
2446 	retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
2447 	if (retval) {
2448 		printk(KERN_ERR "Unable to get usb_device major %d\n",
2449 		       USB_DEVICE_MAJOR);
2450 		goto error_cdev;
2451 	}
2452 	usb_register_notify(&usbdev_nb);
2453 out:
2454 	return retval;
2455 
2456 error_cdev:
2457 	unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
2458 	goto out;
2459 }
2460 
usb_devio_cleanup(void)2461 void usb_devio_cleanup(void)
2462 {
2463 	usb_unregister_notify(&usbdev_nb);
2464 	cdev_del(&usb_device_cdev);
2465 	unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
2466 }
2467