blob: c2125f6ee1284502bfd6b9923b21c341cbd82c50 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35static unsigned int
36target(struct sk_buff **pskb,
37 const struct net_device *in,
38 const struct net_device *out,
39 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -080040 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -070041 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
Harald Welte2e4e6a12006-01-12 13:30:04 -080043 const struct xt_connmark_target_info *markinfo = targinfo;
Harald Weltebf3a46a2005-08-09 19:22:01 -070044 u_int32_t diff;
45 u_int32_t nfmark;
46 u_int32_t newmark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080047 u_int32_t ctinfo;
48 u_int32_t *ctmark = nf_ct_get_mark(*pskb, &ctinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080050 if (ctmark) {
Patrick McHardy90528e62006-08-22 00:33:26 -070051 switch(markinfo->mode) {
52 case XT_CONNMARK_SET:
53 newmark = (*ctmark & ~markinfo->mask) | markinfo->mark;
54 if (newmark != *ctmark) {
55 *ctmark = newmark;
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070056#ifdef CONFIG_IP_NF_CONNTRACK_EVENTS
Patrick McHardy90528e62006-08-22 00:33:26 -070057 ip_conntrack_event_cache(IPCT_MARK, *pskb);
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070058#else
Patrick McHardy90528e62006-08-22 00:33:26 -070059 nf_conntrack_event_cache(IPCT_MARK, *pskb);
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070060#endif
61 }
Patrick McHardy90528e62006-08-22 00:33:26 -070062 break;
63 case XT_CONNMARK_SAVE:
64 newmark = (*ctmark & ~markinfo->mask) |
65 ((*pskb)->nfmark & markinfo->mask);
66 if (*ctmark != newmark) {
67 *ctmark = newmark;
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070068#ifdef CONFIG_IP_NF_CONNTRACK_EVENTS
Patrick McHardy90528e62006-08-22 00:33:26 -070069 ip_conntrack_event_cache(IPCT_MARK, *pskb);
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070070#else
Patrick McHardy90528e62006-08-22 00:33:26 -070071 nf_conntrack_event_cache(IPCT_MARK, *pskb);
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070072#endif
Patrick McHardy90528e62006-08-22 00:33:26 -070073 }
74 break;
75 case XT_CONNMARK_RESTORE:
76 nfmark = (*pskb)->nfmark;
77 diff = (*ctmark ^ nfmark) & markinfo->mask;
78 if (diff != 0)
79 (*pskb)->nfmark = nfmark ^ diff;
80 break;
Pablo Neira Ayuso2521c122006-08-22 00:31:24 -070081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
83
Harald Welte2e4e6a12006-01-12 13:30:04 -080084 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
87static int
88checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -080089 const void *entry,
Patrick McHardyc4986732006-03-20 18:02:56 -080090 const struct xt_target *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 void *targinfo,
92 unsigned int targinfosize,
93 unsigned int hook_mask)
94{
Harald Welte2e4e6a12006-01-12 13:30:04 -080095 struct xt_connmark_target_info *matchinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Harald Welte2e4e6a12006-01-12 13:30:04 -080097 if (matchinfo->mode == XT_CONNMARK_RESTORE) {
Patrick McHardy90528e62006-08-22 00:33:26 -070098 if (strcmp(tablename, "mangle") != 0) {
99 printk(KERN_WARNING "CONNMARK: restore can only be "
100 "called from \"mangle\" table, not \"%s\"\n",
101 tablename);
102 return 0;
103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
Harald Weltebf3a46a2005-08-09 19:22:01 -0700105 if (matchinfo->mark > 0xffffffff || matchinfo->mask > 0xffffffff) {
106 printk(KERN_WARNING "CONNMARK: Only supports 32bit mark\n");
107 return 0;
108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return 1;
110}
111
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700112static struct xt_target xt_connmark_target[] = {
113 {
114 .name = "CONNMARK",
115 .family = AF_INET,
116 .checkentry = checkentry,
117 .target = target,
118 .targetsize = sizeof(struct xt_connmark_target_info),
119 .me = THIS_MODULE
120 },
121 {
122 .name = "CONNMARK",
123 .family = AF_INET6,
124 .checkentry = checkentry,
125 .target = target,
126 .targetsize = sizeof(struct xt_connmark_target_info),
127 .me = THIS_MODULE
128 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800131static int __init xt_connmark_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800133 need_conntrack();
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700134 return xt_register_targets(xt_connmark_target,
135 ARRAY_SIZE(xt_connmark_target));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800138static void __exit xt_connmark_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700140 xt_unregister_targets(xt_connmark_target,
141 ARRAY_SIZE(xt_connmark_target));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800144module_init(xt_connmark_init);
145module_exit(xt_connmark_fini);