ipt_ttl.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* IP tables module for matching the value of the TTL 
  2.  *
  3.  * ipt_ttl.c,v 1.5 2000/11/13 11:16:08 laforge Exp
  4.  *
  5.  * (C) 2000,2001 by Harald Welte <laforge@gnumonks.org>
  6.  *
  7.  * This software is distributed under the terms  GNU GPL
  8.  */
  9. #include <linux/module.h>
  10. #include <linux/skbuff.h>
  11. #include <linux/netfilter_ipv4/ipt_ttl.h>
  12. #include <linux/netfilter_ipv4/ip_tables.h>
  13. MODULE_AUTHOR("Harald Welte <laforge@gnumonks.org>");
  14. MODULE_DESCRIPTION("IP tables TTL matching module");
  15. MODULE_LICENSE("GPL");
  16. static int match(const struct sk_buff *skb, const struct net_device *in,
  17.  const struct net_device *out, const void *matchinfo,
  18.  int offset, const void *hdr, u_int16_t datalen,
  19.  int *hotdrop)
  20. {
  21. const struct ipt_ttl_info *info = matchinfo;
  22. const struct iphdr *iph = skb->nh.iph;
  23. switch (info->mode) {
  24. case IPT_TTL_EQ:
  25. return (iph->ttl == info->ttl);
  26. break;
  27. case IPT_TTL_NE:
  28. return (!(iph->ttl == info->ttl));
  29. break;
  30. case IPT_TTL_LT:
  31. return (iph->ttl < info->ttl);
  32. break;
  33. case IPT_TTL_GT:
  34. return (iph->ttl > info->ttl);
  35. break;
  36. default:
  37. printk(KERN_WARNING "ipt_ttl: unknown mode %dn", 
  38. info->mode);
  39. return 0;
  40. }
  41. return 0;
  42. }
  43. static int checkentry(const char *tablename, const struct ipt_ip *ip,
  44.       void *matchinfo, unsigned int matchsize,
  45.       unsigned int hook_mask)
  46. {
  47. if (matchsize != IPT_ALIGN(sizeof(struct ipt_ttl_info)))
  48. return 0;
  49. return 1;
  50. }
  51. static struct ipt_match ttl_match = { { NULL, NULL }, "ttl", &match,
  52. &checkentry, NULL, THIS_MODULE };
  53. static int __init init(void)
  54. {
  55. return ipt_register_match(&ttl_match);
  56. }
  57. static void __exit fini(void)
  58. {
  59. ipt_unregister_match(&ttl_match);
  60. }
  61. module_init(init);
  62. module_exit(fini);