blob: 301a3effe5793f1f0a22cf9cc24fb22c5488907d [file] [log] [blame]
Stephen Hemmingera42e9d62006-06-05 17:30:32 -07001/*
2 * tcpprobe - Observe the TCP flow with kprobes.
3 *
4 * The idea for this came from Werner Almesberger's umlsim
5 * Copyright (C) 2004, Stephen Hemminger <shemminger@osdl.org>
6 *
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
Stephen Hemminger662ad4f2007-07-11 19:43:52 -07009 * the Free Software Foundation; either version 2 of the License.
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070010 *
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.
15 *
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.
19 */
20
Joe Perchesafd465032012-03-12 07:03:32 +000021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070023#include <linux/kernel.h>
24#include <linux/kprobes.h>
25#include <linux/socket.h>
26#include <linux/tcp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070028#include <linux/proc_fs.h>
29#include <linux/module.h>
Stephen Hemminger85795d62007-03-24 21:35:33 -070030#include <linux/ktime.h>
31#include <linux/time.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020032#include <net/net_namespace.h>
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070033
34#include <net/tcp.h>
35
Stephen Hemminger65ebe6342007-01-23 11:38:57 -080036MODULE_AUTHOR("Stephen Hemminger <shemminger@linux-foundation.org>");
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070037MODULE_DESCRIPTION("TCP cwnd snooper");
38MODULE_LICENSE("GPL");
Stephen Hemminger662ad4f2007-07-11 19:43:52 -070039MODULE_VERSION("1.1");
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070040
Stephen Hemminger85795d62007-03-24 21:35:33 -070041static int port __read_mostly = 0;
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070042MODULE_PARM_DESC(port, "Port to match (0=all)");
43module_param(port, int, 0);
44
Stephen Hemmingerf81074f2010-01-25 15:47:50 -080045static unsigned int bufsize __read_mostly = 4096;
Stephen Hemminger662ad4f2007-07-11 19:43:52 -070046MODULE_PARM_DESC(bufsize, "Log buffer size in packets (4096)");
Stephen Hemmingerf81074f2010-01-25 15:47:50 -080047module_param(bufsize, uint, 0);
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070048
Stephen Hemminger85795d62007-03-24 21:35:33 -070049static int full __read_mostly;
50MODULE_PARM_DESC(full, "Full log (1=every ack packet received, 0=only cwnd changes)");
51module_param(full, int, 0);
52
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070053static const char procname[] = "tcpprobe";
54
Stephen Hemminger662ad4f2007-07-11 19:43:52 -070055struct tcp_log {
56 ktime_t tstamp;
Daniel Borkmannf925d0a2013-08-21 19:48:00 +020057 union {
58 struct sockaddr raw;
59 struct sockaddr_in v4;
60 struct sockaddr_in6 v6;
61 } src, dst;
Stephen Hemminger662ad4f2007-07-11 19:43:52 -070062 u16 length;
63 u32 snd_nxt;
64 u32 snd_una;
65 u32 snd_wnd;
Daniel Borkmannb4c1c1d2013-08-21 19:47:58 +020066 u32 rcv_wnd;
Stephen Hemminger662ad4f2007-07-11 19:43:52 -070067 u32 snd_cwnd;
68 u32 ssthresh;
69 u32 srtt;
70};
71
72static struct {
Stephen Hemminger85795d62007-03-24 21:35:33 -070073 spinlock_t lock;
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070074 wait_queue_head_t wait;
Stephen Hemminger85795d62007-03-24 21:35:33 -070075 ktime_t start;
76 u32 lastcwnd;
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070077
Stephen Hemminger662ad4f2007-07-11 19:43:52 -070078 unsigned long head, tail;
79 struct tcp_log *log;
80} tcp_probe;
David S. Miller14a49e12007-06-05 00:19:24 -070081
Stephen Hemminger662ad4f2007-07-11 19:43:52 -070082
83static inline int tcp_probe_used(void)
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070084{
Stephen Hemmingerf81074f2010-01-25 15:47:50 -080085 return (tcp_probe.head - tcp_probe.tail) & (bufsize - 1);
Stephen Hemminger662ad4f2007-07-11 19:43:52 -070086}
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070087
Stephen Hemminger662ad4f2007-07-11 19:43:52 -070088static inline int tcp_probe_avail(void)
89{
Stephen Hemmingerf81074f2010-01-25 15:47:50 -080090 return bufsize - tcp_probe_used() - 1;
David S. Miller14a49e12007-06-05 00:19:24 -070091}
Stephen Hemmingera42e9d62006-06-05 17:30:32 -070092
Daniel Borkmannf925d0a2013-08-21 19:48:00 +020093#define tcp_probe_copy_fl_to_si4(inet, si4, mem) \
94 do { \
95 si4.sin_family = AF_INET; \
96 si4.sin_port = inet->inet_##mem##port; \
97 si4.sin_addr.s_addr = inet->inet_##mem##addr; \
98 } while (0) \
99
100#if IS_ENABLED(CONFIG_IPV6)
101#define tcp_probe_copy_fl_to_si6(inet, si6, mem) \
102 do { \
103 struct ipv6_pinfo *pi6 = inet->pinet6; \
104 si6.sin6_family = AF_INET6; \
105 si6.sin6_port = inet->inet_##mem##port; \
106 si6.sin6_addr = pi6->mem##addr; \
107 si6.sin6_flowinfo = 0; /* No need here. */ \
108 si6.sin6_scope_id = 0; /* No need here. */ \
109 } while (0)
110#else
111#define tcp_probe_copy_fl_to_si6(fl, si6, mem) \
112 do { \
113 memset(&si6, 0, sizeof(si6)); \
114 } while (0)
115#endif
116
Stephen Hemminger85795d62007-03-24 21:35:33 -0700117/*
118 * Hook inserted to be called before each receive packet.
119 * Note: arguments must match tcp_rcv_established()!
120 */
121static int jtcp_rcv_established(struct sock *sk, struct sk_buff *skb,
Daniel Borkmannd8cdeda2013-08-21 19:47:59 +0200122 const struct tcphdr *th, unsigned int len)
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700123{
124 const struct tcp_sock *tp = tcp_sk(sk);
125 const struct inet_sock *inet = inet_sk(sk);
126
Stephen Hemminger85795d62007-03-24 21:35:33 -0700127 /* Only update if port matches */
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000128 if ((port == 0 || ntohs(inet->inet_dport) == port ||
Joe Perches9d4fb272009-11-23 10:41:23 -0800129 ntohs(inet->inet_sport) == port) &&
130 (full || tp->snd_cwnd != tcp_probe.lastcwnd)) {
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700131
132 spin_lock(&tcp_probe.lock);
133 /* If log fills, just silently drop */
134 if (tcp_probe_avail() > 1) {
135 struct tcp_log *p = tcp_probe.log + tcp_probe.head;
136
137 p->tstamp = ktime_get();
Daniel Borkmannf925d0a2013-08-21 19:48:00 +0200138 switch (sk->sk_family) {
139 case AF_INET:
140 tcp_probe_copy_fl_to_si4(inet, p->src.v4, s);
141 tcp_probe_copy_fl_to_si4(inet, p->dst.v4, d);
142 break;
143 case AF_INET6:
144 tcp_probe_copy_fl_to_si6(inet, p->src.v6, s);
145 tcp_probe_copy_fl_to_si6(inet, p->dst.v6, d);
146 break;
147 default:
148 BUG();
149 }
150
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700151 p->length = skb->len;
152 p->snd_nxt = tp->snd_nxt;
153 p->snd_una = tp->snd_una;
154 p->snd_cwnd = tp->snd_cwnd;
155 p->snd_wnd = tp->snd_wnd;
Daniel Borkmannb4c1c1d2013-08-21 19:47:58 +0200156 p->rcv_wnd = tp->rcv_wnd;
Stephen Hemmingerb3b0b682007-07-14 18:57:19 -0700157 p->ssthresh = tcp_current_ssthresh(sk);
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700158 p->srtt = tp->srtt >> 3;
159
Stephen Hemmingerf81074f2010-01-25 15:47:50 -0800160 tcp_probe.head = (tcp_probe.head + 1) & (bufsize - 1);
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700161 }
162 tcp_probe.lastcwnd = tp->snd_cwnd;
163 spin_unlock(&tcp_probe.lock);
164
165 wake_up(&tcp_probe.wait);
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700166 }
167
168 jprobe_return();
169 return 0;
170}
171
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700172static struct jprobe tcp_jprobe = {
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -0700173 .kp = {
Stephen Hemminger85795d62007-03-24 21:35:33 -0700174 .symbol_name = "tcp_rcv_established",
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -0700175 },
Michael Ellerman9e367d82007-07-19 01:48:10 -0700176 .entry = jtcp_rcv_established,
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700177};
178
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000179static int tcpprobe_open(struct inode *inode, struct file *file)
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700180{
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700181 /* Reset (empty) log */
182 spin_lock_bh(&tcp_probe.lock);
183 tcp_probe.head = tcp_probe.tail = 0;
184 tcp_probe.start = ktime_get();
185 spin_unlock_bh(&tcp_probe.lock);
186
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700187 return 0;
188}
189
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700190static int tcpprobe_sprint(char *tbuf, int n)
191{
192 const struct tcp_log *p
Stephen Hemmingerf81074f2010-01-25 15:47:50 -0800193 = tcp_probe.log + tcp_probe.tail;
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700194 struct timespec tv
195 = ktime_to_timespec(ktime_sub(p->tstamp, tcp_probe.start));
196
Vasiliy Kulikovdda0b382010-11-14 07:06:08 +0000197 return scnprintf(tbuf, n,
Daniel Borkmannf925d0a2013-08-21 19:48:00 +0200198 "%lu.%09lu %pISpc %pISpc %d %#x %#x %u %u %u %u %u\n",
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700199 (unsigned long) tv.tv_sec,
200 (unsigned long) tv.tv_nsec,
Daniel Borkmannf925d0a2013-08-21 19:48:00 +0200201 &p->src, &p->dst, p->length, p->snd_nxt, p->snd_una,
Daniel Borkmannb4c1c1d2013-08-21 19:47:58 +0200202 p->snd_cwnd, p->ssthresh, p->snd_wnd, p->srtt, p->rcv_wnd);
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700203}
204
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700205static ssize_t tcpprobe_read(struct file *file, char __user *buf,
206 size_t len, loff_t *ppos)
207{
Roel Kluina2025b82009-03-13 16:05:14 -0700208 int error = 0;
209 size_t cnt = 0;
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700210
Roel Kluina2025b82009-03-13 16:05:14 -0700211 if (!buf)
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700212 return -EINVAL;
213
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700214 while (cnt < len) {
Vasiliy Kulikovdda0b382010-11-14 07:06:08 +0000215 char tbuf[164];
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700216 int width;
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700217
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700218 /* Wait for data in buffer */
219 error = wait_event_interruptible(tcp_probe.wait,
220 tcp_probe_used() > 0);
221 if (error)
222 break;
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700223
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700224 spin_lock_bh(&tcp_probe.lock);
225 if (tcp_probe.head == tcp_probe.tail) {
226 /* multiple readers race? */
227 spin_unlock_bh(&tcp_probe.lock);
228 continue;
229 }
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700230
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700231 width = tcpprobe_sprint(tbuf, sizeof(tbuf));
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700232
Tom Quetchenbach8d390ef2008-04-24 21:11:58 -0700233 if (cnt + width < len)
Stephen Hemmingerf81074f2010-01-25 15:47:50 -0800234 tcp_probe.tail = (tcp_probe.tail + 1) & (bufsize - 1);
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700235
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700236 spin_unlock_bh(&tcp_probe.lock);
237
238 /* if record greater than space available
239 return partial buffer (so far) */
Tom Quetchenbach8d390ef2008-04-24 21:11:58 -0700240 if (cnt + width >= len)
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700241 break;
242
Tom Quetchenbach8d390ef2008-04-24 21:11:58 -0700243 if (copy_to_user(buf + cnt, tbuf, width))
244 return -EFAULT;
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700245 cnt += width;
246 }
247
248 return cnt == 0 ? error : cnt;
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700249}
250
Arjan van de Ven9a321442007-02-12 00:55:35 -0800251static const struct file_operations tcpprobe_fops = {
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700252 .owner = THIS_MODULE,
253 .open = tcpprobe_open,
254 .read = tcpprobe_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200255 .llseek = noop_llseek,
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700256};
257
258static __init int tcpprobe_init(void)
259{
260 int ret = -ENOMEM;
261
Daniel Borkmannd8cdeda2013-08-21 19:47:59 +0200262 /* Warning: if the function signature of tcp_rcv_established,
263 * has been changed, you also have to change the signature of
264 * jtcp_rcv_established, otherwise you end up right here!
265 */
266 BUILD_BUG_ON(__same_type(tcp_rcv_established,
267 jtcp_rcv_established) == 0);
268
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700269 init_waitqueue_head(&tcp_probe.wait);
270 spin_lock_init(&tcp_probe.lock);
271
Stephen Hemmingerf81074f2010-01-25 15:47:50 -0800272 if (bufsize == 0)
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700273 return -EINVAL;
274
Stephen Hemmingerf81074f2010-01-25 15:47:50 -0800275 bufsize = roundup_pow_of_two(bufsize);
Milton Miller3d8ea1f2008-07-10 16:51:32 -0700276 tcp_probe.log = kcalloc(bufsize, sizeof(struct tcp_log), GFP_KERNEL);
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700277 if (!tcp_probe.log)
278 goto err0;
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700279
Gao fengd4beaa62013-02-18 01:34:54 +0000280 if (!proc_create(procname, S_IRUSR, init_net.proc_net, &tcpprobe_fops))
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700281 goto err0;
282
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700283 ret = register_jprobe(&tcp_jprobe);
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700284 if (ret)
285 goto err1;
286
Joe Perchesafd465032012-03-12 07:03:32 +0000287 pr_info("probe registered (port=%d) bufsize=%u\n", port, bufsize);
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700288 return 0;
289 err1:
Gao fengece31ff2013-02-18 01:34:56 +0000290 remove_proc_entry(procname, init_net.proc_net);
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700291 err0:
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700292 kfree(tcp_probe.log);
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700293 return ret;
294}
295module_init(tcpprobe_init);
296
297static __exit void tcpprobe_exit(void)
298{
Gao fengece31ff2013-02-18 01:34:56 +0000299 remove_proc_entry(procname, init_net.proc_net);
Stephen Hemminger662ad4f2007-07-11 19:43:52 -0700300 unregister_jprobe(&tcp_jprobe);
301 kfree(tcp_probe.log);
Stephen Hemmingera42e9d62006-06-05 17:30:32 -0700302}
303module_exit(tcpprobe_exit);