ip_tunnel_core.c 11.9 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Copyright (c) 2013 Nicira, Inc.
 */

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/in.h>
#include <linux/if_arp.h>
#include <linux/init.h>
#include <linux/in6.h>
#include <linux/inetdevice.h>
#include <linux/netfilter_ipv4.h>
#include <linux/etherdevice.h>
#include <linux/if_ether.h>
#include <linux/if_vlan.h>
21
#include <linux/static_key.h>
22 23 24 25 26

#include <net/ip.h>
#include <net/icmp.h>
#include <net/protocol.h>
#include <net/ip_tunnels.h>
27
#include <net/ip6_tunnel.h>
28 29 30 31 32 33 34 35
#include <net/arp.h>
#include <net/checksum.h>
#include <net/dsfield.h>
#include <net/inet_ecn.h>
#include <net/xfrm.h>
#include <net/net_namespace.h>
#include <net/netns/generic.h>
#include <net/rtnetlink.h>
36
#include <net/dst_metadata.h>
37

38 39 40 41
const struct ip_tunnel_encap_ops __rcu *
		iptun_encaps[MAX_IPTUN_ENCAP_OPS] __read_mostly;
EXPORT_SYMBOL(iptun_encaps);

42 43 44 45
const struct ip6_tnl_encap_ops __rcu *
		ip6tun_encaps[MAX_IPTUN_ENCAP_OPS] __read_mostly;
EXPORT_SYMBOL(ip6tun_encaps);

46 47 48
void iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb,
		   __be32 src, __be32 dst, __u8 proto,
		   __u8 tos, __u8 ttl, __be16 df, bool xnet)
49
{
50
	int pkt_len = skb->len - skb_inner_network_offset(skb);
51
	struct net *net = dev_net(rt->dst.dev);
52
	struct net_device *dev = skb->dev;
53 54 55
	struct iphdr *iph;
	int err;

56 57
	skb_scrub_packet(skb, xnet);

E
Eric Dumazet 已提交
58
	skb_clear_hash_if_not_l4(skb);
59 60 61 62
	skb_dst_set(skb, &rt->dst);
	memset(IPCB(skb), 0, sizeof(*IPCB(skb)));

	/* Push down and install the IP header. */
63
	skb_push(skb, sizeof(struct iphdr));
64 65 66 67 68 69
	skb_reset_network_header(skb);

	iph = ip_hdr(skb);

	iph->version	=	4;
	iph->ihl	=	sizeof(struct iphdr) >> 2;
70
	iph->frag_off	=	ip_mtu_locked(&rt->dst) ? 0 : df;
71 72 73 74 75
	iph->protocol	=	proto;
	iph->tos	=	tos;
	iph->daddr	=	dst;
	iph->saddr	=	src;
	iph->ttl	=	ttl;
76
	__ip_select_ident(net, iph, skb_shinfo(skb)->gso_segs ?: 1);
77

78
	err = ip_local_out(net, sk, skb);
79 80
	if (unlikely(net_xmit_eval(err)))
		pkt_len = 0;
81
	iptunnel_xmit_stats(dev, pkt_len);
82 83
}
EXPORT_SYMBOL_GPL(iptunnel_xmit);
84

85 86
int __iptunnel_pull_header(struct sk_buff *skb, int hdr_len,
			   __be16 inner_proto, bool raw_proto, bool xnet)
87 88 89 90 91 92
{
	if (unlikely(!pskb_may_pull(skb, hdr_len)))
		return -ENOMEM;

	skb_pull_rcsum(skb, hdr_len);

93
	if (!raw_proto && inner_proto == htons(ETH_P_TEB)) {
94
		struct ethhdr *eh;
95 96 97 98

		if (unlikely(!pskb_may_pull(skb, ETH_HLEN)))
			return -ENOMEM;

99
		eh = (struct ethhdr *)skb->data;
100
		if (likely(eth_proto_is_802_3(eh->h_proto)))
101 102 103 104 105 106 107 108
			skb->protocol = eh->h_proto;
		else
			skb->protocol = htons(ETH_P_802_2);

	} else {
		skb->protocol = inner_proto;
	}

109
	skb_clear_hash_if_not_l4(skb);
110
	__vlan_hwaccel_clear_tag(skb);
111
	skb_set_queue_mapping(skb, 0);
112
	skb_scrub_packet(skb, xnet);
113 114

	return iptunnel_pull_offloads(skb);
115
}
116
EXPORT_SYMBOL_GPL(__iptunnel_pull_header);
117

