Linux Audio

Check our new training course

Loading...
v4.6
 
   1/*
   2 *	GRE over IPv6 protocol decoder.
   3 *
   4 *	Authors: Dmitry Kozlov (xeb@mail.ru)
   5 *
   6 *	This program is free software; you can redistribute it and/or
   7 *	modify it under the terms of the GNU General Public License
   8 *	as published by the Free Software Foundation; either version
   9 *	2 of the License, or (at your option) any later version.
  10 *
  11 */
  12
  13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  14
  15#include <linux/capability.h>
  16#include <linux/module.h>
  17#include <linux/types.h>
  18#include <linux/kernel.h>
  19#include <linux/slab.h>
  20#include <linux/uaccess.h>
  21#include <linux/skbuff.h>
  22#include <linux/netdevice.h>
  23#include <linux/in.h>
  24#include <linux/tcp.h>
  25#include <linux/udp.h>
  26#include <linux/if_arp.h>
  27#include <linux/init.h>
  28#include <linux/in6.h>
  29#include <linux/inetdevice.h>
  30#include <linux/igmp.h>
  31#include <linux/netfilter_ipv4.h>
  32#include <linux/etherdevice.h>
  33#include <linux/if_ether.h>
  34#include <linux/hash.h>
  35#include <linux/if_tunnel.h>
  36#include <linux/ip6_tunnel.h>
  37
  38#include <net/sock.h>
  39#include <net/ip.h>
  40#include <net/ip_tunnels.h>
  41#include <net/icmp.h>
  42#include <net/protocol.h>
  43#include <net/addrconf.h>
  44#include <net/arp.h>
  45#include <net/checksum.h>
  46#include <net/dsfield.h>
  47#include <net/inet_ecn.h>
  48#include <net/xfrm.h>
  49#include <net/net_namespace.h>
  50#include <net/netns/generic.h>
  51#include <net/rtnetlink.h>
  52
  53#include <net/ipv6.h>
  54#include <net/ip6_fib.h>
  55#include <net/ip6_route.h>
  56#include <net/ip6_tunnel.h>
 
 
 
  57
  58
  59static bool log_ecn_error = true;
  60module_param(log_ecn_error, bool, 0644);
  61MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
  62
  63#define HASH_SIZE_SHIFT  5
  64#define HASH_SIZE (1 << HASH_SIZE_SHIFT)
  65
  66static int ip6gre_net_id __read_mostly;
  67struct ip6gre_net {
  68	struct ip6_tnl __rcu *tunnels[4][HASH_SIZE];
  69
 
 
  70	struct net_device *fb_tunnel_dev;
  71};
  72
  73static struct rtnl_link_ops ip6gre_link_ops __read_mostly;
  74static struct rtnl_link_ops ip6gre_tap_ops __read_mostly;
 
  75static int ip6gre_tunnel_init(struct net_device *dev);
  76static void ip6gre_tunnel_setup(struct net_device *dev);
  77static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t);
  78static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu);
 
  79
  80/* Tunnel hash table */
  81
  82/*
  83   4 hash tables:
  84
  85   3: (remote,local)
  86   2: (remote,*)
  87   1: (*,local)
  88   0: (*,*)
  89
  90   We require exact key match i.e. if a key is present in packet
  91   it will match only tunnel with the same key; if it is not present,
  92   it will match only keyless tunnel.
  93
  94   All keysless packets, if not matched configured keyless tunnels
  95   will match fallback tunnel.
  96 */
  97
  98#define HASH_KEY(key) (((__force u32)key^((__force u32)key>>4))&(HASH_SIZE - 1))
  99static u32 HASH_ADDR(const struct in6_addr *addr)
 100{
 101	u32 hash = ipv6_addr_hash(addr);
 102
 103	return hash_32(hash, HASH_SIZE_SHIFT);
 104}
 105
 106#define tunnels_r_l	tunnels[3]
 107#define tunnels_r	tunnels[2]
 108#define tunnels_l	tunnels[1]
 109#define tunnels_wc	tunnels[0]
 110
 111/* Given src, dst and key, find appropriate for input tunnel. */
 112
 113static struct ip6_tnl *ip6gre_tunnel_lookup(struct net_device *dev,
 114		const struct in6_addr *remote, const struct in6_addr *local,
 115		__be32 key, __be16 gre_proto)
 116{
 117	struct net *net = dev_net(dev);
 118	int link = dev->ifindex;
 119	unsigned int h0 = HASH_ADDR(remote);
 120	unsigned int h1 = HASH_KEY(key);
 121	struct ip6_tnl *t, *cand = NULL;
 122	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
 123	int dev_type = (gre_proto == htons(ETH_P_TEB)) ?
 
 
 124		       ARPHRD_ETHER : ARPHRD_IP6GRE;
 125	int score, cand_score = 4;
 
 126
 127	for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) {
 128		if (!ipv6_addr_equal(local, &t->parms.laddr) ||
 129		    !ipv6_addr_equal(remote, &t->parms.raddr) ||
 130		    key != t->parms.i_key ||
 131		    !(t->dev->flags & IFF_UP))
 132			continue;
 133
 134		if (t->dev->type != ARPHRD_IP6GRE &&
 135		    t->dev->type != dev_type)
 136			continue;
 137
 138		score = 0;
 139		if (t->parms.link != link)
 140			score |= 1;
 141		if (t->dev->type != dev_type)
 142			score |= 2;
 143		if (score == 0)
 144			return t;
 145
 146		if (score < cand_score) {
 147			cand = t;
 148			cand_score = score;
 149		}
 150	}
 151
 152	for_each_ip_tunnel_rcu(t, ign->tunnels_r[h0 ^ h1]) {
 153		if (!ipv6_addr_equal(remote, &t->parms.raddr) ||
 154		    key != t->parms.i_key ||
 155		    !(t->dev->flags & IFF_UP))
 156			continue;
 157
 158		if (t->dev->type != ARPHRD_IP6GRE &&
 159		    t->dev->type != dev_type)
 160			continue;
 161
 162		score = 0;
 163		if (t->parms.link != link)
 164			score |= 1;
 165		if (t->dev->type != dev_type)
 166			score |= 2;
 167		if (score == 0)
 168			return t;
 169
 170		if (score < cand_score) {
 171			cand = t;
 172			cand_score = score;
 173		}
 174	}
 175
 176	for_each_ip_tunnel_rcu(t, ign->tunnels_l[h1]) {
 177		if ((!ipv6_addr_equal(local, &t->parms.laddr) &&
 178			  (!ipv6_addr_equal(local, &t->parms.raddr) ||
 179				 !ipv6_addr_is_multicast(local))) ||
 180		    key != t->parms.i_key ||
 181		    !(t->dev->flags & IFF_UP))
 182			continue;
 183
 184		if (t->dev->type != ARPHRD_IP6GRE &&
 185		    t->dev->type != dev_type)
 186			continue;
 187
 188		score = 0;
 189		if (t->parms.link != link)
 190			score |= 1;
 191		if (t->dev->type != dev_type)
 192			score |= 2;
 193		if (score == 0)
 194			return t;
 195
 196		if (score < cand_score) {
 197			cand = t;
 198			cand_score = score;
 199		}
 200	}
 201
 202	for_each_ip_tunnel_rcu(t, ign->tunnels_wc[h1]) {
 203		if (t->parms.i_key != key ||
 204		    !(t->dev->flags & IFF_UP))
 205			continue;
 206
 207		if (t->dev->type != ARPHRD_IP6GRE &&
 208		    t->dev->type != dev_type)
 209			continue;
 210
 211		score = 0;
 212		if (t->parms.link != link)
 213			score |= 1;
 214		if (t->dev->type != dev_type)
 215			score |= 2;
 216		if (score == 0)
 217			return t;
 218
 219		if (score < cand_score) {
 220			cand = t;
 221			cand_score = score;
 222		}
 223	}
 224
 225	if (cand)
 226		return cand;
 227
 228	dev = ign->fb_tunnel_dev;
 229	if (dev->flags & IFF_UP)
 230		return netdev_priv(dev);
 
 
 
 
 
 
 
 
 
 231
 232	return NULL;
 233}
 234
 235static struct ip6_tnl __rcu **__ip6gre_bucket(struct ip6gre_net *ign,
 236		const struct __ip6_tnl_parm *p)
 237{
 238	const struct in6_addr *remote = &p->raddr;
 239	const struct in6_addr *local = &p->laddr;
 240	unsigned int h = HASH_KEY(p->i_key);
 241	int prio = 0;
 242
 243	if (!ipv6_addr_any(local))
 244		prio |= 1;
 245	if (!ipv6_addr_any(remote) && !ipv6_addr_is_multicast(remote)) {
 246		prio |= 2;
 247		h ^= HASH_ADDR(remote);
 248	}
 249
 250	return &ign->tunnels[prio][h];
 251}
 252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 253static inline struct ip6_tnl __rcu **ip6gre_bucket(struct ip6gre_net *ign,
 254		const struct ip6_tnl *t)
 255{
 256	return __ip6gre_bucket(ign, &t->parms);
 257}
 258
 259static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t)
 260{
 261	struct ip6_tnl __rcu **tp = ip6gre_bucket(ign, t);
 262
 263	rcu_assign_pointer(t->next, rtnl_dereference(*tp));
 264	rcu_assign_pointer(*tp, t);
 265}
 266
 267static void ip6gre_tunnel_unlink(struct ip6gre_net *ign, struct ip6_tnl *t)
 268{
 269	struct ip6_tnl __rcu **tp;
 270	struct ip6_tnl *iter;
 271
 272	for (tp = ip6gre_bucket(ign, t);
 273	     (iter = rtnl_dereference(*tp)) != NULL;
 274	     tp = &iter->next) {
 275		if (t == iter) {
 276			rcu_assign_pointer(*tp, t->next);
 277			break;
 278		}
 279	}
 280}
 281
 282static struct ip6_tnl *ip6gre_tunnel_find(struct net *net,
 283					   const struct __ip6_tnl_parm *parms,
 284					   int type)
 285{
 286	const struct in6_addr *remote = &parms->raddr;
 287	const struct in6_addr *local = &parms->laddr;
 288	__be32 key = parms->i_key;
 289	int link = parms->link;
 290	struct ip6_tnl *t;
 291	struct ip6_tnl __rcu **tp;
 292	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
 293
 294	for (tp = __ip6gre_bucket(ign, parms);
 295	     (t = rtnl_dereference(*tp)) != NULL;
 296	     tp = &t->next)
 297		if (ipv6_addr_equal(local, &t->parms.laddr) &&
 298		    ipv6_addr_equal(remote, &t->parms.raddr) &&
 299		    key == t->parms.i_key &&
 300		    link == t->parms.link &&
 301		    type == t->dev->type)
 302			break;
 303
 304	return t;
 305}
 306
 307static struct ip6_tnl *ip6gre_tunnel_locate(struct net *net,
 308		const struct __ip6_tnl_parm *parms, int create)
 309{
 310	struct ip6_tnl *t, *nt;
 311	struct net_device *dev;
 312	char name[IFNAMSIZ];
 313	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
 314
 315	t = ip6gre_tunnel_find(net, parms, ARPHRD_IP6GRE);
 316	if (t && create)
 317		return NULL;
 318	if (t || !create)
 319		return t;
 320
 321	if (parms->name[0])
 322		strlcpy(name, parms->name, IFNAMSIZ);
 323	else
 
 
 324		strcpy(name, "ip6gre%d");
 325
 326	dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
 327			   ip6gre_tunnel_setup);
 328	if (!dev)
 329		return NULL;
 330
 331	dev_net_set(dev, net);
 332
 333	nt = netdev_priv(dev);
 334	nt->parms = *parms;
 335	dev->rtnl_link_ops = &ip6gre_link_ops;
 336
 337	nt->dev = dev;
 338	nt->net = dev_net(dev);
 339	ip6gre_tnl_link_config(nt, 1);
 340
 341	if (register_netdevice(dev) < 0)
 342		goto failed_free;
 343
 344	/* Can use a lockless transmit, unless we generate output sequences */
 345	if (!(nt->parms.o_flags & GRE_SEQ))
 346		dev->features |= NETIF_F_LLTX;
 347
 348	dev_hold(dev);
 349	ip6gre_tunnel_link(ign, nt);
 350	return nt;
 351
 352failed_free:
 353	free_netdev(dev);
 354	return NULL;
 355}
 356
 
 
 
 
 
 
 
 
 
 
 
 357static void ip6gre_tunnel_uninit(struct net_device *dev)
 358{
 359	struct ip6_tnl *t = netdev_priv(dev);
 360	struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
 361
 
 362	ip6gre_tunnel_unlink(ign, t);
 
 
 363	dst_cache_reset(&t->dst_cache);
 364	dev_put(dev);
 365}
 366
 367
 368static void ip6gre_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
 369		u8 type, u8 code, int offset, __be32 info)
 370{
 371	const struct ipv6hdr *ipv6h = (const struct ipv6hdr *)skb->data;
 372	__be16 *p = (__be16 *)(skb->data + offset);
 373	int grehlen = offset + 4;
 374	struct ip6_tnl *t;
 375	__be16 flags;
 376
 377	flags = p[0];
 378	if (flags&(GRE_CSUM|GRE_KEY|GRE_SEQ|GRE_ROUTING|GRE_VERSION)) {
 379		if (flags&(GRE_VERSION|GRE_ROUTING))
 380			return;
 381		if (flags&GRE_KEY) {
 382			grehlen += 4;
 383			if (flags&GRE_CSUM)
 384				grehlen += 4;
 385		}
 386	}
 387
 388	/* If only 8 bytes returned, keyed message will be dropped here */
 389	if (!pskb_may_pull(skb, grehlen))
 390		return;
 391	ipv6h = (const struct ipv6hdr *)skb->data;
 392	p = (__be16 *)(skb->data + offset);
 393
 394	t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr,
 395				flags & GRE_KEY ?
 396				*(((__be32 *)p) + (grehlen / 4) - 1) : 0,
 397				p[1]);
 398	if (!t)
 399		return;
 400
 401	switch (type) {
 402		__u32 teli;
 403		struct ipv6_tlv_tnl_enc_lim *tel;
 404		__u32 mtu;
 405	case ICMPV6_DEST_UNREACH:
 406		net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
 407				    t->parms.name);
 408		break;
 
 
 409	case ICMPV6_TIME_EXCEED:
 410		if (code == ICMPV6_EXC_HOPLIMIT) {
 411			net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
 412					    t->parms.name);
 
 413		}
 414		break;
 415	case ICMPV6_PARAMPROB:
 
 
 
 416		teli = 0;
 417		if (code == ICMPV6_HDR_FIELD)
 418			teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
 419
 420		if (teli && teli == be32_to_cpu(info) - 2) {
 421			tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
 422			if (tel->encap_limit == 0) {
 423				net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
 424						    t->parms.name);
 425			}
 426		} else {
 427			net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
 428					    t->parms.name);
 429		}
 430		break;
 
 431	case ICMPV6_PKT_TOOBIG:
 432		mtu = be32_to_cpu(info) - offset;
 433		if (mtu < IPV6_MIN_MTU)
 434			mtu = IPV6_MIN_MTU;
 435		t->dev->mtu = mtu;
 436		break;
 
 437	}
 438
 439	if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
 440		t->err_count++;
 441	else
 442		t->err_count = 1;
 443	t->err_time = jiffies;
 
 
 444}
 445
 446static int ip6gre_rcv(struct sk_buff *skb)
 447{
 448	const struct ipv6hdr *ipv6h;
 449	u8     *h;
 450	__be16    flags;
 451	__sum16   csum = 0;
 452	__be32 key = 0;
 453	u32    seqno = 0;
 454	struct ip6_tnl *tunnel;
 455	int    offset = 4;
 456	__be16 gre_proto;
 457	int err;
 458
 459	if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
 460		goto drop;
 461
 462	ipv6h = ipv6_hdr(skb);
 463	h = skb->data;
 464	flags = *(__be16 *)h;
 465
 466	if (flags&(GRE_CSUM|GRE_KEY|GRE_ROUTING|GRE_SEQ|GRE_VERSION)) {
 467		/* - Version must be 0.
 468		   - We do not support routing headers.
 469		 */
 470		if (flags&(GRE_VERSION|GRE_ROUTING))
 471			goto drop;
 
 
 
 
 
 
 472
 473		if (flags&GRE_CSUM) {
 474			csum = skb_checksum_simple_validate(skb);
 475			offset += 4;
 476		}
 477		if (flags&GRE_KEY) {
 478			key = *(__be32 *)(h + offset);
 479			offset += 4;
 480		}
 481		if (flags&GRE_SEQ) {
 482			seqno = ntohl(*(__be32 *)(h + offset));
 483			offset += 4;
 484		}
 
 
 485	}
 486
 487	gre_proto = *(__be16 *)(h + 2);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 488
 489	tunnel = ip6gre_tunnel_lookup(skb->dev,
 490					  &ipv6h->saddr, &ipv6h->daddr, key,
 491					  gre_proto);
 492	if (tunnel) {
 493		struct pcpu_sw_netstats *tstats;
 494
 495		if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
 496			goto drop;
 497
 498		if (!ip6_tnl_rcv_ctl(tunnel, &ipv6h->daddr, &ipv6h->saddr)) {
 499			tunnel->dev->stats.rx_dropped++;
 500			goto drop;
 501		}
 502
 503		skb->protocol = gre_proto;
 504		/* WCCP version 1 and 2 protocol decoding.
 505		 * - Change protocol to IPv6
 506		 * - When dealing with WCCPv2, Skip extra 4 bytes in GRE header
 507		 */
 508		if (flags == 0 && gre_proto == htons(ETH_P_WCCP)) {
 509			skb->protocol = htons(ETH_P_IPV6);
 510			if ((*(h + offset) & 0xF0) != 0x40)
 511				offset += 4;
 512		}
 513
 514		skb->mac_header = skb->network_header;
 515		__pskb_pull(skb, offset);
 516		skb_postpull_rcsum(skb, skb_transport_header(skb), offset);
 517
 518		if (((flags&GRE_CSUM) && csum) ||
 519		    (!(flags&GRE_CSUM) && tunnel->parms.i_flags&GRE_CSUM)) {
 520			tunnel->dev->stats.rx_crc_errors++;
 521			tunnel->dev->stats.rx_errors++;
 522			goto drop;
 523		}
 524		if (tunnel->parms.i_flags&GRE_SEQ) {
 525			if (!(flags&GRE_SEQ) ||
 526			    (tunnel->i_seqno &&
 527					(s32)(seqno - tunnel->i_seqno) < 0)) {
 528				tunnel->dev->stats.rx_fifo_errors++;
 529				tunnel->dev->stats.rx_errors++;
 530				goto drop;
 531			}
 532			tunnel->i_seqno = seqno + 1;
 533		}
 
 
 
 534
 535		/* Warning: All skb pointers will be invalidated! */
 536		if (tunnel->dev->type == ARPHRD_ETHER) {
 537			if (!pskb_may_pull(skb, ETH_HLEN)) {
 538				tunnel->dev->stats.rx_length_errors++;
 539				tunnel->dev->stats.rx_errors++;
 540				goto drop;
 541			}
 542
 543			ipv6h = ipv6_hdr(skb);
 544			skb->protocol = eth_type_trans(skb, tunnel->dev);
 545			skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
 546		}
 547
 548		__skb_tunnel_rx(skb, tunnel->dev, tunnel->net);
 549
 550		skb_reset_network_header(skb);
 551
 552		err = IP6_ECN_decapsulate(ipv6h, skb);
 553		if (unlikely(err)) {
 554			if (log_ecn_error)
 555				net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
 556						     &ipv6h->saddr,
 557						     ipv6_get_dsfield(ipv6h));
 558			if (err > 1) {
 559				++tunnel->dev->stats.rx_frame_errors;
 560				++tunnel->dev->stats.rx_errors;
 561				goto drop;
 562			}
 563		}
 564
 565		tstats = this_cpu_ptr(tunnel->dev->tstats);
 566		u64_stats_update_begin(&tstats->syncp);
 567		tstats->rx_packets++;
 568		tstats->rx_bytes += skb->len;
 569		u64_stats_update_end(&tstats->syncp);
 570
 571		netif_rx(skb);
 
 572
 573		return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 574	}
 575	icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
 576
 
 
 
 
 
 577drop:
 578	kfree_skb(skb);
 579	return 0;
 580}
 581
 582struct ipv6_tel_txoption {
 583	struct ipv6_txoptions ops;
 584	__u8 dst_opt[8];
 585};
 586
 587static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
 588{
 589	memset(opt, 0, sizeof(struct ipv6_tel_txoption));
 
 
 590
 591	opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
 592	opt->dst_opt[3] = 1;
 593	opt->dst_opt[4] = encap_limit;
 594	opt->dst_opt[5] = IPV6_TLV_PADN;
 595	opt->dst_opt[6] = 1;
 596
 597	opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
 598	opt->ops.opt_nflen = 8;
 599}
 600
 601static netdev_tx_t ip6gre_xmit2(struct sk_buff *skb,
 602			 struct net_device *dev,
 603			 __u8 dsfield,
 604			 struct flowi6 *fl6,
 605			 int encap_limit,
 606			 __u32 *pmtu)
 607{
 608	struct ip6_tnl *tunnel = netdev_priv(dev);
 609	struct net *net = tunnel->net;
 610	struct net_device *tdev;    /* Device to other host */
 611	struct ipv6hdr  *ipv6h;     /* Our new IP header */
 612	unsigned int max_headroom = 0; /* The extra header space needed */
 613	int    gre_hlen;
 614	struct ipv6_tel_txoption opt;
 615	int    mtu;
 616	struct dst_entry *dst = NULL, *ndst = NULL;
 617	struct net_device_stats *stats = &tunnel->dev->stats;
 618	int err = -1;
 619	u8 proto;
 620	struct sk_buff *new_skb;
 621	__be16 protocol;
 622
 623	if (dev->type == ARPHRD_ETHER)
 624		IPCB(skb)->flags = 0;
 625
 626	if (dev->header_ops && dev->type == ARPHRD_IP6GRE) {
 627		gre_hlen = 0;
 628		ipv6h = (struct ipv6hdr *)skb->data;
 629		fl6->daddr = ipv6h->daddr;
 630	} else {
 631		gre_hlen = tunnel->hlen;
 632		fl6->daddr = tunnel->parms.raddr;
 633	}
 634
 635	if (!fl6->flowi6_mark)
 636		dst = dst_cache_get(&tunnel->dst_cache);
 
 
 637
 638	if (!dst) {
 639		dst = ip6_route_output(net, NULL, fl6);
 640
 641		if (dst->error)
 642			goto tx_err_link_failure;
 643		dst = xfrm_lookup(net, dst, flowi6_to_flowi(fl6), NULL, 0);
 644		if (IS_ERR(dst)) {
 645			err = PTR_ERR(dst);
 646			dst = NULL;
 647			goto tx_err_link_failure;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 648		}
 649		ndst = dst;
 
 
 650	}
 651
 652	tdev = dst->dev;
 653
 654	if (tdev == dev) {
 655		stats->collisions++;
 656		net_warn_ratelimited("%s: Local routing loop detected!\n",
 657				     tunnel->parms.name);
 658		goto tx_err_dst_release;
 659	}
 660
 661	mtu = dst_mtu(dst) - sizeof(*ipv6h);
 662	if (encap_limit >= 0) {
 663		max_headroom += 8;
 664		mtu -= 8;
 665	}
 666	if (mtu < IPV6_MIN_MTU)
 667		mtu = IPV6_MIN_MTU;
 668	if (skb_dst(skb))
 669		skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
 670	if (skb->len > mtu) {
 671		*pmtu = mtu;
 672		err = -EMSGSIZE;
 673		goto tx_err_dst_release;
 674	}
 675
 676	if (tunnel->err_count > 0) {
 677		if (time_before(jiffies,
 678				tunnel->err_time + IP6TUNNEL_ERR_TIMEO)) {
 679			tunnel->err_count--;
 680
 681			dst_link_failure(skb);
 682		} else
 683			tunnel->err_count = 0;
 684	}
 685
 686	skb_scrub_packet(skb, !net_eq(tunnel->net, dev_net(dev)));
 
 687
 688	max_headroom += LL_RESERVED_SPACE(tdev) + gre_hlen + dst->header_len;
 
 
 
 
 
 689
 690	if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
 691	    (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
 692		new_skb = skb_realloc_headroom(skb, max_headroom);
 693		if (max_headroom > dev->needed_headroom)
 694			dev->needed_headroom = max_headroom;
 695		if (!new_skb)
 696			goto tx_err_dst_release;
 697
 698		if (skb->sk)
 699			skb_set_owner_w(new_skb, skb->sk);
 700		consume_skb(skb);
 701		skb = new_skb;
 702	}
 703
 704	if (!fl6->flowi6_mark && ndst)
 705		dst_cache_set_ip6(&tunnel->dst_cache, ndst, &fl6->saddr);
 706	skb_dst_set(skb, dst);
 
 707
 708	proto = NEXTHDR_GRE;
 709	if (encap_limit >= 0) {
 710		init_tel_txopt(&opt, encap_limit);
 711		ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
 712	}
 713
 714	if (likely(!skb->encapsulation)) {
 715		skb_reset_inner_headers(skb);
 716		skb->encapsulation = 1;
 717	}
 718
 719	skb_push(skb, gre_hlen);
 720	skb_reset_network_header(skb);
 721	skb_set_transport_header(skb, sizeof(*ipv6h));
 722
 723	/*
 724	 *	Push down and install the IP header.
 725	 */
 726	ipv6h = ipv6_hdr(skb);
 727	ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield),
 728		     ip6_make_flowlabel(net, skb, fl6->flowlabel, true, fl6));
 729	ipv6h->hop_limit = tunnel->parms.hop_limit;
 730	ipv6h->nexthdr = proto;
 731	ipv6h->saddr = fl6->saddr;
 732	ipv6h->daddr = fl6->daddr;
 733
 734	((__be16 *)(ipv6h + 1))[0] = tunnel->parms.o_flags;
 735	protocol = (dev->type == ARPHRD_ETHER) ?
 736		    htons(ETH_P_TEB) : skb->protocol;
 737	((__be16 *)(ipv6h + 1))[1] = protocol;
 738
 739	if (tunnel->parms.o_flags&(GRE_KEY|GRE_CSUM|GRE_SEQ)) {
 740		__be32 *ptr = (__be32 *)(((u8 *)ipv6h) + tunnel->hlen - 4);
 741
 742		if (tunnel->parms.o_flags&GRE_SEQ) {
 743			++tunnel->o_seqno;
 744			*ptr = htonl(tunnel->o_seqno);
 745			ptr--;
 746		}
 747		if (tunnel->parms.o_flags&GRE_KEY) {
 748			*ptr = tunnel->parms.o_key;
 749			ptr--;
 750		}
 751		if (tunnel->parms.o_flags&GRE_CSUM) {
 752			*ptr = 0;
 753			*(__sum16 *)ptr = ip_compute_csum((void *)(ipv6h+1),
 754				skb->len - sizeof(struct ipv6hdr));
 755		}
 756	}
 757
 758	skb_set_inner_protocol(skb, protocol);
 
 759
 760	ip6tunnel_xmit(NULL, skb, dev);
 761	return 0;
 762tx_err_link_failure:
 763	stats->tx_carrier_errors++;
 764	dst_link_failure(skb);
 765tx_err_dst_release:
 766	dst_release(dst);
 767	return err;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 768}
 769
 770static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev)
 771{
 772	struct ip6_tnl *t = netdev_priv(dev);
 773	const struct iphdr  *iph = ip_hdr(skb);
 774	int encap_limit = -1;
 775	struct flowi6 fl6;
 776	__u8 dsfield;
 777	__u32 mtu;
 778	int err;
 779
 780	memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
 781
 782	if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
 783		encap_limit = t->parms.encap_limit;
 784
 785	memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
 786	fl6.flowi6_proto = IPPROTO_GRE;
 787
 788	dsfield = ipv4_get_dsfield(iph);
 789
 790	if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
 791		fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
 792					  & IPV6_TCLASS_MASK;
 793	if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
 794		fl6.flowi6_mark = skb->mark;
 795
 796	err = ip6gre_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
 
 797	if (err != 0) {
 798		/* XXX: send ICMP error even if DF is not set. */
 799		if (err == -EMSGSIZE)
 800			icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
 801				  htonl(mtu));
 802		return -1;
 803	}
 804
 805	return 0;
 806}
 807
 808static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev)
 809{
 810	struct ip6_tnl *t = netdev_priv(dev);
 811	struct ipv6hdr *ipv6h = ipv6_hdr(skb);
 812	int encap_limit = -1;
 813	__u16 offset;
 814	struct flowi6 fl6;
 815	__u8 dsfield;
 816	__u32 mtu;
 817	int err;
 818
 819	if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
 820		return -1;
 821
 822	offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
 823	if (offset > 0) {
 824		struct ipv6_tlv_tnl_enc_lim *tel;
 825		tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
 826		if (tel->encap_limit == 0) {
 827			icmpv6_send(skb, ICMPV6_PARAMPROB,
 828				    ICMPV6_HDR_FIELD, offset + 2);
 829			return -1;
 830		}
 831		encap_limit = tel->encap_limit - 1;
 832	} else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
 833		encap_limit = t->parms.encap_limit;
 834
 835	memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
 836	fl6.flowi6_proto = IPPROTO_GRE;
 837
 838	dsfield = ipv6_get_dsfield(ipv6h);
 839	if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
 840		fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
 841	if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
 842		fl6.flowlabel |= ip6_flowlabel(ipv6h);
 843	if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
 844		fl6.flowi6_mark = skb->mark;
 845
 846	err = ip6gre_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
 
 847	if (err != 0) {
 848		if (err == -EMSGSIZE)
 849			icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
 850		return -1;
 851	}
 852
 853	return 0;
 854}
 855
 856/**
 857 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
 858 *   @t: the outgoing tunnel device
 859 *   @hdr: IPv6 header from the incoming packet
 860 *
 861 * Description:
 862 *   Avoid trivial tunneling loop by checking that tunnel exit-point
 863 *   doesn't match source of incoming packet.
 864 *
 865 * Return:
 866 *   1 if conflict,
 867 *   0 else
 868 **/
 869
 870static inline bool ip6gre_tnl_addr_conflict(const struct ip6_tnl *t,
 871	const struct ipv6hdr *hdr)
 872{
 873	return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
 874}
 875
 876static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev)
 877{
 878	struct ip6_tnl *t = netdev_priv(dev);
 879	int encap_limit = -1;
 880	struct flowi6 fl6;
 
 881	__u32 mtu;
 882	int err;
 883
 884	if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
 885		encap_limit = t->parms.encap_limit;
 886
 887	memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
 888	fl6.flowi6_proto = skb->protocol;
 889
 890	err = ip6gre_xmit2(skb, dev, 0, &fl6, encap_limit, &mtu);
 
 
 
 
 891
 892	return err;
 893}
 894
 895static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
 896	struct net_device *dev)
 897{
 898	struct ip6_tnl *t = netdev_priv(dev);
 899	struct net_device_stats *stats = &t->dev->stats;
 900	int ret;
 901
 
 
 
 902	if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
 903		goto tx_err;
 904
 905	switch (skb->protocol) {
 
 906	case htons(ETH_P_IP):
 907		ret = ip6gre_xmit_ipv4(skb, dev);
 908		break;
 909	case htons(ETH_P_IPV6):
 910		ret = ip6gre_xmit_ipv6(skb, dev);
 911		break;
 912	default:
 913		ret = ip6gre_xmit_other(skb, dev);
 914		break;
 915	}
 916
 917	if (ret < 0)
 918		goto tx_err;
 919
 920	return NETDEV_TX_OK;
 921
 922tx_err:
 923	stats->tx_errors++;
 924	stats->tx_dropped++;
 
 925	kfree_skb(skb);
 926	return NETDEV_TX_OK;
 927}
 928
 929static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 930{
 931	struct net_device *dev = t->dev;
 932	struct __ip6_tnl_parm *p = &t->parms;
 933	struct flowi6 *fl6 = &t->fl.u.ip6;
 934	int addend = sizeof(struct ipv6hdr) + 4;
 935
 936	if (dev->type != ARPHRD_ETHER) {
 937		memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
 938		memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
 939	}
 940
 941	/* Set up flowi template */
 942	fl6->saddr = p->laddr;
 943	fl6->daddr = p->raddr;
 944	fl6->flowi6_oif = p->link;
 945	fl6->flowlabel = 0;
 
 
 946
 947	if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
 948		fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
 949	if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
 950		fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
 951
 952	p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
 953	p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
 954
 955	if (p->flags&IP6_TNL_F_CAP_XMIT &&
 956			p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER)
 957		dev->flags |= IFF_POINTOPOINT;
 958	else
 959		dev->flags &= ~IFF_POINTOPOINT;
 
 960
 961	/* Precalculate GRE options length */
 962	if (t->parms.o_flags&(GRE_CSUM|GRE_KEY|GRE_SEQ)) {
 963		if (t->parms.o_flags&GRE_CSUM)
 964			addend += 4;
 965		if (t->parms.o_flags&GRE_KEY)
 966			addend += 4;
 967		if (t->parms.o_flags&GRE_SEQ)
 968			addend += 4;
 969	}
 970	t->hlen = addend;
 971
 972	if (p->flags & IP6_TNL_F_CAP_XMIT) {
 973		int strict = (ipv6_addr_type(&p->raddr) &
 974			      (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
 975
 976		struct rt6_info *rt = rt6_lookup(t->net,
 977						 &p->raddr, &p->laddr,
 978						 p->link, strict);
 979
 980		if (!rt)
 981			return;
 982
 983		if (rt->dst.dev) {
 984			dev->hard_header_len = rt->dst.dev->hard_header_len + addend;
 
 
 
 
 
 
 985
 986			if (set_mtu) {
 987				dev->mtu = rt->dst.dev->mtu - addend;
 988				if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
 989					dev->mtu -= 8;
 990
 991				if (dev->mtu < IPV6_MIN_MTU)
 992					dev->mtu = IPV6_MIN_MTU;
 
 
 
 
 
 
 993			}
 994		}
 995		ip6_rt_put(rt);
 996	}
 997}
 998
 999static int ip6gre_tnl_change(struct ip6_tnl *t,
1000	const struct __ip6_tnl_parm *p, int set_mtu)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1001{
1002	t->parms.laddr = p->laddr;
1003	t->parms.raddr = p->raddr;
1004	t->parms.flags = p->flags;
1005	t->parms.hop_limit = p->hop_limit;
1006	t->parms.encap_limit = p->encap_limit;
1007	t->parms.flowinfo = p->flowinfo;
1008	t->parms.link = p->link;
1009	t->parms.proto = p->proto;
1010	t->parms.i_key = p->i_key;
1011	t->parms.o_key = p->o_key;
1012	t->parms.i_flags = p->i_flags;
1013	t->parms.o_flags = p->o_flags;
 
 
 
 
 
1014	dst_cache_reset(&t->dst_cache);
 
 
 
 
 
 
1015	ip6gre_tnl_link_config(t, set_mtu);
1016	return 0;
1017}
1018
1019static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
1020	const struct ip6_tnl_parm2 *u)
1021{
1022	p->laddr = u->laddr;
1023	p->raddr = u->raddr;
1024	p->flags = u->flags;
1025	p->hop_limit = u->hop_limit;
1026	p->encap_limit = u->encap_limit;
1027	p->flowinfo = u->flowinfo;
1028	p->link = u->link;
1029	p->i_key = u->i_key;
1030	p->o_key = u->o_key;
1031	p->i_flags = u->i_flags;
1032	p->o_flags = u->o_flags;
1033	memcpy(p->name, u->name, sizeof(u->name));
1034}
1035
1036static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
1037	const struct __ip6_tnl_parm *p)
1038{
1039	u->proto = IPPROTO_GRE;
1040	u->laddr = p->laddr;
1041	u->raddr = p->raddr;
1042	u->flags = p->flags;
1043	u->hop_limit = p->hop_limit;
1044	u->encap_limit = p->encap_limit;
1045	u->flowinfo = p->flowinfo;
1046	u->link = p->link;
1047	u->i_key = p->i_key;
1048	u->o_key = p->o_key;
1049	u->i_flags = p->i_flags;
1050	u->o_flags = p->o_flags;
1051	memcpy(u->name, p->name, sizeof(u->name));
1052}
1053
1054static int ip6gre_tunnel_ioctl(struct net_device *dev,
1055	struct ifreq *ifr, int cmd)
 
