Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2003-2008 Takahiro Hirofuchi |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 3 | * Copyright (C) 2015-2016 Nobuo Iwata |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 4 | * |
| 5 | * This is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | * |
| 10 | * This is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
| 18 | * USA. |
| 19 | */ |
| 20 | |
matt mooney | 7aaacb4 | 2011-05-11 22:33:43 -0700 | [diff] [blame] | 21 | #include <linux/kthread.h> |
Bernard Blackham | 3d0a2a2 | 2012-10-22 06:45:00 +1100 | [diff] [blame] | 22 | #include <linux/file.h> |
matt mooney | 7aaacb4 | 2011-05-11 22:33:43 -0700 | [diff] [blame] | 23 | #include <linux/net.h> |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 24 | #include <linux/platform_device.h> |
| 25 | #include <linux/slab.h> |
matt mooney | 7aaacb4 | 2011-05-11 22:33:43 -0700 | [diff] [blame] | 26 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 27 | #include "usbip_common.h" |
| 28 | #include "vhci.h" |
| 29 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 30 | /* TODO: refine locking ?*/ |
| 31 | |
| 32 | /* Sysfs entry to show port status */ |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 33 | static ssize_t status_show_vhci(int pdev_nr, char *out) |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 34 | { |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 35 | struct platform_device *pdev = *(vhci_pdevs + pdev_nr); |
| 36 | struct vhci_hcd *vhci; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 37 | char *s = out; |
| 38 | int i = 0; |
Andrew Goodbody | 2161979 | 2016-02-02 17:36:39 +0000 | [diff] [blame] | 39 | unsigned long flags; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 40 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 41 | if (!pdev || !out) { |
| 42 | usbip_dbg_vhci_sysfs("show status error\n"); |
| 43 | return 0; |
| 44 | } |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 45 | |
Yuyang Du | 5ec0edc | 2017-06-08 13:04:05 +0800 | [diff] [blame] | 46 | vhci = hcd_to_vhci_hcd(platform_get_drvdata(pdev)); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 47 | |
| 48 | spin_lock_irqsave(&vhci->lock, flags); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 49 | |
| 50 | /* |
| 51 | * output example: |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 52 | * port sta spd dev socket local_busid |
| 53 | * 0000 004 000 00000000 c5a7bb80 1-2.3 |
| 54 | * 0001 004 000 00000000 d8cee980 2-3.4 |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 55 | * |
| 56 | * IP address can be retrieved from a socket pointer address by looking |
| 57 | * up /proc/net/{tcp,tcp6}. Also, a userland program may remember a |
| 58 | * port number and its peer IP address. |
| 59 | */ |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 60 | for (i = 0; i < VHCI_HC_PORTS; i++) { |
| 61 | struct vhci_device *vdev = &vhci->vdev[i]; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 62 | |
| 63 | spin_lock(&vdev->ud.lock); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 64 | out += sprintf(out, "%04u %03u ", |
| 65 | (pdev_nr * VHCI_HC_PORTS) + i, |
| 66 | vdev->ud.status); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 67 | |
| 68 | if (vdev->ud.status == VDEV_ST_USED) { |
| 69 | out += sprintf(out, "%03u %08x ", |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 70 | vdev->speed, vdev->devid); |
| 71 | out += sprintf(out, "%16p %s", |
| 72 | vdev->ud.tcp_socket, |
| 73 | dev_name(&vdev->udev->dev)); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 74 | |
matt mooney | bd608f6 | 2011-05-06 03:47:52 -0700 | [diff] [blame] | 75 | } else { |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 76 | out += sprintf(out, "000 00000000 "); |
| 77 | out += sprintf(out, "0000000000000000 0-0"); |
matt mooney | bd608f6 | 2011-05-06 03:47:52 -0700 | [diff] [blame] | 78 | } |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 79 | |
| 80 | out += sprintf(out, "\n"); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 81 | spin_unlock(&vdev->ud.lock); |
| 82 | } |
| 83 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 84 | spin_unlock_irqrestore(&vhci->lock, flags); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 85 | |
| 86 | return out - s; |
| 87 | } |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 88 | |
| 89 | static ssize_t status_show_not_ready(int pdev_nr, char *out) |
| 90 | { |
| 91 | char *s = out; |
| 92 | int i = 0; |
| 93 | |
| 94 | for (i = 0; i < VHCI_HC_PORTS; i++) { |
| 95 | out += sprintf(out, "%04u %03u ", |
| 96 | (pdev_nr * VHCI_HC_PORTS) + i, |
| 97 | VDEV_ST_NOTASSIGNED); |
| 98 | out += sprintf(out, "000 00000000 0000000000000000 0-0"); |
| 99 | out += sprintf(out, "\n"); |
| 100 | } |
| 101 | return out - s; |
| 102 | } |
| 103 | |
| 104 | static int status_name_to_id(const char *name) |
| 105 | { |
| 106 | char *c; |
| 107 | long val; |
| 108 | int ret; |
| 109 | |
| 110 | c = strchr(name, '.'); |
| 111 | if (c == NULL) |
| 112 | return 0; |
| 113 | |
| 114 | ret = kstrtol(c+1, 10, &val); |
| 115 | if (ret < 0) |
| 116 | return ret; |
| 117 | |
| 118 | return val; |
| 119 | } |
| 120 | |
| 121 | static ssize_t status_show(struct device *dev, |
| 122 | struct device_attribute *attr, char *out) |
| 123 | { |
| 124 | char *s = out; |
| 125 | int pdev_nr; |
| 126 | |
| 127 | out += sprintf(out, |
| 128 | "port sta spd dev socket local_busid\n"); |
| 129 | |
| 130 | pdev_nr = status_name_to_id(attr->attr.name); |
| 131 | if (pdev_nr < 0) |
| 132 | out += status_show_not_ready(pdev_nr, out); |
| 133 | else |
| 134 | out += status_show_vhci(pdev_nr, out); |
| 135 | |
| 136 | return out - s; |
| 137 | } |
| 138 | |
| 139 | static ssize_t nports_show(struct device *dev, struct device_attribute *attr, |
| 140 | char *out) |
| 141 | { |
| 142 | char *s = out; |
| 143 | |
| 144 | out += sprintf(out, "%d\n", VHCI_HC_PORTS * vhci_num_controllers); |
| 145 | return out - s; |
| 146 | } |
| 147 | static DEVICE_ATTR_RO(nports); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 148 | |
| 149 | /* Sysfs entry to shutdown a virtual connection */ |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 150 | static int vhci_port_disconnect(struct vhci_hcd *vhci, __u32 rhport) |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 151 | { |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 152 | struct vhci_device *vdev = &vhci->vdev[rhport]; |
Andrew Goodbody | 2161979 | 2016-02-02 17:36:39 +0000 | [diff] [blame] | 153 | unsigned long flags; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 154 | |
Brian G. Merrell | b8868e4 | 2009-07-21 00:46:13 -0600 | [diff] [blame] | 155 | usbip_dbg_vhci_sysfs("enter\n"); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 156 | |
| 157 | /* lock */ |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 158 | spin_lock_irqsave(&vhci->lock, flags); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 159 | spin_lock(&vdev->ud.lock); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 160 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 161 | if (vdev->ud.status == VDEV_ST_NULL) { |
matt mooney | 1a4b6f6 | 2011-05-19 16:47:32 -0700 | [diff] [blame] | 162 | pr_err("not connected %d\n", vdev->ud.status); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 163 | |
| 164 | /* unlock */ |
| 165 | spin_unlock(&vdev->ud.lock); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 166 | spin_unlock_irqrestore(&vhci->lock, flags); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 167 | |
| 168 | return -EINVAL; |
| 169 | } |
| 170 | |
| 171 | /* unlock */ |
| 172 | spin_unlock(&vdev->ud.lock); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 173 | spin_unlock_irqrestore(&vhci->lock, flags); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 174 | |
| 175 | usbip_event_add(&vdev->ud, VDEV_EVENT_DOWN); |
| 176 | |
| 177 | return 0; |
| 178 | } |
| 179 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 180 | static int valid_port(__u32 pdev_nr, __u32 rhport) |
| 181 | { |
| 182 | if (pdev_nr >= vhci_num_controllers) { |
| 183 | pr_err("pdev %u\n", pdev_nr); |
| 184 | return 0; |
| 185 | } |
| 186 | if (rhport >= VHCI_HC_PORTS) { |
| 187 | pr_err("rhport %u\n", rhport); |
| 188 | return 0; |
| 189 | } |
| 190 | return 1; |
| 191 | } |
| 192 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 193 | static ssize_t store_detach(struct device *dev, struct device_attribute *attr, |
| 194 | const char *buf, size_t count) |
| 195 | { |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 196 | __u32 port = 0, pdev_nr = 0, rhport = 0; |
| 197 | struct usb_hcd *hcd; |
| 198 | int ret; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 199 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 200 | if (kstrtoint(buf, 10, &port) < 0) |
John de la Garza | 88fa1eb | 2014-03-06 10:36:34 -0800 | [diff] [blame] | 201 | return -EINVAL; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 202 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 203 | pdev_nr = port_to_pdev_nr(port); |
| 204 | rhport = port_to_rhport(port); |
| 205 | |
| 206 | if (!valid_port(pdev_nr, rhport)) |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 207 | return -EINVAL; |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 208 | |
| 209 | hcd = platform_get_drvdata(*(vhci_pdevs + pdev_nr)); |
| 210 | if (hcd == NULL) { |
| 211 | dev_err(dev, "port is not ready %u\n", port); |
| 212 | return -EAGAIN; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 213 | } |
| 214 | |
Yuyang Du | 5ec0edc | 2017-06-08 13:04:05 +0800 | [diff] [blame] | 215 | ret = vhci_port_disconnect(hcd_to_vhci_hcd(hcd), rhport); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 216 | if (ret < 0) |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 217 | return -EINVAL; |
| 218 | |
Brian G. Merrell | b8868e4 | 2009-07-21 00:46:13 -0600 | [diff] [blame] | 219 | usbip_dbg_vhci_sysfs("Leave\n"); |
matt mooney | bd608f6 | 2011-05-06 03:47:52 -0700 | [diff] [blame] | 220 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 221 | return count; |
| 222 | } |
| 223 | static DEVICE_ATTR(detach, S_IWUSR, NULL, store_detach); |
| 224 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 225 | static int valid_args(__u32 pdev_nr, __u32 rhport, enum usb_device_speed speed) |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 226 | { |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 227 | if (!valid_port(pdev_nr, rhport)) { |
| 228 | return 0; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 229 | } |
| 230 | |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 231 | switch (speed) { |
| 232 | case USB_SPEED_LOW: |
| 233 | case USB_SPEED_FULL: |
| 234 | case USB_SPEED_HIGH: |
Greg Kroah-Hartman | 551cdbb | 2010-01-14 11:08:04 -0800 | [diff] [blame] | 235 | case USB_SPEED_WIRELESS: |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 236 | break; |
| 237 | default: |
Shuah Khan | 8360fb0 | 2014-01-22 09:38:14 -0700 | [diff] [blame] | 238 | pr_err("Failed attach request for unsupported USB speed: %s\n", |
| 239 | usb_speed_string(speed)); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 240 | return 0; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 241 | } |
| 242 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 243 | return 1; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 244 | } |
| 245 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 246 | /* Sysfs entry to establish a virtual connection */ |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 247 | /* |
| 248 | * To start a new USB/IP attachment, a userland program needs to setup a TCP |
| 249 | * connection and then write its socket descriptor with remote device |
| 250 | * information into this sysfs file. |
| 251 | * |
| 252 | * A remote device is virtually attached to the root-hub port of @rhport with |
| 253 | * @speed. @devid is embedded into a request to specify the remote device in a |
| 254 | * server host. |
| 255 | * |
| 256 | * write() returns 0 on success, else negative errno. |
| 257 | */ |
| 258 | static ssize_t store_attach(struct device *dev, struct device_attribute *attr, |
| 259 | const char *buf, size_t count) |
| 260 | { |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 261 | struct socket *socket; |
| 262 | int sockfd = 0; |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 263 | __u32 port = 0, pdev_nr = 0, rhport = 0, devid = 0, speed = 0; |
| 264 | struct usb_hcd *hcd; |
| 265 | struct vhci_hcd *vhci; |
| 266 | struct vhci_device *vdev; |
Al Viro | 964ea96 | 2014-03-05 20:33:08 -0500 | [diff] [blame] | 267 | int err; |
Andrew Goodbody | 2161979 | 2016-02-02 17:36:39 +0000 | [diff] [blame] | 268 | unsigned long flags; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 269 | |
| 270 | /* |
| 271 | * @rhport: port number of vhci_hcd |
| 272 | * @sockfd: socket descriptor of an established TCP connection |
| 273 | * @devid: unique device identifier in a remote host |
| 274 | * @speed: usb device speed in a remote host |
| 275 | */ |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 276 | if (sscanf(buf, "%u %u %u %u", &port, &sockfd, &devid, &speed) != 4) |
John de la Garza | 88fa1eb | 2014-03-06 10:36:34 -0800 | [diff] [blame] | 277 | return -EINVAL; |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 278 | pdev_nr = port_to_pdev_nr(port); |
| 279 | rhport = port_to_rhport(port); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 280 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 281 | usbip_dbg_vhci_sysfs("port(%u) pdev(%d) rhport(%u)\n", |
| 282 | port, pdev_nr, rhport); |
| 283 | usbip_dbg_vhci_sysfs("sockfd(%u) devid(%u) speed(%u)\n", |
| 284 | sockfd, devid, speed); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 285 | |
| 286 | /* check received parameters */ |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 287 | if (!valid_args(pdev_nr, rhport, speed)) |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 288 | return -EINVAL; |
| 289 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 290 | hcd = platform_get_drvdata(*(vhci_pdevs + pdev_nr)); |
| 291 | if (hcd == NULL) { |
| 292 | dev_err(dev, "port %d is not ready\n", port); |
| 293 | return -EAGAIN; |
| 294 | } |
Yuyang Du | 5ec0edc | 2017-06-08 13:04:05 +0800 | [diff] [blame] | 295 | vhci = hcd_to_vhci_hcd(hcd); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 296 | vdev = &vhci->vdev[rhport]; |
| 297 | |
Bernard Blackham | 3d0a2a2 | 2012-10-22 06:45:00 +1100 | [diff] [blame] | 298 | /* Extract socket from fd. */ |
Al Viro | 964ea96 | 2014-03-05 20:33:08 -0500 | [diff] [blame] | 299 | socket = sockfd_lookup(sockfd, &err); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 300 | if (!socket) |
Márton Németh | a6d81814a | 2011-05-27 06:18:48 +0200 | [diff] [blame] | 301 | return -EINVAL; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 302 | |
| 303 | /* now need lock until setting vdev status as used */ |
| 304 | |
| 305 | /* begin a lock */ |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 306 | spin_lock_irqsave(&vhci->lock, flags); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 307 | spin_lock(&vdev->ud.lock); |
| 308 | |
| 309 | if (vdev->ud.status != VDEV_ST_NULL) { |
| 310 | /* end of the lock */ |
| 311 | spin_unlock(&vdev->ud.lock); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 312 | spin_unlock_irqrestore(&vhci->lock, flags); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 313 | |
Al Viro | 964ea96 | 2014-03-05 20:33:08 -0500 | [diff] [blame] | 314 | sockfd_put(socket); |
Bernard Blackham | 3d0a2a2 | 2012-10-22 06:45:00 +1100 | [diff] [blame] | 315 | |
matt mooney | 1a4b6f6 | 2011-05-19 16:47:32 -0700 | [diff] [blame] | 316 | dev_err(dev, "port %d already used\n", rhport); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 317 | return -EINVAL; |
| 318 | } |
| 319 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 320 | dev_info(dev, "pdev(%u) rhport(%u) sockfd(%d)\n", |
| 321 | pdev_nr, rhport, sockfd); |
| 322 | dev_info(dev, "devid(%u) speed(%u) speed_str(%s)\n", |
| 323 | devid, speed, usb_speed_string(speed)); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 324 | |
| 325 | vdev->devid = devid; |
| 326 | vdev->speed = speed; |
| 327 | vdev->ud.tcp_socket = socket; |
| 328 | vdev->ud.status = VDEV_ST_NOTASSIGNED; |
| 329 | |
| 330 | spin_unlock(&vdev->ud.lock); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 331 | spin_unlock_irqrestore(&vhci->lock, flags); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 332 | /* end the lock */ |
| 333 | |
Oleg Nesterov | ba46ce3 | 2012-03-13 19:07:18 +0100 | [diff] [blame] | 334 | vdev->ud.tcp_rx = kthread_get_run(vhci_rx_loop, &vdev->ud, "vhci_rx"); |
| 335 | vdev->ud.tcp_tx = kthread_get_run(vhci_tx_loop, &vdev->ud, "vhci_tx"); |
Max Vozeler | d1b2e95 | 2011-04-18 21:44:10 +0200 | [diff] [blame] | 336 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 337 | rh_port_connect(vdev, speed); |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 338 | |
| 339 | return count; |
| 340 | } |
| 341 | static DEVICE_ATTR(attach, S_IWUSR, NULL, store_attach); |
| 342 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 343 | #define MAX_STATUS_NAME 16 |
| 344 | |
| 345 | struct status_attr { |
| 346 | struct device_attribute attr; |
| 347 | char name[MAX_STATUS_NAME+1]; |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 348 | }; |
| 349 | |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 350 | static struct status_attr *status_attrs; |
| 351 | |
| 352 | static void set_status_attr(int id) |
| 353 | { |
| 354 | struct status_attr *status; |
| 355 | |
| 356 | status = status_attrs + id; |
| 357 | if (id == 0) |
| 358 | strcpy(status->name, "status"); |
| 359 | else |
| 360 | snprintf(status->name, MAX_STATUS_NAME+1, "status.%d", id); |
| 361 | status->attr.attr.name = status->name; |
| 362 | status->attr.attr.mode = S_IRUGO; |
| 363 | status->attr.show = status_show; |
Shuah Khan | 918b8ac | 2016-12-05 12:56:38 -0700 | [diff] [blame] | 364 | sysfs_attr_init(&status->attr.attr); |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | static int init_status_attrs(void) |
| 368 | { |
| 369 | int id; |
| 370 | |
| 371 | status_attrs = kcalloc(vhci_num_controllers, sizeof(struct status_attr), |
| 372 | GFP_KERNEL); |
| 373 | if (status_attrs == NULL) |
| 374 | return -ENOMEM; |
| 375 | |
| 376 | for (id = 0; id < vhci_num_controllers; id++) |
| 377 | set_status_attr(id); |
| 378 | |
| 379 | return 0; |
| 380 | } |
| 381 | |
| 382 | static void finish_status_attrs(void) |
| 383 | { |
| 384 | kfree(status_attrs); |
| 385 | } |
| 386 | |
| 387 | struct attribute_group vhci_attr_group = { |
| 388 | .attrs = NULL, |
Takahiro Hirofuchi | 04679b3 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 389 | }; |
Nobuo Iwata | 0775a9c | 2016-06-13 11:33:40 +0900 | [diff] [blame] | 390 | |
| 391 | int vhci_init_attr_group(void) |
| 392 | { |
| 393 | struct attribute **attrs; |
| 394 | int ret, i; |
| 395 | |
| 396 | attrs = kcalloc((vhci_num_controllers + 5), sizeof(struct attribute *), |
| 397 | GFP_KERNEL); |
| 398 | if (attrs == NULL) |
| 399 | return -ENOMEM; |
| 400 | |
| 401 | ret = init_status_attrs(); |
| 402 | if (ret) { |
| 403 | kfree(attrs); |
| 404 | return ret; |
| 405 | } |
| 406 | *attrs = &dev_attr_nports.attr; |
| 407 | *(attrs + 1) = &dev_attr_detach.attr; |
| 408 | *(attrs + 2) = &dev_attr_attach.attr; |
| 409 | *(attrs + 3) = &dev_attr_usbip_debug.attr; |
| 410 | for (i = 0; i < vhci_num_controllers; i++) |
| 411 | *(attrs + i + 4) = &((status_attrs + i)->attr.attr); |
| 412 | vhci_attr_group.attrs = attrs; |
| 413 | return 0; |
| 414 | } |
| 415 | |
| 416 | void vhci_finish_attr_group(void) |
| 417 | { |
| 418 | finish_status_attrs(); |
| 419 | kfree(vhci_attr_group.attrs); |
| 420 | } |