118 119 120 121 122 123
struct metadata_dst *iptunnel_metadata_reply(struct metadata_dst *md,
					     gfp_t flags)
{
	struct metadata_dst *res;
	struct ip_tunnel_info *dst, *src;

124 125 126
	if (!md || md->type != METADATA_IP_TUNNEL ||
	    md->u.tun_info.mode & IP_TUNNEL_INFO_TX)

127 128
		return NULL;

129
	res = metadata_dst_alloc(0, METADATA_IP_TUNNEL, flags);
130 131 132 133 134 135 136 137 138 139 140
	if (!res)
		return NULL;

	dst = &res->u.tun_info;
	src = &md->u.tun_info;
	dst->key.tun_id = src->key.tun_id;
	if (src->mode & IP_TUNNEL_INFO_IPV6)
		memcpy(&dst->key.u.ipv6.dst, &src->key.u.ipv6.src,
		       sizeof(struct in6_addr));
	else
		dst->key.u.ipv4.dst = src->key.u.ipv4.src;
141
	dst->key.tun_flags = src->key.tun_flags;
142 143 144 145 146 147
	dst->mode = src->mode | IP_TUNNEL_INFO_TX;

	return res;
}
EXPORT_SYMBOL_GPL(iptunnel_metadata_reply);

148 149
int iptunnel_handle_offloads(struct sk_buff *skb,
			     int gso_type_mask)
150 151 152 153 154 155 156 157 158
{
	int err;

	if (likely(!skb->encapsulation)) {
		skb_reset_inner_headers(skb);
		skb->encapsulation = 1;
	}

	if (skb_is_gso(skb)) {
159
		err = skb_header_unclone(skb, GFP_ATOMIC);
160
		if (unlikely(err))
161
			return err;
162
		skb_shinfo(skb)->gso_type |= gso_type_mask;
163
		return 0;
164 165
	}

166
	if (skb->ip_summed != CHECKSUM_PARTIAL) {
167
		skb->ip_summed = CHECKSUM_NONE;
168 169 170 171 172
		/* We clear encapsulation here to prevent badly-written
		 * drivers potentially deciding to offload an inner checksum
		 * if we set CHECKSUM_PARTIAL on the outer header.
		 * This should go away when the drivers are all fixed.
		 */
173 174
		skb->encapsulation = 0;
	}
175

176
	return 0;
177 178
}
EXPORT_SYMBOL_GPL(iptunnel_handle_offloads);
179 180

/* Often modified stats are per cpu, other are shared (netdev->stats) */
181 182
void ip_tunnel_get_stats64(struct net_device *dev,
			   struct rtnl_link_stats64 *tot)
183 184 185
{
	int i;

186 187
	netdev_stats_to_stats64(tot, &dev->stats);

188 189 190 191 192 193 194
	for_each_possible_cpu(i) {
		const struct pcpu_sw_netstats *tstats =
						   per_cpu_ptr(dev->tstats, i);
		u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
		unsigned int start;

		do {
195
			start = u64_stats_fetch_begin_irq(&tstats->syncp);
196 197 198 199
			rx_packets = tstats->rx_packets;
			tx_packets = tstats->tx_packets;
			rx_bytes = tstats->rx_bytes;
			tx_bytes = tstats->tx_bytes;
200
		} while (u64_stats_fetch_retry_irq(&tstats->syncp, start));
201 202 203 204 205 206 207 208

		tot->rx_packets += rx_packets;
		tot->tx_packets += tx_packets;
		tot->rx_bytes   += rx_bytes;
		tot->tx_bytes   += tx_bytes;
	}
}
EXPORT_SYMBOL_GPL(ip_tunnel_get_stats64);
209

