devio.c 45.1 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 43 44 45
 */

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

#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/smp_lock.h>
#include <linux/signal.h>
#include <linux/poll.h>
#include <linux/module.h>
#include <linux/usb.h>
#include <linux/usbdevice_fs.h>
46
#include <linux/cdev.h>
47
#include <linux/notifier.h>
48
#include <linux/security.h>
L
Linus Torvalds 已提交
49 50 51 52 53 54
#include <asm/uaccess.h>
#include <asm/byteorder.h>
#include <linux/moduleparam.h>

#include "hcd.h"	/* for usbcore internals */
#include "usb.h"
55
#include "hub.h"
L
Linus Torvalds 已提交
56

57 58 59
#define USB_MAXBUS			64
#define USB_DEVICE_MAX			USB_MAXBUS * 128

60 61 62
/* Mutual exclusion for removal, open, and release */
DEFINE_MUTEX(usbfs_mutex);

63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
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;
	uid_t disc_uid, disc_euid;
	void __user *disccontext;
	unsigned long ifclaimed;
	u32 secid;
};

L
Linus Torvalds 已提交
79 80 81
struct async {
	struct list_head asynclist;
	struct dev_state *ps;
82
	struct pid *pid;
83
	uid_t uid, euid;
L
Linus Torvalds 已提交
84 85 86 87 88
	unsigned int signr;
	unsigned int ifnum;
	void __user *userbuffer;
	void __user *userurb;
	struct urb *urb;
89
	int status;
90
	u32 secid;
L
Linus Torvalds 已提交
91 92
};

93 94 95
static int usbfs_snoop;
module_param(usbfs_snoop, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(usbfs_snoop, "true to log all usbfs traffic");
L
Linus Torvalds 已提交
96 97 98 99

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

103 104 105
enum snoop_when {
	SUBMIT, COMPLETE
};
106

107
#define USB_DEVICE_DEV		MKDEV(USB_DEVICE_MAJOR, 0)
L
Linus Torvalds 已提交
108 109 110

#define	MAX_USBFS_BUFFER_SIZE	16384

111

112
static int connected(struct dev_state *ps)
L
Linus Torvalds 已提交
113
{
A
Alan Stern 已提交
114 115
	return (!list_empty(&ps->list) &&
			ps->dev->state != USB_STATE_NOTATTACHED);
L
Linus Torvalds 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
}

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

	lock_kernel();

	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;
	}

	unlock_kernel();
	return ret;
}

142 143
static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
			   loff_t *ppos)
L
Linus Torvalds 已提交
144
{
145
	struct dev_state *ps = file->private_data;
L
Linus Torvalds 已提交
146 147 148 149 150 151 152 153
	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 已提交
154
	if (!connected(ps)) {
L
Linus Torvalds 已提交
155 156 157 158 159 160 161 162
		ret = -ENODEV;
		goto err;
	} else if (pos < 0) {
		ret = -EINVAL;
		goto err;
	}

	if (pos < sizeof(struct usb_device_descriptor)) {
163 164
		/* 18 bytes - fits on the stack */
		struct usb_device_descriptor temp_desc;
165 166

		memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
167 168 169 170
		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 已提交
171 172 173 174

		len = sizeof(struct usb_device_descriptor) - pos;
		if (len > nbytes)
			len = nbytes;
175
		if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
L
Linus Torvalds 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
			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)
{
234
	struct async *as;
235

236
	as = kzalloc(sizeof(struct async), GFP_KERNEL);
237 238
	if (!as)
		return NULL;
L
Linus Torvalds 已提交
239 240 241 242 243
	as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
	if (!as->urb) {
		kfree(as);
		return NULL;
	}
244
	return as;
L
Linus Torvalds 已提交
245 246 247 248
}

static void free_async(struct async *as)
{
249
	put_pid(as->pid);
250 251
	kfree(as->urb->transfer_buffer);
	kfree(as->urb->setup_packet);
L
Linus Torvalds 已提交
252
	usb_free_urb(as->urb);
253
	kfree(as);
L
Linus Torvalds 已提交
254 255
}

256
static void async_newpending(struct async *as)
L
Linus Torvalds 已提交
257
{
258 259 260 261 262 263
	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 已提交
264 265
}

266
static void async_removepending(struct async *as)
L
Linus Torvalds 已提交
267
{
268 269 270 271 272 273
	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 已提交
274 275
}

276
static struct async *async_getcompleted(struct dev_state *ps)
L
Linus Torvalds 已提交
277
{
278 279 280 281 282 283 284 285 286 287 288
	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 已提交
289 290
}

291
static struct async *async_getpending(struct dev_state *ps,
292
					     void __user *userurb)
L
Linus Torvalds 已提交
293
{
294 295
	unsigned long flags;
	struct async *as;
L
Linus Torvalds 已提交
296

297
	spin_lock_irqsave(&ps->lock, flags);
L
Linus Torvalds 已提交
298 299 300 301 302 303
	list_for_each_entry(as, &ps->async_pending, asynclist)
		if (as->userurb == userurb) {
			list_del_init(&as->asynclist);
			spin_unlock_irqrestore(&ps->lock, flags);
			return as;
		}
304 305
	spin_unlock_irqrestore(&ps->lock, flags);
	return NULL;
L
Linus Torvalds 已提交
306 307
}

308 309 310
static void snoop_urb(struct usb_device *udev,
		void __user *userurb, int pipe, unsigned length,
		int timeout_or_status, enum snoop_when when)
311
{
312 313 314 315
	static const char *types[] = {"isoc", "int", "ctrl", "bulk"};
	static const char *dirs[] = {"out", "in"};
	int ep;
	const char *t, *d;
316 317 318 319

	if (!usbfs_snoop)
		return;

320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
	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);
	}
344 345
}

