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