]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commit - net/netfilter/nf_conntrack_proto_tcp.c
netfilter: nf_conntrack: avoid large timeout for mid-stream pickup
authorFlorian Westphal <fw@strlen.de>
Thu, 13 Jun 2013 15:31:28 +0000 (17:31 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Thu, 20 Jun 2013 09:20:13 +0000 (11:20 +0200)
commit6547a221871f139cc56328a38105d47c14874cbe
tree1882035b480cf2642bb4985f749ef544b34d3c56
parent130ffbc2638ddc290fcbabe1b9ce6a5d333a6a97
netfilter: nf_conntrack: avoid large timeout for mid-stream pickup

When loose tracking is enabled (default), non-syn packets cause
creation of new conntracks in established state with default timeout for
established state (5 days).  This causes the table to fill up with UNREPLIED
when the 'new ack' packet happened to be the last-ack of a previous,
already timed-out connection.

Consider:

A 192.168.x.52792 > 10.184.y.80: F, 426:426(0) ack 9237 win 255
B 10.184.y.80 > 192.168.x.52792: ., ack 427 win 123
<61 second pause>
C 10.184.y.80 > 192.168.x.52792: F, 9237:9237(0) ack 427 win 123
D 192.168.x.52792 > 10.184.y.80: ., ack 9238 win 255

B moves conntrack to CLOSE_WAIT and will kill it after 60 second timeout,
C is ignored (FIN set), but last packet (D) causes new ct with 5-days timeout.

Use UNACK timeout (5 minutes) instead to get rid of these entries sooner
when in ESTABLISHED state without having seen traffic in both directions.

Signed-off-by: Florian Westphal <fw@strlen.de>
Acked-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nf_conntrack_proto_tcp.c