[JFFS2] Use a single config option for write buffer support
[linux-2.6.git] / net / ipv4 / netfilter / ipt_MARK.c
blob33c6f9b63b8d7af0d0fa36c74158b0fc633f2e37
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_ipv4/ip_tables.h>
16 #include <linux/netfilter_ipv4/ipt_MARK.h>
18 MODULE_LICENSE("GPL");
19 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
20 MODULE_DESCRIPTION("iptables MARK modification module");
22 static unsigned int
23 target_v0(struct sk_buff **pskb,
24 const struct net_device *in,
25 const struct net_device *out,
26 unsigned int hooknum,
27 const void *targinfo,
28 void *userinfo)
30 const struct ipt_mark_target_info *markinfo = targinfo;
32 if((*pskb)->nfmark != markinfo->mark) {
33 (*pskb)->nfmark = markinfo->mark;
34 (*pskb)->nfcache |= NFC_ALTERED;
36 return IPT_CONTINUE;
39 static unsigned int
40 target_v1(struct sk_buff **pskb,
41 const struct net_device *in,
42 const struct net_device *out,
43 unsigned int hooknum,
44 const void *targinfo,
45 void *userinfo)
47 const struct ipt_mark_target_info_v1 *markinfo = targinfo;
48 int mark = 0;
50 switch (markinfo->mode) {
51 case IPT_MARK_SET:
52 mark = markinfo->mark;
53 break;
55 case IPT_MARK_AND:
56 mark = (*pskb)->nfmark & markinfo->mark;
57 break;
59 case IPT_MARK_OR:
60 mark = (*pskb)->nfmark | markinfo->mark;
61 break;
64 if((*pskb)->nfmark != mark) {
65 (*pskb)->nfmark = mark;
66 (*pskb)->nfcache |= NFC_ALTERED;
68 return IPT_CONTINUE;
72 static int
73 checkentry_v0(const char *tablename,
74 const struct ipt_entry *e,
75 void *targinfo,
76 unsigned int targinfosize,
77 unsigned int hook_mask)
79 if (targinfosize != IPT_ALIGN(sizeof(struct ipt_mark_target_info))) {
80 printk(KERN_WARNING "MARK: targinfosize %u != %Zu\n",
81 targinfosize,
82 IPT_ALIGN(sizeof(struct ipt_mark_target_info)));
83 return 0;
86 if (strcmp(tablename, "mangle") != 0) {
87 printk(KERN_WARNING "MARK: can only be called from \"mangle\" table, not \"%s\"\n", tablename);
88 return 0;
91 return 1;
94 static int
95 checkentry_v1(const char *tablename,
96 const struct ipt_entry *e,
97 void *targinfo,
98 unsigned int targinfosize,
99 unsigned int hook_mask)
101 struct ipt_mark_target_info_v1 *markinfo = targinfo;
103 if (targinfosize != IPT_ALIGN(sizeof(struct ipt_mark_target_info_v1))){
104 printk(KERN_WARNING "MARK: targinfosize %u != %Zu\n",
105 targinfosize,
106 IPT_ALIGN(sizeof(struct ipt_mark_target_info_v1)));
107 return 0;
110 if (strcmp(tablename, "mangle") != 0) {
111 printk(KERN_WARNING "MARK: can only be called from \"mangle\" table, not \"%s\"\n", tablename);
112 return 0;
115 if (markinfo->mode != IPT_MARK_SET
116 && markinfo->mode != IPT_MARK_AND
117 && markinfo->mode != IPT_MARK_OR) {
118 printk(KERN_WARNING "MARK: unknown mode %u\n",
119 markinfo->mode);
120 return 0;
123 return 1;
126 static struct ipt_target ipt_mark_reg_v0 = {
127 .name = "MARK",
128 .target = target_v0,
129 .checkentry = checkentry_v0,
130 .me = THIS_MODULE,
131 .revision = 0,
134 static struct ipt_target ipt_mark_reg_v1 = {
135 .name = "MARK",
136 .target = target_v1,
137 .checkentry = checkentry_v1,
138 .me = THIS_MODULE,
139 .revision = 1,
142 static int __init init(void)
144 int err;
146 err = ipt_register_target(&ipt_mark_reg_v0);
147 if (!err) {
148 err = ipt_register_target(&ipt_mark_reg_v1);
149 if (err)
150 ipt_unregister_target(&ipt_mark_reg_v0);
152 return err;
155 static void __exit fini(void)
157 ipt_unregister_target(&ipt_mark_reg_v0);
158 ipt_unregister_target(&ipt_mark_reg_v1);
161 module_init(init);
162 module_exit(fini);