1 #include <linux/kernel.h>
2 #include <linux/init.h>
3 #include <linux/ipv6.h>
4 #include <linux/netfilter.h>
5 #include <linux/netfilter_ipv6.h>
8 #include <net/ip6_route.h>
10 #include <net/ip6_checksum.h>
11 #include <net/netfilter/nf_queue.h>
13 int ip6_route_me_harder(struct sk_buff
*skb
)
15 struct net
*net
= dev_net(skb_dst(skb
)->dev
);
16 struct ipv6hdr
*iph
= ipv6_hdr(skb
);
17 struct dst_entry
*dst
;
19 .oif
= skb
->sk
? skb
->sk
->sk_bound_dev_if
: 0,
23 { .daddr
= iph
->daddr
,
24 .saddr
= iph
->saddr
, } },
27 dst
= ip6_route_output(net
, skb
->sk
, &fl
);
30 if (!(IP6CB(skb
)->flags
& IP6SKB_XFRM_TRANSFORMED
) &&
31 xfrm_decode_session(skb
, &fl
, AF_INET6
) == 0) {
32 struct dst_entry
*dst2
= skb_dst(skb
);
34 if (xfrm_lookup(net
, &dst2
, &fl
, skb
->sk
, 0)) {
35 skb_dst_set(skb
, NULL
);
38 skb_dst_set(skb
, dst2
);
43 IP6_INC_STATS(net
, ip6_dst_idev(dst
), IPSTATS_MIB_OUTNOROUTES
);
44 LIMIT_NETDEBUG(KERN_DEBUG
"ip6_route_me_harder: No more route.\n");
52 skb_dst_set(skb
, dst
);
55 EXPORT_SYMBOL(ip6_route_me_harder
);
58 * Extra routing may needed on local out, as the QUEUE target never
59 * returns control to the table.
63 struct in6_addr daddr
;
64 struct in6_addr saddr
;
68 static void nf_ip6_saveroute(const struct sk_buff
*skb
,
69 struct nf_queue_entry
*entry
)
71 struct ip6_rt_info
*rt_info
= nf_queue_entry_reroute(entry
);
73 if (entry
->hook
== NF_INET_LOCAL_OUT
) {
74 struct ipv6hdr
*iph
= ipv6_hdr(skb
);
76 rt_info
->daddr
= iph
->daddr
;
77 rt_info
->saddr
= iph
->saddr
;
78 rt_info
->mark
= skb
->mark
;
82 static int nf_ip6_reroute(struct sk_buff
*skb
,
83 const struct nf_queue_entry
*entry
)
85 struct ip6_rt_info
*rt_info
= nf_queue_entry_reroute(entry
);
87 if (entry
->hook
== NF_INET_LOCAL_OUT
) {
88 struct ipv6hdr
*iph
= ipv6_hdr(skb
);
89 if (!ipv6_addr_equal(&iph
->daddr
, &rt_info
->daddr
) ||
90 !ipv6_addr_equal(&iph
->saddr
, &rt_info
->saddr
) ||
91 skb
->mark
!= rt_info
->mark
)
92 return ip6_route_me_harder(skb
);
97 static int nf_ip6_route(struct dst_entry
**dst
, struct flowi
*fl
)
99 *dst
= ip6_route_output(&init_net
, NULL
, fl
);
100 return (*dst
)->error
;
103 __sum16
nf_ip6_checksum(struct sk_buff
*skb
, unsigned int hook
,
104 unsigned int dataoff
, u_int8_t protocol
)
106 struct ipv6hdr
*ip6h
= ipv6_hdr(skb
);
109 switch (skb
->ip_summed
) {
110 case CHECKSUM_COMPLETE
:
111 if (hook
!= NF_INET_PRE_ROUTING
&& hook
!= NF_INET_LOCAL_IN
)
113 if (!csum_ipv6_magic(&ip6h
->saddr
, &ip6h
->daddr
,
114 skb
->len
- dataoff
, protocol
,
118 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
123 skb
->csum
= ~csum_unfold(
124 csum_ipv6_magic(&ip6h
->saddr
, &ip6h
->daddr
,
130 csum
= __skb_checksum_complete(skb
);
134 EXPORT_SYMBOL(nf_ip6_checksum
);
136 static __sum16
nf_ip6_checksum_partial(struct sk_buff
*skb
, unsigned int hook
,
137 unsigned int dataoff
, unsigned int len
,
140 struct ipv6hdr
*ip6h
= ipv6_hdr(skb
);
144 switch (skb
->ip_summed
) {
145 case CHECKSUM_COMPLETE
:
146 if (len
== skb
->len
- dataoff
)
147 return nf_ip6_checksum(skb
, hook
, dataoff
, protocol
);
150 hsum
= skb_checksum(skb
, 0, dataoff
, 0);
151 skb
->csum
= ~csum_unfold(csum_ipv6_magic(&ip6h
->saddr
,
156 skb
->ip_summed
= CHECKSUM_NONE
;
157 csum
= __skb_checksum_complete_head(skb
, dataoff
+ len
);
159 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
164 static const struct nf_afinfo nf_ip6_afinfo
= {
166 .checksum
= nf_ip6_checksum
,
167 .checksum_partial
= nf_ip6_checksum_partial
,
168 .route
= nf_ip6_route
,
169 .saveroute
= nf_ip6_saveroute
,
170 .reroute
= nf_ip6_reroute
,
171 .route_key_size
= sizeof(struct ip6_rt_info
),
174 int __init
ipv6_netfilter_init(void)
176 return nf_register_afinfo(&nf_ip6_afinfo
);
179 /* This can be called from inet6_init() on errors, so it cannot
180 * be marked __exit. -DaveM
182 void ipv6_netfilter_fini(void)
184 nf_unregister_afinfo(&nf_ip6_afinfo
);