[NETFILTER]: nf_conntrack: remove ugly hack in l4proto registration
[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>
25
26#include <net/netfilter/nf_conntrack.h>
27#include <net/netfilter/nf_conntrack_l3proto.h>
605dcad6 28#include <net/netfilter/nf_conntrack_l4proto.h>
8f03dea5
MJ
29#include <net/netfilter/nf_conntrack_core.h>
30
605dcad6 31struct nf_conntrack_l4proto **nf_ct_protos[PF_MAX] __read_mostly;
ae5718fb 32struct nf_conntrack_l3proto *nf_ct_l3protos[AF_MAX] __read_mostly;
13b18339 33EXPORT_SYMBOL_GPL(nf_ct_l3protos);
8f03dea5 34
b19caa0c 35static DEFINE_MUTEX(nf_ct_proto_mutex);
d62f9ed4 36
b19caa0c 37#ifdef CONFIG_SYSCTL
d62f9ed4
PM
38static int
39nf_ct_register_sysctl(struct ctl_table_header **header, struct ctl_table *path,
40 struct ctl_table *table, unsigned int *users)
41{
42 if (*header == NULL) {
43 *header = nf_register_sysctl_table(path, table);
44 if (*header == NULL)
45 return -ENOMEM;
46 }
47 if (users != NULL)
48 (*users)++;
49 return 0;
50}
51
52static void
53nf_ct_unregister_sysctl(struct ctl_table_header **header,
54 struct ctl_table *table, unsigned int *users)
55{
56 if (users != NULL && --*users > 0)
57 return;
58 nf_unregister_sysctl_table(*header, table);
59 *header = NULL;
60}
61#endif
62
605dcad6
MJ
63struct nf_conntrack_l4proto *
64__nf_ct_l4proto_find(u_int16_t l3proto, u_int8_t l4proto)
8f03dea5
MJ
65{
66 if (unlikely(l3proto >= AF_MAX || nf_ct_protos[l3proto] == NULL))
605dcad6 67 return &nf_conntrack_l4proto_generic;
8f03dea5 68
923f4902 69 return rcu_dereference(nf_ct_protos[l3proto][l4proto]);
8f03dea5 70}
13b18339 71EXPORT_SYMBOL_GPL(__nf_ct_l4proto_find);
8f03dea5
MJ
72
73/* this is guaranteed to always return a valid protocol helper, since
74 * it falls back to generic_protocol */
605dcad6
MJ
75struct nf_conntrack_l4proto *
76nf_ct_l4proto_find_get(u_int16_t l3proto, u_int8_t l4proto)
8f03dea5 77{
605dcad6 78 struct nf_conntrack_l4proto *p;
8f03dea5 79
923f4902 80 rcu_read_lock();
605dcad6 81 p = __nf_ct_l4proto_find(l3proto, l4proto);
8f03dea5 82 if (!try_module_get(p->me))
605dcad6 83 p = &nf_conntrack_l4proto_generic;
923f4902 84 rcu_read_unlock();
8f03dea5
MJ
85
86 return p;
87}
13b18339 88EXPORT_SYMBOL_GPL(nf_ct_l4proto_find_get);
8f03dea5 89
605dcad6 90void nf_ct_l4proto_put(struct nf_conntrack_l4proto *p)
8f03dea5
MJ
91{
92 module_put(p->me);
93}
13b18339 94EXPORT_SYMBOL_GPL(nf_ct_l4proto_put);
8f03dea5
MJ
95
96struct nf_conntrack_l3proto *
97nf_ct_l3proto_find_get(u_int16_t l3proto)
98{
99 struct nf_conntrack_l3proto *p;
100
923f4902 101 rcu_read_lock();
8f03dea5
MJ
102 p = __nf_ct_l3proto_find(l3proto);
103 if (!try_module_get(p->me))
605dcad6 104 p = &nf_conntrack_l3proto_generic;
923f4902 105 rcu_read_unlock();
8f03dea5
MJ
106
107 return p;
108}
13b18339 109EXPORT_SYMBOL_GPL(nf_ct_l3proto_find_get);
8f03dea5
MJ
110
111void nf_ct_l3proto_put(struct nf_conntrack_l3proto *p)
112{
113 module_put(p->me);
114}
13b18339 115EXPORT_SYMBOL_GPL(nf_ct_l3proto_put);
8f03dea5
MJ
116
117int
118nf_ct_l3proto_try_module_get(unsigned short l3proto)
119{
120 int ret;
121 struct nf_conntrack_l3proto *p;
122
123retry: p = nf_ct_l3proto_find_get(l3proto);
605dcad6 124 if (p == &nf_conntrack_l3proto_generic) {
8f03dea5
MJ
125 ret = request_module("nf_conntrack-%d", l3proto);
126 if (!ret)
127 goto retry;
128
129 return -EPROTOTYPE;
130 }
131
132 return 0;
133}
13b18339 134EXPORT_SYMBOL_GPL(nf_ct_l3proto_try_module_get);
8f03dea5
MJ
135
136void nf_ct_l3proto_module_put(unsigned short l3proto)
137{
138 struct nf_conntrack_l3proto *p;
139
923f4902 140 /* rcu_read_lock not necessary since the caller holds a reference */
8f03dea5 141 p = __nf_ct_l3proto_find(l3proto);
8f03dea5
MJ
142 module_put(p->me);
143}
13b18339 144EXPORT_SYMBOL_GPL(nf_ct_l3proto_module_put);
8f03dea5
MJ
145
146static int kill_l3proto(struct nf_conn *i, void *data)
147{
148 return (i->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num ==
149 ((struct nf_conntrack_l3proto *)data)->l3proto);
150}
151
605dcad6 152static int kill_l4proto(struct nf_conn *i, void *data)
8f03dea5 153{
605dcad6
MJ
154 struct nf_conntrack_l4proto *l4proto;
155 l4proto = (struct nf_conntrack_l4proto *)data;
8f03dea5 156 return (i->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum ==
605dcad6 157 l4proto->l4proto) &&
8f03dea5 158 (i->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num ==
605dcad6 159 l4proto->l3proto);
8f03dea5
MJ
160}
161
d62f9ed4
PM
162static int nf_ct_l3proto_register_sysctl(struct nf_conntrack_l3proto *l3proto)
163{
164 int err = 0;
165
166#ifdef CONFIG_SYSCTL
b19caa0c 167 mutex_lock(&nf_ct_proto_mutex);
d62f9ed4
PM
168 if (l3proto->ctl_table != NULL) {
169 err = nf_ct_register_sysctl(&l3proto->ctl_table_header,
170 l3proto->ctl_table_path,
171 l3proto->ctl_table, NULL);
172 }
b19caa0c 173 mutex_unlock(&nf_ct_proto_mutex);
d62f9ed4
PM
174#endif
175 return err;
176}
177
178static void nf_ct_l3proto_unregister_sysctl(struct nf_conntrack_l3proto *l3proto)
179{
180#ifdef CONFIG_SYSCTL
b19caa0c 181 mutex_lock(&nf_ct_proto_mutex);
d62f9ed4
PM
182 if (l3proto->ctl_table_header != NULL)
183 nf_ct_unregister_sysctl(&l3proto->ctl_table_header,
184 l3proto->ctl_table, NULL);
b19caa0c 185 mutex_unlock(&nf_ct_proto_mutex);
d62f9ed4
PM
186#endif
187}
188
8f03dea5
MJ
189int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto *proto)
190{
191 int ret = 0;
192
ae5718fb
MJ
193 if (proto->l3proto >= AF_MAX) {
194 ret = -EBUSY;
195 goto out;
196 }
197
b19caa0c 198 mutex_lock(&nf_ct_proto_mutex);
605dcad6 199 if (nf_ct_l3protos[proto->l3proto] != &nf_conntrack_l3proto_generic) {
8f03dea5 200 ret = -EBUSY;
ae5718fb 201 goto out_unlock;
8f03dea5 202 }
923f4902 203 rcu_assign_pointer(nf_ct_l3protos[proto->l3proto], proto);
b19caa0c 204 mutex_unlock(&nf_ct_proto_mutex);
d62f9ed4
PM
205
206 ret = nf_ct_l3proto_register_sysctl(proto);
207 if (ret < 0)
208 nf_conntrack_l3proto_unregister(proto);
209 return ret;
8f03dea5 210
ae5718fb 211out_unlock:
b19caa0c 212 mutex_unlock(&nf_ct_proto_mutex);
ae5718fb 213out:
8f03dea5
MJ
214 return ret;
215}
13b18339 216EXPORT_SYMBOL_GPL(nf_conntrack_l3proto_register);
8f03dea5 217
fe3eb20c 218void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto *proto)
8f03dea5 219{
fe3eb20c 220 BUG_ON(proto->l3proto >= AF_MAX);
ae5718fb 221
b19caa0c 222 mutex_lock(&nf_ct_proto_mutex);
fe3eb20c 223 BUG_ON(nf_ct_l3protos[proto->l3proto] != proto);
923f4902
PM
224 rcu_assign_pointer(nf_ct_l3protos[proto->l3proto],
225 &nf_conntrack_l3proto_generic);
b19caa0c 226 mutex_unlock(&nf_ct_proto_mutex);
923f4902 227 synchronize_rcu();
8f03dea5 228
d62f9ed4
PM
229 nf_ct_l3proto_unregister_sysctl(proto);
230
8f03dea5
MJ
231 /* Remove all contrack entries for this protocol */
232 nf_ct_iterate_cleanup(kill_l3proto, proto);
233}
13b18339 234EXPORT_SYMBOL_GPL(nf_conntrack_l3proto_unregister);
8f03dea5 235
d62f9ed4
PM
236static int nf_ct_l4proto_register_sysctl(struct nf_conntrack_l4proto *l4proto)
237{
238 int err = 0;
239
240#ifdef CONFIG_SYSCTL
b19caa0c 241 mutex_lock(&nf_ct_proto_mutex);
d62f9ed4
PM
242 if (l4proto->ctl_table != NULL) {
243 err = nf_ct_register_sysctl(l4proto->ctl_table_header,
244 nf_net_netfilter_sysctl_path,
245 l4proto->ctl_table,
246 l4proto->ctl_table_users);
a999e683
PM
247 if (err < 0)
248 goto out;
d62f9ed4 249 }
a999e683
PM
250#ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
251 if (l4proto->ctl_compat_table != NULL) {
252 err = nf_ct_register_sysctl(&l4proto->ctl_compat_table_header,
253 nf_net_ipv4_netfilter_sysctl_path,
254 l4proto->ctl_compat_table, NULL);
255 if (err == 0)
256 goto out;
257 nf_ct_unregister_sysctl(l4proto->ctl_table_header,
258 l4proto->ctl_table,
259 l4proto->ctl_table_users);
260 }
261#endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
262out:
b19caa0c 263 mutex_unlock(&nf_ct_proto_mutex);
933a41e7 264#endif /* CONFIG_SYSCTL */
d62f9ed4
PM
265 return err;
266}
267
268static void nf_ct_l4proto_unregister_sysctl(struct nf_conntrack_l4proto *l4proto)
269{
270#ifdef CONFIG_SYSCTL
b19caa0c 271 mutex_lock(&nf_ct_proto_mutex);
d62f9ed4
PM
272 if (l4proto->ctl_table_header != NULL &&
273 *l4proto->ctl_table_header != NULL)
274 nf_ct_unregister_sysctl(l4proto->ctl_table_header,
275 l4proto->ctl_table,
276 l4proto->ctl_table_users);
a999e683
PM
277#ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
278 if (l4proto->ctl_compat_table_header != NULL)
279 nf_ct_unregister_sysctl(&l4proto->ctl_compat_table_header,
280 l4proto->ctl_compat_table, NULL);
281#endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
b19caa0c 282 mutex_unlock(&nf_ct_proto_mutex);
933a41e7 283#endif /* CONFIG_SYSCTL */
d62f9ed4
PM
284}
285
8f03dea5
MJ
286/* FIXME: Allow NULL functions and sub in pointers to generic for
287 them. --RR */
605dcad6 288int nf_conntrack_l4proto_register(struct nf_conntrack_l4proto *l4proto)
8f03dea5
MJ
289{
290 int ret = 0;
291
ae5718fb
MJ
292 if (l4proto->l3proto >= PF_MAX) {
293 ret = -EBUSY;
294 goto out;
295 }
296
b19caa0c 297 mutex_lock(&nf_ct_proto_mutex);
8f03dea5 298retry:
605dcad6
MJ
299 if (nf_ct_protos[l4proto->l3proto]) {
300 if (nf_ct_protos[l4proto->l3proto][l4proto->l4proto]
301 != &nf_conntrack_l4proto_generic) {
8f03dea5
MJ
302 ret = -EBUSY;
303 goto out_unlock;
304 }
305 } else {
306 /* l3proto may be loaded latter. */
605dcad6 307 struct nf_conntrack_l4proto **proto_array;
8f03dea5
MJ
308 int i;
309
605dcad6 310 proto_array = (struct nf_conntrack_l4proto **)
8f03dea5 311 kmalloc(MAX_NF_CT_PROTO *
605dcad6 312 sizeof(struct nf_conntrack_l4proto *),
8f03dea5
MJ
313 GFP_KERNEL);
314 if (proto_array == NULL) {
315 ret = -ENOMEM;
b19caa0c 316 goto out_unlock;
8f03dea5
MJ
317 }
318 for (i = 0; i < MAX_NF_CT_PROTO; i++)
605dcad6 319 proto_array[i] = &nf_conntrack_l4proto_generic;
8f03dea5 320
b19caa0c 321 if (nf_ct_protos[l4proto->l3proto])
8f03dea5 322 /* bad timing, but no problem */
8f03dea5 323 kfree(proto_array);
b19caa0c 324 else
605dcad6 325 nf_ct_protos[l4proto->l3proto] = proto_array;
8f03dea5
MJ
326
327 /*
328 * Just once because array is never freed until unloading
329 * nf_conntrack.ko
330 */
331 goto retry;
332 }
333
923f4902 334 rcu_assign_pointer(nf_ct_protos[l4proto->l3proto][l4proto->l4proto], l4proto);
b19caa0c 335 mutex_unlock(&nf_ct_proto_mutex);
d62f9ed4
PM
336
337 ret = nf_ct_l4proto_register_sysctl(l4proto);
338 if (ret < 0)
339 nf_conntrack_l4proto_unregister(l4proto);
340 return ret;
8f03dea5
MJ
341
342out_unlock:
b19caa0c 343 mutex_unlock(&nf_ct_proto_mutex);
8f03dea5
MJ
344out:
345 return ret;
346}
13b18339 347EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_register);
8f03dea5 348
fe3eb20c 349void nf_conntrack_l4proto_unregister(struct nf_conntrack_l4proto *l4proto)
8f03dea5 350{
fe3eb20c 351 BUG_ON(l4proto->l3proto >= PF_MAX);
ae5718fb 352
b19caa0c 353 mutex_lock(&nf_ct_proto_mutex);
fe3eb20c 354 BUG_ON(nf_ct_protos[l4proto->l3proto][l4proto->l4proto] != l4proto);
923f4902
PM
355 rcu_assign_pointer(nf_ct_protos[l4proto->l3proto][l4proto->l4proto],
356 &nf_conntrack_l4proto_generic);
b19caa0c 357 mutex_unlock(&nf_ct_proto_mutex);
923f4902 358 synchronize_rcu();
8f03dea5 359
d62f9ed4
PM
360 nf_ct_l4proto_unregister_sysctl(l4proto);
361
8f03dea5 362 /* Remove all contrack entries for this protocol */
605dcad6 363 nf_ct_iterate_cleanup(kill_l4proto, l4proto);
8f03dea5 364}
13b18339 365EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_unregister);
ac5357eb
PM
366
367int nf_conntrack_proto_init(void)
368{
369 unsigned int i;
370 int err;
371
372 err = nf_ct_l4proto_register_sysctl(&nf_conntrack_l4proto_generic);
373 if (err < 0)
374 return err;
375
376 for (i = 0; i < AF_MAX; i++)
377 rcu_assign_pointer(nf_ct_l3protos[i],
378 &nf_conntrack_l3proto_generic);
379 return 0;
380}
381
382void nf_conntrack_proto_fini(void)
383{
384 unsigned int i;
385
386 nf_ct_l4proto_unregister_sysctl(&nf_conntrack_l4proto_generic);
387
388 /* free l3proto protocol tables */
389 for (i = 0; i < PF_MAX; i++)
390 kfree(nf_ct_protos[i]);
391}
This page took 0.082882 seconds and 5 git commands to generate.