346
static void async_completed(struct urb *urb)
L
Linus Torvalds 已提交
347
{
348 349
	struct async *as = urb->context;
	struct dev_state *ps = as->ps;
L
Linus Torvalds 已提交
350
	struct siginfo sinfo;
351 352 353 354 355
	struct pid *pid = NULL;
	uid_t uid = 0;
	uid_t euid = 0;
	u32 secid = 0;
	int signr;
L
Linus Torvalds 已提交
356

357 358
	spin_lock(&ps->lock);
	list_move_tail(&as->asynclist, &ps->async_completed);
359
	as->status = urb->status;
360 361
	signr = as->signr;
	if (signr) {
L
Linus Torvalds 已提交
362
		sinfo.si_signo = as->signr;
363
		sinfo.si_errno = as->status;
L
Linus Torvalds 已提交
364 365
		sinfo.si_code = SI_ASYNCIO;
		sinfo.si_addr = as->userurb;
366 367 368 369
		pid = as->pid;
		uid = as->uid;
		euid = as->euid;
		secid = as->secid;
L
Linus Torvalds 已提交
370
	}
371
	snoop(&urb->dev->dev, "urb complete\n");
372 373
	snoop_urb(urb->dev, as->userurb, urb->pipe, urb->actual_length,
			as->status, COMPLETE);
374 375 376 377 378 379
	spin_unlock(&ps->lock);

	if (signr)
		kill_pid_info_as_uid(sinfo.si_signo, &sinfo, pid, uid,
				      euid, secid);

380
	wake_up(&ps->wait);
L
Linus Torvalds 已提交
381 382
}

383
static void destroy_async(struct dev_state *ps, struct list_head *list)
L
Linus Torvalds 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
{
	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);

		/* drop the spinlock so the completion handler can run */
		spin_unlock_irqrestore(&ps->lock, flags);
		usb_kill_urb(as->urb);
		spin_lock_irqsave(&ps->lock, flags);
	}
	spin_unlock_irqrestore(&ps->lock, flags);
}

401 402
static void destroy_async_on_interface(struct dev_state *ps,
				       unsigned int ifnum)
L
Linus Torvalds 已提交
403 404 405 406 407 408 409 410 411 412 413 414 415
{
	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);
}

416
static void destroy_all_async(struct dev_state *ps)
L
Linus Torvalds 已提交
417
{
418
	destroy_async(ps, &ps->async_pending);
L
Linus Torvalds 已提交
419 420 421 422 423 424 425 426
}

/*
 * 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.
 */

427 428
static int driver_probe(struct usb_interface *intf,
			const struct usb_device_id *id)
L
Linus Torvalds 已提交
429 430 431 432 433 434
{
	return -ENODEV;
}

static void driver_disconnect(struct usb_interface *intf)
{
435
	struct dev_state *ps = usb_get_intfdata(intf);
L
Linus Torvalds 已提交
436 437 438 439 440 441 442 443 444 445 446 447
	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
448 449
		dev_warn(&intf->dev, "interface number %u out of range\n",
			 ifnum);
L
Linus Torvalds 已提交
450

451
	usb_set_intfdata(intf, NULL);
L
Linus Torvalds 已提交
452 453 454 455 456

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

457 458 459 460 461 462 463 464 465 466 467 468 469
/* 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 已提交
470 471 472 473
struct usb_driver usbfs_driver = {
	.name =		"usbfs",
	.probe =	driver_probe,
	.disconnect =	driver_disconnect,
474 475
	.suspend =	driver_suspend,
	.resume =	driver_resume,
L
Linus Torvalds 已提交
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
};

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 */
529 530 531
	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 已提交
532 533 534 535 536 537
	return claimintf(ps, ifnum);
}

static int findintfep(struct usb_device *dev, unsigned int ep)
{
	unsigned int i, j, e;
538
	struct usb_interface *intf;
L
Linus Torvalds 已提交
539 540 541 542 543 544 545 546 547 548
	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++) {
549
			alts = &intf->altsetting[j];
L
Linus Torvalds 已提交
550 551 552 553 554 555 556
			for (e = 0; e < alts->desc.bNumEndpoints; e++) {
				endpt = &alts->endpoint[e].desc;
				if (endpt->bEndpointAddress == ep)
					return alts->desc.bInterfaceNumber;
			}
		}
	}
557
	return -ENOENT;
L
Linus Torvalds 已提交
558 559
}

560 561
static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype,
			   unsigned int index)
