• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *	IPv6 tunneling device
4  *	Linux INET6 implementation
5  *
6  *	Authors:
7  *	Ville Nuorvala		<vnuorval@tcs.hut.fi>
8  *	Yasuyuki Kozakai	<kozakai@linux-ipv6.org>
9  *
10  *      Based on:
11  *      linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
12  *
13  *      RFC 2473
14  */
15 
16 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 
18 #include <linux/module.h>
19 #include <linux/capability.h>
20 #include <linux/errno.h>
21 #include <linux/types.h>
22 #include <linux/sockios.h>
23 #include <linux/icmp.h>
24 #include <linux/if.h>
25 #include <linux/in.h>
26 #include <linux/ip.h>
27 #include <linux/net.h>
28 #include <linux/in6.h>
29 #include <linux/netdevice.h>
30 #include <linux/if_arp.h>
31 #include <linux/icmpv6.h>
32 #include <linux/init.h>
33 #include <linux/route.h>
34 #include <linux/rtnetlink.h>
35 #include <linux/netfilter_ipv6.h>
36 #include <linux/slab.h>
37 #include <linux/hash.h>
38 #include <linux/etherdevice.h>
39 
40 #include <linux/uaccess.h>
41 #include <linux/atomic.h>
42 
43 #include <net/icmp.h>
44 #include <net/ip.h>
45 #include <net/ip_tunnels.h>
46 #include <net/ipv6.h>
47 #include <net/ip6_route.h>
48 #include <net/addrconf.h>
49 #include <net/ip6_tunnel.h>
50 #include <net/xfrm.h>
51 #include <net/dsfield.h>
52 #include <net/inet_ecn.h>
53 #include <net/net_namespace.h>
54 #include <net/netns/generic.h>
55 #include <net/dst_metadata.h>
56 
57 MODULE_AUTHOR("Ville Nuorvala");
58 MODULE_DESCRIPTION("IPv6 tunneling device");
59 MODULE_LICENSE("GPL");
60 MODULE_ALIAS_RTNL_LINK("ip6tnl");
61 MODULE_ALIAS_NETDEV("ip6tnl0");
62 
63 #define IP6_TUNNEL_HASH_SIZE_SHIFT  5
64 #define IP6_TUNNEL_HASH_SIZE (1 << IP6_TUNNEL_HASH_SIZE_SHIFT)
65 
66 static bool log_ecn_error = true;
67 module_param(log_ecn_error, bool, 0644);
68 MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
69 
HASH(const struct in6_addr * addr1,const struct in6_addr * addr2)70 static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
71 {
72 	u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
73 
74 	return hash_32(hash, IP6_TUNNEL_HASH_SIZE_SHIFT);
75 }
76 
77 static int ip6_tnl_dev_init(struct net_device *dev);
78 static void ip6_tnl_dev_setup(struct net_device *dev);
79 static struct rtnl_link_ops ip6_link_ops __read_mostly;
80 
81 static unsigned int ip6_tnl_net_id __read_mostly;
82 struct ip6_tnl_net {
83 	/* the IPv6 tunnel fallback device */
84 	struct net_device *fb_tnl_dev;
85 	/* lists for storing tunnels in use */
86 	struct ip6_tnl __rcu *tnls_r_l[IP6_TUNNEL_HASH_SIZE];
87 	struct ip6_tnl __rcu *tnls_wc[1];
88 	struct ip6_tnl __rcu **tnls[2];
89 	struct ip6_tnl __rcu *collect_md_tun;
90 };
91 
ip6_tnl_mpls_supported(void)92 static inline int ip6_tnl_mpls_supported(void)
93 {
94 	return IS_ENABLED(CONFIG_MPLS);
95 }
96 
ip6_get_stats(struct net_device * dev)97 static struct net_device_stats *ip6_get_stats(struct net_device *dev)
98 {
99 	struct pcpu_sw_netstats tmp, sum = { 0 };
100 	int i;
101 
102 	for_each_possible_cpu(i) {
103 		unsigned int start;
104 		const struct pcpu_sw_netstats *tstats =
105 						   per_cpu_ptr(dev->tstats, i);
106 
107 		do {
108 			start = u64_stats_fetch_begin_irq(&tstats->syncp);
109 			tmp.rx_packets = tstats->rx_packets;
110 			tmp.rx_bytes = tstats->rx_bytes;
111 			tmp.tx_packets = tstats->tx_packets;
112 			tmp.tx_bytes =  tstats->tx_bytes;
113 		} while (u64_stats_fetch_retry_irq(&tstats->syncp, start));
114 
115 		sum.rx_packets += tmp.rx_packets;
116 		sum.rx_bytes   += tmp.rx_bytes;
117 		sum.tx_packets += tmp.tx_packets;
118 		sum.tx_bytes   += tmp.tx_bytes;
119 	}
120 	dev->stats.rx_packets = sum.rx_packets;
121 	dev->stats.rx_bytes   = sum.rx_bytes;
122 	dev->stats.tx_packets = sum.tx_packets;
123 	dev->stats.tx_bytes   = sum.tx_bytes;
124 	return &dev->stats;
125 }
126 
127 #define for_each_ip6_tunnel_rcu(start) \
128 	for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
129 
130 /**
131  * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
132  *   @net: network namespace
133  *   @link: ifindex of underlying interface
134  *   @remote: the address of the tunnel exit-point
135  *   @local: the address of the tunnel entry-point
136  *
137  * Return:
138  *   tunnel matching given end-points if found,
139  *   else fallback tunnel if its device is up,
140  *   else %NULL
141  **/
142 
143 static struct ip6_tnl *
ip6_tnl_lookup(struct net * net,int link,const struct in6_addr * remote,const struct in6_addr * local)144 ip6_tnl_lookup(struct net *net, int link,
145 	       const struct in6_addr *remote, const struct in6_addr *local)
146 {
147 	unsigned int hash = HASH(remote, local);
148 	struct ip6_tnl *t, *cand = NULL;
149 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
150 	struct in6_addr any;
151 
152 	for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
153 		if (!ipv6_addr_equal(local, &t->parms.laddr) ||
154 		    !ipv6_addr_equal(remote, &t->parms.raddr) ||
155 		    !(t->dev->flags & IFF_UP))
156 			continue;
157 
158 		if (link == t->parms.link)
159 			return t;
160 		else
161 			cand = t;
162 	}
163 
164 	memset(&any, 0, sizeof(any));
165 	hash = HASH(&any, local);
166 	for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
167 		if (!ipv6_addr_equal(local, &t->parms.laddr) ||
168 		    !ipv6_addr_any(&t->parms.raddr) ||
169 		    !(t->dev->flags & IFF_UP))
170 			continue;
171 
172 		if (link == t->parms.link)
173 			return t;
174 		else if (!cand)
175 			cand = t;
176 	}
177 
178 	hash = HASH(remote, &any);
179 	for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
180 		if (!ipv6_addr_equal(remote, &t->parms.raddr) ||
181 		    !ipv6_addr_any(&t->parms.laddr) ||
182 		    !(t->dev->flags & IFF_UP))
183 			continue;
184 
185 		if (link == t->parms.link)
186 			return t;
187 		else if (!cand)
188 			cand = t;
189 	}
190 
191 	if (cand)
192 		return cand;
193 
194 	t = rcu_dereference(ip6n->collect_md_tun);
195 	if (t && t->dev->flags & IFF_UP)
196 		return t;
197 
198 	t = rcu_dereference(ip6n->tnls_wc[0]);
199 	if (t && (t->dev->flags & IFF_UP))
200 		return t;
201 
202 	return NULL;
203 }
204 
205 /**
206  * ip6_tnl_bucket - get head of list matching given tunnel parameters
207  *   @p: parameters containing tunnel end-points
208  *
209  * Description:
210  *   ip6_tnl_bucket() returns the head of the list matching the
211  *   &struct in6_addr entries laddr and raddr in @p.
212  *
213  * Return: head of IPv6 tunnel list
214  **/
215 
216 static struct ip6_tnl __rcu **
ip6_tnl_bucket(struct ip6_tnl_net * ip6n,const struct __ip6_tnl_parm * p)217 ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
218 {
219 	const struct in6_addr *remote = &p->raddr;
220 	const struct in6_addr *local = &p->laddr;
221 	unsigned int h = 0;
222 	int prio = 0;
223 
224 	if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
225 		prio = 1;
226 		h = HASH(remote, local);
227 	}
228 	return &ip6n->tnls[prio][h];
229 }
230 
231 /**
232  * ip6_tnl_link - add tunnel to hash table
233  *   @t: tunnel to be added
234  **/
235 
236 static void
ip6_tnl_link(struct ip6_tnl_net * ip6n,struct ip6_tnl * t)237 ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
238 {
239 	struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
240 
241 	if (t->parms.collect_md)
242 		rcu_assign_pointer(ip6n->collect_md_tun, t);
243 	rcu_assign_pointer(t->next , rtnl_dereference(*tp));
244 	rcu_assign_pointer(*tp, t);
245 }
246 
247 /**
248  * ip6_tnl_unlink - remove tunnel from hash table
249  *   @t: tunnel to be removed
250  **/
251 
252 static void
ip6_tnl_unlink(struct ip6_tnl_net * ip6n,struct ip6_tnl * t)253 ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
254 {
255 	struct ip6_tnl __rcu **tp;
256 	struct ip6_tnl *iter;
257 
258 	if (t->parms.collect_md)
259 		rcu_assign_pointer(ip6n->collect_md_tun, NULL);
260 
261 	for (tp = ip6_tnl_bucket(ip6n, &t->parms);
262 	     (iter = rtnl_dereference(*tp)) != NULL;
263 	     tp = &iter->next) {
264 		if (t == iter) {
265 			rcu_assign_pointer(*tp, t->next);
266 			break;
267 		}
268 	}
269 }
270 
ip6_dev_free(struct net_device * dev)271 static void ip6_dev_free(struct net_device *dev)
272 {
273 	struct ip6_tnl *t = netdev_priv(dev);
274 
275 	gro_cells_destroy(&t->gro_cells);
276 	dst_cache_destroy(&t->dst_cache);
277 	free_percpu(dev->tstats);
278 }
279 
ip6_tnl_create2(struct net_device * dev)280 static int ip6_tnl_create2(struct net_device *dev)
281 {
282 	struct ip6_tnl *t = netdev_priv(dev);
283 	struct net *net = dev_net(dev);
284 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
285 	int err;
286 
287 	t = netdev_priv(dev);
288 
289 	dev->rtnl_link_ops = &ip6_link_ops;
290 	err = register_netdevice(dev);
291 	if (err < 0)
292 		goto out;
293 
294 	strcpy(t->parms.name, dev->name);
295 
296 	ip6_tnl_link(ip6n, t);
297 	return 0;
298 
299 out:
300 	return err;
301 }
302 
303 /**
304  * ip6_tnl_create - create a new tunnel
305  *   @net: network namespace
306  *   @p: tunnel parameters
307  *
308  * Description:
309  *   Create tunnel matching given parameters.
310  *
311  * Return:
312  *   created tunnel or error pointer
313  **/
314 
ip6_tnl_create(struct net * net,struct __ip6_tnl_parm * p)315 static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
316 {
317 	struct net_device *dev;
318 	struct ip6_tnl *t;
319 	char name[IFNAMSIZ];
320 	int err = -E2BIG;
321 
322 	if (p->name[0]) {
323 		if (!dev_valid_name(p->name))
324 			goto failed;
325 		strlcpy(name, p->name, IFNAMSIZ);
326 	} else {
327 		sprintf(name, "ip6tnl%%d");
328 	}
329 	err = -ENOMEM;
330 	dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
331 			   ip6_tnl_dev_setup);
332 	if (!dev)
333 		goto failed;
334 
335 	dev_net_set(dev, net);
336 
337 	t = netdev_priv(dev);
338 	t->parms = *p;
339 	t->net = dev_net(dev);
340 	err = ip6_tnl_create2(dev);
341 	if (err < 0)
342 		goto failed_free;
343 
344 	return t;
345 
346 failed_free:
347 	free_netdev(dev);
348 failed:
349 	return ERR_PTR(err);
350 }
351 
352 /**
353  * ip6_tnl_locate - find or create tunnel matching given parameters
354  *   @net: network namespace
355  *   @p: tunnel parameters
356  *   @create: != 0 if allowed to create new tunnel if no match found
357  *
358  * Description:
359  *   ip6_tnl_locate() first tries to locate an existing tunnel
360  *   based on @parms. If this is unsuccessful, but @create is set a new
361  *   tunnel device is created and registered for use.
362  *
363  * Return:
364  *   matching tunnel or error pointer
365  **/
366 
ip6_tnl_locate(struct net * net,struct __ip6_tnl_parm * p,int create)367 static struct ip6_tnl *ip6_tnl_locate(struct net *net,
368 		struct __ip6_tnl_parm *p, int create)
369 {
370 	const struct in6_addr *remote = &p->raddr;
371 	const struct in6_addr *local = &p->laddr;
372 	struct ip6_tnl __rcu **tp;
373 	struct ip6_tnl *t;
374 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
375 
376 	for (tp = ip6_tnl_bucket(ip6n, p);
377 	     (t = rtnl_dereference(*tp)) != NULL;
378 	     tp = &t->next) {
379 		if (ipv6_addr_equal(local, &t->parms.laddr) &&
380 		    ipv6_addr_equal(remote, &t->parms.raddr) &&
381 		    p->link == t->parms.link) {
382 			if (create)
383 				return ERR_PTR(-EEXIST);
384 
385 			return t;
386 		}
387 	}
388 	if (!create)
389 		return ERR_PTR(-ENODEV);
390 	return ip6_tnl_create(net, p);
391 }
392 
393 /**
394  * ip6_tnl_dev_uninit - tunnel device uninitializer
395  *   @dev: the device to be destroyed
396  *
397  * Description:
398  *   ip6_tnl_dev_uninit() removes tunnel from its list
399  **/
400 
401 static void
ip6_tnl_dev_uninit(struct net_device * dev)402 ip6_tnl_dev_uninit(struct net_device *dev)
403 {
404 	struct ip6_tnl *t = netdev_priv(dev);
405 	struct net *net = t->net;
406 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
407 
408 	if (dev == ip6n->fb_tnl_dev)
409 		RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
410 	else
411 		ip6_tnl_unlink(ip6n, t);
412 	dst_cache_reset(&t->dst_cache);
413 	dev_put(dev);
414 }
415 
416 /**
417  * parse_tvl_tnl_enc_lim - handle encapsulation limit option
418  *   @skb: received socket buffer
419  *
420  * Return:
421  *   0 if none was found,
422  *   else index to encapsulation limit
423  **/
424 
ip6_tnl_parse_tlv_enc_lim(struct sk_buff * skb,__u8 * raw)425 __u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
426 {
427 	const struct ipv6hdr *ipv6h = (const struct ipv6hdr *)raw;
428 	unsigned int nhoff = raw - skb->data;
429 	unsigned int off = nhoff + sizeof(*ipv6h);
430 	u8 nexthdr = ipv6h->nexthdr;
431 
432 	while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
433 		struct ipv6_opt_hdr *hdr;
434 		u16 optlen;
435 
436 		if (!pskb_may_pull(skb, off + sizeof(*hdr)))
437 			break;
438 
439 		hdr = (struct ipv6_opt_hdr *)(skb->data + off);
440 		if (nexthdr == NEXTHDR_FRAGMENT) {
441 			optlen = 8;
442 		} else if (nexthdr == NEXTHDR_AUTH) {
443 			optlen = ipv6_authlen(hdr);
444 		} else {
445 			optlen = ipv6_optlen(hdr);
446 		}
447 
448 		if (!pskb_may_pull(skb, off + optlen))
449 			break;
450 
451 		hdr = (struct ipv6_opt_hdr *)(skb->data + off);
452 		if (nexthdr == NEXTHDR_FRAGMENT) {
453 			struct frag_hdr *frag_hdr = (struct frag_hdr *)hdr;
454 
455 			if (frag_hdr->frag_off)
456 				break;
457 		}
458 		if (nexthdr == NEXTHDR_DEST) {
459 			u16 i = 2;
460 
461 			while (1) {
462 				struct ipv6_tlv_tnl_enc_lim *tel;
463 
464 				/* No more room for encapsulation limit */
465 				if (i + sizeof(*tel) > optlen)
466 					break;
467 
468 				tel = (struct ipv6_tlv_tnl_enc_lim *)(skb->data + off + i);
469 				/* return index of option if found and valid */
470 				if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
471 				    tel->length == 1)
472 					return i + off - nhoff;
473 				/* else jump to next option */
474 				if (tel->type)
475 					i += tel->length + 2;
476 				else
477 					i++;
478 			}
479 		}
480 		nexthdr = hdr->nexthdr;
481 		off += optlen;
482 	}
483 	return 0;
484 }
485 EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
486 
487 /**
488  * ip6_tnl_err - tunnel error handler
489  *
490  * Description:
491  *   ip6_tnl_err() should handle errors in the tunnel according
492  *   to the specifications in RFC 2473.
493  **/
494 
495 static int
ip6_tnl_err(struct sk_buff * skb,__u8 ipproto,struct inet6_skb_parm * opt,u8 * type,u8 * code,int * msg,__u32 * info,int offset)496 ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
497 	    u8 *type, u8 *code, int *msg, __u32 *info, int offset)
498 {
499 	const struct ipv6hdr *ipv6h = (const struct ipv6hdr *)skb->data;
500 	struct net *net = dev_net(skb->dev);
501 	u8 rel_type = ICMPV6_DEST_UNREACH;
502 	u8 rel_code = ICMPV6_ADDR_UNREACH;
503 	__u32 rel_info = 0;
504 	struct ip6_tnl *t;
505 	int err = -ENOENT;
506 	int rel_msg = 0;
507 	u8 tproto;
508 	__u16 len;
509 
510 	/* If the packet doesn't contain the original IPv6 header we are
511 	   in trouble since we might need the source address for further
512 	   processing of the error. */
513 
514 	rcu_read_lock();
515 	t = ip6_tnl_lookup(dev_net(skb->dev), skb->dev->ifindex, &ipv6h->daddr, &ipv6h->saddr);
516 	if (!t)
517 		goto out;
518 
519 	tproto = READ_ONCE(t->parms.proto);
520 	if (tproto != ipproto && tproto != 0)
521 		goto out;
522 
523 	err = 0;
524 
525 	switch (*type) {
526 	case ICMPV6_DEST_UNREACH:
527 		net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
528 				    t->parms.name);
529 		rel_msg = 1;
530 		break;
531 	case ICMPV6_TIME_EXCEED:
532 		if ((*code) == ICMPV6_EXC_HOPLIMIT) {
533 			net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
534 					    t->parms.name);
535 			rel_msg = 1;
536 		}
537 		break;
538 	case ICMPV6_PARAMPROB: {
539 		struct ipv6_tlv_tnl_enc_lim *tel;
540 		__u32 teli;
541 
542 		teli = 0;
543 		if ((*code) == ICMPV6_HDR_FIELD)
544 			teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
545 
546 		if (teli && teli == *info - 2) {
547 			tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
548 			if (tel->encap_limit == 0) {
549 				net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
550 						    t->parms.name);
551 				rel_msg = 1;
552 			}
553 		} else {
554 			net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
555 					    t->parms.name);
556 		}
557 		break;
558 	}
559 	case ICMPV6_PKT_TOOBIG: {
560 		__u32 mtu;
561 
562 		ip6_update_pmtu(skb, net, htonl(*info), 0, 0,
563 				sock_net_uid(net, NULL));
564 		mtu = *info - offset;
565 		if (mtu < IPV6_MIN_MTU)
566 			mtu = IPV6_MIN_MTU;
567 		len = sizeof(*ipv6h) + ntohs(ipv6h->payload_len);
568 		if (len > mtu) {
569 			rel_type = ICMPV6_PKT_TOOBIG;
570 			rel_code = 0;
571 			rel_info = mtu;
572 			rel_msg = 1;
573 		}
574 		break;
575 	}
576 	case NDISC_REDIRECT:
577 		ip6_redirect(skb, net, skb->dev->ifindex, 0,
578 			     sock_net_uid(net, NULL));
579 		break;
580 	}
581 
582 	*type = rel_type;
583 	*code = rel_code;
584 	*info = rel_info;
585 	*msg = rel_msg;
586 
587 out:
588 	rcu_read_unlock();
589 	return err;
590 }
591 
592 static int
ip4ip6_err(struct sk_buff * skb,struct inet6_skb_parm * opt,u8 type,u8 code,int offset,__be32 info)593 ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
594 	   u8 type, u8 code, int offset, __be32 info)
595 {
596 	__u32 rel_info = ntohl(info);
597 	const struct iphdr *eiph;
598 	struct sk_buff *skb2;
599 	int err, rel_msg = 0;
600 	u8 rel_type = type;
601 	u8 rel_code = code;
602 	struct rtable *rt;
603 	struct flowi4 fl4;
604 
605 	err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
606 			  &rel_msg, &rel_info, offset);
607 	if (err < 0)
608 		return err;
609 
610 	if (rel_msg == 0)
611 		return 0;
612 
613 	switch (rel_type) {
614 	case ICMPV6_DEST_UNREACH:
615 		if (rel_code != ICMPV6_ADDR_UNREACH)
616 			return 0;
617 		rel_type = ICMP_DEST_UNREACH;
618 		rel_code = ICMP_HOST_UNREACH;
619 		break;
620 	case ICMPV6_PKT_TOOBIG:
621 		if (rel_code != 0)
622 			return 0;
623 		rel_type = ICMP_DEST_UNREACH;
624 		rel_code = ICMP_FRAG_NEEDED;
625 		break;
626 	default:
627 		return 0;
628 	}
629 
630 	if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
631 		return 0;
632 
633 	skb2 = skb_clone(skb, GFP_ATOMIC);
634 	if (!skb2)
635 		return 0;
636 
637 	skb_dst_drop(skb2);
638 
639 	skb_pull(skb2, offset);
640 	skb_reset_network_header(skb2);
641 	eiph = ip_hdr(skb2);
642 
643 	/* Try to guess incoming interface */
644 	rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL, eiph->saddr,
645 				   0, 0, 0, IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
646 	if (IS_ERR(rt))
647 		goto out;
648 
649 	skb2->dev = rt->dst.dev;
650 	ip_rt_put(rt);
651 
652 	/* route "incoming" packet */
653 	if (rt->rt_flags & RTCF_LOCAL) {
654 		rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
655 					   eiph->daddr, eiph->saddr, 0, 0,
656 					   IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
657 		if (IS_ERR(rt) || rt->dst.dev->type != ARPHRD_TUNNEL6) {
658 			if (!IS_ERR(rt))
659 				ip_rt_put(rt);
660 			goto out;
661 		}
662 		skb_dst_set(skb2, &rt->dst);
663 	} else {
664 		if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
665 				   skb2->dev) ||
666 		    skb_dst(skb2)->dev->type != ARPHRD_TUNNEL6)
667 			goto out;
668 	}
669 
670 	/* change mtu on this route */
671 	if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
672 		if (rel_info > dst_mtu(skb_dst(skb2)))
673 			goto out;
674 
675 		skb_dst_update_pmtu_no_confirm(skb2, rel_info);
676 	}
677 
678 	icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
679 
680 out:
681 	kfree_skb(skb2);
682 	return 0;
683 }
684 
685 static int
ip6ip6_err(struct sk_buff * skb,struct inet6_skb_parm * opt,u8 type,u8 code,int offset,__be32 info)686 ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
687 	   u8 type, u8 code, int offset, __be32 info)
688 {
689 	__u32 rel_info = ntohl(info);
690 	int err, rel_msg = 0;
691 	u8 rel_type = type;
692 	u8 rel_code = code;
693 
694 	err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
695 			  &rel_msg, &rel_info, offset);
696 	if (err < 0)
697 		return err;
698 
699 	if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
700 		struct rt6_info *rt;
701 		struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
702 
703 		if (!skb2)
704 			return 0;
705 
706 		skb_dst_drop(skb2);
707 		skb_pull(skb2, offset);
708 		skb_reset_network_header(skb2);
709 
710 		/* Try to guess incoming interface */
711 		rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
712 				NULL, 0, skb2, 0);
713 
714 		if (rt && rt->dst.dev)
715 			skb2->dev = rt->dst.dev;
716 
717 		icmpv6_send(skb2, rel_type, rel_code, rel_info);
718 
719 		ip6_rt_put(rt);
720 
721 		kfree_skb(skb2);
722 	}
723 
724 	return 0;
725 }
726 
727 static int
mplsip6_err(struct sk_buff * skb,struct inet6_skb_parm * opt,u8 type,u8 code,int offset,__be32 info)728 mplsip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
729 	    u8 type, u8 code, int offset, __be32 info)
730 {
731 	__u32 rel_info = ntohl(info);
732 	int err, rel_msg = 0;
733 	u8 rel_type = type;
734 	u8 rel_code = code;
735 
736 	err = ip6_tnl_err(skb, IPPROTO_MPLS, opt, &rel_type, &rel_code,
737 			  &rel_msg, &rel_info, offset);
738 	return err;
739 }
740 
ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl * t,const struct ipv6hdr * ipv6h,struct sk_buff * skb)741 static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
742 				       const struct ipv6hdr *ipv6h,
743 				       struct sk_buff *skb)
744 {
745 	__u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
746 
747 	if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
748 		ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
749 
750 	return IP6_ECN_decapsulate(ipv6h, skb);
751 }
752 
ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl * t,const struct ipv6hdr * ipv6h,struct sk_buff * skb)753 static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
754 				       const struct ipv6hdr *ipv6h,
755 				       struct sk_buff *skb)
756 {
757 	if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
758 		ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
759 
760 	return IP6_ECN_decapsulate(ipv6h, skb);
761 }
762 
mplsip6_dscp_ecn_decapsulate(const struct ip6_tnl * t,const struct ipv6hdr * ipv6h,struct sk_buff * skb)763 static inline int mplsip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
764 					       const struct ipv6hdr *ipv6h,
765 					       struct sk_buff *skb)
766 {
767 	/* ECN is not supported in AF_MPLS */
768 	return 0;
769 }
770 
ip6_tnl_get_cap(struct ip6_tnl * t,const struct in6_addr * laddr,const struct in6_addr * raddr)771 __u32 ip6_tnl_get_cap(struct ip6_tnl *t,
772 			     const struct in6_addr *laddr,
773 			     const struct in6_addr *raddr)
774 {
775 	struct __ip6_tnl_parm *p = &t->parms;
776 	int ltype = ipv6_addr_type(laddr);
777 	int rtype = ipv6_addr_type(raddr);
778 	__u32 flags = 0;
779 
780 	if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
781 		flags = IP6_TNL_F_CAP_PER_PACKET;
782 	} else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
783 		   rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
784 		   !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
785 		   (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
786 		if (ltype&IPV6_ADDR_UNICAST)
787 			flags |= IP6_TNL_F_CAP_XMIT;
788 		if (rtype&IPV6_ADDR_UNICAST)
789 			flags |= IP6_TNL_F_CAP_RCV;
790 	}
791 	return flags;
792 }
793 EXPORT_SYMBOL(ip6_tnl_get_cap);
794 
795 /* called with rcu_read_lock() */
ip6_tnl_rcv_ctl(struct ip6_tnl * t,const struct in6_addr * laddr,const struct in6_addr * raddr)796 int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
797 				  const struct in6_addr *laddr,
798 				  const struct in6_addr *raddr)
799 {
800 	struct __ip6_tnl_parm *p = &t->parms;
801 	int ret = 0;
802 	struct net *net = t->net;
803 
804 	if ((p->flags & IP6_TNL_F_CAP_RCV) ||
805 	    ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
806 	     (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
807 		struct net_device *ldev = NULL;
808 
809 		if (p->link)
810 			ldev = dev_get_by_index_rcu(net, p->link);
811 
812 		if ((ipv6_addr_is_multicast(laddr) ||
813 		     likely(ipv6_chk_addr_and_flags(net, laddr, ldev, false,
814 						    0, IFA_F_TENTATIVE))) &&
815 		    ((p->flags & IP6_TNL_F_ALLOW_LOCAL_REMOTE) ||
816 		     likely(!ipv6_chk_addr_and_flags(net, raddr, ldev, true,
817 						     0, IFA_F_TENTATIVE))))
818 			ret = 1;
819 	}
820 	return ret;
821 }
822 EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
823 
__ip6_tnl_rcv(struct ip6_tnl * tunnel,struct sk_buff * skb,const struct tnl_ptk_info * tpi,struct metadata_dst * tun_dst,int (* dscp_ecn_decapsulate)(const struct ip6_tnl * t,const struct ipv6hdr * ipv6h,struct sk_buff * skb),bool log_ecn_err)824 static int __ip6_tnl_rcv(struct ip6_tnl *tunnel, struct sk_buff *skb,
825 			 const struct tnl_ptk_info *tpi,
826 			 struct metadata_dst *tun_dst,
827 			 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
828 						const struct ipv6hdr *ipv6h,
829 						struct sk_buff *skb),
830 			 bool log_ecn_err)
831 {
832 	const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
833 	int err;
834 
835 	if ((!(tpi->flags & TUNNEL_CSUM) &&
836 	     (tunnel->parms.i_flags & TUNNEL_CSUM)) ||
837 	    ((tpi->flags & TUNNEL_CSUM) &&
838 	     !(tunnel->parms.i_flags & TUNNEL_CSUM))) {
839 		tunnel->dev->stats.rx_crc_errors++;
840 		tunnel->dev->stats.rx_errors++;
841 		goto drop;
842 	}
843 
844 	if (tunnel->parms.i_flags & TUNNEL_SEQ) {
845 		if (!(tpi->flags & TUNNEL_SEQ) ||
846 		    (tunnel->i_seqno &&
847 		     (s32)(ntohl(tpi->seq) - tunnel->i_seqno) < 0)) {
848 			tunnel->dev->stats.rx_fifo_errors++;
849 			tunnel->dev->stats.rx_errors++;
850 			goto drop;
851 		}
852 		tunnel->i_seqno = ntohl(tpi->seq) + 1;
853 	}
854 
855 	skb->protocol = tpi->proto;
856 
857 	/* Warning: All skb pointers will be invalidated! */
858 	if (tunnel->dev->type == ARPHRD_ETHER) {
859 		if (!pskb_may_pull(skb, ETH_HLEN)) {
860 			tunnel->dev->stats.rx_length_errors++;
861 			tunnel->dev->stats.rx_errors++;
862 			goto drop;
863 		}
864 
865 		ipv6h = ipv6_hdr(skb);
866 		skb->protocol = eth_type_trans(skb, tunnel->dev);
867 		skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
868 	} else {
869 		skb->dev = tunnel->dev;
870 	}
871 
872 	skb_reset_network_header(skb);
873 	memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
874 
875 	__skb_tunnel_rx(skb, tunnel->dev, tunnel->net);
876 
877 	err = dscp_ecn_decapsulate(tunnel, ipv6h, skb);
878 	if (unlikely(err)) {
879 		if (log_ecn_err)
880 			net_info_ratelimited("non-ECT from %pI6 with DS=%#x\n",
881 					     &ipv6h->saddr,
882 					     ipv6_get_dsfield(ipv6h));
883 		if (err > 1) {
884 			++tunnel->dev->stats.rx_frame_errors;
885 			++tunnel->dev->stats.rx_errors;
886 			goto drop;
887 		}
888 	}
889 
890 	dev_sw_netstats_rx_add(tunnel->dev, skb->len);
891 
892 	skb_scrub_packet(skb, !net_eq(tunnel->net, dev_net(tunnel->dev)));
893 
894 	if (tun_dst)
895 		skb_dst_set(skb, (struct dst_entry *)tun_dst);
896 
897 	gro_cells_receive(&tunnel->gro_cells, skb);
898 	return 0;
899 
900 drop:
901 	if (tun_dst)
902 		dst_release((struct dst_entry *)tun_dst);
903 	kfree_skb(skb);
904 	return 0;
905 }
906 
ip6_tnl_rcv(struct ip6_tnl * t,struct sk_buff * skb,const struct tnl_ptk_info * tpi,struct metadata_dst * tun_dst,bool log_ecn_err)907 int ip6_tnl_rcv(struct ip6_tnl *t, struct sk_buff *skb,
908 		const struct tnl_ptk_info *tpi,
909 		struct metadata_dst *tun_dst,
910 		bool log_ecn_err)
911 {
912 	int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
913 				    const struct ipv6hdr *ipv6h,
914 				    struct sk_buff *skb);
915 
916 	dscp_ecn_decapsulate = ip6ip6_dscp_ecn_decapsulate;
917 	if (tpi->proto == htons(ETH_P_IP))
918 		dscp_ecn_decapsulate = ip4ip6_dscp_ecn_decapsulate;
919 
920 	return __ip6_tnl_rcv(t, skb, tpi, tun_dst, dscp_ecn_decapsulate,
921 			     log_ecn_err);
922 }
923 EXPORT_SYMBOL(ip6_tnl_rcv);
924 
925 static const struct tnl_ptk_info tpi_v6 = {
926 	/* no tunnel info required for ipxip6. */
927 	.proto = htons(ETH_P_IPV6),
928 };
929 
930 static const struct tnl_ptk_info tpi_v4 = {
931 	/* no tunnel info required for ipxip6. */
932 	.proto = htons(ETH_P_IP),
933 };
934 
935 static const struct tnl_ptk_info tpi_mpls = {
936 	/* no tunnel info required for mplsip6. */
937 	.proto = htons(ETH_P_MPLS_UC),
938 };
939 
ipxip6_rcv(struct sk_buff * skb,u8 ipproto,const struct tnl_ptk_info * tpi,int (* dscp_ecn_decapsulate)(const struct ip6_tnl * t,const struct ipv6hdr * ipv6h,struct sk_buff * skb))940 static int ipxip6_rcv(struct sk_buff *skb, u8 ipproto,
941 		      const struct tnl_ptk_info *tpi,
942 		      int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
943 						  const struct ipv6hdr *ipv6h,
944 						  struct sk_buff *skb))
945 {
946 	struct ip6_tnl *t;
947 	const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
948 	struct metadata_dst *tun_dst = NULL;
949 	int ret = -1;
950 
951 	rcu_read_lock();
952 	t = ip6_tnl_lookup(dev_net(skb->dev), skb->dev->ifindex, &ipv6h->saddr, &ipv6h->daddr);
953 
954 	if (t) {
955 		u8 tproto = READ_ONCE(t->parms.proto);
956 
957 		if (tproto != ipproto && tproto != 0)
958 			goto drop;
959 		if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
960 			goto drop;
961 		ipv6h = ipv6_hdr(skb);
962 		if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr))
963 			goto drop;
964 		if (iptunnel_pull_header(skb, 0, tpi->proto, false))
965 			goto drop;
966 		if (t->parms.collect_md) {
967 			tun_dst = ipv6_tun_rx_dst(skb, 0, 0, 0);
968 			if (!tun_dst)
969 				goto drop;
970 		}
971 		ret = __ip6_tnl_rcv(t, skb, tpi, tun_dst, dscp_ecn_decapsulate,
972 				    log_ecn_error);
973 	}
974 
975 	rcu_read_unlock();
976 
977 	return ret;
978 
979 drop:
980 	rcu_read_unlock();
981 	kfree_skb(skb);
982 	return 0;
983 }
984 
ip4ip6_rcv(struct sk_buff * skb)985 static int ip4ip6_rcv(struct sk_buff *skb)
986 {
987 	return ipxip6_rcv(skb, IPPROTO_IPIP, &tpi_v4,
988 			  ip4ip6_dscp_ecn_decapsulate);
989 }
990 
ip6ip6_rcv(struct sk_buff * skb)991 static int ip6ip6_rcv(struct sk_buff *skb)
992 {
993 	return ipxip6_rcv(skb, IPPROTO_IPV6, &tpi_v6,
994 			  ip6ip6_dscp_ecn_decapsulate);
995 }
996 
mplsip6_rcv(struct sk_buff * skb)997 static int mplsip6_rcv(struct sk_buff *skb)
998 {
999 	return ipxip6_rcv(skb, IPPROTO_MPLS, &tpi_mpls,
1000 			  mplsip6_dscp_ecn_decapsulate);
1001 }
1002 
1003 struct ipv6_tel_txoption {
1004 	struct ipv6_txoptions ops;
1005 	__u8 dst_opt[8];
1006 };
1007 
init_tel_txopt(struct ipv6_tel_txoption * opt,__u8 encap_limit)1008 static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
1009 {
1010 	memset(opt, 0, sizeof(struct ipv6_tel_txoption));
1011 
1012 	opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
1013 	opt->dst_opt[3] = 1;
1014 	opt->dst_opt[4] = encap_limit;
1015 	opt->dst_opt[5] = IPV6_TLV_PADN;
1016 	opt->dst_opt[6] = 1;
1017 
1018 	opt->ops.dst1opt = (struct ipv6_opt_hdr *) opt->dst_opt;
1019 	opt->ops.opt_nflen = 8;
1020 }
1021 
1022 /**
1023  * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
1024  *   @t: the outgoing tunnel device
1025  *   @hdr: IPv6 header from the incoming packet
1026  *
1027  * Description:
1028  *   Avoid trivial tunneling loop by checking that tunnel exit-point
1029  *   doesn't match source of incoming packet.
1030  *
1031  * Return:
1032  *   1 if conflict,
1033  *   0 else
1034  **/
1035 
1036 static inline bool
ip6_tnl_addr_conflict(const struct ip6_tnl * t,const struct ipv6hdr * hdr)1037 ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
1038 {
1039 	return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
1040 }
1041 
ip6_tnl_xmit_ctl(struct ip6_tnl * t,const struct in6_addr * laddr,const struct in6_addr * raddr)1042 int ip6_tnl_xmit_ctl(struct ip6_tnl *t,
1043 		     const struct in6_addr *laddr,
1044 		     const struct in6_addr *raddr)
1045 {
1046 	struct __ip6_tnl_parm *p = &t->parms;
1047 	int ret = 0;
1048 	struct net *net = t->net;
1049 
1050 	if (t->parms.collect_md)
1051 		return 1;
1052 
1053 	if ((p->flags & IP6_TNL_F_CAP_XMIT) ||
1054 	    ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
1055 	     (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_XMIT))) {
1056 		struct net_device *ldev = NULL;
1057 
1058 		rcu_read_lock();
1059 		if (p->link)
1060 			ldev = dev_get_by_index_rcu(net, p->link);
1061 
1062 		if (unlikely(!ipv6_chk_addr_and_flags(net, laddr, ldev, false,
1063 						      0, IFA_F_TENTATIVE)))
1064 			pr_warn_ratelimited("%s xmit: Local address not yet configured!\n",
1065 					    p->name);
1066 		else if (!(p->flags & IP6_TNL_F_ALLOW_LOCAL_REMOTE) &&
1067 			 !ipv6_addr_is_multicast(raddr) &&
1068 			 unlikely(ipv6_chk_addr_and_flags(net, raddr, ldev,
1069 							  true, 0, IFA_F_TENTATIVE)))
1070 			pr_warn_ratelimited("%s xmit: Routing loop! Remote address found on this node!\n",
1071 					    p->name);
1072 		else
1073 			ret = 1;
1074 		rcu_read_unlock();
1075 	}
1076 	return ret;
1077 }
1078 EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
1079 
1080 /**
1081  * ip6_tnl_xmit - encapsulate packet and send
1082  *   @skb: the outgoing socket buffer
1083  *   @dev: the outgoing tunnel device
1084  *   @dsfield: dscp code for outer header
1085  *   @fl6: flow of tunneled packet
1086  *   @encap_limit: encapsulation limit
1087  *   @pmtu: Path MTU is stored if packet is too big
1088  *   @proto: next header value
1089  *
1090  * Description:
1091  *   Build new header and do some sanity checks on the packet before sending
1092  *   it.
1093  *
1094  * Return:
1095  *   0 on success
1096  *   -1 fail
1097  *   %-EMSGSIZE message too big. return mtu in this case.
1098  **/
1099 
ip6_tnl_xmit(struct sk_buff * skb,struct net_device * dev,__u8 dsfield,struct flowi6 * fl6,int encap_limit,__u32 * pmtu,__u8 proto)1100 int ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev, __u8 dsfield,
1101 		 struct flowi6 *fl6, int encap_limit, __u32 *pmtu,
1102 		 __u8 proto)
1103 {
1104 	struct ip6_tnl *t = netdev_priv(dev);
1105 	struct net *net = t->net;
1106 	struct net_device_stats *stats = &t->dev->stats;
1107 	struct ipv6hdr *ipv6h;
1108 	struct ipv6_tel_txoption opt;
1109 	struct dst_entry *dst = NULL, *ndst = NULL;
1110 	struct net_device *tdev;
1111 	int mtu;
1112 	unsigned int eth_hlen = t->dev->type == ARPHRD_ETHER ? ETH_HLEN : 0;
1113 	unsigned int psh_hlen = sizeof(struct ipv6hdr) + t->encap_hlen;
1114 	unsigned int max_headroom = psh_hlen;
1115 	bool use_cache = false;
1116 	u8 hop_limit;
1117 	int err = -1;
1118 
1119 	if (t->parms.collect_md) {
1120 		hop_limit = skb_tunnel_info(skb)->key.ttl;
1121 		goto route_lookup;
1122 	} else {
1123 		hop_limit = t->parms.hop_limit;
1124 	}
1125 
1126 	/* NBMA tunnel */
1127 	if (ipv6_addr_any(&t->parms.raddr)) {
1128 		if (skb->protocol == htons(ETH_P_IPV6)) {
1129 			struct in6_addr *addr6;
1130 			struct neighbour *neigh;
1131 			int addr_type;
1132 
1133 			if (!skb_dst(skb))
1134 				goto tx_err_link_failure;
1135 
1136 			neigh = dst_neigh_lookup(skb_dst(skb),
1137 						 &ipv6_hdr(skb)->daddr);
1138 			if (!neigh)
1139 				goto tx_err_link_failure;
1140 
1141 			addr6 = (struct in6_addr *)&neigh->primary_key;
1142 			addr_type = ipv6_addr_type(addr6);
1143 
1144 			if (addr_type == IPV6_ADDR_ANY)
1145 				addr6 = &ipv6_hdr(skb)->daddr;
1146 
1147 			memcpy(&fl6->daddr, addr6, sizeof(fl6->daddr));
1148 			neigh_release(neigh);
1149 		}
1150 	} else if (t->parms.proto != 0 && !(t->parms.flags &
1151 					    (IP6_TNL_F_USE_ORIG_TCLASS |
1152 					     IP6_TNL_F_USE_ORIG_FWMARK))) {
1153 		/* enable the cache only if neither the outer protocol nor the
1154 		 * routing decision depends on the current inner header value
1155 		 */
1156 		use_cache = true;
1157 	}
1158 
1159 	if (use_cache)
1160 		dst = dst_cache_get(&t->dst_cache);
1161 
1162 	if (!ip6_tnl_xmit_ctl(t, &fl6->saddr, &fl6->daddr))
1163 		goto tx_err_link_failure;
1164 
1165 	if (!dst) {
1166 route_lookup:
1167 		/* add dsfield to flowlabel for route lookup */
1168 		fl6->flowlabel = ip6_make_flowinfo(dsfield, fl6->flowlabel);
1169 
1170 		dst = ip6_route_output(net, NULL, fl6);
1171 
1172 		if (dst->error)
1173 			goto tx_err_link_failure;
1174 		dst = xfrm_lookup(net, dst, flowi6_to_flowi(fl6), NULL, 0);
1175 		if (IS_ERR(dst)) {
1176 			err = PTR_ERR(dst);
1177 			dst = NULL;
1178 			goto tx_err_link_failure;
1179 		}
1180 		if (t->parms.collect_md && ipv6_addr_any(&fl6->saddr) &&
1181 		    ipv6_dev_get_saddr(net, ip6_dst_idev(dst)->dev,
1182 				       &fl6->daddr, 0, &fl6->saddr))
1183 			goto tx_err_link_failure;
1184 		ndst = dst;
1185 	}
1186 
1187 	tdev = dst->dev;
1188 
1189 	if (tdev == dev) {
1190 		stats->collisions++;
1191 		net_warn_ratelimited("%s: Local routing loop detected!\n",
1192 				     t->parms.name);
1193 		goto tx_err_dst_release;
1194 	}
1195 	mtu = dst_mtu(dst) - eth_hlen - psh_hlen - t->tun_hlen;
1196 	if (encap_limit >= 0) {
1197 		max_headroom += 8;
1198 		mtu -= 8;
1199 	}
1200 	mtu = max(mtu, skb->protocol == htons(ETH_P_IPV6) ?
1201 		       IPV6_MIN_MTU : IPV4_MIN_MTU);
1202 
1203 	skb_dst_update_pmtu_no_confirm(skb, mtu);
1204 	if (skb->len - t->tun_hlen - eth_hlen > mtu && !skb_is_gso(skb)) {
1205 		*pmtu = mtu;
1206 		err = -EMSGSIZE;
1207 		goto tx_err_dst_release;
1208 	}
1209 
1210 	if (t->err_count > 0) {
1211 		if (time_before(jiffies,
1212 				t->err_time + IP6TUNNEL_ERR_TIMEO)) {
1213 			t->err_count--;
1214 
1215 			dst_link_failure(skb);
1216 		} else {
1217 			t->err_count = 0;
1218 		}
1219 	}
1220 
1221 	skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
1222 
1223 	/*
1224 	 * Okay, now see if we can stuff it in the buffer as-is.
1225 	 */
1226 	max_headroom += LL_RESERVED_SPACE(tdev);
1227 
1228 	if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
1229 	    (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
1230 		struct sk_buff *new_skb;
1231 
1232 		new_skb = skb_realloc_headroom(skb, max_headroom);
1233 		if (!new_skb)
1234 			goto tx_err_dst_release;
1235 
1236 		if (skb->sk)
1237 			skb_set_owner_w(new_skb, skb->sk);
1238 		consume_skb(skb);
1239 		skb = new_skb;
1240 	}
1241 
1242 	if (t->parms.collect_md) {
1243 		if (t->encap.type != TUNNEL_ENCAP_NONE)
1244 			goto tx_err_dst_release;
1245 	} else {
1246 		if (use_cache && ndst)
1247 			dst_cache_set_ip6(&t->dst_cache, ndst, &fl6->saddr);
1248 	}
1249 	skb_dst_set(skb, dst);
1250 
1251 	if (hop_limit == 0) {
1252 		if (skb->protocol == htons(ETH_P_IP))
1253 			hop_limit = ip_hdr(skb)->ttl;
1254 		else if (skb->protocol == htons(ETH_P_IPV6))
1255 			hop_limit = ipv6_hdr(skb)->hop_limit;
1256 		else
1257 			hop_limit = ip6_dst_hoplimit(dst);
1258 	}
1259 
1260 	/* Calculate max headroom for all the headers and adjust
1261 	 * needed_headroom if necessary.
1262 	 */
1263 	max_headroom = LL_RESERVED_SPACE(dst->dev) + sizeof(struct ipv6hdr)
1264 			+ dst->header_len + t->hlen;
1265 	if (max_headroom > READ_ONCE(dev->needed_headroom))
1266 		WRITE_ONCE(dev->needed_headroom, max_headroom);
1267 
1268 	err = ip6_tnl_encap(skb, t, &proto, fl6);
1269 	if (err)
1270 		return err;
1271 
1272 	if (encap_limit >= 0) {
1273 		init_tel_txopt(&opt, encap_limit);
1274 		ipv6_push_frag_opts(skb, &opt.ops, &proto);
1275 	}
1276 
1277 	skb_push(skb, sizeof(struct ipv6hdr));
1278 	skb_reset_network_header(skb);
1279 	ipv6h = ipv6_hdr(skb);
1280 	ip6_flow_hdr(ipv6h, dsfield,
1281 		     ip6_make_flowlabel(net, skb, fl6->flowlabel, true, fl6));
1282 	ipv6h->hop_limit = hop_limit;
1283 	ipv6h->nexthdr = proto;
1284 	ipv6h->saddr = fl6->saddr;
1285 	ipv6h->daddr = fl6->daddr;
1286 	ip6tunnel_xmit(NULL, skb, dev);
1287 	return 0;
1288 tx_err_link_failure:
1289 	stats->tx_carrier_errors++;
1290 	dst_link_failure(skb);
1291 tx_err_dst_release:
1292 	dst_release(dst);
1293 	return err;
1294 }
1295 EXPORT_SYMBOL(ip6_tnl_xmit);
1296 
1297 static inline int
ipxip6_tnl_xmit(struct sk_buff * skb,struct net_device * dev,u8 protocol)1298 ipxip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev,
1299 		u8 protocol)
1300 {
1301 	struct ip6_tnl *t = netdev_priv(dev);
1302 	struct ipv6hdr *ipv6h;
1303 	const struct iphdr  *iph;
1304 	int encap_limit = -1;
1305 	__u16 offset;
1306 	struct flowi6 fl6;
1307 	__u8 dsfield, orig_dsfield;
1308 	__u32 mtu;
1309 	u8 tproto;
1310 	int err;
1311 
1312 	tproto = READ_ONCE(t->parms.proto);
1313 	if (tproto != protocol && tproto != 0)
1314 		return -1;
1315 
1316 	if (t->parms.collect_md) {
1317 		struct ip_tunnel_info *tun_info;
1318 		const struct ip_tunnel_key *key;
1319 
1320 		tun_info = skb_tunnel_info(skb);
1321 		if (unlikely(!tun_info || !(tun_info->mode & IP_TUNNEL_INFO_TX) ||
1322 			     ip_tunnel_info_af(tun_info) != AF_INET6))
1323 			return -1;
1324 		key = &tun_info->key;
1325 		memset(&fl6, 0, sizeof(fl6));
1326 		fl6.flowi6_proto = protocol;
1327 		fl6.saddr = key->u.ipv6.src;
1328 		fl6.daddr = key->u.ipv6.dst;
1329 		fl6.flowlabel = key->label;
1330 		dsfield =  key->tos;
1331 		switch (protocol) {
1332 		case IPPROTO_IPIP:
1333 			iph = ip_hdr(skb);
1334 			orig_dsfield = ipv4_get_dsfield(iph);
1335 			break;
1336 		case IPPROTO_IPV6:
1337 			ipv6h = ipv6_hdr(skb);
1338 			orig_dsfield = ipv6_get_dsfield(ipv6h);
1339 			break;
1340 		default:
1341 			orig_dsfield = dsfield;
1342 			break;
1343 		}
1344 	} else {
1345 		if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1346 			encap_limit = t->parms.encap_limit;
1347 		if (protocol == IPPROTO_IPV6) {
1348 			offset = ip6_tnl_parse_tlv_enc_lim(skb,
1349 						skb_network_header(skb));
1350 			/* ip6_tnl_parse_tlv_enc_lim() might have
1351 			 * reallocated skb->head
1352 			 */
1353 			if (offset > 0) {
1354 				struct ipv6_tlv_tnl_enc_lim *tel;
1355 
1356 				tel = (void *)&skb_network_header(skb)[offset];
1357 				if (tel->encap_limit == 0) {
1358 					icmpv6_ndo_send(skb, ICMPV6_PARAMPROB,
1359 							ICMPV6_HDR_FIELD, offset + 2);
1360 					return -1;
1361 				}
1362 				encap_limit = tel->encap_limit - 1;
1363 			}
1364 		}
1365 
1366 		memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
1367 		fl6.flowi6_proto = protocol;
1368 
1369 		if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1370 			fl6.flowi6_mark = skb->mark;
1371 		else
1372 			fl6.flowi6_mark = t->parms.fwmark;
1373 		switch (protocol) {
1374 		case IPPROTO_IPIP:
1375 			iph = ip_hdr(skb);
1376 			orig_dsfield = ipv4_get_dsfield(iph);
1377 			if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
1378 				dsfield = orig_dsfield;
1379 			else
1380 				dsfield = ip6_tclass(t->parms.flowinfo);
1381 			break;
1382 		case IPPROTO_IPV6:
1383 			ipv6h = ipv6_hdr(skb);
1384 			orig_dsfield = ipv6_get_dsfield(ipv6h);
1385 			if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
1386 				dsfield = orig_dsfield;
1387 			else
1388 				dsfield = ip6_tclass(t->parms.flowinfo);
1389 			if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
1390 				fl6.flowlabel |= ip6_flowlabel(ipv6h);
1391 			break;
1392 		default:
1393 			orig_dsfield = dsfield = ip6_tclass(t->parms.flowinfo);
1394 			break;
1395 		}
1396 	}
1397 
1398 	fl6.flowi6_uid = sock_net_uid(dev_net(dev), NULL);
1399 	dsfield = INET_ECN_encapsulate(dsfield, orig_dsfield);
1400 
1401 	if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP6))
1402 		return -1;
1403 
1404 	skb_set_inner_ipproto(skb, protocol);
1405 
1406 	err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
1407 			   protocol);
1408 	if (err != 0) {
1409 		/* XXX: send ICMP error even if DF is not set. */
1410 		if (err == -EMSGSIZE)
1411 			switch (protocol) {
1412 			case IPPROTO_IPIP:
1413 				icmp_ndo_send(skb, ICMP_DEST_UNREACH,
1414 					      ICMP_FRAG_NEEDED, htonl(mtu));
1415 				break;
1416 			case IPPROTO_IPV6:
1417 				icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
1418 				break;
1419 			default:
1420 				break;
1421 			}
1422 		return -1;
1423 	}
1424 
1425 	return 0;
1426 }
1427 
1428 static netdev_tx_t
ip6_tnl_start_xmit(struct sk_buff * skb,struct net_device * dev)1429 ip6_tnl_start_xmit(struct sk_buff *skb, struct net_device *dev)
1430 {
1431 	struct ip6_tnl *t = netdev_priv(dev);
1432 	struct net_device_stats *stats = &t->dev->stats;
1433 	u8 ipproto;
1434 	int ret;
1435 
1436 	if (!pskb_inet_may_pull(skb))
1437 		goto tx_err;
1438 
1439 	switch (skb->protocol) {
1440 	case htons(ETH_P_IP):
1441 		ipproto = IPPROTO_IPIP;
1442 		break;
1443 	case htons(ETH_P_IPV6):
1444 		if (ip6_tnl_addr_conflict(t, ipv6_hdr(skb)))
1445 			goto tx_err;
1446 		ipproto = IPPROTO_IPV6;
1447 		break;
1448 	case htons(ETH_P_MPLS_UC):
1449 		ipproto = IPPROTO_MPLS;
1450 		break;
1451 	default:
1452 		goto tx_err;
1453 	}
1454 
1455 	ret = ipxip6_tnl_xmit(skb, dev, ipproto);
1456 	if (ret < 0)
1457 		goto tx_err;
1458 
1459 	return NETDEV_TX_OK;
1460 
1461 tx_err:
1462 	stats->tx_errors++;
1463 	stats->tx_dropped++;
1464 	kfree_skb(skb);
1465 	return NETDEV_TX_OK;
1466 }
1467 
ip6_tnl_link_config(struct ip6_tnl * t)1468 static void ip6_tnl_link_config(struct ip6_tnl *t)
1469 {
1470 	struct net_device *dev = t->dev;
1471 	struct net_device *tdev = NULL;
1472 	struct __ip6_tnl_parm *p = &t->parms;
1473 	struct flowi6 *fl6 = &t->fl.u.ip6;
1474 	int t_hlen;
1475 	int mtu;
1476 
1477 	memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1478 	memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
1479 
1480 	/* Set up flowi template */
1481 	fl6->saddr = p->laddr;
1482 	fl6->daddr = p->raddr;
1483 	fl6->flowi6_oif = p->link;
1484 	fl6->flowlabel = 0;
1485 
1486 	if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1487 		fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1488 	if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1489 		fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1490 
1491 	p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1492 	p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
1493 
1494 	if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1495 		dev->flags |= IFF_POINTOPOINT;
1496 	else
1497 		dev->flags &= ~IFF_POINTOPOINT;
1498 
1499 	t->tun_hlen = 0;
1500 	t->hlen = t->encap_hlen + t->tun_hlen;
1501 	t_hlen = t->hlen + sizeof(struct ipv6hdr);
1502 
1503 	if (p->flags & IP6_TNL_F_CAP_XMIT) {
1504 		int strict = (ipv6_addr_type(&p->raddr) &
1505 			      (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1506 
1507 		struct rt6_info *rt = rt6_lookup(t->net,
1508 						 &p->raddr, &p->laddr,
1509 						 p->link, NULL, strict);
1510 		if (rt) {
1511 			tdev = rt->dst.dev;
1512 			ip6_rt_put(rt);
1513 		}
1514 
1515 		if (!tdev && p->link)
1516 			tdev = __dev_get_by_index(t->net, p->link);
1517 
1518 		if (tdev) {
1519 			dev->hard_header_len = tdev->hard_header_len + t_hlen;
1520 			mtu = min_t(unsigned int, tdev->mtu, IP6_MAX_MTU);
1521 
1522 			mtu = mtu - t_hlen;
1523 			if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1524 				mtu -= 8;
1525 
1526 			if (mtu < IPV6_MIN_MTU)
1527 				mtu = IPV6_MIN_MTU;
1528 			WRITE_ONCE(dev->mtu, mtu);
1529 		}
1530 	}
1531 }
1532 
1533 /**
1534  * ip6_tnl_change - update the tunnel parameters
1535  *   @t: tunnel to be changed
1536  *   @p: tunnel configuration parameters
1537  *
1538  * Description:
1539  *   ip6_tnl_change() updates the tunnel parameters
1540  **/
1541 
1542 static int
ip6_tnl_change(struct ip6_tnl * t,const struct __ip6_tnl_parm * p)1543 ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
1544 {
1545 	t->parms.laddr = p->laddr;
1546 	t->parms.raddr = p->raddr;
1547 	t->parms.flags = p->flags;
1548 	t->parms.hop_limit = p->hop_limit;
1549 	t->parms.encap_limit = p->encap_limit;
1550 	t->parms.flowinfo = p->flowinfo;
1551 	t->parms.link = p->link;
1552 	t->parms.proto = p->proto;
1553 	t->parms.fwmark = p->fwmark;
1554 	dst_cache_reset(&t->dst_cache);
1555 	ip6_tnl_link_config(t);
1556 	return 0;
1557 }
1558 
ip6_tnl_update(struct ip6_tnl * t,struct __ip6_tnl_parm * p)1559 static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1560 {
1561 	struct net *net = t->net;
1562 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1563 	int err;
1564 
1565 	ip6_tnl_unlink(ip6n, t);
1566 	synchronize_net();
1567 	err = ip6_tnl_change(t, p);
1568 	ip6_tnl_link(ip6n, t);
1569 	netdev_state_change(t->dev);
1570 	return err;
1571 }
1572 
ip6_tnl0_update(struct ip6_tnl * t,struct __ip6_tnl_parm * p)1573 static int ip6_tnl0_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1574 {
1575 	/* for default tnl0 device allow to change only the proto */
1576 	t->parms.proto = p->proto;
1577 	netdev_state_change(t->dev);
1578 	return 0;
1579 }
1580 
1581 static void
ip6_tnl_parm_from_user(struct __ip6_tnl_parm * p,const struct ip6_tnl_parm * u)1582 ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1583 {
1584 	p->laddr = u->laddr;
1585 	p->raddr = u->raddr;
1586 	p->flags = u->flags;
1587 	p->hop_limit = u->hop_limit;
1588 	p->encap_limit = u->encap_limit;
1589 	p->flowinfo = u->flowinfo;
1590 	p->link = u->link;
1591 	p->proto = u->proto;
1592 	memcpy(p->name, u->name, sizeof(u->name));
1593 }
1594 
1595 static void
ip6_tnl_parm_to_user(struct ip6_tnl_parm * u,const struct __ip6_tnl_parm * p)1596 ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1597 {
1598 	u->laddr = p->laddr;
1599 	u->raddr = p->raddr;
1600 	u->flags = p->flags;
1601 	u->hop_limit = p->hop_limit;
1602 	u->encap_limit = p->encap_limit;
1603 	u->flowinfo = p->flowinfo;
1604 	u->link = p->link;
1605 	u->proto = p->proto;
1606 	memcpy(u->name, p->name, sizeof(u->name));
1607 }
1608 
1609 /**
1610  * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
1611  *   @dev: virtual device associated with tunnel
1612  *   @ifr: parameters passed from userspace
1613  *   @cmd: command to be performed
1614  *
1615  * Description:
1616  *   ip6_tnl_ioctl() is used for managing IPv6 tunnels
1617  *   from userspace.
1618  *
1619  *   The possible commands are the following:
1620  *     %SIOCGETTUNNEL: get tunnel parameters for device
1621  *     %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1622  *     %SIOCCHGTUNNEL: change tunnel parameters to those given
1623  *     %SIOCDELTUNNEL: delete tunnel
1624  *
1625  *   The fallback device "ip6tnl0", created during module
1626  *   initialization, can be used for creating other tunnel devices.
1627  *
1628  * Return:
1629  *   0 on success,
1630  *   %-EFAULT if unable to copy data to or from userspace,
1631  *   %-EPERM if current process hasn't %CAP_NET_ADMIN set
1632  *   %-EINVAL if passed tunnel parameters are invalid,
1633  *   %-EEXIST if changing a tunnel's parameters would cause a conflict
1634  *   %-ENODEV if attempting to change or delete a nonexisting device
1635  **/
1636 
1637 static int
ip6_tnl_ioctl(struct net_device * dev,struct ifreq * ifr,int cmd)1638 ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1639 {
1640 	int err = 0;
1641 	struct ip6_tnl_parm p;
1642 	struct __ip6_tnl_parm p1;
1643 	struct ip6_tnl *t = netdev_priv(dev);
1644 	struct net *net = t->net;
1645 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1646 
1647 	memset(&p1, 0, sizeof(p1));
1648 
1649 	switch (cmd) {
1650 	case SIOCGETTUNNEL:
1651 		if (dev == ip6n->fb_tnl_dev) {
1652 			if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
1653 				err = -EFAULT;
1654 				break;
1655 			}
1656 			ip6_tnl_parm_from_user(&p1, &p);
1657 			t = ip6_tnl_locate(net, &p1, 0);
1658 			if (IS_ERR(t))
1659 				t = netdev_priv(dev);
1660 		} else {
1661 			memset(&p, 0, sizeof(p));
1662 		}
1663 		ip6_tnl_parm_to_user(&p, &t->parms);
1664 		if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p))) {
1665 			err = -EFAULT;
1666 		}
1667 		break;
1668 	case SIOCADDTUNNEL:
1669 	case SIOCCHGTUNNEL:
1670 		err = -EPERM;
1671 		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1672 			break;
1673 		err = -EFAULT;
1674 		if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1675 			break;
1676 		err = -EINVAL;
1677 		if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1678 		    p.proto != 0)
1679 			break;
1680 		ip6_tnl_parm_from_user(&p1, &p);
1681 		t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
1682 		if (cmd == SIOCCHGTUNNEL) {
1683 			if (!IS_ERR(t)) {
1684 				if (t->dev != dev) {
1685 					err = -EEXIST;
1686 					break;
1687 				}
1688 			} else
1689 				t = netdev_priv(dev);
1690 			if (dev == ip6n->fb_tnl_dev)
1691 				err = ip6_tnl0_update(t, &p1);
1692 			else
1693 				err = ip6_tnl_update(t, &p1);
1694 		}
1695 		if (!IS_ERR(t)) {
1696 			err = 0;
1697 			ip6_tnl_parm_to_user(&p, &t->parms);
1698 			if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
1699 				err = -EFAULT;
1700 
1701 		} else {
1702 			err = PTR_ERR(t);
1703 		}
1704 		break;
1705 	case SIOCDELTUNNEL:
1706 		err = -EPERM;
1707 		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1708 			break;
1709 
1710 		if (dev == ip6n->fb_tnl_dev) {
1711 			err = -EFAULT;
1712 			if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1713 				break;
1714 			err = -ENOENT;
1715 			ip6_tnl_parm_from_user(&p1, &p);
1716 			t = ip6_tnl_locate(net, &p1, 0);
1717 			if (IS_ERR(t))
1718 				break;
1719 			err = -EPERM;
1720 			if (t->dev == ip6n->fb_tnl_dev)
1721 				break;
1722 			dev = t->dev;
1723 		}
1724 		err = 0;
1725 		unregister_netdevice(dev);
1726 		break;
1727 	default:
1728 		err = -EINVAL;
1729 	}
1730 	return err;
1731 }
1732 
1733 /**
1734  * ip6_tnl_change_mtu - change mtu manually for tunnel device
1735  *   @dev: virtual device associated with tunnel
1736  *   @new_mtu: the new mtu
1737  *
1738  * Return:
1739  *   0 on success,
1740  *   %-EINVAL if mtu too small
1741  **/
1742 
ip6_tnl_change_mtu(struct net_device * dev,int new_mtu)1743 int ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
1744 {
1745 	struct ip6_tnl *tnl = netdev_priv(dev);
1746 
1747 	if (tnl->parms.proto == IPPROTO_IPV6) {
1748 		if (new_mtu < IPV6_MIN_MTU)
1749 			return -EINVAL;
1750 	} else {
1751 		if (new_mtu < ETH_MIN_MTU)
1752 			return -EINVAL;
1753 	}
1754 	if (tnl->parms.proto == IPPROTO_IPV6 || tnl->parms.proto == 0) {
1755 		if (new_mtu > IP6_MAX_MTU - dev->hard_header_len)
1756 			return -EINVAL;
1757 	} else {
1758 		if (new_mtu > IP_MAX_MTU - dev->hard_header_len)
1759 			return -EINVAL;
1760 	}
1761 	dev->mtu = new_mtu;
1762 	return 0;
1763 }
1764 EXPORT_SYMBOL(ip6_tnl_change_mtu);
1765 
ip6_tnl_get_iflink(const struct net_device * dev)1766 int ip6_tnl_get_iflink(const struct net_device *dev)
1767 {
1768 	struct ip6_tnl *t = netdev_priv(dev);
1769 
1770 	return t->parms.link;
1771 }
1772 EXPORT_SYMBOL(ip6_tnl_get_iflink);
1773 
ip6_tnl_encap_add_ops(const struct ip6_tnl_encap_ops * ops,unsigned int num)1774 int ip6_tnl_encap_add_ops(const struct ip6_tnl_encap_ops *ops,
1775 			  unsigned int num)
1776 {
1777 	if (num >= MAX_IPTUN_ENCAP_OPS)
1778 		return -ERANGE;
1779 
1780 	return !cmpxchg((const struct ip6_tnl_encap_ops **)
1781 			&ip6tun_encaps[num],
1782 			NULL, ops) ? 0 : -1;
1783 }
1784 EXPORT_SYMBOL(ip6_tnl_encap_add_ops);
1785 
ip6_tnl_encap_del_ops(const struct ip6_tnl_encap_ops * ops,unsigned int num)1786 int ip6_tnl_encap_del_ops(const struct ip6_tnl_encap_ops *ops,
1787 			  unsigned int num)
1788 {
1789 	int ret;
1790 
1791 	if (num >= MAX_IPTUN_ENCAP_OPS)
1792 		return -ERANGE;
1793 
1794 	ret = (cmpxchg((const struct ip6_tnl_encap_ops **)
1795 		       &ip6tun_encaps[num],
1796 		       ops, NULL) == ops) ? 0 : -1;
1797 
1798 	synchronize_net();
1799 
1800 	return ret;
1801 }
1802 EXPORT_SYMBOL(ip6_tnl_encap_del_ops);
1803 
ip6_tnl_encap_setup(struct ip6_tnl * t,struct ip_tunnel_encap * ipencap)1804 int ip6_tnl_encap_setup(struct ip6_tnl *t,
1805 			struct ip_tunnel_encap *ipencap)
1806 {
1807 	int hlen;
1808 
1809 	memset(&t->encap, 0, sizeof(t->encap));
1810 
1811 	hlen = ip6_encap_hlen(ipencap);
1812 	if (hlen < 0)
1813 		return hlen;
1814 
1815 	t->encap.type = ipencap->type;
1816 	t->encap.sport = ipencap->sport;
1817 	t->encap.dport = ipencap->dport;
1818 	t->encap.flags = ipencap->flags;
1819 
1820 	t->encap_hlen = hlen;
1821 	t->hlen = t->encap_hlen + t->tun_hlen;
1822 
1823 	return 0;
1824 }
1825 EXPORT_SYMBOL_GPL(ip6_tnl_encap_setup);
1826 
1827 static const struct net_device_ops ip6_tnl_netdev_ops = {
1828 	.ndo_init	= ip6_tnl_dev_init,
1829 	.ndo_uninit	= ip6_tnl_dev_uninit,
1830 	.ndo_start_xmit = ip6_tnl_start_xmit,
1831 	.ndo_do_ioctl	= ip6_tnl_ioctl,
1832 	.ndo_change_mtu = ip6_tnl_change_mtu,
1833 	.ndo_get_stats	= ip6_get_stats,
1834 	.ndo_get_iflink = ip6_tnl_get_iflink,
1835 };
1836 
1837 #define IPXIPX_FEATURES (NETIF_F_SG |		\
1838 			 NETIF_F_FRAGLIST |	\
1839 			 NETIF_F_HIGHDMA |	\
1840 			 NETIF_F_GSO_SOFTWARE |	\
1841 			 NETIF_F_HW_CSUM)
1842 
1843 /**
1844  * ip6_tnl_dev_setup - setup virtual tunnel device
1845  *   @dev: virtual device associated with tunnel
1846  *
1847  * Description:
1848  *   Initialize function pointers and device parameters
1849  **/
1850 
ip6_tnl_dev_setup(struct net_device * dev)1851 static void ip6_tnl_dev_setup(struct net_device *dev)
1852 {
1853 	dev->netdev_ops = &ip6_tnl_netdev_ops;
1854 	dev->header_ops = &ip_tunnel_header_ops;
1855 	dev->needs_free_netdev = true;
1856 	dev->priv_destructor = ip6_dev_free;
1857 
1858 	dev->type = ARPHRD_TUNNEL6;
1859 	dev->flags |= IFF_NOARP;
1860 	dev->addr_len = sizeof(struct in6_addr);
1861 	dev->features |= NETIF_F_LLTX;
1862 	netif_keep_dst(dev);
1863 
1864 	dev->features		|= IPXIPX_FEATURES;
1865 	dev->hw_features	|= IPXIPX_FEATURES;
1866 
1867 	/* This perm addr will be used as interface identifier by IPv6 */
1868 	dev->addr_assign_type = NET_ADDR_RANDOM;
1869 	eth_random_addr(dev->perm_addr);
1870 }
1871 
1872 
1873 /**
1874  * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
1875  *   @dev: virtual device associated with tunnel
1876  **/
1877 
1878 static inline int
ip6_tnl_dev_init_gen(struct net_device * dev)1879 ip6_tnl_dev_init_gen(struct net_device *dev)
1880 {
1881 	struct ip6_tnl *t = netdev_priv(dev);
1882 	int ret;
1883 	int t_hlen;
1884 
1885 	t->dev = dev;
1886 	t->net = dev_net(dev);
1887 	dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1888 	if (!dev->tstats)
1889 		return -ENOMEM;
1890 
1891 	ret = dst_cache_init(&t->dst_cache, GFP_KERNEL);
1892 	if (ret)
1893 		goto free_stats;
1894 
1895 	ret = gro_cells_init(&t->gro_cells, dev);
1896 	if (ret)
1897 		goto destroy_dst;
1898 
1899 	t->tun_hlen = 0;
1900 	t->hlen = t->encap_hlen + t->tun_hlen;
1901 	t_hlen = t->hlen + sizeof(struct ipv6hdr);
1902 
1903 	dev->type = ARPHRD_TUNNEL6;
1904 	dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1905 	dev->mtu = ETH_DATA_LEN - t_hlen;
1906 	if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1907 		dev->mtu -= 8;
1908 	dev->min_mtu = ETH_MIN_MTU;
1909 	dev->max_mtu = IP6_MAX_MTU - dev->hard_header_len;
1910 
1911 	dev_hold(dev);
1912 	return 0;
1913 
1914 destroy_dst:
1915 	dst_cache_destroy(&t->dst_cache);
1916 free_stats:
1917 	free_percpu(dev->tstats);
1918 	dev->tstats = NULL;
1919 
1920 	return ret;
1921 }
1922 
1923 /**
1924  * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
1925  *   @dev: virtual device associated with tunnel
1926  **/
1927 
ip6_tnl_dev_init(struct net_device * dev)1928 static int ip6_tnl_dev_init(struct net_device *dev)
1929 {
1930 	struct ip6_tnl *t = netdev_priv(dev);
1931 	int err = ip6_tnl_dev_init_gen(dev);
1932 
1933 	if (err)
1934 		return err;
1935 	ip6_tnl_link_config(t);
1936 	if (t->parms.collect_md)
1937 		netif_keep_dst(dev);
1938 	return 0;
1939 }
1940 
1941 /**
1942  * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
1943  *   @dev: fallback device
1944  *
1945  * Return: 0
1946  **/
1947 
ip6_fb_tnl_dev_init(struct net_device * dev)1948 static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
1949 {
1950 	struct ip6_tnl *t = netdev_priv(dev);
1951 	struct net *net = dev_net(dev);
1952 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1953 
1954 	t->parms.proto = IPPROTO_IPV6;
1955 
1956 	rcu_assign_pointer(ip6n->tnls_wc[0], t);
1957 	return 0;
1958 }
1959 
ip6_tnl_validate(struct nlattr * tb[],struct nlattr * data[],struct netlink_ext_ack * extack)1960 static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[],
1961 			    struct netlink_ext_ack *extack)
1962 {
1963 	u8 proto;
1964 
1965 	if (!data || !data[IFLA_IPTUN_PROTO])
1966 		return 0;
1967 
1968 	proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1969 	if (proto != IPPROTO_IPV6 &&
1970 	    proto != IPPROTO_IPIP &&
1971 	    proto != 0)
1972 		return -EINVAL;
1973 
1974 	return 0;
1975 }
1976 
ip6_tnl_netlink_parms(struct nlattr * data[],struct __ip6_tnl_parm * parms)1977 static void ip6_tnl_netlink_parms(struct nlattr *data[],
1978 				  struct __ip6_tnl_parm *parms)
1979 {
1980 	memset(parms, 0, sizeof(*parms));
1981 
1982 	if (!data)
1983 		return;
1984 
1985 	if (data[IFLA_IPTUN_LINK])
1986 		parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1987 
1988 	if (data[IFLA_IPTUN_LOCAL])
1989 		parms->laddr = nla_get_in6_addr(data[IFLA_IPTUN_LOCAL]);
1990 
1991 	if (data[IFLA_IPTUN_REMOTE])
1992 		parms->raddr = nla_get_in6_addr(data[IFLA_IPTUN_REMOTE]);
1993 
1994 	if (data[IFLA_IPTUN_TTL])
1995 		parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1996 
1997 	if (data[IFLA_IPTUN_ENCAP_LIMIT])
1998 		parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1999 
2000 	if (data[IFLA_IPTUN_FLOWINFO])
2001 		parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
2002 
2003 	if (data[IFLA_IPTUN_FLAGS])
2004 		parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
2005 
2006 	if (data[IFLA_IPTUN_PROTO])
2007 		parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
2008 
2009 	if (data[IFLA_IPTUN_COLLECT_METADATA])
2010 		parms->collect_md = true;
2011 
2012 	if (data[IFLA_IPTUN_FWMARK])
2013 		parms->fwmark = nla_get_u32(data[IFLA_IPTUN_FWMARK]);
2014 }
2015 
ip6_tnl_netlink_encap_parms(struct nlattr * data[],struct ip_tunnel_encap * ipencap)2016 static bool ip6_tnl_netlink_encap_parms(struct nlattr *data[],
2017 					struct ip_tunnel_encap *ipencap)
2018 {
2019 	bool ret = false;
2020 
2021 	memset(ipencap, 0, sizeof(*ipencap));
2022 
2023 	if (!data)
2024 		return ret;
2025 
2026 	if (data[IFLA_IPTUN_ENCAP_TYPE]) {
2027 		ret = true;
2028 		ipencap->type = nla_get_u16(data[IFLA_IPTUN_ENCAP_TYPE]);
2029 	}
2030 
2031 	if (data[IFLA_IPTUN_ENCAP_FLAGS]) {
2032 		ret = true;
2033 		ipencap->flags = nla_get_u16(data[IFLA_IPTUN_ENCAP_FLAGS]);
2034 	}
2035 
2036 	if (data[IFLA_IPTUN_ENCAP_SPORT]) {
2037 		ret = true;
2038 		ipencap->sport = nla_get_be16(data[IFLA_IPTUN_ENCAP_SPORT]);
2039 	}
2040 
2041 	if (data[IFLA_IPTUN_ENCAP_DPORT]) {
2042 		ret = true;
2043 		ipencap->dport = nla_get_be16(data[IFLA_IPTUN_ENCAP_DPORT]);
2044 	}
2045 
2046 	return ret;
2047 }
2048 
ip6_tnl_newlink(struct net * src_net,struct net_device * dev,struct nlattr * tb[],struct nlattr * data[],struct netlink_ext_ack * extack)2049 static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
2050 			   struct nlattr *tb[], struct nlattr *data[],
2051 			   struct netlink_ext_ack *extack)
2052 {
2053 	struct net *net = dev_net(dev);
2054 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
2055 	struct ip_tunnel_encap ipencap;
2056 	struct ip6_tnl *nt, *t;
2057 	int err;
2058 
2059 	nt = netdev_priv(dev);
2060 
2061 	if (ip6_tnl_netlink_encap_parms(data, &ipencap)) {
2062 		err = ip6_tnl_encap_setup(nt, &ipencap);
2063 		if (err < 0)
2064 			return err;
2065 	}
2066 
2067 	ip6_tnl_netlink_parms(data, &nt->parms);
2068 
2069 	if (nt->parms.collect_md) {
2070 		if (rtnl_dereference(ip6n->collect_md_tun))
2071 			return -EEXIST;
2072 	} else {
2073 		t = ip6_tnl_locate(net, &nt->parms, 0);
2074 		if (!IS_ERR(t))
2075 			return -EEXIST;
2076 	}
2077 
2078 	err = ip6_tnl_create2(dev);
2079 	if (!err && tb[IFLA_MTU])
2080 		ip6_tnl_change_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
2081 
2082 	return err;
2083 }
2084 
ip6_tnl_changelink(struct net_device * dev,struct nlattr * tb[],struct nlattr * data[],struct netlink_ext_ack * extack)2085 static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
2086 			      struct nlattr *data[],
2087 			      struct netlink_ext_ack *extack)
2088 {
2089 	struct ip6_tnl *t = netdev_priv(dev);
2090 	struct __ip6_tnl_parm p;
2091 	struct net *net = t->net;
2092 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
2093 	struct ip_tunnel_encap ipencap;
2094 
2095 	if (dev == ip6n->fb_tnl_dev)
2096 		return -EINVAL;
2097 
2098 	if (ip6_tnl_netlink_encap_parms(data, &ipencap)) {
2099 		int err = ip6_tnl_encap_setup(t, &ipencap);
2100 
2101 		if (err < 0)
2102 			return err;
2103 	}
2104 	ip6_tnl_netlink_parms(data, &p);
2105 	if (p.collect_md)
2106 		return -EINVAL;
2107 
2108 	t = ip6_tnl_locate(net, &p, 0);
2109 	if (!IS_ERR(t)) {
2110 		if (t->dev != dev)
2111 			return -EEXIST;
2112 	} else
2113 		t = netdev_priv(dev);
2114 
2115 	return ip6_tnl_update(t, &p);
2116 }
2117 
ip6_tnl_dellink(struct net_device * dev,struct list_head * head)2118 static void ip6_tnl_dellink(struct net_device *dev, struct list_head *head)
2119 {
2120 	struct net *net = dev_net(dev);
2121 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
2122 
2123 	if (dev != ip6n->fb_tnl_dev)
2124 		unregister_netdevice_queue(dev, head);
2125 }
2126 
ip6_tnl_get_size(const struct net_device * dev)2127 static size_t ip6_tnl_get_size(const struct net_device *dev)
2128 {
2129 	return
2130 		/* IFLA_IPTUN_LINK */
2131 		nla_total_size(4) +
2132 		/* IFLA_IPTUN_LOCAL */
2133 		nla_total_size(sizeof(struct in6_addr)) +
2134 		/* IFLA_IPTUN_REMOTE */
2135 		nla_total_size(sizeof(struct in6_addr)) +
2136 		/* IFLA_IPTUN_TTL */
2137 		nla_total_size(1) +
2138 		/* IFLA_IPTUN_ENCAP_LIMIT */
2139 		nla_total_size(1) +
2140 		/* IFLA_IPTUN_FLOWINFO */
2141 		nla_total_size(4) +
2142 		/* IFLA_IPTUN_FLAGS */
2143 		nla_total_size(4) +
2144 		/* IFLA_IPTUN_PROTO */
2145 		nla_total_size(1) +
2146 		/* IFLA_IPTUN_ENCAP_TYPE */
2147 		nla_total_size(2) +
2148 		/* IFLA_IPTUN_ENCAP_FLAGS */
2149 		nla_total_size(2) +
2150 		/* IFLA_IPTUN_ENCAP_SPORT */
2151 		nla_total_size(2) +
2152 		/* IFLA_IPTUN_ENCAP_DPORT */
2153 		nla_total_size(2) +
2154 		/* IFLA_IPTUN_COLLECT_METADATA */
2155 		nla_total_size(0) +
2156 		/* IFLA_IPTUN_FWMARK */
2157 		nla_total_size(4) +
2158 		0;
2159 }
2160 
ip6_tnl_fill_info(struct sk_buff * skb,const struct net_device * dev)2161 static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
2162 {
2163 	struct ip6_tnl *tunnel = netdev_priv(dev);
2164 	struct __ip6_tnl_parm *parm = &tunnel->parms;
2165 
2166 	if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
2167 	    nla_put_in6_addr(skb, IFLA_IPTUN_LOCAL, &parm->laddr) ||
2168 	    nla_put_in6_addr(skb, IFLA_IPTUN_REMOTE, &parm->raddr) ||
2169 	    nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
2170 	    nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
2171 	    nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
2172 	    nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
2173 	    nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto) ||
2174 	    nla_put_u32(skb, IFLA_IPTUN_FWMARK, parm->fwmark))
2175 		goto nla_put_failure;
2176 
2177 	if (nla_put_u16(skb, IFLA_IPTUN_ENCAP_TYPE, tunnel->encap.type) ||
2178 	    nla_put_be16(skb, IFLA_IPTUN_ENCAP_SPORT, tunnel->encap.sport) ||
2179 	    nla_put_be16(skb, IFLA_IPTUN_ENCAP_DPORT, tunnel->encap.dport) ||
2180 	    nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS, tunnel->encap.flags))
2181 		goto nla_put_failure;
2182 
2183 	if (parm->collect_md)
2184 		if (nla_put_flag(skb, IFLA_IPTUN_COLLECT_METADATA))
2185 			goto nla_put_failure;
2186 
2187 	return 0;
2188 
2189 nla_put_failure:
2190 	return -EMSGSIZE;
2191 }
2192 
ip6_tnl_get_link_net(const struct net_device * dev)2193 struct net *ip6_tnl_get_link_net(const struct net_device *dev)
2194 {
2195 	struct ip6_tnl *tunnel = netdev_priv(dev);
2196 
2197 	return tunnel->net;
2198 }
2199 EXPORT_SYMBOL(ip6_tnl_get_link_net);
2200 
2201 static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
2202 	[IFLA_IPTUN_LINK]		= { .type = NLA_U32 },
2203 	[IFLA_IPTUN_LOCAL]		= { .len = sizeof(struct in6_addr) },
2204 	[IFLA_IPTUN_REMOTE]		= { .len = sizeof(struct in6_addr) },
2205 	[IFLA_IPTUN_TTL]		= { .type = NLA_U8 },
2206 	[IFLA_IPTUN_ENCAP_LIMIT]	= { .type = NLA_U8 },
2207 	[IFLA_IPTUN_FLOWINFO]		= { .type = NLA_U32 },
2208 	[IFLA_IPTUN_FLAGS]		= { .type = NLA_U32 },
2209 	[IFLA_IPTUN_PROTO]		= { .type = NLA_U8 },
2210 	[IFLA_IPTUN_ENCAP_TYPE]		= { .type = NLA_U16 },
2211 	[IFLA_IPTUN_ENCAP_FLAGS]	= { .type = NLA_U16 },
2212 	[IFLA_IPTUN_ENCAP_SPORT]	= { .type = NLA_U16 },
2213 	[IFLA_IPTUN_ENCAP_DPORT]	= { .type = NLA_U16 },
2214 	[IFLA_IPTUN_COLLECT_METADATA]	= { .type = NLA_FLAG },
2215 	[IFLA_IPTUN_FWMARK]		= { .type = NLA_U32 },
2216 };
2217 
2218 static struct rtnl_link_ops ip6_link_ops __read_mostly = {
2219 	.kind		= "ip6tnl",
2220 	.maxtype	= IFLA_IPTUN_MAX,
2221 	.policy		= ip6_tnl_policy,
2222 	.priv_size	= sizeof(struct ip6_tnl),
2223 	.setup		= ip6_tnl_dev_setup,
2224 	.validate	= ip6_tnl_validate,
2225 	.newlink	= ip6_tnl_newlink,
2226 	.changelink	= ip6_tnl_changelink,
2227 	.dellink	= ip6_tnl_dellink,
2228 	.get_size	= ip6_tnl_get_size,
2229 	.fill_info	= ip6_tnl_fill_info,
2230 	.get_link_net	= ip6_tnl_get_link_net,
2231 };
2232 
2233 static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
2234 	.handler	= ip4ip6_rcv,
2235 	.err_handler	= ip4ip6_err,
2236 	.priority	=	1,
2237 };
2238 
2239 static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
2240 	.handler	= ip6ip6_rcv,
2241 	.err_handler	= ip6ip6_err,
2242 	.priority	=	1,
2243 };
2244 
2245 static struct xfrm6_tunnel mplsip6_handler __read_mostly = {
2246 	.handler	= mplsip6_rcv,
2247 	.err_handler	= mplsip6_err,
2248 	.priority	=	1,
2249 };
2250 
ip6_tnl_destroy_tunnels(struct net * net,struct list_head * list)2251 static void __net_exit ip6_tnl_destroy_tunnels(struct net *net, struct list_head *list)
2252 {
2253 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
2254 	struct net_device *dev, *aux;
2255 	int h;
2256 	struct ip6_tnl *t;
2257 
2258 	for_each_netdev_safe(net, dev, aux)
2259 		if (dev->rtnl_link_ops == &ip6_link_ops)
2260 			unregister_netdevice_queue(dev, list);
2261 
2262 	for (h = 0; h < IP6_TUNNEL_HASH_SIZE; h++) {
2263 		t = rtnl_dereference(ip6n->tnls_r_l[h]);
2264 		while (t) {
2265 			/* If dev is in the same netns, it has already
2266 			 * been added to the list by the previous loop.
2267 			 */
2268 			if (!net_eq(dev_net(t->dev), net))
2269 				unregister_netdevice_queue(t->dev, list);
2270 			t = rtnl_dereference(t->next);
2271 		}
2272 	}
2273 
2274 	t = rtnl_dereference(ip6n->tnls_wc[0]);
2275 	while (t) {
2276 		/* If dev is in the same netns, it has already
2277 		 * been added to the list by the previous loop.
2278 		 */
2279 		if (!net_eq(dev_net(t->dev), net))
2280 			unregister_netdevice_queue(t->dev, list);
2281 		t = rtnl_dereference(t->next);
2282 	}
2283 }
2284 
ip6_tnl_init_net(struct net * net)2285 static int __net_init ip6_tnl_init_net(struct net *net)
2286 {
2287 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
2288 	struct ip6_tnl *t = NULL;
2289 	int err;
2290 
2291 	ip6n->tnls[0] = ip6n->tnls_wc;
2292 	ip6n->tnls[1] = ip6n->tnls_r_l;
2293 
2294 	if (!net_has_fallback_tunnels(net))
2295 		return 0;
2296 	err = -ENOMEM;
2297 	ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
2298 					NET_NAME_UNKNOWN, ip6_tnl_dev_setup);
2299 
2300 	if (!ip6n->fb_tnl_dev)
2301 		goto err_alloc_dev;
2302 	dev_net_set(ip6n->fb_tnl_dev, net);
2303 	ip6n->fb_tnl_dev->rtnl_link_ops = &ip6_link_ops;
2304 	/* FB netdevice is special: we have one, and only one per netns.
2305 	 * Allowing to move it to another netns is clearly unsafe.
2306 	 */
2307 	ip6n->fb_tnl_dev->features |= NETIF_F_NETNS_LOCAL;
2308 
2309 	err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
2310 	if (err < 0)
2311 		goto err_register;
2312 
2313 	err = register_netdev(ip6n->fb_tnl_dev);
2314 	if (err < 0)
2315 		goto err_register;
2316 
2317 	t = netdev_priv(ip6n->fb_tnl_dev);
2318 
2319 	strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
2320 	return 0;
2321 
2322 err_register:
2323 	free_netdev(ip6n->fb_tnl_dev);
2324 err_alloc_dev:
2325 	return err;
2326 }
2327 
ip6_tnl_exit_batch_net(struct list_head * net_list)2328 static void __net_exit ip6_tnl_exit_batch_net(struct list_head *net_list)
2329 {
2330 	struct net *net;
2331 	LIST_HEAD(list);
2332 
2333 	rtnl_lock();
2334 	list_for_each_entry(net, net_list, exit_list)
2335 		ip6_tnl_destroy_tunnels(net, &list);
2336 	unregister_netdevice_many(&list);
2337 	rtnl_unlock();
2338 }
2339 
2340 static struct pernet_operations ip6_tnl_net_ops = {
2341 	.init = ip6_tnl_init_net,
2342 	.exit_batch = ip6_tnl_exit_batch_net,
2343 	.id   = &ip6_tnl_net_id,
2344 	.size = sizeof(struct ip6_tnl_net),
2345 };
2346 
2347 /**
2348  * ip6_tunnel_init - register protocol and reserve needed resources
2349  *
2350  * Return: 0 on success
2351  **/
2352 
ip6_tunnel_init(void)2353 static int __init ip6_tunnel_init(void)
2354 {
2355 	int  err;
2356 
2357 	if (!ipv6_mod_enabled())
2358 		return -EOPNOTSUPP;
2359 
2360 	err = register_pernet_device(&ip6_tnl_net_ops);
2361 	if (err < 0)
2362 		goto out_pernet;
2363 
2364 	err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
2365 	if (err < 0) {
2366 		pr_err("%s: can't register ip4ip6\n", __func__);
2367 		goto out_ip4ip6;
2368 	}
2369 
2370 	err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
2371 	if (err < 0) {
2372 		pr_err("%s: can't register ip6ip6\n", __func__);
2373 		goto out_ip6ip6;
2374 	}
2375 
2376 	if (ip6_tnl_mpls_supported()) {
2377 		err = xfrm6_tunnel_register(&mplsip6_handler, AF_MPLS);
2378 		if (err < 0) {
2379 			pr_err("%s: can't register mplsip6\n", __func__);
2380 			goto out_mplsip6;
2381 		}
2382 	}
2383 
2384 	err = rtnl_link_register(&ip6_link_ops);
2385 	if (err < 0)
2386 		goto rtnl_link_failed;
2387 
2388 	return 0;
2389 
2390 rtnl_link_failed:
2391 	if (ip6_tnl_mpls_supported())
2392 		xfrm6_tunnel_deregister(&mplsip6_handler, AF_MPLS);
2393 out_mplsip6:
2394 	xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
2395 out_ip6ip6:
2396 	xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
2397 out_ip4ip6:
2398 	unregister_pernet_device(&ip6_tnl_net_ops);
2399 out_pernet:
2400 	return err;
2401 }
2402 
2403 /**
2404  * ip6_tunnel_cleanup - free resources and unregister protocol
2405  **/
2406 
ip6_tunnel_cleanup(void)2407 static void __exit ip6_tunnel_cleanup(void)
2408 {
2409 	rtnl_link_unregister(&ip6_link_ops);
2410 	if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
2411 		pr_info("%s: can't deregister ip4ip6\n", __func__);
2412 
2413 	if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
2414 		pr_info("%s: can't deregister ip6ip6\n", __func__);
2415 
2416 	if (ip6_tnl_mpls_supported() &&
2417 	    xfrm6_tunnel_deregister(&mplsip6_handler, AF_MPLS))
2418 		pr_info("%s: can't deregister mplsip6\n", __func__);
2419 	unregister_pernet_device(&ip6_tnl_net_ops);
2420 }
2421 
2422 module_init(ip6_tunnel_init);
2423 module_exit(ip6_tunnel_cleanup);
2424