blob: 7278145e6a68385c71b1d64efccc3aee71cb2412 [file] [log] [blame]
Jan Engelhardt96e32272008-01-14 23:39:13 -08001/*
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +01002 * xt_connmark - Netfilter module to operate on connection marks
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
Jan Engelhardt408ffaa2010-02-28 23:19:52 +01007 * Jan Engelhardt <jengelh@medozas.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>
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010027#include <net/netfilter/nf_conntrack_ecache.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070028#include <linux/netfilter/x_tables.h>
29#include <linux/netfilter/xt_connmark.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +020031MODULE_AUTHOR("Henrik Nordstrom <hno@marasystems.com>");
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010032MODULE_DESCRIPTION("Xtables: connection mark operations");
Linus Torvalds1da177e2005-04-16 15:20:36 -070033MODULE_LICENSE("GPL");
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010034MODULE_ALIAS("ipt_CONNMARK");
35MODULE_ALIAS("ip6t_CONNMARK");
Harald Welte2e4e6a12006-01-12 13:30:04 -080036MODULE_ALIAS("ipt_connmark");
Jan Engelhardt73aaf932007-10-11 14:36:40 -070037MODULE_ALIAS("ip6t_connmark");
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010039static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +020040connmark_tg(struct sk_buff *skb, const struct xt_action_param *par)
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010041{
42 const struct xt_connmark_tginfo1 *info = par->targinfo;
43 enum ip_conntrack_info ctinfo;
44 struct nf_conn *ct;
45 u_int32_t newmark;
46
47 ct = nf_ct_get(skb, &ctinfo);
48 if (ct == NULL)
49 return XT_CONTINUE;
50
51 switch (info->mode) {
52 case XT_CONNMARK_SET:
53 newmark = (ct->mark & ~info->ctmask) ^ info->ctmark;
54 if (ct->mark != newmark) {
55 ct->mark = newmark;
56 nf_conntrack_event_cache(IPCT_MARK, ct);
57 }
58 break;
59 case XT_CONNMARK_SAVE:
60 newmark = (ct->mark & ~info->ctmask) ^
61 (skb->mark & info->nfmask);
62 if (ct->mark != newmark) {
63 ct->mark = newmark;
64 nf_conntrack_event_cache(IPCT_MARK, ct);
65 }
66 break;
67 case XT_CONNMARK_RESTORE:
68 newmark = (skb->mark & ~info->nfmask) ^
69 (ct->mark & info->ctmask);
70 skb->mark = newmark;
71 break;
72 }
73
74 return XT_CONTINUE;
75}
76
Jan Engelhardt135367b2010-03-19 17:16:42 +010077static int connmark_tg_check(const struct xt_tgchk_param *par)
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010078{
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +010079 int ret;
80
81 ret = nf_ct_l3proto_try_module_get(par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +010082 if (ret < 0)
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +010083 pr_info("cannot load conntrack support for proto=%u\n",
84 par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +010085 return ret;
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010086}
87
88static void connmark_tg_destroy(const struct xt_tgdtor_param *par)
89{
90 nf_ct_l3proto_module_put(par->family);
91}
92
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070093static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +020094connmark_mt(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020096 const struct xt_connmark_mtinfo1 *info = par->matchinfo;
Jan Engelhardt96e32272008-01-14 23:39:13 -080097 enum ip_conntrack_info ctinfo;
98 const struct nf_conn *ct;
99
100 ct = nf_ct_get(skb, &ctinfo);
101 if (ct == NULL)
102 return false;
103
104 return ((ct->mark & info->mask) == info->mark) ^ info->invert;
105}
106
Jan Engelhardtb0f38452010-03-19 17:16:42 +0100107static int connmark_mt_check(const struct xt_mtchk_param *par)
Jan Engelhardt96e32272008-01-14 23:39:13 -0800108{
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100109 int ret;
110
111 ret = nf_ct_l3proto_try_module_get(par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +0100112 if (ret < 0)
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100113 pr_info("cannot load conntrack support for proto=%u\n",
114 par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +0100115 return ret;
Jan Engelhardt96e32272008-01-14 23:39:13 -0800116}
117
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200118static void connmark_mt_destroy(const struct xt_mtdtor_param *par)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800119{
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200120 nf_ct_l3proto_module_put(par->family);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800121}
122
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100123static struct xt_target connmark_tg_reg __read_mostly = {
124 .name = "CONNMARK",
125 .revision = 1,
126 .family = NFPROTO_UNSPEC,
127 .checkentry = connmark_tg_check,
128 .target = connmark_tg,
129 .targetsize = sizeof(struct xt_connmark_tginfo1),
130 .destroy = connmark_tg_destroy,
131 .me = THIS_MODULE,
132};
133
Jan Engelhardt84899a22009-06-12 18:50:33 +0200134static struct xt_match connmark_mt_reg __read_mostly = {
135 .name = "connmark",
136 .revision = 1,
137 .family = NFPROTO_UNSPEC,
138 .checkentry = connmark_mt_check,
139 .match = connmark_mt,
140 .matchsize = sizeof(struct xt_connmark_mtinfo1),
141 .destroy = connmark_mt_destroy,
142 .me = THIS_MODULE,
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800143};
Harald Welte2e4e6a12006-01-12 13:30:04 -0800144
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800145static int __init connmark_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100147 int ret;
148
149 ret = xt_register_target(&connmark_tg_reg);
150 if (ret < 0)
151 return ret;
152 ret = xt_register_match(&connmark_mt_reg);
153 if (ret < 0) {
154 xt_unregister_target(&connmark_tg_reg);
155 return ret;
156 }
157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800160static void __exit connmark_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Jan Engelhardt84899a22009-06-12 18:50:33 +0200162 xt_unregister_match(&connmark_mt_reg);
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100163 xt_unregister_target(&connmark_tg_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800166module_init(connmark_mt_init);
167module_exit(connmark_mt_exit);