L
Linus Torvalds 已提交
562 563 564
{
	int ret = 0;

565 566
	if (ps->dev->state != USB_STATE_UNAUTHENTICATED
	 && ps->dev->state != USB_STATE_ADDRESS
567
	 && ps->dev->state != USB_STATE_CONFIGURED)
L
Linus Torvalds 已提交
568 569 570 571 572 573 574
		return -EHOSTUNREACH;
	if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
		return 0;

	index &= 0xff;
	switch (requesttype & USB_RECIP_MASK) {
	case USB_RECIP_ENDPOINT:
575 576
		ret = findintfep(ps->dev, index);
		if (ret >= 0)
L
Linus Torvalds 已提交
577 578 579 580 581 582 583 584 585 586
			ret = checkintf(ps, ret);
		break;

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

587
static int match_devt(struct device *dev, void *data)
588
{
589
	return dev->devt == (dev_t) (unsigned long) data;
590
}
591

592
static struct usb_device *usbdev_lookup_by_devt(dev_t devt)
593 594 595
{
	struct device *dev;

596 597
	dev = bus_find_device(&usb_bus_type, NULL,
			      (void *) (unsigned long) devt, match_devt);
598 599 600 601
	if (!dev)
		return NULL;
	return container_of(dev, struct usb_device, dev);
}
602

L
Linus Torvalds 已提交
603 604 605 606 607
/*
 * file operations
 */
static int usbdev_open(struct inode *inode, struct file *file)
{
608
	struct usb_device *dev = NULL;
L
Linus Torvalds 已提交
609
	struct dev_state *ps;
610
	const struct cred *cred = current_cred();
L
Linus Torvalds 已提交
611 612
	int ret;

J
Jonathan Corbet 已提交
613
	lock_kernel();
614 615 616
	/* Protect against simultaneous removal or release */
	mutex_lock(&usbfs_mutex);

L
Linus Torvalds 已提交
617
	ret = -ENOMEM;
618 619
	ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
	if (!ps)
620
		goto out;
L
Linus Torvalds 已提交
621

622
	ret = -ENODEV;
623

624
	/* usbdev device-node */
625
	if (imajor(inode) == USB_DEVICE_MAJOR)
626
		dev = usbdev_lookup_by_devt(inode->i_rdev);
627 628
#ifdef CONFIG_USB_DEVICEFS
	/* procfs file */
629
	if (!dev) {
630
		dev = inode->i_private;
631 632 633 634 635 636
		if (dev && dev->usbfs_dentry &&
					dev->usbfs_dentry->d_inode == inode)
			usb_get_dev(dev);
		else
			dev = NULL;
	}
637
#endif
638
	if (!dev || dev->state == USB_STATE_NOTATTACHED)
L
Linus Torvalds 已提交
639
		goto out;
640
	ret = usb_autoresume_device(dev);
641 642 643
	if (ret)
		goto out;

L
Linus Torvalds 已提交
644 645 646 647
	ret = 0;
	ps->dev = dev;
	ps->file = file;
	spin_lock_init(&ps->lock);
648
	INIT_LIST_HEAD(&ps->list);
L
Linus Torvalds 已提交
649 650 651 652
	INIT_LIST_HEAD(&ps->async_pending);
	INIT_LIST_HEAD(&ps->async_completed);
	init_waitqueue_head(&ps->wait);
	ps->discsignr = 0;
653
	ps->disc_pid = get_pid(task_pid(current));
654 655
	ps->disc_uid = cred->uid;
	ps->disc_euid = cred->euid;
L
Linus Torvalds 已提交
656 657
	ps->disccontext = NULL;
	ps->ifclaimed = 0;
658
	security_task_getsecid(current, &ps->secid);
O
Oliver Neukum 已提交
659
	smp_wmb();
L
Linus Torvalds 已提交
660 661
	list_add_tail(&ps->list, &dev->filelist);
	file->private_data = ps;
662 663
	snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
			current->comm);
L
Linus Torvalds 已提交
664
 out:
665
	if (ret) {
666
		kfree(ps);
667 668
		usb_put_dev(dev);
	}
669
	mutex_unlock(&usbfs_mutex);
J
Jonathan Corbet 已提交
670
	unlock_kernel();
671
	return ret;
L
Linus Torvalds 已提交
672 673 674 675
}

static int usbdev_release(struct inode *inode, struct file *file)
{
676
	struct dev_state *ps = file->private_data;
L
Linus Torvalds 已提交
677 678
	struct usb_device *dev = ps->dev;
	unsigned int ifnum;
679
	struct async *as;
L
Linus Torvalds 已提交
680 681

	usb_lock_device(dev);
682
	usb_hub_release_all_ports(dev, ps);
683 684 685

	/* Protect against simultaneous open */
	mutex_lock(&usbfs_mutex);
L
Linus Torvalds 已提交
686
	list_del_init(&ps->list);
687 688
	mutex_unlock(&usbfs_mutex);

L
Linus Torvalds 已提交
689 690 691 692 693 694
	for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
			ifnum++) {
		if (test_bit(ifnum, &ps->ifclaimed))
			releaseintf(ps, ifnum);
	}
	destroy_all_async(ps);
695
	usb_autosuspend_device(dev);
L
Linus Torvalds 已提交
696 697
	usb_unlock_device(dev);
	usb_put_dev(dev);
698
	put_pid(ps->disc_pid);
699 700 701 702 703 704

	as = async_getcompleted(ps);
	while (as) {
		free_async(as);
		as = async_getcompleted(ps);
	}
L
Linus Torvalds 已提交
705
	kfree(ps);
706
	return 0;
L
Linus Torvalds 已提交
707 708 709 710 711 712 713 714
}

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;
715
	unsigned wLength;
716
	int i, pipe, ret;
L
Linus Torvalds 已提交
717 718 719

	if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
		return -EFAULT;
720 721
	ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.wIndex);
	if (ret)
L
Linus Torvalds 已提交
722
		return ret;
723 724
	wLength = ctrl.wLength;		/* To suppress 64k PAGE_SIZE warning */
	if (wLength > PAGE_SIZE)
L
Linus Torvalds 已提交
725
		return -EINVAL;
726 727
	tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
	if (!tbuf)
L
Linus Torvalds 已提交
728 729 730
		return -ENOMEM;
	tmo = ctrl.timeout;
	if (ctrl.bRequestType & 0x80) {
731 732
		if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
					       ctrl.wLength)) {
L
Linus Torvalds 已提交
733 734 735
			free_page((unsigned long)tbuf);
			return -EINVAL;
		}
736 737
		pipe = usb_rcvctrlpipe(dev, 0);
		snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT);
L
Linus Torvalds 已提交
738 739

		usb_unlock_device(dev);
740
		i = usb_control_msg(dev, pipe, ctrl.bRequest,
741 742
				    ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
				    tbuf, ctrl.wLength, tmo);
L
Linus Torvalds 已提交
743
		usb_lock_device(dev);
744 745
		snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE);

L
Linus Torvalds 已提交
746
		if ((i > 0) && ctrl.wLength) {
747
			if (copy_to_user(ctrl.data, tbuf, i)) {
L
Linus Torvalds 已提交
748 749 750 751 752 753 754 755 756 757 758
				free_page((unsigned long)tbuf);
				return -EFAULT;
			}
		}
	} else {
		if (ctrl.wLength) {
			if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
				free_page((unsigned long)tbuf);
				return -EFAULT;
			}
		}
759 760 761
		pipe = usb_sndctrlpipe(dev, 0);
		snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT);

L
Linus Torvalds 已提交
762
		usb_unlock_device(dev);
763 764 765
		i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
				    ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
				    tbuf, ctrl.wLength, tmo);
L
Linus Torvalds 已提交
766
		usb_lock_device(dev);
767
		snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE);
L
Linus Torvalds 已提交
768 769
	}
	free_page((unsigned long)tbuf);
770
	if (i < 0 && i != -EPIPE) {
L
Linus Torvalds 已提交
771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
		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);
	}
	return i;
}

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;
786
	int i, ret;
L
Linus Torvalds 已提交
787 788 789

	if (copy_from_user(&bulk, arg, sizeof(bulk)))
		return -EFAULT;
790 791
	ret = findintfep(ps->dev, bulk.ep);
	if (ret < 0)
L
Linus Torvalds 已提交
792
		return ret;
793 794
	ret = checkintf(ps, ret);
	if (ret)
L
Linus Torvalds 已提交
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
		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;
	if (len1 > MAX_USBFS_BUFFER_SIZE)
		return -EINVAL;
	if (!(tbuf = kmalloc(len1, GFP_KERNEL)))
		return -ENOMEM;
	tmo = bulk.timeout;
	if (bulk.ep & 0x80) {
		if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
			kfree(tbuf);
			return -EINVAL;
		}
