[NETFILTER]: Replace sk_buff ** with sk_buff *
[GitHub/exynos8895/android_kernel_samsung_universal8895.git] / net / netfilter / xt_CONNMARK.c
CommitLineData
1da177e4
LT
1/* 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");
2e4e6a17 29MODULE_ALIAS("ipt_CONNMARK");
73aaf935 30MODULE_ALIAS("ip6t_CONNMARK");
1da177e4 31
2e4e6a17
HW
32#include <linux/netfilter/x_tables.h>
33#include <linux/netfilter/xt_CONNMARK.h>
f6180121 34#include <net/netfilter/nf_conntrack_ecache.h>
1da177e4
LT
35
36static unsigned int
3db05fea 37target(struct sk_buff *skb,
1da177e4
LT
38 const struct net_device *in,
39 const struct net_device *out,
40 unsigned int hooknum,
c4986734 41 const struct xt_target *target,
fe1cb108 42 const void *targinfo)
1da177e4 43{
2e4e6a17 44 const struct xt_connmark_target_info *markinfo = targinfo;
587aa641
PM
45 struct nf_conn *ct;
46 enum ip_conntrack_info ctinfo;
bf3a46aa 47 u_int32_t diff;
82e91ffe 48 u_int32_t mark;
bf3a46aa 49 u_int32_t newmark;
1da177e4 50
3db05fea 51 ct = nf_ct_get(skb, &ctinfo);
587aa641 52 if (ct) {
90528e6f
PM
53 switch(markinfo->mode) {
54 case XT_CONNMARK_SET:
587aa641
PM
55 newmark = (ct->mark & ~markinfo->mask) | markinfo->mark;
56 if (newmark != ct->mark) {
57 ct->mark = newmark;
3db05fea 58 nf_conntrack_event_cache(IPCT_MARK, skb);
2822b0d9 59 }
90528e6f
PM
60 break;
61 case XT_CONNMARK_SAVE:
587aa641 62 newmark = (ct->mark & ~markinfo->mask) |
3db05fea 63 (skb->mark & markinfo->mask);
587aa641
PM
64 if (ct->mark != newmark) {
65 ct->mark = newmark;
3db05fea 66 nf_conntrack_event_cache(IPCT_MARK, skb);
90528e6f
PM
67 }
68 break;
69 case XT_CONNMARK_RESTORE:
3db05fea 70 mark = skb->mark;
587aa641 71 diff = (ct->mark ^ mark) & markinfo->mask;
3db05fea 72 skb->mark = mark ^ diff;
90528e6f 73 break;
2521c12c 74 }
1da177e4
LT
75 }
76
2e4e6a17 77 return XT_CONTINUE;
1da177e4
LT
78}
79
e1931b78 80static bool
1da177e4 81checkentry(const char *tablename,
2e4e6a17 82 const void *entry,
c4986734 83 const struct xt_target *target,
1da177e4 84 void *targinfo,
1da177e4
LT
85 unsigned int hook_mask)
86{
a47362a2 87 const struct xt_connmark_target_info *matchinfo = targinfo;
1da177e4 88
11078c37
YK
89 if (nf_ct_l3proto_try_module_get(target->family) < 0) {
90 printk(KERN_WARNING "can't load conntrack support for "
91 "proto=%d\n", target->family);
e1931b78 92 return false;
11078c37 93 }
2e4e6a17 94 if (matchinfo->mode == XT_CONNMARK_RESTORE) {
90528e6f
PM
95 if (strcmp(tablename, "mangle") != 0) {
96 printk(KERN_WARNING "CONNMARK: restore can only be "
97 "called from \"mangle\" table, not \"%s\"\n",
98 tablename);
e1931b78 99 return false;
90528e6f 100 }
1da177e4 101 }
bf3a46aa
HW
102 if (matchinfo->mark > 0xffffffff || matchinfo->mask > 0xffffffff) {
103 printk(KERN_WARNING "CONNMARK: Only supports 32bit mark\n");
e1931b78 104 return false;
bf3a46aa 105 }
e1931b78 106 return true;
1da177e4
LT
107}
108
11078c37
YK
109static void
110destroy(const struct xt_target *target, void *targinfo)
111{
112 nf_ct_l3proto_module_put(target->family);
113}
114
7ce975b9
PM
115#ifdef CONFIG_COMPAT
116struct compat_xt_connmark_target_info {
117 compat_ulong_t mark, mask;
118 u_int8_t mode;
119 u_int8_t __pad1;
120 u_int16_t __pad2;
121};
122
123static void compat_from_user(void *dst, void *src)
124{
a47362a2 125 const struct compat_xt_connmark_target_info *cm = src;
7ce975b9
PM
126 struct xt_connmark_target_info m = {
127 .mark = cm->mark,
128 .mask = cm->mask,
129 .mode = cm->mode,
130 };
131 memcpy(dst, &m, sizeof(m));
132}
133
134static int compat_to_user(void __user *dst, void *src)
135{
a47362a2 136 const struct xt_connmark_target_info *m = src;
7ce975b9
PM
137 struct compat_xt_connmark_target_info cm = {
138 .mark = m->mark,
139 .mask = m->mask,
140 .mode = m->mode,
141 };
142 return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
143}
144#endif /* CONFIG_COMPAT */
145
9f15c530 146static struct xt_target xt_connmark_target[] __read_mostly = {
4470bbc7
PM
147 {
148 .name = "CONNMARK",
149 .family = AF_INET,
150 .checkentry = checkentry,
11078c37 151 .destroy = destroy,
4470bbc7
PM
152 .target = target,
153 .targetsize = sizeof(struct xt_connmark_target_info),
7ce975b9
PM
154#ifdef CONFIG_COMPAT
155 .compatsize = sizeof(struct compat_xt_connmark_target_info),
156 .compat_from_user = compat_from_user,
157 .compat_to_user = compat_to_user,
158#endif
4470bbc7
PM
159 .me = THIS_MODULE
160 },
161 {
162 .name = "CONNMARK",
163 .family = AF_INET6,
164 .checkentry = checkentry,
11078c37 165 .destroy = destroy,
4470bbc7
PM
166 .target = target,
167 .targetsize = sizeof(struct xt_connmark_target_info),
168 .me = THIS_MODULE
169 },
1da177e4
LT
170};
171
65b4b4e8 172static int __init xt_connmark_init(void)
1da177e4 173{
4470bbc7
PM
174 return xt_register_targets(xt_connmark_target,
175 ARRAY_SIZE(xt_connmark_target));
1da177e4
LT
176}
177
65b4b4e8 178static void __exit xt_connmark_fini(void)
1da177e4 179{
4470bbc7
PM
180 xt_unregister_targets(xt_connmark_target,
181 ARRAY_SIZE(xt_connmark_target));
1da177e4
LT
182}
183
65b4b4e8
AM
184module_init(xt_connmark_init);
185module_exit(xt_connmark_fini);