netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next] tcp: ipv6: support RFC 6069 (TCP-LD)
@ 2020-05-28  0:34 Eric Dumazet
  2020-05-28  0:46 ` Yuchung Cheng
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Eric Dumazet @ 2020-05-28  0:34 UTC (permalink / raw)
  To: David S . Miller
  Cc: netdev, Eric Dumazet, Eric Dumazet, Neal Cardwell, Yuchung Cheng

Make tcp_ld_RTO_revert() helper available to IPv6, and
implement RFC 6069 :

Quoting this RFC :

3. Connectivity Disruption Indication

   For Internet Protocol version 6 (IPv6) [RFC2460], the counterpart of
   the ICMP destination unreachable message of code 0 (net unreachable)
   and of code 1 (host unreachable) is the ICMPv6 destination
   unreachable message of code 0 (no route to destination) [RFC4443].
   As with IPv4, a router should generate an ICMPv6 destination
   unreachable message of code 0 in response to a packet that cannot be
   delivered to its destination address because it lacks a matching
   entry in its routing table.

Signed-off-by: Eric Dumazet <edumazet@google.com>
---
 include/net/tcp.h   | 1 +
 net/ipv4/tcp_ipv4.c | 3 ++-
 net/ipv6/tcp_ipv6.c | 9 +++++++++
 3 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/include/net/tcp.h b/include/net/tcp.h
index b681338a8320b55a32004b4d9d88c33ca28e8d29..66e4b8331850623515fade891a2e9feb79c49061 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -437,6 +437,7 @@ u16 tcp_get_syncookie_mss(struct request_sock_ops *rsk_ops,
 void tcp_v4_send_check(struct sock *sk, struct sk_buff *skb);
 void tcp_v4_mtu_reduced(struct sock *sk);
 void tcp_req_err(struct sock *sk, u32 seq, bool abort);
+void tcp_ld_RTO_revert(struct sock *sk, u32 seq);
 int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb);
 struct sock *tcp_create_openreq_child(const struct sock *sk,
 				      struct request_sock *req,
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c
index 3a1e2becb1e8d1e0513e87bdfc0e1d5769ffc8e8..615de2d62d8b9b005a9a31b679d253fd2e5c12a8 100644
--- a/net/ipv4/tcp_ipv4.c
+++ b/net/ipv4/tcp_ipv4.c
@@ -404,7 +404,7 @@ void tcp_req_err(struct sock *sk, u32 seq, bool abort)
 EXPORT_SYMBOL(tcp_req_err);
 
 /* TCP-LD (RFC 6069) logic */
-static void tcp_ld_RTO_revert(struct sock *sk, u32 seq)
+void tcp_ld_RTO_revert(struct sock *sk, u32 seq)
 {
 	struct inet_connection_sock *icsk = inet_csk(sk);
 	struct tcp_sock *tp = tcp_sk(sk);
@@ -441,6 +441,7 @@ static void tcp_ld_RTO_revert(struct sock *sk, u32 seq)
 		tcp_retransmit_timer(sk);
 	}
 }
+EXPORT_SYMBOL(tcp_ld_RTO_revert);
 
 /*
  * This routine is called by the ICMP module when it gets some
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
index c403e955fde1288fe781a3f5664de768642b0a7e..00f81817b378911aad3c905160218e964657e730 100644
--- a/net/ipv6/tcp_ipv6.c
+++ b/net/ipv6/tcp_ipv6.c
@@ -473,6 +473,15 @@ static int tcp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
 		} else
 			sk->sk_err_soft = err;
 		goto out;
+	case TCP_LISTEN:
+		break;
+	default:
+		/* check if this ICMP message allows revert of backoff.
+		 * (see RFC 6069)
+		 */
+		if (!fastopen && type == ICMPV6_DEST_UNREACH &&
+		    code == ICMPV6_NOROUTE)
+			tcp_ld_RTO_revert(sk, seq);
 	}
 
 	if (!sock_owned_by_user(sk) && np->recverr) {
-- 
2.27.0.rc0.183.gde8f92d652-goog


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next] tcp: ipv6: support RFC 6069 (TCP-LD)
  2020-05-28  0:34 [PATCH net-next] tcp: ipv6: support RFC 6069 (TCP-LD) Eric Dumazet
@ 2020-05-28  0:46 ` Yuchung Cheng
  2020-05-28  1:19 ` Neal Cardwell
  2020-05-28 18:02 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Yuchung Cheng @ 2020-05-28  0:46 UTC (permalink / raw)
  To: Eric Dumazet; +Cc: David S . Miller, netdev, Eric Dumazet, Neal Cardwell

On Wed, May 27, 2020 at 5:35 PM Eric Dumazet <edumazet@google.com> wrote:
>
> Make tcp_ld_RTO_revert() helper available to IPv6, and
> implement RFC 6069 :
>
> Quoting this RFC :
>
> 3. Connectivity Disruption Indication
>
>    For Internet Protocol version 6 (IPv6) [RFC2460], the counterpart of
>    the ICMP destination unreachable message of code 0 (net unreachable)
>    and of code 1 (host unreachable) is the ICMPv6 destination
>    unreachable message of code 0 (no route to destination) [RFC4443].
>    As with IPv4, a router should generate an ICMPv6 destination
>    unreachable message of code 0 in response to a packet that cannot be
>    delivered to its destination address because it lacks a matching
>    entry in its routing table.
>
> Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Yuchung Cheng <ycheng@google.com>
> ---
>  include/net/tcp.h   | 1 +
>  net/ipv4/tcp_ipv4.c | 3 ++-
>  net/ipv6/tcp_ipv6.c | 9 +++++++++
>  3 files changed, 12 insertions(+), 1 deletion(-)
>
> diff --git a/include/net/tcp.h b/include/net/tcp.h
> index b681338a8320b55a32004b4d9d88c33ca28e8d29..66e4b8331850623515fade891a2e9feb79c49061 100644
> --- a/include/net/tcp.h
> +++ b/include/net/tcp.h
> @@ -437,6 +437,7 @@ u16 tcp_get_syncookie_mss(struct request_sock_ops *rsk_ops,
>  void tcp_v4_send_check(struct sock *sk, struct sk_buff *skb);
>  void tcp_v4_mtu_reduced(struct sock *sk);
>  void tcp_req_err(struct sock *sk, u32 seq, bool abort);
> +void tcp_ld_RTO_revert(struct sock *sk, u32 seq);
>  int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb);
>  struct sock *tcp_create_openreq_child(const struct sock *sk,
>                                       struct request_sock *req,
> diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c
> index 3a1e2becb1e8d1e0513e87bdfc0e1d5769ffc8e8..615de2d62d8b9b005a9a31b679d253fd2e5c12a8 100644
> --- a/net/ipv4/tcp_ipv4.c
> +++ b/net/ipv4/tcp_ipv4.c
> @@ -404,7 +404,7 @@ void tcp_req_err(struct sock *sk, u32 seq, bool abort)
>  EXPORT_SYMBOL(tcp_req_err);
>
>  /* TCP-LD (RFC 6069) logic */
> -static void tcp_ld_RTO_revert(struct sock *sk, u32 seq)
> +void tcp_ld_RTO_revert(struct sock *sk, u32 seq)
>  {
>         struct inet_connection_sock *icsk = inet_csk(sk);
>         struct tcp_sock *tp = tcp_sk(sk);
> @@ -441,6 +441,7 @@ static void tcp_ld_RTO_revert(struct sock *sk, u32 seq)
>                 tcp_retransmit_timer(sk);
>         }
>  }
> +EXPORT_SYMBOL(tcp_ld_RTO_revert);
>
>  /*
>   * This routine is called by the ICMP module when it gets some
> diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
> index c403e955fde1288fe781a3f5664de768642b0a7e..00f81817b378911aad3c905160218e964657e730 100644
> --- a/net/ipv6/tcp_ipv6.c
> +++ b/net/ipv6/tcp_ipv6.c
> @@ -473,6 +473,15 @@ static int tcp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
>                 } else
>                         sk->sk_err_soft = err;
>                 goto out;
> +       case TCP_LISTEN:
> +               break;
> +       default:
> +               /* check if this ICMP message allows revert of backoff.
> +                * (see RFC 6069)
> +                */
> +               if (!fastopen && type == ICMPV6_DEST_UNREACH &&
> +                   code == ICMPV6_NOROUTE)
> +                       tcp_ld_RTO_revert(sk, seq);
>         }
>
>         if (!sock_owned_by_user(sk) && np->recverr) {
> --
> 2.27.0.rc0.183.gde8f92d652-goog
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next] tcp: ipv6: support RFC 6069 (TCP-LD)
  2020-05-28  0:34 [PATCH net-next] tcp: ipv6: support RFC 6069 (TCP-LD) Eric Dumazet
  2020-05-28  0:46 ` Yuchung Cheng