813 814
		snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT);

L
Linus Torvalds 已提交
815 816 817
		usb_unlock_device(dev);
		i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
		usb_lock_device(dev);
818 819
		snoop_urb(dev, NULL, pipe, len2, i, COMPLETE);

L
Linus Torvalds 已提交
820 821 822 823 824 825 826 827 828 829 830 831 832
		if (!i && len2) {
			if (copy_to_user(bulk.data, tbuf, len2)) {
				kfree(tbuf);
				return -EFAULT;
			}
		}
	} else {
		if (len1) {
			if (copy_from_user(tbuf, bulk.data, len1)) {
				kfree(tbuf);
				return -EFAULT;
			}
		}
833 834
		snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT);

L
Linus Torvalds 已提交
835 836 837
		usb_unlock_device(dev);
		i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
		usb_lock_device(dev);
838
		snoop_urb(dev, NULL, pipe, len2, i, COMPLETE);
L
Linus Torvalds 已提交
839 840 841 842 843 844 845 846 847 848 849 850 851 852
	}
	kfree(tbuf);
	if (i < 0)
		return i;
	return len2;
}

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;
853 854
	ret = findintfep(ps->dev, ep);
	if (ret < 0)
L
Linus Torvalds 已提交
855
		return ret;
856 857
	ret = checkintf(ps, ret);
	if (ret)
L
Linus Torvalds 已提交
858
		return ret;
859
	usb_reset_endpoint(ps->dev, ep);
L
Linus Torvalds 已提交
860 861 862 863 864 865 866 867 868 869 870
	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;
871 872
	ret = findintfep(ps->dev, ep);
	if (ret < 0)
L
Linus Torvalds 已提交
873
		return ret;
874 875
	ret = checkintf(ps, ret);
	if (ret)
L
Linus Torvalds 已提交
876 877
		return ret;
	if (ep & USB_DIR_IN)
878 879 880
		pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
	else
		pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
L
Linus Torvalds 已提交
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916

	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 {
		strncpy(gd.driver, intf->dev.driver->name,
				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)
{
	struct usbdevfs_connectinfo ci;

	ci.devnum = ps->dev->devnum;
	ci.slow = ps->dev->speed == USB_SPEED_LOW;
	if (copy_to_user(arg, &ci, sizeof(ci)))
		return -EFAULT;
	return 0;
}

static int proc_resetdevice(struct dev_state *ps)
{
917
	return usb_reset_device(ps->dev);
L
Linus Torvalds 已提交
918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934
}

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)
{
935
	int u;
L
Linus Torvalds 已提交
936
	int status = 0;
937
	struct usb_host_config *actconfig;
L
Linus Torvalds 已提交
938

939
	if (get_user(u, (int __user *)arg))
L
Linus Torvalds 已提交
940 941
		return -EFAULT;

942 943 944 945
	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 已提交
946 947
	 * an interface is claimed by usbfs it could easily deadlock.
	 */
948 949 950 951 952 953
	if (actconfig) {
		int i;

		for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
			if (usb_interface_claimed(actconfig->interface[i])) {
				dev_warn(&ps->dev->dev,
954
					"usbfs: interface %d claimed by %s "
L
Linus Torvalds 已提交
955 956 957 958
					"while '%s' sets config #%d\n",
					actconfig->interface[i]
						->cur_altsetting
						->desc.bInterfaceNumber,
959 960
					actconfig->interface[i]
						->dev.driver->name,
L
Linus Torvalds 已提交
961
					current->comm, u);
962
				status = -EBUSY;
L
Linus Torvalds 已提交
963 964
				break;
			}
965 966
		}
	}
L
Linus Torvalds 已提交
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981

	/* 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,
982 983
			struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
			void __user *arg)
L
Linus Torvalds 已提交
984 985 986 987 988
{
	struct usbdevfs_iso_packet_desc *isopkt = NULL;
	struct usb_host_endpoint *ep;
	struct async *as;
	struct usb_ctrlrequest *dr = NULL;
989
	const struct cred *cred = current_cred();
L
Linus Torvalds 已提交
990
	unsigned int u, totlen, isofrmlen;
991
	int ret, ifnum = -1;
A
Alan Stern 已提交
992
	int is_in;
L
Linus Torvalds 已提交
993

994 995 996 997 998
	if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP |
				USBDEVFS_URB_SHORT_NOT_OK |
				USBDEVFS_URB_NO_FSBR |
				USBDEVFS_URB_ZERO_PACKET |
				USBDEVFS_URB_NO_INTERRUPT))
L
Linus Torvalds 已提交
999
		return -EINVAL;
1000
	if (uurb->buffer_length > 0 && !uurb->buffer)
L
Linus Torvalds 已提交
1001
		return -EINVAL;
1002 1003 1004 1005
	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 已提交
1006
			return ifnum;
1007 1008
		ret = checkintf(ps, ifnum);
		if (ret)
L
Linus Torvalds 已提交
1009 1010
			return ret;
	}
A
Alan Stern 已提交
1011 1012 1013 1014 1015 1016 1017
	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 已提交
1018 1019 1020 1021
	if (!ep)
		return -ENOENT;
	switch(uurb->type) {
	case USBDEVFS_URB_TYPE_CONTROL:
A
Alan Stern 已提交
1022
		if (!usb_endpoint_xfer_control(&ep->desc))
L
Linus Torvalds 已提交
1023
			return -EINVAL;
1024 1025 1026 1027
		/* min 8 byte setup packet,
		 * max 8 byte setup plus an arbitrary data stage */
		if (uurb->buffer_length < 8 ||
		    uurb->buffer_length > (8 + MAX_USBFS_BUFFER_SIZE))
L
Linus Torvalds 已提交
1028
			return -EINVAL;
1029 1030
		dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
		if (!dr)
L
Linus Torvalds 已提交
1031 1032 1033 1034 1035 1036 1037 1038 1039
			return -ENOMEM;
		if (copy_from_user(dr, uurb->buffer, 8)) {
			kfree(dr);
			return -EFAULT;
		}
		if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
			kfree(dr);
			return -EINVAL;
		}
