devio.c 55.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*****************************************************************************/

/*
 *      devio.c  --  User space communication with USB devices.
 *
 *      Copyright (C) 1999-2000  Thomas Sailer (sailer@ife.ee.ethz.ch)
 *
 *      This program is free software; you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation; either version 2 of the License, or
 *      (at your option) any later version.
 *
 *      This program is distributed in the hope that it will be useful,
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *      GNU General Public License for more details.
 *
 *      You should have received a copy of the GNU General Public License
 *      along with this program; if not, write to the Free Software
 *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *  This file implements the usbfs/x/y files, where
 *  x is the bus number and y the device number.
 *
 *  It allows user space programs/"drivers" to communicate directly
 *  with USB devices without intervening kernel driver.
 *
 *  Revision history
 *    22.12.1999   0.1   Initial release (split from proc_usb.c)
 *    04.01.2000   0.2   Turned into its own filesystem
31 32
 *    30.09.2005   0.3   Fix user-triggerable oops in async URB delivery
 *    			 (CAN-2005-3055)
L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41 42
 */

/*****************************************************************************/

#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/signal.h>
#include <linux/poll.h>
#include <linux/module.h>
43
#include <linux/string.h>
L
Linus Torvalds 已提交
44 45
#include <linux/usb.h>
#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>
L
Linus Torvalds 已提交
53 54 55 56 57
#include <asm/byteorder.h>
#include <linux/moduleparam.h>

#include "usb.h"

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 63 64
/* Mutual exclusion for removal, open, and release */
DEFINE_MUTEX(usbfs_mutex);

65 66 67 68 69 70 71 72 73 74
struct dev_state {
	struct list_head list;      /* state list */
	struct usb_device *dev;
	struct file *file;
	spinlock_t lock;            /* protects the async urb lists */
	struct list_head async_pending;
	struct list_head async_completed;
	wait_queue_head_t wait;     /* wake up if a request completed */
	unsigned int discsignr;
	struct pid *disc_pid;
75
	const struct cred *cred;
76 77 78
	void __user *disccontext;
	unsigned long ifclaimed;
	u32 secid;
79
	u32 disabled_bulk_eps;
80 81
};

L
Linus Torvalds 已提交
82 83 84
struct async {
	struct list_head asynclist;
	struct dev_state *ps;
85
	struct pid *pid;
86
	const struct cred *cred;
L
Linus Torvalds 已提交
87 88 89 90 91
	unsigned int signr;
	unsigned int ifnum;
	void __user *userbuffer;
	void __user *userurb;
	struct urb *urb;
92
	unsigned int mem_usage;
93
	int status;
94
	u32 secid;
95 96
	u8 bulk_addr;
	u8 bulk_status;
L
Linus Torvalds 已提交
97 98
};

99
static bool usbfs_snoop;
100 101
module_param(usbfs_snoop, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(usbfs_snoop, "true to log all usbfs traffic");
L
Linus Torvalds 已提交
102 103 104 105

#define snoop(dev, format, arg...)				\
	do {							\
		if (usbfs_snoop)				\
106
			dev_info(dev , format , ## arg);	\
L
Linus Torvalds 已提交
107 108
	} while (0)

109 110 111
enum snoop_when {
	SUBMIT, COMPLETE
};
112

113
#define USB_DEVICE_DEV		MKDEV(USB_DEVICE_MAJOR, 0)
L
Linus Torvalds 已提交
114

115
/* Limit on the total amount of memory we can allocate for transfers */
116 117 118 119 120
static unsigned usbfs_memory_mb = 16;
module_param(usbfs_memory_mb, uint, 0644);
MODULE_PARM_DESC(usbfs_memory_mb,
		"maximum MB allowed for usbfs buffers (0 = no limit)");

121
/* Hard limit, necessary to avoid arithmetic overflow */
122
#define USBFS_XFER_MAX		(UINT_MAX / 2 - 1000000)
L
Linus Torvalds 已提交
123

124 125 126 127 128
static atomic_t usbfs_memory_usage;	/* Total memory currently allocated */

/* Check whether it's okay to allocate more memory for a transfer */
static int usbfs_increase_memory_usage(unsigned amount)
{
129 130 131 132 133 134 135 136 137 138 139 140
	unsigned lim;

	/*
	 * Convert usbfs_memory_mb to bytes, avoiding overflows.
	 * 0 means use the hard limit (effectively unlimited).
	 */
	lim = ACCESS_ONCE(usbfs_memory_mb);
	if (lim == 0 || lim > (USBFS_XFER_MAX >> 20))
		lim = USBFS_XFER_MAX;
	else
		lim <<= 20;

141
	atomic_add(amount, &usbfs_memory_usage);
142
	if (atomic_read(&usbfs_memory_usage) <= lim)
143 144 145 146 147 148 149 150 151 152
		return 0;
	atomic_sub(amount, &usbfs_memory_usage);
	return -ENOMEM;
}

/* Memory for a transfer is being deallocated */
static void usbfs_decrease_memory_usage(unsigned amount)
{
	atomic_sub(amount, &usbfs_memory_usage);
}
153

154
static int connected(struct dev_state *ps)
L
Linus Torvalds 已提交
155
{
A
Alan Stern 已提交
156 157
	return (!list_empty(&ps->list) &&
			ps->dev->state != USB_STATE_NOTATTACHED);
L
Linus Torvalds 已提交
158 159 160 161 162 163
}

static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig)
{
	loff_t ret;

A
Al Viro 已提交
164
	mutex_lock(&file_inode(file)->i_mutex);
L
Linus Torvalds 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179

	switch (orig) {
	case 0:
		file->f_pos = offset;
		ret = file->f_pos;
		break;
	case 1:
		file->f_pos += offset;
		ret = file->f_pos;
		break;
	case 2:
	default:
		ret = -EINVAL;
	}

A
Al Viro 已提交
180
	mutex_unlock(&file_inode(file)->i_mutex);
L
Linus Torvalds 已提交
181 182 183
	return ret;
}

184 185
static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
			   loff_t *ppos)
L
Linus Torvalds 已提交
186
{
187
	struct dev_state *ps = file->private_data;
L
Linus Torvalds 已提交
188 189 190 191 192 193 194 195
	struct usb_device *dev = ps->dev;
	ssize_t ret = 0;
	unsigned len;
	loff_t pos;
	int i;

	pos = *ppos;
	usb_lock_device(dev);
A
Alan Stern 已提交
196
	if (!connected(ps)) {
L
Linus Torvalds 已提交
197 198 199 200 201 202 203 204
		ret = -ENODEV;
		goto err;
	} else if (pos < 0) {
		ret = -EINVAL;
		goto err;
	}

	if (pos < sizeof(struct usb_device_descriptor)) {
205 206
		/* 18 bytes - fits on the stack */
		struct usb_device_descriptor temp_desc;
207 208

		memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
209 210 211 212
		le16_to_cpus(&temp_desc.bcdUSB);
		le16_to_cpus(&temp_desc.idVendor);
		le16_to_cpus(&temp_desc.idProduct);
		le16_to_cpus(&temp_desc.bcdDevice);
L
Linus Torvalds 已提交
213 214 215 216

		len = sizeof(struct usb_device_descriptor) - pos;
		if (len > nbytes)
			len = nbytes;
217
		if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
L
Linus Torvalds 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
			ret = -EFAULT;
			goto err;
		}

		*ppos += len;
		buf += len;
		nbytes -= len;
		ret += len;
	}

	pos = sizeof(struct usb_device_descriptor);
	for (i = 0; nbytes && i < dev->descriptor.bNumConfigurations; i++) {
		struct usb_config_descriptor *config =
			(struct usb_config_descriptor *)dev->rawdescriptors[i];
		unsigned int length = le16_to_cpu(config->wTotalLength);

		if (*ppos < pos + length) {

			/* The descriptor may claim to be longer than it
			 * really is.  Here is the actual allocated length. */
			unsigned alloclen =
				le16_to_cpu(dev->config[i].desc.wTotalLength);

			len = length - (*ppos - pos);
			if (len > nbytes)
				len = nbytes;

			/* Simply don't write (skip over) unallocated parts */
			if (alloclen > (*ppos - pos)) {
				alloclen -= (*ppos - pos);
				if (copy_to_user(buf,
				    dev->rawdescriptors[i] + (*ppos - pos),
				    min(len, alloclen))) {
					ret = -EFAULT;
					goto err;
				}
			}

			*ppos += len;
			buf += len;
			nbytes -= len;
			ret += len;
		}

		pos += length;
	}

err:
	usb_unlock_device(dev);
	return ret;
}

/*
 * async list handling
 */

static struct async *alloc_async(unsigned int numisoframes)
{
276
	struct async *as;
277

278
	as = kzalloc(sizeof(struct async), GFP_KERNEL);
279 280
	if (!as)
		return NULL;
L
Linus Torvalds 已提交
281 282 283 284 285
	as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
	if (!as->urb) {
		kfree(as);
		return NULL;
	}
286
	return as;
L
Linus Torvalds 已提交
287 288 289 290
}

static void free_async(struct async *as)
{
291 292
	int i;

293
	put_pid(as->pid);
294 295
	if (as->cred)
		put_cred(as->cred);
296 297 298 299 300
	for (i = 0; i < as->urb->num_sgs; i++) {
		if (sg_page(&as->urb->sg[i]))
			kfree(sg_virt(&as->urb->sg[i]));
	}
	kfree(as->urb->sg);
301 302
	kfree(as->urb->transfer_buffer);
	kfree(as->urb->setup_packet);
L
Linus Torvalds 已提交
303
	usb_free_urb(as->urb);
304
	usbfs_decrease_memory_usage(as->mem_usage);
305
	kfree(as);
L
Linus Torvalds 已提交
306 307
}

308
static void async_newpending(struct async *as)
L
Linus Torvalds 已提交
309
{
310 311 312 313 314 315
	struct dev_state *ps = as->ps;
	unsigned long flags;

	spin_lock_irqsave(&ps->lock, flags);
	list_add_tail(&as->asynclist, &ps->async_pending);
	spin_unlock_irqrestore(&ps->lock, flags);
L
Linus Torvalds 已提交
316 317
}

318
static void async_removepending(struct async *as)
L
Linus Torvalds 已提交
319
{
320 321 322 323 324 325
	struct dev_state *ps = as->ps;
	unsigned long flags;

	spin_lock_irqsave(&ps->lock, flags);
	list_del_init(&as->asynclist);
	spin_unlock_irqrestore(&ps->lock, flags);
L
Linus Torvalds 已提交
326 327
}

