blob: 270a030d5fd099ee7b6f6d74d51b6015aa690647 [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 -070033
Patrick McHardy53b2bf32008-01-23 20:36:30 -080034static const struct nla_policy nat_policy[TCA_NAT_MAX + 1] = {
35 [TCA_NAT_PARMS] = { .len = sizeof(struct tc_nat) },
36};
37
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000038static int tcf_nat_init(struct net *net, struct nlattr *nla, struct nlattr *est,
Herbert Xub4219952007-09-27 12:48:05 -070039 struct tc_action *a, int ovr, int bind)
40{
Patrick McHardy7ba699c2008-01-22 22:11:50 -080041 struct nlattr *tb[TCA_NAT_MAX + 1];
Herbert Xub4219952007-09-27 12:48:05 -070042 struct tc_nat *parm;
Patrick McHardycee63722008-01-23 20:33:32 -080043 int ret = 0, err;
Herbert Xub4219952007-09-27 12:48:05 -070044 struct tcf_nat *p;
Herbert Xub4219952007-09-27 12:48:05 -070045
Patrick McHardycee63722008-01-23 20:33:32 -080046 if (nla == NULL)
Herbert Xub4219952007-09-27 12:48:05 -070047 return -EINVAL;
48
Patrick McHardy53b2bf32008-01-23 20:36:30 -080049 err = nla_parse_nested(tb, TCA_NAT_MAX, nla, nat_policy);
Patrick McHardycee63722008-01-23 20:33:32 -080050 if (err < 0)
51 return err;
52
Patrick McHardy53b2bf32008-01-23 20:36:30 -080053 if (tb[TCA_NAT_PARMS] == NULL)
Herbert Xub4219952007-09-27 12:48:05 -070054 return -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -080055 parm = nla_data(tb[TCA_NAT_PARMS]);
Herbert Xub4219952007-09-27 12:48:05 -070056
WANG Cong86062032014-02-11 17:07:31 -080057 if (!tcf_hash_check(parm->index, a, bind)) {
58 ret = tcf_hash_create(parm->index, est, a, sizeof(*p), bind);
59 if (ret)
60 return ret;
Herbert Xub4219952007-09-27 12:48:05 -070061 ret = ACT_P_CREATED;
62 } else {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -050063 if (bind)
64 return 0;
WANG Cong86062032014-02-11 17:07:31 -080065 tcf_hash_release(a, bind);
Jamal Hadi Salim1a293212013-12-23 08:02:11 -050066 if (!ovr)
Herbert Xub4219952007-09-27 12:48:05 -070067 return -EEXIST;
Herbert Xub4219952007-09-27 12:48:05 -070068 }
WANG Cong86062032014-02-11 17:07:31 -080069 p = to_tcf_nat(a);
Herbert Xub4219952007-09-27 12:48:05 -070070
71 spin_lock_bh(&p->tcf_lock);
72 p->old_addr = parm->old_addr;
73 p->new_addr = parm->new_addr;
74 p->mask = parm->mask;
75 p->flags = parm->flags;
76
77 p->tcf_action = parm->action;
78 spin_unlock_bh(&p->tcf_lock);
79
80 if (ret == ACT_P_CREATED)
WANG Cong86062032014-02-11 17:07:31 -080081 tcf_hash_insert(a);
Herbert Xub4219952007-09-27 12:48:05 -070082
83 return ret;
84}
85
Eric Dumazetdc7f9f62011-07-05 23:25:42 +000086static int tcf_nat(struct sk_buff *skb, const struct tc_action *a,
Herbert Xub4219952007-09-27 12:48:05 -070087 struct tcf_result *res)
88{
89 struct tcf_nat *p = a->priv;
90 struct iphdr *iph;
91 __be32 old_addr;
92 __be32 new_addr;
93 __be32 mask;
94 __be32 addr;
95 int egress;
96 int action;
97 int ihl;
Changli Gao36d12692010-08-03 17:39:18 +000098 int noff;
Herbert Xub4219952007-09-27 12:48:05 -070099
100 spin_lock(&p->tcf_lock);
101
102 p->tcf_tm.lastuse = jiffies;
103 old_addr = p->old_addr;
104 new_addr = p->new_addr;
105 mask = p->mask;
106 egress = p->flags & TCA_NAT_FLAG_EGRESS;
107 action = p->tcf_action;
108
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000109 bstats_update(&p->tcf_bstats, skb);
Herbert Xub4219952007-09-27 12:48:05 -0700110
111 spin_unlock(&p->tcf_lock);
112
113 if (unlikely(action == TC_ACT_SHOT))
114 goto drop;
115
Changli Gao36d12692010-08-03 17:39:18 +0000116 noff = skb_network_offset(skb);
117 if (!pskb_may_pull(skb, sizeof(*iph) + noff))
Herbert Xub4219952007-09-27 12:48:05 -0700118 goto drop;
119
120 iph = ip_hdr(skb);
121
122 if (egress)
123 addr = iph->saddr;
124 else
125 addr = iph->daddr;
126
127 if (!((old_addr ^ addr) & mask)) {
128 if (skb_cloned(skb) &&
Changli Gao36d12692010-08-03 17:39:18 +0000129 !skb_clone_writable(skb, sizeof(*iph) + noff) &&
Herbert Xub4219952007-09-27 12:48:05 -0700130 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
131 goto drop;
132
133 new_addr &= mask;
134 new_addr |= addr & ~mask;
135
136 /* Rewrite IP header */
137 iph = ip_hdr(skb);
138 if (egress)
139 iph->saddr = new_addr;
140 else
141 iph->daddr = new_addr;
142
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100143 csum_replace4(&iph->check, addr, new_addr);
Changli Gao33c29dd2010-05-29 14:26:59 +0000144 } else if ((iph->frag_off & htons(IP_OFFSET)) ||
145 iph->protocol != IPPROTO_ICMP) {
146 goto out;
Herbert Xub4219952007-09-27 12:48:05 -0700147 }
148
149 ihl = iph->ihl * 4;
150
151 /* It would be nice to share code with stateful NAT. */
152 switch (iph->frag_off & htons(IP_OFFSET) ? 0 : iph->protocol) {
153 case IPPROTO_TCP:
154 {
155 struct tcphdr *tcph;
156
Changli Gao36d12692010-08-03 17:39:18 +0000157 if (!pskb_may_pull(skb, ihl + sizeof(*tcph) + noff) ||
Herbert Xub4219952007-09-27 12:48:05 -0700158 (skb_cloned(skb) &&
Changli Gao36d12692010-08-03 17:39:18 +0000159 !skb_clone_writable(skb, ihl + sizeof(*tcph) + noff) &&
Herbert Xub4219952007-09-27 12:48:05 -0700160 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
161 goto drop;
162
163 tcph = (void *)(skb_network_header(skb) + ihl);
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100164 inet_proto_csum_replace4(&tcph->check, skb, addr, new_addr, 1);
Herbert Xub4219952007-09-27 12:48:05 -0700165 break;
166 }
167 case IPPROTO_UDP:
168 {
169 struct udphdr *udph;
170
Changli Gao36d12692010-08-03 17:39:18 +0000171 if (!pskb_may_pull(skb, ihl + sizeof(*udph) + noff) ||
Herbert Xub4219952007-09-27 12:48:05 -0700172 (skb_cloned(skb) &&
Changli Gao36d12692010-08-03 17:39:18 +0000173 !skb_clone_writable(skb, ihl + sizeof(*udph) + noff) &&
Herbert Xub4219952007-09-27 12:48:05 -0700174 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
175 goto drop;
176
177 udph = (void *)(skb_network_header(skb) + ihl);
178 if (udph->check || skb->ip_summed == CHECKSUM_PARTIAL) {
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100179 inet_proto_csum_replace4(&udph->check, skb, addr,
180 new_addr, 1);
Herbert Xub4219952007-09-27 12:48:05 -0700181 if (!udph->check)
182 udph->check = CSUM_MANGLED_0;
183 }
184 break;
185 }
186 case IPPROTO_ICMP:
187 {
188 struct icmphdr *icmph;
189
Changli Gao36d12692010-08-03 17:39:18 +0000190 if (!pskb_may_pull(skb, ihl + sizeof(*icmph) + noff))
Herbert Xub4219952007-09-27 12:48:05 -0700191 goto drop;
192
193 icmph = (void *)(skb_network_header(skb) + ihl);
194
195 if ((icmph->type != ICMP_DEST_UNREACH) &&
196 (icmph->type != ICMP_TIME_EXCEEDED) &&
197 (icmph->type != ICMP_PARAMETERPROB))
198 break;
199
Changli Gao36d12692010-08-03 17:39:18 +0000200 if (!pskb_may_pull(skb, ihl + sizeof(*icmph) + sizeof(*iph) +
201 noff))
Changli Gao70c2efa2010-07-09 15:33:25 +0000202 goto drop;
203
Changli Gao072d79a2010-07-29 13:41:46 +0000204 icmph = (void *)(skb_network_header(skb) + ihl);
Herbert Xub4219952007-09-27 12:48:05 -0700205 iph = (void *)(icmph + 1);
206 if (egress)
207 addr = iph->daddr;
208 else
209 addr = iph->saddr;
210
211 if ((old_addr ^ addr) & mask)
212 break;
213
214 if (skb_cloned(skb) &&
Changli Gao36d12692010-08-03 17:39:18 +0000215 !skb_clone_writable(skb, ihl + sizeof(*icmph) +
216 sizeof(*iph) + noff) &&
Herbert Xub4219952007-09-27 12:48:05 -0700217 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
218 goto drop;
219
220 icmph = (void *)(skb_network_header(skb) + ihl);
221 iph = (void *)(icmph + 1);
222
223 new_addr &= mask;
224 new_addr |= addr & ~mask;
225
226 /* XXX Fix up the inner checksums. */
227 if (egress)
228 iph->daddr = new_addr;
229 else
230 iph->saddr = new_addr;
231
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100232 inet_proto_csum_replace4(&icmph->checksum, skb, addr, new_addr,
Changli Gao3a3dfb02010-07-29 14:04:18 +0000233 0);
Herbert Xub4219952007-09-27 12:48:05 -0700234 break;
235 }
236 default:
237 break;
238 }
239
Changli Gao33c29dd2010-05-29 14:26:59 +0000240out:
Herbert Xub4219952007-09-27 12:48:05 -0700241 return action;
242
243drop:
244 spin_lock(&p->tcf_lock);
245 p->tcf_qstats.drops++;
246 spin_unlock(&p->tcf_lock);
247 return TC_ACT_SHOT;
248}
249
250static int tcf_nat_dump(struct sk_buff *skb, struct tc_action *a,
251 int bind, int ref)
252{
253 unsigned char *b = skb_tail_pointer(skb);
254 struct tcf_nat *p = a->priv;
Eric Dumazet1c40be12010-08-16 20:04:22 +0000255 struct tc_nat opt = {
256 .old_addr = p->old_addr,
257 .new_addr = p->new_addr,
258 .mask = p->mask,
259 .flags = p->flags,
260
261 .index = p->tcf_index,
262 .action = p->tcf_action,
263 .refcnt = p->tcf_refcnt - ref,
264 .bindcnt = p->tcf_bindcnt - bind,
265 };
Herbert Xub4219952007-09-27 12:48:05 -0700266 struct tcf_t t;
Herbert Xub4219952007-09-27 12:48:05 -0700267
David S. Miller1b34ec42012-03-29 05:11:39 -0400268 if (nla_put(skb, TCA_NAT_PARMS, sizeof(opt), &opt))
269 goto nla_put_failure;
Herbert Xub4219952007-09-27 12:48:05 -0700270 t.install = jiffies_to_clock_t(jiffies - p->tcf_tm.install);
271 t.lastuse = jiffies_to_clock_t(jiffies - p->tcf_tm.lastuse);
272 t.expires = jiffies_to_clock_t(p->tcf_tm.expires);
David S. Miller1b34ec42012-03-29 05:11:39 -0400273 if (nla_put(skb, TCA_NAT_TM, sizeof(t), &t))
274 goto nla_put_failure;
Herbert Xub4219952007-09-27 12:48:05 -0700275
Herbert Xub4219952007-09-27 12:48:05 -0700276 return skb->len;
277
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800278nla_put_failure:
Herbert Xub4219952007-09-27 12:48:05 -0700279 nlmsg_trim(skb, b);
Herbert Xub4219952007-09-27 12:48:05 -0700280 return -1;
281}
282
283static struct tc_action_ops act_nat_ops = {
284 .kind = "nat",
Herbert Xub4219952007-09-27 12:48:05 -0700285 .type = TCA_ACT_NAT,
Herbert Xub4219952007-09-27 12:48:05 -0700286 .owner = THIS_MODULE,
287 .act = tcf_nat,
288 .dump = tcf_nat_dump,
Herbert Xub4219952007-09-27 12:48:05 -0700289 .init = tcf_nat_init,
Herbert Xub4219952007-09-27 12:48:05 -0700290};
291
292MODULE_DESCRIPTION("Stateless NAT actions");
293MODULE_LICENSE("GPL");
294
295static int __init nat_init_module(void)
296{
WANG Cong4f1e9d82014-02-11 17:07:33 -0800297 return tcf_register_action(&act_nat_ops, NAT_TAB_MASK);
Herbert Xub4219952007-09-27 12:48:05 -0700298}
299
300static void __exit nat_cleanup_module(void)
301{
302 tcf_unregister_action(&act_nat_ops);
Herbert Xub4219952007-09-27 12:48:05 -0700303}
304
305module_init(nat_init_module);
306module_exit(nat_cleanup_module);