1056{
1057	int err = 0;
1058	struct ip6_tnl_parm2 p;
1059	struct __ip6_tnl_parm p1;
1060	struct ip6_tnl *t = netdev_priv(dev);
1061	struct net *net = t->net;
1062	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1063
 
 
1064	switch (cmd) {
1065	case SIOCGETTUNNEL:
1066		if (dev == ign->fb_tunnel_dev) {
1067			if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
1068				err = -EFAULT;
1069				break;
1070			}
1071			ip6gre_tnl_parm_from_user(&p1, &p);
1072			t = ip6gre_tunnel_locate(net, &p1, 0);
1073			if (!t)
1074				t = netdev_priv(dev);
1075		}
1076		memset(&p, 0, sizeof(p));
1077		ip6gre_tnl_parm_to_user(&p, &t->parms);
1078		if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
1079			err = -EFAULT;
1080		break;
1081
1082	case SIOCADDTUNNEL:
1083	case SIOCCHGTUNNEL:
1084		err = -EPERM;
1085		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1086			goto done;
1087
1088		err = -EFAULT;
1089		if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1090			goto done;
1091
1092		err = -EINVAL;
1093		if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
1094			goto done;
1095
1096		if (!(p.i_flags&GRE_KEY))
1097			p.i_key = 0;
1098		if (!(p.o_flags&GRE_KEY))
1099			p.o_key = 0;
1100
1101		ip6gre_tnl_parm_from_user(&p1, &p);
1102		t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
1103
1104		if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
1105			if (t) {
1106				if (t->dev != dev) {
1107					err = -EEXIST;
1108					break;
1109				}
1110			} else {
1111				t = netdev_priv(dev);
1112
1113				ip6gre_tunnel_unlink(ign, t);
1114				synchronize_net();
1115				ip6gre_tnl_change(t, &p1, 1);
1116				ip6gre_tunnel_link(ign, t);
1117				netdev_state_change(dev);
1118			}
1119		}
1120
1121		if (t) {
1122			err = 0;
1123
1124			memset(&p, 0, sizeof(p));
1125			ip6gre_tnl_parm_to_user(&p, &t->parms);
1126			if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
1127				err = -EFAULT;
1128		} else
1129			err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1130		break;
1131
1132	case SIOCDELTUNNEL:
1133		err = -EPERM;
1134		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1135			goto done;
1136
1137		if (dev == ign->fb_tunnel_dev) {
1138			err = -EFAULT;
1139			if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1140				goto done;
1141			err = -ENOENT;
1142			ip6gre_tnl_parm_from_user(&p1, &p);
1143			t = ip6gre_tunnel_locate(net, &p1, 0);
1144			if (!t)
1145				goto done;
1146			err = -EPERM;
1147			if (t == netdev_priv(ign->fb_tunnel_dev))
1148				goto done;
1149			dev = t->dev;
1150		}
1151		unregister_netdevice(dev);
1152		err = 0;
1153		break;
1154
1155	default:
1156		err = -EINVAL;
1157	}
1158
1159done:
1160	return err;
1161}
1162
1163static int ip6gre_tunnel_change_mtu(struct net_device *dev, int new_mtu)
1164{
1165	if (new_mtu < 68 ||
1166	    new_mtu > 0xFFF8 - dev->hard_header_len)
1167		return -EINVAL;
1168	dev->mtu = new_mtu;
1169	return 0;
1170}
1171
1172static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
1173			unsigned short type,
1174			const void *daddr, const void *saddr, unsigned int len)
1175{
1176	struct ip6_tnl *t = netdev_priv(dev);
1177	struct ipv6hdr *ipv6h = (struct ipv6hdr *)skb_push(skb, t->hlen);
1178	__be16 *p = (__be16 *)(ipv6h+1);
1179
1180	ip6_flow_hdr(ipv6h, 0,
1181		     ip6_make_flowlabel(dev_net(dev), skb,
1182					t->fl.u.ip6.flowlabel, true,
1183					&t->fl.u.ip6));
1184	ipv6h->hop_limit = t->parms.hop_limit;
1185	ipv6h->nexthdr = NEXTHDR_GRE;
1186	ipv6h->saddr = t->parms.laddr;
1187	ipv6h->daddr = t->parms.raddr;
1188
1189	p[0]		= t->parms.o_flags;
1190	p[1]		= htons(type);
 
1191
1192	/*
1193	 *	Set the source hardware address.
1194	 */
1195
1196	if (saddr)
1197		memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
1198	if (daddr)
1199		memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
1200	if (!ipv6_addr_any(&ipv6h->daddr))
1201		return t->hlen;
1202
1203	return -t->hlen;
1204}
1205
1206static const struct header_ops ip6gre_header_ops = {
1207	.create	= ip6gre_header,
1208};
1209
1210static const struct net_device_ops ip6gre_netdev_ops = {
1211	.ndo_init		= ip6gre_tunnel_init,
1212	.ndo_uninit		= ip6gre_tunnel_uninit,
1213	.ndo_start_xmit		= ip6gre_tunnel_xmit,
1214	.ndo_do_ioctl		= ip6gre_tunnel_ioctl,
1215	.ndo_change_mtu		= ip6gre_tunnel_change_mtu,
1216	.ndo_get_stats64	= ip_tunnel_get_stats64,
1217	.ndo_get_iflink		= ip6_tnl_get_iflink,
1218};
1219
1220static void ip6gre_dev_free(struct net_device *dev)
1221{
1222	struct ip6_tnl *t = netdev_priv(dev);
1223
 
1224	dst_cache_destroy(&t->dst_cache);
1225	free_percpu(dev->tstats);
1226	free_netdev(dev);
1227}
1228
1229static void ip6gre_tunnel_setup(struct net_device *dev)
1230{
1231	struct ip6_tnl *t;
1232
1233	dev->netdev_ops = &ip6gre_netdev_ops;
1234	dev->destructor = ip6gre_dev_free;
 
1235
 
1236	dev->type = ARPHRD_IP6GRE;
1237	dev->hard_header_len = LL_MAX_HEADER + sizeof(struct ipv6hdr) + 4;
1238	dev->mtu = ETH_DATA_LEN - sizeof(struct ipv6hdr) - 4;
1239	t = netdev_priv(dev);
1240	if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1241		dev->mtu -= 8;
1242	dev->flags |= IFF_NOARP;
1243	dev->addr_len = sizeof(struct in6_addr);
1244	netif_keep_dst(dev);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1245}
1246
1247static int ip6gre_tunnel_init_common(struct net_device *dev)
1248{
1249	struct ip6_tnl *tunnel;
1250	int ret;
 
1251
1252	tunnel = netdev_priv(dev);
1253
1254	tunnel->dev = dev;
1255	tunnel->net = dev_net(dev);
1256	strcpy(tunnel->parms.name, dev->name);
1257
1258	dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1259	if (!dev->tstats)
1260		return -ENOMEM;
1261
1262	ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
1263	if (ret) {
1264		free_percpu(dev->tstats);
1265		dev->tstats = NULL;
1266		return ret;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1267	}
 
1268
 
 
1269	return 0;
 
 
 
 
1270}
1271
1272static int ip6gre_tunnel_init(struct net_device *dev)
1273{
1274	struct ip6_tnl *tunnel;
1275	int ret;
1276
1277	ret = ip6gre_tunnel_init_common(dev);
1278	if (ret)
1279		return ret;
1280
1281	tunnel = netdev_priv(dev);
1282
1283	memcpy(dev->dev_addr, &tunnel->parms.laddr, sizeof(struct in6_addr));
 
 
 
1284	memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1285
1286	if (ipv6_addr_any(&tunnel->parms.raddr))
1287		dev->header_ops = &ip6gre_header_ops;
1288
1289	return 0;
1290}
1291
1292static void ip6gre_fb_tunnel_init(struct net_device *dev)
1293{
1294	struct ip6_tnl *tunnel = netdev_priv(dev);
1295
1296	tunnel->dev = dev;
1297	tunnel->net = dev_net(dev);
1298	strcpy(tunnel->parms.name, dev->name);
1299
1300	tunnel->hlen		= sizeof(struct ipv6hdr) + 4;
1301
1302	dev_hold(dev);
1303}
1304
1305
1306static struct inet6_protocol ip6gre_protocol __read_mostly = {
1307	.handler     = ip6gre_rcv,
1308	.err_handler = ip6gre_err,
1309	.flags       = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1310};
1311
1312static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
1313{
1314	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1315	struct net_device *dev, *aux;
1316	int prio;
1317
1318	for_each_netdev_safe(net, dev, aux)
1319		if (dev->rtnl_link_ops == &ip6gre_link_ops ||
1320		    dev->rtnl_link_ops == &ip6gre_tap_ops)
 
1321			unregister_netdevice_queue(dev, head);
1322
1323	for (prio = 0; prio < 4; prio++) {
1324		int h;
1325		for (h = 0; h < HASH_SIZE; h++) {
1326			struct ip6_tnl *t;
1327
1328			t = rtnl_dereference(ign->tunnels[prio][h]);
1329
1330			while (t) {
1331				/* If dev is in the same netns, it has already
1332				 * been added to the list by the previous loop.
1333				 */
1334				if (!net_eq(dev_net(t->dev), net))
1335					unregister_netdevice_queue(t->dev,
1336								   head);
1337				t = rtnl_dereference(t->next);
1338			}
1339		}
1340	}
1341}
1342
1343static int __net_init ip6gre_init_net(struct net *net)
1344{
1345	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
 
1346	int err;
1347
1348	ign->fb_tunnel_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
1349					  NET_NAME_UNKNOWN,
1350					  ip6gre_tunnel_setup);
1351	if (!ign->fb_tunnel_dev) {
 
1352		err = -ENOMEM;
1353		goto err_alloc_dev;
1354	}
 
