2 * dccp_probe - Observe the DCCP flow with kprobes.
4 * The idea for this came from Werner Almesberger's umlsim
5 * Copyright (C) 2004, Stephen Hemminger <shemminger@osdl.org>
7 * Modified for DCCP from Stephen Hemminger's code
8 * Copyright (C) 2006, Ian McDonald <ian.mcdonald@jandi.co.nz>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include <linux/kernel.h>
26 #include <linux/kprobes.h>
27 #include <linux/socket.h>
28 #include <linux/dccp.h>
29 #include <linux/proc_fs.h>
30 #include <linux/module.h>
31 #include <linux/kfifo.h>
32 #include <linux/vmalloc.h>
36 #include "ccids/ccid3.h"
40 static int bufsize = 64 * 1024;
42 static const char procname[] = "dccpprobe";
47 wait_queue_head_t wait;
48 struct timeval tstart;
51 static void printl(const char *fmt, ...)
59 do_gettimeofday(&now);
61 now.tv_sec -= dccpw.tstart.tv_sec;
62 now.tv_usec -= dccpw.tstart.tv_usec;
63 if (now.tv_usec < 0) {
65 now.tv_usec += 1000000;
68 len = sprintf(tbuf, "%lu.%06lu ",
69 (unsigned long) now.tv_sec,
70 (unsigned long) now.tv_usec);
71 len += vscnprintf(tbuf+len, sizeof(tbuf)-len, fmt, args);
74 kfifo_put(dccpw.fifo, tbuf, len);
78 static int jdccp_sendmsg(struct kiocb *iocb, struct sock *sk,
79 struct msghdr *msg, size_t size)
81 const struct dccp_minisock *dmsk = dccp_msk(sk);
82 const struct inet_sock *inet = inet_sk(sk);
83 const struct ccid3_hc_tx_sock *hctx;
85 if (dmsk->dccpms_tx_ccid == DCCPC_CCID3)
86 hctx = ccid3_hc_tx_sk(sk);
90 if (port == 0 || ntohs(inet->dport) == port ||
91 ntohs(inet->sport) == port) {
93 printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d %d %d %d %u "
95 NIPQUAD(inet->saddr), ntohs(inet->sport),
96 NIPQUAD(inet->daddr), ntohs(inet->dport), size,
97 hctx->ccid3hctx_s, hctx->ccid3hctx_rtt,
98 hctx->ccid3hctx_p, hctx->ccid3hctx_x_calc,
99 hctx->ccid3hctx_x_recv >> 6,
100 hctx->ccid3hctx_x >> 6, hctx->ccid3hctx_t_ipi);
102 printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d\n",
103 NIPQUAD(inet->saddr), ntohs(inet->sport),
104 NIPQUAD(inet->daddr), ntohs(inet->dport), size);
111 static struct jprobe dccp_send_probe = {
113 .symbol_name = "dccp_sendmsg",
115 .entry = JPROBE_ENTRY(jdccp_sendmsg),
118 static int dccpprobe_open(struct inode *inode, struct file *file)
120 kfifo_reset(dccpw.fifo);
121 do_gettimeofday(&dccpw.tstart);
125 static ssize_t dccpprobe_read(struct file *file, char __user *buf,
126 size_t len, loff_t *ppos)
128 int error = 0, cnt = 0;
141 error = wait_event_interruptible(dccpw.wait,
142 __kfifo_len(dccpw.fifo) != 0);
146 cnt = kfifo_get(dccpw.fifo, tbuf, len);
147 error = copy_to_user(buf, tbuf, cnt);
152 return error ? error : cnt;
155 static const struct file_operations dccpprobe_fops = {
156 .owner = THIS_MODULE,
157 .open = dccpprobe_open,
158 .read = dccpprobe_read,
161 static __init int dccpprobe_init(void)
165 init_waitqueue_head(&dccpw.wait);
166 spin_lock_init(&dccpw.lock);
167 dccpw.fifo = kfifo_alloc(bufsize, GFP_KERNEL, &dccpw.lock);
168 if (IS_ERR(dccpw.fifo))
169 return PTR_ERR(dccpw.fifo);
171 if (!proc_net_fops_create(procname, S_IRUSR, &dccpprobe_fops))
174 ret = register_jprobe(&dccp_send_probe);
178 pr_info("DCCP watch registered (port=%d)\n", port);
181 proc_net_remove(procname);
183 kfifo_free(dccpw.fifo);
186 module_init(dccpprobe_init);
188 static __exit void dccpprobe_exit(void)
190 kfifo_free(dccpw.fifo);
191 proc_net_remove(procname);
192 unregister_jprobe(&dccp_send_probe);
195 module_exit(dccpprobe_exit);
197 MODULE_PARM_DESC(port, "Port to match (0=all)");
198 module_param(port, int, 0);
200 MODULE_PARM_DESC(bufsize, "Log buffer size (default 64k)");
201 module_param(bufsize, int, 0);
203 MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>");
204 MODULE_DESCRIPTION("DCCP snooper");
205 MODULE_LICENSE("GPL");