probe.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. static struct {
  40. struct kfifo *fifo;
  41. spinlock_t lock;
  42. wait_queue_head_t wait;
  43. ktime_t start;
  44. } dccpw;
  45. static void jdccp_write_xmit(struct sock *sk)
  46. {
  47. const struct inet_sock *inet = inet_sk(sk);
  48. struct ccid3_hc_tx_sock *hctx = NULL;
  49. struct timespec tv;
  50. char buf[256];
  51. int len, ccid = ccid_get_current_tx_ccid(dccp_sk(sk));
  52. if (ccid == DCCPC_CCID3)
  53. hctx = ccid3_hc_tx_sk(sk);
  54. if (!port || ntohs(inet->dport) == port || ntohs(inet->sport) == port) {
  55. tv = ktime_to_timespec(ktime_sub(ktime_get(), dccpw.start));
  56. len = sprintf(buf, "%lu.%09lu %d.%d.%d.%d:%u %d.%d.%d.%d:%u %d",
  57. (unsigned long)tv.tv_sec,
  58. (unsigned long)tv.tv_nsec,
  59. NIPQUAD(inet->saddr), ntohs(inet->sport),
  60. NIPQUAD(inet->daddr), ntohs(inet->dport), ccid);
  61. if (hctx)
  62. len += sprintf(buf + len, " %d %d %d %u %u %u %d",
  63. hctx->s, hctx->rtt, hctx->p, hctx->x_calc,
  64. (unsigned)(hctx->x_recv >> 6),
  65. (unsigned)(hctx->x >> 6), hctx->t_ipi);
  66. len += sprintf(buf + len, "\n");
  67. kfifo_put(dccpw.fifo, buf, len);
  68. wake_up(&dccpw.wait);
  69. }
  70. jprobe_return();
  71. }
  72. static struct jprobe dccp_send_probe = {
  73. .kp = {
  74. .symbol_name = "dccp_write_xmit",
  75. },
  76. .entry = jdccp_write_xmit,
  77. };
  78. static int dccpprobe_open(struct inode *inode, struct file *file)
  79. {
  80. kfifo_reset(dccpw.fifo);
  81. dccpw.start = ktime_get();
  82. return 0;
  83. }
  84. static ssize_t dccpprobe_read(struct file *file, char __user *buf,
  85. size_t len, loff_t *ppos)
  86. {
  87. int error = 0, cnt = 0;
  88. unsigned char *tbuf;
  89. if (!buf)
  90. return -EINVAL;
  91. if (len == 0)
  92. return 0;
  93. tbuf = vmalloc(len);
  94. if (!tbuf)
  95. return -ENOMEM;
  96. error = wait_event_interruptible(dccpw.wait,
  97. __kfifo_len(dccpw.fifo) != 0);
  98. if (error)
  99. goto out_free;
  100. cnt = kfifo_get(dccpw.fifo, tbuf, len);
  101. error = copy_to_user(buf, tbuf, cnt) ? -EFAULT : 0;
  102. out_free:
  103. vfree(tbuf);
  104. return error ? error : cnt;
  105. }
  106. static const struct file_operations dccpprobe_fops = {
  107. .owner = THIS_MODULE,
  108. .open = dccpprobe_open,
  109. .read = dccpprobe_read,
  110. };
  111. static __init int dccpprobe_init(void)
  112. {
  113. int ret = -ENOMEM;
  114. init_waitqueue_head(&dccpw.wait);
  115. spin_lock_init(&dccpw.lock);
  116. dccpw.fifo = kfifo_alloc(bufsize, GFP_KERNEL, &dccpw.lock);
  117. if (IS_ERR(dccpw.fifo))
  118. return PTR_ERR(dccpw.fifo);
  119. if (!proc_net_fops_create(&init_net, procname, S_IRUSR, &dccpprobe_fops))
  120. goto err0;
  121. ret = register_jprobe(&dccp_send_probe);
  122. if (ret)
  123. goto err1;
  124. pr_info("DCCP watch registered (port=%d)\n", port);
  125. return 0;
  126. err1:
  127. proc_net_remove(&init_net, procname);
  128. err0:
  129. kfifo_free(dccpw.fifo);
  130. return ret;
  131. }
  132. module_init(dccpprobe_init);
  133. static __exit void dccpprobe_exit(void)
  134. {
  135. kfifo_free(dccpw.fifo);
  136. proc_net_remove(&init_net, procname);
  137. unregister_jprobe(&dccp_send_probe);
  138. }
  139. module_exit(dccpprobe_exit);
  140. MODULE_PARM_DESC(port, "Port to match (0=all)");
  141. module_param(port, int, 0);
  142. MODULE_PARM_DESC(bufsize, "Log buffer size (default 64k)");
  143. module_param(bufsize, int, 0);
  144. MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>");
  145. MODULE_DESCRIPTION("DCCP snooper");
  146. MODULE_LICENSE("GPL");