2 * Packet matching code.
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
5 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/capability.h>
14 #include <linux/skbuff.h>
15 #include <linux/kmod.h>
16 #include <linux/vmalloc.h>
17 #include <linux/netdevice.h>
18 #include <linux/module.h>
19 #include <linux/poison.h>
20 #include <linux/icmpv6.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>
29 #include <linux/netfilter_ipv6/ip6_tables.h>
30 #include <linux/netfilter/x_tables.h>
31 #include <net/netfilter/nf_log.h>
32 #include "../../netfilter/xt_repldata.h"
34 MODULE_LICENSE("GPL");
35 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
36 MODULE_DESCRIPTION("IPv6 packet filter");
38 /*#define DEBUG_IP_FIREWALL*/
39 /*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
40 /*#define DEBUG_IP_FIREWALL_USER*/
42 #ifdef DEBUG_IP_FIREWALL
43 #define dprintf(format, args...) pr_info(format , ## args)
45 #define dprintf(format, args...)
48 #ifdef DEBUG_IP_FIREWALL_USER
49 #define duprintf(format, args...) pr_info(format , ## args)
51 #define duprintf(format, args...)
54 #ifdef CONFIG_NETFILTER_DEBUG
55 #define IP_NF_ASSERT(x) WARN_ON(!(x))
57 #define IP_NF_ASSERT(x)
61 /* All the better to debug you with... */
66 void *ip6t_alloc_initial_table(const struct xt_table
*info
)
68 return xt_alloc_initial_table(ip6t
, IP6T
);
70 EXPORT_SYMBOL_GPL(ip6t_alloc_initial_table
);
73 We keep a set of rules for each CPU, so we can avoid write-locking
74 them in the softirq when updating the counters and therefore
75 only need to read-lock in the softirq; doing a write_lock_bh() in user
76 context stops packets coming through and allows user context to read
77 the counters or update the rules.
79 Hence the start of any table is given by get_table() below. */
81 /* Check for an extension */
83 ip6t_ext_hdr(u8 nexthdr
)
85 return (nexthdr
== IPPROTO_HOPOPTS
) ||
86 (nexthdr
== IPPROTO_ROUTING
) ||
87 (nexthdr
== IPPROTO_FRAGMENT
) ||
88 (nexthdr
== IPPROTO_ESP
) ||
89 (nexthdr
== IPPROTO_AH
) ||
90 (nexthdr
== IPPROTO_NONE
) ||
91 (nexthdr
== IPPROTO_DSTOPTS
);
94 /* Returns whether matches rule or not. */
95 /* Performance critical - called for every packet */
97 ip6_packet_match(const struct sk_buff
*skb
,
100 const struct ip6t_ip6
*ip6info
,
101 unsigned int *protoff
,
102 int *fragoff
, bool *hotdrop
)
105 const struct ipv6hdr
*ipv6
= ipv6_hdr(skb
);
107 #define FWINV(bool, invflg) ((bool) ^ !!(ip6info->invflags & (invflg)))
109 if (FWINV(ipv6_masked_addr_cmp(&ipv6
->saddr
, &ip6info
->smsk
,
110 &ip6info
->src
), IP6T_INV_SRCIP
) ||
111 FWINV(ipv6_masked_addr_cmp(&ipv6
->daddr
, &ip6info
->dmsk
,
112 &ip6info
->dst
), IP6T_INV_DSTIP
)) {
113 dprintf("Source or dest mismatch.\n");
115 dprintf("SRC: %u. Mask: %u. Target: %u.%s\n", ip->saddr,
116 ipinfo->smsk.s_addr, ipinfo->src.s_addr,
117 ipinfo->invflags & IP6T_INV_SRCIP ? " (INV)" : "");
118 dprintf("DST: %u. Mask: %u. Target: %u.%s\n", ip->daddr,
119 ipinfo->dmsk.s_addr, ipinfo->dst.s_addr,
120 ipinfo->invflags & IP6T_INV_DSTIP ? " (INV)" : "");*/
124 ret
= ifname_compare_aligned(indev
, ip6info
->iniface
, ip6info
->iniface_mask
);
126 if (FWINV(ret
!= 0, IP6T_INV_VIA_IN
)) {
127 dprintf("VIA in mismatch (%s vs %s).%s\n",
128 indev
, ip6info
->iniface
,
129 ip6info
->invflags
&IP6T_INV_VIA_IN
?" (INV)":"");
133 ret
= ifname_compare_aligned(outdev
, ip6info
->outiface
, ip6info
->outiface_mask
);
135 if (FWINV(ret
!= 0, IP6T_INV_VIA_OUT
)) {
136 dprintf("VIA out mismatch (%s vs %s).%s\n",
137 outdev
, ip6info
->outiface
,
138 ip6info
->invflags
&IP6T_INV_VIA_OUT
?" (INV)":"");
142 /* ... might want to do something with class and flowlabel here ... */
144 /* look for the desired protocol header */
145 if((ip6info
->flags
& IP6T_F_PROTO
)) {
147 unsigned short _frag_off
;
149 protohdr
= ipv6_find_hdr(skb
, protoff
, -1, &_frag_off
);
155 *fragoff
= _frag_off
;
157 dprintf("Packet protocol %hi ?= %s%hi.\n",
159 ip6info
->invflags
& IP6T_INV_PROTO
? "!":"",
162 if (ip6info
->proto
== protohdr
) {
163 if(ip6info
->invflags
& IP6T_INV_PROTO
) {
169 /* We need match for the '-p all', too! */
170 if ((ip6info
->proto
!= 0) &&
171 !(ip6info
->invflags
& IP6T_INV_PROTO
))
177 /* should be ip6 safe */
179 ip6_checkentry(const struct ip6t_ip6
*ipv6
)
181 if (ipv6
->flags
& ~IP6T_F_MASK
) {
182 duprintf("Unknown flag bits set: %08X\n",
183 ipv6
->flags
& ~IP6T_F_MASK
);
186 if (ipv6
->invflags
& ~IP6T_INV_MASK
) {
187 duprintf("Unknown invflag bits set: %08X\n",
188 ipv6
->invflags
& ~IP6T_INV_MASK
);
195 ip6t_error(struct sk_buff
*skb
, const struct xt_action_param
*par
)
198 pr_info("error: `%s'\n", (const char *)par
->targinfo
);
203 static inline struct ip6t_entry
*
204 get_entry(const void *base
, unsigned int offset
)
206 return (struct ip6t_entry
*)(base
+ offset
);
209 /* All zeroes == unconditional rule. */
210 /* Mildly perf critical (only if packet tracing is on) */
211 static inline bool unconditional(const struct ip6t_ip6
*ipv6
)
213 static const struct ip6t_ip6 uncond
;
215 return memcmp(ipv6
, &uncond
, sizeof(uncond
)) == 0;
218 static inline const struct xt_entry_target
*
219 ip6t_get_target_c(const struct ip6t_entry
*e
)
221 return ip6t_get_target((struct ip6t_entry
*)e
);
224 #if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
225 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
226 /* This cries for unification! */
227 static const char *const hooknames
[] = {
228 [NF_INET_PRE_ROUTING
] = "PREROUTING",
229 [NF_INET_LOCAL_IN
] = "INPUT",
230 [NF_INET_FORWARD
] = "FORWARD",
231 [NF_INET_LOCAL_OUT
] = "OUTPUT",
232 [NF_INET_POST_ROUTING
] = "POSTROUTING",
235 enum nf_ip_trace_comments
{
236 NF_IP6_TRACE_COMMENT_RULE
,
237 NF_IP6_TRACE_COMMENT_RETURN
,
238 NF_IP6_TRACE_COMMENT_POLICY
,
241 static const char *const comments
[] = {
242 [NF_IP6_TRACE_COMMENT_RULE
] = "rule",
243 [NF_IP6_TRACE_COMMENT_RETURN
] = "return",
244 [NF_IP6_TRACE_COMMENT_POLICY
] = "policy",
247 static struct nf_loginfo trace_loginfo
= {
248 .type
= NF_LOG_TYPE_LOG
,
252 .logflags
= NF_LOG_MASK
,
257 /* Mildly perf critical (only if packet tracing is on) */
259 get_chainname_rulenum(const struct ip6t_entry
*s
, const struct ip6t_entry
*e
,
260 const char *hookname
, const char **chainname
,
261 const char **comment
, unsigned int *rulenum
)
263 const struct xt_standard_target
*t
= (void *)ip6t_get_target_c(s
);
265 if (strcmp(t
->target
.u
.kernel
.target
->name
, XT_ERROR_TARGET
) == 0) {
266 /* Head of user chain: ERROR target with chainname */
267 *chainname
= t
->target
.data
;
272 if (s
->target_offset
== sizeof(struct ip6t_entry
) &&
273 strcmp(t
->target
.u
.kernel
.target
->name
,
274 XT_STANDARD_TARGET
) == 0 &&
276 unconditional(&s
->ipv6
)) {
277 /* Tail of chains: STANDARD target (return/policy) */
278 *comment
= *chainname
== hookname
279 ? comments
[NF_IP6_TRACE_COMMENT_POLICY
]
280 : comments
[NF_IP6_TRACE_COMMENT_RETURN
];
289 static void trace_packet(const struct sk_buff
*skb
,
291 const struct net_device
*in
,
292 const struct net_device
*out
,
293 const char *tablename
,
294 const struct xt_table_info
*private,
295 const struct ip6t_entry
*e
)
297 const void *table_base
;
298 const struct ip6t_entry
*root
;
299 const char *hookname
, *chainname
, *comment
;
300 const struct ip6t_entry
*iter
;
301 unsigned int rulenum
= 0;
303 table_base
= private->entries
[smp_processor_id()];
304 root
= get_entry(table_base
, private->hook_entry
[hook
]);
306 hookname
= chainname
= hooknames
[hook
];
307 comment
= comments
[NF_IP6_TRACE_COMMENT_RULE
];
309 xt_entry_foreach(iter
, root
, private->size
- private->hook_entry
[hook
])
310 if (get_chainname_rulenum(iter
, e
, hookname
,
311 &chainname
, &comment
, &rulenum
) != 0)
314 nf_log_packet(AF_INET6
, hook
, skb
, in
, out
, &trace_loginfo
,
315 "TRACE: %s:%s:%s:%u ",
316 tablename
, chainname
, comment
, rulenum
);
320 static inline __pure
struct ip6t_entry
*
321 ip6t_next_entry(const struct ip6t_entry
*entry
)
323 return (void *)entry
+ entry
->next_offset
;
326 /* Returns one of the generic firewall policies, like NF_ACCEPT. */
328 ip6t_do_table(struct sk_buff
*skb
,
330 const struct net_device
*in
,
331 const struct net_device
*out
,
332 struct xt_table
*table
)
334 static const char nulldevname
[IFNAMSIZ
] __attribute__((aligned(sizeof(long))));
335 /* Initializing verdict to NF_DROP keeps gcc happy. */
336 unsigned int verdict
= NF_DROP
;
337 const char *indev
, *outdev
;
338 const void *table_base
;
339 struct ip6t_entry
*e
, **jumpstack
;
340 unsigned int *stackptr
, origptr
, cpu
;
341 const struct xt_table_info
*private;
342 struct xt_action_param acpar
;
346 indev
= in
? in
->name
: nulldevname
;
347 outdev
= out
? out
->name
: nulldevname
;
348 /* We handle fragments by dealing with the first fragment as
349 * if it was a normal packet. All other fragments are treated
350 * normally, except that they will NEVER match rules that ask
351 * things we don't know, ie. tcp syn flag or ports). If the
352 * rule is also a fragment-specific rule, non-fragments won't
354 acpar
.hotdrop
= false;
357 acpar
.family
= NFPROTO_IPV6
;
358 acpar
.hooknum
= hook
;
360 IP_NF_ASSERT(table
->valid_hooks
& (1 << hook
));
363 addend
= xt_write_recseq_begin();
364 private = table
->private;
365 cpu
= smp_processor_id();
366 table_base
= private->entries
[cpu
];
367 jumpstack
= (struct ip6t_entry
**)private->jumpstack
[cpu
];
368 stackptr
= per_cpu_ptr(private->stackptr
, cpu
);
371 e
= get_entry(table_base
, private->hook_entry
[hook
]);
374 const struct xt_entry_target
*t
;
375 const struct xt_entry_match
*ematch
;
378 if (!ip6_packet_match(skb
, indev
, outdev
, &e
->ipv6
,
379 &acpar
.thoff
, &acpar
.fragoff
, &acpar
.hotdrop
)) {
381 e
= ip6t_next_entry(e
);
385 xt_ematch_foreach(ematch
, e
) {
386 acpar
.match
= ematch
->u
.kernel
.match
;
387 acpar
.matchinfo
= ematch
->data
;
388 if (!acpar
.match
->match(skb
, &acpar
))
392 ADD_COUNTER(e
->counters
, skb
->len
, 1);
394 t
= ip6t_get_target_c(e
);
395 IP_NF_ASSERT(t
->u
.kernel
.target
);
397 #if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
398 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
399 /* The packet is traced: log it */
400 if (unlikely(skb
->nf_trace
))
401 trace_packet(skb
, hook
, in
, out
,
402 table
->name
, private, e
);
404 /* Standard target? */
405 if (!t
->u
.kernel
.target
->target
) {
408 v
= ((struct xt_standard_target
*)t
)->verdict
;
410 /* Pop from stack? */
411 if (v
!= XT_RETURN
) {
412 verdict
= (unsigned)(-v
) - 1;
415 if (*stackptr
<= origptr
)
416 e
= get_entry(table_base
,
417 private->underflow
[hook
]);
419 e
= ip6t_next_entry(jumpstack
[--*stackptr
]);
422 if (table_base
+ v
!= ip6t_next_entry(e
) &&
423 !(e
->ipv6
.flags
& IP6T_F_GOTO
)) {
424 if (*stackptr
>= private->stacksize
) {
428 jumpstack
[(*stackptr
)++] = e
;
431 e
= get_entry(table_base
, v
);
435 acpar
.target
= t
->u
.kernel
.target
;
436 acpar
.targinfo
= t
->data
;
438 verdict
= t
->u
.kernel
.target
->target(skb
, &acpar
);
439 if (verdict
== XT_CONTINUE
)
440 e
= ip6t_next_entry(e
);
444 } while (!acpar
.hotdrop
);
448 xt_write_recseq_end(addend
);
451 #ifdef DEBUG_ALLOW_ALL
460 /* Figures out from what hook each rule can be called: returns 0 if
461 there are loops. Puts hook bitmask in comefrom. */
463 mark_source_chains(const struct xt_table_info
*newinfo
,
464 unsigned int valid_hooks
, void *entry0
)
468 /* No recursion; use packet counter to save back ptrs (reset
469 to 0 as we leave), and comefrom to save source hook bitmask */
470 for (hook
= 0; hook
< NF_INET_NUMHOOKS
; hook
++) {
471 unsigned int pos
= newinfo
->hook_entry
[hook
];
472 struct ip6t_entry
*e
= (struct ip6t_entry
*)(entry0
+ pos
);
474 if (!(valid_hooks
& (1 << hook
)))
477 /* Set initial back pointer. */
478 e
->counters
.pcnt
= pos
;
481 const struct xt_standard_target
*t
482 = (void *)ip6t_get_target_c(e
);
483 int visited
= e
->comefrom
& (1 << hook
);
485 if (e
->comefrom
& (1 << NF_INET_NUMHOOKS
)) {
486 pr_err("iptables: loop hook %u pos %u %08X.\n",
487 hook
, pos
, e
->comefrom
);
490 e
->comefrom
|= ((1 << hook
) | (1 << NF_INET_NUMHOOKS
));
492 /* Unconditional return/END. */
493 if ((e
->target_offset
== sizeof(struct ip6t_entry
) &&
494 (strcmp(t
->target
.u
.user
.name
,
495 XT_STANDARD_TARGET
) == 0) &&
497 unconditional(&e
->ipv6
)) || visited
) {
498 unsigned int oldpos
, size
;
500 if ((strcmp(t
->target
.u
.user
.name
,
501 XT_STANDARD_TARGET
) == 0) &&
502 t
->verdict
< -NF_MAX_VERDICT
- 1) {
503 duprintf("mark_source_chains: bad "
504 "negative verdict (%i)\n",
509 /* Return: backtrack through the last
512 e
->comefrom
^= (1<<NF_INET_NUMHOOKS
);
513 #ifdef DEBUG_IP_FIREWALL_USER
515 & (1 << NF_INET_NUMHOOKS
)) {
516 duprintf("Back unset "
523 pos
= e
->counters
.pcnt
;
524 e
->counters
.pcnt
= 0;
526 /* We're at the start. */
530 e
= (struct ip6t_entry
*)
532 } while (oldpos
== pos
+ e
->next_offset
);
535 size
= e
->next_offset
;
536 e
= (struct ip6t_entry
*)
537 (entry0
+ pos
+ size
);
538 e
->counters
.pcnt
= pos
;
541 int newpos
= t
->verdict
;
543 if (strcmp(t
->target
.u
.user
.name
,
544 XT_STANDARD_TARGET
) == 0 &&
546 if (newpos
> newinfo
->size
-
547 sizeof(struct ip6t_entry
)) {
548 duprintf("mark_source_chains: "
549 "bad verdict (%i)\n",
553 /* This a jump; chase it. */
554 duprintf("Jump rule %u -> %u\n",
557 /* ... this is a fallthru */
558 newpos
= pos
+ e
->next_offset
;
560 e
= (struct ip6t_entry
*)
562 e
->counters
.pcnt
= pos
;
567 duprintf("Finished chain %u\n", hook
);
572 static void cleanup_match(struct xt_entry_match
*m
, struct net
*net
)
574 struct xt_mtdtor_param par
;
577 par
.match
= m
->u
.kernel
.match
;
578 par
.matchinfo
= m
->data
;
579 par
.family
= NFPROTO_IPV6
;
580 if (par
.match
->destroy
!= NULL
)
581 par
.match
->destroy(&par
);
582 module_put(par
.match
->me
);
586 check_entry(const struct ip6t_entry
*e
, const char *name
)
588 const struct xt_entry_target
*t
;
590 if (!ip6_checkentry(&e
->ipv6
)) {
591 duprintf("ip_tables: ip check failed %p %s.\n", e
, name
);
595 if (e
->target_offset
+ sizeof(struct xt_entry_target
) >
599 t
= ip6t_get_target_c(e
);
600 if (e
->target_offset
+ t
->u
.target_size
> e
->next_offset
)
606 static int check_match(struct xt_entry_match
*m
, struct xt_mtchk_param
*par
)
608 const struct ip6t_ip6
*ipv6
= par
->entryinfo
;
611 par
->match
= m
->u
.kernel
.match
;
612 par
->matchinfo
= m
->data
;
614 ret
= xt_check_match(par
, m
->u
.match_size
- sizeof(*m
),
615 ipv6
->proto
, ipv6
->invflags
& IP6T_INV_PROTO
);
617 duprintf("ip_tables: check failed for `%s'.\n",
625 find_check_match(struct xt_entry_match
*m
, struct xt_mtchk_param
*par
)
627 struct xt_match
*match
;
630 match
= xt_request_find_match(NFPROTO_IPV6
, m
->u
.user
.name
,
633 duprintf("find_check_match: `%s' not found\n", m
->u
.user
.name
);
634 return PTR_ERR(match
);
636 m
->u
.kernel
.match
= match
;
638 ret
= check_match(m
, par
);
644 module_put(m
->u
.kernel
.match
->me
);
648 static int check_target(struct ip6t_entry
*e
, struct net
*net
, const char *name
)
650 struct xt_entry_target
*t
= ip6t_get_target(e
);
651 struct xt_tgchk_param par
= {
655 .target
= t
->u
.kernel
.target
,
657 .hook_mask
= e
->comefrom
,
658 .family
= NFPROTO_IPV6
,
662 t
= ip6t_get_target(e
);
663 ret
= xt_check_target(&par
, t
->u
.target_size
- sizeof(*t
),
664 e
->ipv6
.proto
, e
->ipv6
.invflags
& IP6T_INV_PROTO
);
666 duprintf("ip_tables: check failed for `%s'.\n",
667 t
->u
.kernel
.target
->name
);
674 find_check_entry(struct ip6t_entry
*e
, struct net
*net
, const char *name
,
677 struct xt_entry_target
*t
;
678 struct xt_target
*target
;
681 struct xt_mtchk_param mtpar
;
682 struct xt_entry_match
*ematch
;
684 ret
= check_entry(e
, name
);
691 mtpar
.entryinfo
= &e
->ipv6
;
692 mtpar
.hook_mask
= e
->comefrom
;
693 mtpar
.family
= NFPROTO_IPV6
;
694 xt_ematch_foreach(ematch
, e
) {
695 ret
= find_check_match(ematch
, &mtpar
);
697 goto cleanup_matches
;
701 t
= ip6t_get_target(e
);
702 target
= xt_request_find_target(NFPROTO_IPV6
, t
->u
.user
.name
,
704 if (IS_ERR(target
)) {
705 duprintf("find_check_entry: `%s' not found\n", t
->u
.user
.name
);
706 ret
= PTR_ERR(target
);
707 goto cleanup_matches
;
709 t
->u
.kernel
.target
= target
;
711 ret
= check_target(e
, net
, name
);
716 module_put(t
->u
.kernel
.target
->me
);
718 xt_ematch_foreach(ematch
, e
) {
721 cleanup_match(ematch
, net
);
726 static bool check_underflow(const struct ip6t_entry
*e
)
728 const struct xt_entry_target
*t
;
729 unsigned int verdict
;
731 if (!unconditional(&e
->ipv6
))
733 t
= ip6t_get_target_c(e
);
734 if (strcmp(t
->u
.user
.name
, XT_STANDARD_TARGET
) != 0)
736 verdict
= ((struct xt_standard_target
*)t
)->verdict
;
737 verdict
= -verdict
- 1;
738 return verdict
== NF_DROP
|| verdict
== NF_ACCEPT
;
742 check_entry_size_and_hooks(struct ip6t_entry
*e
,
743 struct xt_table_info
*newinfo
,
744 const unsigned char *base
,
745 const unsigned char *limit
,
746 const unsigned int *hook_entries
,
747 const unsigned int *underflows
,
748 unsigned int valid_hooks
)
752 if ((unsigned long)e
% __alignof__(struct ip6t_entry
) != 0 ||
753 (unsigned char *)e
+ sizeof(struct ip6t_entry
) >= limit
) {
754 duprintf("Bad offset %p\n", e
);
759 < sizeof(struct ip6t_entry
) + sizeof(struct xt_entry_target
)) {
760 duprintf("checking: element %p size %u\n",
765 /* Check hooks & underflows */
766 for (h
= 0; h
< NF_INET_NUMHOOKS
; h
++) {
767 if (!(valid_hooks
& (1 << h
)))
769 if ((unsigned char *)e
- base
== hook_entries
[h
])
770 newinfo
->hook_entry
[h
] = hook_entries
[h
];
771 if ((unsigned char *)e
- base
== underflows
[h
]) {
772 if (!check_underflow(e
)) {
773 pr_err("Underflows must be unconditional and "
774 "use the STANDARD target with "
778 newinfo
->underflow
[h
] = underflows
[h
];
782 /* Clear counters and comefrom */
783 e
->counters
= ((struct xt_counters
) { 0, 0 });
788 static void cleanup_entry(struct ip6t_entry
*e
, struct net
*net
)
790 struct xt_tgdtor_param par
;
791 struct xt_entry_target
*t
;
792 struct xt_entry_match
*ematch
;
794 /* Cleanup all matches */
795 xt_ematch_foreach(ematch
, e
)
796 cleanup_match(ematch
, net
);
797 t
= ip6t_get_target(e
);
800 par
.target
= t
->u
.kernel
.target
;
801 par
.targinfo
= t
->data
;
802 par
.family
= NFPROTO_IPV6
;
803 if (par
.target
->destroy
!= NULL
)
804 par
.target
->destroy(&par
);
805 module_put(par
.target
->me
);
808 /* Checks and translates the user-supplied table segment (held in
811 translate_table(struct net
*net
, struct xt_table_info
*newinfo
, void *entry0
,
812 const struct ip6t_replace
*repl
)
814 struct ip6t_entry
*iter
;
818 newinfo
->size
= repl
->size
;
819 newinfo
->number
= repl
->num_entries
;
821 /* Init all hooks to impossible value. */
822 for (i
= 0; i
< NF_INET_NUMHOOKS
; i
++) {
823 newinfo
->hook_entry
[i
] = 0xFFFFFFFF;
824 newinfo
->underflow
[i
] = 0xFFFFFFFF;
827 duprintf("translate_table: size %u\n", newinfo
->size
);
829 /* Walk through entries, checking offsets. */
830 xt_entry_foreach(iter
, entry0
, newinfo
->size
) {
831 ret
= check_entry_size_and_hooks(iter
, newinfo
, entry0
,
839 if (strcmp(ip6t_get_target(iter
)->u
.user
.name
,
840 XT_ERROR_TARGET
) == 0)
841 ++newinfo
->stacksize
;
844 if (i
!= repl
->num_entries
) {
845 duprintf("translate_table: %u not %u entries\n",
846 i
, repl
->num_entries
);
850 /* Check hooks all assigned */
851 for (i
= 0; i
< NF_INET_NUMHOOKS
; i
++) {
852 /* Only hooks which are valid */
853 if (!(repl
->valid_hooks
& (1 << i
)))
855 if (newinfo
->hook_entry
[i
] == 0xFFFFFFFF) {
856 duprintf("Invalid hook entry %u %u\n",
857 i
, repl
->hook_entry
[i
]);
860 if (newinfo
->underflow
[i
] == 0xFFFFFFFF) {
861 duprintf("Invalid underflow %u %u\n",
862 i
, repl
->underflow
[i
]);
867 if (!mark_source_chains(newinfo
, repl
->valid_hooks
, entry0
))
870 /* Finally, each sanity check must pass */
872 xt_entry_foreach(iter
, entry0
, newinfo
->size
) {
873 ret
= find_check_entry(iter
, net
, repl
->name
, repl
->size
);
880 xt_entry_foreach(iter
, entry0
, newinfo
->size
) {
883 cleanup_entry(iter
, net
);
888 /* And one copy for every other CPU */
889 for_each_possible_cpu(i
) {
890 if (newinfo
->entries
[i
] && newinfo
->entries
[i
] != entry0
)
891 memcpy(newinfo
->entries
[i
], entry0
, newinfo
->size
);
898 get_counters(const struct xt_table_info
*t
,
899 struct xt_counters counters
[])
901 struct ip6t_entry
*iter
;
905 for_each_possible_cpu(cpu
) {
906 seqcount_t
*s
= &per_cpu(xt_recseq
, cpu
);
909 xt_entry_foreach(iter
, t
->entries
[cpu
], t
->size
) {
914 start
= read_seqcount_begin(s
);
915 bcnt
= iter
->counters
.bcnt
;
916 pcnt
= iter
->counters
.pcnt
;
917 } while (read_seqcount_retry(s
, start
));
919 ADD_COUNTER(counters
[i
], bcnt
, pcnt
);
925 static struct xt_counters
*alloc_counters(const struct xt_table
*table
)
927 unsigned int countersize
;
928 struct xt_counters
*counters
;
929 const struct xt_table_info
*private = table
->private;
931 /* We need atomic snapshot of counters: rest doesn't change
932 (other than comefrom, which userspace doesn't care
934 countersize
= sizeof(struct xt_counters
) * private->number
;
935 counters
= vzalloc(countersize
);
937 if (counters
== NULL
)
938 return ERR_PTR(-ENOMEM
);
940 get_counters(private, counters
);
946 copy_entries_to_user(unsigned int total_size
,
947 const struct xt_table
*table
,
948 void __user
*userptr
)
950 unsigned int off
, num
;
951 const struct ip6t_entry
*e
;
952 struct xt_counters
*counters
;
953 const struct xt_table_info
*private = table
->private;
955 const void *loc_cpu_entry
;
957 counters
= alloc_counters(table
);
958 if (IS_ERR(counters
))
959 return PTR_ERR(counters
);
961 /* choose the copy that is on our node/cpu, ...
962 * This choice is lazy (because current thread is
963 * allowed to migrate to another cpu)
965 loc_cpu_entry
= private->entries
[raw_smp_processor_id()];
966 if (copy_to_user(userptr
, loc_cpu_entry
, total_size
) != 0) {
971 /* FIXME: use iterator macros --RR */
972 /* ... then go back and fix counters and names */
973 for (off
= 0, num
= 0; off
< total_size
; off
+= e
->next_offset
, num
++){
975 const struct xt_entry_match
*m
;
976 const struct xt_entry_target
*t
;
978 e
= (struct ip6t_entry
*)(loc_cpu_entry
+ off
);
979 if (copy_to_user(userptr
+ off
980 + offsetof(struct ip6t_entry
, counters
),
982 sizeof(counters
[num
])) != 0) {
987 for (i
= sizeof(struct ip6t_entry
);
988 i
< e
->target_offset
;
989 i
+= m
->u
.match_size
) {
992 if (copy_to_user(userptr
+ off
+ i
993 + offsetof(struct xt_entry_match
,
995 m
->u
.kernel
.match
->name
,
996 strlen(m
->u
.kernel
.match
->name
)+1)
1003 t
= ip6t_get_target_c(e
);
1004 if (copy_to_user(userptr
+ off
+ e
->target_offset
1005 + offsetof(struct xt_entry_target
,
1007 t
->u
.kernel
.target
->name
,
1008 strlen(t
->u
.kernel
.target
->name
)+1) != 0) {
1019 #ifdef CONFIG_COMPAT
1020 static void compat_standard_from_user(void *dst
, const void *src
)
1022 int v
= *(compat_int_t
*)src
;
1025 v
+= xt_compat_calc_jump(AF_INET6
, v
);
1026 memcpy(dst
, &v
, sizeof(v
));
1029 static int compat_standard_to_user(void __user
*dst
, const void *src
)
1031 compat_int_t cv
= *(int *)src
;
1034 cv
-= xt_compat_calc_jump(AF_INET6
, cv
);
1035 return copy_to_user(dst
, &cv
, sizeof(cv
)) ? -EFAULT
: 0;
1038 static int compat_calc_entry(const struct ip6t_entry
*e
,
1039 const struct xt_table_info
*info
,
1040 const void *base
, struct xt_table_info
*newinfo
)
1042 const struct xt_entry_match
*ematch
;
1043 const struct xt_entry_target
*t
;
1044 unsigned int entry_offset
;
1047 off
= sizeof(struct ip6t_entry
) - sizeof(struct compat_ip6t_entry
);
1048 entry_offset
= (void *)e
- base
;
1049 xt_ematch_foreach(ematch
, e
)
1050 off
+= xt_compat_match_offset(ematch
->u
.kernel
.match
);
1051 t
= ip6t_get_target_c(e
);
1052 off
+= xt_compat_target_offset(t
->u
.kernel
.target
);
1053 newinfo
->size
-= off
;
1054 ret
= xt_compat_add_offset(AF_INET6
, entry_offset
, off
);
1058 for (i
= 0; i
< NF_INET_NUMHOOKS
; i
++) {
1059 if (info
->hook_entry
[i
] &&
1060 (e
< (struct ip6t_entry
*)(base
+ info
->hook_entry
[i
])))
1061 newinfo
->hook_entry
[i
] -= off
;
1062 if (info
->underflow
[i
] &&
1063 (e
< (struct ip6t_entry
*)(base
+ info
->underflow
[i
])))
1064 newinfo
->underflow
[i
] -= off
;
1069 static int compat_table_info(const struct xt_table_info
*info
,
1070 struct xt_table_info
*newinfo
)
1072 struct ip6t_entry
*iter
;
1073 void *loc_cpu_entry
;
1076 if (!newinfo
|| !info
)
1079 /* we dont care about newinfo->entries[] */
1080 memcpy(newinfo
, info
, offsetof(struct xt_table_info
, entries
));
1081 newinfo
->initial_entries
= 0;
1082 loc_cpu_entry
= info
->entries
[raw_smp_processor_id()];
1083 xt_compat_init_offsets(AF_INET6
, info
->number
);
1084 xt_entry_foreach(iter
, loc_cpu_entry
, info
->size
) {
1085 ret
= compat_calc_entry(iter
, info
, loc_cpu_entry
, newinfo
);
1093 static int get_info(struct net
*net
, void __user
*user
,
1094 const int *len
, int compat
)
1096 char name
[XT_TABLE_MAXNAMELEN
];
1100 if (*len
!= sizeof(struct ip6t_getinfo
)) {
1101 duprintf("length %u != %zu\n", *len
,
1102 sizeof(struct ip6t_getinfo
));
1106 if (copy_from_user(name
, user
, sizeof(name
)) != 0)
1109 name
[XT_TABLE_MAXNAMELEN
-1] = '\0';
1110 #ifdef CONFIG_COMPAT
1112 xt_compat_lock(AF_INET6
);
1114 t
= try_then_request_module(xt_find_table_lock(net
, AF_INET6
, name
),
1115 "ip6table_%s", name
);
1116 if (t
&& !IS_ERR(t
)) {
1117 struct ip6t_getinfo info
;
1118 const struct xt_table_info
*private = t
->private;
1119 #ifdef CONFIG_COMPAT
1120 struct xt_table_info tmp
;
1123 ret
= compat_table_info(private, &tmp
);
1124 xt_compat_flush_offsets(AF_INET6
);
1128 memset(&info
, 0, sizeof(info
));
1129 info
.valid_hooks
= t
->valid_hooks
;
1130 memcpy(info
.hook_entry
, private->hook_entry
,
1131 sizeof(info
.hook_entry
));
1132 memcpy(info
.underflow
, private->underflow
,
1133 sizeof(info
.underflow
));
1134 info
.num_entries
= private->number
;
1135 info
.size
= private->size
;
1136 strcpy(info
.name
, name
);
1138 if (copy_to_user(user
, &info
, *len
) != 0)
1146 ret
= t
? PTR_ERR(t
) : -ENOENT
;
1147 #ifdef CONFIG_COMPAT
1149 xt_compat_unlock(AF_INET6
);
1155 get_entries(struct net
*net
, struct ip6t_get_entries __user
*uptr
,
1159 struct ip6t_get_entries get
;
1162 if (*len
< sizeof(get
)) {
1163 duprintf("get_entries: %u < %zu\n", *len
, sizeof(get
));
1166 if (copy_from_user(&get
, uptr
, sizeof(get
)) != 0)
1168 if (*len
!= sizeof(struct ip6t_get_entries
) + get
.size
) {
1169 duprintf("get_entries: %u != %zu\n",
1170 *len
, sizeof(get
) + get
.size
);
1174 t
= xt_find_table_lock(net
, AF_INET6
, get
.name
);
1175 if (t
&& !IS_ERR(t
)) {
1176 struct xt_table_info
*private = t
->private;
1177 duprintf("t->private->number = %u\n", private->number
);
1178 if (get
.size
== private->size
)
1179 ret
= copy_entries_to_user(private->size
,
1180 t
, uptr
->entrytable
);
1182 duprintf("get_entries: I've got %u not %u!\n",
1183 private->size
, get
.size
);
1189 ret
= t
? PTR_ERR(t
) : -ENOENT
;
1195 __do_replace(struct net
*net
, const char *name
, unsigned int valid_hooks
,
1196 struct xt_table_info
*newinfo
, unsigned int num_counters
,
1197 void __user
*counters_ptr
)
1201 struct xt_table_info
*oldinfo
;
1202 struct xt_counters
*counters
;
1203 const void *loc_cpu_old_entry
;
1204 struct ip6t_entry
*iter
;
1207 counters
= vzalloc(num_counters
* sizeof(struct xt_counters
));
1213 t
= try_then_request_module(xt_find_table_lock(net
, AF_INET6
, name
),
1214 "ip6table_%s", name
);
1215 if (!t
|| IS_ERR(t
)) {
1216 ret
= t
? PTR_ERR(t
) : -ENOENT
;
1217 goto free_newinfo_counters_untrans
;
1221 if (valid_hooks
!= t
->valid_hooks
) {
1222 duprintf("Valid hook crap: %08X vs %08X\n",
1223 valid_hooks
, t
->valid_hooks
);
1228 oldinfo
= xt_replace_table(t
, num_counters
, newinfo
, &ret
);
1232 /* Update module usage count based on number of rules */
1233 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1234 oldinfo
->number
, oldinfo
->initial_entries
, newinfo
->number
);
1235 if ((oldinfo
->number
> oldinfo
->initial_entries
) ||
1236 (newinfo
->number
<= oldinfo
->initial_entries
))
1238 if ((oldinfo
->number
> oldinfo
->initial_entries
) &&
1239 (newinfo
->number
<= oldinfo
->initial_entries
))
1242 /* Get the old counters, and synchronize with replace */
1243 get_counters(oldinfo
, counters
);
1245 /* Decrease module usage counts and free resource */
1246 loc_cpu_old_entry
= oldinfo
->entries
[raw_smp_processor_id()];
1247 xt_entry_foreach(iter
, loc_cpu_old_entry
, oldinfo
->size
)
1248 cleanup_entry(iter
, net
);
1250 xt_free_table_info(oldinfo
);
1251 if (copy_to_user(counters_ptr
, counters
,
1252 sizeof(struct xt_counters
) * num_counters
) != 0)
1261 free_newinfo_counters_untrans
:
1268 do_replace(struct net
*net
, const void __user
*user
, unsigned int len
)
1271 struct ip6t_replace tmp
;
1272 struct xt_table_info
*newinfo
;
1273 void *loc_cpu_entry
;
1274 struct ip6t_entry
*iter
;
1276 if (copy_from_user(&tmp
, user
, sizeof(tmp
)) != 0)
1279 /* overflow check */
1280 if (tmp
.num_counters
>= INT_MAX
/ sizeof(struct xt_counters
))
1282 tmp
.name
[sizeof(tmp
.name
)-1] = 0;
1284 newinfo
= xt_alloc_table_info(tmp
.size
);
1288 /* choose the copy that is on our node/cpu */
1289 loc_cpu_entry
= newinfo
->entries
[raw_smp_processor_id()];
1290 if (copy_from_user(loc_cpu_entry
, user
+ sizeof(tmp
),
1296 ret
= translate_table(net
, newinfo
, loc_cpu_entry
, &tmp
);
1300 duprintf("ip_tables: Translated table\n");
1302 ret
= __do_replace(net
, tmp
.name
, tmp
.valid_hooks
, newinfo
,
1303 tmp
.num_counters
, tmp
.counters
);
1305 goto free_newinfo_untrans
;
1308 free_newinfo_untrans
:
1309 xt_entry_foreach(iter
, loc_cpu_entry
, newinfo
->size
)
1310 cleanup_entry(iter
, net
);
1312 xt_free_table_info(newinfo
);
1317 do_add_counters(struct net
*net
, const void __user
*user
, unsigned int len
,
1320 unsigned int i
, curcpu
;
1321 struct xt_counters_info tmp
;
1322 struct xt_counters
*paddc
;
1323 unsigned int num_counters
;
1328 const struct xt_table_info
*private;
1330 const void *loc_cpu_entry
;
1331 struct ip6t_entry
*iter
;
1332 unsigned int addend
;
1333 #ifdef CONFIG_COMPAT
1334 struct compat_xt_counters_info compat_tmp
;
1338 size
= sizeof(struct compat_xt_counters_info
);
1343 size
= sizeof(struct xt_counters_info
);
1346 if (copy_from_user(ptmp
, user
, size
) != 0)
1349 #ifdef CONFIG_COMPAT
1351 num_counters
= compat_tmp
.num_counters
;
1352 name
= compat_tmp
.name
;
1356 num_counters
= tmp
.num_counters
;
1360 if (len
!= size
+ num_counters
* sizeof(struct xt_counters
))
1363 paddc
= vmalloc(len
- size
);
1367 if (copy_from_user(paddc
, user
+ size
, len
- size
) != 0) {
1372 t
= xt_find_table_lock(net
, AF_INET6
, name
);
1373 if (!t
|| IS_ERR(t
)) {
1374 ret
= t
? PTR_ERR(t
) : -ENOENT
;
1380 private = t
->private;
1381 if (private->number
!= num_counters
) {
1383 goto unlock_up_free
;
1387 /* Choose the copy that is on our node */
1388 curcpu
= smp_processor_id();
1389 addend
= xt_write_recseq_begin();
1390 loc_cpu_entry
= private->entries
[curcpu
];
1391 xt_entry_foreach(iter
, loc_cpu_entry
, private->size
) {
1392 ADD_COUNTER(iter
->counters
, paddc
[i
].bcnt
, paddc
[i
].pcnt
);
1395 xt_write_recseq_end(addend
);
1407 #ifdef CONFIG_COMPAT
1408 struct compat_ip6t_replace
{
1409 char name
[XT_TABLE_MAXNAMELEN
];
1413 u32 hook_entry
[NF_INET_NUMHOOKS
];
1414 u32 underflow
[NF_INET_NUMHOOKS
];
1416 compat_uptr_t counters
; /* struct xt_counters * */
1417 struct compat_ip6t_entry entries
[0];
1421 compat_copy_entry_to_user(struct ip6t_entry
*e
, void __user
**dstptr
,
1422 unsigned int *size
, struct xt_counters
*counters
,
1425 struct xt_entry_target
*t
;
1426 struct compat_ip6t_entry __user
*ce
;
1427 u_int16_t target_offset
, next_offset
;
1428 compat_uint_t origsize
;
1429 const struct xt_entry_match
*ematch
;
1433 ce
= (struct compat_ip6t_entry __user
*)*dstptr
;
1434 if (copy_to_user(ce
, e
, sizeof(struct ip6t_entry
)) != 0 ||
1435 copy_to_user(&ce
->counters
, &counters
[i
],
1436 sizeof(counters
[i
])) != 0)
1439 *dstptr
+= sizeof(struct compat_ip6t_entry
);
1440 *size
-= sizeof(struct ip6t_entry
) - sizeof(struct compat_ip6t_entry
);
1442 xt_ematch_foreach(ematch
, e
) {
1443 ret
= xt_compat_match_to_user(ematch
, dstptr
, size
);
1447 target_offset
= e
->target_offset
- (origsize
- *size
);
1448 t
= ip6t_get_target(e
);
1449 ret
= xt_compat_target_to_user(t
, dstptr
, size
);
1452 next_offset
= e
->next_offset
- (origsize
- *size
);
1453 if (put_user(target_offset
, &ce
->target_offset
) != 0 ||
1454 put_user(next_offset
, &ce
->next_offset
) != 0)
1460 compat_find_calc_match(struct xt_entry_match
*m
,
1462 const struct ip6t_ip6
*ipv6
,
1463 unsigned int hookmask
,
1466 struct xt_match
*match
;
1468 match
= xt_request_find_match(NFPROTO_IPV6
, m
->u
.user
.name
,
1469 m
->u
.user
.revision
);
1470 if (IS_ERR(match
)) {
1471 duprintf("compat_check_calc_match: `%s' not found\n",
1473 return PTR_ERR(match
);
1475 m
->u
.kernel
.match
= match
;
1476 *size
+= xt_compat_match_offset(match
);
1480 static void compat_release_entry(struct compat_ip6t_entry
*e
)
1482 struct xt_entry_target
*t
;
1483 struct xt_entry_match
*ematch
;
1485 /* Cleanup all matches */
1486 xt_ematch_foreach(ematch
, e
)
1487 module_put(ematch
->u
.kernel
.match
->me
);
1488 t
= compat_ip6t_get_target(e
);
1489 module_put(t
->u
.kernel
.target
->me
);
1493 check_compat_entry_size_and_hooks(struct compat_ip6t_entry
*e
,
1494 struct xt_table_info
*newinfo
,
1496 const unsigned char *base
,
1497 const unsigned char *limit
,
1498 const unsigned int *hook_entries
,
1499 const unsigned int *underflows
,
1502 struct xt_entry_match
*ematch
;
1503 struct xt_entry_target
*t
;
1504 struct xt_target
*target
;
1505 unsigned int entry_offset
;
1509 duprintf("check_compat_entry_size_and_hooks %p\n", e
);
1510 if ((unsigned long)e
% __alignof__(struct compat_ip6t_entry
) != 0 ||
1511 (unsigned char *)e
+ sizeof(struct compat_ip6t_entry
) >= limit
) {
1512 duprintf("Bad offset %p, limit = %p\n", e
, limit
);
1516 if (e
->next_offset
< sizeof(struct compat_ip6t_entry
) +
1517 sizeof(struct compat_xt_entry_target
)) {
1518 duprintf("checking: element %p size %u\n",
1523 /* For purposes of check_entry casting the compat entry is fine */
1524 ret
= check_entry((struct ip6t_entry
*)e
, name
);
1528 off
= sizeof(struct ip6t_entry
) - sizeof(struct compat_ip6t_entry
);
1529 entry_offset
= (void *)e
- (void *)base
;
1531 xt_ematch_foreach(ematch
, e
) {
1532 ret
= compat_find_calc_match(ematch
, name
,
1533 &e
->ipv6
, e
->comefrom
, &off
);
1535 goto release_matches
;
1539 t
= compat_ip6t_get_target(e
);
1540 target
= xt_request_find_target(NFPROTO_IPV6
, t
->u
.user
.name
,
1541 t
->u
.user
.revision
);
1542 if (IS_ERR(target
)) {
1543 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1545 ret
= PTR_ERR(target
);
1546 goto release_matches
;
1548 t
->u
.kernel
.target
= target
;
1550 off
+= xt_compat_target_offset(target
);
1552 ret
= xt_compat_add_offset(AF_INET6
, entry_offset
, off
);
1556 /* Check hooks & underflows */
1557 for (h
= 0; h
< NF_INET_NUMHOOKS
; h
++) {
1558 if ((unsigned char *)e
- base
== hook_entries
[h
])
1559 newinfo
->hook_entry
[h
] = hook_entries
[h
];
1560 if ((unsigned char *)e
- base
== underflows
[h
])
1561 newinfo
->underflow
[h
] = underflows
[h
];
1564 /* Clear counters and comefrom */
1565 memset(&e
->counters
, 0, sizeof(e
->counters
));
1570 module_put(t
->u
.kernel
.target
->me
);
1572 xt_ematch_foreach(ematch
, e
) {
1575 module_put(ematch
->u
.kernel
.match
->me
);
1581 compat_copy_entry_from_user(struct compat_ip6t_entry
*e
, void **dstptr
,
1582 unsigned int *size
, const char *name
,
1583 struct xt_table_info
*newinfo
, unsigned char *base
)
1585 struct xt_entry_target
*t
;
1586 struct ip6t_entry
*de
;
1587 unsigned int origsize
;
1589 struct xt_entry_match
*ematch
;
1593 de
= (struct ip6t_entry
*)*dstptr
;
1594 memcpy(de
, e
, sizeof(struct ip6t_entry
));
1595 memcpy(&de
->counters
, &e
->counters
, sizeof(e
->counters
));
1597 *dstptr
+= sizeof(struct ip6t_entry
);
1598 *size
+= sizeof(struct ip6t_entry
) - sizeof(struct compat_ip6t_entry
);
1600 xt_ematch_foreach(ematch
, e
) {
1601 ret
= xt_compat_match_from_user(ematch
, dstptr
, size
);
1605 de
->target_offset
= e
->target_offset
- (origsize
- *size
);
1606 t
= compat_ip6t_get_target(e
);
1607 xt_compat_target_from_user(t
, dstptr
, size
);
1609 de
->next_offset
= e
->next_offset
- (origsize
- *size
);
1610 for (h
= 0; h
< NF_INET_NUMHOOKS
; h
++) {
1611 if ((unsigned char *)de
- base
< newinfo
->hook_entry
[h
])
1612 newinfo
->hook_entry
[h
] -= origsize
- *size
;
1613 if ((unsigned char *)de
- base
< newinfo
->underflow
[h
])
1614 newinfo
->underflow
[h
] -= origsize
- *size
;
1619 static int compat_check_entry(struct ip6t_entry
*e
, struct net
*net
,
1624 struct xt_mtchk_param mtpar
;
1625 struct xt_entry_match
*ematch
;
1630 mtpar
.entryinfo
= &e
->ipv6
;
1631 mtpar
.hook_mask
= e
->comefrom
;
1632 mtpar
.family
= NFPROTO_IPV6
;
1633 xt_ematch_foreach(ematch
, e
) {
1634 ret
= check_match(ematch
, &mtpar
);
1636 goto cleanup_matches
;
1640 ret
= check_target(e
, net
, name
);
1642 goto cleanup_matches
;
1646 xt_ematch_foreach(ematch
, e
) {
1649 cleanup_match(ematch
, net
);
1655 translate_compat_table(struct net
*net
,
1657 unsigned int valid_hooks
,
1658 struct xt_table_info
**pinfo
,
1660 unsigned int total_size
,
1661 unsigned int number
,
1662 unsigned int *hook_entries
,
1663 unsigned int *underflows
)
1666 struct xt_table_info
*newinfo
, *info
;
1667 void *pos
, *entry0
, *entry1
;
1668 struct compat_ip6t_entry
*iter0
;
1669 struct ip6t_entry
*iter1
;
1676 info
->number
= number
;
1678 /* Init all hooks to impossible value. */
1679 for (i
= 0; i
< NF_INET_NUMHOOKS
; i
++) {
1680 info
->hook_entry
[i
] = 0xFFFFFFFF;
1681 info
->underflow
[i
] = 0xFFFFFFFF;
1684 duprintf("translate_compat_table: size %u\n", info
->size
);
1686 xt_compat_lock(AF_INET6
);
1687 xt_compat_init_offsets(AF_INET6
, number
);
1688 /* Walk through entries, checking offsets. */
1689 xt_entry_foreach(iter0
, entry0
, total_size
) {
1690 ret
= check_compat_entry_size_and_hooks(iter0
, info
, &size
,
1692 entry0
+ total_size
,
1703 duprintf("translate_compat_table: %u not %u entries\n",
1708 /* Check hooks all assigned */
1709 for (i
= 0; i
< NF_INET_NUMHOOKS
; i
++) {
1710 /* Only hooks which are valid */
1711 if (!(valid_hooks
& (1 << i
)))
1713 if (info
->hook_entry
[i
] == 0xFFFFFFFF) {
1714 duprintf("Invalid hook entry %u %u\n",
1715 i
, hook_entries
[i
]);
1718 if (info
->underflow
[i
] == 0xFFFFFFFF) {
1719 duprintf("Invalid underflow %u %u\n",
1726 newinfo
= xt_alloc_table_info(size
);
1730 newinfo
->number
= number
;
1731 for (i
= 0; i
< NF_INET_NUMHOOKS
; i
++) {
1732 newinfo
->hook_entry
[i
] = info
->hook_entry
[i
];
1733 newinfo
->underflow
[i
] = info
->underflow
[i
];
1735 entry1
= newinfo
->entries
[raw_smp_processor_id()];
1738 xt_entry_foreach(iter0
, entry0
, total_size
) {
1739 ret
= compat_copy_entry_from_user(iter0
, &pos
, &size
,
1740 name
, newinfo
, entry1
);
1744 xt_compat_flush_offsets(AF_INET6
);
1745 xt_compat_unlock(AF_INET6
);
1750 if (!mark_source_chains(newinfo
, valid_hooks
, entry1
))
1754 xt_entry_foreach(iter1
, entry1
, newinfo
->size
) {
1755 ret
= compat_check_entry(iter1
, net
, name
);
1759 if (strcmp(ip6t_get_target(iter1
)->u
.user
.name
,
1760 XT_ERROR_TARGET
) == 0)
1761 ++newinfo
->stacksize
;
1765 * The first i matches need cleanup_entry (calls ->destroy)
1766 * because they had called ->check already. The other j-i
1767 * entries need only release.
1771 xt_entry_foreach(iter0
, entry0
, newinfo
->size
) {
1776 compat_release_entry(iter0
);
1778 xt_entry_foreach(iter1
, entry1
, newinfo
->size
) {
1781 cleanup_entry(iter1
, net
);
1783 xt_free_table_info(newinfo
);
1787 /* And one copy for every other CPU */
1788 for_each_possible_cpu(i
)
1789 if (newinfo
->entries
[i
] && newinfo
->entries
[i
] != entry1
)
1790 memcpy(newinfo
->entries
[i
], entry1
, newinfo
->size
);
1794 xt_free_table_info(info
);
1798 xt_free_table_info(newinfo
);
1800 xt_entry_foreach(iter0
, entry0
, total_size
) {
1803 compat_release_entry(iter0
);
1807 xt_compat_flush_offsets(AF_INET6
);
1808 xt_compat_unlock(AF_INET6
);
1813 compat_do_replace(struct net
*net
, void __user
*user
, unsigned int len
)
1816 struct compat_ip6t_replace tmp
;
1817 struct xt_table_info
*newinfo
;
1818 void *loc_cpu_entry
;
1819 struct ip6t_entry
*iter
;
1821 if (copy_from_user(&tmp
, user
, sizeof(tmp
)) != 0)
1824 /* overflow check */
1825 if (tmp
.size
>= INT_MAX
/ num_possible_cpus())
1827 if (tmp
.num_counters
>= INT_MAX
/ sizeof(struct xt_counters
))
1829 tmp
.name
[sizeof(tmp
.name
)-1] = 0;
1831 newinfo
= xt_alloc_table_info(tmp
.size
);
1835 /* choose the copy that is on our node/cpu */
1836 loc_cpu_entry
= newinfo
->entries
[raw_smp_processor_id()];
1837 if (copy_from_user(loc_cpu_entry
, user
+ sizeof(tmp
),
1843 ret
= translate_compat_table(net
, tmp
.name
, tmp
.valid_hooks
,
1844 &newinfo
, &loc_cpu_entry
, tmp
.size
,
1845 tmp
.num_entries
, tmp
.hook_entry
,
1850 duprintf("compat_do_replace: Translated table\n");
1852 ret
= __do_replace(net
, tmp
.name
, tmp
.valid_hooks
, newinfo
,
1853 tmp
.num_counters
, compat_ptr(tmp
.counters
));
1855 goto free_newinfo_untrans
;
1858 free_newinfo_untrans
:
1859 xt_entry_foreach(iter
, loc_cpu_entry
, newinfo
->size
)
1860 cleanup_entry(iter
, net
);
1862 xt_free_table_info(newinfo
);
1867 compat_do_ip6t_set_ctl(struct sock
*sk
, int cmd
, void __user
*user
,
1872 if (!capable(CAP_NET_ADMIN
))
1876 case IP6T_SO_SET_REPLACE
:
1877 ret
= compat_do_replace(sock_net(sk
), user
, len
);
1880 case IP6T_SO_SET_ADD_COUNTERS
:
1881 ret
= do_add_counters(sock_net(sk
), user
, len
, 1);
1885 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd
);
1892 struct compat_ip6t_get_entries
{
1893 char name
[XT_TABLE_MAXNAMELEN
];
1895 struct compat_ip6t_entry entrytable
[0];
1899 compat_copy_entries_to_user(unsigned int total_size
, struct xt_table
*table
,
1900 void __user
*userptr
)
1902 struct xt_counters
*counters
;
1903 const struct xt_table_info
*private = table
->private;
1907 const void *loc_cpu_entry
;
1909 struct ip6t_entry
*iter
;
1911 counters
= alloc_counters(table
);
1912 if (IS_ERR(counters
))
1913 return PTR_ERR(counters
);
1915 /* choose the copy that is on our node/cpu, ...
1916 * This choice is lazy (because current thread is
1917 * allowed to migrate to another cpu)
1919 loc_cpu_entry
= private->entries
[raw_smp_processor_id()];
1922 xt_entry_foreach(iter
, loc_cpu_entry
, total_size
) {
1923 ret
= compat_copy_entry_to_user(iter
, &pos
,
1924 &size
, counters
, i
++);
1934 compat_get_entries(struct net
*net
, struct compat_ip6t_get_entries __user
*uptr
,
1938 struct compat_ip6t_get_entries get
;
1941 if (*len
< sizeof(get
)) {
1942 duprintf("compat_get_entries: %u < %zu\n", *len
, sizeof(get
));
1946 if (copy_from_user(&get
, uptr
, sizeof(get
)) != 0)
1949 if (*len
!= sizeof(struct compat_ip6t_get_entries
) + get
.size
) {
1950 duprintf("compat_get_entries: %u != %zu\n",
1951 *len
, sizeof(get
) + get
.size
);
1955 xt_compat_lock(AF_INET6
);
1956 t
= xt_find_table_lock(net
, AF_INET6
, get
.name
);
1957 if (t
&& !IS_ERR(t
)) {
1958 const struct xt_table_info
*private = t
->private;
1959 struct xt_table_info info
;
1960 duprintf("t->private->number = %u\n", private->number
);
1961 ret
= compat_table_info(private, &info
);
1962 if (!ret
&& get
.size
== info
.size
) {
1963 ret
= compat_copy_entries_to_user(private->size
,
1964 t
, uptr
->entrytable
);
1966 duprintf("compat_get_entries: I've got %u not %u!\n",
1967 private->size
, get
.size
);
1970 xt_compat_flush_offsets(AF_INET6
);
1974 ret
= t
? PTR_ERR(t
) : -ENOENT
;
1976 xt_compat_unlock(AF_INET6
);
1980 static int do_ip6t_get_ctl(struct sock
*, int, void __user
*, int *);
1983 compat_do_ip6t_get_ctl(struct sock
*sk
, int cmd
, void __user
*user
, int *len
)
1987 if (!capable(CAP_NET_ADMIN
))
1991 case IP6T_SO_GET_INFO
:
1992 ret
= get_info(sock_net(sk
), user
, len
, 1);
1994 case IP6T_SO_GET_ENTRIES
:
1995 ret
= compat_get_entries(sock_net(sk
), user
, len
);
1998 ret
= do_ip6t_get_ctl(sk
, cmd
, user
, len
);
2005 do_ip6t_set_ctl(struct sock
*sk
, int cmd
, void __user
*user
, unsigned int len
)
2009 if (!capable(CAP_NET_ADMIN
))
2013 case IP6T_SO_SET_REPLACE
:
2014 ret
= do_replace(sock_net(sk
), user
, len
);
2017 case IP6T_SO_SET_ADD_COUNTERS
:
2018 ret
= do_add_counters(sock_net(sk
), user
, len
, 0);
2022 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd
);
2030 do_ip6t_get_ctl(struct sock
*sk
, int cmd
, void __user
*user
, int *len
)
2034 if (!capable(CAP_NET_ADMIN
))
2038 case IP6T_SO_GET_INFO
:
2039 ret
= get_info(sock_net(sk
), user
, len
, 0);
2042 case IP6T_SO_GET_ENTRIES
:
2043 ret
= get_entries(sock_net(sk
), user
, len
);
2046 case IP6T_SO_GET_REVISION_MATCH
:
2047 case IP6T_SO_GET_REVISION_TARGET
: {
2048 struct xt_get_revision rev
;
2051 if (*len
!= sizeof(rev
)) {
2055 if (copy_from_user(&rev
, user
, sizeof(rev
)) != 0) {
2059 rev
.name
[sizeof(rev
.name
)-1] = 0;
2061 if (cmd
== IP6T_SO_GET_REVISION_TARGET
)
2066 try_then_request_module(xt_find_revision(AF_INET6
, rev
.name
,
2069 "ip6t_%s", rev
.name
);
2074 duprintf("do_ip6t_get_ctl: unknown request %i\n", cmd
);
2081 struct xt_table
*ip6t_register_table(struct net
*net
,
2082 const struct xt_table
*table
,
2083 const struct ip6t_replace
*repl
)
2086 struct xt_table_info
*newinfo
;
2087 struct xt_table_info bootstrap
= {0};
2088 void *loc_cpu_entry
;
2089 struct xt_table
*new_table
;
2091 newinfo
= xt_alloc_table_info(repl
->size
);
2097 /* choose the copy on our node/cpu, but dont care about preemption */
2098 loc_cpu_entry
= newinfo
->entries
[raw_smp_processor_id()];
2099 memcpy(loc_cpu_entry
, repl
->entries
, repl
->size
);
2101 ret
= translate_table(net
, newinfo
, loc_cpu_entry
, repl
);
2105 new_table
= xt_register_table(net
, table
, &bootstrap
, newinfo
);
2106 if (IS_ERR(new_table
)) {
2107 ret
= PTR_ERR(new_table
);
2113 xt_free_table_info(newinfo
);
2115 return ERR_PTR(ret
);
2118 void ip6t_unregister_table(struct net
*net
, struct xt_table
*table
)
2120 struct xt_table_info
*private;
2121 void *loc_cpu_entry
;
2122 struct module
*table_owner
= table
->me
;
2123 struct ip6t_entry
*iter
;
2125 private = xt_unregister_table(table
);
2127 /* Decrease module usage counts and free resources */
2128 loc_cpu_entry
= private->entries
[raw_smp_processor_id()];
2129 xt_entry_foreach(iter
, loc_cpu_entry
, private->size
)
2130 cleanup_entry(iter
, net
);
2131 if (private->number
> private->initial_entries
)
2132 module_put(table_owner
);
2133 xt_free_table_info(private);
2136 /* Returns 1 if the type and code is matched by the range, 0 otherwise */
2138 icmp6_type_code_match(u_int8_t test_type
, u_int8_t min_code
, u_int8_t max_code
,
2139 u_int8_t type
, u_int8_t code
,
2142 return (type
== test_type
&& code
>= min_code
&& code
<= max_code
)
2147 icmp6_match(const struct sk_buff
*skb
, struct xt_action_param
*par
)
2149 const struct icmp6hdr
*ic
;
2150 struct icmp6hdr _icmph
;
2151 const struct ip6t_icmp
*icmpinfo
= par
->matchinfo
;
2153 /* Must not be a fragment. */
2154 if (par
->fragoff
!= 0)
2157 ic
= skb_header_pointer(skb
, par
->thoff
, sizeof(_icmph
), &_icmph
);
2159 /* We've been asked to examine this packet, and we
2160 * can't. Hence, no choice but to drop.
2162 duprintf("Dropping evil ICMP tinygram.\n");
2163 par
->hotdrop
= true;
2167 return icmp6_type_code_match(icmpinfo
->type
,
2170 ic
->icmp6_type
, ic
->icmp6_code
,
2171 !!(icmpinfo
->invflags
&IP6T_ICMP_INV
));
2174 /* Called when user tries to insert an entry of this type. */
2175 static int icmp6_checkentry(const struct xt_mtchk_param
*par
)
2177 const struct ip6t_icmp
*icmpinfo
= par
->matchinfo
;
2179 /* Must specify no unknown invflags */
2180 return (icmpinfo
->invflags
& ~IP6T_ICMP_INV
) ? -EINVAL
: 0;
2183 /* The built-in targets: standard (NULL) and error. */
2184 static struct xt_target ip6t_builtin_tg
[] __read_mostly
= {
2186 .name
= XT_STANDARD_TARGET
,
2187 .targetsize
= sizeof(int),
2188 .family
= NFPROTO_IPV6
,
2189 #ifdef CONFIG_COMPAT
2190 .compatsize
= sizeof(compat_int_t
),
2191 .compat_from_user
= compat_standard_from_user
,
2192 .compat_to_user
= compat_standard_to_user
,
2196 .name
= XT_ERROR_TARGET
,
2197 .target
= ip6t_error
,
2198 .targetsize
= XT_FUNCTION_MAXNAMELEN
,
2199 .family
= NFPROTO_IPV6
,
2203 static struct nf_sockopt_ops ip6t_sockopts
= {
2205 .set_optmin
= IP6T_BASE_CTL
,
2206 .set_optmax
= IP6T_SO_SET_MAX
+1,
2207 .set
= do_ip6t_set_ctl
,
2208 #ifdef CONFIG_COMPAT
2209 .compat_set
= compat_do_ip6t_set_ctl
,
2211 .get_optmin
= IP6T_BASE_CTL
,
2212 .get_optmax
= IP6T_SO_GET_MAX
+1,
2213 .get
= do_ip6t_get_ctl
,
2214 #ifdef CONFIG_COMPAT
2215 .compat_get
= compat_do_ip6t_get_ctl
,
2217 .owner
= THIS_MODULE
,
2220 static struct xt_match ip6t_builtin_mt
[] __read_mostly
= {
2223 .match
= icmp6_match
,
2224 .matchsize
= sizeof(struct ip6t_icmp
),
2225 .checkentry
= icmp6_checkentry
,
2226 .proto
= IPPROTO_ICMPV6
,
2227 .family
= NFPROTO_IPV6
,
2231 static int __net_init
ip6_tables_net_init(struct net
*net
)
2233 return xt_proto_init(net
, NFPROTO_IPV6
);
2236 static void __net_exit
ip6_tables_net_exit(struct net
*net
)
2238 xt_proto_fini(net
, NFPROTO_IPV6
);
2241 static struct pernet_operations ip6_tables_net_ops
= {
2242 .init
= ip6_tables_net_init
,
2243 .exit
= ip6_tables_net_exit
,
2246 static int __init
ip6_tables_init(void)
2250 ret
= register_pernet_subsys(&ip6_tables_net_ops
);
2254 /* No one else will be downing sem now, so we won't sleep */
2255 ret
= xt_register_targets(ip6t_builtin_tg
, ARRAY_SIZE(ip6t_builtin_tg
));
2258 ret
= xt_register_matches(ip6t_builtin_mt
, ARRAY_SIZE(ip6t_builtin_mt
));
2262 /* Register setsockopt */
2263 ret
= nf_register_sockopt(&ip6t_sockopts
);
2267 pr_info("(C) 2000-2006 Netfilter Core Team\n");
2271 xt_unregister_matches(ip6t_builtin_mt
, ARRAY_SIZE(ip6t_builtin_mt
));
2273 xt_unregister_targets(ip6t_builtin_tg
, ARRAY_SIZE(ip6t_builtin_tg
));
2275 unregister_pernet_subsys(&ip6_tables_net_ops
);
2280 static void __exit
ip6_tables_fini(void)
2282 nf_unregister_sockopt(&ip6t_sockopts
);
2284 xt_unregister_matches(ip6t_builtin_mt
, ARRAY_SIZE(ip6t_builtin_mt
));
2285 xt_unregister_targets(ip6t_builtin_tg
, ARRAY_SIZE(ip6t_builtin_tg
));
2286 unregister_pernet_subsys(&ip6_tables_net_ops
);
2290 * find the offset to specified header or the protocol number of last header
2291 * if target < 0. "last header" is transport protocol header, ESP, or
2294 * If target header is found, its offset is set in *offset and return protocol
2295 * number. Otherwise, return -1.
2297 * If the first fragment doesn't contain the final protocol header or
2298 * NEXTHDR_NONE it is considered invalid.
2300 * Note that non-1st fragment is special case that "the protocol number
2301 * of last header" is "next header" field in Fragment header. In this case,
2302 * *offset is meaningless and fragment offset is stored in *fragoff if fragoff
2306 int ipv6_find_hdr(const struct sk_buff
*skb
, unsigned int *offset
,
2307 int target
, unsigned short *fragoff
)
2309 unsigned int start
= skb_network_offset(skb
) + sizeof(struct ipv6hdr
);
2310 u8 nexthdr
= ipv6_hdr(skb
)->nexthdr
;
2311 unsigned int len
= skb
->len
- start
;
2316 while (nexthdr
!= target
) {
2317 struct ipv6_opt_hdr _hdr
, *hp
;
2318 unsigned int hdrlen
;
2320 if ((!ipv6_ext_hdr(nexthdr
)) || nexthdr
== NEXTHDR_NONE
) {
2326 hp
= skb_header_pointer(skb
, start
, sizeof(_hdr
), &_hdr
);
2329 if (nexthdr
== NEXTHDR_FRAGMENT
) {
2330 unsigned short _frag_off
;
2332 fp
= skb_header_pointer(skb
,
2333 start
+offsetof(struct frag_hdr
,
2340 _frag_off
= ntohs(*fp
) & ~0x7;
2343 ((!ipv6_ext_hdr(hp
->nexthdr
)) ||
2344 hp
->nexthdr
== NEXTHDR_NONE
)) {
2346 *fragoff
= _frag_off
;
2352 } else if (nexthdr
== NEXTHDR_AUTH
)
2353 hdrlen
= (hp
->hdrlen
+ 2) << 2;
2355 hdrlen
= ipv6_optlen(hp
);
2357 nexthdr
= hp
->nexthdr
;
2366 EXPORT_SYMBOL(ip6t_register_table
);
2367 EXPORT_SYMBOL(ip6t_unregister_table
);
2368 EXPORT_SYMBOL(ip6t_do_table
);
2369 EXPORT_SYMBOL(ip6t_ext_hdr
);
2370 EXPORT_SYMBOL(ipv6_find_hdr
);
2372 module_init(ip6_tables_init
);
2373 module_exit(ip6_tables_fini
);