tcp: tracepoint: only call trace_tcp_send_reset with full socket
authorSong Liu <songliubraving@fb.com>
Wed, 7 Feb 2018 04:50:23 +0000 (20:50 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 8 Feb 2018 03:00:42 +0000 (22:00 -0500)
commit5c487bb9adddbc1d23433e09d2548759375c2b52
tree83ff74b2e6d19b9a60b67872f718f9fa630319ed
parent043e337f555e610ad8237fd23522d97c968d72b9
tcp: tracepoint: only call trace_tcp_send_reset with full socket

tracepoint tcp_send_reset requires a full socket to work. However, it
may be called when in TCP_TIME_WAIT:

        case TCP_TW_RST:
                tcp_v6_send_reset(sk, skb);
                inet_twsk_deschedule_put(inet_twsk(sk));
                goto discard_it;

To avoid this problem, this patch checks the socket with sk_fullsock()
before calling trace_tcp_send_reset().

Fixes: c24b14c46bb8 ("tcp: add tracepoint trace_tcp_send_reset")
Signed-off-by: Song Liu <songliubraving@fb.com>
Reviewed-by: Lawrence Brakmo <brakmo@fb.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_ipv4.c
net/ipv6/tcp_ipv6.c