2 * tcpprobe - Observe the TCP flow with kprobes.
4 * The idea for this came from Werner Almesberger's umlsim
5 * Copyright (C) 2004, Stephen Hemminger <shemminger@osdl.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #include <linux/kernel.h>
24 #include <linux/kprobes.h>
25 #include <linux/socket.h>
26 #include <linux/tcp.h>
27 #include <linux/slab.h>
28 #include <linux/proc_fs.h>
29 #include <linux/module.h>
30 #include <linux/ktime.h>
31 #include <linux/time.h>
32 #include <net/net_namespace.h>
36 MODULE_AUTHOR("Stephen Hemminger <shemminger@linux-foundation.org>");
37 MODULE_DESCRIPTION("TCP cwnd snooper");
38 MODULE_LICENSE("GPL");
39 MODULE_VERSION("1.1");
41 static int port __read_mostly
= 0;
42 MODULE_PARM_DESC(port
, "Port to match (0=all)");
43 module_param(port
, int, 0);
45 static unsigned int bufsize __read_mostly
= 4096;
46 MODULE_PARM_DESC(bufsize
, "Log buffer size in packets (4096)");
47 module_param(bufsize
, uint
, 0);
49 static int full __read_mostly
;
50 MODULE_PARM_DESC(full
, "Full log (1=every ack packet received, 0=only cwnd changes)");
51 module_param(full
, int, 0);
53 static const char procname
[] = "tcpprobe";
70 wait_queue_head_t wait
;
74 unsigned long head
, tail
;
79 static inline int tcp_probe_used(void)
81 return (tcp_probe
.head
- tcp_probe
.tail
) & (bufsize
- 1);
84 static inline int tcp_probe_avail(void)
86 return bufsize
- tcp_probe_used() - 1;
90 * Hook inserted to be called before each receive packet.
91 * Note: arguments must match tcp_rcv_established()!
93 static int jtcp_rcv_established(struct sock
*sk
, struct sk_buff
*skb
,
94 struct tcphdr
*th
, unsigned int len
)
96 const struct tcp_sock
*tp
= tcp_sk(sk
);
97 const struct inet_sock
*inet
= inet_sk(sk
);
99 /* Only update if port matches */
100 if ((port
== 0 || ntohs(inet
->inet_dport
) == port
||
101 ntohs(inet
->inet_sport
) == port
) &&
102 (full
|| tp
->snd_cwnd
!= tcp_probe
.lastcwnd
)) {
104 spin_lock(&tcp_probe
.lock
);
105 /* If log fills, just silently drop */
106 if (tcp_probe_avail() > 1) {
107 struct tcp_log
*p
= tcp_probe
.log
+ tcp_probe
.head
;
109 p
->tstamp
= ktime_get();
110 p
->saddr
= inet
->inet_saddr
;
111 p
->sport
= inet
->inet_sport
;
112 p
->daddr
= inet
->inet_daddr
;
113 p
->dport
= inet
->inet_dport
;
114 p
->length
= skb
->len
;
115 p
->snd_nxt
= tp
->snd_nxt
;
116 p
->snd_una
= tp
->snd_una
;
117 p
->snd_cwnd
= tp
->snd_cwnd
;
118 p
->snd_wnd
= tp
->snd_wnd
;
119 p
->ssthresh
= tcp_current_ssthresh(sk
);
120 p
->srtt
= tp
->srtt
>> 3;
122 tcp_probe
.head
= (tcp_probe
.head
+ 1) & (bufsize
- 1);
124 tcp_probe
.lastcwnd
= tp
->snd_cwnd
;
125 spin_unlock(&tcp_probe
.lock
);
127 wake_up(&tcp_probe
.wait
);
134 static struct jprobe tcp_jprobe
= {
136 .symbol_name
= "tcp_rcv_established",
138 .entry
= jtcp_rcv_established
,
141 static int tcpprobe_open(struct inode
*inode
, struct file
*file
)
143 /* Reset (empty) log */
144 spin_lock_bh(&tcp_probe
.lock
);
145 tcp_probe
.head
= tcp_probe
.tail
= 0;
146 tcp_probe
.start
= ktime_get();
147 spin_unlock_bh(&tcp_probe
.lock
);
152 static int tcpprobe_sprint(char *tbuf
, int n
)
154 const struct tcp_log
*p
155 = tcp_probe
.log
+ tcp_probe
.tail
;
157 = ktime_to_timespec(ktime_sub(p
->tstamp
, tcp_probe
.start
));
159 return scnprintf(tbuf
, n
,
160 "%lu.%09lu %pI4:%u %pI4:%u %d %#x %#x %u %u %u %u\n",
161 (unsigned long) tv
.tv_sec
,
162 (unsigned long) tv
.tv_nsec
,
163 &p
->saddr
, ntohs(p
->sport
),
164 &p
->daddr
, ntohs(p
->dport
),
165 p
->length
, p
->snd_nxt
, p
->snd_una
,
166 p
->snd_cwnd
, p
->ssthresh
, p
->snd_wnd
, p
->srtt
);
169 static ssize_t
tcpprobe_read(struct file
*file
, char __user
*buf
,
170 size_t len
, loff_t
*ppos
)
182 /* Wait for data in buffer */
183 error
= wait_event_interruptible(tcp_probe
.wait
,
184 tcp_probe_used() > 0);
188 spin_lock_bh(&tcp_probe
.lock
);
189 if (tcp_probe
.head
== tcp_probe
.tail
) {
190 /* multiple readers race? */
191 spin_unlock_bh(&tcp_probe
.lock
);
195 width
= tcpprobe_sprint(tbuf
, sizeof(tbuf
));
197 if (cnt
+ width
< len
)
198 tcp_probe
.tail
= (tcp_probe
.tail
+ 1) & (bufsize
- 1);
200 spin_unlock_bh(&tcp_probe
.lock
);
202 /* if record greater than space available
203 return partial buffer (so far) */
204 if (cnt
+ width
>= len
)
207 if (copy_to_user(buf
+ cnt
, tbuf
, width
))
212 return cnt
== 0 ? error
: cnt
;
215 static const struct file_operations tcpprobe_fops
= {
216 .owner
= THIS_MODULE
,
217 .open
= tcpprobe_open
,
218 .read
= tcpprobe_read
,
219 .llseek
= noop_llseek
,
222 static __init
int tcpprobe_init(void)
226 init_waitqueue_head(&tcp_probe
.wait
);
227 spin_lock_init(&tcp_probe
.lock
);
232 bufsize
= roundup_pow_of_two(bufsize
);
233 tcp_probe
.log
= kcalloc(bufsize
, sizeof(struct tcp_log
), GFP_KERNEL
);
237 if (!proc_net_fops_create(&init_net
, procname
, S_IRUSR
, &tcpprobe_fops
))
240 ret
= register_jprobe(&tcp_jprobe
);
244 pr_info("probe registered (port=%d) bufsize=%u\n", port
, bufsize
);
247 proc_net_remove(&init_net
, procname
);
249 kfree(tcp_probe
.log
);
252 module_init(tcpprobe_init
);
254 static __exit
void tcpprobe_exit(void)
256 proc_net_remove(&init_net
, procname
);
257 unregister_jprobe(&tcp_jprobe
);
258 kfree(tcp_probe
.log
);
260 module_exit(tcpprobe_exit
);