blob: b83e158e116afc35f3a9ab7b739409b523cebb86 [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
Jeff Kirshere664eab2013-12-06 09:13:42 -080020 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
23#include <linux/module.h>
24#include <linux/skbuff.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070025#include <net/netfilter/nf_conntrack.h>
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010026#include <net/netfilter/nf_conntrack_ecache.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070027#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>");
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010031MODULE_DESCRIPTION("Xtables: connection mark operations");
Linus Torvalds1da177e2005-04-16 15:20:36 -070032MODULE_LICENSE("GPL");
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010033MODULE_ALIAS("ipt_CONNMARK");
34MODULE_ALIAS("ip6t_CONNMARK");
Harald Welte2e4e6a12006-01-12 13:30:04 -080035MODULE_ALIAS("ipt_connmark");
Jan Engelhardt73aaf932007-10-11 14:36:40 -070036MODULE_ALIAS("ip6t_connmark");
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010038static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +020039connmark_tg(struct sk_buff *skb, const struct xt_action_param *par)
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010040{
41 const struct xt_connmark_tginfo1 *info = par->targinfo;
42 enum ip_conntrack_info ctinfo;
43 struct nf_conn *ct;
44 u_int32_t newmark;
45
46 ct = nf_ct_get(skb, &ctinfo);
Florian Westphalfb9c9642016-10-29 03:01:50 +020047 if (ct == NULL || nf_ct_is_untracked(ct))
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010048 return XT_CONTINUE;
49
50 switch (info->mode) {
51 case XT_CONNMARK_SET:
52 newmark = (ct->mark & ~info->ctmask) ^ info->ctmark;
53 if (ct->mark != newmark) {
54 ct->mark = newmark;
55 nf_conntrack_event_cache(IPCT_MARK, ct);
56 }
57 break;
58 case XT_CONNMARK_SAVE:
59 newmark = (ct->mark & ~info->ctmask) ^
60 (skb->mark & info->nfmask);
61 if (ct->mark != newmark) {
62 ct->mark = newmark;
63 nf_conntrack_event_cache(IPCT_MARK, ct);
64 }
65 break;
66 case XT_CONNMARK_RESTORE:
67 newmark = (skb->mark & ~info->nfmask) ^
68 (ct->mark & info->ctmask);
69 skb->mark = newmark;
70 break;
71 }
72
73 return XT_CONTINUE;
74}
75
Jan Engelhardt135367b2010-03-19 17:16:42 +010076static int connmark_tg_check(const struct xt_tgchk_param *par)
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010077{
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +010078 int ret;
79
80 ret = nf_ct_l3proto_try_module_get(par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +010081 if (ret < 0)
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +010082 pr_info("cannot load conntrack support for proto=%u\n",
83 par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +010084 return ret;
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +010085}
86
87static void connmark_tg_destroy(const struct xt_tgdtor_param *par)
88{
89 nf_ct_l3proto_module_put(par->family);
90}
91
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070092static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +020093connmark_mt(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020095 const struct xt_connmark_mtinfo1 *info = par->matchinfo;
Jan Engelhardt96e32272008-01-14 23:39:13 -080096 enum ip_conntrack_info ctinfo;
97 const struct nf_conn *ct;
98
99 ct = nf_ct_get(skb, &ctinfo);
Florian Westphalfb9c9642016-10-29 03:01:50 +0200100 if (ct == NULL || nf_ct_is_untracked(ct))
Jan Engelhardt96e32272008-01-14 23:39:13 -0800101 return false;
102
103 return ((ct->mark & info->mask) == info->mark) ^ info->invert;
104}
105
Jan Engelhardtb0f38452010-03-19 17:16:42 +0100106static int connmark_mt_check(const struct xt_mtchk_param *par)
Jan Engelhardt96e32272008-01-14 23:39:13 -0800107{
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100108 int ret;
109
110 ret = nf_ct_l3proto_try_module_get(par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +0100111 if (ret < 0)
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100112 pr_info("cannot load conntrack support for proto=%u\n",
113 par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +0100114 return ret;
Jan Engelhardt96e32272008-01-14 23:39:13 -0800115}
116
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200117static void connmark_mt_destroy(const struct xt_mtdtor_param *par)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800118{
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200119 nf_ct_l3proto_module_put(par->family);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800120}
121
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100122static struct xt_target connmark_tg_reg __read_mostly = {
123 .name = "CONNMARK",
124 .revision = 1,
125 .family = NFPROTO_UNSPEC,
126 .checkentry = connmark_tg_check,
127 .target = connmark_tg,
128 .targetsize = sizeof(struct xt_connmark_tginfo1),
129 .destroy = connmark_tg_destroy,
130 .me = THIS_MODULE,
131};
132
Jan Engelhardt84899a22009-06-12 18:50:33 +0200133static struct xt_match connmark_mt_reg __read_mostly = {
134 .name = "connmark",
135 .revision = 1,
136 .family = NFPROTO_UNSPEC,
137 .checkentry = connmark_mt_check,
138 .match = connmark_mt,
139 .matchsize = sizeof(struct xt_connmark_mtinfo1),
140 .destroy = connmark_mt_destroy,
141 .me = THIS_MODULE,
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800142};
Harald Welte2e4e6a12006-01-12 13:30:04 -0800143
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800144static int __init connmark_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100146 int ret;
147
148 ret = xt_register_target(&connmark_tg_reg);
149 if (ret < 0)
150 return ret;
151 ret = xt_register_match(&connmark_mt_reg);
152 if (ret < 0) {
153 xt_unregister_target(&connmark_tg_reg);
154 return ret;
155 }
156 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800159static void __exit connmark_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Jan Engelhardt84899a22009-06-12 18:50:33 +0200161 xt_unregister_match(&connmark_mt_reg);
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100162 xt_unregister_target(&connmark_tg_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800165module_init(connmark_mt_init);
166module_exit(connmark_mt_exit);