All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tcp: Reject invalid ack_seq to Fast Open sockets
@ 2012-10-22 21:26 H.K. Jerry Chu
  2012-10-22 21:46 ` Yuchung Cheng
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: H.K. Jerry Chu @ 2012-10-22 21:26 UTC (permalink / raw)
  To: davem; +Cc: netdev, ncardwell, ycheng, Jerry Chu

From: Jerry Chu <hkchu@google.com>

A packet with an invalid ack_seq may cause a TCP Fast Open socket to switch
to the unexpected TCP_CLOSING state, triggering a BUG_ON kernel panic.

When a FIN packet with an invalid ack_seq# arrives at a socket in
the TCP_FIN_WAIT1 state, rather than discarding the packet, the current
code will accept the FIN, causing state transition to TCP_CLOSING.

This may be a small deviation from RFC793, which seems to say that the
packet should be dropped. Unfortunately I did not expect this case for
Fast Open hence it will trigger a BUG_ON panic.

It turns out there is really nothing bad about a TFO socket going into
TCP_CLOSING state so I could just remove the BUG_ON statements. But after
some thought I think it's better to treat this case like TCP_SYN_RECV
and return a RST to the confused peer who caused the unacceptable ack_seq
to be generated in the first place.

Signed-off-by: H.K. Jerry Chu <hkchu@google.com>
Cc: Neal Cardwell <ncardwell@google.com>
Cc: Yuchung Cheng <ycheng@google.com>
---
 net/ipv4/tcp_input.c |   12 ++++++++++--
 net/ipv4/tcp_timer.c |    2 +-
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 60cf836..ce3e3c7 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -5970,7 +5970,7 @@ int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
 
 	req = tp->fastopen_rsk;
 	if (req != NULL) {
-		BUG_ON(sk->sk_state != TCP_SYN_RECV &&
+		WARN_ON_ONCE(sk->sk_state != TCP_SYN_RECV &&
 		    sk->sk_state != TCP_FIN_WAIT1);
 
 		if (tcp_check_req(sk, skb, req, NULL, true) == NULL)
@@ -6059,7 +6059,15 @@ int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
 			 * ACK we have received, this would have acknowledged
 			 * our SYNACK so stop the SYNACK timer.
 			 */
-			if (acceptable && req != NULL) {
+			if (req != NULL) {
+				/* Return RST if ack_seq is invalid.
+				 * Note that RFC793 only says to generate a
+				 * DUPACK for it but for TCP Fast Open it seems
+				 * better to treat this case like TCP_SYN_RECV
+				 * above.
+				 */
+				if (!acceptable)
+					return 1;
 				/* We no longer need the request sock. */
 				reqsk_fastopen_remove(sk, req, false);
 				tcp_rearm_rto(sk);
diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c
index fc04711..a24f4a4 100644
--- a/net/ipv4/tcp_timer.c
+++ b/net/ipv4/tcp_timer.c
@@ -347,7 +347,7 @@ void tcp_retransmit_timer(struct sock *sk)
 		return;
 	}
 	if (tp->fastopen_rsk) {
-		BUG_ON(sk->sk_state != TCP_SYN_RECV &&
+		WARN_ON_ONCE(sk->sk_state != TCP_SYN_RECV &&
 		    sk->sk_state != TCP_FIN_WAIT1);
 		tcp_fastopen_synack_timer(sk);
 		/* Before we receive ACK to our SYN-ACK don't retransmit
-- 
1.7.7.3

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

* Re: [PATCH] tcp: Reject invalid ack_seq to Fast Open sockets
  2012-10-22 21:26 [PATCH] tcp: Reject invalid ack_seq to Fast Open sockets H.K. Jerry Chu
@ 2012-10-22 21:46 ` Yuchung Cheng
  2012-10-22 21:59 ` Eric Dumazet
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Yuchung Cheng @ 2012-10-22 21:46 UTC (permalink / raw)
  To: H.K. Jerry Chu; +Cc: davem, netdev, ncardwell

On Mon, Oct 22, 2012 at 2:26 PM, H.K. Jerry Chu <hkchu@google.com> wrote:
> From: Jerry Chu <hkchu@google.com>
>
> A packet with an invalid ack_seq may cause a TCP Fast Open socket to switch
> to the unexpected TCP_CLOSING state, triggering a BUG_ON kernel panic.
>
> When a FIN packet with an invalid ack_seq# arrives at a socket in
> the TCP_FIN_WAIT1 state, rather than discarding the packet, the current
> code will accept the FIN, causing state transition to TCP_CLOSING.
>
> This may be a small deviation from RFC793, which seems to say that the
> packet should be dropped. Unfortunately I did not expect this case for
> Fast Open hence it will trigger a BUG_ON panic.
>
> It turns out there is really nothing bad about a TFO socket going into
> TCP_CLOSING state so I could just remove the BUG_ON statements. But after
> some thought I think it's better to treat this case like TCP_SYN_RECV
> and return a RST to the confused peer who caused the unacceptable ack_seq
> to be generated in the first place.
>
> Signed-off-by: H.K. Jerry Chu <hkchu@google.com>
> Cc: Neal Cardwell <ncardwell@google.com>
> Cc: Yuchung Cheng <ycheng@google.com>
Acked-by: Yuchung Cheng <ycheng@google.com>
> ---
>  net/ipv4/tcp_input.c |   12 ++++++++++--
>  net/ipv4/tcp_timer.c |    2 +-
>  2 files changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
> index 60cf836..ce3e3c7 100644
> --- a/net/ipv4/tcp_input.c
> +++ b/net/ipv4/tcp_input.c
> @@ -5970,7 +5970,7 @@ int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
>
>         req = tp->fastopen_rsk;
>         if (req != NULL) {
> -               BUG_ON(sk->sk_state != TCP_SYN_RECV &&
> +               WARN_ON_ONCE(sk->sk_state != TCP_SYN_RECV &&
>                     sk->sk_state != TCP_FIN_WAIT1);
>
>                 if (tcp_check_req(sk, skb, req, NULL, true) == NULL)
> @@ -6059,7 +6059,15 @@ int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
>                          * ACK we have received, this would have acknowledged
>                          * our SYNACK so stop the SYNACK timer.
>                          */
> -                       if (acceptable && req != NULL) {
> +                       if (req != NULL) {
> +                               /* Return RST if ack_seq is invalid.
> +                                * Note that RFC793 only says to generate a
> +                                * DUPACK for it but for TCP Fast Open it seems
> +                                * better to treat this case like TCP_SYN_RECV
> +                                * above.
> +                                */
> +                               if (!acceptable)
> +                                       return 1;
>                                 /* We no longer need the request sock. */
>                                 reqsk_fastopen_remove(sk, req, false);
>                                 tcp_rearm_rto(sk);
> diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c
> index fc04711..a24f4a4 100644
> --- a/net/ipv4/tcp_timer.c
> +++ b/net/ipv4/tcp_timer.c
> @@ -347,7 +347,7 @@ void tcp_retransmit_timer(struct sock *sk)
>                 return;
>         }
>         if (tp->fastopen_rsk) {
> -               BUG_ON(sk->sk_state != TCP_SYN_RECV &&
> +               WARN_ON_ONCE(sk->sk_state != TCP_SYN_RECV &&
>                     sk->sk_state != TCP_FIN_WAIT1);
>                 tcp_fastopen_synack_timer(sk);
>                 /* Before we receive ACK to our SYN-ACK don't retransmit
> --
> 1.7.7.3
>

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

* Re: [PATCH] tcp: Reject invalid ack_seq to Fast Open sockets
  2012-10-22 21:26 [PATCH] tcp: Reject invalid ack_seq to Fast Open sockets H.K. Jerry Chu
  2012-10-22 21:46 ` Yuchung Cheng
