mptcp: avoid processing packet if a subflow reset
If check_fully_established() causes a subflow reset, it should not
continue to process the packet in tcp_data_queue().
Add a return value to mptcp_incoming_options(), and return false if a
subflow has been reset, else return true. Then drop the packet in
tcp_data_queue()/tcp_rcv_state_process() if mptcp_incoming_options()
return false.
Fixes: d582484726 ("mptcp: fix fallback for MP_JOIN subflows")
Signed-off-by: Jianguo Wu <wujianguo@chinatelecom.cn>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
8547ea5f52
commit
6787b7e350
@@ -4247,6 +4247,9 @@ void tcp_reset(struct sock *sk, struct sk_buff *skb)
|
||||
{
|
||||
trace_tcp_receive_reset(sk);
|
||||
|
||||
/* mptcp can't tell us to ignore reset pkts,
|
||||
* so just ignore the return value of mptcp_incoming_options().
|
||||
*/
|
||||
if (sk_is_mptcp(sk))
|
||||
mptcp_incoming_options(sk, skb);
|
||||
|
||||
@@ -4941,8 +4944,13 @@ static void tcp_data_queue(struct sock *sk, struct sk_buff *skb)
|
||||
bool fragstolen;
|
||||
int eaten;
|
||||
|
||||
if (sk_is_mptcp(sk))
|
||||
mptcp_incoming_options(sk, skb);
|
||||
/* If a subflow has been reset, the packet should not continue
|
||||
* to be processed, drop the packet.
|
||||
*/
|
||||
if (sk_is_mptcp(sk) && !mptcp_incoming_options(sk, skb)) {
|
||||
__kfree_skb(skb);
|
||||
return;
|
||||
}
|
||||
|
||||
if (TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq) {
|
||||
__kfree_skb(skb);
|
||||
@@ -6523,8 +6531,11 @@ int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb)
|
||||
case TCP_CLOSING:
|
||||
case TCP_LAST_ACK:
|
||||
if (!before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
|
||||
if (sk_is_mptcp(sk))
|
||||
mptcp_incoming_options(sk, skb);
|
||||
/* If a subflow has been reset, the packet should not
|
||||
* continue to be processed, drop the packet.
|
||||
*/
|
||||
if (sk_is_mptcp(sk) && !mptcp_incoming_options(sk, skb))
|
||||
goto discard;
|
||||
break;
|
||||
}
|
||||
fallthrough;
|
||||
|
||||
Reference in New Issue
Block a user