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