netfilter: ebtables: Simplify the arguments to ebt_do_table
[linux-block.git] / net / ipv4 / netfilter / ip_tables.c
CommitLineData
1da177e4
LT
1/*
2 * Packet matching code.
3 *
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
2e4e6a17 5 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
f229f6ce 6 * Copyright (C) 2006-2010 Patrick McHardy <kaber@trash.net>
1da177e4
LT
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
1da177e4 11 */
90e7d4ab 12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
1da177e4 13#include <linux/cache.h>
4fc268d2 14#include <linux/capability.h>
1da177e4
LT
15#include <linux/skbuff.h>
16#include <linux/kmod.h>
17#include <linux/vmalloc.h>
18#include <linux/netdevice.h>
19#include <linux/module.h>
1da177e4
LT
20#include <linux/icmp.h>
21#include <net/ip.h>
2722971c 22#include <net/compat.h>
1da177e4 23#include <asm/uaccess.h>
57b47a53 24#include <linux/mutex.h>
1da177e4
LT
25#include <linux/proc_fs.h>
26#include <linux/err.h>
c8923c6b 27#include <linux/cpumask.h>
1da177e4 28
2e4e6a17 29#include <linux/netfilter/x_tables.h>
1da177e4 30#include <linux/netfilter_ipv4/ip_tables.h>
f01ffbd6 31#include <net/netfilter/nf_log.h>
e3eaa991 32#include "../../netfilter/xt_repldata.h"
1da177e4
LT
33
34MODULE_LICENSE("GPL");
35MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
36MODULE_DESCRIPTION("IPv4 packet filter");
37
38/*#define DEBUG_IP_FIREWALL*/
39/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
40/*#define DEBUG_IP_FIREWALL_USER*/
41
42#ifdef DEBUG_IP_FIREWALL
ff67e4e4 43#define dprintf(format, args...) pr_info(format , ## args)
1da177e4
LT
44#else
45#define dprintf(format, args...)
46#endif
47
48#ifdef DEBUG_IP_FIREWALL_USER
ff67e4e4 49#define duprintf(format, args...) pr_info(format , ## args)
1da177e4
LT
50#else
51#define duprintf(format, args...)
52#endif
53
54#ifdef CONFIG_NETFILTER_DEBUG
af567603 55#define IP_NF_ASSERT(x) WARN_ON(!(x))
1da177e4
LT
56#else
57#define IP_NF_ASSERT(x)
58#endif
1da177e4
LT
59
60#if 0
61/* All the better to debug you with... */
62#define static
63#define inline
64#endif
65
e3eaa991
JE
66void *ipt_alloc_initial_table(const struct xt_table *info)
67{
68 return xt_alloc_initial_table(ipt, IPT);
69}
70EXPORT_SYMBOL_GPL(ipt_alloc_initial_table);
71
1da177e4 72/* Returns whether matches rule or not. */
022748a9 73/* Performance critical - called for every packet */
9c547959 74static inline bool
1da177e4
LT
75ip_packet_match(const struct iphdr *ip,
76 const char *indev,
77 const char *outdev,
78 const struct ipt_ip *ipinfo,
79 int isfrag)
80{
1da177e4
LT
81 unsigned long ret;
82
e79ec50b 83#define FWINV(bool, invflg) ((bool) ^ !!(ipinfo->invflags & (invflg)))
1da177e4
LT
84
85 if (FWINV((ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr,
3666ed1c
JP
86 IPT_INV_SRCIP) ||
87 FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr,
88 IPT_INV_DSTIP)) {
1da177e4
LT
89 dprintf("Source or dest mismatch.\n");
90
cffee385
HH
91 dprintf("SRC: %pI4. Mask: %pI4. Target: %pI4.%s\n",
92 &ip->saddr, &ipinfo->smsk.s_addr, &ipinfo->src.s_addr,
1da177e4 93 ipinfo->invflags & IPT_INV_SRCIP ? " (INV)" : "");
cffee385
HH
94 dprintf("DST: %pI4 Mask: %pI4 Target: %pI4.%s\n",
95 &ip->daddr, &ipinfo->dmsk.s_addr, &ipinfo->dst.s_addr,
1da177e4 96 ipinfo->invflags & IPT_INV_DSTIP ? " (INV)" : "");
9c547959 97 return false;
1da177e4
LT
98 }
99
b8dfe498 100 ret = ifname_compare_aligned(indev, ipinfo->iniface, ipinfo->iniface_mask);
1da177e4
LT
101
102 if (FWINV(ret != 0, IPT_INV_VIA_IN)) {
103 dprintf("VIA in mismatch (%s vs %s).%s\n",
104 indev, ipinfo->iniface,
105 ipinfo->invflags&IPT_INV_VIA_IN ?" (INV)":"");
9c547959 106 return false;
1da177e4
LT
107 }
108
b8dfe498 109 ret = ifname_compare_aligned(outdev, ipinfo->outiface, ipinfo->outiface_mask);
1da177e4
LT
110
111 if (FWINV(ret != 0, IPT_INV_VIA_OUT)) {
112 dprintf("VIA out mismatch (%s vs %s).%s\n",
113 outdev, ipinfo->outiface,
114 ipinfo->invflags&IPT_INV_VIA_OUT ?" (INV)":"");
9c547959 115 return false;
1da177e4
LT
116 }
117
118 /* Check specific protocol */
3666ed1c
JP
119 if (ipinfo->proto &&
120 FWINV(ip->protocol != ipinfo->proto, IPT_INV_PROTO)) {
1da177e4
LT
121 dprintf("Packet protocol %hi does not match %hi.%s\n",
122 ip->protocol, ipinfo->proto,
123 ipinfo->invflags&IPT_INV_PROTO ? " (INV)":"");
9c547959 124 return false;
1da177e4
LT
125 }
126
127 /* If we have a fragment rule but the packet is not a fragment
128 * then we return zero */
129 if (FWINV((ipinfo->flags&IPT_F_FRAG) && !isfrag, IPT_INV_FRAG)) {
130 dprintf("Fragment rule but not fragment.%s\n",
131 ipinfo->invflags & IPT_INV_FRAG ? " (INV)" : "");
9c547959 132 return false;
1da177e4
LT
133 }
134
9c547959 135 return true;
1da177e4
LT
136}
137
022748a9 138static bool
1da177e4
LT
139ip_checkentry(const struct ipt_ip *ip)
140{
141 if (ip->flags & ~IPT_F_MASK) {
142 duprintf("Unknown flag bits set: %08X\n",
143 ip->flags & ~IPT_F_MASK);
ccb79bdc 144 return false;
1da177e4
LT
145 }
146 if (ip->invflags & ~IPT_INV_MASK) {
147 duprintf("Unknown invflag bits set: %08X\n",
148 ip->invflags & ~IPT_INV_MASK);
ccb79bdc 149 return false;
1da177e4 150 }
ccb79bdc 151 return true;
1da177e4
LT
152}
153
154static unsigned int
4b560b44 155ipt_error(struct sk_buff *skb, const struct xt_action_param *par)
1da177e4 156{
e87cc472 157 net_info_ratelimited("error: `%s'\n", (const char *)par->targinfo);
1da177e4
LT
158
159 return NF_DROP;
160}
161
022748a9 162/* Performance critical */
1da177e4 163static inline struct ipt_entry *
d5d1baa1 164get_entry(const void *base, unsigned int offset)
1da177e4
LT
165{
166 return (struct ipt_entry *)(base + offset);
167}
168
ba9dda3a 169/* All zeroes == unconditional rule. */
022748a9 170/* Mildly perf critical (only if packet tracing is on) */
47901dc2 171static inline bool unconditional(const struct ipt_ip *ip)
ba9dda3a 172{
47901dc2 173 static const struct ipt_ip uncond;
ba9dda3a 174
47901dc2 175 return memcmp(ip, &uncond, sizeof(uncond)) == 0;
e79ec50b 176#undef FWINV
ba9dda3a
JK
177}
178
d5d1baa1 179/* for const-correctness */
87a2e70d 180static inline const struct xt_entry_target *
d5d1baa1
JE
181ipt_get_target_c(const struct ipt_entry *e)
182{
183 return ipt_get_target((struct ipt_entry *)e);
184}
185
f0165888 186#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
022748a9 187static const char *const hooknames[] = {
6e23ae2a
PM
188 [NF_INET_PRE_ROUTING] = "PREROUTING",
189 [NF_INET_LOCAL_IN] = "INPUT",
9c547959 190 [NF_INET_FORWARD] = "FORWARD",
6e23ae2a
PM
191 [NF_INET_LOCAL_OUT] = "OUTPUT",
192 [NF_INET_POST_ROUTING] = "POSTROUTING",
ba9dda3a
JK
193};
194
195enum nf_ip_trace_comments {
196 NF_IP_TRACE_COMMENT_RULE,
197 NF_IP_TRACE_COMMENT_RETURN,
198 NF_IP_TRACE_COMMENT_POLICY,
199};
200
022748a9 201static const char *const comments[] = {
ba9dda3a
JK
202 [NF_IP_TRACE_COMMENT_RULE] = "rule",
203 [NF_IP_TRACE_COMMENT_RETURN] = "return",
204 [NF_IP_TRACE_COMMENT_POLICY] = "policy",
205};
206
207static struct nf_loginfo trace_loginfo = {
208 .type = NF_LOG_TYPE_LOG,
209 .u = {
210 .log = {
211 .level = 4,
212 .logflags = NF_LOG_MASK,
213 },
214 },
215};
216
022748a9 217/* Mildly perf critical (only if packet tracing is on) */
ba9dda3a 218static inline int
d5d1baa1 219get_chainname_rulenum(const struct ipt_entry *s, const struct ipt_entry *e,
4f2f6f23
JE
220 const char *hookname, const char **chainname,
221 const char **comment, unsigned int *rulenum)
ba9dda3a 222{
87a2e70d 223 const struct xt_standard_target *t = (void *)ipt_get_target_c(s);
ba9dda3a 224
243bf6e2 225 if (strcmp(t->target.u.kernel.target->name, XT_ERROR_TARGET) == 0) {
ba9dda3a
JK
226 /* Head of user chain: ERROR target with chainname */
227 *chainname = t->target.data;
228 (*rulenum) = 0;
229 } else if (s == e) {
230 (*rulenum)++;
231
3666ed1c
JP
232 if (s->target_offset == sizeof(struct ipt_entry) &&
233 strcmp(t->target.u.kernel.target->name,
243bf6e2 234 XT_STANDARD_TARGET) == 0 &&
3666ed1c
JP
235 t->verdict < 0 &&
236 unconditional(&s->ip)) {
ba9dda3a
JK
237 /* Tail of chains: STANDARD target (return/policy) */
238 *comment = *chainname == hookname
4f2f6f23
JE
239 ? comments[NF_IP_TRACE_COMMENT_POLICY]
240 : comments[NF_IP_TRACE_COMMENT_RETURN];
ba9dda3a
JK
241 }
242 return 1;
243 } else
244 (*rulenum)++;
245
246 return 0;
247}
248
9dff2c96
EB
249static void trace_packet(struct net *net,
250 const struct sk_buff *skb,
ba9dda3a
JK
251 unsigned int hook,
252 const struct net_device *in,
253 const struct net_device *out,
ecb6f85e 254 const char *tablename,
d5d1baa1
JE
255 const struct xt_table_info *private,
256 const struct ipt_entry *e)
ba9dda3a 257{
5452e425 258 const struct ipt_entry *root;
4f2f6f23 259 const char *hookname, *chainname, *comment;
72b2b1dd 260 const struct ipt_entry *iter;
ba9dda3a
JK
261 unsigned int rulenum = 0;
262
482cfc31 263 root = get_entry(private->entries, private->hook_entry[hook]);
ba9dda3a 264
4f2f6f23
JE
265 hookname = chainname = hooknames[hook];
266 comment = comments[NF_IP_TRACE_COMMENT_RULE];
ba9dda3a 267
72b2b1dd
JE
268 xt_entry_foreach(iter, root, private->size - private->hook_entry[hook])
269 if (get_chainname_rulenum(iter, e, hookname,
270 &chainname, &comment, &rulenum) != 0)
271 break;
ba9dda3a 272
4017a7ee
PNA
273 nf_log_trace(net, AF_INET, hook, skb, in, out, &trace_loginfo,
274 "TRACE: %s:%s:%s:%u ",
275 tablename, chainname, comment, rulenum);
ba9dda3a
JK
276}
277#endif
278
6c7941de 279static inline
98e86403
JE
280struct ipt_entry *ipt_next_entry(const struct ipt_entry *entry)
281{
282 return (void *)entry + entry->next_offset;
283}
284
1da177e4
LT
285/* Returns one of the generic firewall policies, like NF_ACCEPT. */
286unsigned int
3db05fea 287ipt_do_table(struct sk_buff *skb,
1da177e4 288 unsigned int hook,
1c491ba2 289 const struct nf_hook_state *state,
e60a13e0 290 struct xt_table *table)
1da177e4
LT
291{
292 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
5452e425 293 const struct iphdr *ip;
1da177e4
LT
294 /* Initializing verdict to NF_DROP keeps gcc happy. */
295 unsigned int verdict = NF_DROP;
296 const char *indev, *outdev;
d5d1baa1 297 const void *table_base;
f3c5c1bf 298 struct ipt_entry *e, **jumpstack;
7814b6ec 299 unsigned int stackidx, cpu;
d5d1baa1 300 const struct xt_table_info *private;
de74c169 301 struct xt_action_param acpar;
7f5c6d4f 302 unsigned int addend;
1da177e4
LT
303
304 /* Initialization */
7814b6ec 305 stackidx = 0;
3db05fea 306 ip = ip_hdr(skb);
1c491ba2
DM
307 indev = state->in ? state->in->name : nulldevname;
308 outdev = state->out ? state->out->name : nulldevname;
1da177e4
LT
309 /* We handle fragments by dealing with the first fragment as
310 * if it was a normal packet. All other fragments are treated
311 * normally, except that they will NEVER match rules that ask
312 * things we don't know, ie. tcp syn flag or ports). If the
313 * rule is also a fragment-specific rule, non-fragments won't
314 * match it. */
de74c169
JE
315 acpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET;
316 acpar.thoff = ip_hdrlen(skb);
b4ba2611 317 acpar.hotdrop = false;
1c491ba2
DM
318 acpar.in = state->in;
319 acpar.out = state->out;
de74c169
JE
320 acpar.family = NFPROTO_IPV4;
321 acpar.hooknum = hook;
1da177e4 322
1da177e4 323 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
7f5c6d4f
ED
324 local_bh_disable();
325 addend = xt_write_recseq_begin();
942e4a2b 326 private = table->private;
f3c5c1bf 327 cpu = smp_processor_id();
b416c144
WD
328 /*
329 * Ensure we load private-> members after we've fetched the base
330 * pointer.
331 */
332 smp_read_barrier_depends();
482cfc31 333 table_base = private->entries;
f3c5c1bf 334 jumpstack = (struct ipt_entry **)private->jumpstack[cpu];
7814b6ec
FW
335
336 /* Switch to alternate jumpstack if we're being invoked via TEE.
337 * TEE issues XT_CONTINUE verdict on original skb so we must not
338 * clobber the jumpstack.
339 *
340 * For recursion via REJECT or SYNPROXY the stack will be clobbered
341 * but it is no problem since absolute verdict is issued by these.
342 */
dcebd315
FW
343 if (static_key_false(&xt_tee_enabled))
344 jumpstack += private->stacksize * __this_cpu_read(nf_skb_duplicated);
78454473 345
2e4e6a17 346 e = get_entry(table_base, private->hook_entry[hook]);
1da177e4 347
7814b6ec
FW
348 pr_debug("Entering %s(hook %u), UF %p\n",
349 table->name, hook,
f3c5c1bf 350 get_entry(table_base, private->underflow[hook]));
1da177e4
LT
351
352 do {
87a2e70d 353 const struct xt_entry_target *t;
dcea992a 354 const struct xt_entry_match *ematch;
71ae0dff 355 struct xt_counters *counter;
a1ff4ac8 356
1da177e4 357 IP_NF_ASSERT(e);
a1ff4ac8 358 if (!ip_packet_match(ip, indev, outdev,
de74c169 359 &e->ip, acpar.fragoff)) {
dcea992a 360 no_match:
a1ff4ac8
JE
361 e = ipt_next_entry(e);
362 continue;
363 }
1da177e4 364
ef53d702 365 xt_ematch_foreach(ematch, e) {
de74c169
JE
366 acpar.match = ematch->u.kernel.match;
367 acpar.matchinfo = ematch->data;
368 if (!acpar.match->match(skb, &acpar))
dcea992a 369 goto no_match;
ef53d702 370 }
dcea992a 371
71ae0dff
FW
372 counter = xt_get_this_cpu_counter(&e->counters);
373 ADD_COUNTER(*counter, skb->len, 1);
1da177e4 374
a1ff4ac8
JE
375 t = ipt_get_target(e);
376 IP_NF_ASSERT(t->u.kernel.target);
ba9dda3a 377
f0165888 378#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
a1ff4ac8
JE
379 /* The packet is traced: log it */
380 if (unlikely(skb->nf_trace))
9dff2c96
EB
381 trace_packet(state->net, skb, hook, state->in,
382 state->out, table->name, private, e);
ba9dda3a 383#endif
a1ff4ac8
JE
384 /* Standard target? */
385 if (!t->u.kernel.target->target) {
386 int v;
387
87a2e70d 388 v = ((struct xt_standard_target *)t)->verdict;
a1ff4ac8
JE
389 if (v < 0) {
390 /* Pop from stack? */
243bf6e2 391 if (v != XT_RETURN) {
95c96174 392 verdict = (unsigned int)(-v) - 1;
a1ff4ac8 393 break;
1da177e4 394 }
7814b6ec 395 if (stackidx == 0) {
f3c5c1bf
JE
396 e = get_entry(table_base,
397 private->underflow[hook]);
cecc74de 398 pr_debug("Underflow (this is normal) "
f3c5c1bf
JE
399 "to %p\n", e);
400 } else {
7814b6ec 401 e = jumpstack[--stackidx];
cecc74de 402 pr_debug("Pulled %p out from pos %u\n",
7814b6ec 403 e, stackidx);
f3c5c1bf
JE
404 e = ipt_next_entry(e);
405 }
a1ff4ac8
JE
406 continue;
407 }
3666ed1c
JP
408 if (table_base + v != ipt_next_entry(e) &&
409 !(e->ip.flags & IPT_F_GOTO)) {
7814b6ec 410 jumpstack[stackidx++] = e;
cecc74de 411 pr_debug("Pushed %p into pos %u\n",
7814b6ec 412 e, stackidx - 1);
a1ff4ac8 413 }
1da177e4 414
a1ff4ac8 415 e = get_entry(table_base, v);
7a6b1c46
JE
416 continue;
417 }
418
de74c169
JE
419 acpar.target = t->u.kernel.target;
420 acpar.targinfo = t->data;
bb70dfa5 421
de74c169 422 verdict = t->u.kernel.target->target(skb, &acpar);
7a6b1c46
JE
423 /* Target might have changed stuff. */
424 ip = ip_hdr(skb);
243bf6e2 425 if (verdict == XT_CONTINUE)
7a6b1c46
JE
426 e = ipt_next_entry(e);
427 else
428 /* Verdict */
429 break;
b4ba2611 430 } while (!acpar.hotdrop);
7814b6ec
FW
431 pr_debug("Exiting %s; sp at %u\n", __func__, stackidx);
432
7f5c6d4f
ED
433 xt_write_recseq_end(addend);
434 local_bh_enable();
435
1da177e4
LT
436#ifdef DEBUG_ALLOW_ALL
437 return NF_ACCEPT;
438#else
b4ba2611 439 if (acpar.hotdrop)
1da177e4
LT
440 return NF_DROP;
441 else return verdict;
442#endif
443}
444
1da177e4 445/* Figures out from what hook each rule can be called: returns 0 if
98dbbfc3 446 there are loops. Puts hook bitmask in comefrom. */
1da177e4 447static int
98dbbfc3 448mark_source_chains(const struct xt_table_info *newinfo,
31836064 449 unsigned int valid_hooks, void *entry0)
1da177e4
LT
450{
451 unsigned int hook;
452
453 /* No recursion; use packet counter to save back ptrs (reset
454 to 0 as we leave), and comefrom to save source hook bitmask */
6e23ae2a 455 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
1da177e4 456 unsigned int pos = newinfo->hook_entry[hook];
9c547959 457 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
1da177e4
LT
458
459 if (!(valid_hooks & (1 << hook)))
460 continue;
461
462 /* Set initial back pointer. */
463 e->counters.pcnt = pos;
464
465 for (;;) {
87a2e70d 466 const struct xt_standard_target *t
d5d1baa1 467 = (void *)ipt_get_target_c(e);
e1b4b9f3 468 int visited = e->comefrom & (1 << hook);
1da177e4 469
6e23ae2a 470 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
654d0fbd 471 pr_err("iptables: loop hook %u pos %u %08X.\n",
1da177e4
LT
472 hook, pos, e->comefrom);
473 return 0;
474 }
9c547959 475 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
1da177e4
LT
476
477 /* Unconditional return/END. */
3666ed1c
JP
478 if ((e->target_offset == sizeof(struct ipt_entry) &&
479 (strcmp(t->target.u.user.name,
243bf6e2 480 XT_STANDARD_TARGET) == 0) &&
3666ed1c
JP
481 t->verdict < 0 && unconditional(&e->ip)) ||
482 visited) {
1da177e4
LT
483 unsigned int oldpos, size;
484
1f9352ae 485 if ((strcmp(t->target.u.user.name,
243bf6e2 486 XT_STANDARD_TARGET) == 0) &&
1f9352ae 487 t->verdict < -NF_MAX_VERDICT - 1) {
74c9c0c1
DM
488 duprintf("mark_source_chains: bad "
489 "negative verdict (%i)\n",
490 t->verdict);
491 return 0;
492 }
493
1da177e4
LT
494 /* Return: backtrack through the last
495 big jump. */
496 do {
6e23ae2a 497 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
1da177e4
LT
498#ifdef DEBUG_IP_FIREWALL_USER
499 if (e->comefrom
6e23ae2a 500 & (1 << NF_INET_NUMHOOKS)) {
1da177e4
LT
501 duprintf("Back unset "
502 "on hook %u "
503 "rule %u\n",
504 hook, pos);
505 }
506#endif
507 oldpos = pos;
508 pos = e->counters.pcnt;
509 e->counters.pcnt = 0;
510
511 /* We're at the start. */
512 if (pos == oldpos)
513 goto next;
514
515 e = (struct ipt_entry *)
31836064 516 (entry0 + pos);
1da177e4
LT
517 } while (oldpos == pos + e->next_offset);
518
519 /* Move along one */
520 size = e->next_offset;
521 e = (struct ipt_entry *)
31836064 522 (entry0 + pos + size);
1da177e4
LT
523 e->counters.pcnt = pos;
524 pos += size;
525 } else {
526 int newpos = t->verdict;
527
528 if (strcmp(t->target.u.user.name,
243bf6e2 529 XT_STANDARD_TARGET) == 0 &&
3666ed1c 530 newpos >= 0) {
74c9c0c1
DM
531 if (newpos > newinfo->size -
532 sizeof(struct ipt_entry)) {
533 duprintf("mark_source_chains: "
534 "bad verdict (%i)\n",
535 newpos);
536 return 0;
537 }
1da177e4 538 /* This a jump; chase it. */
98dbbfc3
FW
539 duprintf("Jump rule %u -> %u\n",
540 pos, newpos);
1da177e4
LT
541 } else {
542 /* ... this is a fallthru */
543 newpos = pos + e->next_offset;
544 }
545 e = (struct ipt_entry *)
31836064 546 (entry0 + newpos);
1da177e4
LT
547 e->counters.pcnt = pos;
548 pos = newpos;
549 }
550 }
551 next:
552 duprintf("Finished chain %u\n", hook);
553 }
554 return 1;
555}
556
87a2e70d 557static void cleanup_match(struct xt_entry_match *m, struct net *net)
1da177e4 558{
6be3d859
JE
559 struct xt_mtdtor_param par;
560
f54e9367 561 par.net = net;
6be3d859
JE
562 par.match = m->u.kernel.match;
563 par.matchinfo = m->data;
916a917d 564 par.family = NFPROTO_IPV4;
6be3d859
JE
565 if (par.match->destroy != NULL)
566 par.match->destroy(&par);
567 module_put(par.match->me);
1da177e4
LT
568}
569
022748a9 570static int
d5d1baa1 571check_entry(const struct ipt_entry *e, const char *name)
a96be246 572{
87a2e70d 573 const struct xt_entry_target *t;
a96be246
DM
574
575 if (!ip_checkentry(&e->ip)) {
63f6fe92 576 duprintf("ip check failed %p %s.\n", e, name);
a96be246
DM
577 return -EINVAL;
578 }
579
87a2e70d 580 if (e->target_offset + sizeof(struct xt_entry_target) >
9c547959 581 e->next_offset)
a96be246
DM
582 return -EINVAL;
583
d5d1baa1 584 t = ipt_get_target_c(e);
a96be246
DM
585 if (e->target_offset + t->u.target_size > e->next_offset)
586 return -EINVAL;
587
588 return 0;
589}
590
022748a9 591static int
87a2e70d 592check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
a96be246 593{
9b4fce7a 594 const struct ipt_ip *ip = par->entryinfo;
a96be246
DM
595 int ret;
596
9b4fce7a
JE
597 par->match = m->u.kernel.match;
598 par->matchinfo = m->data;
599
916a917d 600 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
9b4fce7a 601 ip->proto, ip->invflags & IPT_INV_PROTO);
367c6790 602 if (ret < 0) {
b5cad0df 603 duprintf("check failed for `%s'.\n", par->match->name);
367c6790 604 return ret;
a96be246 605 }
367c6790 606 return 0;
a96be246
DM
607}
608
022748a9 609static int
87a2e70d 610find_check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
1da177e4 611{
6709dbbb 612 struct xt_match *match;
3cdc7c95 613 int ret;
1da177e4 614
fd0ec0e6
JE
615 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
616 m->u.user.revision);
617 if (IS_ERR(match)) {
a96be246 618 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
fd0ec0e6 619 return PTR_ERR(match);
1da177e4
LT
620 }
621 m->u.kernel.match = match;
622
6bdb331b 623 ret = check_match(m, par);
3cdc7c95
PM
624 if (ret)
625 goto err;
626
1da177e4 627 return 0;
3cdc7c95
PM
628err:
629 module_put(m->u.kernel.match->me);
630 return ret;
1da177e4
LT
631}
632
add67461 633static int check_target(struct ipt_entry *e, struct net *net, const char *name)
a96be246 634{
87a2e70d 635 struct xt_entry_target *t = ipt_get_target(e);
af5d6dc2 636 struct xt_tgchk_param par = {
add67461 637 .net = net,
af5d6dc2
JE
638 .table = name,
639 .entryinfo = e,
640 .target = t->u.kernel.target,
641 .targinfo = t->data,
642 .hook_mask = e->comefrom,
916a917d 643 .family = NFPROTO_IPV4,
af5d6dc2 644 };
e905a9ed 645 int ret;
a96be246 646
916a917d 647 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
af5d6dc2 648 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
367c6790 649 if (ret < 0) {
ff67e4e4 650 duprintf("check failed for `%s'.\n",
a96be246 651 t->u.kernel.target->name);
367c6790 652 return ret;
a96be246 653 }
367c6790 654 return 0;
a96be246 655}
1da177e4 656
022748a9 657static int
a83d8e8d 658find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
0559518b 659 unsigned int size)
1da177e4 660{
87a2e70d 661 struct xt_entry_target *t;
6709dbbb 662 struct xt_target *target;
1da177e4
LT
663 int ret;
664 unsigned int j;
9b4fce7a 665 struct xt_mtchk_param mtpar;
dcea992a 666 struct xt_entry_match *ematch;
1da177e4 667
a96be246
DM
668 ret = check_entry(e, name);
669 if (ret)
670 return ret;
590bdf7f 671
71ae0dff
FW
672 e->counters.pcnt = xt_percpu_counter_alloc();
673 if (IS_ERR_VALUE(e->counters.pcnt))
674 return -ENOMEM;
675
1da177e4 676 j = 0;
a83d8e8d 677 mtpar.net = net;
9b4fce7a
JE
678 mtpar.table = name;
679 mtpar.entryinfo = &e->ip;
680 mtpar.hook_mask = e->comefrom;
916a917d 681 mtpar.family = NFPROTO_IPV4;
dcea992a 682 xt_ematch_foreach(ematch, e) {
6bdb331b 683 ret = find_check_match(ematch, &mtpar);
dcea992a 684 if (ret != 0)
6bdb331b
JE
685 goto cleanup_matches;
686 ++j;
dcea992a 687 }
1da177e4
LT
688
689 t = ipt_get_target(e);
d2a7b6ba
JE
690 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
691 t->u.user.revision);
692 if (IS_ERR(target)) {
a96be246 693 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
d2a7b6ba 694 ret = PTR_ERR(target);
1da177e4
LT
695 goto cleanup_matches;
696 }
697 t->u.kernel.target = target;
698
add67461 699 ret = check_target(e, net, name);
3cdc7c95
PM
700 if (ret)
701 goto err;
71ae0dff 702
1da177e4 703 return 0;
3cdc7c95
PM
704 err:
705 module_put(t->u.kernel.target->me);
1da177e4 706 cleanup_matches:
6bdb331b
JE
707 xt_ematch_foreach(ematch, e) {
708 if (j-- == 0)
dcea992a 709 break;
6bdb331b
JE
710 cleanup_match(ematch, net);
711 }
71ae0dff
FW
712
713 xt_percpu_counter_free(e->counters.pcnt);
714
1da177e4
LT
715 return ret;
716}
717
d5d1baa1 718static bool check_underflow(const struct ipt_entry *e)
e2fe35c1 719{
87a2e70d 720 const struct xt_entry_target *t;
e2fe35c1
JE
721 unsigned int verdict;
722
723 if (!unconditional(&e->ip))
724 return false;
d5d1baa1 725 t = ipt_get_target_c(e);
e2fe35c1
JE
726 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
727 return false;
87a2e70d 728 verdict = ((struct xt_standard_target *)t)->verdict;
e2fe35c1
JE
729 verdict = -verdict - 1;
730 return verdict == NF_DROP || verdict == NF_ACCEPT;
731}
732
022748a9 733static int
1da177e4 734check_entry_size_and_hooks(struct ipt_entry *e,
2e4e6a17 735 struct xt_table_info *newinfo,
d5d1baa1
JE
736 const unsigned char *base,
737 const unsigned char *limit,
1da177e4
LT
738 const unsigned int *hook_entries,
739 const unsigned int *underflows,
0559518b 740 unsigned int valid_hooks)
1da177e4
LT
741{
742 unsigned int h;
743
3666ed1c
JP
744 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0 ||
745 (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
1da177e4
LT
746 duprintf("Bad offset %p\n", e);
747 return -EINVAL;
748 }
749
750 if (e->next_offset
87a2e70d 751 < sizeof(struct ipt_entry) + sizeof(struct xt_entry_target)) {
1da177e4
LT
752 duprintf("checking: element %p size %u\n",
753 e, e->next_offset);
754 return -EINVAL;
755 }
756
757 /* Check hooks & underflows */
6e23ae2a 758 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
a7d51738
JE
759 if (!(valid_hooks & (1 << h)))
760 continue;
1da177e4
LT
761 if ((unsigned char *)e - base == hook_entries[h])
762 newinfo->hook_entry[h] = hook_entries[h];
90e7d4ab 763 if ((unsigned char *)e - base == underflows[h]) {
e2fe35c1
JE
764 if (!check_underflow(e)) {
765 pr_err("Underflows must be unconditional and "
766 "use the STANDARD target with "
767 "ACCEPT/DROP\n");
90e7d4ab
JE
768 return -EINVAL;
769 }
1da177e4 770 newinfo->underflow[h] = underflows[h];
90e7d4ab 771 }
1da177e4
LT
772 }
773
1da177e4 774 /* Clear counters and comefrom */
2e4e6a17 775 e->counters = ((struct xt_counters) { 0, 0 });
1da177e4 776 e->comefrom = 0;
1da177e4
LT
777 return 0;
778}
779
0559518b
JE
780static void
781cleanup_entry(struct ipt_entry *e, struct net *net)
1da177e4 782{
a2df1648 783 struct xt_tgdtor_param par;
87a2e70d 784 struct xt_entry_target *t;
dcea992a 785 struct xt_entry_match *ematch;
1da177e4 786
1da177e4 787 /* Cleanup all matches */
dcea992a 788 xt_ematch_foreach(ematch, e)
6bdb331b 789 cleanup_match(ematch, net);
1da177e4 790 t = ipt_get_target(e);
a2df1648 791
add67461 792 par.net = net;
a2df1648
JE
793 par.target = t->u.kernel.target;
794 par.targinfo = t->data;
916a917d 795 par.family = NFPROTO_IPV4;
a2df1648
JE
796 if (par.target->destroy != NULL)
797 par.target->destroy(&par);
798 module_put(par.target->me);
71ae0dff 799 xt_percpu_counter_free(e->counters.pcnt);
1da177e4
LT
800}
801
802/* Checks and translates the user-supplied table segment (held in
803 newinfo) */
804static int
0f234214
JE
805translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
806 const struct ipt_replace *repl)
1da177e4 807{
72b2b1dd 808 struct ipt_entry *iter;
1da177e4 809 unsigned int i;
72b2b1dd 810 int ret = 0;
1da177e4 811
0f234214
JE
812 newinfo->size = repl->size;
813 newinfo->number = repl->num_entries;
1da177e4
LT
814
815 /* Init all hooks to impossible value. */
6e23ae2a 816 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1da177e4
LT
817 newinfo->hook_entry[i] = 0xFFFFFFFF;
818 newinfo->underflow[i] = 0xFFFFFFFF;
819 }
820
821 duprintf("translate_table: size %u\n", newinfo->size);
822 i = 0;
823 /* Walk through entries, checking offsets. */
72b2b1dd
JE
824 xt_entry_foreach(iter, entry0, newinfo->size) {
825 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
6b4ff2d7
JE
826 entry0 + repl->size,
827 repl->hook_entry,
828 repl->underflow,
829 repl->valid_hooks);
72b2b1dd 830 if (ret != 0)
0559518b
JE
831 return ret;
832 ++i;
98dbbfc3
FW
833 if (strcmp(ipt_get_target(iter)->u.user.name,
834 XT_ERROR_TARGET) == 0)
835 ++newinfo->stacksize;
72b2b1dd 836 }
1da177e4 837
0f234214 838 if (i != repl->num_entries) {
1da177e4 839 duprintf("translate_table: %u not %u entries\n",
0f234214 840 i, repl->num_entries);
1da177e4
LT
841 return -EINVAL;
842 }
843
844 /* Check hooks all assigned */
6e23ae2a 845 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1da177e4 846 /* Only hooks which are valid */
0f234214 847 if (!(repl->valid_hooks & (1 << i)))
1da177e4
LT
848 continue;
849 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
850 duprintf("Invalid hook entry %u %u\n",
0f234214 851 i, repl->hook_entry[i]);
1da177e4
LT
852 return -EINVAL;
853 }
854 if (newinfo->underflow[i] == 0xFFFFFFFF) {
855 duprintf("Invalid underflow %u %u\n",
0f234214 856 i, repl->underflow[i]);
1da177e4
LT
857 return -EINVAL;
858 }
859 }
860
0f234214 861 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
74c9c0c1
DM
862 return -ELOOP;
863
1da177e4
LT
864 /* Finally, each sanity check must pass */
865 i = 0;
72b2b1dd 866 xt_entry_foreach(iter, entry0, newinfo->size) {
0f234214 867 ret = find_check_entry(iter, net, repl->name, repl->size);
72b2b1dd
JE
868 if (ret != 0)
869 break;
0559518b 870 ++i;
72b2b1dd 871 }
1da177e4 872
74c9c0c1 873 if (ret != 0) {
0559518b
JE
874 xt_entry_foreach(iter, entry0, newinfo->size) {
875 if (i-- == 0)
72b2b1dd 876 break;
0559518b
JE
877 cleanup_entry(iter, net);
878 }
74c9c0c1
DM
879 return ret;
880 }
1da177e4 881
1da177e4
LT
882 return ret;
883}
884
1da177e4 885static void
2e4e6a17
HW
886get_counters(const struct xt_table_info *t,
887 struct xt_counters counters[])
1da177e4 888{
72b2b1dd 889 struct ipt_entry *iter;
1da177e4
LT
890 unsigned int cpu;
891 unsigned int i;
892
6f912042 893 for_each_possible_cpu(cpu) {
7f5c6d4f 894 seqcount_t *s = &per_cpu(xt_recseq, cpu);
83723d60 895
1da177e4 896 i = 0;
482cfc31 897 xt_entry_foreach(iter, t->entries, t->size) {
71ae0dff 898 struct xt_counters *tmp;
83723d60
ED
899 u64 bcnt, pcnt;
900 unsigned int start;
901
71ae0dff 902 tmp = xt_get_per_cpu_counter(&iter->counters, cpu);
83723d60 903 do {
7f5c6d4f 904 start = read_seqcount_begin(s);
71ae0dff
FW
905 bcnt = tmp->bcnt;
906 pcnt = tmp->pcnt;
7f5c6d4f 907 } while (read_seqcount_retry(s, start));
83723d60
ED
908
909 ADD_COUNTER(counters[i], bcnt, pcnt);
0559518b
JE
910 ++i; /* macro does multi eval of i */
911 }
1da177e4 912 }
78454473
SH
913}
914
d5d1baa1 915static struct xt_counters *alloc_counters(const struct xt_table *table)
1da177e4 916{
2722971c 917 unsigned int countersize;
2e4e6a17 918 struct xt_counters *counters;
d5d1baa1 919 const struct xt_table_info *private = table->private;
1da177e4
LT
920
921 /* We need atomic snapshot of counters: rest doesn't change
922 (other than comefrom, which userspace doesn't care
923 about). */
2e4e6a17 924 countersize = sizeof(struct xt_counters) * private->number;
83723d60 925 counters = vzalloc(countersize);
1da177e4
LT
926
927 if (counters == NULL)
942e4a2b 928 return ERR_PTR(-ENOMEM);
78454473 929
942e4a2b 930 get_counters(private, counters);
1da177e4 931
2722971c
DM
932 return counters;
933}
934
935static int
936copy_entries_to_user(unsigned int total_size,
d5d1baa1 937 const struct xt_table *table,
2722971c
DM
938 void __user *userptr)
939{
940 unsigned int off, num;
d5d1baa1 941 const struct ipt_entry *e;
2722971c 942 struct xt_counters *counters;
5452e425 943 const struct xt_table_info *private = table->private;
2722971c 944 int ret = 0;
711bdde6 945 const void *loc_cpu_entry;
2722971c
DM
946
947 counters = alloc_counters(table);
948 if (IS_ERR(counters))
949 return PTR_ERR(counters);
950
482cfc31 951 loc_cpu_entry = private->entries;
31836064 952 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
1da177e4
LT
953 ret = -EFAULT;
954 goto free_counters;
955 }
956
957 /* FIXME: use iterator macros --RR */
958 /* ... then go back and fix counters and names */
959 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
960 unsigned int i;
87a2e70d
JE
961 const struct xt_entry_match *m;
962 const struct xt_entry_target *t;
1da177e4 963
31836064 964 e = (struct ipt_entry *)(loc_cpu_entry + off);
1da177e4
LT
965 if (copy_to_user(userptr + off
966 + offsetof(struct ipt_entry, counters),
967 &counters[num],
968 sizeof(counters[num])) != 0) {
969 ret = -EFAULT;
970 goto free_counters;
971 }
972
973 for (i = sizeof(struct ipt_entry);
974 i < e->target_offset;
975 i += m->u.match_size) {
976 m = (void *)e + i;
977
978 if (copy_to_user(userptr + off + i
87a2e70d 979 + offsetof(struct xt_entry_match,
1da177e4
LT
980 u.user.name),
981 m->u.kernel.match->name,
982 strlen(m->u.kernel.match->name)+1)
983 != 0) {
984 ret = -EFAULT;
985 goto free_counters;
986 }
987 }
988
d5d1baa1 989 t = ipt_get_target_c(e);
1da177e4 990 if (copy_to_user(userptr + off + e->target_offset
87a2e70d 991 + offsetof(struct xt_entry_target,
1da177e4
LT
992 u.user.name),
993 t->u.kernel.target->name,
994 strlen(t->u.kernel.target->name)+1) != 0) {
995 ret = -EFAULT;
996 goto free_counters;
997 }
998 }
999
1000 free_counters:
1001 vfree(counters);
1002 return ret;
1003}
1004
2722971c 1005#ifdef CONFIG_COMPAT
739674fb 1006static void compat_standard_from_user(void *dst, const void *src)
2722971c 1007{
9fa492cd 1008 int v = *(compat_int_t *)src;
2722971c 1009
9fa492cd 1010 if (v > 0)
b386d9f5 1011 v += xt_compat_calc_jump(AF_INET, v);
9fa492cd
PM
1012 memcpy(dst, &v, sizeof(v));
1013}
46c5ea3c 1014
739674fb 1015static int compat_standard_to_user(void __user *dst, const void *src)
2722971c 1016{
9fa492cd 1017 compat_int_t cv = *(int *)src;
2722971c 1018
9fa492cd 1019 if (cv > 0)
b386d9f5 1020 cv -= xt_compat_calc_jump(AF_INET, cv);
9fa492cd 1021 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
2722971c
DM
1022}
1023
d5d1baa1 1024static int compat_calc_entry(const struct ipt_entry *e,
4b478248 1025 const struct xt_table_info *info,
d5d1baa1 1026 const void *base, struct xt_table_info *newinfo)
2722971c 1027{
dcea992a 1028 const struct xt_entry_match *ematch;
87a2e70d 1029 const struct xt_entry_target *t;
e5b5ef7d 1030 unsigned int entry_offset;
2722971c
DM
1031 int off, i, ret;
1032
30c08c41 1033 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
2722971c 1034 entry_offset = (void *)e - base;
dcea992a 1035 xt_ematch_foreach(ematch, e)
6bdb331b 1036 off += xt_compat_match_offset(ematch->u.kernel.match);
d5d1baa1 1037 t = ipt_get_target_c(e);
9fa492cd 1038 off += xt_compat_target_offset(t->u.kernel.target);
2722971c 1039 newinfo->size -= off;
b386d9f5 1040 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
2722971c
DM
1041 if (ret)
1042 return ret;
1043
6e23ae2a 1044 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
4b478248
PM
1045 if (info->hook_entry[i] &&
1046 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
2722971c 1047 newinfo->hook_entry[i] -= off;
4b478248
PM
1048 if (info->underflow[i] &&
1049 (e < (struct ipt_entry *)(base + info->underflow[i])))
2722971c
DM
1050 newinfo->underflow[i] -= off;
1051 }
1052 return 0;
1053}
1054
259d4e41 1055static int compat_table_info(const struct xt_table_info *info,
4b478248 1056 struct xt_table_info *newinfo)
2722971c 1057{
72b2b1dd 1058 struct ipt_entry *iter;
711bdde6 1059 const void *loc_cpu_entry;
0559518b 1060 int ret;
2722971c
DM
1061
1062 if (!newinfo || !info)
1063 return -EINVAL;
1064
482cfc31 1065 /* we dont care about newinfo->entries */
259d4e41
ED
1066 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1067 newinfo->initial_entries = 0;
482cfc31 1068 loc_cpu_entry = info->entries;
255d0dc3 1069 xt_compat_init_offsets(AF_INET, info->number);
72b2b1dd
JE
1070 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1071 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1072 if (ret != 0)
0559518b 1073 return ret;
72b2b1dd 1074 }
0559518b 1075 return 0;
2722971c
DM
1076}
1077#endif
1078
d5d1baa1
JE
1079static int get_info(struct net *net, void __user *user,
1080 const int *len, int compat)
2722971c 1081{
12b00c2c 1082 char name[XT_TABLE_MAXNAMELEN];
e60a13e0 1083 struct xt_table *t;
2722971c
DM
1084 int ret;
1085
1086 if (*len != sizeof(struct ipt_getinfo)) {
c9d8fe13
PM
1087 duprintf("length %u != %zu\n", *len,
1088 sizeof(struct ipt_getinfo));
2722971c
DM
1089 return -EINVAL;
1090 }
1091
1092 if (copy_from_user(name, user, sizeof(name)) != 0)
1093 return -EFAULT;
1094
12b00c2c 1095 name[XT_TABLE_MAXNAMELEN-1] = '\0';
2722971c
DM
1096#ifdef CONFIG_COMPAT
1097 if (compat)
1098 xt_compat_lock(AF_INET);
1099#endif
34bd137b 1100 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
4b478248 1101 "iptable_%s", name);
0cc8d8df 1102 if (!IS_ERR_OR_NULL(t)) {
2722971c 1103 struct ipt_getinfo info;
5452e425 1104 const struct xt_table_info *private = t->private;
2722971c 1105#ifdef CONFIG_COMPAT
14c7dbe0
AD
1106 struct xt_table_info tmp;
1107
2722971c 1108 if (compat) {
2722971c 1109 ret = compat_table_info(private, &tmp);
b386d9f5 1110 xt_compat_flush_offsets(AF_INET);
4b478248 1111 private = &tmp;
2722971c
DM
1112 }
1113#endif
b5f15ac4 1114 memset(&info, 0, sizeof(info));
2722971c
DM
1115 info.valid_hooks = t->valid_hooks;
1116 memcpy(info.hook_entry, private->hook_entry,
4b478248 1117 sizeof(info.hook_entry));
2722971c 1118 memcpy(info.underflow, private->underflow,
4b478248 1119 sizeof(info.underflow));
2722971c
DM
1120 info.num_entries = private->number;
1121 info.size = private->size;
1122 strcpy(info.name, name);
1123
1124 if (copy_to_user(user, &info, *len) != 0)
1125 ret = -EFAULT;
1126 else
1127 ret = 0;
1128
1129 xt_table_unlock(t);
1130 module_put(t->me);
1131 } else
1132 ret = t ? PTR_ERR(t) : -ENOENT;
1133#ifdef CONFIG_COMPAT
1134 if (compat)
1135 xt_compat_unlock(AF_INET);
1136#endif
1137 return ret;
1138}
1139
1140static int
d5d1baa1
JE
1141get_entries(struct net *net, struct ipt_get_entries __user *uptr,
1142 const int *len)
2722971c
DM
1143{
1144 int ret;
1145 struct ipt_get_entries get;
e60a13e0 1146 struct xt_table *t;
2722971c
DM
1147
1148 if (*len < sizeof(get)) {
c9d8fe13 1149 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
2722971c
DM
1150 return -EINVAL;
1151 }
1152 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1153 return -EFAULT;
1154 if (*len != sizeof(struct ipt_get_entries) + get.size) {
c9d8fe13
PM
1155 duprintf("get_entries: %u != %zu\n",
1156 *len, sizeof(get) + get.size);
2722971c
DM
1157 return -EINVAL;
1158 }
1159
34bd137b 1160 t = xt_find_table_lock(net, AF_INET, get.name);
0cc8d8df 1161 if (!IS_ERR_OR_NULL(t)) {
5452e425 1162 const struct xt_table_info *private = t->private;
9c547959 1163 duprintf("t->private->number = %u\n", private->number);
2722971c
DM
1164 if (get.size == private->size)
1165 ret = copy_entries_to_user(private->size,
1166 t, uptr->entrytable);
1167 else {
1168 duprintf("get_entries: I've got %u not %u!\n",
9c547959 1169 private->size, get.size);
544473c1 1170 ret = -EAGAIN;
2722971c
DM
1171 }
1172 module_put(t->me);
1173 xt_table_unlock(t);
1174 } else
1175 ret = t ? PTR_ERR(t) : -ENOENT;
1176
1177 return ret;
1178}
1179
1180static int
34bd137b 1181__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
4b478248
PM
1182 struct xt_table_info *newinfo, unsigned int num_counters,
1183 void __user *counters_ptr)
2722971c
DM
1184{
1185 int ret;
e60a13e0 1186 struct xt_table *t;
2722971c
DM
1187 struct xt_table_info *oldinfo;
1188 struct xt_counters *counters;
72b2b1dd 1189 struct ipt_entry *iter;
2722971c
DM
1190
1191 ret = 0;
83723d60 1192 counters = vzalloc(num_counters * sizeof(struct xt_counters));
2722971c
DM
1193 if (!counters) {
1194 ret = -ENOMEM;
1195 goto out;
1196 }
1197
34bd137b 1198 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
2722971c 1199 "iptable_%s", name);
0cc8d8df 1200 if (IS_ERR_OR_NULL(t)) {
2722971c
DM
1201 ret = t ? PTR_ERR(t) : -ENOENT;
1202 goto free_newinfo_counters_untrans;
1203 }
1204
1205 /* You lied! */
1206 if (valid_hooks != t->valid_hooks) {
1207 duprintf("Valid hook crap: %08X vs %08X\n",
1208 valid_hooks, t->valid_hooks);
1209 ret = -EINVAL;
1210 goto put_module;
1211 }
1212
1213 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1214 if (!oldinfo)
1215 goto put_module;
1216
1217 /* Update module usage count based on number of rules */
1218 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1219 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1220 if ((oldinfo->number > oldinfo->initial_entries) ||
1221 (newinfo->number <= oldinfo->initial_entries))
1222 module_put(t->me);
1223 if ((oldinfo->number > oldinfo->initial_entries) &&
1224 (newinfo->number <= oldinfo->initial_entries))
1225 module_put(t->me);
1226
942e4a2b 1227 /* Get the old counters, and synchronize with replace */
2722971c 1228 get_counters(oldinfo, counters);
942e4a2b 1229
2722971c 1230 /* Decrease module usage counts and free resource */
482cfc31 1231 xt_entry_foreach(iter, oldinfo->entries, oldinfo->size)
0559518b 1232 cleanup_entry(iter, net);
72b2b1dd 1233
2722971c
DM
1234 xt_free_table_info(oldinfo);
1235 if (copy_to_user(counters_ptr, counters,
c58dd2dd
TG
1236 sizeof(struct xt_counters) * num_counters) != 0) {
1237 /* Silent error, can't fail, new table is already in place */
1238 net_warn_ratelimited("iptables: counters copy to user failed while replacing table\n");
1239 }
2722971c
DM
1240 vfree(counters);
1241 xt_table_unlock(t);
1242 return ret;
1243
1244 put_module:
1245 module_put(t->me);
1246 xt_table_unlock(t);
1247 free_newinfo_counters_untrans:
1248 vfree(counters);
1249 out:
1250 return ret;
1251}
1252
1253static int
d5d1baa1 1254do_replace(struct net *net, const void __user *user, unsigned int len)
2722971c
DM
1255{
1256 int ret;
1257 struct ipt_replace tmp;
1258 struct xt_table_info *newinfo;
1259 void *loc_cpu_entry;
72b2b1dd 1260 struct ipt_entry *iter;
2722971c
DM
1261
1262 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1263 return -EFAULT;
1264
2722971c 1265 /* overflow check */
2722971c
DM
1266 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1267 return -ENOMEM;
1086bbe9
DJ
1268 if (tmp.num_counters == 0)
1269 return -EINVAL;
1270
78b79876 1271 tmp.name[sizeof(tmp.name)-1] = 0;
2722971c
DM
1272
1273 newinfo = xt_alloc_table_info(tmp.size);
1274 if (!newinfo)
1275 return -ENOMEM;
1276
482cfc31 1277 loc_cpu_entry = newinfo->entries;
2722971c
DM
1278 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1279 tmp.size) != 0) {
1280 ret = -EFAULT;
1281 goto free_newinfo;
1282 }
1283
0f234214 1284 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
2722971c
DM
1285 if (ret != 0)
1286 goto free_newinfo;
1287
ff67e4e4 1288 duprintf("Translated table\n");
2722971c 1289
34bd137b 1290 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
4b478248 1291 tmp.num_counters, tmp.counters);
2722971c
DM
1292 if (ret)
1293 goto free_newinfo_untrans;
1294 return 0;
1295
1296 free_newinfo_untrans:
72b2b1dd 1297 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
0559518b 1298 cleanup_entry(iter, net);
2722971c
DM
1299 free_newinfo:
1300 xt_free_table_info(newinfo);
1301 return ret;
1302}
1303
2722971c 1304static int
d5d1baa1
JE
1305do_add_counters(struct net *net, const void __user *user,
1306 unsigned int len, int compat)
2722971c 1307{
482cfc31 1308 unsigned int i;
2722971c
DM
1309 struct xt_counters_info tmp;
1310 struct xt_counters *paddc;
1311 unsigned int num_counters;
5452e425 1312 const char *name;
2722971c
DM
1313 int size;
1314 void *ptmp;
e60a13e0 1315 struct xt_table *t;
5452e425 1316 const struct xt_table_info *private;
2722971c 1317 int ret = 0;
72b2b1dd 1318 struct ipt_entry *iter;
7f5c6d4f 1319 unsigned int addend;
2722971c
DM
1320#ifdef CONFIG_COMPAT
1321 struct compat_xt_counters_info compat_tmp;
1322
1323 if (compat) {
1324 ptmp = &compat_tmp;
1325 size = sizeof(struct compat_xt_counters_info);
1326 } else
1327#endif
1328 {
1329 ptmp = &tmp;
1330 size = sizeof(struct xt_counters_info);
1331 }
1332
1333 if (copy_from_user(ptmp, user, size) != 0)
1334 return -EFAULT;
1335
1336#ifdef CONFIG_COMPAT
1337 if (compat) {
1338 num_counters = compat_tmp.num_counters;
1339 name = compat_tmp.name;
1340 } else
1341#endif
1342 {
1343 num_counters = tmp.num_counters;
1344 name = tmp.name;
1345 }
1346
1347 if (len != size + num_counters * sizeof(struct xt_counters))
1348 return -EINVAL;
1349
e12f8e29 1350 paddc = vmalloc(len - size);
2722971c
DM
1351 if (!paddc)
1352 return -ENOMEM;
1353
1354 if (copy_from_user(paddc, user + size, len - size) != 0) {
1355 ret = -EFAULT;
1356 goto free;
1357 }
1358
34bd137b 1359 t = xt_find_table_lock(net, AF_INET, name);
0cc8d8df 1360 if (IS_ERR_OR_NULL(t)) {
2722971c
DM
1361 ret = t ? PTR_ERR(t) : -ENOENT;
1362 goto free;
1363 }
1364
942e4a2b 1365 local_bh_disable();
2722971c
DM
1366 private = t->private;
1367 if (private->number != num_counters) {
1368 ret = -EINVAL;
1369 goto unlock_up_free;
1370 }
1371
1372 i = 0;
7f5c6d4f 1373 addend = xt_write_recseq_begin();
482cfc31 1374 xt_entry_foreach(iter, private->entries, private->size) {
71ae0dff
FW
1375 struct xt_counters *tmp;
1376
1377 tmp = xt_get_this_cpu_counter(&iter->counters);
1378 ADD_COUNTER(*tmp, paddc[i].bcnt, paddc[i].pcnt);
0559518b
JE
1379 ++i;
1380 }
7f5c6d4f 1381 xt_write_recseq_end(addend);
2722971c 1382 unlock_up_free:
942e4a2b 1383 local_bh_enable();
2722971c
DM
1384 xt_table_unlock(t);
1385 module_put(t->me);
1386 free:
1387 vfree(paddc);
1388
1389 return ret;
1390}
1391
1392#ifdef CONFIG_COMPAT
1393struct compat_ipt_replace {
12b00c2c 1394 char name[XT_TABLE_MAXNAMELEN];
2722971c
DM
1395 u32 valid_hooks;
1396 u32 num_entries;
1397 u32 size;
6e23ae2a
PM
1398 u32 hook_entry[NF_INET_NUMHOOKS];
1399 u32 underflow[NF_INET_NUMHOOKS];
2722971c 1400 u32 num_counters;
87a2e70d 1401 compat_uptr_t counters; /* struct xt_counters * */
2722971c
DM
1402 struct compat_ipt_entry entries[0];
1403};
1404
a18aa31b
PM
1405static int
1406compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
b0a6363c 1407 unsigned int *size, struct xt_counters *counters,
0559518b 1408 unsigned int i)
2722971c 1409{
87a2e70d 1410 struct xt_entry_target *t;
2722971c
DM
1411 struct compat_ipt_entry __user *ce;
1412 u_int16_t target_offset, next_offset;
1413 compat_uint_t origsize;
dcea992a
JE
1414 const struct xt_entry_match *ematch;
1415 int ret = 0;
2722971c 1416
2722971c
DM
1417 origsize = *size;
1418 ce = (struct compat_ipt_entry __user *)*dstptr;
0559518b
JE
1419 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 ||
1420 copy_to_user(&ce->counters, &counters[i],
1421 sizeof(counters[i])) != 0)
1422 return -EFAULT;
a18aa31b 1423
2722971c 1424 *dstptr += sizeof(struct compat_ipt_entry);
30c08c41
PM
1425 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1426
dcea992a
JE
1427 xt_ematch_foreach(ematch, e) {
1428 ret = xt_compat_match_to_user(ematch, dstptr, size);
1429 if (ret != 0)
6bdb331b 1430 return ret;
dcea992a 1431 }
2722971c 1432 target_offset = e->target_offset - (origsize - *size);
2722971c 1433 t = ipt_get_target(e);
9fa492cd 1434 ret = xt_compat_target_to_user(t, dstptr, size);
2722971c 1435 if (ret)
0559518b 1436 return ret;
2722971c 1437 next_offset = e->next_offset - (origsize - *size);
0559518b
JE
1438 if (put_user(target_offset, &ce->target_offset) != 0 ||
1439 put_user(next_offset, &ce->next_offset) != 0)
1440 return -EFAULT;
2722971c 1441 return 0;
2722971c
DM
1442}
1443
022748a9 1444static int
87a2e70d 1445compat_find_calc_match(struct xt_entry_match *m,
4b478248
PM
1446 const char *name,
1447 const struct ipt_ip *ip,
6bdb331b 1448 int *size)
2722971c 1449{
6709dbbb 1450 struct xt_match *match;
2722971c 1451
fd0ec0e6
JE
1452 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
1453 m->u.user.revision);
1454 if (IS_ERR(match)) {
2722971c 1455 duprintf("compat_check_calc_match: `%s' not found\n",
4b478248 1456 m->u.user.name);
fd0ec0e6 1457 return PTR_ERR(match);
2722971c
DM
1458 }
1459 m->u.kernel.match = match;
9fa492cd 1460 *size += xt_compat_match_offset(match);
4c1b52bc
DM
1461 return 0;
1462}
1463
0559518b 1464static void compat_release_entry(struct compat_ipt_entry *e)
4c1b52bc 1465{
87a2e70d 1466 struct xt_entry_target *t;
dcea992a 1467 struct xt_entry_match *ematch;
4c1b52bc 1468
4c1b52bc 1469 /* Cleanup all matches */
dcea992a 1470 xt_ematch_foreach(ematch, e)
6bdb331b 1471 module_put(ematch->u.kernel.match->me);
73cd598d 1472 t = compat_ipt_get_target(e);
4c1b52bc 1473 module_put(t->u.kernel.target->me);
4c1b52bc
DM
1474}
1475
022748a9 1476static int
73cd598d 1477check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
4b478248
PM
1478 struct xt_table_info *newinfo,
1479 unsigned int *size,
d5d1baa1
JE
1480 const unsigned char *base,
1481 const unsigned char *limit,
1482 const unsigned int *hook_entries,
1483 const unsigned int *underflows,
4b478248 1484 const char *name)
2722971c 1485{
dcea992a 1486 struct xt_entry_match *ematch;
87a2e70d 1487 struct xt_entry_target *t;
6709dbbb 1488 struct xt_target *target;
e5b5ef7d 1489 unsigned int entry_offset;
b0a6363c
PM
1490 unsigned int j;
1491 int ret, off, h;
2722971c
DM
1492
1493 duprintf("check_compat_entry_size_and_hooks %p\n", e);
3666ed1c
JP
1494 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 ||
1495 (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
2722971c
DM
1496 duprintf("Bad offset %p, limit = %p\n", e, limit);
1497 return -EINVAL;
1498 }
1499
1500 if (e->next_offset < sizeof(struct compat_ipt_entry) +
4b478248 1501 sizeof(struct compat_xt_entry_target)) {
2722971c
DM
1502 duprintf("checking: element %p size %u\n",
1503 e, e->next_offset);
1504 return -EINVAL;
1505 }
1506
73cd598d
PM
1507 /* For purposes of check_entry casting the compat entry is fine */
1508 ret = check_entry((struct ipt_entry *)e, name);
a96be246
DM
1509 if (ret)
1510 return ret;
590bdf7f 1511
30c08c41 1512 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
2722971c
DM
1513 entry_offset = (void *)e - (void *)base;
1514 j = 0;
dcea992a 1515 xt_ematch_foreach(ematch, e) {
2f06550b 1516 ret = compat_find_calc_match(ematch, name, &e->ip, &off);
dcea992a 1517 if (ret != 0)
6bdb331b
JE
1518 goto release_matches;
1519 ++j;
dcea992a 1520 }
2722971c 1521
73cd598d 1522 t = compat_ipt_get_target(e);
d2a7b6ba
JE
1523 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
1524 t->u.user.revision);
1525 if (IS_ERR(target)) {
a96be246 1526 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
4b478248 1527 t->u.user.name);
d2a7b6ba 1528 ret = PTR_ERR(target);
4c1b52bc 1529 goto release_matches;
2722971c
DM
1530 }
1531 t->u.kernel.target = target;
1532
9fa492cd 1533 off += xt_compat_target_offset(target);
2722971c 1534 *size += off;
b386d9f5 1535 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
2722971c
DM
1536 if (ret)
1537 goto out;
1538
1539 /* Check hooks & underflows */
6e23ae2a 1540 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
2722971c
DM
1541 if ((unsigned char *)e - base == hook_entries[h])
1542 newinfo->hook_entry[h] = hook_entries[h];
1543 if ((unsigned char *)e - base == underflows[h])
1544 newinfo->underflow[h] = underflows[h];
1545 }
1546
1547 /* Clear counters and comefrom */
73cd598d 1548 memset(&e->counters, 0, sizeof(e->counters));
2722971c 1549 e->comefrom = 0;
2722971c 1550 return 0;
bec71b16 1551
2722971c 1552out:
bec71b16 1553 module_put(t->u.kernel.target->me);
4c1b52bc 1554release_matches:
6bdb331b
JE
1555 xt_ematch_foreach(ematch, e) {
1556 if (j-- == 0)
dcea992a 1557 break;
6bdb331b
JE
1558 module_put(ematch->u.kernel.match->me);
1559 }
2722971c
DM
1560 return ret;
1561}
1562
4b478248 1563static int
73cd598d 1564compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
4b478248
PM
1565 unsigned int *size, const char *name,
1566 struct xt_table_info *newinfo, unsigned char *base)
2722971c 1567{
87a2e70d 1568 struct xt_entry_target *t;
6709dbbb 1569 struct xt_target *target;
2722971c
DM
1570 struct ipt_entry *de;
1571 unsigned int origsize;
920b868a 1572 int ret, h;
dcea992a 1573 struct xt_entry_match *ematch;
2722971c
DM
1574
1575 ret = 0;
1576 origsize = *size;
1577 de = (struct ipt_entry *)*dstptr;
1578 memcpy(de, e, sizeof(struct ipt_entry));
73cd598d 1579 memcpy(&de->counters, &e->counters, sizeof(e->counters));
2722971c 1580
73cd598d 1581 *dstptr += sizeof(struct ipt_entry);
30c08c41
PM
1582 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1583
dcea992a
JE
1584 xt_ematch_foreach(ematch, e) {
1585 ret = xt_compat_match_from_user(ematch, dstptr, size);
1586 if (ret != 0)
6bdb331b 1587 return ret;
dcea992a 1588 }
2722971c 1589 de->target_offset = e->target_offset - (origsize - *size);
73cd598d 1590 t = compat_ipt_get_target(e);
2722971c 1591 target = t->u.kernel.target;
9fa492cd 1592 xt_compat_target_from_user(t, dstptr, size);
2722971c
DM
1593
1594 de->next_offset = e->next_offset - (origsize - *size);
6e23ae2a 1595 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
2722971c
DM
1596 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1597 newinfo->hook_entry[h] -= origsize - *size;
1598 if ((unsigned char *)de - base < newinfo->underflow[h])
1599 newinfo->underflow[h] -= origsize - *size;
1600 }
f6677f43
DM
1601 return ret;
1602}
1603
022748a9 1604static int
0559518b 1605compat_check_entry(struct ipt_entry *e, struct net *net, const char *name)
f6677f43 1606{
dcea992a 1607 struct xt_entry_match *ematch;
9b4fce7a 1608 struct xt_mtchk_param mtpar;
b0a6363c 1609 unsigned int j;
dcea992a 1610 int ret = 0;
f6677f43 1611
71ae0dff
FW
1612 e->counters.pcnt = xt_percpu_counter_alloc();
1613 if (IS_ERR_VALUE(e->counters.pcnt))
1614 return -ENOMEM;
1615
4c1b52bc 1616 j = 0;
a83d8e8d 1617 mtpar.net = net;
9b4fce7a
JE
1618 mtpar.table = name;
1619 mtpar.entryinfo = &e->ip;
1620 mtpar.hook_mask = e->comefrom;
916a917d 1621 mtpar.family = NFPROTO_IPV4;
dcea992a 1622 xt_ematch_foreach(ematch, e) {
6bdb331b 1623 ret = check_match(ematch, &mtpar);
dcea992a 1624 if (ret != 0)
6bdb331b
JE
1625 goto cleanup_matches;
1626 ++j;
dcea992a 1627 }
4c1b52bc 1628
add67461 1629 ret = check_target(e, net, name);
4c1b52bc
DM
1630 if (ret)
1631 goto cleanup_matches;
4c1b52bc
DM
1632 return 0;
1633
1634 cleanup_matches:
6bdb331b
JE
1635 xt_ematch_foreach(ematch, e) {
1636 if (j-- == 0)
dcea992a 1637 break;
6bdb331b
JE
1638 cleanup_match(ematch, net);
1639 }
71ae0dff
FW
1640
1641 xt_percpu_counter_free(e->counters.pcnt);
1642
4c1b52bc 1643 return ret;
f6677f43
DM
1644}
1645
1da177e4 1646static int
a83d8e8d
AD
1647translate_compat_table(struct net *net,
1648 const char *name,
4b478248
PM
1649 unsigned int valid_hooks,
1650 struct xt_table_info **pinfo,
1651 void **pentry0,
1652 unsigned int total_size,
1653 unsigned int number,
1654 unsigned int *hook_entries,
1655 unsigned int *underflows)
1da177e4 1656{
920b868a 1657 unsigned int i, j;
2722971c
DM
1658 struct xt_table_info *newinfo, *info;
1659 void *pos, *entry0, *entry1;
72b2b1dd
JE
1660 struct compat_ipt_entry *iter0;
1661 struct ipt_entry *iter1;
2722971c 1662 unsigned int size;
0559518b 1663 int ret;
1da177e4 1664
2722971c
DM
1665 info = *pinfo;
1666 entry0 = *pentry0;
1667 size = total_size;
1668 info->number = number;
1669
1670 /* Init all hooks to impossible value. */
6e23ae2a 1671 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
2722971c
DM
1672 info->hook_entry[i] = 0xFFFFFFFF;
1673 info->underflow[i] = 0xFFFFFFFF;
1674 }
1675
1676 duprintf("translate_compat_table: size %u\n", info->size);
920b868a 1677 j = 0;
2722971c 1678 xt_compat_lock(AF_INET);
255d0dc3 1679 xt_compat_init_offsets(AF_INET, number);
2722971c 1680 /* Walk through entries, checking offsets. */
72b2b1dd
JE
1681 xt_entry_foreach(iter0, entry0, total_size) {
1682 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
6b4ff2d7
JE
1683 entry0,
1684 entry0 + total_size,
1685 hook_entries,
1686 underflows,
1687 name);
72b2b1dd 1688 if (ret != 0)
0559518b
JE
1689 goto out_unlock;
1690 ++j;
72b2b1dd 1691 }
2722971c
DM
1692
1693 ret = -EINVAL;
920b868a 1694 if (j != number) {
2722971c 1695 duprintf("translate_compat_table: %u not %u entries\n",
920b868a 1696 j, number);
2722971c
DM
1697 goto out_unlock;
1698 }
1699
1700 /* Check hooks all assigned */
6e23ae2a 1701 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
2722971c
DM
1702 /* Only hooks which are valid */
1703 if (!(valid_hooks & (1 << i)))
1704 continue;
1705 if (info->hook_entry[i] == 0xFFFFFFFF) {
1706 duprintf("Invalid hook entry %u %u\n",
1707 i, hook_entries[i]);
1708 goto out_unlock;
1da177e4 1709 }
2722971c
DM
1710 if (info->underflow[i] == 0xFFFFFFFF) {
1711 duprintf("Invalid underflow %u %u\n",
1712 i, underflows[i]);
1713 goto out_unlock;
1714 }
1715 }
1716
1717 ret = -ENOMEM;
1718 newinfo = xt_alloc_table_info(size);
1719 if (!newinfo)
1720 goto out_unlock;
1721
1722 newinfo->number = number;
6e23ae2a 1723 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
2722971c
DM
1724 newinfo->hook_entry[i] = info->hook_entry[i];
1725 newinfo->underflow[i] = info->underflow[i];
1726 }
482cfc31 1727 entry1 = newinfo->entries;
2722971c 1728 pos = entry1;
4b478248 1729 size = total_size;
72b2b1dd 1730 xt_entry_foreach(iter0, entry0, total_size) {
6b4ff2d7
JE
1731 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1732 name, newinfo, entry1);
72b2b1dd
JE
1733 if (ret != 0)
1734 break;
1735 }
b386d9f5 1736 xt_compat_flush_offsets(AF_INET);
2722971c
DM
1737 xt_compat_unlock(AF_INET);
1738 if (ret)
1739 goto free_newinfo;
1740
1741 ret = -ELOOP;
1742 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1743 goto free_newinfo;
1744
4c1b52bc 1745 i = 0;
72b2b1dd 1746 xt_entry_foreach(iter1, entry1, newinfo->size) {
0559518b 1747 ret = compat_check_entry(iter1, net, name);
72b2b1dd
JE
1748 if (ret != 0)
1749 break;
0559518b 1750 ++i;
98dbbfc3
FW
1751 if (strcmp(ipt_get_target(iter1)->u.user.name,
1752 XT_ERROR_TARGET) == 0)
1753 ++newinfo->stacksize;
72b2b1dd 1754 }
4c1b52bc 1755 if (ret) {
72b2b1dd
JE
1756 /*
1757 * The first i matches need cleanup_entry (calls ->destroy)
1758 * because they had called ->check already. The other j-i
1759 * entries need only release.
1760 */
1761 int skip = i;
4c1b52bc 1762 j -= i;
72b2b1dd
JE
1763 xt_entry_foreach(iter0, entry0, newinfo->size) {
1764 if (skip-- > 0)
1765 continue;
0559518b 1766 if (j-- == 0)
72b2b1dd 1767 break;
0559518b 1768 compat_release_entry(iter0);
72b2b1dd 1769 }
0559518b
JE
1770 xt_entry_foreach(iter1, entry1, newinfo->size) {
1771 if (i-- == 0)
72b2b1dd 1772 break;
0559518b
JE
1773 cleanup_entry(iter1, net);
1774 }
4c1b52bc
DM
1775 xt_free_table_info(newinfo);
1776 return ret;
1777 }
f6677f43 1778
2722971c
DM
1779 *pinfo = newinfo;
1780 *pentry0 = entry1;
1781 xt_free_table_info(info);
1782 return 0;
1da177e4 1783
2722971c
DM
1784free_newinfo:
1785 xt_free_table_info(newinfo);
1786out:
0559518b
JE
1787 xt_entry_foreach(iter0, entry0, total_size) {
1788 if (j-- == 0)
72b2b1dd 1789 break;
0559518b
JE
1790 compat_release_entry(iter0);
1791 }
1da177e4 1792 return ret;
2722971c 1793out_unlock:
b386d9f5 1794 xt_compat_flush_offsets(AF_INET);
2722971c
DM
1795 xt_compat_unlock(AF_INET);
1796 goto out;
1da177e4
LT
1797}
1798
1799static int
34bd137b 1800compat_do_replace(struct net *net, void __user *user, unsigned int len)
1da177e4
LT
1801{
1802 int ret;
2722971c
DM
1803 struct compat_ipt_replace tmp;
1804 struct xt_table_info *newinfo;
1805 void *loc_cpu_entry;
72b2b1dd 1806 struct ipt_entry *iter;
1da177e4
LT
1807
1808 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1809 return -EFAULT;
1810
ee4bb818 1811 /* overflow check */
259d4e41 1812 if (tmp.size >= INT_MAX / num_possible_cpus())
ee4bb818
KK
1813 return -ENOMEM;
1814 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1815 return -ENOMEM;
1086bbe9
DJ
1816 if (tmp.num_counters == 0)
1817 return -EINVAL;
1818
78b79876 1819 tmp.name[sizeof(tmp.name)-1] = 0;
ee4bb818 1820
2e4e6a17 1821 newinfo = xt_alloc_table_info(tmp.size);
1da177e4
LT
1822 if (!newinfo)
1823 return -ENOMEM;
1824
482cfc31 1825 loc_cpu_entry = newinfo->entries;
31836064 1826 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1da177e4
LT
1827 tmp.size) != 0) {
1828 ret = -EFAULT;
1829 goto free_newinfo;
1830 }
1831
a83d8e8d 1832 ret = translate_compat_table(net, tmp.name, tmp.valid_hooks,
4b478248
PM
1833 &newinfo, &loc_cpu_entry, tmp.size,
1834 tmp.num_entries, tmp.hook_entry,
1835 tmp.underflow);
2722971c 1836 if (ret != 0)
1da177e4 1837 goto free_newinfo;
1da177e4 1838
2722971c 1839 duprintf("compat_do_replace: Translated table\n");
1da177e4 1840
34bd137b 1841 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
4b478248 1842 tmp.num_counters, compat_ptr(tmp.counters));
2722971c
DM
1843 if (ret)
1844 goto free_newinfo_untrans;
1845 return 0;
1da177e4 1846
2722971c 1847 free_newinfo_untrans:
72b2b1dd 1848 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
0559518b 1849 cleanup_entry(iter, net);
2722971c
DM
1850 free_newinfo:
1851 xt_free_table_info(newinfo);
1852 return ret;
1853}
1da177e4 1854
2722971c
DM
1855static int
1856compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
4b478248 1857 unsigned int len)
2722971c
DM
1858{
1859 int ret;
1da177e4 1860
52e804c6 1861 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
2722971c 1862 return -EPERM;
1da177e4 1863
2722971c
DM
1864 switch (cmd) {
1865 case IPT_SO_SET_REPLACE:
3b1e0a65 1866 ret = compat_do_replace(sock_net(sk), user, len);
2722971c 1867 break;
1da177e4 1868
2722971c 1869 case IPT_SO_SET_ADD_COUNTERS:
3b1e0a65 1870 ret = do_add_counters(sock_net(sk), user, len, 1);
2722971c
DM
1871 break;
1872
1873 default:
1874 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1875 ret = -EINVAL;
1876 }
1da177e4 1877
1da177e4
LT
1878 return ret;
1879}
1880
4b478248 1881struct compat_ipt_get_entries {
12b00c2c 1882 char name[XT_TABLE_MAXNAMELEN];
2722971c
DM
1883 compat_uint_t size;
1884 struct compat_ipt_entry entrytable[0];
1885};
1da177e4 1886
4b478248
PM
1887static int
1888compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1889 void __user *userptr)
2722971c 1890{
2722971c 1891 struct xt_counters *counters;
5452e425 1892 const struct xt_table_info *private = table->private;
2722971c
DM
1893 void __user *pos;
1894 unsigned int size;
1895 int ret = 0;
a18aa31b 1896 unsigned int i = 0;
72b2b1dd 1897 struct ipt_entry *iter;
1da177e4 1898
2722971c
DM
1899 counters = alloc_counters(table);
1900 if (IS_ERR(counters))
1901 return PTR_ERR(counters);
1902
2722971c
DM
1903 pos = userptr;
1904 size = total_size;
482cfc31 1905 xt_entry_foreach(iter, private->entries, total_size) {
72b2b1dd 1906 ret = compat_copy_entry_to_user(iter, &pos,
6b4ff2d7 1907 &size, counters, i++);
72b2b1dd
JE
1908 if (ret != 0)
1909 break;
1910 }
2722971c 1911
2722971c
DM
1912 vfree(counters);
1913 return ret;
1da177e4
LT
1914}
1915
1916static int
34bd137b
AD
1917compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1918 int *len)
1da177e4 1919{
2722971c
DM
1920 int ret;
1921 struct compat_ipt_get_entries get;
e60a13e0 1922 struct xt_table *t;
1da177e4 1923
2722971c 1924 if (*len < sizeof(get)) {
c9d8fe13 1925 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
1da177e4 1926 return -EINVAL;
2722971c 1927 }
1da177e4 1928
2722971c
DM
1929 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1930 return -EFAULT;
1da177e4 1931
2722971c 1932 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
c9d8fe13
PM
1933 duprintf("compat_get_entries: %u != %zu\n",
1934 *len, sizeof(get) + get.size);
2722971c 1935 return -EINVAL;
1da177e4
LT
1936 }
1937
2722971c 1938 xt_compat_lock(AF_INET);
34bd137b 1939 t = xt_find_table_lock(net, AF_INET, get.name);
0cc8d8df 1940 if (!IS_ERR_OR_NULL(t)) {
5452e425 1941 const struct xt_table_info *private = t->private;
2722971c 1942 struct xt_table_info info;
9c547959 1943 duprintf("t->private->number = %u\n", private->number);
2722971c
DM
1944 ret = compat_table_info(private, &info);
1945 if (!ret && get.size == info.size) {
1946 ret = compat_copy_entries_to_user(private->size,
4b478248 1947 t, uptr->entrytable);
2722971c
DM
1948 } else if (!ret) {
1949 duprintf("compat_get_entries: I've got %u not %u!\n",
9c547959 1950 private->size, get.size);
544473c1 1951 ret = -EAGAIN;
2722971c 1952 }
b386d9f5 1953 xt_compat_flush_offsets(AF_INET);
2722971c
DM
1954 module_put(t->me);
1955 xt_table_unlock(t);
1956 } else
1da177e4 1957 ret = t ? PTR_ERR(t) : -ENOENT;
1da177e4 1958
2722971c
DM
1959 xt_compat_unlock(AF_INET);
1960 return ret;
1961}
1da177e4 1962
79030ed0
PM
1963static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1964
2722971c
DM
1965static int
1966compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1967{
1968 int ret;
1da177e4 1969
52e804c6 1970 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
82fac054
BS
1971 return -EPERM;
1972
2722971c
DM
1973 switch (cmd) {
1974 case IPT_SO_GET_INFO:
3b1e0a65 1975 ret = get_info(sock_net(sk), user, len, 1);
2722971c
DM
1976 break;
1977 case IPT_SO_GET_ENTRIES:
3b1e0a65 1978 ret = compat_get_entries(sock_net(sk), user, len);
2722971c
DM
1979 break;
1980 default:
79030ed0 1981 ret = do_ipt_get_ctl(sk, cmd, user, len);
2722971c 1982 }
1da177e4
LT
1983 return ret;
1984}
2722971c 1985#endif
1da177e4
LT
1986
1987static int
9c547959 1988do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
1da177e4
LT
1989{
1990 int ret;
1991
52e804c6 1992 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
1da177e4
LT
1993 return -EPERM;
1994
1995 switch (cmd) {
1996 case IPT_SO_SET_REPLACE:
3b1e0a65 1997 ret = do_replace(sock_net(sk), user, len);
1da177e4
LT
1998 break;
1999
2000 case IPT_SO_SET_ADD_COUNTERS:
3b1e0a65 2001 ret = do_add_counters(sock_net(sk), user, len, 0);
1da177e4
LT
2002 break;
2003
2004 default:
2005 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
2006 ret = -EINVAL;
2007 }
2008
2009 return ret;
2010}
2011
2012static int
2013do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2014{
2015 int ret;
2016
52e804c6 2017 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
1da177e4
LT
2018 return -EPERM;
2019
2020 switch (cmd) {
2722971c 2021 case IPT_SO_GET_INFO:
3b1e0a65 2022 ret = get_info(sock_net(sk), user, len, 0);
2722971c 2023 break;
1da177e4 2024
2722971c 2025 case IPT_SO_GET_ENTRIES:
3b1e0a65 2026 ret = get_entries(sock_net(sk), user, len);
1da177e4 2027 break;
1da177e4
LT
2028
2029 case IPT_SO_GET_REVISION_MATCH:
2030 case IPT_SO_GET_REVISION_TARGET: {
12b00c2c 2031 struct xt_get_revision rev;
2e4e6a17 2032 int target;
1da177e4
LT
2033
2034 if (*len != sizeof(rev)) {
2035 ret = -EINVAL;
2036 break;
2037 }
2038 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2039 ret = -EFAULT;
2040 break;
2041 }
78b79876 2042 rev.name[sizeof(rev.name)-1] = 0;
1da177e4
LT
2043
2044 if (cmd == IPT_SO_GET_REVISION_TARGET)
2e4e6a17 2045 target = 1;
1da177e4 2046 else
2e4e6a17 2047 target = 0;
1da177e4 2048
2e4e6a17
HW
2049 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2050 rev.revision,
2051 target, &ret),
1da177e4
LT
2052 "ipt_%s", rev.name);
2053 break;
2054 }
2055
2056 default:
2057 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2058 ret = -EINVAL;
2059 }
2060
2061 return ret;
2062}
2063
35aad0ff
JE
2064struct xt_table *ipt_register_table(struct net *net,
2065 const struct xt_table *table,
44d34e72 2066 const struct ipt_replace *repl)
1da177e4
LT
2067{
2068 int ret;
2e4e6a17 2069 struct xt_table_info *newinfo;
f3c5c1bf 2070 struct xt_table_info bootstrap = {0};
31836064 2071 void *loc_cpu_entry;
a98da11d 2072 struct xt_table *new_table;
1da177e4 2073
2e4e6a17 2074 newinfo = xt_alloc_table_info(repl->size);
44d34e72
AD
2075 if (!newinfo) {
2076 ret = -ENOMEM;
2077 goto out;
2078 }
1da177e4 2079
482cfc31 2080 loc_cpu_entry = newinfo->entries;
31836064 2081 memcpy(loc_cpu_entry, repl->entries, repl->size);
1da177e4 2082
0f234214 2083 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
44d34e72
AD
2084 if (ret != 0)
2085 goto out_free;
1da177e4 2086
44d34e72 2087 new_table = xt_register_table(net, table, &bootstrap, newinfo);
a98da11d 2088 if (IS_ERR(new_table)) {
44d34e72
AD
2089 ret = PTR_ERR(new_table);
2090 goto out_free;
1da177e4
LT
2091 }
2092
44d34e72
AD
2093 return new_table;
2094
2095out_free:
2096 xt_free_table_info(newinfo);
2097out:
2098 return ERR_PTR(ret);
1da177e4
LT
2099}
2100
f54e9367 2101void ipt_unregister_table(struct net *net, struct xt_table *table)
1da177e4 2102{
2e4e6a17 2103 struct xt_table_info *private;
31836064 2104 void *loc_cpu_entry;
df200969 2105 struct module *table_owner = table->me;
72b2b1dd 2106 struct ipt_entry *iter;
31836064 2107
e905a9ed 2108 private = xt_unregister_table(table);
1da177e4
LT
2109
2110 /* Decrease module usage counts and free resources */
482cfc31 2111 loc_cpu_entry = private->entries;
72b2b1dd 2112 xt_entry_foreach(iter, loc_cpu_entry, private->size)
0559518b 2113 cleanup_entry(iter, net);
df200969
AD
2114 if (private->number > private->initial_entries)
2115 module_put(table_owner);
2e4e6a17 2116 xt_free_table_info(private);
1da177e4
LT
2117}
2118
2119/* Returns 1 if the type and code is matched by the range, 0 otherwise */
1d93a9cb 2120static inline bool
1da177e4
LT
2121icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2122 u_int8_t type, u_int8_t code,
1d93a9cb 2123 bool invert)
1da177e4 2124{
9c547959
PM
2125 return ((test_type == 0xFF) ||
2126 (type == test_type && code >= min_code && code <= max_code))
1da177e4
LT
2127 ^ invert;
2128}
2129
1d93a9cb 2130static bool
62fc8051 2131icmp_match(const struct sk_buff *skb, struct xt_action_param *par)
1da177e4 2132{
5452e425
JE
2133 const struct icmphdr *ic;
2134 struct icmphdr _icmph;
f7108a20 2135 const struct ipt_icmp *icmpinfo = par->matchinfo;
1da177e4
LT
2136
2137 /* Must not be a fragment. */
f7108a20 2138 if (par->fragoff != 0)
1d93a9cb 2139 return false;
1da177e4 2140
f7108a20 2141 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
1da177e4
LT
2142 if (ic == NULL) {
2143 /* We've been asked to examine this packet, and we
2144 * can't. Hence, no choice but to drop.
2145 */
2146 duprintf("Dropping evil ICMP tinygram.\n");
b4ba2611 2147 par->hotdrop = true;
1d93a9cb 2148 return false;
1da177e4
LT
2149 }
2150
2151 return icmp_type_code_match(icmpinfo->type,
2152 icmpinfo->code[0],
2153 icmpinfo->code[1],
2154 ic->type, ic->code,
2155 !!(icmpinfo->invflags&IPT_ICMP_INV));
2156}
2157
b0f38452 2158static int icmp_checkentry(const struct xt_mtchk_param *par)
1da177e4 2159{
9b4fce7a 2160 const struct ipt_icmp *icmpinfo = par->matchinfo;
1da177e4 2161
1d5cd909 2162 /* Must specify no unknown invflags */
bd414ee6 2163 return (icmpinfo->invflags & ~IPT_ICMP_INV) ? -EINVAL : 0;
1da177e4
LT
2164}
2165
4538506b
JE
2166static struct xt_target ipt_builtin_tg[] __read_mostly = {
2167 {
243bf6e2 2168 .name = XT_STANDARD_TARGET,
4538506b
JE
2169 .targetsize = sizeof(int),
2170 .family = NFPROTO_IPV4,
2722971c 2171#ifdef CONFIG_COMPAT
4538506b
JE
2172 .compatsize = sizeof(compat_int_t),
2173 .compat_from_user = compat_standard_from_user,
2174 .compat_to_user = compat_standard_to_user,
2722971c 2175#endif
4538506b
JE
2176 },
2177 {
243bf6e2 2178 .name = XT_ERROR_TARGET,
4538506b 2179 .target = ipt_error,
12b00c2c 2180 .targetsize = XT_FUNCTION_MAXNAMELEN,
4538506b
JE
2181 .family = NFPROTO_IPV4,
2182 },
1da177e4
LT
2183};
2184
2185static struct nf_sockopt_ops ipt_sockopts = {
2186 .pf = PF_INET,
2187 .set_optmin = IPT_BASE_CTL,
2188 .set_optmax = IPT_SO_SET_MAX+1,
2189 .set = do_ipt_set_ctl,
2722971c
DM
2190#ifdef CONFIG_COMPAT
2191 .compat_set = compat_do_ipt_set_ctl,
2192#endif
1da177e4
LT
2193 .get_optmin = IPT_BASE_CTL,
2194 .get_optmax = IPT_SO_GET_MAX+1,
2195 .get = do_ipt_get_ctl,
2722971c
DM
2196#ifdef CONFIG_COMPAT
2197 .compat_get = compat_do_ipt_get_ctl,
2198#endif
16fcec35 2199 .owner = THIS_MODULE,
1da177e4
LT
2200};
2201
4538506b
JE
2202static struct xt_match ipt_builtin_mt[] __read_mostly = {
2203 {
2204 .name = "icmp",
2205 .match = icmp_match,
2206 .matchsize = sizeof(struct ipt_icmp),
2207 .checkentry = icmp_checkentry,
2208 .proto = IPPROTO_ICMP,
2209 .family = NFPROTO_IPV4,
2210 },
1da177e4
LT
2211};
2212
3cb609d5
AD
2213static int __net_init ip_tables_net_init(struct net *net)
2214{
383ca5b8 2215 return xt_proto_init(net, NFPROTO_IPV4);
3cb609d5
AD
2216}
2217
2218static void __net_exit ip_tables_net_exit(struct net *net)
2219{
383ca5b8 2220 xt_proto_fini(net, NFPROTO_IPV4);
3cb609d5
AD
2221}
2222
2223static struct pernet_operations ip_tables_net_ops = {
2224 .init = ip_tables_net_init,
2225 .exit = ip_tables_net_exit,
2226};
2227
65b4b4e8 2228static int __init ip_tables_init(void)
1da177e4
LT
2229{
2230 int ret;
2231
3cb609d5 2232 ret = register_pernet_subsys(&ip_tables_net_ops);
0eff66e6
PM
2233 if (ret < 0)
2234 goto err1;
2e4e6a17 2235
25985edc 2236 /* No one else will be downing sem now, so we won't sleep */
4538506b 2237 ret = xt_register_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
0eff66e6
PM
2238 if (ret < 0)
2239 goto err2;
4538506b 2240 ret = xt_register_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
0eff66e6
PM
2241 if (ret < 0)
2242 goto err4;
1da177e4
LT
2243
2244 /* Register setsockopt */
2245 ret = nf_register_sockopt(&ipt_sockopts);
0eff66e6
PM
2246 if (ret < 0)
2247 goto err5;
1da177e4 2248
ff67e4e4 2249 pr_info("(C) 2000-2006 Netfilter Core Team\n");
1da177e4 2250 return 0;
0eff66e6
PM
2251
2252err5:
4538506b 2253 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
0eff66e6 2254err4:
4538506b 2255 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
0eff66e6 2256err2:
3cb609d5 2257 unregister_pernet_subsys(&ip_tables_net_ops);
0eff66e6
PM
2258err1:
2259 return ret;
1da177e4
LT
2260}
2261
65b4b4e8 2262static void __exit ip_tables_fini(void)
1da177e4
LT
2263{
2264 nf_unregister_sockopt(&ipt_sockopts);
2e4e6a17 2265
4538506b
JE
2266 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
2267 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
3cb609d5 2268 unregister_pernet_subsys(&ip_tables_net_ops);
1da177e4
LT
2269}
2270
2271EXPORT_SYMBOL(ipt_register_table);
2272EXPORT_SYMBOL(ipt_unregister_table);
1da177e4 2273EXPORT_SYMBOL(ipt_do_table);
65b4b4e8
AM
2274module_init(ip_tables_init);
2275module_exit(ip_tables_fini);