ipv6: route: per route IP tunnel metadata via lightweight tunnel
[linux-2.6-block.git] / net / ipv4 / ip_tunnel_core.c
CommitLineData
0e6fbc5b
PS
1/*
2 * Copyright (c) 2013 Nicira, Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of version 2 of the GNU General Public
6 * License as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301, USA
17 */
18
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
21#include <linux/types.h>
22#include <linux/kernel.h>
23#include <linux/skbuff.h>
24#include <linux/netdevice.h>
25#include <linux/in.h>
26#include <linux/if_arp.h>
27#include <linux/mroute.h>
28#include <linux/init.h>
29#include <linux/in6.h>
30#include <linux/inetdevice.h>
31#include <linux/netfilter_ipv4.h>
32#include <linux/etherdevice.h>
33#include <linux/if_ether.h>
34#include <linux/if_vlan.h>
e7030878 35#include <linux/static_key.h>
0e6fbc5b
PS
36
37#include <net/ip.h>
38#include <net/icmp.h>
39#include <net/protocol.h>
40#include <net/ip_tunnels.h>
41#include <net/arp.h>
42#include <net/checksum.h>
43#include <net/dsfield.h>
44#include <net/inet_ecn.h>
45#include <net/xfrm.h>
46#include <net/net_namespace.h>
47#include <net/netns/generic.h>
48#include <net/rtnetlink.h>
49
aad88724 50int iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb,
0e6fbc5b 51 __be32 src, __be32 dst, __u8 proto,
963a88b3 52 __u8 tos, __u8 ttl, __be16 df, bool xnet)
0e6fbc5b
PS
53{
54 int pkt_len = skb->len;
55 struct iphdr *iph;
56 int err;
57
963a88b3
ND
58 skb_scrub_packet(skb, xnet);
59
7539fadc 60 skb_clear_hash(skb);
0e6fbc5b
PS
61 skb_dst_set(skb, &rt->dst);
62 memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
63
64 /* Push down and install the IP header. */
78a3694d 65 skb_push(skb, sizeof(struct iphdr));
0e6fbc5b
PS
66 skb_reset_network_header(skb);
67
68 iph = ip_hdr(skb);
69
70 iph->version = 4;
71 iph->ihl = sizeof(struct iphdr) >> 2;
72 iph->frag_off = df;
73 iph->protocol = proto;
74 iph->tos = tos;
75 iph->daddr = dst;
76 iph->saddr = src;
77 iph->ttl = ttl;
926a882f
HFS
78 __ip_select_ident(dev_net(rt->dst.dev), iph,
79 skb_shinfo(skb)->gso_segs ?: 1);
0e6fbc5b 80
aad88724 81 err = ip_local_out_sk(sk, skb);
0e6fbc5b
PS
82 if (unlikely(net_xmit_eval(err)))
83 pkt_len = 0;
84 return pkt_len;
85}
86EXPORT_SYMBOL_GPL(iptunnel_xmit);
3d7b46cd
PS
87
88int iptunnel_pull_header(struct sk_buff *skb, int hdr_len, __be16 inner_proto)
89{
90 if (unlikely(!pskb_may_pull(skb, hdr_len)))
91 return -ENOMEM;
92
93 skb_pull_rcsum(skb, hdr_len);
94
95 if (inner_proto == htons(ETH_P_TEB)) {
1245dfc8 96 struct ethhdr *eh;
3d7b46cd
PS
97
98 if (unlikely(!pskb_may_pull(skb, ETH_HLEN)))
99 return -ENOMEM;
100
1245dfc8 101 eh = (struct ethhdr *)skb->data;
d181ddca 102 if (likely(eth_proto_is_802_3(eh->h_proto)))
3d7b46cd
PS
103 skb->protocol = eh->h_proto;
104 else
105 skb->protocol = htons(ETH_P_802_2);
106
107 } else {
108 skb->protocol = inner_proto;
109 }
110
111 nf_reset(skb);
112 secpath_reset(skb);
7539fadc 113 skb_clear_hash_if_not_l4(skb);
fbd02dd4 114 skb_dst_drop(skb);
3d7b46cd
PS
115 skb->vlan_tci = 0;
116 skb_set_queue_mapping(skb, 0);
117 skb->pkt_type = PACKET_HOST;
118 return 0;
119}
120EXPORT_SYMBOL_GPL(iptunnel_pull_header);
2d26f0a3
ED
121
122struct sk_buff *iptunnel_handle_offloads(struct sk_buff *skb,
123 bool csum_help,
124 int gso_type_mask)
125{
126 int err;
127
128 if (likely(!skb->encapsulation)) {
129 skb_reset_inner_headers(skb);
130 skb->encapsulation = 1;
131 }
132
133 if (skb_is_gso(skb)) {
134 err = skb_unclone(skb, GFP_ATOMIC);
135 if (unlikely(err))
136 goto error;
137 skb_shinfo(skb)->gso_type |= gso_type_mask;
138 return skb;
139 }
140
7e2b10c1
TH
141 /* If packet is not gso and we are resolving any partial checksum,
142 * clear encapsulation flag. This allows setting CHECKSUM_PARTIAL
143 * on the outer header without confusing devices that implement
144 * NETIF_F_IP_CSUM with encapsulation.
145 */
146 if (csum_help)
147 skb->encapsulation = 0;
148
2d26f0a3
ED
149 if (skb->ip_summed == CHECKSUM_PARTIAL && csum_help) {
150 err = skb_checksum_help(skb);
151 if (unlikely(err))
152 goto error;
153 } else if (skb->ip_summed != CHECKSUM_PARTIAL)
154 skb->ip_summed = CHECKSUM_NONE;
155
156 return skb;
157error:
158 kfree_skb(skb);
159 return ERR_PTR(err);
160}
161EXPORT_SYMBOL_GPL(iptunnel_handle_offloads);
ebe44f35
DM
162
163/* Often modified stats are per cpu, other are shared (netdev->stats) */
164struct rtnl_link_stats64 *ip_tunnel_get_stats64(struct net_device *dev,
165 struct rtnl_link_stats64 *tot)
166{
167 int i;
168
c24a5964
AD
169 netdev_stats_to_stats64(tot, &dev->stats);
170
ebe44f35
DM
171 for_each_possible_cpu(i) {
172 const struct pcpu_sw_netstats *tstats =
173 per_cpu_ptr(dev->tstats, i);
174 u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
175 unsigned int start;
176
177 do {
57a7744e 178 start = u64_stats_fetch_begin_irq(&tstats->syncp);
ebe44f35
DM
179 rx_packets = tstats->rx_packets;
180 tx_packets = tstats->tx_packets;
181 rx_bytes = tstats->rx_bytes;
182 tx_bytes = tstats->tx_bytes;
57a7744e 183 } while (u64_stats_fetch_retry_irq(&tstats->syncp, start));
ebe44f35
DM
184
185 tot->rx_packets += rx_packets;
186 tot->tx_packets += tx_packets;
187 tot->rx_bytes += rx_bytes;
188 tot->tx_bytes += tx_bytes;
189 }
190
ebe44f35
DM
191 return tot;
192}
193EXPORT_SYMBOL_GPL(ip_tunnel_get_stats64);
3093fbe7 194
a1c234f9
JB
195static const struct nla_policy ip_tun_policy[LWTUNNEL_IP_MAX + 1] = {
196 [LWTUNNEL_IP_ID] = { .type = NLA_U64 },
197 [LWTUNNEL_IP_DST] = { .type = NLA_U32 },
198 [LWTUNNEL_IP_SRC] = { .type = NLA_U32 },
199 [LWTUNNEL_IP_TTL] = { .type = NLA_U8 },
200 [LWTUNNEL_IP_TOS] = { .type = NLA_U8 },
201 [LWTUNNEL_IP_SPORT] = { .type = NLA_U16 },
202 [LWTUNNEL_IP_DPORT] = { .type = NLA_U16 },
203 [LWTUNNEL_IP_FLAGS] = { .type = NLA_U16 },
3093fbe7
TG
204};
205
206static int ip_tun_build_state(struct net_device *dev, struct nlattr *attr,
207 struct lwtunnel_state **ts)
208{
209 struct ip_tunnel_info *tun_info;
210 struct lwtunnel_state *new_state;
a1c234f9 211 struct nlattr *tb[LWTUNNEL_IP_MAX + 1];
3093fbe7
TG
212 int err;
213
a1c234f9 214 err = nla_parse_nested(tb, LWTUNNEL_IP_MAX, attr, ip_tun_policy);
3093fbe7
TG
215 if (err < 0)
216 return err;
217
218 new_state = lwtunnel_state_alloc(sizeof(*tun_info));
219 if (!new_state)
220 return -ENOMEM;
221
222 new_state->type = LWTUNNEL_ENCAP_IP;
223
224 tun_info = lwt_tun_info(new_state);
225
a1c234f9
JB
226 if (tb[LWTUNNEL_IP_ID])
227 tun_info->key.tun_id = nla_get_u64(tb[LWTUNNEL_IP_ID]);
3093fbe7 228
a1c234f9 229 if (tb[LWTUNNEL_IP_DST])
c1ea5d67 230 tun_info->key.u.ipv4.dst = nla_get_be32(tb[LWTUNNEL_IP_DST]);
3093fbe7 231
a1c234f9 232 if (tb[LWTUNNEL_IP_SRC])
c1ea5d67 233 tun_info->key.u.ipv4.src = nla_get_be32(tb[LWTUNNEL_IP_SRC]);
3093fbe7 234
a1c234f9 235 if (tb[LWTUNNEL_IP_TTL])
7c383fb2 236 tun_info->key.ttl = nla_get_u8(tb[LWTUNNEL_IP_TTL]);
3093fbe7 237
a1c234f9 238 if (tb[LWTUNNEL_IP_TOS])
7c383fb2 239 tun_info->key.tos = nla_get_u8(tb[LWTUNNEL_IP_TOS]);
3093fbe7 240
a1c234f9
JB
241 if (tb[LWTUNNEL_IP_SPORT])
242 tun_info->key.tp_src = nla_get_be16(tb[LWTUNNEL_IP_SPORT]);
3093fbe7 243
a1c234f9
JB
244 if (tb[LWTUNNEL_IP_DPORT])
245 tun_info->key.tp_dst = nla_get_be16(tb[LWTUNNEL_IP_DPORT]);
3093fbe7 246
a1c234f9
JB
247 if (tb[LWTUNNEL_IP_FLAGS])
248 tun_info->key.tun_flags = nla_get_u16(tb[LWTUNNEL_IP_FLAGS]);
3093fbe7
TG
249
250 tun_info->mode = IP_TUNNEL_INFO_TX;
251 tun_info->options = NULL;
252 tun_info->options_len = 0;
253
254 *ts = new_state;
255
256 return 0;
257}
258
259static int ip_tun_fill_encap_info(struct sk_buff *skb,
260 struct lwtunnel_state *lwtstate)
261{
262 struct ip_tunnel_info *tun_info = lwt_tun_info(lwtstate);
263
a1c234f9 264 if (nla_put_u64(skb, LWTUNNEL_IP_ID, tun_info->key.tun_id) ||
c1ea5d67
JB
265 nla_put_be32(skb, LWTUNNEL_IP_DST, tun_info->key.u.ipv4.dst) ||
266 nla_put_be32(skb, LWTUNNEL_IP_SRC, tun_info->key.u.ipv4.src) ||
7c383fb2
JB
267 nla_put_u8(skb, LWTUNNEL_IP_TOS, tun_info->key.tos) ||
268 nla_put_u8(skb, LWTUNNEL_IP_TTL, tun_info->key.ttl) ||
a1c234f9
JB
269 nla_put_u16(skb, LWTUNNEL_IP_SPORT, tun_info->key.tp_src) ||
270 nla_put_u16(skb, LWTUNNEL_IP_DPORT, tun_info->key.tp_dst) ||
271 nla_put_u16(skb, LWTUNNEL_IP_FLAGS, tun_info->key.tun_flags))
3093fbe7
TG
272 return -ENOMEM;
273
274 return 0;
275}
276
277static int ip_tun_encap_nlsize(struct lwtunnel_state *lwtstate)
278{
a1c234f9
JB
279 return nla_total_size(8) /* LWTUNNEL_IP_ID */
280 + nla_total_size(4) /* LWTUNNEL_IP_DST */
281 + nla_total_size(4) /* LWTUNNEL_IP_SRC */
282 + nla_total_size(1) /* LWTUNNEL_IP_TOS */
283 + nla_total_size(1) /* LWTUNNEL_IP_TTL */
284 + nla_total_size(2) /* LWTUNNEL_IP_SPORT */
285 + nla_total_size(2) /* LWTUNNEL_IP_DPORT */
286 + nla_total_size(2); /* LWTUNNEL_IP_FLAGS */
3093fbe7
TG
287}
288
2d798499
JB
289static int ip_tun_cmp_encap(struct lwtunnel_state *a, struct lwtunnel_state *b)
290{
291 return memcmp(lwt_tun_info(a), lwt_tun_info(b),
292 sizeof(struct ip_tunnel_info));
293}
294
3093fbe7
TG
295static const struct lwtunnel_encap_ops ip_tun_lwt_ops = {
296 .build_state = ip_tun_build_state,
297 .fill_encap = ip_tun_fill_encap_info,
298 .get_encap_size = ip_tun_encap_nlsize,
2d798499 299 .cmp_encap = ip_tun_cmp_encap,
3093fbe7
TG
300};
301
32a2b002
JB
302static const struct nla_policy ip6_tun_policy[LWTUNNEL_IP6_MAX + 1] = {
303 [LWTUNNEL_IP6_ID] = { .type = NLA_U64 },
304 [LWTUNNEL_IP6_DST] = { .len = sizeof(struct in6_addr) },
305 [LWTUNNEL_IP6_SRC] = { .len = sizeof(struct in6_addr) },
306 [LWTUNNEL_IP6_HOPLIMIT] = { .type = NLA_U8 },
307 [LWTUNNEL_IP6_TC] = { .type = NLA_U8 },
308 [LWTUNNEL_IP6_SPORT] = { .type = NLA_U16 },
309 [LWTUNNEL_IP6_DPORT] = { .type = NLA_U16 },
310 [LWTUNNEL_IP6_FLAGS] = { .type = NLA_U16 },
311};
312
313static int ip6_tun_build_state(struct net_device *dev, struct nlattr *attr,
314 struct lwtunnel_state **ts)
315{
316 struct ip_tunnel_info *tun_info;
317 struct lwtunnel_state *new_state;
318 struct nlattr *tb[LWTUNNEL_IP6_MAX + 1];
319 int err;
320
321 err = nla_parse_nested(tb, LWTUNNEL_IP6_MAX, attr, ip6_tun_policy);
322 if (err < 0)
323 return err;
324
325 new_state = lwtunnel_state_alloc(sizeof(*tun_info));
326 if (!new_state)
327 return -ENOMEM;
328
329 new_state->type = LWTUNNEL_ENCAP_IP6;
330
331 tun_info = lwt_tun_info(new_state);
332
333 if (tb[LWTUNNEL_IP6_ID])
334 tun_info->key.tun_id = nla_get_u64(tb[LWTUNNEL_IP6_ID]);
335
336 if (tb[LWTUNNEL_IP6_DST])
337 tun_info->key.u.ipv6.dst = nla_get_in6_addr(tb[LWTUNNEL_IP6_DST]);
338
339 if (tb[LWTUNNEL_IP6_SRC])
340 tun_info->key.u.ipv6.src = nla_get_in6_addr(tb[LWTUNNEL_IP6_SRC]);
341
342 if (tb[LWTUNNEL_IP6_HOPLIMIT])
343 tun_info->key.ttl = nla_get_u8(tb[LWTUNNEL_IP6_HOPLIMIT]);
344
345 if (tb[LWTUNNEL_IP6_TC])
346 tun_info->key.tos = nla_get_u8(tb[LWTUNNEL_IP6_TC]);
347
348 if (tb[LWTUNNEL_IP6_SPORT])
349 tun_info->key.tp_src = nla_get_be16(tb[LWTUNNEL_IP6_SPORT]);
350
351 if (tb[LWTUNNEL_IP6_DPORT])
352 tun_info->key.tp_dst = nla_get_be16(tb[LWTUNNEL_IP6_DPORT]);
353
354 if (tb[LWTUNNEL_IP6_FLAGS])
355 tun_info->key.tun_flags = nla_get_u16(tb[LWTUNNEL_IP6_FLAGS]);
356
357 tun_info->mode = IP_TUNNEL_INFO_TX;
358 tun_info->options = NULL;
359 tun_info->options_len = 0;
360
361 *ts = new_state;
362
363 return 0;
364}
365
366static int ip6_tun_fill_encap_info(struct sk_buff *skb,
367 struct lwtunnel_state *lwtstate)
368{
369 struct ip_tunnel_info *tun_info = lwt_tun_info(lwtstate);
370
371 if (nla_put_u64(skb, LWTUNNEL_IP6_ID, tun_info->key.tun_id) ||
372 nla_put_in6_addr(skb, LWTUNNEL_IP6_DST, &tun_info->key.u.ipv6.dst) ||
373 nla_put_in6_addr(skb, LWTUNNEL_IP6_SRC, &tun_info->key.u.ipv6.src) ||
374 nla_put_u8(skb, LWTUNNEL_IP6_HOPLIMIT, tun_info->key.tos) ||
375 nla_put_u8(skb, LWTUNNEL_IP6_TC, tun_info->key.ttl) ||
376 nla_put_u16(skb, LWTUNNEL_IP6_SPORT, tun_info->key.tp_src) ||
377 nla_put_u16(skb, LWTUNNEL_IP6_DPORT, tun_info->key.tp_dst) ||
378 nla_put_u16(skb, LWTUNNEL_IP6_FLAGS, tun_info->key.tun_flags))
379 return -ENOMEM;
380
381 return 0;
382}
383
384static int ip6_tun_encap_nlsize(struct lwtunnel_state *lwtstate)
385{
386 return nla_total_size(8) /* LWTUNNEL_IP6_ID */
387 + nla_total_size(16) /* LWTUNNEL_IP6_DST */
388 + nla_total_size(16) /* LWTUNNEL_IP6_SRC */
389 + nla_total_size(1) /* LWTUNNEL_IP6_HOPLIMIT */
390 + nla_total_size(1) /* LWTUNNEL_IP6_TC */
391 + nla_total_size(2) /* LWTUNNEL_IP6_SPORT */
392 + nla_total_size(2) /* LWTUNNEL_IP6_DPORT */
393 + nla_total_size(2); /* LWTUNNEL_IP6_FLAGS */
394}
395
396static const struct lwtunnel_encap_ops ip6_tun_lwt_ops = {
397 .build_state = ip6_tun_build_state,
398 .fill_encap = ip6_tun_fill_encap_info,
399 .get_encap_size = ip6_tun_encap_nlsize,
400 .cmp_encap = ip_tun_cmp_encap,
401};
402
045a0fa0 403void __init ip_tunnel_core_init(void)
3093fbe7
TG
404{
405 lwtunnel_encap_add_ops(&ip_tun_lwt_ops, LWTUNNEL_ENCAP_IP);
32a2b002 406 lwtunnel_encap_add_ops(&ip6_tun_lwt_ops, LWTUNNEL_ENCAP_IP6);
3093fbe7 407}
e7030878
TG
408
409struct static_key ip_tunnel_metadata_cnt = STATIC_KEY_INIT_FALSE;
410EXPORT_SYMBOL(ip_tunnel_metadata_cnt);
411
412void ip_tunnel_need_metadata(void)
413{
414 static_key_slow_inc(&ip_tunnel_metadata_cnt);
415}
416EXPORT_SYMBOL_GPL(ip_tunnel_need_metadata);
417
418void ip_tunnel_unneed_metadata(void)
419{
420 static_key_slow_dec(&ip_tunnel_metadata_cnt);
421}
422EXPORT_SYMBOL_GPL(ip_tunnel_unneed_metadata);