Commit ee01defe authored by Jason Xing's avatar Jason Xing Committed by David S. Miller

tcp: make dropreason in tcp_child_process() work

It's time to let it work right now. We've already prepared for this:)
Signed-off-by: default avatarJason Xing <kernelxing@tencent.com>
Reviewed-by: default avatarEric Dumazet <edumazet@google.com>
Reviewed-by: default avatarDavid Ahern <dsahern@kernel.org>
Reviewed-by: default avatarKuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b9825695
...@@ -1907,7 +1907,6 @@ int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb) ...@@ -1907,7 +1907,6 @@ int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
return 0; return 0;
} }
reason = SKB_DROP_REASON_NOT_SPECIFIED;
if (tcp_checksum_complete(skb)) if (tcp_checksum_complete(skb))
goto csum_err; goto csum_err;
...@@ -1917,7 +1916,8 @@ int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb) ...@@ -1917,7 +1916,8 @@ int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
if (!nsk) if (!nsk)
return 0; return 0;
if (nsk != sk) { if (nsk != sk) {
if (tcp_child_process(sk, nsk, skb)) { reason = tcp_child_process(sk, nsk, skb);
if (reason) {
rsk = nsk; rsk = nsk;
goto reset; goto reset;
} }
...@@ -2276,10 +2276,12 @@ int tcp_v4_rcv(struct sk_buff *skb) ...@@ -2276,10 +2276,12 @@ int tcp_v4_rcv(struct sk_buff *skb)
if (nsk == sk) { if (nsk == sk) {
reqsk_put(req); reqsk_put(req);
tcp_v4_restore_cb(skb); tcp_v4_restore_cb(skb);
} else if (tcp_child_process(sk, nsk, skb)) {
tcp_v4_send_reset(nsk, skb);
goto discard_and_relse;
} else { } else {
drop_reason = tcp_child_process(sk, nsk, skb);
if (drop_reason) {
tcp_v4_send_reset(nsk, skb);
goto discard_and_relse;
}
sock_put(sk); sock_put(sk);
return 0; return 0;
} }
......
...@@ -1623,7 +1623,6 @@ int tcp_v6_do_rcv(struct sock *sk, struct sk_buff *skb) ...@@ -1623,7 +1623,6 @@ int tcp_v6_do_rcv(struct sock *sk, struct sk_buff *skb)
if (np->rxopt.all) if (np->rxopt.all)
opt_skb = skb_clone_and_charge_r(skb, sk); opt_skb = skb_clone_and_charge_r(skb, sk);
reason = SKB_DROP_REASON_NOT_SPECIFIED;
if (sk->sk_state == TCP_ESTABLISHED) { /* Fast path */ if (sk->sk_state == TCP_ESTABLISHED) { /* Fast path */
struct dst_entry *dst; struct dst_entry *dst;
...@@ -1654,8 +1653,11 @@ int tcp_v6_do_rcv(struct sock *sk, struct sk_buff *skb) ...@@ -1654,8 +1653,11 @@ int tcp_v6_do_rcv(struct sock *sk, struct sk_buff *skb)
struct sock *nsk = tcp_v6_cookie_check(sk, skb); struct sock *nsk = tcp_v6_cookie_check(sk, skb);
if (nsk != sk) { if (nsk != sk) {
if (nsk && tcp_child_process(sk, nsk, skb)) if (nsk) {
goto reset; reason = tcp_child_process(sk, nsk, skb);
if (reason)
goto reset;
}
if (opt_skb) if (opt_skb)
__kfree_skb(opt_skb); __kfree_skb(opt_skb);
return 0; return 0;
...@@ -1854,10 +1856,12 @@ INDIRECT_CALLABLE_SCOPE int tcp_v6_rcv(struct sk_buff *skb) ...@@ -1854,10 +1856,12 @@ INDIRECT_CALLABLE_SCOPE int tcp_v6_rcv(struct sk_buff *skb)
if (nsk == sk) { if (nsk == sk) {
reqsk_put(req); reqsk_put(req);
tcp_v6_restore_cb(skb); tcp_v6_restore_cb(skb);
} else if (tcp_child_process(sk, nsk, skb)) {
tcp_v6_send_reset(nsk, skb);
goto discard_and_relse;
} else { } else {
drop_reason = tcp_child_process(sk, nsk, skb);
if (drop_reason) {
tcp_v6_send_reset(nsk, skb);
goto discard_and_relse;
}
sock_put(sk); sock_put(sk);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment