gvisor/pkg/tcpip
Bhasker Hariharan ae26b2c425 Fixes to TCP listen behavior.
Netstack listen loop can get stuck if cookies are in-use and the app is slow to
accept incoming connections. Further we continue to complete handshake for a
connection even if the backlog is full. This creates a problem when a lots of
connections come in rapidly and we end up with lots of completed connections
just hanging around to be delivered.

These fixes change netstack behaviour to mirror what linux does as described
here in the following article

http://veithen.io/2014/01/01/how-tcp-backlog-works-in-linux.html

Now when cookies are not in-use Netstack will silently drop the ACK to a SYN-ACK
and not complete the handshake if the backlog is full.  This will result in the
connection staying in a half-complete state. Eventually the sender will
retransmit the ACK and if backlog has space we will transition to a connected
state and deliver the endpoint.

Similarly when cookies are in use we do not try and create an endpoint unless
there is space in the accept queue to accept the newly created endpoint. If
there is no space then we again silently drop the ACK as we can just recreate it
when the ACK is retransmitted by the peer.

We also now use the backlog to cap the size of the SYN-RCVD queue for a given
endpoint. So at any time there can be N connections in the backlog and N in a
SYN-RCVD state if the application is not accepting connections. Any new SYNs
will be dropped.

This CL also fixes another small bug where we mark a new endpoint which has not
completed handshake as connected. We should wait till handshake successfully
completes before marking it connected.

Updates #236

PiperOrigin-RevId: 250717817
2019-05-30 12:08:41 -07:00
..
adapters/gonet Add gonet.DialContextTCP. 2019-05-07 14:27:36 -07:00
buffer Support IPv4 fragmentation in netstack 2019-05-03 13:30:35 -07:00
checker Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
hash/jenkins Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
header Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
link Refactor fdbased endpoint dispatcher code. 2019-05-21 15:24:25 -07:00
network Check GSO for nil in WritePacket 2019-05-07 14:57:03 -07:00
ports Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
sample Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
seqnum Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
stack Remove unused wakers 2019-05-24 12:29:14 -07:00
transport Fixes to TCP listen behavior. 2019-05-30 12:08:41 -07:00
BUILD Remove license comments 2019-01-31 11:12:53 -08:00
tcpip.go Fixes to TCP listen behavior. 2019-05-30 12:08:41 -07:00
tcpip_test.go Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
time.s Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
time_unsafe.go Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00