blob: 941b5c3754af10e06907ef71fae3636c4a30239f [file] [log] [blame]
Martin Josefsson8f03dea2006-11-29 02:35:03 +01001/* L3/L4 protocol support for nf_conntrack. */
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>
Patrick McHardyd62f9ed2006-11-29 02:35:17 +010015#include <linux/mutex.h>
Martin Josefsson8f03dea2006-11-29 02:35:03 +010016#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>
25
26#include <net/netfilter/nf_conntrack.h>
27#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010028#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson8f03dea2006-11-29 02:35:03 +010029#include <net/netfilter/nf_conntrack_core.h>
30
Martin Josefsson605dcad2006-11-29 02:35:06 +010031struct nf_conntrack_l4proto **nf_ct_protos[PF_MAX] __read_mostly;
Martin Josefssonae5718f2006-11-29 02:35:08 +010032struct nf_conntrack_l3proto *nf_ct_l3protos[AF_MAX] __read_mostly;
Martin Josefsson8f03dea2006-11-29 02:35:03 +010033
Patrick McHardyd62f9ed2006-11-29 02:35:17 +010034#ifdef CONFIG_SYSCTL
35static DEFINE_MUTEX(nf_ct_proto_sysctl_mutex);
36
37static int
38nf_ct_register_sysctl(struct ctl_table_header **header, struct ctl_table *path,
39 struct ctl_table *table, unsigned int *users)
40{
41 if (*header == NULL) {
42 *header = nf_register_sysctl_table(path, table);
43 if (*header == NULL)
44 return -ENOMEM;
45 }
46 if (users != NULL)
47 (*users)++;
48 return 0;
49}
50
51static void
52nf_ct_unregister_sysctl(struct ctl_table_header **header,
53 struct ctl_table *table, unsigned int *users)
54{
55 if (users != NULL && --*users > 0)
56 return;
57 nf_unregister_sysctl_table(*header, table);
58 *header = NULL;
59}
60#endif
61
Martin Josefsson605dcad2006-11-29 02:35:06 +010062struct nf_conntrack_l4proto *
63__nf_ct_l4proto_find(u_int16_t l3proto, u_int8_t l4proto)
Martin Josefsson8f03dea2006-11-29 02:35:03 +010064{
65 if (unlikely(l3proto >= AF_MAX || nf_ct_protos[l3proto] == NULL))
Martin Josefsson605dcad2006-11-29 02:35:06 +010066 return &nf_conntrack_l4proto_generic;
Martin Josefsson8f03dea2006-11-29 02:35:03 +010067
Martin Josefsson605dcad2006-11-29 02:35:06 +010068 return nf_ct_protos[l3proto][l4proto];
Martin Josefsson8f03dea2006-11-29 02:35:03 +010069}
70
71/* this is guaranteed to always return a valid protocol helper, since
72 * it falls back to generic_protocol */
Martin Josefsson605dcad2006-11-29 02:35:06 +010073struct nf_conntrack_l4proto *
74nf_ct_l4proto_find_get(u_int16_t l3proto, u_int8_t l4proto)
Martin Josefsson8f03dea2006-11-29 02:35:03 +010075{
Martin Josefsson605dcad2006-11-29 02:35:06 +010076 struct nf_conntrack_l4proto *p;
Martin Josefsson8f03dea2006-11-29 02:35:03 +010077
78 preempt_disable();
Martin Josefsson605dcad2006-11-29 02:35:06 +010079 p = __nf_ct_l4proto_find(l3proto, l4proto);
Martin Josefsson8f03dea2006-11-29 02:35:03 +010080 if (!try_module_get(p->me))
Martin Josefsson605dcad2006-11-29 02:35:06 +010081 p = &nf_conntrack_l4proto_generic;
Martin Josefsson8f03dea2006-11-29 02:35:03 +010082 preempt_enable();
83
84 return p;
85}
86
Martin Josefsson605dcad2006-11-29 02:35:06 +010087void nf_ct_l4proto_put(struct nf_conntrack_l4proto *p)
Martin Josefsson8f03dea2006-11-29 02:35:03 +010088{
89 module_put(p->me);
90}
91
92struct nf_conntrack_l3proto *
93nf_ct_l3proto_find_get(u_int16_t l3proto)
94{
95 struct nf_conntrack_l3proto *p;
96
97 preempt_disable();
98 p = __nf_ct_l3proto_find(l3proto);
99 if (!try_module_get(p->me))
Martin Josefsson605dcad2006-11-29 02:35:06 +0100100 p = &nf_conntrack_l3proto_generic;
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100101 preempt_enable();
102
103 return p;
104}
105
106void nf_ct_l3proto_put(struct nf_conntrack_l3proto *p)
107{
108 module_put(p->me);
109}
110
111int
112nf_ct_l3proto_try_module_get(unsigned short l3proto)
113{
114 int ret;
115 struct nf_conntrack_l3proto *p;
116
117retry: p = nf_ct_l3proto_find_get(l3proto);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100118 if (p == &nf_conntrack_l3proto_generic) {
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100119 ret = request_module("nf_conntrack-%d", l3proto);
120 if (!ret)
121 goto retry;
122
123 return -EPROTOTYPE;
124 }
125
126 return 0;
127}
128
129void nf_ct_l3proto_module_put(unsigned short l3proto)
130{
131 struct nf_conntrack_l3proto *p;
132
133 preempt_disable();
134 p = __nf_ct_l3proto_find(l3proto);
135 preempt_enable();
136
137 module_put(p->me);
138}
139
140static int kill_l3proto(struct nf_conn *i, void *data)
141{
142 return (i->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num ==
143 ((struct nf_conntrack_l3proto *)data)->l3proto);
144}
145
Martin Josefsson605dcad2006-11-29 02:35:06 +0100146static int kill_l4proto(struct nf_conn *i, void *data)
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100147{
Martin Josefsson605dcad2006-11-29 02:35:06 +0100148 struct nf_conntrack_l4proto *l4proto;
149 l4proto = (struct nf_conntrack_l4proto *)data;
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100150 return (i->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum ==
Martin Josefsson605dcad2006-11-29 02:35:06 +0100151 l4proto->l4proto) &&
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100152 (i->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num ==
Martin Josefsson605dcad2006-11-29 02:35:06 +0100153 l4proto->l3proto);
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100154}
155
Patrick McHardyd62f9ed2006-11-29 02:35:17 +0100156static int nf_ct_l3proto_register_sysctl(struct nf_conntrack_l3proto *l3proto)
157{
158 int err = 0;
159
160#ifdef CONFIG_SYSCTL
161 mutex_lock(&nf_ct_proto_sysctl_mutex);
162 if (l3proto->ctl_table != NULL) {
163 err = nf_ct_register_sysctl(&l3proto->ctl_table_header,
164 l3proto->ctl_table_path,
165 l3proto->ctl_table, NULL);
166 }
167 mutex_unlock(&nf_ct_proto_sysctl_mutex);
168#endif
169 return err;
170}
171
172static void nf_ct_l3proto_unregister_sysctl(struct nf_conntrack_l3proto *l3proto)
173{
174#ifdef CONFIG_SYSCTL
175 mutex_lock(&nf_ct_proto_sysctl_mutex);
176 if (l3proto->ctl_table_header != NULL)
177 nf_ct_unregister_sysctl(&l3proto->ctl_table_header,
178 l3proto->ctl_table, NULL);
179 mutex_unlock(&nf_ct_proto_sysctl_mutex);
180#endif
181}
182
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100183int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto *proto)
184{
185 int ret = 0;
186
Martin Josefssonae5718f2006-11-29 02:35:08 +0100187 if (proto->l3proto >= AF_MAX) {
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100188 ret = -EBUSY;
189 goto out;
190 }
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100191
Martin Josefssonae5718f2006-11-29 02:35:08 +0100192 write_lock_bh(&nf_conntrack_lock);
193 if (nf_ct_l3protos[proto->l3proto] != &nf_conntrack_l3proto_generic) {
194 ret = -EBUSY;
195 goto out_unlock;
196 }
197 nf_ct_l3protos[proto->l3proto] = proto;
Patrick McHardyd62f9ed2006-11-29 02:35:17 +0100198 write_unlock_bh(&nf_conntrack_lock);
199
200 ret = nf_ct_l3proto_register_sysctl(proto);
201 if (ret < 0)
202 nf_conntrack_l3proto_unregister(proto);
203 return ret;
Martin Josefssonae5718f2006-11-29 02:35:08 +0100204
205out_unlock:
206 write_unlock_bh(&nf_conntrack_lock);
207out:
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100208 return ret;
209}
210
Martin Josefssonae5718f2006-11-29 02:35:08 +0100211int nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto *proto)
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100212{
Martin Josefssonae5718f2006-11-29 02:35:08 +0100213 int ret = 0;
214
215 if (proto->l3proto >= AF_MAX) {
216 ret = -EBUSY;
217 goto out;
218 }
219
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100220 write_lock_bh(&nf_conntrack_lock);
Martin Josefssonae5718f2006-11-29 02:35:08 +0100221 if (nf_ct_l3protos[proto->l3proto] != proto) {
222 write_unlock_bh(&nf_conntrack_lock);
223 ret = -EBUSY;
224 goto out;
225 }
226
Martin Josefsson605dcad2006-11-29 02:35:06 +0100227 nf_ct_l3protos[proto->l3proto] = &nf_conntrack_l3proto_generic;
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100228 write_unlock_bh(&nf_conntrack_lock);
229
Patrick McHardyd62f9ed2006-11-29 02:35:17 +0100230 nf_ct_l3proto_unregister_sysctl(proto);
231
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100232 /* Somebody could be still looking at the proto in bh. */
233 synchronize_net();
234
235 /* Remove all contrack entries for this protocol */
236 nf_ct_iterate_cleanup(kill_l3proto, proto);
Martin Josefssonae5718f2006-11-29 02:35:08 +0100237
238out:
239 return ret;
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100240}
241
Patrick McHardyd62f9ed2006-11-29 02:35:17 +0100242static int nf_ct_l4proto_register_sysctl(struct nf_conntrack_l4proto *l4proto)
243{
244 int err = 0;
245
246#ifdef CONFIG_SYSCTL
247 mutex_lock(&nf_ct_proto_sysctl_mutex);
248 if (l4proto->ctl_table != NULL) {
249 err = nf_ct_register_sysctl(l4proto->ctl_table_header,
250 nf_net_netfilter_sysctl_path,
251 l4proto->ctl_table,
252 l4proto->ctl_table_users);
253 }
254 mutex_unlock(&nf_ct_proto_sysctl_mutex);
255#endif
256 return err;
257}
258
259static void nf_ct_l4proto_unregister_sysctl(struct nf_conntrack_l4proto *l4proto)
260{
261#ifdef CONFIG_SYSCTL
262 mutex_lock(&nf_ct_proto_sysctl_mutex);
263 if (l4proto->ctl_table_header != NULL &&
264 *l4proto->ctl_table_header != NULL)
265 nf_ct_unregister_sysctl(l4proto->ctl_table_header,
266 l4proto->ctl_table,
267 l4proto->ctl_table_users);
268 mutex_unlock(&nf_ct_proto_sysctl_mutex);
269#endif
270}
271
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100272/* FIXME: Allow NULL functions and sub in pointers to generic for
273 them. --RR */
Martin Josefsson605dcad2006-11-29 02:35:06 +0100274int nf_conntrack_l4proto_register(struct nf_conntrack_l4proto *l4proto)
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100275{
276 int ret = 0;
277
Martin Josefssonae5718f2006-11-29 02:35:08 +0100278 if (l4proto->l3proto >= PF_MAX) {
279 ret = -EBUSY;
280 goto out;
281 }
282
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100283retry:
284 write_lock_bh(&nf_conntrack_lock);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100285 if (nf_ct_protos[l4proto->l3proto]) {
286 if (nf_ct_protos[l4proto->l3proto][l4proto->l4proto]
287 != &nf_conntrack_l4proto_generic) {
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100288 ret = -EBUSY;
289 goto out_unlock;
290 }
291 } else {
292 /* l3proto may be loaded latter. */
Martin Josefsson605dcad2006-11-29 02:35:06 +0100293 struct nf_conntrack_l4proto **proto_array;
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100294 int i;
295
296 write_unlock_bh(&nf_conntrack_lock);
297
Martin Josefsson605dcad2006-11-29 02:35:06 +0100298 proto_array = (struct nf_conntrack_l4proto **)
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100299 kmalloc(MAX_NF_CT_PROTO *
Martin Josefsson605dcad2006-11-29 02:35:06 +0100300 sizeof(struct nf_conntrack_l4proto *),
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100301 GFP_KERNEL);
302 if (proto_array == NULL) {
303 ret = -ENOMEM;
304 goto out;
305 }
306 for (i = 0; i < MAX_NF_CT_PROTO; i++)
Martin Josefsson605dcad2006-11-29 02:35:06 +0100307 proto_array[i] = &nf_conntrack_l4proto_generic;
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100308
309 write_lock_bh(&nf_conntrack_lock);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100310 if (nf_ct_protos[l4proto->l3proto]) {
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100311 /* bad timing, but no problem */
312 write_unlock_bh(&nf_conntrack_lock);
313 kfree(proto_array);
314 } else {
Martin Josefsson605dcad2006-11-29 02:35:06 +0100315 nf_ct_protos[l4proto->l3proto] = proto_array;
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100316 write_unlock_bh(&nf_conntrack_lock);
317 }
318
319 /*
320 * Just once because array is never freed until unloading
321 * nf_conntrack.ko
322 */
323 goto retry;
324 }
325
Martin Josefsson605dcad2006-11-29 02:35:06 +0100326 nf_ct_protos[l4proto->l3proto][l4proto->l4proto] = l4proto;
Patrick McHardyd62f9ed2006-11-29 02:35:17 +0100327 write_unlock_bh(&nf_conntrack_lock);
328
329 ret = nf_ct_l4proto_register_sysctl(l4proto);
330 if (ret < 0)
331 nf_conntrack_l4proto_unregister(l4proto);
332 return ret;
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100333
334out_unlock:
335 write_unlock_bh(&nf_conntrack_lock);
336out:
337 return ret;
338}
339
Martin Josefssonae5718f2006-11-29 02:35:08 +0100340int nf_conntrack_l4proto_unregister(struct nf_conntrack_l4proto *l4proto)
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100341{
Martin Josefssonae5718f2006-11-29 02:35:08 +0100342 int ret = 0;
343
344 if (l4proto->l3proto >= PF_MAX) {
345 ret = -EBUSY;
346 goto out;
347 }
348
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100349 write_lock_bh(&nf_conntrack_lock);
Martin Josefssonae5718f2006-11-29 02:35:08 +0100350 if (nf_ct_protos[l4proto->l3proto][l4proto->l4proto]
351 != l4proto) {
352 write_unlock_bh(&nf_conntrack_lock);
353 ret = -EBUSY;
354 goto out;
355 }
Martin Josefsson605dcad2006-11-29 02:35:06 +0100356 nf_ct_protos[l4proto->l3proto][l4proto->l4proto]
357 = &nf_conntrack_l4proto_generic;
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100358 write_unlock_bh(&nf_conntrack_lock);
359
Patrick McHardyd62f9ed2006-11-29 02:35:17 +0100360 nf_ct_l4proto_unregister_sysctl(l4proto);
361
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100362 /* Somebody could be still looking at the proto in bh. */
363 synchronize_net();
364
365 /* Remove all contrack entries for this protocol */
Martin Josefsson605dcad2006-11-29 02:35:06 +0100366 nf_ct_iterate_cleanup(kill_l4proto, l4proto);
Martin Josefssonae5718f2006-11-29 02:35:08 +0100367
368out:
369 return ret;
Martin Josefsson8f03dea2006-11-29 02:35:03 +0100370}