210 211 212 213 214 215 216
static const struct nla_policy ip_tun_policy[LWTUNNEL_IP_MAX + 1] = {
	[LWTUNNEL_IP_ID]	= { .type = NLA_U64 },
	[LWTUNNEL_IP_DST]	= { .type = NLA_U32 },
	[LWTUNNEL_IP_SRC]	= { .type = NLA_U32 },
	[LWTUNNEL_IP_TTL]	= { .type = NLA_U8 },
	[LWTUNNEL_IP_TOS]	= { .type = NLA_U8 },
	[LWTUNNEL_IP_FLAGS]	= { .type = NLA_U16 },
217 218
};

219
static int ip_tun_build_state(struct nlattr *attr,
220
			      unsigned int family, const void *cfg,
221 222
			      struct lwtunnel_state **ts,
			      struct netlink_ext_ack *extack)
223 224 225
{
	struct ip_tunnel_info *tun_info;
	struct lwtunnel_state *new_state;
226
	struct nlattr *tb[LWTUNNEL_IP_MAX + 1];
227 228
	int err;

229 230
	err = nla_parse_nested_deprecated(tb, LWTUNNEL_IP_MAX, attr,
					  ip_tun_policy, extack);
231 232 233 234 235 236 237 238 239 240 241
	if (err < 0)
		return err;

	new_state = lwtunnel_state_alloc(sizeof(*tun_info));
	if (!new_state)
		return -ENOMEM;

	new_state->type = LWTUNNEL_ENCAP_IP;

	tun_info = lwt_tun_info(new_state);

242 243 244 245 246 247 248 249
#ifdef CONFIG_DST_CACHE
	err = dst_cache_init(&tun_info->dst_cache, GFP_KERNEL);
	if (err) {
		lwtstate_free(new_state);
		return err;
	}
#endif

250
	if (tb[LWTUNNEL_IP_ID])
251
		tun_info->key.tun_id = nla_get_be64(tb[LWTUNNEL_IP_ID]);
252

253
	if (tb[LWTUNNEL_IP_DST])
254
		tun_info->key.u.ipv4.dst = nla_get_in_addr(tb[LWTUNNEL_IP_DST]);
255

256
	if (tb[LWTUNNEL_IP_SRC])
257
		tun_info->key.u.ipv4.src = nla_get_in_addr(tb[LWTUNNEL_IP_SRC]);
258

259
	if (tb[LWTUNNEL_IP_TTL])
260
		tun_info->key.ttl = nla_get_u8(tb[LWTUNNEL_IP_TTL]);
261

262
	if (tb[LWTUNNEL_IP_TOS])
263
		tun_info->key.tos = nla_get_u8(tb[LWTUNNEL_IP_TOS]);
264

265
	if (tb[LWTUNNEL_IP_FLAGS])
266
		tun_info->key.tun_flags = nla_get_be16(tb[LWTUNNEL_IP_FLAGS]);
267 268 269 270 271 272 273 274 275

	tun_info->mode = IP_TUNNEL_INFO_TX;
	tun_info->options_len = 0;

	*ts = new_state;

	return 0;
}

276 277 278 279 280 281 282 283 284
static void ip_tun_destroy_state(struct lwtunnel_state *lwtstate)
{
#ifdef CONFIG_DST_CACHE
	struct ip_tunnel_info *tun_info = lwt_tun_info(lwtstate);

	dst_cache_destroy(&tun_info->dst_cache);
#endif
}

285 286 287 288 289
static int ip_tun_fill_encap_info(struct sk_buff *skb,
				  struct lwtunnel_state *lwtstate)
{
	struct ip_tunnel_info *tun_info = lwt_tun_info(lwtstate);

290 291
	if (nla_put_be64(skb, LWTUNNEL_IP_ID, tun_info->key.tun_id,
			 LWTUNNEL_IP_PAD) ||
292 293
	    nla_put_in_addr(skb, LWTUNNEL_IP_DST, tun_info->key.u.ipv4.dst) ||
	    nla_put_in_addr(skb, LWTUNNEL_IP_SRC, tun_info->key.u.ipv4.src) ||
294 295
	    nla_put_u8(skb, LWTUNNEL_IP_TOS, tun_info->key.tos) ||
	    nla_put_u8(skb, LWTUNNEL_IP_TTL, tun_info->key.ttl) ||
296
	    nla_put_be16(skb, LWTUNNEL_IP_FLAGS, tun_info->key.tun_flags))
297 298 299 300 301 302 303
		return -ENOMEM;

	return 0;
}

static int ip_tun_encap_nlsize(struct lwtunnel_state *lwtstate)
{
304
	return nla_total_size_64bit(8)	/* LWTUNNEL_IP_ID */
305 306 307 308 309
		+ nla_total_size(4)	/* LWTUNNEL_IP_DST */
		+ nla_total_size(4)	/* LWTUNNEL_IP_SRC */
		+ nla_total_size(1)	/* LWTUNNEL_IP_TOS */
		+ nla_total_size(1)	/* LWTUNNEL_IP_TTL */
		+ nla_total_size(2);	/* LWTUNNEL_IP_FLAGS */
310 311
}

312 313 314 315 316 317
static int ip_tun_cmp_encap(struct lwtunnel_state *a, struct lwtunnel_state *b)
{
	return memcmp(lwt_tun_info(a), lwt_tun_info(b),
		      sizeof(struct ip_tunnel_info));
}

318 319
static const struct lwtunnel_encap_ops ip_tun_lwt_ops = {
	.build_state = ip_tun_build_state,
320
	.destroy_state = ip_tun_destroy_state,
321 322
	.fill_encap = ip_tun_fill_encap_info,
	.get_encap_size = ip_tun_encap_nlsize,
323
	.cmp_encap = ip_tun_cmp_encap,
324
	.owner = THIS_MODULE,
325 326
};

327 328 329 330 331 332 333 334 335
static const struct nla_policy ip6_tun_policy[LWTUNNEL_IP6_MAX + 1] = {
	[LWTUNNEL_IP6_ID]		= { .type = NLA_U64 },
	[LWTUNNEL_IP6_DST]		= { .len = sizeof(struct in6_addr) },
	[LWTUNNEL_IP6_SRC]		= { .len = sizeof(struct in6_addr) },
	[LWTUNNEL_IP6_HOPLIMIT]		= { .type = NLA_U8 },
	[LWTUNNEL_IP6_TC]		= { .type = NLA_U8 },
	[LWTUNNEL_IP6_FLAGS]		= { .type = NLA_U16 },
};

336
static int ip6_tun_build_state(struct nlattr *attr,
337
			       unsigned int family, const void *cfg,
338 339
			       struct lwtunnel_state **ts,
			       struct netlink_ext_ack *extack)
340 341 342 343 344 345
{
	struct ip_tunnel_info *tun_info;
	struct lwtunnel_state *new_state;
	struct nlattr *tb[LWTUNNEL_IP6_MAX + 1];
	int err;

346 347
	err = nla_parse_nested_deprecated(tb, LWTUNNEL_IP6_MAX, attr,
					  ip6_tun_policy, extack);
348 349 350 351 352 353 354 355 356 357 358 359
	if (err < 0)
		return err;

	new_state = lwtunnel_state_alloc(sizeof(*tun_info));
	if (!new_state)
		return -ENOMEM;

	new_state->type = LWTUNNEL_ENCAP_IP6;

	tun_info = lwt_tun_info(new_state);

	if (tb[LWTUNNEL_IP6_ID])
360
		tun_info->key.tun_id = nla_get_be64(tb[LWTUNNEL_IP6_ID]);
361 362 363 364 365 366 367 368 369 370 371 372 373 374

	if (tb[LWTUNNEL_IP6_DST])
		tun_info->key.u.ipv6.dst = nla_get_in6_addr(tb[LWTUNNEL_IP6_DST]);

	if (tb[LWTUNNEL_IP6_SRC])
		tun_info->key.u.ipv6.src = nla_get_in6_addr(tb[LWTUNNEL_IP6_SRC]);

	if (tb[LWTUNNEL_IP6_HOPLIMIT])
		tun_info->key.ttl = nla_get_u8(tb[LWTUNNEL_IP6_HOPLIMIT]);

	if (tb[LWTUNNEL_IP6_TC])
		tun_info->key.tos = nla_get_u8(tb[LWTUNNEL_IP6_TC]);

	if (tb[LWTUNNEL_IP6_FLAGS])
375
		tun_info->key.tun_flags = nla_get_be16(tb[LWTUNNEL_IP6_FLAGS]);
376

377
	tun_info->mode = IP_TUNNEL_INFO_TX | IP_TUNNEL_INFO_IPV6;
378 379 380 381 382 383 384 385 386 387 388 389
	tun_info->options_len = 0;

	*ts = new_state;

	return 0;
}

