blob: 55c62350b1f2c6f5f052a49dbd5b4f7371809d2c [file] [log] [blame]
Jan Engelhardt96e32272008-01-14 23:39:13 -08001/*
2 * xt_connmark - Netfilter module to match connection mark values
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Jan Engelhardt96e32272008-01-14 23:39:13 -08004 * Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com>
5 * by Henrik Nordstrom <hno@marasystems.com>
6 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
7 * Jan Engelhardt <jengelh@computergmbh.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24#include <linux/module.h>
25#include <linux/skbuff.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070026#include <net/netfilter/nf_conntrack.h>
27#include <linux/netfilter/x_tables.h>
28#include <linux/netfilter/xt_connmark.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +020030MODULE_AUTHOR("Henrik Nordstrom <hno@marasystems.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070031MODULE_DESCRIPTION("IP tables connmark match module");
32MODULE_LICENSE("GPL");
Harald Welte2e4e6a12006-01-12 13:30:04 -080033MODULE_ALIAS("ipt_connmark");
Jan Engelhardt73aaf932007-10-11 14:36:40 -070034MODULE_ALIAS("ip6t_connmark");
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070036static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080037connmark_mt(const struct sk_buff *skb, const struct net_device *in,
38 const struct net_device *out, const struct xt_match *match,
39 const void *matchinfo, int offset, unsigned int protoff,
40 bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Jan Engelhardt96e32272008-01-14 23:39:13 -080042 const struct xt_connmark_mtinfo1 *info = matchinfo;
43 enum ip_conntrack_info ctinfo;
44 const struct nf_conn *ct;
45
46 ct = nf_ct_get(skb, &ctinfo);
47 if (ct == NULL)
48 return false;
49
50 return ((ct->mark & info->mask) == info->mark) ^ info->invert;
51}
52
53static bool
54connmark_mt_v0(const struct sk_buff *skb, const struct net_device *in,
55 const struct net_device *out, const struct xt_match *match,
56 const void *matchinfo, int offset, unsigned int protoff,
57 bool *hotdrop)
58{
Harald Welte2e4e6a12006-01-12 13:30:04 -080059 const struct xt_connmark_info *info = matchinfo;
Jan Engelhardta47362a2007-07-07 22:16:55 -070060 const struct nf_conn *ct;
Patrick McHardy587aa642007-03-14 16:37:25 -070061 enum ip_conntrack_info ctinfo;
62
63 ct = nf_ct_get(skb, &ctinfo);
64 if (!ct)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070065 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -070067 return ((ct->mark & info->mask) == info->mark) ^ info->invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070070static bool
Jan Engelhardt96e32272008-01-14 23:39:13 -080071connmark_mt_check_v0(const char *tablename, const void *ip,
72 const struct xt_match *match, void *matchinfo,
73 unsigned int hook_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Jan Engelhardta47362a2007-07-07 22:16:55 -070075 const struct xt_connmark_info *cm = matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Harald Weltebf3a46a2005-08-09 19:22:01 -070077 if (cm->mark > 0xffffffff || cm->mask > 0xffffffff) {
78 printk(KERN_WARNING "connmark: only support 32bit mark\n");
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070079 return false;
Harald Weltebf3a46a2005-08-09 19:22:01 -070080 }
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080081 if (nf_ct_l3proto_try_module_get(match->family) < 0) {
Yasuyuki Kozakaife0b9292006-12-12 00:28:40 -080082 printk(KERN_WARNING "can't load conntrack support for "
Jan Engelhardtdf54aae2007-12-17 22:43:15 -080083 "proto=%u\n", match->family);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070084 return false;
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080085 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070086 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Jan Engelhardt96e32272008-01-14 23:39:13 -080089static bool
90connmark_mt_check(const char *tablename, const void *ip,
91 const struct xt_match *match, void *matchinfo,
92 unsigned int hook_mask)
93{
94 if (nf_ct_l3proto_try_module_get(match->family) < 0) {
95 printk(KERN_WARNING "cannot load conntrack support for "
96 "proto=%u\n", match->family);
97 return false;
98 }
99 return true;
100}
101
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800102static void
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800103connmark_mt_destroy(const struct xt_match *match, void *matchinfo)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800104{
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800105 nf_ct_l3proto_module_put(match->family);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800106}
107
Patrick McHardyf1eda052006-09-20 12:06:25 -0700108#ifdef CONFIG_COMPAT
109struct compat_xt_connmark_info {
110 compat_ulong_t mark, mask;
111 u_int8_t invert;
112 u_int8_t __pad1;
113 u_int16_t __pad2;
114};
115
Jan Engelhardt96e32272008-01-14 23:39:13 -0800116static void connmark_mt_compat_from_user_v0(void *dst, void *src)
Patrick McHardyf1eda052006-09-20 12:06:25 -0700117{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700118 const struct compat_xt_connmark_info *cm = src;
Patrick McHardyf1eda052006-09-20 12:06:25 -0700119 struct xt_connmark_info m = {
120 .mark = cm->mark,
121 .mask = cm->mask,
122 .invert = cm->invert,
123 };
124 memcpy(dst, &m, sizeof(m));
125}
126
Jan Engelhardt96e32272008-01-14 23:39:13 -0800127static int connmark_mt_compat_to_user_v0(void __user *dst, void *src)
Patrick McHardyf1eda052006-09-20 12:06:25 -0700128{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700129 const struct xt_connmark_info *m = src;
Patrick McHardyf1eda052006-09-20 12:06:25 -0700130 struct compat_xt_connmark_info cm = {
131 .mark = m->mark,
132 .mask = m->mask,
133 .invert = m->invert,
134 };
135 return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
136}
137#endif /* CONFIG_COMPAT */
138
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800139static struct xt_match connmark_mt_reg[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700140 {
141 .name = "connmark",
Jan Engelhardt96e32272008-01-14 23:39:13 -0800142 .revision = 0,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700143 .family = AF_INET,
Jan Engelhardt96e32272008-01-14 23:39:13 -0800144 .checkentry = connmark_mt_check_v0,
145 .match = connmark_mt_v0,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800146 .destroy = connmark_mt_destroy,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700147 .matchsize = sizeof(struct xt_connmark_info),
Patrick McHardyf1eda052006-09-20 12:06:25 -0700148#ifdef CONFIG_COMPAT
149 .compatsize = sizeof(struct compat_xt_connmark_info),
Jan Engelhardt96e32272008-01-14 23:39:13 -0800150 .compat_from_user = connmark_mt_compat_from_user_v0,
151 .compat_to_user = connmark_mt_compat_to_user_v0,
Patrick McHardyf1eda052006-09-20 12:06:25 -0700152#endif
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700153 .me = THIS_MODULE
154 },
155 {
156 .name = "connmark",
Jan Engelhardt96e32272008-01-14 23:39:13 -0800157 .revision = 0,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700158 .family = AF_INET6,
Jan Engelhardt96e32272008-01-14 23:39:13 -0800159 .checkentry = connmark_mt_check_v0,
160 .match = connmark_mt_v0,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800161 .destroy = connmark_mt_destroy,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700162 .matchsize = sizeof(struct xt_connmark_info),
Patrick McHardy34f4c422007-12-17 21:50:53 -0800163#ifdef CONFIG_COMPAT
164 .compatsize = sizeof(struct compat_xt_connmark_info),
Jan Engelhardt96e32272008-01-14 23:39:13 -0800165 .compat_from_user = connmark_mt_compat_from_user_v0,
166 .compat_to_user = connmark_mt_compat_to_user_v0,
Patrick McHardy34f4c422007-12-17 21:50:53 -0800167#endif
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700168 .me = THIS_MODULE
169 },
Jan Engelhardt96e32272008-01-14 23:39:13 -0800170 {
171 .name = "connmark",
172 .revision = 1,
173 .family = AF_INET,
174 .checkentry = connmark_mt_check,
175 .match = connmark_mt,
176 .matchsize = sizeof(struct xt_connmark_mtinfo1),
177 .destroy = connmark_mt_destroy,
178 .me = THIS_MODULE,
179 },
180 {
181 .name = "connmark",
182 .revision = 1,
183 .family = AF_INET6,
184 .checkentry = connmark_mt_check,
185 .match = connmark_mt,
186 .matchsize = sizeof(struct xt_connmark_mtinfo1),
187 .destroy = connmark_mt_destroy,
188 .me = THIS_MODULE,
189 },
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800190};
Harald Welte2e4e6a12006-01-12 13:30:04 -0800191
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800192static int __init connmark_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800194 return xt_register_matches(connmark_mt_reg,
195 ARRAY_SIZE(connmark_mt_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800198static void __exit connmark_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800200 xt_unregister_matches(connmark_mt_reg, ARRAY_SIZE(connmark_mt_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800203module_init(connmark_mt_init);
204module_exit(connmark_mt_exit);