328
static struct async *async_getcompleted(struct dev_state *ps)
L
Linus Torvalds 已提交
329
{
330 331 332 333 334 335 336 337 338 339 340
	unsigned long flags;
	struct async *as = NULL;

	spin_lock_irqsave(&ps->lock, flags);
	if (!list_empty(&ps->async_completed)) {
		as = list_entry(ps->async_completed.next, struct async,
				asynclist);
		list_del_init(&as->asynclist);
	}
	spin_unlock_irqrestore(&ps->lock, flags);
	return as;
L
Linus Torvalds 已提交
341 342
}

343
static struct async *async_getpending(struct dev_state *ps,
344
					     void __user *userurb)
L
Linus Torvalds 已提交
345
{
346
	struct async *as;
L
Linus Torvalds 已提交
347 348 349 350 351 352

	list_for_each_entry(as, &ps->async_pending, asynclist)
		if (as->userurb == userurb) {
			list_del_init(&as->asynclist);
			return as;
		}
H
Huajun Li 已提交
353

354
	return NULL;
L
Linus Torvalds 已提交
355 356
}

357 358
static void snoop_urb(struct usb_device *udev,
		void __user *userurb, int pipe, unsigned length,
359 360
		int timeout_or_status, enum snoop_when when,
		unsigned char *data, unsigned data_len)
361
{
362 363 364 365
	static const char *types[] = {"isoc", "int", "ctrl", "bulk"};
	static const char *dirs[] = {"out", "in"};
	int ep;
	const char *t, *d;
366 367 368 369

	if (!usbfs_snoop)
		return;

370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
	ep = usb_pipeendpoint(pipe);
	t = types[usb_pipetype(pipe)];
	d = dirs[!!usb_pipein(pipe)];

	if (userurb) {		/* Async */
		if (when == SUBMIT)
			dev_info(&udev->dev, "userurb %p, ep%d %s-%s, "
					"length %u\n",
					userurb, ep, t, d, length);
		else
			dev_info(&udev->dev, "userurb %p, ep%d %s-%s, "
					"actual_length %u status %d\n",
					userurb, ep, t, d, length,
					timeout_or_status);
	} else {
		if (when == SUBMIT)
			dev_info(&udev->dev, "ep%d %s-%s, length %u, "
					"timeout %d\n",
					ep, t, d, length, timeout_or_status);
		else
			dev_info(&udev->dev, "ep%d %s-%s, actual_length %u, "
					"status %d\n",
					ep, t, d, length, timeout_or_status);
	}
394 395 396 397 398

	if (data && data_len > 0) {
		print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
			data, data_len, 1);
	}
399 400
}

401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
static void snoop_urb_data(struct urb *urb, unsigned len)
{
	int i, size;

	if (!usbfs_snoop)
		return;

	if (urb->num_sgs == 0) {
		print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
			urb->transfer_buffer, len, 1);
		return;
	}

	for (i = 0; i < urb->num_sgs && len; i++) {
		size = (len > USB_SG_SIZE) ? USB_SG_SIZE : len;
		print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
			sg_virt(&urb->sg[i]), size, 1);
		len -= size;
	}
}

static int copy_urb_data_to_user(u8 __user *userbuffer, struct urb *urb)
{
	unsigned i, len, size;

	if (urb->number_of_packets > 0)		/* Isochronous */
		len = urb->transfer_buffer_length;
	else					/* Non-Isoc */
		len = urb->actual_length;

	if (urb->num_sgs == 0) {
		if (copy_to_user(userbuffer, urb->transfer_buffer, len))
			return -EFAULT;
		return 0;
	}

	for (i = 0; i < urb->num_sgs && len; i++) {
		size = (len > USB_SG_SIZE) ? USB_SG_SIZE : len;
		if (copy_to_user(userbuffer, sg_virt(&urb->sg[i]), size))
			return -EFAULT;
		userbuffer += size;
		len -= size;
	}

	return 0;
}

448 449 450 451 452 453 454
#define AS_CONTINUATION	1
#define AS_UNLINK	2

static void cancel_bulk_urbs(struct dev_state *ps, unsigned bulk_addr)
__releases(ps->lock)
__acquires(ps->lock)
{
H
Huajun Li 已提交
455
	struct urb *urb;
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
	struct async *as;

	/* Mark all the pending URBs that match bulk_addr, up to but not
	 * including the first one without AS_CONTINUATION.  If such an
	 * URB is encountered then a new transfer has already started so
	 * the endpoint doesn't need to be disabled; otherwise it does.
	 */
	list_for_each_entry(as, &ps->async_pending, asynclist) {
		if (as->bulk_addr == bulk_addr) {
			if (as->bulk_status != AS_CONTINUATION)
				goto rescan;
			as->bulk_status = AS_UNLINK;
			as->bulk_addr = 0;
		}
	}
	ps->disabled_bulk_eps |= (1 << bulk_addr);

	/* Now carefully unlink all the marked pending URBs */
 rescan:
	list_for_each_entry(as, &ps->async_pending, asynclist) {
		if (as->bulk_status == AS_UNLINK) {
			as->bulk_status = 0;		/* Only once */
H
Huajun Li 已提交
478 479
			urb = as->urb;
			usb_get_urb(urb);
480
			spin_unlock(&ps->lock);		/* Allow completions */
H
Huajun Li 已提交
481 482
			usb_unlink_urb(urb);
			usb_put_urb(urb);
483 484 485 486 487 488
			spin_lock(&ps->lock);
			goto rescan;
		}
	}
}

489
static void async_completed(struct urb *urb)
L
Linus Torvalds 已提交
490
{
491 492
	struct async *as = urb->context;
	struct dev_state *ps = as->ps;
L
Linus Torvalds 已提交
493
	struct siginfo sinfo;
494 495
	struct pid *pid = NULL;
	u32 secid = 0;
496
	const struct cred *cred = NULL;
497
	int signr;
L
Linus Torvalds 已提交
498

499 500
	spin_lock(&ps->lock);
	list_move_tail(&as->asynclist, &ps->async_completed);
501
	as->status = urb->status;
502 503
	signr = as->signr;
	if (signr) {
L
Linus Torvalds 已提交
504
		sinfo.si_signo = as->signr;
505
		sinfo.si_errno = as->status;
L
Linus Torvalds 已提交
506 507
		sinfo.si_code = SI_ASYNCIO;
		sinfo.si_addr = as->userurb;
508
		pid = get_pid(as->pid);
509
		cred = get_cred(as->cred);
510
		secid = as->secid;
L
Linus Torvalds 已提交
511
	}
512
	snoop(&urb->dev->dev, "urb complete\n");
513
	snoop_urb(urb->dev, as->userurb, urb->pipe, urb->actual_length,
514 515 516 517
			as->status, COMPLETE, NULL, 0);
	if ((urb->transfer_flags & URB_DIR_MASK) == USB_DIR_IN)
		snoop_urb_data(urb, urb->actual_length);

518 519 520
	if (as->status < 0 && as->bulk_addr && as->status != -ECONNRESET &&
			as->status != -ENOENT)
		cancel_bulk_urbs(ps, as->bulk_addr);
521 522
	spin_unlock(&ps->lock);

523
	if (signr) {
524
		kill_pid_info_as_cred(sinfo.si_signo, &sinfo, pid, cred, secid);
525
		put_pid(pid);
526
		put_cred(cred);
527
	}
528

529
	wake_up(&ps->wait);
L
Linus Torvalds 已提交
530 531
}

532
static void destroy_async(struct dev_state *ps, struct list_head *list)
L
Linus Torvalds 已提交
533
{
H
Huajun Li 已提交
534
	struct urb *urb;
L
Linus Torvalds 已提交
535 536 537 538 539 540 541
	struct async *as;
	unsigned long flags;

	spin_lock_irqsave(&ps->lock, flags);
	while (!list_empty(list)) {
		as = list_entry(list->next, struct async, asynclist);
		list_del_init(&as->asynclist);
H
Huajun Li 已提交
542 543
		urb = as->urb;
		usb_get_urb(urb);
L
Linus Torvalds 已提交
544 545 546

		/* drop the spinlock so the completion handler can run */
		spin_unlock_irqrestore(&ps->lock, flags);
H
Huajun Li 已提交
547 548
		usb_kill_urb(urb);
		usb_put_urb(urb);
L
Linus Torvalds 已提交
549 550 551 552 553
		spin_lock_irqsave(&ps->lock, flags);
	}
	spin_unlock_irqrestore(&ps->lock, flags);
}

554 555
static void destroy_async_on_interface(struct dev_state *ps,
				       unsigned int ifnum)
L
Linus Torvalds 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568
{
	struct list_head *p, *q, hitlist;
	unsigned long flags;

	INIT_LIST_HEAD(&hitlist);
	spin_lock_irqsave(&ps->lock, flags);
	list_for_each_safe(p, q, &ps->async_pending)
		if (ifnum == list_entry(p, struct async, asynclist)->ifnum)
			list_move_tail(p, &hitlist);
	spin_unlock_irqrestore(&ps->lock, flags);
	destroy_async(ps, &hitlist);
}

569
static void destroy_all_async(struct dev_state *ps)
L
Linus Torvalds 已提交
570
{
571
	destroy_async(ps, &ps->async_pending);
L
Linus Torvalds 已提交
572 573 574 575 576 577 578 579
}

/*
 * interface claims are made only at the request of user level code,
 * which can also release them (explicitly or by closing files).
 * they're also undone when devices disconnect.
 */

580 581
static int driver_probe(struct usb_interface *intf,
			const struct usb_device_id *id)
L
Linus Torvalds 已提交
582 583 584 585 586 587
{
	return -ENODEV;
}

static void driver_disconnect(struct usb_interface *intf)
{
588
	struct dev_state *ps = usb_get_intfdata(intf);
L
Linus Torvalds 已提交
589 590 591 592 593 594 595 596 597 598 599 600
	unsigned int ifnum = intf->altsetting->desc.bInterfaceNumber;

	if (!ps)
		return;

	/* NOTE:  this relies on usbcore having canceled and completed
	 * all pending I/O requests; 2.6 does that.
	 */

	if (likely(ifnum < 8*sizeof(ps->ifclaimed)))
		clear_bit(ifnum, &ps->ifclaimed);
	else
601 602
		dev_warn(&intf->dev, "interface number %u out of range\n",
			 ifnum);
L
Linus Torvalds 已提交
603

604
	usb_set_intfdata(intf, NULL);
L
Linus Torvalds 已提交
605 606 607 608 609

	/* force async requests to complete */
	destroy_async_on_interface(ps, ifnum);
}

610 611 612 613 614 615 616 617 618 619 620 621 622
/* The following routines are merely placeholders.  There is no way
 * to inform a user task about suspend or resumes.
 */
static int driver_suspend(struct usb_interface *intf, pm_message_t msg)
{
	return 0;
}

static int driver_resume(struct usb_interface *intf)
{
	return 0;
}

L
Linus Torvalds 已提交
623 624 625 626
struct usb_driver usbfs_driver = {
	.name =		"usbfs",
	.probe =	driver_probe,
	.disconnect =	driver_disconnect,
627 628
	.suspend =	driver_suspend,
	.resume =	driver_resume,
L
Linus Torvalds 已提交
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
};

