1 /* L3/L4 protocol support for nf_conntrack. */
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>
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.
12 #include <linux/types.h>
13 #include <linux/netfilter.h>
14 #include <linux/module.h>
15 #include <linux/slab.h>
16 #include <linux/mutex.h>
17 #include <linux/vmalloc.h>
18 #include <linux/stddef.h>
19 #include <linux/err.h>
20 #include <linux/percpu.h>
21 #include <linux/notifier.h>
22 #include <linux/kernel.h>
23 #include <linux/netdevice.h>
24 #include <linux/rtnetlink.h>
26 #include <net/netfilter/nf_conntrack.h>
27 #include <net/netfilter/nf_conntrack_l3proto.h>
28 #include <net/netfilter/nf_conntrack_l4proto.h>
29 #include <net/netfilter/nf_conntrack_core.h>
31 static struct nf_conntrack_l4proto __rcu
**nf_ct_protos
[PF_MAX
] __read_mostly
;
32 struct nf_conntrack_l3proto __rcu
*nf_ct_l3protos
[AF_MAX
] __read_mostly
;
33 EXPORT_SYMBOL_GPL(nf_ct_l3protos
);
35 static DEFINE_MUTEX(nf_ct_proto_mutex
);
39 nf_ct_register_sysctl(struct ctl_table_header
**header
, struct ctl_path
*path
,
40 struct ctl_table
*table
, unsigned int *users
)
42 if (*header
== NULL
) {
43 *header
= register_sysctl_paths(path
, table
);
53 nf_ct_unregister_sysctl(struct ctl_table_header
**header
,
54 struct ctl_table
*table
, unsigned int *users
)
56 if (users
!= NULL
&& --*users
> 0)
59 unregister_sysctl_table(*header
);
64 struct nf_conntrack_l4proto
*
65 __nf_ct_l4proto_find(u_int16_t l3proto
, u_int8_t l4proto
)
67 if (unlikely(l3proto
>= AF_MAX
|| nf_ct_protos
[l3proto
] == NULL
))
68 return &nf_conntrack_l4proto_generic
;
70 return rcu_dereference(nf_ct_protos
[l3proto
][l4proto
]);
72 EXPORT_SYMBOL_GPL(__nf_ct_l4proto_find
);
74 /* this is guaranteed to always return a valid protocol helper, since
75 * it falls back to generic_protocol */
76 struct nf_conntrack_l3proto
*
77 nf_ct_l3proto_find_get(u_int16_t l3proto
)
79 struct nf_conntrack_l3proto
*p
;
82 p
= __nf_ct_l3proto_find(l3proto
);
83 if (!try_module_get(p
->me
))
84 p
= &nf_conntrack_l3proto_generic
;
89 EXPORT_SYMBOL_GPL(nf_ct_l3proto_find_get
);
91 void nf_ct_l3proto_put(struct nf_conntrack_l3proto
*p
)
95 EXPORT_SYMBOL_GPL(nf_ct_l3proto_put
);
98 nf_ct_l3proto_try_module_get(unsigned short l3proto
)
101 struct nf_conntrack_l3proto
*p
;
103 retry
: p
= nf_ct_l3proto_find_get(l3proto
);
104 if (p
== &nf_conntrack_l3proto_generic
) {
105 ret
= request_module("nf_conntrack-%d", l3proto
);
114 EXPORT_SYMBOL_GPL(nf_ct_l3proto_try_module_get
);
116 void nf_ct_l3proto_module_put(unsigned short l3proto
)
118 struct nf_conntrack_l3proto
*p
;
120 /* rcu_read_lock not necessary since the caller holds a reference, but
121 * taken anyways to avoid lockdep warnings in __nf_ct_l3proto_find()
124 p
= __nf_ct_l3proto_find(l3proto
);
128 EXPORT_SYMBOL_GPL(nf_ct_l3proto_module_put
);
130 static int kill_l3proto(struct nf_conn
*i
, void *data
)
132 return nf_ct_l3num(i
) == ((struct nf_conntrack_l3proto
*)data
)->l3proto
;
135 static int kill_l4proto(struct nf_conn
*i
, void *data
)
137 struct nf_conntrack_l4proto
*l4proto
;
138 l4proto
= (struct nf_conntrack_l4proto
*)data
;
139 return nf_ct_protonum(i
) == l4proto
->l4proto
&&
140 nf_ct_l3num(i
) == l4proto
->l3proto
;
143 static int nf_ct_l3proto_register_sysctl(struct nf_conntrack_l3proto
*l3proto
)
148 if (l3proto
->ctl_table
!= NULL
) {
149 err
= nf_ct_register_sysctl(&l3proto
->ctl_table_header
,
150 l3proto
->ctl_table_path
,
151 l3proto
->ctl_table
, NULL
);
157 static void nf_ct_l3proto_unregister_sysctl(struct nf_conntrack_l3proto
*l3proto
)
160 if (l3proto
->ctl_table_header
!= NULL
)
161 nf_ct_unregister_sysctl(&l3proto
->ctl_table_header
,
162 l3proto
->ctl_table
, NULL
);
166 int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto
*proto
)
170 if (proto
->l3proto
>= AF_MAX
)
173 if (proto
->tuple_to_nlattr
&& !proto
->nlattr_tuple_size
)
176 mutex_lock(&nf_ct_proto_mutex
);
177 if (nf_ct_l3protos
[proto
->l3proto
] != &nf_conntrack_l3proto_generic
) {
182 ret
= nf_ct_l3proto_register_sysctl(proto
);
186 if (proto
->nlattr_tuple_size
)
187 proto
->nla_size
= 3 * proto
->nlattr_tuple_size();
189 rcu_assign_pointer(nf_ct_l3protos
[proto
->l3proto
], proto
);
192 mutex_unlock(&nf_ct_proto_mutex
);
195 EXPORT_SYMBOL_GPL(nf_conntrack_l3proto_register
);
197 void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto
*proto
)
201 BUG_ON(proto
->l3proto
>= AF_MAX
);
203 mutex_lock(&nf_ct_proto_mutex
);
204 BUG_ON(nf_ct_l3protos
[proto
->l3proto
] != proto
);
205 rcu_assign_pointer(nf_ct_l3protos
[proto
->l3proto
],
206 &nf_conntrack_l3proto_generic
);
207 nf_ct_l3proto_unregister_sysctl(proto
);
208 mutex_unlock(&nf_ct_proto_mutex
);
212 /* Remove all contrack entries for this protocol */
215 nf_ct_iterate_cleanup(net
, kill_l3proto
, proto
);
218 EXPORT_SYMBOL_GPL(nf_conntrack_l3proto_unregister
);
220 static int nf_ct_l4proto_register_sysctl(struct nf_conntrack_l4proto
*l4proto
)
225 if (l4proto
->ctl_table
!= NULL
) {
226 err
= nf_ct_register_sysctl(l4proto
->ctl_table_header
,
227 nf_net_netfilter_sysctl_path
,
229 l4proto
->ctl_table_users
);
233 #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
234 if (l4proto
->ctl_compat_table
!= NULL
) {
235 err
= nf_ct_register_sysctl(&l4proto
->ctl_compat_table_header
,
236 nf_net_ipv4_netfilter_sysctl_path
,
237 l4proto
->ctl_compat_table
, NULL
);
240 nf_ct_unregister_sysctl(l4proto
->ctl_table_header
,
242 l4proto
->ctl_table_users
);
244 #endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
246 #endif /* CONFIG_SYSCTL */
250 static void nf_ct_l4proto_unregister_sysctl(struct nf_conntrack_l4proto
*l4proto
)
253 if (l4proto
->ctl_table_header
!= NULL
&&
254 *l4proto
->ctl_table_header
!= NULL
)
255 nf_ct_unregister_sysctl(l4proto
->ctl_table_header
,
257 l4proto
->ctl_table_users
);
258 #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
259 if (l4proto
->ctl_compat_table_header
!= NULL
)
260 nf_ct_unregister_sysctl(&l4proto
->ctl_compat_table_header
,
261 l4proto
->ctl_compat_table
, NULL
);
262 #endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
263 #endif /* CONFIG_SYSCTL */
266 /* FIXME: Allow NULL functions and sub in pointers to generic for
268 int nf_conntrack_l4proto_register(struct nf_conntrack_l4proto
*l4proto
)
272 if (l4proto
->l3proto
>= PF_MAX
)
275 if ((l4proto
->to_nlattr
&& !l4proto
->nlattr_size
)
276 || (l4proto
->tuple_to_nlattr
&& !l4proto
->nlattr_tuple_size
))
279 mutex_lock(&nf_ct_proto_mutex
);
280 if (!nf_ct_protos
[l4proto
->l3proto
]) {
281 /* l3proto may be loaded latter. */
282 struct nf_conntrack_l4proto
**proto_array
;
285 proto_array
= kmalloc(MAX_NF_CT_PROTO
*
286 sizeof(struct nf_conntrack_l4proto
*),
288 if (proto_array
== NULL
) {
293 for (i
= 0; i
< MAX_NF_CT_PROTO
; i
++)
294 proto_array
[i
] = &nf_conntrack_l4proto_generic
;
296 /* Before making proto_array visible to lockless readers,
297 * we must make sure its content is committed to memory.
301 nf_ct_protos
[l4proto
->l3proto
] = proto_array
;
302 } else if (nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
] !=
303 &nf_conntrack_l4proto_generic
) {
308 ret
= nf_ct_l4proto_register_sysctl(l4proto
);
312 l4proto
->nla_size
= 0;
313 if (l4proto
->nlattr_size
)
314 l4proto
->nla_size
+= l4proto
->nlattr_size();
315 if (l4proto
->nlattr_tuple_size
)
316 l4proto
->nla_size
+= 3 * l4proto
->nlattr_tuple_size();
318 rcu_assign_pointer(nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
],
322 mutex_unlock(&nf_ct_proto_mutex
);
325 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_register
);
327 void nf_conntrack_l4proto_unregister(struct nf_conntrack_l4proto
*l4proto
)
331 BUG_ON(l4proto
->l3proto
>= PF_MAX
);
333 mutex_lock(&nf_ct_proto_mutex
);
334 BUG_ON(nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
] != l4proto
);
335 rcu_assign_pointer(nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
],
336 &nf_conntrack_l4proto_generic
);
337 nf_ct_l4proto_unregister_sysctl(l4proto
);
338 mutex_unlock(&nf_ct_proto_mutex
);
342 /* Remove all contrack entries for this protocol */
345 nf_ct_iterate_cleanup(net
, kill_l4proto
, l4proto
);
348 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_unregister
);
350 int nf_conntrack_proto_init(void)
355 err
= nf_ct_l4proto_register_sysctl(&nf_conntrack_l4proto_generic
);
359 for (i
= 0; i
< AF_MAX
; i
++)
360 rcu_assign_pointer(nf_ct_l3protos
[i
],
361 &nf_conntrack_l3proto_generic
);
365 void nf_conntrack_proto_fini(void)
369 nf_ct_l4proto_unregister_sysctl(&nf_conntrack_l4proto_generic
);
371 /* free l3proto protocol tables */
372 for (i
= 0; i
< PF_MAX
; i
++)
373 kfree(nf_ct_protos
[i
]);