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_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_l4proto
*
77 nf_ct_l4proto_find_get(u_int16_t l3proto
, u_int8_t l4proto
)
79 struct nf_conntrack_l4proto
*p
;
82 p
= __nf_ct_l4proto_find(l3proto
, l4proto
);
83 if (!try_module_get(p
->me
))
84 p
= &nf_conntrack_l4proto_generic
;
89 EXPORT_SYMBOL_GPL(nf_ct_l4proto_find_get
);
91 void nf_ct_l4proto_put(struct nf_conntrack_l4proto
*p
)
95 EXPORT_SYMBOL_GPL(nf_ct_l4proto_put
);
97 struct nf_conntrack_l3proto
*
98 nf_ct_l3proto_find_get(u_int16_t l3proto
)
100 struct nf_conntrack_l3proto
*p
;
103 p
= __nf_ct_l3proto_find(l3proto
);
104 if (!try_module_get(p
->me
))
105 p
= &nf_conntrack_l3proto_generic
;
110 EXPORT_SYMBOL_GPL(nf_ct_l3proto_find_get
);
112 void nf_ct_l3proto_put(struct nf_conntrack_l3proto
*p
)
116 EXPORT_SYMBOL_GPL(nf_ct_l3proto_put
);
119 nf_ct_l3proto_try_module_get(unsigned short l3proto
)
122 struct nf_conntrack_l3proto
*p
;
124 retry
: p
= nf_ct_l3proto_find_get(l3proto
);
125 if (p
== &nf_conntrack_l3proto_generic
) {
126 ret
= request_module("nf_conntrack-%d", l3proto
);
135 EXPORT_SYMBOL_GPL(nf_ct_l3proto_try_module_get
);
137 void nf_ct_l3proto_module_put(unsigned short l3proto
)
139 struct nf_conntrack_l3proto
*p
;
141 /* rcu_read_lock not necessary since the caller holds a reference */
142 p
= __nf_ct_l3proto_find(l3proto
);
145 EXPORT_SYMBOL_GPL(nf_ct_l3proto_module_put
);
147 static int kill_l3proto(struct nf_conn
*i
, void *data
)
149 return (i
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
==
150 ((struct nf_conntrack_l3proto
*)data
)->l3proto
);
153 static int kill_l4proto(struct nf_conn
*i
, void *data
)
155 struct nf_conntrack_l4proto
*l4proto
;
156 l4proto
= (struct nf_conntrack_l4proto
*)data
;
157 return (i
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
==
159 (i
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
==
163 static int nf_ct_l3proto_register_sysctl(struct nf_conntrack_l3proto
*l3proto
)
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
);
177 static void nf_ct_l3proto_unregister_sysctl(struct nf_conntrack_l3proto
*l3proto
)
180 if (l3proto
->ctl_table_header
!= NULL
)
181 nf_ct_unregister_sysctl(&l3proto
->ctl_table_header
,
182 l3proto
->ctl_table
, NULL
);
186 int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto
*proto
)
190 if (proto
->l3proto
>= AF_MAX
)
193 mutex_lock(&nf_ct_proto_mutex
);
194 if (nf_ct_l3protos
[proto
->l3proto
] != &nf_conntrack_l3proto_generic
) {
199 ret
= nf_ct_l3proto_register_sysctl(proto
);
203 rcu_assign_pointer(nf_ct_l3protos
[proto
->l3proto
], proto
);
206 mutex_unlock(&nf_ct_proto_mutex
);
209 EXPORT_SYMBOL_GPL(nf_conntrack_l3proto_register
);
211 void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto
*proto
)
213 BUG_ON(proto
->l3proto
>= AF_MAX
);
215 mutex_lock(&nf_ct_proto_mutex
);
216 BUG_ON(nf_ct_l3protos
[proto
->l3proto
] != proto
);
217 rcu_assign_pointer(nf_ct_l3protos
[proto
->l3proto
],
218 &nf_conntrack_l3proto_generic
);
219 nf_ct_l3proto_unregister_sysctl(proto
);
220 mutex_unlock(&nf_ct_proto_mutex
);
224 /* Remove all contrack entries for this protocol */
225 nf_ct_iterate_cleanup(kill_l3proto
, proto
);
227 EXPORT_SYMBOL_GPL(nf_conntrack_l3proto_unregister
);
229 static int nf_ct_l4proto_register_sysctl(struct nf_conntrack_l4proto
*l4proto
)
234 if (l4proto
->ctl_table
!= NULL
) {
235 err
= nf_ct_register_sysctl(l4proto
->ctl_table_header
,
236 nf_net_netfilter_sysctl_path
,
238 l4proto
->ctl_table_users
);
242 #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
243 if (l4proto
->ctl_compat_table
!= NULL
) {
244 err
= nf_ct_register_sysctl(&l4proto
->ctl_compat_table_header
,
245 nf_net_ipv4_netfilter_sysctl_path
,
246 l4proto
->ctl_compat_table
, NULL
);
249 nf_ct_unregister_sysctl(l4proto
->ctl_table_header
,
251 l4proto
->ctl_table_users
);
253 #endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
255 #endif /* CONFIG_SYSCTL */
259 static void nf_ct_l4proto_unregister_sysctl(struct nf_conntrack_l4proto
*l4proto
)
262 if (l4proto
->ctl_table_header
!= NULL
&&
263 *l4proto
->ctl_table_header
!= NULL
)
264 nf_ct_unregister_sysctl(l4proto
->ctl_table_header
,
266 l4proto
->ctl_table_users
);
267 #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
268 if (l4proto
->ctl_compat_table_header
!= NULL
)
269 nf_ct_unregister_sysctl(&l4proto
->ctl_compat_table_header
,
270 l4proto
->ctl_compat_table
, NULL
);
271 #endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
272 #endif /* CONFIG_SYSCTL */
275 /* FIXME: Allow NULL functions and sub in pointers to generic for
277 int nf_conntrack_l4proto_register(struct nf_conntrack_l4proto
*l4proto
)
281 if (l4proto
->l3proto
>= PF_MAX
)
284 mutex_lock(&nf_ct_proto_mutex
);
285 if (!nf_ct_protos
[l4proto
->l3proto
]) {
286 /* l3proto may be loaded latter. */
287 struct nf_conntrack_l4proto
**proto_array
;
290 proto_array
= kmalloc(MAX_NF_CT_PROTO
*
291 sizeof(struct nf_conntrack_l4proto
*),
293 if (proto_array
== NULL
) {
298 for (i
= 0; i
< MAX_NF_CT_PROTO
; i
++)
299 proto_array
[i
] = &nf_conntrack_l4proto_generic
;
300 nf_ct_protos
[l4proto
->l3proto
] = proto_array
;
301 } else if (nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
] !=
302 &nf_conntrack_l4proto_generic
) {
307 ret
= nf_ct_l4proto_register_sysctl(l4proto
);
311 rcu_assign_pointer(nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
],
315 mutex_unlock(&nf_ct_proto_mutex
);
318 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_register
);
320 void nf_conntrack_l4proto_unregister(struct nf_conntrack_l4proto
*l4proto
)
322 BUG_ON(l4proto
->l3proto
>= PF_MAX
);
324 mutex_lock(&nf_ct_proto_mutex
);
325 BUG_ON(nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
] != l4proto
);
326 rcu_assign_pointer(nf_ct_protos
[l4proto
->l3proto
][l4proto
->l4proto
],
327 &nf_conntrack_l4proto_generic
);
328 nf_ct_l4proto_unregister_sysctl(l4proto
);
329 mutex_unlock(&nf_ct_proto_mutex
);
333 /* Remove all contrack entries for this protocol */
334 nf_ct_iterate_cleanup(kill_l4proto
, l4proto
);
336 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_unregister
);
338 int nf_conntrack_proto_init(void)
343 err
= nf_ct_l4proto_register_sysctl(&nf_conntrack_l4proto_generic
);
347 for (i
= 0; i
< AF_MAX
; i
++)
348 rcu_assign_pointer(nf_ct_l3protos
[i
],
349 &nf_conntrack_l3proto_generic
);
353 void nf_conntrack_proto_fini(void)
357 nf_ct_l4proto_unregister_sysctl(&nf_conntrack_l4proto_generic
);
359 /* free l3proto protocol tables */
360 for (i
= 0; i
< PF_MAX
; i
++)
361 kfree(nf_ct_protos
[i
]);