blob: 0bd95680a494e050ee61249a311bd450e7459da1 [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
Patrick McHardy37f9f732006-03-20 17:59:06 -080061static const char *xt_prefix[NPROTO] = {
Tobias Klauserce18afe2007-03-14 16:36:16 -070062 [AF_INET] = "ip",
63 [AF_INET6] = "ip6",
Patrick McHardy37f9f732006-03-20 17:59:06 -080064 [NF_ARP] = "arp",
65};
66
Harald Welte2e4e6a12006-01-12 13:30:04 -080067/* Registration hooks for targets. */
68int
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080069xt_register_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080070{
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080071 int ret, af = target->family;
Harald Welte2e4e6a12006-01-12 13:30:04 -080072
Ingo Molnar9e19bb62006-03-25 01:41:10 -080073 ret = mutex_lock_interruptible(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080074 if (ret != 0)
75 return ret;
76 list_add(&target->list, &xt[af].target);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080077 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080078 return ret;
79}
80EXPORT_SYMBOL(xt_register_target);
81
82void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080083xt_unregister_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080084{
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080085 int af = target->family;
86
Ingo Molnar9e19bb62006-03-25 01:41:10 -080087 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -070088 list_del(&target->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080089 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080090}
91EXPORT_SYMBOL(xt_unregister_target);
92
93int
Patrick McHardy52d9c422006-08-22 00:33:45 -070094xt_register_targets(struct xt_target *target, unsigned int n)
95{
96 unsigned int i;
97 int err = 0;
98
99 for (i = 0; i < n; i++) {
100 err = xt_register_target(&target[i]);
101 if (err)
102 goto err;
103 }
104 return err;
105
106err:
107 if (i > 0)
108 xt_unregister_targets(target, i);
109 return err;
110}
111EXPORT_SYMBOL(xt_register_targets);
112
113void
114xt_unregister_targets(struct xt_target *target, unsigned int n)
115{
116 unsigned int i;
117
118 for (i = 0; i < n; i++)
119 xt_unregister_target(&target[i]);
120}
121EXPORT_SYMBOL(xt_unregister_targets);
122
123int
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800124xt_register_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800125{
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800126 int ret, af = match->family;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800127
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800128 ret = mutex_lock_interruptible(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800129 if (ret != 0)
130 return ret;
131
132 list_add(&match->list, &xt[af].match);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800133 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800134
135 return ret;
136}
137EXPORT_SYMBOL(xt_register_match);
138
139void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800140xt_unregister_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800141{
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800142 int af = match->family;
143
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800144 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700145 list_del(&match->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800146 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800147}
148EXPORT_SYMBOL(xt_unregister_match);
149
Patrick McHardy52d9c422006-08-22 00:33:45 -0700150int
151xt_register_matches(struct xt_match *match, unsigned int n)
152{
153 unsigned int i;
154 int err = 0;
155
156 for (i = 0; i < n; i++) {
157 err = xt_register_match(&match[i]);
158 if (err)
159 goto err;
160 }
161 return err;
162
163err:
164 if (i > 0)
165 xt_unregister_matches(match, i);
166 return err;
167}
168EXPORT_SYMBOL(xt_register_matches);
169
170void
171xt_unregister_matches(struct xt_match *match, unsigned int n)
172{
173 unsigned int i;
174
175 for (i = 0; i < n; i++)
176 xt_unregister_match(&match[i]);
177}
178EXPORT_SYMBOL(xt_unregister_matches);
179
Harald Welte2e4e6a12006-01-12 13:30:04 -0800180
181/*
182 * These are weird, but module loading must not be done with mutex
183 * held (since they will register), and we have to have a single
184 * function to use try_then_request_module().
185 */
186
187/* Find match, grabs ref. Returns ERR_PTR() on error. */
188struct xt_match *xt_find_match(int af, const char *name, u8 revision)
189{
190 struct xt_match *m;
191 int err = 0;
192
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800193 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800194 return ERR_PTR(-EINTR);
195
196 list_for_each_entry(m, &xt[af].match, list) {
197 if (strcmp(m->name, name) == 0) {
198 if (m->revision == revision) {
199 if (try_module_get(m->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800200 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800201 return m;
202 }
203 } else
204 err = -EPROTOTYPE; /* Found something. */
205 }
206 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800207 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800208 return ERR_PTR(err);
209}
210EXPORT_SYMBOL(xt_find_match);
211
212/* Find target, grabs ref. Returns ERR_PTR() on error. */
213struct xt_target *xt_find_target(int af, const char *name, u8 revision)
214{
215 struct xt_target *t;
216 int err = 0;
217
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800218 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800219 return ERR_PTR(-EINTR);
220
221 list_for_each_entry(t, &xt[af].target, list) {
222 if (strcmp(t->name, name) == 0) {
223 if (t->revision == revision) {
224 if (try_module_get(t->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800225 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800226 return t;
227 }
228 } else
229 err = -EPROTOTYPE; /* Found something. */
230 }
231 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800232 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800233 return ERR_PTR(err);
234}
235EXPORT_SYMBOL(xt_find_target);
236
Harald Welte2e4e6a12006-01-12 13:30:04 -0800237struct xt_target *xt_request_find_target(int af, const char *name, u8 revision)
238{
239 struct xt_target *target;
240
241 target = try_then_request_module(xt_find_target(af, name, revision),
Patrick McHardy37f9f732006-03-20 17:59:06 -0800242 "%st_%s", xt_prefix[af], name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800243 if (IS_ERR(target) || !target)
244 return NULL;
245 return target;
246}
247EXPORT_SYMBOL_GPL(xt_request_find_target);
248
249static int match_revfn(int af, const char *name, u8 revision, int *bestp)
250{
251 struct xt_match *m;
252 int have_rev = 0;
253
254 list_for_each_entry(m, &xt[af].match, list) {
255 if (strcmp(m->name, name) == 0) {
256 if (m->revision > *bestp)
257 *bestp = m->revision;
258 if (m->revision == revision)
259 have_rev = 1;
260 }
261 }
262 return have_rev;
263}
264
265static int target_revfn(int af, const char *name, u8 revision, int *bestp)
266{
267 struct xt_target *t;
268 int have_rev = 0;
269
270 list_for_each_entry(t, &xt[af].target, list) {
271 if (strcmp(t->name, name) == 0) {
272 if (t->revision > *bestp)
273 *bestp = t->revision;
274 if (t->revision == revision)
275 have_rev = 1;
276 }
277 }
278 return have_rev;
279}
280
281/* Returns true or false (if no such extension at all) */
282int xt_find_revision(int af, const char *name, u8 revision, int target,
283 int *err)
284{
285 int have_rev, best = -1;
286
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800287 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800288 *err = -EINTR;
289 return 1;
290 }
291 if (target == 1)
292 have_rev = target_revfn(af, name, revision, &best);
293 else
294 have_rev = match_revfn(af, name, revision, &best);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800295 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800296
297 /* Nothing at all? Return 0 to try loading module. */
298 if (best == -1) {
299 *err = -ENOENT;
300 return 0;
301 }
302
303 *err = best;
304 if (!have_rev)
305 *err = -EPROTONOSUPPORT;
306 return 1;
307}
308EXPORT_SYMBOL_GPL(xt_find_revision);
309
Patrick McHardy37f9f732006-03-20 17:59:06 -0800310int xt_check_match(const struct xt_match *match, unsigned short family,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800311 unsigned int size, const char *table, unsigned int hook_mask,
Patrick McHardy37f9f732006-03-20 17:59:06 -0800312 unsigned short proto, int inv_proto)
313{
314 if (XT_ALIGN(match->matchsize) != size) {
315 printk("%s_tables: %s match: invalid size %Zu != %u\n",
316 xt_prefix[family], match->name,
317 XT_ALIGN(match->matchsize), size);
318 return -EINVAL;
319 }
320 if (match->table && strcmp(match->table, table)) {
321 printk("%s_tables: %s match: only valid in %s table, not %s\n",
322 xt_prefix[family], match->name, match->table, table);
323 return -EINVAL;
324 }
325 if (match->hooks && (hook_mask & ~match->hooks) != 0) {
Balazs Scheidler5faf4152007-07-07 22:41:01 -0700326 printk("%s_tables: %s match: bad hook_mask %u/%u\n",
327 xt_prefix[family], match->name, hook_mask, match->hooks);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800328 return -EINVAL;
329 }
330 if (match->proto && (match->proto != proto || inv_proto)) {
331 printk("%s_tables: %s match: only valid for protocol %u\n",
332 xt_prefix[family], match->name, match->proto);
333 return -EINVAL;
334 }
335 return 0;
336}
337EXPORT_SYMBOL_GPL(xt_check_match);
338
Dmitry Mishin27229712006-04-01 02:25:19 -0800339#ifdef CONFIG_COMPAT
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800340int xt_compat_add_offset(int af, unsigned int offset, short delta)
341{
342 struct compat_delta *tmp;
343
344 tmp = kmalloc(sizeof(struct compat_delta), GFP_KERNEL);
345 if (!tmp)
346 return -ENOMEM;
347
348 tmp->offset = offset;
349 tmp->delta = delta;
350
351 if (xt[af].compat_offsets) {
352 tmp->next = xt[af].compat_offsets->next;
353 xt[af].compat_offsets->next = tmp;
354 } else {
355 xt[af].compat_offsets = tmp;
356 tmp->next = NULL;
357 }
358 return 0;
359}
360EXPORT_SYMBOL_GPL(xt_compat_add_offset);
361
362void xt_compat_flush_offsets(int af)
363{
364 struct compat_delta *tmp, *next;
365
366 if (xt[af].compat_offsets) {
367 for (tmp = xt[af].compat_offsets; tmp; tmp = next) {
368 next = tmp->next;
369 kfree(tmp);
370 }
371 xt[af].compat_offsets = NULL;
372 }
373}
374EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
375
376short xt_compat_calc_jump(int af, unsigned int offset)
377{
378 struct compat_delta *tmp;
379 short delta;
380
381 for (tmp = xt[af].compat_offsets, delta = 0; tmp; tmp = tmp->next)
382 if (tmp->offset < offset)
383 delta += tmp->delta;
384 return delta;
385}
386EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
387
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700388int xt_compat_match_offset(struct xt_match *match)
Dmitry Mishin27229712006-04-01 02:25:19 -0800389{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700390 u_int16_t csize = match->compatsize ? : match->matchsize;
391 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800392}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700393EXPORT_SYMBOL_GPL(xt_compat_match_offset);
394
Patrick McHardy89566952007-12-17 21:46:40 -0800395int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800396 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700397{
398 struct xt_match *match = m->u.kernel.match;
399 struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
400 int pad, off = xt_compat_match_offset(match);
401 u_int16_t msize = cm->u.user.match_size;
402
403 m = *dstptr;
404 memcpy(m, cm, sizeof(*cm));
405 if (match->compat_from_user)
406 match->compat_from_user(m->data, cm->data);
407 else
408 memcpy(m->data, cm->data, msize - sizeof(*cm));
409 pad = XT_ALIGN(match->matchsize) - match->matchsize;
410 if (pad > 0)
411 memset(m->data + match->matchsize, 0, pad);
412
413 msize += off;
414 m->u.user.match_size = msize;
415
416 *size += off;
417 *dstptr += msize;
Patrick McHardy89566952007-12-17 21:46:40 -0800418 return 0;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700419}
420EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
421
422int xt_compat_match_to_user(struct xt_entry_match *m, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800423 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700424{
425 struct xt_match *match = m->u.kernel.match;
426 struct compat_xt_entry_match __user *cm = *dstptr;
427 int off = xt_compat_match_offset(match);
428 u_int16_t msize = m->u.user.match_size - off;
429
430 if (copy_to_user(cm, m, sizeof(*cm)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800431 put_user(msize, &cm->u.user.match_size) ||
432 copy_to_user(cm->u.user.name, m->u.kernel.match->name,
433 strlen(m->u.kernel.match->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800434 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700435
436 if (match->compat_to_user) {
437 if (match->compat_to_user((void __user *)cm->data, m->data))
438 return -EFAULT;
439 } else {
440 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
441 return -EFAULT;
442 }
443
444 *size -= off;
445 *dstptr += msize;
446 return 0;
447}
448EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
449#endif /* CONFIG_COMPAT */
Dmitry Mishin27229712006-04-01 02:25:19 -0800450
Patrick McHardy37f9f732006-03-20 17:59:06 -0800451int xt_check_target(const struct xt_target *target, unsigned short family,
452 unsigned int size, const char *table, unsigned int hook_mask,
453 unsigned short proto, int inv_proto)
454{
455 if (XT_ALIGN(target->targetsize) != size) {
456 printk("%s_tables: %s target: invalid size %Zu != %u\n",
457 xt_prefix[family], target->name,
458 XT_ALIGN(target->targetsize), size);
459 return -EINVAL;
460 }
461 if (target->table && strcmp(target->table, table)) {
462 printk("%s_tables: %s target: only valid in %s table, not %s\n",
463 xt_prefix[family], target->name, target->table, table);
464 return -EINVAL;
465 }
466 if (target->hooks && (hook_mask & ~target->hooks) != 0) {
Balazs Scheidler5faf4152007-07-07 22:41:01 -0700467 printk("%s_tables: %s target: bad hook_mask %u/%u\n",
468 xt_prefix[family], target->name, hook_mask,
469 target->hooks);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800470 return -EINVAL;
471 }
472 if (target->proto && (target->proto != proto || inv_proto)) {
473 printk("%s_tables: %s target: only valid for protocol %u\n",
474 xt_prefix[family], target->name, target->proto);
475 return -EINVAL;
476 }
477 return 0;
478}
479EXPORT_SYMBOL_GPL(xt_check_target);
480
Dmitry Mishin27229712006-04-01 02:25:19 -0800481#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700482int xt_compat_target_offset(struct xt_target *target)
Dmitry Mishin27229712006-04-01 02:25:19 -0800483{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700484 u_int16_t csize = target->compatsize ? : target->targetsize;
485 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800486}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700487EXPORT_SYMBOL_GPL(xt_compat_target_offset);
488
489void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800490 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700491{
492 struct xt_target *target = t->u.kernel.target;
493 struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
494 int pad, off = xt_compat_target_offset(target);
495 u_int16_t tsize = ct->u.user.target_size;
496
497 t = *dstptr;
498 memcpy(t, ct, sizeof(*ct));
499 if (target->compat_from_user)
500 target->compat_from_user(t->data, ct->data);
501 else
502 memcpy(t->data, ct->data, tsize - sizeof(*ct));
503 pad = XT_ALIGN(target->targetsize) - target->targetsize;
504 if (pad > 0)
505 memset(t->data + target->targetsize, 0, pad);
506
507 tsize += off;
508 t->u.user.target_size = tsize;
509
510 *size += off;
511 *dstptr += tsize;
512}
513EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
514
515int xt_compat_target_to_user(struct xt_entry_target *t, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800516 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700517{
518 struct xt_target *target = t->u.kernel.target;
519 struct compat_xt_entry_target __user *ct = *dstptr;
520 int off = xt_compat_target_offset(target);
521 u_int16_t tsize = t->u.user.target_size - off;
522
523 if (copy_to_user(ct, t, sizeof(*ct)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800524 put_user(tsize, &ct->u.user.target_size) ||
525 copy_to_user(ct->u.user.name, t->u.kernel.target->name,
526 strlen(t->u.kernel.target->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800527 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700528
529 if (target->compat_to_user) {
530 if (target->compat_to_user((void __user *)ct->data, t->data))
531 return -EFAULT;
532 } else {
533 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
534 return -EFAULT;
535 }
536
537 *size -= off;
538 *dstptr += tsize;
539 return 0;
540}
541EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
Dmitry Mishin27229712006-04-01 02:25:19 -0800542#endif
543
Harald Welte2e4e6a12006-01-12 13:30:04 -0800544struct xt_table_info *xt_alloc_table_info(unsigned int size)
545{
546 struct xt_table_info *newinfo;
547 int cpu;
548
549 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
550 if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > num_physpages)
551 return NULL;
552
Eric Dumazet259d4e42007-12-04 23:24:56 -0800553 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800554 if (!newinfo)
555 return NULL;
556
557 newinfo->size = size;
558
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700559 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800560 if (size <= PAGE_SIZE)
561 newinfo->entries[cpu] = kmalloc_node(size,
562 GFP_KERNEL,
563 cpu_to_node(cpu));
564 else
565 newinfo->entries[cpu] = vmalloc_node(size,
566 cpu_to_node(cpu));
567
568 if (newinfo->entries[cpu] == NULL) {
569 xt_free_table_info(newinfo);
570 return NULL;
571 }
572 }
573
574 return newinfo;
575}
576EXPORT_SYMBOL(xt_alloc_table_info);
577
578void xt_free_table_info(struct xt_table_info *info)
579{
580 int cpu;
581
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700582 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800583 if (info->size <= PAGE_SIZE)
584 kfree(info->entries[cpu]);
585 else
586 vfree(info->entries[cpu]);
587 }
588 kfree(info);
589}
590EXPORT_SYMBOL(xt_free_table_info);
591
592/* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800593struct xt_table *xt_find_table_lock(struct net *net, int af, const char *name)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800594{
595 struct xt_table *t;
596
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800597 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800598 return ERR_PTR(-EINTR);
599
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800600 list_for_each_entry(t, &net->xt.tables[af], list)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800601 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
602 return t;
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800603 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800604 return NULL;
605}
606EXPORT_SYMBOL_GPL(xt_find_table_lock);
607
608void xt_table_unlock(struct xt_table *table)
609{
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800610 mutex_unlock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800611}
612EXPORT_SYMBOL_GPL(xt_table_unlock);
613
Dmitry Mishin27229712006-04-01 02:25:19 -0800614#ifdef CONFIG_COMPAT
615void xt_compat_lock(int af)
616{
617 mutex_lock(&xt[af].compat_mutex);
618}
619EXPORT_SYMBOL_GPL(xt_compat_lock);
620
621void xt_compat_unlock(int af)
622{
623 mutex_unlock(&xt[af].compat_mutex);
624}
625EXPORT_SYMBOL_GPL(xt_compat_unlock);
626#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -0800627
628struct xt_table_info *
629xt_replace_table(struct xt_table *table,
630 unsigned int num_counters,
631 struct xt_table_info *newinfo,
632 int *error)
633{
634 struct xt_table_info *oldinfo, *private;
635
636 /* Do the substitution. */
637 write_lock_bh(&table->lock);
638 private = table->private;
639 /* Check inside lock: is the old number correct? */
640 if (num_counters != private->number) {
641 duprintf("num_counters != table->private->number (%u/%u)\n",
642 num_counters, private->number);
643 write_unlock_bh(&table->lock);
644 *error = -EAGAIN;
645 return NULL;
646 }
647 oldinfo = private;
648 table->private = newinfo;
649 newinfo->initial_entries = oldinfo->initial_entries;
650 write_unlock_bh(&table->lock);
651
652 return oldinfo;
653}
654EXPORT_SYMBOL_GPL(xt_replace_table);
655
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800656struct xt_table *xt_register_table(struct net *net, struct xt_table *table,
Alexey Dobriyana98da112008-01-31 04:01:49 -0800657 struct xt_table_info *bootstrap,
658 struct xt_table_info *newinfo)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800659{
660 int ret;
661 struct xt_table_info *private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700662 struct xt_table *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800663
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800664 /* Don't add one object to multiple lists. */
665 table = kmemdup(table, sizeof(struct xt_table), GFP_KERNEL);
666 if (!table) {
667 ret = -ENOMEM;
668 goto out;
669 }
670
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800671 ret = mutex_lock_interruptible(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800672 if (ret != 0)
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800673 goto out_free;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800674
675 /* Don't autoload: we'd eat our tail... */
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800676 list_for_each_entry(t, &net->xt.tables[table->af], list) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700677 if (strcmp(t->name, table->name) == 0) {
678 ret = -EEXIST;
679 goto unlock;
680 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800681 }
682
683 /* Simplifies replace_table code. */
684 table->private = bootstrap;
Dmitry Mishin91536b72006-04-24 17:18:25 -0700685 rwlock_init(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800686 if (!xt_replace_table(table, 0, newinfo, &ret))
687 goto unlock;
688
689 private = table->private;
690 duprintf("table->private->number = %u\n", private->number);
691
692 /* save number of initial entries */
693 private->initial_entries = private->number;
694
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800695 list_add(&table->list, &net->xt.tables[table->af]);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800696 mutex_unlock(&xt[table->af].mutex);
697 return table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800698
Harald Welte2e4e6a12006-01-12 13:30:04 -0800699 unlock:
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800700 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800701out_free:
702 kfree(table);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800703out:
704 return ERR_PTR(ret);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800705}
706EXPORT_SYMBOL_GPL(xt_register_table);
707
708void *xt_unregister_table(struct xt_table *table)
709{
710 struct xt_table_info *private;
711
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800712 mutex_lock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800713 private = table->private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700714 list_del(&table->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800715 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800716 kfree(table);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800717
718 return private;
719}
720EXPORT_SYMBOL_GPL(xt_unregister_table);
721
722#ifdef CONFIG_PROC_FS
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800723struct xt_names_priv {
724 struct seq_net_private p;
725 int af;
726};
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800727static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800728{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800729 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900730 struct net *net = seq_file_net(seq);
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800731 int af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800732
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800733 mutex_lock(&xt[af].mutex);
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800734 return seq_list_start(&net->xt.tables[af], *pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800735}
736
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800737static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800738{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800739 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900740 struct net *net = seq_file_net(seq);
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800741 int af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800742
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800743 return seq_list_next(v, &net->xt.tables[af], pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800744}
745
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800746static void xt_table_seq_stop(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800747{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800748 struct xt_names_priv *priv = seq->private;
749 int af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800750
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800751 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800752}
753
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800754static int xt_table_seq_show(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800755{
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800756 struct xt_table *table = list_entry(v, struct xt_table, list);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800757
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800758 if (strlen(table->name))
759 return seq_printf(seq, "%s\n", table->name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800760 else
761 return 0;
762}
763
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800764static const struct seq_operations xt_table_seq_ops = {
765 .start = xt_table_seq_start,
766 .next = xt_table_seq_next,
767 .stop = xt_table_seq_stop,
768 .show = xt_table_seq_show,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800769};
770
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800771static int xt_table_open(struct inode *inode, struct file *file)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800772{
773 int ret;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800774 struct xt_names_priv *priv;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800775
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800776 ret = seq_open_net(inode, file, &xt_table_seq_ops,
777 sizeof(struct xt_names_priv));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800778 if (!ret) {
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800779 priv = ((struct seq_file *)file->private_data)->private;
780 priv->af = (unsigned long)PDE(inode)->data;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800781 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800782 return ret;
783}
784
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800785static const struct file_operations xt_table_ops = {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800786 .owner = THIS_MODULE,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800787 .open = xt_table_open,
788 .read = seq_read,
789 .llseek = seq_lseek,
790 .release = seq_release,
791};
792
793static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
794{
795 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
796 u_int16_t af = (unsigned long)pde->data;
797
798 mutex_lock(&xt[af].mutex);
799 return seq_list_start(&xt[af].match, *pos);
800}
801
802static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *pos)
803{
804 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
805 u_int16_t af = (unsigned long)pde->data;
806
807 return seq_list_next(v, &xt[af].match, pos);
808}
809
810static void xt_match_seq_stop(struct seq_file *seq, void *v)
811{
812 struct proc_dir_entry *pde = seq->private;
813 u_int16_t af = (unsigned long)pde->data;
814
815 mutex_unlock(&xt[af].mutex);
816}
817
818static int xt_match_seq_show(struct seq_file *seq, void *v)
819{
820 struct xt_match *match = list_entry(v, struct xt_match, list);
821
822 if (strlen(match->name))
823 return seq_printf(seq, "%s\n", match->name);
824 else
825 return 0;
826}
827
828static const struct seq_operations xt_match_seq_ops = {
829 .start = xt_match_seq_start,
830 .next = xt_match_seq_next,
831 .stop = xt_match_seq_stop,
832 .show = xt_match_seq_show,
833};
834
835static int xt_match_open(struct inode *inode, struct file *file)
836{
837 int ret;
838
839 ret = seq_open(file, &xt_match_seq_ops);
840 if (!ret) {
841 struct seq_file *seq = file->private_data;
842
843 seq->private = PDE(inode);
844 }
845 return ret;
846}
847
848static const struct file_operations xt_match_ops = {
849 .owner = THIS_MODULE,
850 .open = xt_match_open,
851 .read = seq_read,
852 .llseek = seq_lseek,
853 .release = seq_release,
854};
855
856static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
857{
858 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
859 u_int16_t af = (unsigned long)pde->data;
860
861 mutex_lock(&xt[af].mutex);
862 return seq_list_start(&xt[af].target, *pos);
863}
864
865static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *pos)
866{
867 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
868 u_int16_t af = (unsigned long)pde->data;
869
870 return seq_list_next(v, &xt[af].target, pos);
871}
872
873static void xt_target_seq_stop(struct seq_file *seq, void *v)
874{
875 struct proc_dir_entry *pde = seq->private;
876 u_int16_t af = (unsigned long)pde->data;
877
878 mutex_unlock(&xt[af].mutex);
879}
880
881static int xt_target_seq_show(struct seq_file *seq, void *v)
882{
883 struct xt_target *target = list_entry(v, struct xt_target, list);
884
885 if (strlen(target->name))
886 return seq_printf(seq, "%s\n", target->name);
887 else
888 return 0;
889}
890
891static const struct seq_operations xt_target_seq_ops = {
892 .start = xt_target_seq_start,
893 .next = xt_target_seq_next,
894 .stop = xt_target_seq_stop,
895 .show = xt_target_seq_show,
896};
897
898static int xt_target_open(struct inode *inode, struct file *file)
899{
900 int ret;
901
902 ret = seq_open(file, &xt_target_seq_ops);
903 if (!ret) {
904 struct seq_file *seq = file->private_data;
905
906 seq->private = PDE(inode);
907 }
908 return ret;
909}
910
911static const struct file_operations xt_target_ops = {
912 .owner = THIS_MODULE,
913 .open = xt_target_open,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800914 .read = seq_read,
915 .llseek = seq_lseek,
916 .release = seq_release,
917};
918
919#define FORMAT_TABLES "_tables_names"
920#define FORMAT_MATCHES "_tables_matches"
921#define FORMAT_TARGETS "_tables_targets"
922
923#endif /* CONFIG_PROC_FS */
924
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800925int xt_proto_init(struct net *net, int af)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800926{
927#ifdef CONFIG_PROC_FS
928 char buf[XT_FUNCTION_MAXNAMELEN];
929 struct proc_dir_entry *proc;
930#endif
931
932 if (af >= NPROTO)
933 return -EINVAL;
934
935
936#ifdef CONFIG_PROC_FS
Tobias Klauserce18afe2007-03-14 16:36:16 -0700937 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800938 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800939 proc = proc_net_fops_create(net, buf, 0440, &xt_table_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800940 if (!proc)
941 goto out;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800942 proc->data = (void *)(unsigned long)af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800943
944
Tobias Klauserce18afe2007-03-14 16:36:16 -0700945 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800946 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800947 proc = proc_net_fops_create(net, buf, 0440, &xt_match_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800948 if (!proc)
949 goto out_remove_tables;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800950 proc->data = (void *)(unsigned long)af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800951
Tobias Klauserce18afe2007-03-14 16:36:16 -0700952 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800953 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800954 proc = proc_net_fops_create(net, buf, 0440, &xt_target_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800955 if (!proc)
956 goto out_remove_matches;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800957 proc->data = (void *)(unsigned long)af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800958#endif
959
960 return 0;
961
962#ifdef CONFIG_PROC_FS
963out_remove_matches:
Tobias Klauserce18afe2007-03-14 16:36:16 -0700964 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800965 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800966 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800967
968out_remove_tables:
Tobias Klauserce18afe2007-03-14 16:36:16 -0700969 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800970 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800971 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800972out:
973 return -1;
974#endif
975}
976EXPORT_SYMBOL_GPL(xt_proto_init);
977
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800978void xt_proto_fini(struct net *net, int af)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800979{
980#ifdef CONFIG_PROC_FS
981 char buf[XT_FUNCTION_MAXNAMELEN];
982
Tobias Klauserce18afe2007-03-14 16:36:16 -0700983 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800984 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800985 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800986
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_TARGETS, 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_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800993 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800994#endif /*CONFIG_PROC_FS*/
995}
996EXPORT_SYMBOL_GPL(xt_proto_fini);
997
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800998static int __net_init xt_net_init(struct net *net)
999{
1000 int i;
1001
1002 for (i = 0; i < NPROTO; i++)
1003 INIT_LIST_HEAD(&net->xt.tables[i]);
1004 return 0;
1005}
1006
1007static struct pernet_operations xt_net_ops = {
1008 .init = xt_net_init,
1009};
Harald Welte2e4e6a12006-01-12 13:30:04 -08001010
1011static int __init xt_init(void)
1012{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001013 int i, rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001014
1015 xt = kmalloc(sizeof(struct xt_af) * NPROTO, GFP_KERNEL);
1016 if (!xt)
1017 return -ENOMEM;
1018
1019 for (i = 0; i < NPROTO; i++) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -08001020 mutex_init(&xt[i].mutex);
Dmitry Mishin27229712006-04-01 02:25:19 -08001021#ifdef CONFIG_COMPAT
1022 mutex_init(&xt[i].compat_mutex);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001023 xt[i].compat_offsets = NULL;
Dmitry Mishin27229712006-04-01 02:25:19 -08001024#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -08001025 INIT_LIST_HEAD(&xt[i].target);
1026 INIT_LIST_HEAD(&xt[i].match);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001027 }
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001028 rv = register_pernet_subsys(&xt_net_ops);
1029 if (rv < 0)
1030 kfree(xt);
1031 return rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001032}
1033
1034static void __exit xt_fini(void)
1035{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001036 unregister_pernet_subsys(&xt_net_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001037 kfree(xt);
1038}
1039
1040module_init(xt_init);
1041module_exit(xt_fini);
1042