vhci_sysfs.c 9.8 KB
Newer Older
1 2
/*
 * Copyright (C) 2003-2008 Takahiro Hirofuchi
3
 * Copyright (C) 2015-2016 Nobuo Iwata
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * This is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
 * USA.
 */

21
#include <linux/kthread.h>
22
#include <linux/file.h>
23
#include <linux/net.h>
24 25
#include <linux/platform_device.h>
#include <linux/slab.h>
26

27 28 29 30 31 32
#include "usbip_common.h"
#include "vhci.h"

/* TODO: refine locking ?*/

/* Sysfs entry to show port status */
33
static ssize_t status_show_vhci(int pdev_nr, char *out)
34
{
35 36
	struct platform_device *pdev = *(vhci_pdevs + pdev_nr);
	struct vhci_hcd *vhci;
37 38
	char *s = out;
	int i = 0;
39
	unsigned long flags;
40

41 42 43 44 45
	if (!pdev || !out) {
		usbip_dbg_vhci_sysfs("show status error\n");
		return 0;
	}

46
	vhci = hcd_to_vhci_hcd(platform_get_drvdata(pdev));
47

48
	spin_lock_irqsave(&vhci->lock, flags);
49 50 51

	/*
	 * output example:
52 53 54
	 * port sta spd dev      socket           local_busid
	 * 0000 004 000 00000000         c5a7bb80 1-2.3
	 * 0001 004 000 00000000         d8cee980 2-3.4
55 56 57 58 59
	 *
	 * IP address can be retrieved from a socket pointer address by looking
	 * up /proc/net/{tcp,tcp6}. Also, a userland program may remember a
	 * port number and its peer IP address.
	 */
60 61
	for (i = 0; i < VHCI_HC_PORTS; i++) {
		struct vhci_device *vdev = &vhci->vdev[i];
62 63

		spin_lock(&vdev->ud.lock);
64 65 66
		out += sprintf(out, "%04u %03u ",
				    (pdev_nr * VHCI_HC_PORTS) + i,
				    vdev->ud.status);
67 68 69

		if (vdev->ud.status == VDEV_ST_USED) {
			out += sprintf(out, "%03u %08x ",
70 71 72 73
					    vdev->speed, vdev->devid);
			out += sprintf(out, "%16p %s",
					    vdev->ud.tcp_socket,
					    dev_name(&vdev->udev->dev));
74

75
		} else {
76 77
			out += sprintf(out, "000 00000000 ");
			out += sprintf(out, "0000000000000000 0-0");
78
		}
79 80 81 82 83

		out += sprintf(out, "\n");
		spin_unlock(&vdev->ud.lock);
	}

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
	spin_unlock_irqrestore(&vhci->lock, flags);

	return out - s;
}

static ssize_t status_show_not_ready(int pdev_nr, char *out)
{
	char *s = out;
	int i = 0;

	for (i = 0; i < VHCI_HC_PORTS; i++) {
		out += sprintf(out, "%04u %03u ",
				    (pdev_nr * VHCI_HC_PORTS) + i,
				    VDEV_ST_NOTASSIGNED);
		out += sprintf(out, "000 00000000 0000000000000000 0-0");
		out += sprintf(out, "\n");
	}
	return out - s;
}

static int status_name_to_id(const char *name)
{
	char *c;
	long val;
	int ret;

	c = strchr(name, '.');
	if (c == NULL)
		return 0;
113

114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
	ret = kstrtol(c+1, 10, &val);
	if (ret < 0)
		return ret;

	return val;
}

static ssize_t status_show(struct device *dev,
			   struct device_attribute *attr, char *out)
{
	char *s = out;
	int pdev_nr;

	out += sprintf(out,
		       "port sta spd dev      socket           local_busid\n");

	pdev_nr = status_name_to_id(attr->attr.name);
	if (pdev_nr < 0)
		out += status_show_not_ready(pdev_nr, out);
	else
		out += status_show_vhci(pdev_nr, out);

	return out - s;
}

static ssize_t nports_show(struct device *dev, struct device_attribute *attr,
			   char *out)
{
	char *s = out;

	out += sprintf(out, "%d\n", VHCI_HC_PORTS * vhci_num_controllers);
145 146
	return out - s;
}
147
static DEVICE_ATTR_RO(nports);
148 149

