blob: 3f88ba6555ab8584fe09d519754abe5aaa15fefc [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002/*
3 * GRE over IPv6 protocol decoder.
4 *
5 * Authors: Dmitry Kozlov (xeb@mail.ru)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00006 */
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>
xeb@mail.ruc12b3952012-08-10 00:51:50 +000022#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>
Pravin B Shelarc5441932013-03-25 14:49:35 +000035#include <net/ip_tunnels.h>
xeb@mail.ruc12b3952012-08-10 00:51:50 +000036#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>
Tom Herbert308edfdf2016-04-29 17:12:17 -070052#include <net/gre.h>
William Tu5a963eb2017-11-30 11:51:29 -080053#include <net/erspan.h>
William Tu6712abc2017-12-01 15:26:08 -080054#include <net/dst_metadata.h>
xeb@mail.ruc12b3952012-08-10 00:51:50 +000055
56
stephen hemmingereccc1bb2012-09-25 11:02:48 +000057static 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
Jiri Kosinae87a8f22016-08-10 11:03:35 +020061#define IP6_GRE_HASH_SIZE_SHIFT 5
62#define IP6_GRE_HASH_SIZE (1 << IP6_GRE_HASH_SIZE_SHIFT)
xeb@mail.ruc12b3952012-08-10 00:51:50 +000063
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030064static unsigned int ip6gre_net_id __read_mostly;
xeb@mail.ruc12b3952012-08-10 00:51:50 +000065struct ip6gre_net {
Jiri Kosinae87a8f22016-08-10 11:03:35 +020066 struct ip6_tnl __rcu *tunnels[4][IP6_GRE_HASH_SIZE];
xeb@mail.ruc12b3952012-08-10 00:51:50 +000067
William Tu6712abc2017-12-01 15:26:08 -080068 struct ip6_tnl __rcu *collect_md_tun;
William Tub80d0b92018-05-18 19:22:28 -070069 struct ip6_tnl __rcu *collect_md_tun_erspan;
xeb@mail.ruc12b3952012-08-10 00:51:50 +000070 struct net_device *fb_tunnel_dev;
71};
72
73static struct rtnl_link_ops ip6gre_link_ops __read_mostly;
Nicolas Dichtel22f08062014-04-22 10:15:24 +020074static struct rtnl_link_ops ip6gre_tap_ops __read_mostly;
William Tu5a963eb2017-11-30 11:51:29 -080075static struct rtnl_link_ops ip6erspan_tap_ops __read_mostly;
xeb@mail.ruc12b3952012-08-10 00:51:50 +000076static 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);
Petr Machata2d665032018-05-17 16:36:51 +020080static void ip6erspan_tnl_link_config(struct ip6_tnl *t, int set_mtu);
xeb@mail.ruc12b3952012-08-10 00:51:50 +000081
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
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200100#define HASH_KEY(key) (((__force u32)key^((__force u32)key>>4))&(IP6_GRE_HASH_SIZE - 1))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000101static u32 HASH_ADDR(const struct in6_addr *addr)
102{
103 u32 hash = ipv6_addr_hash(addr);
104
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200105 return hash_32(hash, IP6_GRE_HASH_SIZE_SHIFT);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000106}
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]
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000112
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000113/* 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);
William Tu5a963eb2017-11-30 11:51:29 -0800125 int dev_type = (gre_proto == htons(ETH_P_TEB) ||
William Tu3b04caa2018-03-09 07:34:40 -0800126 gre_proto == htons(ETH_P_ERSPAN) ||
127 gre_proto == htons(ETH_P_ERSPAN2)) ?
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000128 ARPHRD_ETHER : ARPHRD_IP6GRE;
129 int score, cand_score = 4;
Taehee Yoodafabb62020-06-16 16:04:00 +0000130 struct net_device *ndev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000131
Amerigo Wange086cad2012-11-11 21:52:34 +0000132 for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000133 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
Amerigo Wange086cad2012-11-11 21:52:34 +0000157 for_each_ip_tunnel_rcu(t, ign->tunnels_r[h0 ^ h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000158 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
Amerigo Wange086cad2012-11-11 21:52:34 +0000181 for_each_ip_tunnel_rcu(t, ign->tunnels_l[h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000182 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
Amerigo Wange086cad2012-11-11 21:52:34 +0000207 for_each_ip_tunnel_rcu(t, ign->tunnels_wc[h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000208 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
Ian Morris53b24b82015-03-29 14:00:05 +0100230 if (cand)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000231 return cand;
232
William Tub80d0b92018-05-18 19:22:28 -0700233 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
William Tu6712abc2017-12-01 15:26:08 -0800239 if (t && t->dev->flags & IFF_UP)
240 return t;
241
Taehee Yoodafabb62020-06-16 16:04:00 +0000242 ndev = READ_ONCE(ign->fb_tunnel_dev);
243 if (ndev && ndev->flags & IFF_UP)
244 return netdev_priv(ndev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000245
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
William Tub80d0b92018-05-18 19:22:28 -0700267static 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
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000292static 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);
Steffen Klassertcd0a0bd2014-09-22 10:07:26 +0200355 if (t && create)
356 return NULL;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000357 if (t || !create)
358 return t;
359
Eric Dumazet5f42df02018-04-05 06:39:29 -0700360 if (parms->name[0]) {
361 if (!dev_valid_name(parms->name))
362 return NULL;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000363 strlcpy(name, parms->name, IFNAMSIZ);
Eric Dumazet5f42df02018-04-05 06:39:29 -0700364 } else {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000365 strcpy(name, "ip6gre%d");
Eric Dumazet5f42df02018-04-05 06:39:29 -0700366 }
Tom Gundersenc835a672014-07-14 16:37:24 +0200367 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
368 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000369 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;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200379 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000380
381 if (register_netdevice(dev) < 0)
382 goto failed_free;
383
Alexey Kodanev128bb972018-01-18 20:51:12 +0300384 ip6gre_tnl_link_config(nt, 1);
385
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000386 /* Can use a lockless transmit, unless we generate output sequences */
Tom Herbertb45bd1d2016-05-09 17:12:12 -0700387 if (!(nt->parms.o_flags & TUNNEL_SEQ))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000388 dev->features |= NETIF_F_LLTX;
389
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000390 ip6gre_tunnel_link(ign, nt);
391 return nt;
392
393failed_free:
394 free_netdev(dev);
395 return NULL;
396}
397
William Tub80d0b92018-05-18 19:22:28 -0700398static void ip6erspan_tunnel_uninit(struct net_device *dev)
399{
400 struct ip6_tnl *t = netdev_priv(dev);
401 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
402
403 ip6erspan_tunnel_unlink_md(ign, t);
404 ip6gre_tunnel_unlink(ign, t);
405 dst_cache_reset(&t->dst_cache);
406 dev_put(dev);
407}
408
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000409static void ip6gre_tunnel_uninit(struct net_device *dev)
410{
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200411 struct ip6_tnl *t = netdev_priv(dev);
412 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000413
William Tub80d0b92018-05-18 19:22:28 -0700414 ip6gre_tunnel_unlink_md(ign, t);
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200415 ip6gre_tunnel_unlink(ign, t);
Taehee Yoodafabb62020-06-16 16:04:00 +0000416 if (ign->fb_tunnel_dev == dev)
417 WRITE_ONCE(ign->fb_tunnel_dev, NULL);
Paolo Abeni607f7252016-02-12 15:43:54 +0100418 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000419 dev_put(dev);
420}
421
422
Stefano Brivio32bbd872018-11-08 12:19:21 +0100423static int ip6gre_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Eric Dumazet78920322017-02-04 23:18:55 -0800424 u8 type, u8 code, int offset, __be32 info)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000425{
Xin Long929fc032017-11-11 19:06:49 +0800426 struct net *net = dev_net(skb->dev);
Eric Dumazet78920322017-02-04 23:18:55 -0800427 const struct ipv6hdr *ipv6h;
Haishuang Yana82738a2018-09-14 12:26:48 +0800428 struct tnl_ptk_info tpi;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000429 struct ip6_tnl *t;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000430
Haishuang Yana82738a2018-09-14 12:26:48 +0800431 if (gre_parse_header(skb, &tpi, NULL, htons(ETH_P_IPV6),
432 offset) < 0)
Stefano Brivio32bbd872018-11-08 12:19:21 +0100433 return -EINVAL;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000434
Eric Dumazetb87fb392012-08-19 03:47:30 +0000435 ipv6h = (const struct ipv6hdr *)skb->data;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000436 t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr,
Haishuang Yana82738a2018-09-14 12:26:48 +0800437 tpi.key, tpi.proto);
Ian Morris63159f22015-03-29 14:00:04 +0100438 if (!t)
Stefano Brivio32bbd872018-11-08 12:19:21 +0100439 return -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000440
441 switch (type) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000442 case ICMPV6_DEST_UNREACH:
Matt Bennetta46496c2015-09-23 16:58:31 +1200443 net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
444 t->parms.name);
Xin Longf8d20b42017-10-26 19:23:27 +0800445 if (code != ICMPV6_PORT_UNREACH)
446 break;
Stefano Brivio32bbd872018-11-08 12:19:21 +0100447 return 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000448 case ICMPV6_TIME_EXCEED:
449 if (code == ICMPV6_EXC_HOPLIMIT) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200450 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
451 t->parms.name);
Xin Longf8d20b42017-10-26 19:23:27 +0800452 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000453 }
Stefano Brivio32bbd872018-11-08 12:19:21 +0100454 return 0;
Kees Cook46d30cb2020-02-19 22:23:07 -0800455 case ICMPV6_PARAMPROB: {
456 struct ipv6_tlv_tnl_enc_lim *tel;
457 __u32 teli;
458
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000459 teli = 0;
460 if (code == ICMPV6_HDR_FIELD)
461 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
462
Sabrina Dubrocad1e158e2015-02-04 15:25:09 +0100463 if (teli && teli == be32_to_cpu(info) - 2) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000464 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
465 if (tel->encap_limit == 0) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200466 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
467 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000468 }
469 } else {
Matt Bennetta46496c2015-09-23 16:58:31 +1200470 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
471 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000472 }
Stefano Brivio32bbd872018-11-08 12:19:21 +0100473 return 0;
Kees Cook46d30cb2020-02-19 22:23:07 -0800474 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000475 case ICMPV6_PKT_TOOBIG:
Xin Longfe1a4ca2017-11-11 19:06:50 +0800476 ip6_update_pmtu(skb, net, info, 0, 0, sock_net_uid(net, NULL));
Stefano Brivio32bbd872018-11-08 12:19:21 +0100477 return 0;
Xin Long929fc032017-11-11 19:06:49 +0800478 case NDISC_REDIRECT:
479 ip6_redirect(skb, net, skb->dev->ifindex, 0,
480 sock_net_uid(net, NULL));
Stefano Brivio32bbd872018-11-08 12:19:21 +0100481 return 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000482 }
483
484 if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
485 t->err_count++;
486 else
487 t->err_count = 1;
488 t->err_time = jiffies;
Stefano Brivio32bbd872018-11-08 12:19:21 +0100489
490 return 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000491}
492
Tom Herbert308edfdf2016-04-29 17:12:17 -0700493static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000494{
495 const struct ipv6hdr *ipv6h;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000496 struct ip6_tnl *tunnel;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000497
498 ipv6h = ipv6_hdr(skb);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000499 tunnel = ip6gre_tunnel_lookup(skb->dev,
Tom Herbert308edfdf2016-04-29 17:12:17 -0700500 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
501 tpi->proto);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000502 if (tunnel) {
William Tu6712abc2017-12-01 15:26:08 -0800503 if (tunnel->parms.collect_md) {
504 struct metadata_dst *tun_dst;
505 __be64 tun_id;
506 __be16 flags;
507
508 flags = tpi->flags;
509 tun_id = key32_to_tunnel_id(tpi->key);
510
511 tun_dst = ipv6_tun_rx_dst(skb, flags, tun_id, 0);
512 if (!tun_dst)
513 return PACKET_REJECT;
514
515 ip6_tnl_rcv(tunnel, skb, tpi, tun_dst, log_ecn_error);
516 } else {
517 ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
518 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000519
Tom Herbert308edfdf2016-04-29 17:12:17 -0700520 return PACKET_RCVD;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000521 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000522
Tom Herbert308edfdf2016-04-29 17:12:17 -0700523 return PACKET_REJECT;
524}
525
Lorenzo Bianconia057fed2019-01-16 19:38:05 +0100526static int ip6erspan_rcv(struct sk_buff *skb,
Lorenzo Bianconi2a3caba2019-04-06 17:16:53 +0200527 struct tnl_ptk_info *tpi,
528 int gre_hdr_len)
William Tu5a963eb2017-11-30 11:51:29 -0800529{
William Tu1d7e2ed2017-12-13 16:38:55 -0800530 struct erspan_base_hdr *ershdr;
William Tu5a963eb2017-11-30 11:51:29 -0800531 const struct ipv6hdr *ipv6h;
William Tu3df192832018-02-05 13:35:34 -0800532 struct erspan_md2 *md2;
William Tu5a963eb2017-11-30 11:51:29 -0800533 struct ip6_tnl *tunnel;
William Tu1d7e2ed2017-12-13 16:38:55 -0800534 u8 ver;
William Tu5a963eb2017-11-30 11:51:29 -0800535
Haishuang Yan293a1992017-12-20 09:53:19 +0800536 ipv6h = ipv6_hdr(skb);
537 ershdr = (struct erspan_base_hdr *)skb->data;
William Tuc69de582018-01-25 13:20:09 -0800538 ver = ershdr->ver;
William Tu5a963eb2017-11-30 11:51:29 -0800539
540 tunnel = ip6gre_tunnel_lookup(skb->dev,
541 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
542 tpi->proto);
543 if (tunnel) {
William Tu1d7e2ed2017-12-13 16:38:55 -0800544 int len = erspan_hdr_len(ver);
545
546 if (unlikely(!pskb_may_pull(skb, len)))
William Tuae3e1332017-12-15 14:27:43 -0800547 return PACKET_REJECT;
William Tu1d7e2ed2017-12-13 16:38:55 -0800548
549 if (__iptunnel_pull_header(skb, len,
William Tu5a963eb2017-11-30 11:51:29 -0800550 htons(ETH_P_TEB),
551 false, false) < 0)
552 return PACKET_REJECT;
553
William Tuef7baf52017-12-05 15:15:44 -0800554 if (tunnel->parms.collect_md) {
Lorenzo Bianconi2a3caba2019-04-06 17:16:53 +0200555 struct erspan_metadata *pkt_md, *md;
William Tuef7baf52017-12-05 15:15:44 -0800556 struct metadata_dst *tun_dst;
557 struct ip_tunnel_info *info;
Lorenzo Bianconi2a3caba2019-04-06 17:16:53 +0200558 unsigned char *gh;
William Tuef7baf52017-12-05 15:15:44 -0800559 __be64 tun_id;
560 __be16 flags;
561
562 tpi->flags |= TUNNEL_KEY;
563 flags = tpi->flags;
564 tun_id = key32_to_tunnel_id(tpi->key);
565
566 tun_dst = ipv6_tun_rx_dst(skb, flags, tun_id,
567 sizeof(*md));
568 if (!tun_dst)
569 return PACKET_REJECT;
570
Lorenzo Bianconi2a3caba2019-04-06 17:16:53 +0200571 /* skb can be uncloned in __iptunnel_pull_header, so
572 * old pkt_md is no longer valid and we need to reset
573 * it
574 */
575 gh = skb_network_header(skb) +
576 skb_network_header_len(skb);
577 pkt_md = (struct erspan_metadata *)(gh + gre_hdr_len +
578 sizeof(*ershdr));
William Tuef7baf52017-12-05 15:15:44 -0800579 info = &tun_dst->u.tun_info;
580 md = ip_tunnel_info_opts(info);
William Tu94d7d8f2017-12-13 16:38:57 -0800581 md->version = ver;
William Tu3df192832018-02-05 13:35:34 -0800582 md2 = &md->u.md2;
583 memcpy(md2, pkt_md, ver == 1 ? ERSPAN_V1_MDSIZE :
584 ERSPAN_V2_MDSIZE);
William Tuef7baf52017-12-05 15:15:44 -0800585 info->key.tun_flags |= TUNNEL_ERSPAN_OPT;
586 info->options_len = sizeof(*md);
587
588 ip6_tnl_rcv(tunnel, skb, tpi, tun_dst, log_ecn_error);
589
590 } else {
William Tuef7baf52017-12-05 15:15:44 -0800591 ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
592 }
William Tu5a963eb2017-11-30 11:51:29 -0800593
594 return PACKET_RCVD;
595 }
596
597 return PACKET_REJECT;
598}
599
Tom Herbert308edfdf2016-04-29 17:12:17 -0700600static int gre_rcv(struct sk_buff *skb)
601{
602 struct tnl_ptk_info tpi;
603 bool csum_err = false;
604 int hdr_len;
605
Eric Dumazete582615ad2016-06-15 06:24:00 -0700606 hdr_len = gre_parse_header(skb, &tpi, &csum_err, htons(ETH_P_IPV6), 0);
Jiri Bencf132ae72016-05-03 15:00:21 +0200607 if (hdr_len < 0)
Tom Herbert308edfdf2016-04-29 17:12:17 -0700608 goto drop;
609
610 if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false))
611 goto drop;
612
William Tu94d7d8f2017-12-13 16:38:57 -0800613 if (unlikely(tpi.proto == htons(ETH_P_ERSPAN) ||
614 tpi.proto == htons(ETH_P_ERSPAN2))) {
Lorenzo Bianconi2a3caba2019-04-06 17:16:53 +0200615 if (ip6erspan_rcv(skb, &tpi, hdr_len) == PACKET_RCVD)
William Tu5a963eb2017-11-30 11:51:29 -0800616 return 0;
Haishuang Yana7343212017-12-20 10:21:47 +0800617 goto out;
William Tu5a963eb2017-11-30 11:51:29 -0800618 }
619
Tom Herbert308edfdf2016-04-29 17:12:17 -0700620 if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD)
621 return 0;
622
Haishuang Yana7343212017-12-20 10:21:47 +0800623out:
Tom Herbert308edfdf2016-04-29 17:12:17 -0700624 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000625drop:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000626 kfree_skb(skb);
627 return 0;
628}
629
Tom Herbertb05229f2016-04-29 17:12:21 -0700630static int gre_handle_offloads(struct sk_buff *skb, bool csum)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000631{
Tom Herbertb05229f2016-04-29 17:12:21 -0700632 return iptunnel_handle_offloads(skb,
633 csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000634}
635
William Tu898b29792017-11-30 11:51:28 -0800636static void prepare_ip6gre_xmit_ipv4(struct sk_buff *skb,
637 struct net_device *dev,
638 struct flowi6 *fl6, __u8 *dsfield,
639 int *encap_limit)
640{
641 const struct iphdr *iph = ip_hdr(skb);
642 struct ip6_tnl *t = netdev_priv(dev);
643
644 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
645 *encap_limit = t->parms.encap_limit;
646
647 memcpy(fl6, &t->fl.u.ip6, sizeof(*fl6));
648
649 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
650 *dsfield = ipv4_get_dsfield(iph);
651 else
652 *dsfield = ip6_tclass(t->parms.flowinfo);
653
654 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
655 fl6->flowi6_mark = skb->mark;
656 else
657 fl6->flowi6_mark = t->parms.fwmark;
658
659 fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL);
660}
661
662static int prepare_ip6gre_xmit_ipv6(struct sk_buff *skb,
663 struct net_device *dev,
664 struct flowi6 *fl6, __u8 *dsfield,
665 int *encap_limit)
666{
Haishuang Yan3bc817d2019-07-24 20:00:42 +0800667 struct ipv6hdr *ipv6h;
William Tu898b29792017-11-30 11:51:28 -0800668 struct ip6_tnl *t = netdev_priv(dev);
669 __u16 offset;
670
671 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
672 /* ip6_tnl_parse_tlv_enc_lim() might have reallocated skb->head */
Haishuang Yan3bc817d2019-07-24 20:00:42 +0800673 ipv6h = ipv6_hdr(skb);
William Tu898b29792017-11-30 11:51:28 -0800674
675 if (offset > 0) {
676 struct ipv6_tlv_tnl_enc_lim *tel;
677
678 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
679 if (tel->encap_limit == 0) {
Jason A. Donenfeld91796b62021-02-27 01:40:19 +0100680 icmpv6_ndo_send(skb, ICMPV6_PARAMPROB,
681 ICMPV6_HDR_FIELD, offset + 2);
William Tu898b29792017-11-30 11:51:28 -0800682 return -1;
683 }
684 *encap_limit = tel->encap_limit - 1;
685 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) {
686 *encap_limit = t->parms.encap_limit;
687 }
688
689 memcpy(fl6, &t->fl.u.ip6, sizeof(*fl6));
690
691 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
692 *dsfield = ipv6_get_dsfield(ipv6h);
693 else
694 *dsfield = ip6_tclass(t->parms.flowinfo);
695
696 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
697 fl6->flowlabel |= ip6_flowlabel(ipv6h);
698
699 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
700 fl6->flowi6_mark = skb->mark;
701 else
702 fl6->flowi6_mark = t->parms.fwmark;
703
704 fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL);
705
706 return 0;
707}
708
Davide Carattie5f7e212020-09-27 16:08:21 +0200709static struct ip_tunnel_info *skb_tunnel_info_txcheck(struct sk_buff *skb)
710{
711 struct ip_tunnel_info *tun_info;
712
713 tun_info = skb_tunnel_info(skb);
714 if (unlikely(!tun_info || !(tun_info->mode & IP_TUNNEL_INFO_TX)))
715 return ERR_PTR(-EINVAL);
716
717 return tun_info;
718}
719
Tom Herbertb05229f2016-04-29 17:12:21 -0700720static netdev_tx_t __gre6_xmit(struct sk_buff *skb,
721 struct net_device *dev, __u8 dsfield,
722 struct flowi6 *fl6, int encap_limit,
723 __u32 *pmtu, __be16 proto)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000724{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000725 struct ip6_tnl *tunnel = netdev_priv(dev);
Xin Long8aec4952017-10-26 19:27:17 +0800726 __be16 protocol;
Peilin Ye41661b42022-04-21 15:08:38 -0700727 __be16 flags;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000728
729 if (dev->type == ARPHRD_ETHER)
730 IPCB(skb)->flags = 0;
731
Tom Herbertb05229f2016-04-29 17:12:21 -0700732 if (dev->header_ops && dev->type == ARPHRD_IP6GRE)
733 fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr;
734 else
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000735 fl6->daddr = tunnel->parms.raddr;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000736
Tom Herbertb05229f2016-04-29 17:12:21 -0700737 /* Push GRE header. */
Xin Long8aec4952017-10-26 19:27:17 +0800738 protocol = (dev->type == ARPHRD_ETHER) ? htons(ETH_P_TEB) : proto;
William Tu6712abc2017-12-01 15:26:08 -0800739
740 if (tunnel->parms.collect_md) {
741 struct ip_tunnel_info *tun_info;
742 const struct ip_tunnel_key *key;
Peilin Ye200f96e2022-04-14 13:34:26 -0700743 int tun_hlen;
William Tu6712abc2017-12-01 15:26:08 -0800744
Davide Carattie5f7e212020-09-27 16:08:21 +0200745 tun_info = skb_tunnel_info_txcheck(skb);
746 if (IS_ERR(tun_info) ||
747 unlikely(ip_tunnel_info_af(tun_info) != AF_INET6))
William Tu6712abc2017-12-01 15:26:08 -0800748 return -EINVAL;
749
750 key = &tun_info->key;
751 memset(fl6, 0, sizeof(*fl6));
752 fl6->flowi6_proto = IPPROTO_GRE;
753 fl6->daddr = key->u.ipv6.dst;
754 fl6->flowlabel = key->label;
755 fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL);
Ghalem Boudour56f974d2021-11-19 18:20:16 +0100756 fl6->fl6_gre_key = tunnel_id_to_key32(key->tun_id);
William Tu6712abc2017-12-01 15:26:08 -0800757
758 dsfield = key->tos;
William Tu77a51962018-03-01 13:49:57 -0800759 flags = key->tun_flags &
760 (TUNNEL_CSUM | TUNNEL_KEY | TUNNEL_SEQ);
Peilin Ye200f96e2022-04-14 13:34:26 -0700761 tun_hlen = gre_calc_hlen(flags);
William Tu6712abc2017-12-01 15:26:08 -0800762
Peilin Ye93366272022-04-14 13:35:40 -0700763 if (skb_cow_head(skb, dev->needed_headroom ?: tun_hlen + tunnel->encap_hlen))
764 return -ENOMEM;
765
Peilin Ye200f96e2022-04-14 13:34:26 -0700766 gre_build_header(skb, tun_hlen,
William Tu6712abc2017-12-01 15:26:08 -0800767 flags, protocol,
William Tu77a51962018-03-01 13:49:57 -0800768 tunnel_id_to_key32(tun_info->key.tun_id),
Peilin Ye720b6ce2022-04-21 15:09:02 -0700769 (flags & TUNNEL_SEQ) ? htonl(atomic_fetch_inc(&tunnel->o_seqno))
William Tu77a51962018-03-01 13:49:57 -0800770 : 0);
William Tu6712abc2017-12-01 15:26:08 -0800771
772 } else {
Peilin Ye93366272022-04-14 13:35:40 -0700773 if (skb_cow_head(skb, dev->needed_headroom ?: tunnel->hlen))
774 return -ENOMEM;
775
Peilin Ye41661b42022-04-21 15:08:38 -0700776 flags = tunnel->parms.o_flags;
777
778 gre_build_header(skb, tunnel->tun_hlen, flags,
William Tu6712abc2017-12-01 15:26:08 -0800779 protocol, tunnel->parms.o_key,
Peilin Ye720b6ce2022-04-21 15:09:02 -0700780 (flags & TUNNEL_SEQ) ? htonl(atomic_fetch_inc(&tunnel->o_seqno))
781 : 0);
William Tu6712abc2017-12-01 15:26:08 -0800782 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000783
Tom Herbertb05229f2016-04-29 17:12:21 -0700784 return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu,
785 NEXTHDR_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000786}
787
788static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev)
789{
790 struct ip6_tnl *t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000791 int encap_limit = -1;
792 struct flowi6 fl6;
William Tu6712abc2017-12-01 15:26:08 -0800793 __u8 dsfield = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000794 __u32 mtu;
795 int err;
796
Bernie Harris5146d1f2016-02-22 12:58:05 +1300797 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
798
William Tu6712abc2017-12-01 15:26:08 -0800799 if (!t->parms.collect_md)
800 prepare_ip6gre_xmit_ipv4(skb, dev, &fl6,
801 &dsfield, &encap_limit);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +0900802
Tom Herbertb05229f2016-04-29 17:12:21 -0700803 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
804 if (err)
805 return -1;
806
807 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
808 skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000809 if (err != 0) {
810 /* XXX: send ICMP error even if DF is not set. */
811 if (err == -EMSGSIZE)
Jason A. Donenfeld91796b62021-02-27 01:40:19 +0100812 icmp_ndo_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
813 htonl(mtu));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000814 return -1;
815 }
816
817 return 0;
818}
819
820static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev)
821{
822 struct ip6_tnl *t = netdev_priv(dev);
823 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
824 int encap_limit = -1;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000825 struct flowi6 fl6;
William Tu6712abc2017-12-01 15:26:08 -0800826 __u8 dsfield = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000827 __u32 mtu;
828 int err;
829
830 if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
831 return -1;
832
William Tu6712abc2017-12-01 15:26:08 -0800833 if (!t->parms.collect_md &&
834 prepare_ip6gre_xmit_ipv6(skb, dev, &fl6, &dsfield, &encap_limit))
William Tu898b29792017-11-30 11:51:28 -0800835 return -1;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +0900836
Tom Herbertb05229f2016-04-29 17:12:21 -0700837 if (gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM)))
838 return -1;
839
840 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit,
841 &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000842 if (err != 0) {
843 if (err == -EMSGSIZE)
Jason A. Donenfeld91796b62021-02-27 01:40:19 +0100844 icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000845 return -1;
846 }
847
848 return 0;
849}
850
851/**
Sun Lianwen7ccbdff2018-05-03 09:34:29 +0800852 * ip6gre_tnl_addr_conflict - compare packet addresses to tunnel's own
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000853 * @t: the outgoing tunnel device
854 * @hdr: IPv6 header from the incoming packet
855 *
856 * Description:
857 * Avoid trivial tunneling loop by checking that tunnel exit-point
858 * doesn't match source of incoming packet.
859 *
860 * Return:
861 * 1 if conflict,
862 * 0 else
863 **/
864
865static inline bool ip6gre_tnl_addr_conflict(const struct ip6_tnl *t,
866 const struct ipv6hdr *hdr)
867{
868 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
869}
870
871static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev)
872{
873 struct ip6_tnl *t = netdev_priv(dev);
874 int encap_limit = -1;
875 struct flowi6 fl6;
876 __u32 mtu;
877 int err;
878
879 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
880 encap_limit = t->parms.encap_limit;
881
William Tu6712abc2017-12-01 15:26:08 -0800882 if (!t->parms.collect_md)
883 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000884
Tom Herbertb05229f2016-04-29 17:12:21 -0700885 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
886 if (err)
887 return err;
888
889 err = __gre6_xmit(skb, dev, 0, &fl6, encap_limit, &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000890
891 return err;
892}
893
894static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
895 struct net_device *dev)
896{
897 struct ip6_tnl *t = netdev_priv(dev);
898 struct net_device_stats *stats = &t->dev->stats;
899 int ret;
900
Willem de Bruijncb9f1b72018-12-30 17:24:36 -0500901 if (!pskb_inet_may_pull(skb))
902 goto tx_err;
903
Steffen Klassertd5005142014-11-05 08:02:48 +0100904 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
Tommi Rantala41ab3e32013-02-06 03:24:02 +0000905 goto tx_err;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000906
907 switch (skb->protocol) {
908 case htons(ETH_P_IP):
909 ret = ip6gre_xmit_ipv4(skb, dev);
910 break;
911 case htons(ETH_P_IPV6):
912 ret = ip6gre_xmit_ipv6(skb, dev);
913 break;
914 default:
915 ret = ip6gre_xmit_other(skb, dev);
916 break;
917 }
918
919 if (ret < 0)
920 goto tx_err;
921
922 return NETDEV_TX_OK;
923
924tx_err:
Davide Carattie5f7e212020-09-27 16:08:21 +0200925 if (!t->parms.collect_md || !IS_ERR(skb_tunnel_info_txcheck(skb)))
926 stats->tx_errors++;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000927 stats->tx_dropped++;
928 kfree_skb(skb);
929 return NETDEV_TX_OK;
930}
931
William Tu5a963eb2017-11-30 11:51:29 -0800932static netdev_tx_t ip6erspan_tunnel_xmit(struct sk_buff *skb,
933 struct net_device *dev)
934{
Davide Carattie5f7e212020-09-27 16:08:21 +0200935 struct ip_tunnel_info *tun_info = NULL;
William Tu5a963eb2017-11-30 11:51:29 -0800936 struct ip6_tnl *t = netdev_priv(dev);
937 struct dst_entry *dst = skb_dst(skb);
938 struct net_device_stats *stats;
939 bool truncate = false;
940 int encap_limit = -1;
941 __u8 dsfield = false;
942 struct flowi6 fl6;
943 int err = -EINVAL;
Xin Long20704bd2019-01-14 18:10:06 +0800944 __be16 proto;
William Tu5a963eb2017-11-30 11:51:29 -0800945 __u32 mtu;
William Tu1baf5eb2018-04-27 14:16:32 -0700946 int nhoff;
William Tud5db21a2018-05-11 05:49:47 -0700947 int thoff;
William Tu5a963eb2017-11-30 11:51:29 -0800948
Willem de Bruijncb9f1b72018-12-30 17:24:36 -0500949 if (!pskb_inet_may_pull(skb))
950 goto tx_err;
951
William Tu5a963eb2017-11-30 11:51:29 -0800952 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
953 goto tx_err;
954
955 if (gre_handle_offloads(skb, false))
956 goto tx_err;
957
William Tu5a963eb2017-11-30 11:51:29 -0800958 if (skb->len > dev->mtu + dev->hard_header_len) {
959 pskb_trim(skb, dev->mtu + dev->hard_header_len);
960 truncate = true;
961 }
962
William Tu1baf5eb2018-04-27 14:16:32 -0700963 nhoff = skb_network_header(skb) - skb_mac_header(skb);
964 if (skb->protocol == htons(ETH_P_IP) &&
965 (ntohs(ip_hdr(skb)->tot_len) > skb->len - nhoff))
966 truncate = true;
967
William Tud5db21a2018-05-11 05:49:47 -0700968 thoff = skb_transport_header(skb) - skb_mac_header(skb);
969 if (skb->protocol == htons(ETH_P_IPV6) &&
970 (ntohs(ipv6_hdr(skb)->payload_len) > skb->len - thoff))
971 truncate = true;
972
Petr Machata56914842018-05-17 16:36:15 +0200973 if (skb_cow_head(skb, dev->needed_headroom ?: t->hlen))
William Tue41c7c62018-03-09 07:34:42 -0800974 goto tx_err;
975
William Tu5a963eb2017-11-30 11:51:29 -0800976 t->parms.o_flags &= ~TUNNEL_KEY;
William Tu5a963eb2017-11-30 11:51:29 -0800977 IPCB(skb)->flags = 0;
William Tuef7baf52017-12-05 15:15:44 -0800978
979 /* For collect_md mode, derive fl6 from the tunnel key,
980 * for native mode, call prepare_ip6gre_xmit_{ipv4,ipv6}.
981 */
982 if (t->parms.collect_md) {
William Tuef7baf52017-12-05 15:15:44 -0800983 const struct ip_tunnel_key *key;
984 struct erspan_metadata *md;
William Tuc69de582018-01-25 13:20:09 -0800985 __be32 tun_id;
William Tuef7baf52017-12-05 15:15:44 -0800986
Davide Carattie5f7e212020-09-27 16:08:21 +0200987 tun_info = skb_tunnel_info_txcheck(skb);
988 if (IS_ERR(tun_info) ||
989 unlikely(ip_tunnel_info_af(tun_info) != AF_INET6))
Xin Long28e48602019-09-13 17:45:47 +0800990 goto tx_err;
William Tuef7baf52017-12-05 15:15:44 -0800991
992 key = &tun_info->key;
993 memset(&fl6, 0, sizeof(fl6));
994 fl6.flowi6_proto = IPPROTO_GRE;
995 fl6.daddr = key->u.ipv6.dst;
996 fl6.flowlabel = key->label;
997 fl6.flowi6_uid = sock_net_uid(dev_net(dev), NULL);
Ghalem Boudour56f974d2021-11-19 18:20:16 +0100998 fl6.fl6_gre_key = tunnel_id_to_key32(key->tun_id);
William Tuef7baf52017-12-05 15:15:44 -0800999
1000 dsfield = key->tos;
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -07001001 if (!(tun_info->key.tun_flags & TUNNEL_ERSPAN_OPT))
1002 goto tx_err;
Xin Long2eb8d6d2019-10-28 23:19:35 +08001003 if (tun_info->options_len < sizeof(*md))
William Tuef7baf52017-12-05 15:15:44 -08001004 goto tx_err;
Xin Long2eb8d6d2019-10-28 23:19:35 +08001005 md = ip_tunnel_info_opts(tun_info);
William Tuef7baf52017-12-05 15:15:44 -08001006
William Tuc69de582018-01-25 13:20:09 -08001007 tun_id = tunnel_id_to_key32(key->tun_id);
William Tu94d7d8f2017-12-13 16:38:57 -08001008 if (md->version == 1) {
1009 erspan_build_header(skb,
William Tuc69de582018-01-25 13:20:09 -08001010 ntohl(tun_id),
William Tu94d7d8f2017-12-13 16:38:57 -08001011 ntohl(md->u.index), truncate,
1012 false);
1013 } else if (md->version == 2) {
William Tu94d7d8f2017-12-13 16:38:57 -08001014 erspan_build_header_v2(skb,
William Tuc69de582018-01-25 13:20:09 -08001015 ntohl(tun_id),
1016 md->u.md2.dir,
1017 get_hwid(&md->u.md2),
1018 truncate, false);
William Tud6aa7112018-03-09 07:34:41 -08001019 } else {
1020 goto tx_err;
William Tu94d7d8f2017-12-13 16:38:57 -08001021 }
William Tuef7baf52017-12-05 15:15:44 -08001022 } else {
1023 switch (skb->protocol) {
1024 case htons(ETH_P_IP):
1025 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1026 prepare_ip6gre_xmit_ipv4(skb, dev, &fl6,
1027 &dsfield, &encap_limit);
1028 break;
1029 case htons(ETH_P_IPV6):
Willem de Bruijncb9f1b72018-12-30 17:24:36 -05001030 if (ipv6_addr_equal(&t->parms.raddr, &ipv6_hdr(skb)->saddr))
William Tuef7baf52017-12-05 15:15:44 -08001031 goto tx_err;
1032 if (prepare_ip6gre_xmit_ipv6(skb, dev, &fl6,
1033 &dsfield, &encap_limit))
1034 goto tx_err;
1035 break;
1036 default:
1037 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
1038 break;
1039 }
1040
William Tu94d7d8f2017-12-13 16:38:57 -08001041 if (t->parms.erspan_ver == 1)
William Tuc69de582018-01-25 13:20:09 -08001042 erspan_build_header(skb, ntohl(t->parms.o_key),
William Tu94d7d8f2017-12-13 16:38:57 -08001043 t->parms.index,
1044 truncate, false);
William Tu02f99df2018-05-16 17:24:32 -07001045 else if (t->parms.erspan_ver == 2)
William Tuc69de582018-01-25 13:20:09 -08001046 erspan_build_header_v2(skb, ntohl(t->parms.o_key),
William Tu94d7d8f2017-12-13 16:38:57 -08001047 t->parms.dir,
1048 t->parms.hwid,
1049 truncate, false);
William Tu02f99df2018-05-16 17:24:32 -07001050 else
1051 goto tx_err;
1052
William Tuef7baf52017-12-05 15:15:44 -08001053 fl6.daddr = t->parms.raddr;
1054 }
William Tu5a963eb2017-11-30 11:51:29 -08001055
1056 /* Push GRE header. */
Xin Long20704bd2019-01-14 18:10:06 +08001057 proto = (t->parms.erspan_ver == 1) ? htons(ETH_P_ERSPAN)
1058 : htons(ETH_P_ERSPAN2);
Peilin Ye720b6ce2022-04-21 15:09:02 -07001059 gre_build_header(skb, 8, TUNNEL_SEQ, proto, 0, htonl(atomic_fetch_inc(&t->o_seqno)));
William Tu5a963eb2017-11-30 11:51:29 -08001060
1061 /* TooBig packet may have updated dst->dev's mtu */
William Tuef7baf52017-12-05 15:15:44 -08001062 if (!t->parms.collect_md && dst && dst_mtu(dst) > dst->dev->mtu)
Hangbin Liu675d76a2019-12-22 10:51:10 +08001063 dst->ops->update_pmtu(dst, NULL, skb, dst->dev->mtu, false);
William Tu5a963eb2017-11-30 11:51:29 -08001064
1065 err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
1066 NEXTHDR_GRE);
1067 if (err != 0) {
1068 /* XXX: send ICMP error even if DF is not set. */
1069 if (err == -EMSGSIZE) {
1070 if (skb->protocol == htons(ETH_P_IP))
Jason A. Donenfeld91796b62021-02-27 01:40:19 +01001071 icmp_ndo_send(skb, ICMP_DEST_UNREACH,
1072 ICMP_FRAG_NEEDED, htonl(mtu));
William Tu5a963eb2017-11-30 11:51:29 -08001073 else
Jason A. Donenfeld91796b62021-02-27 01:40:19 +01001074 icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
William Tu5a963eb2017-11-30 11:51:29 -08001075 }
1076
1077 goto tx_err;
1078 }
1079 return NETDEV_TX_OK;
1080
1081tx_err:
1082 stats = &t->dev->stats;
Davide Carattie5f7e212020-09-27 16:08:21 +02001083 if (!IS_ERR(tun_info))
1084 stats->tx_errors++;
William Tu5a963eb2017-11-30 11:51:29 -08001085 stats->tx_dropped++;
1086 kfree_skb(skb);
1087 return NETDEV_TX_OK;
1088}
1089
Petr Machataa4833732018-05-17 16:36:27 +02001090static void ip6gre_tnl_link_config_common(struct ip6_tnl *t)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001091{
1092 struct net_device *dev = t->dev;
1093 struct __ip6_tnl_parm *p = &t->parms;
1094 struct flowi6 *fl6 = &t->fl.u.ip6;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001095
1096 if (dev->type != ARPHRD_ETHER) {
1097 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1098 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
1099 }
1100
1101 /* Set up flowi template */
1102 fl6->saddr = p->laddr;
1103 fl6->daddr = p->raddr;
1104 fl6->flowi6_oif = p->link;
1105 fl6->flowlabel = 0;
Haishuang Yan252f3f52016-05-21 18:17:35 +08001106 fl6->flowi6_proto = IPPROTO_GRE;
Ghalem Boudour56f974d2021-11-19 18:20:16 +01001107 fl6->fl6_gre_key = t->parms.o_key;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001108
1109 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1110 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1111 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1112 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1113
1114 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1115 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
1116
1117 if (p->flags&IP6_TNL_F_CAP_XMIT &&
1118 p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER)
1119 dev->flags |= IFF_POINTOPOINT;
1120 else
1121 dev->flags &= ~IFF_POINTOPOINT;
Petr Machataa4833732018-05-17 16:36:27 +02001122}
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001123
Petr Machataa4833732018-05-17 16:36:27 +02001124static void ip6gre_tnl_link_config_route(struct ip6_tnl *t, int set_mtu,
1125 int t_hlen)
1126{
1127 const struct __ip6_tnl_parm *p = &t->parms;
1128 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001129
1130 if (p->flags & IP6_TNL_F_CAP_XMIT) {
1131 int strict = (ipv6_addr_type(&p->raddr) &
1132 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1133
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001134 struct rt6_info *rt = rt6_lookup(t->net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001135 &p->raddr, &p->laddr,
David Ahernb75cc8f2018-03-02 08:32:17 -08001136 p->link, NULL, strict);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001137
Ian Morris63159f22015-03-29 14:00:04 +01001138 if (!rt)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001139 return;
1140
1141 if (rt->dst.dev) {
Antoine Tenart832ba592020-11-30 17:19:11 +01001142 unsigned short dst_len = rt->dst.dev->hard_header_len +
1143 t_hlen;
1144
1145 if (t->dev->header_ops)
1146 dev->hard_header_len = dst_len;
1147 else
1148 dev->needed_headroom = dst_len;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001149
1150 if (set_mtu) {
Tom Herbertdb2ec952016-05-09 17:12:08 -07001151 dev->mtu = rt->dst.dev->mtu - t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001152 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1153 dev->mtu -= 8;
Alexander Duycka9e242c2016-04-14 15:33:45 -04001154 if (dev->type == ARPHRD_ETHER)
1155 dev->mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001156
1157 if (dev->mtu < IPV6_MIN_MTU)
1158 dev->mtu = IPV6_MIN_MTU;
1159 }
1160 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001161 ip6_rt_put(rt);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001162 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001163}
1164
Petr Machataa4833732018-05-17 16:36:27 +02001165static int ip6gre_calc_hlen(struct ip6_tnl *tunnel)
1166{
1167 int t_hlen;
1168
1169 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags);
1170 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen;
1171
1172 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
Antoine Tenart832ba592020-11-30 17:19:11 +01001173
1174 if (tunnel->dev->header_ops)
1175 tunnel->dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1176 else
1177 tunnel->dev->needed_headroom = LL_MAX_HEADER + t_hlen;
1178
Petr Machataa4833732018-05-17 16:36:27 +02001179 return t_hlen;
1180}
1181
1182static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
1183{
1184 ip6gre_tnl_link_config_common(t);
1185 ip6gre_tnl_link_config_route(t, set_mtu, ip6gre_calc_hlen(t));
1186}
1187
Petr Machataa6465352018-05-17 16:36:33 +02001188static void ip6gre_tnl_copy_tnl_parm(struct ip6_tnl *t,
1189 const struct __ip6_tnl_parm *p)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001190{
1191 t->parms.laddr = p->laddr;
1192 t->parms.raddr = p->raddr;
1193 t->parms.flags = p->flags;
1194 t->parms.hop_limit = p->hop_limit;
1195 t->parms.encap_limit = p->encap_limit;
1196 t->parms.flowinfo = p->flowinfo;
1197 t->parms.link = p->link;
1198 t->parms.proto = p->proto;
1199 t->parms.i_key = p->i_key;
1200 t->parms.o_key = p->o_key;
1201 t->parms.i_flags = p->i_flags;
1202 t->parms.o_flags = p->o_flags;
Craig Gallek0a473b82017-04-19 12:30:53 -04001203 t->parms.fwmark = p->fwmark;
Hangbin Liu80b36712019-01-10 11:17:42 +08001204 t->parms.erspan_ver = p->erspan_ver;
1205 t->parms.index = p->index;
1206 t->parms.dir = p->dir;
1207 t->parms.hwid = p->hwid;
Paolo Abeni607f7252016-02-12 15:43:54 +01001208 dst_cache_reset(&t->dst_cache);
Petr Machataa6465352018-05-17 16:36:33 +02001209}
1210
1211static int ip6gre_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p,
1212 int set_mtu)
1213{
1214 ip6gre_tnl_copy_tnl_parm(t, p);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001215 ip6gre_tnl_link_config(t, set_mtu);
1216 return 0;
1217}
1218
1219static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
1220 const struct ip6_tnl_parm2 *u)
1221{
1222 p->laddr = u->laddr;
1223 p->raddr = u->raddr;
1224 p->flags = u->flags;
1225 p->hop_limit = u->hop_limit;
1226 p->encap_limit = u->encap_limit;
1227 p->flowinfo = u->flowinfo;
1228 p->link = u->link;
1229 p->i_key = u->i_key;
1230 p->o_key = u->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001231 p->i_flags = gre_flags_to_tnl_flags(u->i_flags);
1232 p->o_flags = gre_flags_to_tnl_flags(u->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001233 memcpy(p->name, u->name, sizeof(u->name));
1234}
1235
1236static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
1237 const struct __ip6_tnl_parm *p)
1238{
1239 u->proto = IPPROTO_GRE;
1240 u->laddr = p->laddr;
1241 u->raddr = p->raddr;
1242 u->flags = p->flags;
1243 u->hop_limit = p->hop_limit;
1244 u->encap_limit = p->encap_limit;
1245 u->flowinfo = p->flowinfo;
1246 u->link = p->link;
1247 u->i_key = p->i_key;
1248 u->o_key = p->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001249 u->i_flags = gre_tnl_flags_to_gre_flags(p->i_flags);
1250 u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001251 memcpy(u->name, p->name, sizeof(u->name));
1252}
1253
1254static int ip6gre_tunnel_ioctl(struct net_device *dev,
1255 struct ifreq *ifr, int cmd)
1256{
1257 int err = 0;
1258 struct ip6_tnl_parm2 p;
1259 struct __ip6_tnl_parm p1;
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001260 struct ip6_tnl *t = netdev_priv(dev);
1261 struct net *net = t->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001262 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1263
Tom Herbert308edfdf2016-04-29 17:12:17 -07001264 memset(&p1, 0, sizeof(p1));
1265
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001266 switch (cmd) {
1267 case SIOCGETTUNNEL:
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001268 if (dev == ign->fb_tunnel_dev) {
1269 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
1270 err = -EFAULT;
1271 break;
1272 }
1273 ip6gre_tnl_parm_from_user(&p1, &p);
1274 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +01001275 if (!t)
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001276 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001277 }
Amerigo Wang5dbd5062013-05-09 21:56:37 +00001278 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001279 ip6gre_tnl_parm_to_user(&p, &t->parms);
1280 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
1281 err = -EFAULT;
1282 break;
1283
1284 case SIOCADDTUNNEL:
1285 case SIOCCHGTUNNEL:
1286 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001287 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001288 goto done;
1289
1290 err = -EFAULT;
1291 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1292 goto done;
1293
1294 err = -EINVAL;
1295 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
1296 goto done;
1297
1298 if (!(p.i_flags&GRE_KEY))
1299 p.i_key = 0;
1300 if (!(p.o_flags&GRE_KEY))
1301 p.o_key = 0;
1302
1303 ip6gre_tnl_parm_from_user(&p1, &p);
1304 t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
1305
1306 if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Ian Morris53b24b82015-03-29 14:00:05 +01001307 if (t) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001308 if (t->dev != dev) {
1309 err = -EEXIST;
1310 break;
1311 }
1312 } else {
1313 t = netdev_priv(dev);
1314
1315 ip6gre_tunnel_unlink(ign, t);
1316 synchronize_net();
1317 ip6gre_tnl_change(t, &p1, 1);
1318 ip6gre_tunnel_link(ign, t);
1319 netdev_state_change(dev);
1320 }
1321 }
1322
1323 if (t) {
1324 err = 0;
1325
Amerigo Wang5dbd5062013-05-09 21:56:37 +00001326 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001327 ip6gre_tnl_parm_to_user(&p, &t->parms);
1328 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
1329 err = -EFAULT;
1330 } else
1331 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1332 break;
1333
1334 case SIOCDELTUNNEL:
1335 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001336 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001337 goto done;
1338
1339 if (dev == ign->fb_tunnel_dev) {
1340 err = -EFAULT;
1341 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1342 goto done;
1343 err = -ENOENT;
1344 ip6gre_tnl_parm_from_user(&p1, &p);
1345 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +01001346 if (!t)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001347 goto done;
1348 err = -EPERM;
1349 if (t == netdev_priv(ign->fb_tunnel_dev))
1350 goto done;
1351 dev = t->dev;
1352 }
1353 unregister_netdevice(dev);
1354 err = 0;
1355 break;
1356
1357 default:
1358 err = -EINVAL;
1359 }
1360
1361done:
1362 return err;
1363}
1364
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001365static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
Xin Long76cc0d32017-09-15 12:00:07 +08001366 unsigned short type, const void *daddr,
1367 const void *saddr, unsigned int len)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001368{
1369 struct ip6_tnl *t = netdev_priv(dev);
Xin Long76cc0d32017-09-15 12:00:07 +08001370 struct ipv6hdr *ipv6h;
1371 __be16 *p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001372
Xin Long76cc0d32017-09-15 12:00:07 +08001373 ipv6h = skb_push(skb, t->hlen + sizeof(*ipv6h));
1374 ip6_flow_hdr(ipv6h, 0, ip6_make_flowlabel(dev_net(dev), skb,
1375 t->fl.u.ip6.flowlabel,
1376 true, &t->fl.u.ip6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001377 ipv6h->hop_limit = t->parms.hop_limit;
1378 ipv6h->nexthdr = NEXTHDR_GRE;
1379 ipv6h->saddr = t->parms.laddr;
1380 ipv6h->daddr = t->parms.raddr;
1381
Xin Long76cc0d32017-09-15 12:00:07 +08001382 p = (__be16 *)(ipv6h + 1);
1383 p[0] = t->parms.o_flags;
1384 p[1] = htons(type);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001385
1386 /*
1387 * Set the source hardware address.
1388 */
1389
1390 if (saddr)
1391 memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
1392 if (daddr)
1393 memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
1394 if (!ipv6_addr_any(&ipv6h->daddr))
1395 return t->hlen;
1396
1397 return -t->hlen;
1398}
1399
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001400static const struct header_ops ip6gre_header_ops = {
1401 .create = ip6gre_header,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001402};
1403
1404static const struct net_device_ops ip6gre_netdev_ops = {
1405 .ndo_init = ip6gre_tunnel_init,
1406 .ndo_uninit = ip6gre_tunnel_uninit,
1407 .ndo_start_xmit = ip6gre_tunnel_xmit,
1408 .ndo_do_ioctl = ip6gre_tunnel_ioctl,
Tom Herbertb05229f2016-04-29 17:12:21 -07001409 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +00001410 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001411 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001412};
1413
1414static void ip6gre_dev_free(struct net_device *dev)
1415{
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001416 struct ip6_tnl *t = netdev_priv(dev);
1417
Eran Ben Elisha0c1dd2a2018-05-07 10:45:27 +03001418 gro_cells_destroy(&t->gro_cells);
Paolo Abeni607f7252016-02-12 15:43:54 +01001419 dst_cache_destroy(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001420 free_percpu(dev->tstats);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001421}
1422
1423static void ip6gre_tunnel_setup(struct net_device *dev)
1424{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001425 dev->netdev_ops = &ip6gre_netdev_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001426 dev->needs_free_netdev = true;
1427 dev->priv_destructor = ip6gre_dev_free;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001428
1429 dev->type = ARPHRD_IP6GRE;
Tom Herbertb05229f2016-04-29 17:12:21 -07001430
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001431 dev->flags |= IFF_NOARP;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001432 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -07001433 netif_keep_dst(dev);
Felix Jia45ce0fd2017-01-26 16:59:18 +13001434 /* This perm addr will be used as interface identifier by IPv6 */
1435 dev->addr_assign_type = NET_ADDR_RANDOM;
1436 eth_random_addr(dev->perm_addr);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001437}
1438
Alexey Kodaneve5a93362017-12-20 19:36:03 +03001439#define GRE6_FEATURES (NETIF_F_SG | \
1440 NETIF_F_FRAGLIST | \
1441 NETIF_F_HIGHDMA | \
1442 NETIF_F_HW_CSUM)
1443
1444static void ip6gre_tnl_init_features(struct net_device *dev)
1445{
1446 struct ip6_tnl *nt = netdev_priv(dev);
1447
1448 dev->features |= GRE6_FEATURES;
1449 dev->hw_features |= GRE6_FEATURES;
1450
1451 if (!(nt->parms.o_flags & TUNNEL_SEQ)) {
1452 /* TCP offload with GRE SEQ is not supported, nor
1453 * can we support 2 levels of outer headers requiring
1454 * an update.
1455 */
1456 if (!(nt->parms.o_flags & TUNNEL_CSUM) ||
1457 nt->encap.type == TUNNEL_ENCAP_NONE) {
1458 dev->features |= NETIF_F_GSO_SOFTWARE;
1459 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1460 }
1461
1462 /* Can use a lockless transmit, unless we generate
1463 * output sequences
1464 */
1465 dev->features |= NETIF_F_LLTX;
1466 }
1467}
1468
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001469static int ip6gre_tunnel_init_common(struct net_device *dev)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001470{
1471 struct ip6_tnl *tunnel;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001472 int ret;
Tom Herbertb05229f2016-04-29 17:12:21 -07001473 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001474
1475 tunnel = netdev_priv(dev);
1476
1477 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001478 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001479 strcpy(tunnel->parms.name, dev->name);
1480
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001481 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1482 if (!dev->tstats)
1483 return -ENOMEM;
1484
Paolo Abeni607f7252016-02-12 15:43:54 +01001485 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
Eran Ben Elisha0c1dd2a2018-05-07 10:45:27 +03001486 if (ret)
1487 goto cleanup_alloc_pcpu_stats;
1488
1489 ret = gro_cells_init(&tunnel->gro_cells, dev);
1490 if (ret)
1491 goto cleanup_dst_cache_init;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001492
Petr Machataa4833732018-05-17 16:36:27 +02001493 t_hlen = ip6gre_calc_hlen(tunnel);
Tom Herbertdb2ec952016-05-09 17:12:08 -07001494 dev->mtu = ETH_DATA_LEN - t_hlen;
Haishuang Yan1b227e52016-05-21 18:17:34 +08001495 if (dev->type == ARPHRD_ETHER)
1496 dev->mtu -= ETH_HLEN;
Tom Herbertb05229f2016-04-29 17:12:21 -07001497 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1498 dev->mtu -= 8;
1499
William Tu6712abc2017-12-01 15:26:08 -08001500 if (tunnel->parms.collect_md) {
William Tu6712abc2017-12-01 15:26:08 -08001501 netif_keep_dst(dev);
1502 }
Alexey Kodaneve5a93362017-12-20 19:36:03 +03001503 ip6gre_tnl_init_features(dev);
William Tu6712abc2017-12-01 15:26:08 -08001504
Eric Dumazetb18b1542021-03-29 11:39:51 -07001505 dev_hold(dev);
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001506 return 0;
Eran Ben Elisha0c1dd2a2018-05-07 10:45:27 +03001507
1508cleanup_dst_cache_init:
1509 dst_cache_destroy(&tunnel->dst_cache);
1510cleanup_alloc_pcpu_stats:
1511 free_percpu(dev->tstats);
1512 dev->tstats = NULL;
1513 return ret;
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001514}
1515
1516static int ip6gre_tunnel_init(struct net_device *dev)
1517{
1518 struct ip6_tnl *tunnel;
1519 int ret;
1520
1521 ret = ip6gre_tunnel_init_common(dev);
1522 if (ret)
1523 return ret;
1524
1525 tunnel = netdev_priv(dev);
1526
William Tu6712abc2017-12-01 15:26:08 -08001527 if (tunnel->parms.collect_md)
1528 return 0;
1529
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001530 memcpy(dev->dev_addr, &tunnel->parms.laddr, sizeof(struct in6_addr));
1531 memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1532
1533 if (ipv6_addr_any(&tunnel->parms.raddr))
1534 dev->header_ops = &ip6gre_header_ops;
1535
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001536 return 0;
1537}
1538
1539static void ip6gre_fb_tunnel_init(struct net_device *dev)
1540{
1541 struct ip6_tnl *tunnel = netdev_priv(dev);
1542
1543 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001544 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001545 strcpy(tunnel->parms.name, dev->name);
1546
1547 tunnel->hlen = sizeof(struct ipv6hdr) + 4;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001548}
1549
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001550static struct inet6_protocol ip6gre_protocol __read_mostly = {
Tom Herbert308edfdf2016-04-29 17:12:17 -07001551 .handler = gre_rcv,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001552 .err_handler = ip6gre_err,
Ghalem Boudour56f974d2021-11-19 18:20:16 +01001553 .flags = INET6_PROTO_FINAL,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001554};
1555
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001556static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001557{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001558 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1559 struct net_device *dev, *aux;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001560 int prio;
1561
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001562 for_each_netdev_safe(net, dev, aux)
1563 if (dev->rtnl_link_ops == &ip6gre_link_ops ||
William Tu5a963eb2017-11-30 11:51:29 -08001564 dev->rtnl_link_ops == &ip6gre_tap_ops ||
1565 dev->rtnl_link_ops == &ip6erspan_tap_ops)
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001566 unregister_netdevice_queue(dev, head);
1567
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001568 for (prio = 0; prio < 4; prio++) {
1569 int h;
Jiri Kosinae87a8f22016-08-10 11:03:35 +02001570 for (h = 0; h < IP6_GRE_HASH_SIZE; h++) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001571 struct ip6_tnl *t;
1572
1573 t = rtnl_dereference(ign->tunnels[prio][h]);
1574
Ian Morris53b24b82015-03-29 14:00:05 +01001575 while (t) {
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001576 /* If dev is in the same netns, it has already
1577 * been added to the list by the previous loop.
1578 */
1579 if (!net_eq(dev_net(t->dev), net))
1580 unregister_netdevice_queue(t->dev,
1581 head);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001582 t = rtnl_dereference(t->next);
1583 }
1584 }
1585 }
1586}
1587
1588static int __net_init ip6gre_init_net(struct net *net)
1589{
1590 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
Wei Yongjun46ef5b82020-07-13 23:59:50 +08001591 struct net_device *ndev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001592 int err;
1593
Eric Dumazet79134e62018-03-08 12:51:41 -08001594 if (!net_has_fallback_tunnels(net))
1595 return 0;
Wei Yongjun46ef5b82020-07-13 23:59:50 +08001596 ndev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
1597 NET_NAME_UNKNOWN, ip6gre_tunnel_setup);
1598 if (!ndev) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001599 err = -ENOMEM;
1600 goto err_alloc_dev;
1601 }
Wei Yongjun46ef5b82020-07-13 23:59:50 +08001602 ign->fb_tunnel_dev = ndev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001603 dev_net_set(ign->fb_tunnel_dev, net);
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001604 /* FB netdevice is special: we have one, and only one per netns.
1605 * Allowing to move it to another netns is clearly unsafe.
1606 */
1607 ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1608
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001609
1610 ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1611 ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1612
1613 err = register_netdev(ign->fb_tunnel_dev);
1614 if (err)
1615 goto err_reg_dev;
1616
1617 rcu_assign_pointer(ign->tunnels_wc[0],
1618 netdev_priv(ign->fb_tunnel_dev));
1619 return 0;
1620
1621err_reg_dev:
Wei Yongjun46ef5b82020-07-13 23:59:50 +08001622 free_netdev(ndev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001623err_alloc_dev:
1624 return err;
1625}
1626
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001627static void __net_exit ip6gre_exit_batch_net(struct list_head *net_list)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001628{
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001629 struct net *net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001630 LIST_HEAD(list);
1631
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001632 rtnl_lock();
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001633 list_for_each_entry(net, net_list, exit_list)
1634 ip6gre_destroy_tunnels(net, &list);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001635 unregister_netdevice_many(&list);
1636 rtnl_unlock();
1637}
1638
1639static struct pernet_operations ip6gre_net_ops = {
1640 .init = ip6gre_init_net,
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001641 .exit_batch = ip6gre_exit_batch_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001642 .id = &ip6gre_net_id,
1643 .size = sizeof(struct ip6gre_net),
1644};
1645
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001646static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[],
1647 struct netlink_ext_ack *extack)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001648{
1649 __be16 flags;
1650
1651 if (!data)
1652 return 0;
1653
1654 flags = 0;
1655 if (data[IFLA_GRE_IFLAGS])
1656 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1657 if (data[IFLA_GRE_OFLAGS])
1658 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1659 if (flags & (GRE_VERSION|GRE_ROUTING))
1660 return -EINVAL;
1661
1662 return 0;
1663}
1664
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001665static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[],
1666 struct netlink_ext_ack *extack)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001667{
1668 struct in6_addr daddr;
1669
1670 if (tb[IFLA_ADDRESS]) {
1671 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1672 return -EINVAL;
1673 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1674 return -EADDRNOTAVAIL;
1675 }
1676
1677 if (!data)
1678 goto out;
1679
1680 if (data[IFLA_GRE_REMOTE]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02001681 daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001682 if (ipv6_addr_any(&daddr))
1683 return -EINVAL;
1684 }
1685
1686out:
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001687 return ip6gre_tunnel_validate(tb, data, extack);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001688}
1689
William Tu5a963eb2017-11-30 11:51:29 -08001690static int ip6erspan_tap_validate(struct nlattr *tb[], struct nlattr *data[],
1691 struct netlink_ext_ack *extack)
1692{
1693 __be16 flags = 0;
William Tu94d7d8f2017-12-13 16:38:57 -08001694 int ret, ver = 0;
William Tu5a963eb2017-11-30 11:51:29 -08001695
1696 if (!data)
1697 return 0;
1698
1699 ret = ip6gre_tap_validate(tb, data, extack);
1700 if (ret)
1701 return ret;
1702
1703 /* ERSPAN should only have GRE sequence and key flag */
1704 if (data[IFLA_GRE_OFLAGS])
1705 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1706 if (data[IFLA_GRE_IFLAGS])
1707 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1708 if (!data[IFLA_GRE_COLLECT_METADATA] &&
1709 flags != (GRE_SEQ | GRE_KEY))
1710 return -EINVAL;
1711
1712 /* ERSPAN Session ID only has 10-bit. Since we reuse
1713 * 32-bit key field as ID, check it's range.
1714 */
1715 if (data[IFLA_GRE_IKEY] &&
1716 (ntohl(nla_get_be32(data[IFLA_GRE_IKEY])) & ~ID_MASK))
1717 return -EINVAL;
1718
1719 if (data[IFLA_GRE_OKEY] &&
1720 (ntohl(nla_get_be32(data[IFLA_GRE_OKEY])) & ~ID_MASK))
1721 return -EINVAL;
1722
William Tu94d7d8f2017-12-13 16:38:57 -08001723 if (data[IFLA_GRE_ERSPAN_VER]) {
1724 ver = nla_get_u8(data[IFLA_GRE_ERSPAN_VER]);
1725 if (ver != 1 && ver != 2)
William Tu5a963eb2017-11-30 11:51:29 -08001726 return -EINVAL;
1727 }
William Tu94d7d8f2017-12-13 16:38:57 -08001728
1729 if (ver == 1) {
1730 if (data[IFLA_GRE_ERSPAN_INDEX]) {
1731 u32 index = nla_get_u32(data[IFLA_GRE_ERSPAN_INDEX]);
1732
1733 if (index & ~INDEX_MASK)
1734 return -EINVAL;
1735 }
1736 } else if (ver == 2) {
1737 if (data[IFLA_GRE_ERSPAN_DIR]) {
1738 u16 dir = nla_get_u8(data[IFLA_GRE_ERSPAN_DIR]);
1739
1740 if (dir & ~(DIR_MASK >> DIR_OFFSET))
1741 return -EINVAL;
1742 }
1743
1744 if (data[IFLA_GRE_ERSPAN_HWID]) {
1745 u16 hwid = nla_get_u16(data[IFLA_GRE_ERSPAN_HWID]);
1746
1747 if (hwid & ~(HWID_MASK >> HWID_OFFSET))
1748 return -EINVAL;
1749 }
1750 }
1751
William Tu5a963eb2017-11-30 11:51:29 -08001752 return 0;
1753}
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001754
Lorenzo Bianconi4974d5f2019-02-15 15:10:32 +01001755static void ip6erspan_set_version(struct nlattr *data[],
1756 struct __ip6_tnl_parm *parms)
1757{
Lorenzo Bianconiefcc9bc2019-02-20 09:23:03 +01001758 if (!data)
1759 return;
1760
Lorenzo Bianconi4974d5f2019-02-15 15:10:32 +01001761 parms->erspan_ver = 1;
1762 if (data[IFLA_GRE_ERSPAN_VER])
1763 parms->erspan_ver = nla_get_u8(data[IFLA_GRE_ERSPAN_VER]);
1764
1765 if (parms->erspan_ver == 1) {
1766 if (data[IFLA_GRE_ERSPAN_INDEX])
1767 parms->index = nla_get_u32(data[IFLA_GRE_ERSPAN_INDEX]);
1768 } else if (parms->erspan_ver == 2) {
1769 if (data[IFLA_GRE_ERSPAN_DIR])
1770 parms->dir = nla_get_u8(data[IFLA_GRE_ERSPAN_DIR]);
1771 if (data[IFLA_GRE_ERSPAN_HWID])
1772 parms->hwid = nla_get_u16(data[IFLA_GRE_ERSPAN_HWID]);
1773 }
1774}
1775
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001776static void ip6gre_netlink_parms(struct nlattr *data[],
1777 struct __ip6_tnl_parm *parms)
1778{
1779 memset(parms, 0, sizeof(*parms));
1780
1781 if (!data)
1782 return;
1783
1784 if (data[IFLA_GRE_LINK])
1785 parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1786
1787 if (data[IFLA_GRE_IFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001788 parms->i_flags = gre_flags_to_tnl_flags(
1789 nla_get_be16(data[IFLA_GRE_IFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001790
1791 if (data[IFLA_GRE_OFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001792 parms->o_flags = gre_flags_to_tnl_flags(
1793 nla_get_be16(data[IFLA_GRE_OFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001794
1795 if (data[IFLA_GRE_IKEY])
1796 parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1797
1798 if (data[IFLA_GRE_OKEY])
1799 parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1800
1801 if (data[IFLA_GRE_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +02001802 parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001803
1804 if (data[IFLA_GRE_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +02001805 parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001806
1807 if (data[IFLA_GRE_TTL])
1808 parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1809
1810 if (data[IFLA_GRE_ENCAP_LIMIT])
1811 parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1812
1813 if (data[IFLA_GRE_FLOWINFO])
Lance Richardsonc2675de2016-09-24 14:01:04 -04001814 parms->flowinfo = nla_get_be32(data[IFLA_GRE_FLOWINFO]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001815
1816 if (data[IFLA_GRE_FLAGS])
1817 parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
Craig Gallek0a473b82017-04-19 12:30:53 -04001818
1819 if (data[IFLA_GRE_FWMARK])
1820 parms->fwmark = nla_get_u32(data[IFLA_GRE_FWMARK]);
William Tu5a963eb2017-11-30 11:51:29 -08001821
William Tu6712abc2017-12-01 15:26:08 -08001822 if (data[IFLA_GRE_COLLECT_METADATA])
1823 parms->collect_md = true;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001824}
1825
1826static int ip6gre_tap_init(struct net_device *dev)
1827{
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001828 int ret;
1829
1830 ret = ip6gre_tunnel_init_common(dev);
1831 if (ret)
1832 return ret;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001833
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001834 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1835
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001836 return 0;
1837}
1838
1839static const struct net_device_ops ip6gre_tap_netdev_ops = {
1840 .ndo_init = ip6gre_tap_init,
1841 .ndo_uninit = ip6gre_tunnel_uninit,
1842 .ndo_start_xmit = ip6gre_tunnel_xmit,
1843 .ndo_set_mac_address = eth_mac_addr,
1844 .ndo_validate_addr = eth_validate_addr,
Tom Herbertb05229f2016-04-29 17:12:21 -07001845 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +00001846 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001847 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001848};
1849
Petr Machata2d665032018-05-17 16:36:51 +02001850static int ip6erspan_calc_hlen(struct ip6_tnl *tunnel)
1851{
1852 int t_hlen;
1853
1854 tunnel->tun_hlen = 8;
1855 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen +
1856 erspan_hdr_len(tunnel->parms.erspan_ver);
1857
1858 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
Maria Pasechnikeb95f522018-08-08 11:46:30 +03001859 tunnel->dev->needed_headroom = LL_MAX_HEADER + t_hlen;
Petr Machata2d665032018-05-17 16:36:51 +02001860 return t_hlen;
1861}
1862
William Tu5a963eb2017-11-30 11:51:29 -08001863static int ip6erspan_tap_init(struct net_device *dev)
1864{
1865 struct ip6_tnl *tunnel;
1866 int t_hlen;
1867 int ret;
1868
1869 tunnel = netdev_priv(dev);
1870
1871 tunnel->dev = dev;
1872 tunnel->net = dev_net(dev);
1873 strcpy(tunnel->parms.name, dev->name);
1874
1875 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1876 if (!dev->tstats)
1877 return -ENOMEM;
1878
1879 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
Eran Ben Elisha0c1dd2a2018-05-07 10:45:27 +03001880 if (ret)
1881 goto cleanup_alloc_pcpu_stats;
1882
1883 ret = gro_cells_init(&tunnel->gro_cells, dev);
1884 if (ret)
1885 goto cleanup_dst_cache_init;
William Tu5a963eb2017-11-30 11:51:29 -08001886
Petr Machata2d665032018-05-17 16:36:51 +02001887 t_hlen = ip6erspan_calc_hlen(tunnel);
William Tu5a963eb2017-11-30 11:51:29 -08001888 dev->mtu = ETH_DATA_LEN - t_hlen;
1889 if (dev->type == ARPHRD_ETHER)
1890 dev->mtu -= ETH_HLEN;
1891 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1892 dev->mtu -= 8;
1893
1894 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Petr Machata2d665032018-05-17 16:36:51 +02001895 ip6erspan_tnl_link_config(tunnel, 1);
William Tu5a963eb2017-11-30 11:51:29 -08001896
Eric Dumazetb18b1542021-03-29 11:39:51 -07001897 dev_hold(dev);
William Tu5a963eb2017-11-30 11:51:29 -08001898 return 0;
Eran Ben Elisha0c1dd2a2018-05-07 10:45:27 +03001899
1900cleanup_dst_cache_init:
1901 dst_cache_destroy(&tunnel->dst_cache);
1902cleanup_alloc_pcpu_stats:
1903 free_percpu(dev->tstats);
1904 dev->tstats = NULL;
1905 return ret;
William Tu5a963eb2017-11-30 11:51:29 -08001906}
1907
1908static const struct net_device_ops ip6erspan_netdev_ops = {
1909 .ndo_init = ip6erspan_tap_init,
William Tub80d0b92018-05-18 19:22:28 -07001910 .ndo_uninit = ip6erspan_tunnel_uninit,
William Tu5a963eb2017-11-30 11:51:29 -08001911 .ndo_start_xmit = ip6erspan_tunnel_xmit,
1912 .ndo_set_mac_address = eth_mac_addr,
1913 .ndo_validate_addr = eth_validate_addr,
1914 .ndo_change_mtu = ip6_tnl_change_mtu,
1915 .ndo_get_stats64 = ip_tunnel_get_stats64,
1916 .ndo_get_iflink = ip6_tnl_get_iflink,
1917};
1918
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001919static void ip6gre_tap_setup(struct net_device *dev)
1920{
1921
1922 ether_setup(dev);
1923
Xin Long2c521292017-12-18 14:25:09 +08001924 dev->max_mtu = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001925 dev->netdev_ops = &ip6gre_tap_netdev_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001926 dev->needs_free_netdev = true;
1927 dev->priv_destructor = ip6gre_dev_free;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001928
Jiri Bencd13b1612016-02-17 15:32:53 +01001929 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001930 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Xin Long2d405572017-09-28 13:23:50 +08001931 netif_keep_dst(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001932}
1933
Tom Herbert1faf3d92016-05-18 09:06:19 -07001934static bool ip6gre_netlink_encap_parms(struct nlattr *data[],
1935 struct ip_tunnel_encap *ipencap)
1936{
1937 bool ret = false;
1938
1939 memset(ipencap, 0, sizeof(*ipencap));
1940
1941 if (!data)
1942 return ret;
1943
1944 if (data[IFLA_GRE_ENCAP_TYPE]) {
1945 ret = true;
1946 ipencap->type = nla_get_u16(data[IFLA_GRE_ENCAP_TYPE]);
1947 }
1948
1949 if (data[IFLA_GRE_ENCAP_FLAGS]) {
1950 ret = true;
1951 ipencap->flags = nla_get_u16(data[IFLA_GRE_ENCAP_FLAGS]);
1952 }
1953
1954 if (data[IFLA_GRE_ENCAP_SPORT]) {
1955 ret = true;
1956 ipencap->sport = nla_get_be16(data[IFLA_GRE_ENCAP_SPORT]);
1957 }
1958
1959 if (data[IFLA_GRE_ENCAP_DPORT]) {
1960 ret = true;
1961 ipencap->dport = nla_get_be16(data[IFLA_GRE_ENCAP_DPORT]);
1962 }
1963
1964 return ret;
1965}
1966
Petr Machata7fa38a72018-05-17 16:36:39 +02001967static int ip6gre_newlink_common(struct net *src_net, struct net_device *dev,
1968 struct nlattr *tb[], struct nlattr *data[],
1969 struct netlink_ext_ack *extack)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001970{
1971 struct ip6_tnl *nt;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001972 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001973 int err;
1974
1975 nt = netdev_priv(dev);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001976
1977 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1978 int err = ip6_tnl_encap_setup(nt, &ipencap);
1979
1980 if (err < 0)
1981 return err;
1982 }
1983
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001984 if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS])
1985 eth_hw_addr_random(dev);
1986
1987 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001988 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001989
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001990 err = register_netdevice(dev);
1991 if (err)
1992 goto out;
1993
Alexey Kodanev128bb972018-01-18 20:51:12 +03001994 if (tb[IFLA_MTU])
1995 ip6_tnl_change_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1996
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001997out:
1998 return err;
1999}
2000
Petr Machata7fa38a72018-05-17 16:36:39 +02002001static int ip6gre_newlink(struct net *src_net, struct net_device *dev,
2002 struct nlattr *tb[], struct nlattr *data[],
2003 struct netlink_ext_ack *extack)
2004{
Petr Machata7fa38a72018-05-17 16:36:39 +02002005 struct ip6_tnl *nt = netdev_priv(dev);
2006 struct net *net = dev_net(dev);
William Tub80d0b92018-05-18 19:22:28 -07002007 struct ip6gre_net *ign;
2008 int err;
Petr Machata7fa38a72018-05-17 16:36:39 +02002009
William Tub80d0b92018-05-18 19:22:28 -07002010 ip6gre_netlink_parms(data, &nt->parms);
2011 ign = net_generic(net, ip6gre_net_id);
2012
2013 if (nt->parms.collect_md) {
2014 if (rtnl_dereference(ign->collect_md_tun))
2015 return -EEXIST;
2016 } else {
2017 if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
2018 return -EEXIST;
2019 }
2020
2021 err = ip6gre_newlink_common(src_net, dev, tb, data, extack);
Petr Machata7fa38a72018-05-17 16:36:39 +02002022 if (!err) {
2023 ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
William Tub80d0b92018-05-18 19:22:28 -07002024 ip6gre_tunnel_link_md(ign, nt);
Petr Machata7fa38a72018-05-17 16:36:39 +02002025 ip6gre_tunnel_link(net_generic(net, ip6gre_net_id), nt);
2026 }
2027 return err;
2028}
2029
Petr Machatac8632fc2018-05-17 16:36:45 +02002030static struct ip6_tnl *
2031ip6gre_changelink_common(struct net_device *dev, struct nlattr *tb[],
2032 struct nlattr *data[], struct __ip6_tnl_parm *p_p,
2033 struct netlink_ext_ack *extack)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002034{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02002035 struct ip6_tnl *t, *nt = netdev_priv(dev);
2036 struct net *net = nt->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002037 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
Tom Herbert1faf3d92016-05-18 09:06:19 -07002038 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002039
2040 if (dev == ign->fb_tunnel_dev)
Petr Machatac8632fc2018-05-17 16:36:45 +02002041 return ERR_PTR(-EINVAL);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002042
Tom Herbert1faf3d92016-05-18 09:06:19 -07002043 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
2044 int err = ip6_tnl_encap_setup(nt, &ipencap);
2045
2046 if (err < 0)
Petr Machatac8632fc2018-05-17 16:36:45 +02002047 return ERR_PTR(err);
Tom Herbert1faf3d92016-05-18 09:06:19 -07002048 }
2049
Petr Machatac8632fc2018-05-17 16:36:45 +02002050 ip6gre_netlink_parms(data, p_p);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002051
Petr Machatac8632fc2018-05-17 16:36:45 +02002052 t = ip6gre_tunnel_locate(net, p_p, 0);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002053
2054 if (t) {
2055 if (t->dev != dev)
Petr Machatac8632fc2018-05-17 16:36:45 +02002056 return ERR_PTR(-EEXIST);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002057 } else {
2058 t = nt;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002059 }
2060
Petr Machatac8632fc2018-05-17 16:36:45 +02002061 return t;
2062}
2063
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002064static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
2065 struct nlattr *data[],
2066 struct netlink_ext_ack *extack)
2067{
Olivier Matzab5098f2019-01-09 10:57:21 +01002068 struct ip6_tnl *t = netdev_priv(dev);
2069 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002070 struct __ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002071
Petr Machatac8632fc2018-05-17 16:36:45 +02002072 t = ip6gre_changelink_common(dev, tb, data, &p, extack);
2073 if (IS_ERR(t))
2074 return PTR_ERR(t);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002075
William Tub80d0b92018-05-18 19:22:28 -07002076 ip6gre_tunnel_unlink_md(ign, t);
Nicolas Dichtel6a61d4d2015-12-03 17:21:50 +01002077 ip6gre_tunnel_unlink(ign, t);
2078 ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
William Tub80d0b92018-05-18 19:22:28 -07002079 ip6gre_tunnel_link_md(ign, t);
Nicolas Dichtel6a61d4d2015-12-03 17:21:50 +01002080 ip6gre_tunnel_link(ign, t);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002081 return 0;
2082}
2083
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02002084static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
2085{
2086 struct net *net = dev_net(dev);
2087 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
2088
2089 if (dev != ign->fb_tunnel_dev)
2090 unregister_netdevice_queue(dev, head);
2091}
2092
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002093static size_t ip6gre_get_size(const struct net_device *dev)
2094{
2095 return
2096 /* IFLA_GRE_LINK */
2097 nla_total_size(4) +
2098 /* IFLA_GRE_IFLAGS */
2099 nla_total_size(2) +
2100 /* IFLA_GRE_OFLAGS */
2101 nla_total_size(2) +
2102 /* IFLA_GRE_IKEY */
2103 nla_total_size(4) +
2104 /* IFLA_GRE_OKEY */
2105 nla_total_size(4) +
2106 /* IFLA_GRE_LOCAL */
Nicolas Dichtela3754132012-11-09 05:34:56 +00002107 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002108 /* IFLA_GRE_REMOTE */
Nicolas Dichtela3754132012-11-09 05:34:56 +00002109 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002110 /* IFLA_GRE_TTL */
2111 nla_total_size(1) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002112 /* IFLA_GRE_ENCAP_LIMIT */
2113 nla_total_size(1) +
2114 /* IFLA_GRE_FLOWINFO */
2115 nla_total_size(4) +
2116 /* IFLA_GRE_FLAGS */
2117 nla_total_size(4) +
Tom Herbert1faf3d92016-05-18 09:06:19 -07002118 /* IFLA_GRE_ENCAP_TYPE */
2119 nla_total_size(2) +
2120 /* IFLA_GRE_ENCAP_FLAGS */
2121 nla_total_size(2) +
2122 /* IFLA_GRE_ENCAP_SPORT */
2123 nla_total_size(2) +
2124 /* IFLA_GRE_ENCAP_DPORT */
2125 nla_total_size(2) +
William Tu6712abc2017-12-01 15:26:08 -08002126 /* IFLA_GRE_COLLECT_METADATA */
2127 nla_total_size(0) +
Craig Gallek0a473b82017-04-19 12:30:53 -04002128 /* IFLA_GRE_FWMARK */
2129 nla_total_size(4) +
William Tu5a963eb2017-11-30 11:51:29 -08002130 /* IFLA_GRE_ERSPAN_INDEX */
2131 nla_total_size(4) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002132 0;
2133}
2134
2135static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
2136{
2137 struct ip6_tnl *t = netdev_priv(dev);
2138 struct __ip6_tnl_parm *p = &t->parms;
Lorenzo Bianconic7068632019-01-28 22:23:49 +01002139 __be16 o_flags = p->o_flags;
2140
Lorenzo Bianconi103d0242019-02-19 17:42:06 +01002141 if (p->erspan_ver == 1 || p->erspan_ver == 2) {
2142 if (!p->collect_md)
2143 o_flags |= TUNNEL_KEY;
2144
2145 if (nla_put_u8(skb, IFLA_GRE_ERSPAN_VER, p->erspan_ver))
2146 goto nla_put_failure;
2147
2148 if (p->erspan_ver == 1) {
2149 if (nla_put_u32(skb, IFLA_GRE_ERSPAN_INDEX, p->index))
2150 goto nla_put_failure;
2151 } else {
2152 if (nla_put_u8(skb, IFLA_GRE_ERSPAN_DIR, p->dir))
2153 goto nla_put_failure;
2154 if (nla_put_u16(skb, IFLA_GRE_ERSPAN_HWID, p->hwid))
2155 goto nla_put_failure;
2156 }
2157 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002158
2159 if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
Tom Herbertf41fe3c2016-05-09 17:12:09 -07002160 nla_put_be16(skb, IFLA_GRE_IFLAGS,
2161 gre_tnl_flags_to_gre_flags(p->i_flags)) ||
2162 nla_put_be16(skb, IFLA_GRE_OFLAGS,
Lorenzo Bianconic7068632019-01-28 22:23:49 +01002163 gre_tnl_flags_to_gre_flags(o_flags)) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002164 nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
2165 nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
Jiri Benc930345e2015-03-29 16:59:25 +02002166 nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
2167 nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002168 nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002169 nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
2170 nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
Craig Gallek0a473b82017-04-19 12:30:53 -04002171 nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags) ||
Lorenzo Bianconi103d0242019-02-19 17:42:06 +01002172 nla_put_u32(skb, IFLA_GRE_FWMARK, p->fwmark))
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002173 goto nla_put_failure;
Tom Herbert1faf3d92016-05-18 09:06:19 -07002174
2175 if (nla_put_u16(skb, IFLA_GRE_ENCAP_TYPE,
2176 t->encap.type) ||
2177 nla_put_be16(skb, IFLA_GRE_ENCAP_SPORT,
2178 t->encap.sport) ||
2179 nla_put_be16(skb, IFLA_GRE_ENCAP_DPORT,
2180 t->encap.dport) ||
2181 nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS,
2182 t->encap.flags))
2183 goto nla_put_failure;
2184
William Tu6712abc2017-12-01 15:26:08 -08002185 if (p->collect_md) {
2186 if (nla_put_flag(skb, IFLA_GRE_COLLECT_METADATA))
2187 goto nla_put_failure;
2188 }
2189
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002190 return 0;
2191
2192nla_put_failure:
2193 return -EMSGSIZE;
2194}
2195
2196static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
2197 [IFLA_GRE_LINK] = { .type = NLA_U32 },
2198 [IFLA_GRE_IFLAGS] = { .type = NLA_U16 },
2199 [IFLA_GRE_OFLAGS] = { .type = NLA_U16 },
2200 [IFLA_GRE_IKEY] = { .type = NLA_U32 },
2201 [IFLA_GRE_OKEY] = { .type = NLA_U32 },
Pankaj Bharadiyac5936422019-12-09 10:31:43 -08002202 [IFLA_GRE_LOCAL] = { .len = sizeof_field(struct ipv6hdr, saddr) },
2203 [IFLA_GRE_REMOTE] = { .len = sizeof_field(struct ipv6hdr, daddr) },
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002204 [IFLA_GRE_TTL] = { .type = NLA_U8 },
2205 [IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
2206 [IFLA_GRE_FLOWINFO] = { .type = NLA_U32 },
2207 [IFLA_GRE_FLAGS] = { .type = NLA_U32 },
Tom Herbert1faf3d92016-05-18 09:06:19 -07002208 [IFLA_GRE_ENCAP_TYPE] = { .type = NLA_U16 },
2209 [IFLA_GRE_ENCAP_FLAGS] = { .type = NLA_U16 },
2210 [IFLA_GRE_ENCAP_SPORT] = { .type = NLA_U16 },
2211 [IFLA_GRE_ENCAP_DPORT] = { .type = NLA_U16 },
William Tu6712abc2017-12-01 15:26:08 -08002212 [IFLA_GRE_COLLECT_METADATA] = { .type = NLA_FLAG },
Craig Gallek0a473b82017-04-19 12:30:53 -04002213 [IFLA_GRE_FWMARK] = { .type = NLA_U32 },
William Tu5a963eb2017-11-30 11:51:29 -08002214 [IFLA_GRE_ERSPAN_INDEX] = { .type = NLA_U32 },
William Tu94d7d8f2017-12-13 16:38:57 -08002215 [IFLA_GRE_ERSPAN_VER] = { .type = NLA_U8 },
2216 [IFLA_GRE_ERSPAN_DIR] = { .type = NLA_U8 },
2217 [IFLA_GRE_ERSPAN_HWID] = { .type = NLA_U16 },
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002218};
2219
William Tu5a963eb2017-11-30 11:51:29 -08002220static void ip6erspan_tap_setup(struct net_device *dev)
2221{
2222 ether_setup(dev);
2223
Haishuang Yan4123f632019-10-08 17:56:03 +08002224 dev->max_mtu = 0;
William Tu5a963eb2017-11-30 11:51:29 -08002225 dev->netdev_ops = &ip6erspan_netdev_ops;
2226 dev->needs_free_netdev = true;
2227 dev->priv_destructor = ip6gre_dev_free;
2228
William Tu5a963eb2017-11-30 11:51:29 -08002229 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
2230 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
2231 netif_keep_dst(dev);
2232}
2233
Petr Machata2d665032018-05-17 16:36:51 +02002234static int ip6erspan_newlink(struct net *src_net, struct net_device *dev,
2235 struct nlattr *tb[], struct nlattr *data[],
2236 struct netlink_ext_ack *extack)
2237{
Petr Machata2d665032018-05-17 16:36:51 +02002238 struct ip6_tnl *nt = netdev_priv(dev);
2239 struct net *net = dev_net(dev);
William Tub80d0b92018-05-18 19:22:28 -07002240 struct ip6gre_net *ign;
2241 int err;
Petr Machata2d665032018-05-17 16:36:51 +02002242
William Tub80d0b92018-05-18 19:22:28 -07002243 ip6gre_netlink_parms(data, &nt->parms);
Lorenzo Bianconi4974d5f2019-02-15 15:10:32 +01002244 ip6erspan_set_version(data, &nt->parms);
William Tub80d0b92018-05-18 19:22:28 -07002245 ign = net_generic(net, ip6gre_net_id);
2246
2247 if (nt->parms.collect_md) {
2248 if (rtnl_dereference(ign->collect_md_tun_erspan))
2249 return -EEXIST;
2250 } else {
2251 if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
2252 return -EEXIST;
2253 }
2254
2255 err = ip6gre_newlink_common(src_net, dev, tb, data, extack);
Petr Machata2d665032018-05-17 16:36:51 +02002256 if (!err) {
2257 ip6erspan_tnl_link_config(nt, !tb[IFLA_MTU]);
William Tub80d0b92018-05-18 19:22:28 -07002258 ip6erspan_tunnel_link_md(ign, nt);
Petr Machata2d665032018-05-17 16:36:51 +02002259 ip6gre_tunnel_link(net_generic(net, ip6gre_net_id), nt);
2260 }
2261 return err;
2262}
2263
2264static void ip6erspan_tnl_link_config(struct ip6_tnl *t, int set_mtu)
2265{
2266 ip6gre_tnl_link_config_common(t);
2267 ip6gre_tnl_link_config_route(t, set_mtu, ip6erspan_calc_hlen(t));
2268}
2269
2270static int ip6erspan_tnl_change(struct ip6_tnl *t,
2271 const struct __ip6_tnl_parm *p, int set_mtu)
2272{
2273 ip6gre_tnl_copy_tnl_parm(t, p);
2274 ip6erspan_tnl_link_config(t, set_mtu);
2275 return 0;
2276}
2277
2278static int ip6erspan_changelink(struct net_device *dev, struct nlattr *tb[],
2279 struct nlattr *data[],
2280 struct netlink_ext_ack *extack)
2281{
2282 struct ip6gre_net *ign = net_generic(dev_net(dev), ip6gre_net_id);
2283 struct __ip6_tnl_parm p;
2284 struct ip6_tnl *t;
2285
2286 t = ip6gre_changelink_common(dev, tb, data, &p, extack);
2287 if (IS_ERR(t))
2288 return PTR_ERR(t);
2289
Lorenzo Bianconi4974d5f2019-02-15 15:10:32 +01002290 ip6erspan_set_version(data, &p);
William Tub80d0b92018-05-18 19:22:28 -07002291 ip6gre_tunnel_unlink_md(ign, t);
Petr Machata2d665032018-05-17 16:36:51 +02002292 ip6gre_tunnel_unlink(ign, t);
2293 ip6erspan_tnl_change(t, &p, !tb[IFLA_MTU]);
William Tub80d0b92018-05-18 19:22:28 -07002294 ip6erspan_tunnel_link_md(ign, t);
Petr Machata2d665032018-05-17 16:36:51 +02002295 ip6gre_tunnel_link(ign, t);
2296 return 0;
2297}
2298
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002299static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
2300 .kind = "ip6gre",
2301 .maxtype = IFLA_GRE_MAX,
2302 .policy = ip6gre_policy,
2303 .priv_size = sizeof(struct ip6_tnl),
2304 .setup = ip6gre_tunnel_setup,
2305 .validate = ip6gre_tunnel_validate,
2306 .newlink = ip6gre_newlink,
2307 .changelink = ip6gre_changelink,
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02002308 .dellink = ip6gre_dellink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002309 .get_size = ip6gre_get_size,
2310 .fill_info = ip6gre_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01002311 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002312};
2313
2314static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
2315 .kind = "ip6gretap",
2316 .maxtype = IFLA_GRE_MAX,
2317 .policy = ip6gre_policy,
2318 .priv_size = sizeof(struct ip6_tnl),
2319 .setup = ip6gre_tap_setup,
2320 .validate = ip6gre_tap_validate,
2321 .newlink = ip6gre_newlink,
2322 .changelink = ip6gre_changelink,
2323 .get_size = ip6gre_get_size,
2324 .fill_info = ip6gre_fill_info,
Nicolas Dichtel3390e392015-01-20 15:15:43 +01002325 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002326};
2327
William Tu5a963eb2017-11-30 11:51:29 -08002328static struct rtnl_link_ops ip6erspan_tap_ops __read_mostly = {
2329 .kind = "ip6erspan",
2330 .maxtype = IFLA_GRE_MAX,
2331 .policy = ip6gre_policy,
2332 .priv_size = sizeof(struct ip6_tnl),
2333 .setup = ip6erspan_tap_setup,
2334 .validate = ip6erspan_tap_validate,
Petr Machata2d665032018-05-17 16:36:51 +02002335 .newlink = ip6erspan_newlink,
2336 .changelink = ip6erspan_changelink,
William Tu5a963eb2017-11-30 11:51:29 -08002337 .get_size = ip6gre_get_size,
2338 .fill_info = ip6gre_fill_info,
2339 .get_link_net = ip6_tnl_get_link_net,
2340};
2341
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002342/*
2343 * And now the modules code and kernel interface.
2344 */
2345
2346static int __init ip6gre_init(void)
2347{
2348 int err;
2349
2350 pr_info("GRE over IPv6 tunneling driver\n");
2351
2352 err = register_pernet_device(&ip6gre_net_ops);
2353 if (err < 0)
2354 return err;
2355
2356 err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
2357 if (err < 0) {
2358 pr_info("%s: can't add protocol\n", __func__);
2359 goto add_proto_failed;
2360 }
2361
2362 err = rtnl_link_register(&ip6gre_link_ops);
2363 if (err < 0)
2364 goto rtnl_link_failed;
2365
2366 err = rtnl_link_register(&ip6gre_tap_ops);
2367 if (err < 0)
2368 goto tap_ops_failed;
2369
William Tu5a963eb2017-11-30 11:51:29 -08002370 err = rtnl_link_register(&ip6erspan_tap_ops);
2371 if (err < 0)
2372 goto erspan_link_failed;
2373
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002374out:
2375 return err;
2376
William Tu5a963eb2017-11-30 11:51:29 -08002377erspan_link_failed:
2378 rtnl_link_unregister(&ip6gre_tap_ops);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002379tap_ops_failed:
2380 rtnl_link_unregister(&ip6gre_link_ops);
2381rtnl_link_failed:
2382 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
2383add_proto_failed:
2384 unregister_pernet_device(&ip6gre_net_ops);
2385 goto out;
2386}
2387
2388static void __exit ip6gre_fini(void)
2389{
2390 rtnl_link_unregister(&ip6gre_tap_ops);
2391 rtnl_link_unregister(&ip6gre_link_ops);
William Tu5a963eb2017-11-30 11:51:29 -08002392 rtnl_link_unregister(&ip6erspan_tap_ops);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002393 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
2394 unregister_pernet_device(&ip6gre_net_ops);
2395}
2396
2397module_init(ip6gre_init);
2398module_exit(ip6gre_fini);
2399MODULE_LICENSE("GPL");
2400MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
2401MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
2402MODULE_ALIAS_RTNL_LINK("ip6gre");
Nicolas Dichtel5a4ee9a2014-09-24 11:03:00 +02002403MODULE_ALIAS_RTNL_LINK("ip6gretap");
William Tu94d7d8f2017-12-13 16:38:57 -08002404MODULE_ALIAS_RTNL_LINK("ip6erspan");
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002405MODULE_ALIAS_NETDEV("ip6gre0");