2 * Copyright (C) 2011 matt mooney <mfm@muteddisk.com>
3 * 2005-2007 Takahiro Hirofuchi
4 * Copyright (C) 2015-2016 Samsung Electronics
5 * Igor Kotrasinski <i.kotrasinsk@samsung.com>
6 * Krzysztof Opasiak <k.opasiak@samsung.com>
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
34 #include "vhci_driver.h"
35 #include "usbip_common.h"
36 #include "usbip_network.h"
39 static const char usbip_attach_usage_string
[] =
40 "usbip attach <args>\n"
41 " -r, --remote=<host> The machine with exported USB devices\n"
42 " -b, --busid=<busid> Busid of the device on <host>\n"
43 " -d, --device=<devid> Id of the virtual UDC on <host>\n";
45 void usbip_attach_usage(void)
47 printf("usage: %s", usbip_attach_usage_string
);
51 static int record_connection(char *host
, char *port
, char *busid
, int rhport
)
54 char path
[PATH_MAX
+1];
55 char buff
[MAX_BUFF
+1];
58 ret
= mkdir(VHCI_STATE_PATH
, 0700);
60 /* if VHCI_STATE_PATH exists, then it better be a directory */
61 if (errno
== EEXIST
) {
64 ret
= stat(VHCI_STATE_PATH
, &s
);
67 if (!(s
.st_mode
& S_IFDIR
))
73 snprintf(path
, PATH_MAX
, VHCI_STATE_PATH
"/port%d", rhport
);
75 fd
= open(path
, O_WRONLY
|O_CREAT
|O_TRUNC
, S_IRWXU
);
79 snprintf(buff
, MAX_BUFF
, "%s %s %s\n",
82 ret
= write(fd
, buff
, strlen(buff
));
83 if (ret
!= (ssize_t
) strlen(buff
)) {
93 static int import_device(int sockfd
, struct usbip_usb_device
*udev
)
97 uint32_t speed
= udev
->speed
;
99 rc
= usbip_vhci_driver_open();
101 err("open vhci_driver");
106 port
= usbip_vhci_get_free_port(speed
);
109 goto err_driver_close
;
112 dbg("got free port %d", port
);
114 rc
= usbip_vhci_attach_device(port
, sockfd
, udev
->busnum
,
115 udev
->devnum
, udev
->speed
);
116 if (rc
< 0 && errno
!= EBUSY
) {
117 err("import device");
118 goto err_driver_close
;
122 usbip_vhci_driver_close();
127 usbip_vhci_driver_close();
132 static int query_import_device(int sockfd
, char *busid
)
135 struct op_import_request request
;
136 struct op_import_reply reply
;
137 uint16_t code
= OP_REP_IMPORT
;
139 memset(&request
, 0, sizeof(request
));
140 memset(&reply
, 0, sizeof(reply
));
143 rc
= usbip_net_send_op_common(sockfd
, OP_REQ_IMPORT
, 0);
145 err("send op_common");
149 strncpy(request
.busid
, busid
, SYSFS_BUS_ID_SIZE
-1);
151 PACK_OP_IMPORT_REQUEST(0, &request
);
153 rc
= usbip_net_send(sockfd
, (void *) &request
, sizeof(request
));
155 err("send op_import_request");
159 /* receive a reply */
160 rc
= usbip_net_recv_op_common(sockfd
, &code
);
162 err("recv op_common");
166 rc
= usbip_net_recv(sockfd
, (void *) &reply
, sizeof(reply
));
168 err("recv op_import_reply");
172 PACK_OP_IMPORT_REPLY(0, &reply
);
174 /* check the reply */
175 if (strncmp(reply
.udev
.busid
, busid
, SYSFS_BUS_ID_SIZE
)) {
176 err("recv different busid %s", reply
.udev
.busid
);
180 /* import a device */
181 return import_device(sockfd
, &reply
.udev
);
184 static int attach_device(char *host
, char *busid
)
190 sockfd
= usbip_net_tcp_connect(host
, usbip_port_string
);
196 rhport
= query_import_device(sockfd
, busid
);
204 rc
= record_connection(host
, usbip_port_string
, busid
, rhport
);
206 err("record connection");
213 int usbip_attach(int argc
, char *argv
[])
215 static const struct option opts
[] = {
216 { "remote", required_argument
, NULL
, 'r' },
217 { "busid", required_argument
, NULL
, 'b' },
218 { "device", required_argument
, NULL
, 'd' },
227 opt
= getopt_long(argc
, argv
, "d:r:b:", opts
, NULL
);
248 ret
= attach_device(host
, busid
);
252 usbip_attach_usage();