VirtualBox

source: vbox/trunk/src/VBox/NetworkServices/NAT/pxtcp.c@ 54124

Last change on this file since 54124 was 54124, checked in by vboxsync, 10 years ago

NAT/Network: Add missing Id/@file/copyright headers.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 66.5 KB
Line 
1/* $Id: pxtcp.c 54124 2015-02-10 11:22:04Z vboxsync $ */
2/** @file
3 * NAT Network - TCP proxy.
4 */
5
6/*
7 * Copyright (C) 2013-2014 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 "pxtcp.h"
23
24#include "proxy.h"
25#include "proxy_pollmgr.h"
26#include "pxremap.h"
27#include "portfwd.h" /* fwspec */
28
29#ifndef RT_OS_WINDOWS
30#include <sys/types.h>
31#include <sys/socket.h>
32#include <sys/ioctl.h>
33#ifdef RT_OS_SOLARIS
34#include <sys/filio.h> /* FIONREAD is BSD'ism */
35#endif
36#include <stdlib.h>
37#include <stdint.h>
38#include <stdio.h>
39#include <string.h>
40#include <poll.h>
41
42#include <err.h> /* BSD'ism */
43#else
44#include <stdlib.h>
45#include <stdio.h>
46#include <string.h>
47
48#include <iprt/stdint.h>
49#include "winpoll.h"
50#endif
51
52#include "lwip/opt.h"
53
54#include "lwip/sys.h"
55#include "lwip/tcpip.h"
56#include "lwip/netif.h"
57#include "lwip/tcp_impl.h" /* XXX: to access tcp_abandon() */
58#include "lwip/icmp.h"
59#include "lwip/icmp6.h"
60
61/*
62 * Different OSes have different quirks in reporting POLLHUP for TCP
63 * sockets.
64 *
65 * Using shutdown(2) "how" values here would be more readable, but
66 * since SHUT_RD is 0, we can't use 0 for "none", unfortunately.
67 */
68#if defined(RT_OS_NETBSD) || defined(RT_OS_SOLARIS)
69# define HAVE_TCP_POLLHUP 0 /* not reported */
70#elif defined(RT_OS_DARWIN) || defined(RT_OS_WINDOWS)
71# define HAVE_TCP_POLLHUP POLLIN /* reported when remote closes */
72#else
73# define HAVE_TCP_POLLHUP (POLLIN|POLLOUT) /* reported when both directions are closed */
74#endif
75
76
77/**
78 * Ring buffer for inbound data. Filled with data from the host
79 * socket on poll manager thread. Data consumed by scheduling
80 * tcp_write() to the pcb on the lwip thread.
81 *
82 * NB: There is actually third party present, the lwip stack itself.
83 * Thus the buffer doesn't have dual free vs. data split, but rather
84 * three-way free / send and unACKed data / unsent data split.
85 */
86struct ringbuf {
87 char *buf;
88 size_t bufsize;
89
90 /*
91 * Start of free space, producer writes here (up till "unacked").
92 */
93 volatile size_t vacant;
94
95 /*
96 * Start of sent but unacknowledged data. The data are "owned" by
97 * the stack as it may need to retransmit. This is the free space
98 * limit for producer.
99 */
100 volatile size_t unacked;
101
102 /*
103 * Start of unsent data, consumer reads/sends from here (up till
104 * "vacant"). Not declared volatile since it's only accessed from
105 * the consumer thread.
106 */
107 size_t unsent;
108};
109
110
111/**
112 */
113struct pxtcp {
114 /**
115 * Our poll manager handler. Must be first, strong/weak
116 * references depend on this "inheritance".
117 */
118 struct pollmgr_handler pmhdl;
119
120 /**
121 * lwIP (internal/guest) side of the proxied connection.
122 */
123 struct tcp_pcb *pcb;
124
125 /**
126 * Host (external) side of the proxied connection.
127 */
128 SOCKET sock;
129
130 /**
131 * Socket events we are currently polling for.
132 */
133 int events;
134
135 /**
136 * Socket error. Currently used to save connect(2) errors so that
137 * we can decide if we need to send ICMP error.
138 */
139 int sockerr;
140
141 /**
142 * Interface that we have got the SYN from. Needed to send ICMP
143 * with correct source address.
144 */
145 struct netif *netif;
146
147 /**
148 * For tentatively accepted connections for which we are in
149 * process of connecting to the real destination this is the
150 * initial pbuf that we might need to build ICMP error.
151 *
152 * When connection is established this is used to hold outbound
153 * pbuf chain received by pxtcp_pcb_recv() but not yet completely
154 * forwarded over the socket. We cannot "return" it to lwIP since
155 * the head of the chain is already sent and freed.
156 */
157 struct pbuf *unsent;
158
159 /**
160 * Guest has closed its side. Reported to pxtcp_pcb_recv() only
161 * once and we might not be able to forward it immediately if we
162 * have unsent pbuf.
163 */
164 int outbound_close;
165
166 /**
167 * Outbound half-close has been done on the socket.
168 */
169 int outbound_close_done;
170
171 /**
172 * External has closed its side. We might not be able to forward
173 * it immediately if we have unforwarded data.
174 */
175 int inbound_close;
176
177 /**
178 * Inbound half-close has been done on the pcb.
179 */
180 int inbound_close_done;
181
182 /**
183 * On systems that report POLLHUP as soon as the final FIN is
184 * received on a socket we cannot continue polling for the rest of
185 * input, so we have to read (pull) last data from the socket on
186 * the lwIP thread instead of polling/pushing it from the poll
187 * manager thread. See comment in pxtcp_pmgr_pump() POLLHUP case.
188 */
189 int inbound_pull;
190
191
192 /**
193 * When poll manager schedules delete we may not be able to delete
194 * a pxtcp immediately if not all inbound data has been acked by
195 * the guest: lwIP may need to resend and the data are in pxtcp's
196 * inbuf::buf. We defer delete until all data are acked to
197 * pxtcp_pcb_sent().
198 */
199 int deferred_delete;
200
201 /**
202 * Ring-buffer for inbound data.
203 */
204 struct ringbuf inbuf;
205
206 /**
207 * lwIP thread's strong reference to us.
208 */
209 struct pollmgr_refptr *rp;
210
211
212 /*
213 * We use static messages to call functions on the lwIP thread to
214 * void malloc/free overhead.
215 */
216 struct tcpip_msg msg_delete; /* delete pxtcp */
217 struct tcpip_msg msg_reset; /* reset connection and delete pxtcp */
218 struct tcpip_msg msg_accept; /* confirm accept of proxied connection */
219 struct tcpip_msg msg_outbound; /* trigger send of outbound data */
220 struct tcpip_msg msg_inbound; /* trigger send of inbound data */
221 struct tcpip_msg msg_inpull; /* trigger pull of last inbound data */
222};
223
224
225
226static struct pxtcp *pxtcp_allocate(void);
227static void pxtcp_free(struct pxtcp *);
228
229static void pxtcp_pcb_associate(struct pxtcp *, struct tcp_pcb *);
230static void pxtcp_pcb_dissociate(struct pxtcp *);
231
232/* poll manager callbacks for pxtcp related channels */
233static int pxtcp_pmgr_chan_add(struct pollmgr_handler *, SOCKET, int);
234static int pxtcp_pmgr_chan_pollout(struct pollmgr_handler *, SOCKET, int);
235static int pxtcp_pmgr_chan_pollin(struct pollmgr_handler *, SOCKET, int);
236#if !(HAVE_TCP_POLLHUP & POLLOUT)
237static int pxtcp_pmgr_chan_del(struct pollmgr_handler *, SOCKET, int);
238#endif
239static int pxtcp_pmgr_chan_reset(struct pollmgr_handler *, SOCKET, int);
240
241/* helper functions for sending/receiving pxtcp over poll manager channels */
242static ssize_t pxtcp_chan_send(enum pollmgr_slot_t, struct pxtcp *);
243static ssize_t pxtcp_chan_send_weak(enum pollmgr_slot_t, struct pxtcp *);
244static struct pxtcp *pxtcp_chan_recv(struct pollmgr_handler *, SOCKET, int);
245static struct pxtcp *pxtcp_chan_recv_strong(struct pollmgr_handler *, SOCKET, int);
246
247/* poll manager callbacks for individual sockets */
248static int pxtcp_pmgr_connect(struct pollmgr_handler *, SOCKET, int);
249static int pxtcp_pmgr_pump(struct pollmgr_handler *, SOCKET, int);
250
251/* get incoming traffic into ring buffer */
252static ssize_t pxtcp_sock_read(struct pxtcp *, int *);
253static ssize_t pxtcp_sock_recv(struct pxtcp *, IOVEC *, size_t); /* default */
254
255/* convenience functions for poll manager callbacks */
256static int pxtcp_schedule_delete(struct pxtcp *);
257static int pxtcp_schedule_reset(struct pxtcp *);
258static int pxtcp_schedule_reject(struct pxtcp *);
259
260/* lwip thread callbacks called via proxy_lwip_post() */
261static void pxtcp_pcb_delete_pxtcp(void *);
262static void pxtcp_pcb_reset_pxtcp(void *);
263static void pxtcp_pcb_accept_refuse(void *);
264static void pxtcp_pcb_accept_confirm(void *);
265static void pxtcp_pcb_write_outbound(void *);
266static void pxtcp_pcb_write_inbound(void *);
267static void pxtcp_pcb_pull_inbound(void *);
268
269/* tcp pcb callbacks */
270static err_t pxtcp_pcb_heard(void *, struct tcp_pcb *, err_t); /* global */
271static err_t pxtcp_pcb_accept(void *, struct tcp_pcb *, err_t);
272static err_t pxtcp_pcb_connected(void *, struct tcp_pcb *, err_t);
273static err_t pxtcp_pcb_recv(void *, struct tcp_pcb *, struct pbuf *, err_t);
274static err_t pxtcp_pcb_sent(void *, struct tcp_pcb *, u16_t);
275static err_t pxtcp_pcb_poll(void *, struct tcp_pcb *);
276static void pxtcp_pcb_err(void *, err_t);
277
278static err_t pxtcp_pcb_forward_outbound(struct pxtcp *, struct pbuf *);
279static void pxtcp_pcb_forward_outbound_close(struct pxtcp *);
280
281static ssize_t pxtcp_sock_send(struct pxtcp *, IOVEC *, size_t);
282
283static void pxtcp_pcb_forward_inbound(struct pxtcp *);
284static void pxtcp_pcb_forward_inbound_close(struct pxtcp *);
285DECLINLINE(int) pxtcp_pcb_forward_inbound_done(const struct pxtcp *);
286static void pxtcp_pcb_schedule_poll(struct pxtcp *);
287static void pxtcp_pcb_cancel_poll(struct pxtcp *);
288
289static void pxtcp_pcb_reject(struct netif *, struct tcp_pcb *, struct pbuf *, int);
290DECLINLINE(void) pxtcp_pcb_maybe_deferred_delete(struct pxtcp *);
291
292/* poll manager handlers for pxtcp channels */
293static struct pollmgr_handler pxtcp_pmgr_chan_add_hdl;
294static struct pollmgr_handler pxtcp_pmgr_chan_pollout_hdl;
295static struct pollmgr_handler pxtcp_pmgr_chan_pollin_hdl;
296#if !(HAVE_TCP_POLLHUP & POLLOUT)
297static struct pollmgr_handler pxtcp_pmgr_chan_del_hdl;
298#endif
299static struct pollmgr_handler pxtcp_pmgr_chan_reset_hdl;
300
301
302/**
303 * Init PXTCP - must be run when neither lwIP tcpip thread, nor poll
304 * manager threads haven't been created yet.
305 */
306void
307pxtcp_init(void)
308{
309 /*
310 * Create channels.
311 */
312#define CHANNEL(SLOT, NAME) do { \
313 NAME##_hdl.callback = NAME; \
314 NAME##_hdl.data = NULL; \
315 NAME##_hdl.slot = -1; \
316 pollmgr_add_chan(SLOT, &NAME##_hdl); \
317 } while (0)
318
319 CHANNEL(POLLMGR_CHAN_PXTCP_ADD, pxtcp_pmgr_chan_add);
320 CHANNEL(POLLMGR_CHAN_PXTCP_POLLIN, pxtcp_pmgr_chan_pollin);
321 CHANNEL(POLLMGR_CHAN_PXTCP_POLLOUT, pxtcp_pmgr_chan_pollout);
322#if !(HAVE_TCP_POLLHUP & POLLOUT)
323 CHANNEL(POLLMGR_CHAN_PXTCP_DEL, pxtcp_pmgr_chan_del);
324#endif
325 CHANNEL(POLLMGR_CHAN_PXTCP_RESET, pxtcp_pmgr_chan_reset);
326
327#undef CHANNEL
328
329 /*
330 * Listen to outgoing connection from guest(s).
331 */
332 tcp_proxy_accept(pxtcp_pcb_heard);
333}
334
335
336/**
337 * Syntactic sugar for sending pxtcp pointer over poll manager
338 * channel. Used by lwip thread functions.
339 */
340static ssize_t
341pxtcp_chan_send(enum pollmgr_slot_t slot, struct pxtcp *pxtcp)
342{
343 return pollmgr_chan_send(slot, &pxtcp, sizeof(pxtcp));
344}
345
346
347/**
348 * Syntactic sugar for sending weak reference to pxtcp over poll
349 * manager channel. Used by lwip thread functions.
350 */
351static ssize_t
352pxtcp_chan_send_weak(enum pollmgr_slot_t slot, struct pxtcp *pxtcp)
353{
354 pollmgr_refptr_weak_ref(pxtcp->rp);
355 return pollmgr_chan_send(slot, &pxtcp->rp, sizeof(pxtcp->rp));
356}
357
358
359/**
360 * Counterpart of pxtcp_chan_send().
361 */
362static struct pxtcp *
363pxtcp_chan_recv(struct pollmgr_handler *handler, SOCKET fd, int revents)
364{
365 struct pxtcp *pxtcp;
366
367 pxtcp = (struct pxtcp *)pollmgr_chan_recv_ptr(handler, fd, revents);
368 return pxtcp;
369}
370
371
372/**
373 * Counterpart of pxtcp_chan_send_weak().
374 */
375static struct pxtcp *
376pxtcp_chan_recv_strong(struct pollmgr_handler *handler, SOCKET fd, int revents)
377{
378 struct pollmgr_refptr *rp;
379 struct pollmgr_handler *base;
380 struct pxtcp *pxtcp;
381
382 rp = (struct pollmgr_refptr *)pollmgr_chan_recv_ptr(handler, fd, revents);
383 base = (struct pollmgr_handler *)pollmgr_refptr_get(rp);
384 pxtcp = (struct pxtcp *)base;
385
386 return pxtcp;
387}
388
389
390/**
391 * Register pxtcp with poll manager.
392 *
393 * Used for POLLMGR_CHAN_PXTCP_ADD and by port-forwarding. Since
394 * error handling is different in these two cases, we leave it up to
395 * the caller.
396 */
397int
398pxtcp_pmgr_add(struct pxtcp *pxtcp)
399{
400 int status;
401
402 LWIP_ASSERT1(pxtcp != NULL);
403 LWIP_ASSERT1(pxtcp->sock >= 0);
404 LWIP_ASSERT1(pxtcp->pmhdl.callback != NULL);
405 LWIP_ASSERT1(pxtcp->pmhdl.data == (void *)pxtcp);
406 LWIP_ASSERT1(pxtcp->pmhdl.slot < 0);
407
408 status = pollmgr_add(&pxtcp->pmhdl, pxtcp->sock, pxtcp->events);
409 return status;
410}
411
412
413/**
414 * Unregister pxtcp with poll manager.
415 *
416 * Used for POLLMGR_CHAN_PXTCP_RESET and by port-forwarding (on error
417 * leg).
418 */
419void
420pxtcp_pmgr_del(struct pxtcp *pxtcp)
421{
422 LWIP_ASSERT1(pxtcp != NULL);
423
424 pollmgr_del_slot(pxtcp->pmhdl.slot);
425}
426
427
428/**
429 * POLLMGR_CHAN_PXTCP_ADD handler.
430 *
431 * Get new pxtcp from lwip thread and start polling its socket.
432 */
433static int
434pxtcp_pmgr_chan_add(struct pollmgr_handler *handler, SOCKET fd, int revents)
435{
436 struct pxtcp *pxtcp;
437 int status;
438
439 pxtcp = pxtcp_chan_recv(handler, fd, revents);
440 DPRINTF0(("pxtcp_add: new pxtcp %p; pcb %p; sock %d\n",
441 (void *)pxtcp, (void *)pxtcp->pcb, pxtcp->sock));
442
443 status = pxtcp_pmgr_add(pxtcp);
444 if (status < 0) {
445 (void) pxtcp_schedule_reset(pxtcp);
446 }
447
448 return POLLIN;
449}
450
451
452/**
453 * POLLMGR_CHAN_PXTCP_POLLOUT handler.
454 *
455 * pxtcp_pcb_forward_outbound() on the lwIP thread tried to send data
456 * and failed, it now requests us to poll the socket for POLLOUT and
457 * schedule pxtcp_pcb_forward_outbound() when sock is writable again.
458 */
459static int
460pxtcp_pmgr_chan_pollout(struct pollmgr_handler *handler, SOCKET fd, int revents)
461{
462 struct pxtcp *pxtcp;
463
464 pxtcp = pxtcp_chan_recv_strong(handler, fd, revents);
465 DPRINTF0(("pxtcp_pollout: pxtcp %p\n", (void *)pxtcp));
466
467 if (pxtcp == NULL) {
468 return POLLIN;
469 }
470
471 LWIP_ASSERT1(pxtcp->pmhdl.data == (void *)pxtcp);
472 LWIP_ASSERT1(pxtcp->pmhdl.slot > 0);
473
474 pxtcp->events |= POLLOUT;
475 pollmgr_update_events(pxtcp->pmhdl.slot, pxtcp->events);
476
477 return POLLIN;
478}
479
480
481/**
482 * POLLMGR_CHAN_PXTCP_POLLIN handler.
483 */
484static int
485pxtcp_pmgr_chan_pollin(struct pollmgr_handler *handler, SOCKET fd, int revents)
486{
487 struct pxtcp *pxtcp;
488
489 pxtcp = pxtcp_chan_recv_strong(handler, fd, revents);
490 DPRINTF2(("pxtcp_pollin: pxtcp %p\n", (void *)pxtcp));
491
492 if (pxtcp == NULL) {
493 return POLLIN;
494 }
495
496 LWIP_ASSERT1(pxtcp->pmhdl.data == (void *)pxtcp);
497 LWIP_ASSERT1(pxtcp->pmhdl.slot > 0);
498
499 if (pxtcp->inbound_close) {
500 return POLLIN;
501 }
502
503 pxtcp->events |= POLLIN;
504 pollmgr_update_events(pxtcp->pmhdl.slot, pxtcp->events);
505
506 return POLLIN;
507}
508
509
510#if !(HAVE_TCP_POLLHUP & POLLOUT)
511/**
512 * POLLMGR_CHAN_PXTCP_DEL handler.
513 *
514 * Schedule pxtcp deletion. We only need this if host system doesn't
515 * report POLLHUP for fully closed tcp sockets.
516 */
517static int
518pxtcp_pmgr_chan_del(struct pollmgr_handler *handler, SOCKET fd, int revents)
519{
520 struct pxtcp *pxtcp;
521
522 pxtcp = pxtcp_chan_recv_strong(handler, fd, revents);
523 if (pxtcp == NULL) {
524 return POLLIN;
525 }
526
527 DPRINTF(("PXTCP_DEL: pxtcp %p; pcb %p; sock %d\n",
528 (void *)pxtcp, (void *)pxtcp->pcb, pxtcp->sock));
529
530 LWIP_ASSERT1(pxtcp->pmhdl.callback != NULL);
531 LWIP_ASSERT1(pxtcp->pmhdl.data == (void *)pxtcp);
532
533 LWIP_ASSERT1(pxtcp->inbound_close); /* EOF read */
534 LWIP_ASSERT1(pxtcp->outbound_close_done); /* EOF sent */
535
536 pxtcp_pmgr_del(pxtcp);
537 (void) pxtcp_schedule_delete(pxtcp);
538
539 return POLLIN;
540}
541#endif /* !(HAVE_TCP_POLLHUP & POLLOUT) */
542
543
544/**
545 * POLLMGR_CHAN_PXTCP_RESET handler.
546 *
547 * Close the socket with RST and delete pxtcp.
548 */
549static int
550pxtcp_pmgr_chan_reset(struct pollmgr_handler *handler, SOCKET fd, int revents)
551{
552 struct pxtcp *pxtcp;
553
554 pxtcp = pxtcp_chan_recv_strong(handler, fd, revents);
555 if (pxtcp == NULL) {
556 return POLLIN;
557 }
558
559 DPRINTF0(("PXTCP_RESET: pxtcp %p; pcb %p; sock %d\n",
560 (void *)pxtcp, (void *)pxtcp->pcb, pxtcp->sock));
561
562 LWIP_ASSERT1(pxtcp->pmhdl.callback != NULL);
563 LWIP_ASSERT1(pxtcp->pmhdl.data == (void *)pxtcp);
564
565 pxtcp_pmgr_del(pxtcp);
566
567 proxy_reset_socket(pxtcp->sock);
568 pxtcp->sock = INVALID_SOCKET;
569
570 (void) pxtcp_schedule_reset(pxtcp);
571
572 return POLLIN;
573}
574
575
576static struct pxtcp *
577pxtcp_allocate(void)
578{
579 struct pxtcp *pxtcp;
580
581 pxtcp = (struct pxtcp *)malloc(sizeof(*pxtcp));
582 if (pxtcp == NULL) {
583 return NULL;
584 }
585
586 pxtcp->pmhdl.callback = NULL;
587 pxtcp->pmhdl.data = (void *)pxtcp;
588 pxtcp->pmhdl.slot = -1;
589
590 pxtcp->pcb = NULL;
591 pxtcp->sock = INVALID_SOCKET;
592 pxtcp->events = 0;
593 pxtcp->sockerr = 0;
594 pxtcp->netif = NULL;
595 pxtcp->unsent = NULL;
596 pxtcp->outbound_close = 0;
597 pxtcp->outbound_close_done = 0;
598 pxtcp->inbound_close = 0;
599 pxtcp->inbound_close_done = 0;
600 pxtcp->inbound_pull = 0;
601 pxtcp->deferred_delete = 0;
602
603 pxtcp->inbuf.bufsize = 64 * 1024;
604 pxtcp->inbuf.buf = (char *)malloc(pxtcp->inbuf.bufsize);
605 if (pxtcp->inbuf.buf == NULL) {
606 free(pxtcp);
607 return NULL;
608 }
609 pxtcp->inbuf.vacant = 0;
610 pxtcp->inbuf.unacked = 0;
611 pxtcp->inbuf.unsent = 0;
612
613 pxtcp->rp = pollmgr_refptr_create(&pxtcp->pmhdl);
614 if (pxtcp->rp == NULL) {
615 free(pxtcp->inbuf.buf);
616 free(pxtcp);
617 return NULL;
618 }
619
620#define CALLBACK_MSG(MSG, FUNC) \
621 do { \
622 pxtcp->MSG.type = TCPIP_MSG_CALLBACK_STATIC; \
623 pxtcp->MSG.sem = NULL; \
624 pxtcp->MSG.msg.cb.function = FUNC; \
625 pxtcp->MSG.msg.cb.ctx = (void *)pxtcp; \
626 } while (0)
627
628 CALLBACK_MSG(msg_delete, pxtcp_pcb_delete_pxtcp);
629 CALLBACK_MSG(msg_reset, pxtcp_pcb_reset_pxtcp);
630 CALLBACK_MSG(msg_accept, pxtcp_pcb_accept_confirm);
631 CALLBACK_MSG(msg_outbound, pxtcp_pcb_write_outbound);
632 CALLBACK_MSG(msg_inbound, pxtcp_pcb_write_inbound);
633 CALLBACK_MSG(msg_inpull, pxtcp_pcb_pull_inbound);
634
635#undef CALLBACK_MSG
636
637 return pxtcp;
638}
639
640
641/**
642 * Exported to fwtcp to create pxtcp for incoming port-forwarded
643 * connections. Completed with pcb in pxtcp_pcb_connect().
644 */
645struct pxtcp *
646pxtcp_create_forwarded(SOCKET sock)
647{
648 struct pxtcp *pxtcp;
649
650 pxtcp = pxtcp_allocate();
651 if (pxtcp == NULL) {
652 return NULL;
653 }
654
655 pxtcp->sock = sock;
656 pxtcp->pmhdl.callback = pxtcp_pmgr_pump;
657 pxtcp->events = 0;
658
659 return pxtcp;
660}
661
662
663static void
664pxtcp_pcb_associate(struct pxtcp *pxtcp, struct tcp_pcb *pcb)
665{
666 LWIP_ASSERT1(pxtcp != NULL);
667 LWIP_ASSERT1(pcb != NULL);
668
669 pxtcp->pcb = pcb;
670
671 tcp_arg(pcb, pxtcp);
672
673 tcp_recv(pcb, pxtcp_pcb_recv);
674 tcp_sent(pcb, pxtcp_pcb_sent);
675 tcp_poll(pcb, NULL, 255);
676 tcp_err(pcb, pxtcp_pcb_err);
677}
678
679
680static void
681pxtcp_free(struct pxtcp *pxtcp)
682{
683 if (pxtcp->unsent != NULL) {
684 pbuf_free(pxtcp->unsent);
685 }
686 if (pxtcp->inbuf.buf != NULL) {
687 free(pxtcp->inbuf.buf);
688 }
689 free(pxtcp);
690}
691
692
693/**
694 * Counterpart to pxtcp_create_forwarded() to destruct pxtcp that
695 * fwtcp failed to register with poll manager to post to lwip thread
696 * for doing connect.
697 */
698void
699pxtcp_cancel_forwarded(struct pxtcp *pxtcp)
700{
701 LWIP_ASSERT1(pxtcp->pcb == NULL);
702 pxtcp_pcb_reset_pxtcp(pxtcp);
703}
704
705
706static void
707pxtcp_pcb_dissociate(struct pxtcp *pxtcp)
708{
709 if (pxtcp == NULL || pxtcp->pcb == NULL) {
710 return;
711 }
712
713 DPRINTF(("%s: pxtcp %p <-> pcb %p\n",
714 __func__, (void *)pxtcp, (void *)pxtcp->pcb));
715
716 /*
717 * We must have dissociated from a fully closed pcb immediately
718 * since lwip recycles them and we don't wan't to mess with what
719 * would be someone else's pcb that we happen to have a stale
720 * pointer to.
721 */
722 LWIP_ASSERT1(pxtcp->pcb->callback_arg == pxtcp);
723
724 tcp_recv(pxtcp->pcb, NULL);
725 tcp_sent(pxtcp->pcb, NULL);
726 tcp_poll(pxtcp->pcb, NULL, 255);
727 tcp_err(pxtcp->pcb, NULL);
728 tcp_arg(pxtcp->pcb, NULL);
729 pxtcp->pcb = NULL;
730}
731
732
733/**
734 * Lwip thread callback invoked via pxtcp::msg_delete
735 *
736 * Since we use static messages to communicate to the lwip thread, we
737 * cannot delete pxtcp without making sure there are no unprocessed
738 * messages in the lwip thread mailbox.
739 *
740 * The easiest way to ensure that is to send this "delete" message as
741 * the last one and when it's processed we know there are no more and
742 * it's safe to delete pxtcp.
743 *
744 * Poll manager handlers should use pxtcp_schedule_delete()
745 * convenience function.
746 */
747static void
748pxtcp_pcb_delete_pxtcp(void *ctx)
749{
750 struct pxtcp *pxtcp = (struct pxtcp *)ctx;
751
752 DPRINTF(("%s: pxtcp %p, pcb %p, sock %d%s\n",
753 __func__, (void *)pxtcp, (void *)pxtcp->pcb, pxtcp->sock,
754 (pxtcp->deferred_delete && !pxtcp->inbound_pull
755 ? " (was deferred)" : "")));
756
757 LWIP_ASSERT1(pxtcp != NULL);
758 LWIP_ASSERT1(pxtcp->pmhdl.slot < 0);
759 LWIP_ASSERT1(pxtcp->outbound_close_done);
760 LWIP_ASSERT1(pxtcp->inbound_close); /* not necessarily done */
761
762
763 /*
764 * pxtcp is no longer registered with poll manager, so it's safe
765 * to close the socket.
766 */
767 if (pxtcp->sock != INVALID_SOCKET) {
768 closesocket(pxtcp->sock);
769 pxtcp->sock = INVALID_SOCKET;
770 }
771
772 /*
773 * We might have already dissociated from a fully closed pcb, or
774 * guest might have sent us a reset while msg_delete was in
775 * transit. If there's no pcb, we are done.
776 */
777 if (pxtcp->pcb == NULL) {
778 pollmgr_refptr_unref(pxtcp->rp);
779 pxtcp_free(pxtcp);
780 return;
781 }
782
783 /*
784 * Have we completely forwarded all inbound traffic to the guest?
785 *
786 * We may still be waiting for ACKs. We may have failed to send
787 * some of the data (tcp_write() failed with ERR_MEM). We may
788 * have failed to send the FIN (tcp_shutdown() failed with
789 * ERR_MEM).
790 */
791 if (pxtcp_pcb_forward_inbound_done(pxtcp)) {
792 pxtcp_pcb_dissociate(pxtcp);
793 pollmgr_refptr_unref(pxtcp->rp);
794 pxtcp_free(pxtcp);
795 }
796 else {
797 DPRINTF2(("delete: pxtcp %p; pcb %p:"
798 " unacked %d, unsent %d, vacant %d, %s - DEFER!\n",
799 (void *)pxtcp, (void *)pxtcp->pcb,
800 (int)pxtcp->inbuf.unacked,
801 (int)pxtcp->inbuf.unsent,
802 (int)pxtcp->inbuf.vacant,
803 pxtcp->inbound_close_done ? "FIN sent" : "FIN is NOT sent"));
804
805 LWIP_ASSERT1(!pxtcp->deferred_delete);
806 pxtcp->deferred_delete = 1;
807 }
808}
809
810
811/**
812 * If we couldn't delete pxtcp right away in the msg_delete callback
813 * from the poll manager thread, we repeat the check at the end of
814 * relevant pcb callbacks.
815 */
816DECLINLINE(void)
817pxtcp_pcb_maybe_deferred_delete(struct pxtcp *pxtcp)
818{
819 if (pxtcp->deferred_delete && pxtcp_pcb_forward_inbound_done(pxtcp)) {
820 pxtcp_pcb_delete_pxtcp(pxtcp);
821 }
822}
823
824
825/**
826 * Poll manager callbacks should use this convenience wrapper to
827 * schedule pxtcp deletion on the lwip thread and to deregister from
828 * the poll manager.
829 */
830static int
831pxtcp_schedule_delete(struct pxtcp *pxtcp)
832{
833 /*
834 * If pollmgr_refptr_get() is called by any channel before
835 * scheduled deletion happens, let them know we are gone.
836 */
837 pxtcp->pmhdl.slot = -1;
838
839 /*
840 * Schedule deletion. Since poll manager thread may be pre-empted
841 * right after we send the message, the deletion may actually
842 * happen on the lwip thread before we return from this function,
843 * so it's not safe to refer to pxtcp after this call.
844 */
845 proxy_lwip_post(&pxtcp->msg_delete);
846
847 /* tell poll manager to deregister us */
848 return -1;
849}
850
851
852/**
853 * Lwip thread callback invoked via pxtcp::msg_reset
854 *
855 * Like pxtcp_pcb_delete(), but sends RST to the guest before
856 * deleting this pxtcp.
857 */
858static void
859pxtcp_pcb_reset_pxtcp(void *ctx)
860{
861 struct pxtcp *pxtcp = (struct pxtcp *)ctx;
862 LWIP_ASSERT1(pxtcp != NULL);
863
864 DPRINTF0(("%s: pxtcp %p, pcb %p, sock %d\n",
865 __func__, (void *)pxtcp, (void *)pxtcp->pcb, pxtcp->sock));
866
867 if (pxtcp->sock != INVALID_SOCKET) {
868 proxy_reset_socket(pxtcp->sock);
869 pxtcp->sock = INVALID_SOCKET;
870 }
871
872 if (pxtcp->pcb != NULL) {
873 struct tcp_pcb *pcb = pxtcp->pcb;
874 pxtcp_pcb_dissociate(pxtcp);
875 tcp_abort(pcb);
876 }
877
878 pollmgr_refptr_unref(pxtcp->rp);
879 pxtcp_free(pxtcp);
880}
881
882
883
884/**
885 * Poll manager callbacks should use this convenience wrapper to
886 * schedule pxtcp reset and deletion on the lwip thread and to
887 * deregister from the poll manager.
888 *
889 * See pxtcp_schedule_delete() for additional comments.
890 */
891static int
892pxtcp_schedule_reset(struct pxtcp *pxtcp)
893{
894 pxtcp->pmhdl.slot = -1;
895 proxy_lwip_post(&pxtcp->msg_reset);
896 return -1;
897}
898
899
900/**
901 * Reject proxy connection attempt. Depending on the cause (sockerr)
902 * we may just drop the pcb silently, generate an ICMP datagram or
903 * send TCP reset.
904 */
905static void
906pxtcp_pcb_reject(struct netif *netif, struct tcp_pcb *pcb,
907 struct pbuf *p, int sockerr)
908{
909 struct netif *oif;
910 int reset = 0;
911
912 oif = ip_current_netif();
913 ip_current_netif() = netif;
914
915 if (sockerr == ECONNREFUSED) {
916 reset = 1;
917 }
918 else if (PCB_ISIPV6(pcb)) {
919 if (sockerr == EHOSTDOWN) {
920 icmp6_dest_unreach(p, ICMP6_DUR_ADDRESS); /* XXX: ??? */
921 }
922 else if (sockerr == EHOSTUNREACH
923 || sockerr == ENETDOWN
924 || sockerr == ENETUNREACH)
925 {
926 icmp6_dest_unreach(p, ICMP6_DUR_NO_ROUTE);
927 }
928 }
929 else {
930 if (sockerr == EHOSTDOWN
931 || sockerr == EHOSTUNREACH
932 || sockerr == ENETDOWN
933 || sockerr == ENETUNREACH)
934 {
935 icmp_dest_unreach(p, ICMP_DUR_HOST);
936 }
937 }
938
939 ip_current_netif() = oif;
940
941 tcp_abandon(pcb, reset);
942}
943
944
945/**
946 * Called from poll manager thread via pxtcp::msg_accept when proxy
947 * failed to connect to the destination. Also called when we failed
948 * to register pxtcp with poll manager.
949 *
950 * This is like pxtcp_pcb_reset_pxtcp() but is more discriminate in
951 * how this unestablished connection is terminated.
952 */
953static void
954pxtcp_pcb_accept_refuse(void *ctx)
955{
956 struct pxtcp *pxtcp = (struct pxtcp *)ctx;
957
958 DPRINTF0(("%s: pxtcp %p, pcb %p, sock %d: %R[sockerr]\n",
959 __func__, (void *)pxtcp, (void *)pxtcp->pcb,
960 pxtcp->sock, pxtcp->sockerr));
961
962 LWIP_ASSERT1(pxtcp != NULL);
963 LWIP_ASSERT1(pxtcp->sock == INVALID_SOCKET);
964
965 if (pxtcp->pcb != NULL) {
966 struct tcp_pcb *pcb = pxtcp->pcb;
967 pxtcp_pcb_dissociate(pxtcp);
968 pxtcp_pcb_reject(pxtcp->netif, pcb, pxtcp->unsent, pxtcp->sockerr);
969 }
970
971 pollmgr_refptr_unref(pxtcp->rp);
972 pxtcp_free(pxtcp);
973}
974
975
976/**
977 * Convenience wrapper for poll manager connect callback to reject
978 * connection attempt.
979 *
980 * Like pxtcp_schedule_reset(), but the callback is more discriminate
981 * in how this unestablished connection is terminated.
982 */
983static int
984pxtcp_schedule_reject(struct pxtcp *pxtcp)
985{
986 pxtcp->msg_accept.msg.cb.function = pxtcp_pcb_accept_refuse;
987 pxtcp->pmhdl.slot = -1;
988 proxy_lwip_post(&pxtcp->msg_accept);
989 return -1;
990}
991
992
993/**
994 * Global tcp_proxy_accept() callback for proxied outgoing TCP
995 * connections from guest(s).
996 */
997static err_t
998pxtcp_pcb_heard(void *arg, struct tcp_pcb *newpcb, err_t error)
999{
1000 struct pbuf *p = (struct pbuf *)arg;
1001 struct pxtcp *pxtcp;
1002 ipX_addr_t dst_addr;
1003 int sdom;
1004 SOCKET sock;
1005 ssize_t nsent;
1006 int sockerr = 0;
1007
1008 LWIP_UNUSED_ARG(error); /* always ERR_OK */
1009
1010 /*
1011 * TCP first calls accept callback when it receives the first SYN
1012 * and "tentatively accepts" new proxied connection attempt. When
1013 * proxy "confirms" the SYN and sends SYN|ACK and the guest
1014 * replies with ACK the accept callback is called again, this time
1015 * with the established connection.
1016 */
1017 LWIP_ASSERT1(newpcb->state == SYN_RCVD_0);
1018 tcp_accept(newpcb, pxtcp_pcb_accept);
1019 tcp_arg(newpcb, NULL);
1020
1021 tcp_setprio(newpcb, TCP_PRIO_MAX);
1022
1023 pxremap_outbound_ipX(PCB_ISIPV6(newpcb), &dst_addr, &newpcb->local_ip);
1024
1025 sdom = PCB_ISIPV6(newpcb) ? PF_INET6 : PF_INET;
1026 sock = proxy_connected_socket(sdom, SOCK_STREAM,
1027 &dst_addr, newpcb->local_port);
1028 if (sock == INVALID_SOCKET) {
1029 sockerr = SOCKERRNO();
1030 goto abort;
1031 }
1032
1033 pxtcp = pxtcp_allocate();
1034 if (pxtcp == NULL) {
1035 proxy_reset_socket(sock);
1036 goto abort;
1037 }
1038
1039 /* save initial datagram in case we need to reply with ICMP */
1040 pbuf_ref(p);
1041 pxtcp->unsent = p;
1042 pxtcp->netif = ip_current_netif();
1043
1044 pxtcp_pcb_associate(pxtcp, newpcb);
1045 pxtcp->sock = sock;
1046
1047 pxtcp->pmhdl.callback = pxtcp_pmgr_connect;
1048 pxtcp->events = POLLOUT;
1049
1050 nsent = pxtcp_chan_send(POLLMGR_CHAN_PXTCP_ADD, pxtcp);
1051 if (nsent < 0) {
1052 pxtcp->sock = INVALID_SOCKET;
1053 proxy_reset_socket(sock);
1054 pxtcp_pcb_accept_refuse(pxtcp);
1055 return ERR_ABRT;
1056 }
1057
1058 return ERR_OK;
1059
1060 abort:
1061 DPRINTF0(("%s: pcb %p, sock %d: %R[sockerr]\n",
1062 __func__, (void *)newpcb, sock, sockerr));
1063 pxtcp_pcb_reject(ip_current_netif(), newpcb, p, sockerr);
1064 return ERR_ABRT;
1065}
1066
1067
1068/**
1069 * tcp_proxy_accept() callback for accepted proxied outgoing TCP
1070 * connections from guest(s). This is "real" accept with three-way
1071 * handshake completed.
1072 */
1073static err_t
1074pxtcp_pcb_accept(void *arg, struct tcp_pcb *pcb, err_t error)
1075{
1076 struct pxtcp *pxtcp = (struct pxtcp *)arg;
1077
1078 LWIP_UNUSED_ARG(pcb); /* used only in asserts */
1079 LWIP_UNUSED_ARG(error); /* always ERR_OK */
1080
1081 LWIP_ASSERT1(pxtcp != NULL);
1082 LWIP_ASSERT1(pxtcp->pcb = pcb);
1083 LWIP_ASSERT1(pcb->callback_arg == pxtcp);
1084
1085 /* send any inbound data that are already queued */
1086 pxtcp_pcb_forward_inbound(pxtcp);
1087 return ERR_OK;
1088}
1089
1090
1091/**
1092 * Initial poll manager callback for proxied outgoing TCP connections.
1093 * pxtcp_pcb_accept() sets pxtcp::pmhdl::callback to this.
1094 *
1095 * Waits for connect(2) to the destination to complete. On success
1096 * replaces itself with pxtcp_pmgr_pump() callback common to all
1097 * established TCP connections.
1098 */
1099static int
1100pxtcp_pmgr_connect(struct pollmgr_handler *handler, SOCKET fd, int revents)
1101{
1102 struct pxtcp *pxtcp;
1103
1104 pxtcp = (struct pxtcp *)handler->data;
1105 LWIP_ASSERT1(handler == &pxtcp->pmhdl);
1106 LWIP_ASSERT1(fd == pxtcp->sock);
1107 LWIP_ASSERT1(pxtcp->sockerr == 0);
1108
1109 if (revents & POLLNVAL) {
1110 pxtcp->sock = INVALID_SOCKET;
1111 pxtcp->sockerr = ETIMEDOUT;
1112 return pxtcp_schedule_reject(pxtcp);
1113 }
1114
1115 /*
1116 * Solaris and NetBSD don't report either POLLERR or POLLHUP when
1117 * connect(2) fails, just POLLOUT. In that case we always need to
1118 * check SO_ERROR.
1119 */
1120#if defined(RT_OS_SOLARIS) || defined(RT_OS_NETBSD)
1121# define CONNECT_CHECK_ERROR POLLOUT
1122#else
1123# define CONNECT_CHECK_ERROR (POLLERR | POLLHUP)
1124#endif
1125
1126 /*
1127 * Check the cause of the failure so that pxtcp_pcb_reject() may
1128 * behave accordingly.
1129 */
1130 if (revents & CONNECT_CHECK_ERROR) {
1131 socklen_t optlen = (socklen_t)sizeof(pxtcp->sockerr);
1132 int status;
1133 SOCKET s;
1134
1135 status = getsockopt(pxtcp->sock, SOL_SOCKET, SO_ERROR,
1136 (char *)&pxtcp->sockerr, &optlen);
1137 if (RT_UNLIKELY(status == SOCKET_ERROR)) { /* should not happen */
1138 DPRINTF(("%s: sock %d: SO_ERROR failed: %R[sockerr]\n",
1139 __func__, fd, SOCKERRNO()));
1140 pxtcp->sockerr = ETIMEDOUT;
1141 }
1142 else {
1143 /* don't spam this log on successful connect(2) */
1144 if ((revents & (POLLERR | POLLHUP)) /* we were told it's failed */
1145 || pxtcp->sockerr != 0) /* we determined it's failed */
1146 {
1147 DPRINTF(("%s: sock %d: connect: %R[sockerr]\n",
1148 __func__, fd, pxtcp->sockerr));
1149 }
1150
1151 if ((revents & (POLLERR | POLLHUP))
1152 && RT_UNLIKELY(pxtcp->sockerr == 0))
1153 {
1154 /* if we're told it's failed, make sure it's marked as such */
1155 pxtcp->sockerr = ETIMEDOUT;
1156 }
1157 }
1158
1159 if (pxtcp->sockerr != 0) {
1160 s = pxtcp->sock;
1161 pxtcp->sock = INVALID_SOCKET;
1162 closesocket(s);
1163 return pxtcp_schedule_reject(pxtcp);
1164 }
1165 }
1166
1167 if (revents & POLLOUT) { /* connect is successful */
1168 /* confirm accept to the guest */
1169 proxy_lwip_post(&pxtcp->msg_accept);
1170
1171 /*
1172 * Switch to common callback used for all established proxied
1173 * connections.
1174 */
1175 pxtcp->pmhdl.callback = pxtcp_pmgr_pump;
1176
1177 /*
1178 * Initially we poll for incoming traffic only. Outgoing
1179 * traffic is fast-forwarded by pxtcp_pcb_recv(); if it fails
1180 * it will ask us to poll for POLLOUT too.
1181 */
1182 pxtcp->events = POLLIN;
1183 return pxtcp->events;
1184 }
1185
1186 /* should never get here */
1187 DPRINTF0(("%s: pxtcp %p, sock %d: unexpected revents 0x%x\n",
1188 __func__, (void *)pxtcp, fd, revents));
1189 return pxtcp_schedule_reset(pxtcp);
1190}
1191
1192
1193/**
1194 * Called from poll manager thread via pxtcp::msg_accept when proxy
1195 * connected to the destination. Finalize accept by sending SYN|ACK
1196 * to the guest.
1197 */
1198static void
1199pxtcp_pcb_accept_confirm(void *ctx)
1200{
1201 struct pxtcp *pxtcp = (struct pxtcp *)ctx;
1202 err_t error;
1203
1204 LWIP_ASSERT1(pxtcp != NULL);
1205 if (pxtcp->pcb == NULL) {
1206 return;
1207 }
1208
1209 /* we are not going to reply with ICMP, so we can drop initial pbuf */
1210 LWIP_ASSERT1(pxtcp->unsent != NULL);
1211 pbuf_free(pxtcp->unsent);
1212 pxtcp->unsent = NULL;
1213
1214 error = tcp_proxy_accept_confirm(pxtcp->pcb);
1215
1216 /*
1217 * If lwIP failed to enqueue SYN|ACK because it's out of pbufs it
1218 * abandons the pcb. Retrying that is not very easy, since it
1219 * would require keeping "fractional state". From guest's point
1220 * of view there is no reply to its SYN so it will either resend
1221 * the SYN (effetively triggering full connection retry for us),
1222 * or it will eventually time out.
1223 */
1224 if (error == ERR_ABRT) {
1225 pxtcp->pcb = NULL; /* pcb is gone */
1226 pxtcp_chan_send_weak(POLLMGR_CHAN_PXTCP_RESET, pxtcp);
1227 }
1228
1229 /*
1230 * else if (error != ERR_OK): even if tcp_output() failed with
1231 * ERR_MEM - don't give up, that SYN|ACK is enqueued and will be
1232 * retransmitted eventually.
1233 */
1234}
1235
1236
1237/**
1238 * Entry point for port-forwarding.
1239 *
1240 * fwtcp accepts new incoming connection, creates pxtcp for the socket
1241 * (with no pcb yet) and adds it to the poll manager (polling for
1242 * errors only). Then it calls this function to construct the pcb and
1243 * perform connection to the guest.
1244 */
1245void
1246pxtcp_pcb_connect(struct pxtcp *pxtcp, const struct fwspec *fwspec)
1247{
1248 struct sockaddr_storage ss;
1249 socklen_t sslen;
1250 struct tcp_pcb *pcb;
1251 ipX_addr_t src_addr, dst_addr;
1252 u16_t src_port, dst_port;
1253 int status;
1254 err_t error;
1255
1256 LWIP_ASSERT1(pxtcp != NULL);
1257 LWIP_ASSERT1(pxtcp->pcb == NULL);
1258 LWIP_ASSERT1(fwspec->stype == SOCK_STREAM);
1259
1260 pcb = tcp_new();
1261 if (pcb == NULL) {
1262 goto reset;
1263 }
1264
1265 tcp_setprio(pcb, TCP_PRIO_MAX);
1266 pxtcp_pcb_associate(pxtcp, pcb);
1267
1268 sslen = sizeof(ss);
1269 status = getpeername(pxtcp->sock, (struct sockaddr *)&ss, &sslen);
1270 if (status == SOCKET_ERROR) {
1271 goto reset;
1272 }
1273
1274 /* nit: comapres PF and AF, but they are the same everywhere */
1275 LWIP_ASSERT1(ss.ss_family == fwspec->sdom);
1276
1277 status = fwany_ipX_addr_set_src(&src_addr, (const struct sockaddr *)&ss);
1278 if (status == PXREMAP_FAILED) {
1279 goto reset;
1280 }
1281
1282 if (ss.ss_family == PF_INET) {
1283 const struct sockaddr_in *peer4 = (const struct sockaddr_in *)&ss;
1284
1285 src_port = peer4->sin_port;
1286
1287 memcpy(&dst_addr.ip4, &fwspec->dst.sin.sin_addr, sizeof(ip_addr_t));
1288 dst_port = fwspec->dst.sin.sin_port;
1289 }
1290 else { /* PF_INET6 */
1291 const struct sockaddr_in6 *peer6 = (const struct sockaddr_in6 *)&ss;
1292 ip_set_v6(pcb, 1);
1293
1294 src_port = peer6->sin6_port;
1295
1296 memcpy(&dst_addr.ip6, &fwspec->dst.sin6.sin6_addr, sizeof(ip6_addr_t));
1297 dst_port = fwspec->dst.sin6.sin6_port;
1298 }
1299
1300 /* lwip port arguments are in host order */
1301 src_port = ntohs(src_port);
1302 dst_port = ntohs(dst_port);
1303
1304 error = tcp_proxy_bind(pcb, ipX_2_ip(&src_addr), src_port);
1305 if (error != ERR_OK) {
1306 goto reset;
1307 }
1308
1309 error = tcp_connect(pcb, ipX_2_ip(&dst_addr), dst_port,
1310 /* callback: */ pxtcp_pcb_connected);
1311 if (error != ERR_OK) {
1312 goto reset;
1313 }
1314
1315 return;
1316
1317 reset:
1318 pxtcp_chan_send_weak(POLLMGR_CHAN_PXTCP_RESET, pxtcp);
1319}
1320
1321
1322/**
1323 * Port-forwarded connection to guest is successful, pump data.
1324 */
1325static err_t
1326pxtcp_pcb_connected(void *arg, struct tcp_pcb *pcb, err_t error)
1327{
1328 struct pxtcp *pxtcp = (struct pxtcp *)arg;
1329
1330 LWIP_ASSERT1(error == ERR_OK); /* always called with ERR_OK */
1331 LWIP_UNUSED_ARG(error);
1332
1333 LWIP_ASSERT1(pxtcp != NULL);
1334 LWIP_ASSERT1(pxtcp->pcb == pcb);
1335 LWIP_ASSERT1(pcb->callback_arg == pxtcp);
1336 LWIP_UNUSED_ARG(pcb);
1337
1338 DPRINTF0(("%s: new pxtcp %p; pcb %p; sock %d\n",
1339 __func__, (void *)pxtcp, (void *)pxtcp->pcb, pxtcp->sock));
1340
1341 /* ACK on connection is like ACK on data in pxtcp_pcb_sent() */
1342 pxtcp_chan_send_weak(POLLMGR_CHAN_PXTCP_POLLIN, pxtcp);
1343
1344 return ERR_OK;
1345}
1346
1347
1348/**
1349 * tcp_recv() callback.
1350 */
1351static err_t
1352pxtcp_pcb_recv(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t error)
1353{
1354 struct pxtcp *pxtcp = (struct pxtcp *)arg;
1355
1356 LWIP_ASSERT1(error == ERR_OK); /* always called with ERR_OK */
1357 LWIP_UNUSED_ARG(error);
1358
1359 LWIP_ASSERT1(pxtcp != NULL);
1360 LWIP_ASSERT1(pxtcp->pcb == pcb);
1361 LWIP_ASSERT1(pcb->callback_arg == pxtcp);
1362 LWIP_UNUSED_ARG(pcb);
1363
1364
1365 /*
1366 * Have we done sending previous batch?
1367 */
1368 if (pxtcp->unsent != NULL) {
1369 if (p != NULL) {
1370 /*
1371 * Return an error to tell TCP to hold onto that pbuf.
1372 * It will be presented to us later from tcp_fasttmr().
1373 */
1374 return ERR_WOULDBLOCK;
1375 }
1376 else {
1377 /*
1378 * Unlike data, p == NULL indicating orderly shutdown is
1379 * NOT presented to us again
1380 */
1381 pxtcp->outbound_close = 1;
1382 return ERR_OK;
1383 }
1384 }
1385
1386
1387 /*
1388 * Guest closed?
1389 */
1390 if (p == NULL) {
1391 pxtcp->outbound_close = 1;
1392 pxtcp_pcb_forward_outbound_close(pxtcp);
1393 return ERR_OK;
1394 }
1395
1396
1397 /*
1398 * Got data, send what we can without blocking.
1399 */
1400 return pxtcp_pcb_forward_outbound(pxtcp, p);
1401}
1402
1403
1404/**
1405 * Guest half-closed its TX side of the connection.
1406 *
1407 * Called either immediately from pxtcp_pcb_recv() when it gets NULL,
1408 * or from pxtcp_pcb_forward_outbound() when it finishes forwarding
1409 * previously unsent data and sees pxtcp::outbound_close flag saved by
1410 * pxtcp_pcb_recv().
1411 */
1412static void
1413pxtcp_pcb_forward_outbound_close(struct pxtcp *pxtcp)
1414{
1415 struct tcp_pcb *pcb;
1416
1417 LWIP_ASSERT1(pxtcp != NULL);
1418 LWIP_ASSERT1(pxtcp->outbound_close);
1419 LWIP_ASSERT1(!pxtcp->outbound_close_done);
1420
1421 pcb = pxtcp->pcb;
1422 LWIP_ASSERT1(pcb != NULL);
1423
1424 DPRINTF(("outbound_close: pxtcp %p; pcb %p %s\n",
1425 (void *)pxtcp, (void *)pcb, tcp_debug_state_str(pcb->state)));
1426
1427
1428 /* set the flag first, since shutdown() may trigger POLLHUP */
1429 pxtcp->outbound_close_done = 1;
1430 shutdown(pxtcp->sock, SHUT_WR); /* half-close the socket */
1431
1432#if !(HAVE_TCP_POLLHUP & POLLOUT)
1433 /*
1434 * We need to nudge poll manager manually, since OS will not
1435 * report POLLHUP.
1436 */
1437 if (pxtcp->inbound_close) {
1438 pxtcp_chan_send_weak(POLLMGR_CHAN_PXTCP_DEL, pxtcp);
1439 }
1440#endif
1441
1442
1443 /* no more outbound data coming to us */
1444 tcp_recv(pcb, NULL);
1445
1446 /*
1447 * If we have already done inbound close previously (active close
1448 * on the pcb), then we must not hold onto a pcb in TIME_WAIT
1449 * state since those will be recycled by lwip when it runs out of
1450 * free pcbs in the pool.
1451 *
1452 * The test is true also for a pcb in CLOSING state that waits
1453 * just for the ACK of its FIN (to transition to TIME_WAIT).
1454 */
1455 if (pxtcp_pcb_forward_inbound_done(pxtcp)) {
1456 pxtcp_pcb_dissociate(pxtcp);
1457 }
1458}
1459
1460
1461/**
1462 * Forward outbound data from pcb to socket.
1463 *
1464 * Called by pxtcp_pcb_recv() to forward new data and by callout
1465 * triggered by POLLOUT on the socket to send previously unsent data.
1466 *
1467 * (Re)scehdules one-time callout if not all data are sent.
1468 */
1469static err_t
1470pxtcp_pcb_forward_outbound(struct pxtcp *pxtcp, struct pbuf *p)
1471{
1472 struct pbuf *qs, *q;
1473 size_t qoff;
1474 size_t forwarded;
1475 int sockerr;
1476
1477 LWIP_ASSERT1(pxtcp->unsent == NULL || pxtcp->unsent == p);
1478
1479 forwarded = 0;
1480 sockerr = 0;
1481
1482 q = NULL;
1483 qoff = 0;
1484
1485 qs = p;
1486 while (qs != NULL) {
1487 IOVEC iov[8];
1488 const size_t iovsize = sizeof(iov)/sizeof(iov[0]);
1489 size_t fwd1;
1490 ssize_t nsent;
1491 size_t i;
1492
1493 fwd1 = 0;
1494 for (i = 0, q = qs; i < iovsize && q != NULL; ++i, q = q->next) {
1495 LWIP_ASSERT1(q->len > 0);
1496 IOVEC_SET_BASE(iov[i], q->payload);
1497 IOVEC_SET_LEN(iov[i], q->len);
1498 fwd1 += q->len;
1499 }
1500
1501 /*
1502 * TODO: This is where application-level proxy can hook into
1503 * to process outbound traffic.
1504 */
1505 nsent = pxtcp_sock_send(pxtcp, iov, i);
1506
1507 if (nsent == (ssize_t)fwd1) {
1508 /* successfully sent this chain fragment completely */
1509 forwarded += nsent;
1510 qs = q;
1511 }
1512 else if (nsent >= 0) {
1513 /* successfully sent only some data */
1514 forwarded += nsent;
1515
1516 /* find the first pbuf that was not completely forwarded */
1517 qoff = nsent;
1518 for (i = 0, q = qs; i < iovsize && q != NULL; ++i, q = q->next) {
1519 if (qoff < q->len) {
1520 break;
1521 }
1522 qoff -= q->len;
1523 }
1524 LWIP_ASSERT1(q != NULL);
1525 LWIP_ASSERT1(qoff < q->len);
1526 break;
1527 }
1528 else {
1529 sockerr = -nsent;
1530
1531 /*
1532 * Some errors are really not errors - if we get them,
1533 * it's not different from getting nsent == 0, so filter
1534 * them out here.
1535 */
1536 if (proxy_error_is_transient(sockerr)) {
1537 sockerr = 0;
1538 }
1539 q = qs;
1540 qoff = 0;
1541 break;
1542 }
1543 }
1544
1545 if (forwarded > 0) {
1546 tcp_recved(pxtcp->pcb, (u16_t)forwarded);
1547 }
1548
1549 if (q == NULL) { /* everything is forwarded? */
1550 LWIP_ASSERT1(sockerr == 0);
1551 LWIP_ASSERT1(forwarded == p->tot_len);
1552
1553 pxtcp->unsent = NULL;
1554 pbuf_free(p);
1555 if (pxtcp->outbound_close) {
1556 pxtcp_pcb_forward_outbound_close(pxtcp);
1557 }
1558 }
1559 else {
1560 if (q != p) {
1561 /* free forwarded pbufs at the beginning of the chain */
1562 pbuf_ref(q);
1563 pbuf_free(p);
1564 }
1565 if (qoff > 0) {
1566 /* advance payload pointer past the forwarded part */
1567 pbuf_header(q, -(s16_t)qoff);
1568 }
1569 pxtcp->unsent = q;
1570
1571 /*
1572 * Have sendmsg() failed?
1573 *
1574 * Connection reset will be detected by poll and
1575 * pxtcp_schedule_reset() will be called.
1576 *
1577 * Otherwise something *really* unexpected must have happened,
1578 * so we'd better abort.
1579 */
1580 if (sockerr != 0 && sockerr != ECONNRESET) {
1581 struct tcp_pcb *pcb = pxtcp->pcb;
1582 pxtcp_pcb_dissociate(pxtcp);
1583
1584 tcp_abort(pcb);
1585
1586 /* call error callback manually since we've already dissociated */
1587 pxtcp_pcb_err((void *)pxtcp, ERR_ABRT);
1588 return ERR_ABRT;
1589 }
1590
1591 /* schedule one-shot POLLOUT on the socket */
1592 pxtcp_chan_send_weak(POLLMGR_CHAN_PXTCP_POLLOUT, pxtcp);
1593 }
1594 return ERR_OK;
1595}
1596
1597
1598#if !defined(RT_OS_WINDOWS)
1599static ssize_t
1600pxtcp_sock_send(struct pxtcp *pxtcp, IOVEC *iov, size_t iovlen)
1601{
1602 struct msghdr mh;
1603 ssize_t nsent;
1604
1605#ifdef MSG_NOSIGNAL
1606 const int send_flags = MSG_NOSIGNAL;
1607#else
1608 const int send_flags = 0;
1609#endif
1610
1611 memset(&mh, 0, sizeof(mh));
1612
1613 mh.msg_iov = iov;
1614 mh.msg_iovlen = iovlen;
1615
1616 nsent = sendmsg(pxtcp->sock, &mh, send_flags);
1617 if (nsent < 0) {
1618 nsent = -SOCKERRNO();
1619 }
1620
1621 return nsent;
1622}
1623#else /* RT_OS_WINDOWS */
1624static ssize_t
1625pxtcp_sock_send(struct pxtcp *pxtcp, IOVEC *iov, size_t iovlen)
1626{
1627 DWORD nsent;
1628 int status;
1629
1630 status = WSASend(pxtcp->sock, iov, (DWORD)iovlen, &nsent,
1631 0, NULL, NULL);
1632 if (status == SOCKET_ERROR) {
1633 return -SOCKERRNO();
1634 }
1635
1636 return nsent;
1637}
1638#endif /* RT_OS_WINDOWS */
1639
1640
1641/**
1642 * Callback from poll manager (on POLLOUT) to send data from
1643 * pxtcp::unsent pbuf to socket.
1644 */
1645static void
1646pxtcp_pcb_write_outbound(void *ctx)
1647{
1648 struct pxtcp *pxtcp = (struct pxtcp *)ctx;
1649 LWIP_ASSERT1(pxtcp != NULL);
1650
1651 if (pxtcp->pcb == NULL) {
1652 return;
1653 }
1654
1655 pxtcp_pcb_forward_outbound(pxtcp, pxtcp->unsent);
1656}
1657
1658
1659/**
1660 * Common poll manager callback used by both outgoing and incoming
1661 * (port-forwarded) connections that has connected socket.
1662 */
1663static int
1664pxtcp_pmgr_pump(struct pollmgr_handler *handler, SOCKET fd, int revents)
1665{
1666 struct pxtcp *pxtcp;
1667 int status;
1668 int sockerr;
1669
1670 pxtcp = (struct pxtcp *)handler->data;
1671 LWIP_ASSERT1(handler == &pxtcp->pmhdl);
1672 LWIP_ASSERT1(fd == pxtcp->sock);
1673
1674 if (revents & POLLNVAL) {
1675 pxtcp->sock = INVALID_SOCKET;
1676 return pxtcp_schedule_reset(pxtcp);
1677 }
1678
1679 if (revents & POLLERR) {
1680 socklen_t optlen = (socklen_t)sizeof(sockerr);
1681
1682 status = getsockopt(pxtcp->sock, SOL_SOCKET, SO_ERROR,
1683 (char *)&sockerr, &optlen);
1684 if (status == SOCKET_ERROR) { /* should not happen */
1685 DPRINTF(("sock %d: SO_ERROR failed: %R[sockerr]\n",
1686 fd, SOCKERRNO()));
1687 }
1688 else {
1689 DPRINTF0(("sock %d: %R[sockerr]\n", fd, sockerr));
1690 }
1691 return pxtcp_schedule_reset(pxtcp);
1692 }
1693
1694 if (revents & POLLOUT) {
1695 pxtcp->events &= ~POLLOUT;
1696 proxy_lwip_post(&pxtcp->msg_outbound);
1697 }
1698
1699 if (revents & POLLIN) {
1700 ssize_t nread;
1701 int stop_pollin;
1702
1703 nread = pxtcp_sock_read(pxtcp, &stop_pollin);
1704 if (nread < 0) {
1705 sockerr = -(int)nread;
1706 DPRINTF0(("sock %d: %R[sockerr]\n", fd, sockerr));
1707 return pxtcp_schedule_reset(pxtcp);
1708 }
1709
1710 if (stop_pollin) {
1711 pxtcp->events &= ~POLLIN;
1712 }
1713
1714 if (nread > 0) {
1715 proxy_lwip_post(&pxtcp->msg_inbound);
1716#if !HAVE_TCP_POLLHUP
1717 /*
1718 * If host does not report POLLHUP for closed sockets
1719 * (e.g. NetBSD) we should check for full close manually.
1720 */
1721 if (pxtcp->inbound_close && pxtcp->outbound_close_done) {
1722 LWIP_ASSERT1((revents & POLLHUP) == 0);
1723 return pxtcp_schedule_delete(pxtcp);
1724 }
1725#endif
1726 }
1727 }
1728
1729#if !HAVE_TCP_POLLHUP
1730 LWIP_ASSERT1((revents & POLLHUP) == 0);
1731#else
1732 if (revents & POLLHUP) {
1733 DPRINTF(("sock %d: HUP\n", fd));
1734#if HAVE_TCP_POLLHUP == POLLIN
1735 /*
1736 * Remote closed inbound.
1737 */
1738 if (!pxtcp->outbound_close_done) {
1739 /*
1740 * We might still need to poll for POLLOUT, but we can not
1741 * poll for POLLIN anymore (even if not all data are read)
1742 * because we will be spammed by POLLHUP.
1743 */
1744 pxtcp->events &= ~POLLIN;
1745 if (!pxtcp->inbound_close) {
1746 /* the rest of the input has to be pulled */
1747 proxy_lwip_post(&pxtcp->msg_inpull);
1748 }
1749 }
1750 else
1751#endif
1752 /*
1753 * Both directions are closed.
1754 */
1755 {
1756 LWIP_ASSERT1(pxtcp->outbound_close_done);
1757
1758 if (pxtcp->inbound_close) {
1759 /* there's no unread data, we are done */
1760 return pxtcp_schedule_delete(pxtcp);
1761 }
1762 else {
1763 /* pull the rest of the input first (deferred_delete) */
1764 pxtcp->pmhdl.slot = -1;
1765 proxy_lwip_post(&pxtcp->msg_inpull);
1766 return -1;
1767 }
1768 /* NOTREACHED */
1769 }
1770
1771 }
1772#endif /* HAVE_TCP_POLLHUP */
1773
1774 return pxtcp->events;
1775}
1776
1777
1778/**
1779 * Read data from socket to ringbuf. This may be used both on lwip
1780 * and poll manager threads.
1781 *
1782 * Flag pointed to by pstop is set when further reading is impossible,
1783 * either temporary when buffer is full, or permanently when EOF is
1784 * received.
1785 *
1786 * Returns number of bytes read. NB: EOF is reported as 1!
1787 *
1788 * Returns zero if nothing was read, either because buffer is full, or
1789 * if no data is available (EWOULDBLOCK, EINTR &c).
1790 *
1791 * Returns -errno on real socket errors.
1792 */
1793static ssize_t
1794pxtcp_sock_read(struct pxtcp *pxtcp, int *pstop)
1795{
1796 IOVEC iov[2];
1797 size_t iovlen;
1798 ssize_t nread;
1799
1800 const size_t sz = pxtcp->inbuf.bufsize;
1801 size_t beg, lim, wrnew;
1802
1803 *pstop = 0;
1804
1805 beg = pxtcp->inbuf.vacant;
1806 IOVEC_SET_BASE(iov[0], &pxtcp->inbuf.buf[beg]);
1807
1808 /* lim is the index we can NOT write to */
1809 lim = pxtcp->inbuf.unacked;
1810 if (lim == 0) {
1811 lim = sz - 1; /* empty slot at the end */
1812 }
1813 else if (lim == 1 && beg != 0) {
1814 lim = sz; /* empty slot at the beginning */
1815 }
1816 else {
1817 --lim;
1818 }
1819
1820 if (beg == lim) {
1821 /*
1822 * Buffer is full, stop polling for POLLIN.
1823 *
1824 * pxtcp_pcb_sent() will re-enable POLLIN when guest ACKs
1825 * data, freeing space in the ring buffer.
1826 */
1827 *pstop = 1;
1828 return 0;
1829 }
1830
1831 if (beg < lim) {
1832 /* free space in one chunk */
1833 iovlen = 1;
1834 IOVEC_SET_LEN(iov[0], lim - beg);
1835 }
1836 else {
1837 /* free space in two chunks */
1838 iovlen = 2;
1839 IOVEC_SET_LEN(iov[0], sz - beg);
1840 IOVEC_SET_BASE(iov[1], &pxtcp->inbuf.buf[0]);
1841 IOVEC_SET_LEN(iov[1], lim);
1842 }
1843
1844 /*
1845 * TODO: This is where application-level proxy can hook into to
1846 * process inbound traffic.
1847 */
1848 nread = pxtcp_sock_recv(pxtcp, iov, iovlen);
1849
1850 if (nread > 0) {
1851 wrnew = beg + nread;
1852 if (wrnew >= sz) {
1853 wrnew -= sz;
1854 }
1855 pxtcp->inbuf.vacant = wrnew;
1856 DPRINTF2(("pxtcp %p: sock %d read %d bytes\n",
1857 (void *)pxtcp, pxtcp->sock, (int)nread));
1858 return nread;
1859 }
1860 else if (nread == 0) {
1861 *pstop = 1;
1862 pxtcp->inbound_close = 1;
1863 DPRINTF2(("pxtcp %p: sock %d read EOF\n",
1864 (void *)pxtcp, pxtcp->sock));
1865 return 1;
1866 }
1867 else {
1868 int sockerr = -nread;
1869
1870 if (proxy_error_is_transient(sockerr)) {
1871 /* haven't read anything, just return */
1872 DPRINTF2(("pxtcp %p: sock %d read cancelled\n",
1873 (void *)pxtcp, pxtcp->sock));
1874 return 0;
1875 }
1876 else {
1877 /* socket error! */
1878 DPRINTF0(("pxtcp %p: sock %d read: %R[sockerr]\n",
1879 (void *)pxtcp, pxtcp->sock, sockerr));
1880 return -sockerr;
1881 }
1882 }
1883}
1884
1885
1886#if !defined(RT_OS_WINDOWS)
1887static ssize_t
1888pxtcp_sock_recv(struct pxtcp *pxtcp, IOVEC *iov, size_t iovlen)
1889{
1890 struct msghdr mh;
1891 ssize_t nread;
1892
1893 memset(&mh, 0, sizeof(mh));
1894
1895 mh.msg_iov = iov;
1896 mh.msg_iovlen = iovlen;
1897
1898 nread = recvmsg(pxtcp->sock, &mh, 0);
1899 if (nread < 0) {
1900 nread = -SOCKERRNO();
1901 }
1902
1903 return nread;
1904}
1905#else /* RT_OS_WINDOWS */
1906static ssize_t
1907pxtcp_sock_recv(struct pxtcp *pxtcp, IOVEC *iov, size_t iovlen)
1908{
1909 DWORD flags;
1910 DWORD nread;
1911 int status;
1912
1913 flags = 0;
1914 status = WSARecv(pxtcp->sock, iov, (DWORD)iovlen, &nread,
1915 &flags, NULL, NULL);
1916 if (status == SOCKET_ERROR) {
1917 return -SOCKERRNO();
1918 }
1919
1920 return (ssize_t)nread;
1921}
1922#endif /* RT_OS_WINDOWS */
1923
1924
1925/**
1926 * Callback from poll manager (pxtcp::msg_inbound) to trigger output
1927 * from ringbuf to guest.
1928 */
1929static void
1930pxtcp_pcb_write_inbound(void *ctx)
1931{
1932 struct pxtcp *pxtcp = (struct pxtcp *)ctx;
1933 LWIP_ASSERT1(pxtcp != NULL);
1934
1935 if (pxtcp->pcb == NULL) {
1936 return;
1937 }
1938
1939 pxtcp_pcb_forward_inbound(pxtcp);
1940}
1941
1942
1943/**
1944 * tcp_poll() callback
1945 *
1946 * We swtich it on when tcp_write() or tcp_shutdown() fail with
1947 * ERR_MEM to prevent connection from stalling. If there are ACKs or
1948 * more inbound data then pxtcp_pcb_forward_inbound() will be
1949 * triggered again, but if neither happens, tcp_poll() comes to the
1950 * rescue.
1951 */
1952static err_t
1953pxtcp_pcb_poll(void *arg, struct tcp_pcb *pcb)
1954{
1955 struct pxtcp *pxtcp = (struct pxtcp *)arg;
1956 LWIP_UNUSED_ARG(pcb);
1957
1958 DPRINTF2(("%s: pxtcp %p; pcb %p\n",
1959 __func__, (void *)pxtcp, (void *)pxtcp->pcb));
1960
1961 pxtcp_pcb_forward_inbound(pxtcp);
1962
1963 /*
1964 * If the last thing holding up deletion of the pxtcp was failed
1965 * tcp_shutdown() and it succeeded, we may be the last callback.
1966 */
1967 pxtcp_pcb_maybe_deferred_delete(pxtcp);
1968
1969 return ERR_OK;
1970}
1971
1972
1973static void
1974pxtcp_pcb_schedule_poll(struct pxtcp *pxtcp)
1975{
1976 tcp_poll(pxtcp->pcb, pxtcp_pcb_poll, 0);
1977}
1978
1979
1980static void
1981pxtcp_pcb_cancel_poll(struct pxtcp *pxtcp)
1982{
1983 tcp_poll(pxtcp->pcb, NULL, 255);
1984}
1985
1986
1987/**
1988 * Forward inbound data from ring buffer to the guest.
1989 *
1990 * Scheduled by poll manager thread after it receives more data into
1991 * the ring buffer (we have more data to send).
1992
1993 * Also called from tcp_sent() callback when guest ACKs some data,
1994 * increasing pcb->snd_buf (we are permitted to send more data).
1995 *
1996 * Also called from tcp_poll() callback if previous attempt to forward
1997 * inbound data failed with ERR_MEM (we need to try again).
1998 */
1999static void
2000pxtcp_pcb_forward_inbound(struct pxtcp *pxtcp)
2001{
2002 struct tcp_pcb *pcb;
2003 size_t sndbuf;
2004 size_t beg, lim, sndlim;
2005 size_t toeob, tolim;
2006 size_t nsent;
2007 err_t error;
2008
2009 LWIP_ASSERT1(pxtcp != NULL);
2010 pcb = pxtcp->pcb;
2011 if (pcb == NULL) {
2012 return;
2013 }
2014
2015 if (/* __predict_false */ pcb->state < ESTABLISHED) {
2016 /*
2017 * If we have just confirmed accept of this connection, the
2018 * pcb is in SYN_RCVD state and we still haven't received the
2019 * ACK of our SYN. It's only in SYN_RCVD -> ESTABLISHED
2020 * transition that lwip decrements pcb->acked so that that ACK
2021 * is not reported to pxtcp_pcb_sent(). If we send something
2022 * now and immediately close (think "daytime", e.g.) while
2023 * still in SYN_RCVD state, we will move directly to
2024 * FIN_WAIT_1 and when our confirming SYN is ACK'ed lwip will
2025 * report it to pxtcp_pcb_sent().
2026 */
2027 DPRINTF2(("forward_inbound: pxtcp %p; pcb %p %s - later...\n",
2028 (void *)pxtcp, (void *)pcb, tcp_debug_state_str(pcb->state)));
2029 return;
2030 }
2031
2032
2033 beg = pxtcp->inbuf.unsent; /* private to lwip thread */
2034 lim = pxtcp->inbuf.vacant;
2035
2036 if (beg == lim) {
2037 if (pxtcp->inbound_close && !pxtcp->inbound_close_done) {
2038 pxtcp_pcb_forward_inbound_close(pxtcp);
2039 tcp_output(pcb);
2040 return;
2041 }
2042
2043 /*
2044 * Else, there's no data to send.
2045 *
2046 * If there is free space in the buffer, producer will
2047 * reschedule us as it receives more data and vacant (lim)
2048 * advances.
2049 *
2050 * If buffer is full when all data have been passed to
2051 * tcp_write() but not yet acknowledged, we will advance
2052 * unacked on ACK, freeing some space for producer to write to
2053 * (then see above).
2054 */
2055 return;
2056 }
2057
2058 sndbuf = tcp_sndbuf(pcb);
2059 if (sndbuf == 0) {
2060 /*
2061 * Can't send anything now. As guest ACKs some data, TCP will
2062 * call pxtcp_pcb_sent() callback and we will come here again.
2063 */
2064 return;
2065 }
2066
2067 nsent = 0;
2068
2069 /*
2070 * We have three limits to consider:
2071 * - how much data we have in the ringbuf
2072 * - how much data we are allowed to send
2073 * - ringbuf size
2074 */
2075 toeob = pxtcp->inbuf.bufsize - beg;
2076 if (lim < beg) { /* lim wrapped */
2077 if (sndbuf < toeob) { /* but we are limited by sndbuf */
2078 /* so beg is not going to wrap, treat sndbuf as lim */
2079 lim = beg + sndbuf; /* ... and proceed to the simple case */
2080 }
2081 else { /* we are limited by the end of the buffer, beg will wrap */
2082 u8_t maybemore;
2083 if (toeob == sndbuf || lim == 0) {
2084 maybemore = 0;
2085 }
2086 else {
2087 maybemore = TCP_WRITE_FLAG_MORE;
2088 }
2089
2090 error = tcp_write(pcb, &pxtcp->inbuf.buf[beg], toeob, maybemore);
2091 if (error != ERR_OK) {
2092 goto writeerr;
2093 }
2094 nsent += toeob;
2095 pxtcp->inbuf.unsent = 0; /* wrap */
2096
2097 if (maybemore) {
2098 beg = 0;
2099 sndbuf -= toeob;
2100 }
2101 else {
2102 /* we are done sending, but ... */
2103 goto check_inbound_close;
2104 }
2105 }
2106 }
2107
2108 LWIP_ASSERT1(beg < lim);
2109 sndlim = beg + sndbuf;
2110 if (lim > sndlim) {
2111 lim = sndlim;
2112 }
2113 tolim = lim - beg;
2114 if (tolim > 0) {
2115 error = tcp_write(pcb, &pxtcp->inbuf.buf[beg], (u16_t)tolim, 0);
2116 if (error != ERR_OK) {
2117 goto writeerr;
2118 }
2119 nsent += tolim;
2120 pxtcp->inbuf.unsent = lim;
2121 }
2122
2123 check_inbound_close:
2124 if (pxtcp->inbound_close && pxtcp->inbuf.unsent == pxtcp->inbuf.vacant) {
2125 pxtcp_pcb_forward_inbound_close(pxtcp);
2126 }
2127
2128 DPRINTF2(("forward_inbound: pxtcp %p, pcb %p: sent %d bytes\n",
2129 (void *)pxtcp, (void *)pcb, (int)nsent));
2130 tcp_output(pcb);
2131 pxtcp_pcb_cancel_poll(pxtcp);
2132 return;
2133
2134 writeerr:
2135 if (error == ERR_MEM) {
2136 if (nsent > 0) { /* first write succeeded, second failed */
2137 DPRINTF2(("forward_inbound: pxtcp %p, pcb %p: sent %d bytes only\n",
2138 (void *)pxtcp, (void *)pcb, (int)nsent));
2139 tcp_output(pcb);
2140 }
2141 DPRINTF(("forward_inbound: pxtcp %p, pcb %p: ERR_MEM\n",
2142 (void *)pxtcp, (void *)pcb));
2143 pxtcp_pcb_schedule_poll(pxtcp);
2144 }
2145 else {
2146 DPRINTF(("forward_inbound: pxtcp %p, pcb %p: %s\n",
2147 (void *)pxtcp, (void *)pcb, proxy_lwip_strerr(error)));
2148
2149 /* XXX: We shouldn't get ERR_ARG. Check ERR_CONN conditions early? */
2150 LWIP_ASSERT1(error == ERR_MEM);
2151 }
2152}
2153
2154
2155static void
2156pxtcp_pcb_forward_inbound_close(struct pxtcp *pxtcp)
2157{
2158 struct tcp_pcb *pcb;
2159 err_t error;
2160
2161 LWIP_ASSERT1(pxtcp != NULL);
2162 LWIP_ASSERT1(pxtcp->inbound_close);
2163 LWIP_ASSERT1(!pxtcp->inbound_close_done);
2164 LWIP_ASSERT1(pxtcp->inbuf.unsent == pxtcp->inbuf.vacant);
2165
2166 pcb = pxtcp->pcb;
2167 LWIP_ASSERT1(pcb != NULL);
2168
2169 DPRINTF(("inbound_close: pxtcp %p; pcb %p: %s\n",
2170 (void *)pxtcp, (void *)pcb, tcp_debug_state_str(pcb->state)));
2171
2172 error = tcp_shutdown(pcb, /*RX*/ 0, /*TX*/ 1);
2173 if (error != ERR_OK) {
2174 DPRINTF(("inbound_close: pxtcp %p; pcb %p:"
2175 " tcp_shutdown: error=%s\n",
2176 (void *)pxtcp, (void *)pcb, proxy_lwip_strerr(error)));
2177 pxtcp_pcb_schedule_poll(pxtcp);
2178 return;
2179 }
2180
2181 pxtcp_pcb_cancel_poll(pxtcp);
2182 pxtcp->inbound_close_done = 1;
2183
2184
2185 /*
2186 * If we have already done outbound close previously (passive
2187 * close on the pcb), then we must not hold onto a pcb in LAST_ACK
2188 * state since those will be deleted by lwip when that last ack
2189 * comes from the guest.
2190 *
2191 * NB: We do NOT check for deferred delete here, even though we
2192 * have just set one of its conditions, inbound_close_done. We
2193 * let pcb callbacks that called us do that. It's simpler and
2194 * cleaner that way.
2195 */
2196 if (pxtcp->outbound_close_done && pxtcp_pcb_forward_inbound_done(pxtcp)) {
2197 pxtcp_pcb_dissociate(pxtcp);
2198 }
2199}
2200
2201
2202/**
2203 * Check that all forwarded inbound data is sent and acked, and that
2204 * inbound close is scheduled (we aren't called back when it's acked).
2205 */
2206DECLINLINE(int)
2207pxtcp_pcb_forward_inbound_done(const struct pxtcp *pxtcp)
2208{
2209 return (pxtcp->inbound_close_done /* also implies that all data forwarded */
2210 && pxtcp->inbuf.unacked == pxtcp->inbuf.unsent);
2211}
2212
2213
2214/**
2215 * tcp_sent() callback - guest acknowledged len bytes.
2216 *
2217 * We can advance inbuf::unacked index, making more free space in the
2218 * ringbuf and wake up producer on poll manager thread.
2219 *
2220 * We can also try to send more data if we have any since pcb->snd_buf
2221 * was increased and we are now permitted to send more.
2222 */
2223static err_t
2224pxtcp_pcb_sent(void *arg, struct tcp_pcb *pcb, u16_t len)
2225{
2226 struct pxtcp *pxtcp = (struct pxtcp *)arg;
2227 size_t unacked;
2228
2229 LWIP_ASSERT1(pxtcp != NULL);
2230 LWIP_ASSERT1(pxtcp->pcb == pcb);
2231 LWIP_ASSERT1(pcb->callback_arg == pxtcp);
2232 LWIP_UNUSED_ARG(pcb); /* only in assert */
2233
2234 DPRINTF2(("%s: pxtcp %p; pcb %p: +%d ACKed:"
2235 " unacked %d, unsent %d, vacant %d\n",
2236 __func__, (void *)pxtcp, (void *)pcb, (int)len,
2237 (int)pxtcp->inbuf.unacked,
2238 (int)pxtcp->inbuf.unsent,
2239 (int)pxtcp->inbuf.vacant));
2240
2241 if (/* __predict_false */ len == 0) {
2242 /* we are notified to start pulling */
2243 LWIP_ASSERT1(!pxtcp->inbound_close);
2244 LWIP_ASSERT1(pxtcp->inbound_pull);
2245
2246 unacked = pxtcp->inbuf.unacked;
2247 }
2248 else {
2249 /*
2250 * Advance unacked index. Guest acknowledged the data, so it
2251 * won't be needed again for potential retransmits.
2252 */
2253 unacked = pxtcp->inbuf.unacked + len;
2254 if (unacked > pxtcp->inbuf.bufsize) {
2255 unacked -= pxtcp->inbuf.bufsize;
2256 }
2257 pxtcp->inbuf.unacked = unacked;
2258 }
2259
2260 /* arrange for more inbound data */
2261 if (!pxtcp->inbound_close) {
2262 if (!pxtcp->inbound_pull) {
2263 /* wake up producer, in case it has stopped polling for POLLIN */
2264 pxtcp_chan_send_weak(POLLMGR_CHAN_PXTCP_POLLIN, pxtcp);
2265#ifdef RT_OS_WINDOWS
2266 /**
2267 * We have't got enought room in ring buffer to read atm,
2268 * but we don't want to lose notification from WSAW4ME when
2269 * space would be available, so we reset event with empty recv
2270 */
2271 recv(pxtcp->sock, NULL, 0, 0);
2272#endif
2273 }
2274 else {
2275 ssize_t nread;
2276 int stop_pollin; /* ignored */
2277
2278 nread = pxtcp_sock_read(pxtcp, &stop_pollin);
2279
2280 if (nread < 0) {
2281 int sockerr = -(int)nread;
2282 LWIP_UNUSED_ARG(sockerr);
2283 DPRINTF0(("%s: sock %d: %R[sockerr]\n",
2284 __func__, pxtcp->sock, sockerr));
2285
2286 /*
2287 * Since we are pulling, pxtcp is no longer registered
2288 * with poll manager so we can kill it directly.
2289 */
2290 pxtcp_pcb_reset_pxtcp(pxtcp);
2291 return ERR_ABRT;
2292 }
2293 }
2294 }
2295
2296 /* forward more data if we can */
2297 if (!pxtcp->inbound_close_done) {
2298 pxtcp_pcb_forward_inbound(pxtcp);
2299
2300 /*
2301 * NB: we might have dissociated from a pcb that transitioned
2302 * to LAST_ACK state, so don't refer to pcb below.
2303 */
2304 }
2305
2306
2307 /* have we got all the acks? */
2308 if (pxtcp->inbound_close /* no more new data */
2309 && pxtcp->inbuf.unsent == pxtcp->inbuf.vacant /* all data is sent */
2310 && unacked == pxtcp->inbuf.unsent) /* ... and is acked */
2311 {
2312 char *buf;
2313
2314 DPRINTF(("%s: pxtcp %p; pcb %p; all data ACKed\n",
2315 __func__, (void *)pxtcp, (void *)pxtcp->pcb));
2316
2317 /* no more retransmits, so buf is not needed */
2318 buf = pxtcp->inbuf.buf;
2319 pxtcp->inbuf.buf = NULL;
2320 free(buf);
2321
2322 /* no more acks, so no more callbacks */
2323 if (pxtcp->pcb != NULL) {
2324 tcp_sent(pxtcp->pcb, NULL);
2325 }
2326
2327 /*
2328 * We may be the last callback for this pcb if we have also
2329 * successfully forwarded inbound_close.
2330 */
2331 pxtcp_pcb_maybe_deferred_delete(pxtcp);
2332 }
2333
2334 return ERR_OK;
2335}
2336
2337
2338/**
2339 * Callback from poll manager (pxtcp::msg_inpull) to switch
2340 * pxtcp_pcb_sent() to actively pull the last bits of input. See
2341 * POLLHUP comment in pxtcp_pmgr_pump().
2342 *
2343 * pxtcp::sock is deregistered from poll manager after this callback
2344 * is scheduled.
2345 */
2346static void
2347pxtcp_pcb_pull_inbound(void *ctx)
2348{
2349 struct pxtcp *pxtcp = (struct pxtcp *)ctx;
2350 LWIP_ASSERT1(pxtcp != NULL);
2351
2352 if (pxtcp->pcb == NULL) {
2353 DPRINTF(("%s: pxtcp %p: PCB IS GONE\n", __func__, (void *)pxtcp));
2354 pxtcp_pcb_reset_pxtcp(pxtcp);
2355 return;
2356 }
2357
2358 pxtcp->inbound_pull = 1;
2359 if (pxtcp->outbound_close_done) {
2360 DPRINTF(("%s: pxtcp %p: pcb %p (deferred delete)\n",
2361 __func__, (void *)pxtcp, (void *)pxtcp->pcb));
2362 pxtcp->deferred_delete = 1;
2363 }
2364 else {
2365 DPRINTF(("%s: pxtcp %p: pcb %p\n",
2366 __func__, (void *)pxtcp, (void *)pxtcp->pcb));
2367 }
2368
2369 pxtcp_pcb_sent(pxtcp, pxtcp->pcb, 0);
2370}
2371
2372
2373/**
2374 * tcp_err() callback.
2375 *
2376 * pcb is not passed to this callback since it may be already
2377 * deallocated by the stack, but we can't do anything useful with it
2378 * anyway since connection is gone.
2379 */
2380static void
2381pxtcp_pcb_err(void *arg, err_t error)
2382{
2383 struct pxtcp *pxtcp = (struct pxtcp *)arg;
2384 LWIP_ASSERT1(pxtcp != NULL);
2385
2386 /*
2387 * ERR_CLSD is special - it is reported here when:
2388 *
2389 * . guest has already half-closed
2390 * . we send FIN to guest when external half-closes
2391 * . guest acks that FIN
2392 *
2393 * Since connection is closed but receive has been already closed
2394 * lwip can only report this via tcp_err. At this point the pcb
2395 * is still alive, so we can peek at it if need be.
2396 *
2397 * The interesting twist is when the ACK from guest that akcs our
2398 * FIN also acks some data. In this scenario lwip will NOT call
2399 * tcp_sent() callback with the ACK for that last bit of data but
2400 * instead will call tcp_err with ERR_CLSD right away. Since that
2401 * ACK also acknowledges all the data, we should run some of
2402 * pxtcp_pcb_sent() logic here.
2403 */
2404 if (error == ERR_CLSD) {
2405 struct tcp_pcb *pcb = pxtcp->pcb; /* still alive */
2406
2407 DPRINTF2(("ERR_CLSD: pxtcp %p; pcb %p:"
2408 " pcb->acked %d;"
2409 " unacked %d, unsent %d, vacant %d\n",
2410 (void *)pxtcp, (void *)pcb,
2411 pcb->acked,
2412 (int)pxtcp->inbuf.unacked,
2413 (int)pxtcp->inbuf.unsent,
2414 (int)pxtcp->inbuf.vacant));
2415
2416 LWIP_ASSERT1(pxtcp->pcb == pcb);
2417 LWIP_ASSERT1(pcb->callback_arg == pxtcp);
2418
2419 if (pcb->acked > 0) {
2420 pxtcp_pcb_sent(pxtcp, pcb, pcb->acked);
2421 }
2422 return;
2423 }
2424
2425 DPRINTF0(("tcp_err: pxtcp=%p, error=%s\n",
2426 (void *)pxtcp, proxy_lwip_strerr(error)));
2427
2428 pxtcp->pcb = NULL; /* pcb is gone */
2429 if (pxtcp->deferred_delete) {
2430 pxtcp_pcb_reset_pxtcp(pxtcp);
2431 }
2432 else {
2433 pxtcp_chan_send_weak(POLLMGR_CHAN_PXTCP_RESET, pxtcp);
2434 }
2435}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette