2017-11-03 10:28:30 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2005-04-16 22:20:36 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* devio.c -- User space communication with USB devices.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999-2000 Thomas Sailer (sailer@ife.ee.ethz.ch)
|
|
|
|
*
|
|
|
|
* 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
|
2005-10-10 17:44:29 +00:00
|
|
|
* 30.09.2005 0.3 Fix user-triggerable oops in async URB delivery
|
|
|
|
* (CAN-2005-3055)
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/mm.h>
|
2017-02-08 17:51:30 +00:00
|
|
|
#include <linux/sched/signal.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/signal.h>
|
|
|
|
#include <linux/poll.h>
|
|
|
|
#include <linux/module.h>
|
2013-02-02 07:57:53 +00:00
|
|
|
#include <linux/string.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/usb.h>
|
|
|
|
#include <linux/usbdevice_fs.h>
|
2010-04-24 21:21:52 +00:00
|
|
|
#include <linux/usb/hcd.h> /* for usbcore internals */
|
2005-07-30 23:05:53 +00:00
|
|
|
#include <linux/cdev.h>
|
2005-06-21 04:15:16 +00:00
|
|
|
#include <linux/notifier.h>
|
2006-06-30 08:55:48 +00:00
|
|
|
#include <linux/security.h>
|
2011-09-26 15:45:18 +00:00
|
|
|
#include <linux/user_namespace.h>
|
2012-07-04 07:18:03 +00:00
|
|
|
#include <linux/scatterlist.h>
|
2013-05-17 07:12:34 +00:00
|
|
|
#include <linux/uaccess.h>
|
2016-02-03 21:58:26 +00:00
|
|
|
#include <linux/dma-mapping.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/byteorder.h>
|
|
|
|
#include <linux/moduleparam.h>
|
|
|
|
|
|
|
|
#include "usb.h"
|
|
|
|
|
2005-07-30 23:05:53 +00:00
|
|
|
#define USB_MAXBUS 64
|
2013-05-17 07:13:24 +00:00
|
|
|
#define USB_DEVICE_MAX (USB_MAXBUS * 128)
|
2012-07-04 07:18:03 +00:00
|
|
|
#define USB_SG_SIZE 16384 /* split-size for large txs */
|
2005-07-30 23:05:53 +00:00
|
|
|
|
usbfs: private mutex for open, release, and remove
The usbfs code doesn't provide sufficient mutual exclusion among open,
release, and remove. Release vs. remove is okay because they both
acquire the device lock, but open is not exclusive with either one. All
three routines modify the udev->filelist linked list, so they must not
run concurrently.
Apparently someone gave this a minimum amount of thought in the past by
explicitly acquiring the BKL at the start of the usbdev_open routine.
Oddly enough, there's a comment pointing out that locking is unnecessary
because chrdev_open already has acquired the BKL.
But this ignores the point that the files in /proc/bus/usb/* are not
char device files; they are regular files and so they don't get any
special locking. Furthermore it's necessary to acquire the same lock in
the release and remove routines, which the code does not do.
Yet another problem arises because the same file_operations structure is
accessible through both the /proc/bus/usb/* and /dev/usb/usbdev* file
nodes. Even when one of them has been removed, it's still possible for
userspace to open the other. So simple locking around the individual
remove routines is insufficient; we need to lock the entire
usb_notify_remove_device notifier chain.
Rather than rely on the BKL, this patch (as723) introduces a new private
mutex for the purpose. Holding the BKL while invoking a notifier chain
doesn't seem like a good idea.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-07-02 02:05:01 +00:00
|
|
|
/* Mutual exclusion for removal, open, and release */
|
|
|
|
DEFINE_MUTEX(usbfs_mutex);
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state {
|
2008-06-24 18:47:04 +00:00
|
|
|
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;
|
2016-02-03 21:58:26 +00:00
|
|
|
struct list_head memory_list;
|
2008-06-24 18:47:04 +00:00
|
|
|
wait_queue_head_t wait; /* wake up if a request completed */
|
|
|
|
unsigned int discsignr;
|
|
|
|
struct pid *disc_pid;
|
2011-09-26 15:45:18 +00:00
|
|
|
const struct cred *cred;
|
2008-06-24 18:47:04 +00:00
|
|
|
void __user *disccontext;
|
|
|
|
unsigned long ifclaimed;
|
2009-09-01 15:09:56 +00:00
|
|
|
u32 disabled_bulk_eps;
|
2016-02-21 21:38:01 +00:00
|
|
|
bool privileges_dropped;
|
|
|
|
unsigned long interface_allowed_mask;
|
2008-06-24 18:47:04 +00:00
|
|
|
};
|
|
|
|
|
2016-02-03 21:58:26 +00:00
|
|
|
struct usb_memory {
|
|
|
|
struct list_head memlist;
|
|
|
|
int vma_use_count;
|
|
|
|
int urb_use_count;
|
|
|
|
u32 size;
|
|
|
|
void *mem;
|
|
|
|
dma_addr_t dma_handle;
|
|
|
|
unsigned long vm_start;
|
|
|
|
struct usb_dev_state *ps;
|
|
|
|
};
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
struct async {
|
|
|
|
struct list_head asynclist;
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps;
|
2006-10-02 09:17:28 +00:00
|
|
|
struct pid *pid;
|
2011-09-26 15:45:18 +00:00
|
|
|
const struct cred *cred;
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned int signr;
|
|
|
|
unsigned int ifnum;
|
|
|
|
void __user *userbuffer;
|
|
|
|
void __user *userurb;
|
|
|
|
struct urb *urb;
|
2016-02-03 21:58:26 +00:00
|
|
|
struct usb_memory *usbm;
|
2011-11-17 21:41:25 +00:00
|
|
|
unsigned int mem_usage;
|
2007-08-24 19:42:52 +00:00
|
|
|
int status;
|
2009-09-01 15:09:56 +00:00
|
|
|
u8 bulk_addr;
|
|
|
|
u8 bulk_status;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2012-01-12 23:02:20 +00:00
|
|
|
static bool usbfs_snoop;
|
2008-01-30 23:21:33 +00:00
|
|
|
module_param(usbfs_snoop, bool, S_IRUGO | S_IWUSR);
|
|
|
|
MODULE_PARM_DESC(usbfs_snoop, "true to log all usbfs traffic");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-11-20 18:53:22 +00:00
|
|
|
static unsigned usbfs_snoop_max = 65536;
|
|
|
|
module_param(usbfs_snoop_max, uint, S_IRUGO | S_IWUSR);
|
|
|
|
MODULE_PARM_DESC(usbfs_snoop_max,
|
|
|
|
"maximum number of bytes to print while snooping");
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#define snoop(dev, format, arg...) \
|
|
|
|
do { \
|
|
|
|
if (usbfs_snoop) \
|
2015-08-07 11:22:44 +00:00
|
|
|
dev_info(dev, format, ## arg); \
|
2005-04-16 22:20:36 +00:00
|
|
|
} while (0)
|
|
|
|
|
2009-06-29 15:02:04 +00:00
|
|
|
enum snoop_when {
|
|
|
|
SUBMIT, COMPLETE
|
|
|
|
};
|
2005-08-10 19:15:57 +00:00
|
|
|
|
2009-06-29 15:02:04 +00:00
|
|
|
#define USB_DEVICE_DEV MKDEV(USB_DEVICE_MAJOR, 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-11-17 21:41:25 +00:00
|
|
|
/* Limit on the total amount of memory we can allocate for transfers */
|
2016-12-21 17:19:14 +00:00
|
|
|
static u32 usbfs_memory_mb = 16;
|
2011-11-17 21:41:35 +00:00
|
|
|
module_param(usbfs_memory_mb, uint, 0644);
|
|
|
|
MODULE_PARM_DESC(usbfs_memory_mb,
|
|
|
|
"maximum MB allowed for usbfs buffers (0 = no limit)");
|
|
|
|
|
2017-09-22 20:43:25 +00:00
|
|
|
/* Hard limit, necessary to avoid arithmetic overflow */
|
|
|
|
#define USBFS_XFER_MAX (UINT_MAX / 2 - 1000000)
|
|
|
|
|
2016-12-21 17:19:14 +00:00
|
|
|
static atomic64_t usbfs_memory_usage; /* Total memory currently allocated */
|
2011-11-17 21:41:25 +00:00
|
|
|
|
|
|
|
/* Check whether it's okay to allocate more memory for a transfer */
|
2016-12-21 17:19:14 +00:00
|
|
|
static int usbfs_increase_memory_usage(u64 amount)
|
2011-11-17 21:41:25 +00:00
|
|
|
{
|
2016-12-21 17:19:14 +00:00
|
|
|
u64 lim;
|
2011-11-17 21:41:35 +00:00
|
|
|
|
locking/atomics: COCCINELLE/treewide: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE()
Please do not apply this to mainline directly, instead please re-run the
coccinelle script shown below and apply its output.
For several reasons, it is desirable to use {READ,WRITE}_ONCE() in
preference to ACCESS_ONCE(), and new code is expected to use one of the
former. So far, there's been no reason to change most existing uses of
ACCESS_ONCE(), as these aren't harmful, and changing them results in
churn.
However, for some features, the read/write distinction is critical to
correct operation. To distinguish these cases, separate read/write
accessors must be used. This patch migrates (most) remaining
ACCESS_ONCE() instances to {READ,WRITE}_ONCE(), using the following
coccinelle script:
----
// Convert trivial ACCESS_ONCE() uses to equivalent READ_ONCE() and
// WRITE_ONCE()
// $ make coccicheck COCCI=/home/mark/once.cocci SPFLAGS="--include-headers" MODE=patch
virtual patch
@ depends on patch @
expression E1, E2;
@@
- ACCESS_ONCE(E1) = E2
+ WRITE_ONCE(E1, E2)
@ depends on patch @
expression E;
@@
- ACCESS_ONCE(E)
+ READ_ONCE(E)
----
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: davem@davemloft.net
Cc: linux-arch@vger.kernel.org
Cc: mpe@ellerman.id.au
Cc: shuah@kernel.org
Cc: snitzer@redhat.com
Cc: thor.thayer@linux.intel.com
Cc: tj@kernel.org
Cc: viro@zeniv.linux.org.uk
Cc: will.deacon@arm.com
Link: http://lkml.kernel.org/r/1508792849-3115-19-git-send-email-paulmck@linux.vnet.ibm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-10-23 21:07:29 +00:00
|
|
|
lim = READ_ONCE(usbfs_memory_mb);
|
2016-12-21 17:19:14 +00:00
|
|
|
lim <<= 20;
|
2011-11-17 21:41:35 +00:00
|
|
|
|
2016-12-21 17:19:14 +00:00
|
|
|
atomic64_add(amount, &usbfs_memory_usage);
|
|
|
|
|
|
|
|
if (lim > 0 && atomic64_read(&usbfs_memory_usage) > lim) {
|
|
|
|
atomic64_sub(amount, &usbfs_memory_usage);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2011-11-17 21:41:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Memory for a transfer is being deallocated */
|
2016-12-21 17:19:14 +00:00
|
|
|
static void usbfs_decrease_memory_usage(u64 amount)
|
2011-11-17 21:41:25 +00:00
|
|
|
{
|
2016-12-21 17:19:14 +00:00
|
|
|
atomic64_sub(amount, &usbfs_memory_usage);
|
2011-11-17 21:41:25 +00:00
|
|
|
}
|
2009-06-29 15:02:04 +00:00
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int connected(struct usb_dev_state *ps)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-07-02 02:05:56 +00:00
|
|
|
return (!list_empty(&ps->list) &&
|
|
|
|
ps->dev->state != USB_STATE_NOTATTACHED);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 21:58:26 +00:00
|
|
|
static void dec_usb_memory_use_count(struct usb_memory *usbm, int *count)
|
|
|
|
{
|
|
|
|
struct usb_dev_state *ps = usbm->ps;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&ps->lock, flags);
|
|
|
|
--*count;
|
|
|
|
if (usbm->urb_use_count == 0 && usbm->vma_use_count == 0) {
|
|
|
|
list_del(&usbm->memlist);
|
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
|
|
|
|
|
|
|
usb_free_coherent(ps->dev, usbm->size, usbm->mem,
|
|
|
|
usbm->dma_handle);
|
|
|
|
usbfs_decrease_memory_usage(
|
|
|
|
usbm->size + sizeof(struct usb_memory));
|
|
|
|
kfree(usbm);
|
|
|
|
} else {
|
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usbdev_vm_open(struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct usb_memory *usbm = vma->vm_private_data;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&usbm->ps->lock, flags);
|
|
|
|
++usbm->vma_use_count;
|
|
|
|
spin_unlock_irqrestore(&usbm->ps->lock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usbdev_vm_close(struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct usb_memory *usbm = vma->vm_private_data;
|
|
|
|
|
|
|
|
dec_usb_memory_use_count(usbm, &usbm->vma_use_count);
|
|
|
|
}
|
|
|
|
|
2017-08-24 11:17:09 +00:00
|
|
|
static const struct vm_operations_struct usbdev_vm_ops = {
|
2016-02-03 21:58:26 +00:00
|
|
|
.open = usbdev_vm_open,
|
|
|
|
.close = usbdev_vm_close
|
|
|
|
};
|
|
|
|
|
|
|
|
static int usbdev_mmap(struct file *file, struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct usb_memory *usbm = NULL;
|
|
|
|
struct usb_dev_state *ps = file->private_data;
|
|
|
|
size_t size = vma->vm_end - vma->vm_start;
|
|
|
|
void *mem;
|
|
|
|
unsigned long flags;
|
|
|
|
dma_addr_t dma_handle;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = usbfs_increase_memory_usage(size + sizeof(struct usb_memory));
|
|
|
|
if (ret)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
usbm = kzalloc(sizeof(struct usb_memory), GFP_KERNEL);
|
|
|
|
if (!usbm) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error_decrease_mem;
|
|
|
|
}
|
|
|
|
|
2016-06-15 13:56:11 +00:00
|
|
|
mem = usb_alloc_coherent(ps->dev, size, GFP_USER | __GFP_NOWARN,
|
|
|
|
&dma_handle);
|
2016-02-03 21:58:26 +00:00
|
|
|
if (!mem) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error_free_usbm;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(mem, 0, size);
|
|
|
|
|
|
|
|
usbm->mem = mem;
|
|
|
|
usbm->dma_handle = dma_handle;
|
|
|
|
usbm->size = size;
|
|
|
|
usbm->ps = ps;
|
|
|
|
usbm->vm_start = vma->vm_start;
|
|
|
|
usbm->vma_use_count = 1;
|
|
|
|
INIT_LIST_HEAD(&usbm->memlist);
|
|
|
|
|
|
|
|
if (remap_pfn_range(vma, vma->vm_start,
|
|
|
|
virt_to_phys(usbm->mem) >> PAGE_SHIFT,
|
|
|
|
size, vma->vm_page_prot) < 0) {
|
|
|
|
dec_usb_memory_use_count(usbm, &usbm->vma_use_count);
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
vma->vm_flags |= VM_IO;
|
|
|
|
vma->vm_flags |= (VM_DONTEXPAND | VM_DONTDUMP);
|
|
|
|
vma->vm_ops = &usbdev_vm_ops;
|
|
|
|
vma->vm_private_data = usbm;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&ps->lock, flags);
|
|
|
|
list_add_tail(&usbm->memlist, &ps->memory_list);
|
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error_free_usbm:
|
|
|
|
kfree(usbm);
|
|
|
|
error_decrease_mem:
|
|
|
|
usbfs_decrease_memory_usage(size + sizeof(struct usb_memory));
|
|
|
|
error:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
|
|
|
|
loff_t *ppos)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps = file->private_data;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct usb_device *dev = ps->dev;
|
|
|
|
ssize_t ret = 0;
|
|
|
|
unsigned len;
|
|
|
|
loff_t pos;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
pos = *ppos;
|
|
|
|
usb_lock_device(dev);
|
2006-07-02 02:05:56 +00:00
|
|
|
if (!connected(ps)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = -ENODEV;
|
|
|
|
goto err;
|
|
|
|
} else if (pos < 0) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pos < sizeof(struct usb_device_descriptor)) {
|
2008-01-30 23:21:33 +00:00
|
|
|
/* 18 bytes - fits on the stack */
|
|
|
|
struct usb_device_descriptor temp_desc;
|
2006-01-06 20:24:25 +00:00
|
|
|
|
|
|
|
memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
|
2006-01-19 07:55:07 +00:00
|
|
|
le16_to_cpus(&temp_desc.bcdUSB);
|
|
|
|
le16_to_cpus(&temp_desc.idVendor);
|
|
|
|
le16_to_cpus(&temp_desc.idProduct);
|
|
|
|
le16_to_cpus(&temp_desc.bcdDevice);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
len = sizeof(struct usb_device_descriptor) - pos;
|
|
|
|
if (len > nbytes)
|
|
|
|
len = nbytes;
|
2006-01-06 20:24:25 +00:00
|
|
|
if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
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)
|
|
|
|
{
|
2008-01-05 10:01:07 +00:00
|
|
|
struct async *as;
|
2005-10-24 19:38:24 +00:00
|
|
|
|
2008-01-05 10:01:07 +00:00
|
|
|
as = kzalloc(sizeof(struct async), GFP_KERNEL);
|
2008-01-30 23:21:33 +00:00
|
|
|
if (!as)
|
|
|
|
return NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
|
|
|
|
if (!as->urb) {
|
|
|
|
kfree(as);
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-01-30 23:21:33 +00:00
|
|
|
return as;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void free_async(struct async *as)
|
|
|
|
{
|
2012-07-04 07:18:03 +00:00
|
|
|
int i;
|
|
|
|
|
2006-10-02 09:17:28 +00:00
|
|
|
put_pid(as->pid);
|
usbfs: Fix oops related to user namespace conversion.
When running the Point Grey "flycap" program for their USB 3.0 camera
(which was running as a USB 2.0 device for some reason), I trigger this
oops whenever I try to open a video stream:
Dec 15 16:48:34 puck kernel: [ 1798.715559] BUG: unable to handle kernel NULL pointer dereference at (null)
Dec 15 16:48:34 puck kernel: [ 1798.719153] IP: [<ffffffff8147841e>] free_async+0x1e/0x70
Dec 15 16:48:34 puck kernel: [ 1798.720991] PGD 6f833067 PUD 6fc56067 PMD 0
Dec 15 16:48:34 puck kernel: [ 1798.722815] Oops: 0002 [#1] SMP
Dec 15 16:48:34 puck kernel: [ 1798.724627] CPU 0
Dec 15 16:48:34 puck kernel: [ 1798.724636] Modules linked in: ecryptfs encrypted_keys sha1_generic trusted binfmt_misc sha256_generic aesni_intel cryptd aes_x86_64 aes_generic parport_pc dm_crypt ppdev joydev snd_hda_codec_hdmi snd_hda_codec_conexant arc4 iwlwifi snd_hda_intel snd_hda_codec snd_hwdep snd_pcm thinkpad_acpi mac80211 snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer btusb uvcvideo snd_seq_device bluetooth videodev psmouse snd v4l2_compat_ioctl32 serio_raw tpm_tis cfg80211 tpm tpm_bios nvram soundcore snd_page_alloc lp parport i915 xhci_hcd ahci libahci drm_kms_helper drm sdhci_pci sdhci e1000e i2c_algo_bit video
Dec 15 16:48:34 puck kernel: [ 1798.734212]
Dec 15 16:48:34 puck kernel: [ 1798.736162] Pid: 2713, comm: FlyCap2 Not tainted 3.2.0-rc5+ #28 LENOVO 4286CTO/4286CTO
Dec 15 16:48:34 puck kernel: [ 1798.738148] RIP: 0010:[<ffffffff8147841e>] [<ffffffff8147841e>] free_async+0x1e/0x70
Dec 15 16:48:34 puck kernel: [ 1798.740134] RSP: 0018:ffff88005715fd78 EFLAGS: 00010296
Dec 15 16:48:34 puck kernel: [ 1798.742118] RAX: 00000000fffffff4 RBX: ffff88006fe8f900 RCX: 0000000000004118
Dec 15 16:48:34 puck kernel: [ 1798.744116] RDX: 0000000001000000 RSI: 0000000000016390 RDI: 0000000000000000
Dec 15 16:48:34 puck kernel: [ 1798.746087] RBP: ffff88005715fd88 R08: 0000000000000000 R09: ffffffff8146f22e
Dec 15 16:48:34 puck kernel: [ 1798.748018] R10: ffff88006e520ac0 R11: 0000000000000001 R12: ffff88005715fe28
Dec 15 16:48:34 puck kernel: [ 1798.749916] R13: ffff88005d31df00 R14: ffff88006fe8f900 R15: 00007f688c995cb8
Dec 15 16:48:34 puck kernel: [ 1798.751785] FS: 00007f68a366da40(0000) GS:ffff880100200000(0000) knlGS:0000000000000000
Dec 15 16:48:34 puck kernel: [ 1798.753659] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Dec 15 16:48:34 puck kernel: [ 1798.755509] CR2: 0000000000000000 CR3: 00000000706bb000 CR4: 00000000000406f0
Dec 15 16:48:34 puck kernel: [ 1798.757334] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
Dec 15 16:48:34 puck kernel: [ 1798.759124] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Dec 15 16:48:34 puck kernel: [ 1798.760871] Process FlyCap2 (pid: 2713, threadinfo ffff88005715e000, task ffff88006c675b80)
Dec 15 16:48:34 puck kernel: [ 1798.762605] Stack:
Dec 15 16:48:34 puck kernel: [ 1798.764297] ffff88005715fe28 0000000000000000 ffff88005715fe08 ffffffff81479058
Dec 15 16:48:34 puck kernel: [ 1798.766020] 0000000000000000 ffffea0000004000 ffff880000004118 0000000000000000
Dec 15 16:48:34 puck kernel: [ 1798.767750] ffff880000000001 ffff88006e520ac0 fffffff46fd81180 0000000000000000
Dec 15 16:48:34 puck kernel: [ 1798.769472] Call Trace:
Dec 15 16:48:34 puck kernel: [ 1798.771147] [<ffffffff81479058>] proc_do_submiturb+0x778/0xa00
Dec 15 16:48:34 puck kernel: [ 1798.772798] [<ffffffff8147a5fd>] usbdev_do_ioctl+0x24d/0x1200
Dec 15 16:48:34 puck kernel: [ 1798.774410] [<ffffffff8147b5de>] usbdev_ioctl+0xe/0x20
Dec 15 16:48:34 puck kernel: [ 1798.775975] [<ffffffff81189259>] do_vfs_ioctl+0x99/0x600
Dec 15 16:48:34 puck kernel: [ 1798.777534] [<ffffffff81189851>] sys_ioctl+0x91/0xa0
Dec 15 16:48:34 puck kernel: [ 1798.779088] [<ffffffff816247c2>] system_call_fastpath+0x16/0x1b
ec 15 16:48:34 puck kernel: [ 1798.780634] Code: 51 ff ff ff e9 29 ff ff ff 0f 1f 40 00 55 48 89 e5 53 48 83 ec 08 66 66 66 66 90 48 89 fb 48 8b 7f 18 e8 a6 ea c0 ff 4
8 8b 7b 20 <f0> ff 0f 0f 94 c0 84 c0 74 05 e8 d3 99 c1 ff 48 8b 43 40 48 8b
Dec 15 16:48:34 puck kernel: [ 1798.783970] RIP [<ffffffff8147841e>] free_async+0x1e/0x70
Dec 15 16:48:34 puck kernel: [ 1798.785630] RSP <ffff88005715fd78>
Dec 15 16:48:34 puck kernel: [ 1798.787274] CR2: 0000000000000000
Dec 15 16:48:34 puck kernel: [ 1798.794728] ---[ end trace 52894d3355f88d19 ]---
markup_oops.pl says the oops is in put_cred:
ffffffff81478401: 48 89 e5 mov %rsp,%rbp
ffffffff81478404: 53 push %rbx
ffffffff81478405: 48 83 ec 08 sub $0x8,%rsp
ffffffff81478409: e8 f2 c0 1a 00 callq ffffffff81624500 <mcount>
ffffffff8147840e: 48 89 fb mov %rdi,%rbx | %ebx => ffff88006fe8f900
put_pid(as->pid);
ffffffff81478411: 48 8b 7f 18 mov 0x18(%rdi),%rdi
ffffffff81478415: e8 a6 ea c0 ff callq ffffffff81086ec0 <put_pid>
put_cred(as->cred);
ffffffff8147841a: 48 8b 7b 20 mov 0x20(%rbx),%rdi | %edi => 0 %ebx = ffff88006fe8f900
*/
static inline int atomic_dec_and_test(atomic_t *v)
{
unsigned char c;
asm volatile(LOCK_PREFIX "decl %0; sete %1"
*ffffffff8147841e: f0 ff 0f lock decl (%rdi) | %edi = 0 <--- faulting instruction
ffffffff81478421: 0f 94 c0 sete %al
static inline void put_cred(const struct cred *_cred)
{
struct cred *cred = (struct cred *) _cred;
validate_creds(cred);
if (atomic_dec_and_test(&(cred)->usage))
ffffffff81478424: 84 c0 test %al,%al
ffffffff81478426: 74 05 je ffffffff8147842d <free_async+0x2d>
__put_cred(cred);
ffffffff81478428: e8 d3 99 c1 ff callq ffffffff81091e00 <__put_cred>
kfree(as->urb->transfer_buffer);
ffffffff8147842d: 48 8b 43 40 mov 0x40(%rbx),%rax
ffffffff81478431: 48 8b 78 68 mov 0x68(%rax),%rdi
ffffffff81478435: e8 a6 e1 ce ff callq ffffffff811665e0 <kfree>
kfree(as->urb->setup_packet);
ffffffff8147843a: 48 8b 43 40 mov 0x40(%rbx),%rax
ffffffff8147843e: 48 8b b8 90 00 00 00 mov 0x90(%rax),%rdi
ffffffff81478445: e8 96 e1 ce ff callq ffffffff811665e0 <kfree>
usb_free_urb(as->urb);
ffffffff8147844a: 48 8b 7b 40 mov 0x40(%rbx),%rdi
ffffffff8147844e: e8 0d 6b ff ff callq ffffffff8146ef60 <usb_free_urb>
This bug seems to have been introduced by commit
d178bc3a708f39cbfefc3fab37032d3f2511b4ec "user namespace: usb: make usb
urbs user namespace aware (v2)"
I'm not sure if this is right fix, but it does stop the oops.
Unfortunately, the Point Grey software still refuses to work, but it's a
closed source app, so I can't fix it.
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Acked-by: Serge Hallyn <serge.hallyn@canonical.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2011-12-16 19:26:30 +00:00
|
|
|
if (as->cred)
|
|
|
|
put_cred(as->cred);
|
2012-07-04 07:18:03 +00:00
|
|
|
for (i = 0; i < as->urb->num_sgs; i++) {
|
|
|
|
if (sg_page(&as->urb->sg[i]))
|
|
|
|
kfree(sg_virt(&as->urb->sg[i]));
|
|
|
|
}
|
2016-02-03 21:58:26 +00:00
|
|
|
|
2012-07-04 07:18:03 +00:00
|
|
|
kfree(as->urb->sg);
|
2016-02-03 21:58:26 +00:00
|
|
|
if (as->usbm == NULL)
|
|
|
|
kfree(as->urb->transfer_buffer);
|
|
|
|
else
|
|
|
|
dec_usb_memory_use_count(as->usbm, &as->usbm->urb_use_count);
|
|
|
|
|
2005-04-19 00:39:33 +00:00
|
|
|
kfree(as->urb->setup_packet);
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_free_urb(as->urb);
|
2011-11-17 21:41:25 +00:00
|
|
|
usbfs_decrease_memory_usage(as->mem_usage);
|
2005-04-19 00:39:33 +00:00
|
|
|
kfree(as);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-09 17:44:48 +00:00
|
|
|
static void async_newpending(struct async *as)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps = as->ps;
|
2008-01-30 23:21:33 +00:00
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&ps->lock, flags);
|
|
|
|
list_add_tail(&as->asynclist, &ps->async_pending);
|
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-09 17:44:48 +00:00
|
|
|
static void async_removepending(struct async *as)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps = as->ps;
|
2008-01-30 23:21:33 +00:00
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&ps->lock, flags);
|
|
|
|
list_del_init(&as->asynclist);
|
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static struct async *async_getcompleted(struct usb_dev_state *ps)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-01-30 23:21:33 +00:00
|
|
|
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;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static struct async *async_getpending(struct usb_dev_state *ps,
|
2008-01-30 23:21:33 +00:00
|
|
|
void __user *userurb)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-01-30 23:21:33 +00:00
|
|
|
struct async *as;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
list_for_each_entry(as, &ps->async_pending, asynclist)
|
|
|
|
if (as->userurb == userurb) {
|
|
|
|
list_del_init(&as->asynclist);
|
|
|
|
return as;
|
|
|
|
}
|
2012-05-18 12:12:51 +00:00
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
return NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-06-29 15:02:04 +00:00
|
|
|
static void snoop_urb(struct usb_device *udev,
|
|
|
|
void __user *userurb, int pipe, unsigned length,
|
2010-01-26 22:07:29 +00:00
|
|
|
int timeout_or_status, enum snoop_when when,
|
|
|
|
unsigned char *data, unsigned data_len)
|
2005-06-21 04:15:16 +00:00
|
|
|
{
|
2009-06-29 15:02:04 +00:00
|
|
|
static const char *types[] = {"isoc", "int", "ctrl", "bulk"};
|
|
|
|
static const char *dirs[] = {"out", "in"};
|
|
|
|
int ep;
|
|
|
|
const char *t, *d;
|
2005-06-21 04:15:16 +00:00
|
|
|
|
|
|
|
if (!usbfs_snoop)
|
|
|
|
return;
|
|
|
|
|
2009-06-29 15:02:04 +00:00
|
|
|
ep = usb_pipeendpoint(pipe);
|
|
|
|
t = types[usb_pipetype(pipe)];
|
|
|
|
d = dirs[!!usb_pipein(pipe)];
|
|
|
|
|
|
|
|
if (userurb) { /* Async */
|
|
|
|
if (when == SUBMIT)
|
2017-05-16 12:38:08 +00:00
|
|
|
dev_info(&udev->dev, "userurb %pK, ep%d %s-%s, "
|
2009-06-29 15:02:04 +00:00
|
|
|
"length %u\n",
|
|
|
|
userurb, ep, t, d, length);
|
|
|
|
else
|
2017-05-16 12:38:08 +00:00
|
|
|
dev_info(&udev->dev, "userurb %pK, ep%d %s-%s, "
|
2009-06-29 15:02:04 +00:00
|
|
|
"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);
|
|
|
|
}
|
2010-01-26 22:07:29 +00:00
|
|
|
|
2015-11-20 18:53:22 +00:00
|
|
|
data_len = min(data_len, usbfs_snoop_max);
|
2010-01-26 22:07:29 +00:00
|
|
|
if (data && data_len > 0) {
|
|
|
|
print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
|
|
|
|
data, data_len, 1);
|
|
|
|
}
|
2005-06-21 04:15:16 +00:00
|
|
|
}
|
|
|
|
|
2012-07-04 07:18:03 +00:00
|
|
|
static void snoop_urb_data(struct urb *urb, unsigned len)
|
|
|
|
{
|
|
|
|
int i, size;
|
|
|
|
|
2015-11-20 18:53:22 +00:00
|
|
|
len = min(len, usbfs_snoop_max);
|
|
|
|
if (!usbfs_snoop || len == 0)
|
2012-07-04 07:18:03 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-09-01 15:09:56 +00:00
|
|
|
#define AS_CONTINUATION 1
|
|
|
|
#define AS_UNLINK 2
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static void cancel_bulk_urbs(struct usb_dev_state *ps, unsigned bulk_addr)
|
2009-09-01 15:09:56 +00:00
|
|
|
__releases(ps->lock)
|
|
|
|
__acquires(ps->lock)
|
|
|
|
{
|
2012-05-18 12:12:51 +00:00
|
|
|
struct urb *urb;
|
2009-09-01 15:09:56 +00:00
|
|
|
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 */
|
2012-05-18 12:12:51 +00:00
|
|
|
urb = as->urb;
|
|
|
|
usb_get_urb(urb);
|
2009-09-01 15:09:56 +00:00
|
|
|
spin_unlock(&ps->lock); /* Allow completions */
|
2012-05-18 12:12:51 +00:00
|
|
|
usb_unlink_urb(urb);
|
|
|
|
usb_put_urb(urb);
|
2009-09-01 15:09:56 +00:00
|
|
|
spin_lock(&ps->lock);
|
|
|
|
goto rescan;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
Maintain a per-CPU global "struct pt_regs *" variable which can be used instead
of passing regs around manually through all ~1800 interrupt handlers in the
Linux kernel.
The regs pointer is used in few places, but it potentially costs both stack
space and code to pass it around. On the FRV arch, removing the regs parameter
from all the genirq function results in a 20% speed up of the IRQ exit path
(ie: from leaving timer_interrupt() to leaving do_IRQ()).
Where appropriate, an arch may override the generic storage facility and do
something different with the variable. On FRV, for instance, the address is
maintained in GR28 at all times inside the kernel as part of general exception
handling.
Having looked over the code, it appears that the parameter may be handed down
through up to twenty or so layers of functions. Consider a USB character
device attached to a USB hub, attached to a USB controller that posts its
interrupts through a cascaded auxiliary interrupt controller. A character
device driver may want to pass regs to the sysrq handler through the input
layer which adds another few layers of parameter passing.
I've build this code with allyesconfig for x86_64 and i386. I've runtested the
main part of the code on FRV and i386, though I can't test most of the drivers.
I've also done partial conversion for powerpc and MIPS - these at least compile
with minimal configurations.
This will affect all archs. Mostly the changes should be relatively easy.
Take do_IRQ(), store the regs pointer at the beginning, saving the old one:
struct pt_regs *old_regs = set_irq_regs(regs);
And put the old one back at the end:
set_irq_regs(old_regs);
Don't pass regs through to generic_handle_irq() or __do_IRQ().
In timer_interrupt(), this sort of change will be necessary:
- update_process_times(user_mode(regs));
- profile_tick(CPU_PROFILING, regs);
+ update_process_times(user_mode(get_irq_regs()));
+ profile_tick(CPU_PROFILING);
I'd like to move update_process_times()'s use of get_irq_regs() into itself,
except that i386, alone of the archs, uses something other than user_mode().
Some notes on the interrupt handling in the drivers:
(*) input_dev() is now gone entirely. The regs pointer is no longer stored in
the input_dev struct.
(*) finish_unlinks() in drivers/usb/host/ohci-q.c needs checking. It does
something different depending on whether it's been supplied with a regs
pointer or not.
(*) Various IRQ handler function pointers have been moved to type
irq_handler_t.
Signed-Off-By: David Howells <dhowells@redhat.com>
(cherry picked from 1b16e7ac850969f38b375e511e3fa2f474a33867 commit)
2006-10-05 13:55:46 +00:00
|
|
|
static void async_completed(struct urb *urb)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-01-30 23:21:33 +00:00
|
|
|
struct async *as = urb->context;
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps = as->ps;
|
2018-09-25 09:27:20 +00:00
|
|
|
struct kernel_siginfo sinfo;
|
2009-07-08 17:09:23 +00:00
|
|
|
struct pid *pid = NULL;
|
2011-09-26 15:45:18 +00:00
|
|
|
const struct cred *cred = NULL;
|
2018-06-24 22:08:37 +00:00
|
|
|
unsigned long flags;
|
2009-07-08 17:09:23 +00:00
|
|
|
int signr;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2018-06-24 22:08:37 +00:00
|
|
|
spin_lock_irqsave(&ps->lock, flags);
|
2008-01-30 23:21:33 +00:00
|
|
|
list_move_tail(&as->asynclist, &ps->async_completed);
|
2007-08-24 19:42:52 +00:00
|
|
|
as->status = urb->status;
|
2009-07-08 17:09:23 +00:00
|
|
|
signr = as->signr;
|
|
|
|
if (signr) {
|
2017-08-19 00:56:27 +00:00
|
|
|
clear_siginfo(&sinfo);
|
2005-04-16 22:20:36 +00:00
|
|
|
sinfo.si_signo = as->signr;
|
2007-08-24 19:42:52 +00:00
|
|
|
sinfo.si_errno = as->status;
|
2005-04-16 22:20:36 +00:00
|
|
|
sinfo.si_code = SI_ASYNCIO;
|
|
|
|
sinfo.si_addr = as->userurb;
|
2011-09-26 15:18:29 +00:00
|
|
|
pid = get_pid(as->pid);
|
2011-09-26 15:45:18 +00:00
|
|
|
cred = get_cred(as->cred);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2005-06-21 04:15:16 +00:00
|
|
|
snoop(&urb->dev->dev, "urb complete\n");
|
2009-06-29 15:02:04 +00:00
|
|
|
snoop_urb(urb->dev, as->userurb, urb->pipe, urb->actual_length,
|
2012-07-04 07:18:03 +00:00
|
|
|
as->status, COMPLETE, NULL, 0);
|
2019-02-19 21:15:50 +00:00
|
|
|
if (usb_urb_dir_in(urb))
|
2012-07-04 07:18:03 +00:00
|
|
|
snoop_urb_data(urb, urb->actual_length);
|
|
|
|
|
2009-09-01 15:09:56 +00:00
|
|
|
if (as->status < 0 && as->bulk_addr && as->status != -ECONNRESET &&
|
|
|
|
as->status != -ENOENT)
|
|
|
|
cancel_bulk_urbs(ps, as->bulk_addr);
|
2017-08-10 22:42:22 +00:00
|
|
|
|
|
|
|
wake_up(&ps->wait);
|
2018-06-24 22:08:37 +00:00
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
2009-07-08 17:09:23 +00:00
|
|
|
|
2011-09-26 15:18:29 +00:00
|
|
|
if (signr) {
|
usb, signal, security: only pass the cred, not the secid, to kill_pid_info_as_cred and security_task_kill
commit d178bc3a708f39cbfefc3fab37032d3f2511b4ec ("user namespace: usb:
make usb urbs user namespace aware (v2)") changed kill_pid_info_as_uid
to kill_pid_info_as_cred, saving and passing a cred structure instead of
uids. Since the secid can be obtained from the cred, drop the secid fields
from the usb_dev_state and async structures, and drop the secid argument to
kill_pid_info_as_cred. Replace the secid argument to security_task_kill
with the cred. Update SELinux, Smack, and AppArmor to use the cred, which
avoids the need for Smack and AppArmor to use a secid at all in this hook.
Further changes to Smack might still be required to take full advantage of
this change, since it should now be possible to perform capability
checking based on the supplied cred. The changes to Smack and AppArmor
have only been compile-tested.
Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
Acked-by: Paul Moore <paul@paul-moore.com>
Acked-by: Casey Schaufler <casey@schaufler-ca.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-by: John Johansen <john.johansen@canonical.com>
Signed-off-by: James Morris <james.morris@microsoft.com>
2017-09-08 16:40:01 +00:00
|
|
|
kill_pid_info_as_cred(sinfo.si_signo, &sinfo, pid, cred);
|
2011-09-26 15:18:29 +00:00
|
|
|
put_pid(pid);
|
2011-09-26 15:45:18 +00:00
|
|
|
put_cred(cred);
|
2011-09-26 15:18:29 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static void destroy_async(struct usb_dev_state *ps, struct list_head *list)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-05-18 12:12:51 +00:00
|
|
|
struct urb *urb;
|
2005-04-16 22:20:36 +00:00
|
|
|
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);
|
2012-05-18 12:12:51 +00:00
|
|
|
urb = as->urb;
|
|
|
|
usb_get_urb(urb);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* drop the spinlock so the completion handler can run */
|
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
2012-05-18 12:12:51 +00:00
|
|
|
usb_kill_urb(urb);
|
|
|
|
usb_put_urb(urb);
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_lock_irqsave(&ps->lock, flags);
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static void destroy_async_on_interface(struct usb_dev_state *ps,
|
2008-01-30 23:21:33 +00:00
|
|
|
unsigned int ifnum)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static void destroy_all_async(struct usb_dev_state *ps)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-01-30 23:21:33 +00:00
|
|
|
destroy_async(ps, &ps->async_pending);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
static int driver_probe(struct usb_interface *intf,
|
|
|
|
const struct usb_device_id *id)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void driver_disconnect(struct usb_interface *intf)
|
|
|
|
{
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps = usb_get_intfdata(intf);
|
2005-04-16 22:20:36 +00:00
|
|
|
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
|
2008-08-14 16:37:34 +00:00
|
|
|
dev_warn(&intf->dev, "interface number %u out of range\n",
|
|
|
|
ifnum);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
usb_set_intfdata(intf, NULL);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* force async requests to complete */
|
|
|
|
destroy_async_on_interface(ps, ifnum);
|
|
|
|
}
|
|
|
|
|
2007-12-04 19:35:15 +00:00
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
struct usb_driver usbfs_driver = {
|
|
|
|
.name = "usbfs",
|
|
|
|
.probe = driver_probe,
|
|
|
|
.disconnect = driver_disconnect,
|
2007-12-04 19:35:15 +00:00
|
|
|
.suspend = driver_suspend,
|
|
|
|
.resume = driver_resume,
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int claimintf(struct usb_dev_state *ps, unsigned int ifnum)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
2016-02-21 21:38:01 +00:00
|
|
|
if (ps->privileges_dropped &&
|
|
|
|
!test_bit(ifnum, &ps->interface_allowed_mask))
|
|
|
|
return -EACCES;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int releaseintf(struct usb_dev_state *ps, unsigned int ifnum)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int checkintf(struct usb_dev_state *ps, unsigned int ifnum)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
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 */
|
2008-01-30 23:21:33 +00:00
|
|
|
dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
|
|
|
|
"interface %u before use\n", task_pid_nr(current),
|
|
|
|
current->comm, ifnum);
|
2005-04-16 22:20:36 +00:00
|
|
|
return claimintf(ps, ifnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int findintfep(struct usb_device *dev, unsigned int ep)
|
|
|
|
{
|
|
|
|
unsigned int i, j, e;
|
2008-01-30 23:21:33 +00:00
|
|
|
struct usb_interface *intf;
|
2005-04-16 22:20:36 +00:00
|
|
|
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++) {
|
2008-01-30 23:21:33 +00:00
|
|
|
alts = &intf->altsetting[j];
|
2005-04-16 22:20:36 +00:00
|
|
|
for (e = 0; e < alts->desc.bNumEndpoints; e++) {
|
|
|
|
endpt = &alts->endpoint[e].desc;
|
|
|
|
if (endpt->bEndpointAddress == ep)
|
|
|
|
return alts->desc.bInterfaceNumber;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-01-30 23:21:33 +00:00
|
|
|
return -ENOENT;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int check_ctrlrecip(struct usb_dev_state *ps, unsigned int requesttype,
|
2011-09-25 12:26:25 +00:00
|
|
|
unsigned int request, unsigned int index)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2011-09-25 12:26:25 +00:00
|
|
|
struct usb_host_interface *alt_setting;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-02-18 14:43:47 +00:00
|
|
|
if (ps->dev->state != USB_STATE_UNAUTHENTICATED
|
|
|
|
&& ps->dev->state != USB_STATE_ADDRESS
|
2006-03-11 08:16:55 +00:00
|
|
|
&& ps->dev->state != USB_STATE_CONFIGURED)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EHOSTUNREACH;
|
|
|
|
if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
|
|
|
|
return 0;
|
|
|
|
|
2011-09-25 12:26:25 +00:00
|
|
|
/*
|
|
|
|
* check for the special corner case 'get_device_id' in the printer
|
2013-07-12 08:04:18 +00:00
|
|
|
* class specification, which we always want to allow as it is used
|
|
|
|
* to query things like ink level, etc.
|
2011-09-25 12:26:25 +00:00
|
|
|
*/
|
|
|
|
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)
|
2013-07-12 08:04:18 +00:00
|
|
|
return 0;
|
2011-09-25 12:26:25 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
index &= 0xff;
|
|
|
|
switch (requesttype & USB_RECIP_MASK) {
|
|
|
|
case USB_RECIP_ENDPOINT:
|
2013-04-16 09:08:33 +00:00
|
|
|
if ((index & ~USB_DIR_IN) == 0)
|
|
|
|
return 0;
|
2008-01-30 23:21:33 +00:00
|
|
|
ret = findintfep(ps->dev, index);
|
2013-09-24 12:13:48 +00:00
|
|
|
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);
|
|
|
|
}
|
2008-01-30 23:21:33 +00:00
|
|
|
if (ret >= 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = checkintf(ps, ret);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USB_RECIP_INTERFACE:
|
|
|
|
ret = checkintf(ps, index);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-09 15:19:30 +00:00
|
|
|
static struct usb_host_endpoint *ep_to_host_endpoint(struct usb_device *dev,
|
|
|
|
unsigned char ep)
|
|
|
|
{
|
|
|
|
if (ep & USB_ENDPOINT_DIR_MASK)
|
|
|
|
return dev->ep_in[ep & USB_ENDPOINT_NUMBER_MASK];
|
|
|
|
else
|
|
|
|
return dev->ep_out[ep & USB_ENDPOINT_NUMBER_MASK];
|
|
|
|
}
|
|
|
|
|
2014-04-02 00:06:09 +00:00
|
|
|
static int parse_usbdevfs_streams(struct usb_dev_state *ps,
|
2013-10-09 15:19:31 +00:00
|
|
|
struct usbdevfs_streams __user *streams,
|
|
|
|
unsigned int *num_streams_ret,
|
|
|
|
unsigned int *num_eps_ret,
|
|
|
|
struct usb_host_endpoint ***eps_ret,
|
|
|
|
struct usb_interface **intf_ret)
|
|
|
|
{
|
|
|
|
unsigned int i, num_streams, num_eps;
|
|
|
|
struct usb_host_endpoint **eps;
|
|
|
|
struct usb_interface *intf = NULL;
|
|
|
|
unsigned char ep;
|
|
|
|
int ifnum, ret;
|
|
|
|
|
|
|
|
if (get_user(num_streams, &streams->num_streams) ||
|
|
|
|
get_user(num_eps, &streams->num_eps))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
if (num_eps < 1 || num_eps > USB_MAXENDPOINTS)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* The XHCI controller allows max 2 ^ 16 streams */
|
|
|
|
if (num_streams_ret && (num_streams < 2 || num_streams > 65536))
|
|
|
|
return -EINVAL;
|
|
|
|
|
treewide: kmalloc() -> kmalloc_array()
The kmalloc() function has a 2-factor argument form, kmalloc_array(). This
patch replaces cases of:
kmalloc(a * b, gfp)
with:
kmalloc_array(a * b, gfp)
as well as handling cases of:
kmalloc(a * b * c, gfp)
with:
kmalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kmalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kmalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The tools/ directory was manually excluded, since it has its own
implementation of kmalloc().
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kmalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kmalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kmalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kmalloc
+ kmalloc_array
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kmalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kmalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kmalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kmalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kmalloc(C1 * C2 * C3, ...)
|
kmalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kmalloc(sizeof(THING) * C2, ...)
|
kmalloc(sizeof(TYPE) * C2, ...)
|
kmalloc(C1 * C2 * C3, ...)
|
kmalloc(C1 * C2, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- (E1) * E2
+ E1, E2
, ...)
|
- kmalloc
+ kmalloc_array
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kmalloc
+ kmalloc_array
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-12 20:55:00 +00:00
|
|
|
eps = kmalloc_array(num_eps, sizeof(*eps), GFP_KERNEL);
|
2013-10-09 15:19:31 +00:00
|
|
|
if (!eps)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
for (i = 0; i < num_eps; i++) {
|
|
|
|
if (get_user(ep, &streams->eps[i])) {
|
|
|
|
ret = -EFAULT;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
eps[i] = ep_to_host_endpoint(ps->dev, ep);
|
|
|
|
if (!eps[i]) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* usb_alloc/free_streams operate on an usb_interface */
|
|
|
|
ifnum = findintfep(ps->dev, ep);
|
|
|
|
if (ifnum < 0) {
|
|
|
|
ret = ifnum;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == 0) {
|
|
|
|
ret = checkintf(ps, ifnum);
|
|
|
|
if (ret < 0)
|
|
|
|
goto error;
|
|
|
|
intf = usb_ifnum_to_if(ps->dev, ifnum);
|
|
|
|
} else {
|
|
|
|
/* Verify all eps belong to the same interface */
|
|
|
|
if (ifnum != intf->altsetting->desc.bInterfaceNumber) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num_streams_ret)
|
|
|
|
*num_streams_ret = num_streams;
|
|
|
|
*num_eps_ret = num_eps;
|
|
|
|
*eps_ret = eps;
|
|
|
|
*intf_ret = intf;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
|
|
|
kfree(eps);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-06-24 18:47:12 +00:00
|
|
|
static int match_devt(struct device *dev, void *data)
|
2005-06-21 04:15:16 +00:00
|
|
|
{
|
2008-07-02 11:28:55 +00:00
|
|
|
return dev->devt == (dev_t) (unsigned long) data;
|
2007-03-13 14:59:31 +00:00
|
|
|
}
|
2005-06-21 04:15:16 +00:00
|
|
|
|
2008-06-24 18:47:12 +00:00
|
|
|
static struct usb_device *usbdev_lookup_by_devt(dev_t devt)
|
2007-03-13 14:59:31 +00:00
|
|
|
{
|
|
|
|
struct device *dev;
|
|
|
|
|
2008-07-02 11:28:55 +00:00
|
|
|
dev = bus_find_device(&usb_bus_type, NULL,
|
|
|
|
(void *) (unsigned long) devt, match_devt);
|
2007-03-13 14:59:31 +00:00
|
|
|
if (!dev)
|
|
|
|
return NULL;
|
2015-12-23 13:26:50 +00:00
|
|
|
return to_usb_device(dev);
|
2007-03-13 14:59:31 +00:00
|
|
|
}
|
2005-06-21 04:15:16 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* file operations
|
|
|
|
*/
|
|
|
|
static int usbdev_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
2005-07-30 23:05:53 +00:00
|
|
|
struct usb_device *dev = NULL;
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps;
|
2005-04-16 22:20:36 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = -ENOMEM;
|
2016-02-21 21:38:01 +00:00
|
|
|
ps = kzalloc(sizeof(struct usb_dev_state), GFP_KERNEL);
|
2008-01-30 23:21:33 +00:00
|
|
|
if (!ps)
|
2010-01-08 17:56:19 +00:00
|
|
|
goto out_free_ps;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-07-30 19:28:14 +00:00
|
|
|
ret = -ENODEV;
|
2008-06-24 18:47:12 +00:00
|
|
|
|
2010-01-08 17:56:19 +00:00
|
|
|
/* Protect against simultaneous removal or release */
|
|
|
|
mutex_lock(&usbfs_mutex);
|
|
|
|
|
2007-03-13 14:59:31 +00:00
|
|
|
/* usbdev device-node */
|
2005-07-30 23:05:53 +00:00
|
|
|
if (imajor(inode) == USB_DEVICE_MAJOR)
|
2008-06-24 18:47:12 +00:00
|
|
|
dev = usbdev_lookup_by_devt(inode->i_rdev);
|
2010-01-08 17:56:19 +00:00
|
|
|
|
|
|
|
mutex_unlock(&usbfs_mutex);
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
goto out_free_ps;
|
|
|
|
|
|
|
|
usb_lock_device(dev);
|
|
|
|
if (dev->state == USB_STATE_NOTATTACHED)
|
|
|
|
goto out_unlock_device;
|
|
|
|
|
2006-11-20 16:38:46 +00:00
|
|
|
ret = usb_autoresume_device(dev);
|
2006-08-30 19:47:18 +00:00
|
|
|
if (ret)
|
2010-01-08 17:56:19 +00:00
|
|
|
goto out_unlock_device;
|
2006-08-30 19:47:18 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
ps->dev = dev;
|
|
|
|
ps->file = file;
|
2016-02-21 21:38:01 +00:00
|
|
|
ps->interface_allowed_mask = 0xFFFFFFFF; /* 32 bits */
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_lock_init(&ps->lock);
|
2006-12-13 08:03:38 +00:00
|
|
|
INIT_LIST_HEAD(&ps->list);
|
2005-04-16 22:20:36 +00:00
|
|
|
INIT_LIST_HEAD(&ps->async_pending);
|
|
|
|
INIT_LIST_HEAD(&ps->async_completed);
|
2016-02-03 21:58:26 +00:00
|
|
|
INIT_LIST_HEAD(&ps->memory_list);
|
2005-04-16 22:20:36 +00:00
|
|
|
init_waitqueue_head(&ps->wait);
|
2006-10-02 09:17:28 +00:00
|
|
|
ps->disc_pid = get_pid(task_pid(current));
|
2011-09-26 15:45:18 +00:00
|
|
|
ps->cred = get_current_cred();
|
2007-04-20 18:50:48 +00:00
|
|
|
smp_wmb();
|
2005-04-16 22:20:36 +00:00
|
|
|
list_add_tail(&ps->list, &dev->filelist);
|
|
|
|
file->private_data = ps;
|
2010-01-08 17:56:19 +00:00
|
|
|
usb_unlock_device(dev);
|
2008-10-06 15:24:26 +00:00
|
|
|
snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
|
|
|
|
current->comm);
|
2010-01-08 17:56:19 +00:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
out_unlock_device:
|
|
|
|
usb_unlock_device(dev);
|
|
|
|
usb_put_dev(dev);
|
|
|
|
out_free_ps:
|
|
|
|
kfree(ps);
|
usbfs: private mutex for open, release, and remove
The usbfs code doesn't provide sufficient mutual exclusion among open,
release, and remove. Release vs. remove is okay because they both
acquire the device lock, but open is not exclusive with either one. All
three routines modify the udev->filelist linked list, so they must not
run concurrently.
Apparently someone gave this a minimum amount of thought in the past by
explicitly acquiring the BKL at the start of the usbdev_open routine.
Oddly enough, there's a comment pointing out that locking is unnecessary
because chrdev_open already has acquired the BKL.
But this ignores the point that the files in /proc/bus/usb/* are not
char device files; they are regular files and so they don't get any
special locking. Furthermore it's necessary to acquire the same lock in
the release and remove routines, which the code does not do.
Yet another problem arises because the same file_operations structure is
accessible through both the /proc/bus/usb/* and /dev/usb/usbdev* file
nodes. Even when one of them has been removed, it's still possible for
userspace to open the other. So simple locking around the individual
remove routines is insufficient; we need to lock the entire
usb_notify_remove_device notifier chain.
Rather than rely on the BKL, this patch (as723) introduces a new private
mutex for the purpose. Holding the BKL while invoking a notifier chain
doesn't seem like a good idea.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-07-02 02:05:01 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int usbdev_release(struct inode *inode, struct file *file)
|
|
|
|
{
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps = file->private_data;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct usb_device *dev = ps->dev;
|
|
|
|
unsigned int ifnum;
|
2009-03-09 17:44:02 +00:00
|
|
|
struct async *as;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
usb_lock_device(dev);
|
2009-06-29 14:56:54 +00:00
|
|
|
usb_hub_release_all_ports(dev, ps);
|
usbfs: private mutex for open, release, and remove
The usbfs code doesn't provide sufficient mutual exclusion among open,
release, and remove. Release vs. remove is okay because they both
acquire the device lock, but open is not exclusive with either one. All
three routines modify the udev->filelist linked list, so they must not
run concurrently.
Apparently someone gave this a minimum amount of thought in the past by
explicitly acquiring the BKL at the start of the usbdev_open routine.
Oddly enough, there's a comment pointing out that locking is unnecessary
because chrdev_open already has acquired the BKL.
But this ignores the point that the files in /proc/bus/usb/* are not
char device files; they are regular files and so they don't get any
special locking. Furthermore it's necessary to acquire the same lock in
the release and remove routines, which the code does not do.
Yet another problem arises because the same file_operations structure is
accessible through both the /proc/bus/usb/* and /dev/usb/usbdev* file
nodes. Even when one of them has been removed, it's still possible for
userspace to open the other. So simple locking around the individual
remove routines is insufficient; we need to lock the entire
usb_notify_remove_device notifier chain.
Rather than rely on the BKL, this patch (as723) introduces a new private
mutex for the purpose. Holding the BKL while invoking a notifier chain
doesn't seem like a good idea.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-07-02 02:05:01 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
list_del_init(&ps->list);
|
usbfs: private mutex for open, release, and remove
The usbfs code doesn't provide sufficient mutual exclusion among open,
release, and remove. Release vs. remove is okay because they both
acquire the device lock, but open is not exclusive with either one. All
three routines modify the udev->filelist linked list, so they must not
run concurrently.
Apparently someone gave this a minimum amount of thought in the past by
explicitly acquiring the BKL at the start of the usbdev_open routine.
Oddly enough, there's a comment pointing out that locking is unnecessary
because chrdev_open already has acquired the BKL.
But this ignores the point that the files in /proc/bus/usb/* are not
char device files; they are regular files and so they don't get any
special locking. Furthermore it's necessary to acquire the same lock in
the release and remove routines, which the code does not do.
Yet another problem arises because the same file_operations structure is
accessible through both the /proc/bus/usb/* and /dev/usb/usbdev* file
nodes. Even when one of them has been removed, it's still possible for
userspace to open the other. So simple locking around the individual
remove routines is insufficient; we need to lock the entire
usb_notify_remove_device notifier chain.
Rather than rely on the BKL, this patch (as723) introduces a new private
mutex for the purpose. Holding the BKL while invoking a notifier chain
doesn't seem like a good idea.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-07-02 02:05:01 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
|
|
|
|
ifnum++) {
|
|
|
|
if (test_bit(ifnum, &ps->ifclaimed))
|
|
|
|
releaseintf(ps, ifnum);
|
|
|
|
}
|
|
|
|
destroy_all_async(ps);
|
2006-11-20 16:38:46 +00:00
|
|
|
usb_autosuspend_device(dev);
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_unlock_device(dev);
|
|
|
|
usb_put_dev(dev);
|
2006-10-02 09:17:28 +00:00
|
|
|
put_pid(ps->disc_pid);
|
2011-09-26 15:45:18 +00:00
|
|
|
put_cred(ps->cred);
|
2009-03-09 17:44:02 +00:00
|
|
|
|
|
|
|
as = async_getcompleted(ps);
|
|
|
|
while (as) {
|
|
|
|
free_async(as);
|
|
|
|
as = async_getcompleted(ps);
|
|
|
|
}
|
2016-02-03 21:58:26 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree(ps);
|
usbfs: private mutex for open, release, and remove
The usbfs code doesn't provide sufficient mutual exclusion among open,
release, and remove. Release vs. remove is okay because they both
acquire the device lock, but open is not exclusive with either one. All
three routines modify the udev->filelist linked list, so they must not
run concurrently.
Apparently someone gave this a minimum amount of thought in the past by
explicitly acquiring the BKL at the start of the usbdev_open routine.
Oddly enough, there's a comment pointing out that locking is unnecessary
because chrdev_open already has acquired the BKL.
But this ignores the point that the files in /proc/bus/usb/* are not
char device files; they are regular files and so they don't get any
special locking. Furthermore it's necessary to acquire the same lock in
the release and remove routines, which the code does not do.
Yet another problem arises because the same file_operations structure is
accessible through both the /proc/bus/usb/* and /dev/usb/usbdev* file
nodes. Even when one of them has been removed, it's still possible for
userspace to open the other. So simple locking around the individual
remove routines is insufficient; we need to lock the entire
usb_notify_remove_device notifier chain.
Rather than rely on the BKL, this patch (as723) introduces a new private
mutex for the purpose. Holding the BKL while invoking a notifier chain
doesn't seem like a good idea.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-07-02 02:05:01 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_control(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct usb_device *dev = ps->dev;
|
|
|
|
struct usbdevfs_ctrltransfer ctrl;
|
|
|
|
unsigned int tmo;
|
|
|
|
unsigned char *tbuf;
|
2008-03-12 20:32:24 +00:00
|
|
|
unsigned wLength;
|
2009-06-29 15:02:04 +00:00
|
|
|
int i, pipe, ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
|
|
|
|
return -EFAULT;
|
2011-09-25 12:26:25 +00:00
|
|
|
ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.bRequest,
|
|
|
|
ctrl.wIndex);
|
2008-01-30 23:21:33 +00:00
|
|
|
if (ret)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
2008-03-12 20:32:24 +00:00
|
|
|
wLength = ctrl.wLength; /* To suppress 64k PAGE_SIZE warning */
|
|
|
|
if (wLength > PAGE_SIZE)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
2011-11-17 21:41:25 +00:00
|
|
|
ret = usbfs_increase_memory_usage(PAGE_SIZE + sizeof(struct urb) +
|
|
|
|
sizeof(struct usb_ctrlrequest));
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2008-01-30 23:21:33 +00:00
|
|
|
tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
|
2011-11-17 21:41:25 +00:00
|
|
|
if (!tbuf) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto done;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
tmo = ctrl.timeout;
|
2010-01-26 22:07:29 +00:00
|
|
|
snoop(&dev->dev, "control urb: bRequestType=%02x "
|
|
|
|
"bRequest=%02x wValue=%04x "
|
|
|
|
"wIndex=%04x wLength=%04x\n",
|
2013-08-31 15:09:14 +00:00
|
|
|
ctrl.bRequestType, ctrl.bRequest, ctrl.wValue,
|
|
|
|
ctrl.wIndex, ctrl.wLength);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ctrl.bRequestType & 0x80) {
|
Remove 'type' argument from access_ok() function
Nobody has actually used the type (VERIFY_READ vs VERIFY_WRITE) argument
of the user address range verification function since we got rid of the
old racy i386-only code to walk page tables by hand.
It existed because the original 80386 would not honor the write protect
bit when in kernel mode, so you had to do COW by hand before doing any
user access. But we haven't supported that in a long time, and these
days the 'type' argument is a purely historical artifact.
A discussion about extending 'user_access_begin()' to do the range
checking resulted this patch, because there is no way we're going to
move the old VERIFY_xyz interface to that model. And it's best done at
the end of the merge window when I've done most of my merges, so let's
just get this done once and for all.
This patch was mostly done with a sed-script, with manual fix-ups for
the cases that weren't of the trivial 'access_ok(VERIFY_xyz' form.
There were a couple of notable cases:
- csky still had the old "verify_area()" name as an alias.
- the iter_iov code had magical hardcoded knowledge of the actual
values of VERIFY_{READ,WRITE} (not that they mattered, since nothing
really used it)
- microblaze used the type argument for a debug printout
but other than those oddities this should be a total no-op patch.
I tried to fix up all architectures, did fairly extensive grepping for
access_ok() uses, and the changes are trivial, but I may have missed
something. Any missed conversion should be trivially fixable, though.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 02:57:57 +00:00
|
|
|
if (ctrl.wLength && !access_ok(ctrl.data,
|
2008-01-30 23:21:33 +00:00
|
|
|
ctrl.wLength)) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto done;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2009-06-29 15:02:04 +00:00
|
|
|
pipe = usb_rcvctrlpipe(dev, 0);
|
2010-01-26 22:07:29 +00:00
|
|
|
snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT, NULL, 0);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
usb_unlock_device(dev);
|
2009-06-29 15:02:04 +00:00
|
|
|
i = usb_control_msg(dev, pipe, ctrl.bRequest,
|
2008-01-30 23:21:33 +00:00
|
|
|
ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
|
|
|
|
tbuf, ctrl.wLength, tmo);
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_lock_device(dev);
|
2010-01-26 22:07:29 +00:00
|
|
|
snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE,
|
2011-03-15 15:41:47 +00:00
|
|
|
tbuf, max(i, 0));
|
2005-04-16 22:20:36 +00:00
|
|
|
if ((i > 0) && ctrl.wLength) {
|
2005-07-29 19:16:58 +00:00
|
|
|
if (copy_to_user(ctrl.data, tbuf, i)) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -EFAULT;
|
|
|
|
goto done;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ctrl.wLength) {
|
|
|
|
if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -EFAULT;
|
|
|
|
goto done;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-29 15:02:04 +00:00
|
|
|
pipe = usb_sndctrlpipe(dev, 0);
|
2010-01-26 22:07:29 +00:00
|
|
|
snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT,
|
|
|
|
tbuf, ctrl.wLength);
|
2009-06-29 15:02:04 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_unlock_device(dev);
|
2008-01-30 23:21:33 +00:00
|
|
|
i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
|
|
|
|
ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
|
|
|
|
tbuf, ctrl.wLength, tmo);
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_lock_device(dev);
|
2010-01-26 22:07:29 +00:00
|
|
|
snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE, NULL, 0);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-01-30 23:21:33 +00:00
|
|
|
if (i < 0 && i != -EPIPE) {
|
2005-04-16 22:20:36 +00:00
|
|
|
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);
|
|
|
|
}
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = i;
|
|
|
|
done:
|
|
|
|
free_page((unsigned long) tbuf);
|
2011-11-17 21:41:25 +00:00
|
|
|
usbfs_decrease_memory_usage(PAGE_SIZE + sizeof(struct urb) +
|
|
|
|
sizeof(struct usb_ctrlrequest));
|
2011-11-17 21:41:14 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_bulk(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct usb_device *dev = ps->dev;
|
|
|
|
struct usbdevfs_bulktransfer bulk;
|
|
|
|
unsigned int tmo, len1, pipe;
|
|
|
|
int len2;
|
|
|
|
unsigned char *tbuf;
|
2009-06-29 15:02:04 +00:00
|
|
|
int i, ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (copy_from_user(&bulk, arg, sizeof(bulk)))
|
|
|
|
return -EFAULT;
|
2008-01-30 23:21:33 +00:00
|
|
|
ret = findintfep(ps->dev, bulk.ep);
|
|
|
|
if (ret < 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
2008-01-30 23:21:33 +00:00
|
|
|
ret = checkintf(ps, ret);
|
|
|
|
if (ret)
|
2005-04-16 22:20:36 +00:00
|
|
|
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;
|
2016-12-21 17:19:14 +00:00
|
|
|
if (len1 >= (INT_MAX - sizeof(struct urb)))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
2011-11-17 21:41:25 +00:00
|
|
|
ret = usbfs_increase_memory_usage(len1 + sizeof(struct urb));
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2015-08-04 12:39:31 +00:00
|
|
|
tbuf = kmalloc(len1, GFP_KERNEL);
|
|
|
|
if (!tbuf) {
|
2011-11-17 21:41:25 +00:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto done;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
tmo = bulk.timeout;
|
|
|
|
if (bulk.ep & 0x80) {
|
Remove 'type' argument from access_ok() function
Nobody has actually used the type (VERIFY_READ vs VERIFY_WRITE) argument
of the user address range verification function since we got rid of the
old racy i386-only code to walk page tables by hand.
It existed because the original 80386 would not honor the write protect
bit when in kernel mode, so you had to do COW by hand before doing any
user access. But we haven't supported that in a long time, and these
days the 'type' argument is a purely historical artifact.
A discussion about extending 'user_access_begin()' to do the range
checking resulted this patch, because there is no way we're going to
move the old VERIFY_xyz interface to that model. And it's best done at
the end of the merge window when I've done most of my merges, so let's
just get this done once and for all.
This patch was mostly done with a sed-script, with manual fix-ups for
the cases that weren't of the trivial 'access_ok(VERIFY_xyz' form.
There were a couple of notable cases:
- csky still had the old "verify_area()" name as an alias.
- the iter_iov code had magical hardcoded knowledge of the actual
values of VERIFY_{READ,WRITE} (not that they mattered, since nothing
really used it)
- microblaze used the type argument for a debug printout
but other than those oddities this should be a total no-op patch.
I tried to fix up all architectures, did fairly extensive grepping for
access_ok() uses, and the changes are trivial, but I may have missed
something. Any missed conversion should be trivially fixable, though.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 02:57:57 +00:00
|
|
|
if (len1 && !access_ok(bulk.data, len1)) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto done;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2010-01-26 22:07:29 +00:00
|
|
|
snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, NULL, 0);
|
2009-06-29 15:02:04 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_unlock_device(dev);
|
|
|
|
i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
|
|
|
|
usb_lock_device(dev);
|
2010-01-26 22:07:29 +00:00
|
|
|
snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, tbuf, len2);
|
2009-06-29 15:02:04 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!i && len2) {
|
|
|
|
if (copy_to_user(bulk.data, tbuf, len2)) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -EFAULT;
|
|
|
|
goto done;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (len1) {
|
|
|
|
if (copy_from_user(tbuf, bulk.data, len1)) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -EFAULT;
|
|
|
|
goto done;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2010-01-26 22:07:29 +00:00
|
|
|
snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, tbuf, len1);
|
2009-06-29 15:02:04 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_unlock_device(dev);
|
|
|
|
i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
|
|
|
|
usb_lock_device(dev);
|
2010-01-26 22:07:29 +00:00
|
|
|
snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, NULL, 0);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = (i < 0 ? i : len2);
|
|
|
|
done:
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree(tbuf);
|
2011-11-17 21:41:25 +00:00
|
|
|
usbfs_decrease_memory_usage(len1 + sizeof(struct urb));
|
2011-11-17 21:41:14 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-02-20 15:49:30 +00:00
|
|
|
static void check_reset_of_active_ep(struct usb_device *udev,
|
|
|
|
unsigned int epnum, char *ioctl_name)
|
|
|
|
{
|
|
|
|
struct usb_host_endpoint **eps;
|
|
|
|
struct usb_host_endpoint *ep;
|
|
|
|
|
|
|
|
eps = (epnum & USB_DIR_IN) ? udev->ep_in : udev->ep_out;
|
|
|
|
ep = eps[epnum & 0x0f];
|
|
|
|
if (ep && !list_empty(&ep->urb_list))
|
|
|
|
dev_warn(&udev->dev, "Process %d (%s) called USBDEVFS_%s for active endpoint 0x%02x\n",
|
|
|
|
task_pid_nr(current), current->comm,
|
|
|
|
ioctl_name, epnum);
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_resetep(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned int ep;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (get_user(ep, (unsigned int __user *)arg))
|
|
|
|
return -EFAULT;
|
2008-01-30 23:21:33 +00:00
|
|
|
ret = findintfep(ps->dev, ep);
|
|
|
|
if (ret < 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
2008-01-30 23:21:33 +00:00
|
|
|
ret = checkintf(ps, ret);
|
|
|
|
if (ret)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
2014-02-20 15:49:30 +00:00
|
|
|
check_reset_of_active_ep(ps->dev, ep, "RESETEP");
|
2009-04-08 17:36:28 +00:00
|
|
|
usb_reset_endpoint(ps->dev, ep);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_clearhalt(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned int ep;
|
|
|
|
int pipe;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (get_user(ep, (unsigned int __user *)arg))
|
|
|
|
return -EFAULT;
|
2008-01-30 23:21:33 +00:00
|
|
|
ret = findintfep(ps->dev, ep);
|
|
|
|
if (ret < 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
2008-01-30 23:21:33 +00:00
|
|
|
ret = checkintf(ps, ret);
|
|
|
|
if (ret)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
2014-02-20 15:49:30 +00:00
|
|
|
check_reset_of_active_ep(ps->dev, ep, "CLEAR_HALT");
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ep & USB_DIR_IN)
|
2008-01-30 23:21:33 +00:00
|
|
|
pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
|
|
|
|
else
|
|
|
|
pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return usb_clear_halt(ps->dev, pipe);
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_getdriver(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
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 {
|
2013-02-02 07:57:53 +00:00
|
|
|
strlcpy(gd.driver, intf->dev.driver->name,
|
2005-04-16 22:20:36 +00:00
|
|
|
sizeof(gd.driver));
|
|
|
|
ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_connectinfo(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2016-05-03 20:32:16 +00:00
|
|
|
struct usbdevfs_connectinfo ci;
|
|
|
|
|
|
|
|
memset(&ci, 0, sizeof(ci));
|
|
|
|
ci.devnum = ps->dev->devnum;
|
|
|
|
ci.slow = ps->dev->speed == USB_SPEED_LOW;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (copy_to_user(arg, &ci, sizeof(ci)))
|
|
|
|
return -EFAULT;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_resetdevice(struct usb_dev_state *ps)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2016-02-21 21:38:01 +00:00
|
|
|
struct usb_host_config *actconfig = ps->dev->actconfig;
|
|
|
|
struct usb_interface *interface;
|
|
|
|
int i, number;
|
|
|
|
|
|
|
|
/* Don't allow a device reset if the process has dropped the
|
|
|
|
* privilege to do such things and any of the interfaces are
|
|
|
|
* currently claimed.
|
|
|
|
*/
|
|
|
|
if (ps->privileges_dropped && actconfig) {
|
|
|
|
for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
|
|
|
|
interface = actconfig->interface[i];
|
|
|
|
number = interface->cur_altsetting->desc.bInterfaceNumber;
|
|
|
|
if (usb_interface_claimed(interface) &&
|
|
|
|
!test_bit(number, &ps->ifclaimed)) {
|
|
|
|
dev_warn(&ps->dev->dev,
|
|
|
|
"usbfs: interface %d claimed by %s while '%s' resets device\n",
|
|
|
|
number, interface->dev.driver->name, current->comm);
|
|
|
|
return -EACCES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-18 14:00:29 +00:00
|
|
|
return usb_reset_device(ps->dev);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_setintf(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct usbdevfs_setinterface setintf;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (copy_from_user(&setintf, arg, sizeof(setintf)))
|
|
|
|
return -EFAULT;
|
2015-08-04 12:39:31 +00:00
|
|
|
ret = checkintf(ps, setintf.interface);
|
|
|
|
if (ret)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
2013-10-09 15:19:27 +00:00
|
|
|
|
|
|
|
destroy_async_on_interface(ps, setintf.interface);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
return usb_set_interface(ps->dev, setintf.interface,
|
|
|
|
setintf.altsetting);
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_setconfig(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-02-08 21:40:43 +00:00
|
|
|
int u;
|
2005-04-16 22:20:36 +00:00
|
|
|
int status = 0;
|
2008-01-30 23:21:33 +00:00
|
|
|
struct usb_host_config *actconfig;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-02-08 21:40:43 +00:00
|
|
|
if (get_user(u, (int __user *)arg))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EFAULT;
|
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
actconfig = ps->dev->actconfig;
|
|
|
|
|
|
|
|
/* Don't touch the device if any interfaces are claimed.
|
|
|
|
* It could interfere with other drivers' operations, and if
|
2005-04-16 22:20:36 +00:00
|
|
|
* an interface is claimed by usbfs it could easily deadlock.
|
|
|
|
*/
|
2008-01-30 23:21:33 +00:00
|
|
|
if (actconfig) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
|
|
|
|
if (usb_interface_claimed(actconfig->interface[i])) {
|
|
|
|
dev_warn(&ps->dev->dev,
|
2005-04-12 01:34:17 +00:00
|
|
|
"usbfs: interface %d claimed by %s "
|
2005-04-16 22:20:36 +00:00
|
|
|
"while '%s' sets config #%d\n",
|
|
|
|
actconfig->interface[i]
|
|
|
|
->cur_altsetting
|
|
|
|
->desc.bInterfaceNumber,
|
2005-04-12 01:34:17 +00:00
|
|
|
actconfig->interface[i]
|
|
|
|
->dev.driver->name,
|
2005-04-16 22:20:36 +00:00
|
|
|
current->comm, u);
|
2008-01-30 23:21:33 +00:00
|
|
|
status = -EBUSY;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-01-30 23:21:33 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2016-02-03 21:58:26 +00:00
|
|
|
static struct usb_memory *
|
|
|
|
find_memory_area(struct usb_dev_state *ps, const struct usbdevfs_urb *uurb)
|
|
|
|
{
|
|
|
|
struct usb_memory *usbm = NULL, *iter;
|
|
|
|
unsigned long flags;
|
|
|
|
unsigned long uurb_start = (unsigned long)uurb->buffer;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&ps->lock, flags);
|
|
|
|
list_for_each_entry(iter, &ps->memory_list, memlist) {
|
|
|
|
if (uurb_start >= iter->vm_start &&
|
|
|
|
uurb_start < iter->vm_start + iter->size) {
|
|
|
|
if (uurb->buffer_length > iter->vm_start + iter->size -
|
|
|
|
uurb_start) {
|
|
|
|
usbm = ERR_PTR(-EINVAL);
|
|
|
|
} else {
|
|
|
|
usbm = iter;
|
|
|
|
usbm->urb_use_count++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
|
|
|
return usbm;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_do_submiturb(struct usb_dev_state *ps, struct usbdevfs_urb *uurb,
|
2008-01-30 23:21:33 +00:00
|
|
|
struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
|
|
|
|
void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct usbdevfs_iso_packet_desc *isopkt = NULL;
|
|
|
|
struct usb_host_endpoint *ep;
|
2011-11-17 21:41:14 +00:00
|
|
|
struct async *as = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct usb_ctrlrequest *dr = NULL;
|
|
|
|
unsigned int u, totlen, isofrmlen;
|
2018-09-05 10:07:02 +00:00
|
|
|
int i, ret, num_sgs = 0, ifnum = -1;
|
2013-10-09 15:19:28 +00:00
|
|
|
int number_of_packets = 0;
|
2013-10-09 15:19:29 +00:00
|
|
|
unsigned int stream_id = 0;
|
2012-07-04 07:18:03 +00:00
|
|
|
void *buf;
|
2018-09-05 10:07:02 +00:00
|
|
|
bool is_in;
|
|
|
|
bool allow_short = false;
|
|
|
|
bool allow_zero = false;
|
2017-11-23 15:39:52 +00:00
|
|
|
unsigned long mask = USBDEVFS_URB_SHORT_NOT_OK |
|
2009-09-01 15:09:56 +00:00
|
|
|
USBDEVFS_URB_BULK_CONTINUATION |
|
2008-04-17 14:18:11 +00:00
|
|
|
USBDEVFS_URB_NO_FSBR |
|
|
|
|
USBDEVFS_URB_ZERO_PACKET |
|
2017-11-23 15:39:52 +00:00
|
|
|
USBDEVFS_URB_NO_INTERRUPT;
|
|
|
|
/* USBDEVFS_URB_ISO_ASAP is a special case */
|
|
|
|
if (uurb->type == USBDEVFS_URB_TYPE_ISO)
|
|
|
|
mask |= USBDEVFS_URB_ISO_ASAP;
|
|
|
|
|
|
|
|
if (uurb->flags & ~mask)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2017-09-22 20:43:25 +00:00
|
|
|
if ((unsigned int)uurb->buffer_length >= USBFS_XFER_MAX)
|
|
|
|
return -EINVAL;
|
2009-06-29 15:04:54 +00:00
|
|
|
if (uurb->buffer_length > 0 && !uurb->buffer)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
2008-01-30 23:21:33 +00:00
|
|
|
if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
|
|
|
|
(uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
|
|
|
|
ifnum = findintfep(ps->dev, uurb->endpoint);
|
|
|
|
if (ifnum < 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ifnum;
|
2008-01-30 23:21:33 +00:00
|
|
|
ret = checkintf(ps, ifnum);
|
|
|
|
if (ret)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2013-10-09 15:19:30 +00:00
|
|
|
ep = ep_to_host_endpoint(ps->dev, uurb->endpoint);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!ep)
|
|
|
|
return -ENOENT;
|
2013-10-09 15:19:30 +00:00
|
|
|
is_in = (uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0;
|
2011-11-17 21:41:25 +00:00
|
|
|
|
|
|
|
u = 0;
|
2015-08-07 11:22:44 +00:00
|
|
|
switch (uurb->type) {
|
2005-04-16 22:20:36 +00:00
|
|
|
case USBDEVFS_URB_TYPE_CONTROL:
|
2007-07-30 21:09:28 +00:00
|
|
|
if (!usb_endpoint_xfer_control(&ep->desc))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
2011-11-17 21:41:25 +00:00
|
|
|
/* min 8 byte setup packet */
|
|
|
|
if (uurb->buffer_length < 8)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
2008-01-30 23:21:33 +00:00
|
|
|
dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
|
|
|
|
if (!dr)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
if (copy_from_user(dr, uurb->buffer, 8)) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -EFAULT;
|
|
|
|
goto error;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto error;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2011-09-25 12:26:25 +00:00
|
|
|
ret = check_ctrlrecip(ps, dr->bRequestType, dr->bRequest,
|
2008-01-30 23:21:33 +00:00
|
|
|
le16_to_cpup(&dr->wIndex));
|
2011-11-17 21:41:14 +00:00
|
|
|
if (ret)
|
|
|
|
goto error;
|
2005-04-16 22:20:36 +00:00
|
|
|
uurb->buffer_length = le16_to_cpup(&dr->wLength);
|
|
|
|
uurb->buffer += 8;
|
2007-07-30 21:09:28 +00:00
|
|
|
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;
|
|
|
|
}
|
2018-10-15 20:55:04 +00:00
|
|
|
if (is_in)
|
|
|
|
allow_short = true;
|
2010-01-26 22:07:29 +00:00
|
|
|
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));
|
2011-11-17 21:41:25 +00:00
|
|
|
u = sizeof(struct usb_ctrlrequest);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_URB_TYPE_BULK:
|
2018-09-05 10:07:02 +00:00
|
|
|
if (!is_in)
|
|
|
|
allow_zero = true;
|
|
|
|
else
|
|
|
|
allow_short = true;
|
2007-07-30 21:09:28 +00:00
|
|
|
switch (usb_endpoint_type(&ep->desc)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
case USB_ENDPOINT_XFER_CONTROL:
|
|
|
|
case USB_ENDPOINT_XFER_ISOC:
|
|
|
|
return -EINVAL;
|
2009-12-11 21:20:20 +00:00
|
|
|
case USB_ENDPOINT_XFER_INT:
|
|
|
|
/* allow single-shot interrupt transfers */
|
|
|
|
uurb->type = USBDEVFS_URB_TYPE_INTERRUPT;
|
|
|
|
goto interrupt_urb;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2012-07-04 07:18:03 +00:00
|
|
|
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;
|
2013-10-09 15:19:29 +00:00
|
|
|
if (ep->streams)
|
|
|
|
stream_id = uurb->stream_id;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
2009-12-11 21:20:20 +00:00
|
|
|
case USBDEVFS_URB_TYPE_INTERRUPT:
|
|
|
|
if (!usb_endpoint_xfer_int(&ep->desc))
|
|
|
|
return -EINVAL;
|
|
|
|
interrupt_urb:
|
2018-09-05 10:07:02 +00:00
|
|
|
if (!is_in)
|
|
|
|
allow_zero = true;
|
|
|
|
else
|
|
|
|
allow_short = true;
|
2009-12-11 21:20:20 +00:00
|
|
|
break;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
case USBDEVFS_URB_TYPE_ISO:
|
|
|
|
/* arbitrary limit */
|
2008-01-30 23:21:33 +00:00
|
|
|
if (uurb->number_of_packets < 1 ||
|
|
|
|
uurb->number_of_packets > 128)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
2007-07-30 21:09:28 +00:00
|
|
|
if (!usb_endpoint_xfer_isoc(&ep->desc))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
2013-10-09 15:19:28 +00:00
|
|
|
number_of_packets = uurb->number_of_packets;
|
2008-01-30 23:21:33 +00:00
|
|
|
isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
|
2013-10-09 15:19:28 +00:00
|
|
|
number_of_packets;
|
2015-12-11 05:40:51 +00:00
|
|
|
isopkt = memdup_user(iso_frame_desc, isofrmlen);
|
|
|
|
if (IS_ERR(isopkt)) {
|
|
|
|
ret = PTR_ERR(isopkt);
|
|
|
|
isopkt = NULL;
|
2011-11-17 21:41:14 +00:00
|
|
|
goto error;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2013-10-09 15:19:28 +00:00
|
|
|
for (totlen = u = 0; u < number_of_packets; u++) {
|
2013-05-24 16:18:48 +00:00
|
|
|
/*
|
2019-01-02 01:33:56 +00:00
|
|
|
* arbitrary limit need for USB 3.1 Gen2
|
|
|
|
* sizemax: 96 DPs at SSP, 96 * 1024 = 98304
|
2013-05-24 16:18:48 +00:00
|
|
|
*/
|
2019-01-02 01:33:56 +00:00
|
|
|
if (isopkt[u].length > 98304) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto error;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
totlen += isopkt[u].length;
|
|
|
|
}
|
2011-11-17 21:41:25 +00:00
|
|
|
u *= sizeof(struct usb_iso_packet_descriptor);
|
2017-10-16 14:21:19 +00:00
|
|
|
uurb->buffer_length = totlen;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2011-11-17 21:41:25 +00:00
|
|
|
|
2009-06-29 15:04:54 +00:00
|
|
|
if (uurb->buffer_length > 0 &&
|
Remove 'type' argument from access_ok() function
Nobody has actually used the type (VERIFY_READ vs VERIFY_WRITE) argument
of the user address range verification function since we got rid of the
old racy i386-only code to walk page tables by hand.
It existed because the original 80386 would not honor the write protect
bit when in kernel mode, so you had to do COW by hand before doing any
user access. But we haven't supported that in a long time, and these
days the 'type' argument is a purely historical artifact.
A discussion about extending 'user_access_begin()' to do the range
checking resulted this patch, because there is no way we're going to
move the old VERIFY_xyz interface to that model. And it's best done at
the end of the merge window when I've done most of my merges, so let's
just get this done once and for all.
This patch was mostly done with a sed-script, with manual fix-ups for
the cases that weren't of the trivial 'access_ok(VERIFY_xyz' form.
There were a couple of notable cases:
- csky still had the old "verify_area()" name as an alias.
- the iter_iov code had magical hardcoded knowledge of the actual
values of VERIFY_{READ,WRITE} (not that they mattered, since nothing
really used it)
- microblaze used the type argument for a debug printout
but other than those oddities this should be a total no-op patch.
I tried to fix up all architectures, did fairly extensive grepping for
access_ok() uses, and the changes are trivial, but I may have missed
something. Any missed conversion should be trivially fixable, though.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 02:57:57 +00:00
|
|
|
!access_ok(uurb->buffer, uurb->buffer_length)) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -EFAULT;
|
|
|
|
goto error;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2013-10-09 15:19:28 +00:00
|
|
|
as = alloc_async(number_of_packets);
|
2009-06-29 15:04:54 +00:00
|
|
|
if (!as) {
|
2011-11-17 21:41:14 +00:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2012-07-04 07:18:03 +00:00
|
|
|
|
2016-02-03 21:58:26 +00:00
|
|
|
as->usbm = find_memory_area(ps, uurb);
|
|
|
|
if (IS_ERR(as->usbm)) {
|
|
|
|
ret = PTR_ERR(as->usbm);
|
|
|
|
as->usbm = NULL;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* do not use SG buffers when memory mapped segments
|
|
|
|
* are in use
|
|
|
|
*/
|
|
|
|
if (as->usbm)
|
|
|
|
num_sgs = 0;
|
|
|
|
|
2012-07-04 07:18:03 +00:00
|
|
|
u += sizeof(struct async) + sizeof(struct urb) + uurb->buffer_length +
|
|
|
|
num_sgs * sizeof(struct scatterlist);
|
2011-11-17 21:41:25 +00:00
|
|
|
ret = usbfs_increase_memory_usage(u);
|
|
|
|
if (ret)
|
|
|
|
goto error;
|
|
|
|
as->mem_usage = u;
|
|
|
|
|
2012-07-04 07:18:03 +00:00
|
|
|
if (num_sgs) {
|
treewide: kmalloc() -> kmalloc_array()
The kmalloc() function has a 2-factor argument form, kmalloc_array(). This
patch replaces cases of:
kmalloc(a * b, gfp)
with:
kmalloc_array(a * b, gfp)
as well as handling cases of:
kmalloc(a * b * c, gfp)
with:
kmalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kmalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kmalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The tools/ directory was manually excluded, since it has its own
implementation of kmalloc().
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kmalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kmalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kmalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kmalloc
+ kmalloc_array
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kmalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kmalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kmalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kmalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kmalloc(C1 * C2 * C3, ...)
|
kmalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kmalloc(sizeof(THING) * C2, ...)
|
kmalloc(sizeof(TYPE) * C2, ...)
|
kmalloc(C1 * C2 * C3, ...)
|
kmalloc(C1 * C2, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- (E1) * E2
+ E1, E2
, ...)
|
- kmalloc
+ kmalloc_array
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kmalloc
+ kmalloc_array
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-12 20:55:00 +00:00
|
|
|
as->urb->sg = kmalloc_array(num_sgs,
|
|
|
|
sizeof(struct scatterlist),
|
|
|
|
GFP_KERNEL);
|
2012-07-04 07:18:03 +00:00
|
|
|
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;
|
|
|
|
}
|
2012-10-13 10:20:36 +00:00
|
|
|
uurb->buffer += u;
|
2012-07-04 07:18:03 +00:00
|
|
|
}
|
|
|
|
totlen -= u;
|
|
|
|
}
|
|
|
|
} else if (uurb->buffer_length > 0) {
|
2016-02-03 21:58:26 +00:00
|
|
|
if (as->usbm) {
|
|
|
|
unsigned long uurb_start = (unsigned long)uurb->buffer;
|
2012-07-04 07:18:03 +00:00
|
|
|
|
2016-02-03 21:58:26 +00:00
|
|
|
as->urb->transfer_buffer = as->usbm->mem +
|
|
|
|
(uurb_start - as->usbm->vm_start);
|
|
|
|
} else {
|
|
|
|
as->urb->transfer_buffer = kmalloc(uurb->buffer_length,
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!as->urb->transfer_buffer) {
|
|
|
|
ret = -ENOMEM;
|
2012-07-04 07:18:03 +00:00
|
|
|
goto error;
|
|
|
|
}
|
2016-02-03 21:58:26 +00:00
|
|
|
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.
|
|
|
|
*/
|
|
|
|
memset(as->urb->transfer_buffer, 0,
|
|
|
|
uurb->buffer_length);
|
|
|
|
}
|
2012-07-04 07:18:03 +00:00
|
|
|
}
|
2009-06-29 15:04:54 +00:00
|
|
|
}
|
2008-01-30 23:21:33 +00:00
|
|
|
as->urb->dev = ps->dev;
|
|
|
|
as->urb->pipe = (uurb->type << 30) |
|
2007-07-30 21:09:28 +00:00
|
|
|
__create_pipe(ps->dev, uurb->endpoint & 0xf) |
|
|
|
|
(uurb->endpoint & USB_DIR_IN);
|
2008-04-17 14:18:11 +00:00
|
|
|
|
|
|
|
/* 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;
|
2018-09-05 10:07:02 +00:00
|
|
|
if (allow_short && uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
|
2008-04-17 14:18:11 +00:00
|
|
|
u |= URB_SHORT_NOT_OK;
|
2018-09-05 10:07:02 +00:00
|
|
|
if (allow_zero && uurb->flags & USBDEVFS_URB_ZERO_PACKET)
|
2008-04-17 14:18:11 +00:00
|
|
|
u |= URB_ZERO_PACKET;
|
|
|
|
if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
|
|
|
|
u |= URB_NO_INTERRUPT;
|
|
|
|
as->urb->transfer_flags = u;
|
|
|
|
|
2018-09-05 10:07:03 +00:00
|
|
|
if (!allow_short && uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
|
|
|
|
dev_warn(&ps->dev->dev, "Requested nonsensical USBDEVFS_URB_SHORT_NOT_OK.\n");
|
|
|
|
if (!allow_zero && uurb->flags & USBDEVFS_URB_ZERO_PACKET)
|
|
|
|
dev_warn(&ps->dev->dev, "Requested nonsensical USBDEVFS_URB_ZERO_PACKET.\n");
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
as->urb->transfer_buffer_length = uurb->buffer_length;
|
2008-01-30 23:21:33 +00:00
|
|
|
as->urb->setup_packet = (unsigned char *)dr;
|
2011-11-17 21:41:14 +00:00
|
|
|
dr = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
as->urb->start_frame = uurb->start_frame;
|
2013-10-09 15:19:28 +00:00
|
|
|
as->urb->number_of_packets = number_of_packets;
|
2013-10-09 15:19:29 +00:00
|
|
|
as->urb->stream_id = stream_id;
|
2016-08-23 19:32:51 +00:00
|
|
|
|
|
|
|
if (ep->desc.bInterval) {
|
|
|
|
if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
|
|
|
|
ps->dev->speed == USB_SPEED_HIGH ||
|
|
|
|
ps->dev->speed >= USB_SPEED_SUPER)
|
|
|
|
as->urb->interval = 1 <<
|
|
|
|
min(15, ep->desc.bInterval - 1);
|
|
|
|
else
|
|
|
|
as->urb->interval = ep->desc.bInterval;
|
|
|
|
}
|
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
as->urb->context = as;
|
|
|
|
as->urb->complete = async_completed;
|
2013-10-09 15:19:28 +00:00
|
|
|
for (totlen = u = 0; u < number_of_packets; u++) {
|
2005-04-16 22:20:36 +00:00
|
|
|
as->urb->iso_frame_desc[u].offset = totlen;
|
|
|
|
as->urb->iso_frame_desc[u].length = isopkt[u].length;
|
|
|
|
totlen += isopkt[u].length;
|
|
|
|
}
|
2005-04-19 00:39:33 +00:00
|
|
|
kfree(isopkt);
|
2011-11-17 21:41:14 +00:00
|
|
|
isopkt = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
as->ps = ps;
|
2008-01-30 23:21:33 +00:00
|
|
|
as->userurb = arg;
|
2016-02-03 21:58:26 +00:00
|
|
|
if (as->usbm) {
|
|
|
|
unsigned long uurb_start = (unsigned long)uurb->buffer;
|
|
|
|
|
|
|
|
as->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
|
|
|
|
as->urb->transfer_dma = as->usbm->dma_handle +
|
|
|
|
(uurb_start - as->usbm->vm_start);
|
|
|
|
} else if (is_in && uurb->buffer_length > 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
as->userbuffer = uurb->buffer;
|
|
|
|
as->signr = uurb->signr;
|
|
|
|
as->ifnum = ifnum;
|
2006-10-02 09:17:28 +00:00
|
|
|
as->pid = get_pid(task_pid(current));
|
2011-09-26 15:45:18 +00:00
|
|
|
as->cred = get_current_cred();
|
2009-06-29 15:02:04 +00:00
|
|
|
snoop_urb(ps->dev, as->userurb, as->urb->pipe,
|
2010-01-26 22:07:29 +00:00
|
|
|
as->urb->transfer_buffer_length, 0, SUBMIT,
|
2012-07-04 07:18:03 +00:00
|
|
|
NULL, 0);
|
|
|
|
if (!is_in)
|
|
|
|
snoop_urb_data(as->urb, as->urb->transfer_buffer_length);
|
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
async_newpending(as);
|
2009-09-01 15:09:56 +00:00
|
|
|
|
|
|
|
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) {
|
2008-01-30 23:21:33 +00:00
|
|
|
dev_printk(KERN_DEBUG, &ps->dev->dev,
|
|
|
|
"usbfs: usb_submit_urb returned %d\n", ret);
|
2009-06-29 15:02:04 +00:00
|
|
|
snoop_urb(ps->dev, as->userurb, as->urb->pipe,
|
2010-01-26 22:07:29 +00:00
|
|
|
0, ret, COMPLETE, NULL, 0);
|
2008-01-30 23:21:33 +00:00
|
|
|
async_removepending(as);
|
2011-11-17 21:41:14 +00:00
|
|
|
goto error;
|
2008-01-30 23:21:33 +00:00
|
|
|
}
|
|
|
|
return 0;
|
2011-11-17 21:41:14 +00:00
|
|
|
|
|
|
|
error:
|
2016-02-03 21:58:26 +00:00
|
|
|
if (as && as->usbm)
|
|
|
|
dec_usb_memory_use_count(as->usbm, &as->usbm->urb_use_count);
|
2011-11-17 21:41:14 +00:00
|
|
|
kfree(isopkt);
|
|
|
|
kfree(dr);
|
|
|
|
if (as)
|
|
|
|
free_async(as);
|
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_submiturb(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct usbdevfs_urb uurb;
|
|
|
|
|
|
|
|
if (copy_from_user(&uurb, arg, sizeof(uurb)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
return proc_do_submiturb(ps, &uurb,
|
|
|
|
(((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
|
|
|
|
arg);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_unlinkurb(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-05-18 12:12:51 +00:00
|
|
|
struct urb *urb;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct async *as;
|
2012-05-18 12:12:51 +00:00
|
|
|
unsigned long flags;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-05-18 12:12:51 +00:00
|
|
|
spin_lock_irqsave(&ps->lock, flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
as = async_getpending(ps, arg);
|
2012-05-18 12:12:51 +00:00
|
|
|
if (!as) {
|
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
2012-05-18 12:12:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
urb = as->urb;
|
|
|
|
usb_get_urb(urb);
|
|
|
|
spin_unlock_irqrestore(&ps->lock, flags);
|
|
|
|
|
|
|
|
usb_kill_urb(urb);
|
|
|
|
usb_put_urb(urb);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-08 17:23:17 +00:00
|
|
|
static void compute_isochronous_actual_length(struct urb *urb)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (urb->number_of_packets > 0) {
|
|
|
|
urb->actual_length = 0;
|
|
|
|
for (i = 0; i < urb->number_of_packets; i++)
|
|
|
|
urb->actual_length +=
|
|
|
|
urb->iso_frame_desc[i].actual_length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
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;
|
|
|
|
|
2017-11-08 17:23:17 +00:00
|
|
|
compute_isochronous_actual_length(urb);
|
2010-03-06 20:04:03 +00:00
|
|
|
if (as->userbuffer && urb->actual_length) {
|
2012-07-04 07:18:03 +00:00
|
|
|
if (copy_urb_data_to_user(as->userbuffer, urb))
|
2009-06-28 21:34:14 +00:00
|
|
|
goto err_out;
|
2010-03-06 20:04:03 +00:00
|
|
|
}
|
2007-08-24 19:42:52 +00:00
|
|
|
if (put_user(as->status, &userurb->status))
|
2009-06-28 21:34:14 +00:00
|
|
|
goto err_out;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (put_user(urb->actual_length, &userurb->actual_length))
|
2009-06-28 21:34:14 +00:00
|
|
|
goto err_out;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (put_user(urb->error_count, &userurb->error_count))
|
2009-06-28 21:34:14 +00:00
|
|
|
goto err_out;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-07-30 21:09:28 +00:00
|
|
|
if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
|
2005-04-19 00:39:26 +00:00
|
|
|
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))
|
2009-06-28 21:34:14 +00:00
|
|
|
goto err_out;
|
2005-04-19 00:39:26 +00:00
|
|
|
if (put_user(urb->iso_frame_desc[i].status,
|
|
|
|
&userurb->iso_frame_desc[i].status))
|
2009-06-28 21:34:14 +00:00
|
|
|
goto err_out;
|
2005-04-19 00:39:26 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (put_user(addr, (void __user * __user *)arg))
|
|
|
|
return -EFAULT;
|
|
|
|
return 0;
|
2009-06-28 21:34:14 +00:00
|
|
|
|
|
|
|
err_out:
|
|
|
|
return -EFAULT;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static struct async *reap_as(struct usb_dev_state *ps)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-01-30 23:21:33 +00:00
|
|
|
DECLARE_WAITQUEUE(wait, current);
|
2005-04-16 22:20:36 +00:00
|
|
|
struct async *as = NULL;
|
|
|
|
struct usb_device *dev = ps->dev;
|
|
|
|
|
|
|
|
add_wait_queue(&ps->wait, &wait);
|
|
|
|
for (;;) {
|
|
|
|
__set_current_state(TASK_INTERRUPTIBLE);
|
2008-01-30 23:21:33 +00:00
|
|
|
as = async_getcompleted(ps);
|
2015-01-29 16:29:13 +00:00
|
|
|
if (as || !connected(ps))
|
2005-04-16 22:20:36 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_reapurb(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct async *as = reap_as(ps);
|
2015-11-20 18:53:35 +00:00
|
|
|
|
2010-02-16 20:35:07 +00:00
|
|
|
if (as) {
|
2015-11-20 18:53:35 +00:00
|
|
|
int retval;
|
|
|
|
|
2017-05-16 12:38:08 +00:00
|
|
|
snoop(&ps->dev->dev, "reap %pK\n", as->userurb);
|
2015-11-20 18:53:35 +00:00
|
|
|
retval = processcompl(as, (void __user * __user *)arg);
|
2010-02-16 20:35:07 +00:00
|
|
|
free_async(as);
|
|
|
|
return retval;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
if (signal_pending(current))
|
|
|
|
return -EINTR;
|
2015-01-29 16:29:13 +00:00
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_reapurbnonblock(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2010-02-16 20:35:07 +00:00
|
|
|
int retval;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct async *as;
|
|
|
|
|
2010-02-16 20:35:07 +00:00
|
|
|
as = async_getcompleted(ps);
|
|
|
|
if (as) {
|
2017-05-16 12:38:08 +00:00
|
|
|
snoop(&ps->dev->dev, "reap %pK\n", as->userurb);
|
2010-02-16 20:35:07 +00:00
|
|
|
retval = processcompl(as, (void __user * __user *)arg);
|
|
|
|
free_async(as);
|
2015-01-29 16:29:13 +00:00
|
|
|
} else {
|
|
|
|
retval = (connected(ps) ? -EAGAIN : -ENODEV);
|
2010-02-16 20:35:07 +00:00
|
|
|
}
|
|
|
|
return retval;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_control_compat(struct usb_dev_state *ps,
|
2009-11-14 01:28:05 +00:00
|
|
|
struct usbdevfs_ctrltransfer32 __user *p32)
|
|
|
|
{
|
2013-10-14 19:46:36 +00:00
|
|
|
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) ||
|
2009-11-14 01:28:05 +00:00
|
|
|
put_user(compat_ptr(udata), &p->data))
|
|
|
|
return -EFAULT;
|
2013-10-14 19:46:36 +00:00
|
|
|
return proc_control(ps, p);
|
2009-11-14 01:28:05 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_bulk_compat(struct usb_dev_state *ps,
|
2009-11-14 01:28:05 +00:00
|
|
|
struct usbdevfs_bulktransfer32 __user *p32)
|
|
|
|
{
|
2013-10-14 19:46:37 +00:00
|
|
|
struct usbdevfs_bulktransfer __user *p;
|
|
|
|
compat_uint_t n;
|
|
|
|
compat_caddr_t addr;
|
2009-11-14 01:28:05 +00:00
|
|
|
|
2013-10-14 19:46:37 +00:00
|
|
|
p = compat_alloc_user_space(sizeof(*p));
|
2009-11-14 01:28:05 +00:00
|
|
|
|
2013-10-14 19:46:37 +00:00
|
|
|
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;
|
2009-11-14 01:28:05 +00:00
|
|
|
|
2013-10-14 19:46:37 +00:00
|
|
|
return proc_bulk(ps, p);
|
2009-11-14 01:28:05 +00:00
|
|
|
}
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_disconnectsignal_compat(struct usb_dev_state *ps, void __user *arg)
|
2009-11-14 01:28:05 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static int get_urb32(struct usbdevfs_urb *kurb,
|
|
|
|
struct usbdevfs_urb32 __user *uurb)
|
|
|
|
{
|
2017-06-27 21:46:06 +00:00
|
|
|
struct usbdevfs_urb32 urb32;
|
|
|
|
if (copy_from_user(&urb32, uurb, sizeof(*uurb)))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EFAULT;
|
2017-06-27 21:46:06 +00:00
|
|
|
kurb->type = urb32.type;
|
|
|
|
kurb->endpoint = urb32.endpoint;
|
|
|
|
kurb->status = urb32.status;
|
|
|
|
kurb->flags = urb32.flags;
|
|
|
|
kurb->buffer = compat_ptr(urb32.buffer);
|
|
|
|
kurb->buffer_length = urb32.buffer_length;
|
|
|
|
kurb->actual_length = urb32.actual_length;
|
|
|
|
kurb->start_frame = urb32.start_frame;
|
|
|
|
kurb->number_of_packets = urb32.number_of_packets;
|
|
|
|
kurb->error_count = urb32.error_count;
|
|
|
|
kurb->signr = urb32.signr;
|
|
|
|
kurb->usercontext = compat_ptr(urb32.usercontext);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_submiturb_compat(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct usbdevfs_urb uurb;
|
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EFAULT;
|
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
return proc_do_submiturb(ps, &uurb,
|
|
|
|
((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
|
|
|
|
arg);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2017-11-08 17:23:17 +00:00
|
|
|
compute_isochronous_actual_length(urb);
|
2012-07-04 07:18:01 +00:00
|
|
|
if (as->userbuffer && urb->actual_length) {
|
2012-07-04 07:18:03 +00:00
|
|
|
if (copy_urb_data_to_user(as->userbuffer, urb))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EFAULT;
|
2012-07-04 07:18:01 +00:00
|
|
|
}
|
2007-08-24 19:42:52 +00:00
|
|
|
if (put_user(as->status, &userurb->status))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EFAULT;
|
|
|
|
if (put_user(urb->actual_length, &userurb->actual_length))
|
|
|
|
return -EFAULT;
|
|
|
|
if (put_user(urb->error_count, &userurb->error_count))
|
|
|
|
return -EFAULT;
|
|
|
|
|
2007-07-30 21:09:28 +00:00
|
|
|
if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
|
2005-04-19 00:39:26 +00:00
|
|
|
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;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-10-10 21:45:37 +00:00
|
|
|
if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EFAULT;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_reapurb_compat(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct async *as = reap_as(ps);
|
2015-11-20 18:53:35 +00:00
|
|
|
|
2010-02-16 20:35:07 +00:00
|
|
|
if (as) {
|
2015-11-20 18:53:35 +00:00
|
|
|
int retval;
|
|
|
|
|
2017-05-16 12:38:08 +00:00
|
|
|
snoop(&ps->dev->dev, "reap %pK\n", as->userurb);
|
2015-11-20 18:53:35 +00:00
|
|
|
retval = processcompl_compat(as, (void __user * __user *)arg);
|
2010-02-16 20:35:07 +00:00
|
|
|
free_async(as);
|
|
|
|
return retval;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
if (signal_pending(current))
|
|
|
|
return -EINTR;
|
2015-01-29 16:29:13 +00:00
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_reapurbnonblock_compat(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2010-02-16 20:35:07 +00:00
|
|
|
int retval;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct async *as;
|
|
|
|
|
2010-02-16 20:35:07 +00:00
|
|
|
as = async_getcompleted(ps);
|
|
|
|
if (as) {
|
2017-05-16 12:38:08 +00:00
|
|
|
snoop(&ps->dev->dev, "reap %pK\n", as->userurb);
|
2010-02-16 20:35:07 +00:00
|
|
|
retval = processcompl_compat(as, (void __user * __user *)arg);
|
|
|
|
free_async(as);
|
2015-01-29 16:29:13 +00:00
|
|
|
} else {
|
|
|
|
retval = (connected(ps) ? -EAGAIN : -ENODEV);
|
2010-02-16 20:35:07 +00:00
|
|
|
}
|
|
|
|
return retval;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-11-14 01:28:05 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_disconnectsignal(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct usbdevfs_disconnectsignal ds;
|
|
|
|
|
|
|
|
if (copy_from_user(&ds, arg, sizeof(ds)))
|
|
|
|
return -EFAULT;
|
|
|
|
ps->discsignr = ds.signr;
|
|
|
|
ps->disccontext = ds.context;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_claiminterface(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned int ifnum;
|
|
|
|
|
|
|
|
if (get_user(ifnum, (unsigned int __user *)arg))
|
|
|
|
return -EFAULT;
|
|
|
|
return claimintf(ps, ifnum);
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_releaseinterface(struct usb_dev_state *ps, void __user *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned int ifnum;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (get_user(ifnum, (unsigned int __user *)arg))
|
|
|
|
return -EFAULT;
|
2015-08-04 12:39:31 +00:00
|
|
|
ret = releaseintf(ps, ifnum);
|
|
|
|
if (ret < 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
2015-12-23 04:19:45 +00:00
|
|
|
destroy_async_on_interface(ps, ifnum);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_ioctl(struct usb_dev_state *ps, struct usbdevfs_ioctl *ctl)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int size;
|
|
|
|
void *buf = NULL;
|
|
|
|
int retval = 0;
|
|
|
|
struct usb_interface *intf = NULL;
|
|
|
|
struct usb_driver *driver = NULL;
|
|
|
|
|
2016-02-21 21:38:01 +00:00
|
|
|
if (ps->privileges_dropped)
|
|
|
|
return -EACCES;
|
|
|
|
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
/* alloc buffer */
|
2015-08-04 12:39:31 +00:00
|
|
|
size = _IOC_SIZE(ctl->ioctl_code);
|
|
|
|
if (size > 0) {
|
2013-05-17 07:13:58 +00:00
|
|
|
buf = kmalloc(size, GFP_KERNEL);
|
|
|
|
if (buf == NULL)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -ENOMEM;
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
|
2008-01-30 23:21:33 +00:00
|
|
|
if (copy_from_user(buf, ctl->data, size)) {
|
2005-04-19 00:39:33 +00:00
|
|
|
kfree(buf);
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
} else {
|
2008-01-30 23:21:33 +00:00
|
|
|
memset(buf, 0, size);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-02 02:05:56 +00:00
|
|
|
if (!connected(ps)) {
|
2005-04-19 00:39:33 +00:00
|
|
|
kfree(buf);
|
2005-04-16 22:20:36 +00:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps->dev->state != USB_STATE_CONFIGURED)
|
|
|
|
retval = -EHOSTUNREACH;
|
2008-01-30 23:21:33 +00:00
|
|
|
else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
|
|
|
|
retval = -EINVAL;
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
else switch (ctl->ioctl_code) {
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* disconnect kernel driver from interface */
|
|
|
|
case USBDEVFS_DISCONNECT:
|
|
|
|
if (intf->dev.driver) {
|
|
|
|
driver = to_usb_driver(intf->dev.driver);
|
2008-01-30 23:21:33 +00:00
|
|
|
dev_dbg(&intf->dev, "disconnect by usbfs\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_driver_release_interface(driver, intf);
|
|
|
|
} else
|
|
|
|
retval = -ENODATA;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* let kernel drivers try to (re)bind to the interface */
|
|
|
|
case USBDEVFS_CONNECT:
|
2007-12-03 20:42:10 +00:00
|
|
|
if (!intf->dev.driver)
|
|
|
|
retval = device_attach(&intf->dev);
|
|
|
|
else
|
|
|
|
retval = -EBUSY;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* talk directly to the interface's driver */
|
|
|
|
default:
|
|
|
|
if (intf->dev.driver)
|
|
|
|
driver = to_usb_driver(intf->dev.driver);
|
2010-06-01 21:04:41 +00:00
|
|
|
if (driver == NULL || driver->unlocked_ioctl == NULL) {
|
2005-04-16 22:20:36 +00:00
|
|
|
retval = -ENOTTY;
|
|
|
|
} else {
|
2010-06-01 21:04:41 +00:00
|
|
|
retval = driver->unlocked_ioctl(intf, ctl->ioctl_code, buf);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (retval == -ENOIOCTLCMD)
|
|
|
|
retval = -ENOTTY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cleanup and return */
|
|
|
|
if (retval >= 0
|
2008-01-30 23:21:33 +00:00
|
|
|
&& (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
|
2005-04-16 22:20:36 +00:00
|
|
|
&& size > 0
|
2008-01-30 23:21:33 +00:00
|
|
|
&& copy_to_user(ctl->data, buf, size) != 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
retval = -EFAULT;
|
2005-04-19 00:39:33 +00:00
|
|
|
|
|
|
|
kfree(buf);
|
2005-04-16 22:20:36 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_ioctl_default(struct usb_dev_state *ps, void __user *arg)
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
{
|
|
|
|
struct usbdevfs_ioctl ctrl;
|
|
|
|
|
2008-01-30 23:21:33 +00:00
|
|
|
if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
return -EFAULT;
|
|
|
|
return proc_ioctl(ps, &ctrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_ioctl_compat(struct usb_dev_state *ps, compat_uptr_t arg)
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
{
|
2017-06-27 21:46:06 +00:00
|
|
|
struct usbdevfs_ioctl32 ioc32;
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
struct usbdevfs_ioctl ctrl;
|
|
|
|
|
2017-06-27 21:46:06 +00:00
|
|
|
if (copy_from_user(&ioc32, compat_ptr(arg), sizeof(ioc32)))
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
return -EFAULT;
|
2017-06-27 21:46:06 +00:00
|
|
|
ctrl.ifno = ioc32.ifno;
|
|
|
|
ctrl.ioctl_code = ioc32.ioctl_code;
|
|
|
|
ctrl.data = compat_ptr(ioc32.data);
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
return proc_ioctl(ps, &ctrl);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_claim_port(struct usb_dev_state *ps, void __user *arg)
|
2009-06-29 14:56:54 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_release_port(struct usb_dev_state *ps, void __user *arg)
|
2009-06-29 14:56:54 +00:00
|
|
|
{
|
|
|
|
unsigned portnum;
|
|
|
|
|
|
|
|
if (get_user(portnum, (unsigned __user *) arg))
|
|
|
|
return -EFAULT;
|
|
|
|
return usb_hub_release_port(ps->dev, portnum, ps);
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_get_capabilities(struct usb_dev_state *ps, void __user *arg)
|
usbdevfs: Add a USBDEVFS_GET_CAPABILITIES ioctl
There are a few (new) usbdevfs capabilities which an application cannot
discover in any other way then checking the kernel version. There are 3
problems with this:
1) It is just not very pretty.
2) Given the tendency of enterprise distros to backport stuff it is not
reliable.
3) As discussed in length on the mailinglist, USBDEVFS_URB_BULK_CONTINUATION
does not work as it should when combined with USBDEVFS_URB_SHORT_NOT_OK
(which is its intended use) on devices attached to an XHCI controller.
So the availability of these features can be host controller dependent,
making depending on them based on the kernel version not a good idea.
This patch besides adding the new ioctl also adds flags for the following
existing capabilities:
USBDEVFS_CAP_ZERO_PACKET, available since 2.6.31
USBDEVFS_CAP_BULK_CONTINUATION, available since 2.6.32, except for XHCI
USBDEVFS_CAP_NO_PACKET_SIZE_LIM, available since 3.3
Note that this patch only does not advertise the USBDEVFS_URB_BULK_CONTINUATION
cap for XHCI controllers, bulk transfers with this flag set will still be
accepted when submitted to XHCI controllers.
Returning -EINVAL for them would break existing apps, and in most cases the
troublesome scenario wrt USBDEVFS_URB_SHORT_NOT_OK urbs on XHCI controllers
will never get hit, so this would break working use cases.
The disadvantage of not returning -EINVAL is that cases were it is causing
real trouble may go undetected / the cause of the trouble may be unclear,
but this is the best we can do.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Acked-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-07-04 07:18:02 +00:00
|
|
|
{
|
|
|
|
__u32 caps;
|
|
|
|
|
2015-01-29 16:29:13 +00:00
|
|
|
caps = USBDEVFS_CAP_ZERO_PACKET | USBDEVFS_CAP_NO_PACKET_SIZE_LIM |
|
2016-02-21 21:38:01 +00:00
|
|
|
USBDEVFS_CAP_REAP_AFTER_DISCONNECT | USBDEVFS_CAP_MMAP |
|
|
|
|
USBDEVFS_CAP_DROP_PRIVILEGES;
|
usbdevfs: Add a USBDEVFS_GET_CAPABILITIES ioctl
There are a few (new) usbdevfs capabilities which an application cannot
discover in any other way then checking the kernel version. There are 3
problems with this:
1) It is just not very pretty.
2) Given the tendency of enterprise distros to backport stuff it is not
reliable.
3) As discussed in length on the mailinglist, USBDEVFS_URB_BULK_CONTINUATION
does not work as it should when combined with USBDEVFS_URB_SHORT_NOT_OK
(which is its intended use) on devices attached to an XHCI controller.
So the availability of these features can be host controller dependent,
making depending on them based on the kernel version not a good idea.
This patch besides adding the new ioctl also adds flags for the following
existing capabilities:
USBDEVFS_CAP_ZERO_PACKET, available since 2.6.31
USBDEVFS_CAP_BULK_CONTINUATION, available since 2.6.32, except for XHCI
USBDEVFS_CAP_NO_PACKET_SIZE_LIM, available since 3.3
Note that this patch only does not advertise the USBDEVFS_URB_BULK_CONTINUATION
cap for XHCI controllers, bulk transfers with this flag set will still be
accepted when submitted to XHCI controllers.
Returning -EINVAL for them would break existing apps, and in most cases the
troublesome scenario wrt USBDEVFS_URB_SHORT_NOT_OK urbs on XHCI controllers
will never get hit, so this would break working use cases.
The disadvantage of not returning -EINVAL is that cases were it is causing
real trouble may go undetected / the cause of the trouble may be unclear,
but this is the best we can do.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Acked-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-07-04 07:18:02 +00:00
|
|
|
if (!ps->dev->bus->no_stop_on_short)
|
|
|
|
caps |= USBDEVFS_CAP_BULK_CONTINUATION;
|
2012-07-04 07:18:03 +00:00
|
|
|
if (ps->dev->bus->sg_tablesize)
|
|
|
|
caps |= USBDEVFS_CAP_BULK_SCATTER_GATHER;
|
usbdevfs: Add a USBDEVFS_GET_CAPABILITIES ioctl
There are a few (new) usbdevfs capabilities which an application cannot
discover in any other way then checking the kernel version. There are 3
problems with this:
1) It is just not very pretty.
2) Given the tendency of enterprise distros to backport stuff it is not
reliable.
3) As discussed in length on the mailinglist, USBDEVFS_URB_BULK_CONTINUATION
does not work as it should when combined with USBDEVFS_URB_SHORT_NOT_OK
(which is its intended use) on devices attached to an XHCI controller.
So the availability of these features can be host controller dependent,
making depending on them based on the kernel version not a good idea.
This patch besides adding the new ioctl also adds flags for the following
existing capabilities:
USBDEVFS_CAP_ZERO_PACKET, available since 2.6.31
USBDEVFS_CAP_BULK_CONTINUATION, available since 2.6.32, except for XHCI
USBDEVFS_CAP_NO_PACKET_SIZE_LIM, available since 3.3
Note that this patch only does not advertise the USBDEVFS_URB_BULK_CONTINUATION
cap for XHCI controllers, bulk transfers with this flag set will still be
accepted when submitted to XHCI controllers.
Returning -EINVAL for them would break existing apps, and in most cases the
troublesome scenario wrt USBDEVFS_URB_SHORT_NOT_OK urbs on XHCI controllers
will never get hit, so this would break working use cases.
The disadvantage of not returning -EINVAL is that cases were it is causing
real trouble may go undetected / the cause of the trouble may be unclear,
but this is the best we can do.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Acked-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-07-04 07:18:02 +00:00
|
|
|
|
|
|
|
if (put_user(caps, (__u32 __user *)arg))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-10 08:36:40 +00:00
|
|
|
static int proc_disconnect_claim(struct usb_dev_state *ps, void __user *arg)
|
2012-09-08 18:02:05 +00:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
2016-02-21 21:38:01 +00:00
|
|
|
if (ps->privileges_dropped)
|
|
|
|
return -EACCES;
|
|
|
|
|
2012-09-08 18:02:05 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2014-04-02 00:06:09 +00:00
|
|
|
static int proc_alloc_streams(struct usb_dev_state *ps, void __user *arg)
|
2013-10-09 15:19:31 +00:00
|
|
|
{
|
|
|
|
unsigned num_streams, num_eps;
|
|
|
|
struct usb_host_endpoint **eps;
|
|
|
|
struct usb_interface *intf;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = parse_usbdevfs_streams(ps, arg, &num_streams, &num_eps,
|
|
|
|
&eps, &intf);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
destroy_async_on_interface(ps,
|
|
|
|
intf->altsetting[0].desc.bInterfaceNumber);
|
|
|
|
|
|
|
|
r = usb_alloc_streams(intf, eps, num_eps, num_streams, GFP_KERNEL);
|
|
|
|
kfree(eps);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-04-02 00:06:09 +00:00
|
|
|
static int proc_free_streams(struct usb_dev_state *ps, void __user *arg)
|
2013-10-09 15:19:31 +00:00
|
|
|
{
|
|
|
|
unsigned num_eps;
|
|
|
|
struct usb_host_endpoint **eps;
|
|
|
|
struct usb_interface *intf;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = parse_usbdevfs_streams(ps, arg, NULL, &num_eps, &eps, &intf);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
destroy_async_on_interface(ps,
|
|
|
|
intf->altsetting[0].desc.bInterfaceNumber);
|
|
|
|
|
|
|
|
r = usb_free_streams(intf, eps, num_eps, GFP_KERNEL);
|
|
|
|
kfree(eps);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2016-02-21 21:38:01 +00:00
|
|
|
static int proc_drop_privileges(struct usb_dev_state *ps, void __user *arg)
|
|
|
|
{
|
|
|
|
u32 data;
|
|
|
|
|
|
|
|
if (copy_from_user(&data, arg, sizeof(data)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
2017-02-27 22:28:52 +00:00
|
|
|
/* This is a one way operation. Once privileges are
|
2016-02-21 21:38:01 +00:00
|
|
|
* dropped, you cannot regain them. You may however reissue
|
|
|
|
* this ioctl to shrink the allowed interfaces mask.
|
|
|
|
*/
|
|
|
|
ps->interface_allowed_mask &= data;
|
|
|
|
ps->privileges_dropped = true;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* 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...
|
|
|
|
*/
|
2009-11-14 01:28:05 +00:00
|
|
|
static long usbdev_do_ioctl(struct file *file, unsigned int cmd,
|
|
|
|
void __user *p)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps = file->private_data;
|
2013-01-23 22:07:38 +00:00
|
|
|
struct inode *inode = file_inode(file);
|
2005-04-16 22:20:36 +00:00
|
|
|
struct usb_device *dev = ps->dev;
|
|
|
|
int ret = -ENOTTY;
|
|
|
|
|
|
|
|
if (!(file->f_mode & FMODE_WRITE))
|
|
|
|
return -EPERM;
|
2010-01-13 14:33:43 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_lock_device(dev);
|
2015-01-29 16:29:13 +00:00
|
|
|
|
|
|
|
/* Reap operations are allowed even after disconnection */
|
|
|
|
switch (cmd) {
|
|
|
|
case USBDEVFS_REAPURB:
|
|
|
|
snoop(&dev->dev, "%s: REAPURB\n", __func__);
|
|
|
|
ret = proc_reapurb(ps, p);
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
case USBDEVFS_REAPURBNDELAY:
|
|
|
|
snoop(&dev->dev, "%s: REAPURBNDELAY\n", __func__);
|
|
|
|
ret = proc_reapurbnonblock(ps, p);
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
case USBDEVFS_REAPURB32:
|
|
|
|
snoop(&dev->dev, "%s: REAPURB32\n", __func__);
|
|
|
|
ret = proc_reapurb_compat(ps, p);
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
case USBDEVFS_REAPURBNDELAY32:
|
|
|
|
snoop(&dev->dev, "%s: REAPURBNDELAY32\n", __func__);
|
|
|
|
ret = proc_reapurbnonblock_compat(ps, p);
|
|
|
|
goto done;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2006-07-02 02:05:56 +00:00
|
|
|
if (!connected(ps)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_unlock_device(dev);
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case USBDEVFS_CONTROL:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: CONTROL\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_control(ps, p);
|
|
|
|
if (ret >= 0)
|
2016-09-14 14:48:04 +00:00
|
|
|
inode->i_mtime = current_time(inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_BULK:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: BULK\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_bulk(ps, p);
|
|
|
|
if (ret >= 0)
|
2016-09-14 14:48:04 +00:00
|
|
|
inode->i_mtime = current_time(inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_RESETEP:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: RESETEP\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_resetep(ps, p);
|
|
|
|
if (ret >= 0)
|
2016-09-14 14:48:04 +00:00
|
|
|
inode->i_mtime = current_time(inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_RESET:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: RESET\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_resetdevice(ps);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_CLEAR_HALT:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_clearhalt(ps, p);
|
|
|
|
if (ret >= 0)
|
2016-09-14 14:48:04 +00:00
|
|
|
inode->i_mtime = current_time(inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_GETDRIVER:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_getdriver(ps, p);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_CONNECTINFO:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_connectinfo(ps, p);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_SETINTERFACE:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_setintf(ps, p);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_SETCONFIGURATION:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_setconfig(ps, p);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_SUBMITURB:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_submiturb(ps, p);
|
|
|
|
if (ret >= 0)
|
2016-09-14 14:48:04 +00:00
|
|
|
inode->i_mtime = current_time(inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
2009-11-14 01:28:05 +00:00
|
|
|
case USBDEVFS_CONTROL32:
|
|
|
|
snoop(&dev->dev, "%s: CONTROL32\n", __func__);
|
|
|
|
ret = proc_control_compat(ps, p);
|
|
|
|
if (ret >= 0)
|
2016-09-14 14:48:04 +00:00
|
|
|
inode->i_mtime = current_time(inode);
|
2009-11-14 01:28:05 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_BULK32:
|
|
|
|
snoop(&dev->dev, "%s: BULK32\n", __func__);
|
|
|
|
ret = proc_bulk_compat(ps, p);
|
|
|
|
if (ret >= 0)
|
2016-09-14 14:48:04 +00:00
|
|
|
inode->i_mtime = current_time(inode);
|
2009-11-14 01:28:05 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_DISCSIGNAL32:
|
|
|
|
snoop(&dev->dev, "%s: DISCSIGNAL32\n", __func__);
|
|
|
|
ret = proc_disconnectsignal_compat(ps, p);
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
case USBDEVFS_SUBMITURB32:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_submiturb_compat(ps, p);
|
|
|
|
if (ret >= 0)
|
2016-09-14 14:48:04 +00:00
|
|
|
inode->i_mtime = current_time(inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
case USBDEVFS_IOCTL32:
|
2009-11-14 01:28:05 +00:00
|
|
|
snoop(&dev->dev, "%s: IOCTL32\n", __func__);
|
2006-10-10 21:45:37 +00:00
|
|
|
ret = proc_ioctl_compat(ps, ptr_to_compat(p));
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
case USBDEVFS_DISCARDURB:
|
2017-05-16 12:38:08 +00:00
|
|
|
snoop(&dev->dev, "%s: DISCARDURB %pK\n", __func__, p);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_unlinkurb(ps, p);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_DISCSIGNAL:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_disconnectsignal(ps, p);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_CLAIMINTERFACE:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_claiminterface(ps, p);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_RELEASEINTERFACE:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = proc_releaseinterface(ps, p);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBDEVFS_IOCTL:
|
2008-03-04 00:08:34 +00:00
|
|
|
snoop(&dev->dev, "%s: IOCTL\n", __func__);
|
[PATCH] usb: Patch for USBDEVFS_IOCTL from 32-bit programs
Dell supplied me with the following test:
#include<stdio.h>
#include<errno.h>
#include<sys/ioctl.h>
#include<fcntl.h>
#include<linux/usbdevice_fs.h>
main(int argc,char*argv[])
{
struct usbdevfs_hub_portinfo hubPortInfo = {0};
struct usbdevfs_ioctl command = {0};
command.ifno = 0;
command.ioctl_code = USBDEVFS_HUB_PORTINFO;
command.data = (void*)&hubPortInfo;
int fd, ret;
if(argc != 2) {
fprintf(stderr,"Usage: %s /proc/bus/usb/<BusNo>/<HubID>\n",argv[0]);
fprintf(stderr,"Example: %s /proc/bus/usb/001/001\n",argv[0]);
exit(1);
}
errno = 0;
fd = open(argv[1],O_RDWR);
if(fd < 0) {
perror("open failed:");
exit(errno);
}
errno = 0;
ret = ioctl(fd,USBDEVFS_IOCTL,&command);
printf("IOCTL return status:%d\n",ret);
if(ret<0) {
perror("IOCTL failed:");
close(fd);
exit(3);
} else {
printf("IOCTL passed:Num of ports %d\n",hubPortInfo.nports);
close(fd);
exit(0);
}
return 0;
}
I have verified that it breaks if built in 32 bit mode on x86_64 and that
the patch below fixes it.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-10-18 01:15:54 +00:00
|
|
|
ret = proc_ioctl_default(ps, p);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
2009-06-29 14:56:54 +00:00
|
|
|
|
|
|
|
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;
|
usbdevfs: Add a USBDEVFS_GET_CAPABILITIES ioctl
There are a few (new) usbdevfs capabilities which an application cannot
discover in any other way then checking the kernel version. There are 3
problems with this:
1) It is just not very pretty.
2) Given the tendency of enterprise distros to backport stuff it is not
reliable.
3) As discussed in length on the mailinglist, USBDEVFS_URB_BULK_CONTINUATION
does not work as it should when combined with USBDEVFS_URB_SHORT_NOT_OK
(which is its intended use) on devices attached to an XHCI controller.
So the availability of these features can be host controller dependent,
making depending on them based on the kernel version not a good idea.
This patch besides adding the new ioctl also adds flags for the following
existing capabilities:
USBDEVFS_CAP_ZERO_PACKET, available since 2.6.31
USBDEVFS_CAP_BULK_CONTINUATION, available since 2.6.32, except for XHCI
USBDEVFS_CAP_NO_PACKET_SIZE_LIM, available since 3.3
Note that this patch only does not advertise the USBDEVFS_URB_BULK_CONTINUATION
cap for XHCI controllers, bulk transfers with this flag set will still be
accepted when submitted to XHCI controllers.
Returning -EINVAL for them would break existing apps, and in most cases the
troublesome scenario wrt USBDEVFS_URB_SHORT_NOT_OK urbs on XHCI controllers
will never get hit, so this would break working use cases.
The disadvantage of not returning -EINVAL is that cases were it is causing
real trouble may go undetected / the cause of the trouble may be unclear,
but this is the best we can do.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Acked-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-07-04 07:18:02 +00:00
|
|
|
case USBDEVFS_GET_CAPABILITIES:
|
|
|
|
ret = proc_get_capabilities(ps, p);
|
|
|
|
break;
|
2012-09-08 18:02:05 +00:00
|
|
|
case USBDEVFS_DISCONNECT_CLAIM:
|
|
|
|
ret = proc_disconnect_claim(ps, p);
|
|
|
|
break;
|
2013-10-09 15:19:31 +00:00
|
|
|
case USBDEVFS_ALLOC_STREAMS:
|
|
|
|
ret = proc_alloc_streams(ps, p);
|
|
|
|
break;
|
|
|
|
case USBDEVFS_FREE_STREAMS:
|
|
|
|
ret = proc_free_streams(ps, p);
|
|
|
|
break;
|
2016-02-21 21:38:01 +00:00
|
|
|
case USBDEVFS_DROP_PRIVILEGES:
|
|
|
|
ret = proc_drop_privileges(ps, p);
|
|
|
|
break;
|
USB: add usbfs ioctl to retrieve the connection speed
The usbfs interface does not provide any way for the user to learn the
speed at which a device is connected. The current API includes a
USBDEVFS_CONNECTINFO ioctl, but all it provides is the device's
address and a one-bit value indicating whether the connection is low
speed. That may have sufficed in the era of USB-1.1, but it isn't
good enough today.
This patch introduces a new ioctl, USBDEVFS_GET_SPEED, which returns a
numeric value indicating the speed of the connection: unknown, low,
full, high, wireless, super, or super-plus.
Similar information (not exactly the same) is available through sysfs,
but it seems reasonable to provide the actual value in usbfs.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Reported-by: Reinhard Huck <reinhard.huck@thesycon.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-06-05 14:28:01 +00:00
|
|
|
case USBDEVFS_GET_SPEED:
|
|
|
|
ret = ps->dev->speed;
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2015-01-29 16:29:13 +00:00
|
|
|
|
|
|
|
done:
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_unlock_device(dev);
|
|
|
|
if (ret >= 0)
|
2016-09-14 14:48:04 +00:00
|
|
|
inode->i_atime = current_time(inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-11-14 01:28:05 +00:00
|
|
|
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
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* No kernel lock - fine */
|
2017-07-03 10:39:46 +00:00
|
|
|
static __poll_t usbdev_poll(struct file *file,
|
2008-01-30 23:21:33 +00:00
|
|
|
struct poll_table_struct *wait)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps = file->private_data;
|
2017-07-03 10:39:46 +00:00
|
|
|
__poll_t mask = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
poll_wait(file, &ps->wait, wait);
|
|
|
|
if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
|
2018-02-11 22:34:03 +00:00
|
|
|
mask |= EPOLLOUT | EPOLLWRNORM;
|
2006-07-02 02:05:56 +00:00
|
|
|
if (!connected(ps))
|
2018-02-11 22:34:03 +00:00
|
|
|
mask |= EPOLLHUP;
|
2016-06-10 18:42:55 +00:00
|
|
|
if (list_empty(&ps->list))
|
2018-02-11 22:34:03 +00:00
|
|
|
mask |= EPOLLERR;
|
2005-04-16 22:20:36 +00:00
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
2007-03-13 14:59:31 +00:00
|
|
|
const struct file_operations usbdev_file_operations = {
|
2009-11-14 01:28:05 +00:00
|
|
|
.owner = THIS_MODULE,
|
2015-12-06 03:04:48 +00:00
|
|
|
.llseek = no_seek_end_llseek,
|
2009-11-14 01:28:05 +00:00
|
|
|
.read = usbdev_read,
|
|
|
|
.poll = usbdev_poll,
|
|
|
|
.unlocked_ioctl = usbdev_ioctl,
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
.compat_ioctl = usbdev_compat_ioctl,
|
|
|
|
#endif
|
2016-02-03 21:58:26 +00:00
|
|
|
.mmap = usbdev_mmap,
|
2009-11-14 01:28:05 +00:00
|
|
|
.open = usbdev_open,
|
|
|
|
.release = usbdev_release,
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
2005-07-30 23:05:53 +00:00
|
|
|
|
2009-01-13 16:33:42 +00:00
|
|
|
static void usbdev_remove(struct usb_device *udev)
|
2008-06-24 18:47:04 +00:00
|
|
|
{
|
2014-03-10 08:36:40 +00:00
|
|
|
struct usb_dev_state *ps;
|
2018-09-25 09:27:20 +00:00
|
|
|
struct kernel_siginfo sinfo;
|
2008-06-24 18:47:04 +00:00
|
|
|
|
|
|
|
while (!list_empty(&udev->filelist)) {
|
2014-03-10 08:36:40 +00:00
|
|
|
ps = list_entry(udev->filelist.next, struct usb_dev_state, list);
|
2008-06-24 18:47:04 +00:00
|
|
|
destroy_all_async(ps);
|
|
|
|
wake_up_all(&ps->wait);
|
|
|
|
list_del_init(&ps->list);
|
|
|
|
if (ps->discsignr) {
|
2017-08-19 00:56:27 +00:00
|
|
|
clear_siginfo(&sinfo);
|
2008-06-24 18:47:04 +00:00
|
|
|
sinfo.si_signo = ps->discsignr;
|
|
|
|
sinfo.si_errno = EPIPE;
|
|
|
|
sinfo.si_code = SI_ASYNCIO;
|
|
|
|
sinfo.si_addr = ps->disccontext;
|
2011-09-26 15:45:18 +00:00
|
|
|
kill_pid_info_as_cred(ps->discsignr, &sinfo,
|
usb, signal, security: only pass the cred, not the secid, to kill_pid_info_as_cred and security_task_kill
commit d178bc3a708f39cbfefc3fab37032d3f2511b4ec ("user namespace: usb:
make usb urbs user namespace aware (v2)") changed kill_pid_info_as_uid
to kill_pid_info_as_cred, saving and passing a cred structure instead of
uids. Since the secid can be obtained from the cred, drop the secid fields
from the usb_dev_state and async structures, and drop the secid argument to
kill_pid_info_as_cred. Replace the secid argument to security_task_kill
with the cred. Update SELinux, Smack, and AppArmor to use the cred, which
avoids the need for Smack and AppArmor to use a secid at all in this hook.
Further changes to Smack might still be required to take full advantage of
this change, since it should now be possible to perform capability
checking based on the supplied cred. The changes to Smack and AppArmor
have only been compile-tested.
Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
Acked-by: Paul Moore <paul@paul-moore.com>
Acked-by: Casey Schaufler <casey@schaufler-ca.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-by: John Johansen <john.johansen@canonical.com>
Signed-off-by: James Morris <james.morris@microsoft.com>
2017-09-08 16:40:01 +00:00
|
|
|
ps->disc_pid, ps->cred);
|
2008-06-24 18:47:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-13 16:33:42 +00:00
|
|
|
static int usbdev_notify(struct notifier_block *self,
|
2007-03-13 14:59:31 +00:00
|
|
|
unsigned long action, void *dev)
|
2005-06-21 04:15:16 +00:00
|
|
|
{
|
|
|
|
switch (action) {
|
|
|
|
case USB_DEVICE_ADD:
|
|
|
|
break;
|
|
|
|
case USB_DEVICE_REMOVE:
|
2009-01-13 16:33:42 +00:00
|
|
|
usbdev_remove(dev);
|
2005-06-21 04:15:16 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return NOTIFY_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct notifier_block usbdev_nb = {
|
2015-04-10 04:41:52 +00:00
|
|
|
.notifier_call = usbdev_notify,
|
2005-06-21 04:15:16 +00:00
|
|
|
};
|
|
|
|
|
2007-09-12 22:06:57 +00:00
|
|
|
static struct cdev usb_device_cdev;
|
2005-07-30 23:05:53 +00:00
|
|
|
|
2007-03-13 14:59:31 +00:00
|
|
|
int __init usb_devio_init(void)
|
2005-07-30 23:05:53 +00:00
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
|
2005-08-10 19:15:57 +00:00
|
|
|
retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
|
2008-01-30 23:21:33 +00:00
|
|
|
"usb_device");
|
2005-07-30 23:05:53 +00:00
|
|
|
if (retval) {
|
2008-08-14 16:37:34 +00:00
|
|
|
printk(KERN_ERR "Unable to register minors for usb_device\n");
|
2005-07-30 23:05:53 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2007-03-13 14:59:31 +00:00
|
|
|
cdev_init(&usb_device_cdev, &usbdev_file_operations);
|
2005-08-10 19:15:57 +00:00
|
|
|
retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
|
2005-07-30 23:05:53 +00:00
|
|
|
if (retval) {
|
2008-08-14 16:37:34 +00:00
|
|
|
printk(KERN_ERR "Unable to get usb_device major %d\n",
|
|
|
|
USB_DEVICE_MAJOR);
|
2005-06-21 04:15:16 +00:00
|
|
|
goto error_cdev;
|
2005-07-30 23:05:53 +00:00
|
|
|
}
|
2009-01-13 16:33:42 +00:00
|
|
|
usb_register_notify(&usbdev_nb);
|
2005-07-30 23:05:53 +00:00
|
|
|
out:
|
|
|
|
return retval;
|
2005-06-21 04:15:16 +00:00
|
|
|
|
|
|
|
error_cdev:
|
|
|
|
unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
|
|
|
|
goto out;
|
2005-07-30 23:05:53 +00:00
|
|
|
}
|
|
|
|
|
2007-03-13 14:59:31 +00:00
|
|
|
void usb_devio_cleanup(void)
|
2005-07-30 23:05:53 +00:00
|
|
|
{
|
2005-06-21 04:15:16 +00:00
|
|
|
usb_unregister_notify(&usbdev_nb);
|
2005-07-30 23:05:53 +00:00
|
|
|
cdev_del(&usb_device_cdev);
|
2005-08-10 19:15:57 +00:00
|
|
|
unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
|
2005-07-30 23:05:53 +00:00
|
|
|
}
|