xref: /linux/include/net/ip_tunnels.h (revision c9d23f9657cabfd2836a096bf6eddf8df2cf1434)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __NET_IP_TUNNELS_H
3 #define __NET_IP_TUNNELS_H 1
4 
5 #include <linux/if_tunnel.h>
6 #include <linux/netdevice.h>
7 #include <linux/skbuff.h>
8 #include <linux/socket.h>
9 #include <linux/types.h>
10 #include <linux/u64_stats_sync.h>
11 #include <linux/bitops.h>
12 
13 #include <net/dsfield.h>
14 #include <net/gro_cells.h>
15 #include <net/inet_ecn.h>
16 #include <net/netns/generic.h>
17 #include <net/rtnetlink.h>
18 #include <net/lwtunnel.h>
19 #include <net/dst_cache.h>
20 
21 #if IS_ENABLED(CONFIG_IPV6)
22 #include <net/ipv6.h>
23 #include <net/ip6_fib.h>
24 #include <net/ip6_route.h>
25 #endif
26 
27 /* Keep error state on tunnel for 30 sec */
28 #define IPTUNNEL_ERR_TIMEO	(30*HZ)
29 
30 /* Used to memset ip_tunnel padding. */
31 #define IP_TUNNEL_KEY_SIZE	offsetofend(struct ip_tunnel_key, tp_dst)
32 
33 /* Used to memset ipv4 address padding. */
34 #define IP_TUNNEL_KEY_IPV4_PAD	offsetofend(struct ip_tunnel_key, u.ipv4.dst)
35 #define IP_TUNNEL_KEY_IPV4_PAD_LEN				\
36 	(sizeof_field(struct ip_tunnel_key, u) -		\
37 	 sizeof_field(struct ip_tunnel_key, u.ipv4))
38 
39 struct ip_tunnel_key {
40 	__be64			tun_id;
41 	union {
42 		struct {
43 			__be32	src;
44 			__be32	dst;
45 		} ipv4;
46 		struct {
47 			struct in6_addr src;
48 			struct in6_addr dst;
49 		} ipv6;
50 	} u;
51 	__be16			tun_flags;
52 	u8			tos;		/* TOS for IPv4, TC for IPv6 */
53 	u8			ttl;		/* TTL for IPv4, HL for IPv6 */
54 	__be32			label;		/* Flow Label for IPv6 */
55 	__be16			tp_src;
56 	__be16			tp_dst;
57 	__u8			flow_flags;
58 };
59 
60 /* Flags for ip_tunnel_info mode. */
61 #define IP_TUNNEL_INFO_TX	0x01	/* represents tx tunnel parameters */
62 #define IP_TUNNEL_INFO_IPV6	0x02	/* key contains IPv6 addresses */
63 #define IP_TUNNEL_INFO_BRIDGE	0x04	/* represents a bridged tunnel id */
64 
65 /* Maximum tunnel options length. */
66 #define IP_TUNNEL_OPTS_MAX					\
67 	GENMASK((sizeof_field(struct ip_tunnel_info,		\
68 			      options_len) * BITS_PER_BYTE) - 1, 0)
69 
70 #define ip_tunnel_info_opts(info)				\
71 	_Generic(info,						\
72 		 const struct ip_tunnel_info * : ((const void *)((info) + 1)),\
73 		 struct ip_tunnel_info * : ((void *)((info) + 1))\
74 	)
75 
76 struct ip_tunnel_info {
77 	struct ip_tunnel_key	key;
78 #ifdef CONFIG_DST_CACHE
79 	struct dst_cache	dst_cache;
80 #endif
81 	u8			options_len;
82 	u8			mode;
83 };
84 
85 /* 6rd prefix/relay information */
86 #ifdef CONFIG_IPV6_SIT_6RD
87 struct ip_tunnel_6rd_parm {
88 	struct in6_addr		prefix;
89 	__be32			relay_prefix;
90 	u16			prefixlen;
91 	u16			relay_prefixlen;
92 };
93 #endif
94 
95 struct ip_tunnel_encap {
96 	u16			type;
97 	u16			flags;
98 	__be16			sport;
99 	__be16			dport;
100 };
101 
102 struct ip_tunnel_prl_entry {
103 	struct ip_tunnel_prl_entry __rcu *next;
104 	__be32				addr;
105 	u16				flags;
106 	struct rcu_head			rcu_head;
107 };
108 
109 struct metadata_dst;
110 
111 struct ip_tunnel {
112 	struct ip_tunnel __rcu	*next;
113 	struct hlist_node hash_node;
114 
115 	struct net_device	*dev;
116 	netdevice_tracker	dev_tracker;
117 
118 	struct net		*net;	/* netns for packet i/o */
119 
120 	unsigned long	err_time;	/* Time when the last ICMP error
121 					 * arrived */
122 	int		err_count;	/* Number of arrived ICMP errors */
123 
124 	/* These four fields used only by GRE */
125 	u32		i_seqno;	/* The last seen seqno	*/
126 	atomic_t	o_seqno;	/* The last output seqno */
127 	int		tun_hlen;	/* Precalculated header length */
128 
129 	/* These four fields used only by ERSPAN */
130 	u32		index;		/* ERSPAN type II index */
131 	u8		erspan_ver;	/* ERSPAN version */
132 	u8		dir;		/* ERSPAN direction */
133 	u16		hwid;		/* ERSPAN hardware ID */
134 
135 	struct dst_cache dst_cache;
136 
137 	struct ip_tunnel_parm parms;
138 
139 	int		mlink;
140 	int		encap_hlen;	/* Encap header length (FOU,GUE) */
141 	int		hlen;		/* tun_hlen + encap_hlen */
142 	struct ip_tunnel_encap encap;
143 
144 	/* for SIT */
145 #ifdef CONFIG_IPV6_SIT_6RD
146 	struct ip_tunnel_6rd_parm ip6rd;
147 #endif
148 	struct ip_tunnel_prl_entry __rcu *prl;	/* potential router list */
149 	unsigned int		prl_count;	/* # of entries in PRL */
150 	unsigned int		ip_tnl_net_id;
151 	struct gro_cells	gro_cells;
152 	__u32			fwmark;
153 	bool			collect_md;
154 	bool			ignore_df;
155 };
156 
157 struct tnl_ptk_info {
158 	__be16 flags;
159 	__be16 proto;
160 	__be32 key;
161 	__be32 seq;
162 	int hdr_len;
163 };
164 
165 #define PACKET_RCVD	0
166 #define PACKET_REJECT	1
167 #define PACKET_NEXT	2
168 
169 #define IP_TNL_HASH_BITS   7
170 #define IP_TNL_HASH_SIZE   (1 << IP_TNL_HASH_BITS)
171 
172 struct ip_tunnel_net {
173 	struct net_device *fb_tunnel_dev;
174 	struct rtnl_link_ops *rtnl_link_ops;
175 	struct hlist_head tunnels[IP_TNL_HASH_SIZE];
176 	struct ip_tunnel __rcu *collect_md_tun;
177 	int type;
178 };
179 
180 static inline void ip_tunnel_key_init(struct ip_tunnel_key *key,
181 				      __be32 saddr, __be32 daddr,
182 				      u8 tos, u8 ttl, __be32 label,
183 				      __be16 tp_src, __be16 tp_dst,
184 				      __be64 tun_id, __be16 tun_flags)
185 {
186 	key->tun_id = tun_id;
187 	key->u.ipv4.src = saddr;
188 	key->u.ipv4.dst = daddr;
189 	memset((unsigned char *)key + IP_TUNNEL_KEY_IPV4_PAD,
190 	       0, IP_TUNNEL_KEY_IPV4_PAD_LEN);
191 	key->tos = tos;
192 	key->ttl = ttl;
193 	key->label = label;
194 	key->tun_flags = tun_flags;
195 
196 	/* For the tunnel types on the top of IPsec, the tp_src and tp_dst of
197 	 * the upper tunnel are used.
198 	 * E.g: GRE over IPSEC, the tp_src and tp_port are zero.
199 	 */
200 	key->tp_src = tp_src;
201 	key->tp_dst = tp_dst;
202 
203 	/* Clear struct padding. */
204 	if (sizeof(*key) != IP_TUNNEL_KEY_SIZE)
205 		memset((unsigned char *)key + IP_TUNNEL_KEY_SIZE,
206 		       0, sizeof(*key) - IP_TUNNEL_KEY_SIZE);
207 }
208 
209 static inline bool
210 ip_tunnel_dst_cache_usable(const struct sk_buff *skb,
211 			   const struct ip_tunnel_info *info)
212 {
213 	if (skb->mark)
214 		return false;
215 	if (!info)
216 		return true;
217 	if (info->key.tun_flags & TUNNEL_NOCACHE)
218 		return false;
219 
220 	return true;
221 }
222 
223 static inline unsigned short ip_tunnel_info_af(const struct ip_tunnel_info
224 					       *tun_info)
225 {
226 	return tun_info->mode & IP_TUNNEL_INFO_IPV6 ? AF_INET6 : AF_INET;
227 }
228 
229 static inline __be64 key32_to_tunnel_id(__be32 key)
230 {
231 #ifdef __BIG_ENDIAN
232 	return (__force __be64)key;
233 #else
234 	return (__force __be64)((__force u64)key << 32);
235 #endif
236 }
237 
238 /* Returns the least-significant 32 bits of a __be64. */
239 static inline __be32 tunnel_id_to_key32(__be64 tun_id)
240 {
241 #ifdef __BIG_ENDIAN
242 	return (__force __be32)tun_id;
243 #else
244 	return (__force __be32)((__force u64)tun_id >> 32);
245 #endif
246 }
247 
248 #ifdef CONFIG_INET
249 
250 static inline void ip_tunnel_init_flow(struct flowi4 *fl4,
251 				       int proto,
252 				       __be32 daddr, __be32 saddr,
253 				       __be32 key, __u8 tos,
254 				       struct net *net, int oif,
255 				       __u32 mark, __u32 tun_inner_hash,
256 				       __u8 flow_flags)
257 {
258 	memset(fl4, 0, sizeof(*fl4));
259 
260 	if (oif) {
261 		fl4->flowi4_l3mdev = l3mdev_master_upper_ifindex_by_index_rcu(net, oif);
262 		/* Legacy VRF/l3mdev use case */
263 		fl4->flowi4_oif = fl4->flowi4_l3mdev ? 0 : oif;
264 	}
265 
266 	fl4->daddr = daddr;
267 	fl4->saddr = saddr;
268 	fl4->flowi4_tos = tos;
269 	fl4->flowi4_proto = proto;
270 	fl4->fl4_gre_key = key;
271 	fl4->flowi4_mark = mark;
272 	fl4->flowi4_multipath_hash = tun_inner_hash;
273 	fl4->flowi4_flags = flow_flags;
274 }
275 
276 int ip_tunnel_init(struct net_device *dev);
277 void ip_tunnel_uninit(struct net_device *dev);
278 void  ip_tunnel_dellink(struct net_device *dev, struct list_head *head);
279 struct net *ip_tunnel_get_link_net(const struct net_device *dev);
280 int ip_tunnel_get_iflink(const struct net_device *dev);
281 int ip_tunnel_init_net(struct net *net, unsigned int ip_tnl_net_id,
282 		       struct rtnl_link_ops *ops, char *devname);
283 
284 void ip_tunnel_delete_nets(struct list_head *list_net, unsigned int id,
285 			   struct rtnl_link_ops *ops);
286 
287 void ip_tunnel_xmit(struct sk_buff *skb, struct net_device *dev,
288 		    const struct iphdr *tnl_params, const u8 protocol);
289 void ip_md_tunnel_xmit(struct sk_buff *skb, struct net_device *dev,
290 		       const u8 proto, int tunnel_hlen);
291 int ip_tunnel_ctl(struct net_device *dev, struct ip_tunnel_parm *p, int cmd);
292 int ip_tunnel_siocdevprivate(struct net_device *dev, struct ifreq *ifr,
293 			     void __user *data, int cmd);
294 int __ip_tunnel_change_mtu(struct net_device *dev, int new_mtu, bool strict);
295 int ip_tunnel_change_mtu(struct net_device *dev, int new_mtu);
296 
297 struct ip_tunnel *ip_tunnel_lookup(struct ip_tunnel_net *itn,
298 				   int link, __be16 flags,
299 				   __be32 remote, __be32 local,
300 				   __be32 key);
301 
302 int ip_tunnel_rcv(struct ip_tunnel *tunnel, struct sk_buff *skb,
303 		  const struct tnl_ptk_info *tpi, struct metadata_dst *tun_dst,
304 		  bool log_ecn_error);
305 int ip_tunnel_changelink(struct net_device *dev, struct nlattr *tb[],
306 			 struct ip_tunnel_parm *p, __u32 fwmark);
307 int ip_tunnel_newlink(struct net_device *dev, struct nlattr *tb[],
308 		      struct ip_tunnel_parm *p, __u32 fwmark);
309 void ip_tunnel_setup(struct net_device *dev, unsigned int net_id);
310 
311 bool ip_tunnel_netlink_encap_parms(struct nlattr *data[],
312 				   struct ip_tunnel_encap *encap);
313 
314 void ip_tunnel_netlink_parms(struct nlattr *data[],
315 			     struct ip_tunnel_parm *parms);
316 
317 extern const struct header_ops ip_tunnel_header_ops;
318 __be16 ip_tunnel_parse_protocol(const struct sk_buff *skb);
319 
320 struct ip_tunnel_encap_ops {
321 	size_t (*encap_hlen)(struct ip_tunnel_encap *e);
322 	int (*build_header)(struct sk_buff *skb, struct ip_tunnel_encap *e,
323 			    u8 *protocol, struct flowi4 *fl4);
324 	int (*err_handler)(struct sk_buff *skb, u32 info);
325 };
326 
327 #define MAX_IPTUN_ENCAP_OPS 8
328 
329 extern const struct ip_tunnel_encap_ops __rcu *
330 		iptun_encaps[MAX_IPTUN_ENCAP_OPS];
331 
332 int ip_tunnel_encap_add_ops(const struct ip_tunnel_encap_ops *op,
333 			    unsigned int num);
334 int ip_tunnel_encap_del_ops(const struct ip_tunnel_encap_ops *op,
335 			    unsigned int num);
336 
337 int ip_tunnel_encap_setup(struct ip_tunnel *t,
338 			  struct ip_tunnel_encap *ipencap);
339 
340 static inline bool pskb_inet_may_pull(struct sk_buff *skb)
341 {
342 	int nhlen;
343 
344 	switch (skb->protocol) {
345 #if IS_ENABLED(CONFIG_IPV6)
346 	case htons(ETH_P_IPV6):
347 		nhlen = sizeof(struct ipv6hdr);
348 		break;
349 #endif
350 	case htons(ETH_P_IP):
351 		nhlen = sizeof(struct iphdr);
352 		break;
353 	default:
354 		nhlen = 0;
355 	}
356 
357 	return pskb_network_may_pull(skb, nhlen);
358 }
359 
360 static inline int ip_encap_hlen(struct ip_tunnel_encap *e)
361 {
362 	const struct ip_tunnel_encap_ops *ops;
363 	int hlen = -EINVAL;
364 
365 	if (e->type == TUNNEL_ENCAP_NONE)
366 		return 0;
367 
368 	if (e->type >= MAX_IPTUN_ENCAP_OPS)
369 		return -EINVAL;
370 
371 	rcu_read_lock();
372 	ops = rcu_dereference(iptun_encaps[e->type]);
373 	if (likely(ops && ops->encap_hlen))
374 		hlen = ops->encap_hlen(e);
375 	rcu_read_unlock();
376 
377 	return hlen;
378 }
379 
380 static inline int ip_tunnel_encap(struct sk_buff *skb, struct ip_tunnel *t,
381 				  u8 *protocol, struct flowi4 *fl4)
382 {
383 	const struct ip_tunnel_encap_ops *ops;
384 	int ret = -EINVAL;
385 
386 	if (t->encap.type == TUNNEL_ENCAP_NONE)
387 		return 0;
388 
389 	if (t->encap.type >= MAX_IPTUN_ENCAP_OPS)
390 		return -EINVAL;
391 
392 	rcu_read_lock();
393 	ops = rcu_dereference(iptun_encaps[t->encap.type]);
394 	if (likely(ops && ops->build_header))
395 		ret = ops->build_header(skb, &t->encap, protocol, fl4);
396 	rcu_read_unlock();
397 
398 	return ret;
399 }
400 
401 /* Extract dsfield from inner protocol */
402 static inline u8 ip_tunnel_get_dsfield(const struct iphdr *iph,
403 				       const struct sk_buff *skb)
404 {
405 	__be16 payload_protocol = skb_protocol(skb, true);
406 
407 	if (payload_protocol == htons(ETH_P_IP))
408 		return iph->tos;
409 	else if (payload_protocol == htons(ETH_P_IPV6))
410 		return ipv6_get_dsfield((const struct ipv6hdr *)iph);
411 	else
412 		return 0;
413 }
414 
415 static inline u8 ip_tunnel_get_ttl(const struct iphdr *iph,
416 				       const struct sk_buff *skb)
417 {
418 	__be16 payload_protocol = skb_protocol(skb, true);
419 
420 	if (payload_protocol == htons(ETH_P_IP))
421 		return iph->ttl;
422 	else if (payload_protocol == htons(ETH_P_IPV6))
423 		return ((const struct ipv6hdr *)iph)->hop_limit;
424 	else
425 		return 0;
426 }
427 
428 /* Propogate ECN bits out */
429 static inline u8 ip_tunnel_ecn_encap(u8 tos, const struct iphdr *iph,
430 				     const struct sk_buff *skb)
431 {
432 	u8 inner = ip_tunnel_get_dsfield(iph, skb);
433 
434 	return INET_ECN_encapsulate(tos, inner);
435 }
436 
437 int __iptunnel_pull_header(struct sk_buff *skb, int hdr_len,
438 			   __be16 inner_proto, bool raw_proto, bool xnet);
439 
440 static inline int iptunnel_pull_header(struct sk_buff *skb, int hdr_len,
441 				       __be16 inner_proto, bool xnet)
442 {
443 	return __iptunnel_pull_header(skb, hdr_len, inner_proto, false, xnet);
444 }
445 
446 void iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb,
447 		   __be32 src, __be32 dst, u8 proto,
448 		   u8 tos, u8 ttl, __be16 df, bool xnet);
449 struct metadata_dst *iptunnel_metadata_reply(struct metadata_dst *md,
450 					     gfp_t flags);
451 int skb_tunnel_check_pmtu(struct sk_buff *skb, struct dst_entry *encap_dst,
452 			  int headroom, bool reply);
453 
454 int iptunnel_handle_offloads(struct sk_buff *skb, int gso_type_mask);
455 
456 static inline int iptunnel_pull_offloads(struct sk_buff *skb)
457 {
458 	if (skb_is_gso(skb)) {
459 		int err;
460 
461 		err = skb_unclone(skb, GFP_ATOMIC);
462 		if (unlikely(err))
463 			return err;
464 		skb_shinfo(skb)->gso_type &= ~(NETIF_F_GSO_ENCAP_ALL >>
465 					       NETIF_F_GSO_SHIFT);
466 	}
467 
468 	skb->encapsulation = 0;
469 	return 0;
470 }
471 
472 static inline void iptunnel_xmit_stats(struct net_device *dev, int pkt_len)
473 {
474 	if (pkt_len > 0) {
475 		struct pcpu_sw_netstats *tstats = get_cpu_ptr(dev->tstats);
476 
477 		u64_stats_update_begin(&tstats->syncp);
478 		u64_stats_add(&tstats->tx_bytes, pkt_len);
479 		u64_stats_inc(&tstats->tx_packets);
480 		u64_stats_update_end(&tstats->syncp);
481 		put_cpu_ptr(tstats);
482 	} else {
483 		struct net_device_stats *err_stats = &dev->stats;
484 
485 		if (pkt_len < 0) {
486 			err_stats->tx_errors++;
487 			err_stats->tx_aborted_errors++;
488 		} else {
489 			err_stats->tx_dropped++;
490 		}
491 	}
492 }
493 
494 static inline void ip_tunnel_info_opts_get(void *to,
495 					   const struct ip_tunnel_info *info)
496 {
497 	memcpy(to, info + 1, info->options_len);
498 }
499 
500 static inline void ip_tunnel_info_opts_set(struct ip_tunnel_info *info,
501 					   const void *from, int len,
502 					   __be16 flags)
503 {
504 	info->options_len = len;
505 	if (len > 0) {
506 		memcpy(ip_tunnel_info_opts(info), from, len);
507 		info->key.tun_flags |= flags;
508 	}
509 }
510 
511 static inline struct ip_tunnel_info *lwt_tun_info(struct lwtunnel_state *lwtstate)
512 {
513 	return (struct ip_tunnel_info *)lwtstate->data;
514 }
515 
516 DECLARE_STATIC_KEY_FALSE(ip_tunnel_metadata_cnt);
517 
518 /* Returns > 0 if metadata should be collected */
519 static inline int ip_tunnel_collect_metadata(void)
520 {
521 	return static_branch_unlikely(&ip_tunnel_metadata_cnt);
522 }
523 
524 void __init ip_tunnel_core_init(void);
525 
526 void ip_tunnel_need_metadata(void);
527 void ip_tunnel_unneed_metadata(void);
528 
529 #else /* CONFIG_INET */
530 
531 static inline struct ip_tunnel_info *lwt_tun_info(struct lwtunnel_state *lwtstate)
532 {
533 	return NULL;
534 }
535 
536 static inline void ip_tunnel_need_metadata(void)
537 {
538 }
539 
540 static inline void ip_tunnel_unneed_metadata(void)
541 {
542 }
543 
544 static inline void ip_tunnel_info_opts_get(void *to,
545 					   const struct ip_tunnel_info *info)
546 {
547 }
548 
549 static inline void ip_tunnel_info_opts_set(struct ip_tunnel_info *info,
550 					   const void *from, int len,
551 					   __be16 flags)
552 {
553 	info->options_len = 0;
554 }
555 
556 #endif /* CONFIG_INET */
557 
558 #endif /* __NET_IP_TUNNELS_H */
559