static int claimintf(struct dev_state *ps, unsigned int ifnum)
{
	struct usb_device *dev = ps->dev;
	struct usb_interface *intf;
	int err;

	if (ifnum >= 8*sizeof(ps->ifclaimed))
		return -EINVAL;
	/* already claimed */
	if (test_bit(ifnum, &ps->ifclaimed))
		return 0;

	intf = usb_ifnum_to_if(dev, ifnum);
	if (!intf)
		err = -ENOENT;
	else
		err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
	if (err == 0)
		set_bit(ifnum, &ps->ifclaimed);
	return err;
}

static int releaseintf(struct dev_state *ps, unsigned int ifnum)
{
	struct usb_device *dev;
	struct usb_interface *intf;
	int err;

	err = -EINVAL;
	if (ifnum >= 8*sizeof(ps->ifclaimed))
		return err;
	dev = ps->dev;
	intf = usb_ifnum_to_if(dev, ifnum);
	if (!intf)
		err = -ENOENT;
	else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
		usb_driver_release_interface(&usbfs_driver, intf);
		err = 0;
	}
	return err;
}

static int checkintf(struct dev_state *ps, unsigned int ifnum)
{
	if (ps->dev->state != USB_STATE_CONFIGURED)
		return -EHOSTUNREACH;
	if (ifnum >= 8*sizeof(ps->ifclaimed))
		return -EINVAL;
	if (test_bit(ifnum, &ps->ifclaimed))
		return 0;
	/* if not yet claimed, claim it for the driver */
682 683 684
	dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
		 "interface %u before use\n", task_pid_nr(current),
		 current->comm, ifnum);
L
Linus Torvalds 已提交
685 686 687 688 689 690
	return claimintf(ps, ifnum);
}

static int findintfep(struct usb_device *dev, unsigned int ep)
{
	unsigned int i, j, e;
691
	struct usb_interface *intf;
L
Linus Torvalds 已提交
692 693 694 695 696 697 698 699 700 701
	struct usb_host_interface *alts;
	struct usb_endpoint_descriptor *endpt;

	if (ep & ~(USB_DIR_IN|0xf))
		return -EINVAL;
	if (!dev->actconfig)
		return -ESRCH;
	for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
		intf = dev->actconfig->interface[i];
		for (j = 0; j < intf->num_altsetting; j++) {
702
			alts = &intf->altsetting[j];
L
Linus Torvalds 已提交
703 704 705 706 707 708 709
			for (e = 0; e < alts->desc.bNumEndpoints; e++) {
				endpt = &alts->endpoint[e].desc;
				if (endpt->bEndpointAddress == ep)
					return alts->desc.bInterfaceNumber;
			}
		}
	}
710
	return -ENOENT;
L
Linus Torvalds 已提交
711 712
}

713
static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype,
714
			   unsigned int request, unsigned int index)
L
Linus Torvalds 已提交
715 716
{
	int ret = 0;
717
	struct usb_host_interface *alt_setting;
L
Linus Torvalds 已提交
718

719 720
	if (ps->dev->state != USB_STATE_UNAUTHENTICATED
	 && ps->dev->state != USB_STATE_ADDRESS
721
	 && ps->dev->state != USB_STATE_CONFIGURED)
L
Linus Torvalds 已提交
722 723 724 725
		return -EHOSTUNREACH;
	if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
		return 0;

726 727
	/*
	 * check for the special corner case 'get_device_id' in the printer
728 729
	 * class specification, which we always want to allow as it is used
	 * to query things like ink level, etc.
730 731 732 733 734 735
	 */
	if (requesttype == 0xa1 && request == 0) {
		alt_setting = usb_find_alt_setting(ps->dev->actconfig,
						   index >> 8, index & 0xff);
		if (alt_setting
		 && alt_setting->desc.bInterfaceClass == USB_CLASS_PRINTER)
736
			return 0;
737 738
	}

L
Linus Torvalds 已提交
739 740 741
	index &= 0xff;
	switch (requesttype & USB_RECIP_MASK) {
	case USB_RECIP_ENDPOINT:
742 743
		if ((index & ~USB_DIR_IN) == 0)
			return 0;
744
		ret = findintfep(ps->dev, index);
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
		if (ret < 0) {
			/*
			 * Some not fully compliant Win apps seem to get
			 * index wrong and have the endpoint number here
			 * rather than the endpoint address (with the
			 * correct direction). Win does let this through,
			 * so we'll not reject it here but leave it to
			 * the device to not break KVM. But we warn.
			 */
			ret = findintfep(ps->dev, index ^ 0x80);
			if (ret >= 0)
				dev_info(&ps->dev->dev,
					"%s: process %i (%s) requesting ep %02x but needs %02x\n",
					__func__, task_pid_nr(current),
					current->comm, index, index ^ 0x80);
		}
761
		if (ret >= 0)
L
Linus Torvalds 已提交
762 763 764 765 766 767 768 769 770 771
			ret = checkintf(ps, ret);
		break;

	case USB_RECIP_INTERFACE:
		ret = checkintf(ps, index);
		break;
	}
	return ret;
}

772
static int match_devt(struct device *dev, void *data)
773
{
774
	return dev->devt == (dev_t) (unsigned long) data;
775
}
776

777
static struct usb_device *usbdev_lookup_by_devt(dev_t devt)
778 779 780
{
	struct device *dev;

781 782
	dev = bus_find_device(&usb_bus_type, NULL,
			      (void *) (unsigned long) devt, match_devt);
783 784 785 786
	if (!dev)
		return NULL;
	return container_of(dev, struct usb_device, dev);
}
787

L
Linus Torvalds 已提交
788 789 790 791 792
/*
 * file operations
 */
static int usbdev_open(struct inode *inode, struct file *file)
{
793
	struct usb_device *dev = NULL;
L
Linus Torvalds 已提交
794 795 796 797
	struct dev_state *ps;
	int ret;

	ret = -ENOMEM;
798 799
	ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
	if (!ps)
800
		goto out_free_ps;
L
Linus Torvalds 已提交
801

802
	ret = -ENODEV;
803

804 805 806
	/* Protect against simultaneous removal or release */
	mutex_lock(&usbfs_mutex);

807
	/* usbdev device-node */
808
	if (imajor(inode) == USB_DEVICE_MAJOR)
809
		dev = usbdev_lookup_by_devt(inode->i_rdev);
810 811 812 813 814 815 816 817 818 819

	mutex_unlock(&usbfs_mutex);

	if (!dev)
		goto out_free_ps;

	usb_lock_device(dev);
	if (dev->state == USB_STATE_NOTATTACHED)
		goto out_unlock_device;

820
	ret = usb_autoresume_device(dev);
821
	if (ret)
822
		goto out_unlock_device;
823

L
Linus Torvalds 已提交
824 825 826
	ps->dev = dev;
	ps->file = file;
	spin_lock_init(&ps->lock);
827
	INIT_LIST_HEAD(&ps->list);
L
Linus Torvalds 已提交
828 829 830 831
	INIT_LIST_HEAD(&ps->async_pending);
	INIT_LIST_HEAD(&ps->async_completed);
	init_waitqueue_head(&ps->wait);
	ps->discsignr = 0;
832
	ps->disc_pid = get_pid(task_pid(current));
833
	ps->cred = get_current_cred();
L
Linus Torvalds 已提交
834 835
	ps->disccontext = NULL;
	ps->ifclaimed = 0;
836
	security_task_getsecid(current, &ps->secid);
O
Oliver Neukum 已提交
837
	smp_wmb();
L
Linus Torvalds 已提交
838 839
	list_add_tail(&ps->list, &dev->filelist);
	file->private_data = ps;
840
	usb_unlock_device(dev);
841 842
	snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
			current->comm);
843 844 845 846 847 848 849
	return ret;

 out_unlock_device:
	usb_unlock_device(dev);
	usb_put_dev(dev);
 out_free_ps:
	kfree(ps);
850
	return ret;
L
Linus Torvalds 已提交
851 852 853 854
}

static int usbdev_release(struct inode *inode, struct file *file)
{
855
	struct dev_state *ps = file->private_data;
L
Linus Torvalds 已提交
856 857
	struct usb_device *dev = ps->dev;
	unsigned int ifnum;
858
	struct async *as;
L
Linus Torvalds 已提交
859 860

	usb_lock_device(dev);
861
	usb_hub_release_all_ports(dev, ps);
862

L
Linus Torvalds 已提交
863
	list_del_init(&ps->list);
864

L
Linus Torvalds 已提交
865 866 867 868 869 870
	for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
			ifnum++) {
		if (test_bit(ifnum, &ps->ifclaimed))
			releaseintf(ps, ifnum);
	}
	destroy_all_async(ps);
871
	usb_autosuspend_device(dev);
L
Linus Torvalds 已提交
872 873
	usb_unlock_device(dev);
	usb_put_dev(dev);
874
	put_pid(ps->disc_pid);
875
	put_cred(ps->cred);
876 877 878 879 880 881

	as = async_getcompleted(ps);
	while (as) {
		free_async(as);
		as = async_getcompleted(ps);
	}
L
Linus Torvalds 已提交
882
	kfree(ps);
883
	return 0;
L
Linus Torvalds 已提交
884 885 886 887 888 889 890 891
}

static int proc_control(struct dev_state *ps, void __user *arg)
{
	struct usb_device *dev = ps->dev;
	struct usbdevfs_ctrltransfer ctrl;
	unsigned int tmo;
	unsigned char *tbuf;
892
	unsigned wLength;
893
	int i, pipe, ret;
L
Linus Torvalds 已提交
894 895 896

	if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
		return -EFAULT;
897 898
	ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.bRequest,
			      ctrl.wIndex);
899
	if (ret)
L
Linus Torvalds 已提交
900
		return ret;
901 902
	wLength = ctrl.wLength;		/* To suppress 64k PAGE_SIZE warning */
	if (wLength > PAGE_SIZE)
L
Linus Torvalds 已提交
903
		return -EINVAL;
904 905 906 907
	ret = usbfs_increase_memory_usage(PAGE_SIZE + sizeof(struct urb) +
			sizeof(struct usb_ctrlrequest));
	if (ret)
		return ret;
908
	tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
909 910 911 912
	if (!tbuf) {
		ret = -ENOMEM;
		goto done;
	}
L
Linus Torvalds 已提交
913
	tmo = ctrl.timeout;
914 915 916
	snoop(&dev->dev, "control urb: bRequestType=%02x "
		"bRequest=%02x wValue=%04x "
		"wIndex=%04x wLength=%04x\n",
917 918
		ctrl.bRequestType, ctrl.bRequest, ctrl.wValue,
		ctrl.wIndex, ctrl.wLength);
