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/mutex.h>
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>
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
**nf_ct_protos
[PF_MAX
] __read_mostly
;
32 struct nf_conntrack_l3proto
*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_table
*path
,
40 struct ctl_table
*table
, unsigned int *users
)
42 if (*header
== NULL
) {
43 *header
= nf_register_sysctl_table(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)
58 nf_unregister_sysctl_table(*header
, table
);
63 struct nf_conntrack_l4proto
*
64 __nf_ct_l4proto_find(u_int16_t l3proto
, u_int8_t l4proto
)
66 if (unlikely(l3proto
>= AF_MAX
|| nf_ct_protos
[l3proto
] == NULL
))
67 return &nf_conntrack_l4proto_generic
;
69 return rcu_dereference(nf_ct_protos
[l3proto
][l4proto
]);
71 EXPORT_SYMBOL_GPL(__nf_ct_l4proto_find
);
73 /* this is guaranteed to always return a valid protocol helper, since
74 * it falls back to generic_protocol */
75 struct nf_conntrack_l4proto
*
76 nf_ct_l4proto_find_get(u_int16_t l3proto
, u_int8_t l4proto
)
78 struct nf_conntrack_l4proto
*p
;
81 p
= __nf_ct_l4proto_find(l3proto
, l4proto
);
82 if (!try_module_get(p
->me
))
83 p
= &nf_conntrack_l4proto_generic
;
88 EXPORT_SYMBOL_GPL(nf_ct_l4proto_find_get
);
90 void nf_ct_l4proto_put(struct nf_conntrack_l4proto
*p
)
94 EXPORT_SYMBOL_GPL(nf_ct_l4proto_put
);
96 struct nf_conntrack_l3proto
*
97 nf_ct_l3proto_find_get(u_int16_t l3proto
)
99 struct nf_conntrack_l3proto
*p
;
102 p
= __nf_ct_l3proto_find(l3proto
);
103 if (!try_module_get(p
->me
))
104 p
= &nf_conntrack_l3proto_generic
;
109 EXPORT_SYMBOL_GPL(nf_ct_l3proto_find_get
);
111 void nf_ct_l3proto_put(struct nf_conntrack_l3proto
*p
)
115 EXPORT_SYMBOL_GPL(nf_ct_l3proto_put
);
118 nf_ct_l3proto_try_module_get(unsigned short l3proto
)
121 struct nf_conntrack_l3proto
*p
;
123 retry
: p
= nf_ct_l3proto_find_get(l3proto
);
124 if (p
== &nf_conntrack_l3proto_generic
) {
125 ret
= request_module("nf_conntrack-%d", l3proto
);
134 EXPORT_SYMBOL_GPL(nf_ct_l3proto_try_module_get
);
136 void nf_ct_l3proto_module_put(unsigned short l3proto
)
138 struct nf_conntrack_l3proto
*p
;
140 /* rcu_read_lock not necessary since the caller holds a reference */
141 p
= __nf_ct_l3proto_find(l3proto
);
144 EXPORT_SYMBOL_GPL(nf_ct_l3proto_module_put
);
146 static int kill_l3proto(struct nf_conn
*i
, void *data
)
148 return (i
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
==
149 ((struct nf_conntrack_l3proto
*)data
)->l3proto
);
152 static int kill_l4proto(struct nf_conn
*i
, void *data
)
154 struct nf_conntrack_l4proto
*l4proto
;
155 l4proto
= (struct nf_conntrack_l4proto
*)data
;
156 return (i
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
==
158 (i
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
==
162 static int nf_ct_l3proto_register_sysctl(struct nf_conntrack_l3proto
*l3proto
)
167 if (l3proto
->ctl_table
!= NULL
) {
168 err
= nf_ct_register_sysctl(&l3proto
->ctl_table_header
,
169 l3proto
->ctl_table_path
,
170 l3proto
->ctl_table
, NULL
);
176 static void nf_ct_l3proto_unregister_sysctl(struct nf_conntrack_l3proto
*l3proto
)
179 if (l3proto
->ctl_table_header
!= NULL
)
180 nf_ct_unregister_sysctl(&l3proto
->ctl_table_header
,
181 l3proto
->ctl_table
, NULL
);
185 int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto
*proto
)
189 if (proto
->l3proto
>= AF_MAX
)
192 mutex_lock(&nf_ct_proto_mutex
);
193 if (nf_ct_l3protos
[proto
->l3proto
] != &nf_conntrack_l3proto_generic
) {
198 ret
= nf_ct_l3proto_register_sysctl(proto
);
202 rcu_assign_pointer(nf_ct_l3protos
[proto
->l3proto
], proto
);
205 mutex_unlock(&nf_ct_proto_mutex
);
208 EXPORT_SYMBOL_GPL(nf_conntrack_l3proto_register
);
210 void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto
*proto
)
212 BUG_ON(proto
->l3proto
>= AF_MAX
);
214 mutex_lock(&nf_ct_proto_mutex
);
215 BUG_ON(nf_ct_l3protos
[proto
->l3proto
] != proto
);
216 rcu_assign_pointer(nf_ct_l3protos
[proto
->l3proto
],
217 &nf_conntrack_l3proto_generic
);
218 nf_ct_l3proto_unregister_sysctl(proto
);
219 mutex_unlock(&nf_ct_proto_mutex
);
223 /* Remove all contrack entries for this protocol */
224 nf_ct_iterate_cleanup(kill_l3proto
, proto
);
226 EXPORT_SYMBOL_GPL(nf_conntrack_l3proto_unregister
);
228 static int nf_ct_l4proto_register_sysctl(struct nf_conntrack_l4proto
*l4proto
)
233 if (l4proto
->ctl_table
!= NULL
) {
234 err
= nf_ct_register_sysctl(l4proto
->ctl_table_header
,
235 nf_net_netfilter_sysctl_path
,
237 l4proto
->ctl_table_users
);
241 #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
242 if (l4proto
->ctl_compat_table
!= NULL
) {
243 err
= nf_ct_register_sysctl(&l4proto
->ctl_compat_table_header
,
244 nf_net_ipv4_netfilter_sysctl_path
,
245 l4proto
->ctl_compat_table
, NULL
);
248 nf_ct_unregister_sysctl(l4proto
->ctl_table_header
,
250 l4proto
->ctl_table_users
);
252 #endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
254 #endif /* CONFIG_SYSCTL */
258 static void nf_ct_l4proto_unregister_sysctl(struct nf_conntrack_l4proto
*l4proto
)
261 if (l4proto
->ctl_table_header
!= NULL
&&
262 *l4proto
->ctl_table_header
!= NULL
)
263 nf_ct_unregister_sysctl(l4proto
->ctl_table_header
,
265 l4proto
->ctl_table_users
);
266 #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
267 if (l4proto
->ctl_compat_table_header
!= NULL
)
268 nf_ct_unregister_sysctl(&l4proto
->ctl_compat_table_header
,
269 l4proto
->ctl_compat_table
, NULL
);
270 #endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
271 #endif /* CONFIG_SYSCTL */
274 /* FIXME: Allow NULL functions and sub in pointers to generic for
276 int nf_conntrack_l4proto_register(struct nf_conntrack_l4proto
*l4proto
)
280 if (l4proto
->l3proto
>= PF_MAX
)
283 mutex_lock(&nf_ct_proto_mutex
);
284 if (!nf_ct_protos
[l4proto
->l3proto
]) {
285 /* l3proto may be loaded latter. */
286 struct nf_conntrack_l4proto
**proto_array
;
289 proto_array
= kmalloc(MAX_NF_CT_PROTO
*
290 sizeof(struct nf_conntrack_l4proto
*),
292 if (proto_array
== NULL
) {
297 for (i
= 0; i
< MAX_NF_CT_PROTO
; i
++)
298 proto_array
[i
] = &nf_conntrack_l4proto_generic
;
299 nf_ct_protos
[l4proto
->l3proto
] = proto_array
;
300 } else if (nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
] !=
301 &nf_conntrack_l4proto_generic
) {
306 ret
= nf_ct_l4proto_register_sysctl(l4proto
);
310 rcu_assign_pointer(nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
],
314 mutex_unlock(&nf_ct_proto_mutex
);
317 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_register
);
319 void nf_conntrack_l4proto_unregister(struct nf_conntrack_l4proto
*l4proto
)
321 BUG_ON(l4proto
->l3proto
>= PF_MAX
);
323 mutex_lock(&nf_ct_proto_mutex
);
324 BUG_ON(nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
] != l4proto
);
325 rcu_assign_pointer(nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
],
326 &nf_conntrack_l4proto_generic
);
327 nf_ct_l4proto_unregister_sysctl(l4proto
);
328 mutex_unlock(&nf_ct_proto_mutex
);
332 /* Remove all contrack entries for this protocol */
333 nf_ct_iterate_cleanup(kill_l4proto
, l4proto
);
335 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_unregister
);
337 int nf_conntrack_proto_init(void)
342 err
= nf_ct_l4proto_register_sysctl(&nf_conntrack_l4proto_generic
);
346 for (i
= 0; i
< AF_MAX
; i
++)
347 rcu_assign_pointer(nf_ct_l3protos
[i
],
348 &nf_conntrack_l3proto_generic
);
352 void nf_conntrack_proto_fini(void)
356 nf_ct_l4proto_unregister_sysctl(&nf_conntrack_l4proto_generic
);
358 /* free l3proto protocol tables */
359 for (i
= 0; i
< PF_MAX
; i
++)
360 kfree(nf_ct_protos
[i
]);