]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/usb/usbip/vhci_sysfs.c
Merge remote-tracking branches 'spi/fix/armada', 'spi/fix/atmel', 'spi/fix/doc',...
[mirror_ubuntu-hirsute-kernel.git] / drivers / usb / usbip / vhci_sysfs.c
CommitLineData
5fd54ace 1// SPDX-License-Identifier: GPL-2.0+
04679b34
TH
2/*
3 * Copyright (C) 2003-2008 Takahiro Hirofuchi
0775a9cb 4 * Copyright (C) 2015-2016 Nobuo Iwata
04679b34
TH
5 */
6
7aaacb43 7#include <linux/kthread.h>
3d0a2a22 8#include <linux/file.h>
7aaacb43 9#include <linux/net.h>
0775a9cb
NI
10#include <linux/platform_device.h>
11#include <linux/slab.h>
7aaacb43 12
04679b34
TH
13#include "usbip_common.h"
14#include "vhci.h"
15
04679b34
TH
16/* TODO: refine locking ?*/
17
1c9de5bf
YD
18/*
19 * output example:
2f2d0088
SK
20 * hub port sta spd dev sockfd local_busid
21 * hs 0000 004 000 00000000 3 1-2.3
1c9de5bf 22 * ................................................
2f2d0088 23 * ss 0008 004 000 00000000 4 2-3.4
1c9de5bf
YD
24 * ................................................
25 *
2f2d0088
SK
26 * Output includes socket fd instead of socket pointer address to avoid
27 * leaking kernel memory address in:
28 * /sys/devices/platform/vhci_hcd.0/status and in debug output.
29 * The socket pointer address is not used at the moment and it was made
30 * visible as a convenient way to find IP address from socket pointer
31 * address by looking up /proc/net/{tcp,tcp6}. As this opens a security
32 * hole, the change is made to use sockfd instead.
33 *
1c9de5bf
YD
34 */
35static void port_show_vhci(char **out, int hub, int port, struct vhci_device *vdev)
36{
37 if (hub == HUB_SPEED_HIGH)
38 *out += sprintf(*out, "hs %04u %03u ",
39 port, vdev->ud.status);
40 else /* hub == HUB_SPEED_SUPER */
41 *out += sprintf(*out, "ss %04u %03u ",
42 port, vdev->ud.status);
43
44 if (vdev->ud.status == VDEV_ST_USED) {
45 *out += sprintf(*out, "%03u %08x ",
46 vdev->speed, vdev->devid);
2f2d0088
SK
47 *out += sprintf(*out, "%u %s",
48 vdev->ud.sockfd,
1c9de5bf
YD
49 dev_name(&vdev->udev->dev));
50
51 } else {
52 *out += sprintf(*out, "000 00000000 ");
53 *out += sprintf(*out, "0000000000000000 0-0");
54 }
55
56 *out += sprintf(*out, "\n");
57}
58
04679b34 59/* Sysfs entry to show port status */
0775a9cb 60static ssize_t status_show_vhci(int pdev_nr, char *out)
04679b34 61{
89a73d28 62 struct platform_device *pdev = vhcis[pdev_nr].pdev;
03cd00d5
YD
63 struct vhci *vhci;
64 struct usb_hcd *hcd;
65 struct vhci_hcd *vhci_hcd;
04679b34 66 char *s = out;
03cd00d5 67 int i;
21619792 68 unsigned long flags;
04679b34 69
0775a9cb
NI
70 if (!pdev || !out) {
71 usbip_dbg_vhci_sysfs("show status error\n");
72 return 0;
73 }
74
03cd00d5
YD
75 hcd = platform_get_drvdata(pdev);
76 vhci_hcd = hcd_to_vhci_hcd(hcd);
77 vhci = vhci_hcd->vhci;
04679b34 78
0775a9cb 79 spin_lock_irqsave(&vhci->lock, flags);
04679b34 80
0775a9cb 81 for (i = 0; i < VHCI_HC_PORTS; i++) {
1c9de5bf 82 struct vhci_device *vdev = &vhci->vhci_hcd_hs->vdev[i];
04679b34
TH
83
84 spin_lock(&vdev->ud.lock);
1c9de5bf 85 port_show_vhci(&out, HUB_SPEED_HIGH,
b891245b 86 pdev_nr * VHCI_PORTS + i, vdev);
1c9de5bf
YD
87 spin_unlock(&vdev->ud.lock);
88 }
04679b34 89
1c9de5bf
YD
90 for (i = 0; i < VHCI_HC_PORTS; i++) {
91 struct vhci_device *vdev = &vhci->vhci_hcd_ss->vdev[i];
92
93 spin_lock(&vdev->ud.lock);
94 port_show_vhci(&out, HUB_SPEED_SUPER,
b891245b 95 pdev_nr * VHCI_PORTS + VHCI_HC_PORTS + i, vdev);
04679b34
TH
96 spin_unlock(&vdev->ud.lock);
97 }
98
0775a9cb
NI
99 spin_unlock_irqrestore(&vhci->lock, flags);
100
101 return out - s;
102}
103
104static ssize_t status_show_not_ready(int pdev_nr, char *out)
105{
106 char *s = out;
107 int i = 0;
108
109 for (i = 0; i < VHCI_HC_PORTS; i++) {
1c9de5bf 110 out += sprintf(out, "hs %04u %03u ",
b891245b 111 (pdev_nr * VHCI_PORTS) + i,
1c9de5bf
YD
112 VDEV_ST_NOTASSIGNED);
113 out += sprintf(out, "000 00000000 0000000000000000 0-0");
114 out += sprintf(out, "\n");
115 }
116
117 for (i = 0; i < VHCI_HC_PORTS; i++) {
118 out += sprintf(out, "ss %04u %03u ",
b891245b 119 (pdev_nr * VHCI_PORTS) + VHCI_HC_PORTS + i,
0775a9cb
NI
120 VDEV_ST_NOTASSIGNED);
121 out += sprintf(out, "000 00000000 0000000000000000 0-0");
122 out += sprintf(out, "\n");
123 }
124 return out - s;
125}
126
127static int status_name_to_id(const char *name)
128{
129 char *c;
130 long val;
131 int ret;
132
133 c = strchr(name, '.');
134 if (c == NULL)
135 return 0;
04679b34 136
0775a9cb
NI
137 ret = kstrtol(c+1, 10, &val);
138 if (ret < 0)
139 return ret;
140
141 return val;
142}
143
144static ssize_t status_show(struct device *dev,
145 struct device_attribute *attr, char *out)
146{
147 char *s = out;
148 int pdev_nr;
149
150 out += sprintf(out,
1c9de5bf 151 "hub port sta spd dev socket local_busid\n");
0775a9cb
NI
152
153 pdev_nr = status_name_to_id(attr->attr.name);
154 if (pdev_nr < 0)
155 out += status_show_not_ready(pdev_nr, out);
156 else
157 out += status_show_vhci(pdev_nr, out);
158
159 return out - s;
160}
161
162static ssize_t nports_show(struct device *dev, struct device_attribute *attr,
163 char *out)
164{
165 char *s = out;
166
1c9de5bf 167 /*
2f2d0088
SK
168 * Half the ports are for SPEED_HIGH and half for SPEED_SUPER,
169 * thus the * 2.
1c9de5bf 170 */
b891245b 171 out += sprintf(out, "%d\n", VHCI_PORTS * vhci_num_controllers);
04679b34
TH
172 return out - s;
173}
0775a9cb 174static DEVICE_ATTR_RO(nports);
04679b34
TH
175
176/* Sysfs entry to shutdown a virtual connection */
03cd00d5 177static int vhci_port_disconnect(struct vhci_hcd *vhci_hcd, __u32 rhport)
04679b34 178{
03cd00d5
YD
179 struct vhci_device *vdev = &vhci_hcd->vdev[rhport];
180 struct vhci *vhci = vhci_hcd->vhci;
21619792 181 unsigned long flags;
04679b34 182
b8868e45 183 usbip_dbg_vhci_sysfs("enter\n");
04679b34
TH
184
185 /* lock */
0775a9cb 186 spin_lock_irqsave(&vhci->lock, flags);
04679b34 187 spin_lock(&vdev->ud.lock);
0775a9cb 188
04679b34 189 if (vdev->ud.status == VDEV_ST_NULL) {
1a4b6f66 190 pr_err("not connected %d\n", vdev->ud.status);
04679b34
TH
191
192 /* unlock */
193 spin_unlock(&vdev->ud.lock);
0775a9cb 194 spin_unlock_irqrestore(&vhci->lock, flags);
04679b34
TH
195
196 return -EINVAL;
197 }
198
199 /* unlock */
200 spin_unlock(&vdev->ud.lock);
0775a9cb 201 spin_unlock_irqrestore(&vhci->lock, flags);
04679b34
TH
202
203 usbip_event_add(&vdev->ud, VDEV_EVENT_DOWN);
204
205 return 0;
206}
207
0775a9cb
NI
208static int valid_port(__u32 pdev_nr, __u32 rhport)
209{
210 if (pdev_nr >= vhci_num_controllers) {
211 pr_err("pdev %u\n", pdev_nr);
212 return 0;
213 }
214 if (rhport >= VHCI_HC_PORTS) {
215 pr_err("rhport %u\n", rhport);
216 return 0;
217 }
218 return 1;
219}
220
04679b34
TH
221static ssize_t store_detach(struct device *dev, struct device_attribute *attr,
222 const char *buf, size_t count)
223{
0775a9cb
NI
224 __u32 port = 0, pdev_nr = 0, rhport = 0;
225 struct usb_hcd *hcd;
1c9de5bf 226 struct vhci_hcd *vhci_hcd;
0775a9cb 227 int ret;
04679b34 228
0775a9cb 229 if (kstrtoint(buf, 10, &port) < 0)
88fa1ebf 230 return -EINVAL;
04679b34 231
0775a9cb
NI
232 pdev_nr = port_to_pdev_nr(port);
233 rhport = port_to_rhport(port);
234
235 if (!valid_port(pdev_nr, rhport))
04679b34 236 return -EINVAL;
0775a9cb 237
89a73d28 238 hcd = platform_get_drvdata(vhcis[pdev_nr].pdev);
0775a9cb
NI
239 if (hcd == NULL) {
240 dev_err(dev, "port is not ready %u\n", port);
241 return -EAGAIN;
04679b34
TH
242 }
243
1c9de5bf
YD
244 usbip_dbg_vhci_sysfs("rhport %d\n", rhport);
245
246 if ((port / VHCI_HC_PORTS) % 2)
247 vhci_hcd = hcd_to_vhci_hcd(hcd)->vhci->vhci_hcd_ss;
248 else
249 vhci_hcd = hcd_to_vhci_hcd(hcd)->vhci->vhci_hcd_hs;
250
251 ret = vhci_port_disconnect(vhci_hcd, rhport);
0775a9cb 252 if (ret < 0)
04679b34
TH
253 return -EINVAL;
254
b8868e45 255 usbip_dbg_vhci_sysfs("Leave\n");
bd608f6c 256
04679b34
TH
257 return count;
258}
259static DEVICE_ATTR(detach, S_IWUSR, NULL, store_detach);
260
0775a9cb 261static int valid_args(__u32 pdev_nr, __u32 rhport, enum usb_device_speed speed)
04679b34 262{
0775a9cb
NI
263 if (!valid_port(pdev_nr, rhport)) {
264 return 0;
04679b34
TH
265 }
266
04679b34
TH
267 switch (speed) {
268 case USB_SPEED_LOW:
269 case USB_SPEED_FULL:
270 case USB_SPEED_HIGH:
551cdbbe 271 case USB_SPEED_WIRELESS:
df9032c1 272 case USB_SPEED_SUPER:
04679b34
TH
273 break;
274 default:
8360fb0d
SK
275 pr_err("Failed attach request for unsupported USB speed: %s\n",
276 usb_speed_string(speed));
0775a9cb 277 return 0;
04679b34
TH
278 }
279
0775a9cb 280 return 1;
04679b34
TH
281}
282
0775a9cb 283/* Sysfs entry to establish a virtual connection */
04679b34
TH
284/*
285 * To start a new USB/IP attachment, a userland program needs to setup a TCP
286 * connection and then write its socket descriptor with remote device
287 * information into this sysfs file.
288 *
289 * A remote device is virtually attached to the root-hub port of @rhport with
290 * @speed. @devid is embedded into a request to specify the remote device in a
291 * server host.
292 *
293 * write() returns 0 on success, else negative errno.
294 */
295static ssize_t store_attach(struct device *dev, struct device_attribute *attr,
296 const char *buf, size_t count)
297{
04679b34
TH
298 struct socket *socket;
299 int sockfd = 0;
0775a9cb
NI
300 __u32 port = 0, pdev_nr = 0, rhport = 0, devid = 0, speed = 0;
301 struct usb_hcd *hcd;
03cd00d5 302 struct vhci_hcd *vhci_hcd;
0775a9cb 303 struct vhci_device *vdev;
03cd00d5 304 struct vhci *vhci;
964ea96e 305 int err;
21619792 306 unsigned long flags;
04679b34
TH
307
308 /*
309 * @rhport: port number of vhci_hcd
310 * @sockfd: socket descriptor of an established TCP connection
311 * @devid: unique device identifier in a remote host
312 * @speed: usb device speed in a remote host
313 */
0775a9cb 314 if (sscanf(buf, "%u %u %u %u", &port, &sockfd, &devid, &speed) != 4)
88fa1ebf 315 return -EINVAL;
0775a9cb
NI
316 pdev_nr = port_to_pdev_nr(port);
317 rhport = port_to_rhport(port);
04679b34 318
0775a9cb
NI
319 usbip_dbg_vhci_sysfs("port(%u) pdev(%d) rhport(%u)\n",
320 port, pdev_nr, rhport);
321 usbip_dbg_vhci_sysfs("sockfd(%u) devid(%u) speed(%u)\n",
322 sockfd, devid, speed);
04679b34
TH
323
324 /* check received parameters */
0775a9cb 325 if (!valid_args(pdev_nr, rhport, speed))
04679b34
TH
326 return -EINVAL;
327
89a73d28 328 hcd = platform_get_drvdata(vhcis[pdev_nr].pdev);
0775a9cb
NI
329 if (hcd == NULL) {
330 dev_err(dev, "port %d is not ready\n", port);
331 return -EAGAIN;
332 }
03cd00d5
YD
333
334 vhci_hcd = hcd_to_vhci_hcd(hcd);
335 vhci = vhci_hcd->vhci;
1c9de5bf
YD
336
337 if (speed == USB_SPEED_SUPER)
338 vdev = &vhci->vhci_hcd_ss->vdev[rhport];
339 else
340 vdev = &vhci->vhci_hcd_hs->vdev[rhport];
0775a9cb 341
3d0a2a22 342 /* Extract socket from fd. */
964ea96e 343 socket = sockfd_lookup(sockfd, &err);
04679b34 344 if (!socket)
a6d81814 345 return -EINVAL;
04679b34
TH
346
347 /* now need lock until setting vdev status as used */
348
349 /* begin a lock */
0775a9cb 350 spin_lock_irqsave(&vhci->lock, flags);
04679b34
TH
351 spin_lock(&vdev->ud.lock);
352
353 if (vdev->ud.status != VDEV_ST_NULL) {
354 /* end of the lock */
355 spin_unlock(&vdev->ud.lock);
0775a9cb 356 spin_unlock_irqrestore(&vhci->lock, flags);
04679b34 357
964ea96e 358 sockfd_put(socket);
3d0a2a22 359
1a4b6f66 360 dev_err(dev, "port %d already used\n", rhport);
a38711a8
NI
361 /*
362 * Will be retried from userspace
363 * if there's another free port.
364 */
365 return -EBUSY;
04679b34
TH
366 }
367
0775a9cb
NI
368 dev_info(dev, "pdev(%u) rhport(%u) sockfd(%d)\n",
369 pdev_nr, rhport, sockfd);
370 dev_info(dev, "devid(%u) speed(%u) speed_str(%s)\n",
371 devid, speed, usb_speed_string(speed));
04679b34
TH
372
373 vdev->devid = devid;
374 vdev->speed = speed;
2f2d0088 375 vdev->ud.sockfd = sockfd;
04679b34
TH
376 vdev->ud.tcp_socket = socket;
377 vdev->ud.status = VDEV_ST_NOTASSIGNED;
378
379 spin_unlock(&vdev->ud.lock);
0775a9cb 380 spin_unlock_irqrestore(&vhci->lock, flags);
04679b34
TH
381 /* end the lock */
382
ba46ce30
ON
383 vdev->ud.tcp_rx = kthread_get_run(vhci_rx_loop, &vdev->ud, "vhci_rx");
384 vdev->ud.tcp_tx = kthread_get_run(vhci_tx_loop, &vdev->ud, "vhci_tx");
d1b2e95a 385
0775a9cb 386 rh_port_connect(vdev, speed);
04679b34
TH
387
388 return count;
389}
390static DEVICE_ATTR(attach, S_IWUSR, NULL, store_attach);
391
0775a9cb
NI
392#define MAX_STATUS_NAME 16
393
394struct status_attr {
395 struct device_attribute attr;
396 char name[MAX_STATUS_NAME+1];
04679b34
TH
397};
398
0775a9cb
NI
399static struct status_attr *status_attrs;
400
401static void set_status_attr(int id)
402{
403 struct status_attr *status;
404
405 status = status_attrs + id;
406 if (id == 0)
407 strcpy(status->name, "status");
408 else
409 snprintf(status->name, MAX_STATUS_NAME+1, "status.%d", id);
410 status->attr.attr.name = status->name;
411 status->attr.attr.mode = S_IRUGO;
412 status->attr.show = status_show;
918b8ac5 413 sysfs_attr_init(&status->attr.attr);
0775a9cb
NI
414}
415
416static int init_status_attrs(void)
417{
418 int id;
419
420 status_attrs = kcalloc(vhci_num_controllers, sizeof(struct status_attr),
421 GFP_KERNEL);
422 if (status_attrs == NULL)
423 return -ENOMEM;
424
425 for (id = 0; id < vhci_num_controllers; id++)
426 set_status_attr(id);
427
428 return 0;
429}
430
431static void finish_status_attrs(void)
432{
433 kfree(status_attrs);
434}
435
436struct attribute_group vhci_attr_group = {
437 .attrs = NULL,
04679b34 438};
0775a9cb
NI
439
440int vhci_init_attr_group(void)
441{
442 struct attribute **attrs;
443 int ret, i;
444
445 attrs = kcalloc((vhci_num_controllers + 5), sizeof(struct attribute *),
446 GFP_KERNEL);
447 if (attrs == NULL)
448 return -ENOMEM;
449
450 ret = init_status_attrs();
451 if (ret) {
452 kfree(attrs);
453 return ret;
454 }
455 *attrs = &dev_attr_nports.attr;
456 *(attrs + 1) = &dev_attr_detach.attr;
457 *(attrs + 2) = &dev_attr_attach.attr;
458 *(attrs + 3) = &dev_attr_usbip_debug.attr;
459 for (i = 0; i < vhci_num_controllers; i++)
460 *(attrs + i + 4) = &((status_attrs + i)->attr.attr);
461 vhci_attr_group.attrs = attrs;
462 return 0;
463}
464
465void vhci_finish_attr_group(void)
466{
467 finish_status_attrs();
468 kfree(vhci_attr_group.attrs);
469}