1355	dev_net_set(ign->fb_tunnel_dev, net);
1356	/* FB netdevice is special: we have one, and only one per netns.
1357	 * Allowing to move it to another netns is clearly unsafe.
1358	 */
1359	ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1360
1361
1362	ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1363	ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1364
1365	err = register_netdev(ign->fb_tunnel_dev);
1366	if (err)
1367		goto err_reg_dev;
1368
1369	rcu_assign_pointer(ign->tunnels_wc[0],
1370			   netdev_priv(ign->fb_tunnel_dev));
1371	return 0;
1372
1373err_reg_dev:
1374	ip6gre_dev_free(ign->fb_tunnel_dev);
1375err_alloc_dev:
1376	return err;
1377}
1378
1379static void __net_exit ip6gre_exit_net(struct net *net)
 
1380{
1381	LIST_HEAD(list);
1382
1383	rtnl_lock();
1384	ip6gre_destroy_tunnels(net, &list);
1385	unregister_netdevice_many(&list);
1386	rtnl_unlock();
1387}
1388
1389static struct pernet_operations ip6gre_net_ops = {
1390	.init = ip6gre_init_net,
1391	.exit = ip6gre_exit_net,
1392	.id   = &ip6gre_net_id,
1393	.size = sizeof(struct ip6gre_net),
1394};
1395
1396static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
 
1397{
1398	__be16 flags;
1399
1400	if (!data)
1401		return 0;
1402
1403	flags = 0;
1404	if (data[IFLA_GRE_IFLAGS])
1405		flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1406	if (data[IFLA_GRE_OFLAGS])
1407		flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1408	if (flags & (GRE_VERSION|GRE_ROUTING))
1409		return -EINVAL;
1410
1411	return 0;
1412}
1413
1414static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[])
 
1415{
1416	struct in6_addr daddr;
1417
1418	if (tb[IFLA_ADDRESS]) {
1419		if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1420			return -EINVAL;
1421		if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1422			return -EADDRNOTAVAIL;
1423	}
1424
1425	if (!data)
1426		goto out;
1427
1428	if (data[IFLA_GRE_REMOTE]) {
1429		daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
1430		if (ipv6_addr_any(&daddr))
1431			return -EINVAL;
1432	}
1433
1434out:
1435	return ip6gre_tunnel_validate(tb, data);
1436}
1437
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1438
1439static void ip6gre_netlink_parms(struct nlattr *data[],
1440				struct __ip6_tnl_parm *parms)
1441{
1442	memset(parms, 0, sizeof(*parms));
1443
1444	if (!data)
1445		return;
1446
1447	if (data[IFLA_GRE_LINK])
1448		parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1449
1450	if (data[IFLA_GRE_IFLAGS])
1451		parms->i_flags = nla_get_be16(data[IFLA_GRE_IFLAGS]);
 
1452
1453	if (data[IFLA_GRE_OFLAGS])
1454		parms->o_flags = nla_get_be16(data[IFLA_GRE_OFLAGS]);
 
1455
1456	if (data[IFLA_GRE_IKEY])
1457		parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1458
1459	if (data[IFLA_GRE_OKEY])
1460		parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1461
1462	if (data[IFLA_GRE_LOCAL])
1463		parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
1464
1465	if (data[IFLA_GRE_REMOTE])
1466		parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
1467
1468	if (data[IFLA_GRE_TTL])
1469		parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1470
1471	if (data[IFLA_GRE_ENCAP_LIMIT])
1472		parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1473
1474	if (data[IFLA_GRE_FLOWINFO])
1475		parms->flowinfo = nla_get_u32(data[IFLA_GRE_FLOWINFO]);
1476
1477	if (data[IFLA_GRE_FLAGS])
1478		parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
 
 
 
 
 
 
1479}
1480
1481static int ip6gre_tap_init(struct net_device *dev)
1482{
1483	struct ip6_tnl *tunnel;
1484	int ret;
1485
1486	ret = ip6gre_tunnel_init_common(dev);
1487	if (ret)
1488		return ret;
1489
1490	tunnel = netdev_priv(dev);
1491
1492	ip6gre_tnl_link_config(tunnel, 1);
1493
1494	return 0;
1495}
1496
1497static const struct net_device_ops ip6gre_tap_netdev_ops = {
1498	.ndo_init = ip6gre_tap_init,
1499	.ndo_uninit = ip6gre_tunnel_uninit,
1500	.ndo_start_xmit = ip6gre_tunnel_xmit,
1501	.ndo_set_mac_address = eth_mac_addr,
1502	.ndo_validate_addr = eth_validate_addr,
1503	.ndo_change_mtu = ip6gre_tunnel_change_mtu,
1504	.ndo_get_stats64 = ip_tunnel_get_stats64,
1505	.ndo_get_iflink = ip6_tnl_get_iflink,
1506};
1507
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1508static void ip6gre_tap_setup(struct net_device *dev)
1509{
1510
1511	ether_setup(dev);
1512
 
1513	dev->netdev_ops = &ip6gre_tap_netdev_ops;
1514	dev->destructor = ip6gre_dev_free;
 
1515
1516	dev->features |= NETIF_F_NETNS_LOCAL;
1517	dev->priv_flags &= ~IFF_TX_SKB_SHARING;
 
 
1518}
1519
1520static int ip6gre_newlink(struct net *src_net, struct net_device *dev,
1521	struct nlattr *tb[], struct nlattr *data[])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1522{
1523	struct ip6_tnl *nt;
1524	struct net *net = dev_net(dev);
1525	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1526	int err;
1527
1528	nt = netdev_priv(dev);
1529	ip6gre_netlink_parms(data, &nt->parms);
1530
1531	if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
1532		return -EEXIST;
 
 
 
 
1533
1534	if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS])
1535		eth_hw_addr_random(dev);
1536
1537	nt->dev = dev;
1538	nt->net = dev_net(dev);
1539	ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
1540
1541	/* Can use a lockless transmit, unless we generate output sequences */
1542	if (!(nt->parms.o_flags & GRE_SEQ))
1543		dev->features |= NETIF_F_LLTX;
1544
1545	err = register_netdevice(dev);
1546	if (err)
1547		goto out;
1548
1549	dev_hold(dev);
1550	ip6gre_tunnel_link(ign, nt);
1551
1552out:
1553	return err;
1554}
1555
1556static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
1557			    struct nlattr *data[])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1558{
1559	struct ip6_tnl *t, *nt = netdev_priv(dev);
1560	struct net *net = nt->net;
1561	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1562	struct __ip6_tnl_parm p;
1563
1564	if (dev == ign->fb_tunnel_dev)
1565		return -EINVAL;
1566
1567	ip6gre_netlink_parms(data, &p);
 
 
 
 
 
1568
1569	t = ip6gre_tunnel_locate(net, &p, 0);
 
 
1570
1571	if (t) {
1572		if (t->dev != dev)
1573			return -EEXIST;
1574	} else {
1575		t = nt;
1576	}
1577
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1578	ip6gre_tunnel_unlink(ign, t);
1579	ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
 
1580	ip6gre_tunnel_link(ign, t);
1581	return 0;
1582}
1583
1584static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
1585{
1586	struct net *net = dev_net(dev);
1587	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1588
1589	if (dev != ign->fb_tunnel_dev)
1590		unregister_netdevice_queue(dev, head);
1591}
1592
1593static size_t ip6gre_get_size(const struct net_device *dev)
1594{
1595	return
1596		/* IFLA_GRE_LINK */
1597		nla_total_size(4) +
1598		/* IFLA_GRE_IFLAGS */
1599		nla_total_size(2) +
1600		/* IFLA_GRE_OFLAGS */
1601		nla_total_size(2) +
1602		/* IFLA_GRE_IKEY */
1603		nla_total_size(4) +
1604		/* IFLA_GRE_OKEY */
1605		nla_total_size(4) +
1606		/* IFLA_GRE_LOCAL */
1607		nla_total_size(sizeof(struct in6_addr)) +
1608		/* IFLA_GRE_REMOTE */
1609		nla_total_size(sizeof(struct in6_addr)) +
1610		/* IFLA_GRE_TTL */
1611		nla_total_size(1) +
1612		/* IFLA_GRE_TOS */
1613		nla_total_size(1) +
1614		/* IFLA_GRE_ENCAP_LIMIT */
1615		nla_total_size(1) +
1616		/* IFLA_GRE_FLOWINFO */
1617		nla_total_size(4) +
1618		/* IFLA_GRE_FLAGS */
1619		nla_total_size(4) +
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1620		0;
1621}
1622
1623static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
1624{
1625	struct ip6_tnl *t = netdev_priv(dev);
1626	struct __ip6_tnl_parm *p = &t->parms;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1627
1628	if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
1629	    nla_put_be16(skb, IFLA_GRE_IFLAGS, p->i_flags) ||
1630	    nla_put_be16(skb, IFLA_GRE_OFLAGS, p->o_flags) ||
 
 
1631	    nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
1632	    nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
1633	    nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
1634	    nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
1635	    nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
1636	    /*nla_put_u8(skb, IFLA_GRE_TOS, t->priority) ||*/
1637	    nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
1638	    nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
1639	    nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags))
 
 
 
 
 
 
 
 
 
 
 
