blob: 1ae9d40f96bf72beea9bff470525ff1b8d5e9307 [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
matt mooney7aaacb42011-05-11 22:33:43 -070020#include <linux/init.h>
Bernard Blackham3d0a2a22012-10-22 06:45:00 +110021#include <linux/file.h>
matt mooney7aaacb42011-05-11 22:33:43 -070022#include <linux/kernel.h>
Arnd Bergmann9720b4b2011-03-02 00:13:05 +010023#include <linux/kthread.h>
matt mooney7aaacb42011-05-11 22:33:43 -070024#include <linux/module.h>
25#include <linux/platform_device.h>
26#include <linux/slab.h>
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060027
28#include "usbip_common.h"
29#include "vhci.h"
30
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060031#define DRIVER_AUTHOR "Takahiro Hirofuchi"
matt mooney64e62422011-05-11 22:33:44 -070032#define DRIVER_DESC "USB/IP 'Virtual' Host Controller (VHCI) Driver"
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060033
34/*
35 * TODO
36 * - update root hub emulation
37 * - move the emulation code to userland ?
38 * porting to other operating systems
39 * minimize kernel code
40 * - add suspend/resume code
41 * - clean up everything
42 */
43
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060044/* See usb gadget dummy hcd */
45
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060046static int vhci_hub_status(struct usb_hcd *hcd, char *buff);
47static int vhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
matt mooney071d1d42011-05-06 03:47:50 -070048 u16 wIndex, char *buff, u16 wLength);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060049static int vhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb,
matt mooney071d1d42011-05-06 03:47:50 -070050 gfp_t mem_flags);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060051static int vhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status);
52static int vhci_start(struct usb_hcd *vhci_hcd);
53static void vhci_stop(struct usb_hcd *hcd);
54static int vhci_get_frame_number(struct usb_hcd *hcd);
55
56static const char driver_name[] = "vhci_hcd";
Robert P. J. Dayf5e08ca72009-11-13 15:13:43 -050057static const char driver_desc[] = "USB/IP Virtual Host Controller";
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060058
59struct vhci_hcd *the_controller;
60
matt mooney071d1d42011-05-06 03:47:50 -070061static const char * const bit_desc[] = {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060062 "CONNECTION", /*0*/
63 "ENABLE", /*1*/
64 "SUSPEND", /*2*/
65 "OVER_CURRENT", /*3*/
66 "RESET", /*4*/
matt mooney071d1d42011-05-06 03:47:50 -070067 "R5", /*5*/
68 "R6", /*6*/
69 "R7", /*7*/
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060070 "POWER", /*8*/
71 "LOWSPEED", /*9*/
72 "HIGHSPEED", /*10*/
73 "PORT_TEST", /*11*/
74 "INDICATOR", /*12*/
matt mooney071d1d42011-05-06 03:47:50 -070075 "R13", /*13*/
76 "R14", /*14*/
77 "R15", /*15*/
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060078 "C_CONNECTION", /*16*/
79 "C_ENABLE", /*17*/
80 "C_SUSPEND", /*18*/
81 "C_OVER_CURRENT", /*19*/
82 "C_RESET", /*20*/
matt mooney071d1d42011-05-06 03:47:50 -070083 "R21", /*21*/
84 "R22", /*22*/
85 "R23", /*23*/
86 "R24", /*24*/
87 "R25", /*25*/
88 "R26", /*26*/
89 "R27", /*27*/
90 "R28", /*28*/
91 "R29", /*29*/
92 "R30", /*30*/
93 "R31", /*31*/
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060094};
95
Márton Németh4a3ca2b2011-06-14 08:28:26 +020096static void dump_port_status_diff(u32 prev_status, u32 new_status)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060097{
98 int i = 0;
Márton Németh4a3ca2b2011-06-14 08:28:26 +020099 u32 bit = 1;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600100
Márton Németh4a3ca2b2011-06-14 08:28:26 +0200101 pr_debug("status prev -> new: %08x -> %08x\n", prev_status, new_status);
102 while (bit) {
103 u32 prev = prev_status & bit;
104 u32 new = new_status & bit;
105 char change;
106
107 if (!prev && new)
108 change = '+';
109 else if (prev && !new)
110 change = '-';
111 else
112 change = ' ';
113
114 if (prev || new)
115 pr_debug(" %c%s\n", change, bit_desc[i]);
116 bit <<= 1;
117 i++;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600118 }
matt mooney1a4b6f62011-05-19 16:47:32 -0700119 pr_debug("\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600120}
121
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600122void rh_port_connect(int rhport, enum usb_device_speed speed)
123{
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600124 usbip_dbg_vhci_rh("rh_port_connect %d\n", rhport);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600125
Harvey Yang50b66b52013-01-22 13:31:31 +0800126 spin_lock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600127
128 the_controller->port_status[rhport] |= USB_PORT_STAT_CONNECTION
129 | (1 << USB_PORT_FEAT_C_CONNECTION);
130
131 switch (speed) {
132 case USB_SPEED_HIGH:
133 the_controller->port_status[rhport] |= USB_PORT_STAT_HIGH_SPEED;
134 break;
135 case USB_SPEED_LOW:
136 the_controller->port_status[rhport] |= USB_PORT_STAT_LOW_SPEED;
137 break;
138 default:
139 break;
140 }
141
Harvey Yang50b66b52013-01-22 13:31:31 +0800142 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600143
144 usb_hcd_poll_rh_status(vhci_to_hcd(the_controller));
145}
146
Bart Westgeest20960fa2012-10-10 13:34:26 -0400147static void rh_port_disconnect(int rhport)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600148{
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600149 usbip_dbg_vhci_rh("rh_port_disconnect %d\n", rhport);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600150
Harvey Yang50b66b52013-01-22 13:31:31 +0800151 spin_lock(&the_controller->lock);
Bart Westgeestc7f00892012-10-10 13:34:27 -0400152
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600153 the_controller->port_status[rhport] &= ~USB_PORT_STAT_CONNECTION;
154 the_controller->port_status[rhport] |=
155 (1 << USB_PORT_FEAT_C_CONNECTION);
156
Harvey Yang50b66b52013-01-22 13:31:31 +0800157 spin_unlock(&the_controller->lock);
Max Vozeler0c9a32f2010-09-21 17:31:40 +0200158 usb_hcd_poll_rh_status(vhci_to_hcd(the_controller));
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600159}
160
matt mooney071d1d42011-05-06 03:47:50 -0700161#define PORT_C_MASK \
162 ((USB_PORT_STAT_C_CONNECTION \
163 | USB_PORT_STAT_C_ENABLE \
164 | USB_PORT_STAT_C_SUSPEND \
165 | USB_PORT_STAT_C_OVERCURRENT \
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600166 | USB_PORT_STAT_C_RESET) << 16)
167
168/*
Bart Westgeest74893012012-06-13 15:37:18 -0400169 * Returns 0 if the status hasn't changed, or the number of bytes in buf.
170 * Ports are 0-indexed from the HCD point of view,
171 * and 1-indexed from the USB core pointer of view.
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600172 *
173 * @buf: a bitmap to show which port status has been changed.
Bart Westgeest74893012012-06-13 15:37:18 -0400174 * bit 0: reserved
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600175 * bit 1: the status of port 0 has been changed.
176 * bit 2: the status of port 1 has been changed.
177 * ...
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600178 */
179static int vhci_hub_status(struct usb_hcd *hcd, char *buf)
180{
181 struct vhci_hcd *vhci;
Bart Westgeest74893012012-06-13 15:37:18 -0400182 int retval;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600183 int rhport;
184 int changed = 0;
185
Bart Westgeest74893012012-06-13 15:37:18 -0400186 retval = DIV_ROUND_UP(VHCI_NPORTS + 1, 8);
187 memset(buf, 0, retval);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600188
189 vhci = hcd_to_vhci(hcd);
190
Harvey Yang50b66b52013-01-22 13:31:31 +0800191 spin_lock(&vhci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400192 if (!HCD_HW_ACCESSIBLE(hcd)) {
Bart Westgeest74893012012-06-13 15:37:18 -0400193 usbip_dbg_vhci_rh("hw accessible flag not on?\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600194 goto done;
195 }
196
197 /* check pseudo status register for each port */
198 for (rhport = 0; rhport < VHCI_NPORTS; rhport++) {
199 if ((vhci->port_status[rhport] & PORT_C_MASK)) {
200 /* The status of a port has been changed, */
Bart Westgeest74893012012-06-13 15:37:18 -0400201 usbip_dbg_vhci_rh("port %d status changed\n", rhport);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600202
Bart Westgeest74893012012-06-13 15:37:18 -0400203 buf[(rhport + 1) / 8] |= 1 << (rhport + 1) % 8;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600204 changed = 1;
205 }
206 }
207
navin patidar107f04b2012-09-06 16:49:50 +0530208 if ((hcd->state == HC_STATE_SUSPENDED) && (changed == 1))
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600209 usb_hcd_resume_root_hub(hcd);
210
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600211done:
Harvey Yang50b66b52013-01-22 13:31:31 +0800212 spin_unlock(&vhci->lock);
Bart Westgeest74893012012-06-13 15:37:18 -0400213 return changed ? retval : 0;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600214}
215
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600216static inline void hub_descriptor(struct usb_hub_descriptor *desc)
217{
218 memset(desc, 0, sizeof(*desc));
219 desc->bDescriptorType = 0x29;
220 desc->bDescLength = 9;
Teodora Balutad0306a52013-11-04 13:12:12 +0200221 desc->wHubCharacteristics = (__constant_cpu_to_le16(0x0001));
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600222 desc->bNbrPorts = VHCI_NPORTS;
John Youndbe79bb2001-09-17 00:00:00 -0700223 desc->u.hs.DeviceRemovable[0] = 0xff;
224 desc->u.hs.DeviceRemovable[1] = 0xff;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600225}
226
227static int vhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
228 u16 wIndex, char *buf, u16 wLength)
229{
230 struct vhci_hcd *dum;
231 int retval = 0;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600232 int rhport;
233
234 u32 prev_port_status[VHCI_NPORTS];
235
Alan Stern541c7d42010-06-22 16:39:10 -0400236 if (!HCD_HW_ACCESSIBLE(hcd))
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600237 return -ETIMEDOUT;
238
239 /*
240 * NOTE:
241 * wIndex shows the port number and begins from 1.
242 */
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600243 usbip_dbg_vhci_rh("typeReq %x wValue %x wIndex %x\n", typeReq, wValue,
matt mooney071d1d42011-05-06 03:47:50 -0700244 wIndex);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600245 if (wIndex > VHCI_NPORTS)
matt mooney1a4b6f62011-05-19 16:47:32 -0700246 pr_err("invalid port number %d\n", wIndex);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600247 rhport = ((__u8)(wIndex & 0x00ff)) - 1;
248
249 dum = hcd_to_vhci(hcd);
250
Harvey Yang50b66b52013-01-22 13:31:31 +0800251 spin_lock(&dum->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600252
253 /* store old status and compare now and old later */
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600254 if (usbip_dbg_flag_vhci_rh) {
Márton Németh6f480bf2011-06-13 23:30:09 +0200255 memcpy(prev_port_status, dum->port_status,
256 sizeof(prev_port_status));
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600257 }
258
259 switch (typeReq) {
260 case ClearHubFeature:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600261 usbip_dbg_vhci_rh(" ClearHubFeature\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600262 break;
263 case ClearPortFeature:
264 switch (wValue) {
265 case USB_PORT_FEAT_SUSPEND:
266 if (dum->port_status[rhport] & USB_PORT_STAT_SUSPEND) {
267 /* 20msec signaling */
268 dum->resuming = 1;
269 dum->re_timeout =
270 jiffies + msecs_to_jiffies(20);
271 }
272 break;
273 case USB_PORT_FEAT_POWER:
Cédric Cabessa7923a652014-03-19 23:04:57 +0100274 usbip_dbg_vhci_rh(
275 " ClearPortFeature: USB_PORT_FEAT_POWER\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600276 dum->port_status[rhport] = 0;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600277 dum->resuming = 0;
278 break;
279 case USB_PORT_FEAT_C_RESET:
Cédric Cabessa7923a652014-03-19 23:04:57 +0100280 usbip_dbg_vhci_rh(
281 " ClearPortFeature: USB_PORT_FEAT_C_RESET\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600282 switch (dum->vdev[rhport].speed) {
283 case USB_SPEED_HIGH:
284 dum->port_status[rhport] |=
matt mooney071d1d42011-05-06 03:47:50 -0700285 USB_PORT_STAT_HIGH_SPEED;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600286 break;
287 case USB_SPEED_LOW:
288 dum->port_status[rhport] |=
matt mooney071d1d42011-05-06 03:47:50 -0700289 USB_PORT_STAT_LOW_SPEED;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600290 break;
291 default:
292 break;
293 }
294 default:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600295 usbip_dbg_vhci_rh(" ClearPortFeature: default %x\n",
matt mooney071d1d42011-05-06 03:47:50 -0700296 wValue);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600297 dum->port_status[rhport] &= ~(1 << wValue);
matt mooney49aecef2011-05-06 03:47:54 -0700298 break;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600299 }
300 break;
301 case GetHubDescriptor:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600302 usbip_dbg_vhci_rh(" GetHubDescriptor\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600303 hub_descriptor((struct usb_hub_descriptor *) buf);
304 break;
305 case GetHubStatus:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600306 usbip_dbg_vhci_rh(" GetHubStatus\n");
Alexey Tuliaa06a24d2014-06-13 11:35:13 +0300307 *(__le32 *) buf = cpu_to_le32(0);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600308 break;
309 case GetPortStatus:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600310 usbip_dbg_vhci_rh(" GetPortStatus port %x\n", wIndex);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600311 if (wIndex > VHCI_NPORTS || wIndex < 1) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700312 pr_err("invalid port number %d\n", wIndex);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600313 retval = -EPIPE;
314 }
315
Bart Westgeestc7f00892012-10-10 13:34:27 -0400316 /* we do not care about resume. */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600317
318 /* whoever resets or resumes must GetPortStatus to
319 * complete it!!
Bart Westgeestc7f00892012-10-10 13:34:27 -0400320 */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600321 if (dum->resuming && time_after(jiffies, dum->re_timeout)) {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600322 dum->port_status[rhport] |=
matt mooney87352762011-05-19 21:36:56 -0700323 (1 << USB_PORT_FEAT_C_SUSPEND);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600324 dum->port_status[rhport] &=
matt mooney87352762011-05-19 21:36:56 -0700325 ~(1 << USB_PORT_FEAT_SUSPEND);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600326 dum->resuming = 0;
327 dum->re_timeout = 0;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600328 }
329
330 if ((dum->port_status[rhport] & (1 << USB_PORT_FEAT_RESET)) !=
matt mooney071d1d42011-05-06 03:47:50 -0700331 0 && time_after(jiffies, dum->re_timeout)) {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600332 dum->port_status[rhport] |=
matt mooney071d1d42011-05-06 03:47:50 -0700333 (1 << USB_PORT_FEAT_C_RESET);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600334 dum->port_status[rhport] &=
matt mooney071d1d42011-05-06 03:47:50 -0700335 ~(1 << USB_PORT_FEAT_RESET);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600336 dum->re_timeout = 0;
337
338 if (dum->vdev[rhport].ud.status ==
matt mooney071d1d42011-05-06 03:47:50 -0700339 VDEV_ST_NOTASSIGNED) {
Cédric Cabessa7923a652014-03-19 23:04:57 +0100340 usbip_dbg_vhci_rh(
341 " enable rhport %d (status %u)\n",
342 rhport,
343 dum->vdev[rhport].ud.status);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600344 dum->port_status[rhport] |=
matt mooney071d1d42011-05-06 03:47:50 -0700345 USB_PORT_STAT_ENABLE;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600346 }
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600347 }
Teodora Balutad0306a52013-11-04 13:12:12 +0200348 ((__le16 *) buf)[0] = cpu_to_le16(dum->port_status[rhport]);
Cédric Cabessa7923a652014-03-19 23:04:57 +0100349 ((__le16 *) buf)[1] =
350 cpu_to_le16(dum->port_status[rhport] >> 16);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600351
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600352 usbip_dbg_vhci_rh(" GetPortStatus bye %x %x\n", ((u16 *)buf)[0],
matt mooney071d1d42011-05-06 03:47:50 -0700353 ((u16 *)buf)[1]);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600354 break;
355 case SetHubFeature:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600356 usbip_dbg_vhci_rh(" SetHubFeature\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600357 retval = -EPIPE;
358 break;
359 case SetPortFeature:
360 switch (wValue) {
361 case USB_PORT_FEAT_SUSPEND:
Cédric Cabessa7923a652014-03-19 23:04:57 +0100362 usbip_dbg_vhci_rh(
363 " SetPortFeature: USB_PORT_FEAT_SUSPEND\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600364 break;
365 case USB_PORT_FEAT_RESET:
Cédric Cabessa7923a652014-03-19 23:04:57 +0100366 usbip_dbg_vhci_rh(
367 " SetPortFeature: USB_PORT_FEAT_RESET\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600368 /* if it's already running, disconnect first */
369 if (dum->port_status[rhport] & USB_PORT_STAT_ENABLE) {
370 dum->port_status[rhport] &=
matt mooney071d1d42011-05-06 03:47:50 -0700371 ~(USB_PORT_STAT_ENABLE |
372 USB_PORT_STAT_LOW_SPEED |
373 USB_PORT_STAT_HIGH_SPEED);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600374 /* FIXME test that code path! */
375 }
376 /* 50msec reset signaling */
377 dum->re_timeout = jiffies + msecs_to_jiffies(50);
378
379 /* FALLTHROUGH */
380 default:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600381 usbip_dbg_vhci_rh(" SetPortFeature: default %d\n",
matt mooney071d1d42011-05-06 03:47:50 -0700382 wValue);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600383 dum->port_status[rhport] |= (1 << wValue);
matt mooney49aecef2011-05-06 03:47:54 -0700384 break;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600385 }
386 break;
387
388 default:
matt mooney1a4b6f62011-05-19 16:47:32 -0700389 pr_err("default: no such request\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600390
391 /* "protocol stall" on error */
392 retval = -EPIPE;
393 }
394
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600395 if (usbip_dbg_flag_vhci_rh) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700396 pr_debug("port %d\n", rhport);
Márton Némethbfb4ce22011-06-13 23:47:39 +0200397 /* Only dump valid port status */
398 if (rhport >= 0) {
Márton Németh4a3ca2b2011-06-14 08:28:26 +0200399 dump_port_status_diff(prev_port_status[rhport],
400 dum->port_status[rhport]);
Márton Némethbfb4ce22011-06-13 23:47:39 +0200401 }
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600402 }
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600403 usbip_dbg_vhci_rh(" bye\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600404
Harvey Yang50b66b52013-01-22 13:31:31 +0800405 spin_unlock(&dum->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600406
407 return retval;
408}
409
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600410static struct vhci_device *get_vdev(struct usb_device *udev)
411{
412 int i;
413
414 if (!udev)
415 return NULL;
416
417 for (i = 0; i < VHCI_NPORTS; i++)
418 if (the_controller->vdev[i].udev == udev)
419 return port_to_vdev(i);
420
421 return NULL;
422}
423
424static void vhci_tx_urb(struct urb *urb)
425{
426 struct vhci_device *vdev = get_vdev(urb->dev);
427 struct vhci_priv *priv;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600428
429 if (!vdev) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700430 pr_err("could not get virtual device");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600431 return;
432 }
433
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600434 priv = kzalloc(sizeof(struct vhci_priv), GFP_ATOMIC);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600435 if (!priv) {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600436 usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_MALLOC);
437 return;
438 }
439
Joe Perches78110bb2013-02-11 09:41:29 -0800440 spin_lock(&vdev->priv_lock);
441
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600442 priv->seqnum = atomic_inc_return(&the_controller->seqnum);
443 if (priv->seqnum == 0xffff)
matt mooney1a4b6f62011-05-19 16:47:32 -0700444 dev_info(&urb->dev->dev, "seqnum max\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600445
446 priv->vdev = vdev;
447 priv->urb = urb;
448
449 urb->hcpriv = (void *) priv;
450
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600451 list_add_tail(&priv->list, &vdev->priv_tx);
452
453 wake_up(&vdev->waitq_tx);
Harvey Yang50b66b52013-01-22 13:31:31 +0800454 spin_unlock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600455}
456
457static int vhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb,
458 gfp_t mem_flags)
459{
460 struct device *dev = &urb->dev->dev;
461 int ret = 0;
Max Vozeler6d212152011-01-12 15:02:02 +0200462 struct vhci_device *vdev;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600463
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600464 usbip_dbg_vhci_hc("enter, usb_hcd %p urb %p mem_flags %d\n",
matt mooney071d1d42011-05-06 03:47:50 -0700465 hcd, urb, mem_flags);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600466
467 /* patch to usb_sg_init() is in 2.5.60 */
468 BUG_ON(!urb->transfer_buffer && urb->transfer_buffer_length);
469
Harvey Yang50b66b52013-01-22 13:31:31 +0800470 spin_lock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600471
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600472 if (urb->status != -EINPROGRESS) {
473 dev_err(dev, "URB already unlinked!, status %d\n", urb->status);
Harvey Yang50b66b52013-01-22 13:31:31 +0800474 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600475 return urb->status;
476 }
477
Max Vozeler01446ef2011-01-12 15:02:05 +0200478 vdev = port_to_vdev(urb->dev->portnum-1);
Max Vozeler6d212152011-01-12 15:02:02 +0200479
480 /* refuse enqueue for dead connection */
481 spin_lock(&vdev->ud.lock);
matt mooney071d1d42011-05-06 03:47:50 -0700482 if (vdev->ud.status == VDEV_ST_NULL ||
483 vdev->ud.status == VDEV_ST_ERROR) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700484 dev_err(dev, "enqueue for inactive port %d\n", vdev->rhport);
Max Vozeler6d212152011-01-12 15:02:02 +0200485 spin_unlock(&vdev->ud.lock);
Harvey Yang50b66b52013-01-22 13:31:31 +0800486 spin_unlock(&the_controller->lock);
Max Vozeler6d212152011-01-12 15:02:02 +0200487 return -ENODEV;
488 }
489 spin_unlock(&vdev->ud.lock);
490
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600491 ret = usb_hcd_link_urb_to_ep(hcd, urb);
492 if (ret)
493 goto no_need_unlink;
494
495 /*
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600496 * The enumeration process is as follows;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600497 *
498 * 1. Get_Descriptor request to DevAddrs(0) EndPoint(0)
499 * to get max packet length of default pipe
500 *
501 * 2. Set_Address request to DevAddr(0) EndPoint(0)
502 *
503 */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600504 if (usb_pipedevice(urb->pipe) == 0) {
505 __u8 type = usb_pipetype(urb->pipe);
506 struct usb_ctrlrequest *ctrlreq =
matt mooney071d1d42011-05-06 03:47:50 -0700507 (struct usb_ctrlrequest *) urb->setup_packet;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600508
509 if (type != PIPE_CONTROL || !ctrlreq) {
510 dev_err(dev, "invalid request to devnum 0\n");
Shan Weia7cd5822009-07-24 16:57:35 +0800511 ret = -EINVAL;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600512 goto no_need_xmit;
513 }
514
515 switch (ctrlreq->bRequest) {
516 case USB_REQ_SET_ADDRESS:
517 /* set_address may come when a device is reset */
518 dev_info(dev, "SetAddress Request (%d) to port %d\n",
519 ctrlreq->wValue, vdev->rhport);
520
Markus Elfring03f3df82014-11-21 16:33:18 +0100521 usb_put_dev(vdev->udev);
Max Vozeler7606ee82011-01-12 15:02:00 +0200522 vdev->udev = usb_get_dev(urb->dev);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600523
524 spin_lock(&vdev->ud.lock);
525 vdev->ud.status = VDEV_ST_USED;
526 spin_unlock(&vdev->ud.lock);
527
528 if (urb->status == -EINPROGRESS) {
529 /* This request is successfully completed. */
530 /* If not -EINPROGRESS, possibly unlinked. */
531 urb->status = 0;
532 }
533
534 goto no_need_xmit;
535
536 case USB_REQ_GET_DESCRIPTOR:
Teodora Balutad0306a52013-11-04 13:12:12 +0200537 if (ctrlreq->wValue == cpu_to_le16(USB_DT_DEVICE << 8))
Cédric Cabessa7923a652014-03-19 23:04:57 +0100538 usbip_dbg_vhci_hc(
539 "Not yet?:Get_Descriptor to device 0 (get max pipe size)\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600540
Markus Elfring03f3df82014-11-21 16:33:18 +0100541 usb_put_dev(vdev->udev);
Max Vozeler7606ee82011-01-12 15:02:00 +0200542 vdev->udev = usb_get_dev(urb->dev);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600543 goto out;
544
545 default:
546 /* NOT REACHED */
Cédric Cabessa7923a652014-03-19 23:04:57 +0100547 dev_err(dev,
548 "invalid request to devnum 0 bRequest %u, wValue %u\n",
549 ctrlreq->bRequest,
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600550 ctrlreq->wValue);
551 ret = -EINVAL;
552 goto no_need_xmit;
553 }
554
555 }
556
557out:
558 vhci_tx_urb(urb);
Harvey Yang50b66b52013-01-22 13:31:31 +0800559 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600560
561 return 0;
562
563no_need_xmit:
564 usb_hcd_unlink_urb_from_ep(hcd, urb);
565no_need_unlink:
Harvey Yang50b66b52013-01-22 13:31:31 +0800566 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600567 usb_hcd_giveback_urb(vhci_to_hcd(the_controller), urb, urb->status);
Shan Weia7cd5822009-07-24 16:57:35 +0800568 return ret;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600569}
570
571/*
572 * vhci_rx gives back the urb after receiving the reply of the urb. If an
573 * unlink pdu is sent or not, vhci_rx receives a normal return pdu and gives
574 * back its urb. For the driver unlinking the urb, the content of the urb is
575 * not important, but the calling to its completion handler is important; the
576 * completion of unlinking is notified by the completion handler.
577 *
578 *
579 * CLIENT SIDE
580 *
581 * - When vhci_hcd receives RET_SUBMIT,
582 *
583 * - case 1a). the urb of the pdu is not unlinking.
584 * - normal case
585 * => just give back the urb
586 *
587 * - case 1b). the urb of the pdu is unlinking.
588 * - usbip.ko will return a reply of the unlinking request.
589 * => give back the urb now and go to case 2b).
590 *
591 * - When vhci_hcd receives RET_UNLINK,
592 *
593 * - case 2a). a submit request is still pending in vhci_hcd.
594 * - urb was really pending in usbip.ko and urb_unlink_urb() was
595 * completed there.
596 * => free a pending submit request
597 * => notify unlink completeness by giving back the urb
598 *
599 * - case 2b). a submit request is *not* pending in vhci_hcd.
600 * - urb was already given back to the core driver.
601 * => do not give back the urb
602 *
603 *
604 * SERVER SIDE
605 *
606 * - When usbip receives CMD_UNLINK,
607 *
608 * - case 3a). the urb of the unlink request is now in submission.
609 * => do usb_unlink_urb().
610 * => after the unlink is completed, send RET_UNLINK.
611 *
612 * - case 3b). the urb of the unlink request is not in submission.
613 * - may be already completed or never be received
614 * => send RET_UNLINK
615 *
616 */
617static int vhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
618{
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600619 struct vhci_priv *priv;
620 struct vhci_device *vdev;
621
matt mooney1a4b6f62011-05-19 16:47:32 -0700622 pr_info("dequeue a urb %p\n", urb);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600623
Harvey Yang50b66b52013-01-22 13:31:31 +0800624 spin_lock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600625
626 priv = urb->hcpriv;
627 if (!priv) {
628 /* URB was never linked! or will be soon given back by
629 * vhci_rx. */
Harvey Yang50b66b52013-01-22 13:31:31 +0800630 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600631 return 0;
632 }
633
634 {
635 int ret = 0;
Pawel Lebioda3eed8c02014-05-14 19:20:27 +0200636
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600637 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
638 if (ret) {
Harvey Yang50b66b52013-01-22 13:31:31 +0800639 spin_unlock(&the_controller->lock);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600640 return ret;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600641 }
642 }
643
644 /* send unlink request here? */
645 vdev = priv->vdev;
646
647 if (!vdev->ud.tcp_socket) {
648 /* tcp connection is closed */
Harvey Yang50b66b52013-01-22 13:31:31 +0800649 spin_lock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600650
matt mooney1a4b6f62011-05-19 16:47:32 -0700651 pr_info("device %p seems to be disconnected\n", vdev);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600652 list_del(&priv->list);
653 kfree(priv);
654 urb->hcpriv = NULL;
655
Harvey Yang50b66b52013-01-22 13:31:31 +0800656 spin_unlock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600657
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600658 /*
659 * If tcp connection is alive, we have sent CMD_UNLINK.
660 * vhci_rx will receive RET_UNLINK and give back the URB.
661 * Otherwise, we give back it here.
662 */
matt mooney1a4b6f62011-05-19 16:47:32 -0700663 pr_info("gives back urb %p\n", urb);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600664
665 usb_hcd_unlink_urb_from_ep(hcd, urb);
666
Harvey Yang50b66b52013-01-22 13:31:31 +0800667 spin_unlock(&the_controller->lock);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600668 usb_hcd_giveback_urb(vhci_to_hcd(the_controller), urb,
matt mooney071d1d42011-05-06 03:47:50 -0700669 urb->status);
Harvey Yang50b66b52013-01-22 13:31:31 +0800670 spin_lock(&the_controller->lock);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600671
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600672 } else {
673 /* tcp connection is alive */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600674 struct vhci_unlink *unlink;
675
Harvey Yang50b66b52013-01-22 13:31:31 +0800676 spin_lock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600677
678 /* setup CMD_UNLINK pdu */
679 unlink = kzalloc(sizeof(struct vhci_unlink), GFP_ATOMIC);
680 if (!unlink) {
Harvey Yang50b66b52013-01-22 13:31:31 +0800681 spin_unlock(&vdev->priv_lock);
682 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600683 usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_MALLOC);
684 return -ENOMEM;
685 }
686
687 unlink->seqnum = atomic_inc_return(&the_controller->seqnum);
688 if (unlink->seqnum == 0xffff)
matt mooney1a4b6f62011-05-19 16:47:32 -0700689 pr_info("seqnum max\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600690
691 unlink->unlink_seqnum = priv->seqnum;
692
matt mooney1a4b6f62011-05-19 16:47:32 -0700693 pr_info("device %p seems to be still connected\n", vdev);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600694
695 /* send cmd_unlink and try to cancel the pending URB in the
696 * peer */
697 list_add_tail(&unlink->list, &vdev->unlink_tx);
698 wake_up(&vdev->waitq_tx);
699
Harvey Yang50b66b52013-01-22 13:31:31 +0800700 spin_unlock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600701 }
702
Harvey Yang50b66b52013-01-22 13:31:31 +0800703 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600704
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600705 usbip_dbg_vhci_hc("leave\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600706 return 0;
707}
708
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600709static void vhci_device_unlink_cleanup(struct vhci_device *vdev)
710{
711 struct vhci_unlink *unlink, *tmp;
712
Bernard Blackham236742d2012-09-06 20:25:04 +1000713 spin_lock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600714 spin_lock(&vdev->priv_lock);
715
716 list_for_each_entry_safe(unlink, tmp, &vdev->unlink_tx, list) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700717 pr_info("unlink cleanup tx %lu\n", unlink->unlink_seqnum);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600718 list_del(&unlink->list);
719 kfree(unlink);
720 }
721
Bernard Blackham236742d2012-09-06 20:25:04 +1000722 while (!list_empty(&vdev->unlink_rx)) {
Max Vozelerb92a5e22011-01-12 15:02:01 +0200723 struct urb *urb;
724
Bernard Blackham236742d2012-09-06 20:25:04 +1000725 unlink = list_first_entry(&vdev->unlink_rx, struct vhci_unlink,
726 list);
727
Max Vozelerb92a5e22011-01-12 15:02:01 +0200728 /* give back URB of unanswered unlink request */
matt mooney1a4b6f62011-05-19 16:47:32 -0700729 pr_info("unlink cleanup rx %lu\n", unlink->unlink_seqnum);
Max Vozelerb92a5e22011-01-12 15:02:01 +0200730
731 urb = pickup_urb_and_free_priv(vdev, unlink->unlink_seqnum);
732 if (!urb) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700733 pr_info("the urb (seqnum %lu) was already given back\n",
734 unlink->unlink_seqnum);
Max Vozelerb92a5e22011-01-12 15:02:01 +0200735 list_del(&unlink->list);
736 kfree(unlink);
737 continue;
738 }
739
740 urb->status = -ENODEV;
741
Max Vozelerb92a5e22011-01-12 15:02:01 +0200742 usb_hcd_unlink_urb_from_ep(vhci_to_hcd(the_controller), urb);
Bernard Blackham236742d2012-09-06 20:25:04 +1000743
744 list_del(&unlink->list);
745
746 spin_unlock(&vdev->priv_lock);
Max Vozelerb92a5e22011-01-12 15:02:01 +0200747 spin_unlock(&the_controller->lock);
748
matt mooney071d1d42011-05-06 03:47:50 -0700749 usb_hcd_giveback_urb(vhci_to_hcd(the_controller), urb,
750 urb->status);
Max Vozelerb92a5e22011-01-12 15:02:01 +0200751
Bernard Blackham236742d2012-09-06 20:25:04 +1000752 spin_lock(&the_controller->lock);
753 spin_lock(&vdev->priv_lock);
754
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600755 kfree(unlink);
756 }
757
758 spin_unlock(&vdev->priv_lock);
Bernard Blackham236742d2012-09-06 20:25:04 +1000759 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600760}
761
762/*
763 * The important thing is that only one context begins cleanup.
764 * This is why error handling and cleanup become simple.
765 * We do not want to consider race condition as possible.
766 */
767static void vhci_shutdown_connection(struct usbip_device *ud)
768{
769 struct vhci_device *vdev = container_of(ud, struct vhci_device, ud);
770
771 /* need this? see stub_dev.c */
772 if (ud->tcp_socket) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700773 pr_debug("shutdown tcp_socket %p\n", ud->tcp_socket);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600774 kernel_sock_shutdown(ud->tcp_socket, SHUT_RDWR);
775 }
776
Bart Westgeestc7f00892012-10-10 13:34:27 -0400777 /* kill threads related to this sdev */
navincbf7d122012-09-19 17:04:51 +0530778 if (vdev->ud.tcp_rx) {
Oleg Nesterovba46ce32012-03-13 19:07:18 +0100779 kthread_stop_put(vdev->ud.tcp_rx);
navincbf7d122012-09-19 17:04:51 +0530780 vdev->ud.tcp_rx = NULL;
781 }
782 if (vdev->ud.tcp_tx) {
Oleg Nesterovba46ce32012-03-13 19:07:18 +0100783 kthread_stop_put(vdev->ud.tcp_tx);
navincbf7d122012-09-19 17:04:51 +0530784 vdev->ud.tcp_tx = NULL;
785 }
matt mooney1a4b6f62011-05-19 16:47:32 -0700786 pr_info("stop threads\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600787
788 /* active connection is closed */
Bernard Blackham3d0a2a22012-10-22 06:45:00 +1100789 if (vdev->ud.tcp_socket) {
Al Viro964ea962014-03-05 20:33:08 -0500790 sockfd_put(vdev->ud.tcp_socket);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600791 vdev->ud.tcp_socket = NULL;
792 }
matt mooney1a4b6f62011-05-19 16:47:32 -0700793 pr_info("release socket\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600794
795 vhci_device_unlink_cleanup(vdev);
796
797 /*
798 * rh_port_disconnect() is a trigger of ...
799 * usb_disable_device():
800 * disable all the endpoints for a USB device.
801 * usb_disable_endpoint():
802 * disable endpoints. pending urbs are unlinked(dequeued).
803 *
804 * NOTE: After calling rh_port_disconnect(), the USB device drivers of a
Justin P. Mattock4ec26012012-08-06 08:00:27 -0700805 * detached device should release used urbs in a cleanup function (i.e.
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600806 * xxx_disconnect()). Therefore, vhci_hcd does not need to release
807 * pushed urbs and their private data in this function.
808 *
Justin P. Mattock4ec26012012-08-06 08:00:27 -0700809 * NOTE: vhci_dequeue() must be considered carefully. When shutting down
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600810 * a connection, vhci_shutdown_connection() expects vhci_dequeue()
811 * gives back pushed urbs and frees their private data by request of
812 * the cleanup function of a USB driver. When unlinking a urb with an
813 * active connection, vhci_dequeue() does not give back the urb which
814 * is actually given back by vhci_rx after receiving its return pdu.
815 *
816 */
817 rh_port_disconnect(vdev->rhport);
818
matt mooney1a4b6f62011-05-19 16:47:32 -0700819 pr_info("disconnect device\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600820}
821
822
823static void vhci_device_reset(struct usbip_device *ud)
824{
825 struct vhci_device *vdev = container_of(ud, struct vhci_device, ud);
826
827 spin_lock(&ud->lock);
828
829 vdev->speed = 0;
830 vdev->devid = 0;
831
Markus Elfring03f3df82014-11-21 16:33:18 +0100832 usb_put_dev(vdev->udev);
Max Vozeler7606ee82011-01-12 15:02:00 +0200833 vdev->udev = NULL;
834
Bernard Blackham3d0a2a22012-10-22 06:45:00 +1100835 if (ud->tcp_socket) {
Al Viro964ea962014-03-05 20:33:08 -0500836 sockfd_put(ud->tcp_socket);
Bernard Blackham3d0a2a22012-10-22 06:45:00 +1100837 ud->tcp_socket = NULL;
838 }
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600839 ud->status = VDEV_ST_NULL;
840
841 spin_unlock(&ud->lock);
842}
843
844static void vhci_device_unusable(struct usbip_device *ud)
845{
846 spin_lock(&ud->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600847 ud->status = VDEV_ST_ERROR;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600848 spin_unlock(&ud->lock);
849}
850
851static void vhci_device_init(struct vhci_device *vdev)
852{
853 memset(vdev, 0, sizeof(*vdev));
854
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600855 vdev->ud.side = USBIP_VHCI;
856 vdev->ud.status = VDEV_ST_NULL;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600857 spin_lock_init(&vdev->ud.lock);
858
859 INIT_LIST_HEAD(&vdev->priv_rx);
860 INIT_LIST_HEAD(&vdev->priv_tx);
861 INIT_LIST_HEAD(&vdev->unlink_tx);
862 INIT_LIST_HEAD(&vdev->unlink_rx);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600863 spin_lock_init(&vdev->priv_lock);
864
865 init_waitqueue_head(&vdev->waitq_tx);
866
867 vdev->ud.eh_ops.shutdown = vhci_shutdown_connection;
868 vdev->ud.eh_ops.reset = vhci_device_reset;
869 vdev->ud.eh_ops.unusable = vhci_device_unusable;
870
871 usbip_start_eh(&vdev->ud);
872}
873
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600874static int vhci_start(struct usb_hcd *hcd)
875{
876 struct vhci_hcd *vhci = hcd_to_vhci(hcd);
877 int rhport;
878 int err = 0;
879
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600880 usbip_dbg_vhci_hc("enter vhci_start\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600881
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600882 /* initialize private data of usb_hcd */
883
884 for (rhport = 0; rhport < VHCI_NPORTS; rhport++) {
885 struct vhci_device *vdev = &vhci->vdev[rhport];
Pawel Lebioda3eed8c02014-05-14 19:20:27 +0200886
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600887 vhci_device_init(vdev);
888 vdev->rhport = rhport;
889 }
890
891 atomic_set(&vhci->seqnum, 0);
892 spin_lock_init(&vhci->lock);
893
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600894 hcd->power_budget = 0; /* no limit */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600895 hcd->uses_new_polling = 1;
896
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600897 /* vhci_hcd is now ready to be controlled through sysfs */
898 err = sysfs_create_group(&vhci_dev(vhci)->kobj, &dev_attr_group);
899 if (err) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700900 pr_err("create sysfs files\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600901 return err;
902 }
903
904 return 0;
905}
906
907static void vhci_stop(struct usb_hcd *hcd)
908{
909 struct vhci_hcd *vhci = hcd_to_vhci(hcd);
910 int rhport = 0;
911
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600912 usbip_dbg_vhci_hc("stop VHCI controller\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600913
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600914 /* 1. remove the userland interface of vhci_hcd */
915 sysfs_remove_group(&vhci_dev(vhci)->kobj, &dev_attr_group);
916
917 /* 2. shutdown all the ports of vhci_hcd */
Aldo Iljazi909cc6f2013-12-02 15:22:29 +0200918 for (rhport = 0; rhport < VHCI_NPORTS; rhport++) {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600919 struct vhci_device *vdev = &vhci->vdev[rhport];
920
921 usbip_event_add(&vdev->ud, VDEV_EVENT_REMOVED);
922 usbip_stop_eh(&vdev->ud);
923 }
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600924}
925
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600926static int vhci_get_frame_number(struct usb_hcd *hcd)
927{
matt mooney1a4b6f62011-05-19 16:47:32 -0700928 pr_err("Not yet implemented\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600929 return 0;
930}
931
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600932#ifdef CONFIG_PM
933
934/* FIXME: suspend/resume */
935static int vhci_bus_suspend(struct usb_hcd *hcd)
936{
937 struct vhci_hcd *vhci = hcd_to_vhci(hcd);
938
939 dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
940
Harvey Yang50b66b52013-01-22 13:31:31 +0800941 spin_lock(&vhci->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600942 hcd->state = HC_STATE_SUSPENDED;
Harvey Yang50b66b52013-01-22 13:31:31 +0800943 spin_unlock(&vhci->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600944
945 return 0;
946}
947
948static int vhci_bus_resume(struct usb_hcd *hcd)
949{
950 struct vhci_hcd *vhci = hcd_to_vhci(hcd);
951 int rc = 0;
952
953 dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
954
Harvey Yang50b66b52013-01-22 13:31:31 +0800955 spin_lock(&vhci->lock);
Stefan Reifc46cb542013-02-22 12:13:32 +0100956 if (!HCD_HW_ACCESSIBLE(hcd))
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600957 rc = -ESHUTDOWN;
Stefan Reifc46cb542013-02-22 12:13:32 +0100958 else
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600959 hcd->state = HC_STATE_RUNNING;
Harvey Yang50b66b52013-01-22 13:31:31 +0800960 spin_unlock(&vhci->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600961
matt mooney87352762011-05-19 21:36:56 -0700962 return rc;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600963}
964
965#else
966
967#define vhci_bus_suspend NULL
968#define vhci_bus_resume NULL
969#endif
970
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600971static struct hc_driver vhci_hc_driver = {
972 .description = driver_name,
973 .product_desc = driver_desc,
974 .hcd_priv_size = sizeof(struct vhci_hcd),
975
976 .flags = HCD_USB2,
977
978 .start = vhci_start,
Ruslan Pisarev00512682010-03-15 17:06:44 +0200979 .stop = vhci_stop,
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600980
981 .urb_enqueue = vhci_urb_enqueue,
982 .urb_dequeue = vhci_urb_dequeue,
983
984 .get_frame_number = vhci_get_frame_number,
985
986 .hub_status_data = vhci_hub_status,
987 .hub_control = vhci_hub_control,
988 .bus_suspend = vhci_bus_suspend,
989 .bus_resume = vhci_bus_resume,
990};
991
992static int vhci_hcd_probe(struct platform_device *pdev)
993{
994 struct usb_hcd *hcd;
995 int ret;
996
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600997 usbip_dbg_vhci_hc("name %s id %d\n", pdev->name, pdev->id);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600998
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600999 /*
1000 * Allocate and initialize hcd.
1001 * Our private data is also allocated automatically.
1002 */
Kay Sieverse9133972008-10-30 01:59:32 +01001003 hcd = usb_create_hcd(&vhci_hc_driver, &pdev->dev, dev_name(&pdev->dev));
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001004 if (!hcd) {
matt mooney1a4b6f62011-05-19 16:47:32 -07001005 pr_err("create hcd failed\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001006 return -ENOMEM;
1007 }
Alan Sterncee6a262011-05-02 14:21:44 -04001008 hcd->has_tt = 1;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001009
1010 /* this is private data for vhci_hcd */
1011 the_controller = hcd_to_vhci(hcd);
1012
1013 /*
1014 * Finish generic HCD structure initialization and register.
1015 * Call the driver's reset() and start() routines.
1016 */
1017 ret = usb_add_hcd(hcd, 0, 0);
1018 if (ret != 0) {
matt mooney1a4b6f62011-05-19 16:47:32 -07001019 pr_err("usb_add_hcd failed %d\n", ret);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001020 usb_put_hcd(hcd);
1021 the_controller = NULL;
1022 return ret;
1023 }
1024
Brian G. Merrellb8868e42009-07-21 00:46:13 -06001025 usbip_dbg_vhci_hc("bye\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001026 return 0;
1027}
1028
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001029static int vhci_hcd_remove(struct platform_device *pdev)
1030{
1031 struct usb_hcd *hcd;
1032
1033 hcd = platform_get_drvdata(pdev);
1034 if (!hcd)
1035 return 0;
1036
1037 /*
1038 * Disconnects the root hub,
1039 * then reverses the effects of usb_add_hcd(),
1040 * invoking the HCD's stop() methods.
1041 */
1042 usb_remove_hcd(hcd);
1043 usb_put_hcd(hcd);
1044 the_controller = NULL;
1045
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001046 return 0;
1047}
1048
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001049#ifdef CONFIG_PM
1050
1051/* what should happen for USB/IP under suspend/resume? */
1052static int vhci_hcd_suspend(struct platform_device *pdev, pm_message_t state)
1053{
1054 struct usb_hcd *hcd;
1055 int rhport = 0;
1056 int connected = 0;
1057 int ret = 0;
1058
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001059 hcd = platform_get_drvdata(pdev);
1060
1061 spin_lock(&the_controller->lock);
1062
1063 for (rhport = 0; rhport < VHCI_NPORTS; rhport++)
1064 if (the_controller->port_status[rhport] &
matt mooney071d1d42011-05-06 03:47:50 -07001065 USB_PORT_STAT_CONNECTION)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001066 connected += 1;
1067
1068 spin_unlock(&the_controller->lock);
1069
1070 if (connected > 0) {
Cédric Cabessa7923a652014-03-19 23:04:57 +01001071 dev_info(&pdev->dev,
1072 "We have %d active connection%s. Do not suspend.\n",
1073 connected, (connected == 1 ? "" : "s"));
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001074 ret = -EBUSY;
1075 } else {
matt mooney1a4b6f62011-05-19 16:47:32 -07001076 dev_info(&pdev->dev, "suspend vhci_hcd");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001077 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1078 }
1079
1080 return ret;
1081}
1082
1083static int vhci_hcd_resume(struct platform_device *pdev)
1084{
1085 struct usb_hcd *hcd;
1086
1087 dev_dbg(&pdev->dev, "%s\n", __func__);
1088
1089 hcd = platform_get_drvdata(pdev);
1090 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1091 usb_hcd_poll_rh_status(hcd);
1092
1093 return 0;
1094}
1095
1096#else
1097
1098#define vhci_hcd_suspend NULL
1099#define vhci_hcd_resume NULL
1100
1101#endif
1102
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001103static struct platform_driver vhci_driver = {
1104 .probe = vhci_hcd_probe,
Bill Pembertonf307da92012-11-19 13:21:02 -05001105 .remove = vhci_hcd_remove,
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001106 .suspend = vhci_hcd_suspend,
1107 .resume = vhci_hcd_resume,
1108 .driver = {
Geert Uytterhoeven1c126bc2013-11-12 20:07:19 +01001109 .name = driver_name,
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001110 },
1111};
1112
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001113/*
1114 * The VHCI 'device' is 'virtual'; not a real plug&play hardware.
1115 * We need to add this virtual device as a platform device arbitrarily:
1116 * 1. platform_device_register()
1117 */
1118static void the_pdev_release(struct device *dev)
1119{
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001120}
1121
1122static struct platform_device the_pdev = {
1123 /* should be the same name as driver_name */
Geert Uytterhoeven6fafecb2013-11-12 20:07:21 +01001124 .name = driver_name,
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001125 .id = -1,
1126 .dev = {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001127 .release = the_pdev_release,
1128 },
1129};
1130
matt mooney0392bbb2011-05-19 21:37:06 -07001131static int __init vhci_hcd_init(void)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001132{
1133 int ret;
1134
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001135 if (usb_disabled())
1136 return -ENODEV;
1137
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001138 ret = platform_driver_register(&vhci_driver);
navin patidar4d421952013-09-10 10:43:39 +05301139 if (ret)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001140 goto err_driver_register;
1141
1142 ret = platform_device_register(&the_pdev);
navin patidar4d421952013-09-10 10:43:39 +05301143 if (ret)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001144 goto err_platform_device_register;
1145
matt mooney1a4b6f62011-05-19 16:47:32 -07001146 pr_info(DRIVER_DESC " v" USBIP_VERSION "\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001147 return ret;
1148
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001149err_platform_device_register:
1150 platform_driver_unregister(&vhci_driver);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001151err_driver_register:
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001152 return ret;
1153}
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001154
matt mooney0392bbb2011-05-19 21:37:06 -07001155static void __exit vhci_hcd_exit(void)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001156{
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001157 platform_device_unregister(&the_pdev);
1158 platform_driver_unregister(&vhci_driver);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001159}
matt mooney071d1d42011-05-06 03:47:50 -07001160
matt mooney0392bbb2011-05-19 21:37:06 -07001161module_init(vhci_hcd_init);
1162module_exit(vhci_hcd_exit);
matt mooney071d1d42011-05-06 03:47:50 -07001163
1164MODULE_AUTHOR(DRIVER_AUTHOR);
1165MODULE_DESCRIPTION(DRIVER_DESC);
matt mooney4ce0a412011-05-06 03:47:56 -07001166MODULE_LICENSE("GPL");
matt mooney6973c6f2011-05-11 01:54:14 -07001167MODULE_VERSION(USBIP_VERSION);