[SPARC64]: Do not include compat.h from asm-sparc64/signal.h any more.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / netfilter / xt_MARK.c
blobc6e860a7114f74dae300ab94857108d44dfd93e1
1 /* This is a module which is used for setting the NFMARK field of an skb. */
3 /* (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
10 #include <linux/module.h>
11 #include <linux/skbuff.h>
12 #include <linux/ip.h>
13 #include <net/checksum.h>
15 #include <linux/netfilter/x_tables.h>
16 #include <linux/netfilter/xt_MARK.h>
18 MODULE_LICENSE("GPL");
19 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
20 MODULE_DESCRIPTION("ip[6]tables MARK modification module");
21 MODULE_ALIAS("ipt_MARK");
22 MODULE_ALIAS("ip6t_MARK");
24 static unsigned int
25 target_v0(struct sk_buff **pskb,
26 const struct net_device *in,
27 const struct net_device *out,
28 unsigned int hooknum,
29 const struct xt_target *target,
30 const void *targinfo)
32 const struct xt_mark_target_info *markinfo = targinfo;
34 if((*pskb)->nfmark != markinfo->mark)
35 (*pskb)->nfmark = markinfo->mark;
37 return XT_CONTINUE;
40 static unsigned int
41 target_v1(struct sk_buff **pskb,
42 const struct net_device *in,
43 const struct net_device *out,
44 unsigned int hooknum,
45 const struct xt_target *target,
46 const void *targinfo)
48 const struct xt_mark_target_info_v1 *markinfo = targinfo;
49 int mark = 0;
51 switch (markinfo->mode) {
52 case XT_MARK_SET:
53 mark = markinfo->mark;
54 break;
56 case XT_MARK_AND:
57 mark = (*pskb)->nfmark & markinfo->mark;
58 break;
60 case XT_MARK_OR:
61 mark = (*pskb)->nfmark | markinfo->mark;
62 break;
65 if((*pskb)->nfmark != mark)
66 (*pskb)->nfmark = mark;
68 return XT_CONTINUE;
72 static int
73 checkentry_v0(const char *tablename,
74 const void *entry,
75 const struct xt_target *target,
76 void *targinfo,
77 unsigned int hook_mask)
79 struct xt_mark_target_info *markinfo = targinfo;
81 if (markinfo->mark > 0xffffffff) {
82 printk(KERN_WARNING "MARK: Only supports 32bit wide mark\n");
83 return 0;
85 return 1;
88 static int
89 checkentry_v1(const char *tablename,
90 const void *entry,
91 const struct xt_target *target,
92 void *targinfo,
93 unsigned int hook_mask)
95 struct xt_mark_target_info_v1 *markinfo = targinfo;
97 if (markinfo->mode != XT_MARK_SET
98 && markinfo->mode != XT_MARK_AND
99 && markinfo->mode != XT_MARK_OR) {
100 printk(KERN_WARNING "MARK: unknown mode %u\n",
101 markinfo->mode);
102 return 0;
104 if (markinfo->mark > 0xffffffff) {
105 printk(KERN_WARNING "MARK: Only supports 32bit wide mark\n");
106 return 0;
108 return 1;
111 #ifdef CONFIG_COMPAT
112 struct compat_xt_mark_target_info_v1 {
113 compat_ulong_t mark;
114 u_int8_t mode;
115 u_int8_t __pad1;
116 u_int16_t __pad2;
119 static void compat_from_user_v1(void *dst, void *src)
121 struct compat_xt_mark_target_info_v1 *cm = src;
122 struct xt_mark_target_info_v1 m = {
123 .mark = cm->mark,
124 .mode = cm->mode,
126 memcpy(dst, &m, sizeof(m));
129 static int compat_to_user_v1(void __user *dst, void *src)
131 struct xt_mark_target_info_v1 *m = src;
132 struct compat_xt_mark_target_info_v1 cm = {
133 .mark = m->mark,
134 .mode = m->mode,
136 return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
138 #endif /* CONFIG_COMPAT */
140 static struct xt_target xt_mark_target[] = {
142 .name = "MARK",
143 .family = AF_INET,
144 .revision = 0,
145 .checkentry = checkentry_v0,
146 .target = target_v0,
147 .targetsize = sizeof(struct xt_mark_target_info),
148 .table = "mangle",
149 .me = THIS_MODULE,
152 .name = "MARK",
153 .family = AF_INET,
154 .revision = 1,
155 .checkentry = checkentry_v1,
156 .target = target_v1,
157 .targetsize = sizeof(struct xt_mark_target_info_v1),
158 #ifdef CONFIG_COMPAT
159 .compatsize = sizeof(struct compat_xt_mark_target_info_v1),
160 .compat_from_user = compat_from_user_v1,
161 .compat_to_user = compat_to_user_v1,
162 #endif
163 .table = "mangle",
164 .me = THIS_MODULE,
167 .name = "MARK",
168 .family = AF_INET6,
169 .revision = 0,
170 .checkentry = checkentry_v0,
171 .target = target_v0,
172 .targetsize = sizeof(struct xt_mark_target_info),
173 .table = "mangle",
174 .me = THIS_MODULE,
178 static int __init xt_mark_init(void)
180 return xt_register_targets(xt_mark_target, ARRAY_SIZE(xt_mark_target));
183 static void __exit xt_mark_fini(void)
185 xt_unregister_targets(xt_mark_target, ARRAY_SIZE(xt_mark_target));
188 module_init(xt_mark_init);
189 module_exit(xt_mark_fini);