blob: 3b1fc40cc27471a89183db63ddd887a12420019f [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>");
Jan Engelhardt043ef462008-10-08 11:35:15 +020033MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
Harald Welte2e4e6a12006-01-12 13:30:04 -080034
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);
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200212
213 if (af != NFPROTO_UNSPEC)
214 /* Try searching again in the family-independent list */
215 return xt_find_match(NFPROTO_UNSPEC, name, revision);
216
Harald Welte2e4e6a12006-01-12 13:30:04 -0800217 return ERR_PTR(err);
218}
219EXPORT_SYMBOL(xt_find_match);
220
221/* Find target, grabs ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200222struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800223{
224 struct xt_target *t;
225 int err = 0;
226
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800227 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800228 return ERR_PTR(-EINTR);
229
230 list_for_each_entry(t, &xt[af].target, list) {
231 if (strcmp(t->name, name) == 0) {
232 if (t->revision == revision) {
233 if (try_module_get(t->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800234 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800235 return t;
236 }
237 } else
238 err = -EPROTOTYPE; /* Found something. */
239 }
240 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800241 mutex_unlock(&xt[af].mutex);
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200242
243 if (af != NFPROTO_UNSPEC)
244 /* Try searching again in the family-independent list */
245 return xt_find_target(NFPROTO_UNSPEC, name, revision);
246
Harald Welte2e4e6a12006-01-12 13:30:04 -0800247 return ERR_PTR(err);
248}
249EXPORT_SYMBOL(xt_find_target);
250
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200251struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800252{
253 struct xt_target *target;
254
255 target = try_then_request_module(xt_find_target(af, name, revision),
Patrick McHardy37f9f732006-03-20 17:59:06 -0800256 "%st_%s", xt_prefix[af], name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800257 if (IS_ERR(target) || !target)
258 return NULL;
259 return target;
260}
261EXPORT_SYMBOL_GPL(xt_request_find_target);
262
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200263static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800264{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200265 const struct xt_match *m;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800266 int have_rev = 0;
267
268 list_for_each_entry(m, &xt[af].match, list) {
269 if (strcmp(m->name, name) == 0) {
270 if (m->revision > *bestp)
271 *bestp = m->revision;
272 if (m->revision == revision)
273 have_rev = 1;
274 }
275 }
276 return have_rev;
277}
278
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200279static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800280{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200281 const struct xt_target *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800282 int have_rev = 0;
283
284 list_for_each_entry(t, &xt[af].target, list) {
285 if (strcmp(t->name, name) == 0) {
286 if (t->revision > *bestp)
287 *bestp = t->revision;
288 if (t->revision == revision)
289 have_rev = 1;
290 }
291 }
292 return have_rev;
293}
294
295/* Returns true or false (if no such extension at all) */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200296int xt_find_revision(u8 af, const char *name, u8 revision, int target,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800297 int *err)
298{
299 int have_rev, best = -1;
300
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800301 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800302 *err = -EINTR;
303 return 1;
304 }
305 if (target == 1)
306 have_rev = target_revfn(af, name, revision, &best);
307 else
308 have_rev = match_revfn(af, name, revision, &best);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800309 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800310
311 /* Nothing at all? Return 0 to try loading module. */
312 if (best == -1) {
313 *err = -ENOENT;
314 return 0;
315 }
316
317 *err = best;
318 if (!have_rev)
319 *err = -EPROTONOSUPPORT;
320 return 1;
321}
322EXPORT_SYMBOL_GPL(xt_find_revision);
323
Patrick McHardy37f9f732006-03-20 17:59:06 -0800324int xt_check_match(const struct xt_match *match, unsigned short family,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800325 unsigned int size, const char *table, unsigned int hook_mask,
Patrick McHardy37f9f732006-03-20 17:59:06 -0800326 unsigned short proto, int inv_proto)
327{
Jan Engelhardt043ef462008-10-08 11:35:15 +0200328 if (XT_ALIGN(match->matchsize) != size &&
329 match->matchsize != -1) {
330 /*
331 * ebt_among is exempt from centralized matchsize checking
332 * because it uses a dynamic-size data set.
333 */
Patrick McHardy37f9f732006-03-20 17:59:06 -0800334 printk("%s_tables: %s match: invalid size %Zu != %u\n",
335 xt_prefix[family], match->name,
336 XT_ALIGN(match->matchsize), size);
337 return -EINVAL;
338 }
339 if (match->table && strcmp(match->table, table)) {
340 printk("%s_tables: %s match: only valid in %s table, not %s\n",
341 xt_prefix[family], match->name, match->table, table);
342 return -EINVAL;
343 }
344 if (match->hooks && (hook_mask & ~match->hooks) != 0) {
Jan Engelhardt102befa2008-10-08 11:35:15 +0200345 printk("%s_tables: %s match: bad hook_mask %#x/%#x\n",
Balazs Scheidler5faf4152007-07-07 22:41:01 -0700346 xt_prefix[family], match->name, hook_mask, match->hooks);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800347 return -EINVAL;
348 }
349 if (match->proto && (match->proto != proto || inv_proto)) {
350 printk("%s_tables: %s match: only valid for protocol %u\n",
351 xt_prefix[family], match->name, match->proto);
352 return -EINVAL;
353 }
354 return 0;
355}
356EXPORT_SYMBOL_GPL(xt_check_match);
357
Dmitry Mishin27229712006-04-01 02:25:19 -0800358#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200359int xt_compat_add_offset(u_int8_t af, unsigned int offset, short delta)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800360{
361 struct compat_delta *tmp;
362
363 tmp = kmalloc(sizeof(struct compat_delta), GFP_KERNEL);
364 if (!tmp)
365 return -ENOMEM;
366
367 tmp->offset = offset;
368 tmp->delta = delta;
369
370 if (xt[af].compat_offsets) {
371 tmp->next = xt[af].compat_offsets->next;
372 xt[af].compat_offsets->next = tmp;
373 } else {
374 xt[af].compat_offsets = tmp;
375 tmp->next = NULL;
376 }
377 return 0;
378}
379EXPORT_SYMBOL_GPL(xt_compat_add_offset);
380
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200381void xt_compat_flush_offsets(u_int8_t af)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800382{
383 struct compat_delta *tmp, *next;
384
385 if (xt[af].compat_offsets) {
386 for (tmp = xt[af].compat_offsets; tmp; tmp = next) {
387 next = tmp->next;
388 kfree(tmp);
389 }
390 xt[af].compat_offsets = NULL;
391 }
392}
393EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
394
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200395short xt_compat_calc_jump(u_int8_t af, unsigned int offset)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800396{
397 struct compat_delta *tmp;
398 short delta;
399
400 for (tmp = xt[af].compat_offsets, delta = 0; tmp; tmp = tmp->next)
401 if (tmp->offset < offset)
402 delta += tmp->delta;
403 return delta;
404}
405EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
406
Jan Engelhardt5452e422008-04-14 11:15:35 +0200407int xt_compat_match_offset(const struct xt_match *match)
Dmitry Mishin27229712006-04-01 02:25:19 -0800408{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700409 u_int16_t csize = match->compatsize ? : match->matchsize;
410 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800411}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700412EXPORT_SYMBOL_GPL(xt_compat_match_offset);
413
Patrick McHardy89566952007-12-17 21:46:40 -0800414int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800415 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700416{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200417 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700418 struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
419 int pad, off = xt_compat_match_offset(match);
420 u_int16_t msize = cm->u.user.match_size;
421
422 m = *dstptr;
423 memcpy(m, cm, sizeof(*cm));
424 if (match->compat_from_user)
425 match->compat_from_user(m->data, cm->data);
426 else
427 memcpy(m->data, cm->data, msize - sizeof(*cm));
428 pad = XT_ALIGN(match->matchsize) - match->matchsize;
429 if (pad > 0)
430 memset(m->data + match->matchsize, 0, pad);
431
432 msize += off;
433 m->u.user.match_size = msize;
434
435 *size += off;
436 *dstptr += msize;
Patrick McHardy89566952007-12-17 21:46:40 -0800437 return 0;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700438}
439EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
440
441int xt_compat_match_to_user(struct xt_entry_match *m, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800442 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700443{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200444 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700445 struct compat_xt_entry_match __user *cm = *dstptr;
446 int off = xt_compat_match_offset(match);
447 u_int16_t msize = m->u.user.match_size - off;
448
449 if (copy_to_user(cm, m, sizeof(*cm)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800450 put_user(msize, &cm->u.user.match_size) ||
451 copy_to_user(cm->u.user.name, m->u.kernel.match->name,
452 strlen(m->u.kernel.match->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800453 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700454
455 if (match->compat_to_user) {
456 if (match->compat_to_user((void __user *)cm->data, m->data))
457 return -EFAULT;
458 } else {
459 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
460 return -EFAULT;
461 }
462
463 *size -= off;
464 *dstptr += msize;
465 return 0;
466}
467EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
468#endif /* CONFIG_COMPAT */
Dmitry Mishin27229712006-04-01 02:25:19 -0800469
Patrick McHardy37f9f732006-03-20 17:59:06 -0800470int xt_check_target(const struct xt_target *target, unsigned short family,
471 unsigned int size, const char *table, unsigned int hook_mask,
472 unsigned short proto, int inv_proto)
473{
474 if (XT_ALIGN(target->targetsize) != size) {
475 printk("%s_tables: %s target: invalid size %Zu != %u\n",
476 xt_prefix[family], target->name,
477 XT_ALIGN(target->targetsize), size);
478 return -EINVAL;
479 }
480 if (target->table && strcmp(target->table, table)) {
481 printk("%s_tables: %s target: only valid in %s table, not %s\n",
482 xt_prefix[family], target->name, target->table, table);
483 return -EINVAL;
484 }
485 if (target->hooks && (hook_mask & ~target->hooks) != 0) {
Jan Engelhardt102befa2008-10-08 11:35:15 +0200486 printk("%s_tables: %s target: bad hook_mask %#x/%#x\n",
Balazs Scheidler5faf4152007-07-07 22:41:01 -0700487 xt_prefix[family], target->name, hook_mask,
488 target->hooks);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800489 return -EINVAL;
490 }
491 if (target->proto && (target->proto != proto || inv_proto)) {
492 printk("%s_tables: %s target: only valid for protocol %u\n",
493 xt_prefix[family], target->name, target->proto);
494 return -EINVAL;
495 }
496 return 0;
497}
498EXPORT_SYMBOL_GPL(xt_check_target);
499
Dmitry Mishin27229712006-04-01 02:25:19 -0800500#ifdef CONFIG_COMPAT
Jan Engelhardt5452e422008-04-14 11:15:35 +0200501int xt_compat_target_offset(const struct xt_target *target)
Dmitry Mishin27229712006-04-01 02:25:19 -0800502{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700503 u_int16_t csize = target->compatsize ? : target->targetsize;
504 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800505}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700506EXPORT_SYMBOL_GPL(xt_compat_target_offset);
507
508void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800509 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700510{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200511 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700512 struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
513 int pad, off = xt_compat_target_offset(target);
514 u_int16_t tsize = ct->u.user.target_size;
515
516 t = *dstptr;
517 memcpy(t, ct, sizeof(*ct));
518 if (target->compat_from_user)
519 target->compat_from_user(t->data, ct->data);
520 else
521 memcpy(t->data, ct->data, tsize - sizeof(*ct));
522 pad = XT_ALIGN(target->targetsize) - target->targetsize;
523 if (pad > 0)
524 memset(t->data + target->targetsize, 0, pad);
525
526 tsize += off;
527 t->u.user.target_size = tsize;
528
529 *size += off;
530 *dstptr += tsize;
531}
532EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
533
534int xt_compat_target_to_user(struct xt_entry_target *t, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800535 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700536{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200537 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700538 struct compat_xt_entry_target __user *ct = *dstptr;
539 int off = xt_compat_target_offset(target);
540 u_int16_t tsize = t->u.user.target_size - off;
541
542 if (copy_to_user(ct, t, sizeof(*ct)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800543 put_user(tsize, &ct->u.user.target_size) ||
544 copy_to_user(ct->u.user.name, t->u.kernel.target->name,
545 strlen(t->u.kernel.target->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800546 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700547
548 if (target->compat_to_user) {
549 if (target->compat_to_user((void __user *)ct->data, t->data))
550 return -EFAULT;
551 } else {
552 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
553 return -EFAULT;
554 }
555
556 *size -= off;
557 *dstptr += tsize;
558 return 0;
559}
560EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
Dmitry Mishin27229712006-04-01 02:25:19 -0800561#endif
562
Harald Welte2e4e6a12006-01-12 13:30:04 -0800563struct xt_table_info *xt_alloc_table_info(unsigned int size)
564{
565 struct xt_table_info *newinfo;
566 int cpu;
567
568 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
569 if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > num_physpages)
570 return NULL;
571
Eric Dumazet259d4e42007-12-04 23:24:56 -0800572 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800573 if (!newinfo)
574 return NULL;
575
576 newinfo->size = size;
577
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700578 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800579 if (size <= PAGE_SIZE)
580 newinfo->entries[cpu] = kmalloc_node(size,
581 GFP_KERNEL,
582 cpu_to_node(cpu));
583 else
584 newinfo->entries[cpu] = vmalloc_node(size,
585 cpu_to_node(cpu));
586
587 if (newinfo->entries[cpu] == NULL) {
588 xt_free_table_info(newinfo);
589 return NULL;
590 }
591 }
592
593 return newinfo;
594}
595EXPORT_SYMBOL(xt_alloc_table_info);
596
597void xt_free_table_info(struct xt_table_info *info)
598{
599 int cpu;
600
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700601 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800602 if (info->size <= PAGE_SIZE)
603 kfree(info->entries[cpu]);
604 else
605 vfree(info->entries[cpu]);
606 }
607 kfree(info);
608}
609EXPORT_SYMBOL(xt_free_table_info);
610
611/* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200612struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
613 const char *name)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800614{
615 struct xt_table *t;
616
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800617 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800618 return ERR_PTR(-EINTR);
619
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800620 list_for_each_entry(t, &net->xt.tables[af], list)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800621 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
622 return t;
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800623 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800624 return NULL;
625}
626EXPORT_SYMBOL_GPL(xt_find_table_lock);
627
628void xt_table_unlock(struct xt_table *table)
629{
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800630 mutex_unlock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800631}
632EXPORT_SYMBOL_GPL(xt_table_unlock);
633
Dmitry Mishin27229712006-04-01 02:25:19 -0800634#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200635void xt_compat_lock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800636{
637 mutex_lock(&xt[af].compat_mutex);
638}
639EXPORT_SYMBOL_GPL(xt_compat_lock);
640
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200641void xt_compat_unlock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800642{
643 mutex_unlock(&xt[af].compat_mutex);
644}
645EXPORT_SYMBOL_GPL(xt_compat_unlock);
646#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -0800647
648struct xt_table_info *
649xt_replace_table(struct xt_table *table,
650 unsigned int num_counters,
651 struct xt_table_info *newinfo,
652 int *error)
653{
654 struct xt_table_info *oldinfo, *private;
655
656 /* Do the substitution. */
657 write_lock_bh(&table->lock);
658 private = table->private;
659 /* Check inside lock: is the old number correct? */
660 if (num_counters != private->number) {
661 duprintf("num_counters != table->private->number (%u/%u)\n",
662 num_counters, private->number);
663 write_unlock_bh(&table->lock);
664 *error = -EAGAIN;
665 return NULL;
666 }
667 oldinfo = private;
668 table->private = newinfo;
669 newinfo->initial_entries = oldinfo->initial_entries;
670 write_unlock_bh(&table->lock);
671
672 return oldinfo;
673}
674EXPORT_SYMBOL_GPL(xt_replace_table);
675
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800676struct xt_table *xt_register_table(struct net *net, struct xt_table *table,
Alexey Dobriyana98da112008-01-31 04:01:49 -0800677 struct xt_table_info *bootstrap,
678 struct xt_table_info *newinfo)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800679{
680 int ret;
681 struct xt_table_info *private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700682 struct xt_table *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800683
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800684 /* Don't add one object to multiple lists. */
685 table = kmemdup(table, sizeof(struct xt_table), GFP_KERNEL);
686 if (!table) {
687 ret = -ENOMEM;
688 goto out;
689 }
690
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800691 ret = mutex_lock_interruptible(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800692 if (ret != 0)
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800693 goto out_free;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800694
695 /* Don't autoload: we'd eat our tail... */
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800696 list_for_each_entry(t, &net->xt.tables[table->af], list) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700697 if (strcmp(t->name, table->name) == 0) {
698 ret = -EEXIST;
699 goto unlock;
700 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800701 }
702
703 /* Simplifies replace_table code. */
704 table->private = bootstrap;
Dmitry Mishin91536b72006-04-24 17:18:25 -0700705 rwlock_init(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800706 if (!xt_replace_table(table, 0, newinfo, &ret))
707 goto unlock;
708
709 private = table->private;
710 duprintf("table->private->number = %u\n", private->number);
711
712 /* save number of initial entries */
713 private->initial_entries = private->number;
714
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800715 list_add(&table->list, &net->xt.tables[table->af]);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800716 mutex_unlock(&xt[table->af].mutex);
717 return table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800718
Harald Welte2e4e6a12006-01-12 13:30:04 -0800719 unlock:
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800720 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800721out_free:
722 kfree(table);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800723out:
724 return ERR_PTR(ret);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800725}
726EXPORT_SYMBOL_GPL(xt_register_table);
727
728void *xt_unregister_table(struct xt_table *table)
729{
730 struct xt_table_info *private;
731
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800732 mutex_lock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800733 private = table->private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700734 list_del(&table->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800735 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800736 kfree(table);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800737
738 return private;
739}
740EXPORT_SYMBOL_GPL(xt_unregister_table);
741
742#ifdef CONFIG_PROC_FS
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800743struct xt_names_priv {
744 struct seq_net_private p;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200745 u_int8_t af;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800746};
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800747static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800748{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800749 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900750 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200751 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800752
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800753 mutex_lock(&xt[af].mutex);
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800754 return seq_list_start(&net->xt.tables[af], *pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800755}
756
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800757static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800758{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800759 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900760 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200761 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800762
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800763 return seq_list_next(v, &net->xt.tables[af], pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800764}
765
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800766static void xt_table_seq_stop(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800767{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800768 struct xt_names_priv *priv = seq->private;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200769 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800770
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800771 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800772}
773
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800774static int xt_table_seq_show(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800775{
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800776 struct xt_table *table = list_entry(v, struct xt_table, list);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800777
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800778 if (strlen(table->name))
779 return seq_printf(seq, "%s\n", table->name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800780 else
781 return 0;
782}
783
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800784static const struct seq_operations xt_table_seq_ops = {
785 .start = xt_table_seq_start,
786 .next = xt_table_seq_next,
787 .stop = xt_table_seq_stop,
788 .show = xt_table_seq_show,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800789};
790
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800791static int xt_table_open(struct inode *inode, struct file *file)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800792{
793 int ret;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800794 struct xt_names_priv *priv;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800795
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800796 ret = seq_open_net(inode, file, &xt_table_seq_ops,
797 sizeof(struct xt_names_priv));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800798 if (!ret) {
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800799 priv = ((struct seq_file *)file->private_data)->private;
800 priv->af = (unsigned long)PDE(inode)->data;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800801 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800802 return ret;
803}
804
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800805static const struct file_operations xt_table_ops = {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800806 .owner = THIS_MODULE,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800807 .open = xt_table_open,
808 .read = seq_read,
809 .llseek = seq_lseek,
Pavel Emelyanov0e93bb92008-04-29 03:15:35 -0700810 .release = seq_release_net,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800811};
812
813static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
814{
815 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
816 u_int16_t af = (unsigned long)pde->data;
817
818 mutex_lock(&xt[af].mutex);
819 return seq_list_start(&xt[af].match, *pos);
820}
821
822static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *pos)
823{
824 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
825 u_int16_t af = (unsigned long)pde->data;
826
827 return seq_list_next(v, &xt[af].match, pos);
828}
829
830static void xt_match_seq_stop(struct seq_file *seq, void *v)
831{
832 struct proc_dir_entry *pde = seq->private;
833 u_int16_t af = (unsigned long)pde->data;
834
835 mutex_unlock(&xt[af].mutex);
836}
837
838static int xt_match_seq_show(struct seq_file *seq, void *v)
839{
840 struct xt_match *match = list_entry(v, struct xt_match, list);
841
842 if (strlen(match->name))
843 return seq_printf(seq, "%s\n", match->name);
844 else
845 return 0;
846}
847
848static const struct seq_operations xt_match_seq_ops = {
849 .start = xt_match_seq_start,
850 .next = xt_match_seq_next,
851 .stop = xt_match_seq_stop,
852 .show = xt_match_seq_show,
853};
854
855static int xt_match_open(struct inode *inode, struct file *file)
856{
857 int ret;
858
859 ret = seq_open(file, &xt_match_seq_ops);
860 if (!ret) {
861 struct seq_file *seq = file->private_data;
862
863 seq->private = PDE(inode);
864 }
865 return ret;
866}
867
868static const struct file_operations xt_match_ops = {
869 .owner = THIS_MODULE,
870 .open = xt_match_open,
871 .read = seq_read,
872 .llseek = seq_lseek,
873 .release = seq_release,
874};
875
876static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
877{
878 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
879 u_int16_t af = (unsigned long)pde->data;
880
881 mutex_lock(&xt[af].mutex);
882 return seq_list_start(&xt[af].target, *pos);
883}
884
885static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *pos)
886{
887 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
888 u_int16_t af = (unsigned long)pde->data;
889
890 return seq_list_next(v, &xt[af].target, pos);
891}
892
893static void xt_target_seq_stop(struct seq_file *seq, void *v)
894{
895 struct proc_dir_entry *pde = seq->private;
896 u_int16_t af = (unsigned long)pde->data;
897
898 mutex_unlock(&xt[af].mutex);
899}
900
901static int xt_target_seq_show(struct seq_file *seq, void *v)
902{
903 struct xt_target *target = list_entry(v, struct xt_target, list);
904
905 if (strlen(target->name))
906 return seq_printf(seq, "%s\n", target->name);
907 else
908 return 0;
909}
910
911static const struct seq_operations xt_target_seq_ops = {
912 .start = xt_target_seq_start,
913 .next = xt_target_seq_next,
914 .stop = xt_target_seq_stop,
915 .show = xt_target_seq_show,
916};
917
918static int xt_target_open(struct inode *inode, struct file *file)
919{
920 int ret;
921
922 ret = seq_open(file, &xt_target_seq_ops);
923 if (!ret) {
924 struct seq_file *seq = file->private_data;
925
926 seq->private = PDE(inode);
927 }
928 return ret;
929}
930
931static const struct file_operations xt_target_ops = {
932 .owner = THIS_MODULE,
933 .open = xt_target_open,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800934 .read = seq_read,
935 .llseek = seq_lseek,
936 .release = seq_release,
937};
938
939#define FORMAT_TABLES "_tables_names"
940#define FORMAT_MATCHES "_tables_matches"
941#define FORMAT_TARGETS "_tables_targets"
942
943#endif /* CONFIG_PROC_FS */
944
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200945int xt_proto_init(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800946{
947#ifdef CONFIG_PROC_FS
948 char buf[XT_FUNCTION_MAXNAMELEN];
949 struct proc_dir_entry *proc;
950#endif
951
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +0200952 if (af >= ARRAY_SIZE(xt_prefix))
Harald Welte2e4e6a12006-01-12 13:30:04 -0800953 return -EINVAL;
954
955
956#ifdef CONFIG_PROC_FS
Tobias Klauserce18afe2007-03-14 16:36:16 -0700957 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800958 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700959 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
960 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800961 if (!proc)
962 goto out;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800963
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));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700966 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
967 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800968 if (!proc)
969 goto out_remove_tables;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800970
Tobias Klauserce18afe2007-03-14 16:36:16 -0700971 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800972 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700973 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
974 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800975 if (!proc)
976 goto out_remove_matches;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800977#endif
978
979 return 0;
980
981#ifdef CONFIG_PROC_FS
982out_remove_matches:
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_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800985 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800986
987out_remove_tables:
Tobias Klauserce18afe2007-03-14 16:36:16 -0700988 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800989 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800990 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800991out:
992 return -1;
993#endif
994}
995EXPORT_SYMBOL_GPL(xt_proto_init);
996
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200997void xt_proto_fini(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800998{
999#ifdef CONFIG_PROC_FS
1000 char buf[XT_FUNCTION_MAXNAMELEN];
1001
Tobias Klauserce18afe2007-03-14 16:36:16 -07001002 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001003 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001004 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001005
Tobias Klauserce18afe2007-03-14 16:36:16 -07001006 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001007 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001008 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001009
Tobias Klauserce18afe2007-03-14 16:36:16 -07001010 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001011 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001012 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001013#endif /*CONFIG_PROC_FS*/
1014}
1015EXPORT_SYMBOL_GPL(xt_proto_fini);
1016
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001017static int __net_init xt_net_init(struct net *net)
1018{
1019 int i;
1020
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001021 for (i = 0; i < NFPROTO_NUMPROTO; i++)
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001022 INIT_LIST_HEAD(&net->xt.tables[i]);
1023 return 0;
1024}
1025
1026static struct pernet_operations xt_net_ops = {
1027 .init = xt_net_init,
1028};
Harald Welte2e4e6a12006-01-12 13:30:04 -08001029
1030static int __init xt_init(void)
1031{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001032 int i, rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001033
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001034 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001035 if (!xt)
1036 return -ENOMEM;
1037
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001038 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -08001039 mutex_init(&xt[i].mutex);
Dmitry Mishin27229712006-04-01 02:25:19 -08001040#ifdef CONFIG_COMPAT
1041 mutex_init(&xt[i].compat_mutex);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001042 xt[i].compat_offsets = NULL;
Dmitry Mishin27229712006-04-01 02:25:19 -08001043#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -08001044 INIT_LIST_HEAD(&xt[i].target);
1045 INIT_LIST_HEAD(&xt[i].match);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001046 }
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001047 rv = register_pernet_subsys(&xt_net_ops);
1048 if (rv < 0)
1049 kfree(xt);
1050 return rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001051}
1052
1053static void __exit xt_fini(void)
1054{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001055 unregister_pernet_subsys(&xt_net_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001056 kfree(xt);
1057}
1058
1059module_init(xt_init);
1060module_exit(xt_fini);
1061