probe.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. /*
  2. * dccp_probe - Observe the DCCP 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. * Modified for DCCP from Stephen Hemminger's code
  8. * Copyright (C) 2006, Ian McDonald <ian.mcdonald@jandi.co.nz>
  9. *
  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.
  14. *
  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.
  19. *
  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.
  23. */
  24. #include <linux/kernel.h>
  25. #include <linux/kprobes.h>
  26. #include <linux/socket.h>
  27. #include <linux/dccp.h>
  28. #include <linux/proc_fs.h>
  29. #include <linux/module.h>
  30. #include <linux/kfifo.h>
  31. #include <linux/vmalloc.h>
  32. #include <net/net_namespace.h>
  33. #include "dccp.h"
  34. #include "ccid.h"
  35. #include "ccids/ccid3.h"
  36. static int port;
  37. static int bufsize = 64 * 1024;
  38. static const char procname[] = "dccpprobe";
  39. struct {
  40. struct kfifo *fifo;
  41. spinlock_t lock;
  42. wait_queue_head_t wait;
  43. struct timeval tstart;
  44. } dccpw;
  45. static void printl(const char *fmt, ...)
  46. {
  47. va_list args;
  48. int len;
  49. struct timeval now;
  50. char tbuf[256];
  51. va_start(args, fmt);
  52. do_gettimeofday(&now);
  53. now.tv_sec -= dccpw.tstart.tv_sec;
  54. now.tv_usec -= dccpw.tstart.tv_usec;
  55. if (now.tv_usec < 0) {
  56. --now.tv_sec;
  57. now.tv_usec += 1000000;
  58. }
  59. len = sprintf(tbuf, "%lu.%06lu ",
  60. (unsigned long) now.tv_sec,
  61. (unsigned long) now.tv_usec);
  62. len += vscnprintf(tbuf+len, sizeof(tbuf)-len, fmt, args);
  63. va_end(args);
  64. kfifo_put(dccpw.fifo, tbuf, len);
  65. wake_up(&dccpw.wait);
  66. }
  67. static int jdccp_sendmsg(struct kiocb *iocb, struct sock *sk,
  68. struct msghdr *msg, size_t size)
  69. {
  70. const struct dccp_minisock *dmsk = dccp_msk(sk);
  71. const struct inet_sock *inet = inet_sk(sk);
  72. const struct ccid3_hc_tx_sock *hctx;
  73. if (dmsk->dccpms_tx_ccid == DCCPC_CCID3)
  74. hctx = ccid3_hc_tx_sk(sk);
  75. else
  76. hctx = NULL;
  77. if (port == 0 || ntohs(inet->dport) == port ||
  78. ntohs(inet->sport) == port) {
  79. if (hctx)
  80. printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d %d %d %d %u "
  81. "%llu %llu %d\n",
  82. NIPQUAD(inet->saddr), ntohs(inet->sport),
  83. NIPQUAD(inet->daddr), ntohs(inet->dport), size,
  84. hctx->ccid3hctx_s, hctx->ccid3hctx_rtt,
  85. hctx->ccid3hctx_p, hctx->ccid3hctx_x_calc,
  86. hctx->ccid3hctx_x_recv >> 6,
  87. hctx->ccid3hctx_x >> 6, hctx->ccid3hctx_t_ipi);
  88. else
  89. printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d\n",
  90. NIPQUAD(inet->saddr), ntohs(inet->sport),
  91. NIPQUAD(inet->daddr), ntohs(inet->dport), size);
  92. }
  93. jprobe_return();
  94. return 0;
  95. }
  96. static struct jprobe dccp_send_probe = {
  97. .kp = {
  98. .symbol_name = "dccp_sendmsg",
  99. },
  100. .entry = jdccp_sendmsg,
  101. };
  102. static int dccpprobe_open(struct inode *inode, struct file *file)
  103. {
  104. kfifo_reset(dccpw.fifo);
  105. do_gettimeofday(&dccpw.tstart);
  106. return 0;
  107. }
  108. static ssize_t dccpprobe_read(struct file *file, char __user *buf,
  109. size_t len, loff_t *ppos)
  110. {
  111. int error = 0, cnt = 0;
  112. unsigned char *tbuf;
  113. if (!buf)
  114. return -EINVAL;
  115. if (len == 0)
  116. return 0;
  117. tbuf = vmalloc(len);
  118. if (!tbuf)
  119. return -ENOMEM;
  120. error = wait_event_interruptible(dccpw.wait,
  121. __kfifo_len(dccpw.fifo) != 0);
  122. if (error)
  123. goto out_free;
  124. cnt = kfifo_get(dccpw.fifo, tbuf, len);
  125. error = copy_to_user(buf, tbuf, cnt);
  126. out_free:
  127. vfree(tbuf);
  128. return error ? error : cnt;
  129. }
  130. static const struct file_operations dccpprobe_fops = {
  131. .owner = THIS_MODULE,
  132. .open = dccpprobe_open,
  133. .read = dccpprobe_read,
  134. };
  135. static __init int dccpprobe_init(void)
  136. {
  137. int ret = -ENOMEM;
  138. init_waitqueue_head(&dccpw.wait);
  139. spin_lock_init(&dccpw.lock);
  140. dccpw.fifo = kfifo_alloc(bufsize, GFP_KERNEL, &dccpw.lock);
  141. if (IS_ERR(dccpw.fifo))
  142. return PTR_ERR(dccpw.fifo);
  143. if (!proc_net_fops_create(&init_net, procname, S_IRUSR, &dccpprobe_fops))
  144. goto err0;
  145. ret = register_jprobe(&dccp_send_probe);
  146. if (ret)
  147. goto err1;
  148. pr_info("DCCP watch registered (port=%d)\n", port);
  149. return 0;
  150. err1:
  151. proc_net_remove(&init_net, procname);
  152. err0:
  153. kfifo_free(dccpw.fifo);
  154. return ret;
  155. }
  156. module_init(dccpprobe_init);
  157. static __exit void dccpprobe_exit(void)
  158. {
  159. kfifo_free(dccpw.fifo);
  160. proc_net_remove(&init_net, procname);
  161. unregister_jprobe(&dccp_send_probe);
  162. }
  163. module_exit(dccpprobe_exit);
  164. MODULE_PARM_DESC(port, "Port to match (0=all)");
  165. module_param(port, int, 0);
  166. MODULE_PARM_DESC(bufsize, "Log buffer size (default 64k)");
  167. module_param(bufsize, int, 0);
  168. MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>");
  169. MODULE_DESCRIPTION("DCCP snooper");
  170. MODULE_LICENSE("GPL");