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
Unknown Object (File)
Sun, Sep 22, 6:20 PM
Unknown Object (File)
Thu, Sep 19, 4:54 AM
Unknown Object (File)
Wed, Sep 18, 4:14 AM
Unknown Object (File)
Wed, Sep 18, 12:13 AM
Unknown Object (File)
Tue, Sep 10, 10:13 AM
Unknown Object (File)
Aug 5 2024, 1:42 PM
Unknown Object (File)
Aug 2 2024, 1:11 AM
Unknown Object (File)
Jul 30 2024, 4:11 AM
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.