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