blob: 11f6f61c2381b287c74d2cb424cadb3086d58fd2 [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;
Sergei Shtylyov1cc9af82015-01-19 02:00:56 +0300221 desc->wHubCharacteristics = __constant_cpu_to_le16(
222 HUB_CHAR_INDV_PORT_LPSM | HUB_CHAR_COMMON_OCPM);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600223 desc->bNbrPorts = VHCI_NPORTS;
John Youndbe79bb2001-09-17 00:00:00 -0700224 desc->u.hs.DeviceRemovable[0] = 0xff;
225 desc->u.hs.DeviceRemovable[1] = 0xff;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600226}
227
228static int vhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
229 u16 wIndex, char *buf, u16 wLength)
230{
231 struct vhci_hcd *dum;
232 int retval = 0;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600233 int rhport;
234
235 u32 prev_port_status[VHCI_NPORTS];
236
Alan Stern541c7d42010-06-22 16:39:10 -0400237 if (!HCD_HW_ACCESSIBLE(hcd))
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600238 return -ETIMEDOUT;
239
240 /*
241 * NOTE:
242 * wIndex shows the port number and begins from 1.
243 */
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600244 usbip_dbg_vhci_rh("typeReq %x wValue %x wIndex %x\n", typeReq, wValue,
matt mooney071d1d42011-05-06 03:47:50 -0700245 wIndex);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600246 if (wIndex > VHCI_NPORTS)
matt mooney1a4b6f62011-05-19 16:47:32 -0700247 pr_err("invalid port number %d\n", wIndex);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600248 rhport = ((__u8)(wIndex & 0x00ff)) - 1;
249
250 dum = hcd_to_vhci(hcd);
251
Harvey Yang50b66b52013-01-22 13:31:31 +0800252 spin_lock(&dum->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600253
254 /* store old status and compare now and old later */
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600255 if (usbip_dbg_flag_vhci_rh) {
Márton Németh6f480bf2011-06-13 23:30:09 +0200256 memcpy(prev_port_status, dum->port_status,
257 sizeof(prev_port_status));
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600258 }
259
260 switch (typeReq) {
261 case ClearHubFeature:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600262 usbip_dbg_vhci_rh(" ClearHubFeature\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600263 break;
264 case ClearPortFeature:
265 switch (wValue) {
266 case USB_PORT_FEAT_SUSPEND:
267 if (dum->port_status[rhport] & USB_PORT_STAT_SUSPEND) {
268 /* 20msec signaling */
269 dum->resuming = 1;
270 dum->re_timeout =
271 jiffies + msecs_to_jiffies(20);
272 }
273 break;
274 case USB_PORT_FEAT_POWER:
Cédric Cabessa7923a652014-03-19 23:04:57 +0100275 usbip_dbg_vhci_rh(
276 " ClearPortFeature: USB_PORT_FEAT_POWER\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600277 dum->port_status[rhport] = 0;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600278 dum->resuming = 0;
279 break;
280 case USB_PORT_FEAT_C_RESET:
Cédric Cabessa7923a652014-03-19 23:04:57 +0100281 usbip_dbg_vhci_rh(
282 " ClearPortFeature: USB_PORT_FEAT_C_RESET\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600283 switch (dum->vdev[rhport].speed) {
284 case USB_SPEED_HIGH:
285 dum->port_status[rhport] |=
matt mooney071d1d42011-05-06 03:47:50 -0700286 USB_PORT_STAT_HIGH_SPEED;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600287 break;
288 case USB_SPEED_LOW:
289 dum->port_status[rhport] |=
matt mooney071d1d42011-05-06 03:47:50 -0700290 USB_PORT_STAT_LOW_SPEED;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600291 break;
292 default:
293 break;
294 }
295 default:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600296 usbip_dbg_vhci_rh(" ClearPortFeature: default %x\n",
matt mooney071d1d42011-05-06 03:47:50 -0700297 wValue);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600298 dum->port_status[rhport] &= ~(1 << wValue);
matt mooney49aecef2011-05-06 03:47:54 -0700299 break;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600300 }
301 break;
302 case GetHubDescriptor:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600303 usbip_dbg_vhci_rh(" GetHubDescriptor\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600304 hub_descriptor((struct usb_hub_descriptor *) buf);
305 break;
306 case GetHubStatus:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600307 usbip_dbg_vhci_rh(" GetHubStatus\n");
Alexey Tuliaa06a24d2014-06-13 11:35:13 +0300308 *(__le32 *) buf = cpu_to_le32(0);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600309 break;
310 case GetPortStatus:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600311 usbip_dbg_vhci_rh(" GetPortStatus port %x\n", wIndex);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600312 if (wIndex > VHCI_NPORTS || wIndex < 1) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700313 pr_err("invalid port number %d\n", wIndex);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600314 retval = -EPIPE;
315 }
316
Bart Westgeestc7f00892012-10-10 13:34:27 -0400317 /* we do not care about resume. */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600318
319 /* whoever resets or resumes must GetPortStatus to
320 * complete it!!
Bart Westgeestc7f00892012-10-10 13:34:27 -0400321 */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600322 if (dum->resuming && time_after(jiffies, dum->re_timeout)) {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600323 dum->port_status[rhport] |=
matt mooney87352762011-05-19 21:36:56 -0700324 (1 << USB_PORT_FEAT_C_SUSPEND);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600325 dum->port_status[rhport] &=
matt mooney87352762011-05-19 21:36:56 -0700326 ~(1 << USB_PORT_FEAT_SUSPEND);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600327 dum->resuming = 0;
328 dum->re_timeout = 0;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600329 }
330
331 if ((dum->port_status[rhport] & (1 << USB_PORT_FEAT_RESET)) !=
matt mooney071d1d42011-05-06 03:47:50 -0700332 0 && time_after(jiffies, dum->re_timeout)) {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600333 dum->port_status[rhport] |=
matt mooney071d1d42011-05-06 03:47:50 -0700334 (1 << USB_PORT_FEAT_C_RESET);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600335 dum->port_status[rhport] &=
matt mooney071d1d42011-05-06 03:47:50 -0700336 ~(1 << USB_PORT_FEAT_RESET);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600337 dum->re_timeout = 0;
338
339 if (dum->vdev[rhport].ud.status ==
matt mooney071d1d42011-05-06 03:47:50 -0700340 VDEV_ST_NOTASSIGNED) {
Cédric Cabessa7923a652014-03-19 23:04:57 +0100341 usbip_dbg_vhci_rh(
342 " enable rhport %d (status %u)\n",
343 rhport,
344 dum->vdev[rhport].ud.status);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600345 dum->port_status[rhport] |=
matt mooney071d1d42011-05-06 03:47:50 -0700346 USB_PORT_STAT_ENABLE;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600347 }
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600348 }
Teodora Balutad0306a52013-11-04 13:12:12 +0200349 ((__le16 *) buf)[0] = cpu_to_le16(dum->port_status[rhport]);
Cédric Cabessa7923a652014-03-19 23:04:57 +0100350 ((__le16 *) buf)[1] =
351 cpu_to_le16(dum->port_status[rhport] >> 16);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600352
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600353 usbip_dbg_vhci_rh(" GetPortStatus bye %x %x\n", ((u16 *)buf)[0],
matt mooney071d1d42011-05-06 03:47:50 -0700354 ((u16 *)buf)[1]);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600355 break;
356 case SetHubFeature:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600357 usbip_dbg_vhci_rh(" SetHubFeature\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600358 retval = -EPIPE;
359 break;
360 case SetPortFeature:
361 switch (wValue) {
362 case USB_PORT_FEAT_SUSPEND:
Cédric Cabessa7923a652014-03-19 23:04:57 +0100363 usbip_dbg_vhci_rh(
364 " SetPortFeature: USB_PORT_FEAT_SUSPEND\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600365 break;
366 case USB_PORT_FEAT_RESET:
Cédric Cabessa7923a652014-03-19 23:04:57 +0100367 usbip_dbg_vhci_rh(
368 " SetPortFeature: USB_PORT_FEAT_RESET\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600369 /* if it's already running, disconnect first */
370 if (dum->port_status[rhport] & USB_PORT_STAT_ENABLE) {
371 dum->port_status[rhport] &=
matt mooney071d1d42011-05-06 03:47:50 -0700372 ~(USB_PORT_STAT_ENABLE |
373 USB_PORT_STAT_LOW_SPEED |
374 USB_PORT_STAT_HIGH_SPEED);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600375 /* FIXME test that code path! */
376 }
377 /* 50msec reset signaling */
378 dum->re_timeout = jiffies + msecs_to_jiffies(50);
379
380 /* FALLTHROUGH */
381 default:
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600382 usbip_dbg_vhci_rh(" SetPortFeature: default %d\n",
matt mooney071d1d42011-05-06 03:47:50 -0700383 wValue);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600384 dum->port_status[rhport] |= (1 << wValue);
matt mooney49aecef2011-05-06 03:47:54 -0700385 break;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600386 }
387 break;
388
389 default:
matt mooney1a4b6f62011-05-19 16:47:32 -0700390 pr_err("default: no such request\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600391
392 /* "protocol stall" on error */
393 retval = -EPIPE;
394 }
395
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600396 if (usbip_dbg_flag_vhci_rh) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700397 pr_debug("port %d\n", rhport);
Márton Némethbfb4ce22011-06-13 23:47:39 +0200398 /* Only dump valid port status */
399 if (rhport >= 0) {
Márton Németh4a3ca2b2011-06-14 08:28:26 +0200400 dump_port_status_diff(prev_port_status[rhport],
401 dum->port_status[rhport]);
Márton Némethbfb4ce22011-06-13 23:47:39 +0200402 }
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600403 }
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600404 usbip_dbg_vhci_rh(" bye\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600405
Harvey Yang50b66b52013-01-22 13:31:31 +0800406 spin_unlock(&dum->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600407
408 return retval;
409}
410
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600411static struct vhci_device *get_vdev(struct usb_device *udev)
412{
413 int i;
414
415 if (!udev)
416 return NULL;
417
418 for (i = 0; i < VHCI_NPORTS; i++)
419 if (the_controller->vdev[i].udev == udev)
420 return port_to_vdev(i);
421
422 return NULL;
423}
424
425static void vhci_tx_urb(struct urb *urb)
426{
427 struct vhci_device *vdev = get_vdev(urb->dev);
428 struct vhci_priv *priv;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600429
430 if (!vdev) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700431 pr_err("could not get virtual device");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600432 return;
433 }
434
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600435 priv = kzalloc(sizeof(struct vhci_priv), GFP_ATOMIC);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600436 if (!priv) {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600437 usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_MALLOC);
438 return;
439 }
440
Joe Perches78110bb2013-02-11 09:41:29 -0800441 spin_lock(&vdev->priv_lock);
442
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600443 priv->seqnum = atomic_inc_return(&the_controller->seqnum);
444 if (priv->seqnum == 0xffff)
matt mooney1a4b6f62011-05-19 16:47:32 -0700445 dev_info(&urb->dev->dev, "seqnum max\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600446
447 priv->vdev = vdev;
448 priv->urb = urb;
449
450 urb->hcpriv = (void *) priv;
451
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600452 list_add_tail(&priv->list, &vdev->priv_tx);
453
454 wake_up(&vdev->waitq_tx);
Harvey Yang50b66b52013-01-22 13:31:31 +0800455 spin_unlock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600456}
457
458static int vhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb,
459 gfp_t mem_flags)
460{
461 struct device *dev = &urb->dev->dev;
462 int ret = 0;
Max Vozeler6d212152011-01-12 15:02:02 +0200463 struct vhci_device *vdev;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600464
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600465 usbip_dbg_vhci_hc("enter, usb_hcd %p urb %p mem_flags %d\n",
matt mooney071d1d42011-05-06 03:47:50 -0700466 hcd, urb, mem_flags);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600467
468 /* patch to usb_sg_init() is in 2.5.60 */
469 BUG_ON(!urb->transfer_buffer && urb->transfer_buffer_length);
470
Harvey Yang50b66b52013-01-22 13:31:31 +0800471 spin_lock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600472
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600473 if (urb->status != -EINPROGRESS) {
474 dev_err(dev, "URB already unlinked!, status %d\n", urb->status);
Harvey Yang50b66b52013-01-22 13:31:31 +0800475 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600476 return urb->status;
477 }
478
Max Vozeler01446ef2011-01-12 15:02:05 +0200479 vdev = port_to_vdev(urb->dev->portnum-1);
Max Vozeler6d212152011-01-12 15:02:02 +0200480
481 /* refuse enqueue for dead connection */
482 spin_lock(&vdev->ud.lock);
matt mooney071d1d42011-05-06 03:47:50 -0700483 if (vdev->ud.status == VDEV_ST_NULL ||
484 vdev->ud.status == VDEV_ST_ERROR) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700485 dev_err(dev, "enqueue for inactive port %d\n", vdev->rhport);
Max Vozeler6d212152011-01-12 15:02:02 +0200486 spin_unlock(&vdev->ud.lock);
Harvey Yang50b66b52013-01-22 13:31:31 +0800487 spin_unlock(&the_controller->lock);
Max Vozeler6d212152011-01-12 15:02:02 +0200488 return -ENODEV;
489 }
490 spin_unlock(&vdev->ud.lock);
491
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600492 ret = usb_hcd_link_urb_to_ep(hcd, urb);
493 if (ret)
494 goto no_need_unlink;
495
496 /*
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600497 * The enumeration process is as follows;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600498 *
499 * 1. Get_Descriptor request to DevAddrs(0) EndPoint(0)
500 * to get max packet length of default pipe
501 *
502 * 2. Set_Address request to DevAddr(0) EndPoint(0)
503 *
504 */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600505 if (usb_pipedevice(urb->pipe) == 0) {
506 __u8 type = usb_pipetype(urb->pipe);
507 struct usb_ctrlrequest *ctrlreq =
matt mooney071d1d42011-05-06 03:47:50 -0700508 (struct usb_ctrlrequest *) urb->setup_packet;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600509
510 if (type != PIPE_CONTROL || !ctrlreq) {
511 dev_err(dev, "invalid request to devnum 0\n");
Shan Weia7cd5822009-07-24 16:57:35 +0800512 ret = -EINVAL;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600513 goto no_need_xmit;
514 }
515
516 switch (ctrlreq->bRequest) {
517 case USB_REQ_SET_ADDRESS:
518 /* set_address may come when a device is reset */
519 dev_info(dev, "SetAddress Request (%d) to port %d\n",
520 ctrlreq->wValue, vdev->rhport);
521
Markus Elfring03f3df82014-11-21 16:33:18 +0100522 usb_put_dev(vdev->udev);
Max Vozeler7606ee82011-01-12 15:02:00 +0200523 vdev->udev = usb_get_dev(urb->dev);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600524
525 spin_lock(&vdev->ud.lock);
526 vdev->ud.status = VDEV_ST_USED;
527 spin_unlock(&vdev->ud.lock);
528
529 if (urb->status == -EINPROGRESS) {
530 /* This request is successfully completed. */
531 /* If not -EINPROGRESS, possibly unlinked. */
532 urb->status = 0;
533 }
534
535 goto no_need_xmit;
536
537 case USB_REQ_GET_DESCRIPTOR:
Teodora Balutad0306a52013-11-04 13:12:12 +0200538 if (ctrlreq->wValue == cpu_to_le16(USB_DT_DEVICE << 8))
Cédric Cabessa7923a652014-03-19 23:04:57 +0100539 usbip_dbg_vhci_hc(
540 "Not yet?:Get_Descriptor to device 0 (get max pipe size)\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600541
Markus Elfring03f3df82014-11-21 16:33:18 +0100542 usb_put_dev(vdev->udev);
Max Vozeler7606ee82011-01-12 15:02:00 +0200543 vdev->udev = usb_get_dev(urb->dev);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600544 goto out;
545
546 default:
547 /* NOT REACHED */
Cédric Cabessa7923a652014-03-19 23:04:57 +0100548 dev_err(dev,
549 "invalid request to devnum 0 bRequest %u, wValue %u\n",
550 ctrlreq->bRequest,
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600551 ctrlreq->wValue);
552 ret = -EINVAL;
553 goto no_need_xmit;
554 }
555
556 }
557
558out:
559 vhci_tx_urb(urb);
Harvey Yang50b66b52013-01-22 13:31:31 +0800560 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600561
562 return 0;
563
564no_need_xmit:
565 usb_hcd_unlink_urb_from_ep(hcd, urb);
566no_need_unlink:
Harvey Yang50b66b52013-01-22 13:31:31 +0800567 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600568 usb_hcd_giveback_urb(vhci_to_hcd(the_controller), urb, urb->status);
Shan Weia7cd5822009-07-24 16:57:35 +0800569 return ret;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600570}
571
572/*
573 * vhci_rx gives back the urb after receiving the reply of the urb. If an
574 * unlink pdu is sent or not, vhci_rx receives a normal return pdu and gives
575 * back its urb. For the driver unlinking the urb, the content of the urb is
576 * not important, but the calling to its completion handler is important; the
577 * completion of unlinking is notified by the completion handler.
578 *
579 *
580 * CLIENT SIDE
581 *
582 * - When vhci_hcd receives RET_SUBMIT,
583 *
584 * - case 1a). the urb of the pdu is not unlinking.
585 * - normal case
586 * => just give back the urb
587 *
588 * - case 1b). the urb of the pdu is unlinking.
589 * - usbip.ko will return a reply of the unlinking request.
590 * => give back the urb now and go to case 2b).
591 *
592 * - When vhci_hcd receives RET_UNLINK,
593 *
594 * - case 2a). a submit request is still pending in vhci_hcd.
595 * - urb was really pending in usbip.ko and urb_unlink_urb() was
596 * completed there.
597 * => free a pending submit request
598 * => notify unlink completeness by giving back the urb
599 *
600 * - case 2b). a submit request is *not* pending in vhci_hcd.
601 * - urb was already given back to the core driver.
602 * => do not give back the urb
603 *
604 *
605 * SERVER SIDE
606 *
607 * - When usbip receives CMD_UNLINK,
608 *
609 * - case 3a). the urb of the unlink request is now in submission.
610 * => do usb_unlink_urb().
611 * => after the unlink is completed, send RET_UNLINK.
612 *
613 * - case 3b). the urb of the unlink request is not in submission.
614 * - may be already completed or never be received
615 * => send RET_UNLINK
616 *
617 */
618static int vhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
619{
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600620 struct vhci_priv *priv;
621 struct vhci_device *vdev;
622
matt mooney1a4b6f62011-05-19 16:47:32 -0700623 pr_info("dequeue a urb %p\n", urb);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600624
Harvey Yang50b66b52013-01-22 13:31:31 +0800625 spin_lock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600626
627 priv = urb->hcpriv;
628 if (!priv) {
629 /* URB was never linked! or will be soon given back by
630 * vhci_rx. */
Harvey Yang50b66b52013-01-22 13:31:31 +0800631 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600632 return 0;
633 }
634
635 {
636 int ret = 0;
Pawel Lebioda3eed8c02014-05-14 19:20:27 +0200637
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600638 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
639 if (ret) {
Harvey Yang50b66b52013-01-22 13:31:31 +0800640 spin_unlock(&the_controller->lock);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600641 return ret;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600642 }
643 }
644
645 /* send unlink request here? */
646 vdev = priv->vdev;
647
648 if (!vdev->ud.tcp_socket) {
649 /* tcp connection is closed */
Harvey Yang50b66b52013-01-22 13:31:31 +0800650 spin_lock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600651
matt mooney1a4b6f62011-05-19 16:47:32 -0700652 pr_info("device %p seems to be disconnected\n", vdev);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600653 list_del(&priv->list);
654 kfree(priv);
655 urb->hcpriv = NULL;
656
Harvey Yang50b66b52013-01-22 13:31:31 +0800657 spin_unlock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600658
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600659 /*
660 * If tcp connection is alive, we have sent CMD_UNLINK.
661 * vhci_rx will receive RET_UNLINK and give back the URB.
662 * Otherwise, we give back it here.
663 */
matt mooney1a4b6f62011-05-19 16:47:32 -0700664 pr_info("gives back urb %p\n", urb);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600665
666 usb_hcd_unlink_urb_from_ep(hcd, urb);
667
Harvey Yang50b66b52013-01-22 13:31:31 +0800668 spin_unlock(&the_controller->lock);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600669 usb_hcd_giveback_urb(vhci_to_hcd(the_controller), urb,
matt mooney071d1d42011-05-06 03:47:50 -0700670 urb->status);
Harvey Yang50b66b52013-01-22 13:31:31 +0800671 spin_lock(&the_controller->lock);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600672
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600673 } else {
674 /* tcp connection is alive */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600675 struct vhci_unlink *unlink;
676
Harvey Yang50b66b52013-01-22 13:31:31 +0800677 spin_lock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600678
679 /* setup CMD_UNLINK pdu */
680 unlink = kzalloc(sizeof(struct vhci_unlink), GFP_ATOMIC);
681 if (!unlink) {
Harvey Yang50b66b52013-01-22 13:31:31 +0800682 spin_unlock(&vdev->priv_lock);
683 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600684 usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_MALLOC);
685 return -ENOMEM;
686 }
687
688 unlink->seqnum = atomic_inc_return(&the_controller->seqnum);
689 if (unlink->seqnum == 0xffff)
matt mooney1a4b6f62011-05-19 16:47:32 -0700690 pr_info("seqnum max\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600691
692 unlink->unlink_seqnum = priv->seqnum;
693
matt mooney1a4b6f62011-05-19 16:47:32 -0700694 pr_info("device %p seems to be still connected\n", vdev);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600695
696 /* send cmd_unlink and try to cancel the pending URB in the
697 * peer */
698 list_add_tail(&unlink->list, &vdev->unlink_tx);
699 wake_up(&vdev->waitq_tx);
700
Harvey Yang50b66b52013-01-22 13:31:31 +0800701 spin_unlock(&vdev->priv_lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600702 }
703
Harvey Yang50b66b52013-01-22 13:31:31 +0800704 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600705
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600706 usbip_dbg_vhci_hc("leave\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600707 return 0;
708}
709
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600710static void vhci_device_unlink_cleanup(struct vhci_device *vdev)
711{
712 struct vhci_unlink *unlink, *tmp;
713
Bernard Blackham236742d2012-09-06 20:25:04 +1000714 spin_lock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600715 spin_lock(&vdev->priv_lock);
716
717 list_for_each_entry_safe(unlink, tmp, &vdev->unlink_tx, list) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700718 pr_info("unlink cleanup tx %lu\n", unlink->unlink_seqnum);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600719 list_del(&unlink->list);
720 kfree(unlink);
721 }
722
Bernard Blackham236742d2012-09-06 20:25:04 +1000723 while (!list_empty(&vdev->unlink_rx)) {
Max Vozelerb92a5e22011-01-12 15:02:01 +0200724 struct urb *urb;
725
Bernard Blackham236742d2012-09-06 20:25:04 +1000726 unlink = list_first_entry(&vdev->unlink_rx, struct vhci_unlink,
727 list);
728
Max Vozelerb92a5e22011-01-12 15:02:01 +0200729 /* give back URB of unanswered unlink request */
matt mooney1a4b6f62011-05-19 16:47:32 -0700730 pr_info("unlink cleanup rx %lu\n", unlink->unlink_seqnum);
Max Vozelerb92a5e22011-01-12 15:02:01 +0200731
732 urb = pickup_urb_and_free_priv(vdev, unlink->unlink_seqnum);
733 if (!urb) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700734 pr_info("the urb (seqnum %lu) was already given back\n",
735 unlink->unlink_seqnum);
Max Vozelerb92a5e22011-01-12 15:02:01 +0200736 list_del(&unlink->list);
737 kfree(unlink);
738 continue;
739 }
740
741 urb->status = -ENODEV;
742
Max Vozelerb92a5e22011-01-12 15:02:01 +0200743 usb_hcd_unlink_urb_from_ep(vhci_to_hcd(the_controller), urb);
Bernard Blackham236742d2012-09-06 20:25:04 +1000744
745 list_del(&unlink->list);
746
747 spin_unlock(&vdev->priv_lock);
Max Vozelerb92a5e22011-01-12 15:02:01 +0200748 spin_unlock(&the_controller->lock);
749
matt mooney071d1d42011-05-06 03:47:50 -0700750 usb_hcd_giveback_urb(vhci_to_hcd(the_controller), urb,
751 urb->status);
Max Vozelerb92a5e22011-01-12 15:02:01 +0200752
Bernard Blackham236742d2012-09-06 20:25:04 +1000753 spin_lock(&the_controller->lock);
754 spin_lock(&vdev->priv_lock);
755
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600756 kfree(unlink);
757 }
758
759 spin_unlock(&vdev->priv_lock);
Bernard Blackham236742d2012-09-06 20:25:04 +1000760 spin_unlock(&the_controller->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600761}
762
763/*
764 * The important thing is that only one context begins cleanup.
765 * This is why error handling and cleanup become simple.
766 * We do not want to consider race condition as possible.
767 */
768static void vhci_shutdown_connection(struct usbip_device *ud)
769{
770 struct vhci_device *vdev = container_of(ud, struct vhci_device, ud);
771
772 /* need this? see stub_dev.c */
773 if (ud->tcp_socket) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700774 pr_debug("shutdown tcp_socket %p\n", ud->tcp_socket);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600775 kernel_sock_shutdown(ud->tcp_socket, SHUT_RDWR);
776 }
777
Bart Westgeestc7f00892012-10-10 13:34:27 -0400778 /* kill threads related to this sdev */
navincbf7d122012-09-19 17:04:51 +0530779 if (vdev->ud.tcp_rx) {
Oleg Nesterovba46ce32012-03-13 19:07:18 +0100780 kthread_stop_put(vdev->ud.tcp_rx);
navincbf7d122012-09-19 17:04:51 +0530781 vdev->ud.tcp_rx = NULL;
782 }
783 if (vdev->ud.tcp_tx) {
Oleg Nesterovba46ce32012-03-13 19:07:18 +0100784 kthread_stop_put(vdev->ud.tcp_tx);
navincbf7d122012-09-19 17:04:51 +0530785 vdev->ud.tcp_tx = NULL;
786 }
matt mooney1a4b6f62011-05-19 16:47:32 -0700787 pr_info("stop threads\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600788
789 /* active connection is closed */
Bernard Blackham3d0a2a22012-10-22 06:45:00 +1100790 if (vdev->ud.tcp_socket) {
Al Viro964ea962014-03-05 20:33:08 -0500791 sockfd_put(vdev->ud.tcp_socket);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600792 vdev->ud.tcp_socket = NULL;
793 }
matt mooney1a4b6f62011-05-19 16:47:32 -0700794 pr_info("release socket\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600795
796 vhci_device_unlink_cleanup(vdev);
797
798 /*
799 * rh_port_disconnect() is a trigger of ...
800 * usb_disable_device():
801 * disable all the endpoints for a USB device.
802 * usb_disable_endpoint():
803 * disable endpoints. pending urbs are unlinked(dequeued).
804 *
805 * NOTE: After calling rh_port_disconnect(), the USB device drivers of a
Justin P. Mattock4ec26012012-08-06 08:00:27 -0700806 * detached device should release used urbs in a cleanup function (i.e.
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600807 * xxx_disconnect()). Therefore, vhci_hcd does not need to release
808 * pushed urbs and their private data in this function.
809 *
Justin P. Mattock4ec26012012-08-06 08:00:27 -0700810 * NOTE: vhci_dequeue() must be considered carefully. When shutting down
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600811 * a connection, vhci_shutdown_connection() expects vhci_dequeue()
812 * gives back pushed urbs and frees their private data by request of
813 * the cleanup function of a USB driver. When unlinking a urb with an
814 * active connection, vhci_dequeue() does not give back the urb which
815 * is actually given back by vhci_rx after receiving its return pdu.
816 *
817 */
818 rh_port_disconnect(vdev->rhport);
819
matt mooney1a4b6f62011-05-19 16:47:32 -0700820 pr_info("disconnect device\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600821}
822
823
824static void vhci_device_reset(struct usbip_device *ud)
825{
826 struct vhci_device *vdev = container_of(ud, struct vhci_device, ud);
827
828 spin_lock(&ud->lock);
829
830 vdev->speed = 0;
831 vdev->devid = 0;
832
Markus Elfring03f3df82014-11-21 16:33:18 +0100833 usb_put_dev(vdev->udev);
Max Vozeler7606ee82011-01-12 15:02:00 +0200834 vdev->udev = NULL;
835
Bernard Blackham3d0a2a22012-10-22 06:45:00 +1100836 if (ud->tcp_socket) {
Al Viro964ea962014-03-05 20:33:08 -0500837 sockfd_put(ud->tcp_socket);
Bernard Blackham3d0a2a22012-10-22 06:45:00 +1100838 ud->tcp_socket = NULL;
839 }
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600840 ud->status = VDEV_ST_NULL;
841
842 spin_unlock(&ud->lock);
843}
844
845static void vhci_device_unusable(struct usbip_device *ud)
846{
847 spin_lock(&ud->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600848 ud->status = VDEV_ST_ERROR;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600849 spin_unlock(&ud->lock);
850}
851
852static void vhci_device_init(struct vhci_device *vdev)
853{
854 memset(vdev, 0, sizeof(*vdev));
855
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600856 vdev->ud.side = USBIP_VHCI;
857 vdev->ud.status = VDEV_ST_NULL;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600858 spin_lock_init(&vdev->ud.lock);
859
860 INIT_LIST_HEAD(&vdev->priv_rx);
861 INIT_LIST_HEAD(&vdev->priv_tx);
862 INIT_LIST_HEAD(&vdev->unlink_tx);
863 INIT_LIST_HEAD(&vdev->unlink_rx);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600864 spin_lock_init(&vdev->priv_lock);
865
866 init_waitqueue_head(&vdev->waitq_tx);
867
868 vdev->ud.eh_ops.shutdown = vhci_shutdown_connection;
869 vdev->ud.eh_ops.reset = vhci_device_reset;
870 vdev->ud.eh_ops.unusable = vhci_device_unusable;
871
872 usbip_start_eh(&vdev->ud);
873}
874
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600875static int vhci_start(struct usb_hcd *hcd)
876{
877 struct vhci_hcd *vhci = hcd_to_vhci(hcd);
878 int rhport;
879 int err = 0;
880
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600881 usbip_dbg_vhci_hc("enter vhci_start\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600882
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600883 /* initialize private data of usb_hcd */
884
885 for (rhport = 0; rhport < VHCI_NPORTS; rhport++) {
886 struct vhci_device *vdev = &vhci->vdev[rhport];
Pawel Lebioda3eed8c02014-05-14 19:20:27 +0200887
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600888 vhci_device_init(vdev);
889 vdev->rhport = rhport;
890 }
891
892 atomic_set(&vhci->seqnum, 0);
893 spin_lock_init(&vhci->lock);
894
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600895 hcd->power_budget = 0; /* no limit */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600896 hcd->uses_new_polling = 1;
897
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600898 /* vhci_hcd is now ready to be controlled through sysfs */
899 err = sysfs_create_group(&vhci_dev(vhci)->kobj, &dev_attr_group);
900 if (err) {
matt mooney1a4b6f62011-05-19 16:47:32 -0700901 pr_err("create sysfs files\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600902 return err;
903 }
904
905 return 0;
906}
907
908static void vhci_stop(struct usb_hcd *hcd)
909{
910 struct vhci_hcd *vhci = hcd_to_vhci(hcd);
911 int rhport = 0;
912
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600913 usbip_dbg_vhci_hc("stop VHCI controller\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600914
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600915 /* 1. remove the userland interface of vhci_hcd */
916 sysfs_remove_group(&vhci_dev(vhci)->kobj, &dev_attr_group);
917
918 /* 2. shutdown all the ports of vhci_hcd */
Aldo Iljazi909cc6f2013-12-02 15:22:29 +0200919 for (rhport = 0; rhport < VHCI_NPORTS; rhport++) {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600920 struct vhci_device *vdev = &vhci->vdev[rhport];
921
922 usbip_event_add(&vdev->ud, VDEV_EVENT_REMOVED);
923 usbip_stop_eh(&vdev->ud);
924 }
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600925}
926
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600927static int vhci_get_frame_number(struct usb_hcd *hcd)
928{
matt mooney1a4b6f62011-05-19 16:47:32 -0700929 pr_err("Not yet implemented\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600930 return 0;
931}
932
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600933#ifdef CONFIG_PM
934
935/* FIXME: suspend/resume */
936static int vhci_bus_suspend(struct usb_hcd *hcd)
937{
938 struct vhci_hcd *vhci = hcd_to_vhci(hcd);
939
940 dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
941
Harvey Yang50b66b52013-01-22 13:31:31 +0800942 spin_lock(&vhci->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600943 hcd->state = HC_STATE_SUSPENDED;
Harvey Yang50b66b52013-01-22 13:31:31 +0800944 spin_unlock(&vhci->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600945
946 return 0;
947}
948
949static int vhci_bus_resume(struct usb_hcd *hcd)
950{
951 struct vhci_hcd *vhci = hcd_to_vhci(hcd);
952 int rc = 0;
953
954 dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
955
Harvey Yang50b66b52013-01-22 13:31:31 +0800956 spin_lock(&vhci->lock);
Stefan Reifc46cb542013-02-22 12:13:32 +0100957 if (!HCD_HW_ACCESSIBLE(hcd))
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600958 rc = -ESHUTDOWN;
Stefan Reifc46cb542013-02-22 12:13:32 +0100959 else
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600960 hcd->state = HC_STATE_RUNNING;
Harvey Yang50b66b52013-01-22 13:31:31 +0800961 spin_unlock(&vhci->lock);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600962
matt mooney87352762011-05-19 21:36:56 -0700963 return rc;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600964}
965
966#else
967
968#define vhci_bus_suspend NULL
969#define vhci_bus_resume NULL
970#endif
971
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600972static struct hc_driver vhci_hc_driver = {
973 .description = driver_name,
974 .product_desc = driver_desc,
975 .hcd_priv_size = sizeof(struct vhci_hcd),
976
977 .flags = HCD_USB2,
978
979 .start = vhci_start,
Ruslan Pisarev00512682010-03-15 17:06:44 +0200980 .stop = vhci_stop,
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600981
982 .urb_enqueue = vhci_urb_enqueue,
983 .urb_dequeue = vhci_urb_dequeue,
984
985 .get_frame_number = vhci_get_frame_number,
986
987 .hub_status_data = vhci_hub_status,
988 .hub_control = vhci_hub_control,
989 .bus_suspend = vhci_bus_suspend,
990 .bus_resume = vhci_bus_resume,
991};
992
993static int vhci_hcd_probe(struct platform_device *pdev)
994{
995 struct usb_hcd *hcd;
996 int ret;
997
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600998 usbip_dbg_vhci_hc("name %s id %d\n", pdev->name, pdev->id);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600999
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001000 /*
1001 * Allocate and initialize hcd.
1002 * Our private data is also allocated automatically.
1003 */
Kay Sieverse9133972008-10-30 01:59:32 +01001004 hcd = usb_create_hcd(&vhci_hc_driver, &pdev->dev, dev_name(&pdev->dev));
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001005 if (!hcd) {
matt mooney1a4b6f62011-05-19 16:47:32 -07001006 pr_err("create hcd failed\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001007 return -ENOMEM;
1008 }
Alan Sterncee6a262011-05-02 14:21:44 -04001009 hcd->has_tt = 1;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001010
1011 /* this is private data for vhci_hcd */
1012 the_controller = hcd_to_vhci(hcd);
1013
1014 /*
1015 * Finish generic HCD structure initialization and register.
1016 * Call the driver's reset() and start() routines.
1017 */
1018 ret = usb_add_hcd(hcd, 0, 0);
1019 if (ret != 0) {
matt mooney1a4b6f62011-05-19 16:47:32 -07001020 pr_err("usb_add_hcd failed %d\n", ret);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001021 usb_put_hcd(hcd);
1022 the_controller = NULL;
1023 return ret;
1024 }
1025
Brian G. Merrellb8868e42009-07-21 00:46:13 -06001026 usbip_dbg_vhci_hc("bye\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001027 return 0;
1028}
1029
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001030static int vhci_hcd_remove(struct platform_device *pdev)
1031{
1032 struct usb_hcd *hcd;
1033
1034 hcd = platform_get_drvdata(pdev);
1035 if (!hcd)
1036 return 0;
1037
1038 /*
1039 * Disconnects the root hub,
1040 * then reverses the effects of usb_add_hcd(),
1041 * invoking the HCD's stop() methods.
1042 */
1043 usb_remove_hcd(hcd);
1044 usb_put_hcd(hcd);
1045 the_controller = NULL;
1046
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001047 return 0;
1048}
1049
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001050#ifdef CONFIG_PM
1051
1052/* what should happen for USB/IP under suspend/resume? */
1053static int vhci_hcd_suspend(struct platform_device *pdev, pm_message_t state)
1054{
1055 struct usb_hcd *hcd;
1056 int rhport = 0;
1057 int connected = 0;
1058 int ret = 0;
1059
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001060 hcd = platform_get_drvdata(pdev);
1061
1062 spin_lock(&the_controller->lock);
1063
1064 for (rhport = 0; rhport < VHCI_NPORTS; rhport++)
1065 if (the_controller->port_status[rhport] &
matt mooney071d1d42011-05-06 03:47:50 -07001066 USB_PORT_STAT_CONNECTION)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001067 connected += 1;
1068
1069 spin_unlock(&the_controller->lock);
1070
1071 if (connected > 0) {
Cédric Cabessa7923a652014-03-19 23:04:57 +01001072 dev_info(&pdev->dev,
1073 "We have %d active connection%s. Do not suspend.\n",
1074 connected, (connected == 1 ? "" : "s"));
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001075 ret = -EBUSY;
1076 } else {
matt mooney1a4b6f62011-05-19 16:47:32 -07001077 dev_info(&pdev->dev, "suspend vhci_hcd");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001078 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1079 }
1080
1081 return ret;
1082}
1083
1084static int vhci_hcd_resume(struct platform_device *pdev)
1085{
1086 struct usb_hcd *hcd;
1087
1088 dev_dbg(&pdev->dev, "%s\n", __func__);
1089
1090 hcd = platform_get_drvdata(pdev);
1091 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1092 usb_hcd_poll_rh_status(hcd);
1093
1094 return 0;
1095}
1096
1097#else
1098
1099#define vhci_hcd_suspend NULL
1100#define vhci_hcd_resume NULL
1101
1102#endif
1103
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001104static struct platform_driver vhci_driver = {
1105 .probe = vhci_hcd_probe,
Bill Pembertonf307da92012-11-19 13:21:02 -05001106 .remove = vhci_hcd_remove,
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001107 .suspend = vhci_hcd_suspend,
1108 .resume = vhci_hcd_resume,
1109 .driver = {
Geert Uytterhoeven1c126bc2013-11-12 20:07:19 +01001110 .name = driver_name,
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001111 },
1112};
1113
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001114/*
1115 * The VHCI 'device' is 'virtual'; not a real plug&play hardware.
1116 * We need to add this virtual device as a platform device arbitrarily:
1117 * 1. platform_device_register()
1118 */
1119static void the_pdev_release(struct device *dev)
1120{
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001121}
1122
1123static struct platform_device the_pdev = {
1124 /* should be the same name as driver_name */
Geert Uytterhoeven6fafecb2013-11-12 20:07:21 +01001125 .name = driver_name,
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001126 .id = -1,
1127 .dev = {
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001128 .release = the_pdev_release,
1129 },
1130};
1131
matt mooney0392bbb2011-05-19 21:37:06 -07001132static int __init vhci_hcd_init(void)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001133{
1134 int ret;
1135
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001136 if (usb_disabled())
1137 return -ENODEV;
1138
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001139 ret = platform_driver_register(&vhci_driver);
navin patidar4d421952013-09-10 10:43:39 +05301140 if (ret)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001141 goto err_driver_register;
1142
1143 ret = platform_device_register(&the_pdev);
navin patidar4d421952013-09-10 10:43:39 +05301144 if (ret)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001145 goto err_platform_device_register;
1146
matt mooney1a4b6f62011-05-19 16:47:32 -07001147 pr_info(DRIVER_DESC " v" USBIP_VERSION "\n");
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001148 return ret;
1149
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001150err_platform_device_register:
1151 platform_driver_unregister(&vhci_driver);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001152err_driver_register:
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001153 return ret;
1154}
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001155
matt mooney0392bbb2011-05-19 21:37:06 -07001156static void __exit vhci_hcd_exit(void)
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001157{
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001158 platform_device_unregister(&the_pdev);
1159 platform_driver_unregister(&vhci_driver);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001160}
matt mooney071d1d42011-05-06 03:47:50 -07001161
matt mooney0392bbb2011-05-19 21:37:06 -07001162module_init(vhci_hcd_init);
1163module_exit(vhci_hcd_exit);
matt mooney071d1d42011-05-06 03:47:50 -07001164
1165MODULE_AUTHOR(DRIVER_AUTHOR);
1166MODULE_DESCRIPTION(DRIVER_DESC);
matt mooney4ce0a412011-05-06 03:47:56 -07001167MODULE_LICENSE("GPL");
matt mooney6973c6f2011-05-11 01:54:14 -07001168MODULE_VERSION(USBIP_VERSION);