|
@@ -868,6 +868,8 @@ static int tcp_v4_send_synack(struct sock *sk, struct dst_entry *dst,
|
|
|
ireq->rmt_addr,
|
|
|
ireq->opt);
|
|
|
err = net_xmit_eval(err);
|
|
|
+ if (!tcp_rsk(req)->snt_synack && !err)
|
|
|
+ tcp_rsk(req)->snt_synack = tcp_time_stamp;
|
|
|
}
|
|
|
|
|
|
return err;
|
|
@@ -1382,6 +1384,7 @@ static int tcp_v4_conn_req_fastopen(struct sock *sk,
|
|
|
struct request_sock_queue *queue = &inet_csk(sk)->icsk_accept_queue;
|
|
|
const struct inet_request_sock *ireq = inet_rsk(req);
|
|
|
struct sock *child;
|
|
|
+ int err;
|
|
|
|
|
|
req->retrans = 0;
|
|
|
req->sk = NULL;
|
|
@@ -1393,8 +1396,11 @@ static int tcp_v4_conn_req_fastopen(struct sock *sk,
|
|
|
kfree_skb(skb_synack);
|
|
|
return -1;
|
|
|
}
|
|
|
- ip_build_and_send_pkt(skb_synack, sk, ireq->loc_addr,
|
|
|
- ireq->rmt_addr, ireq->opt);
|
|
|
+ err = ip_build_and_send_pkt(skb_synack, sk, ireq->loc_addr,
|
|
|
+ ireq->rmt_addr, ireq->opt);
|
|
|
+ err = net_xmit_eval(err);
|
|
|
+ if (!err)
|
|
|
+ tcp_rsk(req)->snt_synack = tcp_time_stamp;
|
|
|
/* XXX (TFO) - is it ok to ignore error and continue? */
|
|
|
|
|
|
spin_lock(&queue->fastopenq->lock);
|
|
@@ -1612,7 +1618,6 @@ int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
|
|
|
isn = tcp_v4_init_sequence(skb);
|
|
|
}
|
|
|
tcp_rsk(req)->snt_isn = isn;
|
|
|
- tcp_rsk(req)->snt_synack = tcp_time_stamp;
|
|
|
|
|
|
if (dst == NULL) {
|
|
|
dst = inet_csk_route_req(sk, &fl4, req);
|
|
@@ -1650,6 +1655,7 @@ int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
|
|
|
if (err || want_cookie)
|
|
|
goto drop_and_free;
|
|
|
|
|
|
+ tcp_rsk(req)->snt_synack = tcp_time_stamp;
|
|
|
tcp_rsk(req)->listener = NULL;
|
|
|
/* Add the request_sock to the SYN table */
|
|
|
inet_csk_reqsk_queue_hash_add(sk, req, TCP_TIMEOUT_INIT);
|