]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv6/netfilter.c
[NETFILTER]: ip6_queue: resync dev-index based flushing
[net-next-2.6.git] / net / ipv6 / netfilter.c
CommitLineData
020b4c12 1#include <linux/kernel.h>
bb94aa16 2#include <linux/init.h>
020b4c12 3#include <linux/ipv6.h>
2cc7d573
HW
4#include <linux/netfilter.h>
5#include <linux/netfilter_ipv6.h>
020b4c12
HW
6#include <net/dst.h>
7#include <net/ipv6.h>
8#include <net/ip6_route.h>
3e3850e9 9#include <net/xfrm.h>
503e4faa 10#include <net/ip6_checksum.h>
c01cd429 11#include <net/netfilter/nf_queue.h>
020b4c12
HW
12
13int ip6_route_me_harder(struct sk_buff *skb)
14{
0660e03f 15 struct ipv6hdr *iph = ipv6_hdr(skb);
020b4c12
HW
16 struct dst_entry *dst;
17 struct flowi fl = {
18 .oif = skb->sk ? skb->sk->sk_bound_dev_if : 0,
bc5f7743 19 .mark = skb->mark,
020b4c12
HW
20 .nl_u =
21 { .ip6_u =
22 { .daddr = iph->daddr,
23 .saddr = iph->saddr, } },
020b4c12
HW
24 };
25
26 dst = ip6_route_output(skb->sk, &fl);
27
3e3850e9
PM
28#ifdef CONFIG_XFRM
29 if (!(IP6CB(skb)->flags & IP6SKB_XFRM_TRANSFORMED) &&
30 xfrm_decode_session(skb, &fl, AF_INET6) == 0)
31 if (xfrm_lookup(&skb->dst, &fl, skb->sk, 0))
32 return -1;
33#endif
34
020b4c12 35 if (dst->error) {
a11d206d 36 IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
64ce2073 37 LIMIT_NETDEBUG(KERN_DEBUG "ip6_route_me_harder: No more route.\n");
020b4c12
HW
38 dst_release(dst);
39 return -EINVAL;
40 }
41
42 /* Drop old route. */
43 dst_release(skb->dst);
44
45 skb->dst = dst;
46 return 0;
47}
48EXPORT_SYMBOL(ip6_route_me_harder);
49
2cc7d573
HW
50/*
51 * Extra routing may needed on local out, as the QUEUE target never
52 * returns control to the table.
53 */
54
55struct ip6_rt_info {
56 struct in6_addr daddr;
57 struct in6_addr saddr;
58};
59
bce8032e 60static void nf_ip6_saveroute(const struct sk_buff *skb, struct nf_info *info)
2cc7d573
HW
61{
62 struct ip6_rt_info *rt_info = nf_info_reroute(info);
63
6e23ae2a 64 if (info->hook == NF_INET_LOCAL_OUT) {
0660e03f 65 struct ipv6hdr *iph = ipv6_hdr(skb);
2cc7d573
HW
66
67 rt_info->daddr = iph->daddr;
68 rt_info->saddr = iph->saddr;
69 }
70}
71
3db05fea 72static int nf_ip6_reroute(struct sk_buff *skb, const struct nf_info *info)
2cc7d573
HW
73{
74 struct ip6_rt_info *rt_info = nf_info_reroute(info);
75
6e23ae2a 76 if (info->hook == NF_INET_LOCAL_OUT) {
3db05fea 77 struct ipv6hdr *iph = ipv6_hdr(skb);
2cc7d573
HW
78 if (!ipv6_addr_equal(&iph->daddr, &rt_info->daddr) ||
79 !ipv6_addr_equal(&iph->saddr, &rt_info->saddr))
3db05fea 80 return ip6_route_me_harder(skb);
2cc7d573
HW
81 }
82 return 0;
83}
84
1841a4c7
PM
85static int nf_ip6_route(struct dst_entry **dst, struct flowi *fl)
86{
87 *dst = ip6_route_output(NULL, fl);
88 return (*dst)->error;
89}
90
b51655b9 91__sum16 nf_ip6_checksum(struct sk_buff *skb, unsigned int hook,
422c346f
PM
92 unsigned int dataoff, u_int8_t protocol)
93{
0660e03f 94 struct ipv6hdr *ip6h = ipv6_hdr(skb);
b51655b9 95 __sum16 csum = 0;
422c346f
PM
96
97 switch (skb->ip_summed) {
84fa7933 98 case CHECKSUM_COMPLETE:
6e23ae2a 99 if (hook != NF_INET_PRE_ROUTING && hook != NF_INET_LOCAL_IN)
422c346f
PM
100 break;
101 if (!csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
1ab1457c 102 skb->len - dataoff, protocol,
422c346f
PM
103 csum_sub(skb->csum,
104 skb_checksum(skb, 0,
105 dataoff, 0)))) {
106 skb->ip_summed = CHECKSUM_UNNECESSARY;
107 break;
108 }
109 /* fall through */
110 case CHECKSUM_NONE:
868c86bc
AV
111 skb->csum = ~csum_unfold(
112 csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
422c346f
PM
113 skb->len - dataoff,
114 protocol,
115 csum_sub(0,
116 skb_checksum(skb, 0,
1ab1457c 117 dataoff, 0))));
422c346f
PM
118 csum = __skb_checksum_complete(skb);
119 }
120 return csum;
121}
122
123EXPORT_SYMBOL(nf_ip6_checksum);
124
bce8032e
PM
125static struct nf_afinfo nf_ip6_afinfo = {
126 .family = AF_INET6,
422c346f 127 .checksum = nf_ip6_checksum,
1841a4c7 128 .route = nf_ip6_route,
bce8032e
PM
129 .saveroute = nf_ip6_saveroute,
130 .reroute = nf_ip6_reroute,
131 .route_key_size = sizeof(struct ip6_rt_info),
2cc7d573
HW
132};
133
134int __init ipv6_netfilter_init(void)
135{
bce8032e 136 return nf_register_afinfo(&nf_ip6_afinfo);
2cc7d573
HW
137}
138
5bf887f2
DM
139/* This can be called from inet6_init() on errors, so it cannot
140 * be marked __exit. -DaveM
141 */
142void ipv6_netfilter_fini(void)
2cc7d573 143{
bce8032e 144 nf_unregister_afinfo(&nf_ip6_afinfo);
2cc7d573 145}