2017-11-03 18:28:30 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2008-07-10 04:56:51 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2008 Takahiro Hirofuchi
|
|
|
|
*/
|
|
|
|
|
2011-05-12 13:33:43 +08:00
|
|
|
#include <asm/byteorder.h>
|
2011-03-02 07:13:05 +08:00
|
|
|
#include <linux/kthread.h>
|
2011-05-12 13:33:43 +08:00
|
|
|
#include <linux/usb.h>
|
|
|
|
#include <linux/usb/hcd.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
|
2008-07-10 04:56:51 +08:00
|
|
|
#include "usbip_common.h"
|
|
|
|
#include "stub.h"
|
|
|
|
|
|
|
|
static int is_clear_halt_cmd(struct urb *urb)
|
|
|
|
{
|
|
|
|
struct usb_ctrlrequest *req;
|
|
|
|
|
|
|
|
req = (struct usb_ctrlrequest *) urb->setup_packet;
|
|
|
|
|
|
|
|
return (req->bRequest == USB_REQ_CLEAR_FEATURE) &&
|
|
|
|
(req->bRequestType == USB_RECIP_ENDPOINT) &&
|
|
|
|
(req->wValue == USB_ENDPOINT_HALT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int is_set_interface_cmd(struct urb *urb)
|
|
|
|
{
|
|
|
|
struct usb_ctrlrequest *req;
|
|
|
|
|
|
|
|
req = (struct usb_ctrlrequest *) urb->setup_packet;
|
|
|
|
|
|
|
|
return (req->bRequest == USB_REQ_SET_INTERFACE) &&
|
2011-05-06 18:47:43 +08:00
|
|
|
(req->bRequestType == USB_RECIP_INTERFACE);
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int is_set_configuration_cmd(struct urb *urb)
|
|
|
|
{
|
|
|
|
struct usb_ctrlrequest *req;
|
|
|
|
|
|
|
|
req = (struct usb_ctrlrequest *) urb->setup_packet;
|
|
|
|
|
|
|
|
return (req->bRequest == USB_REQ_SET_CONFIGURATION) &&
|
2011-05-06 18:47:43 +08:00
|
|
|
(req->bRequestType == USB_RECIP_DEVICE);
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int is_reset_device_cmd(struct urb *urb)
|
|
|
|
{
|
|
|
|
struct usb_ctrlrequest *req;
|
|
|
|
__u16 value;
|
|
|
|
__u16 index;
|
|
|
|
|
|
|
|
req = (struct usb_ctrlrequest *) urb->setup_packet;
|
|
|
|
value = le16_to_cpu(req->wValue);
|
|
|
|
index = le16_to_cpu(req->wIndex);
|
|
|
|
|
|
|
|
if ((req->bRequest == USB_REQ_SET_FEATURE) &&
|
2011-05-06 18:47:43 +08:00
|
|
|
(req->bRequestType == USB_RT_PORT) &&
|
|
|
|
(value == USB_PORT_FEAT_RESET)) {
|
2009-07-21 14:46:13 +08:00
|
|
|
usbip_dbg_stub_rx("reset_device_cmd, port %u\n", index);
|
2008-07-10 04:56:51 +08:00
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tweak_clear_halt_cmd(struct urb *urb)
|
|
|
|
{
|
|
|
|
struct usb_ctrlrequest *req;
|
|
|
|
int target_endp;
|
|
|
|
int target_dir;
|
|
|
|
int target_pipe;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
req = (struct usb_ctrlrequest *) urb->setup_packet;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The stalled endpoint is specified in the wIndex value. The endpoint
|
|
|
|
* of the urb is the target of this clear_halt request (i.e., control
|
|
|
|
* endpoint).
|
|
|
|
*/
|
|
|
|
target_endp = le16_to_cpu(req->wIndex) & 0x000f;
|
|
|
|
|
|
|
|
/* the stalled endpoint direction is IN or OUT?. USB_DIR_IN is 0x80. */
|
|
|
|
target_dir = le16_to_cpu(req->wIndex) & 0x0080;
|
|
|
|
|
|
|
|
if (target_dir)
|
|
|
|
target_pipe = usb_rcvctrlpipe(urb->dev, target_endp);
|
|
|
|
else
|
|
|
|
target_pipe = usb_sndctrlpipe(urb->dev, target_endp);
|
|
|
|
|
|
|
|
ret = usb_clear_halt(urb->dev, target_pipe);
|
|
|
|
if (ret < 0)
|
2013-11-02 20:01:22 +08:00
|
|
|
dev_err(&urb->dev->dev,
|
|
|
|
"usb_clear_halt error: devnum %d endp %d ret %d\n",
|
|
|
|
urb->dev->devnum, target_endp, ret);
|
2008-07-10 04:56:51 +08:00
|
|
|
else
|
2013-11-02 20:01:22 +08:00
|
|
|
dev_info(&urb->dev->dev,
|
|
|
|
"usb_clear_halt done: devnum %d endp %d\n",
|
|
|
|
urb->dev->devnum, target_endp);
|
2008-07-10 04:56:51 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tweak_set_interface_cmd(struct urb *urb)
|
|
|
|
{
|
|
|
|
struct usb_ctrlrequest *req;
|
|
|
|
__u16 alternate;
|
|
|
|
__u16 interface;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
req = (struct usb_ctrlrequest *) urb->setup_packet;
|
|
|
|
alternate = le16_to_cpu(req->wValue);
|
|
|
|
interface = le16_to_cpu(req->wIndex);
|
|
|
|
|
2011-05-06 18:47:43 +08:00
|
|
|
usbip_dbg_stub_rx("set_interface: inf %u alt %u\n",
|
|
|
|
interface, alternate);
|
2008-07-10 04:56:51 +08:00
|
|
|
|
|
|
|
ret = usb_set_interface(urb->dev, interface, alternate);
|
|
|
|
if (ret < 0)
|
2013-11-02 20:01:22 +08:00
|
|
|
dev_err(&urb->dev->dev,
|
|
|
|
"usb_set_interface error: inf %u alt %u ret %d\n",
|
|
|
|
interface, alternate, ret);
|
2008-07-10 04:56:51 +08:00
|
|
|
else
|
2013-11-02 20:01:22 +08:00
|
|
|
dev_info(&urb->dev->dev,
|
|
|
|
"usb_set_interface done: inf %u alt %u\n",
|
|
|
|
interface, alternate);
|
2008-07-10 04:56:51 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tweak_set_configuration_cmd(struct urb *urb)
|
|
|
|
{
|
2014-03-08 20:53:32 +08:00
|
|
|
struct stub_priv *priv = (struct stub_priv *) urb->context;
|
|
|
|
struct stub_device *sdev = priv->sdev;
|
2008-07-10 04:56:51 +08:00
|
|
|
struct usb_ctrlrequest *req;
|
|
|
|
__u16 config;
|
2014-03-08 20:53:32 +08:00
|
|
|
int err;
|
2008-07-10 04:56:51 +08:00
|
|
|
|
|
|
|
req = (struct usb_ctrlrequest *) urb->setup_packet;
|
|
|
|
config = le16_to_cpu(req->wValue);
|
|
|
|
|
2014-03-08 20:53:32 +08:00
|
|
|
err = usb_set_configuration(sdev->udev, config);
|
|
|
|
if (err && err != -ENODEV)
|
|
|
|
dev_err(&sdev->udev->dev, "can't set config #%d, error %d\n",
|
|
|
|
config, err);
|
2008-07-10 04:56:51 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tweak_reset_device_cmd(struct urb *urb)
|
|
|
|
{
|
2011-04-06 02:26:11 +08:00
|
|
|
struct stub_priv *priv = (struct stub_priv *) urb->context;
|
|
|
|
struct stub_device *sdev = priv->sdev;
|
2008-07-10 04:56:51 +08:00
|
|
|
|
2011-05-20 07:47:32 +08:00
|
|
|
dev_info(&urb->dev->dev, "usb_queue_reset_device\n");
|
2008-07-10 04:56:51 +08:00
|
|
|
|
2016-04-28 18:07:22 +08:00
|
|
|
if (usb_lock_device_for_reset(sdev->udev, NULL) < 0) {
|
2011-05-21 05:25:46 +08:00
|
|
|
dev_err(&urb->dev->dev, "could not obtain lock to reset device\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
usb_reset_device(sdev->udev);
|
|
|
|
usb_unlock_device(sdev->udev);
|
|
|
|
|
2011-04-06 02:26:11 +08:00
|
|
|
return 0;
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* clear_halt, set_interface, and set_configuration require special tricks.
|
|
|
|
*/
|
|
|
|
static void tweak_special_requests(struct urb *urb)
|
|
|
|
{
|
|
|
|
if (!urb || !urb->setup_packet)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (usb_pipetype(urb->pipe) != PIPE_CONTROL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (is_clear_halt_cmd(urb))
|
|
|
|
/* tweak clear_halt */
|
|
|
|
tweak_clear_halt_cmd(urb);
|
|
|
|
|
|
|
|
else if (is_set_interface_cmd(urb))
|
|
|
|
/* tweak set_interface */
|
|
|
|
tweak_set_interface_cmd(urb);
|
|
|
|
|
|
|
|
else if (is_set_configuration_cmd(urb))
|
|
|
|
/* tweak set_configuration */
|
|
|
|
tweak_set_configuration_cmd(urb);
|
|
|
|
|
|
|
|
else if (is_reset_device_cmd(urb))
|
|
|
|
tweak_reset_device_cmd(urb);
|
|
|
|
else
|
2009-07-21 14:46:13 +08:00
|
|
|
usbip_dbg_stub_rx("no need to tweak\n");
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* stub_recv_unlink() unlinks the URB by a call to usb_unlink_urb().
|
|
|
|
* By unlinking the urb asynchronously, stub_rx can continuously
|
|
|
|
* process coming urbs. Even if the urb is unlinked, its completion
|
|
|
|
* handler will be called and stub_tx will send a return pdu.
|
|
|
|
*
|
|
|
|
* See also comments about unlinking strategy in vhci_hcd.c.
|
|
|
|
*/
|
|
|
|
static int stub_recv_cmd_unlink(struct stub_device *sdev,
|
2011-05-06 18:47:43 +08:00
|
|
|
struct usbip_header *pdu)
|
2008-07-10 04:56:51 +08:00
|
|
|
{
|
2013-04-04 22:03:03 +08:00
|
|
|
int ret;
|
2008-07-10 04:56:51 +08:00
|
|
|
unsigned long flags;
|
|
|
|
struct stub_priv *priv;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&sdev->priv_lock, flags);
|
|
|
|
|
2008-12-07 10:32:46 +08:00
|
|
|
list_for_each_entry(priv, &sdev->priv_init, list) {
|
2013-04-04 22:03:03 +08:00
|
|
|
if (priv->seqnum != pdu->u.cmd_unlink.seqnum)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
dev_info(&priv->urb->dev->dev, "unlink urb %p\n",
|
|
|
|
priv->urb);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This matched urb is not completed yet (i.e., be in
|
|
|
|
* flight in usb hcd hardware/driver). Now we are
|
|
|
|
* cancelling it. The unlinking flag means that we are
|
|
|
|
* now not going to return the normal result pdu of a
|
|
|
|
* submission request, but going to return a result pdu
|
|
|
|
* of the unlink request.
|
|
|
|
*/
|
|
|
|
priv->unlinking = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In the case that unlinking flag is on, prev->seqnum
|
|
|
|
* is changed from the seqnum of the cancelling urb to
|
|
|
|
* the seqnum of the unlink request. This will be used
|
|
|
|
* to make the result pdu of the unlink request.
|
|
|
|
*/
|
|
|
|
priv->seqnum = pdu->base.seqnum;
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&sdev->priv_lock, flags);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* usb_unlink_urb() is now out of spinlocking to avoid
|
|
|
|
* spinlock recursion since stub_complete() is
|
|
|
|
* sometimes called in this context but not in the
|
|
|
|
* interrupt context. If stub_complete() is executed
|
|
|
|
* before we call usb_unlink_urb(), usb_unlink_urb()
|
|
|
|
* will return an error value. In this case, stub_tx
|
|
|
|
* will return the result pdu of this unlink request
|
|
|
|
* though submission is completed and actual unlinking
|
|
|
|
* is not executed. OK?
|
|
|
|
*/
|
|
|
|
/* In the above case, urb->status is not -ECONNRESET,
|
|
|
|
* so a driver in a client host will know the failure
|
|
|
|
* of the unlink request ?
|
|
|
|
*/
|
|
|
|
ret = usb_unlink_urb(priv->urb);
|
|
|
|
if (ret != -EINPROGRESS)
|
|
|
|
dev_err(&priv->urb->dev->dev,
|
|
|
|
"failed to unlink a urb %p, ret %d\n",
|
|
|
|
priv->urb, ret);
|
|
|
|
|
|
|
|
return 0;
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|
|
|
|
|
2009-07-21 14:46:13 +08:00
|
|
|
usbip_dbg_stub_rx("seqnum %d is not pending\n",
|
2011-05-06 18:47:43 +08:00
|
|
|
pdu->u.cmd_unlink.seqnum);
|
2008-07-10 04:56:51 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The urb of the unlink target is not found in priv_init queue. It was
|
|
|
|
* already completed and its results is/was going to be sent by a
|
|
|
|
* CMD_RET pdu. In this case, usb_unlink_urb() is not needed. We only
|
|
|
|
* return the completeness of this unlink request to vhci_hcd.
|
|
|
|
*/
|
|
|
|
stub_enqueue_ret_unlink(sdev, pdu->base.seqnum, 0);
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&sdev->priv_lock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int valid_request(struct stub_device *sdev, struct usbip_header *pdu)
|
|
|
|
{
|
|
|
|
struct usbip_device *ud = &sdev->ud;
|
2011-05-25 05:19:18 +08:00
|
|
|
int valid = 0;
|
2008-07-10 04:56:51 +08:00
|
|
|
|
|
|
|
if (pdu->base.devid == sdev->devid) {
|
2013-01-22 13:31:30 +08:00
|
|
|
spin_lock_irq(&ud->lock);
|
2008-07-10 04:56:51 +08:00
|
|
|
if (ud->status == SDEV_ST_USED) {
|
|
|
|
/* A request is valid. */
|
2011-05-25 05:19:18 +08:00
|
|
|
valid = 1;
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|
2013-01-22 13:31:30 +08:00
|
|
|
spin_unlock_irq(&ud->lock);
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|
|
|
|
|
2011-05-25 05:19:18 +08:00
|
|
|
return valid;
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct stub_priv *stub_priv_alloc(struct stub_device *sdev,
|
|
|
|
struct usbip_header *pdu)
|
|
|
|
{
|
|
|
|
struct stub_priv *priv;
|
|
|
|
struct usbip_device *ud = &sdev->ud;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&sdev->priv_lock, flags);
|
|
|
|
|
2009-02-06 11:08:58 +08:00
|
|
|
priv = kmem_cache_zalloc(stub_priv_cache, GFP_ATOMIC);
|
2008-07-10 04:56:51 +08:00
|
|
|
if (!priv) {
|
2016-04-28 18:07:22 +08:00
|
|
|
dev_err(&sdev->udev->dev, "alloc stub_priv\n");
|
2008-07-10 04:56:51 +08:00
|
|
|
spin_unlock_irqrestore(&sdev->priv_lock, flags);
|
|
|
|
usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->seqnum = pdu->base.seqnum;
|
|
|
|
priv->sdev = sdev;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* After a stub_priv is linked to a list_head,
|
|
|
|
* our error handler can free allocated data.
|
|
|
|
*/
|
|
|
|
list_add_tail(&priv->list, &sdev->priv_init);
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&sdev->priv_lock, flags);
|
|
|
|
|
|
|
|
return priv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_pipe(struct stub_device *sdev, int epnum, int dir)
|
|
|
|
{
|
2011-01-12 21:01:59 +08:00
|
|
|
struct usb_device *udev = sdev->udev;
|
2008-07-10 04:56:51 +08:00
|
|
|
struct usb_host_endpoint *ep;
|
|
|
|
struct usb_endpoint_descriptor *epd = NULL;
|
|
|
|
|
2010-07-27 18:39:45 +08:00
|
|
|
if (dir == USBIP_DIR_IN)
|
|
|
|
ep = udev->ep_in[epnum & 0x7f];
|
|
|
|
else
|
|
|
|
ep = udev->ep_out[epnum & 0x7f];
|
2008-07-10 04:56:51 +08:00
|
|
|
if (!ep) {
|
2016-04-28 18:07:22 +08:00
|
|
|
dev_err(&sdev->udev->dev, "no such endpoint?, %d\n",
|
2008-07-10 04:56:51 +08:00
|
|
|
epnum);
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
|
|
|
epd = &ep->desc;
|
|
|
|
if (usb_endpoint_xfer_control(epd)) {
|
|
|
|
if (dir == USBIP_DIR_OUT)
|
|
|
|
return usb_sndctrlpipe(udev, epnum);
|
|
|
|
else
|
|
|
|
return usb_rcvctrlpipe(udev, epnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (usb_endpoint_xfer_bulk(epd)) {
|
|
|
|
if (dir == USBIP_DIR_OUT)
|
|
|
|
return usb_sndbulkpipe(udev, epnum);
|
|
|
|
else
|
|
|
|
return usb_rcvbulkpipe(udev, epnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (usb_endpoint_xfer_int(epd)) {
|
|
|
|
if (dir == USBIP_DIR_OUT)
|
|
|
|
return usb_sndintpipe(udev, epnum);
|
|
|
|
else
|
|
|
|
return usb_rcvintpipe(udev, epnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (usb_endpoint_xfer_isoc(epd)) {
|
|
|
|
if (dir == USBIP_DIR_OUT)
|
|
|
|
return usb_sndisocpipe(udev, epnum);
|
|
|
|
else
|
|
|
|
return usb_rcvisocpipe(udev, epnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NOT REACHED */
|
2016-04-28 18:07:22 +08:00
|
|
|
dev_err(&sdev->udev->dev, "get pipe, epnum %d\n", epnum);
|
2008-07-10 04:56:51 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-27 18:40:00 +08:00
|
|
|
static void masking_bogus_flags(struct urb *urb)
|
|
|
|
{
|
|
|
|
int xfertype;
|
|
|
|
struct usb_device *dev;
|
|
|
|
struct usb_host_endpoint *ep;
|
|
|
|
int is_out;
|
|
|
|
unsigned int allowed;
|
|
|
|
|
|
|
|
if (!urb || urb->hcpriv || !urb->complete)
|
|
|
|
return;
|
|
|
|
dev = urb->dev;
|
|
|
|
if ((!dev) || (dev->state < USB_STATE_UNAUTHENTICATED))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ep = (usb_pipein(urb->pipe) ? dev->ep_in : dev->ep_out)
|
2011-05-06 18:47:43 +08:00
|
|
|
[usb_pipeendpoint(urb->pipe)];
|
2010-07-27 18:40:00 +08:00
|
|
|
if (!ep)
|
|
|
|
return;
|
|
|
|
|
|
|
|
xfertype = usb_endpoint_type(&ep->desc);
|
|
|
|
if (xfertype == USB_ENDPOINT_XFER_CONTROL) {
|
|
|
|
struct usb_ctrlrequest *setup =
|
2011-05-06 18:47:43 +08:00
|
|
|
(struct usb_ctrlrequest *) urb->setup_packet;
|
2010-07-27 18:40:00 +08:00
|
|
|
|
|
|
|
if (!setup)
|
|
|
|
return;
|
|
|
|
is_out = !(setup->bRequestType & USB_DIR_IN) ||
|
2011-05-06 18:47:43 +08:00
|
|
|
!setup->wLength;
|
2010-07-27 18:40:00 +08:00
|
|
|
} else {
|
|
|
|
is_out = usb_endpoint_dir_out(&ep->desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* enforce simple/standard policy */
|
2010-07-28 02:12:21 +08:00
|
|
|
allowed = (URB_NO_TRANSFER_DMA_MAP | URB_NO_INTERRUPT |
|
|
|
|
URB_DIR_MASK | URB_FREE_BUFFER);
|
2010-07-27 18:40:00 +08:00
|
|
|
switch (xfertype) {
|
|
|
|
case USB_ENDPOINT_XFER_BULK:
|
|
|
|
if (is_out)
|
|
|
|
allowed |= URB_ZERO_PACKET;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case USB_ENDPOINT_XFER_CONTROL:
|
|
|
|
allowed |= URB_NO_FSBR; /* only affects UHCI */
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
default: /* all non-iso endpoints */
|
|
|
|
if (!is_out)
|
|
|
|
allowed |= URB_SHORT_NOT_OK;
|
|
|
|
break;
|
|
|
|
case USB_ENDPOINT_XFER_ISOC:
|
|
|
|
allowed |= URB_ISO_ASAP;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
urb->transfer_flags &= allowed;
|
|
|
|
}
|
|
|
|
|
2008-07-10 04:56:51 +08:00
|
|
|
static void stub_recv_cmd_submit(struct stub_device *sdev,
|
|
|
|
struct usbip_header *pdu)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct stub_priv *priv;
|
|
|
|
struct usbip_device *ud = &sdev->ud;
|
2011-01-12 21:01:59 +08:00
|
|
|
struct usb_device *udev = sdev->udev;
|
2008-07-10 04:56:51 +08:00
|
|
|
int pipe = get_pipe(sdev, pdu->base.ep, pdu->base.direction);
|
|
|
|
|
|
|
|
priv = stub_priv_alloc(sdev, pdu);
|
|
|
|
if (!priv)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* setup a urb */
|
|
|
|
if (usb_pipeisoc(pipe))
|
|
|
|
priv->urb = usb_alloc_urb(pdu->u.cmd_submit.number_of_packets,
|
2011-05-06 18:47:43 +08:00
|
|
|
GFP_KERNEL);
|
2008-07-10 04:56:51 +08:00
|
|
|
else
|
|
|
|
priv->urb = usb_alloc_urb(0, GFP_KERNEL);
|
|
|
|
|
|
|
|
if (!priv->urb) {
|
|
|
|
usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-10-11 01:34:27 +08:00
|
|
|
/* allocate urb transfer buffer, if needed */
|
2008-07-10 04:56:51 +08:00
|
|
|
if (pdu->u.cmd_submit.transfer_buffer_length > 0) {
|
|
|
|
priv->urb->transfer_buffer =
|
|
|
|
kzalloc(pdu->u.cmd_submit.transfer_buffer_length,
|
2011-05-06 18:47:43 +08:00
|
|
|
GFP_KERNEL);
|
2008-07-10 04:56:51 +08:00
|
|
|
if (!priv->urb->transfer_buffer) {
|
|
|
|
usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-11 01:34:27 +08:00
|
|
|
/* copy urb setup packet */
|
2010-05-16 05:21:43 +08:00
|
|
|
priv->urb->setup_packet = kmemdup(&pdu->u.cmd_submit.setup, 8,
|
|
|
|
GFP_KERNEL);
|
2008-07-10 04:56:51 +08:00
|
|
|
if (!priv->urb->setup_packet) {
|
2016-04-28 18:07:22 +08:00
|
|
|
dev_err(&udev->dev, "allocate setup_packet\n");
|
2008-07-10 04:56:51 +08:00
|
|
|
usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set other members from the base header of pdu */
|
|
|
|
priv->urb->context = (void *) priv;
|
|
|
|
priv->urb->dev = udev;
|
|
|
|
priv->urb->pipe = pipe;
|
|
|
|
priv->urb->complete = stub_complete;
|
|
|
|
|
|
|
|
usbip_pack_pdu(pdu, priv->urb, USBIP_CMD_SUBMIT, 0);
|
|
|
|
|
|
|
|
|
|
|
|
if (usbip_recv_xbuff(ud, priv->urb) < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (usbip_recv_iso(ud, priv->urb) < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* no need to submit an intercepted request, but harmless? */
|
|
|
|
tweak_special_requests(priv->urb);
|
|
|
|
|
2010-07-27 18:40:00 +08:00
|
|
|
masking_bogus_flags(priv->urb);
|
2008-07-10 04:56:51 +08:00
|
|
|
/* urb is now ready to submit */
|
|
|
|
ret = usb_submit_urb(priv->urb, GFP_KERNEL);
|
|
|
|
|
|
|
|
if (ret == 0)
|
2009-07-21 14:46:13 +08:00
|
|
|
usbip_dbg_stub_rx("submit urb ok, seqnum %u\n",
|
2011-05-06 18:47:43 +08:00
|
|
|
pdu->base.seqnum);
|
2008-07-10 04:56:51 +08:00
|
|
|
else {
|
2016-04-28 18:07:22 +08:00
|
|
|
dev_err(&udev->dev, "submit_urb error, %d\n", ret);
|
2008-07-10 04:56:51 +08:00
|
|
|
usbip_dump_header(pdu);
|
|
|
|
usbip_dump_urb(priv->urb);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pessimistic.
|
|
|
|
* This connection will be discarded.
|
|
|
|
*/
|
|
|
|
usbip_event_add(ud, SDEV_EVENT_ERROR_SUBMIT);
|
|
|
|
}
|
|
|
|
|
2009-07-21 14:46:13 +08:00
|
|
|
usbip_dbg_stub_rx("Leave\n");
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* recv a pdu */
|
|
|
|
static void stub_rx_pdu(struct usbip_device *ud)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct usbip_header pdu;
|
|
|
|
struct stub_device *sdev = container_of(ud, struct stub_device, ud);
|
2014-01-24 05:12:29 +08:00
|
|
|
struct device *dev = &sdev->udev->dev;
|
2008-07-10 04:56:51 +08:00
|
|
|
|
2009-07-21 14:46:13 +08:00
|
|
|
usbip_dbg_stub_rx("Enter\n");
|
2008-07-10 04:56:51 +08:00
|
|
|
|
|
|
|
memset(&pdu, 0, sizeof(pdu));
|
|
|
|
|
2013-04-04 22:03:05 +08:00
|
|
|
/* receive a pdu header */
|
2011-12-20 06:44:11 +08:00
|
|
|
ret = usbip_recv(ud->tcp_socket, &pdu, sizeof(pdu));
|
2008-07-10 04:56:51 +08:00
|
|
|
if (ret != sizeof(pdu)) {
|
|
|
|
dev_err(dev, "recv a header, %d\n", ret);
|
|
|
|
usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
usbip_header_correct_endian(&pdu, 0);
|
|
|
|
|
2009-07-21 14:46:13 +08:00
|
|
|
if (usbip_dbg_flag_stub_rx)
|
2008-07-10 04:56:51 +08:00
|
|
|
usbip_dump_header(&pdu);
|
|
|
|
|
|
|
|
if (!valid_request(sdev, &pdu)) {
|
|
|
|
dev_err(dev, "recv invalid request\n");
|
|
|
|
usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (pdu.base.command) {
|
|
|
|
case USBIP_CMD_UNLINK:
|
|
|
|
stub_recv_cmd_unlink(sdev, &pdu);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBIP_CMD_SUBMIT:
|
|
|
|
stub_recv_cmd_submit(sdev, &pdu);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* NOTREACHED */
|
|
|
|
dev_err(dev, "unknown pdu\n");
|
|
|
|
usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
|
2011-05-06 18:47:54 +08:00
|
|
|
break;
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-02 07:13:05 +08:00
|
|
|
int stub_rx_loop(void *data)
|
2008-07-10 04:56:51 +08:00
|
|
|
{
|
2011-03-02 07:13:05 +08:00
|
|
|
struct usbip_device *ud = data;
|
2008-07-10 04:56:51 +08:00
|
|
|
|
2011-03-02 07:13:05 +08:00
|
|
|
while (!kthread_should_stop()) {
|
2009-07-21 14:46:13 +08:00
|
|
|
if (usbip_event_happened(ud))
|
2008-07-10 04:56:51 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
stub_rx_pdu(ud);
|
|
|
|
}
|
2011-05-06 18:47:43 +08:00
|
|
|
|
2011-03-02 07:13:05 +08:00
|
|
|
return 0;
|
2008-07-10 04:56:51 +08:00
|
|
|
}
|