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, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/kernel.h>
23 #include <linux/kprobes.h>
24 #include <linux/socket.h>
25 #include <linux/tcp.h>
26 #include <linux/proc_fs.h>
27 #include <linux/module.h>
28 #include <linux/kfifo.h>
29 #include <linux/vmalloc.h>
33 MODULE_AUTHOR("Stephen Hemminger <shemminger@osdl.org>");
34 MODULE_DESCRIPTION("TCP cwnd snooper");
35 MODULE_LICENSE("GPL");
38 MODULE_PARM_DESC(port, "Port to match (0=all)");
39 module_param(port, int, 0);
41 static int bufsize = 64*1024;
42 MODULE_PARM_DESC(bufsize, "Log buffer size (default 64k)");
43 module_param(bufsize, int, 0);
45 static const char procname[] = "tcpprobe";
50 wait_queue_head_t wait;
51 struct timeval tstart;
54 static void printl(const char *fmt, ...)
62 do_gettimeofday(&now);
64 now.tv_sec -= tcpw.tstart.tv_sec;
65 now.tv_usec -= tcpw.tstart.tv_usec;
66 if (now.tv_usec < 0) {
68 now.tv_usec += 1000000;
71 len = sprintf(tbuf, "%lu.%06lu ",
72 (unsigned long) now.tv_sec,
73 (unsigned long) now.tv_usec);
74 len += vscnprintf(tbuf+len, sizeof(tbuf)-len, fmt, args);
77 kfifo_put(tcpw.fifo, tbuf, len);
81 static int jtcp_sendmsg(struct kiocb *iocb, struct sock *sk,
82 struct msghdr *msg, size_t size)
84 const struct tcp_sock *tp = tcp_sk(sk);
85 const struct inet_sock *inet = inet_sk(sk);
87 if (port == 0 || ntohs(inet->dport) == port ||
88 ntohs(inet->sport) == port) {
89 printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d %#x %#x %u %u %u\n",
90 NIPQUAD(inet->saddr), ntohs(inet->sport),
91 NIPQUAD(inet->daddr), ntohs(inet->dport),
92 size, tp->snd_nxt, tp->snd_una,
93 tp->snd_cwnd, tcp_current_ssthresh(sk),
101 static struct jprobe tcp_send_probe = {
102 .kp = { .addr = (kprobe_opcode_t *) &tcp_sendmsg, },
103 .entry = (kprobe_opcode_t *) &jtcp_sendmsg,
107 static int tcpprobe_open(struct inode * inode, struct file * file)
109 kfifo_reset(tcpw.fifo);
110 do_gettimeofday(&tcpw.tstart);
114 static ssize_t tcpprobe_read(struct file *file, char __user *buf,
115 size_t len, loff_t *ppos)
117 int error = 0, cnt = 0;
130 error = wait_event_interruptible(tcpw.wait,
131 __kfifo_len(tcpw.fifo) != 0);
135 cnt = kfifo_get(tcpw.fifo, tbuf, len);
136 error = copy_to_user(buf, tbuf, cnt);
140 return error ? error : cnt;
143 static struct file_operations tcpprobe_fops = {
144 .owner = THIS_MODULE,
145 .open = tcpprobe_open,
146 .read = tcpprobe_read,
149 static __init int tcpprobe_init(void)
153 init_waitqueue_head(&tcpw.wait);
154 spin_lock_init(&tcpw.lock);
155 tcpw.fifo = kfifo_alloc(bufsize, GFP_KERNEL, &tcpw.lock);
157 if (!proc_net_fops_create(procname, S_IRUSR, &tcpprobe_fops))
160 ret = register_jprobe(&tcp_send_probe);
164 pr_info("TCP watch registered (port=%d)\n", port);
167 proc_net_remove(procname);
169 kfifo_free(tcpw.fifo);
172 module_init(tcpprobe_init);
174 static __exit void tcpprobe_exit(void)
176 kfifo_free(tcpw.fifo);
177 proc_net_remove(procname);
178 unregister_jprobe(&tcp_send_probe);
181 module_exit(tcpprobe_exit);