blob: b4c37e76a6e08f7973bcf324dd87a612d621546d [file] [log] [blame]
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -07001/*
matt mooneyfb5ca812011-06-19 22:44:49 -07002 * Copyright (C) 2011 matt mooney <mfm@muteddisk.com>
3 * 2005-2007 Takahiro Hirofuchi
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -07004 *
matt mooneyfb5ca812011-06-19 22:44:49 -07005 * 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.
9 *
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.
14 *
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/>.
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -070017 */
18
matt mooney1e35d872011-05-26 06:17:13 -070019#include <sys/socket.h>
matt mooney1e35d872011-05-26 06:17:13 -070020
21#include <string.h>
22
matt mooney35dd0c22011-05-27 01:44:14 -070023#include <arpa/inet.h>
matt mooney1e35d872011-05-26 06:17:13 -070024#include <netdb.h>
25#include <netinet/tcp.h>
26#include <unistd.h>
27
Tobias Polzer414ef692013-09-19 10:39:38 +020028#ifdef HAVE_LIBWRAP
29#include <tcpd.h>
30#endif
31
matt mooney1e35d872011-05-26 06:17:13 -070032#include "usbip_common.h"
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -070033#include "usbip_network.h"
34
Anthony Foiani7182f8f2013-08-22 22:06:40 -060035int usbip_port = 3240;
36char *usbip_port_string = "3240";
37
38void usbip_setup_port_number(char *arg)
39{
40 dbg("parsing port arg '%s'", arg);
41 char *end;
42 unsigned long int port = strtoul(arg, &end, 10);
43
44 if (end == arg) {
45 err("port: could not parse '%s' as a decimal integer", arg);
46 return;
47 }
48
49 if (*end != '\0') {
50 err("port: garbage at end of '%s'", arg);
51 return;
52 }
53
54 if (port > UINT16_MAX) {
55 err("port: %s too high (max=%d)",
56 arg, UINT16_MAX);
57 return;
58 }
59
60 usbip_port = port;
61 usbip_port_string = arg;
62 info("using port %d (\"%s\")", usbip_port, usbip_port_string);
63}
64
matt mooney3c6e9e82011-07-07 00:31:51 -070065void usbip_net_pack_uint32_t(int pack, uint32_t *num)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -070066{
67 uint32_t i;
68
69 if (pack)
70 i = htonl(*num);
71 else
72 i = ntohl(*num);
73
74 *num = i;
75}
76
matt mooney3c6e9e82011-07-07 00:31:51 -070077void usbip_net_pack_uint16_t(int pack, uint16_t *num)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -070078{
79 uint16_t i;
80
81 if (pack)
82 i = htons(*num);
83 else
84 i = ntohs(*num);
85
86 *num = i;
87}
88
matt mooney3c6e9e82011-07-07 00:31:51 -070089void usbip_net_pack_usb_device(int pack, struct usbip_usb_device *udev)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -070090{
matt mooney3c6e9e82011-07-07 00:31:51 -070091 usbip_net_pack_uint32_t(pack, &udev->busnum);
92 usbip_net_pack_uint32_t(pack, &udev->devnum);
Stefan Reif50373072013-02-22 12:13:33 +010093 usbip_net_pack_uint32_t(pack, &udev->speed);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -070094
matt mooney3c6e9e82011-07-07 00:31:51 -070095 usbip_net_pack_uint16_t(pack, &udev->idVendor);
96 usbip_net_pack_uint16_t(pack, &udev->idProduct);
97 usbip_net_pack_uint16_t(pack, &udev->bcdDevice);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -070098}
99
matt mooney3c6e9e82011-07-07 00:31:51 -0700100void usbip_net_pack_usb_interface(int pack __attribute__((unused)),
101 struct usbip_usb_interface *udev
102 __attribute__((unused)))
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700103{
104 /* uint8_t members need nothing */
105}
106
matt mooney3c6e9e82011-07-07 00:31:51 -0700107static ssize_t usbip_net_xmit(int sockfd, void *buff, size_t bufflen,
108 int sending)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700109{
matt mooneyfb5ca812011-06-19 22:44:49 -0700110 ssize_t nbytes;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700111 ssize_t total = 0;
112
113 if (!bufflen)
114 return 0;
115
116 do {
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700117 if (sending)
118 nbytes = send(sockfd, buff, bufflen, 0);
119 else
120 nbytes = recv(sockfd, buff, bufflen, MSG_WAITALL);
121
122 if (nbytes <= 0)
123 return -1;
124
matt mooneyfb5ca812011-06-19 22:44:49 -0700125 buff = (void *)((intptr_t) buff + nbytes);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700126 bufflen -= nbytes;
127 total += nbytes;
128
129 } while (bufflen > 0);
130
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700131 return total;
132}
133
matt mooney3c6e9e82011-07-07 00:31:51 -0700134ssize_t usbip_net_recv(int sockfd, void *buff, size_t bufflen)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700135{
matt mooney3c6e9e82011-07-07 00:31:51 -0700136 return usbip_net_xmit(sockfd, buff, bufflen, 0);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700137}
138
matt mooney3c6e9e82011-07-07 00:31:51 -0700139ssize_t usbip_net_send(int sockfd, void *buff, size_t bufflen)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700140{
matt mooney3c6e9e82011-07-07 00:31:51 -0700141 return usbip_net_xmit(sockfd, buff, bufflen, 1);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700142}
143
matt mooney3c6e9e82011-07-07 00:31:51 -0700144int usbip_net_send_op_common(int sockfd, uint32_t code, uint32_t status)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700145{
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700146 struct op_common op_common;
matt mooneyfb5ca812011-06-19 22:44:49 -0700147 int rc;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700148
matt mooney950a4cd2011-05-27 01:44:10 -0700149 memset(&op_common, 0, sizeof(op_common));
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700150
matt mooney35dd0c22011-05-27 01:44:14 -0700151 op_common.version = USBIP_VERSION;
152 op_common.code = code;
153 op_common.status = status;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700154
155 PACK_OP_COMMON(1, &op_common);
156
matt mooney3c6e9e82011-07-07 00:31:51 -0700157 rc = usbip_net_send(sockfd, &op_common, sizeof(op_common));
matt mooneyfb5ca812011-06-19 22:44:49 -0700158 if (rc < 0) {
matt mooney3c6e9e82011-07-07 00:31:51 -0700159 dbg("usbip_net_send failed: %d", rc);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700160 return -1;
161 }
162
163 return 0;
164}
165
matt mooney3c6e9e82011-07-07 00:31:51 -0700166int usbip_net_recv_op_common(int sockfd, uint16_t *code)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700167{
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700168 struct op_common op_common;
matt mooneyfb5ca812011-06-19 22:44:49 -0700169 int rc;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700170
matt mooney950a4cd2011-05-27 01:44:10 -0700171 memset(&op_common, 0, sizeof(op_common));
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700172
matt mooney3c6e9e82011-07-07 00:31:51 -0700173 rc = usbip_net_recv(sockfd, &op_common, sizeof(op_common));
matt mooneyfb5ca812011-06-19 22:44:49 -0700174 if (rc < 0) {
matt mooney3c6e9e82011-07-07 00:31:51 -0700175 dbg("usbip_net_recv failed: %d", rc);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700176 goto err;
177 }
178
179 PACK_OP_COMMON(0, &op_common);
180
181 if (op_common.version != USBIP_VERSION) {
matt mooneyfb5ca812011-06-19 22:44:49 -0700182 dbg("version mismatch: %d %d", op_common.version,
183 USBIP_VERSION);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700184 goto err;
185 }
186
matt mooneyfb5ca812011-06-19 22:44:49 -0700187 switch (*code) {
188 case OP_UNSPEC:
189 break;
190 default:
191 if (op_common.code != *code) {
192 dbg("unexpected pdu %#0x for %#0x", op_common.code,
193 *code);
194 goto err;
195 }
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700196 }
197
198 if (op_common.status != ST_OK) {
matt mooneyfb5ca812011-06-19 22:44:49 -0700199 dbg("request failed at peer: %d", op_common.status);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700200 goto err;
201 }
202
203 *code = op_common.code;
204
205 return 0;
206err:
207 return -1;
208}
209
matt mooney3c6e9e82011-07-07 00:31:51 -0700210int usbip_net_set_reuseaddr(int sockfd)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700211{
212 const int val = 1;
213 int ret;
214
215 ret = setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
216 if (ret < 0)
matt mooneyfb5ca812011-06-19 22:44:49 -0700217 dbg("setsockopt: SO_REUSEADDR");
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700218
219 return ret;
220}
221
matt mooney3c6e9e82011-07-07 00:31:51 -0700222int usbip_net_set_nodelay(int sockfd)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700223{
224 const int val = 1;
225 int ret;
226
227 ret = setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
228 if (ret < 0)
matt mooneyfb5ca812011-06-19 22:44:49 -0700229 dbg("setsockopt: TCP_NODELAY");
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700230
231 return ret;
232}
233
matt mooney3c6e9e82011-07-07 00:31:51 -0700234int usbip_net_set_keepalive(int sockfd)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700235{
236 const int val = 1;
237 int ret;
238
239 ret = setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val));
240 if (ret < 0)
matt mooneyfb5ca812011-06-19 22:44:49 -0700241 dbg("setsockopt: SO_KEEPALIVE");
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700242
243 return ret;
244}
245
Dominik Paulusf49ad352013-09-13 11:55:51 +0200246int usbip_net_set_v6only(int sockfd)
247{
248 const int val = 1;
249 int ret;
250
251 ret = setsockopt(sockfd, IPPROTO_IPV6, IPV6_V6ONLY, &val, sizeof(val));
252 if (ret < 0)
253 dbg("setsockopt: IPV6_V6ONLY");
254
255 return ret;
256}
257
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700258/*
matt mooney1e35d872011-05-26 06:17:13 -0700259 * IPv6 Ready
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700260 */
matt mooneyfb5ca812011-06-19 22:44:49 -0700261int usbip_net_tcp_connect(char *hostname, char *service)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700262{
matt mooney1e35d872011-05-26 06:17:13 -0700263 struct addrinfo hints, *res, *rp;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700264 int sockfd;
matt mooney1e35d872011-05-26 06:17:13 -0700265 int ret;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700266
267 memset(&hints, 0, sizeof(hints));
matt mooney1e35d872011-05-26 06:17:13 -0700268 hints.ai_family = AF_UNSPEC;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700269 hints.ai_socktype = SOCK_STREAM;
270
271 /* get all possible addresses */
matt mooneyfb5ca812011-06-19 22:44:49 -0700272 ret = getaddrinfo(hostname, service, &hints, &res);
matt mooney1e35d872011-05-26 06:17:13 -0700273 if (ret < 0) {
matt mooneyfb5ca812011-06-19 22:44:49 -0700274 dbg("getaddrinfo: %s service %s: %s", hostname, service,
matt mooney1e35d872011-05-26 06:17:13 -0700275 gai_strerror(ret));
276 return ret;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700277 }
278
matt mooney1e35d872011-05-26 06:17:13 -0700279 /* try the addresses */
280 for (rp = res; rp; rp = rp->ai_next) {
281 sockfd = socket(rp->ai_family, rp->ai_socktype,
282 rp->ai_protocol);
283 if (sockfd < 0)
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700284 continue;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700285
286 /* should set TCP_NODELAY for usbip */
matt mooney3c6e9e82011-07-07 00:31:51 -0700287 usbip_net_set_nodelay(sockfd);
matt mooney1e35d872011-05-26 06:17:13 -0700288 /* TODO: write code for heartbeat */
matt mooney3c6e9e82011-07-07 00:31:51 -0700289 usbip_net_set_keepalive(sockfd);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700290
matt mooney1e35d872011-05-26 06:17:13 -0700291 if (connect(sockfd, rp->ai_addr, rp->ai_addrlen) == 0)
292 break;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700293
matt mooney1e35d872011-05-26 06:17:13 -0700294 close(sockfd);
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700295 }
296
Stefan Reife6979492013-04-04 16:03:12 +0200297 freeaddrinfo(res);
298
matt mooney1e35d872011-05-26 06:17:13 -0700299 if (!rp)
300 return EAI_SYSTEM;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700301
matt mooney1e35d872011-05-26 06:17:13 -0700302 return sockfd;
Takahiro Hirofuchi0945b4f2011-05-14 03:55:07 -0700303}