1 | /* $Id: proxy.c 69496 2017-10-28 14:55:58Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * NAT Network - proxy setup and utilities.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2013-2017 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #define LOG_GROUP LOG_GROUP_NAT_SERVICE
|
---|
19 |
|
---|
20 | #include "winutils.h"
|
---|
21 |
|
---|
22 | #include "proxy.h"
|
---|
23 | #include "proxy_pollmgr.h"
|
---|
24 | #include "portfwd.h"
|
---|
25 |
|
---|
26 | #include "lwip/opt.h"
|
---|
27 |
|
---|
28 | #include "lwip/sys.h"
|
---|
29 | #include "lwip/tcpip.h"
|
---|
30 |
|
---|
31 | #ifndef RT_OS_WINDOWS
|
---|
32 | #include <sys/poll.h>
|
---|
33 | #include <sys/socket.h>
|
---|
34 | #include <netinet/in.h>
|
---|
35 | #include <arpa/inet.h>
|
---|
36 | #include <fcntl.h>
|
---|
37 | #include <stdio.h>
|
---|
38 | #include <iprt/string.h>
|
---|
39 | #include <unistd.h>
|
---|
40 | #include <err.h>
|
---|
41 | #else
|
---|
42 | # include <iprt/string.h>
|
---|
43 | #endif
|
---|
44 |
|
---|
45 | #if defined(SOCK_NONBLOCK) && defined(RT_OS_NETBSD) /* XXX: PR kern/47569 */
|
---|
46 | # undef SOCK_NONBLOCK
|
---|
47 | #endif
|
---|
48 |
|
---|
49 | #ifndef __arraycount
|
---|
50 | # define __arraycount(a) (sizeof(a)/sizeof(a[0]))
|
---|
51 | #endif
|
---|
52 |
|
---|
53 | static FNRTSTRFORMATTYPE proxy_sockerr_rtstrfmt;
|
---|
54 |
|
---|
55 | static SOCKET proxy_create_socket(int, int);
|
---|
56 |
|
---|
57 | volatile struct proxy_options *g_proxy_options;
|
---|
58 | static sys_thread_t pollmgr_tid;
|
---|
59 |
|
---|
60 | /* XXX: for mapping loopbacks to addresses in our network (ip4) */
|
---|
61 | struct netif *g_proxy_netif;
|
---|
62 |
|
---|
63 |
|
---|
64 | /*
|
---|
65 | * Called on the lwip thread (aka tcpip thread) from tcpip_init() via
|
---|
66 | * its "tcpip_init_done" callback. Raw API is ok to use here
|
---|
67 | * (e.g. rtadvd), but netconn API is not.
|
---|
68 | */
|
---|
69 | void
|
---|
70 | proxy_init(struct netif *proxy_netif, struct proxy_options *opts)
|
---|
71 | {
|
---|
72 | int status;
|
---|
73 |
|
---|
74 | LWIP_ASSERT1(opts != NULL);
|
---|
75 | LWIP_UNUSED_ARG(proxy_netif);
|
---|
76 |
|
---|
77 | status = RTStrFormatTypeRegister("sockerr", proxy_sockerr_rtstrfmt, NULL);
|
---|
78 | AssertRC(status);
|
---|
79 |
|
---|
80 | g_proxy_options = opts;
|
---|
81 | g_proxy_netif = proxy_netif;
|
---|
82 |
|
---|
83 | #if 1
|
---|
84 | proxy_rtadvd_start(proxy_netif);
|
---|
85 | #endif
|
---|
86 |
|
---|
87 | /*
|
---|
88 | * XXX: We use stateless DHCPv6 only to report IPv6 address(es) of
|
---|
89 | * nameserver(s). Since we don't yet support IPv6 addresses in
|
---|
90 | * HostDnsService, there's no point in running DHCPv6.
|
---|
91 | */
|
---|
92 | #if 0
|
---|
93 | dhcp6ds_init(proxy_netif);
|
---|
94 | #endif
|
---|
95 |
|
---|
96 | if (opts->tftp_root != NULL) {
|
---|
97 | tftpd_init(proxy_netif, opts->tftp_root);
|
---|
98 | }
|
---|
99 |
|
---|
100 | status = pollmgr_init();
|
---|
101 | if (status < 0) {
|
---|
102 | errx(EXIT_FAILURE, "failed to initialize poll manager");
|
---|
103 | /* NOTREACHED */
|
---|
104 | }
|
---|
105 |
|
---|
106 | pxtcp_init();
|
---|
107 | pxudp_init();
|
---|
108 |
|
---|
109 | portfwd_init();
|
---|
110 |
|
---|
111 | pxdns_init(proxy_netif);
|
---|
112 |
|
---|
113 | pxping_init(proxy_netif, opts->icmpsock4, opts->icmpsock6);
|
---|
114 |
|
---|
115 | pollmgr_tid = sys_thread_new("pollmgr_thread",
|
---|
116 | pollmgr_thread, NULL,
|
---|
117 | DEFAULT_THREAD_STACKSIZE,
|
---|
118 | DEFAULT_THREAD_PRIO);
|
---|
119 | if (!pollmgr_tid) {
|
---|
120 | errx(EXIT_FAILURE, "failed to create poll manager thread");
|
---|
121 | /* NOTREACHED */
|
---|
122 | }
|
---|
123 | }
|
---|
124 |
|
---|
125 |
|
---|
126 | #if !defined(RT_OS_WINDOWS)
|
---|
127 | /**
|
---|
128 | * Formatter for %R[sockerr] - unix strerror_r() version.
|
---|
129 | */
|
---|
130 | static DECLCALLBACK(size_t)
|
---|
131 | proxy_sockerr_rtstrfmt(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
|
---|
132 | const char *pszType, const void *pvValue,
|
---|
133 | int cchWidth, int cchPrecision, unsigned int fFlags,
|
---|
134 | void *pvUser)
|
---|
135 | {
|
---|
136 | const int error = (int)(intptr_t)pvValue;
|
---|
137 |
|
---|
138 | const char *msg;
|
---|
139 | char buf[128];
|
---|
140 |
|
---|
141 | NOREF(cchWidth);
|
---|
142 | NOREF(cchPrecision);
|
---|
143 | NOREF(fFlags);
|
---|
144 | NOREF(pvUser);
|
---|
145 |
|
---|
146 | AssertReturn(strcmp(pszType, "sockerr") == 0, 0);
|
---|
147 |
|
---|
148 | /* make sure return type mismatch is caught */
|
---|
149 | buf[0] = '\0';
|
---|
150 | #if defined(RT_OS_LINUX) && defined(_GNU_SOURCE)
|
---|
151 | msg = strerror_r(error, buf, sizeof(buf));
|
---|
152 | #else
|
---|
153 | strerror_r(error, buf, sizeof(buf));
|
---|
154 | msg = buf;
|
---|
155 | #endif
|
---|
156 | return RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL, "%s", msg);
|
---|
157 | }
|
---|
158 |
|
---|
159 | #else /* RT_OS_WINDOWS */
|
---|
160 |
|
---|
161 | /**
|
---|
162 | * Formatter for %R[sockerr] - windows FormatMessage() version.
|
---|
163 | */
|
---|
164 | static DECLCALLBACK(size_t)
|
---|
165 | proxy_sockerr_rtstrfmt(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
|
---|
166 | const char *pszType, const void *pvValue,
|
---|
167 | int cchWidth, int cchPrecision, unsigned int fFlags,
|
---|
168 | void *pvUser)
|
---|
169 | {
|
---|
170 | const int error = (int)(intptr_t)pvValue;
|
---|
171 | size_t cb = 0;
|
---|
172 |
|
---|
173 | NOREF(cchWidth);
|
---|
174 | NOREF(cchPrecision);
|
---|
175 | NOREF(fFlags);
|
---|
176 | NOREF(pvUser);
|
---|
177 |
|
---|
178 | AssertReturn(strcmp(pszType, "sockerr") == 0, 0);
|
---|
179 |
|
---|
180 | /*
|
---|
181 | * XXX: Windows strerror() doesn't handle posix error codes, but
|
---|
182 | * since winsock uses its own, it shouldn't be much of a problem.
|
---|
183 | * If you see a strange error message, it's probably from
|
---|
184 | * FormatMessage() for an error from <WinError.h> that has the
|
---|
185 | * same numeric value.
|
---|
186 | */
|
---|
187 | if (error < _sys_nerr) {
|
---|
188 | char buf[128] = "";
|
---|
189 | int status;
|
---|
190 |
|
---|
191 | status = strerror_s(buf, sizeof(buf), error);
|
---|
192 | if (status == 0) {
|
---|
193 | if (strcmp(buf, "Unknown error") == 0) {
|
---|
194 | /* windows strerror() doesn't add the numeric value */
|
---|
195 | cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL,
|
---|
196 | "Unknown error: %d", error);
|
---|
197 | }
|
---|
198 | else {
|
---|
199 | cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL,
|
---|
200 | "%s", buf);
|
---|
201 | }
|
---|
202 | }
|
---|
203 | else {
|
---|
204 | cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL,
|
---|
205 | "Unknown error: %d", error);
|
---|
206 | }
|
---|
207 | }
|
---|
208 | else {
|
---|
209 | DWORD nchars;
|
---|
210 | char *msg = NULL;
|
---|
211 |
|
---|
212 | nchars = FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM
|
---|
213 | | FORMAT_MESSAGE_ALLOCATE_BUFFER,
|
---|
214 | NULL, error, LANG_NEUTRAL,
|
---|
215 | (LPSTR)&msg, 0,
|
---|
216 | NULL);
|
---|
217 | if (nchars == 0 || msg == NULL) {
|
---|
218 | cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL,
|
---|
219 | "Unknown error: %d", error);
|
---|
220 | }
|
---|
221 | else {
|
---|
222 | /* FormatMessage() "helpfully" adds newline; get rid of it */
|
---|
223 | char *crpos = strchr(msg, '\r');
|
---|
224 | if (crpos != NULL) {
|
---|
225 | *crpos = '\0';
|
---|
226 | }
|
---|
227 |
|
---|
228 | cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL,
|
---|
229 | "%s", msg);
|
---|
230 | }
|
---|
231 |
|
---|
232 | if (msg != NULL) {
|
---|
233 | LocalFree(msg);
|
---|
234 | }
|
---|
235 | }
|
---|
236 |
|
---|
237 | return cb;
|
---|
238 | }
|
---|
239 | #endif /* RT_OS_WINDOWS */
|
---|
240 |
|
---|
241 |
|
---|
242 | /**
|
---|
243 | * Send static callback message from poll manager thread to lwip
|
---|
244 | * thread, scheduling a function call in lwip thread context.
|
---|
245 | *
|
---|
246 | * XXX: Existing lwip api only provides non-blocking version for this.
|
---|
247 | * It may fail when lwip thread is not running (mbox invalid) or if
|
---|
248 | * post failed (mbox full). How to handle these?
|
---|
249 | */
|
---|
250 | void
|
---|
251 | proxy_lwip_post(struct tcpip_msg *msg)
|
---|
252 | {
|
---|
253 | struct tcpip_callback_msg *m;
|
---|
254 | err_t error;
|
---|
255 |
|
---|
256 | LWIP_ASSERT1(msg != NULL);
|
---|
257 |
|
---|
258 | /*
|
---|
259 | * lwip plays games with fake incomplete struct tag to enforce API
|
---|
260 | */
|
---|
261 | m = (struct tcpip_callback_msg *)msg;
|
---|
262 | error = tcpip_callbackmsg(m);
|
---|
263 |
|
---|
264 | if (error == ERR_VAL) {
|
---|
265 | /* XXX: lwip thread is not running (mbox invalid) */
|
---|
266 | LWIP_ASSERT1(error != ERR_VAL);
|
---|
267 | }
|
---|
268 |
|
---|
269 | LWIP_ASSERT1(error == ERR_OK);
|
---|
270 | }
|
---|
271 |
|
---|
272 |
|
---|
273 | /**
|
---|
274 | * Create a non-blocking socket. Disable SIGPIPE for TCP sockets if
|
---|
275 | * possible. On Linux it's not possible and should be disabled for
|
---|
276 | * each send(2) individually.
|
---|
277 | */
|
---|
278 | static SOCKET
|
---|
279 | proxy_create_socket(int sdom, int stype)
|
---|
280 | {
|
---|
281 | SOCKET s;
|
---|
282 | int stype_and_flags;
|
---|
283 | int status;
|
---|
284 |
|
---|
285 | LWIP_UNUSED_ARG(status); /* depends on ifdefs */
|
---|
286 |
|
---|
287 |
|
---|
288 | stype_and_flags = stype;
|
---|
289 |
|
---|
290 | #if defined(SOCK_NONBLOCK)
|
---|
291 | stype_and_flags |= SOCK_NONBLOCK;
|
---|
292 | #endif
|
---|
293 |
|
---|
294 | /*
|
---|
295 | * Disable SIGPIPE on disconnected socket. It might be easier to
|
---|
296 | * forgo it and just use MSG_NOSIGNAL on each send*(2), since we
|
---|
297 | * have to do it for Linux anyway, but Darwin does NOT have that
|
---|
298 | * flag (but has SO_NOSIGPIPE socket option).
|
---|
299 | */
|
---|
300 | #if !defined(SOCK_NOSIGPIPE) && !defined(SO_NOSIGPIPE) && !defined(MSG_NOSIGNAL)
|
---|
301 | #if 0 /* XXX: Solaris has neither, the program should ignore SIGPIPE globally */
|
---|
302 | #error Need a way to disable SIGPIPE on connection oriented sockets!
|
---|
303 | #endif
|
---|
304 | #endif
|
---|
305 |
|
---|
306 | #if defined(SOCK_NOSIGPIPE)
|
---|
307 | if (stype == SOCK_STREAM) {
|
---|
308 | stype_and_flags |= SOCK_NOSIGPIPE;
|
---|
309 | }
|
---|
310 | #endif
|
---|
311 |
|
---|
312 | s = socket(sdom, stype_and_flags, 0);
|
---|
313 | if (s == INVALID_SOCKET) {
|
---|
314 | DPRINTF(("socket: %R[sockerr]\n", SOCKERRNO()));
|
---|
315 | return INVALID_SOCKET;
|
---|
316 | }
|
---|
317 |
|
---|
318 | #if defined(RT_OS_WINDOWS)
|
---|
319 | {
|
---|
320 | u_long mode = 1;
|
---|
321 | status = ioctlsocket(s, FIONBIO, &mode);
|
---|
322 | if (status == SOCKET_ERROR) {
|
---|
323 | DPRINTF(("FIONBIO: %R[sockerr]\n", SOCKERRNO()));
|
---|
324 | closesocket(s);
|
---|
325 | return INVALID_SOCKET;
|
---|
326 | }
|
---|
327 | }
|
---|
328 | #elif !defined(SOCK_NONBLOCK)
|
---|
329 | {
|
---|
330 | int sflags;
|
---|
331 |
|
---|
332 | sflags = fcntl(s, F_GETFL, 0);
|
---|
333 | if (sflags < 0) {
|
---|
334 | DPRINTF(("F_GETFL: %R[sockerr]\n", SOCKERRNO()));
|
---|
335 | closesocket(s);
|
---|
336 | return INVALID_SOCKET;
|
---|
337 | }
|
---|
338 |
|
---|
339 | status = fcntl(s, F_SETFL, sflags | O_NONBLOCK);
|
---|
340 | if (status < 0) {
|
---|
341 | DPRINTF(("O_NONBLOCK: %R[sockerr]\n", SOCKERRNO()));
|
---|
342 | closesocket(s);
|
---|
343 | return INVALID_SOCKET;
|
---|
344 | }
|
---|
345 | }
|
---|
346 | #endif
|
---|
347 |
|
---|
348 | #if !defined(SOCK_NOSIGPIPE) && defined(SO_NOSIGPIPE)
|
---|
349 | if (stype == SOCK_STREAM) {
|
---|
350 | int on = 1;
|
---|
351 | const socklen_t onlen = sizeof(on);
|
---|
352 |
|
---|
353 | status = setsockopt(s, SOL_SOCKET, SO_NOSIGPIPE, &on, onlen);
|
---|
354 | if (status < 0) {
|
---|
355 | DPRINTF(("SO_NOSIGPIPE: %R[sockerr]\n", SOCKERRNO()));
|
---|
356 | closesocket(s);
|
---|
357 | return INVALID_SOCKET;
|
---|
358 | }
|
---|
359 | }
|
---|
360 | #endif
|
---|
361 |
|
---|
362 | #if defined(RT_OS_WINDOWS)
|
---|
363 | /*
|
---|
364 | * lwIP only holds one packet of "refused data" for us. Proxy
|
---|
365 | * relies on OS socket send buffer and doesn't do its own
|
---|
366 | * buffering. Unfortunately on Windows send buffer is very small
|
---|
367 | * (8K by default) and is not dynamically adpated by the OS it
|
---|
368 | * seems. So a single large write will fill it up and that will
|
---|
369 | * make lwIP drop segments, causing guest TCP into pathologic
|
---|
370 | * resend patterns. As a quick and dirty fix just bump it up.
|
---|
371 | */
|
---|
372 | if (stype == SOCK_STREAM) {
|
---|
373 | int sndbuf;
|
---|
374 | socklen_t optlen = sizeof(sndbuf);
|
---|
375 |
|
---|
376 | status = getsockopt(s, SOL_SOCKET, SO_SNDBUF, (char *)&sndbuf, &optlen);
|
---|
377 | if (status == 0) {
|
---|
378 | if (sndbuf < 64 * 1024) {
|
---|
379 | sndbuf = 64 * 1024;
|
---|
380 | status = setsockopt(s, SOL_SOCKET, SO_SNDBUF,
|
---|
381 | (char *)&sndbuf, optlen);
|
---|
382 | if (status != 0) {
|
---|
383 | DPRINTF(("SO_SNDBUF: setsockopt: %R[sockerr]\n", SOCKERRNO()));
|
---|
384 | }
|
---|
385 | }
|
---|
386 | }
|
---|
387 | else {
|
---|
388 | DPRINTF(("SO_SNDBUF: getsockopt: %R[sockerr]\n", SOCKERRNO()));
|
---|
389 | }
|
---|
390 | }
|
---|
391 | #endif
|
---|
392 |
|
---|
393 | return s;
|
---|
394 | }
|
---|
395 |
|
---|
396 |
|
---|
397 | /**
|
---|
398 | * Create a socket for outbound connection to dst_addr:dst_port.
|
---|
399 | *
|
---|
400 | * The socket is non-blocking and TCP sockets has SIGPIPE disabled if
|
---|
401 | * possible. On Linux it's not possible and should be disabled for
|
---|
402 | * each send(2) individually.
|
---|
403 | */
|
---|
404 | SOCKET
|
---|
405 | proxy_connected_socket(int sdom, int stype,
|
---|
406 | ipX_addr_t *dst_addr, u16_t dst_port)
|
---|
407 | {
|
---|
408 | struct sockaddr_in6 dst_sin6;
|
---|
409 | struct sockaddr_in dst_sin;
|
---|
410 | struct sockaddr *pdst_sa;
|
---|
411 | socklen_t dst_sa_len;
|
---|
412 | void *pdst_addr;
|
---|
413 | const struct sockaddr *psrc_sa;
|
---|
414 | socklen_t src_sa_len;
|
---|
415 | int status;
|
---|
416 | int sockerr;
|
---|
417 | SOCKET s;
|
---|
418 |
|
---|
419 | LWIP_ASSERT1(sdom == PF_INET || sdom == PF_INET6);
|
---|
420 | LWIP_ASSERT1(stype == SOCK_STREAM || stype == SOCK_DGRAM);
|
---|
421 |
|
---|
422 | DPRINTF(("---> %s ", stype == SOCK_STREAM ? "TCP" : "UDP"));
|
---|
423 | if (sdom == PF_INET6) {
|
---|
424 | pdst_sa = (struct sockaddr *)&dst_sin6;
|
---|
425 | pdst_addr = (void *)&dst_sin6.sin6_addr;
|
---|
426 |
|
---|
427 | memset(&dst_sin6, 0, sizeof(dst_sin6));
|
---|
428 | #if HAVE_SA_LEN
|
---|
429 | dst_sin6.sin6_len =
|
---|
430 | #endif
|
---|
431 | dst_sa_len = sizeof(dst_sin6);
|
---|
432 | dst_sin6.sin6_family = AF_INET6;
|
---|
433 | memcpy(&dst_sin6.sin6_addr, &dst_addr->ip6, sizeof(ip6_addr_t));
|
---|
434 | dst_sin6.sin6_port = htons(dst_port);
|
---|
435 |
|
---|
436 | DPRINTF(("[%RTnaipv6]:%d ", &dst_sin6.sin6_addr, dst_port));
|
---|
437 | }
|
---|
438 | else { /* sdom = PF_INET */
|
---|
439 | pdst_sa = (struct sockaddr *)&dst_sin;
|
---|
440 | pdst_addr = (void *)&dst_sin.sin_addr;
|
---|
441 |
|
---|
442 | memset(&dst_sin, 0, sizeof(dst_sin));
|
---|
443 | #if HAVE_SA_LEN
|
---|
444 | dst_sin.sin_len =
|
---|
445 | #endif
|
---|
446 | dst_sa_len = sizeof(dst_sin);
|
---|
447 | dst_sin.sin_family = AF_INET;
|
---|
448 | dst_sin.sin_addr.s_addr = dst_addr->ip4.addr; /* byte-order? */
|
---|
449 | dst_sin.sin_port = htons(dst_port);
|
---|
450 |
|
---|
451 | DPRINTF(("%RTnaipv4:%d ", dst_sin.sin_addr.s_addr, dst_port));
|
---|
452 | }
|
---|
453 |
|
---|
454 | s = proxy_create_socket(sdom, stype);
|
---|
455 | if (s == INVALID_SOCKET) {
|
---|
456 | return INVALID_SOCKET;
|
---|
457 | }
|
---|
458 | DPRINTF(("socket %d\n", s));
|
---|
459 |
|
---|
460 | /** @todo needs locking if dynamic modifyvm is allowed */
|
---|
461 | if (sdom == PF_INET6) {
|
---|
462 | psrc_sa = (const struct sockaddr *)g_proxy_options->src6;
|
---|
463 | src_sa_len = sizeof(struct sockaddr_in6);
|
---|
464 | }
|
---|
465 | else {
|
---|
466 | psrc_sa = (const struct sockaddr *)g_proxy_options->src4;
|
---|
467 | src_sa_len = sizeof(struct sockaddr_in);
|
---|
468 | }
|
---|
469 | if (psrc_sa != NULL) {
|
---|
470 | status = bind(s, psrc_sa, src_sa_len);
|
---|
471 | if (status == SOCKET_ERROR) {
|
---|
472 | sockerr = SOCKERRNO();
|
---|
473 | DPRINTF(("socket %d: bind: %R[sockerr]\n", s, sockerr));
|
---|
474 | closesocket(s);
|
---|
475 | SET_SOCKERRNO(sockerr);
|
---|
476 | return INVALID_SOCKET;
|
---|
477 | }
|
---|
478 | }
|
---|
479 |
|
---|
480 | status = connect(s, pdst_sa, dst_sa_len);
|
---|
481 | if (status == SOCKET_ERROR
|
---|
482 | #if !defined(RT_OS_WINDOWS)
|
---|
483 | && SOCKERRNO() != EINPROGRESS
|
---|
484 | #else
|
---|
485 | && SOCKERRNO() != EWOULDBLOCK
|
---|
486 | #endif
|
---|
487 | )
|
---|
488 | {
|
---|
489 | sockerr = SOCKERRNO();
|
---|
490 | DPRINTF(("socket %d: connect: %R[sockerr]\n", s, sockerr));
|
---|
491 | closesocket(s);
|
---|
492 | SET_SOCKERRNO(sockerr);
|
---|
493 | return INVALID_SOCKET;
|
---|
494 | }
|
---|
495 |
|
---|
496 | return s;
|
---|
497 | }
|
---|
498 |
|
---|
499 |
|
---|
500 | /**
|
---|
501 | * Create a socket for inbound (port-forwarded) connections to
|
---|
502 | * src_addr (port is part of sockaddr, so not a separate argument).
|
---|
503 | *
|
---|
504 | * The socket is non-blocking and TCP sockets has SIGPIPE disabled if
|
---|
505 | * possible. On Linux it's not possible and should be disabled for
|
---|
506 | * each send(2) individually.
|
---|
507 | *
|
---|
508 | * TODO?: Support v6-mapped v4 so that user can specify she wants
|
---|
509 | * "udp" and get both versions?
|
---|
510 | */
|
---|
511 | SOCKET
|
---|
512 | proxy_bound_socket(int sdom, int stype, struct sockaddr *src_addr)
|
---|
513 | {
|
---|
514 | SOCKET s;
|
---|
515 | int on;
|
---|
516 | const socklen_t onlen = sizeof(on);
|
---|
517 | int status;
|
---|
518 | int sockerr;
|
---|
519 |
|
---|
520 | s = proxy_create_socket(sdom, stype);
|
---|
521 | if (s == INVALID_SOCKET) {
|
---|
522 | return INVALID_SOCKET;
|
---|
523 | }
|
---|
524 | DPRINTF(("socket %d\n", s));
|
---|
525 |
|
---|
526 | on = 1;
|
---|
527 | status = setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&on, onlen);
|
---|
528 | if (status < 0) { /* not good, but not fatal */
|
---|
529 | DPRINTF(("SO_REUSEADDR: %R[sockerr]\n", SOCKERRNO()));
|
---|
530 | }
|
---|
531 |
|
---|
532 | status = bind(s, src_addr,
|
---|
533 | sdom == PF_INET ?
|
---|
534 | sizeof(struct sockaddr_in)
|
---|
535 | : sizeof(struct sockaddr_in6));
|
---|
536 | if (status == SOCKET_ERROR) {
|
---|
537 | sockerr = SOCKERRNO();
|
---|
538 | DPRINTF(("bind: %R[sockerr]\n", sockerr));
|
---|
539 | closesocket(s);
|
---|
540 | SET_SOCKERRNO(sockerr);
|
---|
541 | return INVALID_SOCKET;
|
---|
542 | }
|
---|
543 |
|
---|
544 | if (stype == SOCK_STREAM) {
|
---|
545 | status = listen(s, 5);
|
---|
546 | if (status == SOCKET_ERROR) {
|
---|
547 | sockerr = SOCKERRNO();
|
---|
548 | DPRINTF(("listen: %R[sockerr]\n", sockerr));
|
---|
549 | closesocket(s);
|
---|
550 | SET_SOCKERRNO(sockerr);
|
---|
551 | return INVALID_SOCKET;
|
---|
552 | }
|
---|
553 | }
|
---|
554 |
|
---|
555 | return s;
|
---|
556 | }
|
---|
557 |
|
---|
558 |
|
---|
559 | void
|
---|
560 | proxy_reset_socket(SOCKET s)
|
---|
561 | {
|
---|
562 | struct linger linger;
|
---|
563 |
|
---|
564 | linger.l_onoff = 1;
|
---|
565 | linger.l_linger = 0;
|
---|
566 |
|
---|
567 | /* On Windows we can run into issue here, perhaps SO_LINGER isn't enough, and
|
---|
568 | * we should use WSA{Send,Recv}Disconnect instead.
|
---|
569 | *
|
---|
570 | * Links for the reference:
|
---|
571 | * http://msdn.microsoft.com/en-us/library/windows/desktop/ms738547%28v=vs.85%29.aspx
|
---|
572 | * http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4468997
|
---|
573 | */
|
---|
574 | setsockopt(s, SOL_SOCKET, SO_LINGER, (char *)&linger, sizeof(linger));
|
---|
575 |
|
---|
576 | closesocket(s);
|
---|
577 | }
|
---|
578 |
|
---|
579 |
|
---|
580 | int
|
---|
581 | proxy_sendto(SOCKET sock, struct pbuf *p, void *name, size_t namelen)
|
---|
582 | {
|
---|
583 | struct pbuf *q;
|
---|
584 | size_t i, clen;
|
---|
585 | #ifndef RT_OS_WINDOWS
|
---|
586 | struct msghdr mh;
|
---|
587 | ssize_t nsent;
|
---|
588 | #else
|
---|
589 | DWORD nsent;
|
---|
590 | #endif
|
---|
591 | int rc;
|
---|
592 | IOVEC fixiov[8]; /* fixed size (typical case) */
|
---|
593 | const size_t fixiovsize = sizeof(fixiov)/sizeof(fixiov[0]);
|
---|
594 | IOVEC *dyniov; /* dynamically sized */
|
---|
595 | IOVEC *iov;
|
---|
596 | int error = 0;
|
---|
597 |
|
---|
598 | /*
|
---|
599 | * Static iov[] is usually enough since UDP protocols use small
|
---|
600 | * datagrams to avoid fragmentation, but be prepared.
|
---|
601 | */
|
---|
602 | clen = pbuf_clen(p);
|
---|
603 | if (clen > fixiovsize) {
|
---|
604 | /*
|
---|
605 | * XXX: TODO: check that clen is shorter than IOV_MAX
|
---|
606 | */
|
---|
607 | dyniov = (IOVEC *)malloc(clen * sizeof(*dyniov));
|
---|
608 | if (dyniov == NULL) {
|
---|
609 | error = -errno; /* sic: not a socket error */
|
---|
610 | goto out;
|
---|
611 | }
|
---|
612 | iov = dyniov;
|
---|
613 | }
|
---|
614 | else {
|
---|
615 | dyniov = NULL;
|
---|
616 | iov = fixiov;
|
---|
617 | }
|
---|
618 |
|
---|
619 |
|
---|
620 | for (q = p, i = 0; i < clen; q = q->next, ++i) {
|
---|
621 | LWIP_ASSERT1(q != NULL);
|
---|
622 |
|
---|
623 | IOVEC_SET_BASE(iov[i], q->payload);
|
---|
624 | IOVEC_SET_LEN(iov[i], q->len);
|
---|
625 | }
|
---|
626 |
|
---|
627 | #ifndef RT_OS_WINDOWS
|
---|
628 | memset(&mh, 0, sizeof(mh));
|
---|
629 | mh.msg_name = name;
|
---|
630 | mh.msg_namelen = namelen;
|
---|
631 | mh.msg_iov = iov;
|
---|
632 | mh.msg_iovlen = clen;
|
---|
633 |
|
---|
634 | nsent = sendmsg(sock, &mh, 0);
|
---|
635 | rc = (nsent >= 0) ? 0 : SOCKET_ERROR;
|
---|
636 | #else
|
---|
637 | rc = WSASendTo(sock, iov, (DWORD)clen, &nsent, 0,
|
---|
638 | name, (int)namelen, NULL, NULL);
|
---|
639 | #endif
|
---|
640 | if (rc == SOCKET_ERROR) {
|
---|
641 | error = SOCKERRNO();
|
---|
642 | DPRINTF(("%s: socket %d: sendmsg: %R[sockerr]\n",
|
---|
643 | __func__, sock, error));
|
---|
644 | error = -error;
|
---|
645 | }
|
---|
646 |
|
---|
647 | out:
|
---|
648 | if (dyniov != NULL) {
|
---|
649 | free(dyniov);
|
---|
650 | }
|
---|
651 | return error;
|
---|
652 | }
|
---|
653 |
|
---|
654 |
|
---|
655 | static const char *lwiperr[] = {
|
---|
656 | "ERR_OK",
|
---|
657 | "ERR_MEM",
|
---|
658 | "ERR_BUF",
|
---|
659 | "ERR_TIMEOUT",
|
---|
660 | "ERR_RTE",
|
---|
661 | "ERR_INPROGRESS",
|
---|
662 | "ERR_VAL",
|
---|
663 | "ERR_WOULDBLOCK",
|
---|
664 | "ERR_USE",
|
---|
665 | "ERR_ISCONN",
|
---|
666 | "ERR_ABRT",
|
---|
667 | "ERR_RST",
|
---|
668 | "ERR_CLSD",
|
---|
669 | "ERR_CONN",
|
---|
670 | "ERR_ARG",
|
---|
671 | "ERR_IF"
|
---|
672 | };
|
---|
673 |
|
---|
674 |
|
---|
675 | const char *
|
---|
676 | proxy_lwip_strerr(err_t error)
|
---|
677 | {
|
---|
678 | static char buf[32];
|
---|
679 | int e = -error;
|
---|
680 |
|
---|
681 | if (0 <= e && e < (int)__arraycount(lwiperr)) {
|
---|
682 | return lwiperr[e];
|
---|
683 | }
|
---|
684 | else {
|
---|
685 | RTStrPrintf(buf, sizeof(buf), "unknown error %d", error);
|
---|
686 | return buf;
|
---|
687 | }
|
---|
688 | }
|
---|