@ 2020-05-28  1:19 ` Neal Cardwell
  2020-05-28 18:02 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Neal Cardwell @ 2020-05-28  1:19 UTC (permalink / raw)
  To: Eric Dumazet; +Cc: David S . Miller, netdev, Eric Dumazet, Yuchung Cheng

On Wed, May 27, 2020 at 8:35 PM Eric Dumazet <edumazet@google.com> wrote:
>
> Make tcp_ld_RTO_revert() helper available to IPv6, and
> implement RFC 6069 :
>
> Quoting this RFC :
>
> 3. Connectivity Disruption Indication
>
>    For Internet Protocol version 6 (IPv6) [RFC2460], the counterpart of
>    the ICMP destination unreachable message of code 0 (net unreachable)
>    and of code 1 (host unreachable) is the ICMPv6 destination
>    unreachable message of code 0 (no route to destination) [RFC4443].
>    As with IPv4, a router should generate an ICMPv6 destination
>    unreachable message of code 0 in response to a packet that cannot be
>    delivered to its destination address because it lacks a matching
>    entry in its routing table.
>
> Signed-off-by: Eric Dumazet <edumazet@google.com>

Acked-by: Neal Cardwell <ncardwell@google.com>

Thanks, Eric!

neal

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next] tcp: ipv6: support RFC 6069 (TCP-LD)
  2020-05-28  0:34 [PATCH net-next] tcp: ipv6: support RFC 6069 (TCP-LD) Eric Dumazet
  2020-05-28  0:46 ` Yuchung Cheng
  2020-05-28  1:19 ` Neal Cardwell
@ 2020-05-28 18:02 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2020-05-28 18:02 UTC (permalink / raw)
  To: edumazet; +Cc: netdev, eric.dumazet, ncardwell, ycheng

From: Eric Dumazet <edumazet@google.com>
Date: Wed, 27 May 2020 17:34:58 -0700

> Make tcp_ld_RTO_revert() helper available to IPv6, and
> implement RFC 6069 :
> 
> Quoting this RFC :
> 
> 3. Connectivity Disruption Indication
> 
>    For Internet Protocol version 6 (IPv6) [RFC2460], the counterpart of
>    the ICMP destination unreachable message of code 0 (net unreachable)
>    and of code 1 (host unreachable) is the ICMPv6 destination
>    unreachable message of code 0 (no route to destination) [RFC4443].
>    As with IPv4, a router should generate an ICMPv6 destination
>    unreachable message of code 0 in response to a packet that cannot be
>    delivered to its destination address because it lacks a matching
>    entry in its routing table.
> 
> Signed-off-by: Eric Dumazet <edumazet@google.com>

Applied, thanks Eric.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-05-28 18:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-28  0:34 [PATCH net-next] tcp: ipv6: support RFC 6069 (TCP-LD) Eric Dumazet
2020-05-28  0:46 ` Yuchung Cheng
2020-05-28  1:19 ` Neal Cardwell
2020-05-28 18:02 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).