1640		goto nla_put_failure;
 
 
 
 
 
 
1641	return 0;
1642
1643nla_put_failure:
1644	return -EMSGSIZE;
1645}
1646
1647static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
1648	[IFLA_GRE_LINK]        = { .type = NLA_U32 },
1649	[IFLA_GRE_IFLAGS]      = { .type = NLA_U16 },
1650	[IFLA_GRE_OFLAGS]      = { .type = NLA_U16 },
1651	[IFLA_GRE_IKEY]        = { .type = NLA_U32 },
1652	[IFLA_GRE_OKEY]        = { .type = NLA_U32 },
1653	[IFLA_GRE_LOCAL]       = { .len = FIELD_SIZEOF(struct ipv6hdr, saddr) },
1654	[IFLA_GRE_REMOTE]      = { .len = FIELD_SIZEOF(struct ipv6hdr, daddr) },
1655	[IFLA_GRE_TTL]         = { .type = NLA_U8 },
1656	[IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
1657	[IFLA_GRE_FLOWINFO]    = { .type = NLA_U32 },
1658	[IFLA_GRE_FLAGS]       = { .type = NLA_U32 },
 
 
 
 
 
 
 
 
 
 
1659};
1660
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1661static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
1662	.kind		= "ip6gre",
1663	.maxtype	= IFLA_GRE_MAX,
1664	.policy		= ip6gre_policy,
1665	.priv_size	= sizeof(struct ip6_tnl),
1666	.setup		= ip6gre_tunnel_setup,
1667	.validate	= ip6gre_tunnel_validate,
1668	.newlink	= ip6gre_newlink,
1669	.changelink	= ip6gre_changelink,
1670	.dellink	= ip6gre_dellink,
1671	.get_size	= ip6gre_get_size,
1672	.fill_info	= ip6gre_fill_info,
1673	.get_link_net	= ip6_tnl_get_link_net,
1674};
1675
1676static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
1677	.kind		= "ip6gretap",
1678	.maxtype	= IFLA_GRE_MAX,
1679	.policy		= ip6gre_policy,
1680	.priv_size	= sizeof(struct ip6_tnl),
1681	.setup		= ip6gre_tap_setup,
1682	.validate	= ip6gre_tap_validate,
1683	.newlink	= ip6gre_newlink,
1684	.changelink	= ip6gre_changelink,
1685	.get_size	= ip6gre_get_size,
1686	.fill_info	= ip6gre_fill_info,
1687	.get_link_net	= ip6_tnl_get_link_net,
1688};
1689
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1690/*
1691 *	And now the modules code and kernel interface.
1692 */
1693
1694static int __init ip6gre_init(void)
1695{
1696	int err;
1697
1698	pr_info("GRE over IPv6 tunneling driver\n");
1699
1700	err = register_pernet_device(&ip6gre_net_ops);
1701	if (err < 0)
1702		return err;
1703
1704	err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
1705	if (err < 0) {
1706		pr_info("%s: can't add protocol\n", __func__);
1707		goto add_proto_failed;
1708	}
1709
1710	err = rtnl_link_register(&ip6gre_link_ops);
1711	if (err < 0)
1712		goto rtnl_link_failed;
1713
1714	err = rtnl_link_register(&ip6gre_tap_ops);
1715	if (err < 0)
1716		goto tap_ops_failed;
1717
 
 
 
 
1718out:
1719	return err;
1720
 
 
1721tap_ops_failed:
1722	rtnl_link_unregister(&ip6gre_link_ops);
1723rtnl_link_failed:
1724	inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1725add_proto_failed:
1726	unregister_pernet_device(&ip6gre_net_ops);
1727	goto out;
1728}
1729
1730static void __exit ip6gre_fini(void)
1731{
1732	rtnl_link_unregister(&ip6gre_tap_ops);
1733	rtnl_link_unregister(&ip6gre_link_ops);
 
1734	inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1735	unregister_pernet_device(&ip6gre_net_ops);
1736}
1737
1738module_init(ip6gre_init);
1739module_exit(ip6gre_fini);
1740MODULE_LICENSE("GPL");
1741MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
1742MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
1743MODULE_ALIAS_RTNL_LINK("ip6gre");
1744MODULE_ALIAS_RTNL_LINK("ip6gretap");
 
