blob: d07fcb5ee93a8677c20aa63dd5eff6771b14c2f6 [file] [log] [blame]
Takahiro Hirofuchi04679b32008-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
Arnd Bergmann9720b4b2011-03-02 00:13:05 +010020#include <linux/kthread.h>
matt mooney7aaacb42011-05-11 22:33:43 -070021#include <linux/slab.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060023#include "usbip_common.h"
24#include "vhci.h"
25
Max Vozelerb92a5e22011-01-12 15:02:01 +020026/* get URB from transmitted urb queue. caller must hold vdev->priv_lock */
matt mooney5ef6ace2011-05-06 03:47:51 -070027struct urb *pickup_urb_and_free_priv(struct vhci_device *vdev, __u32 seqnum)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060028{
29 struct vhci_priv *priv, *tmp;
30 struct urb *urb = NULL;
31 int status;
32
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060033 list_for_each_entry_safe(priv, tmp, &vdev->priv_rx, list) {
Stefan Reif2663d792013-04-04 16:03:04 +020034 if (priv->seqnum != seqnum)
35 continue;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060036
Stefan Reif2663d792013-04-04 16:03:04 +020037 urb = priv->urb;
38 status = urb->status;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060039
Stefan Reif2663d792013-04-04 16:03:04 +020040 usbip_dbg_vhci_rx("find urb %p vurb %p seqnum %u\n",
41 urb, priv, seqnum);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060042
Stefan Reif2663d792013-04-04 16:03:04 +020043 switch (status) {
44 case -ENOENT:
45 /* fall through */
46 case -ECONNRESET:
47 dev_info(&urb->dev->dev,
48 "urb %p was unlinked %ssynchronuously.\n", urb,
49 status == -ENOENT ? "" : "a");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060050 break;
Stefan Reif2663d792013-04-04 16:03:04 +020051 case -EINPROGRESS:
52 /* no info output */
53 break;
54 default:
55 dev_info(&urb->dev->dev,
56 "urb %p may be in a error, status %d\n", urb,
57 status);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060058 }
Stefan Reif2663d792013-04-04 16:03:04 +020059
60 list_del(&priv->list);
61 kfree(priv);
62 urb->hcpriv = NULL;
63
64 break;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060065 }
66
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060067 return urb;
68}
69
70static void vhci_recv_ret_submit(struct vhci_device *vdev,
matt mooney5ef6ace2011-05-06 03:47:51 -070071 struct usbip_header *pdu)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060072{
73 struct usbip_device *ud = &vdev->ud;
74 struct urb *urb;
75
Max Vozelerb92a5e22011-01-12 15:02:01 +020076 spin_lock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060077 urb = pickup_urb_and_free_priv(vdev, pdu->base.seqnum);
Max Vozelerb92a5e22011-01-12 15:02:01 +020078 spin_unlock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060079
80 if (!urb) {
matt mooney1a4b6f62011-05-19 16:47:32 -070081 pr_err("cannot find a urb of seqnum %u\n", pdu->base.seqnum);
82 pr_info("max seqnum %d\n",
83 atomic_read(&the_controller->seqnum));
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060084 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
85 return;
86 }
87
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060088 /* unpack the pdu to a urb */
89 usbip_pack_pdu(pdu, urb, USBIP_RET_SUBMIT, 0);
90
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060091 /* recv transfer buffer */
92 if (usbip_recv_xbuff(ud, urb) < 0)
93 return;
94
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060095 /* recv iso_packet_descriptor */
96 if (usbip_recv_iso(ud, urb) < 0)
97 return;
98
Arjan Mels28276a22011-04-05 20:26:59 +020099 /* restore the padding in iso packets */
Bart Westgeestac2b41a2012-01-23 10:55:46 -0500100 usbip_pad_iso(ud, urb);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600101
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600102 if (usbip_dbg_flag_vhci_rx)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600103 usbip_dump_urb(urb);
104
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600105 usbip_dbg_vhci_rx("now giveback urb %p\n", urb);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600106
Harvey Yang50b66b52013-01-22 13:31:31 +0800107 spin_lock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600108 usb_hcd_unlink_urb_from_ep(vhci_to_hcd(the_controller), urb);
Harvey Yang50b66b52013-01-22 13:31:31 +0800109 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600110
111 usb_hcd_giveback_urb(vhci_to_hcd(the_controller), urb, urb->status);
112
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600113 usbip_dbg_vhci_rx("Leave\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600114
115 return;
116}
117
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600118static struct vhci_unlink *dequeue_pending_unlink(struct vhci_device *vdev,
matt mooney5ef6ace2011-05-06 03:47:51 -0700119 struct usbip_header *pdu)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600120{
121 struct vhci_unlink *unlink, *tmp;
122
123 spin_lock(&vdev->priv_lock);
124
125 list_for_each_entry_safe(unlink, tmp, &vdev->unlink_rx, list) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700126 pr_info("unlink->seqnum %lu\n", unlink->seqnum);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600127 if (unlink->seqnum == pdu->base.seqnum) {
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600128 usbip_dbg_vhci_rx("found pending unlink, %lu\n",
matt mooney5ef6ace2011-05-06 03:47:51 -0700129 unlink->seqnum);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600130 list_del(&unlink->list);
131
132 spin_unlock(&vdev->priv_lock);
133 return unlink;
134 }
135 }
136
137 spin_unlock(&vdev->priv_lock);
138
139 return NULL;
140}
141
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600142static void vhci_recv_ret_unlink(struct vhci_device *vdev,
matt mooney5ef6ace2011-05-06 03:47:51 -0700143 struct usbip_header *pdu)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600144{
145 struct vhci_unlink *unlink;
146 struct urb *urb;
147
148 usbip_dump_header(pdu);
149
150 unlink = dequeue_pending_unlink(vdev, pdu);
151 if (!unlink) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700152 pr_info("cannot find the pending unlink %u\n",
153 pdu->base.seqnum);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600154 return;
155 }
156
Max Vozelerb92a5e22011-01-12 15:02:01 +0200157 spin_lock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600158 urb = pickup_urb_and_free_priv(vdev, unlink->unlink_seqnum);
Max Vozelerb92a5e22011-01-12 15:02:01 +0200159 spin_unlock(&vdev->priv_lock);
160
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600161 if (!urb) {
162 /*
163 * I get the result of a unlink request. But, it seems that I
164 * already received the result of its submit result and gave
165 * back the URB.
166 */
Christopher Harvey3567f972012-03-22 16:57:50 -0400167 pr_info("the urb (seqnum %d) was already given back\n",
matt mooney1a4b6f62011-05-19 16:47:32 -0700168 pdu->base.seqnum);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600169 } else {
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600170 usbip_dbg_vhci_rx("now giveback urb %p\n", urb);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600171
Bart Westgeestc7f00892012-10-10 13:34:27 -0400172 /* If unlink is successful, status is -ECONNRESET */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600173 urb->status = pdu->u.ret_unlink.status;
matt mooney1a4b6f62011-05-19 16:47:32 -0700174 pr_info("urb->status %d\n", urb->status);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600175
Harvey Yang50b66b52013-01-22 13:31:31 +0800176 spin_lock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600177 usb_hcd_unlink_urb_from_ep(vhci_to_hcd(the_controller), urb);
Harvey Yang50b66b52013-01-22 13:31:31 +0800178 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600179
180 usb_hcd_giveback_urb(vhci_to_hcd(the_controller), urb,
matt mooney5ef6ace2011-05-06 03:47:51 -0700181 urb->status);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600182 }
183
184 kfree(unlink);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600185}
186
Max Vozelerbd65f622011-01-12 15:02:04 +0200187static int vhci_priv_tx_empty(struct vhci_device *vdev)
188{
189 int empty = 0;
190
191 spin_lock(&vdev->priv_lock);
Max Vozelerbd65f622011-01-12 15:02:04 +0200192 empty = list_empty(&vdev->priv_rx);
Max Vozelerbd65f622011-01-12 15:02:04 +0200193 spin_unlock(&vdev->priv_lock);
194
195 return empty;
196}
197
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600198/* recv a pdu */
199static void vhci_rx_pdu(struct usbip_device *ud)
200{
201 int ret;
202 struct usbip_header pdu;
203 struct vhci_device *vdev = container_of(ud, struct vhci_device, ud);
204
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600205 usbip_dbg_vhci_rx("Enter\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600206
207 memset(&pdu, 0, sizeof(pdu));
208
Kurt Kanzenbach7717880742013-04-04 16:03:05 +0200209 /* receive a pdu header */
Bart Westgeest5a08c522011-12-19 17:44:11 -0500210 ret = usbip_recv(ud->tcp_socket, &pdu, sizeof(pdu));
Max Vozeler7e249c82011-01-12 15:02:03 +0200211 if (ret < 0) {
212 if (ret == -ECONNRESET)
matt mooney1a4b6f62011-05-19 16:47:32 -0700213 pr_info("connection reset by peer\n");
Max Vozelerbd65f622011-01-12 15:02:04 +0200214 else if (ret == -EAGAIN) {
215 /* ignore if connection was idle */
216 if (vhci_priv_tx_empty(vdev))
217 return;
matt mooney1a4b6f62011-05-19 16:47:32 -0700218 pr_info("connection timed out with pending urbs\n");
Max Vozelerbd65f622011-01-12 15:02:04 +0200219 } else if (ret != -ERESTARTSYS)
matt mooney1a4b6f62011-05-19 16:47:32 -0700220 pr_info("xmit failed %d\n", ret);
Max Vozelerbd65f622011-01-12 15:02:04 +0200221
Max Vozeler7e249c82011-01-12 15:02:03 +0200222 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
223 return;
224 }
225 if (ret == 0) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700226 pr_info("connection closed");
Max Vozeler7e249c82011-01-12 15:02:03 +0200227 usbip_event_add(ud, VDEV_EVENT_DOWN);
228 return;
229 }
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600230 if (ret != sizeof(pdu)) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700231 pr_err("received pdu size is %d, should be %d\n", ret,
232 (unsigned int)sizeof(pdu));
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600233 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
234 return;
235 }
236
237 usbip_header_correct_endian(&pdu, 0);
238
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600239 if (usbip_dbg_flag_vhci_rx)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600240 usbip_dump_header(&pdu);
241
242 switch (pdu.base.command) {
243 case USBIP_RET_SUBMIT:
244 vhci_recv_ret_submit(vdev, &pdu);
245 break;
246 case USBIP_RET_UNLINK:
247 vhci_recv_ret_unlink(vdev, &pdu);
248 break;
249 default:
matt mooney49aecef2011-05-06 03:47:54 -0700250 /* NOT REACHED */
matt mooney1a4b6f62011-05-19 16:47:32 -0700251 pr_err("unknown pdu %u\n", pdu.base.command);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600252 usbip_dump_header(&pdu);
253 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP);
matt mooney49aecef2011-05-06 03:47:54 -0700254 break;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600255 }
256}
257
Arnd Bergmann9720b4b2011-03-02 00:13:05 +0100258int vhci_rx_loop(void *data)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600259{
Arnd Bergmann9720b4b2011-03-02 00:13:05 +0100260 struct usbip_device *ud = data;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600261
Arnd Bergmann9720b4b2011-03-02 00:13:05 +0100262 while (!kthread_should_stop()) {
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600263 if (usbip_event_happened(ud))
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600264 break;
265
266 vhci_rx_pdu(ud);
267 }
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600268
Arnd Bergmann9720b4b2011-03-02 00:13:05 +0100269 return 0;
270}