1040 1041 1042
		ret = check_ctrlrecip(ps, dr->bRequestType,
				      le16_to_cpup(&dr->wIndex));
		if (ret) {
L
Linus Torvalds 已提交
1043 1044 1045 1046 1047 1048
			kfree(dr);
			return ret;
		}
		uurb->number_of_packets = 0;
		uurb->buffer_length = le16_to_cpup(&dr->wLength);
		uurb->buffer += 8;
A
Alan Stern 已提交
1049 1050 1051 1052 1053 1054 1055
		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;
		}
L
Linus Torvalds 已提交
1056 1057 1058
		break;

	case USBDEVFS_URB_TYPE_BULK:
A
Alan Stern 已提交
1059
		switch (usb_endpoint_type(&ep->desc)) {
L
Linus Torvalds 已提交
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071
		case USB_ENDPOINT_XFER_CONTROL:
		case USB_ENDPOINT_XFER_ISOC:
			return -EINVAL;
		/* allow single-shot interrupt transfers, at bogus rates */
		}
		uurb->number_of_packets = 0;
		if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
			return -EINVAL;
		break;

	case USBDEVFS_URB_TYPE_ISO:
		/* arbitrary limit */
1072 1073
		if (uurb->number_of_packets < 1 ||
		    uurb->number_of_packets > 128)
L
Linus Torvalds 已提交
1074
			return -EINVAL;
A
Alan Stern 已提交
1075
		if (!usb_endpoint_xfer_isoc(&ep->desc))
L
Linus Torvalds 已提交
1076
			return -EINVAL;
1077 1078
		isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
				   uurb->number_of_packets;
L
Linus Torvalds 已提交
1079 1080 1081 1082 1083 1084 1085
		if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
			return -ENOMEM;
		if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
			kfree(isopkt);
			return -EFAULT;
		}
		for (totlen = u = 0; u < uurb->number_of_packets; u++) {
1086 1087
			/* arbitrary limit,
			 * sufficient for USB 2.0 high-bandwidth iso */
1088
			if (isopkt[u].length > 8192) {
L
Linus Torvalds 已提交
1089 1090 1091 1092 1093
				kfree(isopkt);
				return -EINVAL;
			}
			totlen += isopkt[u].length;
		}
1094 1095
		/* 3072 * 64 microframes */
		if (totlen > 196608) {
L
Linus Torvalds 已提交
1096 1097 1098 1099 1100 1101 1102 1103
			kfree(isopkt);
			return -EINVAL;
		}
		uurb->buffer_length = totlen;
		break;

	case USBDEVFS_URB_TYPE_INTERRUPT:
		uurb->number_of_packets = 0;
A
Alan Stern 已提交
1104
		if (!usb_endpoint_xfer_int(&ep->desc))
L
Linus Torvalds 已提交
1105 1106 1107 1108 1109 1110 1111 1112
			return -EINVAL;
		if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
			return -EINVAL;
		break;

	default:
		return -EINVAL;
	}
1113 1114 1115
	if (uurb->buffer_length > 0 &&
			!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
				uurb->buffer, uurb->buffer_length)) {
1116 1117
		kfree(isopkt);
		kfree(dr);
1118
		return -EFAULT;
L
Linus Torvalds 已提交
1119
	}
1120 1121
	as = alloc_async(uurb->number_of_packets);
	if (!as) {
1122 1123
		kfree(isopkt);
		kfree(dr);
L
Linus Torvalds 已提交
1124 1125
		return -ENOMEM;
	}
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
	if (uurb->buffer_length > 0) {
		as->urb->transfer_buffer = kmalloc(uurb->buffer_length,
				GFP_KERNEL);
		if (!as->urb->transfer_buffer) {
			kfree(isopkt);
			kfree(dr);
			free_async(as);
			return -ENOMEM;
		}
	}
1136 1137
	as->urb->dev = ps->dev;
	as->urb->pipe = (uurb->type << 30) |