1745MODULE_ALIAS_NETDEV("ip6gre0");
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 *	GRE over IPv6 protocol decoder.
   4 *
   5 *	Authors: Dmitry Kozlov (xeb@mail.ru)
 
 
 
 
 
 
   6 */
   7
   8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
   9
  10#include <linux/capability.h>
  11#include <linux/module.h>
  12#include <linux/types.h>
  13#include <linux/kernel.h>
  14#include <linux/slab.h>
  15#include <linux/uaccess.h>
  16#include <linux/skbuff.h>
  17#include <linux/netdevice.h>
  18#include <linux/in.h>
  19#include <linux/tcp.h>
  20#include <linux/udp.h>
  21#include <linux/if_arp.h>
  22#include <linux/init.h>
  23#include <linux/in6.h>
  24#include <linux/inetdevice.h>
  25#include <linux/igmp.h>
  26#include <linux/netfilter_ipv4.h>
  27#include <linux/etherdevice.h>
  28#include <linux/if_ether.h>
  29#include <linux/hash.h>
  30#include <linux/if_tunnel.h>
  31#include <linux/ip6_tunnel.h>
  32
  33#include <net/sock.h>
  34#include <net/ip.h>
  35#include <net/ip_tunnels.h>
  36#include <net/icmp.h>
  37#include <net/protocol.h>
  38#include <net/addrconf.h>
  39#include <net/arp.h>
  40#include <net/checksum.h>
  41#include <net/dsfield.h>
  42#include <net/inet_ecn.h>
  43#include <net/xfrm.h>
  44#include <net/net_namespace.h>
  45#include <net/netns/generic.h>
  46#include <net/rtnetlink.h>
  47
  48#include <net/ipv6.h>
  49#include <net/ip6_fib.h>
  50#include <net/ip6_route.h>
  51#include <net/ip6_tunnel.h>
  52#include <net/gre.h>
  53#include <net/erspan.h>
  54#include <net/dst_metadata.h>
  55
  56
  57static bool log_ecn_error = true;
  58module_param(log_ecn_error, bool, 0644);
  59MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
  60
  61#define IP6_GRE_HASH_SIZE_SHIFT  5
  62#define IP6_GRE_HASH_SIZE (1 << IP6_GRE_HASH_SIZE_SHIFT)
  63
  64static unsigned int ip6gre_net_id __read_mostly;
  65struct ip6gre_net {
  66	struct ip6_tnl __rcu *tunnels[4][IP6_GRE_HASH_SIZE];
  67
  68	struct ip6_tnl __rcu *collect_md_tun;
  69	struct ip6_tnl __rcu *collect_md_tun_erspan;
  70	struct net_device *fb_tunnel_dev;
  71};
  72
  73static struct rtnl_link_ops ip6gre_link_ops __read_mostly;
  74static struct rtnl_link_ops ip6gre_tap_ops __read_mostly;
  75static struct rtnl_link_ops ip6erspan_tap_ops __read_mostly;
  76static int ip6gre_tunnel_init(struct net_device *dev);
  77static void ip6gre_tunnel_setup(struct net_device *dev);
  78static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t);
  79static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu);
  80static void ip6erspan_tnl_link_config(struct ip6_tnl *t, int set_mtu);
  81
  82/* Tunnel hash table */
  83
  84/*
  85   4 hash tables:
  86
  87   3: (remote,local)
  88   2: (remote,*)
  89   1: (*,local)
  90   0: (*,*)
  91
  92   We require exact key match i.e. if a key is present in packet
  93   it will match only tunnel with the same key; if it is not present,
  94   it will match only keyless tunnel.
  95
  96   All keysless packets, if not matched configured keyless tunnels
  97   will match fallback tunnel.
  98 */
  99
 100#define HASH_KEY(key) (((__force u32)key^((__force u32)key>>4))&(IP6_GRE_HASH_SIZE - 1))
 101static u32 HASH_ADDR(const struct in6_addr *addr)
 102{
 103	u32 hash = ipv6_addr_hash(addr);
 104
 105	return hash_32(hash, IP6_GRE_HASH_SIZE_SHIFT);
 106}
 107
 108#define tunnels_r_l	tunnels[3]
 109#define tunnels_r	tunnels[2]
 110#define tunnels_l	tunnels[1]
 111#define tunnels_wc	tunnels[0]
 112
 113/* Given src, dst and key, find appropriate for input tunnel. */
 114
 115static struct ip6_tnl *ip6gre_tunnel_lookup(struct net_device *dev,
 116		const struct in6_addr *remote, const struct in6_addr *local,
 117		__be32 key, __be16 gre_proto)
 118{
 119	struct net *net = dev_net(dev);
 120	int link = dev->ifindex;
 121	unsigned int h0 = HASH_ADDR(remote);
 122	unsigned int h1 = HASH_KEY(key);
 123	struct ip6_tnl *t, *cand = NULL;
 124	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
 125	int dev_type = (gre_proto == htons(ETH_P_TEB) ||
 126			gre_proto == htons(ETH_P_ERSPAN) ||
 127			gre_proto == htons(ETH_P_ERSPAN2)) ?
 128		       ARPHRD_ETHER : ARPHRD_IP6GRE;
 129	int score, cand_score = 4;
 130	struct net_device *ndev;
 131
 132	for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) {
 133		if (!ipv6_addr_equal(local, &t->parms.laddr) ||
 134		    !ipv6_addr_equal(remote, &t->parms.raddr) ||
 135		    key != t->parms.i_key ||
 136		    !(t->dev->flags & IFF_UP))
 137			continue;
 138
 139		if (t->dev->type != ARPHRD_IP6GRE &&
 140		    t->dev->type != dev_type)
 141			continue;
 142
 143		score = 0;
 144		if (t->parms.link != link)
 145			score |= 1;
 146		if (t->dev->type != dev_type)
 147			score |= 2;
 148		if (score == 0)
 149			return t;
 150
 151		if (score < cand_score) {
 152			cand = t;
 153			cand_score = score;
 154		}
 155	}
 156
 157	for_each_ip_tunnel_rcu(t, ign->tunnels_r[h0 ^ h1]) {
 158		if (!ipv6_addr_equal(remote, &t->parms.raddr) ||
 159		    key != t->parms.i_key ||
 160		    !(t->dev->flags & IFF_UP))
 161			continue;
 162
 163		if (t->dev->type != ARPHRD_IP6GRE &&
 164		    t->dev->type != dev_type)
 165			continue;
 166
 167		score = 0;
 168		if (t->parms.link != link)
 169			score |= 1;
 170		if (t->dev->type != dev_type)
 171			score |= 2;
 172		if (score == 0)
 173			return t;
 174
 175		if (score < cand_score) {
 176			cand = t;
 177			cand_score = score;
 178		}
 179	}
 180
 181	for_each_ip_tunnel_rcu(t, ign->tunnels_l[h1]) {
 182		if ((!ipv6_addr_equal(local, &t->parms.laddr) &&
 183			  (!ipv6_addr_equal(local, &t->parms.raddr) ||
 184				 !ipv6_addr_is_multicast(local))) ||
 185		    key != t->parms.i_key ||
 186		    !(t->dev->flags & IFF_UP))
 187			continue;
 188
 189		if (t->dev->type != ARPHRD_IP6GRE &&
 190		    t->dev->type != dev_type)
 191			continue;
 192
 193		score = 0;
 194		if (t->parms.link != link)
 195			score |= 1;
 196		if (t->dev->type != dev_type)
 197			score |= 2;
 198		if (score == 0)
 199			return t;
 200
 201		if (score < cand_score) {
 202			cand = t;
 203			cand_score = score;
 204		}
 205	}
 206
 207	for_each_ip_tunnel_rcu(t, ign->tunnels_wc[h1]) {
 208		if (t->parms.i_key != key ||
 209		    !(t->dev->flags & IFF_UP))
 210			continue;
 211
 212		if (t->dev->type != ARPHRD_IP6GRE &&
 213		    t->dev->type != dev_type)
 214			continue;
 215
 216		score = 0;
 217		if (t->parms.link != link)
 218			score |= 1;
 219		if (t->dev->type != dev_type)
 220			score |= 2;
 221		if (score == 0)
 222			return t;
 223
 224		if (score < cand_score) {
 225			cand = t;
 226			cand_score = score;
 227		}
 228	}
 229
 230	if (cand)
 231		return cand;
 232
 233	if (gre_proto == htons(ETH_P_ERSPAN) ||
 234	    gre_proto == htons(ETH_P_ERSPAN2))
 235		t = rcu_dereference(ign->collect_md_tun_erspan);
 236	else
 237		t = rcu_dereference(ign->collect_md_tun);
 238
 239	if (t && t->dev->flags & IFF_UP)
 240		return t;
 241
 242	ndev = READ_ONCE(ign->fb_tunnel_dev);
 243	if (ndev && ndev->flags & IFF_UP)
 244		return netdev_priv(ndev);
 245
 246	return NULL;
 247}
 248
 249static struct ip6_tnl __rcu **__ip6gre_bucket(struct ip6gre_net *ign,
 250		const struct __ip6_tnl_parm *p)
 251{
 252	const struct in6_addr *remote = &p->raddr;
 253	const struct in6_addr *local = &p->laddr;
 254	unsigned int h = HASH_KEY(p->i_key);
 255	int prio = 0;
 256
 257	if (!ipv6_addr_any(local))
 258		prio |= 1;
 259	if (!ipv6_addr_any(remote) && !ipv6_addr_is_multicast(remote)) {
 260		prio |= 2;
 261		h ^= HASH_ADDR(remote);
 262	}
 263
 264	return &ign->tunnels[prio][h];
 265}
 266
 267static void ip6gre_tunnel_link_md(struct ip6gre_net *ign, struct ip6_tnl *t)
 268{
 269	if (t->parms.collect_md)
 270		rcu_assign_pointer(ign->collect_md_tun, t);
 271}
 272
 273static void ip6erspan_tunnel_link_md(struct ip6gre_net *ign, struct ip6_tnl *t)
 274{
 275	if (t->parms.collect_md)
 276		rcu_assign_pointer(ign->collect_md_tun_erspan, t);
 277}
 278
 279static void ip6gre_tunnel_unlink_md(struct ip6gre_net *ign, struct ip6_tnl *t)
 280{
 281	if (t->parms.collect_md)
 282		rcu_assign_pointer(ign->collect_md_tun, NULL);
 283}
 284
 285static void ip6erspan_tunnel_unlink_md(struct ip6gre_net *ign,
 286				       struct ip6_tnl *t)
 287{
 288	if (t->parms.collect_md)
 289		rcu_assign_pointer(ign->collect_md_tun_erspan, NULL);
 290}
 291
 292static inline struct ip6_tnl __rcu **ip6gre_bucket(struct ip6gre_net *ign,
 293		const struct ip6_tnl *t)
 294{
 295	return __ip6gre_bucket(ign, &t->parms);
 296}
 297
 298static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t)
 299{
 300	struct ip6_tnl __rcu **tp = ip6gre_bucket(ign, t);
 301
 302	rcu_assign_pointer(t->next, rtnl_dereference(*tp));
 303	rcu_assign_pointer(*tp, t);
 304}
 305
 306static void ip6gre_tunnel_unlink(struct ip6gre_net *ign, struct ip6_tnl *t)
 307{
 308	struct ip6_tnl __rcu **tp;
 309	struct ip6_tnl *iter;
 310
 311	for (tp = ip6gre_bucket(ign, t);
 312	     (iter = rtnl_dereference(*tp)) != NULL;
 313	     tp = &iter->next) {
 314		if (t == iter) {
 315			rcu_assign_pointer(*tp, t->next);
 316			break;
 317		}
 318	}
 319}
 320
 321static struct ip6_tnl *ip6gre_tunnel_find(struct net *net,
 322					   const struct __ip6_tnl_parm *parms,
 323					   int type)
 324{
 325	const struct in6_addr *remote = &parms->raddr;
 326	const struct in6_addr *local = &parms->laddr;
 327	__be32 key = parms->i_key;
 328	int link = parms->link;
 329	struct ip6_tnl *t;
 330	struct ip6_tnl __rcu **tp;
 331	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
 332
 333	for (tp = __ip6gre_bucket(ign, parms);
 334	     (t = rtnl_dereference(*tp)) != NULL;
 335	     tp = &t->next)
 336		if (ipv6_addr_equal(local, &t->parms.laddr) &&
 337		    ipv6_addr_equal(remote, &t->parms.raddr) &&
 338		    key == t->parms.i_key &&
 339		    link == t->parms.link &&
 340		    type == t->dev->type)
 341			break;
 342
 343	return t;
 344}
 345
 346static struct ip6_tnl *ip6gre_tunnel_locate(struct net *net,
 347		const struct __ip6_tnl_parm *parms, int create)
 348{
 349	struct ip6_tnl *t, *nt;
 350	struct net_device *dev;
 351	char name[IFNAMSIZ];
 352	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
 353
 354	t = ip6gre_tunnel_find(net, parms, ARPHRD_IP6GRE);
 355	if (t && create)
 356		return NULL;
 357	if (t || !create)
 358		return t;
 359
 360	if (parms->name[0]) {
 361		if (!dev_valid_name(parms->name))
 362			return NULL;
 363		strscpy(name, parms->name, IFNAMSIZ);
 364	} else {
 365		strcpy(name, "ip6gre%d");
 366	}
 367	dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
 368			   ip6gre_tunnel_setup);
 369	if (!dev)
 370		return NULL;
 371
 372	dev_net_set(dev, net);
 373
 374	nt = netdev_priv(dev);
 375	nt->parms = *parms;
 376	dev->rtnl_link_ops = &ip6gre_link_ops;
 377
 378	nt->dev = dev;
 379	nt->net = dev_net(dev);
 
 380
 381	if (register_netdevice(dev) < 0)
 382		goto failed_free;
 383
 384	ip6gre_tnl_link_config(nt, 1);
 
 
 
 
 385	ip6gre_tunnel_link(ign, nt);
 386	return nt;
 387
 388failed_free:
 389	free_netdev(dev);
 390	return NULL;
 391}
 392
 393static void ip6erspan_tunnel_uninit(struct net_device *dev)
 394{
 395	struct ip6_tnl *t = netdev_priv(dev);
 396	struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
 397
 398	ip6erspan_tunnel_unlink_md(ign, t);
 399	ip6gre_tunnel_unlink(ign, t);
 400	dst_cache_reset(&t->dst_cache);
 401	netdev_put(dev, &t->dev_tracker);
 402}
 403
 404static void ip6gre_tunnel_uninit(struct net_device *dev)
 405{
 406	struct ip6_tnl *t = netdev_priv(dev);
 407	struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
 408
 409	ip6gre_tunnel_unlink_md(ign, t);
 410	ip6gre_tunnel_unlink(ign, t);
 411	if (ign->fb_tunnel_dev == dev)
 412		WRITE_ONCE(ign->fb_tunnel_dev, NULL);
 413	dst_cache_reset(&t->dst_cache);
 414	netdev_put(dev, &t->dev_tracker);
 415}
 416
 417
 418static int ip6gre_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
 419		       u8 type, u8 code, int offset, __be32 info)
 420{
 421	struct net *net = dev_net(skb->dev);
 422	const struct ipv6hdr *ipv6h;
 423	struct tnl_ptk_info tpi;
 424	struct ip6_tnl *t;
 
 425
 426	if (gre_parse_header(skb, &tpi, NULL, htons(ETH_P_IPV6),
 427			     offset) < 0)
 428		return -EINVAL;
 
 
 
 
 
 
 
 429
 
 
 
 430	ipv6h = (const struct ipv6hdr *)skb->data;
 
 
 431	t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr,
 432				 tpi.key, tpi.proto);
 
 
 433	if (!t)
 434		return -ENOENT;
 435
 436	switch (type) {
 
 
 
 437	case ICMPV6_DEST_UNREACH:
 438		net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
 439				    t->parms.name);
 440		if (code != ICMPV6_PORT_UNREACH)
 441			break;
 442		return 0;
 443	case ICMPV6_TIME_EXCEED:
 444		if (code == ICMPV6_EXC_HOPLIMIT) {
 445			net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
 446					    t->parms.name);
 447			break;
 448		}
 449		return 0;
 450	case ICMPV6_PARAMPROB: {
 451		struct ipv6_tlv_tnl_enc_lim *tel;
 452		__u32 teli;
 453
 454		teli = 0;
 455		if (code == ICMPV6_HDR_FIELD)
 456			teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
 457
 458		if (teli && teli == be32_to_cpu(info) - 2) {
 459			tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
 460			if (tel->encap_limit == 0) {
 461				net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
 462						    t->parms.name);
 463			}
 464		} else {
 465			net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
 466					    t->parms.name);
 467		}
 468		return 0;
 469	}
 470	case ICMPV6_PKT_TOOBIG:
 471		ip6_update_pmtu(skb, net, info, 0, 0, sock_net_uid(net, NULL));
 472		return 0;
 473	case NDISC_REDIRECT:
 474		ip6_redirect(skb, net, skb->dev->ifindex, 0,
 475			     sock_net_uid(net, NULL));
 476		return 0;
 477	}
 478
 479	if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
 480		t->err_count++;
 481	else
 482		t->err_count = 1;
 483	t->err_time = jiffies;
 484
 485	return 0;
 486}
 487
 488static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
 489{
 490	const struct ipv6hdr *ipv6h;
 
 
 
 
 
 491	struct ip6_tnl *tunnel;
 
 
 
 
 
 
 492
 493	ipv6h = ipv6_hdr(skb);
 494	tunnel = ip6gre_tunnel_lookup(skb->dev,
 495				      &ipv6h->saddr, &ipv6h->daddr, tpi->key,
 496				      tpi->proto);
 497	if (tunnel) {
 498		if (tunnel->parms.collect_md) {
 499			IP_TUNNEL_DECLARE_FLAGS(flags);
 500			struct metadata_dst *tun_dst;
 501			__be64 tun_id;
 502
 503			ip_tunnel_flags_copy(flags, tpi->flags);
 504			tun_id = key32_to_tunnel_id(tpi->key);
 505
 506			tun_dst = ipv6_tun_rx_dst(skb, flags, tun_id, 0);
 507			if (!tun_dst)
 508				return PACKET_REJECT;
 509
 510			ip6_tnl_rcv(tunnel, skb, tpi, tun_dst, log_ecn_error);
 511		} else {
 512			ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
 
 
 
 
 
 
 
 
 513		}
 514
 515		return PACKET_RCVD;
 516	}
 517
 518	return PACKET_REJECT;
 519}
 520
 521static int ip6erspan_rcv(struct sk_buff *skb,
 522			 struct tnl_ptk_info *tpi,
 523			 int gre_hdr_len)
 524{
 525	struct erspan_base_hdr *ershdr;
 526	const struct ipv6hdr *ipv6h;
 527	struct erspan_md2 *md2;
 528	struct ip6_tnl *tunnel;
 529	u8 ver;
 530
 531	if (unlikely(!pskb_may_pull(skb, sizeof(*ershdr))))
 532		return PACKET_REJECT;
 533
 534	ipv6h = ipv6_hdr(skb);
 535	ershdr = (struct erspan_base_hdr *)skb->data;
 536	ver = ershdr->ver;
 537
 538	tunnel = ip6gre_tunnel_lookup(skb->dev,
 539				      &ipv6h->saddr, &ipv6h->daddr, tpi->key,
 540				      tpi->proto);
 541	if (tunnel) {
 542		int len = erspan_hdr_len(ver);
 543
 544		if (unlikely(!pskb_may_pull(skb, len)))
 545			return PACKET_REJECT;
 546
 547		if (__iptunnel_pull_header(skb, len,
 548					   htons(ETH_P_TEB),
 549					   false, false) < 0)
 550			return PACKET_REJECT;
 551
 552		if (tunnel->parms.collect_md) {
 553			struct erspan_metadata *pkt_md, *md;
 554			IP_TUNNEL_DECLARE_FLAGS(flags);
 555			struct metadata_dst *tun_dst;
 556			struct ip_tunnel_info *info;
 557			unsigned char *gh;
 558			__be64 tun_id;
 559
 560			__set_bit(IP_TUNNEL_KEY_BIT, tpi->flags);
 561			ip_tunnel_flags_copy(flags, tpi->flags);
 562			tun_id = key32_to_tunnel_id(tpi->key);
 563
 564			tun_dst = ipv6_tun_rx_dst(skb, flags, tun_id,
 565						  sizeof(*md));
 566			if (!tun_dst)
 567				return PACKET_REJECT;
 568
 569			/* skb can be uncloned in __iptunnel_pull_header, so
 570			 * old pkt_md is no longer valid and we need to reset
 571			 * it
 572			 */
 573			gh = skb_network_header(skb) +
 574			     skb_network_header_len(skb);
 575			pkt_md = (struct erspan_metadata *)(gh + gre_hdr_len +
 576							    sizeof(*ershdr));
 577			info = &tun_dst->u.tun_info;
 578			md = ip_tunnel_info_opts(info);
 579			md->version = ver;
 580			md2 = &md->u.md2;
 581			memcpy(md2, pkt_md, ver == 1 ? ERSPAN_V1_MDSIZE :
 582						       ERSPAN_V2_MDSIZE);
 583			__set_bit(IP_TUNNEL_ERSPAN_OPT_BIT,
 584				  info->key.tun_flags);
 585			info->options_len = sizeof(*md);
 586
 587			ip6_tnl_rcv(tunnel, skb, tpi, tun_dst, log_ecn_error);
 
 
 
 
 
 
 588
 589		} else {
 590			ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 591		}
 592
 593		return PACKET_RCVD;
 594	}
 
 
 
 595
 596	return PACKET_REJECT;
 597}
 598
 599static int gre_rcv(struct sk_buff *skb)
 600{
 601	struct tnl_ptk_info tpi;
 602	bool csum_err = false;
 603	int hdr_len;
 604
 605	hdr_len = gre_parse_header(skb, &tpi, &csum_err, htons(ETH_P_IPV6), 0);
 606	if (hdr_len < 0)
 607		goto drop;
 608
 609	if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false))
 610		goto drop;
 611
 612	if (unlikely(tpi.proto == htons(ETH_P_ERSPAN) ||
 613		     tpi.proto == htons(ETH_P_ERSPAN2))) {
 614		if (ip6erspan_rcv(skb, &tpi, hdr_len) == PACKET_RCVD)
 615			return 0;
 616		goto out;
 617	}
 
 618
 619	if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD)
 620		return 0;
 621
 622out:
 623	icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
 624drop:
 625	kfree_skb(skb);
 626	return 0;
 627}
 628
 629static int gre_handle_offloads(struct sk_buff *skb, bool csum)
 
 
 
 
 
 630{
 631	return iptunnel_handle_offloads(skb,
 632					csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE);
 633}
 634
 635static void prepare_ip6gre_xmit_ipv4(struct sk_buff *skb,
 636				     struct net_device *dev,
 637				     struct flowi6 *fl6, __u8 *dsfield,
 638				     int *encap_limit)
 
 
 
 
 
 
 
 
 
 
 
 
 639{
 640	const struct iphdr *iph = ip_hdr(skb);
 641	struct ip6_tnl *t = netdev_priv(dev);
 
 
 
 
 
 
 
 
 
 
 
 
 642
 643	if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
 644		*encap_limit = t->parms.encap_limit;
 645
 646	memcpy(fl6, &t->fl.u.ip6, sizeof(*fl6));
 647
 648	if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
 649		*dsfield = ipv4_get_dsfield(iph);
 650	else
 651		*dsfield = ip6_tclass(t->parms.flowinfo);
 
 
 652
 653	if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
 654		fl6->flowi6_mark = skb->mark;
 655	else
 656		fl6->flowi6_mark = t->parms.fwmark;
 657
 658	fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL);
 659}
 660
 661static int prepare_ip6gre_xmit_ipv6(struct sk_buff *skb,
 662				    struct net_device *dev,
 663				    struct flowi6 *fl6, __u8 *dsfield,
 664				    int *encap_limit)
 665{
 666	struct ipv6hdr *ipv6h;
 667	struct ip6_tnl *t = netdev_priv(dev);
 668	__u16 offset;
 669
 670	offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
 671	/* ip6_tnl_parse_tlv_enc_lim() might have reallocated skb->head */
 672	ipv6h = ipv6_hdr(skb);
 673
 674	if (offset > 0) {
 675		struct ipv6_tlv_tnl_enc_lim *tel;
 676
 677		tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
 678		if (tel->encap_limit == 0) {
 679			icmpv6_ndo_send(skb, ICMPV6_PARAMPROB,
 680					ICMPV6_HDR_FIELD, offset + 2);
 681			return -1;
 682		}
 683		*encap_limit = tel->encap_limit - 1;
 684	} else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) {
 685		*encap_limit = t->parms.encap_limit;
 686	}
 687
 688	memcpy(fl6, &t->fl.u.ip6, sizeof(*fl6));
 689
 690	if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
 691		*dsfield = ipv6_get_dsfield(ipv6h);
 692	else
 693		*dsfield = ip6_tclass(t->parms.flowinfo);
 
 
 694
 695	if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
 696		fl6->flowlabel |= ip6_flowlabel(ipv6h);
 
 
 
 
 
 
 
 
 
 
 
 
 697
 698	if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
 699		fl6->flowi6_mark = skb->mark;
 700	else
 701		fl6->flowi6_mark = t->parms.fwmark;
 702
 703	fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL);
 
 
 
 704
 705	return 0;
 706}
 707
 708static int prepare_ip6gre_xmit_other(struct sk_buff *skb,
 709				     struct net_device *dev,
 710				     struct flowi6 *fl6, __u8 *dsfield,
 711				     int *encap_limit)
 712{
 713	struct ip6_tnl *t = netdev_priv(dev);
 714
 715	if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
 716		*encap_limit = t->parms.encap_limit;
 
 
 
 
 
 717
 718	memcpy(fl6, &t->fl.u.ip6, sizeof(*fl6));
 
 
 
 
 719
 720	if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
 721		*dsfield = 0;
 722	else
 723		*dsfield = ip6_tclass(t->parms.flowinfo);
 724
 725	if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
 726		fl6->flowi6_mark = skb->mark;
 727	else
 728		fl6->flowi6_mark = t->parms.fwmark;
 
 729
 730	fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL);
 
 
 
 731
 732	return 0;
 733}
 
 734
 735static struct ip_tunnel_info *skb_tunnel_info_txcheck(struct sk_buff *skb)
 736{
 737	struct ip_tunnel_info *tun_info;
 
 
 
 
 
 
 
 738
 739	tun_info = skb_tunnel_info(skb);
 740	if (unlikely(!tun_info || !(tun_info->mode & IP_TUNNEL_INFO_TX)))
 741		return ERR_PTR(-EINVAL);
 
 742
 743	return tun_info;
 744}
 745
 746static netdev_tx_t __gre6_xmit(struct sk_buff *skb,
 747			       struct net_device *dev, __u8 dsfield,
 748			       struct flowi6 *fl6, int encap_limit,
 749			       __u32 *pmtu, __be16 proto)
 750{
 751	struct ip6_tnl *tunnel = netdev_priv(dev);
 752	IP_TUNNEL_DECLARE_FLAGS(flags);
 753	__be16 protocol;
 
 
 
 
 
 
 
 754
 755	if (dev->type == ARPHRD_ETHER)
 756		IPCB(skb)->flags = 0;
 757
 758	if (dev->header_ops && dev->type == ARPHRD_IP6GRE)
 759		fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr;
 760	else
 761		fl6->daddr = tunnel->parms.raddr;
 762
 763	/* Push GRE header. */
 764	protocol = (dev->type == ARPHRD_ETHER) ? htons(ETH_P_TEB) : proto;
 765
 766	if (tunnel->parms.collect_md) {
 767		struct ip_tunnel_info *tun_info;
 768		const struct ip_tunnel_key *key;
 769		int tun_hlen;
 770
 771		tun_info = skb_tunnel_info_txcheck(skb);
 772		if (IS_ERR(tun_info) ||
 773		    unlikely(ip_tunnel_info_af(tun_info) != AF_INET6))
 774			return -EINVAL;
 775
 776		key = &tun_info->key;
 777		memset(fl6, 0, sizeof(*fl6));
 778		fl6->flowi6_proto = IPPROTO_GRE;
 779		fl6->daddr = key->u.ipv6.dst;
 780		fl6->flowlabel = key->label;
 781		fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL);
 782		fl6->fl6_gre_key = tunnel_id_to_key32(key->tun_id);
 783
 784		dsfield = key->tos;
 785		ip_tunnel_flags_zero(flags);
 786		__set_bit(IP_TUNNEL_CSUM_BIT, flags);
 787		__set_bit(IP_TUNNEL_KEY_BIT, flags);
 788		__set_bit(IP_TUNNEL_SEQ_BIT, flags);
 789		ip_tunnel_flags_and(flags, flags, key->tun_flags);
 790		tun_hlen = gre_calc_hlen(flags);
 791
 792		if (skb_cow_head(skb, dev->needed_headroom ?: tun_hlen + tunnel->encap_hlen))
 793			return -ENOMEM;
 794
 795		gre_build_header(skb, tun_hlen,
 796				 flags, protocol,
 797				 tunnel_id_to_key32(tun_info->key.tun_id),
 798				 test_bit(IP_TUNNEL_SEQ_BIT, flags) ?
 799				 htonl(atomic_fetch_inc(&tunnel->o_seqno)) :
 800				 0);
 801
 802	} else {
 803		if (skb_cow_head(skb, dev->needed_headroom ?: tunnel->hlen))
 804			return -ENOMEM;
 805
 806		ip_tunnel_flags_copy(flags, tunnel->parms.o_flags);
 807
 808		gre_build_header(skb, tunnel->tun_hlen, flags,
 809				 protocol, tunnel->parms.o_key,
 810				 test_bit(IP_TUNNEL_SEQ_BIT, flags) ?
 811				 htonl(atomic_fetch_inc(&tunnel->o_seqno)) :
 812				 0);
 813	}
 814
 815	return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu,
 816			    NEXTHDR_GRE);
 817}
 818
 819static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev)
 820{
 821	struct ip6_tnl *t = netdev_priv(dev);
 
 822	int encap_limit = -1;
 823	struct flowi6 fl6;
 824	__u8 dsfield = 0;
 825	__u32 mtu;
 826	int err;
 827
 828	memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
 829
 830	if (!t->parms.collect_md)
 831		prepare_ip6gre_xmit_ipv4(skb, dev, &fl6,
 832					 &dsfield, &encap_limit);
 
 
 833
 834	err = gre_handle_offloads(skb, test_bit(IP_TUNNEL_CSUM_BIT,
 835						t->parms.o_flags));
 836	if (err)
 837		return -1;
 
 
 
 838
 839	err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
 840			  skb->protocol);
 841	if (err != 0) {
 842		/* XXX: send ICMP error even if DF is not set. */
 843		if (err == -EMSGSIZE)
 844			icmp_ndo_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
 845				      htonl(mtu));
 846		return -1;
 847	}
 848
 849	return 0;
 850}
 851
 852static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev)
 853{
 854	struct ip6_tnl *t = netdev_priv(dev);
 855	struct ipv6hdr *ipv6h = ipv6_hdr(skb);
 856	int encap_limit = -1;
 
 857	struct flowi6 fl6;
 858	__u8 dsfield = 0;
 859	__u32 mtu;
 860	int err;
 861
 862	if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
 863		return -1;
 864
 865	if (!t->parms.collect_md &&
 866	    prepare_ip6gre_xmit_ipv6(skb, dev, &fl6, &dsfield, &encap_limit))
 867		return -1;
 
 
 
 
 
 
 
 
 
 
 
 
 868
 869	if (gre_handle_offloads(skb, test_bit(IP_TUNNEL_CSUM_BIT,
 870					      t->parms.o_flags)))
 871		return -1;
 
 
 
 
 872
 873	err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit,
 874			  &mtu, skb->protocol);
 875	if (err != 0) {
 876		if (err == -EMSGSIZE)
 877			icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
 878		return -1;
 879	}
 880
 881	return 0;
 882}
 883
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 884static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev)
 885{
 886	struct ip6_tnl *t = netdev_priv(dev);
 887	int encap_limit = -1;
 888	struct flowi6 fl6;
 889	__u8 dsfield = 0;
 890	__u32 mtu;
 891	int err;
 892
 893	if (!t->parms.collect_md &&
 894	    prepare_ip6gre_xmit_other(skb, dev, &fl6, &dsfield, &encap_limit))
 895		return -1;
 
 
 896
 897	err = gre_handle_offloads(skb, test_bit(IP_TUNNEL_CSUM_BIT,
 898						t->parms.o_flags));
 899	if (err)
 900		return err;
 901	err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu, skb->protocol);
 902
 903	return err;
 904}
 905
 906static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
 907	struct net_device *dev)
 908{
 909	struct ip6_tnl *t = netdev_priv(dev);
 910	__be16 payload_protocol;
 911	int ret;
 912
 913	if (!pskb_inet_may_pull(skb))
 914		goto tx_err;
 915
 916	if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
 917		goto tx_err;
 918
 919	payload_protocol = skb_protocol(skb, true);
 920	switch (payload_protocol) {
 921	case htons(ETH_P_IP):
 922		ret = ip6gre_xmit_ipv4(skb, dev);
 923		break;
 924	case htons(ETH_P_IPV6):
 925		ret = ip6gre_xmit_ipv6(skb, dev);
 926		break;
 927	default:
 928		ret = ip6gre_xmit_other(skb, dev);
 929		break;
 930	}
 931
 932	if (ret < 0)
 933		goto tx_err;
 934
 935	return NETDEV_TX_OK;
 936
 937tx_err:
 938	if (!t->parms.collect_md || !IS_ERR(skb_tunnel_info_txcheck(skb)))
 939		DEV_STATS_INC(dev, tx_errors);
 940	DEV_STATS_INC(dev, tx_dropped);
 941	kfree_skb(skb);
 942	return NETDEV_TX_OK;
 943}
 944
 945static netdev_tx_t ip6erspan_tunnel_xmit(struct sk_buff *skb,
 946					 struct net_device *dev)
 947{
 948	struct ip_tunnel_info *tun_info = NULL;
 949	struct ip6_tnl *t = netdev_priv(dev);
 950	struct dst_entry *dst = skb_dst(skb);
 951	IP_TUNNEL_DECLARE_FLAGS(flags) = { };
 952	bool truncate = false;
 953	int encap_limit = -1;
 954	__u8 dsfield = false;
 955	struct flowi6 fl6;
 956	int err = -EINVAL;
 957	__be16 proto;
 958	__u32 mtu;
 959	int nhoff;
 960
 961	if (!pskb_inet_may_pull(skb))
 962		goto tx_err;
 963
 964	if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
 965		goto tx_err;
 966
 967	if (gre_handle_offloads(skb, false))
 968		goto tx_err;
 969
 970	if (skb->len > dev->mtu + dev->hard_header_len) {
 971		if (pskb_trim(skb, dev->mtu + dev->hard_header_len))
 972			goto tx_err;
 973		truncate = true;
 974	}
 975
 976	nhoff = skb_network_offset(skb);
 977	if (skb->protocol == htons(ETH_P_IP) &&
 978	    (ntohs(ip_hdr(skb)->tot_len) > skb->len - nhoff))
 979		truncate = true;
 980
 981	if (skb->protocol == htons(ETH_P_IPV6)) {
 982		int thoff;
 983
 984		if (skb_transport_header_was_set(skb))
 985			thoff = skb_transport_offset(skb);
 986		else
 987			thoff = nhoff + sizeof(struct ipv6hdr);
 988		if (ntohs(ipv6_hdr(skb)->payload_len) > skb->len - thoff)
 989			truncate = true;
 990	}
 991
 992	if (skb_cow_head(skb, dev->needed_headroom ?: t->hlen))
 993		goto tx_err;
 994
 995	__clear_bit(IP_TUNNEL_KEY_BIT, t->parms.o_flags);
 996	IPCB(skb)->flags = 0;
 997
 998	/* For collect_md mode, derive fl6 from the tunnel key,
 999	 * for native mode, call prepare_ip6gre_xmit_{ipv4,ipv6}.
1000	 */
1001	if (t->parms.collect_md) {
1002		const struct ip_tunnel_key *key;
1003		struct erspan_metadata *md;
1004		__be32 tun_id;
1005
1006		tun_info = skb_tunnel_info_txcheck(skb);
1007		if (IS_ERR(tun_info) ||
1008		    unlikely(ip_tunnel_info_af(tun_info) != AF_INET6))
1009			goto tx_err;
1010
1011		key = &tun_info->key;
1012		memset(&fl6, 0, sizeof(fl6));
1013		fl6.flowi6_proto = IPPROTO_GRE;
1014		fl6.daddr = key->u.ipv6.dst;
1015		fl6.flowlabel = key->label;
1016		fl6.flowi6_uid = sock_net_uid(dev_net(dev), NULL);
1017		fl6.fl6_gre_key = tunnel_id_to_key32(key->tun_id);
1018
1019		dsfield = key->tos;
1020		if (!test_bit(IP_TUNNEL_ERSPAN_OPT_BIT,
1021			      tun_info->key.tun_flags))
1022			goto tx_err;
1023		if (tun_info->options_len < sizeof(*md))
1024			goto tx_err;
1025		md = ip_tunnel_info_opts(tun_info);
1026
1027		tun_id = tunnel_id_to_key32(key->tun_id);
1028		if (md->version == 1) {
1029			erspan_build_header(skb,
1030					    ntohl(tun_id),
1031					    ntohl(md->u.index), truncate,
1032					    false);
1033			proto = htons(ETH_P_ERSPAN);
1034		} else if (md->version == 2) {
1035			erspan_build_header_v2(skb,
1036					       ntohl(tun_id),
1037					       md->u.md2.dir,
1038					       get_hwid(&md->u.md2),
1039					       truncate, false);
1040			proto = htons(ETH_P_ERSPAN2);
1041		} else {
1042			goto tx_err;
1043		}
1044	} else {
1045		switch (skb->protocol) {
1046		case htons(ETH_P_IP):
1047			memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1048			prepare_ip6gre_xmit_ipv4(skb, dev, &fl6,
1049						 &dsfield, &encap_limit);
1050			break;
1051		case htons(ETH_P_IPV6):
1052			if (ipv6_addr_equal(&t->parms.raddr, &ipv6_hdr(skb)->saddr))
1053				goto tx_err;
1054			if (prepare_ip6gre_xmit_ipv6(skb, dev, &fl6,
1055						     &dsfield, &encap_limit))
1056				goto tx_err;
1057			break;
1058		default:
1059			memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
1060			break;
1061		}
1062
1063		if (t->parms.erspan_ver == 1) {
1064			erspan_build_header(skb, ntohl(t->parms.o_key),
1065					    t->parms.index,
1066					    truncate, false);
1067			proto = htons(ETH_P_ERSPAN);
1068		} else if (t->parms.erspan_ver == 2) {
1069			erspan_build_header_v2(skb, ntohl(t->parms.o_key),
1070					       t->parms.dir,
1071					       t->parms.hwid,
1072					       truncate, false);
1073			proto = htons(ETH_P_ERSPAN2);
1074		} else {
1075			goto tx_err;
1076		}
1077
1078		fl6.daddr = t->parms.raddr;
1079	}
1080
1081	/* Push GRE header. */
1082	__set_bit(IP_TUNNEL_SEQ_BIT, flags);
1083	gre_build_header(skb, 8, flags, proto, 0,
1084			 htonl(atomic_fetch_inc(&t->o_seqno)));
1085
1086	/* TooBig packet may have updated dst->dev's mtu */
1087	if (!t->parms.collect_md && dst && dst_mtu(dst) > dst->dev->mtu)
1088		dst->ops->update_pmtu(dst, NULL, skb, dst->dev->mtu, false);
1089
1090	err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
1091			   NEXTHDR_GRE);
1092	if (err != 0) {
1093		/* XXX: send ICMP error even if DF is not set. */
1094		if (err == -EMSGSIZE) {
1095			if (skb->protocol == htons(ETH_P_IP))
1096				icmp_ndo_send(skb, ICMP_DEST_UNREACH,
1097					      ICMP_FRAG_NEEDED, htonl(mtu));
1098			else
1099				icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
1100		}
1101
1102		goto tx_err;
1103	}
1104	return NETDEV_TX_OK;
1105
1106tx_err:
1107	if (!IS_ERR(tun_info))
1108		DEV_STATS_INC(dev, tx_errors);
1109	DEV_STATS_INC(dev, tx_dropped);
1110	kfree_skb(skb);
1111	return NETDEV_TX_OK;
1112}
1113
1114static void ip6gre_tnl_link_config_common(struct ip6_tnl *t)
1115{
1116	struct net_device *dev = t->dev;
1117	struct __ip6_tnl_parm *p = &t->parms;
1118	struct flowi6 *fl6 = &t->fl.u.ip6;
 
1119
1120	if (dev->type != ARPHRD_ETHER) {
1121		__dev_addr_set(dev, &p->laddr, sizeof(struct in6_addr));
1122		memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
1123	}
1124
1125	/* Set up flowi template */
1126	fl6->saddr = p->laddr;
1127	fl6->daddr = p->raddr;
1128	fl6->flowi6_oif = p->link;
1129	fl6->flowlabel = 0;
1130	fl6->flowi6_proto = IPPROTO_GRE;
1131	fl6->fl6_gre_key = t->parms.o_key;
1132
1133	if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1134		fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1135	if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1136		fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1137
1138	p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1139	p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
1140
1141	if (p->flags&IP6_TNL_F_CAP_XMIT &&
1142			p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER)
1143		dev->flags |= IFF_POINTOPOINT;
1144	else
1145		dev->flags &= ~IFF_POINTOPOINT;
1146}
1147
1148static void ip6gre_tnl_link_config_route(struct ip6_tnl *t, int set_mtu,
1149					 int t_hlen)
1150{
1151	const struct __ip6_tnl_parm *p = &t->parms;
1152	struct net_device *dev = t->dev;
 
 
 
 
 
1153
1154	if (p->flags & IP6_TNL_F_CAP_XMIT) {
1155		int strict = (ipv6_addr_type(&p->raddr) &
1156			      (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1157
1158		struct rt6_info *rt = rt6_lookup(t->net,
1159						 &p->raddr, &p->laddr,
1160						 p->link, NULL, strict);
1161
1162		if (!rt)
1163			return;
1164
1165		if (rt->dst.dev) {
1166			unsigned short dst_len = rt->dst.dev->hard_header_len +
1167						 t_hlen;
1168
1169			if (t->dev->header_ops)
1170				dev->hard_header_len = dst_len;
1171			else
1172				dev->needed_headroom = dst_len;
1173
1174			if (set_mtu) {
1175				int mtu = rt->dst.dev->mtu - t_hlen;
 
 
1176
1177				if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1178					mtu -= 8;
1179				if (dev->type == ARPHRD_ETHER)
1180					mtu -= ETH_HLEN;
1181
1182				if (mtu < IPV6_MIN_MTU)
1183					mtu = IPV6_MIN_MTU;
1184				WRITE_ONCE(dev->mtu, mtu);
1185			}
1186		}
1187		ip6_rt_put(rt);
1188	}
1189}
1190
1191static int ip6gre_calc_hlen(struct ip6_tnl *tunnel)
1192{
1193	int t_hlen;
1194
1195	tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags);
1196	tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen;
1197
1198	t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1199
1200	if (tunnel->dev->header_ops)
1201		tunnel->dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1202	else
1203		tunnel->dev->needed_headroom = LL_MAX_HEADER + t_hlen;
1204
1205	return t_hlen;
1206}
1207
1208static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
1209{
1210	ip6gre_tnl_link_config_common(t);
1211	ip6gre_tnl_link_config_route(t, set_mtu, ip6gre_calc_hlen(t));
1212}
1213
1214static void ip6gre_tnl_copy_tnl_parm(struct ip6_tnl *t,
1215				     const struct __ip6_tnl_parm *p)
1216{
1217	t->parms.laddr = p->laddr;
1218	t->parms.raddr = p->raddr;
1219	t->parms.flags = p->flags;
1220	t->parms.hop_limit = p->hop_limit;
1221	t->parms.encap_limit = p->encap_limit;
1222	t->parms.flowinfo = p->flowinfo;
1223	t->parms.link = p->link;
1224	t->parms.proto = p->proto;
1225	t->parms.i_key = p->i_key;
1226	t->parms.o_key = p->o_key;
1227	ip_tunnel_flags_copy(t->parms.i_flags, p->i_flags);
1228	ip_tunnel_flags_copy(t->parms.o_flags, p->o_flags);
1229	t->parms.fwmark = p->fwmark;
1230	t->parms.erspan_ver = p->erspan_ver;
1231	t->parms.index = p->index;
1232	t->parms.dir = p->dir;
1233	t->parms.hwid = p->hwid;
1234	dst_cache_reset(&t->dst_cache);
1235}
1236
1237static int ip6gre_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p,
1238			     int set_mtu)
1239{
1240	ip6gre_tnl_copy_tnl_parm(t, p);
1241	ip6gre_tnl_link_config(t, set_mtu);
1242	return 0;
1243}
1244
1245static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
1246	const struct ip6_tnl_parm2 *u)
1247{
1248	p->laddr = u->laddr;
1249	p->raddr = u->raddr;
1250	p->flags = u->flags;
1251	p->hop_limit = u->hop_limit;
1252	p->encap_limit = u->encap_limit;
1253	p->flowinfo = u->flowinfo;
1254	p->link = u->link;
1255	p->i_key = u->i_key;
1256	p->o_key = u->o_key;
1257	gre_flags_to_tnl_flags(p->i_flags, u->i_flags);
1258	gre_flags_to_tnl_flags(p->o_flags, u->o_flags);
1259	memcpy(p->name, u->name, sizeof(u->name));
1260}
1261
1262static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
1263	const struct __ip6_tnl_parm *p)
1264{
1265	u->proto = IPPROTO_GRE;
1266	u->laddr = p->laddr;
1267	u->raddr = p->raddr;
1268	u->flags = p->flags;
1269	u->hop_limit = p->hop_limit;
1270	u->encap_limit = p->encap_limit;
1271	u->flowinfo = p->flowinfo;
1272	u->link = p->link;
1273	u->i_key = p->i_key;
1274	u->o_key = p->o_key;
1275	u->i_flags = gre_tnl_flags_to_gre_flags(p->i_flags);
1276	u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags);
1277	memcpy(u->name, p->name, sizeof(u->name));
1278}
1279
1280static int ip6gre_tunnel_siocdevprivate(struct net_device *dev,
1281					struct ifreq *ifr, void __user *data,
1282					int cmd)
1283{
1284	int err = 0;
1285	struct ip6_tnl_parm2 p;
1286	struct __ip6_tnl_parm p1;
1287	struct ip6_tnl *t = netdev_priv(dev);
1288	struct net *net = t->net;
1289	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1290
1291	memset(&p1, 0, sizeof(p1));
1292
1293	switch (cmd) {
1294	case SIOCGETTUNNEL:
1295		if (dev == ign->fb_tunnel_dev) {
1296			if (copy_from_user(&p, data, sizeof(p))) {
1297				err = -EFAULT;
1298				break;
1299			}
1300			ip6gre_tnl_parm_from_user(&p1, &p);
1301			t = ip6gre_tunnel_locate(net, &p1, 0);
1302			if (!t)
1303				t = netdev_priv(dev);
1304		}
1305		memset(&p, 0, sizeof(p));
1306		ip6gre_tnl_parm_to_user(&p, &t->parms);
1307		if (copy_to_user(data, &p, sizeof(p)))
1308			err = -EFAULT;
1309		break;
1310
1311	case SIOCADDTUNNEL:
1312	case SIOCCHGTUNNEL:
1313		err = -EPERM;
1314		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1315			goto done;
1316
1317		err = -EFAULT;
1318		if (copy_from_user(&p, data, sizeof(p)))
1319			goto done;
1320
1321		err = -EINVAL;
1322		if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
1323			goto done;
1324
1325		if (!(p.i_flags&GRE_KEY))
1326			p.i_key = 0;
1327		if (!(p.o_flags&GRE_KEY))
1328			p.o_key = 0;
1329
1330		ip6gre_tnl_parm_from_user(&p1, &p);
1331		t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
1332
1333		if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
1334			if (t) {
1335				if (t->dev != dev) {
1336					err = -EEXIST;
1337					break;
1338				}
1339			} else {
1340				t = netdev_priv(dev);
1341
1342				ip6gre_tunnel_unlink(ign, t);
1343				synchronize_net();
1344				ip6gre_tnl_change(t, &p1, 1);
1345				ip6gre_tunnel_link(ign, t);
1346				netdev_state_change(dev);
1347			}
1348		}
1349
1350		if (t) {
1351			err = 0;
1352
1353			memset(&p, 0, sizeof(p));
1354			ip6gre_tnl_parm_to_user(&p, &t->parms);
1355			if (copy_to_user(data, &p, sizeof(p)))
1356				err = -EFAULT;
1357		} else
1358			err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1359		break;
1360
1361	case SIOCDELTUNNEL:
1362		err = -EPERM;
1363		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1364			goto done;
1365
1366		if (dev == ign->fb_tunnel_dev) {
1367			err = -EFAULT;
1368			if (copy_from_user(&p, data, sizeof(p)))
1369				goto done;
1370			err = -ENOENT;
1371			ip6gre_tnl_parm_from_user(&p1, &p);
1372			t = ip6gre_tunnel_locate(net, &p1, 0);
1373			if (!t)
1374				goto done;
1375			err = -EPERM;
1376			if (t == netdev_priv(ign->fb_tunnel_dev))
1377				goto done;
1378			dev = t->dev;
1379		}
1380		unregister_netdevice(dev);
1381		err = 0;
1382		break;
1383
1384	default:
1385		err = -EINVAL;
1386	}
1387
1388done:
1389	return err;
1390}
1391
 
 
 
 
 
 
 
 
 