L
Linus Torvalds 已提交
919
	if (ctrl.bRequestType & 0x80) {
920 921
		if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
					       ctrl.wLength)) {
922 923
			ret = -EINVAL;
			goto done;
L
Linus Torvalds 已提交
924
		}
925
		pipe = usb_rcvctrlpipe(dev, 0);
926
		snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT, NULL, 0);
L
Linus Torvalds 已提交
927 928

		usb_unlock_device(dev);
929
		i = usb_control_msg(dev, pipe, ctrl.bRequest,
930 931
				    ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
				    tbuf, ctrl.wLength, tmo);
L
Linus Torvalds 已提交
932
		usb_lock_device(dev);
933
		snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE,
934
			  tbuf, max(i, 0));
L
Linus Torvalds 已提交
935
		if ((i > 0) && ctrl.wLength) {
936
			if (copy_to_user(ctrl.data, tbuf, i)) {
937 938
				ret = -EFAULT;
				goto done;
L
Linus Torvalds 已提交
939 940 941 942 943
			}
		}
	} else {
		if (ctrl.wLength) {
			if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
944 945
				ret = -EFAULT;
				goto done;
L
Linus Torvalds 已提交
946 947
			}
		}
948
		pipe = usb_sndctrlpipe(dev, 0);
949 950
		snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT,
			tbuf, ctrl.wLength);
951

L
Linus Torvalds 已提交
952
		usb_unlock_device(dev);
953 954 955
		i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
				    ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
				    tbuf, ctrl.wLength, tmo);
L
Linus Torvalds 已提交
956
		usb_lock_device(dev);
957
		snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE, NULL, 0);
L
Linus Torvalds 已提交
958
	}
959
	if (i < 0 && i != -EPIPE) {
L
Linus Torvalds 已提交
960 961 962 963 964
		dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
			   "failed cmd %s rqt %u rq %u len %u ret %d\n",
			   current->comm, ctrl.bRequestType, ctrl.bRequest,
			   ctrl.wLength, i);
	}
965 966 967
	ret = i;
 done:
	free_page((unsigned long) tbuf);
968 969
	usbfs_decrease_memory_usage(PAGE_SIZE + sizeof(struct urb) +
			sizeof(struct usb_ctrlrequest));
970
	return ret;
L
Linus Torvalds 已提交
971 972 973 974 975 976 977 978 979
}

static int proc_bulk(struct dev_state *ps, void __user *arg)
{
	struct usb_device *dev = ps->dev;
	struct usbdevfs_bulktransfer bulk;
	unsigned int tmo, len1, pipe;
	int len2;
	unsigned char *tbuf;
980
	int i, ret;
L
Linus Torvalds 已提交
981 982 983

	if (copy_from_user(&bulk, arg, sizeof(bulk)))
		return -EFAULT;
984 985
	ret = findintfep(ps->dev, bulk.ep);
	if (ret < 0)
L
Linus Torvalds 已提交
986
		return ret;
987 988
	ret = checkintf(ps, ret);
	if (ret)
L
Linus Torvalds 已提交
989 990 991 992 993 994 995 996
		return ret;
	if (bulk.ep & USB_DIR_IN)
		pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
	else
		pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
	if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
		return -EINVAL;
	len1 = bulk.len;
997
	if (len1 >= USBFS_XFER_MAX)
L
Linus Torvalds 已提交
998
		return -EINVAL;
999 1000 1001 1002 1003 1004 1005
	ret = usbfs_increase_memory_usage(len1 + sizeof(struct urb));
	if (ret)
		return ret;
	if (!(tbuf = kmalloc(len1, GFP_KERNEL))) {
		ret = -ENOMEM;
		goto done;
	}
L
Linus Torvalds 已提交
1006 1007 1008
	tmo = bulk.timeout;
	if (bulk.ep & 0x80) {
		if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
1009 1010
			ret = -EINVAL;
			goto done;
L
Linus Torvalds 已提交
1011
		}
1012
		snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, NULL, 0);
1013

L
Linus Torvalds 已提交
1014 1015 1016
		usb_unlock_device(dev);
		i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
		usb_lock_device(dev);
1017
		snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, tbuf, len2);
1018

L
Linus Torvalds 已提交
1019 1020
		if (!i && len2) {
			if (copy_to_user(bulk.data, tbuf, len2)) {
1021 1022
				ret = -EFAULT;
				goto done;
L
Linus Torvalds 已提交
1023 1024 1025 1026 1027
			}
		}
	} else {
		if (len1) {
			if (copy_from_user(tbuf, bulk.data, len1)) {
1028 1029
				ret = -EFAULT;
				goto done;
L
Linus Torvalds 已提交
1030 1031
			}
		}
1032
		snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, tbuf, len1);
1033

L
Linus Torvalds 已提交
1034 1035 1036
		usb_unlock_device(dev);
		i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
		usb_lock_device(dev);
1037
		snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, NULL, 0);
L
Linus Torvalds 已提交
1038
	}
1039 1040
	ret = (i < 0 ? i : len2);
 done:
L
Linus Torvalds 已提交
1041
	kfree(tbuf);
1042
	usbfs_decrease_memory_usage(len1 + sizeof(struct urb));
1043
	return ret;
L
Linus Torvalds 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052
}

static int proc_resetep(struct dev_state *ps, void __user *arg)
{
	unsigned int ep;
	int ret;

	if (get_user(ep, (unsigned int __user *)arg))
		return -EFAULT;
1053 1054
	ret = findintfep(ps->dev, ep);
	if (ret < 0)
L
Linus Torvalds 已提交
1055
		return ret;
1056 1057
	ret = checkintf(ps, ret);
	if (ret)
L
Linus Torvalds 已提交
1058
		return ret;
1059
	usb_reset_endpoint(ps->dev, ep);
L
Linus Torvalds 已提交
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
	return 0;
}

static int proc_clearhalt(struct dev_state *ps, void __user *arg)
{
	unsigned int ep;
	int pipe;
	int ret;

	if (get_user(ep, (unsigned int __user *)arg))
		return -EFAULT;
1071 1072
	ret = findintfep(ps->dev, ep);
	if (ret < 0)
L
Linus Torvalds 已提交
1073
		return ret;
1074 1075
	ret = checkintf(ps, ret);
	if (ret)
L
Linus Torvalds 已提交
1076 1077
		return ret;
	if (ep & USB_DIR_IN)
1078 1079 1080
		pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
	else
		pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
L
Linus Torvalds 已提交
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096

	return usb_clear_halt(ps->dev, pipe);
}

static int proc_getdriver(struct dev_state *ps, void __user *arg)
{
	struct usbdevfs_getdriver gd;
	struct usb_interface *intf;
	int ret;

	if (copy_from_user(&gd, arg, sizeof(gd)))
		return -EFAULT;
	intf = usb_ifnum_to_if(ps->dev, gd.interface);
	if (!intf || !intf->dev.driver)
		ret = -ENODATA;
	else {
1097
		strlcpy(gd.driver, intf->dev.driver->name,
L
Linus Torvalds 已提交
1098 1099 1100 1101 1102 1103 1104 1105
				sizeof(gd.driver));
		ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
	}
	return ret;
}

static int proc_connectinfo(struct dev_state *ps, void __user *arg)
{
1106 1107 1108 1109
	struct usbdevfs_connectinfo ci = {
		.devnum = ps->dev->devnum,
		.slow = ps->dev->speed == USB_SPEED_LOW
	};
L
Linus Torvalds 已提交
1110 1111 1112 1113 1114 1115 1116 1117

	if (copy_to_user(arg, &ci, sizeof(ci)))
		return -EFAULT;
	return 0;
}

static int proc_resetdevice(struct dev_state *ps)
{
1118
	return usb_reset_device(ps->dev);
L
Linus Torvalds 已提交
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
}

static int proc_setintf(struct dev_state *ps, void __user *arg)
{
	struct usbdevfs_setinterface setintf;
	int ret;

	if (copy_from_user(&setintf, arg, sizeof(setintf)))
		return -EFAULT;
	if ((ret = checkintf(ps, setintf.interface)))
		return ret;
	return usb_set_interface(ps->dev, setintf.interface,
			setintf.altsetting);
}

static int proc_setconfig(struct dev_state *ps, void __user *arg)
{
1136
	int u;
L
Linus Torvalds 已提交
1137
	int status = 0;
1138
	struct usb_host_config *actconfig;
L
Linus Torvalds 已提交
1139

1140
	if (get_user(u, (int __user *)arg))
L
Linus Torvalds 已提交
1141 1142
		return -EFAULT;

1143 1144 1145 1146
	actconfig = ps->dev->actconfig;

	/* Don't touch the device if any interfaces are claimed.
	 * It could interfere with other drivers' operations, and if
L
Linus Torvalds 已提交
1147 1148
	 * an interface is claimed by usbfs it could easily deadlock.
	 */
1149 1150 1151 1152 1153 1154
	if (actconfig) {
		int i;

		for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
			if (usb_interface_claimed(actconfig->interface[i])) {
				dev_warn(&ps->dev->dev,
1155
					"usbfs: interface %d claimed by %s "
L
Linus Torvalds 已提交
1156 1157 1158 1159
					"while '%s' sets config #%d\n",
					actconfig->interface[i]
						->cur_altsetting
						->desc.bInterfaceNumber,
1160 1161
					actconfig->interface[i]
						->dev.driver->name,
L
Linus Torvalds 已提交
1162
					current->comm, u);
1163
				status = -EBUSY;
L
Linus Torvalds 已提交
1164 1165
				break;
			}
1166 1167
		}
	}
L
Linus Torvalds 已提交
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182

	/* SET_CONFIGURATION is often abused as a "cheap" driver reset,
	 * so avoid usb_set_configuration()'s kick to sysfs
	 */
	if (status == 0) {
		if (actconfig && actconfig->desc.bConfigurationValue == u)
			status = usb_reset_configuration(ps->dev);
		else
			status = usb_set_configuration(ps->dev, u);
	}

	return status;
}

static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
1183 1184
			struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
			void __user *arg)
L
Linus Torvalds 已提交
1185 1186 1187
{
	struct usbdevfs_iso_packet_desc *isopkt = NULL;
	struct usb_host_endpoint *ep;
1188
	struct async *as = NULL;
L
Linus Torvalds 已提交
1189 1190
	struct usb_ctrlrequest *dr = NULL;
	unsigned int u, totlen, isofrmlen;
1191 1192
	int i, ret, is_in, num_sgs = 0, ifnum = -1;
	void *buf;
L
Linus Torvalds 已提交
1193

1194 1195
	if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP |
				USBDEVFS_URB_SHORT_NOT_OK |
1196
				USBDEVFS_URB_BULK_CONTINUATION |
1197 1198 1199
				USBDEVFS_URB_NO_FSBR |
				USBDEVFS_URB_ZERO_PACKET |
				USBDEVFS_URB_NO_INTERRUPT))
