blob: c9e0de08aa872bcbd61a4bf0b8171669a632a914 [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;
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070036
37
38/* Stupid hash, but collision free for the default registrations of the
39 * helpers currently in the kernel. */
40static unsigned int helper_hash(const struct nf_conntrack_tuple *tuple)
41{
42 return (((tuple->src.l3num << 8) | tuple->dst.protonum) ^
Al Viroa34c4582007-07-26 17:33:19 +010043 (__force __u16)tuple->src.u.all) % nf_ct_helper_hsize;
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070044}
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010045
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +010046static struct nf_conntrack_helper *
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010047__nf_ct_helper_find(const struct nf_conntrack_tuple *tuple)
48{
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070049 struct nf_conntrack_helper *helper;
Patrick McHardyd4156e82007-07-07 22:31:32 -070050 struct nf_conntrack_tuple_mask mask = { .src.u.all = htons(0xFFFF) };
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070051 struct hlist_node *n;
52 unsigned int h;
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010053
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070054 if (!nf_ct_helper_count)
55 return NULL;
56
57 h = helper_hash(tuple);
Patrick McHardy58a3c9b2008-01-31 04:36:54 -080058 hlist_for_each_entry_rcu(helper, n, &nf_ct_helper_hash[h], hnode) {
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070059 if (nf_ct_tuple_src_mask_cmp(tuple, &helper->tuple, &mask))
60 return helper;
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010061 }
62 return NULL;
63}
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010064
65struct nf_conntrack_helper *
Patrick McHardy794e6872010-02-03 13:41:29 +010066__nf_conntrack_helper_find(const char *name, u16 l3num, u8 protonum)
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010067{
68 struct nf_conntrack_helper *h;
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070069 struct hlist_node *n;
70 unsigned int i;
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010071
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070072 for (i = 0; i < nf_ct_helper_hsize; i++) {
Patrick McHardy58a3c9b2008-01-31 04:36:54 -080073 hlist_for_each_entry_rcu(h, n, &nf_ct_helper_hash[i], hnode) {
Patrick McHardy794e6872010-02-03 13:41:29 +010074 if (!strcmp(h->name, name) &&
75 h->tuple.src.l3num == l3num &&
76 h->tuple.dst.protonum == protonum)
Patrick McHardyb8a7fe62007-07-07 22:36:46 -070077 return h;
78 }
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010079 }
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010080 return NULL;
81}
Patrick McHardy794e6872010-02-03 13:41:29 +010082EXPORT_SYMBOL_GPL(__nf_conntrack_helper_find);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010083
Patrick McHardy84f3bb92010-02-03 17:17:06 +010084struct nf_conntrack_helper *
85nf_conntrack_helper_try_module_get(const char *name, u16 l3num, u8 protonum)
86{
87 struct nf_conntrack_helper *h;
88
89 h = __nf_conntrack_helper_find(name, l3num, protonum);
90#ifdef CONFIG_MODULES
91 if (h == NULL) {
92 if (request_module("nfct-helper-%s", name) == 0)
93 h = __nf_conntrack_helper_find(name, l3num, protonum);
94 }
95#endif
96 if (h != NULL && !try_module_get(h->me))
97 h = NULL;
98
99 return h;
100}
101EXPORT_SYMBOL_GPL(nf_conntrack_helper_try_module_get);
102
Patrick McHardyb5605802007-07-07 22:35:56 -0700103struct nf_conn_help *nf_ct_helper_ext_add(struct nf_conn *ct, gfp_t gfp)
104{
105 struct nf_conn_help *help;
106
107 help = nf_ct_ext_add(ct, NF_CT_EXT_HELPER, gfp);
108 if (help)
109 INIT_HLIST_HEAD(&help->expectations);
110 else
111 pr_debug("failed to add helper extension area");
112 return help;
113}
114EXPORT_SYMBOL_GPL(nf_ct_helper_ext_add);
115
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100116int __nf_ct_try_assign_helper(struct nf_conn *ct, struct nf_conn *tmpl,
117 gfp_t flags)
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100118{
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100119 struct nf_conntrack_helper *helper = NULL;
120 struct nf_conn_help *help;
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100121 int ret = 0;
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100122
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100123 if (tmpl != NULL) {
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100124 /* we've got a userspace helper. */
125 if (tmpl->status & IPS_USERSPACE_HELPER) {
126 help = nf_ct_helper_ext_add(ct, flags);
127 if (help == NULL) {
128 ret = -ENOMEM;
129 goto out;
130 }
131 rcu_assign_pointer(help->helper, NULL);
132 __set_bit(IPS_USERSPACE_HELPER_BIT, &ct->status);
133 ret = 0;
134 goto out;
135 }
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100136 help = nfct_help(tmpl);
137 if (help != NULL)
138 helper = help->helper;
139 }
140
141 help = nfct_help(ct);
142 if (helper == NULL)
143 helper = __nf_ct_helper_find(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100144 if (helper == NULL) {
145 if (help)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000146 RCU_INIT_POINTER(help->helper, NULL);
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100147 goto out;
148 }
149
150 if (help == NULL) {
151 help = nf_ct_helper_ext_add(ct, flags);
152 if (help == NULL) {
153 ret = -ENOMEM;
154 goto out;
155 }
156 } else {
157 memset(&help->help, 0, sizeof(help->help));
158 }
159
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000160 RCU_INIT_POINTER(help->helper, helper);
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100161out:
162 return ret;
163}
164EXPORT_SYMBOL_GPL(__nf_ct_try_assign_helper);
165
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100166static inline int unhelp(struct nf_conntrack_tuple_hash *i,
167 const struct nf_conntrack_helper *me)
168{
169 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(i);
170 struct nf_conn_help *help = nfct_help(ct);
171
Eric Dumazetc5d277d2010-11-15 19:45:13 +0100172 if (help && rcu_dereference_protected(
173 help->helper,
174 lockdep_is_held(&nf_conntrack_lock)
175 ) == me) {
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100176 nf_conntrack_event(IPCT_HELPER, ct);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000177 RCU_INIT_POINTER(help->helper, NULL);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100178 }
179 return 0;
180}
181
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200182void nf_ct_helper_destroy(struct nf_conn *ct)
183{
184 struct nf_conn_help *help = nfct_help(ct);
185 struct nf_conntrack_helper *helper;
186
187 if (help) {
188 rcu_read_lock();
189 helper = rcu_dereference(help->helper);
190 if (helper && helper->destroy)
191 helper->destroy(ct);
192 rcu_read_unlock();
193 }
194}
195
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100196int nf_conntrack_helper_register(struct nf_conntrack_helper *me)
197{
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700198 unsigned int h = helper_hash(&me->tuple);
199
Patrick McHardy6002f262008-03-25 20:09:15 -0700200 BUG_ON(me->expect_policy == NULL);
201 BUG_ON(me->expect_class_max >= NF_CT_MAX_EXPECT_CLASSES);
Holger Eitzenbergeraf9d32a2009-03-25 18:44:01 +0100202 BUG_ON(strlen(me->name) > NF_CT_HELPER_NAME_LEN - 1);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100203
Patrick McHardy58a3c9b2008-01-31 04:36:54 -0800204 mutex_lock(&nf_ct_helper_mutex);
205 hlist_add_head_rcu(&me->hnode, &nf_ct_helper_hash[h]);
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700206 nf_ct_helper_count++;
Patrick McHardy58a3c9b2008-01-31 04:36:54 -0800207 mutex_unlock(&nf_ct_helper_mutex);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100208
209 return 0;
210}
Patrick McHardy13b18332006-12-02 22:11:25 -0800211EXPORT_SYMBOL_GPL(nf_conntrack_helper_register);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100212
Alexey Dobriyan68047932008-10-08 11:35:06 +0200213static void __nf_conntrack_helper_unregister(struct nf_conntrack_helper *me,
214 struct net *net)
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100215{
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100216 struct nf_conntrack_tuple_hash *h;
Patrick McHardy31f15872007-07-07 22:35:21 -0700217 struct nf_conntrack_expect *exp;
Jan Engelhardt58c0fb02008-04-14 11:15:42 +0200218 const struct hlist_node *n, *next;
Eric Dumazetea781f12009-03-25 21:05:46 +0100219 const struct hlist_nulls_node *nn;
Patrick McHardy31f15872007-07-07 22:35:21 -0700220 unsigned int i;
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100221
Alexey Dobriyan68047932008-10-08 11:35:06 +0200222 /* Get rid of expectations */
223 for (i = 0; i < nf_ct_expect_hsize; i++) {
224 hlist_for_each_entry_safe(exp, n, next,
225 &net->ct.expect_hash[i], hnode) {
226 struct nf_conn_help *help = nfct_help(exp->master);
Eric Dumazetc5d277d2010-11-15 19:45:13 +0100227 if ((rcu_dereference_protected(
228 help->helper,
229 lockdep_is_held(&nf_conntrack_lock)
230 ) == me || exp->helper == me) &&
Alexey Dobriyan68047932008-10-08 11:35:06 +0200231 del_timer(&exp->timeout)) {
232 nf_ct_unlink_expect(exp);
233 nf_ct_expect_put(exp);
234 }
235 }
236 }
237
238 /* Get rid of expecteds, set helpers to NULL. */
Patrick McHardy38fb0af2009-04-15 12:45:08 +0200239 hlist_nulls_for_each_entry(h, nn, &net->ct.unconfirmed, hnnode)
Alexey Dobriyan68047932008-10-08 11:35:06 +0200240 unhelp(h, me);
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800241 for (i = 0; i < net->ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100242 hlist_nulls_for_each_entry(h, nn, &net->ct.hash[i], hnnode)
Alexey Dobriyan68047932008-10-08 11:35:06 +0200243 unhelp(h, me);
244 }
245}
246
247void nf_conntrack_helper_unregister(struct nf_conntrack_helper *me)
248{
249 struct net *net;
250
Patrick McHardy58a3c9b2008-01-31 04:36:54 -0800251 mutex_lock(&nf_ct_helper_mutex);
252 hlist_del_rcu(&me->hnode);
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700253 nf_ct_helper_count--;
Patrick McHardy58a3c9b2008-01-31 04:36:54 -0800254 mutex_unlock(&nf_ct_helper_mutex);
255
256 /* Make sure every nothing is still using the helper unless its a
257 * connection in the hash.
258 */
259 synchronize_rcu();
260
Alexey Dobriyanefb9a8c2008-11-05 03:03:18 -0800261 rtnl_lock();
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800262 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyan68047932008-10-08 11:35:06 +0200263 for_each_net(net)
264 __nf_conntrack_helper_unregister(me, net);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800265 spin_unlock_bh(&nf_conntrack_lock);
Alexey Dobriyanefb9a8c2008-11-05 03:03:18 -0800266 rtnl_unlock();
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100267}
Patrick McHardy13b18332006-12-02 22:11:25 -0800268EXPORT_SYMBOL_GPL(nf_conntrack_helper_unregister);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700269
Patrick McHardy61eb3102007-07-07 22:27:06 -0700270static struct nf_ct_ext_type helper_extend __read_mostly = {
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700271 .len = sizeof(struct nf_conn_help),
272 .align = __alignof__(struct nf_conn_help),
273 .id = NF_CT_EXT_HELPER,
274};
275
Al Viro8d4bc5b2007-07-20 16:15:28 +0100276int nf_conntrack_helper_init(void)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700277{
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700278 int err;
279
280 nf_ct_helper_hsize = 1; /* gets rounded up to use one page */
Patrick McHardyd862a662011-01-14 15:45:56 +0100281 nf_ct_helper_hash = nf_ct_alloc_hashtable(&nf_ct_helper_hsize, 0);
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700282 if (!nf_ct_helper_hash)
283 return -ENOMEM;
284
285 err = nf_ct_extend_register(&helper_extend);
286 if (err < 0)
287 goto err1;
288
289 return 0;
290
291err1:
Patrick McHardyd862a662011-01-14 15:45:56 +0100292 nf_ct_free_hashtable(nf_ct_helper_hash, nf_ct_helper_hsize);
Patrick McHardyb8a7fe62007-07-07 22:36:46 -0700293 return err;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700294}
295
Al Viro8d4bc5b2007-07-20 16:15:28 +0100296void nf_conntrack_helper_fini(void)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700297{
298 nf_ct_extend_unregister(&helper_extend);
Patrick McHardyd862a662011-01-14 15:45:56 +0100299 nf_ct_free_hashtable(nf_ct_helper_hash, nf_ct_helper_hsize);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700300}