1392static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
1393			 unsigned short type, const void *daddr,
1394			 const void *saddr, unsigned int len)
1395{
1396	struct ip6_tnl *t = netdev_priv(dev);
1397	struct ipv6hdr *ipv6h;
1398	__be16 *p;
1399
1400	ipv6h = skb_push(skb, t->hlen + sizeof(*ipv6h));
1401	ip6_flow_hdr(ipv6h, 0, ip6_make_flowlabel(dev_net(dev), skb,
1402						  t->fl.u.ip6.flowlabel,
1403						  true, &t->fl.u.ip6));
1404	ipv6h->hop_limit = t->parms.hop_limit;
1405	ipv6h->nexthdr = NEXTHDR_GRE;
1406	ipv6h->saddr = t->parms.laddr;
1407	ipv6h->daddr = t->parms.raddr;
1408
1409	p = (__be16 *)(ipv6h + 1);
1410	p[0] = ip_tunnel_flags_to_be16(t->parms.o_flags);
1411	p[1] = htons(type);
1412
1413	/*
1414	 *	Set the source hardware address.
1415	 */
1416
1417	if (saddr)
1418		memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
1419	if (daddr)
1420		memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
1421	if (!ipv6_addr_any(&ipv6h->daddr))
1422		return t->hlen;
1423
1424	return -t->hlen;
1425}
1426
1427static const struct header_ops ip6gre_header_ops = {
1428	.create	= ip6gre_header,
1429};
1430
1431static const struct net_device_ops ip6gre_netdev_ops = {
1432	.ndo_init		= ip6gre_tunnel_init,
1433	.ndo_uninit		= ip6gre_tunnel_uninit,
1434	.ndo_start_xmit		= ip6gre_tunnel_xmit,
1435	.ndo_siocdevprivate	= ip6gre_tunnel_siocdevprivate,
1436	.ndo_change_mtu		= ip6_tnl_change_mtu,
 
1437	.ndo_get_iflink		= ip6_tnl_get_iflink,
1438};
1439
1440static void ip6gre_dev_free(struct net_device *dev)
1441{
1442	struct ip6_tnl *t = netdev_priv(dev);
1443
1444	gro_cells_destroy(&t->gro_cells);
1445	dst_cache_destroy(&t->dst_cache);
 
 
1446}
1447
1448static void ip6gre_tunnel_setup(struct net_device *dev)
1449{
 
 
1450	dev->netdev_ops = &ip6gre_netdev_ops;
1451	dev->needs_free_netdev = true;
1452	dev->priv_destructor = ip6gre_dev_free;
1453
1454	dev->pcpu_stat_type = NETDEV_PCPU_STAT_TSTATS;
1455	dev->type = ARPHRD_IP6GRE;
1456
 
 
 
 
1457	dev->flags |= IFF_NOARP;
1458	dev->addr_len = sizeof(struct in6_addr);
1459	netif_keep_dst(dev);
1460	/* This perm addr will be used as interface identifier by IPv6 */
1461	dev->addr_assign_type = NET_ADDR_RANDOM;
1462	eth_random_addr(dev->perm_addr);
1463}
1464
1465#define GRE6_FEATURES (NETIF_F_SG |		\
1466		       NETIF_F_FRAGLIST |	\
1467		       NETIF_F_HIGHDMA |	\
1468		       NETIF_F_HW_CSUM)
1469
1470static void ip6gre_tnl_init_features(struct net_device *dev)
1471{
1472	struct ip6_tnl *nt = netdev_priv(dev);
1473
1474	dev->features		|= GRE6_FEATURES;
1475	dev->hw_features	|= GRE6_FEATURES;
1476
1477	/* TCP offload with GRE SEQ is not supported, nor can we support 2
1478	 * levels of outer headers requiring an update.
1479	 */
1480	if (test_bit(IP_TUNNEL_SEQ_BIT, nt->parms.o_flags))
1481		return;
1482	if (test_bit(IP_TUNNEL_CSUM_BIT, nt->parms.o_flags) &&
1483	    nt->encap.type != TUNNEL_ENCAP_NONE)
1484		return;
1485
1486	dev->features |= NETIF_F_GSO_SOFTWARE;
1487	dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1488
1489	dev->lltx = true;
1490}
1491
1492static int ip6gre_tunnel_init_common(struct net_device *dev)
1493{
1494	struct ip6_tnl *tunnel;
1495	int ret;
1496	int t_hlen;
1497
1498	tunnel = netdev_priv(dev);
1499
1500	tunnel->dev = dev;
1501	tunnel->net = dev_net(dev);
1502	strcpy(tunnel->parms.name, dev->name);
1503
 
 
 
 
1504	ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
1505	if (ret)
 
 
1506		return ret;
1507
1508	ret = gro_cells_init(&tunnel->gro_cells, dev);
1509	if (ret)
1510		goto cleanup_dst_cache_init;
1511
1512	t_hlen = ip6gre_calc_hlen(tunnel);
1513	dev->mtu = ETH_DATA_LEN - t_hlen;
1514	if (dev->type == ARPHRD_ETHER)
1515		dev->mtu -= ETH_HLEN;
1516	if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1517		dev->mtu -= 8;
1518
1519	if (tunnel->parms.collect_md) {
1520		netif_keep_dst(dev);
1521	}
1522	ip6gre_tnl_init_features(dev);
1523
1524	netdev_hold(dev, &tunnel->dev_tracker, GFP_KERNEL);
1525	netdev_lockdep_set_classes(dev);
1526	return 0;
1527
1528cleanup_dst_cache_init:
1529	dst_cache_destroy(&tunnel->dst_cache);
1530	return ret;
1531}
1532
1533static int ip6gre_tunnel_init(struct net_device *dev)
1534{
1535	struct ip6_tnl *tunnel;
1536	int ret;
1537
1538	ret = ip6gre_tunnel_init_common(dev);
1539	if (ret)
1540		return ret;
1541
1542	tunnel = netdev_priv(dev);
1543
1544	if (tunnel->parms.collect_md)
1545		return 0;
1546
1547	__dev_addr_set(dev, &tunnel->parms.laddr, sizeof(struct in6_addr));
1548	memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1549
1550	if (ipv6_addr_any(&tunnel->parms.raddr))
1551		dev->header_ops = &ip6gre_header_ops;
1552
1553	return 0;
1554}
1555
1556static void ip6gre_fb_tunnel_init(struct net_device *dev)
1557{
1558	struct ip6_tnl *tunnel = netdev_priv(dev);
1559
1560	tunnel->dev = dev;
1561	tunnel->net = dev_net(dev);
1562	strcpy(tunnel->parms.name, dev->name);
1563
1564	tunnel->hlen		= sizeof(struct ipv6hdr) + 4;
 
 
1565}
1566
 