/* Sysfs entry to shutdown a virtual connection */
150
static int vhci_port_disconnect(struct vhci_hcd *vhci, __u32 rhport)
151
{
152
	struct vhci_device *vdev = &vhci->vdev[rhport];
153
	unsigned long flags;
154

B
Brian G. Merrell 已提交
155
	usbip_dbg_vhci_sysfs("enter\n");
156 157

	/* lock */
158
	spin_lock_irqsave(&vhci->lock, flags);
159
	spin_lock(&vdev->ud.lock);
160

161
	if (vdev->ud.status == VDEV_ST_NULL) {
162
		pr_err("not connected %d\n", vdev->ud.status);
163 164 165

		/* unlock */
		spin_unlock(&vdev->ud.lock);
166
		spin_unlock_irqrestore(&vhci->lock, flags);
167 168 169 170 171 172

		return -EINVAL;
	}

	/* unlock */
	spin_unlock(&vdev->ud.lock);
173
	spin_unlock_irqrestore(&vhci->lock, flags);
174 175 176 177 178 179

	usbip_event_add(&vdev->ud, VDEV_EVENT_DOWN);

	return 0;
}

180 181 182 183 184 185 186 187 188 189 190 191 192
static int valid_port(__u32 pdev_nr, __u32 rhport)
{
	if (pdev_nr >= vhci_num_controllers) {
		pr_err("pdev %u\n", pdev_nr);
		return 0;
	}
	if (rhport >= VHCI_HC_PORTS) {
		pr_err("rhport %u\n", rhport);
		return 0;
	}
	return 1;
}

193 194 195
static ssize_t store_detach(struct device *dev, struct device_attribute *attr,
			    const char *buf, size_t count)
{
196 197 198
	__u32 port = 0, pdev_nr = 0, rhport = 0;
	struct usb_hcd *hcd;
	int ret;
199

200
	if (kstrtoint(buf, 10, &port) < 0)
201
		return -EINVAL;
202

203 204 205 206
	pdev_nr = port_to_pdev_nr(port);
	rhport = port_to_rhport(port);

	if (!valid_port(pdev_nr, rhport))
207
		return -EINVAL;
208 209 210 211 212

	hcd = platform_get_drvdata(*(vhci_pdevs + pdev_nr));
	if (hcd == NULL) {
		dev_err(dev, "port is not ready %u\n", port);
		return -EAGAIN;
213 214
	}

215
	ret = vhci_port_disconnect(hcd_to_vhci_hcd(hcd), rhport);
216
	if (ret < 0)
217 218
		return -EINVAL;

B
Brian G. Merrell 已提交
219
	usbip_dbg_vhci_sysfs("Leave\n");
220

221 222 223 224
	return count;
}
static DEVICE_ATTR(detach, S_IWUSR, NULL, store_detach);

225
static int valid_args(__u32 pdev_nr, __u32 rhport, enum usb_device_speed speed)
226
{
227 228
	if (!valid_port(pdev_nr, rhport)) {
		return 0;
229 230 231 232 233 234
	}

	switch (speed) {
	case USB_SPEED_LOW:
	case USB_SPEED_FULL:
	case USB_SPEED_HIGH:
235
	case USB_SPEED_WIRELESS:
236 237
		break;
	default:
238 239
		pr_err("Failed attach request for unsupported USB speed: %s\n",
			usb_speed_string(speed));
240
		return 0;
241 242
	}

243
	return 1;
244 245
}

246
/* Sysfs entry to establish a virtual connection */
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
/*
 * To start a new USB/IP attachment, a userland program needs to setup a TCP
 * connection and then write its socket descriptor with remote device
 * information into this sysfs file.
 *
 * A remote device is virtually attached to the root-hub port of @rhport with
 * @speed. @devid is embedded into a request to specify the remote device in a
 * server host.
 *
 * write() returns 0 on success, else negative errno.
 */
