2 * Copyright (C) 2011 matt mooney <mfm@muteddisk.com>
3 * 2005-2007 Takahiro Hirofuchi
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
31 #include "vhci_driver.h"
32 #include "usbip_common.h"
33 #include "usbip_network.h"
36 static const char usbip_attach_usage_string
[] =
37 "usbip attach <args>\n"
38 " -r, --remote=<host> The machine with exported USB devices\n"
39 " -b, --busid=<busid> Busid of the device on <host>\n";
41 void usbip_attach_usage(void)
43 printf("usage: %s", usbip_attach_usage_string
);
47 static int record_connection(char *host
, char *port
, char *busid
, int rhport
)
50 char path
[PATH_MAX
+1];
51 char buff
[MAX_BUFF
+1];
54 ret
= mkdir(VHCI_STATE_PATH
, 0700);
56 /* if VHCI_STATE_PATH exists, then it better be a directory */
57 if (errno
== EEXIST
) {
60 ret
= stat(VHCI_STATE_PATH
, &s
);
63 if (!(s
.st_mode
& S_IFDIR
))
69 snprintf(path
, PATH_MAX
, VHCI_STATE_PATH
"/port%d", rhport
);
71 fd
= open(path
, O_WRONLY
|O_CREAT
|O_TRUNC
, S_IRWXU
);
75 snprintf(buff
, MAX_BUFF
, "%s %s %s\n",
78 ret
= write(fd
, buff
, strlen(buff
));
79 if (ret
!= (ssize_t
) strlen(buff
)) {
89 static int import_device(int sockfd
, struct usbip_usb_device
*udev
)
94 rc
= usbip_vhci_driver_open();
96 err("open vhci_driver");
100 port
= usbip_vhci_get_free_port();
103 usbip_vhci_driver_close();
107 rc
= usbip_vhci_attach_device(port
, sockfd
, udev
->busnum
,
108 udev
->devnum
, udev
->speed
);
110 err("import device");
111 usbip_vhci_driver_close();
115 usbip_vhci_driver_close();
120 static int query_import_device(int sockfd
, char *busid
)
123 struct op_import_request request
;
124 struct op_import_reply reply
;
125 uint16_t code
= OP_REP_IMPORT
;
127 memset(&request
, 0, sizeof(request
));
128 memset(&reply
, 0, sizeof(reply
));
131 rc
= usbip_net_send_op_common(sockfd
, OP_REQ_IMPORT
, 0);
133 err("send op_common");
137 strncpy(request
.busid
, busid
, SYSFS_BUS_ID_SIZE
-1);
139 PACK_OP_IMPORT_REQUEST(0, &request
);
141 rc
= usbip_net_send(sockfd
, (void *) &request
, sizeof(request
));
143 err("send op_import_request");
147 /* receive a reply */
148 rc
= usbip_net_recv_op_common(sockfd
, &code
);
150 err("recv op_common");
154 rc
= usbip_net_recv(sockfd
, (void *) &reply
, sizeof(reply
));
156 err("recv op_import_reply");
160 PACK_OP_IMPORT_REPLY(0, &reply
);
162 /* check the reply */
163 if (strncmp(reply
.udev
.busid
, busid
, SYSFS_BUS_ID_SIZE
)) {
164 err("recv different busid %s", reply
.udev
.busid
);
168 /* import a device */
169 return import_device(sockfd
, &reply
.udev
);
172 static int attach_device(char *host
, char *busid
)
178 sockfd
= usbip_net_tcp_connect(host
, usbip_port_string
);
184 rhport
= query_import_device(sockfd
, busid
);
192 rc
= record_connection(host
, usbip_port_string
, busid
, rhport
);
194 err("record connection");
201 int usbip_attach(int argc
, char *argv
[])
203 static const struct option opts
[] = {
204 { "remote", required_argument
, NULL
, 'r' },
205 { "busid", required_argument
, NULL
, 'b' },
214 opt
= getopt_long(argc
, argv
, "r:b:", opts
, NULL
);
234 ret
= attach_device(host
, busid
);
238 usbip_attach_usage();