static int ip6_tun_fill_encap_info(struct sk_buff *skb,
				   struct lwtunnel_state *lwtstate)
{
	struct ip_tunnel_info *tun_info = lwt_tun_info(lwtstate);

390 391
	if (nla_put_be64(skb, LWTUNNEL_IP6_ID, tun_info->key.tun_id,
			 LWTUNNEL_IP6_PAD) ||
392 393
	    nla_put_in6_addr(skb, LWTUNNEL_IP6_DST, &tun_info->key.u.ipv6.dst) ||
	    nla_put_in6_addr(skb, LWTUNNEL_IP6_SRC, &tun_info->key.u.ipv6.src) ||
394 395
	    nla_put_u8(skb, LWTUNNEL_IP6_TC, tun_info->key.tos) ||
	    nla_put_u8(skb, LWTUNNEL_IP6_HOPLIMIT, tun_info->key.ttl) ||
396
	    nla_put_be16(skb, LWTUNNEL_IP6_FLAGS, tun_info->key.tun_flags))
397 398 399 400 401 402 403
		return -ENOMEM;

	return 0;
}

static int ip6_tun_encap_nlsize(struct lwtunnel_state *lwtstate)
{
404
	return nla_total_size_64bit(8)	/* LWTUNNEL_IP6_ID */
405 406 407 408 409 410 411 412 413 414 415 416
		+ nla_total_size(16)	/* LWTUNNEL_IP6_DST */
		+ nla_total_size(16)	/* LWTUNNEL_IP6_SRC */
		+ nla_total_size(1)	/* LWTUNNEL_IP6_HOPLIMIT */
		+ nla_total_size(1)	/* LWTUNNEL_IP6_TC */
		+ nla_total_size(2);	/* LWTUNNEL_IP6_FLAGS */
}

static const struct lwtunnel_encap_ops ip6_tun_lwt_ops = {
	.build_state = ip6_tun_build_state,
	.fill_encap = ip6_tun_fill_encap_info,
	.get_encap_size = ip6_tun_encap_nlsize,
	.cmp_encap = ip_tun_cmp_encap,
417
	.owner = THIS_MODULE,
418 419
};

420
void __init ip_tunnel_core_init(void)
421
{
422 423 424 425 426 427
	/* If you land here, make sure whether increasing ip_tunnel_info's
	 * options_len is a reasonable choice with its usage in front ends
	 * (f.e., it's part of flow keys, etc).
	 */
	BUILD_BUG_ON(IP_TUNNEL_OPTS_MAX != 255);

428
	lwtunnel_encap_add_ops(&ip_tun_lwt_ops, LWTUNNEL_ENCAP_IP);
429
	lwtunnel_encap_add_ops(&ip6_tun_lwt_ops, LWTUNNEL_ENCAP_IP6);
430
}
431

432
DEFINE_STATIC_KEY_FALSE(ip_tunnel_metadata_cnt);
433 434 435 436
EXPORT_SYMBOL(ip_tunnel_metadata_cnt);

void ip_tunnel_need_metadata(void)
{
437
	static_branch_inc(&ip_tunnel_metadata_cnt);
438 439 440 441 442
}
EXPORT_SYMBOL_GPL(ip_tunnel_need_metadata);

void ip_tunnel_unneed_metadata(void)
{
443
	static_branch_dec(&ip_tunnel_metadata_cnt);
444 445
}
EXPORT_SYMBOL_GPL(ip_tunnel_unneed_metadata);