Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 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 | |
Arnd Bergmann | 9720b4b | 2011-03-02 00:13:05 +0100 | [diff] [blame] | 20 | #include <linux/kthread.h> |
matt mooney | 7aaacb4 | 2011-05-11 22:33:43 -0700 | [diff] [blame] | 21 | #include <linux/slab.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 23 | #include "usbip_common.h" |
| 24 | #include "vhci.h" |
| 25 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 26 | static void setup_cmd_submit_pdu(struct usbip_header *pdup, struct urb *urb) |
| 27 | { |
| 28 | struct vhci_priv *priv = ((struct vhci_priv *)urb->hcpriv); |
| 29 | struct vhci_device *vdev = priv->vdev; |
| 30 | |
Brian G. Merrell | b8868e4 | 2009-07-21 00:46:13 -0600 | [diff] [blame] | 31 | usbip_dbg_vhci_tx("URB, local devnum %u, remote devid %u\n", |
matt mooney | 5c6499d | 2011-05-06 03:47:53 -0700 | [diff] [blame] | 32 | usb_pipedevice(urb->pipe), vdev->devid); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 33 | |
matt mooney | 5c6499d | 2011-05-06 03:47:53 -0700 | [diff] [blame] | 34 | pdup->base.command = USBIP_CMD_SUBMIT; |
| 35 | pdup->base.seqnum = priv->seqnum; |
| 36 | pdup->base.devid = vdev->devid; |
| 37 | pdup->base.direction = usb_pipein(urb->pipe) ? |
| 38 | USBIP_DIR_IN : USBIP_DIR_OUT; |
| 39 | pdup->base.ep = usb_pipeendpoint(urb->pipe); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 40 | |
| 41 | usbip_pack_pdu(pdup, urb, USBIP_CMD_SUBMIT, 1); |
| 42 | |
| 43 | if (urb->setup_packet) |
| 44 | memcpy(pdup->u.cmd_submit.setup, urb->setup_packet, 8); |
| 45 | } |
| 46 | |
| 47 | static struct vhci_priv *dequeue_from_priv_tx(struct vhci_device *vdev) |
| 48 | { |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 49 | struct vhci_priv *priv, *tmp; |
| 50 | |
Harvey Yang | 50b66b5 | 2013-01-22 13:31:31 +0800 | [diff] [blame] | 51 | spin_lock(&vdev->priv_lock); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 52 | |
| 53 | list_for_each_entry_safe(priv, tmp, &vdev->priv_tx, list) { |
| 54 | list_move_tail(&priv->list, &vdev->priv_rx); |
Harvey Yang | 50b66b5 | 2013-01-22 13:31:31 +0800 | [diff] [blame] | 55 | spin_unlock(&vdev->priv_lock); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 56 | return priv; |
| 57 | } |
| 58 | |
Harvey Yang | 50b66b5 | 2013-01-22 13:31:31 +0800 | [diff] [blame] | 59 | spin_unlock(&vdev->priv_lock); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 60 | |
| 61 | return NULL; |
| 62 | } |
| 63 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 64 | static int vhci_send_cmd_submit(struct vhci_device *vdev) |
| 65 | { |
| 66 | struct vhci_priv *priv = NULL; |
| 67 | |
| 68 | struct msghdr msg; |
| 69 | struct kvec iov[3]; |
| 70 | size_t txsize; |
| 71 | |
| 72 | size_t total_size = 0; |
| 73 | |
| 74 | while ((priv = dequeue_from_priv_tx(vdev)) != NULL) { |
| 75 | int ret; |
| 76 | struct urb *urb = priv->urb; |
| 77 | struct usbip_header pdu_header; |
Bart Westgeest | 36ac9b0 | 2012-10-10 13:34:25 -0400 | [diff] [blame] | 78 | struct usbip_iso_packet_descriptor *iso_buffer = NULL; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 79 | |
| 80 | txsize = 0; |
| 81 | memset(&pdu_header, 0, sizeof(pdu_header)); |
| 82 | memset(&msg, 0, sizeof(msg)); |
| 83 | memset(&iov, 0, sizeof(iov)); |
| 84 | |
Brian G. Merrell | b8868e4 | 2009-07-21 00:46:13 -0600 | [diff] [blame] | 85 | usbip_dbg_vhci_tx("setup txdata urb %p\n", urb); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 86 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 87 | /* 1. setup usbip_header */ |
| 88 | setup_cmd_submit_pdu(&pdu_header, urb); |
| 89 | usbip_header_correct_endian(&pdu_header, 1); |
| 90 | |
| 91 | iov[0].iov_base = &pdu_header; |
| 92 | iov[0].iov_len = sizeof(pdu_header); |
| 93 | txsize += sizeof(pdu_header); |
| 94 | |
| 95 | /* 2. setup transfer buffer */ |
| 96 | if (!usb_pipein(urb->pipe) && urb->transfer_buffer_length > 0) { |
| 97 | iov[1].iov_base = urb->transfer_buffer; |
| 98 | iov[1].iov_len = urb->transfer_buffer_length; |
| 99 | txsize += urb->transfer_buffer_length; |
| 100 | } |
| 101 | |
| 102 | /* 3. setup iso_packet_descriptor */ |
| 103 | if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { |
| 104 | ssize_t len = 0; |
| 105 | |
| 106 | iso_buffer = usbip_alloc_iso_desc_pdu(urb, &len); |
| 107 | if (!iso_buffer) { |
| 108 | usbip_event_add(&vdev->ud, |
| 109 | SDEV_EVENT_ERROR_MALLOC); |
| 110 | return -1; |
| 111 | } |
| 112 | |
| 113 | iov[2].iov_base = iso_buffer; |
| 114 | iov[2].iov_len = len; |
| 115 | txsize += len; |
| 116 | } |
| 117 | |
| 118 | ret = kernel_sendmsg(vdev->ud.tcp_socket, &msg, iov, 3, txsize); |
| 119 | if (ret != txsize) { |
matt mooney | 1a4b6f6 | 2011-05-19 16:47:32 -0700 | [diff] [blame] | 120 | pr_err("sendmsg failed!, ret=%d for %zd\n", ret, |
| 121 | txsize); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 122 | kfree(iso_buffer); |
| 123 | usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_TCP); |
| 124 | return -1; |
| 125 | } |
| 126 | |
| 127 | kfree(iso_buffer); |
Brian G. Merrell | b8868e4 | 2009-07-21 00:46:13 -0600 | [diff] [blame] | 128 | usbip_dbg_vhci_tx("send txdata\n"); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 129 | |
| 130 | total_size += txsize; |
| 131 | } |
| 132 | |
| 133 | return total_size; |
| 134 | } |
| 135 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 136 | static struct vhci_unlink *dequeue_from_unlink_tx(struct vhci_device *vdev) |
| 137 | { |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 138 | struct vhci_unlink *unlink, *tmp; |
| 139 | |
Harvey Yang | 50b66b5 | 2013-01-22 13:31:31 +0800 | [diff] [blame] | 140 | spin_lock(&vdev->priv_lock); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 141 | |
| 142 | list_for_each_entry_safe(unlink, tmp, &vdev->unlink_tx, list) { |
| 143 | list_move_tail(&unlink->list, &vdev->unlink_rx); |
Harvey Yang | 50b66b5 | 2013-01-22 13:31:31 +0800 | [diff] [blame] | 144 | spin_unlock(&vdev->priv_lock); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 145 | return unlink; |
| 146 | } |
| 147 | |
Harvey Yang | 50b66b5 | 2013-01-22 13:31:31 +0800 | [diff] [blame] | 148 | spin_unlock(&vdev->priv_lock); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 149 | |
| 150 | return NULL; |
| 151 | } |
| 152 | |
| 153 | static int vhci_send_cmd_unlink(struct vhci_device *vdev) |
| 154 | { |
| 155 | struct vhci_unlink *unlink = NULL; |
| 156 | |
| 157 | struct msghdr msg; |
| 158 | struct kvec iov[3]; |
| 159 | size_t txsize; |
| 160 | |
| 161 | size_t total_size = 0; |
| 162 | |
| 163 | while ((unlink = dequeue_from_unlink_tx(vdev)) != NULL) { |
| 164 | int ret; |
| 165 | struct usbip_header pdu_header; |
| 166 | |
| 167 | txsize = 0; |
| 168 | memset(&pdu_header, 0, sizeof(pdu_header)); |
| 169 | memset(&msg, 0, sizeof(msg)); |
| 170 | memset(&iov, 0, sizeof(iov)); |
| 171 | |
Michael Sprecher | acc4e41 | 2010-03-17 21:15:44 +0100 | [diff] [blame] | 172 | usbip_dbg_vhci_tx("setup cmd unlink, %lu\n", unlink->seqnum); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 173 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 174 | /* 1. setup usbip_header */ |
| 175 | pdu_header.base.command = USBIP_CMD_UNLINK; |
| 176 | pdu_header.base.seqnum = unlink->seqnum; |
| 177 | pdu_header.base.devid = vdev->devid; |
| 178 | pdu_header.base.ep = 0; |
| 179 | pdu_header.u.cmd_unlink.seqnum = unlink->unlink_seqnum; |
| 180 | |
| 181 | usbip_header_correct_endian(&pdu_header, 1); |
| 182 | |
| 183 | iov[0].iov_base = &pdu_header; |
| 184 | iov[0].iov_len = sizeof(pdu_header); |
| 185 | txsize += sizeof(pdu_header); |
| 186 | |
| 187 | ret = kernel_sendmsg(vdev->ud.tcp_socket, &msg, iov, 1, txsize); |
| 188 | if (ret != txsize) { |
matt mooney | 1a4b6f6 | 2011-05-19 16:47:32 -0700 | [diff] [blame] | 189 | pr_err("sendmsg failed!, ret=%d for %zd\n", ret, |
| 190 | txsize); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 191 | usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_TCP); |
| 192 | return -1; |
| 193 | } |
| 194 | |
Brian G. Merrell | b8868e4 | 2009-07-21 00:46:13 -0600 | [diff] [blame] | 195 | usbip_dbg_vhci_tx("send txdata\n"); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 196 | |
| 197 | total_size += txsize; |
| 198 | } |
| 199 | |
| 200 | return total_size; |
| 201 | } |
| 202 | |
Arnd Bergmann | 9720b4b | 2011-03-02 00:13:05 +0100 | [diff] [blame] | 203 | int vhci_tx_loop(void *data) |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 204 | { |
Arnd Bergmann | 9720b4b | 2011-03-02 00:13:05 +0100 | [diff] [blame] | 205 | struct usbip_device *ud = data; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 206 | struct vhci_device *vdev = container_of(ud, struct vhci_device, ud); |
| 207 | |
Arnd Bergmann | 9720b4b | 2011-03-02 00:13:05 +0100 | [diff] [blame] | 208 | while (!kthread_should_stop()) { |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 209 | if (vhci_send_cmd_submit(vdev) < 0) |
| 210 | break; |
| 211 | |
| 212 | if (vhci_send_cmd_unlink(vdev) < 0) |
| 213 | break; |
| 214 | |
| 215 | wait_event_interruptible(vdev->waitq_tx, |
matt mooney | 5c6499d | 2011-05-06 03:47:53 -0700 | [diff] [blame] | 216 | (!list_empty(&vdev->priv_tx) || |
| 217 | !list_empty(&vdev->unlink_tx) || |
| 218 | kthread_should_stop())); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 219 | |
Brian G. Merrell | b8868e4 | 2009-07-21 00:46:13 -0600 | [diff] [blame] | 220 | usbip_dbg_vhci_tx("pending urbs ?, now wake up\n"); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 221 | } |
Arnd Bergmann | 9720b4b | 2011-03-02 00:13:05 +0100 | [diff] [blame] | 222 | |
| 223 | return 0; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 224 | } |