2 * Copyright (C) 2003-2008 Takahiro Hirofuchi
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.
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.
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,
20 #include <linux/kthread.h>
21 #include <linux/slab.h>
23 #include "usbip_common.h"
26 /* get URB from transmitted urb queue. caller must hold vdev->priv_lock */
27 struct urb
*pickup_urb_and_free_priv(struct vhci_device
*vdev
, __u32 seqnum
)
29 struct vhci_priv
*priv
, *tmp
;
30 struct urb
*urb
= NULL
;
33 list_for_each_entry_safe(priv
, tmp
, &vdev
->priv_rx
, list
) {
34 if (priv
->seqnum
!= seqnum
)
40 usbip_dbg_vhci_rx("find urb %p vurb %p seqnum %u\n",
47 dev_info(&urb
->dev
->dev
,
48 "urb %p was unlinked %ssynchronuously.\n", urb
,
49 status
== -ENOENT
? "" : "a");
55 dev_info(&urb
->dev
->dev
,
56 "urb %p may be in a error, status %d\n", urb
,
60 list_del(&priv
->list
);
70 static void vhci_recv_ret_submit(struct vhci_device
*vdev
,
71 struct usbip_header
*pdu
)
73 struct vhci_hcd
*vhci
= vdev_to_vhci(vdev
);
74 struct usbip_device
*ud
= &vdev
->ud
;
78 spin_lock_irqsave(&vdev
->priv_lock
, flags
);
79 urb
= pickup_urb_and_free_priv(vdev
, pdu
->base
.seqnum
);
80 spin_unlock_irqrestore(&vdev
->priv_lock
, flags
);
83 pr_err("cannot find a urb of seqnum %u\n", pdu
->base
.seqnum
);
84 pr_info("max seqnum %d\n",
85 atomic_read(&vhci
->seqnum
));
86 usbip_event_add(ud
, VDEV_EVENT_ERROR_TCP
);
90 /* unpack the pdu to a urb */
91 usbip_pack_pdu(pdu
, urb
, USBIP_RET_SUBMIT
, 0);
93 /* recv transfer buffer */
94 if (usbip_recv_xbuff(ud
, urb
) < 0)
97 /* recv iso_packet_descriptor */
98 if (usbip_recv_iso(ud
, urb
) < 0)
101 /* restore the padding in iso packets */
102 usbip_pad_iso(ud
, urb
);
104 if (usbip_dbg_flag_vhci_rx
)
107 usbip_dbg_vhci_rx("now giveback urb %p\n", urb
);
109 spin_lock_irqsave(&vhci
->lock
, flags
);
110 usb_hcd_unlink_urb_from_ep(vhci_to_hcd(vhci
), urb
);
111 spin_unlock_irqrestore(&vhci
->lock
, flags
);
113 usb_hcd_giveback_urb(vhci_to_hcd(vhci
), urb
, urb
->status
);
115 usbip_dbg_vhci_rx("Leave\n");
118 static struct vhci_unlink
*dequeue_pending_unlink(struct vhci_device
*vdev
,
119 struct usbip_header
*pdu
)
121 struct vhci_unlink
*unlink
, *tmp
;
124 spin_lock_irqsave(&vdev
->priv_lock
, flags
);
126 list_for_each_entry_safe(unlink
, tmp
, &vdev
->unlink_rx
, list
) {
127 pr_info("unlink->seqnum %lu\n", unlink
->seqnum
);
128 if (unlink
->seqnum
== pdu
->base
.seqnum
) {
129 usbip_dbg_vhci_rx("found pending unlink, %lu\n",
131 list_del(&unlink
->list
);
133 spin_unlock_irqrestore(&vdev
->priv_lock
, flags
);
138 spin_unlock_irqrestore(&vdev
->priv_lock
, flags
);
143 static void vhci_recv_ret_unlink(struct vhci_device
*vdev
,
144 struct usbip_header
*pdu
)
146 struct vhci_hcd
*vhci
= vdev_to_vhci(vdev
);
147 struct vhci_unlink
*unlink
;
151 usbip_dump_header(pdu
);
153 unlink
= dequeue_pending_unlink(vdev
, pdu
);
155 pr_info("cannot find the pending unlink %u\n",
160 spin_lock_irqsave(&vdev
->priv_lock
, flags
);
161 urb
= pickup_urb_and_free_priv(vdev
, unlink
->unlink_seqnum
);
162 spin_unlock_irqrestore(&vdev
->priv_lock
, flags
);
166 * I get the result of a unlink request. But, it seems that I
167 * already received the result of its submit result and gave
170 pr_info("the urb (seqnum %d) was already given back\n",
173 usbip_dbg_vhci_rx("now giveback urb %p\n", urb
);
175 /* If unlink is successful, status is -ECONNRESET */
176 urb
->status
= pdu
->u
.ret_unlink
.status
;
177 pr_info("urb->status %d\n", urb
->status
);
179 spin_lock_irqsave(&vhci
->lock
, flags
);
180 usb_hcd_unlink_urb_from_ep(vhci_to_hcd(vhci
), urb
);
181 spin_unlock_irqrestore(&vhci
->lock
, flags
);
183 usb_hcd_giveback_urb(vhci_to_hcd(vhci
), urb
, urb
->status
);
189 static int vhci_priv_tx_empty(struct vhci_device
*vdev
)
194 spin_lock_irqsave(&vdev
->priv_lock
, flags
);
195 empty
= list_empty(&vdev
->priv_rx
);
196 spin_unlock_irqrestore(&vdev
->priv_lock
, flags
);
202 static void vhci_rx_pdu(struct usbip_device
*ud
)
205 struct usbip_header pdu
;
206 struct vhci_device
*vdev
= container_of(ud
, struct vhci_device
, ud
);
208 usbip_dbg_vhci_rx("Enter\n");
210 memset(&pdu
, 0, sizeof(pdu
));
212 /* receive a pdu header */
213 ret
= usbip_recv(ud
->tcp_socket
, &pdu
, sizeof(pdu
));
215 if (ret
== -ECONNRESET
)
216 pr_info("connection reset by peer\n");
217 else if (ret
== -EAGAIN
) {
218 /* ignore if connection was idle */
219 if (vhci_priv_tx_empty(vdev
))
221 pr_info("connection timed out with pending urbs\n");
222 } else if (ret
!= -ERESTARTSYS
)
223 pr_info("xmit failed %d\n", ret
);
225 usbip_event_add(ud
, VDEV_EVENT_ERROR_TCP
);
229 pr_info("connection closed");
230 usbip_event_add(ud
, VDEV_EVENT_DOWN
);
233 if (ret
!= sizeof(pdu
)) {
234 pr_err("received pdu size is %d, should be %d\n", ret
,
235 (unsigned int)sizeof(pdu
));
236 usbip_event_add(ud
, VDEV_EVENT_ERROR_TCP
);
240 usbip_header_correct_endian(&pdu
, 0);
242 if (usbip_dbg_flag_vhci_rx
)
243 usbip_dump_header(&pdu
);
245 switch (pdu
.base
.command
) {
246 case USBIP_RET_SUBMIT
:
247 vhci_recv_ret_submit(vdev
, &pdu
);
249 case USBIP_RET_UNLINK
:
250 vhci_recv_ret_unlink(vdev
, &pdu
);
254 pr_err("unknown pdu %u\n", pdu
.base
.command
);
255 usbip_dump_header(&pdu
);
256 usbip_event_add(ud
, VDEV_EVENT_ERROR_TCP
);
261 int vhci_rx_loop(void *data
)
263 struct usbip_device
*ud
= data
;
265 while (!kthread_should_stop()) {
266 if (usbip_event_happened(ud
))