2 * Copyright (C) 2003-2008 Takahiro Hirofuchi
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.
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.
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,
20 #include "usbip_common.h"
25 /* TODO: refine locking ?*/
27 /* Sysfs entry to show port status */
28 static ssize_t show_status(struct device *dev, struct device_attribute *attr,
34 if (!the_controller || !out)
37 spin_lock(&the_controller->lock);
41 * prt sta spd dev socket local_busid
42 * 000 004 000 000 c5a7bb80 1-2.3
43 * 001 004 000 000 d8cee980 2-3.4
45 * IP address can be retrieved from a socket pointer address by looking
46 * up /proc/net/{tcp,tcp6}. Also, a userland program may remember a
47 * port number and its peer IP address.
49 out += sprintf(out, "prt sta spd bus dev socket "
52 for (i = 0; i < VHCI_NPORTS; i++) {
53 struct vhci_device *vdev = port_to_vdev(i);
55 spin_lock(&vdev->ud.lock);
57 out += sprintf(out, "%03u %03u ", i, vdev->ud.status);
59 if (vdev->ud.status == VDEV_ST_USED) {
60 out += sprintf(out, "%03u %08x ",
61 vdev->speed, vdev->devid);
62 out += sprintf(out, "%16p ", vdev->ud.tcp_socket);
63 out += sprintf(out, "%s", dev_name(&vdev->udev->dev));
66 out += sprintf(out, "000 000 000 0000000000000000 0-0");
68 out += sprintf(out, "\n");
70 spin_unlock(&vdev->ud.lock);
73 spin_unlock(&the_controller->lock);
77 static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
79 /* Sysfs entry to shutdown a virtual connection */
80 static int vhci_port_disconnect(__u32 rhport)
82 struct vhci_device *vdev;
84 dbg_vhci_sysfs("enter\n");
87 spin_lock(&the_controller->lock);
89 vdev = port_to_vdev(rhport);
91 spin_lock(&vdev->ud.lock);
92 if (vdev->ud.status == VDEV_ST_NULL) {
93 uerr("not connected %d\n", vdev->ud.status);
96 spin_unlock(&vdev->ud.lock);
97 spin_unlock(&the_controller->lock);
103 spin_unlock(&vdev->ud.lock);
104 spin_unlock(&the_controller->lock);
106 usbip_event_add(&vdev->ud, VDEV_EVENT_DOWN);
111 static ssize_t store_detach(struct device *dev, struct device_attribute *attr,
112 const char *buf, size_t count)
117 sscanf(buf, "%u", &rhport);
120 if (rhport >= VHCI_NPORTS) {
121 uerr("invalid port %u\n", rhport);
125 err = vhci_port_disconnect(rhport);
129 dbg_vhci_sysfs("Leave\n");
132 static DEVICE_ATTR(detach, S_IWUSR, NULL, store_detach);
134 /* Sysfs entry to establish a virtual connection */
135 static int valid_args(__u32 rhport, enum usb_device_speed speed)
138 if ((rhport < 0) || (rhport >= VHCI_NPORTS)) {
139 uerr("port %u\n", rhport);
148 case USB_SPEED_VARIABLE:
151 uerr("speed %d\n", speed);
159 * To start a new USB/IP attachment, a userland program needs to setup a TCP
160 * connection and then write its socket descriptor with remote device
161 * information into this sysfs file.
163 * A remote device is virtually attached to the root-hub port of @rhport with
164 * @speed. @devid is embedded into a request to specify the remote device in a
167 * write() returns 0 on success, else negative errno.
169 static ssize_t store_attach(struct device *dev, struct device_attribute *attr,
170 const char *buf, size_t count)
172 struct vhci_device *vdev;
173 struct socket *socket;
175 __u32 rhport = 0, devid = 0, speed = 0;
178 * @rhport: port number of vhci_hcd
179 * @sockfd: socket descriptor of an established TCP connection
180 * @devid: unique device identifier in a remote host
181 * @speed: usb device speed in a remote host
183 sscanf(buf, "%u %u %u %u", &rhport, &sockfd, &devid, &speed);
185 dbg_vhci_sysfs("rhport(%u) sockfd(%u) devid(%u) speed(%u)\n",
186 rhport, sockfd, devid, speed);
189 /* check received parameters */
190 if (valid_args(rhport, speed) < 0)
194 socket = sockfd_to_socket(sockfd);
198 /* now need lock until setting vdev status as used */
201 spin_lock(&the_controller->lock);
203 vdev = port_to_vdev(rhport);
205 spin_lock(&vdev->ud.lock);
207 if (vdev->ud.status != VDEV_ST_NULL) {
208 /* end of the lock */
209 spin_unlock(&vdev->ud.lock);
210 spin_unlock(&the_controller->lock);
212 uerr("port %d already used\n", rhport);
216 uinfo("rhport(%u) sockfd(%d) devid(%u) speed(%u)\n",
217 rhport, sockfd, devid, speed);
221 vdev->ud.tcp_socket = socket;
222 vdev->ud.status = VDEV_ST_NOTASSIGNED;
224 spin_unlock(&vdev->ud.lock);
225 spin_unlock(&the_controller->lock);
229 * this function will sleep, so should be out of the lock. but, it's ok
230 * because we already marked vdev as being used. really?
232 usbip_start_threads(&vdev->ud);
234 rh_port_connect(rhport, speed);
238 static DEVICE_ATTR(attach, S_IWUSR, NULL, store_attach);
240 static struct attribute *dev_attrs[] = {
241 &dev_attr_status.attr,
242 &dev_attr_detach.attr,
243 &dev_attr_attach.attr,
244 &dev_attr_usbip_debug.attr,
248 struct attribute_group dev_attr_group = {