1567static struct inet6_protocol ip6gre_protocol __read_mostly = {
1568	.handler     = gre_rcv,
1569	.err_handler = ip6gre_err,
1570	.flags       = INET6_PROTO_FINAL,
1571};
1572
1573static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
1574{
1575	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1576	struct net_device *dev, *aux;
1577	int prio;
1578
1579	for_each_netdev_safe(net, dev, aux)
1580		if (dev->rtnl_link_ops == &ip6gre_link_ops ||
1581		    dev->rtnl_link_ops == &ip6gre_tap_ops ||
1582		    dev->rtnl_link_ops == &ip6erspan_tap_ops)
1583			unregister_netdevice_queue(dev, head);
1584
1585	for (prio = 0; prio < 4; prio++) {
1586		int h;
1587		for (h = 0; h < IP6_GRE_HASH_SIZE; h++) {
1588			struct ip6_tnl *t;
1589
1590			t = rtnl_dereference(ign->tunnels[prio][h]);
1591
1592			while (t) {
1593				/* If dev is in the same netns, it has already
1594				 * been added to the list by the previous loop.
1595				 */
1596				if (!net_eq(dev_net(t->dev), net))
1597					unregister_netdevice_queue(t->dev,
1598								   head);
1599				t = rtnl_dereference(t->next);
1600			}
1601		}
1602	}
1603}
1604
1605static int __net_init ip6gre_init_net(struct net *net)
1606{
1607	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1608	struct net_device *ndev;
1609	int err;
1610
1611	if (!net_has_fallback_tunnels(net))
1612		return 0;
1613	ndev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
1614			    NET_NAME_UNKNOWN, ip6gre_tunnel_setup);
1615	if (!ndev) {
1616		err = -ENOMEM;
1617		goto err_alloc_dev;
1618	}
1619	ign->fb_tunnel_dev = ndev;
1620	dev_net_set(ign->fb_tunnel_dev, net);
1621	/* FB netdevice is special: we have one, and only one per netns.
1622	 * Allowing to move it to another netns is clearly unsafe.
1623	 */
1624	ign->fb_tunnel_dev->netns_local = true;
 
1625
1626	ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1627	ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1628
1629	err = register_netdev(ign->fb_tunnel_dev);
1630	if (err)
1631		goto err_reg_dev;
1632
1633	rcu_assign_pointer(ign->tunnels_wc[0],
1634			   netdev_priv(ign->fb_tunnel_dev));
1635	return 0;
1636
1637err_reg_dev:
1638	free_netdev(ndev);
1639err_alloc_dev:
1640	return err;
1641}
1642
1643static void __net_exit ip6gre_exit_batch_rtnl(struct list_head *net_list,
1644					      struct list_head *dev_to_kill)
1645{
1646	struct net *net;
1647
1648	ASSERT_RTNL();
1649	list_for_each_entry(net, net_list, exit_list)
1650		ip6gre_destroy_tunnels(net, dev_to_kill);
 
1651}
1652
1653static struct pernet_operations ip6gre_net_ops = {
1654	.init = ip6gre_init_net,
1655	.exit_batch_rtnl = ip6gre_exit_batch_rtnl,
1656	.id   = &ip6gre_net_id,
1657	.size = sizeof(struct ip6gre_net),
1658};
1659
1660static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[],
1661				  struct netlink_ext_ack *extack)
1662{
1663	__be16 flags;
1664
1665	if (!data)
1666		return 0;
1667
1668	flags = 0;
1669	if (data[IFLA_GRE_IFLAGS])
1670		flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1671	if (data[IFLA_GRE_OFLAGS])
1672		flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1673	if (flags & (GRE_VERSION|GRE_ROUTING))
1674		return -EINVAL;
1675
1676	return 0;
1677}
1678
1679static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[],
1680			       struct netlink_ext_ack *extack)
1681{
1682	struct in6_addr daddr;
1683
1684	if (tb[IFLA_ADDRESS]) {
1685		if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1686			return -EINVAL;
1687		if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1688			return -EADDRNOTAVAIL;
1689	}
1690
1691	if (!data)
1692		goto out;
1693
1694	if (data[IFLA_GRE_REMOTE]) {
1695		daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
1696		if (ipv6_addr_any(&daddr))
1697			return -EINVAL;
1698	}
1699
1700out:
1701	return ip6gre_tunnel_validate(tb, data, extack);
1702}
1703
1704static int ip6erspan_tap_validate(struct nlattr *tb[], struct nlattr *data[],
1705				  struct netlink_ext_ack *extack)
1706{
1707	__be16 flags = 0;
1708	int ret, ver = 0;
1709
1710	if (!data)
1711		return 0;
1712
1713	ret = ip6gre_tap_validate(tb, data, extack);
1714	if (ret)
1715		return ret;
1716
1717	/* ERSPAN should only have GRE sequence and key flag */
1718	if (data[IFLA_GRE_OFLAGS])
1719		flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1720	if (data[IFLA_GRE_IFLAGS])
1721		flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1722	if (!data[IFLA_GRE_COLLECT_METADATA] &&
1723	    flags != (GRE_SEQ | GRE_KEY))
1724		return -EINVAL;
1725
1726	/* ERSPAN Session ID only has 10-bit. Since we reuse
1727	 * 32-bit key field as ID, check it's range.
1728	 */
1729	if (data[IFLA_GRE_IKEY] &&
1730	    (ntohl(nla_get_be32(data[IFLA_GRE_IKEY])) & ~ID_MASK))
1731		return -EINVAL;
1732
1733	if (data[IFLA_GRE_OKEY] &&
1734	    (ntohl(nla_get_be32(data[IFLA_GRE_OKEY])) & ~ID_MASK))
1735		return -EINVAL;
1736
1737	if (data[IFLA_GRE_ERSPAN_VER]) {
1738		ver = nla_get_u8(data[IFLA_GRE_ERSPAN_VER]);
1739		if (ver != 1 && ver != 2)
1740			return -EINVAL;
1741	}
1742
1743	if (ver == 1) {
1744		if (data[IFLA_GRE_ERSPAN_INDEX]) {
1745			u32 index = nla_get_u32(data[IFLA_GRE_ERSPAN_INDEX]);
1746
1747			if (index & ~INDEX_MASK)
1748				return -EINVAL;
1749		}
1750	} else if (ver == 2) {
1751		if (data[IFLA_GRE_ERSPAN_DIR]) {
1752			u16 dir = nla_get_u8(data[IFLA_GRE_ERSPAN_DIR]);
1753
1754			if (dir & ~(DIR_MASK >> DIR_OFFSET))
1755				return -EINVAL;
1756		}
1757
1758		if (data[IFLA_GRE_ERSPAN_HWID]) {
1759			u16 hwid = nla_get_u16(data[IFLA_GRE_ERSPAN_HWID]);
1760
1761			if (hwid & ~(HWID_MASK >> HWID_OFFSET))
1762				return -EINVAL;
1763		}
1764	}
1765
1766	return 0;
1767}
1768
1769static void ip6erspan_set_version(struct nlattr *data[],
1770				  struct __ip6_tnl_parm *parms)
1771{
1772	if (!data)
1773		return;
1774
1775	parms->erspan_ver = 1;
1776	if (data[IFLA_GRE_ERSPAN_VER])
1777		parms->erspan_ver = nla_get_u8(data[IFLA_GRE_ERSPAN_VER]);
1778
1779	if (parms->erspan_ver == 1) {
1780		if (data[IFLA_GRE_ERSPAN_INDEX])
1781			parms->index = nla_get_u32(data[IFLA_GRE_ERSPAN_INDEX]);
1782	} else if (parms->erspan_ver == 2) {
1783		if (data[IFLA_GRE_ERSPAN_DIR])
1784			parms->dir = nla_get_u8(data[IFLA_GRE_ERSPAN_DIR]);
1785		if (data[IFLA_GRE_ERSPAN_HWID])
1786			parms->hwid = nla_get_u16(data[IFLA_GRE_ERSPAN_HWID]);
1787	}
1788}
1789
1790static void ip6gre_netlink_parms(struct nlattr *data[],
1791				struct __ip6_tnl_parm *parms)
1792{
1793	memset(parms, 0, sizeof(*parms));
1794
1795	if (!data)
1796		return;
1797
1798	if (data[IFLA_GRE_LINK])
1799		parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1800
1801	if (data[IFLA_GRE_IFLAGS])
1802		gre_flags_to_tnl_flags(parms->i_flags,
1803				       nla_get_be16(data[IFLA_GRE_IFLAGS]));
1804
1805	if (data[IFLA_GRE_OFLAGS])
1806		gre_flags_to_tnl_flags(parms->o_flags,
1807				       nla_get_be16(data[IFLA_GRE_OFLAGS]));
1808
1809	if (data[IFLA_GRE_IKEY])
1810		parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1811
1812	if (data[IFLA_GRE_OKEY])
1813		parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1814
1815	if (data[IFLA_GRE_LOCAL])
1816		parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
1817
1818	if (data[IFLA_GRE_REMOTE])
1819		parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
1820
1821	if (data[IFLA_GRE_TTL])
1822		parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1823
1824	if (data[IFLA_GRE_ENCAP_LIMIT])
1825		parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1826
1827	if (data[IFLA_GRE_FLOWINFO])
1828		parms->flowinfo = nla_get_be32(data[IFLA_GRE_FLOWINFO]);
1829
1830	if (data[IFLA_GRE_FLAGS])
1831		parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
1832
1833	if (data[IFLA_GRE_FWMARK])
1834		parms->fwmark = nla_get_u32(data[IFLA_GRE_FWMARK]);
1835
1836	if (data[IFLA_GRE_COLLECT_METADATA])
1837		parms->collect_md = true;
1838}
1839
1840static int ip6gre_tap_init(struct net_device *dev)
1841{
 
1842	int ret;
1843
1844	ret = ip6gre_tunnel_init_common(dev);
1845	if (ret)
1846		return ret;
1847
1848	dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
 
 
1849
1850	return 0;
1851}
1852
1853static const struct net_device_ops ip6gre_tap_netdev_ops = {
1854	.ndo_init = ip6gre_tap_init,
1855	.ndo_uninit = ip6gre_tunnel_uninit,
1856	.ndo_start_xmit = ip6gre_tunnel_xmit,
1857	.ndo_set_mac_address = eth_mac_addr,
1858	.ndo_validate_addr = eth_validate_addr,
1859	.ndo_change_mtu = ip6_tnl_change_mtu,
 
1860	.ndo_get_iflink = ip6_tnl_get_iflink,
1861};
1862
1863static int ip6erspan_calc_hlen(struct ip6_tnl *tunnel)
1864{
1865	int t_hlen;
1866
1867	tunnel->tun_hlen = 8;
1868	tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen +
1869		       erspan_hdr_len(tunnel->parms.erspan_ver);
1870
1871	t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1872	tunnel->dev->needed_headroom = LL_MAX_HEADER + t_hlen;
1873	return t_hlen;
1874}
1875
1876static int ip6erspan_tap_init(struct net_device *dev)
1877{
1878	struct ip6_tnl *tunnel;
1879	int t_hlen;
1880	int ret;
1881
1882	tunnel = netdev_priv(dev);
1883
1884	tunnel->dev = dev;
1885	tunnel->net = dev_net(dev);
1886	strcpy(tunnel->parms.name, dev->name);
1887
1888	ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
1889	if (ret)
1890		return ret;
1891
1892	ret = gro_cells_init(&tunnel->gro_cells, dev);
1893	if (ret)
1894		goto cleanup_dst_cache_init;
1895
1896	t_hlen = ip6erspan_calc_hlen(tunnel);
1897	dev->mtu = ETH_DATA_LEN - t_hlen;
1898	if (dev->type == ARPHRD_ETHER)
1899		dev->mtu -= ETH_HLEN;
1900	if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1901		dev->mtu -= 8;
1902
1903	dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1904	ip6erspan_tnl_link_config(tunnel, 1);
1905
1906	netdev_hold(dev, &tunnel->dev_tracker, GFP_KERNEL);
1907	netdev_lockdep_set_classes(dev);
1908	return 0;
1909
1910cleanup_dst_cache_init:
1911	dst_cache_destroy(&tunnel->dst_cache);
1912	return ret;
1913}
1914
1915static const struct net_device_ops ip6erspan_netdev_ops = {
1916	.ndo_init =		ip6erspan_tap_init,
1917	.ndo_uninit =		ip6erspan_tunnel_uninit,
1918	.ndo_start_xmit =	ip6erspan_tunnel_xmit,
1919	.ndo_set_mac_address =	eth_mac_addr,
1920	.ndo_validate_addr =	eth_validate_addr,
1921	.ndo_change_mtu =	ip6_tnl_change_mtu,
1922	.ndo_get_iflink =	ip6_tnl_get_iflink,
1923};
1924
1925static void ip6gre_tap_setup(struct net_device *dev)
1926{
1927
1928	ether_setup(dev);
1929
1930	dev->max_mtu = 0;
1931	dev->netdev_ops = &ip6gre_tap_netdev_ops;
1932	dev->needs_free_netdev = true;
1933	dev->priv_destructor = ip6gre_dev_free;
1934
1935	dev->pcpu_stat_type = NETDEV_PCPU_STAT_TSTATS;
1936	dev->priv_flags &= ~IFF_TX_SKB_SHARING;
1937	dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1938	netif_keep_dst(dev);
1939}
1940
1941static bool ip6gre_netlink_encap_parms(struct nlattr *data[],
1942				       struct ip_tunnel_encap *ipencap)
1943{
1944	bool ret = false;
1945
1946	memset(ipencap, 0, sizeof(*ipencap));
1947
1948	if (!data)
1949		return ret;
1950
1951	if (data[IFLA_GRE_ENCAP_TYPE]) {
1952		ret = true;
1953		ipencap->type = nla_get_u16(data[IFLA_GRE_ENCAP_TYPE]);
1954	}
1955
1956	if (data[IFLA_GRE_ENCAP_FLAGS]) {
1957		ret = true;
1958		ipencap->flags = nla_get_u16(data[IFLA_GRE_ENCAP_FLAGS]);
1959	}
1960
1961	if (data[IFLA_GRE_ENCAP_SPORT]) {
1962		ret = true;
1963		ipencap->sport = nla_get_be16(data[IFLA_GRE_ENCAP_SPORT]);
1964	}
1965
1966	if (data[IFLA_GRE_ENCAP_DPORT]) {
1967		ret = true;
1968		ipencap->dport = nla_get_be16(data[IFLA_GRE_ENCAP_DPORT]);
1969	}
1970
1971	return ret;
1972}
1973
1974static int ip6gre_newlink_common(struct net *src_net, struct net_device *dev,
1975				 struct nlattr *tb[], struct nlattr *data[],
1976				 struct netlink_ext_ack *extack)
1977{
1978	struct ip6_tnl *nt;
1979	struct ip_tunnel_encap ipencap;
 
1980	int err;
1981
1982	nt = netdev_priv(dev);
 
1983
1984	if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1985		int err = ip6_tnl_encap_setup(nt, &ipencap);
1986
1987		if (err < 0)
1988			return err;
1989	}
1990
1991	if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS])
1992		eth_hw_addr_random(dev);
1993
1994	nt->dev = dev;
1995	nt->net = dev_net(dev);
 
 
 
 
 
