Skip to content

Commit

Permalink
tcp: add tracepoint trace_tcp_set_state()
Browse files Browse the repository at this point in the history
This patch adds tracepoint trace_tcp_set_state. Besides usual fields
(s/d ports, IP addresses), old and new state of the socket is also
printed with TP_printk, with __print_symbolic().

Signed-off-by: Song Liu <songliubraving@fb.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
liu-song-6 authored and davem330 committed Oct 24, 2017
1 parent e1a4aa5 commit e8fce23
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 0 deletions.
76 changes: 76 additions & 0 deletions include/trace/events/tcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,22 @@
#include <linux/tracepoint.h>
#include <net/ipv6.h>

#define tcp_state_name(state) { state, #state }
#define show_tcp_state_name(val) \
__print_symbolic(val, \
tcp_state_name(TCP_ESTABLISHED), \
tcp_state_name(TCP_SYN_SENT), \
tcp_state_name(TCP_SYN_RECV), \
tcp_state_name(TCP_FIN_WAIT1), \
tcp_state_name(TCP_FIN_WAIT2), \
tcp_state_name(TCP_TIME_WAIT), \
tcp_state_name(TCP_CLOSE), \
tcp_state_name(TCP_CLOSE_WAIT), \
tcp_state_name(TCP_LAST_ACK), \
tcp_state_name(TCP_LISTEN), \
tcp_state_name(TCP_CLOSING), \
tcp_state_name(TCP_NEW_SYN_RECV))

/*
* tcp event with arguments sk and skb
*
Expand Down Expand Up @@ -161,6 +177,66 @@ DEFINE_EVENT(tcp_event_sk, tcp_destroy_sock,
TP_ARGS(sk)
);

TRACE_EVENT(tcp_set_state,

TP_PROTO(const struct sock *sk, const int oldstate, const int newstate),

TP_ARGS(sk, oldstate, newstate),

TP_STRUCT__entry(
__field(const void *, skaddr)
__field(int, oldstate)
__field(int, newstate)
__field(__u16, sport)
__field(__u16, dport)
__array(__u8, saddr, 4)
__array(__u8, daddr, 4)
__array(__u8, saddr_v6, 16)
__array(__u8, daddr_v6, 16)
),

TP_fast_assign(
struct inet_sock *inet = inet_sk(sk);
struct in6_addr *pin6;
__be32 *p32;

__entry->skaddr = sk;
__entry->oldstate = oldstate;
__entry->newstate = newstate;

__entry->sport = ntohs(inet->inet_sport);
__entry->dport = ntohs(inet->inet_dport);

p32 = (__be32 *) __entry->saddr;
*p32 = inet->inet_saddr;

p32 = (__be32 *) __entry->daddr;
*p32 = inet->inet_daddr;

#if IS_ENABLED(CONFIG_IPV6)
if (sk->sk_family == AF_INET6) {
pin6 = (struct in6_addr *)__entry->saddr_v6;
*pin6 = sk->sk_v6_rcv_saddr;
pin6 = (struct in6_addr *)__entry->daddr_v6;
*pin6 = sk->sk_v6_daddr;
} else
#endif
{
pin6 = (struct in6_addr *)__entry->saddr_v6;
ipv6_addr_set_v4mapped(inet->inet_saddr, pin6);
pin6 = (struct in6_addr *)__entry->daddr_v6;
ipv6_addr_set_v4mapped(inet->inet_daddr, pin6);
}
),

TP_printk("sport=%hu dport=%hu saddr=%pI4 daddr=%pI4 saddrv6=%pI6c daddrv6=%pI6c oldstate=%s newstate=%s",
__entry->sport, __entry->dport,
__entry->saddr, __entry->daddr,
__entry->saddr_v6, __entry->daddr_v6,
show_tcp_state_name(__entry->oldstate),
show_tcp_state_name(__entry->newstate))
);

#endif /* _TRACE_TCP_H */

/* This part must be outside protection */
Expand Down
4 changes: 4 additions & 0 deletions net/ipv4/tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,8 @@
#include <asm/ioctls.h>
#include <net/busy_poll.h>

#include <trace/events/tcp.h>

int sysctl_tcp_min_tso_segs __read_mostly = 2;

int sysctl_tcp_autocorking __read_mostly = 1;
Expand Down Expand Up @@ -2040,6 +2042,8 @@ void tcp_set_state(struct sock *sk, int state)
{
int oldstate = sk->sk_state;

trace_tcp_set_state(sk, oldstate, state);

switch (state) {
case TCP_ESTABLISHED:
if (oldstate != TCP_ESTABLISHED)
Expand Down

0 comments on commit e8fce23

Please sign in to comment.