2 * Stateless NAT actions
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
12 #include <linux/errno.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/netfilter.h>
17 #include <linux/rtnetlink.h>
18 #include <linux/skbuff.h>
19 #include <linux/slab.h>
20 #include <linux/spinlock.h>
21 #include <linux/string.h>
22 #include <linux/tc_act/tc_nat.h>
23 #include <net/act_api.h>
26 #include <net/netlink.h>
27 #include <net/tc_act/tc_nat.h>
32 #define NAT_TAB_MASK 15
34 static struct tcf_hashinfo nat_hash_info;
36 static const struct nla_policy nat_policy[TCA_NAT_MAX + 1] = {
37 [TCA_NAT_PARMS] = { .len = sizeof(struct tc_nat) },
40 static int tcf_nat_init(struct net *net, struct nlattr *nla, struct nlattr *est,
41 struct tc_action *a, int ovr, int bind)
43 struct nlattr *tb[TCA_NAT_MAX + 1];
47 struct tcf_common *pc;
52 err = nla_parse_nested(tb, TCA_NAT_MAX, nla, nat_policy);
56 if (tb[TCA_NAT_PARMS] == NULL)
58 parm = nla_data(tb[TCA_NAT_PARMS]);
60 pc = tcf_hash_check(parm->index, a, bind);
62 pc = tcf_hash_create(parm->index, est, a, sizeof(*p), bind);
69 tcf_hash_release(pc, bind, a->ops->hinfo);
75 spin_lock_bh(&p->tcf_lock);
76 p->old_addr = parm->old_addr;
77 p->new_addr = parm->new_addr;
79 p->flags = parm->flags;
81 p->tcf_action = parm->action;
82 spin_unlock_bh(&p->tcf_lock);
84 if (ret == ACT_P_CREATED)
85 tcf_hash_insert(pc, a->ops->hinfo);
90 static int tcf_nat_cleanup(struct tc_action *a, int bind)
92 struct tcf_nat *p = a->priv;
94 return tcf_hash_release(&p->common, bind, &nat_hash_info);
97 static int tcf_nat(struct sk_buff *skb, const struct tc_action *a,
98 struct tcf_result *res)
100 struct tcf_nat *p = a->priv;
111 spin_lock(&p->tcf_lock);
113 p->tcf_tm.lastuse = jiffies;
114 old_addr = p->old_addr;
115 new_addr = p->new_addr;
117 egress = p->flags & TCA_NAT_FLAG_EGRESS;
118 action = p->tcf_action;
120 bstats_update(&p->tcf_bstats, skb);
122 spin_unlock(&p->tcf_lock);
124 if (unlikely(action == TC_ACT_SHOT))
127 noff = skb_network_offset(skb);
128 if (!pskb_may_pull(skb, sizeof(*iph) + noff))
138 if (!((old_addr ^ addr) & mask)) {
139 if (skb_cloned(skb) &&
140 !skb_clone_writable(skb, sizeof(*iph) + noff) &&
141 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
145 new_addr |= addr & ~mask;
147 /* Rewrite IP header */
150 iph->saddr = new_addr;
152 iph->daddr = new_addr;
154 csum_replace4(&iph->check, addr, new_addr);
155 } else if ((iph->frag_off & htons(IP_OFFSET)) ||
156 iph->protocol != IPPROTO_ICMP) {
162 /* It would be nice to share code with stateful NAT. */
163 switch (iph->frag_off & htons(IP_OFFSET) ? 0 : iph->protocol) {
168 if (!pskb_may_pull(skb, ihl + sizeof(*tcph) + noff) ||
170 !skb_clone_writable(skb, ihl + sizeof(*tcph) + noff) &&
171 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
174 tcph = (void *)(skb_network_header(skb) + ihl);
175 inet_proto_csum_replace4(&tcph->check, skb, addr, new_addr, 1);
182 if (!pskb_may_pull(skb, ihl + sizeof(*udph) + noff) ||
184 !skb_clone_writable(skb, ihl + sizeof(*udph) + noff) &&
185 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
188 udph = (void *)(skb_network_header(skb) + ihl);
189 if (udph->check || skb->ip_summed == CHECKSUM_PARTIAL) {
190 inet_proto_csum_replace4(&udph->check, skb, addr,
193 udph->check = CSUM_MANGLED_0;
199 struct icmphdr *icmph;
201 if (!pskb_may_pull(skb, ihl + sizeof(*icmph) + noff))
204 icmph = (void *)(skb_network_header(skb) + ihl);
206 if ((icmph->type != ICMP_DEST_UNREACH) &&
207 (icmph->type != ICMP_TIME_EXCEEDED) &&
208 (icmph->type != ICMP_PARAMETERPROB))
211 if (!pskb_may_pull(skb, ihl + sizeof(*icmph) + sizeof(*iph) +
215 icmph = (void *)(skb_network_header(skb) + ihl);
216 iph = (void *)(icmph + 1);
222 if ((old_addr ^ addr) & mask)
225 if (skb_cloned(skb) &&
226 !skb_clone_writable(skb, ihl + sizeof(*icmph) +
227 sizeof(*iph) + noff) &&
228 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
231 icmph = (void *)(skb_network_header(skb) + ihl);
232 iph = (void *)(icmph + 1);
235 new_addr |= addr & ~mask;
237 /* XXX Fix up the inner checksums. */
239 iph->daddr = new_addr;
241 iph->saddr = new_addr;
243 inet_proto_csum_replace4(&icmph->checksum, skb, addr, new_addr,
255 spin_lock(&p->tcf_lock);
256 p->tcf_qstats.drops++;
257 spin_unlock(&p->tcf_lock);
261 static int tcf_nat_dump(struct sk_buff *skb, struct tc_action *a,
264 unsigned char *b = skb_tail_pointer(skb);
265 struct tcf_nat *p = a->priv;
266 struct tc_nat opt = {
267 .old_addr = p->old_addr,
268 .new_addr = p->new_addr,
272 .index = p->tcf_index,
273 .action = p->tcf_action,
274 .refcnt = p->tcf_refcnt - ref,
275 .bindcnt = p->tcf_bindcnt - bind,
279 if (nla_put(skb, TCA_NAT_PARMS, sizeof(opt), &opt))
280 goto nla_put_failure;
281 t.install = jiffies_to_clock_t(jiffies - p->tcf_tm.install);
282 t.lastuse = jiffies_to_clock_t(jiffies - p->tcf_tm.lastuse);
283 t.expires = jiffies_to_clock_t(p->tcf_tm.expires);
284 if (nla_put(skb, TCA_NAT_TM, sizeof(t), &t))
285 goto nla_put_failure;
294 static struct tc_action_ops act_nat_ops = {
296 .hinfo = &nat_hash_info,
298 .owner = THIS_MODULE,
300 .dump = tcf_nat_dump,
301 .cleanup = tcf_nat_cleanup,
302 .init = tcf_nat_init,
305 MODULE_DESCRIPTION("Stateless NAT actions");
306 MODULE_LICENSE("GPL");
308 static int __init nat_init_module(void)
310 int err = tcf_hashinfo_init(&nat_hash_info, NAT_TAB_MASK);
313 return tcf_register_action(&act_nat_ops);
316 static void __exit nat_cleanup_module(void)
318 tcf_unregister_action(&act_nat_ops);
319 tcf_hashinfo_destroy(&nat_hash_info);
322 module_init(nat_init_module);
323 module_exit(nat_cleanup_module);