A
Alan Stern 已提交
1138 1139
			__create_pipe(ps->dev, uurb->endpoint & 0xf) |
			(uurb->endpoint & USB_DIR_IN);
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157

	/* 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 已提交
1158
	as->urb->transfer_buffer_length = uurb->buffer_length;
1159
	as->urb->setup_packet = (unsigned char *)dr;
L
Linus Torvalds 已提交
1160 1161
	as->urb->start_frame = uurb->start_frame;
	as->urb->number_of_packets = uurb->number_of_packets;
1162 1163 1164 1165 1166
	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;
1167 1168
	as->urb->context = as;
	as->urb->complete = async_completed;
L
Linus Torvalds 已提交
1169 1170 1171 1172 1173
	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;
	}
1174
	kfree(isopkt);
L
Linus Torvalds 已提交
1175
	as->ps = ps;
1176
	as->userurb = arg;
1177
	if (is_in && uurb->buffer_length > 0)
L
Linus Torvalds 已提交
1178 1179 1180 1181 1182
		as->userbuffer = uurb->buffer;
	else
		as->userbuffer = NULL;
	as->signr = uurb->signr;
	as->ifnum = ifnum;
1183
	as->pid = get_pid(task_pid(current));
1184 1185
	as->uid = cred->uid;
	as->euid = cred->euid;
1186
	security_task_getsecid(current, &as->secid);
1187
	if (!is_in && uurb->buffer_length > 0) {
A
Alan Stern 已提交
1188
		if (copy_from_user(as->urb->transfer_buffer, uurb->buffer,
1189
				uurb->buffer_length)) {
L
Linus Torvalds 已提交
1190 1191 1192 1193
			free_async(as);
			return -EFAULT;
		}
	}
1194 1195
	snoop_urb(ps->dev, as->userurb, as->urb->pipe,
			as->urb->transfer_buffer_length, 0, SUBMIT);
1196 1197 1198 1199
	async_newpending(as);
	if ((ret = usb_submit_urb(as->urb, GFP_KERNEL))) {
		dev_printk(KERN_DEBUG, &ps->dev->dev,
			   "usbfs: usb_submit_urb returned %d\n", ret);
1200 1201
		snoop_urb(ps->dev, as->userurb, as->urb->pipe,
				0, ret, COMPLETE);
1202 1203 1204 1205 1206
		async_removepending(as);
		free_async(as);
		return ret;
	}
	return 0;
L
Linus Torvalds 已提交
1207 1208 1209 1210 1211 1212 1213 1214 1215
}

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;

1216 1217 1218
	return proc_do_submiturb(ps, &uurb,
			(((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
			arg);
L
Linus Torvalds 已提交
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239
}

static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
{
	struct async *as;

	as = async_getpending(ps, arg);
	if (!as)
		return -EINVAL;
	usb_kill_urb(as->urb);
	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;

	if (as->userbuffer)
1240 1241
		if (copy_to_user(as->userbuffer, urb->transfer_buffer,
				 urb->transfer_buffer_length))
O
Oliver Neukum 已提交
1242
			goto err_out;
1243
	if (put_user(as->status, &userurb->status))
O
Oliver Neukum 已提交
1244
		goto err_out;
L
Linus Torvalds 已提交
1245
	if (put_user(urb->actual_length, &userurb->actual_length))
O
Oliver Neukum 已提交
1246
		goto err_out;
L
Linus Torvalds 已提交
1247
	if (put_user(urb->error_count, &userurb->error_count))
O
Oliver Neukum 已提交
1248
		goto err_out;
L
Linus Torvalds 已提交
1249

A
Alan Stern 已提交
1250
	if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
1251 1252 1253
		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 已提交
1254
				goto err_out;
1255 1256
			if (put_user(urb->iso_frame_desc[i].status,
				     &userurb->iso_frame_desc[i].status))
O
Oliver Neukum 已提交
1257
				goto err_out;
1258
		}
L
Linus Torvalds 已提交
1259 1260 1261 1262 1263 1264 1265
	}

	free_async(as);

	if (put_user(addr, (void __user * __user *)arg))
		return -EFAULT;
	return 0;
O
Oliver Neukum 已提交
1266 1267 1268 1269

err_out:
	free_async(as);
	return -EFAULT;
L
Linus Torvalds 已提交
1270 1271
}

1272
static struct async *reap_as(struct dev_state *ps)
L
Linus Torvalds 已提交
1273
{
1274
	DECLARE_WAITQUEUE(wait, current);
L
Linus Torvalds 已提交
1275 1276 1277 1278 1279 1280
	struct async *as = NULL;
	struct usb_device *dev = ps->dev;

	add_wait_queue(&ps->wait, &wait);
	for (;;) {
		__set_current_state(TASK_INTERRUPTIBLE);
1281 1282
		as = async_getcompleted(ps);
		if (as)
L
Linus Torvalds 已提交
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
			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);
	if (as)
		return processcompl(as, (void __user * __user *)arg);
	if (signal_pending(current))
		return -EINTR;
	return -EIO;
}

static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
{
	struct async *as;

	if (!(as = async_getcompleted(ps)))
		return -EAGAIN;
	return processcompl(as, (void __user * __user *)arg);
}

#ifdef CONFIG_COMPAT

static int get_urb32(struct usbdevfs_urb *kurb,
		     struct usbdevfs_urb32 __user *uurb)
{
	__u32  uptr;
1320 1321
	if (!access_ok(VERIFY_READ, uurb, sizeof(*uurb)) ||
	    __get_user(kurb->type, &uurb->type) ||
L
Linus Torvalds 已提交
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
	    __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 已提交
1336
	if (__get_user(uptr, &uurb->usercontext))
L
Linus Torvalds 已提交
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
		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;

1347
	if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
L
Linus Torvalds 已提交
1348 1349
		return -EFAULT;

1350 1351 1352
	return proc_do_submiturb(ps, &uurb,
			((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
			arg);
L
Linus Torvalds 已提交
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
}

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;

	if (as->userbuffer)
1363 1364
		if (copy_to_user(as->userbuffer, urb->transfer_buffer,
				 urb->transfer_buffer_length))
L
Linus Torvalds 已提交
1365
			return -EFAULT;
1366
	if (put_user(as->status, &userurb->status))
L
Linus Torvalds 已提交
1367 1368 1369 1370 1371 1372
		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 已提交
1373
	if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
1374 1375 1376 1377 1378 1379 1380 1381
		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 已提交
1382 1383 1384
	}

	free_async(as);
A
Al Viro 已提交
1385
	if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
L
Linus Torvalds 已提交
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
		return -EFAULT;
	return 0;
}

static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
{
	struct async *as = reap_as(ps);
	if (as)
		return processcompl_compat(as, (void __user * __user *)arg);
	if (signal_pending(current))
		return -EINTR;
	return -EIO;
}

static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
{
	struct async *as;

	if (!(as = async_getcompleted(ps)))
		return -EAGAIN;
	return processcompl_compat(as, (void __user * __user *)arg);
}

#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;
}

1444
static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
L
Linus Torvalds 已提交
1445 1446 1447 1448 1449 1450 1451
{
	int			size;
	void			*buf = NULL;
	int			retval = 0;
	struct usb_interface    *intf = NULL;
	struct usb_driver       *driver = NULL;

1452
	/* alloc buffer */
1453 1454
	if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
		if ((buf = kmalloc(size, GFP_KERNEL)) == NULL)
L
Linus Torvalds 已提交
1455
			return -ENOMEM;
1456
		if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
1457
			if (copy_from_user(buf, ctl->data, size)) {
1458
				kfree(buf);
L
Linus Torvalds 已提交
1459 1460 1461
				return -EFAULT;
			}
		} else {
1462
			memset(buf, 0, size);
L
Linus Torvalds 已提交
1463 1464 1465
		}
	}

A
Alan Stern 已提交
1466
	if (!connected(ps)) {
1467
		kfree(buf);
L
Linus Torvalds 已提交
1468 1469 1470 1471 1472
		return -ENODEV;
	}

	if (ps->dev->state != USB_STATE_CONFIGURED)
		retval = -EHOSTUNREACH;
1473 1474
	else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
		retval = -EINVAL;