1996
1997	err = register_netdevice(dev);
1998	if (err)
1999		goto out;
2000
2001	if (tb[IFLA_MTU])
2002		ip6_tnl_change_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
2003
2004out:
2005	return err;
2006}
2007
2008static int ip6gre_newlink(struct net *src_net, struct net_device *dev,
2009			  struct nlattr *tb[], struct nlattr *data[],
2010			  struct netlink_ext_ack *extack)
2011{
2012	struct ip6_tnl *nt = netdev_priv(dev);
2013	struct net *net = dev_net(dev);
2014	struct ip6gre_net *ign;
2015	int err;
2016
2017	ip6gre_netlink_parms(data, &nt->parms);
2018	ign = net_generic(net, ip6gre_net_id);
2019
2020	if (nt->parms.collect_md) {
2021		if (rtnl_dereference(ign->collect_md_tun))
2022			return -EEXIST;
2023	} else {
2024		if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
2025			return -EEXIST;
2026	}
2027
2028	err = ip6gre_newlink_common(src_net, dev, tb, data, extack);
2029	if (!err) {
2030		ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
2031		ip6gre_tunnel_link_md(ign, nt);
2032		ip6gre_tunnel_link(net_generic(net, ip6gre_net_id), nt);
2033	}
2034	return err;
2035}
2036
2037static struct ip6_tnl *
2038ip6gre_changelink_common(struct net_device *dev, struct nlattr *tb[],
2039			 struct nlattr *data[], struct __ip6_tnl_parm *p_p,
2040			 struct netlink_ext_ack *extack)
2041{
2042	struct ip6_tnl *t, *nt = netdev_priv(dev);
2043	struct net *net = nt->net;
2044	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
2045	struct ip_tunnel_encap ipencap;
2046
2047	if (dev == ign->fb_tunnel_dev)
2048		return ERR_PTR(-EINVAL);
2049
2050	if (ip6gre_netlink_encap_parms(data, &ipencap)) {
2051		int err = ip6_tnl_encap_setup(nt, &ipencap);
2052
2053		if (err < 0)
2054			return ERR_PTR(err);
2055	}
2056
2057	ip6gre_netlink_parms(data, p_p);
2058
2059	t = ip6gre_tunnel_locate(net, p_p, 0);
2060
2061	if (t) {
2062		if (t->dev != dev)
2063			return ERR_PTR(-EEXIST);
2064	} else {
2065		t = nt;
2066	}
2067
2068	return t;
2069}
2070
2071static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
2072			     struct nlattr *data[],
2073			     struct netlink_ext_ack *extack)
2074{
2075	struct ip6_tnl *t = netdev_priv(dev);
2076	struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
2077	struct __ip6_tnl_parm p;
2078
2079	t = ip6gre_changelink_common(dev, tb, data, &p, extack);
2080	if (IS_ERR(t))
2081		return PTR_ERR(t);
2082
2083	ip6gre_tunnel_unlink_md(ign, t);
2084	ip6gre_tunnel_unlink(ign, t);
2085	ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
2086	ip6gre_tunnel_link_md(ign, t);
2087	ip6gre_tunnel_link(ign, t);
2088	return 0;
2089}
2090
2091static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
2092{
2093	struct net *net = dev_net(dev);
2094	struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
2095
2096	if (dev != ign->fb_tunnel_dev)
2097		unregister_netdevice_queue(dev, head);
2098}
2099
2100static size_t ip6gre_get_size(const struct net_device *dev)
2101{
2102	return
2103		/* IFLA_GRE_LINK */
2104		nla_total_size(4) +
2105		/* IFLA_GRE_IFLAGS */
2106		nla_total_size(2) +
2107		/* IFLA_GRE_OFLAGS */
2108		nla_total_size(2) +
2109		/* IFLA_GRE_IKEY */
2110		nla_total_size(4) +
2111		/* IFLA_GRE_OKEY */
2112		nla_total_size(4) +
2113		/* IFLA_GRE_LOCAL */
2114		nla_total_size(sizeof(struct in6_addr)) +
2115		/* IFLA_GRE_REMOTE */
2116		nla_total_size(sizeof(struct in6_addr)) +
2117		/* IFLA_GRE_TTL */
2118		nla_total_size(1) +
 
 
2119		/* IFLA_GRE_ENCAP_LIMIT */
2120		nla_total_size(1) +
2121		/* IFLA_GRE_FLOWINFO */
2122		nla_total_size(4) +
2123		/* IFLA_GRE_FLAGS */
2124		nla_total_size(4) +
2125		/* IFLA_GRE_ENCAP_TYPE */
2126		nla_total_size(2) +
2127		/* IFLA_GRE_ENCAP_FLAGS */
2128		nla_total_size(2) +
2129		/* IFLA_GRE_ENCAP_SPORT */
2130		nla_total_size(2) +
2131		/* IFLA_GRE_ENCAP_DPORT */
2132		nla_total_size(2) +
2133		/* IFLA_GRE_COLLECT_METADATA */
2134		nla_total_size(0) +
2135		/* IFLA_GRE_FWMARK */
2136		nla_total_size(4) +
2137		/* IFLA_GRE_ERSPAN_INDEX */
2138		nla_total_size(4) +
2139		0;
2140}
2141
2142static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
2143{
2144	struct ip6_tnl *t = netdev_priv(dev);
2145	struct __ip6_tnl_parm *p = &t->parms;
2146	IP_TUNNEL_DECLARE_FLAGS(o_flags);
2147
2148	ip_tunnel_flags_copy(o_flags, p->o_flags);
2149
2150	if (p->erspan_ver == 1 || p->erspan_ver == 2) {
2151		if (!p->collect_md)
2152			__set_bit(IP_TUNNEL_KEY_BIT, o_flags);
2153
2154		if (nla_put_u8(skb, IFLA_GRE_ERSPAN_VER, p->erspan_ver))
2155			goto nla_put_failure;
2156
2157		if (p->erspan_ver == 1) {
2158			if (nla_put_u32(skb, IFLA_GRE_ERSPAN_INDEX, p->index))
2159				goto nla_put_failure;
2160		} else {
2161			if (nla_put_u8(skb, IFLA_GRE_ERSPAN_DIR, p->dir))
2162				goto nla_put_failure;
2163			if (nla_put_u16(skb, IFLA_GRE_ERSPAN_HWID, p->hwid))
2164				goto nla_put_failure;
2165		}
2166	}
2167
2168	if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
2169	    nla_put_be16(skb, IFLA_GRE_IFLAGS,
2170			 gre_tnl_flags_to_gre_flags(p->i_flags)) ||
2171	    nla_put_be16(skb, IFLA_GRE_OFLAGS,
2172			 gre_tnl_flags_to_gre_flags(o_flags)) ||
2173	    nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
2174	    nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
2175	    nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
2176	    nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
2177	    nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
 
2178	    nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
2179	    nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
2180	    nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags) ||
2181	    nla_put_u32(skb, IFLA_GRE_FWMARK, p->fwmark))
2182		goto nla_put_failure;
2183
2184	if (nla_put_u16(skb, IFLA_GRE_ENCAP_TYPE,
2185			t->encap.type) ||
2186	    nla_put_be16(skb, IFLA_GRE_ENCAP_SPORT,
2187			 t->encap.sport) ||
2188	    nla_put_be16(skb, IFLA_GRE_ENCAP_DPORT,
2189			 t->encap.dport) ||
2190	    nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS,
2191			t->encap.flags))
2192		goto nla_put_failure;
2193
2194	if (p->collect_md) {
2195		if (nla_put_flag(skb, IFLA_GRE_COLLECT_METADATA))
2196			goto nla_put_failure;
2197	}
2198
2199	return 0;
2200
2201nla_put_failure:
2202	return -EMSGSIZE;
2203}
2204
2205static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
2206	[IFLA_GRE_LINK]        = { .type = NLA_U32 },
2207	[IFLA_GRE_IFLAGS]      = { .type = NLA_U16 },
2208	[IFLA_GRE_OFLAGS]      = { .type = NLA_U16 },
2209	[IFLA_GRE_IKEY]        = { .type = NLA_U32 },
2210	[IFLA_GRE_OKEY]        = { .type = NLA_U32 },
2211	[IFLA_GRE_LOCAL]       = { .len = sizeof_field(struct ipv6hdr, saddr) },
2212	[IFLA_GRE_REMOTE]      = { .len = sizeof_field(struct ipv6hdr, daddr) },
2213	[IFLA_GRE_TTL]         = { .type = NLA_U8 },
2214	[IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
2215	[IFLA_GRE_FLOWINFO]    = { .type = NLA_U32 },
2216	[IFLA_GRE_FLAGS]       = { .type = NLA_U32 },
2217	[IFLA_GRE_ENCAP_TYPE]   = { .type = NLA_U16 },
2218	[IFLA_GRE_ENCAP_FLAGS]  = { .type = NLA_U16 },
2219	[IFLA_GRE_ENCAP_SPORT]  = { .type = NLA_U16 },
2220	[IFLA_GRE_ENCAP_DPORT]  = { .type = NLA_U16 },
2221	[IFLA_GRE_COLLECT_METADATA] = { .type = NLA_FLAG },
2222	[IFLA_GRE_FWMARK]       = { .type = NLA_U32 },
2223	[IFLA_GRE_ERSPAN_INDEX] = { .type = NLA_U32 },
2224	[IFLA_GRE_ERSPAN_VER]	= { .type = NLA_U8 },
2225	[IFLA_GRE_ERSPAN_DIR]	= { .type = NLA_U8 },
2226	[IFLA_GRE_ERSPAN_HWID]	= { .type = NLA_U16 },
2227};
2228
2229static void ip6erspan_tap_setup(struct net_device *dev)
2230{
2231	ether_setup(dev);
2232
2233	dev->max_mtu = 0;
2234	dev->netdev_ops = &ip6erspan_netdev_ops;
2235	dev->needs_free_netdev = true;
2236	dev->priv_destructor = ip6gre_dev_free;
2237
2238	dev->pcpu_stat_type = NETDEV_PCPU_STAT_TSTATS;
2239	dev->priv_flags &= ~IFF_TX_SKB_SHARING;
2240	dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
2241	netif_keep_dst(dev);
2242}
2243
2244static int ip6erspan_newlink(struct net *src_net, struct net_device *dev,
2245			     struct nlattr *tb[], struct nlattr *data[],
2246			     struct netlink_ext_ack *extack)
2247{
2248	struct ip6_tnl *nt = netdev_priv(dev);
2249	struct net *net = dev_net(dev);
2250	struct ip6gre_net *ign;
2251	int err;
2252
2253	ip6gre_netlink_parms(data, &nt->parms);
2254	ip6erspan_set_version(data, &nt->parms);
2255	ign = net_generic(net, ip6gre_net_id);
2256
2257	if (nt->parms.collect_md) {
2258		if (rtnl_dereference(ign->collect_md_tun_erspan))
2259			return -EEXIST;
2260	} else {
2261		if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
2262			return -EEXIST;
2263	}
2264
2265	err = ip6gre_newlink_common(src_net, dev, tb, data, extack);
2266	if (!err) {
2267		ip6erspan_tnl_link_config(nt, !tb[IFLA_MTU]);
2268		ip6erspan_tunnel_link_md(ign, nt);
2269		ip6gre_tunnel_link(net_generic(net, ip6gre_net_id), nt);
2270	}
2271	return err;
2272}
2273
2274static void ip6erspan_tnl_link_config(struct ip6_tnl *t, int set_mtu)
2275{
2276	ip6gre_tnl_link_config_common(t);
2277	ip6gre_tnl_link_config_route(t, set_mtu, ip6erspan_calc_hlen(t));
2278}
2279
2280static int ip6erspan_tnl_change(struct ip6_tnl *t,
2281				const struct __ip6_tnl_parm *p, int set_mtu)
2282{
2283	ip6gre_tnl_copy_tnl_parm(t, p);
2284	ip6erspan_tnl_link_config(t, set_mtu);
2285	return 0;
2286}
2287
2288static int ip6erspan_changelink(struct net_device *dev, struct nlattr *tb[],
2289				struct nlattr *data[],
2290				struct netlink_ext_ack *extack)
2291{
2292	struct ip6gre_net *ign = net_generic(dev_net(dev), ip6gre_net_id);
2293	struct __ip6_tnl_parm p;
2294	struct ip6_tnl *t;
2295
2296	t = ip6gre_changelink_common(dev, tb, data, &p, extack);
2297	if (IS_ERR(t))
2298		return PTR_ERR(t);
2299
2300	ip6erspan_set_version(data, &p);
2301	ip6gre_tunnel_unlink_md(ign, t);
2302	ip6gre_tunnel_unlink(ign, t);
2303	ip6erspan_tnl_change(t, &p, !tb[IFLA_MTU]);
2304	ip6erspan_tunnel_link_md(ign, t);
2305	ip6gre_tunnel_link(ign, t);
2306	return 0;
2307}
2308
2309static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
2310	.kind		= "ip6gre",
2311	.maxtype	= IFLA_GRE_MAX,
2312	.policy		= ip6gre_policy,
2313	.priv_size	= sizeof(struct ip6_tnl),
2314	.setup		= ip6gre_tunnel_setup,
2315	.validate	= ip6gre_tunnel_validate,
2316	.newlink	= ip6gre_newlink,
2317	.changelink	= ip6gre_changelink,
2318	.dellink	= ip6gre_dellink,
2319	.get_size	= ip6gre_get_size,
2320	.fill_info	= ip6gre_fill_info,
2321	.get_link_net	= ip6_tnl_get_link_net,
2322};
2323
2324static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
2325	.kind		= "ip6gretap",
2326	.maxtype	= IFLA_GRE_MAX,
2327	.policy		= ip6gre_policy,
2328	.priv_size	= sizeof(struct ip6_tnl),
2329	.setup		= ip6gre_tap_setup,
2330	.validate	= ip6gre_tap_validate,
2331	.newlink	= ip6gre_newlink,
2332	.changelink	= ip6gre_changelink,
2333	.get_size	= ip6gre_get_size,
2334	.fill_info	= ip6gre_fill_info,
2335	.get_link_net	= ip6_tnl_get_link_net,
2336};
2337
2338static struct rtnl_link_ops ip6erspan_tap_ops __read_mostly = {
2339	.kind		= "ip6erspan",
2340	.maxtype	= IFLA_GRE_MAX,
2341	.policy		= ip6gre_policy,
2342	.priv_size	= sizeof(struct ip6_tnl),
2343	.setup		= ip6erspan_tap_setup,
2344	.validate	= ip6erspan_tap_validate,
2345	.newlink	= ip6erspan_newlink,
2346	.changelink	= ip6erspan_changelink,
2347	.get_size	= ip6gre_get_size,
2348	.fill_info	= ip6gre_fill_info,
2349	.get_link_net	= ip6_tnl_get_link_net,
2350};
2351
2352/*
2353 *	And now the modules code and kernel interface.
2354 */
2355
2356static int __init ip6gre_init(void)
2357{
2358	int err;
2359
2360	pr_info("GRE over IPv6 tunneling driver\n");
2361
2362	err = register_pernet_device(&ip6gre_net_ops);
2363	if (err < 0)
2364		return err;
2365
2366	err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
2367	if (err < 0) {
2368		pr_info("%s: can't add protocol\n", __func__);
2369		goto add_proto_failed;
2370	}
2371
2372	err = rtnl_link_register(&ip6gre_link_ops);
2373	if (err < 0)
2374		goto rtnl_link_failed;
2375
2376	err = rtnl_link_register(&ip6gre_tap_ops);
2377	if (err < 0)
2378		goto tap_ops_failed;
2379
2380	err = rtnl_link_register(&ip6erspan_tap_ops);
2381	if (err < 0)
2382		goto erspan_link_failed;
2383
2384out:
2385	return err;
2386
2387erspan_link_failed:
2388	rtnl_link_unregister(&ip6gre_tap_ops);
2389tap_ops_failed:
2390	rtnl_link_unregister(&ip6gre_link_ops);
2391rtnl_link_failed:
2392	inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
2393add_proto_failed:
2394	unregister_pernet_device(&ip6gre_net_ops);
2395	goto out;
2396}
2397
2398static void __exit ip6gre_fini(void)
2399{
2400	rtnl_link_unregister(&ip6gre_tap_ops);
2401	rtnl_link_unregister(&ip6gre_link_ops);
2402	rtnl_link_unregister(&ip6erspan_tap_ops);
2403	inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
2404	unregister_pernet_device(&ip6gre_net_ops);
2405}
2406
2407module_init(ip6gre_init);
2408module_exit(ip6gre_fini);
2409MODULE_LICENSE("GPL");
2410MODULE_AUTHOR("D. Kozlov <xeb@mail.ru>");
2411MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
2412MODULE_ALIAS_RTNL_LINK("ip6gre");
2413MODULE_ALIAS_RTNL_LINK("ip6gretap");
2414MODULE_ALIAS_RTNL_LINK("ip6erspan");
2415MODULE_ALIAS_NETDEV("ip6gre0");