diff options
author | Neal Cardwell <ncardwell@google.com> | 2012-09-22 00:18:55 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-09-22 15:47:10 -0400 |
commit | 016818d076871c4ee34db1e8d74dc17ac1de626a (patch) | |
tree | 60d0f20afb0937f61b5fc4611e53a2ac411a0646 /net/ipv6 | |
parent | 623df484a777f3c00c1ea3d6a7565b8d8ac688a1 (diff) |
tcp: TCP Fast Open Server - take SYNACK RTT after completing 3WHS
When taking SYNACK RTT samples for servers using TCP Fast Open, fix
the code to ensure that we only call tcp_valid_rtt_meas() after we
receive the ACK that completes the 3-way handshake.
Previously we were always taking an RTT sample in
tcp_v4_syn_recv_sock(). However, for TCP Fast Open connections
tcp_v4_conn_req_fastopen() calls tcp_v4_syn_recv_sock() at the time we
receive the SYN. So for TFO we must wait until tcp_rcv_state_process()
to take the RTT sample.
To fix this, we wait until after TFO calls tcp_v4_syn_recv_sock()
before we set the snt_synack timestamp, since tcp_synack_rtt_meas()
already ensures that we only take a SYNACK RTT sample if snt_synack is
non-zero. To be careful, we only take a snt_synack timestamp when
a SYNACK transmit or retransmit succeeds.
Signed-off-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index cfeeeb7fcf54..d6212d6bc8d8 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
@@ -1169,7 +1169,6 @@ static int tcp_v6_conn_request(struct sock *sk, struct sk_buff *skb) | |||
1169 | } | 1169 | } |
1170 | have_isn: | 1170 | have_isn: |
1171 | tcp_rsk(req)->snt_isn = isn; | 1171 | tcp_rsk(req)->snt_isn = isn; |
1172 | tcp_rsk(req)->snt_synack = tcp_time_stamp; | ||
1173 | 1172 | ||
1174 | if (security_inet_conn_request(sk, skb, req)) | 1173 | if (security_inet_conn_request(sk, skb, req)) |
1175 | goto drop_and_release; | 1174 | goto drop_and_release; |
@@ -1180,6 +1179,7 @@ have_isn: | |||
1180 | want_cookie) | 1179 | want_cookie) |
1181 | goto drop_and_free; | 1180 | goto drop_and_free; |
1182 | 1181 | ||
1182 | tcp_rsk(req)->snt_synack = tcp_time_stamp; | ||
1183 | tcp_rsk(req)->listener = NULL; | 1183 | tcp_rsk(req)->listener = NULL; |
1184 | inet6_csk_reqsk_queue_hash_add(sk, req, TCP_TIMEOUT_INIT); | 1184 | inet6_csk_reqsk_queue_hash_add(sk, req, TCP_TIMEOUT_INIT); |
1185 | return 0; | 1185 | return 0; |