blob: b5548239d4127997b7d8bc698120a2b720e2e452 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* This kernel module is used to modify the connection mark values, or
2 * to optionally restore the skb nfmark from the connection mark
3 *
4 * Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com>
5 * by Henrik Nordstrom <hno@marasystems.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21#include <linux/module.h>
22#include <linux/skbuff.h>
23#include <linux/ip.h>
24#include <net/checksum.h>
25
26MODULE_AUTHOR("Henrik Nordstrom <hno@marasytems.com>");
27MODULE_DESCRIPTION("IP tables CONNMARK matching module");
28MODULE_LICENSE("GPL");
Harald Welte2e4e6a12006-01-12 13:30:04 -080029MODULE_ALIAS("ipt_CONNMARK");
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Harald Welte2e4e6a12006-01-12 13:30:04 -080031#include <linux/netfilter/x_tables.h>
32#include <linux/netfilter/xt_CONNMARK.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080033#include <net/netfilter/nf_conntrack_compat.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010034#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
35#include <net/netfilter/nf_conntrack_ecache.h>
36#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38static unsigned int
39target(struct sk_buff **pskb,
40 const struct net_device *in,
41 const struct net_device *out,
42 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -080043 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -070044 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Harald Welte2e4e6a12006-01-12 13:30:04 -080046 const struct xt_connmark_target_info *markinfo = targinfo;
Harald Weltebf3a46a2005-08-09 19:22:01 -070047 u_int32_t diff;
Thomas Graf82e91ff2006-11-09 15:19:14 -080048 u_int32_t mark;
Harald Weltebf3a46a2005-08-09 19:22:01 -070049 u_int32_t newmark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080050 u_int32_t ctinfo;
51 u_int32_t *ctmark = nf_ct_get_mark(*pskb, &ctinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080053 if (ctmark) {
Patrick McHardy90528e62006-08-22 00:33:26 -070054 switch(markinfo->mode) {
55 case XT_CONNMARK_SET:
56 newmark = (*ctmark & ~markinfo->mask) | markinfo->mark;
57 if (newmark != *ctmark) {
58 *ctmark = newmark;
Benoit Boissinot0719bdf2006-08-28 17:50:37 -070059#if defined(CONFIG_IP_NF_CONNTRACK) || defined(CONFIG_IP_NF_CONNTRACK_MODULE)
Patrick McHardy90528e62006-08-22 00:33:26 -070060 ip_conntrack_event_cache(IPCT_MARK, *pskb);
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070061#else
Patrick McHardy90528e62006-08-22 00:33:26 -070062 nf_conntrack_event_cache(IPCT_MARK, *pskb);
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070063#endif
64 }
Patrick McHardy90528e62006-08-22 00:33:26 -070065 break;
66 case XT_CONNMARK_SAVE:
67 newmark = (*ctmark & ~markinfo->mask) |
Thomas Graf82e91ff2006-11-09 15:19:14 -080068 ((*pskb)->mark & markinfo->mask);
Patrick McHardy90528e62006-08-22 00:33:26 -070069 if (*ctmark != newmark) {
70 *ctmark = newmark;
Benoit Boissinot0719bdf2006-08-28 17:50:37 -070071#if defined(CONFIG_IP_NF_CONNTRACK) || defined(CONFIG_IP_NF_CONNTRACK_MODULE)
Patrick McHardy90528e62006-08-22 00:33:26 -070072 ip_conntrack_event_cache(IPCT_MARK, *pskb);
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070073#else
Patrick McHardy90528e62006-08-22 00:33:26 -070074 nf_conntrack_event_cache(IPCT_MARK, *pskb);
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070075#endif
Patrick McHardy90528e62006-08-22 00:33:26 -070076 }
77 break;
78 case XT_CONNMARK_RESTORE:
Thomas Graf82e91ff2006-11-09 15:19:14 -080079 mark = (*pskb)->mark;
80 diff = (*ctmark ^ mark) & markinfo->mask;
Patrick McHardy90528e62006-08-22 00:33:26 -070081 if (diff != 0)
Thomas Graf82e91ff2006-11-09 15:19:14 -080082 (*pskb)->mark = mark ^ diff;
Patrick McHardy90528e62006-08-22 00:33:26 -070083 break;
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
86
Harald Welte2e4e6a12006-01-12 13:30:04 -080087 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90static int
91checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -080092 const void *entry,
Patrick McHardyc4986732006-03-20 18:02:56 -080093 const struct xt_target *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 void *targinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 unsigned int hook_mask)
96{
Harald Welte2e4e6a12006-01-12 13:30:04 -080097 struct xt_connmark_target_info *matchinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Harald Welte2e4e6a12006-01-12 13:30:04 -080099 if (matchinfo->mode == XT_CONNMARK_RESTORE) {
Patrick McHardy90528e62006-08-22 00:33:26 -0700100 if (strcmp(tablename, "mangle") != 0) {
101 printk(KERN_WARNING "CONNMARK: restore can only be "
102 "called from \"mangle\" table, not \"%s\"\n",
103 tablename);
104 return 0;
105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
Harald Weltebf3a46a2005-08-09 19:22:01 -0700107 if (matchinfo->mark > 0xffffffff || matchinfo->mask > 0xffffffff) {
108 printk(KERN_WARNING "CONNMARK: Only supports 32bit mark\n");
109 return 0;
110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return 1;
112}
113
Patrick McHardy7ce975b2006-09-20 12:06:40 -0700114#ifdef CONFIG_COMPAT
115struct compat_xt_connmark_target_info {
116 compat_ulong_t mark, mask;
117 u_int8_t mode;
118 u_int8_t __pad1;
119 u_int16_t __pad2;
120};
121
122static void compat_from_user(void *dst, void *src)
123{
124 struct compat_xt_connmark_target_info *cm = src;
125 struct xt_connmark_target_info m = {
126 .mark = cm->mark,
127 .mask = cm->mask,
128 .mode = cm->mode,
129 };
130 memcpy(dst, &m, sizeof(m));
131}
132
133static int compat_to_user(void __user *dst, void *src)
134{
135 struct xt_connmark_target_info *m = src;
136 struct compat_xt_connmark_target_info cm = {
137 .mark = m->mark,
138 .mask = m->mask,
139 .mode = m->mode,
140 };
141 return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
142}
143#endif /* CONFIG_COMPAT */
144
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700145static struct xt_target xt_connmark_target[] = {
146 {
147 .name = "CONNMARK",
148 .family = AF_INET,
149 .checkentry = checkentry,
150 .target = target,
151 .targetsize = sizeof(struct xt_connmark_target_info),
Patrick McHardy7ce975b2006-09-20 12:06:40 -0700152#ifdef CONFIG_COMPAT
153 .compatsize = sizeof(struct compat_xt_connmark_target_info),
154 .compat_from_user = compat_from_user,
155 .compat_to_user = compat_to_user,
156#endif
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700157 .me = THIS_MODULE
158 },
159 {
160 .name = "CONNMARK",
161 .family = AF_INET6,
162 .checkentry = checkentry,
163 .target = target,
164 .targetsize = sizeof(struct xt_connmark_target_info),
165 .me = THIS_MODULE
166 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167};
168
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800169static int __init xt_connmark_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800171 need_conntrack();
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700172 return xt_register_targets(xt_connmark_target,
173 ARRAY_SIZE(xt_connmark_target));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800176static void __exit xt_connmark_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700178 xt_unregister_targets(xt_connmark_target,
179 ARRAY_SIZE(xt_connmark_target));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800182module_init(xt_connmark_init);
183module_exit(xt_connmark_fini);