diff options
author | Phil Sutter <phil@nwl.cc> | 2015-07-27 18:53:26 -0400 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2015-08-10 07:55:07 -0400 |
commit | 3c16241c445303a90529565e7437e1f240acfef2 (patch) | |
tree | d487541d2b43e7d8ded82679feecde7d25c1601d | |
parent | 96fffb4f23f124f297d51dedc9cf51d19eb88ee1 (diff) |
netfilter: SYNPROXY: fix sending window update to client
Upon receipt of SYNACK from the server, ipt_SYNPROXY first sends back an ACK to
finish the server handshake, then calls nf_ct_seqadj_init() to initiate
sequence number adjustment of forwarded packets to the client and finally sends
a window update to the client to unblock it's TX queue.
Since synproxy_send_client_ack() does not set synproxy_send_tcp()'s nfct
parameter, no sequence number adjustment happens and the client receives the
window update with incorrect sequence number. Depending on client TCP
implementation, this leads to a significant delay (until a window probe is
being sent).
Signed-off-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r-- | net/ipv4/netfilter/ipt_SYNPROXY.c | 3 | ||||
-rw-r--r-- | net/ipv6/netfilter/ip6t_SYNPROXY.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/net/ipv4/netfilter/ipt_SYNPROXY.c b/net/ipv4/netfilter/ipt_SYNPROXY.c index fe8cc183411e..95ea633e8356 100644 --- a/net/ipv4/netfilter/ipt_SYNPROXY.c +++ b/net/ipv4/netfilter/ipt_SYNPROXY.c | |||
@@ -226,7 +226,8 @@ synproxy_send_client_ack(const struct synproxy_net *snet, | |||
226 | 226 | ||
227 | synproxy_build_options(nth, opts); | 227 | synproxy_build_options(nth, opts); |
228 | 228 | ||
229 | synproxy_send_tcp(skb, nskb, NULL, 0, niph, nth, tcp_hdr_size); | 229 | synproxy_send_tcp(skb, nskb, skb->nfct, IP_CT_ESTABLISHED_REPLY, |
230 | niph, nth, tcp_hdr_size); | ||
230 | } | 231 | } |
231 | 232 | ||
232 | static bool | 233 | static bool |
diff --git a/net/ipv6/netfilter/ip6t_SYNPROXY.c b/net/ipv6/netfilter/ip6t_SYNPROXY.c index bcebc24c6f0b..ebbb754c2111 100644 --- a/net/ipv6/netfilter/ip6t_SYNPROXY.c +++ b/net/ipv6/netfilter/ip6t_SYNPROXY.c | |||
@@ -243,7 +243,8 @@ synproxy_send_client_ack(const struct synproxy_net *snet, | |||
243 | 243 | ||
244 | synproxy_build_options(nth, opts); | 244 | synproxy_build_options(nth, opts); |
245 | 245 | ||
246 | synproxy_send_tcp(snet, skb, nskb, NULL, 0, niph, nth, tcp_hdr_size); | 246 | synproxy_send_tcp(snet, skb, nskb, skb->nfct, IP_CT_ESTABLISHED_REPLY, |
247 | niph, nth, tcp_hdr_size); | ||
247 | } | 248 | } |
248 | 249 | ||
249 | static bool | 250 | static bool |