blob: 66c209d7e09dbbd7a628b0df867cbae82694a18a [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>
18#include <linux/slab.h>
19#include <linux/random.h>
20#include <linux/err.h>
21#include <linux/kernel.h>
22#include <linux/netdevice.h>
23
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010024#include <net/netfilter/nf_conntrack.h>
25#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010026#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010027#include <net/netfilter/nf_conntrack_helper.h>
28#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -070029#include <net/netfilter/nf_conntrack_extend.h>
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010030
Martin Josefssone2b76062006-11-29 02:35:04 +010031static __read_mostly LIST_HEAD(helpers);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010032
33struct nf_conntrack_helper *
34__nf_ct_helper_find(const struct nf_conntrack_tuple *tuple)
35{
36 struct nf_conntrack_helper *h;
Patrick McHardyd4156e82007-07-07 22:31:32 -070037 struct nf_conntrack_tuple_mask mask = { .src.u.all = htons(0xFFFF) };
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010038
39 list_for_each_entry(h, &helpers, list) {
Patrick McHardyd4156e82007-07-07 22:31:32 -070040 if (nf_ct_tuple_src_mask_cmp(tuple, &h->tuple, &mask))
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010041 return h;
42 }
43 return NULL;
44}
45
46struct nf_conntrack_helper *
47nf_ct_helper_find_get( const struct nf_conntrack_tuple *tuple)
48{
49 struct nf_conntrack_helper *helper;
50
51 /* need nf_conntrack_lock to assure that helper exists until
52 * try_module_get() is called */
53 read_lock_bh(&nf_conntrack_lock);
54
55 helper = __nf_ct_helper_find(tuple);
56 if (helper) {
57 /* need to increase module usage count to assure helper will
58 * not go away while the caller is e.g. busy putting a
59 * conntrack in the hash that uses the helper */
60 if (!try_module_get(helper->me))
61 helper = NULL;
62 }
63
64 read_unlock_bh(&nf_conntrack_lock);
65
66 return helper;
67}
Patrick McHardy13b18332006-12-02 22:11:25 -080068EXPORT_SYMBOL_GPL(nf_ct_helper_find_get);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010069
70void nf_ct_helper_put(struct nf_conntrack_helper *helper)
71{
72 module_put(helper->me);
73}
Patrick McHardy13b18332006-12-02 22:11:25 -080074EXPORT_SYMBOL_GPL(nf_ct_helper_put);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010075
76struct nf_conntrack_helper *
77__nf_conntrack_helper_find_byname(const char *name)
78{
79 struct nf_conntrack_helper *h;
80
81 list_for_each_entry(h, &helpers, list) {
82 if (!strcmp(h->name, name))
83 return h;
84 }
85
86 return NULL;
87}
Patrick McHardy13b18332006-12-02 22:11:25 -080088EXPORT_SYMBOL_GPL(__nf_conntrack_helper_find_byname);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010089
Patrick McHardyb5605802007-07-07 22:35:56 -070090struct nf_conn_help *nf_ct_helper_ext_add(struct nf_conn *ct, gfp_t gfp)
91{
92 struct nf_conn_help *help;
93
94 help = nf_ct_ext_add(ct, NF_CT_EXT_HELPER, gfp);
95 if (help)
96 INIT_HLIST_HEAD(&help->expectations);
97 else
98 pr_debug("failed to add helper extension area");
99 return help;
100}
101EXPORT_SYMBOL_GPL(nf_ct_helper_ext_add);
102
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100103static inline int unhelp(struct nf_conntrack_tuple_hash *i,
104 const struct nf_conntrack_helper *me)
105{
106 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(i);
107 struct nf_conn_help *help = nfct_help(ct);
108
109 if (help && help->helper == me) {
110 nf_conntrack_event(IPCT_HELPER, ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700111 rcu_assign_pointer(help->helper, NULL);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100112 }
113 return 0;
114}
115
116int nf_conntrack_helper_register(struct nf_conntrack_helper *me)
117{
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100118 BUG_ON(me->timeout == 0);
119
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100120 write_lock_bh(&nf_conntrack_lock);
121 list_add(&me->list, &helpers);
122 write_unlock_bh(&nf_conntrack_lock);
123
124 return 0;
125}
Patrick McHardy13b18332006-12-02 22:11:25 -0800126EXPORT_SYMBOL_GPL(nf_conntrack_helper_register);
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100127
128void nf_conntrack_helper_unregister(struct nf_conntrack_helper *me)
129{
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100130 struct nf_conntrack_tuple_hash *h;
Patrick McHardy31f15872007-07-07 22:35:21 -0700131 struct nf_conntrack_expect *exp;
132 struct hlist_node *n, *next;
133 unsigned int i;
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100134
135 /* Need write lock here, to delete helper. */
136 write_lock_bh(&nf_conntrack_lock);
137 list_del(&me->list);
138
139 /* Get rid of expectations */
Patrick McHardy31f15872007-07-07 22:35:21 -0700140 for (i = 0; i < nf_ct_expect_hsize; i++) {
141 hlist_for_each_entry_safe(exp, n, next,
142 &nf_ct_expect_hash[i], hnode) {
143 struct nf_conn_help *help = nfct_help(exp->master);
144 if ((help->helper == me || exp->helper == me) &&
145 del_timer(&exp->timeout)) {
146 nf_ct_unlink_expect(exp);
147 nf_ct_expect_put(exp);
148 }
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100149 }
150 }
151
152 /* Get rid of expecteds, set helpers to NULL. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700153 hlist_for_each_entry(h, n, &unconfirmed, hnode)
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100154 unhelp(h, me);
155 for (i = 0; i < nf_conntrack_htable_size; i++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700156 hlist_for_each_entry(h, n, &nf_conntrack_hash[i], hnode)
Martin Josefsson7e5d03b2006-11-29 02:34:59 +0100157 unhelp(h, me);
158 }
159 write_unlock_bh(&nf_conntrack_lock);
160
161 /* Someone could be still looking at the helper in a bh. */
162 synchronize_net();
163}
Patrick McHardy13b18332006-12-02 22:11:25 -0800164EXPORT_SYMBOL_GPL(nf_conntrack_helper_unregister);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700165
Patrick McHardy61eb3102007-07-07 22:27:06 -0700166static struct nf_ct_ext_type helper_extend __read_mostly = {
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700167 .len = sizeof(struct nf_conn_help),
168 .align = __alignof__(struct nf_conn_help),
169 .id = NF_CT_EXT_HELPER,
170};
171
172int nf_conntrack_helper_init()
173{
174 return nf_ct_extend_register(&helper_extend);
175}
176
177void nf_conntrack_helper_fini()
178{
179 nf_ct_extend_unregister(&helper_extend);
180}