blob: 0c11ee9550f37d901dc033d34ae522d8c48b246d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* This is a module which is used for setting the NFMARK field of an skb. */
2
3/* (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
4 *
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 */
9
10#include <linux/module.h>
11#include <linux/skbuff.h>
12#include <linux/ip.h>
13#include <net/checksum.h>
14
Harald Welte2e4e6a12006-01-12 13:30:04 -080015#include <linux/netfilter/x_tables.h>
16#include <linux/netfilter/xt_MARK.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18MODULE_LICENSE("GPL");
19MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
Harald Welte2e4e6a12006-01-12 13:30:04 -080020MODULE_DESCRIPTION("ip[6]tables MARK modification module");
21MODULE_ALIAS("ipt_MARK");
22MODULE_ALIAS("ip6t_MARK");
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24static unsigned int
25target_v0(struct sk_buff **pskb,
26 const struct net_device *in,
27 const struct net_device *out,
28 unsigned int hooknum,
29 const void *targinfo,
30 void *userinfo)
31{
Harald Welte2e4e6a12006-01-12 13:30:04 -080032 const struct xt_mark_target_info *markinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Harald Welte6869c4d2005-08-09 19:24:19 -070034 if((*pskb)->nfmark != markinfo->mark)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 (*pskb)->nfmark = markinfo->mark;
Harald Welte6869c4d2005-08-09 19:24:19 -070036
Harald Welte2e4e6a12006-01-12 13:30:04 -080037 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
40static unsigned int
41target_v1(struct sk_buff **pskb,
42 const struct net_device *in,
43 const struct net_device *out,
44 unsigned int hooknum,
45 const void *targinfo,
46 void *userinfo)
47{
Harald Welte2e4e6a12006-01-12 13:30:04 -080048 const struct xt_mark_target_info_v1 *markinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 int mark = 0;
50
51 switch (markinfo->mode) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080052 case XT_MARK_SET:
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 mark = markinfo->mark;
54 break;
55
Harald Welte2e4e6a12006-01-12 13:30:04 -080056 case XT_MARK_AND:
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 mark = (*pskb)->nfmark & markinfo->mark;
58 break;
59
Harald Welte2e4e6a12006-01-12 13:30:04 -080060 case XT_MARK_OR:
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 mark = (*pskb)->nfmark | markinfo->mark;
62 break;
63 }
64
Harald Welte6869c4d2005-08-09 19:24:19 -070065 if((*pskb)->nfmark != mark)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 (*pskb)->nfmark = mark;
Harald Welte6869c4d2005-08-09 19:24:19 -070067
Harald Welte2e4e6a12006-01-12 13:30:04 -080068 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71
72static int
73checkentry_v0(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -080074 const void *entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 void *targinfo,
76 unsigned int targinfosize,
77 unsigned int hook_mask)
78{
Harald Welte2e4e6a12006-01-12 13:30:04 -080079 struct xt_mark_target_info *markinfo = targinfo;
Harald Weltebf3a46a2005-08-09 19:22:01 -070080
Harald Welte2e4e6a12006-01-12 13:30:04 -080081 if (targinfosize != XT_ALIGN(sizeof(struct xt_mark_target_info))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 printk(KERN_WARNING "MARK: targinfosize %u != %Zu\n",
83 targinfosize,
Harald Welte2e4e6a12006-01-12 13:30:04 -080084 XT_ALIGN(sizeof(struct xt_mark_target_info)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return 0;
86 }
87
88 if (strcmp(tablename, "mangle") != 0) {
89 printk(KERN_WARNING "MARK: can only be called from \"mangle\" table, not \"%s\"\n", tablename);
90 return 0;
91 }
92
Harald Weltebf3a46a2005-08-09 19:22:01 -070093 if (markinfo->mark > 0xffffffff) {
94 printk(KERN_WARNING "MARK: Only supports 32bit wide mark\n");
95 return 0;
96 }
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return 1;
99}
100
101static int
102checkentry_v1(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800103 const void *entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 void *targinfo,
105 unsigned int targinfosize,
106 unsigned int hook_mask)
107{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800108 struct xt_mark_target_info_v1 *markinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Harald Welte2e4e6a12006-01-12 13:30:04 -0800110 if (targinfosize != XT_ALIGN(sizeof(struct xt_mark_target_info_v1))){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 printk(KERN_WARNING "MARK: targinfosize %u != %Zu\n",
112 targinfosize,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800113 XT_ALIGN(sizeof(struct xt_mark_target_info_v1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return 0;
115 }
116
117 if (strcmp(tablename, "mangle") != 0) {
118 printk(KERN_WARNING "MARK: can only be called from \"mangle\" table, not \"%s\"\n", tablename);
119 return 0;
120 }
121
Harald Welte2e4e6a12006-01-12 13:30:04 -0800122 if (markinfo->mode != XT_MARK_SET
123 && markinfo->mode != XT_MARK_AND
124 && markinfo->mode != XT_MARK_OR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 printk(KERN_WARNING "MARK: unknown mode %u\n",
126 markinfo->mode);
127 return 0;
128 }
129
Harald Weltebf3a46a2005-08-09 19:22:01 -0700130 if (markinfo->mark > 0xffffffff) {
131 printk(KERN_WARNING "MARK: Only supports 32bit wide mark\n");
132 return 0;
133 }
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return 1;
136}
137
Harald Welte2e4e6a12006-01-12 13:30:04 -0800138static struct xt_target ipt_mark_reg_v0 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .name = "MARK",
140 .target = target_v0,
141 .checkentry = checkentry_v0,
142 .me = THIS_MODULE,
143 .revision = 0,
144};
145
Harald Welte2e4e6a12006-01-12 13:30:04 -0800146static struct xt_target ipt_mark_reg_v1 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .name = "MARK",
148 .target = target_v1,
149 .checkentry = checkentry_v1,
150 .me = THIS_MODULE,
151 .revision = 1,
152};
153
Harald Welte2e4e6a12006-01-12 13:30:04 -0800154static struct xt_target ip6t_mark_reg_v0 = {
155 .name = "MARK",
156 .target = target_v0,
157 .checkentry = checkentry_v0,
158 .me = THIS_MODULE,
159 .revision = 0,
160};
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static int __init init(void)
163{
164 int err;
165
Harald Welte2e4e6a12006-01-12 13:30:04 -0800166 err = xt_register_target(AF_INET, &ipt_mark_reg_v0);
167 if (err)
168 return err;
169
170 err = xt_register_target(AF_INET, &ipt_mark_reg_v1);
171 if (err)
172 xt_unregister_target(AF_INET, &ipt_mark_reg_v0);
173
174 err = xt_register_target(AF_INET6, &ip6t_mark_reg_v0);
175 if (err) {
176 xt_unregister_target(AF_INET, &ipt_mark_reg_v0);
177 xt_unregister_target(AF_INET, &ipt_mark_reg_v1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return err;
181}
182
183static void __exit fini(void)
184{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800185 xt_unregister_target(AF_INET, &ipt_mark_reg_v0);
186 xt_unregister_target(AF_INET, &ipt_mark_reg_v1);
187 xt_unregister_target(AF_INET6, &ip6t_mark_reg_v0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190module_init(init);
191module_exit(fini);