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