blob: 767bbe98a0f06c39234cc9fc31bfabe1b42575fb [file] [log] [blame]
Martin Josefsson7e5d03b2006-11-29 02:34:59 +01001/* 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>
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010018#include <linux/random.h>
19#include <linux/err.h>
20#include <linux/kernel.h>
21#include <linux/netdevice.h>
Ingo Molnar2ba4cc32008-05-13 15:37:05 +020022#include <linux/rculist.h>
Alexey Dobriyanefb9a8c2008-11-05 03:03:18 -080023#include <linux/rtnetlink.h>
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010024
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010025#include <net/netfilter/nf_conntrack.h>
26#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010027#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010028#include <net/netfilter/nf_conntrack_helper.h>
29#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -070030#include <net/netfilter/nf_conntrack_extend.h>
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010031
Patrick McHardy58a3c9b2008-01-31 04:36:54 -080032static DEFINE_MUTEX(nf_ct_helper_mutex);
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070033static 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) ^
Al Viroa34c4582007-07-26 17:33:19 +010044 (__force __u16)tuple->src.u.all) % nf_ct_helper_hsize;
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070045}
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010046
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +010047static struct nf_conntrack_helper *
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010048__nf_ct_helper_find(const struct nf_conntrack_tuple *tuple)
49{
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070050 struct nf_conntrack_helper *helper;
Patrick McHardyd4156e82007-07-07 22:31:32 -070051 struct nf_conntrack_tuple_mask mask = { .src.u.all = htons(0xFFFF) };
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070052 struct hlist_node *n;
53 unsigned int h;
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010054
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070055 if (!nf_ct_helper_count)
56 return NULL;
57
58 h = helper_hash(tuple);
Patrick McHardy58a3c9b2008-01-31 04:36:54 -080059 hlist_for_each_entry_rcu(helper, n, &nf_ct_helper_hash[h], hnode) {
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070060 if (nf_ct_tuple_src_mask_cmp(tuple, &helper->tuple, &mask))
61 return helper;
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010062 }
63 return NULL;
64}
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010065
66struct nf_conntrack_helper *
Patrick McHardy794e6872010-02-03 13:41:29 +010067__nf_conntrack_helper_find(const char *name, u16 l3num, u8 protonum)
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010068{
69 struct nf_conntrack_helper *h;
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070070 struct hlist_node *n;
71 unsigned int i;
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010072
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070073 for (i = 0; i < nf_ct_helper_hsize; i++) {
Patrick McHardy58a3c9b2008-01-31 04:36:54 -080074 hlist_for_each_entry_rcu(h, n, &nf_ct_helper_hash[i], hnode) {
Patrick McHardy794e6872010-02-03 13:41:29 +010075 if (!strcmp(h->name, name) &&
76 h->tuple.src.l3num == l3num &&
77 h->tuple.dst.protonum == protonum)
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070078 return h;
79 }
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010080 }
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010081 return NULL;
82}
Patrick McHardy794e6872010-02-03 13:41:29 +010083EXPORT_SYMBOL_GPL(__nf_conntrack_helper_find);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010084
Patrick McHardy84f3bb92010-02-03 17:17:06 +010085struct 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
Patrick McHardyb5605802007-07-07 22:35:56 -0700104struct 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
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100117int __nf_ct_try_assign_helper(struct nf_conn *ct, struct nf_conn *tmpl,
118 gfp_t flags)
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100119{
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100120 struct nf_conntrack_helper *helper = NULL;
121 struct nf_conn_help *help;
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100122 int ret = 0;
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100123
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100124 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);
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100133 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
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100155static 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
Eric Dumazetc5d277d2010-11-15 19:45:13 +0100161 if (help && rcu_dereference_protected(
162 help->helper,
163 lockdep_is_held(&nf_conntrack_lock)
164 ) == me) {
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100165 nf_conntrack_event(IPCT_HELPER, ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700166 rcu_assign_pointer(help->helper, NULL);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100167 }
168 return 0;
169}
170
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200171void 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
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100185int nf_conntrack_helper_register(struct nf_conntrack_helper *me)
186{
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700187 unsigned int h = helper_hash(&me->tuple);
188
Patrick McHardy6002f2662008-03-25 20:09:15 -0700189 BUG_ON(me->expect_policy == NULL);
190 BUG_ON(me->expect_class_max >= NF_CT_MAX_EXPECT_CLASSES);
Holger Eitzenbergeraf9d32a2009-03-25 18:44:01 +0100191 BUG_ON(strlen(me->name) > NF_CT_HELPER_NAME_LEN - 1);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100192
Patrick McHardy58a3c9b2008-01-31 04:36:54 -0800193 mutex_lock(&nf_ct_helper_mutex);
194 hlist_add_head_rcu(&me->hnode, &nf_ct_helper_hash[h]);
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700195 nf_ct_helper_count++;
Patrick McHardy58a3c9b2008-01-31 04:36:54 -0800196 mutex_unlock(&nf_ct_helper_mutex);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100197
198 return 0;
199}
Patrick McHardy13b18332006-12-02 22:11:25 -0800200EXPORT_SYMBOL_GPL(nf_conntrack_helper_register);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100201
Alexey Dobriyan68047932008-10-08 11:35:06 +0200202static void __nf_conntrack_helper_unregister(struct nf_conntrack_helper *me,
203 struct net *net)
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100204{
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100205 struct nf_conntrack_tuple_hash *h;
Patrick McHardy31f15872007-07-07 22:35:21 -0700206 struct nf_conntrack_expect *exp;
Jan Engelhardt58c0fb02008-04-14 11:15:42 +0200207 const struct hlist_node *n, *next;
Eric Dumazetea781f12009-03-25 21:05:46 +0100208 const struct hlist_nulls_node *nn;
Patrick McHardy31f15872007-07-07 22:35:21 -0700209 unsigned int i;
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100210
Alexey Dobriyan68047932008-10-08 11:35:06 +0200211 /* Get rid of expectations */
212 for (i = 0; i < nf_ct_expect_hsize; i++) {
213 hlist_for_each_entry_safe(exp, n, next,
214 &net->ct.expect_hash[i], hnode) {
215 struct nf_conn_help *help = nfct_help(exp->master);
Eric Dumazetc5d277d2010-11-15 19:45:13 +0100216 if ((rcu_dereference_protected(
217 help->helper,
218 lockdep_is_held(&nf_conntrack_lock)
219 ) == me || exp->helper == me) &&
Alexey Dobriyan68047932008-10-08 11:35:06 +0200220 del_timer(&exp->timeout)) {
221 nf_ct_unlink_expect(exp);
222 nf_ct_expect_put(exp);
223 }
224 }
225 }
226
227 /* Get rid of expecteds, set helpers to NULL. */
Patrick McHardy38fb0af2009-04-15 12:45:08 +0200228 hlist_nulls_for_each_entry(h, nn, &net->ct.unconfirmed, hnnode)
Alexey Dobriyan68047932008-10-08 11:35:06 +0200229 unhelp(h, me);
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800230 for (i = 0; i < net->ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100231 hlist_nulls_for_each_entry(h, nn, &net->ct.hash[i], hnnode)
Alexey Dobriyan68047932008-10-08 11:35:06 +0200232 unhelp(h, me);
233 }
234}
235
236void nf_conntrack_helper_unregister(struct nf_conntrack_helper *me)
237{
238 struct net *net;
239
Patrick McHardy58a3c9b2008-01-31 04:36:54 -0800240 mutex_lock(&nf_ct_helper_mutex);
241 hlist_del_rcu(&me->hnode);
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700242 nf_ct_helper_count--;
Patrick McHardy58a3c9b2008-01-31 04:36:54 -0800243 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
Alexey Dobriyanefb9a8c2008-11-05 03:03:18 -0800250 rtnl_lock();
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800251 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyan68047932008-10-08 11:35:06 +0200252 for_each_net(net)
253 __nf_conntrack_helper_unregister(me, net);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800254 spin_unlock_bh(&nf_conntrack_lock);
Alexey Dobriyanefb9a8c2008-11-05 03:03:18 -0800255 rtnl_unlock();
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100256}
Patrick McHardy13b18332006-12-02 22:11:25 -0800257EXPORT_SYMBOL_GPL(nf_conntrack_helper_unregister);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700258
Patrick McHardy61eb3102007-07-07 22:27:06 -0700259static struct nf_ct_ext_type helper_extend __read_mostly = {
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700260 .len = sizeof(struct nf_conn_help),
261 .align = __alignof__(struct nf_conn_help),
262 .id = NF_CT_EXT_HELPER,
263};
264
Al Viro8d4bc5b2007-07-20 16:15:28 +0100265int nf_conntrack_helper_init(void)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700266{
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700267 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,
Eric Dumazetea781f12009-03-25 21:05:46 +0100271 &nf_ct_helper_vmalloc, 0);
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700272 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;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700285}
286
Al Viro8d4bc5b2007-07-20 16:15:28 +0100287void nf_conntrack_helper_fini(void)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700288{
289 nf_ct_extend_unregister(&helper_extend);
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700290 nf_ct_free_hashtable(nf_ct_helper_hash, nf_ct_helper_vmalloc,
291 nf_ct_helper_hsize);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700292}