L
Linus Torvalds 已提交
1200
		return -EINVAL;
1201
	if (uurb->buffer_length > 0 && !uurb->buffer)
L
Linus Torvalds 已提交
1202
		return -EINVAL;
1203 1204 1205 1206
	if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
	    (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
		ifnum = findintfep(ps->dev, uurb->endpoint);
		if (ifnum < 0)
L
Linus Torvalds 已提交
1207
			return ifnum;
1208 1209
		ret = checkintf(ps, ifnum);
		if (ret)
L
Linus Torvalds 已提交
1210 1211
			return ret;
	}
A
Alan Stern 已提交
1212 1213 1214 1215 1216 1217 1218
	if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
		is_in = 1;
		ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
	} else {
		is_in = 0;
		ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
	}
L
Linus Torvalds 已提交
1219 1220
	if (!ep)
		return -ENOENT;
1221 1222

	u = 0;
L
Linus Torvalds 已提交
1223 1224
	switch(uurb->type) {
	case USBDEVFS_URB_TYPE_CONTROL:
A
Alan Stern 已提交
1225
		if (!usb_endpoint_xfer_control(&ep->desc))
L
Linus Torvalds 已提交
1226
			return -EINVAL;
1227 1228
		/* min 8 byte setup packet */
		if (uurb->buffer_length < 8)
L
Linus Torvalds 已提交
1229
			return -EINVAL;
1230 1231
		dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
		if (!dr)
L
Linus Torvalds 已提交
1232 1233
			return -ENOMEM;
		if (copy_from_user(dr, uurb->buffer, 8)) {
1234 1235
			ret = -EFAULT;
			goto error;
L
Linus Torvalds 已提交
1236 1237
		}
		if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
1238 1239
			ret = -EINVAL;
			goto error;
L
Linus Torvalds 已提交
1240
		}
1241
		ret = check_ctrlrecip(ps, dr->bRequestType, dr->bRequest,
1242
				      le16_to_cpup(&dr->wIndex));
1243 1244
		if (ret)
			goto error;
L
Linus Torvalds 已提交
1245 1246 1247
		uurb->number_of_packets = 0;
		uurb->buffer_length = le16_to_cpup(&dr->wLength);
		uurb->buffer += 8;
A
Alan Stern 已提交
1248 1249 1250 1251 1252 1253 1254
		if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
			is_in = 1;
			uurb->endpoint |= USB_DIR_IN;
		} else {
			is_in = 0;
			uurb->endpoint &= ~USB_DIR_IN;
		}
1255 1256 1257 1258 1259 1260 1261
		snoop(&ps->dev->dev, "control urb: bRequestType=%02x "
			"bRequest=%02x wValue=%04x "
			"wIndex=%04x wLength=%04x\n",
			dr->bRequestType, dr->bRequest,
			__le16_to_cpup(&dr->wValue),
			__le16_to_cpup(&dr->wIndex),
			__le16_to_cpup(&dr->wLength));
1262
		u = sizeof(struct usb_ctrlrequest);
L
Linus Torvalds 已提交
1263 1264 1265
		break;

	case USBDEVFS_URB_TYPE_BULK:
A
Alan Stern 已提交
1266
		switch (usb_endpoint_type(&ep->desc)) {
L
Linus Torvalds 已提交
1267 1268 1269
		case USB_ENDPOINT_XFER_CONTROL:
		case USB_ENDPOINT_XFER_ISOC:
			return -EINVAL;
1270 1271 1272 1273
		case USB_ENDPOINT_XFER_INT:
			/* allow single-shot interrupt transfers */
			uurb->type = USBDEVFS_URB_TYPE_INTERRUPT;
			goto interrupt_urb;
L
Linus Torvalds 已提交
1274 1275
		}
		uurb->number_of_packets = 0;
1276 1277 1278
		num_sgs = DIV_ROUND_UP(uurb->buffer_length, USB_SG_SIZE);
		if (num_sgs == 1 || num_sgs > ps->dev->bus->sg_tablesize)
			num_sgs = 0;
L
Linus Torvalds 已提交
1279 1280
		break;

1281 1282 1283 1284 1285 1286 1287
	case USBDEVFS_URB_TYPE_INTERRUPT:
		if (!usb_endpoint_xfer_int(&ep->desc))
			return -EINVAL;
 interrupt_urb:
		uurb->number_of_packets = 0;
		break;

L
Linus Torvalds 已提交
1288 1289
	case USBDEVFS_URB_TYPE_ISO:
		/* arbitrary limit */
1290 1291
		if (uurb->number_of_packets < 1 ||
		    uurb->number_of_packets > 128)
L
Linus Torvalds 已提交
1292
			return -EINVAL;
A
Alan Stern 已提交
1293
		if (!usb_endpoint_xfer_isoc(&ep->desc))
L
Linus Torvalds 已提交
1294
			return -EINVAL;
1295 1296
		isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
				   uurb->number_of_packets;
L
Linus Torvalds 已提交
1297 1298 1299
		if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
			return -ENOMEM;
		if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
1300 1301
			ret = -EFAULT;
			goto error;
L
Linus Torvalds 已提交
1302 1303
		}
		for (totlen = u = 0; u < uurb->number_of_packets; u++) {
1304 1305 1306 1307 1308 1309 1310
			/*
			 * arbitrary limit need for USB 3.0
			 * bMaxBurst (0~15 allowed, 1~16 packets)
			 * bmAttributes (bit 1:0, mult 0~2, 1~3 packets)
			 * sizemax: 1024 * 16 * 3 = 49152
			 */
			if (isopkt[u].length > 49152) {
1311 1312
				ret = -EINVAL;
				goto error;
L
Linus Torvalds 已提交
1313 1314 1315
			}
			totlen += isopkt[u].length;
		}
1316
		u *= sizeof(struct usb_iso_packet_descriptor);
L
Linus Torvalds 已提交
1317 1318 1319 1320 1321 1322
		uurb->buffer_length = totlen;
		break;

	default:
		return -EINVAL;
	}
1323

1324
	if (uurb->buffer_length >= USBFS_XFER_MAX) {
1325 1326 1327
		ret = -EINVAL;
		goto error;
	}
1328 1329 1330
	if (uurb->buffer_length > 0 &&
			!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
				uurb->buffer, uurb->buffer_length)) {
1331 1332
		ret = -EFAULT;
		goto error;
L
Linus Torvalds 已提交
1333
	}
1334 1335
	as = alloc_async(uurb->number_of_packets);
	if (!as) {
1336 1337
		ret = -ENOMEM;
		goto error;
L
Linus Torvalds 已提交
1338
	}
1339 1340 1341

	u += sizeof(struct async) + sizeof(struct urb) + uurb->buffer_length +
	     num_sgs * sizeof(struct scatterlist);
1342 1343 1344 1345 1346
	ret = usbfs_increase_memory_usage(u);
	if (ret)
		goto error;
	as->mem_usage = u;

1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
	if (num_sgs) {
		as->urb->sg = kmalloc(num_sgs * sizeof(struct scatterlist),
				      GFP_KERNEL);
		if (!as->urb->sg) {
			ret = -ENOMEM;
			goto error;
		}
		as->urb->num_sgs = num_sgs;
		sg_init_table(as->urb->sg, as->urb->num_sgs);

		totlen = uurb->buffer_length;
		for (i = 0; i < as->urb->num_sgs; i++) {
			u = (totlen > USB_SG_SIZE) ? USB_SG_SIZE : totlen;
			buf = kmalloc(u, GFP_KERNEL);
			if (!buf) {
				ret = -ENOMEM;
				goto error;
			}
			sg_set_buf(&as->urb->sg[i], buf, u);

			if (!is_in) {
				if (copy_from_user(buf, uurb->buffer, u)) {
					ret = -EFAULT;
					goto error;
				}
1372
				uurb->buffer += u;
1373 1374 1375 1376
			}
			totlen -= u;
		}
	} else if (uurb->buffer_length > 0) {
1377 1378 1379
		as->urb->transfer_buffer = kmalloc(uurb->buffer_length,
				GFP_KERNEL);
		if (!as->urb->transfer_buffer) {
1380 1381
			ret = -ENOMEM;
			goto error;
1382
		}
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397

		if (!is_in) {
			if (copy_from_user(as->urb->transfer_buffer,
					   uurb->buffer,
					   uurb->buffer_length)) {
				ret = -EFAULT;
				goto error;
			}
		} else if (uurb->type == USBDEVFS_URB_TYPE_ISO) {
			/*
			 * Isochronous input data may end up being
			 * discontiguous if some of the packets are short.
			 * Clear the buffer so that the gaps don't leak
			 * kernel data to userspace.
			 */
A
Alan Stern 已提交
1398 1399
			memset(as->urb->transfer_buffer, 0,
					uurb->buffer_length);
1400
		}
1401
	}
1402 1403
	as->urb->dev = ps->dev;
	as->urb->pipe = (uurb->type << 30) |
A
Alan Stern 已提交
1404 1405
			__create_pipe(ps->dev, uurb->endpoint & 0xf) |
			(uurb->endpoint & USB_DIR_IN);
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423

	/* This tedious sequence is necessary because the URB_* flags
	 * are internal to the kernel and subject to change, whereas
	 * the USBDEVFS_URB_* flags are a user API and must not be changed.
	 */
	u = (is_in ? URB_DIR_IN : URB_DIR_OUT);
	if (uurb->flags & USBDEVFS_URB_ISO_ASAP)
		u |= URB_ISO_ASAP;
	if (uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
		u |= URB_SHORT_NOT_OK;
	if (uurb->flags & USBDEVFS_URB_NO_FSBR)
		u |= URB_NO_FSBR;
	if (uurb->flags & USBDEVFS_URB_ZERO_PACKET)
		u |= URB_ZERO_PACKET;
	if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
		u |= URB_NO_INTERRUPT;
	as->urb->transfer_flags = u;

L
Linus Torvalds 已提交
1424
	as->urb->transfer_buffer_length = uurb->buffer_length;
1425
	as->urb->setup_packet = (unsigned char *)dr;
1426
	dr = NULL;
L
Linus Torvalds 已提交
1427 1428
	as->urb->start_frame = uurb->start_frame;
	as->urb->number_of_packets = uurb->number_of_packets;
1429 1430 1431 1432 1433
	if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
			ps->dev->speed == USB_SPEED_HIGH)
		as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
	else
		as->urb->interval = ep->desc.bInterval;
1434 1435
	as->urb->context = as;
	as->urb->complete = async_completed;
L
Linus Torvalds 已提交
1436 1437 1438 1439 1440
	for (totlen = u = 0; u < uurb->number_of_packets; u++) {
		as->urb->iso_frame_desc[u].offset = totlen;
		as->urb->iso_frame_desc[u].length = isopkt[u].length;
		totlen += isopkt[u].length;
	}
