Merge branch 'master' of git://1984.lsi.us.es/net-next-2.6
[deliverable/linux.git] / net / netfilter / nf_conntrack_helper.c
CommitLineData
7e5d03bb
MJ
1/* Helper handling for netfilter. */
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>
15#include <linux/skbuff.h>
16#include <linux/vmalloc.h>
17#include <linux/stddef.h>
7e5d03bb
MJ
18#include <linux/random.h>
19#include <linux/err.h>
20#include <linux/kernel.h>
21#include <linux/netdevice.h>
2ba4cc31 22#include <linux/rculist.h>
efb9a8c2 23#include <linux/rtnetlink.h>
7e5d03bb 24
7e5d03bb
MJ
25#include <net/netfilter/nf_conntrack.h>
26#include <net/netfilter/nf_conntrack_l3proto.h>
605dcad6 27#include <net/netfilter/nf_conntrack_l4proto.h>
7e5d03bb
MJ
28#include <net/netfilter/nf_conntrack_helper.h>
29#include <net/netfilter/nf_conntrack_core.h>
ceceae1b 30#include <net/netfilter/nf_conntrack_extend.h>
7e5d03bb 31
58a3c9bb 32static DEFINE_MUTEX(nf_ct_helper_mutex);
b8a7fe6c
PM
33static struct hlist_head *nf_ct_helper_hash __read_mostly;
34static unsigned int nf_ct_helper_hsize __read_mostly;
35static unsigned int nf_ct_helper_count __read_mostly;
36static int nf_ct_helper_vmalloc;
37
38
39/* Stupid hash, but collision free for the default registrations of the
40 * helpers currently in the kernel. */
41static unsigned int helper_hash(const struct nf_conntrack_tuple *tuple)
42{
43 return (((tuple->src.l3num << 8) | tuple->dst.protonum) ^
a34c4589 44 (__force __u16)tuple->src.u.all) % nf_ct_helper_hsize;
b8a7fe6c 45}
7e5d03bb 46
226c0c0e 47static struct nf_conntrack_helper *
7e5d03bb
MJ
48__nf_ct_helper_find(const struct nf_conntrack_tuple *tuple)
49{
b8a7fe6c 50 struct nf_conntrack_helper *helper;
d4156e8c 51 struct nf_conntrack_tuple_mask mask = { .src.u.all = htons(0xFFFF) };
b8a7fe6c
PM
52 struct hlist_node *n;
53 unsigned int h;
7e5d03bb 54
b8a7fe6c
PM
55 if (!nf_ct_helper_count)
56 return NULL;
57
58 h = helper_hash(tuple);
58a3c9bb 59 hlist_for_each_entry_rcu(helper, n, &nf_ct_helper_hash[h], hnode) {
b8a7fe6c
PM
60 if (nf_ct_tuple_src_mask_cmp(tuple, &helper->tuple, &mask))
61 return helper;
7e5d03bb
MJ
62 }
63 return NULL;
64}
7e5d03bb
MJ
65
66struct nf_conntrack_helper *
794e6871 67__nf_conntrack_helper_find(const char *name, u16 l3num, u8 protonum)
7e5d03bb
MJ
68{
69 struct nf_conntrack_helper *h;
b8a7fe6c
PM
70 struct hlist_node *n;
71 unsigned int i;
7e5d03bb 72
b8a7fe6c 73 for (i = 0; i < nf_ct_helper_hsize; i++) {
58a3c9bb 74 hlist_for_each_entry_rcu(h, n, &nf_ct_helper_hash[i], hnode) {
794e6871
PM
75 if (!strcmp(h->name, name) &&
76 h->tuple.src.l3num == l3num &&
77 h->tuple.dst.protonum == protonum)
b8a7fe6c
PM
78 return h;
79 }
7e5d03bb 80 }
7e5d03bb
MJ
81 return NULL;
82}
794e6871 83EXPORT_SYMBOL_GPL(__nf_conntrack_helper_find);
7e5d03bb 84
84f3bb9a
PM
85struct nf_conntrack_helper *
86nf_conntrack_helper_try_module_get(const char *name, u16 l3num, u8 protonum)
87{
88 struct nf_conntrack_helper *h;
89
90 h = __nf_conntrack_helper_find(name, l3num, protonum);
91#ifdef CONFIG_MODULES
92 if (h == NULL) {
93 if (request_module("nfct-helper-%s", name) == 0)
94 h = __nf_conntrack_helper_find(name, l3num, protonum);
95 }
96#endif
97 if (h != NULL && !try_module_get(h->me))
98 h = NULL;
99
100 return h;
101}
102EXPORT_SYMBOL_GPL(nf_conntrack_helper_try_module_get);
103
b560580a
PM
104struct nf_conn_help *nf_ct_helper_ext_add(struct nf_conn *ct, gfp_t gfp)
105{
106 struct nf_conn_help *help;
107
108 help = nf_ct_ext_add(ct, NF_CT_EXT_HELPER, gfp);
109 if (help)
110 INIT_HLIST_HEAD(&help->expectations);
111 else
112 pr_debug("failed to add helper extension area");
113 return help;
114}
115EXPORT_SYMBOL_GPL(nf_ct_helper_ext_add);
116
b2a15a60
PM
117int __nf_ct_try_assign_helper(struct nf_conn *ct, struct nf_conn *tmpl,
118 gfp_t flags)
226c0c0e 119{
b2a15a60
PM
120 struct nf_conntrack_helper *helper = NULL;
121 struct nf_conn_help *help;
226c0c0e 122 int ret = 0;
226c0c0e 123
b2a15a60
PM
124 if (tmpl != NULL) {
125 help = nfct_help(tmpl);
126 if (help != NULL)
127 helper = help->helper;
128 }
129
130 help = nfct_help(ct);
131 if (helper == NULL)
132 helper = __nf_ct_helper_find(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
226c0c0e
PNA
133 if (helper == NULL) {
134 if (help)
135 rcu_assign_pointer(help->helper, NULL);
136 goto out;
137 }
138
139 if (help == NULL) {
140 help = nf_ct_helper_ext_add(ct, flags);
141 if (help == NULL) {
142 ret = -ENOMEM;
143 goto out;
144 }
145 } else {
146 memset(&help->help, 0, sizeof(help->help));
147 }
148
149 rcu_assign_pointer(help->helper, helper);
150out:
151 return ret;
152}
153EXPORT_SYMBOL_GPL(__nf_ct_try_assign_helper);
154
7e5d03bb
MJ
155static inline int unhelp(struct nf_conntrack_tuple_hash *i,
156 const struct nf_conntrack_helper *me)
157{
158 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(i);
159 struct nf_conn_help *help = nfct_help(ct);
160
c5d277d2
ED
161 if (help && rcu_dereference_protected(
162 help->helper,
163 lockdep_is_held(&nf_conntrack_lock)
164 ) == me) {
7e5d03bb 165 nf_conntrack_event(IPCT_HELPER, ct);
3c158f7f 166 rcu_assign_pointer(help->helper, NULL);
7e5d03bb
MJ
167 }
168 return 0;
169}
170
9858a3ae
PNA
171void nf_ct_helper_destroy(struct nf_conn *ct)
172{
173 struct nf_conn_help *help = nfct_help(ct);
174 struct nf_conntrack_helper *helper;
175
176 if (help) {
177 rcu_read_lock();
178 helper = rcu_dereference(help->helper);
179 if (helper && helper->destroy)
180 helper->destroy(ct);
181 rcu_read_unlock();
182 }
183}
184
7e5d03bb
MJ
185int nf_conntrack_helper_register(struct nf_conntrack_helper *me)
186{
b8a7fe6c
PM
187 unsigned int h = helper_hash(&me->tuple);
188
6002f266
PM
189 BUG_ON(me->expect_policy == NULL);
190 BUG_ON(me->expect_class_max >= NF_CT_MAX_EXPECT_CLASSES);
af9d32ad 191 BUG_ON(strlen(me->name) > NF_CT_HELPER_NAME_LEN - 1);
7e5d03bb 192
58a3c9bb
PM
193 mutex_lock(&nf_ct_helper_mutex);
194 hlist_add_head_rcu(&me->hnode, &nf_ct_helper_hash[h]);
b8a7fe6c 195 nf_ct_helper_count++;
58a3c9bb 196 mutex_unlock(&nf_ct_helper_mutex);
7e5d03bb
MJ
197
198 return 0;
199}
13b18339 200EXPORT_SYMBOL_GPL(nf_conntrack_helper_register);
7e5d03bb 201
68047937
AD
202static void __nf_conntrack_helper_unregister(struct nf_conntrack_helper *me,
203 struct net *net)
7e5d03bb 204{
7e5d03bb 205 struct nf_conntrack_tuple_hash *h;
31f15875 206 struct nf_conntrack_expect *exp;
58c0fb0d 207 const struct hlist_node *n, *next;
ea781f19 208 const struct hlist_nulls_node *nn;
31f15875 209 unsigned int i;
7e5d03bb 210
7e5d03bb 211 /* Get rid of expectations */
31f15875
PM
212 for (i = 0; i < nf_ct_expect_hsize; i++) {
213 hlist_for_each_entry_safe(exp, n, next,
68047937 214 &net->ct.expect_hash[i], hnode) {
31f15875 215 struct nf_conn_help *help = nfct_help(exp->master);
c5d277d2
ED
216 if ((rcu_dereference_protected(
217 help->helper,
218 lockdep_is_held(&nf_conntrack_lock)
219 ) == me || exp->helper == me) &&
31f15875
PM
220 del_timer(&exp->timeout)) {
221 nf_ct_unlink_expect(exp);
222 nf_ct_expect_put(exp);
223 }
7e5d03bb
MJ
224 }
225 }
226
227 /* Get rid of expecteds, set helpers to NULL. */
38fb0afc 228 hlist_nulls_for_each_entry(h, nn, &net->ct.unconfirmed, hnnode)
7e5d03bb 229 unhelp(h, me);
d696c7bd 230 for (i = 0; i < net->ct.htable_size; i++) {
ea781f19 231 hlist_nulls_for_each_entry(h, nn, &net->ct.hash[i], hnnode)
7e5d03bb
MJ
232 unhelp(h, me);
233 }
68047937
AD
234}
235
236void nf_conntrack_helper_unregister(struct nf_conntrack_helper *me)
237{
238 struct net *net;
239
240 mutex_lock(&nf_ct_helper_mutex);
241 hlist_del_rcu(&me->hnode);
242 nf_ct_helper_count--;
243 mutex_unlock(&nf_ct_helper_mutex);
244
245 /* Make sure every nothing is still using the helper unless its a
246 * connection in the hash.
247 */
248 synchronize_rcu();
249
efb9a8c2 250 rtnl_lock();
68047937
AD
251 spin_lock_bh(&nf_conntrack_lock);
252 for_each_net(net)
253 __nf_conntrack_helper_unregister(me, net);
f8ba1aff 254 spin_unlock_bh(&nf_conntrack_lock);
efb9a8c2 255 rtnl_unlock();
7e5d03bb 256}
13b18339 257EXPORT_SYMBOL_GPL(nf_conntrack_helper_unregister);
ceceae1b 258
61eb3107 259static struct nf_ct_ext_type helper_extend __read_mostly = {
ceceae1b
YK
260 .len = sizeof(struct nf_conn_help),
261 .align = __alignof__(struct nf_conn_help),
262 .id = NF_CT_EXT_HELPER,
263};
264
8d4bc5b6 265int nf_conntrack_helper_init(void)
ceceae1b 266{
b8a7fe6c
PM
267 int err;
268
269 nf_ct_helper_hsize = 1; /* gets rounded up to use one page */
270 nf_ct_helper_hash = nf_ct_alloc_hashtable(&nf_ct_helper_hsize,
ea781f19 271 &nf_ct_helper_vmalloc, 0);
b8a7fe6c
PM
272 if (!nf_ct_helper_hash)
273 return -ENOMEM;
274
275 err = nf_ct_extend_register(&helper_extend);
276 if (err < 0)
277 goto err1;
278
279 return 0;
280
281err1:
282 nf_ct_free_hashtable(nf_ct_helper_hash, nf_ct_helper_vmalloc,
283 nf_ct_helper_hsize);
284 return err;
ceceae1b
YK
285}
286
8d4bc5b6 287void nf_conntrack_helper_fini(void)
ceceae1b
YK
288{
289 nf_ct_extend_unregister(&helper_extend);
b8a7fe6c
PM
290 nf_ct_free_hashtable(nf_ct_helper_hash, nf_ct_helper_vmalloc,
291 nf_ct_helper_hsize);
ceceae1b 292}
This page took 0.39756 seconds and 5 git commands to generate.