]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/netfilter/x_tables.c
procfs: new helper - PDE_DATA(inode)
[mirror_ubuntu-bionic-kernel.git] / net / netfilter / x_tables.c
CommitLineData
2e4e6a17
HW
1/*
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 */
be91fd5e 15#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2e4e6a17 16#include <linux/kernel.h>
3a9a231d 17#include <linux/module.h>
2e4e6a17
HW
18#include <linux/socket.h>
19#include <linux/net.h>
20#include <linux/proc_fs.h>
21#include <linux/seq_file.h>
22#include <linux/string.h>
23#include <linux/vmalloc.h>
9e19bb6d 24#include <linux/mutex.h>
d7fe0f24 25#include <linux/mm.h>
5a0e3ad6 26#include <linux/slab.h>
fbabf31e 27#include <linux/audit.h>
457c4cbc 28#include <net/net_namespace.h>
2e4e6a17
HW
29
30#include <linux/netfilter/x_tables.h>
31#include <linux/netfilter_arp.h>
e3eaa991
JE
32#include <linux/netfilter_ipv4/ip_tables.h>
33#include <linux/netfilter_ipv6/ip6_tables.h>
34#include <linux/netfilter_arp/arp_tables.h>
9e19bb6d 35
2e4e6a17
HW
36MODULE_LICENSE("GPL");
37MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
043ef46c 38MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
2e4e6a17
HW
39
40#define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
41
b386d9f5 42struct compat_delta {
255d0dc3
ED
43 unsigned int offset; /* offset in kernel */
44 int delta; /* delta in 32bit user land */
b386d9f5
PM
45};
46
2e4e6a17 47struct xt_af {
9e19bb6d 48 struct mutex mutex;
2e4e6a17
HW
49 struct list_head match;
50 struct list_head target;
b386d9f5 51#ifdef CONFIG_COMPAT
2722971c 52 struct mutex compat_mutex;
255d0dc3
ED
53 struct compat_delta *compat_tab;
54 unsigned int number; /* number of slots in compat_tab[] */
55 unsigned int cur; /* number of used slots in compat_tab[] */
b386d9f5 56#endif
2e4e6a17
HW
57};
58
59static struct xt_af *xt;
60
7e9c6eeb
JE
61static 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",
37f9f733
PM
67};
68
f3c5c1bf
JE
69/* Allow this many total (re)entries. */
70static const unsigned int xt_jumpstack_multiplier = 2;
71
2e4e6a17
HW
72/* Registration hooks for targets. */
73int
a45049c5 74xt_register_target(struct xt_target *target)
2e4e6a17 75{
76108cea
JE
76 u_int8_t af = target->family;
77 int ret;
2e4e6a17 78
9e19bb6d 79 ret = mutex_lock_interruptible(&xt[af].mutex);
2e4e6a17
HW
80 if (ret != 0)
81 return ret;
82 list_add(&target->list, &xt[af].target);
9e19bb6d 83 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
84 return ret;
85}
86EXPORT_SYMBOL(xt_register_target);
87
88void
a45049c5 89xt_unregister_target(struct xt_target *target)
2e4e6a17 90{
76108cea 91 u_int8_t af = target->family;
a45049c5 92
9e19bb6d 93 mutex_lock(&xt[af].mutex);
df0933dc 94 list_del(&target->list);
9e19bb6d 95 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
96}
97EXPORT_SYMBOL(xt_unregister_target);
98
52d9c42e
PM
99int
100xt_register_targets(struct xt_target *target, unsigned int n)
101{
102 unsigned int i;
103 int err = 0;
104
105 for (i = 0; i < n; i++) {
106 err = xt_register_target(&target[i]);
107 if (err)
108 goto err;
109 }
110 return err;
111
112err:
113 if (i > 0)
114 xt_unregister_targets(target, i);
115 return err;
116}
117EXPORT_SYMBOL(xt_register_targets);
118
119void
120xt_unregister_targets(struct xt_target *target, unsigned int n)
121{
f68c5301
CG
122 while (n-- > 0)
123 xt_unregister_target(&target[n]);
52d9c42e
PM
124}
125EXPORT_SYMBOL(xt_unregister_targets);
126
2e4e6a17 127int
a45049c5 128xt_register_match(struct xt_match *match)
2e4e6a17 129{
76108cea
JE
130 u_int8_t af = match->family;
131 int ret;
2e4e6a17 132
9e19bb6d 133 ret = mutex_lock_interruptible(&xt[af].mutex);
2e4e6a17
HW
134 if (ret != 0)
135 return ret;
136
137 list_add(&match->list, &xt[af].match);
9e19bb6d 138 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
139
140 return ret;
141}
142EXPORT_SYMBOL(xt_register_match);
143
144void
a45049c5 145xt_unregister_match(struct xt_match *match)
2e4e6a17 146{
76108cea 147 u_int8_t af = match->family;
a45049c5 148
9e19bb6d 149 mutex_lock(&xt[af].mutex);
df0933dc 150 list_del(&match->list);
9e19bb6d 151 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
152}
153EXPORT_SYMBOL(xt_unregister_match);
154
52d9c42e
PM
155int
156xt_register_matches(struct xt_match *match, unsigned int n)
157{
158 unsigned int i;
159 int err = 0;
160
161 for (i = 0; i < n; i++) {
162 err = xt_register_match(&match[i]);
163 if (err)
164 goto err;
165 }
166 return err;
167
168err:
169 if (i > 0)
170 xt_unregister_matches(match, i);
171 return err;
172}
173EXPORT_SYMBOL(xt_register_matches);
174
175void
176xt_unregister_matches(struct xt_match *match, unsigned int n)
177{
f68c5301
CG
178 while (n-- > 0)
179 xt_unregister_match(&match[n]);
52d9c42e
PM
180}
181EXPORT_SYMBOL(xt_unregister_matches);
182
2e4e6a17
HW
183
184/*
185 * These are weird, but module loading must not be done with mutex
186 * held (since they will register), and we have to have a single
adb00ae2 187 * function to use.
2e4e6a17
HW
188 */
189
190/* Find match, grabs ref. Returns ERR_PTR() on error. */
76108cea 191struct xt_match *xt_find_match(u8 af, const char *name, u8 revision)
2e4e6a17
HW
192{
193 struct xt_match *m;
42046e2e 194 int err = -ENOENT;
2e4e6a17 195
9e19bb6d 196 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
2e4e6a17
HW
197 return ERR_PTR(-EINTR);
198
199 list_for_each_entry(m, &xt[af].match, list) {
200 if (strcmp(m->name, name) == 0) {
201 if (m->revision == revision) {
202 if (try_module_get(m->me)) {
9e19bb6d 203 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
204 return m;
205 }
206 } else
207 err = -EPROTOTYPE; /* Found something. */
208 }
209 }
9e19bb6d 210 mutex_unlock(&xt[af].mutex);
55b69e91
JE
211
212 if (af != NFPROTO_UNSPEC)
213 /* Try searching again in the family-independent list */
214 return xt_find_match(NFPROTO_UNSPEC, name, revision);
215
2e4e6a17
HW
216 return ERR_PTR(err);
217}
218EXPORT_SYMBOL(xt_find_match);
219
fd0ec0e6
JE
220struct xt_match *
221xt_request_find_match(uint8_t nfproto, const char *name, uint8_t revision)
222{
223 struct xt_match *match;
224
adb00ae2
SH
225 match = xt_find_match(nfproto, name, revision);
226 if (IS_ERR(match)) {
227 request_module("%st_%s", xt_prefix[nfproto], name);
228 match = xt_find_match(nfproto, name, revision);
229 }
230
231 return match;
fd0ec0e6
JE
232}
233EXPORT_SYMBOL_GPL(xt_request_find_match);
234
2e4e6a17 235/* Find target, grabs ref. Returns ERR_PTR() on error. */
76108cea 236struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
2e4e6a17
HW
237{
238 struct xt_target *t;
42046e2e 239 int err = -ENOENT;
2e4e6a17 240
9e19bb6d 241 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
2e4e6a17
HW
242 return ERR_PTR(-EINTR);
243
244 list_for_each_entry(t, &xt[af].target, list) {
245 if (strcmp(t->name, name) == 0) {
246 if (t->revision == revision) {
247 if (try_module_get(t->me)) {
9e19bb6d 248 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
249 return t;
250 }
251 } else
252 err = -EPROTOTYPE; /* Found something. */
253 }
254 }
9e19bb6d 255 mutex_unlock(&xt[af].mutex);
55b69e91
JE
256
257 if (af != NFPROTO_UNSPEC)
258 /* Try searching again in the family-independent list */
259 return xt_find_target(NFPROTO_UNSPEC, name, revision);
260
2e4e6a17
HW
261 return ERR_PTR(err);
262}
263EXPORT_SYMBOL(xt_find_target);
264
76108cea 265struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
2e4e6a17
HW
266{
267 struct xt_target *target;
268
adb00ae2
SH
269 target = xt_find_target(af, name, revision);
270 if (IS_ERR(target)) {
271 request_module("%st_%s", xt_prefix[af], name);
272 target = xt_find_target(af, name, revision);
273 }
274
275 return target;
2e4e6a17
HW
276}
277EXPORT_SYMBOL_GPL(xt_request_find_target);
278
76108cea 279static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
2e4e6a17 280{
5452e425 281 const struct xt_match *m;
2e4e6a17
HW
282 int have_rev = 0;
283
284 list_for_each_entry(m, &xt[af].match, list) {
285 if (strcmp(m->name, name) == 0) {
286 if (m->revision > *bestp)
287 *bestp = m->revision;
288 if (m->revision == revision)
289 have_rev = 1;
290 }
291 }
656caff2
PM
292
293 if (af != NFPROTO_UNSPEC && !have_rev)
294 return match_revfn(NFPROTO_UNSPEC, name, revision, bestp);
295
2e4e6a17
HW
296 return have_rev;
297}
298
76108cea 299static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
2e4e6a17 300{
5452e425 301 const struct xt_target *t;
2e4e6a17
HW
302 int have_rev = 0;
303
304 list_for_each_entry(t, &xt[af].target, list) {
305 if (strcmp(t->name, name) == 0) {
306 if (t->revision > *bestp)
307 *bestp = t->revision;
308 if (t->revision == revision)
309 have_rev = 1;
310 }
311 }
656caff2
PM
312
313 if (af != NFPROTO_UNSPEC && !have_rev)
314 return target_revfn(NFPROTO_UNSPEC, name, revision, bestp);
315
2e4e6a17
HW
316 return have_rev;
317}
318
319/* Returns true or false (if no such extension at all) */
76108cea 320int xt_find_revision(u8 af, const char *name, u8 revision, int target,
2e4e6a17
HW
321 int *err)
322{
323 int have_rev, best = -1;
324
9e19bb6d 325 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
2e4e6a17
HW
326 *err = -EINTR;
327 return 1;
328 }
329 if (target == 1)
330 have_rev = target_revfn(af, name, revision, &best);
331 else
332 have_rev = match_revfn(af, name, revision, &best);
9e19bb6d 333 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
334
335 /* Nothing at all? Return 0 to try loading module. */
336 if (best == -1) {
337 *err = -ENOENT;
338 return 0;
339 }
340
341 *err = best;
342 if (!have_rev)
343 *err = -EPROTONOSUPPORT;
344 return 1;
345}
346EXPORT_SYMBOL_GPL(xt_find_revision);
347
5b76c494
JE
348static char *
349textify_hooks(char *buf, size_t size, unsigned int mask, uint8_t nfproto)
45185364 350{
5b76c494 351 static const char *const inetbr_names[] = {
45185364
JE
352 "PREROUTING", "INPUT", "FORWARD",
353 "OUTPUT", "POSTROUTING", "BROUTING",
354 };
5b76c494
JE
355 static const char *const arp_names[] = {
356 "INPUT", "FORWARD", "OUTPUT",
357 };
358 const char *const *names;
359 unsigned int i, max;
45185364
JE
360 char *p = buf;
361 bool np = false;
362 int res;
363
5b76c494
JE
364 names = (nfproto == NFPROTO_ARP) ? arp_names : inetbr_names;
365 max = (nfproto == NFPROTO_ARP) ? ARRAY_SIZE(arp_names) :
366 ARRAY_SIZE(inetbr_names);
45185364 367 *p = '\0';
5b76c494 368 for (i = 0; i < max; ++i) {
45185364
JE
369 if (!(mask & (1 << i)))
370 continue;
371 res = snprintf(p, size, "%s%s", np ? "/" : "", names[i]);
372 if (res > 0) {
373 size -= res;
374 p += res;
375 }
376 np = true;
377 }
378
379 return buf;
380}
381
916a917d 382int xt_check_match(struct xt_mtchk_param *par,
9b4fce7a 383 unsigned int size, u_int8_t proto, bool inv_proto)
37f9f733 384{
bd414ee6
JE
385 int ret;
386
9b4fce7a
JE
387 if (XT_ALIGN(par->match->matchsize) != size &&
388 par->match->matchsize != -1) {
043ef46c
JE
389 /*
390 * ebt_among is exempt from centralized matchsize checking
391 * because it uses a dynamic-size data set.
392 */
b402405d
JE
393 pr_err("%s_tables: %s.%u match: invalid size "
394 "%u (kernel) != (user) %u\n",
916a917d 395 xt_prefix[par->family], par->match->name,
b402405d 396 par->match->revision,
9b4fce7a 397 XT_ALIGN(par->match->matchsize), size);
37f9f733
PM
398 return -EINVAL;
399 }
9b4fce7a
JE
400 if (par->match->table != NULL &&
401 strcmp(par->match->table, par->table) != 0) {
3dd5d7e3 402 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
916a917d 403 xt_prefix[par->family], par->match->name,
9b4fce7a 404 par->match->table, par->table);
37f9f733
PM
405 return -EINVAL;
406 }
9b4fce7a 407 if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
45185364
JE
408 char used[64], allow[64];
409
3dd5d7e3 410 pr_err("%s_tables: %s match: used from hooks %s, but only "
45185364 411 "valid from %s\n",
916a917d 412 xt_prefix[par->family], par->match->name,
5b76c494
JE
413 textify_hooks(used, sizeof(used), par->hook_mask,
414 par->family),
415 textify_hooks(allow, sizeof(allow), par->match->hooks,
416 par->family));
37f9f733
PM
417 return -EINVAL;
418 }
9b4fce7a 419 if (par->match->proto && (par->match->proto != proto || inv_proto)) {
3dd5d7e3 420 pr_err("%s_tables: %s match: only valid for protocol %u\n",
916a917d
JE
421 xt_prefix[par->family], par->match->name,
422 par->match->proto);
37f9f733
PM
423 return -EINVAL;
424 }
bd414ee6
JE
425 if (par->match->checkentry != NULL) {
426 ret = par->match->checkentry(par);
427 if (ret < 0)
428 return ret;
429 else if (ret > 0)
430 /* Flag up potential errors. */
431 return -EIO;
432 }
37f9f733
PM
433 return 0;
434}
435EXPORT_SYMBOL_GPL(xt_check_match);
436
2722971c 437#ifdef CONFIG_COMPAT
255d0dc3 438int xt_compat_add_offset(u_int8_t af, unsigned int offset, int delta)
b386d9f5 439{
255d0dc3 440 struct xt_af *xp = &xt[af];
b386d9f5 441
255d0dc3
ED
442 if (!xp->compat_tab) {
443 if (!xp->number)
444 return -EINVAL;
445 xp->compat_tab = vmalloc(sizeof(struct compat_delta) * xp->number);
446 if (!xp->compat_tab)
447 return -ENOMEM;
448 xp->cur = 0;
449 }
b386d9f5 450
255d0dc3
ED
451 if (xp->cur >= xp->number)
452 return -EINVAL;
b386d9f5 453
255d0dc3
ED
454 if (xp->cur)
455 delta += xp->compat_tab[xp->cur - 1].delta;
456 xp->compat_tab[xp->cur].offset = offset;
457 xp->compat_tab[xp->cur].delta = delta;
458 xp->cur++;
b386d9f5
PM
459 return 0;
460}
461EXPORT_SYMBOL_GPL(xt_compat_add_offset);
462
76108cea 463void xt_compat_flush_offsets(u_int8_t af)
b386d9f5 464{
255d0dc3
ED
465 if (xt[af].compat_tab) {
466 vfree(xt[af].compat_tab);
467 xt[af].compat_tab = NULL;
468 xt[af].number = 0;
5a6351ee 469 xt[af].cur = 0;
b386d9f5
PM
470 }
471}
472EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
473
3e5e524f 474int xt_compat_calc_jump(u_int8_t af, unsigned int offset)
b386d9f5 475{
255d0dc3
ED
476 struct compat_delta *tmp = xt[af].compat_tab;
477 int mid, left = 0, right = xt[af].cur - 1;
478
479 while (left <= right) {
480 mid = (left + right) >> 1;
481 if (offset > tmp[mid].offset)
482 left = mid + 1;
483 else if (offset < tmp[mid].offset)
484 right = mid - 1;
485 else
486 return mid ? tmp[mid - 1].delta : 0;
487 }
5a6351ee 488 return left ? tmp[left - 1].delta : 0;
b386d9f5
PM
489}
490EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
491
255d0dc3
ED
492void xt_compat_init_offsets(u_int8_t af, unsigned int number)
493{
494 xt[af].number = number;
495 xt[af].cur = 0;
496}
497EXPORT_SYMBOL(xt_compat_init_offsets);
498
5452e425 499int xt_compat_match_offset(const struct xt_match *match)
2722971c 500{
9fa492cd
PM
501 u_int16_t csize = match->compatsize ? : match->matchsize;
502 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
503}
504EXPORT_SYMBOL_GPL(xt_compat_match_offset);
505
89566951 506int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
b0a6363c 507 unsigned int *size)
9fa492cd 508{
5452e425 509 const struct xt_match *match = m->u.kernel.match;
9fa492cd
PM
510 struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
511 int pad, off = xt_compat_match_offset(match);
512 u_int16_t msize = cm->u.user.match_size;
513
514 m = *dstptr;
515 memcpy(m, cm, sizeof(*cm));
516 if (match->compat_from_user)
517 match->compat_from_user(m->data, cm->data);
518 else
519 memcpy(m->data, cm->data, msize - sizeof(*cm));
520 pad = XT_ALIGN(match->matchsize) - match->matchsize;
521 if (pad > 0)
522 memset(m->data + match->matchsize, 0, pad);
523
524 msize += off;
525 m->u.user.match_size = msize;
526
527 *size += off;
528 *dstptr += msize;
89566951 529 return 0;
9fa492cd
PM
530}
531EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
532
739674fb
JE
533int xt_compat_match_to_user(const struct xt_entry_match *m,
534 void __user **dstptr, unsigned int *size)
9fa492cd 535{
5452e425 536 const struct xt_match *match = m->u.kernel.match;
9fa492cd
PM
537 struct compat_xt_entry_match __user *cm = *dstptr;
538 int off = xt_compat_match_offset(match);
539 u_int16_t msize = m->u.user.match_size - off;
540
541 if (copy_to_user(cm, m, sizeof(*cm)) ||
a18aa31b
PM
542 put_user(msize, &cm->u.user.match_size) ||
543 copy_to_user(cm->u.user.name, m->u.kernel.match->name,
544 strlen(m->u.kernel.match->name) + 1))
601e68e1 545 return -EFAULT;
9fa492cd
PM
546
547 if (match->compat_to_user) {
548 if (match->compat_to_user((void __user *)cm->data, m->data))
549 return -EFAULT;
550 } else {
551 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
552 return -EFAULT;
2722971c 553 }
9fa492cd
PM
554
555 *size -= off;
556 *dstptr += msize;
557 return 0;
2722971c 558}
9fa492cd
PM
559EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
560#endif /* CONFIG_COMPAT */
2722971c 561
916a917d 562int xt_check_target(struct xt_tgchk_param *par,
af5d6dc2 563 unsigned int size, u_int8_t proto, bool inv_proto)
37f9f733 564{
d6b00a53
JE
565 int ret;
566
af5d6dc2 567 if (XT_ALIGN(par->target->targetsize) != size) {
b402405d
JE
568 pr_err("%s_tables: %s.%u target: invalid size "
569 "%u (kernel) != (user) %u\n",
916a917d 570 xt_prefix[par->family], par->target->name,
b402405d 571 par->target->revision,
af5d6dc2 572 XT_ALIGN(par->target->targetsize), size);
37f9f733
PM
573 return -EINVAL;
574 }
af5d6dc2
JE
575 if (par->target->table != NULL &&
576 strcmp(par->target->table, par->table) != 0) {
3dd5d7e3 577 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
916a917d 578 xt_prefix[par->family], par->target->name,
af5d6dc2 579 par->target->table, par->table);
37f9f733
PM
580 return -EINVAL;
581 }
af5d6dc2 582 if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
45185364
JE
583 char used[64], allow[64];
584
3dd5d7e3 585 pr_err("%s_tables: %s target: used from hooks %s, but only "
45185364 586 "usable from %s\n",
916a917d 587 xt_prefix[par->family], par->target->name,
5b76c494
JE
588 textify_hooks(used, sizeof(used), par->hook_mask,
589 par->family),
590 textify_hooks(allow, sizeof(allow), par->target->hooks,
591 par->family));
37f9f733
PM
592 return -EINVAL;
593 }
af5d6dc2 594 if (par->target->proto && (par->target->proto != proto || inv_proto)) {
3dd5d7e3 595 pr_err("%s_tables: %s target: only valid for protocol %u\n",
916a917d 596 xt_prefix[par->family], par->target->name,
af5d6dc2 597 par->target->proto);
37f9f733
PM
598 return -EINVAL;
599 }
d6b00a53
JE
600 if (par->target->checkentry != NULL) {
601 ret = par->target->checkentry(par);
602 if (ret < 0)
603 return ret;
604 else if (ret > 0)
605 /* Flag up potential errors. */
606 return -EIO;
607 }
37f9f733
PM
608 return 0;
609}
610EXPORT_SYMBOL_GPL(xt_check_target);
611
2722971c 612#ifdef CONFIG_COMPAT
5452e425 613int xt_compat_target_offset(const struct xt_target *target)
2722971c 614{
9fa492cd
PM
615 u_int16_t csize = target->compatsize ? : target->targetsize;
616 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
617}
618EXPORT_SYMBOL_GPL(xt_compat_target_offset);
619
620void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
b0a6363c 621 unsigned int *size)
9fa492cd 622{
5452e425 623 const struct xt_target *target = t->u.kernel.target;
9fa492cd
PM
624 struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
625 int pad, off = xt_compat_target_offset(target);
626 u_int16_t tsize = ct->u.user.target_size;
627
628 t = *dstptr;
629 memcpy(t, ct, sizeof(*ct));
630 if (target->compat_from_user)
631 target->compat_from_user(t->data, ct->data);
632 else
633 memcpy(t->data, ct->data, tsize - sizeof(*ct));
634 pad = XT_ALIGN(target->targetsize) - target->targetsize;
635 if (pad > 0)
636 memset(t->data + target->targetsize, 0, pad);
637
638 tsize += off;
639 t->u.user.target_size = tsize;
640
641 *size += off;
642 *dstptr += tsize;
643}
644EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
645
739674fb
JE
646int xt_compat_target_to_user(const struct xt_entry_target *t,
647 void __user **dstptr, unsigned int *size)
9fa492cd 648{
5452e425 649 const struct xt_target *target = t->u.kernel.target;
9fa492cd
PM
650 struct compat_xt_entry_target __user *ct = *dstptr;
651 int off = xt_compat_target_offset(target);
652 u_int16_t tsize = t->u.user.target_size - off;
653
654 if (copy_to_user(ct, t, sizeof(*ct)) ||
a18aa31b
PM
655 put_user(tsize, &ct->u.user.target_size) ||
656 copy_to_user(ct->u.user.name, t->u.kernel.target->name,
657 strlen(t->u.kernel.target->name) + 1))
601e68e1 658 return -EFAULT;
9fa492cd
PM
659
660 if (target->compat_to_user) {
661 if (target->compat_to_user((void __user *)ct->data, t->data))
662 return -EFAULT;
663 } else {
664 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
665 return -EFAULT;
2722971c 666 }
9fa492cd
PM
667
668 *size -= off;
669 *dstptr += tsize;
670 return 0;
2722971c 671}
9fa492cd 672EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
2722971c
DM
673#endif
674
2e4e6a17
HW
675struct xt_table_info *xt_alloc_table_info(unsigned int size)
676{
677 struct xt_table_info *newinfo;
678 int cpu;
679
680 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
4481374c 681 if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > totalram_pages)
2e4e6a17
HW
682 return NULL;
683
259d4e41 684 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
2e4e6a17
HW
685 if (!newinfo)
686 return NULL;
687
688 newinfo->size = size;
689
6f912042 690 for_each_possible_cpu(cpu) {
2e4e6a17
HW
691 if (size <= PAGE_SIZE)
692 newinfo->entries[cpu] = kmalloc_node(size,
693 GFP_KERNEL,
694 cpu_to_node(cpu));
695 else
696 newinfo->entries[cpu] = vmalloc_node(size,
697 cpu_to_node(cpu));
698
699 if (newinfo->entries[cpu] == NULL) {
700 xt_free_table_info(newinfo);
701 return NULL;
702 }
703 }
704
705 return newinfo;
706}
707EXPORT_SYMBOL(xt_alloc_table_info);
708
709void xt_free_table_info(struct xt_table_info *info)
710{
711 int cpu;
712
6f912042 713 for_each_possible_cpu(cpu) {
2e4e6a17
HW
714 if (info->size <= PAGE_SIZE)
715 kfree(info->entries[cpu]);
716 else
717 vfree(info->entries[cpu]);
718 }
f3c5c1bf
JE
719
720 if (info->jumpstack != NULL) {
721 if (sizeof(void *) * info->stacksize > PAGE_SIZE) {
722 for_each_possible_cpu(cpu)
723 vfree(info->jumpstack[cpu]);
724 } else {
725 for_each_possible_cpu(cpu)
726 kfree(info->jumpstack[cpu]);
727 }
728 }
729
730 if (sizeof(void **) * nr_cpu_ids > PAGE_SIZE)
731 vfree(info->jumpstack);
732 else
733 kfree(info->jumpstack);
7489aec8
ED
734
735 free_percpu(info->stackptr);
f3c5c1bf 736
2e4e6a17
HW
737 kfree(info);
738}
739EXPORT_SYMBOL(xt_free_table_info);
740
741/* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
76108cea
JE
742struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
743 const char *name)
2e4e6a17
HW
744{
745 struct xt_table *t;
746
9e19bb6d 747 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
2e4e6a17
HW
748 return ERR_PTR(-EINTR);
749
8d870052 750 list_for_each_entry(t, &net->xt.tables[af], list)
2e4e6a17
HW
751 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
752 return t;
9e19bb6d 753 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
754 return NULL;
755}
756EXPORT_SYMBOL_GPL(xt_find_table_lock);
757
758void xt_table_unlock(struct xt_table *table)
759{
9e19bb6d 760 mutex_unlock(&xt[table->af].mutex);
2e4e6a17
HW
761}
762EXPORT_SYMBOL_GPL(xt_table_unlock);
763
2722971c 764#ifdef CONFIG_COMPAT
76108cea 765void xt_compat_lock(u_int8_t af)
2722971c
DM
766{
767 mutex_lock(&xt[af].compat_mutex);
768}
769EXPORT_SYMBOL_GPL(xt_compat_lock);
770
76108cea 771void xt_compat_unlock(u_int8_t af)
2722971c
DM
772{
773 mutex_unlock(&xt[af].compat_mutex);
774}
775EXPORT_SYMBOL_GPL(xt_compat_unlock);
776#endif
2e4e6a17 777
7f5c6d4f
ED
778DEFINE_PER_CPU(seqcount_t, xt_recseq);
779EXPORT_PER_CPU_SYMBOL_GPL(xt_recseq);
942e4a2b 780
f3c5c1bf
JE
781static int xt_jumpstack_alloc(struct xt_table_info *i)
782{
783 unsigned int size;
784 int cpu;
785
7489aec8 786 i->stackptr = alloc_percpu(unsigned int);
f3c5c1bf
JE
787 if (i->stackptr == NULL)
788 return -ENOMEM;
f3c5c1bf
JE
789
790 size = sizeof(void **) * nr_cpu_ids;
791 if (size > PAGE_SIZE)
3dbd4439 792 i->jumpstack = vzalloc(size);
f3c5c1bf 793 else
3dbd4439 794 i->jumpstack = kzalloc(size, GFP_KERNEL);
f3c5c1bf
JE
795 if (i->jumpstack == NULL)
796 return -ENOMEM;
f3c5c1bf
JE
797
798 i->stacksize *= xt_jumpstack_multiplier;
799 size = sizeof(void *) * i->stacksize;
800 for_each_possible_cpu(cpu) {
801 if (size > PAGE_SIZE)
802 i->jumpstack[cpu] = vmalloc_node(size,
803 cpu_to_node(cpu));
804 else
805 i->jumpstack[cpu] = kmalloc_node(size,
806 GFP_KERNEL, cpu_to_node(cpu));
807 if (i->jumpstack[cpu] == NULL)
808 /*
809 * Freeing will be done later on by the callers. The
810 * chain is: xt_replace_table -> __do_replace ->
811 * do_replace -> xt_free_table_info.
812 */
813 return -ENOMEM;
814 }
815
816 return 0;
817}
942e4a2b 818
2e4e6a17
HW
819struct xt_table_info *
820xt_replace_table(struct xt_table *table,
821 unsigned int num_counters,
822 struct xt_table_info *newinfo,
823 int *error)
824{
942e4a2b 825 struct xt_table_info *private;
f3c5c1bf 826 int ret;
2e4e6a17 827
d97a9e47
JE
828 ret = xt_jumpstack_alloc(newinfo);
829 if (ret < 0) {
830 *error = ret;
831 return NULL;
832 }
833
2e4e6a17 834 /* Do the substitution. */
942e4a2b 835 local_bh_disable();
2e4e6a17 836 private = table->private;
942e4a2b 837
2e4e6a17
HW
838 /* Check inside lock: is the old number correct? */
839 if (num_counters != private->number) {
be91fd5e 840 pr_debug("num_counters != table->private->number (%u/%u)\n",
2e4e6a17 841 num_counters, private->number);
942e4a2b 842 local_bh_enable();
2e4e6a17
HW
843 *error = -EAGAIN;
844 return NULL;
845 }
2e4e6a17 846
942e4a2b
SH
847 table->private = newinfo;
848 newinfo->initial_entries = private->initial_entries;
849
850 /*
851 * Even though table entries have now been swapped, other CPU's
852 * may still be using the old entries. This is okay, because
853 * resynchronization happens because of the locking done
854 * during the get_counters() routine.
855 */
856 local_bh_enable();
857
fbabf31e
TG
858#ifdef CONFIG_AUDIT
859 if (audit_enabled) {
860 struct audit_buffer *ab;
861
862 ab = audit_log_start(current->audit_context, GFP_KERNEL,
863 AUDIT_NETFILTER_CFG);
864 if (ab) {
865 audit_log_format(ab, "table=%s family=%u entries=%u",
866 table->name, table->af,
867 private->number);
868 audit_log_end(ab);
869 }
870 }
871#endif
872
942e4a2b 873 return private;
2e4e6a17
HW
874}
875EXPORT_SYMBOL_GPL(xt_replace_table);
876
35aad0ff
JE
877struct xt_table *xt_register_table(struct net *net,
878 const struct xt_table *input_table,
a98da11d
AD
879 struct xt_table_info *bootstrap,
880 struct xt_table_info *newinfo)
2e4e6a17
HW
881{
882 int ret;
883 struct xt_table_info *private;
35aad0ff 884 struct xt_table *t, *table;
2e4e6a17 885
44d34e72 886 /* Don't add one object to multiple lists. */
35aad0ff 887 table = kmemdup(input_table, sizeof(struct xt_table), GFP_KERNEL);
44d34e72
AD
888 if (!table) {
889 ret = -ENOMEM;
890 goto out;
891 }
892
9e19bb6d 893 ret = mutex_lock_interruptible(&xt[table->af].mutex);
2e4e6a17 894 if (ret != 0)
44d34e72 895 goto out_free;
2e4e6a17
HW
896
897 /* Don't autoload: we'd eat our tail... */
8d870052 898 list_for_each_entry(t, &net->xt.tables[table->af], list) {
df0933dc
PM
899 if (strcmp(t->name, table->name) == 0) {
900 ret = -EEXIST;
901 goto unlock;
902 }
2e4e6a17
HW
903 }
904
905 /* Simplifies replace_table code. */
906 table->private = bootstrap;
78454473 907
2e4e6a17
HW
908 if (!xt_replace_table(table, 0, newinfo, &ret))
909 goto unlock;
910
911 private = table->private;
be91fd5e 912 pr_debug("table->private->number = %u\n", private->number);
2e4e6a17
HW
913
914 /* save number of initial entries */
915 private->initial_entries = private->number;
916
8d870052 917 list_add(&table->list, &net->xt.tables[table->af]);
a98da11d
AD
918 mutex_unlock(&xt[table->af].mutex);
919 return table;
2e4e6a17 920
2e4e6a17 921 unlock:
9e19bb6d 922 mutex_unlock(&xt[table->af].mutex);
44d34e72
AD
923out_free:
924 kfree(table);
a98da11d
AD
925out:
926 return ERR_PTR(ret);
2e4e6a17
HW
927}
928EXPORT_SYMBOL_GPL(xt_register_table);
929
930void *xt_unregister_table(struct xt_table *table)
931{
932 struct xt_table_info *private;
933
9e19bb6d 934 mutex_lock(&xt[table->af].mutex);
2e4e6a17 935 private = table->private;
df0933dc 936 list_del(&table->list);
9e19bb6d 937 mutex_unlock(&xt[table->af].mutex);
44d34e72 938 kfree(table);
2e4e6a17
HW
939
940 return private;
941}
942EXPORT_SYMBOL_GPL(xt_unregister_table);
943
944#ifdef CONFIG_PROC_FS
715cf35a
AD
945struct xt_names_priv {
946 struct seq_net_private p;
76108cea 947 u_int8_t af;
715cf35a 948};
025d93d1 949static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
2e4e6a17 950{
715cf35a 951 struct xt_names_priv *priv = seq->private;
1218854a 952 struct net *net = seq_file_net(seq);
76108cea 953 u_int8_t af = priv->af;
2e4e6a17 954
025d93d1 955 mutex_lock(&xt[af].mutex);
715cf35a 956 return seq_list_start(&net->xt.tables[af], *pos);
025d93d1 957}
2e4e6a17 958
025d93d1
AD
959static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
960{
715cf35a 961 struct xt_names_priv *priv = seq->private;
1218854a 962 struct net *net = seq_file_net(seq);
76108cea 963 u_int8_t af = priv->af;
2e4e6a17 964
715cf35a 965 return seq_list_next(v, &net->xt.tables[af], pos);
2e4e6a17
HW
966}
967
025d93d1 968static void xt_table_seq_stop(struct seq_file *seq, void *v)
2e4e6a17 969{
715cf35a 970 struct xt_names_priv *priv = seq->private;
76108cea 971 u_int8_t af = priv->af;
2e4e6a17 972
025d93d1
AD
973 mutex_unlock(&xt[af].mutex);
974}
2e4e6a17 975
025d93d1
AD
976static int xt_table_seq_show(struct seq_file *seq, void *v)
977{
978 struct xt_table *table = list_entry(v, struct xt_table, list);
2e4e6a17 979
025d93d1
AD
980 if (strlen(table->name))
981 return seq_printf(seq, "%s\n", table->name);
982 else
983 return 0;
984}
601e68e1 985
025d93d1
AD
986static const struct seq_operations xt_table_seq_ops = {
987 .start = xt_table_seq_start,
988 .next = xt_table_seq_next,
989 .stop = xt_table_seq_stop,
990 .show = xt_table_seq_show,
991};
992
993static int xt_table_open(struct inode *inode, struct file *file)
994{
995 int ret;
715cf35a 996 struct xt_names_priv *priv;
025d93d1 997
715cf35a
AD
998 ret = seq_open_net(inode, file, &xt_table_seq_ops,
999 sizeof(struct xt_names_priv));
025d93d1 1000 if (!ret) {
715cf35a 1001 priv = ((struct seq_file *)file->private_data)->private;
d9dda78b 1002 priv->af = (unsigned long)PDE_DATA(inode);
025d93d1
AD
1003 }
1004 return ret;
2e4e6a17
HW
1005}
1006
025d93d1
AD
1007static const struct file_operations xt_table_ops = {
1008 .owner = THIS_MODULE,
1009 .open = xt_table_open,
1010 .read = seq_read,
1011 .llseek = seq_lseek,
0e93bb94 1012 .release = seq_release_net,
025d93d1
AD
1013};
1014
eb132205
JE
1015/*
1016 * Traverse state for ip{,6}_{tables,matches} for helping crossing
1017 * the multi-AF mutexes.
1018 */
1019struct nf_mttg_trav {
1020 struct list_head *head, *curr;
1021 uint8_t class, nfproto;
1022};
1023
1024enum {
1025 MTTG_TRAV_INIT,
1026 MTTG_TRAV_NFP_UNSPEC,
1027 MTTG_TRAV_NFP_SPEC,
1028 MTTG_TRAV_DONE,
1029};
1030
1031static void *xt_mttg_seq_next(struct seq_file *seq, void *v, loff_t *ppos,
1032 bool is_target)
2e4e6a17 1033{
eb132205
JE
1034 static const uint8_t next_class[] = {
1035 [MTTG_TRAV_NFP_UNSPEC] = MTTG_TRAV_NFP_SPEC,
1036 [MTTG_TRAV_NFP_SPEC] = MTTG_TRAV_DONE,
1037 };
1038 struct nf_mttg_trav *trav = seq->private;
1039
1040 switch (trav->class) {
1041 case MTTG_TRAV_INIT:
1042 trav->class = MTTG_TRAV_NFP_UNSPEC;
1043 mutex_lock(&xt[NFPROTO_UNSPEC].mutex);
1044 trav->head = trav->curr = is_target ?
1045 &xt[NFPROTO_UNSPEC].target : &xt[NFPROTO_UNSPEC].match;
1046 break;
1047 case MTTG_TRAV_NFP_UNSPEC:
1048 trav->curr = trav->curr->next;
1049 if (trav->curr != trav->head)
1050 break;
1051 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
1052 mutex_lock(&xt[trav->nfproto].mutex);
1053 trav->head = trav->curr = is_target ?
1054 &xt[trav->nfproto].target : &xt[trav->nfproto].match;
1055 trav->class = next_class[trav->class];
1056 break;
1057 case MTTG_TRAV_NFP_SPEC:
1058 trav->curr = trav->curr->next;
1059 if (trav->curr != trav->head)
1060 break;
1061 /* fallthru, _stop will unlock */
1062 default:
1063 return NULL;
1064 }
2e4e6a17 1065
eb132205
JE
1066 if (ppos != NULL)
1067 ++*ppos;
1068 return trav;
025d93d1 1069}
601e68e1 1070
eb132205
JE
1071static void *xt_mttg_seq_start(struct seq_file *seq, loff_t *pos,
1072 bool is_target)
025d93d1 1073{
eb132205
JE
1074 struct nf_mttg_trav *trav = seq->private;
1075 unsigned int j;
2e4e6a17 1076
eb132205
JE
1077 trav->class = MTTG_TRAV_INIT;
1078 for (j = 0; j < *pos; ++j)
1079 if (xt_mttg_seq_next(seq, NULL, NULL, is_target) == NULL)
1080 return NULL;
1081 return trav;
2e4e6a17
HW
1082}
1083
eb132205 1084static void xt_mttg_seq_stop(struct seq_file *seq, void *v)
2e4e6a17 1085{
eb132205
JE
1086 struct nf_mttg_trav *trav = seq->private;
1087
1088 switch (trav->class) {
1089 case MTTG_TRAV_NFP_UNSPEC:
1090 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
1091 break;
1092 case MTTG_TRAV_NFP_SPEC:
1093 mutex_unlock(&xt[trav->nfproto].mutex);
1094 break;
1095 }
1096}
2e4e6a17 1097
eb132205
JE
1098static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
1099{
1100 return xt_mttg_seq_start(seq, pos, false);
2e4e6a17
HW
1101}
1102
eb132205 1103static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
2e4e6a17 1104{
eb132205
JE
1105 return xt_mttg_seq_next(seq, v, ppos, false);
1106}
2e4e6a17 1107
eb132205
JE
1108static int xt_match_seq_show(struct seq_file *seq, void *v)
1109{
1110 const struct nf_mttg_trav *trav = seq->private;
1111 const struct xt_match *match;
1112
1113 switch (trav->class) {
1114 case MTTG_TRAV_NFP_UNSPEC:
1115 case MTTG_TRAV_NFP_SPEC:
1116 if (trav->curr == trav->head)
1117 return 0;
1118 match = list_entry(trav->curr, struct xt_match, list);
1119 return (*match->name == '\0') ? 0 :
1120 seq_printf(seq, "%s\n", match->name);
1121 }
1122 return 0;
2e4e6a17
HW
1123}
1124
025d93d1
AD
1125static const struct seq_operations xt_match_seq_ops = {
1126 .start = xt_match_seq_start,
1127 .next = xt_match_seq_next,
eb132205 1128 .stop = xt_mttg_seq_stop,
025d93d1 1129 .show = xt_match_seq_show,
2e4e6a17
HW
1130};
1131
025d93d1 1132static int xt_match_open(struct inode *inode, struct file *file)
2e4e6a17 1133{
eb132205
JE
1134 struct seq_file *seq;
1135 struct nf_mttg_trav *trav;
2e4e6a17
HW
1136 int ret;
1137
eb132205
JE
1138 trav = kmalloc(sizeof(*trav), GFP_KERNEL);
1139 if (trav == NULL)
1140 return -ENOMEM;
2e4e6a17 1141
eb132205
JE
1142 ret = seq_open(file, &xt_match_seq_ops);
1143 if (ret < 0) {
1144 kfree(trav);
1145 return ret;
2e4e6a17 1146 }
eb132205
JE
1147
1148 seq = file->private_data;
1149 seq->private = trav;
d9dda78b 1150 trav->nfproto = (unsigned long)PDE_DATA(inode);
eb132205 1151 return 0;
025d93d1
AD
1152}
1153
1154static const struct file_operations xt_match_ops = {
1155 .owner = THIS_MODULE,
1156 .open = xt_match_open,
1157 .read = seq_read,
1158 .llseek = seq_lseek,
eb132205 1159 .release = seq_release_private,
025d93d1 1160};
2e4e6a17 1161
025d93d1
AD
1162static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
1163{
eb132205 1164 return xt_mttg_seq_start(seq, pos, true);
025d93d1
AD
1165}
1166
eb132205 1167static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
025d93d1 1168{
eb132205 1169 return xt_mttg_seq_next(seq, v, ppos, true);
025d93d1
AD
1170}
1171
1172static int xt_target_seq_show(struct seq_file *seq, void *v)
1173{
eb132205
JE
1174 const struct nf_mttg_trav *trav = seq->private;
1175 const struct xt_target *target;
1176
1177 switch (trav->class) {
1178 case MTTG_TRAV_NFP_UNSPEC:
1179 case MTTG_TRAV_NFP_SPEC:
1180 if (trav->curr == trav->head)
1181 return 0;
1182 target = list_entry(trav->curr, struct xt_target, list);
1183 return (*target->name == '\0') ? 0 :
1184 seq_printf(seq, "%s\n", target->name);
1185 }
1186 return 0;
025d93d1
AD
1187}
1188
1189static const struct seq_operations xt_target_seq_ops = {
1190 .start = xt_target_seq_start,
1191 .next = xt_target_seq_next,
eb132205 1192 .stop = xt_mttg_seq_stop,
025d93d1
AD
1193 .show = xt_target_seq_show,
1194};
1195
1196static int xt_target_open(struct inode *inode, struct file *file)
1197{
eb132205
JE
1198 struct seq_file *seq;
1199 struct nf_mttg_trav *trav;
025d93d1
AD
1200 int ret;
1201
eb132205
JE
1202 trav = kmalloc(sizeof(*trav), GFP_KERNEL);
1203 if (trav == NULL)
1204 return -ENOMEM;
025d93d1 1205
eb132205
JE
1206 ret = seq_open(file, &xt_target_seq_ops);
1207 if (ret < 0) {
1208 kfree(trav);
1209 return ret;
025d93d1 1210 }
eb132205
JE
1211
1212 seq = file->private_data;
1213 seq->private = trav;
d9dda78b 1214 trav->nfproto = (unsigned long)PDE_DATA(inode);
eb132205 1215 return 0;
2e4e6a17
HW
1216}
1217
025d93d1 1218static const struct file_operations xt_target_ops = {
2e4e6a17 1219 .owner = THIS_MODULE,
025d93d1 1220 .open = xt_target_open,
2e4e6a17
HW
1221 .read = seq_read,
1222 .llseek = seq_lseek,
eb132205 1223 .release = seq_release_private,
2e4e6a17
HW
1224};
1225
1226#define FORMAT_TABLES "_tables_names"
1227#define FORMAT_MATCHES "_tables_matches"
1228#define FORMAT_TARGETS "_tables_targets"
1229
1230#endif /* CONFIG_PROC_FS */
1231
2b95efe7
JE
1232/**
1233 * xt_hook_link - set up hooks for a new table
1234 * @table: table with metadata needed to set up hooks
1235 * @fn: Hook function
1236 *
1237 * This function will take care of creating and registering the necessary
1238 * Netfilter hooks for XT tables.
1239 */
1240struct nf_hook_ops *xt_hook_link(const struct xt_table *table, nf_hookfn *fn)
1241{
1242 unsigned int hook_mask = table->valid_hooks;
1243 uint8_t i, num_hooks = hweight32(hook_mask);
1244 uint8_t hooknum;
1245 struct nf_hook_ops *ops;
1246 int ret;
1247
1248 ops = kmalloc(sizeof(*ops) * num_hooks, GFP_KERNEL);
1249 if (ops == NULL)
1250 return ERR_PTR(-ENOMEM);
1251
1252 for (i = 0, hooknum = 0; i < num_hooks && hook_mask != 0;
1253 hook_mask >>= 1, ++hooknum) {
1254 if (!(hook_mask & 1))
1255 continue;
1256 ops[i].hook = fn;
1257 ops[i].owner = table->me;
1258 ops[i].pf = table->af;
1259 ops[i].hooknum = hooknum;
1260 ops[i].priority = table->priority;
1261 ++i;
1262 }
1263
1264 ret = nf_register_hooks(ops, num_hooks);
1265 if (ret < 0) {
1266 kfree(ops);
1267 return ERR_PTR(ret);
1268 }
1269
1270 return ops;
1271}
1272EXPORT_SYMBOL_GPL(xt_hook_link);
1273
1274/**
1275 * xt_hook_unlink - remove hooks for a table
1276 * @ops: nf_hook_ops array as returned by nf_hook_link
1277 * @hook_mask: the very same mask that was passed to nf_hook_link
1278 */
1279void xt_hook_unlink(const struct xt_table *table, struct nf_hook_ops *ops)
1280{
1281 nf_unregister_hooks(ops, hweight32(table->valid_hooks));
1282 kfree(ops);
1283}
1284EXPORT_SYMBOL_GPL(xt_hook_unlink);
1285
76108cea 1286int xt_proto_init(struct net *net, u_int8_t af)
2e4e6a17
HW
1287{
1288#ifdef CONFIG_PROC_FS
1289 char buf[XT_FUNCTION_MAXNAMELEN];
1290 struct proc_dir_entry *proc;
1291#endif
1292
7e9c6eeb 1293 if (af >= ARRAY_SIZE(xt_prefix))
2e4e6a17
HW
1294 return -EINVAL;
1295
1296
1297#ifdef CONFIG_PROC_FS
ce18afe5 1298 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1299 strlcat(buf, FORMAT_TABLES, sizeof(buf));
8b169240
DL
1300 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
1301 (void *)(unsigned long)af);
2e4e6a17
HW
1302 if (!proc)
1303 goto out;
2e4e6a17 1304
ce18afe5 1305 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1306 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
8b169240
DL
1307 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
1308 (void *)(unsigned long)af);
2e4e6a17
HW
1309 if (!proc)
1310 goto out_remove_tables;
2e4e6a17 1311
ce18afe5 1312 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1313 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
8b169240
DL
1314 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
1315 (void *)(unsigned long)af);
2e4e6a17
HW
1316 if (!proc)
1317 goto out_remove_matches;
2e4e6a17
HW
1318#endif
1319
1320 return 0;
1321
1322#ifdef CONFIG_PROC_FS
1323out_remove_matches:
ce18afe5 1324 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1325 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
ece31ffd 1326 remove_proc_entry(buf, net->proc_net);
2e4e6a17
HW
1327
1328out_remove_tables:
ce18afe5 1329 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1330 strlcat(buf, FORMAT_TABLES, sizeof(buf));
ece31ffd 1331 remove_proc_entry(buf, net->proc_net);
2e4e6a17
HW
1332out:
1333 return -1;
1334#endif
1335}
1336EXPORT_SYMBOL_GPL(xt_proto_init);
1337
76108cea 1338void xt_proto_fini(struct net *net, u_int8_t af)
2e4e6a17
HW
1339{
1340#ifdef CONFIG_PROC_FS
1341 char buf[XT_FUNCTION_MAXNAMELEN];
1342
ce18afe5 1343 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1344 strlcat(buf, FORMAT_TABLES, sizeof(buf));
ece31ffd 1345 remove_proc_entry(buf, net->proc_net);
2e4e6a17 1346
ce18afe5 1347 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1348 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
ece31ffd 1349 remove_proc_entry(buf, net->proc_net);
2e4e6a17 1350
ce18afe5 1351 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1352 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
ece31ffd 1353 remove_proc_entry(buf, net->proc_net);
2e4e6a17
HW
1354#endif /*CONFIG_PROC_FS*/
1355}
1356EXPORT_SYMBOL_GPL(xt_proto_fini);
1357
8d870052
AD
1358static int __net_init xt_net_init(struct net *net)
1359{
1360 int i;
1361
7e9c6eeb 1362 for (i = 0; i < NFPROTO_NUMPROTO; i++)
8d870052
AD
1363 INIT_LIST_HEAD(&net->xt.tables[i]);
1364 return 0;
1365}
1366
1367static struct pernet_operations xt_net_ops = {
1368 .init = xt_net_init,
1369};
2e4e6a17
HW
1370
1371static int __init xt_init(void)
1372{
942e4a2b
SH
1373 unsigned int i;
1374 int rv;
1375
1376 for_each_possible_cpu(i) {
7f5c6d4f 1377 seqcount_init(&per_cpu(xt_recseq, i));
942e4a2b 1378 }
2e4e6a17 1379
7e9c6eeb 1380 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
2e4e6a17
HW
1381 if (!xt)
1382 return -ENOMEM;
1383
7e9c6eeb 1384 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
9e19bb6d 1385 mutex_init(&xt[i].mutex);
2722971c
DM
1386#ifdef CONFIG_COMPAT
1387 mutex_init(&xt[i].compat_mutex);
255d0dc3 1388 xt[i].compat_tab = NULL;
2722971c 1389#endif
2e4e6a17
HW
1390 INIT_LIST_HEAD(&xt[i].target);
1391 INIT_LIST_HEAD(&xt[i].match);
2e4e6a17 1392 }
8d870052
AD
1393 rv = register_pernet_subsys(&xt_net_ops);
1394 if (rv < 0)
1395 kfree(xt);
1396 return rv;
2e4e6a17
HW
1397}
1398
1399static void __exit xt_fini(void)
1400{
8d870052 1401 unregister_pernet_subsys(&xt_net_ops);
2e4e6a17
HW
1402 kfree(xt);
1403}
1404
1405module_init(xt_init);
1406module_exit(xt_fini);
1407