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