]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv6/netfilter.c
[NETFILTER]: nf_nat: add UDP-Lite support
[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
4591db4f 26 dst = ip6_route_output(&init_net, skb->sk, &fl);
020b4c12 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
02f014d8
PM
60static void nf_ip6_saveroute(const struct sk_buff *skb,
61 struct nf_queue_entry *entry)
2cc7d573 62{
02f014d8 63 struct ip6_rt_info *rt_info = nf_queue_entry_reroute(entry);
2cc7d573 64
02f014d8 65 if (entry->hook == NF_INET_LOCAL_OUT) {
0660e03f 66 struct ipv6hdr *iph = ipv6_hdr(skb);
2cc7d573
HW
67
68 rt_info->daddr = iph->daddr;
69 rt_info->saddr = iph->saddr;
70 }
71}
72
02f014d8
PM
73static int nf_ip6_reroute(struct sk_buff *skb,
74 const struct nf_queue_entry *entry)
2cc7d573 75{
02f014d8 76 struct ip6_rt_info *rt_info = nf_queue_entry_reroute(entry);
2cc7d573 77
02f014d8 78 if (entry->hook == NF_INET_LOCAL_OUT) {
3db05fea 79 struct ipv6hdr *iph = ipv6_hdr(skb);
2cc7d573
HW
80 if (!ipv6_addr_equal(&iph->daddr, &rt_info->daddr) ||
81 !ipv6_addr_equal(&iph->saddr, &rt_info->saddr))
3db05fea 82 return ip6_route_me_harder(skb);
2cc7d573
HW
83 }
84 return 0;
85}
86
1841a4c7
PM
87static int nf_ip6_route(struct dst_entry **dst, struct flowi *fl)
88{
4591db4f 89 *dst = ip6_route_output(&init_net, NULL, fl);
1841a4c7
PM
90 return (*dst)->error;
91}
92
b51655b9 93__sum16 nf_ip6_checksum(struct sk_buff *skb, unsigned int hook,
422c346f
PM
94 unsigned int dataoff, u_int8_t protocol)
95{
0660e03f 96 struct ipv6hdr *ip6h = ipv6_hdr(skb);
b51655b9 97 __sum16 csum = 0;
422c346f
PM
98
99 switch (skb->ip_summed) {
84fa7933 100 case CHECKSUM_COMPLETE:
6e23ae2a 101 if (hook != NF_INET_PRE_ROUTING && hook != NF_INET_LOCAL_IN)
422c346f
PM
102 break;
103 if (!csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
1ab1457c 104 skb->len - dataoff, protocol,
422c346f
PM
105 csum_sub(skb->csum,
106 skb_checksum(skb, 0,
107 dataoff, 0)))) {
108 skb->ip_summed = CHECKSUM_UNNECESSARY;
109 break;
110 }
111 /* fall through */
112 case CHECKSUM_NONE:
868c86bc
AV
113 skb->csum = ~csum_unfold(
114 csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
422c346f
PM
115 skb->len - dataoff,
116 protocol,
117 csum_sub(0,
118 skb_checksum(skb, 0,
1ab1457c 119 dataoff, 0))));
422c346f
PM
120 csum = __skb_checksum_complete(skb);
121 }
122 return csum;
123}
124
125EXPORT_SYMBOL(nf_ip6_checksum);
126
1e796fda 127static const struct nf_afinfo nf_ip6_afinfo = {
bce8032e 128 .family = AF_INET6,
422c346f 129 .checksum = nf_ip6_checksum,
1841a4c7 130 .route = nf_ip6_route,
bce8032e
PM
131 .saveroute = nf_ip6_saveroute,
132 .reroute = nf_ip6_reroute,
133 .route_key_size = sizeof(struct ip6_rt_info),
2cc7d573
HW
134};
135
136int __init ipv6_netfilter_init(void)
137{
bce8032e 138 return nf_register_afinfo(&nf_ip6_afinfo);
2cc7d573
HW
139}
140
5bf887f2
DM
141/* This can be called from inet6_init() on errors, so it cannot
142 * be marked __exit. -DaveM
143 */
144void ipv6_netfilter_fini(void)
2cc7d573 145{
bce8032e 146 nf_unregister_afinfo(&nf_ip6_afinfo);
2cc7d573 147}