blob: 184fa70365db3e32a37f55efc819858b431578d6 [file] [log] [blame]
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -06001/*
2 * Copyright (C) 2003-2008 Takahiro Hirofuchi
3 *
4 * This is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 * USA.
18 */
19
matt mooney7aaacb42011-05-11 22:33:43 -070020#include <asm/byteorder.h>
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060021#include <linux/file.h>
matt mooney7aaacb42011-05-11 22:33:43 -070022#include <linux/fs.h>
23#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
W. Trevor King93efc552012-08-16 22:22:36 -040025#include <linux/stat.h>
Paul Gortmaker45296232011-08-30 17:50:46 -040026#include <linux/module.h>
W. Trevor King93efc552012-08-16 22:22:36 -040027#include <linux/moduleparam.h>
matt mooney7aaacb42011-05-11 22:33:43 -070028#include <net/sock.h>
matt mooney4ce0a412011-05-06 03:47:56 -070029
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060030#include "usbip_common.h"
31
matt mooney4ce0a412011-05-06 03:47:56 -070032#define DRIVER_AUTHOR "Takahiro Hirofuchi <hirofuchi@users.sourceforge.net>"
matt mooney64e62422011-05-11 22:33:44 -070033#define DRIVER_DESC "USB/IP Core"
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060034
matt mooney64e62422011-05-11 22:33:44 -070035#ifdef CONFIG_USBIP_DEBUG
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060036unsigned long usbip_debug_flag = 0xffffffff;
37#else
38unsigned long usbip_debug_flag;
39#endif
40EXPORT_SYMBOL_GPL(usbip_debug_flag);
W. Trevor King93efc552012-08-16 22:22:36 -040041module_param(usbip_debug_flag, ulong, S_IRUGO|S_IWUSR);
42MODULE_PARM_DESC(usbip_debug_flag, "debug flags (defined in usbip_common.h)");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060043
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060044/* FIXME */
45struct device_attribute dev_attr_usbip_debug;
46EXPORT_SYMBOL_GPL(dev_attr_usbip_debug);
47
Greg Kroah-Hartmanb1f56ac2013-08-26 12:02:54 -070048static ssize_t usbip_debug_show(struct device *dev,
49 struct device_attribute *attr, char *buf)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060050{
51 return sprintf(buf, "%lx\n", usbip_debug_flag);
52}
53
Greg Kroah-Hartmanb1f56ac2013-08-26 12:02:54 -070054static ssize_t usbip_debug_store(struct device *dev,
55 struct device_attribute *attr, const char *buf,
56 size_t count)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060057{
John de la Garzabf988c12014-03-06 15:51:59 -080058 if (sscanf(buf, "%lx", &usbip_debug_flag) != 1)
59 return -EINVAL;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060060 return count;
61}
Greg Kroah-Hartmanb1f56ac2013-08-26 12:02:54 -070062DEVICE_ATTR_RW(usbip_debug);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060063
64static void usbip_dump_buffer(char *buff, int bufflen)
65{
matt mooney1a4b6f62011-05-19 16:47:32 -070066 print_hex_dump(KERN_DEBUG, "usbip-core", DUMP_PREFIX_OFFSET, 16, 4,
Himanshu Chauhanaad86572010-01-23 02:52:41 +053067 buff, bufflen, false);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060068}
69
70static void usbip_dump_pipe(unsigned int p)
71{
72 unsigned char type = usb_pipetype(p);
matt mooney87352762011-05-19 21:36:56 -070073 unsigned char ep = usb_pipeendpoint(p);
74 unsigned char dev = usb_pipedevice(p);
75 unsigned char dir = usb_pipein(p);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060076
matt mooney1a4b6f62011-05-19 16:47:32 -070077 pr_debug("dev(%d) ep(%d) [%s] ", dev, ep, dir ? "IN" : "OUT");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060078
79 switch (type) {
80 case PIPE_ISOCHRONOUS:
matt mooney1a4b6f62011-05-19 16:47:32 -070081 pr_debug("ISO\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060082 break;
83 case PIPE_INTERRUPT:
matt mooney1a4b6f62011-05-19 16:47:32 -070084 pr_debug("INT\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060085 break;
86 case PIPE_CONTROL:
matt mooney1a4b6f62011-05-19 16:47:32 -070087 pr_debug("CTRL\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060088 break;
89 case PIPE_BULK:
matt mooney1a4b6f62011-05-19 16:47:32 -070090 pr_debug("BULK\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060091 break;
92 default:
matt mooney1a4b6f62011-05-19 16:47:32 -070093 pr_debug("ERR\n");
matt mooney49aecef2011-05-06 03:47:54 -070094 break;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060095 }
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060096}
97
98static void usbip_dump_usb_device(struct usb_device *udev)
99{
100 struct device *dev = &udev->dev;
101 int i;
102
Shuah Khan09c8c8f2014-01-24 09:25:05 -0700103 dev_dbg(dev, " devnum(%d) devpath(%s) usb speed(%s)",
104 udev->devnum, udev->devpath, usb_speed_string(udev->speed));
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600105
matt mooney1a4b6f62011-05-19 16:47:32 -0700106 pr_debug("tt %p, ttport %d\n", udev->tt, udev->ttport);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600107
108 dev_dbg(dev, " ");
109 for (i = 0; i < 16; i++)
matt mooney1a4b6f62011-05-19 16:47:32 -0700110 pr_debug(" %2u", i);
111 pr_debug("\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600112
113 dev_dbg(dev, " toggle0(IN) :");
114 for (i = 0; i < 16; i++)
matt mooney1a4b6f62011-05-19 16:47:32 -0700115 pr_debug(" %2u", (udev->toggle[0] & (1 << i)) ? 1 : 0);
116 pr_debug("\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600117
118 dev_dbg(dev, " toggle1(OUT):");
119 for (i = 0; i < 16; i++)
matt mooney1a4b6f62011-05-19 16:47:32 -0700120 pr_debug(" %2u", (udev->toggle[1] & (1 << i)) ? 1 : 0);
121 pr_debug("\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600122
123 dev_dbg(dev, " epmaxp_in :");
124 for (i = 0; i < 16; i++) {
125 if (udev->ep_in[i])
matt mooney1a4b6f62011-05-19 16:47:32 -0700126 pr_debug(" %2u",
127 le16_to_cpu(udev->ep_in[i]->desc.wMaxPacketSize));
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600128 }
matt mooney1a4b6f62011-05-19 16:47:32 -0700129 pr_debug("\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600130
131 dev_dbg(dev, " epmaxp_out :");
132 for (i = 0; i < 16; i++) {
133 if (udev->ep_out[i])
matt mooney1a4b6f62011-05-19 16:47:32 -0700134 pr_debug(" %2u",
135 le16_to_cpu(udev->ep_out[i]->desc.wMaxPacketSize));
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600136 }
matt mooney1a4b6f62011-05-19 16:47:32 -0700137 pr_debug("\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600138
139 dev_dbg(dev, "parent %p, bus %p\n", udev->parent, udev->bus);
140
Himangi Saraogib482da22013-11-02 17:38:10 +0530141 dev_dbg(dev,
142 "descriptor %p, config %p, actconfig %p, rawdescriptors %p\n",
143 &udev->descriptor, udev->config,
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600144 udev->actconfig, udev->rawdescriptors);
145
146 dev_dbg(dev, "have_langid %d, string_langid %d\n",
147 udev->have_langid, udev->string_langid);
148
Lan Tianyuff823c72012-09-05 13:44:32 +0800149 dev_dbg(dev, "maxchild %d\n", udev->maxchild);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600150}
151
152static void usbip_dump_request_type(__u8 rt)
153{
154 switch (rt & USB_RECIP_MASK) {
155 case USB_RECIP_DEVICE:
matt mooney1a4b6f62011-05-19 16:47:32 -0700156 pr_debug("DEVICE");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600157 break;
158 case USB_RECIP_INTERFACE:
matt mooney1a4b6f62011-05-19 16:47:32 -0700159 pr_debug("INTERF");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600160 break;
161 case USB_RECIP_ENDPOINT:
matt mooney1a4b6f62011-05-19 16:47:32 -0700162 pr_debug("ENDPOI");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600163 break;
164 case USB_RECIP_OTHER:
matt mooney1a4b6f62011-05-19 16:47:32 -0700165 pr_debug("OTHER ");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600166 break;
167 default:
matt mooney1a4b6f62011-05-19 16:47:32 -0700168 pr_debug("------");
matt mooney49aecef2011-05-06 03:47:54 -0700169 break;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600170 }
171}
172
173static void usbip_dump_usb_ctrlrequest(struct usb_ctrlrequest *cmd)
174{
175 if (!cmd) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700176 pr_debug(" : null pointer\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600177 return;
178 }
179
matt mooney1a4b6f62011-05-19 16:47:32 -0700180 pr_debug(" ");
Cédric Cabessa6bb3ee62014-03-19 23:04:56 +0100181 pr_debug("bRequestType(%02X) bRequest(%02X) wValue(%04X) wIndex(%04X) wLength(%04X) ",
182 cmd->bRequestType, cmd->bRequest,
matt mooney1a4b6f62011-05-19 16:47:32 -0700183 cmd->wValue, cmd->wIndex, cmd->wLength);
184 pr_debug("\n ");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600185
186 if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700187 pr_debug("STANDARD ");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600188 switch (cmd->bRequest) {
189 case USB_REQ_GET_STATUS:
matt mooney1a4b6f62011-05-19 16:47:32 -0700190 pr_debug("GET_STATUS\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600191 break;
192 case USB_REQ_CLEAR_FEATURE:
matt mooney1a4b6f62011-05-19 16:47:32 -0700193 pr_debug("CLEAR_FEAT\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600194 break;
195 case USB_REQ_SET_FEATURE:
Akshay Joshi5ad7b852011-06-06 09:07:31 -0400196 pr_debug("SET_FEAT\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600197 break;
198 case USB_REQ_SET_ADDRESS:
matt mooney1a4b6f62011-05-19 16:47:32 -0700199 pr_debug("SET_ADDRRS\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600200 break;
201 case USB_REQ_GET_DESCRIPTOR:
matt mooney1a4b6f62011-05-19 16:47:32 -0700202 pr_debug("GET_DESCRI\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600203 break;
204 case USB_REQ_SET_DESCRIPTOR:
matt mooney1a4b6f62011-05-19 16:47:32 -0700205 pr_debug("SET_DESCRI\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600206 break;
207 case USB_REQ_GET_CONFIGURATION:
matt mooney1a4b6f62011-05-19 16:47:32 -0700208 pr_debug("GET_CONFIG\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600209 break;
210 case USB_REQ_SET_CONFIGURATION:
matt mooney1a4b6f62011-05-19 16:47:32 -0700211 pr_debug("SET_CONFIG\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600212 break;
213 case USB_REQ_GET_INTERFACE:
matt mooney1a4b6f62011-05-19 16:47:32 -0700214 pr_debug("GET_INTERF\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600215 break;
216 case USB_REQ_SET_INTERFACE:
matt mooney1a4b6f62011-05-19 16:47:32 -0700217 pr_debug("SET_INTERF\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600218 break;
219 case USB_REQ_SYNCH_FRAME:
matt mooney1a4b6f62011-05-19 16:47:32 -0700220 pr_debug("SYNC_FRAME\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600221 break;
222 default:
Akshay Joshi5ad7b852011-06-06 09:07:31 -0400223 pr_debug("REQ(%02X)\n", cmd->bRequest);
matt mooney49aecef2011-05-06 03:47:54 -0700224 break;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600225 }
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600226 usbip_dump_request_type(cmd->bRequestType);
matt mooney1a4b6f62011-05-19 16:47:32 -0700227 } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_CLASS) {
Akshay Joshi5ad7b852011-06-06 09:07:31 -0400228 pr_debug("CLASS\n");
matt mooney1a4b6f62011-05-19 16:47:32 -0700229 } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_VENDOR) {
Akshay Joshi5ad7b852011-06-06 09:07:31 -0400230 pr_debug("VENDOR\n");
matt mooney1a4b6f62011-05-19 16:47:32 -0700231 } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_RESERVED) {
232 pr_debug("RESERVED\n");
233 }
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600234}
235
236void usbip_dump_urb(struct urb *urb)
237{
238 struct device *dev;
239
240 if (!urb) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700241 pr_debug("urb: null pointer!!\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600242 return;
243 }
244
245 if (!urb->dev) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700246 pr_debug("urb->dev: null pointer!!\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600247 return;
248 }
matt mooney1a4b6f62011-05-19 16:47:32 -0700249
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600250 dev = &urb->dev->dev;
251
252 dev_dbg(dev, " urb :%p\n", urb);
253 dev_dbg(dev, " dev :%p\n", urb->dev);
254
255 usbip_dump_usb_device(urb->dev);
256
257 dev_dbg(dev, " pipe :%08x ", urb->pipe);
258
259 usbip_dump_pipe(urb->pipe);
260
261 dev_dbg(dev, " status :%d\n", urb->status);
262 dev_dbg(dev, " transfer_flags :%08X\n", urb->transfer_flags);
263 dev_dbg(dev, " transfer_buffer :%p\n", urb->transfer_buffer);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600264 dev_dbg(dev, " transfer_buffer_length:%d\n",
265 urb->transfer_buffer_length);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600266 dev_dbg(dev, " actual_length :%d\n", urb->actual_length);
267 dev_dbg(dev, " setup_packet :%p\n", urb->setup_packet);
268
269 if (urb->setup_packet && usb_pipetype(urb->pipe) == PIPE_CONTROL)
matt mooneyf9eacc92011-05-06 03:47:46 -0700270 usbip_dump_usb_ctrlrequest(
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600271 (struct usb_ctrlrequest *)urb->setup_packet);
272
273 dev_dbg(dev, " start_frame :%d\n", urb->start_frame);
274 dev_dbg(dev, " number_of_packets :%d\n", urb->number_of_packets);
275 dev_dbg(dev, " interval :%d\n", urb->interval);
276 dev_dbg(dev, " error_count :%d\n", urb->error_count);
277 dev_dbg(dev, " context :%p\n", urb->context);
278 dev_dbg(dev, " complete :%p\n", urb->complete);
279}
280EXPORT_SYMBOL_GPL(usbip_dump_urb);
281
282void usbip_dump_header(struct usbip_header *pdu)
283{
matt mooney1a4b6f62011-05-19 16:47:32 -0700284 pr_debug("BASE: cmd %u seq %u devid %u dir %u ep %u\n",
285 pdu->base.command,
286 pdu->base.seqnum,
287 pdu->base.devid,
288 pdu->base.direction,
289 pdu->base.ep);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600290
291 switch (pdu->base.command) {
292 case USBIP_CMD_SUBMIT:
Cédric Cabessa6bb3ee62014-03-19 23:04:56 +0100293 pr_debug("USBIP_CMD_SUBMIT: x_flags %u x_len %u sf %u #p %d iv %d\n",
matt mooney1a4b6f62011-05-19 16:47:32 -0700294 pdu->u.cmd_submit.transfer_flags,
295 pdu->u.cmd_submit.transfer_buffer_length,
296 pdu->u.cmd_submit.start_frame,
297 pdu->u.cmd_submit.number_of_packets,
298 pdu->u.cmd_submit.interval);
matt mooneyf9eacc92011-05-06 03:47:46 -0700299 break;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600300 case USBIP_CMD_UNLINK:
matt mooney1a4b6f62011-05-19 16:47:32 -0700301 pr_debug("USBIP_CMD_UNLINK: seq %u\n",
302 pdu->u.cmd_unlink.seqnum);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600303 break;
304 case USBIP_RET_SUBMIT:
matt mooney1a4b6f62011-05-19 16:47:32 -0700305 pr_debug("USBIP_RET_SUBMIT: st %d al %u sf %d #p %d ec %d\n",
306 pdu->u.ret_submit.status,
307 pdu->u.ret_submit.actual_length,
308 pdu->u.ret_submit.start_frame,
309 pdu->u.ret_submit.number_of_packets,
310 pdu->u.ret_submit.error_count);
311 break;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600312 case USBIP_RET_UNLINK:
matt mooney1a4b6f62011-05-19 16:47:32 -0700313 pr_debug("USBIP_RET_UNLINK: status %d\n",
314 pdu->u.ret_unlink.status);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600315 break;
316 default:
317 /* NOT REACHED */
matt mooney1a4b6f62011-05-19 16:47:32 -0700318 pr_err("unknown command\n");
matt mooney49aecef2011-05-06 03:47:54 -0700319 break;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600320 }
321}
322EXPORT_SYMBOL_GPL(usbip_dump_header);
323
Bart Westgeest5a08c522011-12-19 17:44:11 -0500324/* Receive data over TCP/IP. */
325int usbip_recv(struct socket *sock, void *buf, int size)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600326{
327 int result;
328 struct msghdr msg;
329 struct kvec iov;
330 int total = 0;
331
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600332 /* for blocks of if (usbip_dbg_flag_xmit) */
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600333 char *bp = buf;
334 int osize = size;
335
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600336 usbip_dbg_xmit("enter\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600337
338 if (!sock || !buf || !size) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700339 pr_err("invalid arg, sock %p buff %p size %d\n", sock, buf,
340 size);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600341 return -EINVAL;
342 }
343
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600344 do {
345 sock->sk->sk_allocation = GFP_NOIO;
346 iov.iov_base = buf;
347 iov.iov_len = size;
348 msg.msg_name = NULL;
349 msg.msg_namelen = 0;
350 msg.msg_control = NULL;
351 msg.msg_controllen = 0;
Bart Westgeest5a08c522011-12-19 17:44:11 -0500352 msg.msg_flags = MSG_NOSIGNAL;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600353
Bart Westgeest5a08c522011-12-19 17:44:11 -0500354 result = kernel_recvmsg(sock, &msg, &iov, 1, size, MSG_WAITALL);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600355 if (result <= 0) {
Bart Westgeest5a08c522011-12-19 17:44:11 -0500356 pr_debug("receive sock %p buf %p size %u ret %d total %d\n",
357 sock, buf, size, result, total);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600358 goto err;
359 }
360
361 size -= result;
362 buf += result;
363 total += result;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600364 } while (size > 0);
365
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600366 if (usbip_dbg_flag_xmit) {
Bart Westgeest5a08c522011-12-19 17:44:11 -0500367 if (!in_interrupt())
368 pr_debug("%-10s:", current->comm);
369 else
370 pr_debug("interrupt :");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600371
Bart Westgeest5a08c522011-12-19 17:44:11 -0500372 pr_debug("receiving....\n");
373 usbip_dump_buffer(bp, osize);
374 pr_debug("received, osize %d ret %d size %d total %d\n",
Stefan Reifca9fb172013-04-04 16:03:07 +0200375 osize, result, size, total);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600376 }
377
378 return total;
379
380err:
381 return result;
382}
Bart Westgeest5a08c522011-12-19 17:44:11 -0500383EXPORT_SYMBOL_GPL(usbip_recv);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600384
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600385struct socket *sockfd_to_socket(unsigned int sockfd)
386{
387 struct socket *socket;
388 struct file *file;
389 struct inode *inode;
390
391 file = fget(sockfd);
392 if (!file) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700393 pr_err("invalid sockfd\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600394 return NULL;
395 }
396
Al Viro496ad9a2013-01-23 17:07:38 -0500397 inode = file_inode(file);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600398
Bernard Blackham3d0a2a22012-10-22 06:45:00 +1100399 if (!inode || !S_ISSOCK(inode->i_mode)) {
400 fput(file);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600401 return NULL;
Bernard Blackham3d0a2a22012-10-22 06:45:00 +1100402 }
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600403
404 socket = SOCKET_I(inode);
405
406 return socket;
407}
408EXPORT_SYMBOL_GPL(sockfd_to_socket);
409
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600410/* there may be more cases to tweak the flags. */
411static unsigned int tweak_transfer_flags(unsigned int flags)
412{
Alan Stern85bcb5e2010-04-30 16:35:37 -0400413 flags &= ~URB_NO_TRANSFER_DMA_MAP;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600414 return flags;
415}
416
417static void usbip_pack_cmd_submit(struct usbip_header *pdu, struct urb *urb,
matt mooneyf9eacc92011-05-06 03:47:46 -0700418 int pack)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600419{
420 struct usbip_header_cmd_submit *spdu = &pdu->u.cmd_submit;
421
422 /*
423 * Some members are not still implemented in usbip. I hope this issue
424 * will be discussed when usbip is ported to other operating systems.
425 */
426 if (pack) {
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600427 spdu->transfer_flags =
matt mooneyf9eacc92011-05-06 03:47:46 -0700428 tweak_transfer_flags(urb->transfer_flags);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600429 spdu->transfer_buffer_length = urb->transfer_buffer_length;
430 spdu->start_frame = urb->start_frame;
431 spdu->number_of_packets = urb->number_of_packets;
432 spdu->interval = urb->interval;
433 } else {
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600434 urb->transfer_flags = spdu->transfer_flags;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600435 urb->transfer_buffer_length = spdu->transfer_buffer_length;
436 urb->start_frame = spdu->start_frame;
437 urb->number_of_packets = spdu->number_of_packets;
438 urb->interval = spdu->interval;
439 }
440}
441
442static void usbip_pack_ret_submit(struct usbip_header *pdu, struct urb *urb,
matt mooneyf9eacc92011-05-06 03:47:46 -0700443 int pack)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600444{
445 struct usbip_header_ret_submit *rpdu = &pdu->u.ret_submit;
446
447 if (pack) {
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600448 rpdu->status = urb->status;
449 rpdu->actual_length = urb->actual_length;
450 rpdu->start_frame = urb->start_frame;
Arjan Mels1325f852011-04-05 20:26:38 +0200451 rpdu->number_of_packets = urb->number_of_packets;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600452 rpdu->error_count = urb->error_count;
453 } else {
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600454 urb->status = rpdu->status;
455 urb->actual_length = rpdu->actual_length;
456 urb->start_frame = rpdu->start_frame;
Arjan Mels1325f852011-04-05 20:26:38 +0200457 urb->number_of_packets = rpdu->number_of_packets;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600458 urb->error_count = rpdu->error_count;
459 }
460}
461
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600462void usbip_pack_pdu(struct usbip_header *pdu, struct urb *urb, int cmd,
matt mooneyf9eacc92011-05-06 03:47:46 -0700463 int pack)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600464{
465 switch (cmd) {
466 case USBIP_CMD_SUBMIT:
467 usbip_pack_cmd_submit(pdu, urb, pack);
468 break;
469 case USBIP_RET_SUBMIT:
470 usbip_pack_ret_submit(pdu, urb, pack);
471 break;
472 default:
matt mooney49aecef2011-05-06 03:47:54 -0700473 /* NOT REACHED */
matt mooney1a4b6f62011-05-19 16:47:32 -0700474 pr_err("unknown command\n");
matt mooney49aecef2011-05-06 03:47:54 -0700475 break;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600476 }
477}
478EXPORT_SYMBOL_GPL(usbip_pack_pdu);
479
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600480static void correct_endian_basic(struct usbip_header_basic *base, int send)
481{
482 if (send) {
483 base->command = cpu_to_be32(base->command);
484 base->seqnum = cpu_to_be32(base->seqnum);
485 base->devid = cpu_to_be32(base->devid);
486 base->direction = cpu_to_be32(base->direction);
487 base->ep = cpu_to_be32(base->ep);
488 } else {
489 base->command = be32_to_cpu(base->command);
490 base->seqnum = be32_to_cpu(base->seqnum);
491 base->devid = be32_to_cpu(base->devid);
492 base->direction = be32_to_cpu(base->direction);
493 base->ep = be32_to_cpu(base->ep);
494 }
495}
496
497static void correct_endian_cmd_submit(struct usbip_header_cmd_submit *pdu,
matt mooneyf9eacc92011-05-06 03:47:46 -0700498 int send)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600499{
500 if (send) {
501 pdu->transfer_flags = cpu_to_be32(pdu->transfer_flags);
502
503 cpu_to_be32s(&pdu->transfer_buffer_length);
504 cpu_to_be32s(&pdu->start_frame);
505 cpu_to_be32s(&pdu->number_of_packets);
506 cpu_to_be32s(&pdu->interval);
507 } else {
508 pdu->transfer_flags = be32_to_cpu(pdu->transfer_flags);
509
510 be32_to_cpus(&pdu->transfer_buffer_length);
511 be32_to_cpus(&pdu->start_frame);
512 be32_to_cpus(&pdu->number_of_packets);
513 be32_to_cpus(&pdu->interval);
514 }
515}
516
517static void correct_endian_ret_submit(struct usbip_header_ret_submit *pdu,
matt mooneyf9eacc92011-05-06 03:47:46 -0700518 int send)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600519{
520 if (send) {
521 cpu_to_be32s(&pdu->status);
522 cpu_to_be32s(&pdu->actual_length);
523 cpu_to_be32s(&pdu->start_frame);
Arjan Mels1325f852011-04-05 20:26:38 +0200524 cpu_to_be32s(&pdu->number_of_packets);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600525 cpu_to_be32s(&pdu->error_count);
526 } else {
527 be32_to_cpus(&pdu->status);
528 be32_to_cpus(&pdu->actual_length);
529 be32_to_cpus(&pdu->start_frame);
David Changcacd18a2011-05-12 18:31:11 +0800530 be32_to_cpus(&pdu->number_of_packets);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600531 be32_to_cpus(&pdu->error_count);
532 }
533}
534
535static void correct_endian_cmd_unlink(struct usbip_header_cmd_unlink *pdu,
matt mooneyf9eacc92011-05-06 03:47:46 -0700536 int send)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600537{
538 if (send)
539 pdu->seqnum = cpu_to_be32(pdu->seqnum);
540 else
541 pdu->seqnum = be32_to_cpu(pdu->seqnum);
542}
543
544static void correct_endian_ret_unlink(struct usbip_header_ret_unlink *pdu,
matt mooneyf9eacc92011-05-06 03:47:46 -0700545 int send)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600546{
547 if (send)
548 cpu_to_be32s(&pdu->status);
549 else
550 be32_to_cpus(&pdu->status);
551}
552
553void usbip_header_correct_endian(struct usbip_header *pdu, int send)
554{
555 __u32 cmd = 0;
556
557 if (send)
558 cmd = pdu->base.command;
559
560 correct_endian_basic(&pdu->base, send);
561
562 if (!send)
563 cmd = pdu->base.command;
564
565 switch (cmd) {
566 case USBIP_CMD_SUBMIT:
567 correct_endian_cmd_submit(&pdu->u.cmd_submit, send);
568 break;
569 case USBIP_RET_SUBMIT:
570 correct_endian_ret_submit(&pdu->u.ret_submit, send);
571 break;
572 case USBIP_CMD_UNLINK:
573 correct_endian_cmd_unlink(&pdu->u.cmd_unlink, send);
574 break;
575 case USBIP_RET_UNLINK:
576 correct_endian_ret_unlink(&pdu->u.ret_unlink, send);
577 break;
578 default:
matt mooney49aecef2011-05-06 03:47:54 -0700579 /* NOT REACHED */
matt mooney1a4b6f62011-05-19 16:47:32 -0700580 pr_err("unknown command\n");
matt mooney49aecef2011-05-06 03:47:54 -0700581 break;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600582 }
583}
584EXPORT_SYMBOL_GPL(usbip_header_correct_endian);
585
matt mooney2282e1f2011-05-19 21:37:01 -0700586static void usbip_iso_packet_correct_endian(
matt mooney87352762011-05-19 21:36:56 -0700587 struct usbip_iso_packet_descriptor *iso, int send)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600588{
589 /* does not need all members. but copy all simply. */
590 if (send) {
591 iso->offset = cpu_to_be32(iso->offset);
592 iso->length = cpu_to_be32(iso->length);
593 iso->status = cpu_to_be32(iso->status);
594 iso->actual_length = cpu_to_be32(iso->actual_length);
595 } else {
596 iso->offset = be32_to_cpu(iso->offset);
597 iso->length = be32_to_cpu(iso->length);
598 iso->status = be32_to_cpu(iso->status);
599 iso->actual_length = be32_to_cpu(iso->actual_length);
600 }
601}
602
603static void usbip_pack_iso(struct usbip_iso_packet_descriptor *iso,
matt mooneyf9eacc92011-05-06 03:47:46 -0700604 struct usb_iso_packet_descriptor *uiso, int pack)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600605{
606 if (pack) {
607 iso->offset = uiso->offset;
608 iso->length = uiso->length;
609 iso->status = uiso->status;
610 iso->actual_length = uiso->actual_length;
611 } else {
612 uiso->offset = iso->offset;
613 uiso->length = iso->length;
614 uiso->status = iso->status;
615 uiso->actual_length = iso->actual_length;
616 }
617}
618
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600619/* must free buffer */
Bart Westgeest36ac9b02012-10-10 13:34:25 -0400620struct usbip_iso_packet_descriptor*
621usbip_alloc_iso_desc_pdu(struct urb *urb, ssize_t *bufflen)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600622{
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600623 struct usbip_iso_packet_descriptor *iso;
624 int np = urb->number_of_packets;
625 ssize_t size = np * sizeof(*iso);
626 int i;
627
Bart Westgeest36ac9b02012-10-10 13:34:25 -0400628 iso = kzalloc(size, GFP_KERNEL);
629 if (!iso)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600630 return NULL;
631
632 for (i = 0; i < np; i++) {
Bart Westgeest36ac9b02012-10-10 13:34:25 -0400633 usbip_pack_iso(&iso[i], &urb->iso_frame_desc[i], 1);
634 usbip_iso_packet_correct_endian(&iso[i], 1);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600635 }
636
637 *bufflen = size;
638
Bart Westgeest36ac9b02012-10-10 13:34:25 -0400639 return iso;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600640}
641EXPORT_SYMBOL_GPL(usbip_alloc_iso_desc_pdu);
642
643/* some members of urb must be substituted before. */
644int usbip_recv_iso(struct usbip_device *ud, struct urb *urb)
645{
646 void *buff;
647 struct usbip_iso_packet_descriptor *iso;
648 int np = urb->number_of_packets;
649 int size = np * sizeof(*iso);
650 int i;
651 int ret;
Arjan Mels28276a22011-04-05 20:26:59 +0200652 int total_length = 0;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600653
654 if (!usb_pipeisoc(urb->pipe))
655 return 0;
656
657 /* my Bluetooth dongle gets ISO URBs which are np = 0 */
Jake Champlinf14287b2013-01-16 22:16:05 -0500658 if (np == 0)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600659 return 0;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600660
661 buff = kzalloc(size, GFP_KERNEL);
662 if (!buff)
663 return -ENOMEM;
664
Bart Westgeest5a08c522011-12-19 17:44:11 -0500665 ret = usbip_recv(ud->tcp_socket, buff, size);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600666 if (ret != size) {
667 dev_err(&urb->dev->dev, "recv iso_frame_descriptor, %d\n",
668 ret);
669 kfree(buff);
670
671 if (ud->side == USBIP_STUB)
672 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
673 else
674 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
675
676 return -EPIPE;
677 }
678
Bart Westgeest36ac9b02012-10-10 13:34:25 -0400679 iso = (struct usbip_iso_packet_descriptor *) buff;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600680 for (i = 0; i < np; i++) {
Bart Westgeest36ac9b02012-10-10 13:34:25 -0400681 usbip_iso_packet_correct_endian(&iso[i], 0);
682 usbip_pack_iso(&iso[i], &urb->iso_frame_desc[i], 0);
Arjan Mels28276a22011-04-05 20:26:59 +0200683 total_length += urb->iso_frame_desc[i].actual_length;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600684 }
685
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600686 kfree(buff);
687
Arjan Mels28276a22011-04-05 20:26:59 +0200688 if (total_length != urb->actual_length) {
689 dev_err(&urb->dev->dev,
Cédric Cabessa6bb3ee62014-03-19 23:04:56 +0100690 "total length of iso packets %d not equal to actual length of buffer %d\n",
matt mooneyf9eacc92011-05-06 03:47:46 -0700691 total_length, urb->actual_length);
Arjan Mels28276a22011-04-05 20:26:59 +0200692
693 if (ud->side == USBIP_STUB)
694 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
695 else
696 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
697
698 return -EPIPE;
699 }
700
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600701 return ret;
702}
703EXPORT_SYMBOL_GPL(usbip_recv_iso);
704
Arjan Mels28276a22011-04-05 20:26:59 +0200705/*
706 * This functions restores the padding which was removed for optimizing
707 * the bandwidth during transfer over tcp/ip
708 *
709 * buffer and iso packets need to be stored and be in propeper endian in urb
710 * before calling this function
711 */
Bart Westgeestac2b41a2012-01-23 10:55:46 -0500712void usbip_pad_iso(struct usbip_device *ud, struct urb *urb)
Arjan Mels28276a22011-04-05 20:26:59 +0200713{
714 int np = urb->number_of_packets;
715 int i;
Arjan Mels28276a22011-04-05 20:26:59 +0200716 int actualoffset = urb->actual_length;
717
718 if (!usb_pipeisoc(urb->pipe))
Bart Westgeestac2b41a2012-01-23 10:55:46 -0500719 return;
Arjan Mels28276a22011-04-05 20:26:59 +0200720
721 /* if no packets or length of data is 0, then nothing to unpack */
722 if (np == 0 || urb->actual_length == 0)
Bart Westgeestac2b41a2012-01-23 10:55:46 -0500723 return;
Arjan Mels28276a22011-04-05 20:26:59 +0200724
725 /*
726 * if actual_length is transfer_buffer_length then no padding is
727 * present.
Bart Westgeestc7f00892012-10-10 13:34:27 -0400728 */
Arjan Mels28276a22011-04-05 20:26:59 +0200729 if (urb->actual_length == urb->transfer_buffer_length)
Bart Westgeestac2b41a2012-01-23 10:55:46 -0500730 return;
Arjan Mels28276a22011-04-05 20:26:59 +0200731
732 /*
733 * loop over all packets from last to first (to prevent overwritting
734 * memory when padding) and move them into the proper place
735 */
736 for (i = np-1; i > 0; i--) {
737 actualoffset -= urb->iso_frame_desc[i].actual_length;
738 memmove(urb->transfer_buffer + urb->iso_frame_desc[i].offset,
matt mooneyf9eacc92011-05-06 03:47:46 -0700739 urb->transfer_buffer + actualoffset,
740 urb->iso_frame_desc[i].actual_length);
Arjan Mels28276a22011-04-05 20:26:59 +0200741 }
Arjan Mels28276a22011-04-05 20:26:59 +0200742}
743EXPORT_SYMBOL_GPL(usbip_pad_iso);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600744
745/* some members of urb must be substituted before. */
746int usbip_recv_xbuff(struct usbip_device *ud, struct urb *urb)
747{
748 int ret;
749 int size;
750
751 if (ud->side == USBIP_STUB) {
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600752 /* the direction of urb must be OUT. */
753 if (usb_pipein(urb->pipe))
754 return 0;
755
756 size = urb->transfer_buffer_length;
757 } else {
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600758 /* the direction of urb must be IN. */
759 if (usb_pipeout(urb->pipe))
760 return 0;
761
762 size = urb->actual_length;
763 }
764
765 /* no need to recv xbuff */
766 if (!(size > 0))
767 return 0;
768
Bart Westgeest5a08c522011-12-19 17:44:11 -0500769 ret = usbip_recv(ud->tcp_socket, urb->transfer_buffer, size);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600770 if (ret != size) {
771 dev_err(&urb->dev->dev, "recv xbuf, %d\n", ret);
772 if (ud->side == USBIP_STUB) {
773 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
774 } else {
775 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
776 return -EPIPE;
777 }
778 }
779
780 return ret;
781}
782EXPORT_SYMBOL_GPL(usbip_recv_xbuff);
783
matt mooney3028d0a2011-05-19 21:37:05 -0700784static int __init usbip_core_init(void)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600785{
matt mooney1a4b6f62011-05-19 16:47:32 -0700786 pr_info(DRIVER_DESC " v" USBIP_VERSION "\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600787 return 0;
788}
789
matt mooney3028d0a2011-05-19 21:37:05 -0700790static void __exit usbip_core_exit(void)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600791{
792 return;
793}
794
matt mooney3028d0a2011-05-19 21:37:05 -0700795module_init(usbip_core_init);
796module_exit(usbip_core_exit);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600797
798MODULE_AUTHOR(DRIVER_AUTHOR);
799MODULE_DESCRIPTION(DRIVER_DESC);
800MODULE_LICENSE("GPL");
matt mooney6973c6f2011-05-11 01:54:14 -0700801MODULE_VERSION(USBIP_VERSION);