1441
	kfree(isopkt);
1442
	isopkt = NULL;
L
Linus Torvalds 已提交
1443
	as->ps = ps;
1444
	as->userurb = arg;
1445
	if (is_in && uurb->buffer_length > 0)
L
Linus Torvalds 已提交
1446 1447 1448 1449 1450
		as->userbuffer = uurb->buffer;
	else
		as->userbuffer = NULL;
	as->signr = uurb->signr;
	as->ifnum = ifnum;
1451
	as->pid = get_pid(task_pid(current));
1452
	as->cred = get_current_cred();
1453
	security_task_getsecid(current, &as->secid);
1454
	snoop_urb(ps->dev, as->userurb, as->urb->pipe,
1455
			as->urb->transfer_buffer_length, 0, SUBMIT,
1456 1457 1458 1459
			NULL, 0);
	if (!is_in)
		snoop_urb_data(as->urb, as->urb->transfer_buffer_length);

1460
	async_newpending(as);
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493

	if (usb_endpoint_xfer_bulk(&ep->desc)) {
		spin_lock_irq(&ps->lock);

		/* Not exactly the endpoint address; the direction bit is
		 * shifted to the 0x10 position so that the value will be
		 * between 0 and 31.
		 */
		as->bulk_addr = usb_endpoint_num(&ep->desc) |
			((ep->desc.bEndpointAddress & USB_ENDPOINT_DIR_MASK)
				>> 3);

		/* If this bulk URB is the start of a new transfer, re-enable
		 * the endpoint.  Otherwise mark it as a continuation URB.
		 */
		if (uurb->flags & USBDEVFS_URB_BULK_CONTINUATION)
			as->bulk_status = AS_CONTINUATION;
		else
			ps->disabled_bulk_eps &= ~(1 << as->bulk_addr);

		/* Don't accept continuation URBs if the endpoint is
		 * disabled because of an earlier error.
		 */
		if (ps->disabled_bulk_eps & (1 << as->bulk_addr))
			ret = -EREMOTEIO;
		else
			ret = usb_submit_urb(as->urb, GFP_ATOMIC);
		spin_unlock_irq(&ps->lock);
	} else {
		ret = usb_submit_urb(as->urb, GFP_KERNEL);
	}

	if (ret) {
1494 1495
		dev_printk(KERN_DEBUG, &ps->dev->dev,
			   "usbfs: usb_submit_urb returned %d\n", ret);
1496
		snoop_urb(ps->dev, as->userurb, as->urb->pipe,
1497
				0, ret, COMPLETE, NULL, 0);
1498
		async_removepending(as);
1499
		goto error;
1500 1501
	}
	return 0;
1502 1503 1504 1505 1506 1507 1508

 error:
	kfree(isopkt);
	kfree(dr);
	if (as)
		free_async(as);
	return ret;
L
Linus Torvalds 已提交
1509 1510 1511 1512 1513 1514 1515 1516 1517
}

