blob: 409fe7181c5fdaead8b868afaa769134f0d8bed1 [file] [log] [blame]
Herbert Xub4219952007-09-27 12:48:05 -07001/*
2 * Stateless NAT actions
3 *
4 * Copyright (c) 2007 Herbert Xu <herbert@gondor.apana.org.au>
5 *
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)
9 * any later version.
10 */
11
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>
24#include <net/icmp.h>
25#include <net/ip.h>
26#include <net/netlink.h>
27#include <net/tc_act/tc_nat.h>
28#include <net/tcp.h>
29#include <net/udp.h>
30
31
32#define NAT_TAB_MASK 15
Herbert Xub4219952007-09-27 12:48:05 -070033static u32 nat_idx_gen;
Herbert Xub4219952007-09-27 12:48:05 -070034
WANG Cong369ba562013-12-15 20:15:08 -080035static struct tcf_hashinfo nat_hash_info;
Herbert Xub4219952007-09-27 12:48:05 -070036
Patrick McHardy53b2bf32008-01-23 20:36:30 -080037static const struct nla_policy nat_policy[TCA_NAT_MAX + 1] = {
38 [TCA_NAT_PARMS] = { .len = sizeof(struct tc_nat) },
39};
40
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000041static int tcf_nat_init(struct net *net, struct nlattr *nla, struct nlattr *est,
Herbert Xub4219952007-09-27 12:48:05 -070042 struct tc_action *a, int ovr, int bind)
43{
Patrick McHardy7ba699c2008-01-22 22:11:50 -080044 struct nlattr *tb[TCA_NAT_MAX + 1];
Herbert Xub4219952007-09-27 12:48:05 -070045 struct tc_nat *parm;
Patrick McHardycee63722008-01-23 20:33:32 -080046 int ret = 0, err;
Herbert Xub4219952007-09-27 12:48:05 -070047 struct tcf_nat *p;
48 struct tcf_common *pc;
49
Patrick McHardycee63722008-01-23 20:33:32 -080050 if (nla == NULL)
Herbert Xub4219952007-09-27 12:48:05 -070051 return -EINVAL;
52
Patrick McHardy53b2bf32008-01-23 20:36:30 -080053 err = nla_parse_nested(tb, TCA_NAT_MAX, nla, nat_policy);
Patrick McHardycee63722008-01-23 20:33:32 -080054 if (err < 0)
55 return err;
56
Patrick McHardy53b2bf32008-01-23 20:36:30 -080057 if (tb[TCA_NAT_PARMS] == NULL)
Herbert Xub4219952007-09-27 12:48:05 -070058 return -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -080059 parm = nla_data(tb[TCA_NAT_PARMS]);
Herbert Xub4219952007-09-27 12:48:05 -070060
61 pc = tcf_hash_check(parm->index, a, bind, &nat_hash_info);
62 if (!pc) {
63 pc = tcf_hash_create(parm->index, est, a, sizeof(*p), bind,
64 &nat_idx_gen, &nat_hash_info);
Stephen Hemminger0e991ec2008-11-25 21:12:32 -080065 if (IS_ERR(pc))
Eric Dumazetcc7ec452011-01-19 19:26:56 +000066 return PTR_ERR(pc);
Herbert Xub4219952007-09-27 12:48:05 -070067 p = to_tcf_nat(pc);
68 ret = ACT_P_CREATED;
69 } else {
70 p = to_tcf_nat(pc);
71 if (!ovr) {
72 tcf_hash_release(pc, bind, &nat_hash_info);
73 return -EEXIST;
74 }
75 }
76
77 spin_lock_bh(&p->tcf_lock);
78 p->old_addr = parm->old_addr;
79 p->new_addr = parm->new_addr;
80 p->mask = parm->mask;
81 p->flags = parm->flags;
82
83 p->tcf_action = parm->action;
84 spin_unlock_bh(&p->tcf_lock);
85
86 if (ret == ACT_P_CREATED)
87 tcf_hash_insert(pc, &nat_hash_info);
88
89 return ret;
90}
91
92static int tcf_nat_cleanup(struct tc_action *a, int bind)
93{
94 struct tcf_nat *p = a->priv;
95
96 return tcf_hash_release(&p->common, bind, &nat_hash_info);
97}
98
Eric Dumazetdc7f9f62011-07-05 23:25:42 +000099static int tcf_nat(struct sk_buff *skb, const struct tc_action *a,
Herbert Xub4219952007-09-27 12:48:05 -0700100 struct tcf_result *res)
101{
102 struct tcf_nat *p = a->priv;
103 struct iphdr *iph;
104 __be32 old_addr;
105 __be32 new_addr;
106 __be32 mask;
107 __be32 addr;
108 int egress;
109 int action;
110 int ihl;
Changli Gao36d12692010-08-03 17:39:18 +0000111 int noff;
Herbert Xub4219952007-09-27 12:48:05 -0700112
113 spin_lock(&p->tcf_lock);
114
115 p->tcf_tm.lastuse = jiffies;
116 old_addr = p->old_addr;
117 new_addr = p->new_addr;
118 mask = p->mask;
119 egress = p->flags & TCA_NAT_FLAG_EGRESS;
120 action = p->tcf_action;
121
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000122 bstats_update(&p->tcf_bstats, skb);
Herbert Xub4219952007-09-27 12:48:05 -0700123
124 spin_unlock(&p->tcf_lock);
125
126 if (unlikely(action == TC_ACT_SHOT))
127 goto drop;
128
Changli Gao36d12692010-08-03 17:39:18 +0000129 noff = skb_network_offset(skb);
130 if (!pskb_may_pull(skb, sizeof(*iph) + noff))
Herbert Xub4219952007-09-27 12:48:05 -0700131 goto drop;
132
133 iph = ip_hdr(skb);
134
135 if (egress)
136 addr = iph->saddr;
137 else
138 addr = iph->daddr;
139
140 if (!((old_addr ^ addr) & mask)) {
141 if (skb_cloned(skb) &&
Changli Gao36d12692010-08-03 17:39:18 +0000142 !skb_clone_writable(skb, sizeof(*iph) + noff) &&
Herbert Xub4219952007-09-27 12:48:05 -0700143 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
144 goto drop;
145
146 new_addr &= mask;
147 new_addr |= addr & ~mask;
148
149 /* Rewrite IP header */
150 iph = ip_hdr(skb);
151 if (egress)
152 iph->saddr = new_addr;
153 else
154 iph->daddr = new_addr;
155
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100156 csum_replace4(&iph->check, addr, new_addr);
Changli Gao33c29dd2010-05-29 14:26:59 +0000157 } else if ((iph->frag_off & htons(IP_OFFSET)) ||
158 iph->protocol != IPPROTO_ICMP) {
159 goto out;
Herbert Xub4219952007-09-27 12:48:05 -0700160 }
161
162 ihl = iph->ihl * 4;
163
164 /* It would be nice to share code with stateful NAT. */
165 switch (iph->frag_off & htons(IP_OFFSET) ? 0 : iph->protocol) {
166 case IPPROTO_TCP:
167 {
168 struct tcphdr *tcph;
169
Changli Gao36d12692010-08-03 17:39:18 +0000170 if (!pskb_may_pull(skb, ihl + sizeof(*tcph) + noff) ||
Herbert Xub4219952007-09-27 12:48:05 -0700171 (skb_cloned(skb) &&
Changli Gao36d12692010-08-03 17:39:18 +0000172 !skb_clone_writable(skb, ihl + sizeof(*tcph) + noff) &&
Herbert Xub4219952007-09-27 12:48:05 -0700173 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
174 goto drop;
175
176 tcph = (void *)(skb_network_header(skb) + ihl);
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100177 inet_proto_csum_replace4(&tcph->check, skb, addr, new_addr, 1);
Herbert Xub4219952007-09-27 12:48:05 -0700178 break;
179 }
180 case IPPROTO_UDP:
181 {
182 struct udphdr *udph;
183
Changli Gao36d12692010-08-03 17:39:18 +0000184 if (!pskb_may_pull(skb, ihl + sizeof(*udph) + noff) ||
Herbert Xub4219952007-09-27 12:48:05 -0700185 (skb_cloned(skb) &&
Changli Gao36d12692010-08-03 17:39:18 +0000186 !skb_clone_writable(skb, ihl + sizeof(*udph) + noff) &&
Herbert Xub4219952007-09-27 12:48:05 -0700187 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
188 goto drop;
189
190 udph = (void *)(skb_network_header(skb) + ihl);
191 if (udph->check || skb->ip_summed == CHECKSUM_PARTIAL) {
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100192 inet_proto_csum_replace4(&udph->check, skb, addr,
193 new_addr, 1);
Herbert Xub4219952007-09-27 12:48:05 -0700194 if (!udph->check)
195 udph->check = CSUM_MANGLED_0;
196 }
197 break;
198 }
199 case IPPROTO_ICMP:
200 {
201 struct icmphdr *icmph;
202
Changli Gao36d12692010-08-03 17:39:18 +0000203 if (!pskb_may_pull(skb, ihl + sizeof(*icmph) + noff))
Herbert Xub4219952007-09-27 12:48:05 -0700204 goto drop;
205
206 icmph = (void *)(skb_network_header(skb) + ihl);
207
208 if ((icmph->type != ICMP_DEST_UNREACH) &&
209 (icmph->type != ICMP_TIME_EXCEEDED) &&
210 (icmph->type != ICMP_PARAMETERPROB))
211 break;
212
Changli Gao36d12692010-08-03 17:39:18 +0000213 if (!pskb_may_pull(skb, ihl + sizeof(*icmph) + sizeof(*iph) +
214 noff))
Changli Gao70c2efa2010-07-09 15:33:25 +0000215 goto drop;
216
Changli Gao072d79a2010-07-29 13:41:46 +0000217 icmph = (void *)(skb_network_header(skb) + ihl);
Herbert Xub4219952007-09-27 12:48:05 -0700218 iph = (void *)(icmph + 1);
219 if (egress)
220 addr = iph->daddr;
221 else
222 addr = iph->saddr;
223
224 if ((old_addr ^ addr) & mask)
225 break;
226
227 if (skb_cloned(skb) &&
Changli Gao36d12692010-08-03 17:39:18 +0000228 !skb_clone_writable(skb, ihl + sizeof(*icmph) +
229 sizeof(*iph) + noff) &&
Herbert Xub4219952007-09-27 12:48:05 -0700230 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
231 goto drop;
232
233 icmph = (void *)(skb_network_header(skb) + ihl);
234 iph = (void *)(icmph + 1);
235
236 new_addr &= mask;
237 new_addr |= addr & ~mask;
238
239 /* XXX Fix up the inner checksums. */
240 if (egress)
241 iph->daddr = new_addr;
242 else
243 iph->saddr = new_addr;
244
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100245 inet_proto_csum_replace4(&icmph->checksum, skb, addr, new_addr,
Changli Gao3a3dfb02010-07-29 14:04:18 +0000246 0);
Herbert Xub4219952007-09-27 12:48:05 -0700247 break;
248 }
249 default:
250 break;
251 }
252
Changli Gao33c29dd2010-05-29 14:26:59 +0000253out:
Herbert Xub4219952007-09-27 12:48:05 -0700254 return action;
255
256drop:
257 spin_lock(&p->tcf_lock);
258 p->tcf_qstats.drops++;
259 spin_unlock(&p->tcf_lock);
260 return TC_ACT_SHOT;
261}
262
263static int tcf_nat_dump(struct sk_buff *skb, struct tc_action *a,
264 int bind, int ref)
265{
266 unsigned char *b = skb_tail_pointer(skb);
267 struct tcf_nat *p = a->priv;
Eric Dumazet1c40be12010-08-16 20:04:22 +0000268 struct tc_nat opt = {
269 .old_addr = p->old_addr,
270 .new_addr = p->new_addr,
271 .mask = p->mask,
272 .flags = p->flags,
273
274 .index = p->tcf_index,
275 .action = p->tcf_action,
276 .refcnt = p->tcf_refcnt - ref,
277 .bindcnt = p->tcf_bindcnt - bind,
278 };
Herbert Xub4219952007-09-27 12:48:05 -0700279 struct tcf_t t;
Herbert Xub4219952007-09-27 12:48:05 -0700280
David S. Miller1b34ec42012-03-29 05:11:39 -0400281 if (nla_put(skb, TCA_NAT_PARMS, sizeof(opt), &opt))
282 goto nla_put_failure;
Herbert Xub4219952007-09-27 12:48:05 -0700283 t.install = jiffies_to_clock_t(jiffies - p->tcf_tm.install);
284 t.lastuse = jiffies_to_clock_t(jiffies - p->tcf_tm.lastuse);
285 t.expires = jiffies_to_clock_t(p->tcf_tm.expires);
David S. Miller1b34ec42012-03-29 05:11:39 -0400286 if (nla_put(skb, TCA_NAT_TM, sizeof(t), &t))
287 goto nla_put_failure;
Herbert Xub4219952007-09-27 12:48:05 -0700288
Herbert Xub4219952007-09-27 12:48:05 -0700289 return skb->len;
290
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800291nla_put_failure:
Herbert Xub4219952007-09-27 12:48:05 -0700292 nlmsg_trim(skb, b);
Herbert Xub4219952007-09-27 12:48:05 -0700293 return -1;
294}
295
296static struct tc_action_ops act_nat_ops = {
297 .kind = "nat",
298 .hinfo = &nat_hash_info,
299 .type = TCA_ACT_NAT,
300 .capab = TCA_CAP_NONE,
301 .owner = THIS_MODULE,
302 .act = tcf_nat,
303 .dump = tcf_nat_dump,
304 .cleanup = tcf_nat_cleanup,
Herbert Xub4219952007-09-27 12:48:05 -0700305 .init = tcf_nat_init,
Herbert Xub4219952007-09-27 12:48:05 -0700306};
307
308MODULE_DESCRIPTION("Stateless NAT actions");
309MODULE_LICENSE("GPL");
310
311static int __init nat_init_module(void)
312{
WANG Cong369ba562013-12-15 20:15:08 -0800313 int err = tcf_hashinfo_init(&nat_hash_info, NAT_TAB_MASK+1);
314 if (err)
315 return err;
Herbert Xub4219952007-09-27 12:48:05 -0700316 return tcf_register_action(&act_nat_ops);
317}
318
319static void __exit nat_cleanup_module(void)
320{
321 tcf_unregister_action(&act_nat_ops);
WANG Cong369ba562013-12-15 20:15:08 -0800322 tcf_hashinfo_destroy(&nat_hash_info);
Herbert Xub4219952007-09-27 12:48:05 -0700323}
324
325module_init(nat_init_module);
326module_exit(nat_cleanup_module);