ACPI / PNP: Avoid conflicting resource reservations
[linux/fpc-iii.git] / tools / usb / usbip / src / usbip_network.c
blobb4c37e76a6e08f7973bcf324dd87a612d621546d
1 /*
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/>.
19 #include <sys/socket.h>
21 #include <string.h>
23 #include <arpa/inet.h>
24 #include <netdb.h>
25 #include <netinet/tcp.h>
26 #include <unistd.h>
28 #ifdef HAVE_LIBWRAP
29 #include <tcpd.h>
30 #endif
32 #include "usbip_common.h"
33 #include "usbip_network.h"
35 int usbip_port = 3240;
36 char *usbip_port_string = "3240";
38 void usbip_setup_port_number(char *arg)
40 dbg("parsing port arg '%s'", arg);
41 char *end;
42 unsigned long int port = strtoul(arg, &end, 10);
44 if (end == arg) {
45 err("port: could not parse '%s' as a decimal integer", arg);
46 return;
49 if (*end != '\0') {
50 err("port: garbage at end of '%s'", arg);
51 return;
54 if (port > UINT16_MAX) {
55 err("port: %s too high (max=%d)",
56 arg, UINT16_MAX);
57 return;
60 usbip_port = port;
61 usbip_port_string = arg;
62 info("using port %d (\"%s\")", usbip_port, usbip_port_string);
65 void usbip_net_pack_uint32_t(int pack, uint32_t *num)
67 uint32_t i;
69 if (pack)
70 i = htonl(*num);
71 else
72 i = ntohl(*num);
74 *num = i;
77 void usbip_net_pack_uint16_t(int pack, uint16_t *num)
79 uint16_t i;
81 if (pack)
82 i = htons(*num);
83 else
84 i = ntohs(*num);
86 *num = i;
89 void usbip_net_pack_usb_device(int pack, struct usbip_usb_device *udev)
91 usbip_net_pack_uint32_t(pack, &udev->busnum);
92 usbip_net_pack_uint32_t(pack, &udev->devnum);
93 usbip_net_pack_uint32_t(pack, &udev->speed);
95 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);
100 void usbip_net_pack_usb_interface(int pack __attribute__((unused)),
101 struct usbip_usb_interface *udev
102 __attribute__((unused)))
104 /* uint8_t members need nothing */
107 static ssize_t usbip_net_xmit(int sockfd, void *buff, size_t bufflen,
108 int sending)
110 ssize_t nbytes;
111 ssize_t total = 0;
113 if (!bufflen)
114 return 0;
116 do {
117 if (sending)
118 nbytes = send(sockfd, buff, bufflen, 0);
119 else
120 nbytes = recv(sockfd, buff, bufflen, MSG_WAITALL);
122 if (nbytes <= 0)
123 return -1;
125 buff = (void *)((intptr_t) buff + nbytes);
126 bufflen -= nbytes;
127 total += nbytes;
129 } while (bufflen > 0);
131 return total;
134 ssize_t usbip_net_recv(int sockfd, void *buff, size_t bufflen)
136 return usbip_net_xmit(sockfd, buff, bufflen, 0);
139 ssize_t usbip_net_send(int sockfd, void *buff, size_t bufflen)
141 return usbip_net_xmit(sockfd, buff, bufflen, 1);
144 int usbip_net_send_op_common(int sockfd, uint32_t code, uint32_t status)
146 struct op_common op_common;
147 int rc;
149 memset(&op_common, 0, sizeof(op_common));
151 op_common.version = USBIP_VERSION;
152 op_common.code = code;
153 op_common.status = status;
155 PACK_OP_COMMON(1, &op_common);
157 rc = usbip_net_send(sockfd, &op_common, sizeof(op_common));
158 if (rc < 0) {
159 dbg("usbip_net_send failed: %d", rc);
160 return -1;
163 return 0;
166 int usbip_net_recv_op_common(int sockfd, uint16_t *code)
168 struct op_common op_common;
169 int rc;
171 memset(&op_common, 0, sizeof(op_common));
173 rc = usbip_net_recv(sockfd, &op_common, sizeof(op_common));
174 if (rc < 0) {
175 dbg("usbip_net_recv failed: %d", rc);
176 goto err;
179 PACK_OP_COMMON(0, &op_common);
181 if (op_common.version != USBIP_VERSION) {
182 dbg("version mismatch: %d %d", op_common.version,
183 USBIP_VERSION);
184 goto err;
187 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;
198 if (op_common.status != ST_OK) {
199 dbg("request failed at peer: %d", op_common.status);
200 goto err;
203 *code = op_common.code;
205 return 0;
206 err:
207 return -1;
210 int usbip_net_set_reuseaddr(int sockfd)
212 const int val = 1;
213 int ret;
215 ret = setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
216 if (ret < 0)
217 dbg("setsockopt: SO_REUSEADDR");
219 return ret;
222 int usbip_net_set_nodelay(int sockfd)
224 const int val = 1;
225 int ret;
227 ret = setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
228 if (ret < 0)
229 dbg("setsockopt: TCP_NODELAY");
231 return ret;
234 int usbip_net_set_keepalive(int sockfd)
236 const int val = 1;
237 int ret;
239 ret = setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val));
240 if (ret < 0)
241 dbg("setsockopt: SO_KEEPALIVE");
243 return ret;
246 int usbip_net_set_v6only(int sockfd)
248 const int val = 1;
249 int ret;
251 ret = setsockopt(sockfd, IPPROTO_IPV6, IPV6_V6ONLY, &val, sizeof(val));
252 if (ret < 0)
253 dbg("setsockopt: IPV6_V6ONLY");
255 return ret;
259 * IPv6 Ready
261 int usbip_net_tcp_connect(char *hostname, char *service)
263 struct addrinfo hints, *res, *rp;
264 int sockfd;
265 int ret;
267 memset(&hints, 0, sizeof(hints));
268 hints.ai_family = AF_UNSPEC;
269 hints.ai_socktype = SOCK_STREAM;
271 /* get all possible addresses */
272 ret = getaddrinfo(hostname, service, &hints, &res);
273 if (ret < 0) {
274 dbg("getaddrinfo: %s service %s: %s", hostname, service,
275 gai_strerror(ret));
276 return ret;
279 /* 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)
284 continue;
286 /* should set TCP_NODELAY for usbip */
287 usbip_net_set_nodelay(sockfd);
288 /* TODO: write code for heartbeat */
289 usbip_net_set_keepalive(sockfd);
291 if (connect(sockfd, rp->ai_addr, rp->ai_addrlen) == 0)
292 break;
294 close(sockfd);
297 freeaddrinfo(res);
299 if (!rp)
300 return EAI_SYSTEM;
302 return sockfd;