4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/module.h>
10 #include <linux/skbuff.h>
11 #include <linux/ipv6.h>
13 #include <linux/netfilter.h>
14 #include <linux/netfilter_ipv6.h>
15 #include <linux/netfilter_ipv6/ip6t_NPT.h>
16 #include <linux/netfilter/x_tables.h>
18 static int ip6t_npt_checkentry(const struct xt_tgchk_param *par)
20 struct ip6t_npt_tginfo *npt = par->targinfo;
22 __wsum src_sum, dst_sum;
24 if (npt->src_pfx_len > 64 || npt->dst_pfx_len > 64)
27 /* Ensure that LSB of prefix is zero */
28 ipv6_addr_prefix(&pfx, &npt->src_pfx.in6, npt->src_pfx_len);
29 if (!ipv6_addr_equal(&pfx, &npt->src_pfx.in6))
31 ipv6_addr_prefix(&pfx, &npt->dst_pfx.in6, npt->dst_pfx_len);
32 if (!ipv6_addr_equal(&pfx, &npt->dst_pfx.in6))
35 src_sum = csum_partial(&npt->src_pfx.in6, sizeof(npt->src_pfx.in6), 0);
36 dst_sum = csum_partial(&npt->dst_pfx.in6, sizeof(npt->dst_pfx.in6), 0);
38 npt->adjustment = ~csum_fold(csum_sub(src_sum, dst_sum));
42 static bool ip6t_npt_map_pfx(const struct ip6t_npt_tginfo *npt,
43 struct in6_addr *addr)
50 pfx_len = max(npt->src_pfx_len, npt->dst_pfx_len);
51 for (i = 0; i < pfx_len; i += 32) {
52 if (pfx_len - i >= 32)
55 mask = htonl((1 << (i - pfx_len + 32)) - 1);
58 addr->s6_addr32[idx] &= mask;
59 addr->s6_addr32[idx] |= ~mask & npt->dst_pfx.in6.s6_addr32[idx];
65 for (idx = 4; idx < ARRAY_SIZE(addr->s6_addr16); idx++) {
66 if ((__force __sum16)addr->s6_addr16[idx] !=
70 if (idx == ARRAY_SIZE(addr->s6_addr16))
74 sum = ~csum_fold(csum_add(csum_unfold((__force __sum16)addr->s6_addr16[idx]),
75 csum_unfold(npt->adjustment)));
76 if (sum == CSUM_MANGLED_0)
78 *(__force __sum16 *)&addr->s6_addr16[idx] = sum;
84 ip6t_snpt_tg(struct sk_buff *skb, const struct xt_action_param *par)
86 const struct ip6t_npt_tginfo *npt = par->targinfo;
88 if (!ip6t_npt_map_pfx(npt, &ipv6_hdr(skb)->saddr)) {
89 icmpv6_send(skb, ICMPV6_PARAMPROB, ICMPV6_HDR_FIELD,
90 offsetof(struct ipv6hdr, saddr));
97 ip6t_dnpt_tg(struct sk_buff *skb, const struct xt_action_param *par)
99 const struct ip6t_npt_tginfo *npt = par->targinfo;
101 if (!ip6t_npt_map_pfx(npt, &ipv6_hdr(skb)->daddr)) {
102 icmpv6_send(skb, ICMPV6_PARAMPROB, ICMPV6_HDR_FIELD,
103 offsetof(struct ipv6hdr, daddr));
109 static struct xt_target ip6t_npt_target_reg[] __read_mostly = {
113 .target = ip6t_snpt_tg,
114 .targetsize = sizeof(struct ip6t_npt_tginfo),
115 .usersize = offsetof(struct ip6t_npt_tginfo, adjustment),
116 .checkentry = ip6t_npt_checkentry,
117 .family = NFPROTO_IPV6,
118 .hooks = (1 << NF_INET_LOCAL_IN) |
119 (1 << NF_INET_POST_ROUTING),
125 .target = ip6t_dnpt_tg,
126 .targetsize = sizeof(struct ip6t_npt_tginfo),
127 .usersize = offsetof(struct ip6t_npt_tginfo, adjustment),
128 .checkentry = ip6t_npt_checkentry,
129 .family = NFPROTO_IPV6,
130 .hooks = (1 << NF_INET_PRE_ROUTING) |
131 (1 << NF_INET_LOCAL_OUT),
136 static int __init ip6t_npt_init(void)
138 return xt_register_targets(ip6t_npt_target_reg,
139 ARRAY_SIZE(ip6t_npt_target_reg));
142 static void __exit ip6t_npt_exit(void)
144 xt_unregister_targets(ip6t_npt_target_reg,
145 ARRAY_SIZE(ip6t_npt_target_reg));
148 module_init(ip6t_npt_init);
149 module_exit(ip6t_npt_exit);
151 MODULE_LICENSE("GPL");
152 MODULE_DESCRIPTION("IPv6-to-IPv6 Network Prefix Translation (RFC 6296)");
154 MODULE_ALIAS("ip6t_SNPT");
155 MODULE_ALIAS("ip6t_DNPT");