static ssize_t store_attach(struct device *dev, struct device_attribute *attr,
			    const char *buf, size_t count)
{
	struct socket *socket;
	int sockfd = 0;
263 264 265 266
	__u32 port = 0, pdev_nr = 0, rhport = 0, devid = 0, speed = 0;
	struct usb_hcd *hcd;
	struct vhci_hcd *vhci;
	struct vhci_device *vdev;
267
	int err;
268
	unsigned long flags;
269 270 271 272 273 274 275

	/*
	 * @rhport: port number of vhci_hcd
	 * @sockfd: socket descriptor of an established TCP connection
	 * @devid: unique device identifier in a remote host
	 * @speed: usb device speed in a remote host
	 */
276
	if (sscanf(buf, "%u %u %u %u", &port, &sockfd, &devid, &speed) != 4)
277
		return -EINVAL;
278 279
	pdev_nr = port_to_pdev_nr(port);
	rhport = port_to_rhport(port);
280

281 282 283 284
	usbip_dbg_vhci_sysfs("port(%u) pdev(%d) rhport(%u)\n",
			     port, pdev_nr, rhport);
	usbip_dbg_vhci_sysfs("sockfd(%u) devid(%u) speed(%u)\n",
			     sockfd, devid, speed);
285 286

	/* check received parameters */
287
	if (!valid_args(pdev_nr, rhport, speed))
288 289
		return -EINVAL;

290 291 292 293 294
	hcd = platform_get_drvdata(*(vhci_pdevs + pdev_nr));
	if (hcd == NULL) {
		dev_err(dev, "port %d is not ready\n", port);
		return -EAGAIN;
	}
295
	vhci = hcd_to_vhci_hcd(hcd);
296 297
	vdev = &vhci->vdev[rhport];

298
	/* Extract socket from fd. */
299
	socket = sockfd_lookup(sockfd, &err);
300
	if (!socket)
M
Márton Németh 已提交
301
		return -EINVAL;
302 303 304 305

	/* now need lock until setting vdev status as used */

	/* begin a lock */
306
	spin_lock_irqsave(&vhci->lock, flags);
307 308 309 310 311
	spin_lock(&vdev->ud.lock);

	if (vdev->ud.status != VDEV_ST_NULL) {
		/* end of the lock */
		spin_unlock(&vdev->ud.lock);
312
		spin_unlock_irqrestore(&vhci->lock, flags);
313

314
		sockfd_put(socket);
315

316
		dev_err(dev, "port %d already used\n", rhport);
317 318 319
		return -EINVAL;
	}

320 321 322 323
	dev_info(dev, "pdev(%u) rhport(%u) sockfd(%d)\n",
		 pdev_nr, rhport, sockfd);
	dev_info(dev, "devid(%u) speed(%u) speed_str(%s)\n",
		 devid, speed, usb_speed_string(speed));
324 325 326 327 328 329 330

	vdev->devid         = devid;
	vdev->speed         = speed;
	vdev->ud.tcp_socket = socket;
	vdev->ud.status     = VDEV_ST_NOTASSIGNED;

	spin_unlock(&vdev->ud.lock);
331
	spin_unlock_irqrestore(&vhci->lock, flags);
332 333
	/* end the lock */

334 335
	vdev->ud.tcp_rx = kthread_get_run(vhci_rx_loop, &vdev->ud, "vhci_rx");
	vdev->ud.tcp_tx = kthread_get_run(vhci_tx_loop, &vdev->ud, "vhci_tx");
336

337
	rh_port_connect(vdev, speed);
338 339 340 341 342

	return count;
}
static DEVICE_ATTR(attach, S_IWUSR, NULL, store_attach);

343 344 345 346 347
#define MAX_STATUS_NAME 16

struct status_attr {
	struct device_attribute attr;
	char name[MAX_STATUS_NAME+1];
348 349
};

350 351 352 353 354 355 356 357 358 359 360 361 362 363
static struct status_attr *status_attrs;

static void set_status_attr(int id)
{
	struct status_attr *status;

	status = status_attrs + id;
	if (id == 0)
		strcpy(status->name, "status");
	else
		snprintf(status->name, MAX_STATUS_NAME+1, "status.%d", id);
	status->attr.attr.name = status->name;
	status->attr.attr.mode = S_IRUGO;
	status->attr.show = status_show;
364
	sysfs_attr_init(&status->attr.attr);
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
}

static int init_status_attrs(void)
{
	int id;

	status_attrs = kcalloc(vhci_num_controllers, sizeof(struct status_attr),
			       GFP_KERNEL);
	if (status_attrs == NULL)
		return -ENOMEM;

	for (id = 0; id < vhci_num_controllers; id++)
		set_status_attr(id);

	return 0;
}

static void finish_status_attrs(void)
{
	kfree(status_attrs);
}

struct attribute_group vhci_attr_group = {
	.attrs = NULL,
389
};
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420

int vhci_init_attr_group(void)
{
	struct attribute **attrs;
	int ret, i;

	attrs = kcalloc((vhci_num_controllers + 5), sizeof(struct attribute *),
			GFP_KERNEL);
	if (attrs == NULL)
		return -ENOMEM;

	ret = init_status_attrs();
	if (ret) {
		kfree(attrs);
		return ret;
	}
	*attrs = &dev_attr_nports.attr;
	*(attrs + 1) = &dev_attr_detach.attr;
	*(attrs + 2) = &dev_attr_attach.attr;
	*(attrs + 3) = &dev_attr_usbip_debug.attr;
	for (i = 0; i < vhci_num_controllers; i++)
		*(attrs + i + 4) = &((status_attrs + i)->attr.attr);
	vhci_attr_group.attrs = attrs;
	return 0;
}

void vhci_finish_attr_group(void)
{
	finish_status_attrs();
	kfree(vhci_attr_group.attrs);
}