static int proc_submiturb(struct dev_state *ps, void __user *arg)
{
	struct usbdevfs_urb uurb;

	if (copy_from_user(&uurb, arg, sizeof(uurb)))
		return -EFAULT;

1518 1519 1520
	return proc_do_submiturb(ps, &uurb,
			(((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
			arg);
L
Linus Torvalds 已提交
1521 1522 1523 1524
}

static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
{
H
Huajun Li 已提交
1525
	struct urb *urb;
L
Linus Torvalds 已提交
1526
	struct async *as;
H
Huajun Li 已提交
1527
	unsigned long flags;
L
Linus Torvalds 已提交
1528

H
Huajun Li 已提交
1529
	spin_lock_irqsave(&ps->lock, flags);
L
Linus Torvalds 已提交
1530
	as = async_getpending(ps, arg);
H
Huajun Li 已提交
1531 1532
	if (!as) {
		spin_unlock_irqrestore(&ps->lock, flags);
L
Linus Torvalds 已提交
1533
		return -EINVAL;
H
Huajun Li 已提交
1534 1535 1536 1537 1538 1539 1540 1541 1542
	}

	urb = as->urb;
	usb_get_urb(urb);
	spin_unlock_irqrestore(&ps->lock, flags);

	usb_kill_urb(urb);
	usb_put_urb(urb);

L
Linus Torvalds 已提交
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552
	return 0;
}

static int processcompl(struct async *as, void __user * __user *arg)
{
	struct urb *urb = as->urb;
	struct usbdevfs_urb __user *userurb = as->userurb;
	void __user *addr = as->userurb;
	unsigned int i;

A
Alan Stern 已提交
1553
	if (as->userbuffer && urb->actual_length) {
1554
		if (copy_urb_data_to_user(as->userbuffer, urb))
O
Oliver Neukum 已提交
1555
			goto err_out;
A
Alan Stern 已提交
1556
	}
1557
	if (put_user(as->status, &userurb->status))
O
Oliver Neukum 已提交
1558
		goto err_out;
L
Linus Torvalds 已提交
1559
	if (put_user(urb->actual_length, &userurb->actual_length))
O
Oliver Neukum 已提交
1560
		goto err_out;
L
Linus Torvalds 已提交
1561
	if (put_user(urb->error_count, &userurb->error_count))
O
Oliver Neukum 已提交
1562
		goto err_out;
L
Linus Torvalds 已提交
1563

A
Alan Stern 已提交
1564
	if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
1565 1566 1567
		for (i = 0; i < urb->number_of_packets; i++) {
			if (put_user(urb->iso_frame_desc[i].actual_length,
				     &userurb->iso_frame_desc[i].actual_length))
O
Oliver Neukum 已提交
1568
				goto err_out;
1569 1570
			if (put_user(urb->iso_frame_desc[i].status,
				     &userurb->iso_frame_desc[i].status))
O
Oliver Neukum 已提交
1571
				goto err_out;
1572
		}
L
Linus Torvalds 已提交
1573 1574 1575 1576 1577
	}

	if (put_user(addr, (void __user * __user *)arg))
		return -EFAULT;
	return 0;
O
Oliver Neukum 已提交
1578 1579 1580

err_out:
	return -EFAULT;
L
Linus Torvalds 已提交
1581 1582
}

1583
static struct async *reap_as(struct dev_state *ps)
L
Linus Torvalds 已提交
1584
{
1585
	DECLARE_WAITQUEUE(wait, current);
L
Linus Torvalds 已提交
1586 1587 1588 1589 1590 1591
	struct async *as = NULL;
	struct usb_device *dev = ps->dev;

	add_wait_queue(&ps->wait, &wait);
	for (;;) {
		__set_current_state(TASK_INTERRUPTIBLE);
1592 1593
		as = async_getcompleted(ps);
		if (as)
L
Linus Torvalds 已提交
1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608
			break;
		if (signal_pending(current))
			break;
		usb_unlock_device(dev);
		schedule();
		usb_lock_device(dev);
	}
	remove_wait_queue(&ps->wait, &wait);
	set_current_state(TASK_RUNNING);
	return as;
}

static int proc_reapurb(struct dev_state *ps, void __user *arg)
{
	struct async *as = reap_as(ps);
1609 1610 1611 1612 1613
	if (as) {
		int retval = processcompl(as, (void __user * __user *)arg);
		free_async(as);
		return retval;
	}
L
Linus Torvalds 已提交
1614 1615 1616 1617 1618 1619 1620
	if (signal_pending(current))
		return -EINTR;
	return -EIO;
}

static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
{
1621
	int retval;
L
Linus Torvalds 已提交
1622 1623
	struct async *as;

1624 1625 1626 1627 1628 1629 1630
	as = async_getcompleted(ps);
	retval = -EAGAIN;
	if (as) {
		retval = processcompl(as, (void __user * __user *)arg);
		free_async(as);
	}
	return retval;
L
Linus Torvalds 已提交
1631 1632 1633
}

#ifdef CONFIG_COMPAT
1634 1635 1636
static int proc_control_compat(struct dev_state *ps,
				struct usbdevfs_ctrltransfer32 __user *p32)
{
1637 1638 1639 1640 1641
	struct usbdevfs_ctrltransfer __user *p;
	__u32 udata;
	p = compat_alloc_user_space(sizeof(*p));
	if (copy_in_user(p, p32, (sizeof(*p32) - sizeof(compat_caddr_t))) ||
	    get_user(udata, &p32->data) ||
1642 1643
	    put_user(compat_ptr(udata), &p->data))
		return -EFAULT;
1644
	return proc_control(ps, p);
1645 1646 1647 1648 1649
}

static int proc_bulk_compat(struct dev_state *ps,
			struct usbdevfs_bulktransfer32 __user *p32)
{
1650 1651 1652
	struct usbdevfs_bulktransfer __user *p;
	compat_uint_t n;
	compat_caddr_t addr;
1653

1654
	p = compat_alloc_user_space(sizeof(*p));
1655

1656 1657 1658 1659 1660
	if (get_user(n, &p32->ep) || put_user(n, &p->ep) ||
	    get_user(n, &p32->len) || put_user(n, &p->len) ||
	    get_user(n, &p32->timeout) || put_user(n, &p->timeout) ||
	    get_user(addr, &p32->data) || put_user(compat_ptr(addr), &p->data))
		return -EFAULT;
1661

1662
	return proc_bulk(ps, p);
1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673
}
static int proc_disconnectsignal_compat(struct dev_state *ps, void __user *arg)
{
	struct usbdevfs_disconnectsignal32 ds;

	if (copy_from_user(&ds, arg, sizeof(ds)))
		return -EFAULT;
	ps->discsignr = ds.signr;
	ps->disccontext = compat_ptr(ds.context);
	return 0;
}
L
Linus Torvalds 已提交
1674 1675 1676 1677 1678

static int get_urb32(struct usbdevfs_urb *kurb,
		     struct usbdevfs_urb32 __user *uurb)
{
	__u32  uptr;
1679 1680
	if (!access_ok(VERIFY_READ, uurb, sizeof(*uurb)) ||
	    __get_user(kurb->type, &uurb->type) ||
L
Linus Torvalds 已提交
1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694
	    __get_user(kurb->endpoint, &uurb->endpoint) ||
	    __get_user(kurb->status, &uurb->status) ||
	    __get_user(kurb->flags, &uurb->flags) ||
	    __get_user(kurb->buffer_length, &uurb->buffer_length) ||
	    __get_user(kurb->actual_length, &uurb->actual_length) ||
	    __get_user(kurb->start_frame, &uurb->start_frame) ||
	    __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
	    __get_user(kurb->error_count, &uurb->error_count) ||
	    __get_user(kurb->signr, &uurb->signr))
		return -EFAULT;

	if (__get_user(uptr, &uurb->buffer))
		return -EFAULT;
	kurb->buffer = compat_ptr(uptr);
M
Mark Lord 已提交
1695
	if (__get_user(uptr, &uurb->usercontext))
L
Linus Torvalds 已提交
1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
		return -EFAULT;
	kurb->usercontext = compat_ptr(uptr);

	return 0;
}

static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
{
	struct usbdevfs_urb uurb;

1706
	if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
L
Linus Torvalds 已提交
1707 1708
		return -EFAULT;

1709 1710 1711
	return proc_do_submiturb(ps, &uurb,
			((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
			arg);
L
Linus Torvalds 已提交
1712 1713 1714 1715 1716 1717 1718 1719 1720
}

static int processcompl_compat(struct async *as, void __user * __user *arg)
{
	struct urb *urb = as->urb;
	struct usbdevfs_urb32 __user *userurb = as->userurb;
	void __user *addr = as->userurb;
	unsigned int i;

1721
	if (as->userbuffer && urb->actual_length) {
1722
		if (copy_urb_data_to_user(as->userbuffer, urb))
L
Linus Torvalds 已提交
1723
			return -EFAULT;
1724
	}
1725
	if (put_user(as->status, &userurb->status))
L
Linus Torvalds 已提交
1726 1727 1728 1729 1730 1731
		return -EFAULT;
	if (put_user(urb->actual_length, &userurb->actual_length))
		return -EFAULT;
	if (put_user(urb->error_count, &userurb->error_count))
		return -EFAULT;

A
Alan Stern 已提交
1732
	if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
1733 1734 1735 1736 1737 1738 1739 1740
		for (i = 0; i < urb->number_of_packets; i++) {
			if (put_user(urb->iso_frame_desc[i].actual_length,
				     &userurb->iso_frame_desc[i].actual_length))
				return -EFAULT;
			if (put_user(urb->iso_frame_desc[i].status,
				     &userurb->iso_frame_desc[i].status))
				return -EFAULT;
		}
L
Linus Torvalds 已提交
1741 1742
	}

A
Al Viro 已提交
1743
	if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
L
Linus Torvalds 已提交
1744 1745 1746 1747 1748 1749 1750
		return -EFAULT;
	return 0;
}

static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
{
	struct async *as = reap_as(ps);
1751 1752 1753 1754 1755
	if (as) {
		int retval = processcompl_compat(as, (void __user * __user *)arg);
		free_async(as);
		return retval;
	}
L
Linus Torvalds 已提交
1756 1757 1758 1759 1760 1761 1762
	if (signal_pending(current))
		return -EINTR;
	return -EIO;
}

static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
{
1763
	int retval;
L
Linus Torvalds 已提交
1764 1765
	struct async *as;

1766 1767 1768 1769 1770 1771 1772
	retval = -EAGAIN;
	as = async_getcompleted(ps);
	if (as) {
		retval = processcompl_compat(as, (void __user * __user *)arg);
		free_async(as);
	}
	return retval;
L
Linus Torvalds 已提交
1773 1774
}

1775

L
Linus Torvalds 已提交
1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810
#endif

static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
{
	struct usbdevfs_disconnectsignal ds;

	if (copy_from_user(&ds, arg, sizeof(ds)))
		return -EFAULT;
	ps->discsignr = ds.signr;
	ps->disccontext = ds.context;
	return 0;
}

static int proc_claiminterface(struct dev_state *ps, void __user *arg)
{
	unsigned int ifnum;

	if (get_user(ifnum, (unsigned int __user *)arg))
		return -EFAULT;
	return claimintf(ps, ifnum);
}

static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
{
	unsigned int ifnum;
	int ret;

	if (get_user(ifnum, (unsigned int __user *)arg))
		return -EFAULT;
	if ((ret = releaseintf(ps, ifnum)) < 0)
		return ret;
	destroy_async_on_interface (ps, ifnum);
	return 0;
}

1811
static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
L
Linus Torvalds 已提交
1812 1813 1814 1815 1816 1817 1818
{
	int			size;
	void			*buf = NULL;
	int			retval = 0;
	struct usb_interface    *intf = NULL;
	struct usb_driver       *driver = NULL;

1819
	/* alloc buffer */
1820
	if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
1821 1822
		buf = kmalloc(size, GFP_KERNEL);
		if (buf == NULL)
L
Linus Torvalds 已提交
1823
			return -ENOMEM;
1824
		if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
1825
			if (copy_from_user(buf, ctl->data, size)) {
1826
				kfree(buf);
L
Linus Torvalds 已提交
1827 1828 1829
				return -EFAULT;
			}
		} else {
1830
			memset(buf, 0, size);
L
Linus Torvalds 已提交
1831 1832 1833
		}
	}

A
Alan Stern 已提交
1834
	if (!connected(ps)) {
1835
		kfree(buf);
L
Linus Torvalds 已提交
1836 1837 1838 1839 1840
		return -ENODEV;
	}

	if (ps->dev->state != USB_STATE_CONFIGURED)
		retval = -EHOSTUNREACH;
1841 1842
	else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
		retval = -EINVAL;
1843
	else switch (ctl->ioctl_code) {
L
Linus Torvalds 已提交
1844 1845 1846 1847 1848

	/* disconnect kernel driver from interface */
	case USBDEVFS_DISCONNECT:
		if (intf->dev.driver) {
			driver = to_usb_driver(intf->dev.driver);
1849
			dev_dbg(&intf->dev, "disconnect by usbfs\n");
L
Linus Torvalds 已提交
1850 1851 1852 1853 1854 1855 1856
			usb_driver_release_interface(driver, intf);
		} else
			retval = -ENODATA;
		break;

	/* let kernel drivers try to (re)bind to the interface */
	case USBDEVFS_CONNECT:
A
Alan Stern 已提交
1857 1858 1859 1860
		if (!intf->dev.driver)
			retval = device_attach(&intf->dev);
		else
			retval = -EBUSY;
L
Linus Torvalds 已提交
1861 1862 1863 1864 1865 1866
		break;

	/* talk directly to the interface's driver */
	default:
		if (intf->dev.driver)
			driver = to_usb_driver(intf->dev.driver);
1867
		if (driver == NULL || driver->unlocked_ioctl == NULL) {
L
Linus Torvalds 已提交
1868 1869
			retval = -ENOTTY;
		} else {
1870
			retval = driver->unlocked_ioctl(intf, ctl->ioctl_code, buf);
L
Linus Torvalds 已提交
1871 1872 1873 1874 1875 1876 1877
			if (retval == -ENOIOCTLCMD)
				retval = -ENOTTY;
		}
	}

	/* cleanup and return */
	if (retval >= 0
1878
			&& (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
L
Linus Torvalds 已提交
1879
			&& size > 0
1880
			&& copy_to_user(ctl->data, buf, size) != 0)
L
Linus Torvalds 已提交
1881
		retval = -EFAULT;
1882 1883

	kfree(buf);
L
Linus Torvalds 已提交
1884 1885 1886
	return retval;
}

1887 1888 1889 1890
static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
{
	struct usbdevfs_ioctl	ctrl;

1891
	if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
1892 1893 1894 1895 1896
		return -EFAULT;
	return proc_ioctl(ps, &ctrl);
}

#ifdef CONFIG_COMPAT
1897
static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
1898 1899 1900 1901 1902
{
	struct usbdevfs_ioctl32 __user *uioc;
	struct usbdevfs_ioctl ctrl;
	u32 udata;

A
Andrew Morton 已提交
1903
	uioc = compat_ptr((long)arg);
1904 1905 1906
	if (!access_ok(VERIFY_READ, uioc, sizeof(*uioc)) ||
	    __get_user(ctrl.ifno, &uioc->ifno) ||
	    __get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
1907 1908 1909 1910 1911 1912 1913 1914
	    __get_user(udata, &uioc->data))
		return -EFAULT;
	ctrl.data = compat_ptr(udata);

	return proc_ioctl(ps, &ctrl);
}
#endif

1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937
static int proc_claim_port(struct dev_state *ps, void __user *arg)
{
	unsigned portnum;
	int rc;

	if (get_user(portnum, (unsigned __user *) arg))
		return -EFAULT;
	rc = usb_hub_claim_port(ps->dev, portnum, ps);
	if (rc == 0)
		snoop(&ps->dev->dev, "port %d claimed by process %d: %s\n",
			portnum, task_pid_nr(current), current->comm);
	return rc;
}

static int proc_release_port(struct dev_state *ps, void __user *arg)
{
	unsigned portnum;

	if (get_user(portnum, (unsigned __user *) arg))
		return -EFAULT;
	return usb_hub_release_port(ps->dev, portnum, ps);
}

1938 1939 1940 1941 1942 1943 1944
static int proc_get_capabilities(struct dev_state *ps, void __user *arg)
{
	__u32 caps;

	caps = USBDEVFS_CAP_ZERO_PACKET | USBDEVFS_CAP_NO_PACKET_SIZE_LIM;
	if (!ps->dev->bus->no_stop_on_short)
		caps |= USBDEVFS_CAP_BULK_CONTINUATION;
1945 1946
	if (ps->dev->bus->sg_tablesize)
		caps |= USBDEVFS_CAP_BULK_SCATTER_GATHER;
1947 1948 1949 1950 1951 1952 1953

	if (put_user(caps, (__u32 __user *)arg))
		return -EFAULT;

	return 0;
}

1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985
static int proc_disconnect_claim(struct dev_state *ps, void __user *arg)
{
	struct usbdevfs_disconnect_claim dc;
	struct usb_interface *intf;

	if (copy_from_user(&dc, arg, sizeof(dc)))
		return -EFAULT;

	intf = usb_ifnum_to_if(ps->dev, dc.interface);
	if (!intf)
		return -EINVAL;

	if (intf->dev.driver) {
		struct usb_driver *driver = to_usb_driver(intf->dev.driver);

		if ((dc.flags & USBDEVFS_DISCONNECT_CLAIM_IF_DRIVER) &&
				strncmp(dc.driver, intf->dev.driver->name,
					sizeof(dc.driver)) != 0)
			return -EBUSY;

		if ((dc.flags & USBDEVFS_DISCONNECT_CLAIM_EXCEPT_DRIVER) &&
				strncmp(dc.driver, intf->dev.driver->name,
					sizeof(dc.driver)) == 0)
			return -EBUSY;

		dev_dbg(&intf->dev, "disconnect by usbfs\n");
		usb_driver_release_interface(driver, intf);
	}

	return claimintf(ps, dc.interface);
}

L
Linus Torvalds 已提交
1986 1987 1988 1989 1990
/*
 * NOTE:  All requests here that have interface numbers as parameters
 * are assuming that somehow the configuration has been prevented from
 * changing.  But there's no mechanism to ensure that...
 */
1991 1992
static long usbdev_do_ioctl(struct file *file, unsigned int cmd,
				void __user *p)
L
Linus Torvalds 已提交
1993
{
1994
	struct dev_state *ps = file->private_data;
A
Al Viro 已提交
1995
	struct inode *inode = file_inode(file);
L
Linus Torvalds 已提交
1996 1997 1998 1999 2000
	struct usb_device *dev = ps->dev;
	int ret = -ENOTTY;

	if (!(file->f_mode & FMODE_WRITE))
		return -EPERM;
2001

L
Linus Torvalds 已提交
2002
	usb_lock_device(dev);
A
Alan Stern 已提交
2003
	if (!connected(ps)) {
L
Linus Torvalds 已提交
2004 2005 2006 2007 2008 2009
		usb_unlock_device(dev);
		return -ENODEV;
	}

	switch (cmd) {
	case USBDEVFS_CONTROL:
2010
		snoop(&dev->dev, "%s: CONTROL\n", __func__);
L
Linus Torvalds 已提交
2011 2012 2013 2014 2015 2016
		ret = proc_control(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_BULK:
2017
		snoop(&dev->dev, "%s: BULK\n", __func__);
L
Linus Torvalds 已提交
2018 2019 2020 2021 2022 2023
		ret = proc_bulk(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_RESETEP:
2024
		snoop(&dev->dev, "%s: RESETEP\n", __func__);
L
Linus Torvalds 已提交
2025 2026 2027 2028 2029 2030
		ret = proc_resetep(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_RESET:
2031
		snoop(&dev->dev, "%s: RESET\n", __func__);
L
Linus Torvalds 已提交
2032 2033 2034 2035
		ret = proc_resetdevice(ps);
		break;

	case USBDEVFS_CLEAR_HALT:
2036
		snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
L
Linus Torvalds 已提交
2037 2038 2039 2040 2041 2042
		ret = proc_clearhalt(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_GETDRIVER:
2043
		snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
L
Linus Torvalds 已提交
2044 2045 2046 2047
		ret = proc_getdriver(ps, p);
		break;

	case USBDEVFS_CONNECTINFO:
2048
		snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
L
Linus Torvalds 已提交
2049 2050 2051 2052
		ret = proc_connectinfo(ps, p);
		break;

	case USBDEVFS_SETINTERFACE:
2053
		snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
L
Linus Torvalds 已提交
2054 2055 2056 2057
		ret = proc_setintf(ps, p);
		break;

	case USBDEVFS_SETCONFIGURATION:
2058
		snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
L
Linus Torvalds 已提交
2059 2060 2061 2062
		ret = proc_setconfig(ps, p);
		break;

	case USBDEVFS_SUBMITURB:
2063
		snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
L
Linus Torvalds 已提交
2064 2065 2066 2067 2068 2069
		ret = proc_submiturb(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

#ifdef CONFIG_COMPAT
2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087
	case USBDEVFS_CONTROL32:
		snoop(&dev->dev, "%s: CONTROL32\n", __func__);
		ret = proc_control_compat(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_BULK32:
		snoop(&dev->dev, "%s: BULK32\n", __func__);
		ret = proc_bulk_compat(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_DISCSIGNAL32:
		snoop(&dev->dev, "%s: DISCSIGNAL32\n", __func__);
		ret = proc_disconnectsignal_compat(ps, p);
		break;
L
Linus Torvalds 已提交
2088 2089

	case USBDEVFS_SUBMITURB32:
2090
		snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
L
Linus Torvalds 已提交
2091 2092 2093 2094 2095 2096
		ret = proc_submiturb_compat(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_REAPURB32:
2097
		snoop(&dev->dev, "%s: REAPURB32\n", __func__);
L
Linus Torvalds 已提交
2098 2099 2100 2101
		ret = proc_reapurb_compat(ps, p);
		break;

	case USBDEVFS_REAPURBNDELAY32:
2102
		snoop(&dev->dev, "%s: REAPURBNDELAY32\n", __func__);
L
Linus Torvalds 已提交
2103 2104 2105
		ret = proc_reapurbnonblock_compat(ps, p);
		break;

2106
	case USBDEVFS_IOCTL32:
2107
		snoop(&dev->dev, "%s: IOCTL32\n", __func__);
A
Al Viro 已提交
2108
		ret = proc_ioctl_compat(ps, ptr_to_compat(p));
2109
		break;
L
Linus Torvalds 已提交
2110 2111 2112
#endif

	case USBDEVFS_DISCARDURB:
2113
		snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
L
Linus Torvalds 已提交
2114 2115 2116 2117
		ret = proc_unlinkurb(ps, p);
		break;

	case USBDEVFS_REAPURB:
2118
		snoop(&dev->dev, "%s: REAPURB\n", __func__);
L
Linus Torvalds 已提交
2119 2120 2121 2122
		ret = proc_reapurb(ps, p);
		break;

	case USBDEVFS_REAPURBNDELAY:
2123
		snoop(&dev->dev, "%s: REAPURBNDELAY\n", __func__);
L
Linus Torvalds 已提交
2124 2125 2126 2127
		ret = proc_reapurbnonblock(ps, p);
		break;

	case USBDEVFS_DISCSIGNAL:
2128
		snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
L
Linus Torvalds 已提交
2129 2130 2131 2132
		ret = proc_disconnectsignal(ps, p);
		break;

	case USBDEVFS_CLAIMINTERFACE:
2133
		snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
L
Linus Torvalds 已提交
2134 2135 2136 2137
		ret = proc_claiminterface(ps, p);
		break;

	case USBDEVFS_RELEASEINTERFACE:
2138
		snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
L
Linus Torvalds 已提交
2139 2140 2141 2142
		ret = proc_releaseinterface(ps, p);
		break;

	case USBDEVFS_IOCTL:
2143
		snoop(&dev->dev, "%s: IOCTL\n", __func__);
2144
		ret = proc_ioctl_default(ps, p);
L
Linus Torvalds 已提交
2145
		break;
2146 2147 2148 2149 2150 2151 2152 2153 2154 2155

	case USBDEVFS_CLAIM_PORT:
		snoop(&dev->dev, "%s: CLAIM_PORT\n", __func__);
		ret = proc_claim_port(ps, p);
		break;

	case USBDEVFS_RELEASE_PORT:
		snoop(&dev->dev, "%s: RELEASE_PORT\n", __func__);
		ret = proc_release_port(ps, p);
		break;
2156 2157 2158
	case USBDEVFS_GET_CAPABILITIES:
		ret = proc_get_capabilities(ps, p);
		break;
2159 2160 2161
	case USBDEVFS_DISCONNECT_CLAIM:
		ret = proc_disconnect_claim(ps, p);
		break;
L
Linus Torvalds 已提交
2162 2163 2164 2165 2166 2167 2168
	}
	usb_unlock_device(dev);
	if (ret >= 0)
		inode->i_atime = CURRENT_TIME;
	return ret;
}

2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190
static long usbdev_ioctl(struct file *file, unsigned int cmd,
			unsigned long arg)
{
	int ret;

	ret = usbdev_do_ioctl(file, cmd, (void __user *)arg);

	return ret;
}

#ifdef CONFIG_COMPAT
static long usbdev_compat_ioctl(struct file *file, unsigned int cmd,
			unsigned long arg)
{
	int ret;

	ret = usbdev_do_ioctl(file, cmd, compat_ptr(arg));

	return ret;
}
#endif

L
Linus Torvalds 已提交
2191
/* No kernel lock - fine */
2192 2193
static unsigned int usbdev_poll(struct file *file,
				struct poll_table_struct *wait)
L
Linus Torvalds 已提交
2194
{
2195 2196
	struct dev_state *ps = file->private_data;
	unsigned int mask = 0;
L
Linus Torvalds 已提交
2197 2198 2199 2200

	poll_wait(file, &ps->wait, wait);
	if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
		mask |= POLLOUT | POLLWRNORM;
A
Alan Stern 已提交
2201
	if (!connected(ps))
L
Linus Torvalds 已提交
2202 2203 2204 2205
		mask |= POLLERR | POLLHUP;
	return mask;
}

2206
const struct file_operations usbdev_file_operations = {
2207 2208 2209 2210 2211 2212 2213 2214 2215 2216
	.owner =	  THIS_MODULE,
	.llseek =	  usbdev_lseek,
	.read =		  usbdev_read,
	.poll =		  usbdev_poll,
	.unlocked_ioctl = usbdev_ioctl,
#ifdef CONFIG_COMPAT
	.compat_ioctl =   usbdev_compat_ioctl,
#endif
	.open =		  usbdev_open,
	.release =	  usbdev_release,
L
Linus Torvalds 已提交
2217
};
2218

2219
static void usbdev_remove(struct usb_device *udev)
2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233
{
	struct dev_state *ps;
	struct siginfo sinfo;

	while (!list_empty(&udev->filelist)) {
		ps = list_entry(udev->filelist.next, struct dev_state, list);
		destroy_all_async(ps);
		wake_up_all(&ps->wait);
		list_del_init(&ps->list);
		if (ps->discsignr) {
			sinfo.si_signo = ps->discsignr;
			sinfo.si_errno = EPIPE;
			sinfo.si_code = SI_ASYNCIO;
			sinfo.si_addr = ps->disccontext;
2234 2235
			kill_pid_info_as_cred(ps->discsignr, &sinfo,
					ps->disc_pid, ps->cred, ps->secid);
2236 2237 2238 2239
		}
	}
}

2240
static int usbdev_notify(struct notifier_block *self,
2241
			       unsigned long action, void *dev)
2242 2243 2244 2245 2246
{
	switch (action) {
	case USB_DEVICE_ADD:
		break;
	case USB_DEVICE_REMOVE:
2247
		usbdev_remove(dev);
2248 2249 2250 2251 2252 2253
		break;
	}
	return NOTIFY_OK;
}

static struct notifier_block usbdev_nb = {
2254
	.notifier_call = 	usbdev_notify,
2255 2256
};

2257
static struct cdev usb_device_cdev;
2258

2259
int __init usb_devio_init(void)
2260 2261 2262
{
	int retval;

2263
	retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
2264
					"usb_device");
2265
	if (retval) {
2266
		printk(KERN_ERR "Unable to register minors for usb_device\n");
2267 2268
		goto out;
	}
2269
	cdev_init(&usb_device_cdev, &usbdev_file_operations);
2270
	retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
2271
	if (retval) {
2272 2273
		printk(KERN_ERR "Unable to get usb_device major %d\n",
		       USB_DEVICE_MAJOR);
2274
		goto error_cdev;
2275
	}
2276
	usb_register_notify(&usbdev_nb);
2277 2278
out:
	return retval;
2279 2280 2281 2282

error_cdev:
	unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
	goto out;
2283 2284
}

2285
void usb_devio_cleanup(void)
2286
{
2287
	usb_unregister_notify(&usbdev_nb);
2288
	cdev_del(&usb_device_cdev);
2289
	unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
2290
}