iwlwifi: don't include iwl-dev.h from iwl-devtrace.h
[deliverable/linux.git] / net / netfilter / nf_conntrack_proto.c
CommitLineData
8f03dea5
MJ
1/* L3/L4 protocol support for nf_conntrack. */
2
3/* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
5 * (C) 2003,2004 USAGI/WIDE Project <http://www.linux-ipv6.org>
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 version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/types.h>
13#include <linux/netfilter.h>
14#include <linux/module.h>
d62f9ed4 15#include <linux/mutex.h>
8f03dea5
MJ
16#include <linux/skbuff.h>
17#include <linux/vmalloc.h>
18#include <linux/stddef.h>
19#include <linux/err.h>
20#include <linux/percpu.h>
21#include <linux/moduleparam.h>
22#include <linux/notifier.h>
23#include <linux/kernel.h>
24#include <linux/netdevice.h>
efb9a8c2 25#include <linux/rtnetlink.h>
8f03dea5
MJ
26
27#include <net/netfilter/nf_conntrack.h>
28#include <net/netfilter/nf_conntrack_l3proto.h>
605dcad6 29#include <net/netfilter/nf_conntrack_l4proto.h>
8f03dea5
MJ
30#include <net/netfilter/nf_conntrack_core.h>
31
42bad1da 32static struct nf_conntrack_l4proto **nf_ct_protos[PF_MAX] __read_mostly;
ae5718fb 33struct nf_conntrack_l3proto *nf_ct_l3protos[AF_MAX] __read_mostly;
13b18339 34EXPORT_SYMBOL_GPL(nf_ct_l3protos);
8f03dea5 35
b19caa0c 36static DEFINE_MUTEX(nf_ct_proto_mutex);
d62f9ed4 37
b19caa0c 38#ifdef CONFIG_SYSCTL
d62f9ed4 39static int
b3fd3ffe 40nf_ct_register_sysctl(struct ctl_table_header **header, struct ctl_path *path,
d62f9ed4
PM
41 struct ctl_table *table, unsigned int *users)
42{
43 if (*header == NULL) {
b3fd3ffe 44 *header = register_sysctl_paths(path, table);
d62f9ed4
PM
45 if (*header == NULL)
46 return -ENOMEM;
47 }
48 if (users != NULL)
49 (*users)++;
50 return 0;
51}
52
53static void
54nf_ct_unregister_sysctl(struct ctl_table_header **header,
55 struct ctl_table *table, unsigned int *users)
56{
57 if (users != NULL && --*users > 0)
58 return;
b3fd3ffe
PE
59
60 unregister_sysctl_table(*header);
d62f9ed4
PM
61 *header = NULL;
62}
63#endif
64
605dcad6
MJ
65struct nf_conntrack_l4proto *
66__nf_ct_l4proto_find(u_int16_t l3proto, u_int8_t l4proto)
8f03dea5
MJ
67{
68 if (unlikely(l3proto >= AF_MAX || nf_ct_protos[l3proto] == NULL))
605dcad6 69 return &nf_conntrack_l4proto_generic;
8f03dea5 70
923f4902 71 return rcu_dereference(nf_ct_protos[l3proto][l4proto]);
8f03dea5 72}
13b18339 73EXPORT_SYMBOL_GPL(__nf_ct_l4proto_find);
8f03dea5
MJ
74
75/* this is guaranteed to always return a valid protocol helper, since
76 * it falls back to generic_protocol */
8f03dea5
MJ
77struct nf_conntrack_l3proto *
78nf_ct_l3proto_find_get(u_int16_t l3proto)
79{
80 struct nf_conntrack_l3proto *p;
81
923f4902 82 rcu_read_lock();
8f03dea5
MJ
83 p = __nf_ct_l3proto_find(l3proto);
84 if (!try_module_get(p->me))
605dcad6 85 p = &nf_conntrack_l3proto_generic;
923f4902 86 rcu_read_unlock();
8f03dea5
MJ
87
88 return p;
89}
13b18339 90EXPORT_SYMBOL_GPL(nf_ct_l3proto_find_get);
8f03dea5
MJ
91
92void nf_ct_l3proto_put(struct nf_conntrack_l3proto *p)
93{
94 module_put(p->me);
95}
13b18339 96EXPORT_SYMBOL_GPL(nf_ct_l3proto_put);
8f03dea5
MJ
97
98int
99nf_ct_l3proto_try_module_get(unsigned short l3proto)
100{
101 int ret;
102 struct nf_conntrack_l3proto *p;
103
104retry: p = nf_ct_l3proto_find_get(l3proto);
605dcad6 105 if (p == &nf_conntrack_l3proto_generic) {
8f03dea5
MJ
106 ret = request_module("nf_conntrack-%d", l3proto);
107 if (!ret)
108 goto retry;
109
110 return -EPROTOTYPE;
111 }
112
113 return 0;
114}
13b18339 115EXPORT_SYMBOL_GPL(nf_ct_l3proto_try_module_get);
8f03dea5
MJ
116
117void nf_ct_l3proto_module_put(unsigned short l3proto)
118{
119 struct nf_conntrack_l3proto *p;
120
923f4902 121 /* rcu_read_lock not necessary since the caller holds a reference */
8f03dea5 122 p = __nf_ct_l3proto_find(l3proto);
8f03dea5
MJ
123 module_put(p->me);
124}
13b18339 125EXPORT_SYMBOL_GPL(nf_ct_l3proto_module_put);
8f03dea5
MJ
126
127static int kill_l3proto(struct nf_conn *i, void *data)
128{
5e8fbe2a 129 return nf_ct_l3num(i) == ((struct nf_conntrack_l3proto *)data)->l3proto;
8f03dea5
MJ
130}
131
605dcad6 132static int kill_l4proto(struct nf_conn *i, void *data)
8f03dea5 133{
605dcad6
MJ
134 struct nf_conntrack_l4proto *l4proto;
135 l4proto = (struct nf_conntrack_l4proto *)data;
5e8fbe2a
PM
136 return nf_ct_protonum(i) == l4proto->l4proto &&
137 nf_ct_l3num(i) == l4proto->l3proto;
8f03dea5
MJ
138}
139
d62f9ed4
PM
140static int nf_ct_l3proto_register_sysctl(struct nf_conntrack_l3proto *l3proto)
141{
142 int err = 0;
143
144#ifdef CONFIG_SYSCTL
d62f9ed4
PM
145 if (l3proto->ctl_table != NULL) {
146 err = nf_ct_register_sysctl(&l3proto->ctl_table_header,
147 l3proto->ctl_table_path,
148 l3proto->ctl_table, NULL);
149 }
d62f9ed4
PM
150#endif
151 return err;
152}
153
154static void nf_ct_l3proto_unregister_sysctl(struct nf_conntrack_l3proto *l3proto)
155{
156#ifdef CONFIG_SYSCTL
d62f9ed4
PM
157 if (l3proto->ctl_table_header != NULL)
158 nf_ct_unregister_sysctl(&l3proto->ctl_table_header,
159 l3proto->ctl_table, NULL);
d62f9ed4
PM
160#endif
161}
162
8f03dea5
MJ
163int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto *proto)
164{
165 int ret = 0;
166
0661cca9
PM
167 if (proto->l3proto >= AF_MAX)
168 return -EBUSY;
ae5718fb 169
d0dba725
HE
170 if (proto->tuple_to_nlattr && !proto->nlattr_tuple_size)
171 return -EINVAL;
172
b19caa0c 173 mutex_lock(&nf_ct_proto_mutex);
605dcad6 174 if (nf_ct_l3protos[proto->l3proto] != &nf_conntrack_l3proto_generic) {
8f03dea5 175 ret = -EBUSY;
ae5718fb 176 goto out_unlock;
8f03dea5 177 }
d62f9ed4
PM
178
179 ret = nf_ct_l3proto_register_sysctl(proto);
180 if (ret < 0)
0661cca9
PM
181 goto out_unlock;
182
d0dba725
HE
183 if (proto->nlattr_tuple_size)
184 proto->nla_size = 3 * proto->nlattr_tuple_size();
185
0661cca9 186 rcu_assign_pointer(nf_ct_l3protos[proto->l3proto], proto);
8f03dea5 187
ae5718fb 188out_unlock:
b19caa0c 189 mutex_unlock(&nf_ct_proto_mutex);
8f03dea5
MJ
190 return ret;
191}
13b18339 192EXPORT_SYMBOL_GPL(nf_conntrack_l3proto_register);
8f03dea5 193
fe3eb20c 194void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto *proto)
8f03dea5 195{
678d6675
AD
196 struct net *net;
197
fe3eb20c 198 BUG_ON(proto->l3proto >= AF_MAX);
ae5718fb 199
b19caa0c 200 mutex_lock(&nf_ct_proto_mutex);
fe3eb20c 201 BUG_ON(nf_ct_l3protos[proto->l3proto] != proto);
923f4902
PM
202 rcu_assign_pointer(nf_ct_l3protos[proto->l3proto],
203 &nf_conntrack_l3proto_generic);
0661cca9 204 nf_ct_l3proto_unregister_sysctl(proto);
b19caa0c 205 mutex_unlock(&nf_ct_proto_mutex);
8f03dea5 206
0661cca9 207 synchronize_rcu();
d62f9ed4 208
8f03dea5 209 /* Remove all contrack entries for this protocol */
efb9a8c2 210 rtnl_lock();
678d6675
AD
211 for_each_net(net)
212 nf_ct_iterate_cleanup(net, kill_l3proto, proto);
efb9a8c2 213 rtnl_unlock();
8f03dea5 214}
13b18339 215EXPORT_SYMBOL_GPL(nf_conntrack_l3proto_unregister);
8f03dea5 216
d62f9ed4
PM
217static int nf_ct_l4proto_register_sysctl(struct nf_conntrack_l4proto *l4proto)
218{
219 int err = 0;
220
221#ifdef CONFIG_SYSCTL
d62f9ed4
PM
222 if (l4proto->ctl_table != NULL) {
223 err = nf_ct_register_sysctl(l4proto->ctl_table_header,
224 nf_net_netfilter_sysctl_path,
225 l4proto->ctl_table,
226 l4proto->ctl_table_users);
a999e683
PM
227 if (err < 0)
228 goto out;
d62f9ed4 229 }
a999e683
PM
230#ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
231 if (l4proto->ctl_compat_table != NULL) {
232 err = nf_ct_register_sysctl(&l4proto->ctl_compat_table_header,
233 nf_net_ipv4_netfilter_sysctl_path,
234 l4proto->ctl_compat_table, NULL);
235 if (err == 0)
236 goto out;
237 nf_ct_unregister_sysctl(l4proto->ctl_table_header,
238 l4proto->ctl_table,
239 l4proto->ctl_table_users);
240 }
241#endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
242out:
933a41e7 243#endif /* CONFIG_SYSCTL */
d62f9ed4
PM
244 return err;
245}
246
247static void nf_ct_l4proto_unregister_sysctl(struct nf_conntrack_l4proto *l4proto)
248{
249#ifdef CONFIG_SYSCTL
d62f9ed4
PM
250 if (l4proto->ctl_table_header != NULL &&
251 *l4proto->ctl_table_header != NULL)
252 nf_ct_unregister_sysctl(l4proto->ctl_table_header,
253 l4proto->ctl_table,
254 l4proto->ctl_table_users);
a999e683
PM
255#ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
256 if (l4proto->ctl_compat_table_header != NULL)
257 nf_ct_unregister_sysctl(&l4proto->ctl_compat_table_header,
258 l4proto->ctl_compat_table, NULL);
259#endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
933a41e7 260#endif /* CONFIG_SYSCTL */
d62f9ed4
PM
261}
262
8f03dea5
MJ
263/* FIXME: Allow NULL functions and sub in pointers to generic for
264 them. --RR */
605dcad6 265int nf_conntrack_l4proto_register(struct nf_conntrack_l4proto *l4proto)
8f03dea5
MJ
266{
267 int ret = 0;
268
0661cca9
PM
269 if (l4proto->l3proto >= PF_MAX)
270 return -EBUSY;
ae5718fb 271
d0dba725
HE
272 if ((l4proto->to_nlattr && !l4proto->nlattr_size)
273 || (l4proto->tuple_to_nlattr && !l4proto->nlattr_tuple_size))
274 return -EINVAL;
275
b19caa0c 276 mutex_lock(&nf_ct_proto_mutex);
c6a1e615 277 if (!nf_ct_protos[l4proto->l3proto]) {
8f03dea5 278 /* l3proto may be loaded latter. */
605dcad6 279 struct nf_conntrack_l4proto **proto_array;
8f03dea5
MJ
280 int i;
281
c6a1e615
PM
282 proto_array = kmalloc(MAX_NF_CT_PROTO *
283 sizeof(struct nf_conntrack_l4proto *),
284 GFP_KERNEL);
8f03dea5
MJ
285 if (proto_array == NULL) {
286 ret = -ENOMEM;
b19caa0c 287 goto out_unlock;
8f03dea5 288 }
c6a1e615 289
8f03dea5 290 for (i = 0; i < MAX_NF_CT_PROTO; i++)
605dcad6 291 proto_array[i] = &nf_conntrack_l4proto_generic;
c6a1e615
PM
292 nf_ct_protos[l4proto->l3proto] = proto_array;
293 } else if (nf_ct_protos[l4proto->l3proto][l4proto->l4proto] !=
294 &nf_conntrack_l4proto_generic) {
295 ret = -EBUSY;
296 goto out_unlock;
8f03dea5
MJ
297 }
298
d62f9ed4
PM
299 ret = nf_ct_l4proto_register_sysctl(l4proto);
300 if (ret < 0)
0661cca9
PM
301 goto out_unlock;
302
d0dba725
HE
303 l4proto->nla_size = 0;
304 if (l4proto->nlattr_size)
305 l4proto->nla_size += l4proto->nlattr_size();
306 if (l4proto->nlattr_tuple_size)
307 l4proto->nla_size += 3 * l4proto->nlattr_tuple_size();
308
c6a1e615
PM
309 rcu_assign_pointer(nf_ct_protos[l4proto->l3proto][l4proto->l4proto],
310 l4proto);
8f03dea5
MJ
311
312out_unlock:
b19caa0c 313 mutex_unlock(&nf_ct_proto_mutex);
8f03dea5
MJ
314 return ret;
315}
13b18339 316EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_register);
8f03dea5 317
fe3eb20c 318void nf_conntrack_l4proto_unregister(struct nf_conntrack_l4proto *l4proto)
8f03dea5 319{
678d6675
AD
320 struct net *net;
321
fe3eb20c 322 BUG_ON(l4proto->l3proto >= PF_MAX);
ae5718fb 323
b19caa0c 324 mutex_lock(&nf_ct_proto_mutex);
fe3eb20c 325 BUG_ON(nf_ct_protos[l4proto->l3proto][l4proto->l4proto] != l4proto);
923f4902
PM
326 rcu_assign_pointer(nf_ct_protos[l4proto->l3proto][l4proto->l4proto],
327 &nf_conntrack_l4proto_generic);
0661cca9 328 nf_ct_l4proto_unregister_sysctl(l4proto);
b19caa0c 329 mutex_unlock(&nf_ct_proto_mutex);
8f03dea5 330
0661cca9 331 synchronize_rcu();
d62f9ed4 332
8f03dea5 333 /* Remove all contrack entries for this protocol */
efb9a8c2 334 rtnl_lock();
678d6675
AD
335 for_each_net(net)
336 nf_ct_iterate_cleanup(net, kill_l4proto, l4proto);
efb9a8c2 337 rtnl_unlock();
8f03dea5 338}
13b18339 339EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_unregister);
ac5357eb
PM
340
341int nf_conntrack_proto_init(void)
342{
343 unsigned int i;
344 int err;
345
346 err = nf_ct_l4proto_register_sysctl(&nf_conntrack_l4proto_generic);
347 if (err < 0)
348 return err;
349
350 for (i = 0; i < AF_MAX; i++)
351 rcu_assign_pointer(nf_ct_l3protos[i],
352 &nf_conntrack_l3proto_generic);
353 return 0;
354}
355
356void nf_conntrack_proto_fini(void)
357{
358 unsigned int i;
359
360 nf_ct_l4proto_unregister_sysctl(&nf_conntrack_l4proto_generic);
361
362 /* free l3proto protocol tables */
363 for (i = 0; i < PF_MAX; i++)
364 kfree(nf_ct_protos[i]);
365}
This page took 0.365151 seconds and 5 git commands to generate.