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 BUG_ON(!the_controller
|| !out
);
36 spin_lock(&the_controller
->lock
);
40 * prt sta spd dev socket local_busid
41 * 000 004 000 000 c5a7bb80 1-2.3
42 * 001 004 000 000 d8cee980 2-3.4
44 * IP address can be retrieved from a socket pointer address by looking
45 * up /proc/net/{tcp,tcp6}. Also, a userland program may remember a
46 * port number and its peer IP address.
48 out
+= sprintf(out
, "prt sta spd bus dev socket "
51 for (i
= 0; i
< VHCI_NPORTS
; i
++) {
52 struct vhci_device
*vdev
= port_to_vdev(i
);
54 spin_lock(&vdev
->ud
.lock
);
56 out
+= sprintf(out
, "%03u %03u ", i
, vdev
->ud
.status
);
58 if (vdev
->ud
.status
== VDEV_ST_USED
) {
59 out
+= sprintf(out
, "%03u %08x ",
60 vdev
->speed
, vdev
->devid
);
61 out
+= sprintf(out
, "%16p ", vdev
->ud
.tcp_socket
);
62 out
+= sprintf(out
, "%s", dev_name(&vdev
->udev
->dev
));
65 out
+= sprintf(out
, "000 000 000 0000000000000000 0-0");
67 out
+= sprintf(out
, "\n");
69 spin_unlock(&vdev
->ud
.lock
);
72 spin_unlock(&the_controller
->lock
);
76 static DEVICE_ATTR(status
, S_IRUGO
, show_status
, NULL
);
78 /* Sysfs entry to shutdown a virtual connection */
79 static int vhci_port_disconnect(__u32 rhport
)
81 struct vhci_device
*vdev
;
83 usbip_dbg_vhci_sysfs("enter\n");
86 spin_lock(&the_controller
->lock
);
88 vdev
= port_to_vdev(rhport
);
90 spin_lock(&vdev
->ud
.lock
);
91 if (vdev
->ud
.status
== VDEV_ST_NULL
) {
92 usbip_uerr("not connected %d\n", vdev
->ud
.status
);
95 spin_unlock(&vdev
->ud
.lock
);
96 spin_unlock(&the_controller
->lock
);
102 spin_unlock(&vdev
->ud
.lock
);
103 spin_unlock(&the_controller
->lock
);
105 usbip_event_add(&vdev
->ud
, VDEV_EVENT_DOWN
);
110 static ssize_t
store_detach(struct device
*dev
, struct device_attribute
*attr
,
111 const char *buf
, size_t count
)
116 sscanf(buf
, "%u", &rhport
);
119 if (rhport
>= VHCI_NPORTS
) {
120 usbip_uerr("invalid port %u\n", rhport
);
124 err
= vhci_port_disconnect(rhport
);
128 usbip_dbg_vhci_sysfs("Leave\n");
131 static DEVICE_ATTR(detach
, S_IWUSR
, NULL
, store_detach
);
133 /* Sysfs entry to establish a virtual connection */
134 static int valid_args(__u32 rhport
, enum usb_device_speed speed
)
137 if ((rhport
< 0) || (rhport
>= VHCI_NPORTS
)) {
138 usbip_uerr("port %u\n", rhport
);
147 case USB_SPEED_VARIABLE
:
150 usbip_uerr("speed %d\n", speed
);
158 * To start a new USB/IP attachment, a userland program needs to setup a TCP
159 * connection and then write its socket descriptor with remote device
160 * information into this sysfs file.
162 * A remote device is virtually attached to the root-hub port of @rhport with
163 * @speed. @devid is embedded into a request to specify the remote device in a
166 * write() returns 0 on success, else negative errno.
168 static ssize_t
store_attach(struct device
*dev
, struct device_attribute
*attr
,
169 const char *buf
, size_t count
)
171 struct vhci_device
*vdev
;
172 struct socket
*socket
;
174 __u32 rhport
= 0, devid
= 0, speed
= 0;
177 * @rhport: port number of vhci_hcd
178 * @sockfd: socket descriptor of an established TCP connection
179 * @devid: unique device identifier in a remote host
180 * @speed: usb device speed in a remote host
182 sscanf(buf
, "%u %u %u %u", &rhport
, &sockfd
, &devid
, &speed
);
184 usbip_dbg_vhci_sysfs("rhport(%u) sockfd(%u) devid(%u) speed(%u)\n",
185 rhport
, sockfd
, devid
, speed
);
188 /* check received parameters */
189 if (valid_args(rhport
, speed
) < 0)
193 socket
= sockfd_to_socket(sockfd
);
197 /* now need lock until setting vdev status as used */
200 spin_lock(&the_controller
->lock
);
202 vdev
= port_to_vdev(rhport
);
204 spin_lock(&vdev
->ud
.lock
);
206 if (vdev
->ud
.status
!= VDEV_ST_NULL
) {
207 /* end of the lock */
208 spin_unlock(&vdev
->ud
.lock
);
209 spin_unlock(&the_controller
->lock
);
211 usbip_uerr("port %d already used\n", rhport
);
215 usbip_uinfo("rhport(%u) sockfd(%d) devid(%u) speed(%u)\n",
216 rhport
, sockfd
, devid
, speed
);
220 vdev
->ud
.tcp_socket
= socket
;
221 vdev
->ud
.status
= VDEV_ST_NOTASSIGNED
;
223 spin_unlock(&vdev
->ud
.lock
);
224 spin_unlock(&the_controller
->lock
);
228 * this function will sleep, so should be out of the lock. but, it's ok
229 * because we already marked vdev as being used. really?
231 usbip_start_threads(&vdev
->ud
);
233 rh_port_connect(rhport
, speed
);
237 static DEVICE_ATTR(attach
, S_IWUSR
, NULL
, store_attach
);
239 static struct attribute
*dev_attrs
[] = {
240 &dev_attr_status
.attr
,
241 &dev_attr_detach
.attr
,
242 &dev_attr_attach
.attr
,
243 &dev_attr_usbip_debug
.attr
,
247 struct attribute_group dev_attr_group
= {