免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3882 | 回复: 4
打印 上一主题 下一主题

xt_MARK源码请教 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-08-06 12:54 |只看该作者 |倒序浏览
内核版本2.6.22.19,iptables1.3.8
  1. /* This is a module which is used for setting the NFMARK field of an skb. */

  2. /* (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */

  8. #include <linux/module.h>
  9. #include <linux/skbuff.h>
  10. #include <linux/ip.h>
  11. #include <net/checksum.h>

  12. #include <linux/netfilter/x_tables.h>
  13. #include <linux/netfilter/xt_MARK.h>

  14. MODULE_LICENSE("GPL");
  15. MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
  16. MODULE_DESCRIPTION("ip[6]tables MARK modification module");
  17. MODULE_ALIAS("ipt_MARK");
  18. MODULE_ALIAS("ip6t_MARK");

  19. static unsigned int
  20. target_v0(struct sk_buff **pskb,
  21.           const struct net_device *in,
  22.           const struct net_device *out,
  23.           unsigned int hooknum,
  24.           const struct xt_target *target,
  25.           const void *targinfo)
  26. {
  27.         const struct xt_mark_target_info *markinfo = targinfo;

  28.         (*pskb)->mark = markinfo->mark;
  29.         return XT_CONTINUE;
  30. }

  31. static unsigned int
  32. target_v1(struct sk_buff **pskb,
  33.           const struct net_device *in,
  34.           const struct net_device *out,
  35.           unsigned int hooknum,
  36.           const struct xt_target *target,
  37.           const void *targinfo)
  38. {
  39.         const struct xt_mark_target_info_v1 *markinfo = targinfo;
  40.         int mark = 0;

  41.         switch (markinfo->mode) {
  42.         case XT_MARK_SET:
  43.                 mark = markinfo->mark;
  44.                 break;

  45.         case XT_MARK_AND:
  46.                 mark = (*pskb)->mark & markinfo->mark;
  47.                 break;

  48.         case XT_MARK_OR:
  49.                 mark = (*pskb)->mark | markinfo->mark;
  50.                 break;
  51.         }

  52.         (*pskb)->mark = mark;
  53.         return XT_CONTINUE;
  54. }


  55. static int
  56. checkentry_v0(const char *tablename,
  57.               const void *entry,
  58.               const struct xt_target *target,
  59.               void *targinfo,
  60.               unsigned int hook_mask)
  61. {
  62.         struct xt_mark_target_info *markinfo = targinfo;

  63.         if (markinfo->mark > 0xffffffff) {
  64.                 printk(KERN_WARNING "MARK: Only supports 32bit wide mark\n");
  65.                 return 0;
  66.         }
  67.         return 1;
  68. }

  69. static int
  70. checkentry_v1(const char *tablename,
  71.               const void *entry,
  72.               const struct xt_target *target,
  73.               void *targinfo,
  74.               unsigned int hook_mask)
  75. {
  76.         struct xt_mark_target_info_v1 *markinfo = targinfo;

  77.         if (markinfo->mode != XT_MARK_SET
  78.             && markinfo->mode != XT_MARK_AND
  79.             && markinfo->mode != XT_MARK_OR) {
  80.                 printk(KERN_WARNING "MARK: unknown mode %u\n",
  81.                        markinfo->mode);
  82.                 return 0;
  83.         }
  84.         if (markinfo->mark > 0xffffffff) {
  85.                 printk(KERN_WARNING "MARK: Only supports 32bit wide mark\n");
  86.                 return 0;
  87.         }
  88.         return 1;
  89. }

  90. #ifdef CONFIG_COMPAT
  91. struct compat_xt_mark_target_info_v1 {
  92.         compat_ulong_t        mark;
  93.         u_int8_t        mode;
  94.         u_int8_t        __pad1;
  95.         u_int16_t        __pad2;
  96. };

  97. static void compat_from_user_v1(void *dst, void *src)
  98. {
  99.         struct compat_xt_mark_target_info_v1 *cm = src;
  100.         struct xt_mark_target_info_v1 m = {
  101.                 .mark        = cm->mark,
  102.                 .mode        = cm->mode,
  103.         };
  104.         memcpy(dst, &m, sizeof(m));
  105. }

  106. static int compat_to_user_v1(void __user *dst, void *src)
  107. {
  108.         struct xt_mark_target_info_v1 *m = src;
  109.         struct compat_xt_mark_target_info_v1 cm = {
  110.                 .mark        = m->mark,
  111.                 .mode        = m->mode,
  112.         };
  113.         return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
  114. }
  115. #endif /* CONFIG_COMPAT */

  116. static struct xt_target xt_mark_target[] = {
  117.         {
  118.                 .name                = "MARK",
  119.                 .family                = AF_INET,
  120.                 .revision        = 0,
  121.                 .checkentry        = checkentry_v0,
  122.                 .target                = target_v0,
  123.                 .targetsize        = sizeof(struct xt_mark_target_info),
  124.                 .table                = "mangle",
  125.                 .me                = THIS_MODULE,
  126.         },
  127.         {
  128.                 .name                = "MARK",
  129.                 .family                = AF_INET,
  130.                 .revision        = 1,
  131.                 .checkentry        = checkentry_v1,
  132.                 .target                = target_v1,
  133.                 .targetsize        = sizeof(struct xt_mark_target_info_v1),
  134. #ifdef CONFIG_COMPAT
  135.                 .compatsize        = sizeof(struct compat_xt_mark_target_info_v1),
  136.                 .compat_from_user = compat_from_user_v1,
  137.                 .compat_to_user        = compat_to_user_v1,
  138. #endif
  139.                 .table                = "mangle",
  140.                 .me                = THIS_MODULE,
  141.         },
  142.         {
  143.                 .name                = "MARK",
  144.                 .family                = AF_INET6,
  145.                 .revision        = 0,
  146.                 .checkentry        = checkentry_v0,
  147.                 .target                = target_v0,
  148.                 .targetsize        = sizeof(struct xt_mark_target_info),
  149.                 .table                = "mangle",
  150.                 .me                = THIS_MODULE,
  151.         },
  152. };

  153. static int __init xt_mark_init(void)
  154. {
  155.         return xt_register_targets(xt_mark_target, ARRAY_SIZE(xt_mark_target));
  156. }

  157. static void __exit xt_mark_fini(void)
  158. {
  159.         xt_unregister_targets(xt_mark_target, ARRAY_SIZE(xt_mark_target));
  160. }

  161. module_init(xt_mark_init);
  162. module_exit(xt_mark_fini);