1475
	else switch (ctl->ioctl_code) {
L
Linus Torvalds 已提交
1476 1477 1478 1479 1480

	/* disconnect kernel driver from interface */
	case USBDEVFS_DISCONNECT:
		if (intf->dev.driver) {
			driver = to_usb_driver(intf->dev.driver);
1481
			dev_dbg(&intf->dev, "disconnect by usbfs\n");
L
Linus Torvalds 已提交
1482 1483 1484 1485 1486 1487 1488
			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 已提交
1489 1490 1491 1492
		if (!intf->dev.driver)
			retval = device_attach(&intf->dev);
		else
			retval = -EBUSY;
L
Linus Torvalds 已提交
1493 1494 1495 1496 1497 1498 1499 1500 1501
		break;

	/* talk directly to the interface's driver */
	default:
		if (intf->dev.driver)
			driver = to_usb_driver(intf->dev.driver);
		if (driver == NULL || driver->ioctl == NULL) {
			retval = -ENOTTY;
		} else {
1502
			retval = driver->ioctl(intf, ctl->ioctl_code, buf);
L
Linus Torvalds 已提交
1503 1504 1505 1506 1507 1508 1509
			if (retval == -ENOIOCTLCMD)
				retval = -ENOTTY;
		}
	}

	/* cleanup and return */
	if (retval >= 0
1510
			&& (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
L
Linus Torvalds 已提交
1511
			&& size > 0
1512
			&& copy_to_user(ctl->data, buf, size) != 0)
L
Linus Torvalds 已提交
1513
		retval = -EFAULT;
1514 1515

	kfree(buf);
L
Linus Torvalds 已提交
1516 1517 1518
	return retval;
}

1519 1520 1521 1522
static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
{
	struct usbdevfs_ioctl	ctrl;

1523
	if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
1524 1525 1526 1527 1528
		return -EFAULT;
	return proc_ioctl(ps, &ctrl);
}

#ifdef CONFIG_COMPAT
1529
static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
1530 1531 1532 1533 1534
{
	struct usbdevfs_ioctl32 __user *uioc;
	struct usbdevfs_ioctl ctrl;
	u32 udata;

A
Andrew Morton 已提交
1535
	uioc = compat_ptr((long)arg);
1536 1537 1538
	if (!access_ok(VERIFY_READ, uioc, sizeof(*uioc)) ||
	    __get_user(ctrl.ifno, &uioc->ifno) ||
	    __get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
1539 1540 1541 1542 1543 1544 1545 1546
	    __get_user(udata, &uioc->data))
		return -EFAULT;
	ctrl.data = compat_ptr(udata);

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

1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569
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);
}

L
Linus Torvalds 已提交
1570 1571 1572 1573 1574
/*
 * 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...
 */
1575 1576
static int usbdev_ioctl(struct inode *inode, struct file *file,
			unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
1577
{
1578
	struct dev_state *ps = file->private_data;
L
Linus Torvalds 已提交
1579 1580 1581 1582 1583 1584 1585
	struct usb_device *dev = ps->dev;
	void __user *p = (void __user *)arg;
	int ret = -ENOTTY;

	if (!(file->f_mode & FMODE_WRITE))
		return -EPERM;
	usb_lock_device(dev);
A
Alan Stern 已提交
1586
	if (!connected(ps)) {
L
Linus Torvalds 已提交
1587 1588 1589 1590 1591 1592
		usb_unlock_device(dev);
		return -ENODEV;
	}

	switch (cmd) {
	case USBDEVFS_CONTROL:
1593
		snoop(&dev->dev, "%s: CONTROL\n", __func__);
L
Linus Torvalds 已提交
1594 1595 1596 1597 1598 1599
		ret = proc_control(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_BULK:
1600
		snoop(&dev->dev, "%s: BULK\n", __func__);
L
Linus Torvalds 已提交
1601 1602 1603 1604 1605 1606
		ret = proc_bulk(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_RESETEP:
1607
		snoop(&dev->dev, "%s: RESETEP\n", __func__);
L
Linus Torvalds 已提交
1608 1609 1610 1611 1612 1613
		ret = proc_resetep(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_RESET:
1614
		snoop(&dev->dev, "%s: RESET\n", __func__);
L
Linus Torvalds 已提交
1615 1616 1617 1618
		ret = proc_resetdevice(ps);
		break;

	case USBDEVFS_CLEAR_HALT:
1619
		snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
L
Linus Torvalds 已提交
1620 1621 1622 1623 1624 1625
		ret = proc_clearhalt(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_GETDRIVER:
1626
		snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
L
Linus Torvalds 已提交
1627 1628 1629 1630
		ret = proc_getdriver(ps, p);
		break;

	case USBDEVFS_CONNECTINFO:
1631
		snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
L
Linus Torvalds 已提交
1632 1633 1634 1635
		ret = proc_connectinfo(ps, p);
		break;

	case USBDEVFS_SETINTERFACE:
1636
		snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
L
Linus Torvalds 已提交
1637 1638 1639 1640
		ret = proc_setintf(ps, p);
		break;

	case USBDEVFS_SETCONFIGURATION:
1641
		snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
L
Linus Torvalds 已提交
1642 1643 1644 1645
		ret = proc_setconfig(ps, p);
		break;

	case USBDEVFS_SUBMITURB:
1646
		snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
L
Linus Torvalds 已提交
1647 1648 1649 1650 1651 1652 1653 1654
		ret = proc_submiturb(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

#ifdef CONFIG_COMPAT

	case USBDEVFS_SUBMITURB32:
1655
		snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
L
Linus Torvalds 已提交
1656 1657 1658 1659 1660 1661
		ret = proc_submiturb_compat(ps, p);
		if (ret >= 0)
			inode->i_mtime = CURRENT_TIME;
		break;

	case USBDEVFS_REAPURB32:
1662
		snoop(&dev->dev, "%s: REAPURB32\n", __func__);
L
Linus Torvalds 已提交
1663 1664 1665 1666
		ret = proc_reapurb_compat(ps, p);
		break;

	case USBDEVFS_REAPURBNDELAY32:
1667
		snoop(&dev->dev, "%s: REAPURBNDELAY32\n", __func__);
L
Linus Torvalds 已提交
1668 1669 1670
		ret = proc_reapurbnonblock_compat(ps, p);
		break;

1671
	case USBDEVFS_IOCTL32:
1672
		snoop(&dev->dev, "%s: IOCTL\n", __func__);
A
Al Viro 已提交
1673
		ret = proc_ioctl_compat(ps, ptr_to_compat(p));
1674
		break;
L
Linus Torvalds 已提交
1675 1676 1677
#endif

	case USBDEVFS_DISCARDURB:
1678
		snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
L
Linus Torvalds 已提交
1679 1680 1681 1682
		ret = proc_unlinkurb(ps, p);
		break;

	case USBDEVFS_REAPURB:
1683
		snoop(&dev->dev, "%s: REAPURB\n", __func__);
L
Linus Torvalds 已提交
1684 1685 1686 1687
		ret = proc_reapurb(ps, p);
		break;

	case USBDEVFS_REAPURBNDELAY:
1688
		snoop(&dev->dev, "%s: REAPURBNDELAY\n", __func__);
L
Linus Torvalds 已提交
1689 1690 1691 1692
		ret = proc_reapurbnonblock(ps, p);
		break;

	case USBDEVFS_DISCSIGNAL:
1693
		snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
L
Linus Torvalds 已提交
1694 1695 1696 1697
		ret = proc_disconnectsignal(ps, p);
		break;

	case USBDEVFS_CLAIMINTERFACE:
1698
		snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
L
Linus Torvalds 已提交
1699 1700 1701 1702
		ret = proc_claiminterface(ps, p);
		break;

	case USBDEVFS_RELEASEINTERFACE:
1703
		snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
L
Linus Torvalds 已提交
1704 1705 1706 1707
		ret = proc_releaseinterface(ps, p);
		break;

	case USBDEVFS_IOCTL:
1708
		snoop(&dev->dev, "%s: IOCTL\n", __func__);
1709
		ret = proc_ioctl_default(ps, p);
L
Linus Torvalds 已提交
1710
		break;
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720

	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;
L
Linus Torvalds 已提交
1721 1722 1723 1724 1725 1726 1727 1728
	}
	usb_unlock_device(dev);
	if (ret >= 0)
		inode->i_atime = CURRENT_TIME;
	return ret;
}

/* No kernel lock - fine */
1729 1730
static unsigned int usbdev_poll(struct file *file,
				struct poll_table_struct *wait)
L
Linus Torvalds 已提交
1731
{
1732 1733
	struct dev_state *ps = file->private_data;
	unsigned int mask = 0;
L
Linus Torvalds 已提交
1734 1735 1736 1737

	poll_wait(file, &ps->wait, wait);
	if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
		mask |= POLLOUT | POLLWRNORM;
A
Alan Stern 已提交
1738
	if (!connected(ps))
L
Linus Torvalds 已提交
1739 1740 1741 1742
		mask |= POLLERR | POLLHUP;
	return mask;
}

1743
const struct file_operations usbdev_file_operations = {
1744
	.owner = 	THIS_MODULE,
L
Linus Torvalds 已提交
1745 1746 1747 1748 1749 1750 1751
	.llseek =	usbdev_lseek,
	.read =		usbdev_read,
	.poll =		usbdev_poll,
	.ioctl =	usbdev_ioctl,
	.open =		usbdev_open,
	.release =	usbdev_release,
};
1752

1753
static void usbdev_remove(struct usb_device *udev)
1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774
{
	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;
			kill_pid_info_as_uid(ps->discsignr, &sinfo,
					ps->disc_pid, ps->disc_uid,
					ps->disc_euid, ps->secid);
		}
	}
}

1775 1776 1777 1778
#ifdef CONFIG_USB_DEVICE_CLASS
static struct class *usb_classdev_class;

static int usb_classdev_add(struct usb_device *dev)
1779
{
1780 1781
	struct device *cldev;

1782 1783 1784
	cldev = device_create(usb_classdev_class, &dev->dev, dev->dev.devt,
			      NULL, "usbdev%d.%d", dev->bus->busnum,
			      dev->devnum);
1785 1786 1787
	if (IS_ERR(cldev))
		return PTR_ERR(cldev);
	dev->usb_classdev = cldev;
1788
	return 0;
1789 1790
}

1791
static void usb_classdev_remove(struct usb_device *dev)
1792
{
1793 1794
	if (dev->usb_classdev)
		device_unregister(dev->usb_classdev);
1795 1796
}

1797 1798 1799 1800 1801 1802 1803
#else
#define usb_classdev_add(dev)		0
#define usb_classdev_remove(dev)	do {} while (0)

#endif

static int usbdev_notify(struct notifier_block *self,
1804
			       unsigned long action, void *dev)
1805 1806 1807
{
	switch (action) {
	case USB_DEVICE_ADD:
1808
		if (usb_classdev_add(dev))
1809
			return NOTIFY_BAD;
1810 1811
		break;
	case USB_DEVICE_REMOVE:
1812
		usb_classdev_remove(dev);
1813
		usbdev_remove(dev);
1814 1815 1816 1817 1818 1819
		break;
	}
	return NOTIFY_OK;
}

static struct notifier_block usbdev_nb = {
1820
	.notifier_call = 	usbdev_notify,
1821 1822
};

1823
static struct cdev usb_device_cdev;
1824

1825
int __init usb_devio_init(void)
1826 1827 1828
{
	int retval;

1829
	retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
1830
					"usb_device");
1831
	if (retval) {
1832
		printk(KERN_ERR "Unable to register minors for usb_device\n");
1833 1834
		goto out;
	}
1835
	cdev_init(&usb_device_cdev, &usbdev_file_operations);
1836
	retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
1837
	if (retval) {
1838 1839
		printk(KERN_ERR "Unable to get usb_device major %d\n",
		       USB_DEVICE_MAJOR);
1840
		goto error_cdev;
1841
	}
1842 1843 1844
#ifdef CONFIG_USB_DEVICE_CLASS
	usb_classdev_class = class_create(THIS_MODULE, "usb_device");
	if (IS_ERR(usb_classdev_class)) {
1845
		printk(KERN_ERR "Unable to register usb_device class\n");
1846 1847 1848 1849
		retval = PTR_ERR(usb_classdev_class);
		cdev_del(&usb_device_cdev);
		usb_classdev_class = NULL;
		goto out;
1850
	}
1851 1852 1853 1854 1855
	/* devices of this class shadow the major:minor of their parent
	 * device, so clear ->dev_kobj to prevent adding duplicate entries
	 * to /sys/dev
	 */
	usb_classdev_class->dev_kobj = NULL;
1856
#endif
1857
	usb_register_notify(&usbdev_nb);
1858 1859
out:
	return retval;
1860 1861 1862 1863

error_cdev:
	unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
	goto out;
1864 1865
}

1866
void usb_devio_cleanup(void)
1867
{
1868
	usb_unregister_notify(&usbdev_nb);
1869
#ifdef CONFIG_USB_DEVICE_CLASS
1870 1871
	class_destroy(usb_classdev_class);
#endif
1872
	cdev_del(&usb_device_cdev);
1873
	unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
1874
}