]> Pileus Git - ~andy/linux/blob - drivers/staging/usbip/usbip_common.c
Merge branch 'master' into for-next
[~andy/linux] / drivers / staging / usbip / usbip_common.c
1 /*
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
20 #include <asm/byteorder.h>
21 #include <linux/file.h>
22 #include <linux/fs.h>
23 #include <linux/kernel.h>
24 #include <linux/slab.h>
25 #include <linux/stat.h>
26 #include <linux/module.h>
27 #include <linux/moduleparam.h>
28 #include <net/sock.h>
29
30 #include "usbip_common.h"
31
32 #define DRIVER_AUTHOR "Takahiro Hirofuchi <hirofuchi@users.sourceforge.net>"
33 #define DRIVER_DESC "USB/IP Core"
34
35 #ifdef CONFIG_USBIP_DEBUG
36 unsigned long usbip_debug_flag = 0xffffffff;
37 #else
38 unsigned long usbip_debug_flag;
39 #endif
40 EXPORT_SYMBOL_GPL(usbip_debug_flag);
41 module_param(usbip_debug_flag, ulong, S_IRUGO|S_IWUSR);
42 MODULE_PARM_DESC(usbip_debug_flag, "debug flags (defined in usbip_common.h)");
43
44 /* FIXME */
45 struct device_attribute dev_attr_usbip_debug;
46 EXPORT_SYMBOL_GPL(dev_attr_usbip_debug);
47
48 static ssize_t usbip_debug_show(struct device *dev,
49                                 struct device_attribute *attr, char *buf)
50 {
51         return sprintf(buf, "%lx\n", usbip_debug_flag);
52 }
53
54 static ssize_t usbip_debug_store(struct device *dev,
55                                  struct device_attribute *attr, const char *buf,
56                                  size_t count)
57 {
58         sscanf(buf, "%lx", &usbip_debug_flag);
59         return count;
60 }
61 DEVICE_ATTR_RW(usbip_debug);
62
63 static void usbip_dump_buffer(char *buff, int bufflen)
64 {
65         print_hex_dump(KERN_DEBUG, "usbip-core", DUMP_PREFIX_OFFSET, 16, 4,
66                        buff, bufflen, false);
67 }
68
69 static void usbip_dump_pipe(unsigned int p)
70 {
71         unsigned char type = usb_pipetype(p);
72         unsigned char ep   = usb_pipeendpoint(p);
73         unsigned char dev  = usb_pipedevice(p);
74         unsigned char dir  = usb_pipein(p);
75
76         pr_debug("dev(%d) ep(%d) [%s] ", dev, ep, dir ? "IN" : "OUT");
77
78         switch (type) {
79         case PIPE_ISOCHRONOUS:
80                 pr_debug("ISO\n");
81                 break;
82         case PIPE_INTERRUPT:
83                 pr_debug("INT\n");
84                 break;
85         case PIPE_CONTROL:
86                 pr_debug("CTRL\n");
87                 break;
88         case PIPE_BULK:
89                 pr_debug("BULK\n");
90                 break;
91         default:
92                 pr_debug("ERR\n");
93                 break;
94         }
95 }
96
97 static void usbip_dump_usb_device(struct usb_device *udev)
98 {
99         struct device *dev = &udev->dev;
100         int i;
101
102         dev_dbg(dev, "       devnum(%d) devpath(%s) ",
103                 udev->devnum, udev->devpath);
104
105         switch (udev->speed) {
106         case USB_SPEED_HIGH:
107                 pr_debug("SPD_HIGH ");
108                 break;
109         case USB_SPEED_FULL:
110                 pr_debug("SPD_FULL ");
111                 break;
112         case USB_SPEED_LOW:
113                 pr_debug("SPD_LOW ");
114                 break;
115         case USB_SPEED_UNKNOWN:
116                 pr_debug("SPD_UNKNOWN ");
117                 break;
118         default:
119                 pr_debug("SPD_ERROR ");
120                 break;
121         }
122
123         pr_debug("tt %p, ttport %d\n", udev->tt, udev->ttport);
124
125         dev_dbg(dev, "                    ");
126         for (i = 0; i < 16; i++)
127                 pr_debug(" %2u", i);
128         pr_debug("\n");
129
130         dev_dbg(dev, "       toggle0(IN) :");
131         for (i = 0; i < 16; i++)
132                 pr_debug(" %2u", (udev->toggle[0] & (1 << i)) ? 1 : 0);
133         pr_debug("\n");
134
135         dev_dbg(dev, "       toggle1(OUT):");
136         for (i = 0; i < 16; i++)
137                 pr_debug(" %2u", (udev->toggle[1] & (1 << i)) ? 1 : 0);
138         pr_debug("\n");
139
140         dev_dbg(dev, "       epmaxp_in   :");
141         for (i = 0; i < 16; i++) {
142                 if (udev->ep_in[i])
143                         pr_debug(" %2u",
144                             le16_to_cpu(udev->ep_in[i]->desc.wMaxPacketSize));
145         }
146         pr_debug("\n");
147
148         dev_dbg(dev, "       epmaxp_out  :");
149         for (i = 0; i < 16; i++) {
150                 if (udev->ep_out[i])
151                         pr_debug(" %2u",
152                             le16_to_cpu(udev->ep_out[i]->desc.wMaxPacketSize));
153         }
154         pr_debug("\n");
155
156         dev_dbg(dev, "parent %p, bus %p\n", udev->parent, udev->bus);
157
158         dev_dbg(dev, "descriptor %p, config %p, actconfig %p, "
159                 "rawdescriptors %p\n", &udev->descriptor, udev->config,
160                 udev->actconfig, udev->rawdescriptors);
161
162         dev_dbg(dev, "have_langid %d, string_langid %d\n",
163                 udev->have_langid, udev->string_langid);
164
165         dev_dbg(dev, "maxchild %d\n", udev->maxchild);
166 }
167
168 static void usbip_dump_request_type(__u8 rt)
169 {
170         switch (rt & USB_RECIP_MASK) {
171         case USB_RECIP_DEVICE:
172                 pr_debug("DEVICE");
173                 break;
174         case USB_RECIP_INTERFACE:
175                 pr_debug("INTERF");
176                 break;
177         case USB_RECIP_ENDPOINT:
178                 pr_debug("ENDPOI");
179                 break;
180         case USB_RECIP_OTHER:
181                 pr_debug("OTHER ");
182                 break;
183         default:
184                 pr_debug("------");
185                 break;
186         }
187 }
188
189 static void usbip_dump_usb_ctrlrequest(struct usb_ctrlrequest *cmd)
190 {
191         if (!cmd) {
192                 pr_debug("       : null pointer\n");
193                 return;
194         }
195
196         pr_debug("       ");
197         pr_debug("bRequestType(%02X) bRequest(%02X) wValue(%04X) wIndex(%04X) "
198                  "wLength(%04X) ", cmd->bRequestType, cmd->bRequest,
199                  cmd->wValue, cmd->wIndex, cmd->wLength);
200         pr_debug("\n       ");
201
202         if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) {
203                 pr_debug("STANDARD ");
204                 switch (cmd->bRequest) {
205                 case USB_REQ_GET_STATUS:
206                         pr_debug("GET_STATUS\n");
207                         break;
208                 case USB_REQ_CLEAR_FEATURE:
209                         pr_debug("CLEAR_FEAT\n");
210                         break;
211                 case USB_REQ_SET_FEATURE:
212                         pr_debug("SET_FEAT\n");
213                         break;
214                 case USB_REQ_SET_ADDRESS:
215                         pr_debug("SET_ADDRRS\n");
216                         break;
217                 case USB_REQ_GET_DESCRIPTOR:
218                         pr_debug("GET_DESCRI\n");
219                         break;
220                 case USB_REQ_SET_DESCRIPTOR:
221                         pr_debug("SET_DESCRI\n");
222                         break;
223                 case USB_REQ_GET_CONFIGURATION:
224                         pr_debug("GET_CONFIG\n");
225                         break;
226                 case USB_REQ_SET_CONFIGURATION:
227                         pr_debug("SET_CONFIG\n");
228                         break;
229                 case USB_REQ_GET_INTERFACE:
230                         pr_debug("GET_INTERF\n");
231                         break;
232                 case USB_REQ_SET_INTERFACE:
233                         pr_debug("SET_INTERF\n");
234                         break;
235                 case USB_REQ_SYNCH_FRAME:
236                         pr_debug("SYNC_FRAME\n");
237                         break;
238                 default:
239                         pr_debug("REQ(%02X)\n", cmd->bRequest);
240                         break;
241                 }
242                 usbip_dump_request_type(cmd->bRequestType);
243         } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_CLASS) {
244                 pr_debug("CLASS\n");
245         } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_VENDOR) {
246                 pr_debug("VENDOR\n");
247         } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_RESERVED) {
248                 pr_debug("RESERVED\n");
249         }
250 }
251
252 void usbip_dump_urb(struct urb *urb)
253 {
254         struct device *dev;
255
256         if (!urb) {
257                 pr_debug("urb: null pointer!!\n");
258                 return;
259         }
260
261         if (!urb->dev) {
262                 pr_debug("urb->dev: null pointer!!\n");
263                 return;
264         }
265
266         dev = &urb->dev->dev;
267
268         dev_dbg(dev, "   urb                   :%p\n", urb);
269         dev_dbg(dev, "   dev                   :%p\n", urb->dev);
270
271         usbip_dump_usb_device(urb->dev);
272
273         dev_dbg(dev, "   pipe                  :%08x ", urb->pipe);
274
275         usbip_dump_pipe(urb->pipe);
276
277         dev_dbg(dev, "   status                :%d\n", urb->status);
278         dev_dbg(dev, "   transfer_flags        :%08X\n", urb->transfer_flags);
279         dev_dbg(dev, "   transfer_buffer       :%p\n", urb->transfer_buffer);
280         dev_dbg(dev, "   transfer_buffer_length:%d\n",
281                                                 urb->transfer_buffer_length);
282         dev_dbg(dev, "   actual_length         :%d\n", urb->actual_length);
283         dev_dbg(dev, "   setup_packet          :%p\n", urb->setup_packet);
284
285         if (urb->setup_packet && usb_pipetype(urb->pipe) == PIPE_CONTROL)
286                 usbip_dump_usb_ctrlrequest(
287                         (struct usb_ctrlrequest *)urb->setup_packet);
288
289         dev_dbg(dev, "   start_frame           :%d\n", urb->start_frame);
290         dev_dbg(dev, "   number_of_packets     :%d\n", urb->number_of_packets);
291         dev_dbg(dev, "   interval              :%d\n", urb->interval);
292         dev_dbg(dev, "   error_count           :%d\n", urb->error_count);
293         dev_dbg(dev, "   context               :%p\n", urb->context);
294         dev_dbg(dev, "   complete              :%p\n", urb->complete);
295 }
296 EXPORT_SYMBOL_GPL(usbip_dump_urb);
297
298 void usbip_dump_header(struct usbip_header *pdu)
299 {
300         pr_debug("BASE: cmd %u seq %u devid %u dir %u ep %u\n",
301                  pdu->base.command,
302                  pdu->base.seqnum,
303                  pdu->base.devid,
304                  pdu->base.direction,
305                  pdu->base.ep);
306
307         switch (pdu->base.command) {
308         case USBIP_CMD_SUBMIT:
309                 pr_debug("USBIP_CMD_SUBMIT: "
310                          "x_flags %u x_len %u sf %u #p %d iv %d\n",
311                          pdu->u.cmd_submit.transfer_flags,
312                          pdu->u.cmd_submit.transfer_buffer_length,
313                          pdu->u.cmd_submit.start_frame,
314                          pdu->u.cmd_submit.number_of_packets,
315                          pdu->u.cmd_submit.interval);
316                 break;
317         case USBIP_CMD_UNLINK:
318                 pr_debug("USBIP_CMD_UNLINK: seq %u\n",
319                          pdu->u.cmd_unlink.seqnum);
320                 break;
321         case USBIP_RET_SUBMIT:
322                 pr_debug("USBIP_RET_SUBMIT: st %d al %u sf %d #p %d ec %d\n",
323                          pdu->u.ret_submit.status,
324                          pdu->u.ret_submit.actual_length,
325                          pdu->u.ret_submit.start_frame,
326                          pdu->u.ret_submit.number_of_packets,
327                          pdu->u.ret_submit.error_count);
328                 break;
329         case USBIP_RET_UNLINK:
330                 pr_debug("USBIP_RET_UNLINK: status %d\n",
331                          pdu->u.ret_unlink.status);
332                 break;
333         default:
334                 /* NOT REACHED */
335                 pr_err("unknown command\n");
336                 break;
337         }
338 }
339 EXPORT_SYMBOL_GPL(usbip_dump_header);
340
341 /* Receive data over TCP/IP. */
342 int usbip_recv(struct socket *sock, void *buf, int size)
343 {
344         int result;
345         struct msghdr msg;
346         struct kvec iov;
347         int total = 0;
348
349         /* for blocks of if (usbip_dbg_flag_xmit) */
350         char *bp = buf;
351         int osize = size;
352
353         usbip_dbg_xmit("enter\n");
354
355         if (!sock || !buf || !size) {
356                 pr_err("invalid arg, sock %p buff %p size %d\n", sock, buf,
357                        size);
358                 return -EINVAL;
359         }
360
361         do {
362                 sock->sk->sk_allocation = GFP_NOIO;
363                 iov.iov_base    = buf;
364                 iov.iov_len     = size;
365                 msg.msg_name    = NULL;
366                 msg.msg_namelen = 0;
367                 msg.msg_control = NULL;
368                 msg.msg_controllen = 0;
369                 msg.msg_flags      = MSG_NOSIGNAL;
370
371                 result = kernel_recvmsg(sock, &msg, &iov, 1, size, MSG_WAITALL);
372                 if (result <= 0) {
373                         pr_debug("receive sock %p buf %p size %u ret %d total %d\n",
374                                  sock, buf, size, result, total);
375                         goto err;
376                 }
377
378                 size -= result;
379                 buf += result;
380                 total += result;
381         } while (size > 0);
382
383         if (usbip_dbg_flag_xmit) {
384                 if (!in_interrupt())
385                         pr_debug("%-10s:", current->comm);
386                 else
387                         pr_debug("interrupt  :");
388
389                 pr_debug("receiving....\n");
390                 usbip_dump_buffer(bp, osize);
391                 pr_debug("received, osize %d ret %d size %d total %d\n",
392                          osize, result, size, total);
393         }
394
395         return total;
396
397 err:
398         return result;
399 }
400 EXPORT_SYMBOL_GPL(usbip_recv);
401
402 struct socket *sockfd_to_socket(unsigned int sockfd)
403 {
404         struct socket *socket;
405         struct file *file;
406         struct inode *inode;
407
408         file = fget(sockfd);
409         if (!file) {
410                 pr_err("invalid sockfd\n");
411                 return NULL;
412         }
413
414         inode = file_inode(file);
415
416         if (!inode || !S_ISSOCK(inode->i_mode)) {
417                 fput(file);
418                 return NULL;
419         }
420
421         socket = SOCKET_I(inode);
422
423         return socket;
424 }
425 EXPORT_SYMBOL_GPL(sockfd_to_socket);
426
427 /* there may be more cases to tweak the flags. */
428 static unsigned int tweak_transfer_flags(unsigned int flags)
429 {
430         flags &= ~URB_NO_TRANSFER_DMA_MAP;
431         return flags;
432 }
433
434 static void usbip_pack_cmd_submit(struct usbip_header *pdu, struct urb *urb,
435                                   int pack)
436 {
437         struct usbip_header_cmd_submit *spdu = &pdu->u.cmd_submit;
438
439         /*
440          * Some members are not still implemented in usbip. I hope this issue
441          * will be discussed when usbip is ported to other operating systems.
442          */
443         if (pack) {
444                 spdu->transfer_flags =
445                         tweak_transfer_flags(urb->transfer_flags);
446                 spdu->transfer_buffer_length    = urb->transfer_buffer_length;
447                 spdu->start_frame               = urb->start_frame;
448                 spdu->number_of_packets         = urb->number_of_packets;
449                 spdu->interval                  = urb->interval;
450         } else  {
451                 urb->transfer_flags         = spdu->transfer_flags;
452                 urb->transfer_buffer_length = spdu->transfer_buffer_length;
453                 urb->start_frame            = spdu->start_frame;
454                 urb->number_of_packets      = spdu->number_of_packets;
455                 urb->interval               = spdu->interval;
456         }
457 }
458
459 static void usbip_pack_ret_submit(struct usbip_header *pdu, struct urb *urb,
460                                   int pack)
461 {
462         struct usbip_header_ret_submit *rpdu = &pdu->u.ret_submit;
463
464         if (pack) {
465                 rpdu->status            = urb->status;
466                 rpdu->actual_length     = urb->actual_length;
467                 rpdu->start_frame       = urb->start_frame;
468                 rpdu->number_of_packets = urb->number_of_packets;
469                 rpdu->error_count       = urb->error_count;
470         } else {
471                 urb->status             = rpdu->status;
472                 urb->actual_length      = rpdu->actual_length;
473                 urb->start_frame        = rpdu->start_frame;
474                 urb->number_of_packets = rpdu->number_of_packets;
475                 urb->error_count        = rpdu->error_count;
476         }
477 }
478
479 void usbip_pack_pdu(struct usbip_header *pdu, struct urb *urb, int cmd,
480                     int pack)
481 {
482         switch (cmd) {
483         case USBIP_CMD_SUBMIT:
484                 usbip_pack_cmd_submit(pdu, urb, pack);
485                 break;
486         case USBIP_RET_SUBMIT:
487                 usbip_pack_ret_submit(pdu, urb, pack);
488                 break;
489         default:
490                 /* NOT REACHED */
491                 pr_err("unknown command\n");
492                 break;
493         }
494 }
495 EXPORT_SYMBOL_GPL(usbip_pack_pdu);
496
497 static void correct_endian_basic(struct usbip_header_basic *base, int send)
498 {
499         if (send) {
500                 base->command   = cpu_to_be32(base->command);
501                 base->seqnum    = cpu_to_be32(base->seqnum);
502                 base->devid     = cpu_to_be32(base->devid);
503                 base->direction = cpu_to_be32(base->direction);
504                 base->ep        = cpu_to_be32(base->ep);
505         } else {
506                 base->command   = be32_to_cpu(base->command);
507                 base->seqnum    = be32_to_cpu(base->seqnum);
508                 base->devid     = be32_to_cpu(base->devid);
509                 base->direction = be32_to_cpu(base->direction);
510                 base->ep        = be32_to_cpu(base->ep);
511         }
512 }
513
514 static void correct_endian_cmd_submit(struct usbip_header_cmd_submit *pdu,
515                                       int send)
516 {
517         if (send) {
518                 pdu->transfer_flags = cpu_to_be32(pdu->transfer_flags);
519
520                 cpu_to_be32s(&pdu->transfer_buffer_length);
521                 cpu_to_be32s(&pdu->start_frame);
522                 cpu_to_be32s(&pdu->number_of_packets);
523                 cpu_to_be32s(&pdu->interval);
524         } else {
525                 pdu->transfer_flags = be32_to_cpu(pdu->transfer_flags);
526
527                 be32_to_cpus(&pdu->transfer_buffer_length);
528                 be32_to_cpus(&pdu->start_frame);
529                 be32_to_cpus(&pdu->number_of_packets);
530                 be32_to_cpus(&pdu->interval);
531         }
532 }
533
534 static void correct_endian_ret_submit(struct usbip_header_ret_submit *pdu,
535                                       int send)
536 {
537         if (send) {
538                 cpu_to_be32s(&pdu->status);
539                 cpu_to_be32s(&pdu->actual_length);
540                 cpu_to_be32s(&pdu->start_frame);
541                 cpu_to_be32s(&pdu->number_of_packets);
542                 cpu_to_be32s(&pdu->error_count);
543         } else {
544                 be32_to_cpus(&pdu->status);
545                 be32_to_cpus(&pdu->actual_length);
546                 be32_to_cpus(&pdu->start_frame);
547                 be32_to_cpus(&pdu->number_of_packets);
548                 be32_to_cpus(&pdu->error_count);
549         }
550 }
551
552 static void correct_endian_cmd_unlink(struct usbip_header_cmd_unlink *pdu,
553                                       int send)
554 {
555         if (send)
556                 pdu->seqnum = cpu_to_be32(pdu->seqnum);
557         else
558                 pdu->seqnum = be32_to_cpu(pdu->seqnum);
559 }
560
561 static void correct_endian_ret_unlink(struct usbip_header_ret_unlink *pdu,
562                                       int send)
563 {
564         if (send)
565                 cpu_to_be32s(&pdu->status);
566         else
567                 be32_to_cpus(&pdu->status);
568 }
569
570 void usbip_header_correct_endian(struct usbip_header *pdu, int send)
571 {
572         __u32 cmd = 0;
573
574         if (send)
575                 cmd = pdu->base.command;
576
577         correct_endian_basic(&pdu->base, send);
578
579         if (!send)
580                 cmd = pdu->base.command;
581
582         switch (cmd) {
583         case USBIP_CMD_SUBMIT:
584                 correct_endian_cmd_submit(&pdu->u.cmd_submit, send);
585                 break;
586         case USBIP_RET_SUBMIT:
587                 correct_endian_ret_submit(&pdu->u.ret_submit, send);
588                 break;
589         case USBIP_CMD_UNLINK:
590                 correct_endian_cmd_unlink(&pdu->u.cmd_unlink, send);
591                 break;
592         case USBIP_RET_UNLINK:
593                 correct_endian_ret_unlink(&pdu->u.ret_unlink, send);
594                 break;
595         default:
596                 /* NOT REACHED */
597                 pr_err("unknown command\n");
598                 break;
599         }
600 }
601 EXPORT_SYMBOL_GPL(usbip_header_correct_endian);
602
603 static void usbip_iso_packet_correct_endian(
604                 struct usbip_iso_packet_descriptor *iso, int send)
605 {
606         /* does not need all members. but copy all simply. */
607         if (send) {
608                 iso->offset     = cpu_to_be32(iso->offset);
609                 iso->length     = cpu_to_be32(iso->length);
610                 iso->status     = cpu_to_be32(iso->status);
611                 iso->actual_length = cpu_to_be32(iso->actual_length);
612         } else {
613                 iso->offset     = be32_to_cpu(iso->offset);
614                 iso->length     = be32_to_cpu(iso->length);
615                 iso->status     = be32_to_cpu(iso->status);
616                 iso->actual_length = be32_to_cpu(iso->actual_length);
617         }
618 }
619
620 static void usbip_pack_iso(struct usbip_iso_packet_descriptor *iso,
621                            struct usb_iso_packet_descriptor *uiso, int pack)
622 {
623         if (pack) {
624                 iso->offset             = uiso->offset;
625                 iso->length             = uiso->length;
626                 iso->status             = uiso->status;
627                 iso->actual_length      = uiso->actual_length;
628         } else {
629                 uiso->offset            = iso->offset;
630                 uiso->length            = iso->length;
631                 uiso->status            = iso->status;
632                 uiso->actual_length     = iso->actual_length;
633         }
634 }
635
636 /* must free buffer */
637 struct usbip_iso_packet_descriptor*
638 usbip_alloc_iso_desc_pdu(struct urb *urb, ssize_t *bufflen)
639 {
640         struct usbip_iso_packet_descriptor *iso;
641         int np = urb->number_of_packets;
642         ssize_t size = np * sizeof(*iso);
643         int i;
644
645         iso = kzalloc(size, GFP_KERNEL);
646         if (!iso)
647                 return NULL;
648
649         for (i = 0; i < np; i++) {
650                 usbip_pack_iso(&iso[i], &urb->iso_frame_desc[i], 1);
651                 usbip_iso_packet_correct_endian(&iso[i], 1);
652         }
653
654         *bufflen = size;
655
656         return iso;
657 }
658 EXPORT_SYMBOL_GPL(usbip_alloc_iso_desc_pdu);
659
660 /* some members of urb must be substituted before. */
661 int usbip_recv_iso(struct usbip_device *ud, struct urb *urb)
662 {
663         void *buff;
664         struct usbip_iso_packet_descriptor *iso;
665         int np = urb->number_of_packets;
666         int size = np * sizeof(*iso);
667         int i;
668         int ret;
669         int total_length = 0;
670
671         if (!usb_pipeisoc(urb->pipe))
672                 return 0;
673
674         /* my Bluetooth dongle gets ISO URBs which are np = 0 */
675         if (np == 0)
676                 return 0;
677
678         buff = kzalloc(size, GFP_KERNEL);
679         if (!buff)
680                 return -ENOMEM;
681
682         ret = usbip_recv(ud->tcp_socket, buff, size);
683         if (ret != size) {
684                 dev_err(&urb->dev->dev, "recv iso_frame_descriptor, %d\n",
685                         ret);
686                 kfree(buff);
687
688                 if (ud->side == USBIP_STUB)
689                         usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
690                 else
691                         usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
692
693                 return -EPIPE;
694         }
695
696         iso = (struct usbip_iso_packet_descriptor *) buff;
697         for (i = 0; i < np; i++) {
698                 usbip_iso_packet_correct_endian(&iso[i], 0);
699                 usbip_pack_iso(&iso[i], &urb->iso_frame_desc[i], 0);
700                 total_length += urb->iso_frame_desc[i].actual_length;
701         }
702
703         kfree(buff);
704
705         if (total_length != urb->actual_length) {
706                 dev_err(&urb->dev->dev,
707                         "total length of iso packets %d not equal to actual "
708                         "length of buffer %d\n",
709                         total_length, urb->actual_length);
710
711                 if (ud->side == USBIP_STUB)
712                         usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
713                 else
714                         usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
715
716                 return -EPIPE;
717         }
718
719         return ret;
720 }
721 EXPORT_SYMBOL_GPL(usbip_recv_iso);
722
723 /*
724  * This functions restores the padding which was removed for optimizing
725  * the bandwidth during transfer over tcp/ip
726  *
727  * buffer and iso packets need to be stored and be in propeper endian in urb
728  * before calling this function
729  */
730 void usbip_pad_iso(struct usbip_device *ud, struct urb *urb)
731 {
732         int np = urb->number_of_packets;
733         int i;
734         int actualoffset = urb->actual_length;
735
736         if (!usb_pipeisoc(urb->pipe))
737                 return;
738
739         /* if no packets or length of data is 0, then nothing to unpack */
740         if (np == 0 || urb->actual_length == 0)
741                 return;
742
743         /*
744          * if actual_length is transfer_buffer_length then no padding is
745          * present.
746          */
747         if (urb->actual_length == urb->transfer_buffer_length)
748                 return;
749
750         /*
751          * loop over all packets from last to first (to prevent overwritting
752          * memory when padding) and move them into the proper place
753          */
754         for (i = np-1; i > 0; i--) {
755                 actualoffset -= urb->iso_frame_desc[i].actual_length;
756                 memmove(urb->transfer_buffer + urb->iso_frame_desc[i].offset,
757                         urb->transfer_buffer + actualoffset,
758                         urb->iso_frame_desc[i].actual_length);
759         }
760 }
761 EXPORT_SYMBOL_GPL(usbip_pad_iso);
762
763 /* some members of urb must be substituted before. */
764 int usbip_recv_xbuff(struct usbip_device *ud, struct urb *urb)
765 {
766         int ret;
767         int size;
768
769         if (ud->side == USBIP_STUB) {
770                 /* the direction of urb must be OUT. */
771                 if (usb_pipein(urb->pipe))
772                         return 0;
773
774                 size = urb->transfer_buffer_length;
775         } else {
776                 /* the direction of urb must be IN. */
777                 if (usb_pipeout(urb->pipe))
778                         return 0;
779
780                 size = urb->actual_length;
781         }
782
783         /* no need to recv xbuff */
784         if (!(size > 0))
785                 return 0;
786
787         ret = usbip_recv(ud->tcp_socket, urb->transfer_buffer, size);
788         if (ret != size) {
789                 dev_err(&urb->dev->dev, "recv xbuf, %d\n", ret);
790                 if (ud->side == USBIP_STUB) {
791                         usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
792                 } else {
793                         usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
794                         return -EPIPE;
795                 }
796         }
797
798         return ret;
799 }
800 EXPORT_SYMBOL_GPL(usbip_recv_xbuff);
801
802 static int __init usbip_core_init(void)
803 {
804         pr_info(DRIVER_DESC " v" USBIP_VERSION "\n");
805         return 0;
806 }
807
808 static void __exit usbip_core_exit(void)
809 {
810         return;
811 }
812
813 module_init(usbip_core_init);
814 module_exit(usbip_core_exit);
815
816 MODULE_AUTHOR(DRIVER_AUTHOR);
817 MODULE_DESCRIPTION(DRIVER_DESC);
818 MODULE_LICENSE("GPL");
819 MODULE_VERSION(USBIP_VERSION);