blob: fd6319681c50ea6cc7d98a3b1d0283fe58b1a4c9 [file] [log] [blame]
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001/*
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>
Thomas Grafe7030872015-07-21 10:44:01 +020035#include <linux/static_key.h>
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -070036
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
Eric Dumazetaad88722014-04-15 13:47:15 -040050int iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb,
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -070051 __be32 src, __be32 dst, __u8 proto,
Nicolas Dichtel963a88b2013-09-02 15:34:57 +020052 __u8 tos, __u8 ttl, __be16 df, bool xnet)
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -070053{
54 int pkt_len = skb->len;
55 struct iphdr *iph;
56 int err;
57
Nicolas Dichtel963a88b2013-09-02 15:34:57 +020058 skb_scrub_packet(skb, xnet);
59
Tom Herbert7539fad2013-12-15 22:12:18 -080060 skb_clear_hash(skb);
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -070061 skb_dst_set(skb, &rt->dst);
62 memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
63
64 /* Push down and install the IP header. */
Steffen Klassert78a36942013-10-01 11:35:51 +020065 skb_push(skb, sizeof(struct iphdr));
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -070066 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;
Hannes Frederic Sowa926a8822015-04-08 17:01:22 +020078 __ip_select_ident(dev_net(rt->dst.dev), iph,
79 skb_shinfo(skb)->gso_segs ?: 1);
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -070080
Eric Dumazetaad88722014-04-15 13:47:15 -040081 err = ip_local_out_sk(sk, skb);
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -070082 if (unlikely(net_xmit_eval(err)))
83 pkt_len = 0;
84 return pkt_len;
85}
86EXPORT_SYMBOL_GPL(iptunnel_xmit);
Pravin B Shelar3d7b46c2013-06-17 17:50:02 -070087
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)) {
Li RongQing1245dfc2014-10-17 16:53:23 +080096 struct ethhdr *eh;
Pravin B Shelar3d7b46c2013-06-17 17:50:02 -070097
98 if (unlikely(!pskb_may_pull(skb, ETH_HLEN)))
99 return -ENOMEM;
100
Li RongQing1245dfc2014-10-17 16:53:23 +0800101 eh = (struct ethhdr *)skb->data;
Alexander Duyckd181ddc2015-05-04 14:33:59 -0700102 if (likely(eth_proto_is_802_3(eh->h_proto)))
Pravin B Shelar3d7b46c2013-06-17 17:50:02 -0700103 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);
Tom Herbert7539fad2013-12-15 22:12:18 -0800113 skb_clear_hash_if_not_l4(skb);
Pravin B Shelarfbd02dd2014-03-23 22:06:36 -0700114 skb_dst_drop(skb);
Pravin B Shelar3d7b46c2013-06-17 17:50:02 -0700115 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);
Eric Dumazet2d26f0a2013-10-19 11:42:55 -0700121
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
Tom Herbert7e2b10c2014-06-04 17:20:02 -0700141 /* 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
Eric Dumazet2d26f0a2013-10-19 11:42:55 -0700149 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);
David S. Millerebe44f32014-02-20 02:14:23 -0500162
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
Alexander Duyckc24a5962015-05-14 14:31:28 -0700169 netdev_stats_to_stats64(tot, &dev->stats);
170
David S. Millerebe44f32014-02-20 02:14:23 -0500171 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 {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700178 start = u64_stats_fetch_begin_irq(&tstats->syncp);
David S. Millerebe44f32014-02-20 02:14:23 -0500179 rx_packets = tstats->rx_packets;
180 tx_packets = tstats->tx_packets;
181 rx_bytes = tstats->rx_bytes;
182 tx_bytes = tstats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700183 } while (u64_stats_fetch_retry_irq(&tstats->syncp, start));
David S. Millerebe44f32014-02-20 02:14:23 -0500184
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
David S. Millerebe44f32014-02-20 02:14:23 -0500191 return tot;
192}
193EXPORT_SYMBOL_GPL(ip_tunnel_get_stats64);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200194
Jiri Benca1c234f2015-08-14 16:40:40 +0200195static 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 },
Thomas Graf3093fbe2015-07-21 10:44:00 +0200204};
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;
Jiri Benca1c234f2015-08-14 16:40:40 +0200211 struct nlattr *tb[LWTUNNEL_IP_MAX + 1];
Thomas Graf3093fbe2015-07-21 10:44:00 +0200212 int err;
213
Jiri Benca1c234f2015-08-14 16:40:40 +0200214 err = nla_parse_nested(tb, LWTUNNEL_IP_MAX, attr, ip_tun_policy);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200215 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
Jiri Benca1c234f2015-08-14 16:40:40 +0200226 if (tb[LWTUNNEL_IP_ID])
227 tun_info->key.tun_id = nla_get_u64(tb[LWTUNNEL_IP_ID]);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200228
Jiri Benca1c234f2015-08-14 16:40:40 +0200229 if (tb[LWTUNNEL_IP_DST])
230 tun_info->key.ipv4_dst = nla_get_be32(tb[LWTUNNEL_IP_DST]);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200231
Jiri Benca1c234f2015-08-14 16:40:40 +0200232 if (tb[LWTUNNEL_IP_SRC])
233 tun_info->key.ipv4_src = nla_get_be32(tb[LWTUNNEL_IP_SRC]);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200234
Jiri Benca1c234f2015-08-14 16:40:40 +0200235 if (tb[LWTUNNEL_IP_TTL])
236 tun_info->key.ipv4_ttl = nla_get_u8(tb[LWTUNNEL_IP_TTL]);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200237
Jiri Benca1c234f2015-08-14 16:40:40 +0200238 if (tb[LWTUNNEL_IP_TOS])
239 tun_info->key.ipv4_tos = nla_get_u8(tb[LWTUNNEL_IP_TOS]);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200240
Jiri Benca1c234f2015-08-14 16:40:40 +0200241 if (tb[LWTUNNEL_IP_SPORT])
242 tun_info->key.tp_src = nla_get_be16(tb[LWTUNNEL_IP_SPORT]);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200243
Jiri Benca1c234f2015-08-14 16:40:40 +0200244 if (tb[LWTUNNEL_IP_DPORT])
245 tun_info->key.tp_dst = nla_get_be16(tb[LWTUNNEL_IP_DPORT]);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200246
Jiri Benca1c234f2015-08-14 16:40:40 +0200247 if (tb[LWTUNNEL_IP_FLAGS])
248 tun_info->key.tun_flags = nla_get_u16(tb[LWTUNNEL_IP_FLAGS]);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200249
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
Jiri Benca1c234f2015-08-14 16:40:40 +0200264 if (nla_put_u64(skb, LWTUNNEL_IP_ID, tun_info->key.tun_id) ||
265 nla_put_be32(skb, LWTUNNEL_IP_DST, tun_info->key.ipv4_dst) ||
266 nla_put_be32(skb, LWTUNNEL_IP_SRC, tun_info->key.ipv4_src) ||
267 nla_put_u8(skb, LWTUNNEL_IP_TOS, tun_info->key.ipv4_tos) ||
268 nla_put_u8(skb, LWTUNNEL_IP_TTL, tun_info->key.ipv4_ttl) ||
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))
Thomas Graf3093fbe2015-07-21 10:44:00 +0200272 return -ENOMEM;
273
274 return 0;
275}
276
277static int ip_tun_encap_nlsize(struct lwtunnel_state *lwtstate)
278{
Jiri Benca1c234f2015-08-14 16:40:40 +0200279 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 */
Thomas Graf3093fbe2015-07-21 10:44:00 +0200287}
288
289static const struct lwtunnel_encap_ops ip_tun_lwt_ops = {
290 .build_state = ip_tun_build_state,
291 .fill_encap = ip_tun_fill_encap_info,
292 .get_encap_size = ip_tun_encap_nlsize,
293};
294
Thomas Graf045a0fa2015-07-23 10:08:44 +0200295void __init ip_tunnel_core_init(void)
Thomas Graf3093fbe2015-07-21 10:44:00 +0200296{
297 lwtunnel_encap_add_ops(&ip_tun_lwt_ops, LWTUNNEL_ENCAP_IP);
Thomas Graf3093fbe2015-07-21 10:44:00 +0200298}
Thomas Grafe7030872015-07-21 10:44:01 +0200299
300struct static_key ip_tunnel_metadata_cnt = STATIC_KEY_INIT_FALSE;
301EXPORT_SYMBOL(ip_tunnel_metadata_cnt);
302
303void ip_tunnel_need_metadata(void)
304{
305 static_key_slow_inc(&ip_tunnel_metadata_cnt);
306}
307EXPORT_SYMBOL_GPL(ip_tunnel_need_metadata);
308
309void ip_tunnel_unneed_metadata(void)
310{
311 static_key_slow_dec(&ip_tunnel_metadata_cnt);
312}
313EXPORT_SYMBOL_GPL(ip_tunnel_unneed_metadata);