1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2003-2008 Takahiro Hirofuchi
4 * Copyright (C) 2015-2016 Samsung Electronics
8 #include <asm/byteorder.h>
9 #include <linux/file.h>
11 #include <linux/kernel.h>
12 #include <linux/slab.h>
13 #include <linux/stat.h>
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
18 #include "usbip_common.h"
21 #define DRIVER_DESC "USB/IP Core"
23 #ifdef CONFIG_USBIP_DEBUG
24 unsigned long usbip_debug_flag = 0xffffffff;
26 unsigned long usbip_debug_flag;
28 EXPORT_SYMBOL_GPL(usbip_debug_flag);
29 module_param(usbip_debug_flag, ulong, S_IRUGO|S_IWUSR);
30 MODULE_PARM_DESC(usbip_debug_flag, "debug flags (defined in usbip_common.h)");
33 struct device_attribute dev_attr_usbip_debug;
34 EXPORT_SYMBOL_GPL(dev_attr_usbip_debug);
36 static ssize_t usbip_debug_show(struct device *dev,
37 struct device_attribute *attr, char *buf)
39 return sprintf(buf, "%lx\n", usbip_debug_flag);
42 static ssize_t usbip_debug_store(struct device *dev,
43 struct device_attribute *attr, const char *buf,
46 if (sscanf(buf, "%lx", &usbip_debug_flag) != 1)
50 DEVICE_ATTR_RW(usbip_debug);
52 static void usbip_dump_buffer(char *buff, int bufflen)
54 print_hex_dump(KERN_DEBUG, "usbip-core", DUMP_PREFIX_OFFSET, 16, 4,
55 buff, bufflen, false);
58 static void usbip_dump_pipe(unsigned int p)
60 unsigned char type = usb_pipetype(p);
61 unsigned char ep = usb_pipeendpoint(p);
62 unsigned char dev = usb_pipedevice(p);
63 unsigned char dir = usb_pipein(p);
65 pr_debug("dev(%d) ep(%d) [%s] ", dev, ep, dir ? "IN" : "OUT");
68 case PIPE_ISOCHRONOUS:
86 static void usbip_dump_usb_device(struct usb_device *udev)
88 struct device *dev = &udev->dev;
91 dev_dbg(dev, " devnum(%d) devpath(%s) usb speed(%s)",
92 udev->devnum, udev->devpath, usb_speed_string(udev->speed));
94 pr_debug("tt hub ttport %d\n", udev->ttport);
97 for (i = 0; i < 16; i++)
101 dev_dbg(dev, " toggle0(IN) :");
102 for (i = 0; i < 16; i++)
103 pr_debug(" %2u", (udev->toggle[0] & (1 << i)) ? 1 : 0);
106 dev_dbg(dev, " toggle1(OUT):");
107 for (i = 0; i < 16; i++)
108 pr_debug(" %2u", (udev->toggle[1] & (1 << i)) ? 1 : 0);
111 dev_dbg(dev, " epmaxp_in :");
112 for (i = 0; i < 16; i++) {
115 le16_to_cpu(udev->ep_in[i]->desc.wMaxPacketSize));
119 dev_dbg(dev, " epmaxp_out :");
120 for (i = 0; i < 16; i++) {
123 le16_to_cpu(udev->ep_out[i]->desc.wMaxPacketSize));
127 dev_dbg(dev, "parent %s, bus %s\n", dev_name(&udev->parent->dev),
128 udev->bus->bus_name);
130 dev_dbg(dev, "have_langid %d, string_langid %d\n",
131 udev->have_langid, udev->string_langid);
133 dev_dbg(dev, "maxchild %d\n", udev->maxchild);
136 static void usbip_dump_request_type(__u8 rt)
138 switch (rt & USB_RECIP_MASK) {
139 case USB_RECIP_DEVICE:
142 case USB_RECIP_INTERFACE:
145 case USB_RECIP_ENDPOINT:
148 case USB_RECIP_OTHER:
157 static void usbip_dump_usb_ctrlrequest(struct usb_ctrlrequest *cmd)
160 pr_debug(" : null pointer\n");
165 pr_debug("bRequestType(%02X) bRequest(%02X) wValue(%04X) wIndex(%04X) wLength(%04X) ",
166 cmd->bRequestType, cmd->bRequest,
167 cmd->wValue, cmd->wIndex, cmd->wLength);
170 if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) {
171 pr_debug("STANDARD ");
172 switch (cmd->bRequest) {
173 case USB_REQ_GET_STATUS:
174 pr_debug("GET_STATUS\n");
176 case USB_REQ_CLEAR_FEATURE:
177 pr_debug("CLEAR_FEAT\n");
179 case USB_REQ_SET_FEATURE:
180 pr_debug("SET_FEAT\n");
182 case USB_REQ_SET_ADDRESS:
183 pr_debug("SET_ADDRRS\n");
185 case USB_REQ_GET_DESCRIPTOR:
186 pr_debug("GET_DESCRI\n");
188 case USB_REQ_SET_DESCRIPTOR:
189 pr_debug("SET_DESCRI\n");
191 case USB_REQ_GET_CONFIGURATION:
192 pr_debug("GET_CONFIG\n");
194 case USB_REQ_SET_CONFIGURATION:
195 pr_debug("SET_CONFIG\n");
197 case USB_REQ_GET_INTERFACE:
198 pr_debug("GET_INTERF\n");
200 case USB_REQ_SET_INTERFACE:
201 pr_debug("SET_INTERF\n");
203 case USB_REQ_SYNCH_FRAME:
204 pr_debug("SYNC_FRAME\n");
207 pr_debug("REQ(%02X)\n", cmd->bRequest);
210 usbip_dump_request_type(cmd->bRequestType);
211 } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_CLASS) {
213 } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_VENDOR) {
214 pr_debug("VENDOR\n");
215 } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_RESERVED) {
216 pr_debug("RESERVED\n");
220 void usbip_dump_urb(struct urb *urb)
225 pr_debug("urb: null pointer!!\n");
230 pr_debug("urb->dev: null pointer!!\n");
234 dev = &urb->dev->dev;
236 usbip_dump_usb_device(urb->dev);
238 dev_dbg(dev, " pipe :%08x ", urb->pipe);
240 usbip_dump_pipe(urb->pipe);
242 dev_dbg(dev, " status :%d\n", urb->status);
243 dev_dbg(dev, " transfer_flags :%08X\n", urb->transfer_flags);
244 dev_dbg(dev, " transfer_buffer_length:%d\n",
245 urb->transfer_buffer_length);
246 dev_dbg(dev, " actual_length :%d\n", urb->actual_length);
248 if (urb->setup_packet && usb_pipetype(urb->pipe) == PIPE_CONTROL)
249 usbip_dump_usb_ctrlrequest(
250 (struct usb_ctrlrequest *)urb->setup_packet);
252 dev_dbg(dev, " start_frame :%d\n", urb->start_frame);
253 dev_dbg(dev, " number_of_packets :%d\n", urb->number_of_packets);
254 dev_dbg(dev, " interval :%d\n", urb->interval);
255 dev_dbg(dev, " error_count :%d\n", urb->error_count);
257 EXPORT_SYMBOL_GPL(usbip_dump_urb);
259 void usbip_dump_header(struct usbip_header *pdu)
261 pr_debug("BASE: cmd %u seq %u devid %u dir %u ep %u\n",
268 switch (pdu->base.command) {
269 case USBIP_CMD_SUBMIT:
270 pr_debug("USBIP_CMD_SUBMIT: x_flags %u x_len %u sf %u #p %d iv %d\n",
271 pdu->u.cmd_submit.transfer_flags,
272 pdu->u.cmd_submit.transfer_buffer_length,
273 pdu->u.cmd_submit.start_frame,
274 pdu->u.cmd_submit.number_of_packets,
275 pdu->u.cmd_submit.interval);
277 case USBIP_CMD_UNLINK:
278 pr_debug("USBIP_CMD_UNLINK: seq %u\n",
279 pdu->u.cmd_unlink.seqnum);
281 case USBIP_RET_SUBMIT:
282 pr_debug("USBIP_RET_SUBMIT: st %d al %u sf %d #p %d ec %d\n",
283 pdu->u.ret_submit.status,
284 pdu->u.ret_submit.actual_length,
285 pdu->u.ret_submit.start_frame,
286 pdu->u.ret_submit.number_of_packets,
287 pdu->u.ret_submit.error_count);
289 case USBIP_RET_UNLINK:
290 pr_debug("USBIP_RET_UNLINK: status %d\n",
291 pdu->u.ret_unlink.status);
295 pr_err("unknown command\n");
299 EXPORT_SYMBOL_GPL(usbip_dump_header);
301 /* Receive data over TCP/IP. */
302 int usbip_recv(struct socket *sock, void *buf, int size)
305 struct kvec iov = {.iov_base = buf, .iov_len = size};
306 struct msghdr msg = {.msg_flags = MSG_NOSIGNAL};
309 if (!sock || !buf || !size)
312 iov_iter_kvec(&msg.msg_iter, READ, &iov, 1, size);
314 usbip_dbg_xmit("enter\n");
317 sock->sk->sk_allocation = GFP_NOIO;
319 result = sock_recvmsg(sock, &msg, MSG_WAITALL);
324 } while (msg_data_left(&msg));
326 if (usbip_dbg_flag_xmit) {
327 pr_debug("receiving....\n");
328 usbip_dump_buffer(buf, size);
329 pr_debug("received, osize %d ret %d size %zd total %d\n",
330 size, result, msg_data_left(&msg), total);
338 EXPORT_SYMBOL_GPL(usbip_recv);
340 /* there may be more cases to tweak the flags. */
341 static unsigned int tweak_transfer_flags(unsigned int flags)
343 flags &= ~URB_NO_TRANSFER_DMA_MAP;
348 * USBIP driver packs URB transfer flags in PDUs that are exchanged
349 * between Server (usbip_host) and Client (vhci_hcd). URB_* flags
350 * are internal to kernel and could change. Where as USBIP URB flags
351 * exchanged in PDUs are USBIP user API must not change.
353 * USBIP_URB* flags are exported as explicit API and client and server
354 * do mapping from kernel flags to USBIP_URB*. Details as follows:
356 * Client tx path (USBIP_CMD_SUBMIT):
357 * - Maps URB_* to USBIP_URB_* when it sends USBIP_CMD_SUBMIT packet.
359 * Server rx path (USBIP_CMD_SUBMIT):
360 * - Maps USBIP_URB_* to URB_* when it receives USBIP_CMD_SUBMIT packet.
362 * Flags aren't included in USBIP_CMD_UNLINK and USBIP_RET_SUBMIT packets
363 * and no special handling is needed for them in the following cases:
364 * - Server rx path (USBIP_CMD_UNLINK)
365 * - Client rx path & Server tx path (USBIP_RET_SUBMIT)
368 * usbip_pack_pdu() is the common routine that handles packing pdu from
369 * urb and unpack pdu to an urb.
371 * usbip_pack_cmd_submit() and usbip_pack_ret_submit() handle
372 * USBIP_CMD_SUBMIT and USBIP_RET_SUBMIT respectively.
374 * usbip_map_urb_to_usbip() and usbip_map_usbip_to_urb() are used
375 * by usbip_pack_cmd_submit() and usbip_pack_ret_submit() to map
379 struct urb_to_usbip_flags {
384 #define NUM_USBIP_FLAGS 17
386 static const struct urb_to_usbip_flags flag_map[NUM_USBIP_FLAGS] = {
387 {URB_SHORT_NOT_OK, USBIP_URB_SHORT_NOT_OK},
388 {URB_ISO_ASAP, USBIP_URB_ISO_ASAP},
389 {URB_NO_TRANSFER_DMA_MAP, USBIP_URB_NO_TRANSFER_DMA_MAP},
390 {URB_ZERO_PACKET, USBIP_URB_ZERO_PACKET},
391 {URB_NO_INTERRUPT, USBIP_URB_NO_INTERRUPT},
392 {URB_FREE_BUFFER, USBIP_URB_FREE_BUFFER},
393 {URB_DIR_IN, USBIP_URB_DIR_IN},
394 {URB_DIR_OUT, USBIP_URB_DIR_OUT},
395 {URB_DIR_MASK, USBIP_URB_DIR_MASK},
396 {URB_DMA_MAP_SINGLE, USBIP_URB_DMA_MAP_SINGLE},
397 {URB_DMA_MAP_PAGE, USBIP_URB_DMA_MAP_PAGE},
398 {URB_DMA_MAP_SG, USBIP_URB_DMA_MAP_SG},
399 {URB_MAP_LOCAL, USBIP_URB_MAP_LOCAL},
400 {URB_SETUP_MAP_SINGLE, USBIP_URB_SETUP_MAP_SINGLE},
401 {URB_SETUP_MAP_LOCAL, USBIP_URB_SETUP_MAP_LOCAL},
402 {URB_DMA_SG_COMBINED, USBIP_URB_DMA_SG_COMBINED},
403 {URB_ALIGNED_TEMP_BUFFER, USBIP_URB_ALIGNED_TEMP_BUFFER},
406 static unsigned int urb_to_usbip(unsigned int flags)
408 unsigned int map_flags = 0;
411 for (loop = 0; loop < NUM_USBIP_FLAGS; loop++) {
412 if (flags & flag_map[loop].urb_flag)
413 map_flags |= flag_map[loop].usbip_flag;
419 static unsigned int usbip_to_urb(unsigned int flags)
421 unsigned int map_flags = 0;
424 for (loop = 0; loop < NUM_USBIP_FLAGS; loop++) {
425 if (flags & flag_map[loop].usbip_flag)
426 map_flags |= flag_map[loop].urb_flag;
432 static void usbip_pack_cmd_submit(struct usbip_header *pdu, struct urb *urb,
435 struct usbip_header_cmd_submit *spdu = &pdu->u.cmd_submit;
438 * Some members are not still implemented in usbip. I hope this issue
439 * will be discussed when usbip is ported to other operating systems.
442 /* map after tweaking the urb flags */
443 spdu->transfer_flags = urb_to_usbip(tweak_transfer_flags(urb->transfer_flags));
444 spdu->transfer_buffer_length = urb->transfer_buffer_length;
445 spdu->start_frame = urb->start_frame;
446 spdu->number_of_packets = urb->number_of_packets;
447 spdu->interval = urb->interval;
449 urb->transfer_flags = usbip_to_urb(spdu->transfer_flags);
450 urb->transfer_buffer_length = spdu->transfer_buffer_length;
451 urb->start_frame = spdu->start_frame;
452 urb->number_of_packets = spdu->number_of_packets;
453 urb->interval = spdu->interval;
457 static void usbip_pack_ret_submit(struct usbip_header *pdu, struct urb *urb,
460 struct usbip_header_ret_submit *rpdu = &pdu->u.ret_submit;
463 rpdu->status = urb->status;
464 rpdu->actual_length = urb->actual_length;
465 rpdu->start_frame = urb->start_frame;
466 rpdu->number_of_packets = urb->number_of_packets;
467 rpdu->error_count = urb->error_count;
469 urb->status = rpdu->status;
470 urb->actual_length = rpdu->actual_length;
471 urb->start_frame = rpdu->start_frame;
472 urb->number_of_packets = rpdu->number_of_packets;
473 urb->error_count = rpdu->error_count;
477 void usbip_pack_pdu(struct usbip_header *pdu, struct urb *urb, int cmd,
481 case USBIP_CMD_SUBMIT:
482 usbip_pack_cmd_submit(pdu, urb, pack);
484 case USBIP_RET_SUBMIT:
485 usbip_pack_ret_submit(pdu, urb, pack);
489 pr_err("unknown command\n");
493 EXPORT_SYMBOL_GPL(usbip_pack_pdu);
495 static void correct_endian_basic(struct usbip_header_basic *base, int send)
498 base->command = cpu_to_be32(base->command);
499 base->seqnum = cpu_to_be32(base->seqnum);
500 base->devid = cpu_to_be32(base->devid);
501 base->direction = cpu_to_be32(base->direction);
502 base->ep = cpu_to_be32(base->ep);
504 base->command = be32_to_cpu(base->command);
505 base->seqnum = be32_to_cpu(base->seqnum);
506 base->devid = be32_to_cpu(base->devid);
507 base->direction = be32_to_cpu(base->direction);
508 base->ep = be32_to_cpu(base->ep);
512 static void correct_endian_cmd_submit(struct usbip_header_cmd_submit *pdu,
516 pdu->transfer_flags = cpu_to_be32(pdu->transfer_flags);
518 cpu_to_be32s(&pdu->transfer_buffer_length);
519 cpu_to_be32s(&pdu->start_frame);
520 cpu_to_be32s(&pdu->number_of_packets);
521 cpu_to_be32s(&pdu->interval);
523 pdu->transfer_flags = be32_to_cpu(pdu->transfer_flags);
525 be32_to_cpus(&pdu->transfer_buffer_length);
526 be32_to_cpus(&pdu->start_frame);
527 be32_to_cpus(&pdu->number_of_packets);
528 be32_to_cpus(&pdu->interval);
532 static void correct_endian_ret_submit(struct usbip_header_ret_submit *pdu,
536 cpu_to_be32s(&pdu->status);
537 cpu_to_be32s(&pdu->actual_length);
538 cpu_to_be32s(&pdu->start_frame);
539 cpu_to_be32s(&pdu->number_of_packets);
540 cpu_to_be32s(&pdu->error_count);
542 be32_to_cpus(&pdu->status);
543 be32_to_cpus(&pdu->actual_length);
544 be32_to_cpus(&pdu->start_frame);
545 be32_to_cpus(&pdu->number_of_packets);
546 be32_to_cpus(&pdu->error_count);
550 static void correct_endian_cmd_unlink(struct usbip_header_cmd_unlink *pdu,
554 pdu->seqnum = cpu_to_be32(pdu->seqnum);
556 pdu->seqnum = be32_to_cpu(pdu->seqnum);
559 static void correct_endian_ret_unlink(struct usbip_header_ret_unlink *pdu,
563 cpu_to_be32s(&pdu->status);
565 be32_to_cpus(&pdu->status);
568 void usbip_header_correct_endian(struct usbip_header *pdu, int send)
573 cmd = pdu->base.command;
575 correct_endian_basic(&pdu->base, send);
578 cmd = pdu->base.command;
581 case USBIP_CMD_SUBMIT:
582 correct_endian_cmd_submit(&pdu->u.cmd_submit, send);
584 case USBIP_RET_SUBMIT:
585 correct_endian_ret_submit(&pdu->u.ret_submit, send);
587 case USBIP_CMD_UNLINK:
588 correct_endian_cmd_unlink(&pdu->u.cmd_unlink, send);
590 case USBIP_RET_UNLINK:
591 correct_endian_ret_unlink(&pdu->u.ret_unlink, send);
595 pr_err("unknown command\n");
599 EXPORT_SYMBOL_GPL(usbip_header_correct_endian);
601 static void usbip_iso_packet_correct_endian(
602 struct usbip_iso_packet_descriptor *iso, int send)
604 /* does not need all members. but copy all simply. */
606 iso->offset = cpu_to_be32(iso->offset);
607 iso->length = cpu_to_be32(iso->length);
608 iso->status = cpu_to_be32(iso->status);
609 iso->actual_length = cpu_to_be32(iso->actual_length);
611 iso->offset = be32_to_cpu(iso->offset);
612 iso->length = be32_to_cpu(iso->length);
613 iso->status = be32_to_cpu(iso->status);
614 iso->actual_length = be32_to_cpu(iso->actual_length);
618 static void usbip_pack_iso(struct usbip_iso_packet_descriptor *iso,
619 struct usb_iso_packet_descriptor *uiso, int pack)
622 iso->offset = uiso->offset;
623 iso->length = uiso->length;
624 iso->status = uiso->status;
625 iso->actual_length = uiso->actual_length;
627 uiso->offset = iso->offset;
628 uiso->length = iso->length;
629 uiso->status = iso->status;
630 uiso->actual_length = iso->actual_length;
634 /* must free buffer */
635 struct usbip_iso_packet_descriptor*
636 usbip_alloc_iso_desc_pdu(struct urb *urb, ssize_t *bufflen)
638 struct usbip_iso_packet_descriptor *iso;
639 int np = urb->number_of_packets;
640 ssize_t size = np * sizeof(*iso);
643 iso = kzalloc(size, GFP_KERNEL);
647 for (i = 0; i < np; i++) {
648 usbip_pack_iso(&iso[i], &urb->iso_frame_desc[i], 1);
649 usbip_iso_packet_correct_endian(&iso[i], 1);
656 EXPORT_SYMBOL_GPL(usbip_alloc_iso_desc_pdu);
658 /* some members of urb must be substituted before. */
659 int usbip_recv_iso(struct usbip_device *ud, struct urb *urb)
662 struct usbip_iso_packet_descriptor *iso;
663 int np = urb->number_of_packets;
664 int size = np * sizeof(*iso);
667 int total_length = 0;
669 if (!usb_pipeisoc(urb->pipe))
672 /* my Bluetooth dongle gets ISO URBs which are np = 0 */
676 buff = kzalloc(size, GFP_KERNEL);
680 ret = usbip_recv(ud->tcp_socket, buff, size);
682 dev_err(&urb->dev->dev, "recv iso_frame_descriptor, %d\n",
686 if (ud->side == USBIP_STUB || ud->side == USBIP_VUDC)
687 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
689 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
694 iso = (struct usbip_iso_packet_descriptor *) buff;
695 for (i = 0; i < np; i++) {
696 usbip_iso_packet_correct_endian(&iso[i], 0);
697 usbip_pack_iso(&iso[i], &urb->iso_frame_desc[i], 0);
698 total_length += urb->iso_frame_desc[i].actual_length;
703 if (total_length != urb->actual_length) {
704 dev_err(&urb->dev->dev,
705 "total length of iso packets %d not equal to actual length of buffer %d\n",
706 total_length, urb->actual_length);
708 if (ud->side == USBIP_STUB || ud->side == USBIP_VUDC)
709 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
711 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
718 EXPORT_SYMBOL_GPL(usbip_recv_iso);
721 * This functions restores the padding which was removed for optimizing
722 * the bandwidth during transfer over tcp/ip
724 * buffer and iso packets need to be stored and be in propeper endian in urb
725 * before calling this function
727 void usbip_pad_iso(struct usbip_device *ud, struct urb *urb)
729 int np = urb->number_of_packets;
731 int actualoffset = urb->actual_length;
733 if (!usb_pipeisoc(urb->pipe))
736 /* if no packets or length of data is 0, then nothing to unpack */
737 if (np == 0 || urb->actual_length == 0)
741 * if actual_length is transfer_buffer_length then no padding is
744 if (urb->actual_length == urb->transfer_buffer_length)
748 * loop over all packets from last to first (to prevent overwriting
749 * memory when padding) and move them into the proper place
751 for (i = np-1; i > 0; i--) {
752 actualoffset -= urb->iso_frame_desc[i].actual_length;
753 memmove(urb->transfer_buffer + urb->iso_frame_desc[i].offset,
754 urb->transfer_buffer + actualoffset,
755 urb->iso_frame_desc[i].actual_length);
758 EXPORT_SYMBOL_GPL(usbip_pad_iso);
760 /* some members of urb must be substituted before. */
761 int usbip_recv_xbuff(struct usbip_device *ud, struct urb *urb)
763 struct scatterlist *sg;
770 if (ud->side == USBIP_STUB || ud->side == USBIP_VUDC) {
771 /* the direction of urb must be OUT. */
772 if (usb_pipein(urb->pipe))
775 size = urb->transfer_buffer_length;
777 /* the direction of urb must be IN. */
778 if (usb_pipeout(urb->pipe))
781 size = urb->actual_length;
784 /* no need to recv xbuff */
788 if (size > urb->transfer_buffer_length)
789 /* should not happen, probably malicious packet */
794 for_each_sg(urb->sg, sg, urb->num_sgs, i) {
797 if (copy < sg->length)
800 recv_size = sg->length;
802 recv = usbip_recv(ud->tcp_socket, sg_virt(sg),
805 if (recv != recv_size)
818 ret = usbip_recv(ud->tcp_socket, urb->transfer_buffer, size);
826 dev_err(&urb->dev->dev, "recv xbuf, %d\n", ret);
827 if (ud->side == USBIP_STUB || ud->side == USBIP_VUDC)
828 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
830 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
834 EXPORT_SYMBOL_GPL(usbip_recv_xbuff);
836 static int __init usbip_core_init(void)
838 return usbip_init_eh();
841 static void __exit usbip_core_exit(void)
847 module_init(usbip_core_init);
848 module_exit(usbip_core_exit);
850 MODULE_AUTHOR(DRIVER_AUTHOR);
851 MODULE_DESCRIPTION(DRIVER_DESC);
852 MODULE_LICENSE("GPL");