Page MenuHomeFreeBSD

Rack and BBR broken with the new timewait state purge.
ClosedPublic

Authored by rrs on Oct 21 2022, 1:19 PM.
Tags
None
Referenced Files
F166119908: D37080.diff
Tue, Aug 11, 9:27 PM
Unknown Object (File)
Mon, Aug 10, 10:18 AM
Unknown Object (File)
Sat, Aug 8, 3:14 AM
Unknown Object (File)
Fri, Aug 7, 6:34 PM
Unknown Object (File)
Fri, Aug 7, 2:33 PM
Unknown Object (File)
Thu, Aug 6, 2:34 PM
Unknown Object (File)
Wed, Aug 5, 5:10 AM
Unknown Object (File)
Sat, Jul 25, 10:13 PM
Subscribers

Details

Summary

We recently got rid of the explicit INP_TIMEWAIT state, this has caused some
minor breakage to both rack and bbr. Basically the timewait check that was
in tcp_lro.c is now gone. This means that compressed_ack and mbuf_queued
packets will arrive at TCP without going through tcp_input_with_port(). We need
to expand the check that was stripped to look at the tcp_state (t_state) and
not "LRO" packets that are in the TCPS_TIMEWAIT state.

Test Plan

Make sure with the fix that packets for a connection in time-wait
LRO does not launch the packets via the compressed ack/mbuf queue path.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

rrs requested review of this revision.Oct 21 2022, 1:19 PM
This revision is now accepted and ready to land.Oct 21 2022, 1:28 PM

This is how it gets through! I should also restore the KASSERT()s in rack/bbr, then.