blob: f6294e5bcb3175e84bbdbe6c28fb05017fc10413 [file] [log] [blame]
Harald Welte020b4c12005-08-09 19:39:00 -07001#include <linux/kernel.h>
Patrick McHardybb94aa12006-01-09 16:43:13 -08002#include <linux/init.h>
Harald Welte020b4c12005-08-09 19:39:00 -07003#include <linux/ipv6.h>
Harald Welte2cc7d572005-08-09 19:42:34 -07004#include <linux/netfilter.h>
5#include <linux/netfilter_ipv6.h>
Harald Welte020b4c12005-08-09 19:39:00 -07006#include <net/dst.h>
7#include <net/ipv6.h>
8#include <net/ip6_route.h>
Patrick McHardy3e3850e2006-01-06 23:04:54 -08009#include <net/xfrm.h>
Brian Haley503e4fa2006-04-07 15:00:06 -070010#include <net/ip6_checksum.h>
Harald Welte020b4c12005-08-09 19:39:00 -070011
12int ip6_route_me_harder(struct sk_buff *skb)
13{
14 struct ipv6hdr *iph = skb->nh.ipv6h;
15 struct dst_entry *dst;
16 struct flowi fl = {
17 .oif = skb->sk ? skb->sk->sk_bound_dev_if : 0,
18 .nl_u =
19 { .ip6_u =
20 { .daddr = iph->daddr,
21 .saddr = iph->saddr, } },
Harald Welte020b4c12005-08-09 19:39:00 -070022 };
23
24 dst = ip6_route_output(skb->sk, &fl);
25
Patrick McHardy3e3850e2006-01-06 23:04:54 -080026#ifdef CONFIG_XFRM
27 if (!(IP6CB(skb)->flags & IP6SKB_XFRM_TRANSFORMED) &&
28 xfrm_decode_session(skb, &fl, AF_INET6) == 0)
29 if (xfrm_lookup(&skb->dst, &fl, skb->sk, 0))
30 return -1;
31#endif
32
Harald Welte020b4c12005-08-09 19:39:00 -070033 if (dst->error) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +090034 IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
Patrick McHardy64ce2072005-08-09 20:50:53 -070035 LIMIT_NETDEBUG(KERN_DEBUG "ip6_route_me_harder: No more route.\n");
Harald Welte020b4c12005-08-09 19:39:00 -070036 dst_release(dst);
37 return -EINVAL;
38 }
39
40 /* Drop old route. */
41 dst_release(skb->dst);
42
43 skb->dst = dst;
44 return 0;
45}
46EXPORT_SYMBOL(ip6_route_me_harder);
47
Harald Welte2cc7d572005-08-09 19:42:34 -070048/*
49 * Extra routing may needed on local out, as the QUEUE target never
50 * returns control to the table.
51 */
52
53struct ip6_rt_info {
54 struct in6_addr daddr;
55 struct in6_addr saddr;
56};
57
Patrick McHardybce80322006-04-06 14:18:09 -070058static void nf_ip6_saveroute(const struct sk_buff *skb, struct nf_info *info)
Harald Welte2cc7d572005-08-09 19:42:34 -070059{
60 struct ip6_rt_info *rt_info = nf_info_reroute(info);
61
62 if (info->hook == NF_IP6_LOCAL_OUT) {
63 struct ipv6hdr *iph = skb->nh.ipv6h;
64
65 rt_info->daddr = iph->daddr;
66 rt_info->saddr = iph->saddr;
67 }
68}
69
Patrick McHardybce80322006-04-06 14:18:09 -070070static int nf_ip6_reroute(struct sk_buff **pskb, const struct nf_info *info)
Harald Welte2cc7d572005-08-09 19:42:34 -070071{
72 struct ip6_rt_info *rt_info = nf_info_reroute(info);
73
74 if (info->hook == NF_IP6_LOCAL_OUT) {
75 struct ipv6hdr *iph = (*pskb)->nh.ipv6h;
76 if (!ipv6_addr_equal(&iph->daddr, &rt_info->daddr) ||
77 !ipv6_addr_equal(&iph->saddr, &rt_info->saddr))
78 return ip6_route_me_harder(*pskb);
79 }
80 return 0;
81}
82
Al Virob51655b2006-11-14 21:40:42 -080083__sum16 nf_ip6_checksum(struct sk_buff *skb, unsigned int hook,
Patrick McHardy422c3462006-04-06 14:18:43 -070084 unsigned int dataoff, u_int8_t protocol)
85{
86 struct ipv6hdr *ip6h = skb->nh.ipv6h;
Al Virob51655b2006-11-14 21:40:42 -080087 __sum16 csum = 0;
Patrick McHardy422c3462006-04-06 14:18:43 -070088
89 switch (skb->ip_summed) {
Patrick McHardy84fa7932006-08-29 16:44:56 -070090 case CHECKSUM_COMPLETE:
Patrick McHardy422c3462006-04-06 14:18:43 -070091 if (hook != NF_IP6_PRE_ROUTING && hook != NF_IP6_LOCAL_IN)
92 break;
93 if (!csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
94 skb->len - dataoff, protocol,
95 csum_sub(skb->csum,
96 skb_checksum(skb, 0,
97 dataoff, 0)))) {
98 skb->ip_summed = CHECKSUM_UNNECESSARY;
99 break;
100 }
101 /* fall through */
102 case CHECKSUM_NONE:
Al Viro868c86b2006-11-14 21:35:48 -0800103 skb->csum = ~csum_unfold(
104 csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
Patrick McHardy422c3462006-04-06 14:18:43 -0700105 skb->len - dataoff,
106 protocol,
107 csum_sub(0,
108 skb_checksum(skb, 0,
Al Viro868c86b2006-11-14 21:35:48 -0800109 dataoff, 0))));
Patrick McHardy422c3462006-04-06 14:18:43 -0700110 csum = __skb_checksum_complete(skb);
111 }
112 return csum;
113}
114
115EXPORT_SYMBOL(nf_ip6_checksum);
116
Patrick McHardybce80322006-04-06 14:18:09 -0700117static struct nf_afinfo nf_ip6_afinfo = {
118 .family = AF_INET6,
Patrick McHardy422c3462006-04-06 14:18:43 -0700119 .checksum = nf_ip6_checksum,
Patrick McHardybce80322006-04-06 14:18:09 -0700120 .saveroute = nf_ip6_saveroute,
121 .reroute = nf_ip6_reroute,
122 .route_key_size = sizeof(struct ip6_rt_info),
Harald Welte2cc7d572005-08-09 19:42:34 -0700123};
124
125int __init ipv6_netfilter_init(void)
126{
Patrick McHardybce80322006-04-06 14:18:09 -0700127 return nf_register_afinfo(&nf_ip6_afinfo);
Harald Welte2cc7d572005-08-09 19:42:34 -0700128}
129
David S. Miller5bf887f2006-01-10 21:02:21 -0800130/* This can be called from inet6_init() on errors, so it cannot
131 * be marked __exit. -DaveM
132 */
133void ipv6_netfilter_fini(void)
Harald Welte2cc7d572005-08-09 19:42:34 -0700134{
Patrick McHardybce80322006-04-06 14:18:09 -0700135 nf_unregister_afinfo(&nf_ip6_afinfo);
Harald Welte2cc7d572005-08-09 19:42:34 -0700136}