@ 2012-10-22 21:59 ` Eric Dumazet
  2012-10-23  0:56 ` Neal Cardwell
  2012-10-23  6:43 ` David Miller
  3 siblings, 0 replies; 5+ messages in thread
From: Eric Dumazet @ 2012-10-22 21:59 UTC (permalink / raw)
  To: H.K. Jerry Chu; +Cc: davem, netdev, ncardwell, ycheng

On Mon, 2012-10-22 at 14:26 -0700, H.K. Jerry Chu wrote:
> From: Jerry Chu <hkchu@google.com>
> 
> A packet with an invalid ack_seq may cause a TCP Fast Open socket to switch
> to the unexpected TCP_CLOSING state, triggering a BUG_ON kernel panic.
> 
> When a FIN packet with an invalid ack_seq# arrives at a socket in
> the TCP_FIN_WAIT1 state, rather than discarding the packet, the current
> code will accept the FIN, causing state transition to TCP_CLOSING.
> 
> This may be a small deviation from RFC793, which seems to say that the
> packet should be dropped. Unfortunately I did not expect this case for
> Fast Open hence it will trigger a BUG_ON panic.
> 
> It turns out there is really nothing bad about a TFO socket going into
> TCP_CLOSING state so I could just remove the BUG_ON statements. But after
> some thought I think it's better to treat this case like TCP_SYN_RECV
> and return a RST to the confused peer who caused the unacceptable ack_seq
> to be generated in the first place.
> 
> Signed-off-by: H.K. Jerry Chu <hkchu@google.com>
> Cc: Neal Cardwell <ncardwell@google.com>
> Cc: Yuchung Cheng <ycheng@google.com>
> ---

Acked-by: Eric Dumazet <edumazet@google.com>

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

* Re: [PATCH] tcp: Reject invalid ack_seq to Fast Open sockets
  2012-10-22 21:26 [PATCH] tcp: Reject invalid ack_seq to Fast Open sockets H.K. Jerry Chu
  2012-10-22 21:46 ` Yuchung Cheng
  2012-10-22 21:59 ` Eric Dumazet
@ 2012-10-23  0:56 ` Neal Cardwell
  2012-10-23  6:43 ` David Miller
  3 siblings, 0 replies; 5+ messages in thread
From: Neal Cardwell @ 2012-10-23  0:56 UTC (permalink / raw)
  To: H.K. Jerry Chu; +Cc: David Miller, Netdev, Yuchung Cheng

On Mon, Oct 22, 2012 at 5:26 PM, H.K. Jerry Chu <hkchu@google.com> wrote:
> From: Jerry Chu <hkchu@google.com>
>
> A packet with an invalid ack_seq may cause a TCP Fast Open socket to switch
> to the unexpected TCP_CLOSING state, triggering a BUG_ON kernel panic.
>
> When a FIN packet with an invalid ack_seq# arrives at a socket in
> the TCP_FIN_WAIT1 state, rather than discarding the packet, the current
> code will accept the FIN, causing state transition to TCP_CLOSING.
>
> This may be a small deviation from RFC793, which seems to say that the
> packet should be dropped. Unfortunately I did not expect this case for
> Fast Open hence it will trigger a BUG_ON panic.
>
> It turns out there is really nothing bad about a TFO socket going into
> TCP_CLOSING state so I could just remove the BUG_ON statements. But after
> some thought I think it's better to treat this case like TCP_SYN_RECV
> and return a RST to the confused peer who caused the unacceptable ack_seq
> to be generated in the first place.
>
> Signed-off-by: H.K. Jerry Chu <hkchu@google.com>
> Cc: Neal Cardwell <ncardwell@google.com>
> Cc: Yuchung Cheng <ycheng@google.com>

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

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

* Re: [PATCH] tcp: Reject invalid ack_seq to Fast Open sockets
  2012-10-22 21:26 [PATCH] tcp: Reject invalid ack_seq to Fast Open sockets H.K. Jerry Chu
                   ` (2 preceding siblings ...)
  2012-10-23  0:56 ` Neal Cardwell
@ 2012-10-23  6:43 ` David Miller
  3 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2012-10-23  6:43 UTC (permalink / raw)
  To: hkchu; +Cc: netdev, ncardwell, ycheng

From: "H.K. Jerry Chu" <hkchu@google.com>
Date: Mon, 22 Oct 2012 14:26:36 -0700

> From: Jerry Chu <hkchu@google.com>
> 
> A packet with an invalid ack_seq may cause a TCP Fast Open socket to switch
> to the unexpected TCP_CLOSING state, triggering a BUG_ON kernel panic.
> 
> When a FIN packet with an invalid ack_seq# arrives at a socket in
> the TCP_FIN_WAIT1 state, rather than discarding the packet, the current
> code will accept the FIN, causing state transition to TCP_CLOSING.
> 
> This may be a small deviation from RFC793, which seems to say that the
> packet should be dropped. Unfortunately I did not expect this case for
> Fast Open hence it will trigger a BUG_ON panic.
> 
> It turns out there is really nothing bad about a TFO socket going into
> TCP_CLOSING state so I could just remove the BUG_ON statements. But after
> some thought I think it's better to treat this case like TCP_SYN_RECV
> and return a RST to the confused peer who caused the unacceptable ack_seq
> to be generated in the first place.
> 
> Signed-off-by: H.K. Jerry Chu <hkchu@google.com>

Applied, thanks.

> -		BUG_ON(sk->sk_state != TCP_SYN_RECV &&
> +		WARN_ON_ONCE(sk->sk_state != TCP_SYN_RECV &&
>  		    sk->sk_state != TCP_FIN_WAIT1);

I fixed up the indentation of the second line of the test when I
applied this.

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

end of thread, other threads:[~2012-10-23  6:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-22 21:26 [PATCH] tcp: Reject invalid ack_seq to Fast Open sockets H.K. Jerry Chu
2012-10-22 21:46 ` Yuchung Cheng
2012-10-22 21:59 ` Eric Dumazet
2012-10-23  0:56 ` Neal Cardwell
2012-10-23  6:43 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.