blob: 2a7eb1da5d03fe9ee4c3ec77c5956a8c19f25077 [file] [log] [blame]
Harald Welte2e4e6a12006-01-12 13:30:04 -08001/*
2 * x_tables core - Backend for {ip,ip6,arp}_tables
3 *
4 * Copyright (C) 2006-2006 Harald Welte <laforge@netfilter.org>
5 *
6 * Based on existing ip_tables code which is
7 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
8 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 */
15
Harald Welte2e4e6a12006-01-12 13:30:04 -080016#include <linux/kernel.h>
17#include <linux/socket.h>
18#include <linux/net.h>
19#include <linux/proc_fs.h>
20#include <linux/seq_file.h>
21#include <linux/string.h>
22#include <linux/vmalloc.h>
Ingo Molnar9e19bb62006-03-25 01:41:10 -080023#include <linux/mutex.h>
Al Virod7fe0f22006-12-03 23:15:30 -050024#include <linux/mm.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020025#include <net/net_namespace.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080026
27#include <linux/netfilter/x_tables.h>
28#include <linux/netfilter_arp.h>
29
Ingo Molnar9e19bb62006-03-25 01:41:10 -080030
Harald Welte2e4e6a12006-01-12 13:30:04 -080031MODULE_LICENSE("GPL");
32MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
33MODULE_DESCRIPTION("[ip,ip6,arp]_tables backend module");
34
35#define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
36
Patrick McHardyb386d9f2007-12-17 21:47:48 -080037struct compat_delta {
38 struct compat_delta *next;
39 unsigned int offset;
40 short delta;
41};
42
Harald Welte2e4e6a12006-01-12 13:30:04 -080043struct xt_af {
Ingo Molnar9e19bb62006-03-25 01:41:10 -080044 struct mutex mutex;
Harald Welte2e4e6a12006-01-12 13:30:04 -080045 struct list_head match;
46 struct list_head target;
Patrick McHardyb386d9f2007-12-17 21:47:48 -080047#ifdef CONFIG_COMPAT
Dmitry Mishin27229712006-04-01 02:25:19 -080048 struct mutex compat_mutex;
Patrick McHardyb386d9f2007-12-17 21:47:48 -080049 struct compat_delta *compat_offsets;
50#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -080051};
52
53static struct xt_af *xt;
54
55#ifdef DEBUG_IP_FIREWALL_USER
56#define duprintf(format, args...) printk(format , ## args)
57#else
58#define duprintf(format, args...)
59#endif
60
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +020061static const char *const xt_prefix[NFPROTO_NUMPROTO] = {
62 [NFPROTO_UNSPEC] = "x",
63 [NFPROTO_IPV4] = "ip",
64 [NFPROTO_ARP] = "arp",
65 [NFPROTO_BRIDGE] = "eb",
66 [NFPROTO_IPV6] = "ip6",
Patrick McHardy37f9f732006-03-20 17:59:06 -080067};
68
Harald Welte2e4e6a12006-01-12 13:30:04 -080069/* Registration hooks for targets. */
70int
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080071xt_register_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080072{
Jan Engelhardt76108ce2008-10-08 11:35:00 +020073 u_int8_t af = target->family;
74 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -080075
Ingo Molnar9e19bb62006-03-25 01:41:10 -080076 ret = mutex_lock_interruptible(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080077 if (ret != 0)
78 return ret;
79 list_add(&target->list, &xt[af].target);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080080 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080081 return ret;
82}
83EXPORT_SYMBOL(xt_register_target);
84
85void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080086xt_unregister_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080087{
Jan Engelhardt76108ce2008-10-08 11:35:00 +020088 u_int8_t af = target->family;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080089
Ingo Molnar9e19bb62006-03-25 01:41:10 -080090 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -070091 list_del(&target->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080092 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080093}
94EXPORT_SYMBOL(xt_unregister_target);
95
96int
Patrick McHardy52d9c422006-08-22 00:33:45 -070097xt_register_targets(struct xt_target *target, unsigned int n)
98{
99 unsigned int i;
100 int err = 0;
101
102 for (i = 0; i < n; i++) {
103 err = xt_register_target(&target[i]);
104 if (err)
105 goto err;
106 }
107 return err;
108
109err:
110 if (i > 0)
111 xt_unregister_targets(target, i);
112 return err;
113}
114EXPORT_SYMBOL(xt_register_targets);
115
116void
117xt_unregister_targets(struct xt_target *target, unsigned int n)
118{
119 unsigned int i;
120
121 for (i = 0; i < n; i++)
122 xt_unregister_target(&target[i]);
123}
124EXPORT_SYMBOL(xt_unregister_targets);
125
126int
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800127xt_register_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800128{
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200129 u_int8_t af = match->family;
130 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800131
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800132 ret = mutex_lock_interruptible(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800133 if (ret != 0)
134 return ret;
135
136 list_add(&match->list, &xt[af].match);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800137 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800138
139 return ret;
140}
141EXPORT_SYMBOL(xt_register_match);
142
143void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800144xt_unregister_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800145{
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200146 u_int8_t af = match->family;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800147
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800148 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700149 list_del(&match->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800150 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800151}
152EXPORT_SYMBOL(xt_unregister_match);
153
Patrick McHardy52d9c422006-08-22 00:33:45 -0700154int
155xt_register_matches(struct xt_match *match, unsigned int n)
156{
157 unsigned int i;
158 int err = 0;
159
160 for (i = 0; i < n; i++) {
161 err = xt_register_match(&match[i]);
162 if (err)
163 goto err;
164 }
165 return err;
166
167err:
168 if (i > 0)
169 xt_unregister_matches(match, i);
170 return err;
171}
172EXPORT_SYMBOL(xt_register_matches);
173
174void
175xt_unregister_matches(struct xt_match *match, unsigned int n)
176{
177 unsigned int i;
178
179 for (i = 0; i < n; i++)
180 xt_unregister_match(&match[i]);
181}
182EXPORT_SYMBOL(xt_unregister_matches);
183
Harald Welte2e4e6a12006-01-12 13:30:04 -0800184
185/*
186 * These are weird, but module loading must not be done with mutex
187 * held (since they will register), and we have to have a single
188 * function to use try_then_request_module().
189 */
190
191/* Find match, grabs ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200192struct xt_match *xt_find_match(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800193{
194 struct xt_match *m;
195 int err = 0;
196
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800197 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800198 return ERR_PTR(-EINTR);
199
200 list_for_each_entry(m, &xt[af].match, list) {
201 if (strcmp(m->name, name) == 0) {
202 if (m->revision == revision) {
203 if (try_module_get(m->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800204 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800205 return m;
206 }
207 } else
208 err = -EPROTOTYPE; /* Found something. */
209 }
210 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800211 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800212 return ERR_PTR(err);
213}
214EXPORT_SYMBOL(xt_find_match);
215
216/* Find target, grabs ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200217struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800218{
219 struct xt_target *t;
220 int err = 0;
221
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800222 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800223 return ERR_PTR(-EINTR);
224
225 list_for_each_entry(t, &xt[af].target, list) {
226 if (strcmp(t->name, name) == 0) {
227 if (t->revision == revision) {
228 if (try_module_get(t->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800229 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800230 return t;
231 }
232 } else
233 err = -EPROTOTYPE; /* Found something. */
234 }
235 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800236 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800237 return ERR_PTR(err);
238}
239EXPORT_SYMBOL(xt_find_target);
240
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200241struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800242{
243 struct xt_target *target;
244
245 target = try_then_request_module(xt_find_target(af, name, revision),
Patrick McHardy37f9f732006-03-20 17:59:06 -0800246 "%st_%s", xt_prefix[af], name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800247 if (IS_ERR(target) || !target)
248 return NULL;
249 return target;
250}
251EXPORT_SYMBOL_GPL(xt_request_find_target);
252
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200253static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800254{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200255 const struct xt_match *m;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800256 int have_rev = 0;
257
258 list_for_each_entry(m, &xt[af].match, list) {
259 if (strcmp(m->name, name) == 0) {
260 if (m->revision > *bestp)
261 *bestp = m->revision;
262 if (m->revision == revision)
263 have_rev = 1;
264 }
265 }
266 return have_rev;
267}
268
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200269static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800270{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200271 const struct xt_target *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800272 int have_rev = 0;
273
274 list_for_each_entry(t, &xt[af].target, list) {
275 if (strcmp(t->name, name) == 0) {
276 if (t->revision > *bestp)
277 *bestp = t->revision;
278 if (t->revision == revision)
279 have_rev = 1;
280 }
281 }
282 return have_rev;
283}
284
285/* Returns true or false (if no such extension at all) */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200286int xt_find_revision(u8 af, const char *name, u8 revision, int target,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800287 int *err)
288{
289 int have_rev, best = -1;
290
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800291 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800292 *err = -EINTR;
293 return 1;
294 }
295 if (target == 1)
296 have_rev = target_revfn(af, name, revision, &best);
297 else
298 have_rev = match_revfn(af, name, revision, &best);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800299 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800300
301 /* Nothing at all? Return 0 to try loading module. */
302 if (best == -1) {
303 *err = -ENOENT;
304 return 0;
305 }
306
307 *err = best;
308 if (!have_rev)
309 *err = -EPROTONOSUPPORT;
310 return 1;
311}
312EXPORT_SYMBOL_GPL(xt_find_revision);
313
Patrick McHardy37f9f732006-03-20 17:59:06 -0800314int xt_check_match(const struct xt_match *match, unsigned short family,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800315 unsigned int size, const char *table, unsigned int hook_mask,
Patrick McHardy37f9f732006-03-20 17:59:06 -0800316 unsigned short proto, int inv_proto)
317{
318 if (XT_ALIGN(match->matchsize) != size) {
319 printk("%s_tables: %s match: invalid size %Zu != %u\n",
320 xt_prefix[family], match->name,
321 XT_ALIGN(match->matchsize), size);
322 return -EINVAL;
323 }
324 if (match->table && strcmp(match->table, table)) {
325 printk("%s_tables: %s match: only valid in %s table, not %s\n",
326 xt_prefix[family], match->name, match->table, table);
327 return -EINVAL;
328 }
329 if (match->hooks && (hook_mask & ~match->hooks) != 0) {
Balazs Scheidler5faf4152007-07-07 22:41:01 -0700330 printk("%s_tables: %s match: bad hook_mask %u/%u\n",
331 xt_prefix[family], match->name, hook_mask, match->hooks);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800332 return -EINVAL;
333 }
334 if (match->proto && (match->proto != proto || inv_proto)) {
335 printk("%s_tables: %s match: only valid for protocol %u\n",
336 xt_prefix[family], match->name, match->proto);
337 return -EINVAL;
338 }
339 return 0;
340}
341EXPORT_SYMBOL_GPL(xt_check_match);
342
Dmitry Mishin27229712006-04-01 02:25:19 -0800343#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200344int xt_compat_add_offset(u_int8_t af, unsigned int offset, short delta)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800345{
346 struct compat_delta *tmp;
347
348 tmp = kmalloc(sizeof(struct compat_delta), GFP_KERNEL);
349 if (!tmp)
350 return -ENOMEM;
351
352 tmp->offset = offset;
353 tmp->delta = delta;
354
355 if (xt[af].compat_offsets) {
356 tmp->next = xt[af].compat_offsets->next;
357 xt[af].compat_offsets->next = tmp;
358 } else {
359 xt[af].compat_offsets = tmp;
360 tmp->next = NULL;
361 }
362 return 0;
363}
364EXPORT_SYMBOL_GPL(xt_compat_add_offset);
365
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200366void xt_compat_flush_offsets(u_int8_t af)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800367{
368 struct compat_delta *tmp, *next;
369
370 if (xt[af].compat_offsets) {
371 for (tmp = xt[af].compat_offsets; tmp; tmp = next) {
372 next = tmp->next;
373 kfree(tmp);
374 }
375 xt[af].compat_offsets = NULL;
376 }
377}
378EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
379
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200380short xt_compat_calc_jump(u_int8_t af, unsigned int offset)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800381{
382 struct compat_delta *tmp;
383 short delta;
384
385 for (tmp = xt[af].compat_offsets, delta = 0; tmp; tmp = tmp->next)
386 if (tmp->offset < offset)
387 delta += tmp->delta;
388 return delta;
389}
390EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
391
Jan Engelhardt5452e422008-04-14 11:15:35 +0200392int xt_compat_match_offset(const struct xt_match *match)
Dmitry Mishin27229712006-04-01 02:25:19 -0800393{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700394 u_int16_t csize = match->compatsize ? : match->matchsize;
395 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800396}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700397EXPORT_SYMBOL_GPL(xt_compat_match_offset);
398
Patrick McHardy89566952007-12-17 21:46:40 -0800399int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800400 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700401{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200402 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700403 struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
404 int pad, off = xt_compat_match_offset(match);
405 u_int16_t msize = cm->u.user.match_size;
406
407 m = *dstptr;
408 memcpy(m, cm, sizeof(*cm));
409 if (match->compat_from_user)
410 match->compat_from_user(m->data, cm->data);
411 else
412 memcpy(m->data, cm->data, msize - sizeof(*cm));
413 pad = XT_ALIGN(match->matchsize) - match->matchsize;
414 if (pad > 0)
415 memset(m->data + match->matchsize, 0, pad);
416
417 msize += off;
418 m->u.user.match_size = msize;
419
420 *size += off;
421 *dstptr += msize;
Patrick McHardy89566952007-12-17 21:46:40 -0800422 return 0;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700423}
424EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
425
426int xt_compat_match_to_user(struct xt_entry_match *m, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800427 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700428{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200429 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700430 struct compat_xt_entry_match __user *cm = *dstptr;
431 int off = xt_compat_match_offset(match);
432 u_int16_t msize = m->u.user.match_size - off;
433
434 if (copy_to_user(cm, m, sizeof(*cm)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800435 put_user(msize, &cm->u.user.match_size) ||
436 copy_to_user(cm->u.user.name, m->u.kernel.match->name,
437 strlen(m->u.kernel.match->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800438 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700439
440 if (match->compat_to_user) {
441 if (match->compat_to_user((void __user *)cm->data, m->data))
442 return -EFAULT;
443 } else {
444 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
445 return -EFAULT;
446 }
447
448 *size -= off;
449 *dstptr += msize;
450 return 0;
451}
452EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
453#endif /* CONFIG_COMPAT */
Dmitry Mishin27229712006-04-01 02:25:19 -0800454
Patrick McHardy37f9f732006-03-20 17:59:06 -0800455int xt_check_target(const struct xt_target *target, unsigned short family,
456 unsigned int size, const char *table, unsigned int hook_mask,
457 unsigned short proto, int inv_proto)
458{
459 if (XT_ALIGN(target->targetsize) != size) {
460 printk("%s_tables: %s target: invalid size %Zu != %u\n",
461 xt_prefix[family], target->name,
462 XT_ALIGN(target->targetsize), size);
463 return -EINVAL;
464 }
465 if (target->table && strcmp(target->table, table)) {
466 printk("%s_tables: %s target: only valid in %s table, not %s\n",
467 xt_prefix[family], target->name, target->table, table);
468 return -EINVAL;
469 }
470 if (target->hooks && (hook_mask & ~target->hooks) != 0) {
Balazs Scheidler5faf4152007-07-07 22:41:01 -0700471 printk("%s_tables: %s target: bad hook_mask %u/%u\n",
472 xt_prefix[family], target->name, hook_mask,
473 target->hooks);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800474 return -EINVAL;
475 }
476 if (target->proto && (target->proto != proto || inv_proto)) {
477 printk("%s_tables: %s target: only valid for protocol %u\n",
478 xt_prefix[family], target->name, target->proto);
479 return -EINVAL;
480 }
481 return 0;
482}
483EXPORT_SYMBOL_GPL(xt_check_target);
484
Dmitry Mishin27229712006-04-01 02:25:19 -0800485#ifdef CONFIG_COMPAT
Jan Engelhardt5452e422008-04-14 11:15:35 +0200486int xt_compat_target_offset(const struct xt_target *target)
Dmitry Mishin27229712006-04-01 02:25:19 -0800487{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700488 u_int16_t csize = target->compatsize ? : target->targetsize;
489 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800490}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700491EXPORT_SYMBOL_GPL(xt_compat_target_offset);
492
493void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800494 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700495{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200496 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700497 struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
498 int pad, off = xt_compat_target_offset(target);
499 u_int16_t tsize = ct->u.user.target_size;
500
501 t = *dstptr;
502 memcpy(t, ct, sizeof(*ct));
503 if (target->compat_from_user)
504 target->compat_from_user(t->data, ct->data);
505 else
506 memcpy(t->data, ct->data, tsize - sizeof(*ct));
507 pad = XT_ALIGN(target->targetsize) - target->targetsize;
508 if (pad > 0)
509 memset(t->data + target->targetsize, 0, pad);
510
511 tsize += off;
512 t->u.user.target_size = tsize;
513
514 *size += off;
515 *dstptr += tsize;
516}
517EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
518
519int xt_compat_target_to_user(struct xt_entry_target *t, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800520 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700521{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200522 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700523 struct compat_xt_entry_target __user *ct = *dstptr;
524 int off = xt_compat_target_offset(target);
525 u_int16_t tsize = t->u.user.target_size - off;
526
527 if (copy_to_user(ct, t, sizeof(*ct)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800528 put_user(tsize, &ct->u.user.target_size) ||
529 copy_to_user(ct->u.user.name, t->u.kernel.target->name,
530 strlen(t->u.kernel.target->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800531 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700532
533 if (target->compat_to_user) {
534 if (target->compat_to_user((void __user *)ct->data, t->data))
535 return -EFAULT;
536 } else {
537 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
538 return -EFAULT;
539 }
540
541 *size -= off;
542 *dstptr += tsize;
543 return 0;
544}
545EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
Dmitry Mishin27229712006-04-01 02:25:19 -0800546#endif
547
Harald Welte2e4e6a12006-01-12 13:30:04 -0800548struct xt_table_info *xt_alloc_table_info(unsigned int size)
549{
550 struct xt_table_info *newinfo;
551 int cpu;
552
553 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
554 if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > num_physpages)
555 return NULL;
556
Eric Dumazet259d4e42007-12-04 23:24:56 -0800557 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800558 if (!newinfo)
559 return NULL;
560
561 newinfo->size = size;
562
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700563 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800564 if (size <= PAGE_SIZE)
565 newinfo->entries[cpu] = kmalloc_node(size,
566 GFP_KERNEL,
567 cpu_to_node(cpu));
568 else
569 newinfo->entries[cpu] = vmalloc_node(size,
570 cpu_to_node(cpu));
571
572 if (newinfo->entries[cpu] == NULL) {
573 xt_free_table_info(newinfo);
574 return NULL;
575 }
576 }
577
578 return newinfo;
579}
580EXPORT_SYMBOL(xt_alloc_table_info);
581
582void xt_free_table_info(struct xt_table_info *info)
583{
584 int cpu;
585
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700586 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800587 if (info->size <= PAGE_SIZE)
588 kfree(info->entries[cpu]);
589 else
590 vfree(info->entries[cpu]);
591 }
592 kfree(info);
593}
594EXPORT_SYMBOL(xt_free_table_info);
595
596/* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200597struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
598 const char *name)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800599{
600 struct xt_table *t;
601
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800602 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800603 return ERR_PTR(-EINTR);
604
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800605 list_for_each_entry(t, &net->xt.tables[af], list)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800606 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
607 return t;
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800608 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800609 return NULL;
610}
611EXPORT_SYMBOL_GPL(xt_find_table_lock);
612
613void xt_table_unlock(struct xt_table *table)
614{
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800615 mutex_unlock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800616}
617EXPORT_SYMBOL_GPL(xt_table_unlock);
618
Dmitry Mishin27229712006-04-01 02:25:19 -0800619#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200620void xt_compat_lock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800621{
622 mutex_lock(&xt[af].compat_mutex);
623}
624EXPORT_SYMBOL_GPL(xt_compat_lock);
625
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200626void xt_compat_unlock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800627{
628 mutex_unlock(&xt[af].compat_mutex);
629}
630EXPORT_SYMBOL_GPL(xt_compat_unlock);
631#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -0800632
633struct xt_table_info *
634xt_replace_table(struct xt_table *table,
635 unsigned int num_counters,
636 struct xt_table_info *newinfo,
637 int *error)
638{
639 struct xt_table_info *oldinfo, *private;
640
641 /* Do the substitution. */
642 write_lock_bh(&table->lock);
643 private = table->private;
644 /* Check inside lock: is the old number correct? */
645 if (num_counters != private->number) {
646 duprintf("num_counters != table->private->number (%u/%u)\n",
647 num_counters, private->number);
648 write_unlock_bh(&table->lock);
649 *error = -EAGAIN;
650 return NULL;
651 }
652 oldinfo = private;
653 table->private = newinfo;
654 newinfo->initial_entries = oldinfo->initial_entries;
655 write_unlock_bh(&table->lock);
656
657 return oldinfo;
658}
659EXPORT_SYMBOL_GPL(xt_replace_table);
660
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800661struct xt_table *xt_register_table(struct net *net, struct xt_table *table,
Alexey Dobriyana98da112008-01-31 04:01:49 -0800662 struct xt_table_info *bootstrap,
663 struct xt_table_info *newinfo)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800664{
665 int ret;
666 struct xt_table_info *private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700667 struct xt_table *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800668
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800669 /* Don't add one object to multiple lists. */
670 table = kmemdup(table, sizeof(struct xt_table), GFP_KERNEL);
671 if (!table) {
672 ret = -ENOMEM;
673 goto out;
674 }
675
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800676 ret = mutex_lock_interruptible(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800677 if (ret != 0)
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800678 goto out_free;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800679
680 /* Don't autoload: we'd eat our tail... */
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800681 list_for_each_entry(t, &net->xt.tables[table->af], list) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700682 if (strcmp(t->name, table->name) == 0) {
683 ret = -EEXIST;
684 goto unlock;
685 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800686 }
687
688 /* Simplifies replace_table code. */
689 table->private = bootstrap;
Dmitry Mishin91536b72006-04-24 17:18:25 -0700690 rwlock_init(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800691 if (!xt_replace_table(table, 0, newinfo, &ret))
692 goto unlock;
693
694 private = table->private;
695 duprintf("table->private->number = %u\n", private->number);
696
697 /* save number of initial entries */
698 private->initial_entries = private->number;
699
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800700 list_add(&table->list, &net->xt.tables[table->af]);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800701 mutex_unlock(&xt[table->af].mutex);
702 return table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800703
Harald Welte2e4e6a12006-01-12 13:30:04 -0800704 unlock:
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800705 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800706out_free:
707 kfree(table);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800708out:
709 return ERR_PTR(ret);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800710}
711EXPORT_SYMBOL_GPL(xt_register_table);
712
713void *xt_unregister_table(struct xt_table *table)
714{
715 struct xt_table_info *private;
716
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800717 mutex_lock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800718 private = table->private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700719 list_del(&table->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800720 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800721 kfree(table);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800722
723 return private;
724}
725EXPORT_SYMBOL_GPL(xt_unregister_table);
726
727#ifdef CONFIG_PROC_FS
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800728struct xt_names_priv {
729 struct seq_net_private p;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200730 u_int8_t af;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800731};
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800732static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800733{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800734 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900735 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200736 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800737
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800738 mutex_lock(&xt[af].mutex);
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800739 return seq_list_start(&net->xt.tables[af], *pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800740}
741
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800742static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800743{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800744 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900745 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200746 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800747
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800748 return seq_list_next(v, &net->xt.tables[af], pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800749}
750
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800751static void xt_table_seq_stop(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800752{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800753 struct xt_names_priv *priv = seq->private;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200754 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800755
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800756 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800757}
758
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800759static int xt_table_seq_show(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800760{
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800761 struct xt_table *table = list_entry(v, struct xt_table, list);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800762
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800763 if (strlen(table->name))
764 return seq_printf(seq, "%s\n", table->name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800765 else
766 return 0;
767}
768
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800769static const struct seq_operations xt_table_seq_ops = {
770 .start = xt_table_seq_start,
771 .next = xt_table_seq_next,
772 .stop = xt_table_seq_stop,
773 .show = xt_table_seq_show,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800774};
775
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800776static int xt_table_open(struct inode *inode, struct file *file)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800777{
778 int ret;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800779 struct xt_names_priv *priv;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800780
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800781 ret = seq_open_net(inode, file, &xt_table_seq_ops,
782 sizeof(struct xt_names_priv));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800783 if (!ret) {
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800784 priv = ((struct seq_file *)file->private_data)->private;
785 priv->af = (unsigned long)PDE(inode)->data;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800786 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800787 return ret;
788}
789
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800790static const struct file_operations xt_table_ops = {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800791 .owner = THIS_MODULE,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800792 .open = xt_table_open,
793 .read = seq_read,
794 .llseek = seq_lseek,
Pavel Emelyanov0e93bb942008-04-29 03:15:35 -0700795 .release = seq_release_net,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800796};
797
798static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
799{
800 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
801 u_int16_t af = (unsigned long)pde->data;
802
803 mutex_lock(&xt[af].mutex);
804 return seq_list_start(&xt[af].match, *pos);
805}
806
807static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *pos)
808{
809 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
810 u_int16_t af = (unsigned long)pde->data;
811
812 return seq_list_next(v, &xt[af].match, pos);
813}
814
815static void xt_match_seq_stop(struct seq_file *seq, void *v)
816{
817 struct proc_dir_entry *pde = seq->private;
818 u_int16_t af = (unsigned long)pde->data;
819
820 mutex_unlock(&xt[af].mutex);
821}
822
823static int xt_match_seq_show(struct seq_file *seq, void *v)
824{
825 struct xt_match *match = list_entry(v, struct xt_match, list);
826
827 if (strlen(match->name))
828 return seq_printf(seq, "%s\n", match->name);
829 else
830 return 0;
831}
832
833static const struct seq_operations xt_match_seq_ops = {
834 .start = xt_match_seq_start,
835 .next = xt_match_seq_next,
836 .stop = xt_match_seq_stop,
837 .show = xt_match_seq_show,
838};
839
840static int xt_match_open(struct inode *inode, struct file *file)
841{
842 int ret;
843
844 ret = seq_open(file, &xt_match_seq_ops);
845 if (!ret) {
846 struct seq_file *seq = file->private_data;
847
848 seq->private = PDE(inode);
849 }
850 return ret;
851}
852
853static const struct file_operations xt_match_ops = {
854 .owner = THIS_MODULE,
855 .open = xt_match_open,
856 .read = seq_read,
857 .llseek = seq_lseek,
858 .release = seq_release,
859};
860
861static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
862{
863 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
864 u_int16_t af = (unsigned long)pde->data;
865
866 mutex_lock(&xt[af].mutex);
867 return seq_list_start(&xt[af].target, *pos);
868}
869
870static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *pos)
871{
872 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
873 u_int16_t af = (unsigned long)pde->data;
874
875 return seq_list_next(v, &xt[af].target, pos);
876}
877
878static void xt_target_seq_stop(struct seq_file *seq, void *v)
879{
880 struct proc_dir_entry *pde = seq->private;
881 u_int16_t af = (unsigned long)pde->data;
882
883 mutex_unlock(&xt[af].mutex);
884}
885
886static int xt_target_seq_show(struct seq_file *seq, void *v)
887{
888 struct xt_target *target = list_entry(v, struct xt_target, list);
889
890 if (strlen(target->name))
891 return seq_printf(seq, "%s\n", target->name);
892 else
893 return 0;
894}
895
896static const struct seq_operations xt_target_seq_ops = {
897 .start = xt_target_seq_start,
898 .next = xt_target_seq_next,
899 .stop = xt_target_seq_stop,
900 .show = xt_target_seq_show,
901};
902
903static int xt_target_open(struct inode *inode, struct file *file)
904{
905 int ret;
906
907 ret = seq_open(file, &xt_target_seq_ops);
908 if (!ret) {
909 struct seq_file *seq = file->private_data;
910
911 seq->private = PDE(inode);
912 }
913 return ret;
914}
915
916static const struct file_operations xt_target_ops = {
917 .owner = THIS_MODULE,
918 .open = xt_target_open,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800919 .read = seq_read,
920 .llseek = seq_lseek,
921 .release = seq_release,
922};
923
924#define FORMAT_TABLES "_tables_names"
925#define FORMAT_MATCHES "_tables_matches"
926#define FORMAT_TARGETS "_tables_targets"
927
928#endif /* CONFIG_PROC_FS */
929
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200930int xt_proto_init(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800931{
932#ifdef CONFIG_PROC_FS
933 char buf[XT_FUNCTION_MAXNAMELEN];
934 struct proc_dir_entry *proc;
935#endif
936
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +0200937 if (af >= ARRAY_SIZE(xt_prefix))
Harald Welte2e4e6a12006-01-12 13:30:04 -0800938 return -EINVAL;
939
940
941#ifdef CONFIG_PROC_FS
Tobias Klauserce18afe2007-03-14 16:36:16 -0700942 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800943 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700944 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
945 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800946 if (!proc)
947 goto out;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800948
Tobias Klauserce18afe2007-03-14 16:36:16 -0700949 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800950 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700951 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
952 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800953 if (!proc)
954 goto out_remove_tables;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800955
Tobias Klauserce18afe2007-03-14 16:36:16 -0700956 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800957 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700958 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
959 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800960 if (!proc)
961 goto out_remove_matches;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800962#endif
963
964 return 0;
965
966#ifdef CONFIG_PROC_FS
967out_remove_matches:
Tobias Klauserce18afe2007-03-14 16:36:16 -0700968 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800969 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800970 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800971
972out_remove_tables:
Tobias Klauserce18afe2007-03-14 16:36:16 -0700973 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800974 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800975 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800976out:
977 return -1;
978#endif
979}
980EXPORT_SYMBOL_GPL(xt_proto_init);
981
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200982void xt_proto_fini(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800983{
984#ifdef CONFIG_PROC_FS
985 char buf[XT_FUNCTION_MAXNAMELEN];
986
Tobias Klauserce18afe2007-03-14 16:36:16 -0700987 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800988 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800989 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800990
Tobias Klauserce18afe2007-03-14 16:36:16 -0700991 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800992 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800993 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800994
Tobias Klauserce18afe2007-03-14 16:36:16 -0700995 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800996 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800997 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800998#endif /*CONFIG_PROC_FS*/
999}
1000EXPORT_SYMBOL_GPL(xt_proto_fini);
1001
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001002static int __net_init xt_net_init(struct net *net)
1003{
1004 int i;
1005
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001006 for (i = 0; i < NFPROTO_NUMPROTO; i++)
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001007 INIT_LIST_HEAD(&net->xt.tables[i]);
1008 return 0;
1009}
1010
1011static struct pernet_operations xt_net_ops = {
1012 .init = xt_net_init,
1013};
Harald Welte2e4e6a12006-01-12 13:30:04 -08001014
1015static int __init xt_init(void)
1016{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001017 int i, rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001018
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001019 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001020 if (!xt)
1021 return -ENOMEM;
1022
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001023 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -08001024 mutex_init(&xt[i].mutex);
Dmitry Mishin27229712006-04-01 02:25:19 -08001025#ifdef CONFIG_COMPAT
1026 mutex_init(&xt[i].compat_mutex);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001027 xt[i].compat_offsets = NULL;
Dmitry Mishin27229712006-04-01 02:25:19 -08001028#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -08001029 INIT_LIST_HEAD(&xt[i].target);
1030 INIT_LIST_HEAD(&xt[i].match);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001031 }
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001032 rv = register_pernet_subsys(&xt_net_ops);
1033 if (rv < 0)
1034 kfree(xt);
1035 return rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001036}
1037
1038static void __exit xt_fini(void)
1039{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001040 unregister_pernet_subsys(&xt_net_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001041 kfree(xt);
1042}
1043
1044module_init(xt_init);
1045module_exit(xt_fini);
1046