复制代码
特向高人请教不明白之处:
1.target_v0和target_v1,怎么有两个版本,其它模块都只有一个的啊?
2.#ifdef CONFIG_COMPAT
这个CONFIG_COMPAT是什么东西来的

论坛徽章:
59
2015七夕节徽章
日期:2015-08-24 11:17:25ChinaUnix专家徽章
日期:2015-07-20 09:19:30每周论坛发贴之星
日期:2015-07-20 09:19:42ChinaUnix元老
日期:2015-07-20 11:04:38荣誉版主
日期:2015-07-20 11:05:19巳蛇
日期:2015-07-20 11:05:26CU十二周年纪念徽章
日期:2015-07-20 11:05:27IT运维版块每日发帖之星
日期:2015-07-20 11:05:34操作系统版块每日发帖之星
日期:2015-07-20 11:05:36程序设计版块每日发帖之星
日期:2015-07-20 11:05:40数据库技术版块每日发帖之星
日期:2015-07-20 11:05:432015年辞旧岁徽章
日期:2015-07-20 11:05:44
2 [报告]
发表于 2010-08-06 13:29 |只看该作者
建议到程序区问问。感觉是配置时使用的一个控制参数吧。

论坛徽章:
0
3 [报告]
发表于 2010-08-06 13:34 |只看该作者
关于 COMPAT 的文章这里提到了一点点
http://blog.chinaunix.net/u1/38994/showart_2246878.html

至于为什么同时有两个版本,可能是为了照顾不同用户态程序,v1 比 v0 功能更强大些,但为了保持兼容性,保留了 v0

论坛徽章:
0
4 [报告]
发表于 2010-08-06 21:52 |只看该作者
回复 3# platinum


    谢谢iptables教父的解答

论坛徽章:
0
5 [报告]
发表于 2010-08-06 22:25 |只看该作者
回复  platinum


    谢谢iptables教父的解答
zhoutao0712 发表于 2010-08-06 21:52


兄弟此言太过了,我可受不起
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP