blob: 9bd110371fe374f92b35199053bb62db7ebbc1aa [file] [log] [blame]
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001/*
2 * GRE over IPv6 protocol decoder.
3 *
4 * Authors: Dmitry Kozlov (xeb@mail.ru)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
15#include <linux/capability.h>
16#include <linux/module.h>
17#include <linux/types.h>
18#include <linux/kernel.h>
19#include <linux/slab.h>
20#include <linux/uaccess.h>
21#include <linux/skbuff.h>
22#include <linux/netdevice.h>
23#include <linux/in.h>
24#include <linux/tcp.h>
25#include <linux/udp.h>
26#include <linux/if_arp.h>
xeb@mail.ruc12b3952012-08-10 00:51:50 +000027#include <linux/init.h>
28#include <linux/in6.h>
29#include <linux/inetdevice.h>
30#include <linux/igmp.h>
31#include <linux/netfilter_ipv4.h>
32#include <linux/etherdevice.h>
33#include <linux/if_ether.h>
34#include <linux/hash.h>
35#include <linux/if_tunnel.h>
36#include <linux/ip6_tunnel.h>
37
38#include <net/sock.h>
39#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000040#include <net/ip_tunnels.h>
xeb@mail.ruc12b3952012-08-10 00:51:50 +000041#include <net/icmp.h>
42#include <net/protocol.h>
43#include <net/addrconf.h>
44#include <net/arp.h>
45#include <net/checksum.h>
46#include <net/dsfield.h>
47#include <net/inet_ecn.h>
48#include <net/xfrm.h>
49#include <net/net_namespace.h>
50#include <net/netns/generic.h>
51#include <net/rtnetlink.h>
52
53#include <net/ipv6.h>
54#include <net/ip6_fib.h>
55#include <net/ip6_route.h>
56#include <net/ip6_tunnel.h>
Tom Herbert308edfdf2016-04-29 17:12:17 -070057#include <net/gre.h>
William Tu5a963eb2017-11-30 11:51:29 -080058#include <net/erspan.h>
William Tu6712abc2017-12-01 15:26:08 -080059#include <net/dst_metadata.h>
xeb@mail.ruc12b3952012-08-10 00:51:50 +000060
61
stephen hemmingereccc1bb2012-09-25 11:02:48 +000062static bool log_ecn_error = true;
63module_param(log_ecn_error, bool, 0644);
64MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
65
Jiri Kosinae87a8f22016-08-10 11:03:35 +020066#define IP6_GRE_HASH_SIZE_SHIFT 5
67#define IP6_GRE_HASH_SIZE (1 << IP6_GRE_HASH_SIZE_SHIFT)
xeb@mail.ruc12b3952012-08-10 00:51:50 +000068
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030069static unsigned int ip6gre_net_id __read_mostly;
xeb@mail.ruc12b3952012-08-10 00:51:50 +000070struct ip6gre_net {
Jiri Kosinae87a8f22016-08-10 11:03:35 +020071 struct ip6_tnl __rcu *tunnels[4][IP6_GRE_HASH_SIZE];
xeb@mail.ruc12b3952012-08-10 00:51:50 +000072
William Tu6712abc2017-12-01 15:26:08 -080073 struct ip6_tnl __rcu *collect_md_tun;
xeb@mail.ruc12b3952012-08-10 00:51:50 +000074 struct net_device *fb_tunnel_dev;
75};
76
77static struct rtnl_link_ops ip6gre_link_ops __read_mostly;
Nicolas Dichtel22f08062014-04-22 10:15:24 +020078static struct rtnl_link_ops ip6gre_tap_ops __read_mostly;
William Tu5a963eb2017-11-30 11:51:29 -080079static struct rtnl_link_ops ip6erspan_tap_ops __read_mostly;
xeb@mail.ruc12b3952012-08-10 00:51:50 +000080static int ip6gre_tunnel_init(struct net_device *dev);
81static void ip6gre_tunnel_setup(struct net_device *dev);
82static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t);
83static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu);
84
85/* Tunnel hash table */
86
87/*
88 4 hash tables:
89
90 3: (remote,local)
91 2: (remote,*)
92 1: (*,local)
93 0: (*,*)
94
95 We require exact key match i.e. if a key is present in packet
96 it will match only tunnel with the same key; if it is not present,
97 it will match only keyless tunnel.
98
99 All keysless packets, if not matched configured keyless tunnels
100 will match fallback tunnel.
101 */
102
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200103#define HASH_KEY(key) (((__force u32)key^((__force u32)key>>4))&(IP6_GRE_HASH_SIZE - 1))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000104static u32 HASH_ADDR(const struct in6_addr *addr)
105{
106 u32 hash = ipv6_addr_hash(addr);
107
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200108 return hash_32(hash, IP6_GRE_HASH_SIZE_SHIFT);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000109}
110
111#define tunnels_r_l tunnels[3]
112#define tunnels_r tunnels[2]
113#define tunnels_l tunnels[1]
114#define tunnels_wc tunnels[0]
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000115
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000116/* Given src, dst and key, find appropriate for input tunnel. */
117
118static struct ip6_tnl *ip6gre_tunnel_lookup(struct net_device *dev,
119 const struct in6_addr *remote, const struct in6_addr *local,
120 __be32 key, __be16 gre_proto)
121{
122 struct net *net = dev_net(dev);
123 int link = dev->ifindex;
124 unsigned int h0 = HASH_ADDR(remote);
125 unsigned int h1 = HASH_KEY(key);
126 struct ip6_tnl *t, *cand = NULL;
127 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
William Tu5a963eb2017-11-30 11:51:29 -0800128 int dev_type = (gre_proto == htons(ETH_P_TEB) ||
129 gre_proto == htons(ETH_P_ERSPAN)) ?
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000130 ARPHRD_ETHER : ARPHRD_IP6GRE;
131 int score, cand_score = 4;
132
Amerigo Wange086cad2012-11-11 21:52:34 +0000133 for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000134 if (!ipv6_addr_equal(local, &t->parms.laddr) ||
135 !ipv6_addr_equal(remote, &t->parms.raddr) ||
136 key != t->parms.i_key ||
137 !(t->dev->flags & IFF_UP))
138 continue;
139
140 if (t->dev->type != ARPHRD_IP6GRE &&
141 t->dev->type != dev_type)
142 continue;
143
144 score = 0;
145 if (t->parms.link != link)
146 score |= 1;
147 if (t->dev->type != dev_type)
148 score |= 2;
149 if (score == 0)
150 return t;
151
152 if (score < cand_score) {
153 cand = t;
154 cand_score = score;
155 }
156 }
157
Amerigo Wange086cad2012-11-11 21:52:34 +0000158 for_each_ip_tunnel_rcu(t, ign->tunnels_r[h0 ^ h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000159 if (!ipv6_addr_equal(remote, &t->parms.raddr) ||
160 key != t->parms.i_key ||
161 !(t->dev->flags & IFF_UP))
162 continue;
163
164 if (t->dev->type != ARPHRD_IP6GRE &&
165 t->dev->type != dev_type)
166 continue;
167
168 score = 0;
169 if (t->parms.link != link)
170 score |= 1;
171 if (t->dev->type != dev_type)
172 score |= 2;
173 if (score == 0)
174 return t;
175
176 if (score < cand_score) {
177 cand = t;
178 cand_score = score;
179 }
180 }
181
Amerigo Wange086cad2012-11-11 21:52:34 +0000182 for_each_ip_tunnel_rcu(t, ign->tunnels_l[h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000183 if ((!ipv6_addr_equal(local, &t->parms.laddr) &&
184 (!ipv6_addr_equal(local, &t->parms.raddr) ||
185 !ipv6_addr_is_multicast(local))) ||
186 key != t->parms.i_key ||
187 !(t->dev->flags & IFF_UP))
188 continue;
189
190 if (t->dev->type != ARPHRD_IP6GRE &&
191 t->dev->type != dev_type)
192 continue;
193
194 score = 0;
195 if (t->parms.link != link)
196 score |= 1;
197 if (t->dev->type != dev_type)
198 score |= 2;
199 if (score == 0)
200 return t;
201
202 if (score < cand_score) {
203 cand = t;
204 cand_score = score;
205 }
206 }
207
Amerigo Wange086cad2012-11-11 21:52:34 +0000208 for_each_ip_tunnel_rcu(t, ign->tunnels_wc[h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000209 if (t->parms.i_key != key ||
210 !(t->dev->flags & IFF_UP))
211 continue;
212
213 if (t->dev->type != ARPHRD_IP6GRE &&
214 t->dev->type != dev_type)
215 continue;
216
217 score = 0;
218 if (t->parms.link != link)
219 score |= 1;
220 if (t->dev->type != dev_type)
221 score |= 2;
222 if (score == 0)
223 return t;
224
225 if (score < cand_score) {
226 cand = t;
227 cand_score = score;
228 }
229 }
230
Ian Morris53b24b82015-03-29 14:00:05 +0100231 if (cand)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000232 return cand;
233
William Tu6712abc2017-12-01 15:26:08 -0800234 t = rcu_dereference(ign->collect_md_tun);
235 if (t && t->dev->flags & IFF_UP)
236 return t;
237
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000238 dev = ign->fb_tunnel_dev;
239 if (dev->flags & IFF_UP)
240 return netdev_priv(dev);
241
242 return NULL;
243}
244
245static struct ip6_tnl __rcu **__ip6gre_bucket(struct ip6gre_net *ign,
246 const struct __ip6_tnl_parm *p)
247{
248 const struct in6_addr *remote = &p->raddr;
249 const struct in6_addr *local = &p->laddr;
250 unsigned int h = HASH_KEY(p->i_key);
251 int prio = 0;
252
253 if (!ipv6_addr_any(local))
254 prio |= 1;
255 if (!ipv6_addr_any(remote) && !ipv6_addr_is_multicast(remote)) {
256 prio |= 2;
257 h ^= HASH_ADDR(remote);
258 }
259
260 return &ign->tunnels[prio][h];
261}
262
263static inline struct ip6_tnl __rcu **ip6gre_bucket(struct ip6gre_net *ign,
264 const struct ip6_tnl *t)
265{
266 return __ip6gre_bucket(ign, &t->parms);
267}
268
269static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t)
270{
271 struct ip6_tnl __rcu **tp = ip6gre_bucket(ign, t);
272
William Tu6712abc2017-12-01 15:26:08 -0800273 if (t->parms.collect_md)
274 rcu_assign_pointer(ign->collect_md_tun, t);
275
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000276 rcu_assign_pointer(t->next, rtnl_dereference(*tp));
277 rcu_assign_pointer(*tp, t);
278}
279
280static void ip6gre_tunnel_unlink(struct ip6gre_net *ign, struct ip6_tnl *t)
281{
282 struct ip6_tnl __rcu **tp;
283 struct ip6_tnl *iter;
284
William Tu6712abc2017-12-01 15:26:08 -0800285 if (t->parms.collect_md)
286 rcu_assign_pointer(ign->collect_md_tun, NULL);
287
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000288 for (tp = ip6gre_bucket(ign, t);
289 (iter = rtnl_dereference(*tp)) != NULL;
290 tp = &iter->next) {
291 if (t == iter) {
292 rcu_assign_pointer(*tp, t->next);
293 break;
294 }
295 }
296}
297
298static struct ip6_tnl *ip6gre_tunnel_find(struct net *net,
299 const struct __ip6_tnl_parm *parms,
300 int type)
301{
302 const struct in6_addr *remote = &parms->raddr;
303 const struct in6_addr *local = &parms->laddr;
304 __be32 key = parms->i_key;
305 int link = parms->link;
306 struct ip6_tnl *t;
307 struct ip6_tnl __rcu **tp;
308 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
309
310 for (tp = __ip6gre_bucket(ign, parms);
311 (t = rtnl_dereference(*tp)) != NULL;
312 tp = &t->next)
313 if (ipv6_addr_equal(local, &t->parms.laddr) &&
314 ipv6_addr_equal(remote, &t->parms.raddr) &&
315 key == t->parms.i_key &&
316 link == t->parms.link &&
317 type == t->dev->type)
318 break;
319
320 return t;
321}
322
323static struct ip6_tnl *ip6gre_tunnel_locate(struct net *net,
324 const struct __ip6_tnl_parm *parms, int create)
325{
326 struct ip6_tnl *t, *nt;
327 struct net_device *dev;
328 char name[IFNAMSIZ];
329 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
330
331 t = ip6gre_tunnel_find(net, parms, ARPHRD_IP6GRE);
Steffen Klassertcd0a0bd2014-09-22 10:07:26 +0200332 if (t && create)
333 return NULL;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000334 if (t || !create)
335 return t;
336
337 if (parms->name[0])
338 strlcpy(name, parms->name, IFNAMSIZ);
339 else
340 strcpy(name, "ip6gre%d");
341
Tom Gundersenc835a672014-07-14 16:37:24 +0200342 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
343 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000344 if (!dev)
345 return NULL;
346
347 dev_net_set(dev, net);
348
349 nt = netdev_priv(dev);
350 nt->parms = *parms;
351 dev->rtnl_link_ops = &ip6gre_link_ops;
352
353 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200354 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000355 ip6gre_tnl_link_config(nt, 1);
356
357 if (register_netdevice(dev) < 0)
358 goto failed_free;
359
360 /* Can use a lockless transmit, unless we generate output sequences */
Tom Herbertb45bd1d2016-05-09 17:12:12 -0700361 if (!(nt->parms.o_flags & TUNNEL_SEQ))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000362 dev->features |= NETIF_F_LLTX;
363
364 dev_hold(dev);
365 ip6gre_tunnel_link(ign, nt);
366 return nt;
367
368failed_free:
369 free_netdev(dev);
370 return NULL;
371}
372
373static void ip6gre_tunnel_uninit(struct net_device *dev)
374{
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200375 struct ip6_tnl *t = netdev_priv(dev);
376 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000377
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200378 ip6gre_tunnel_unlink(ign, t);
Paolo Abeni607f7252016-02-12 15:43:54 +0100379 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000380 dev_put(dev);
381}
382
383
384static void ip6gre_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Eric Dumazet78920322017-02-04 23:18:55 -0800385 u8 type, u8 code, int offset, __be32 info)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000386{
Xin Long929fc032017-11-11 19:06:49 +0800387 struct net *net = dev_net(skb->dev);
Eric Dumazet78920322017-02-04 23:18:55 -0800388 const struct gre_base_hdr *greh;
389 const struct ipv6hdr *ipv6h;
390 int grehlen = sizeof(*greh);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000391 struct ip6_tnl *t;
Eric Dumazet78920322017-02-04 23:18:55 -0800392 int key_off = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000393 __be16 flags;
Eric Dumazet78920322017-02-04 23:18:55 -0800394 __be32 key;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000395
Eric Dumazet78920322017-02-04 23:18:55 -0800396 if (!pskb_may_pull(skb, offset + grehlen))
397 return;
398 greh = (const struct gre_base_hdr *)(skb->data + offset);
399 flags = greh->flags;
400 if (flags & (GRE_VERSION | GRE_ROUTING))
401 return;
402 if (flags & GRE_CSUM)
403 grehlen += 4;
404 if (flags & GRE_KEY) {
405 key_off = grehlen + offset;
406 grehlen += 4;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000407 }
408
Eric Dumazet78920322017-02-04 23:18:55 -0800409 if (!pskb_may_pull(skb, offset + grehlen))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000410 return;
Eric Dumazetb87fb392012-08-19 03:47:30 +0000411 ipv6h = (const struct ipv6hdr *)skb->data;
Eric Dumazet78920322017-02-04 23:18:55 -0800412 greh = (const struct gre_base_hdr *)(skb->data + offset);
413 key = key_off ? *(__be32 *)(skb->data + key_off) : 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000414
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000415 t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr,
Eric Dumazet78920322017-02-04 23:18:55 -0800416 key, greh->protocol);
Ian Morris63159f22015-03-29 14:00:04 +0100417 if (!t)
stephen hemminger0c5794a2012-09-24 18:12:24 +0000418 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000419
420 switch (type) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000421 struct ipv6_tlv_tnl_enc_lim *tel;
Xin Longfe1a4ca2017-11-11 19:06:50 +0800422 __u32 teli;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000423 case ICMPV6_DEST_UNREACH:
Matt Bennetta46496c2015-09-23 16:58:31 +1200424 net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
425 t->parms.name);
Xin Longf8d20b42017-10-26 19:23:27 +0800426 if (code != ICMPV6_PORT_UNREACH)
427 break;
428 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000429 case ICMPV6_TIME_EXCEED:
430 if (code == ICMPV6_EXC_HOPLIMIT) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200431 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
432 t->parms.name);
Xin Longf8d20b42017-10-26 19:23:27 +0800433 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000434 }
Xin Longf8d20b42017-10-26 19:23:27 +0800435 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000436 case ICMPV6_PARAMPROB:
437 teli = 0;
438 if (code == ICMPV6_HDR_FIELD)
439 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
440
Sabrina Dubrocad1e158e2015-02-04 15:25:09 +0100441 if (teli && teli == be32_to_cpu(info) - 2) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000442 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
443 if (tel->encap_limit == 0) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200444 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
445 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000446 }
447 } else {
Matt Bennetta46496c2015-09-23 16:58:31 +1200448 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
449 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000450 }
Xin Longf8d20b42017-10-26 19:23:27 +0800451 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000452 case ICMPV6_PKT_TOOBIG:
Xin Longfe1a4ca2017-11-11 19:06:50 +0800453 ip6_update_pmtu(skb, net, info, 0, 0, sock_net_uid(net, NULL));
Xin Longf8d20b42017-10-26 19:23:27 +0800454 return;
Xin Long929fc032017-11-11 19:06:49 +0800455 case NDISC_REDIRECT:
456 ip6_redirect(skb, net, skb->dev->ifindex, 0,
457 sock_net_uid(net, NULL));
458 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000459 }
460
461 if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
462 t->err_count++;
463 else
464 t->err_count = 1;
465 t->err_time = jiffies;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000466}
467
Tom Herbert308edfdf2016-04-29 17:12:17 -0700468static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000469{
470 const struct ipv6hdr *ipv6h;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000471 struct ip6_tnl *tunnel;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000472
473 ipv6h = ipv6_hdr(skb);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000474 tunnel = ip6gre_tunnel_lookup(skb->dev,
Tom Herbert308edfdf2016-04-29 17:12:17 -0700475 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
476 tpi->proto);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000477 if (tunnel) {
William Tu6712abc2017-12-01 15:26:08 -0800478 if (tunnel->parms.collect_md) {
479 struct metadata_dst *tun_dst;
480 __be64 tun_id;
481 __be16 flags;
482
483 flags = tpi->flags;
484 tun_id = key32_to_tunnel_id(tpi->key);
485
486 tun_dst = ipv6_tun_rx_dst(skb, flags, tun_id, 0);
487 if (!tun_dst)
488 return PACKET_REJECT;
489
490 ip6_tnl_rcv(tunnel, skb, tpi, tun_dst, log_ecn_error);
491 } else {
492 ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
493 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000494
Tom Herbert308edfdf2016-04-29 17:12:17 -0700495 return PACKET_RCVD;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000496 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000497
Tom Herbert308edfdf2016-04-29 17:12:17 -0700498 return PACKET_REJECT;
499}
500
William Tu5a963eb2017-11-30 11:51:29 -0800501static int ip6erspan_rcv(struct sk_buff *skb, int gre_hdr_len,
502 struct tnl_ptk_info *tpi)
503{
William Tu1d7e2ed2017-12-13 16:38:55 -0800504 struct erspan_base_hdr *ershdr;
505 struct erspan_metadata *pkt_md;
William Tu5a963eb2017-11-30 11:51:29 -0800506 const struct ipv6hdr *ipv6h;
William Tu5a963eb2017-11-30 11:51:29 -0800507 struct ip6_tnl *tunnel;
William Tu1d7e2ed2017-12-13 16:38:55 -0800508 u8 ver;
William Tu5a963eb2017-11-30 11:51:29 -0800509
William Tu5a963eb2017-11-30 11:51:29 -0800510 if (unlikely(!pskb_may_pull(skb, sizeof(*ershdr))))
511 return PACKET_REJECT;
512
Haishuang Yan293a1992017-12-20 09:53:19 +0800513 ipv6h = ipv6_hdr(skb);
514 ershdr = (struct erspan_base_hdr *)skb->data;
William Tu1d7e2ed2017-12-13 16:38:55 -0800515 ver = (ntohs(ershdr->ver_vlan) & VER_MASK) >> VER_OFFSET;
William Tu5a963eb2017-11-30 11:51:29 -0800516 tpi->key = cpu_to_be32(ntohs(ershdr->session_id) & ID_MASK);
William Tu5a963eb2017-11-30 11:51:29 -0800517
518 tunnel = ip6gre_tunnel_lookup(skb->dev,
519 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
520 tpi->proto);
521 if (tunnel) {
William Tu1d7e2ed2017-12-13 16:38:55 -0800522 int len = erspan_hdr_len(ver);
523
524 if (unlikely(!pskb_may_pull(skb, len)))
William Tuae3e1332017-12-15 14:27:43 -0800525 return PACKET_REJECT;
William Tu1d7e2ed2017-12-13 16:38:55 -0800526
William Tud91e8db52017-12-15 14:27:44 -0800527 ershdr = (struct erspan_base_hdr *)skb->data;
528 pkt_md = (struct erspan_metadata *)(ershdr + 1);
529
William Tu1d7e2ed2017-12-13 16:38:55 -0800530 if (__iptunnel_pull_header(skb, len,
William Tu5a963eb2017-11-30 11:51:29 -0800531 htons(ETH_P_TEB),
532 false, false) < 0)
533 return PACKET_REJECT;
534
William Tuef7baf52017-12-05 15:15:44 -0800535 if (tunnel->parms.collect_md) {
536 struct metadata_dst *tun_dst;
537 struct ip_tunnel_info *info;
538 struct erspan_metadata *md;
539 __be64 tun_id;
540 __be16 flags;
541
542 tpi->flags |= TUNNEL_KEY;
543 flags = tpi->flags;
544 tun_id = key32_to_tunnel_id(tpi->key);
545
546 tun_dst = ipv6_tun_rx_dst(skb, flags, tun_id,
547 sizeof(*md));
548 if (!tun_dst)
549 return PACKET_REJECT;
550
551 info = &tun_dst->u.tun_info;
552 md = ip_tunnel_info_opts(info);
553 if (!md)
554 return PACKET_REJECT;
555
William Tu1d7e2ed2017-12-13 16:38:55 -0800556 memcpy(md, pkt_md, sizeof(*md));
William Tu94d7d8f2017-12-13 16:38:57 -0800557 md->version = ver;
William Tuef7baf52017-12-05 15:15:44 -0800558 info->key.tun_flags |= TUNNEL_ERSPAN_OPT;
559 info->options_len = sizeof(*md);
560
561 ip6_tnl_rcv(tunnel, skb, tpi, tun_dst, log_ecn_error);
562
563 } else {
William Tu94d7d8f2017-12-13 16:38:57 -0800564 tunnel->parms.erspan_ver = ver;
565
566 if (ver == 1) {
567 tunnel->parms.index = ntohl(pkt_md->u.index);
568 } else {
569 u16 md2_flags;
570 u16 dir, hwid;
571
572 md2_flags = ntohs(pkt_md->u.md2.flags);
573 dir = (md2_flags & DIR_MASK) >> DIR_OFFSET;
574 hwid = (md2_flags & HWID_MASK) >> HWID_OFFSET;
575 tunnel->parms.dir = dir;
576 tunnel->parms.hwid = hwid;
577 }
578
William Tuef7baf52017-12-05 15:15:44 -0800579 ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
580 }
William Tu5a963eb2017-11-30 11:51:29 -0800581
582 return PACKET_RCVD;
583 }
584
585 return PACKET_REJECT;
586}
587
Tom Herbert308edfdf2016-04-29 17:12:17 -0700588static int gre_rcv(struct sk_buff *skb)
589{
590 struct tnl_ptk_info tpi;
591 bool csum_err = false;
592 int hdr_len;
593
Eric Dumazete582615ad2016-06-15 06:24:00 -0700594 hdr_len = gre_parse_header(skb, &tpi, &csum_err, htons(ETH_P_IPV6), 0);
Jiri Bencf132ae72016-05-03 15:00:21 +0200595 if (hdr_len < 0)
Tom Herbert308edfdf2016-04-29 17:12:17 -0700596 goto drop;
597
598 if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false))
599 goto drop;
600
William Tu94d7d8f2017-12-13 16:38:57 -0800601 if (unlikely(tpi.proto == htons(ETH_P_ERSPAN) ||
602 tpi.proto == htons(ETH_P_ERSPAN2))) {
William Tu5a963eb2017-11-30 11:51:29 -0800603 if (ip6erspan_rcv(skb, hdr_len, &tpi) == PACKET_RCVD)
604 return 0;
605 goto drop;
606 }
607
Tom Herbert308edfdf2016-04-29 17:12:17 -0700608 if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD)
609 return 0;
610
611 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000612drop:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000613 kfree_skb(skb);
614 return 0;
615}
616
Tom Herbertb05229f2016-04-29 17:12:21 -0700617static int gre_handle_offloads(struct sk_buff *skb, bool csum)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000618{
Tom Herbertb05229f2016-04-29 17:12:21 -0700619 return iptunnel_handle_offloads(skb,
620 csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000621}
622
William Tu898b29792017-11-30 11:51:28 -0800623static void prepare_ip6gre_xmit_ipv4(struct sk_buff *skb,
624 struct net_device *dev,
625 struct flowi6 *fl6, __u8 *dsfield,
626 int *encap_limit)
627{
628 const struct iphdr *iph = ip_hdr(skb);
629 struct ip6_tnl *t = netdev_priv(dev);
630
631 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
632 *encap_limit = t->parms.encap_limit;
633
634 memcpy(fl6, &t->fl.u.ip6, sizeof(*fl6));
635
636 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
637 *dsfield = ipv4_get_dsfield(iph);
638 else
639 *dsfield = ip6_tclass(t->parms.flowinfo);
640
641 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
642 fl6->flowi6_mark = skb->mark;
643 else
644 fl6->flowi6_mark = t->parms.fwmark;
645
646 fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL);
647}
648
649static int prepare_ip6gre_xmit_ipv6(struct sk_buff *skb,
650 struct net_device *dev,
651 struct flowi6 *fl6, __u8 *dsfield,
652 int *encap_limit)
653{
654 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
655 struct ip6_tnl *t = netdev_priv(dev);
656 __u16 offset;
657
658 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
659 /* ip6_tnl_parse_tlv_enc_lim() might have reallocated skb->head */
660
661 if (offset > 0) {
662 struct ipv6_tlv_tnl_enc_lim *tel;
663
664 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
665 if (tel->encap_limit == 0) {
666 icmpv6_send(skb, ICMPV6_PARAMPROB,
667 ICMPV6_HDR_FIELD, offset + 2);
668 return -1;
669 }
670 *encap_limit = tel->encap_limit - 1;
671 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) {
672 *encap_limit = t->parms.encap_limit;
673 }
674
675 memcpy(fl6, &t->fl.u.ip6, sizeof(*fl6));
676
677 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
678 *dsfield = ipv6_get_dsfield(ipv6h);
679 else
680 *dsfield = ip6_tclass(t->parms.flowinfo);
681
682 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
683 fl6->flowlabel |= ip6_flowlabel(ipv6h);
684
685 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
686 fl6->flowi6_mark = skb->mark;
687 else
688 fl6->flowi6_mark = t->parms.fwmark;
689
690 fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL);
691
692 return 0;
693}
694
Tom Herbertb05229f2016-04-29 17:12:21 -0700695static netdev_tx_t __gre6_xmit(struct sk_buff *skb,
696 struct net_device *dev, __u8 dsfield,
697 struct flowi6 *fl6, int encap_limit,
698 __u32 *pmtu, __be16 proto)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000699{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000700 struct ip6_tnl *tunnel = netdev_priv(dev);
Xin Long8aec4952017-10-26 19:27:17 +0800701 __be16 protocol;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000702
703 if (dev->type == ARPHRD_ETHER)
704 IPCB(skb)->flags = 0;
705
Tom Herbertb05229f2016-04-29 17:12:21 -0700706 if (dev->header_ops && dev->type == ARPHRD_IP6GRE)
707 fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr;
708 else
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000709 fl6->daddr = tunnel->parms.raddr;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000710
Tom Herbertb05229f2016-04-29 17:12:21 -0700711 if (tunnel->parms.o_flags & TUNNEL_SEQ)
712 tunnel->o_seqno++;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000713
Tom Herbertb05229f2016-04-29 17:12:21 -0700714 /* Push GRE header. */
Xin Long8aec4952017-10-26 19:27:17 +0800715 protocol = (dev->type == ARPHRD_ETHER) ? htons(ETH_P_TEB) : proto;
William Tu6712abc2017-12-01 15:26:08 -0800716
717 if (tunnel->parms.collect_md) {
718 struct ip_tunnel_info *tun_info;
719 const struct ip_tunnel_key *key;
720 __be16 flags;
721
722 tun_info = skb_tunnel_info(skb);
723 if (unlikely(!tun_info ||
724 !(tun_info->mode & IP_TUNNEL_INFO_TX) ||
725 ip_tunnel_info_af(tun_info) != AF_INET6))
726 return -EINVAL;
727
728 key = &tun_info->key;
729 memset(fl6, 0, sizeof(*fl6));
730 fl6->flowi6_proto = IPPROTO_GRE;
731 fl6->daddr = key->u.ipv6.dst;
732 fl6->flowlabel = key->label;
733 fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL);
734
735 dsfield = key->tos;
736 flags = key->tun_flags & (TUNNEL_CSUM | TUNNEL_KEY);
737 tunnel->tun_hlen = gre_calc_hlen(flags);
738
739 gre_build_header(skb, tunnel->tun_hlen,
740 flags, protocol,
741 tunnel_id_to_key32(tun_info->key.tun_id), 0);
742
743 } else {
744 gre_build_header(skb, tunnel->tun_hlen, tunnel->parms.o_flags,
745 protocol, tunnel->parms.o_key,
746 htonl(tunnel->o_seqno));
747 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000748
Tom Herbertb05229f2016-04-29 17:12:21 -0700749 return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu,
750 NEXTHDR_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000751}
752
753static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev)
754{
755 struct ip6_tnl *t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000756 int encap_limit = -1;
757 struct flowi6 fl6;
William Tu6712abc2017-12-01 15:26:08 -0800758 __u8 dsfield = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000759 __u32 mtu;
760 int err;
761
Bernie Harris5146d1f2016-02-22 12:58:05 +1300762 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
763
William Tu6712abc2017-12-01 15:26:08 -0800764 if (!t->parms.collect_md)
765 prepare_ip6gre_xmit_ipv4(skb, dev, &fl6,
766 &dsfield, &encap_limit);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +0900767
Tom Herbertb05229f2016-04-29 17:12:21 -0700768 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
769 if (err)
770 return -1;
771
772 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
773 skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000774 if (err != 0) {
775 /* XXX: send ICMP error even if DF is not set. */
776 if (err == -EMSGSIZE)
777 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
778 htonl(mtu));
779 return -1;
780 }
781
782 return 0;
783}
784
785static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev)
786{
787 struct ip6_tnl *t = netdev_priv(dev);
788 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
789 int encap_limit = -1;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000790 struct flowi6 fl6;
William Tu6712abc2017-12-01 15:26:08 -0800791 __u8 dsfield = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000792 __u32 mtu;
793 int err;
794
795 if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
796 return -1;
797
William Tu6712abc2017-12-01 15:26:08 -0800798 if (!t->parms.collect_md &&
799 prepare_ip6gre_xmit_ipv6(skb, dev, &fl6, &dsfield, &encap_limit))
William Tu898b29792017-11-30 11:51:28 -0800800 return -1;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +0900801
Tom Herbertb05229f2016-04-29 17:12:21 -0700802 if (gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM)))
803 return -1;
804
805 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit,
806 &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000807 if (err != 0) {
808 if (err == -EMSGSIZE)
809 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
810 return -1;
811 }
812
813 return 0;
814}
815
816/**
817 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
818 * @t: the outgoing tunnel device
819 * @hdr: IPv6 header from the incoming packet
820 *
821 * Description:
822 * Avoid trivial tunneling loop by checking that tunnel exit-point
823 * doesn't match source of incoming packet.
824 *
825 * Return:
826 * 1 if conflict,
827 * 0 else
828 **/
829
830static inline bool ip6gre_tnl_addr_conflict(const struct ip6_tnl *t,
831 const struct ipv6hdr *hdr)
832{
833 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
834}
835
836static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev)
837{
838 struct ip6_tnl *t = netdev_priv(dev);
839 int encap_limit = -1;
840 struct flowi6 fl6;
841 __u32 mtu;
842 int err;
843
844 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
845 encap_limit = t->parms.encap_limit;
846
William Tu6712abc2017-12-01 15:26:08 -0800847 if (!t->parms.collect_md)
848 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000849
Tom Herbertb05229f2016-04-29 17:12:21 -0700850 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
851 if (err)
852 return err;
853
854 err = __gre6_xmit(skb, dev, 0, &fl6, encap_limit, &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000855
856 return err;
857}
858
859static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
860 struct net_device *dev)
861{
862 struct ip6_tnl *t = netdev_priv(dev);
863 struct net_device_stats *stats = &t->dev->stats;
864 int ret;
865
Steffen Klassertd5005142014-11-05 08:02:48 +0100866 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
Tommi Rantala41ab3e32013-02-06 03:24:02 +0000867 goto tx_err;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000868
869 switch (skb->protocol) {
870 case htons(ETH_P_IP):
871 ret = ip6gre_xmit_ipv4(skb, dev);
872 break;
873 case htons(ETH_P_IPV6):
874 ret = ip6gre_xmit_ipv6(skb, dev);
875 break;
876 default:
877 ret = ip6gre_xmit_other(skb, dev);
878 break;
879 }
880
881 if (ret < 0)
882 goto tx_err;
883
884 return NETDEV_TX_OK;
885
886tx_err:
887 stats->tx_errors++;
888 stats->tx_dropped++;
889 kfree_skb(skb);
890 return NETDEV_TX_OK;
891}
892
William Tu5a963eb2017-11-30 11:51:29 -0800893static netdev_tx_t ip6erspan_tunnel_xmit(struct sk_buff *skb,
894 struct net_device *dev)
895{
896 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
897 struct ip6_tnl *t = netdev_priv(dev);
898 struct dst_entry *dst = skb_dst(skb);
899 struct net_device_stats *stats;
900 bool truncate = false;
901 int encap_limit = -1;
902 __u8 dsfield = false;
903 struct flowi6 fl6;
904 int err = -EINVAL;
905 __u32 mtu;
906
907 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
908 goto tx_err;
909
910 if (gre_handle_offloads(skb, false))
911 goto tx_err;
912
William Tu5a963eb2017-11-30 11:51:29 -0800913 if (skb->len > dev->mtu + dev->hard_header_len) {
914 pskb_trim(skb, dev->mtu + dev->hard_header_len);
915 truncate = true;
916 }
917
William Tu5a963eb2017-11-30 11:51:29 -0800918 t->parms.o_flags &= ~TUNNEL_KEY;
William Tu5a963eb2017-11-30 11:51:29 -0800919 IPCB(skb)->flags = 0;
William Tuef7baf52017-12-05 15:15:44 -0800920
921 /* For collect_md mode, derive fl6 from the tunnel key,
922 * for native mode, call prepare_ip6gre_xmit_{ipv4,ipv6}.
923 */
924 if (t->parms.collect_md) {
925 struct ip_tunnel_info *tun_info;
926 const struct ip_tunnel_key *key;
927 struct erspan_metadata *md;
928
929 tun_info = skb_tunnel_info(skb);
930 if (unlikely(!tun_info ||
931 !(tun_info->mode & IP_TUNNEL_INFO_TX) ||
932 ip_tunnel_info_af(tun_info) != AF_INET6))
933 return -EINVAL;
934
935 key = &tun_info->key;
936 memset(&fl6, 0, sizeof(fl6));
937 fl6.flowi6_proto = IPPROTO_GRE;
938 fl6.daddr = key->u.ipv6.dst;
939 fl6.flowlabel = key->label;
940 fl6.flowi6_uid = sock_net_uid(dev_net(dev), NULL);
941
942 dsfield = key->tos;
943 md = ip_tunnel_info_opts(tun_info);
944 if (!md)
945 goto tx_err;
946
William Tu94d7d8f2017-12-13 16:38:57 -0800947 if (md->version == 1) {
948 erspan_build_header(skb,
949 tunnel_id_to_key32(key->tun_id),
950 ntohl(md->u.index), truncate,
951 false);
952 } else if (md->version == 2) {
953 u16 md2_flags;
954 u16 dir, hwid;
William Tuef7baf52017-12-05 15:15:44 -0800955
William Tu94d7d8f2017-12-13 16:38:57 -0800956 md2_flags = ntohs(md->u.md2.flags);
957 dir = (md2_flags & DIR_MASK) >> DIR_OFFSET;
958 hwid = (md2_flags & HWID_MASK) >> HWID_OFFSET;
959
960 erspan_build_header_v2(skb,
961 tunnel_id_to_key32(key->tun_id),
962 dir, hwid, truncate,
963 false);
964 }
William Tuef7baf52017-12-05 15:15:44 -0800965 } else {
966 switch (skb->protocol) {
967 case htons(ETH_P_IP):
968 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
969 prepare_ip6gre_xmit_ipv4(skb, dev, &fl6,
970 &dsfield, &encap_limit);
971 break;
972 case htons(ETH_P_IPV6):
973 if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
974 goto tx_err;
975 if (prepare_ip6gre_xmit_ipv6(skb, dev, &fl6,
976 &dsfield, &encap_limit))
977 goto tx_err;
978 break;
979 default:
980 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
981 break;
982 }
983
William Tu94d7d8f2017-12-13 16:38:57 -0800984 if (t->parms.erspan_ver == 1)
985 erspan_build_header(skb, t->parms.o_key,
986 t->parms.index,
987 truncate, false);
988 else
989 erspan_build_header_v2(skb, t->parms.o_key,
990 t->parms.dir,
991 t->parms.hwid,
992 truncate, false);
William Tuef7baf52017-12-05 15:15:44 -0800993 fl6.daddr = t->parms.raddr;
994 }
William Tu5a963eb2017-11-30 11:51:29 -0800995
996 /* Push GRE header. */
997 gre_build_header(skb, 8, TUNNEL_SEQ,
998 htons(ETH_P_ERSPAN), 0, htonl(t->o_seqno++));
999
1000 /* TooBig packet may have updated dst->dev's mtu */
William Tuef7baf52017-12-05 15:15:44 -08001001 if (!t->parms.collect_md && dst && dst_mtu(dst) > dst->dev->mtu)
William Tu5a963eb2017-11-30 11:51:29 -08001002 dst->ops->update_pmtu(dst, NULL, skb, dst->dev->mtu);
1003
1004 err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
1005 NEXTHDR_GRE);
1006 if (err != 0) {
1007 /* XXX: send ICMP error even if DF is not set. */
1008 if (err == -EMSGSIZE) {
1009 if (skb->protocol == htons(ETH_P_IP))
1010 icmp_send(skb, ICMP_DEST_UNREACH,
1011 ICMP_FRAG_NEEDED, htonl(mtu));
1012 else
1013 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
1014 }
1015
1016 goto tx_err;
1017 }
1018 return NETDEV_TX_OK;
1019
1020tx_err:
1021 stats = &t->dev->stats;
1022 stats->tx_errors++;
1023 stats->tx_dropped++;
1024 kfree_skb(skb);
1025 return NETDEV_TX_OK;
1026}
1027
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001028static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
1029{
1030 struct net_device *dev = t->dev;
1031 struct __ip6_tnl_parm *p = &t->parms;
1032 struct flowi6 *fl6 = &t->fl.u.ip6;
Tom Herbertdb2ec952016-05-09 17:12:08 -07001033 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001034
1035 if (dev->type != ARPHRD_ETHER) {
1036 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1037 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
1038 }
1039
1040 /* Set up flowi template */
1041 fl6->saddr = p->laddr;
1042 fl6->daddr = p->raddr;
1043 fl6->flowi6_oif = p->link;
1044 fl6->flowlabel = 0;
Haishuang Yan252f3f52016-05-21 18:17:35 +08001045 fl6->flowi6_proto = IPPROTO_GRE;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001046
1047 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1048 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1049 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1050 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1051
1052 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1053 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
1054
1055 if (p->flags&IP6_TNL_F_CAP_XMIT &&
1056 p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER)
1057 dev->flags |= IFF_POINTOPOINT;
1058 else
1059 dev->flags &= ~IFF_POINTOPOINT;
1060
Tom Herbertdb2ec952016-05-09 17:12:08 -07001061 t->tun_hlen = gre_calc_hlen(t->parms.o_flags);
1062
Tom Herbert1faf3d92016-05-18 09:06:19 -07001063 t->hlen = t->encap_hlen + t->tun_hlen;
Tom Herbertdb2ec952016-05-09 17:12:08 -07001064
1065 t_hlen = t->hlen + sizeof(struct ipv6hdr);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001066
1067 if (p->flags & IP6_TNL_F_CAP_XMIT) {
1068 int strict = (ipv6_addr_type(&p->raddr) &
1069 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1070
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001071 struct rt6_info *rt = rt6_lookup(t->net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001072 &p->raddr, &p->laddr,
1073 p->link, strict);
1074
Ian Morris63159f22015-03-29 14:00:04 +01001075 if (!rt)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001076 return;
1077
1078 if (rt->dst.dev) {
Tom Herbertdb2ec952016-05-09 17:12:08 -07001079 dev->hard_header_len = rt->dst.dev->hard_header_len +
1080 t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001081
1082 if (set_mtu) {
Tom Herbertdb2ec952016-05-09 17:12:08 -07001083 dev->mtu = rt->dst.dev->mtu - t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001084 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1085 dev->mtu -= 8;
Alexander Duycka9e242c2016-04-14 15:33:45 -04001086 if (dev->type == ARPHRD_ETHER)
1087 dev->mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001088
1089 if (dev->mtu < IPV6_MIN_MTU)
1090 dev->mtu = IPV6_MIN_MTU;
1091 }
1092 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001093 ip6_rt_put(rt);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001094 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001095}
1096
1097static int ip6gre_tnl_change(struct ip6_tnl *t,
1098 const struct __ip6_tnl_parm *p, int set_mtu)
1099{
1100 t->parms.laddr = p->laddr;
1101 t->parms.raddr = p->raddr;
1102 t->parms.flags = p->flags;
1103 t->parms.hop_limit = p->hop_limit;
1104 t->parms.encap_limit = p->encap_limit;
1105 t->parms.flowinfo = p->flowinfo;
1106 t->parms.link = p->link;
1107 t->parms.proto = p->proto;
1108 t->parms.i_key = p->i_key;
1109 t->parms.o_key = p->o_key;
1110 t->parms.i_flags = p->i_flags;
1111 t->parms.o_flags = p->o_flags;
Craig Gallek0a473b82017-04-19 12:30:53 -04001112 t->parms.fwmark = p->fwmark;
Paolo Abeni607f7252016-02-12 15:43:54 +01001113 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001114 ip6gre_tnl_link_config(t, set_mtu);
1115 return 0;
1116}
1117
1118static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
1119 const struct ip6_tnl_parm2 *u)
1120{
1121 p->laddr = u->laddr;
1122 p->raddr = u->raddr;
1123 p->flags = u->flags;
1124 p->hop_limit = u->hop_limit;
1125 p->encap_limit = u->encap_limit;
1126 p->flowinfo = u->flowinfo;
1127 p->link = u->link;
1128 p->i_key = u->i_key;
1129 p->o_key = u->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001130 p->i_flags = gre_flags_to_tnl_flags(u->i_flags);
1131 p->o_flags = gre_flags_to_tnl_flags(u->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001132 memcpy(p->name, u->name, sizeof(u->name));
1133}
1134
1135static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
1136 const struct __ip6_tnl_parm *p)
1137{
1138 u->proto = IPPROTO_GRE;
1139 u->laddr = p->laddr;
1140 u->raddr = p->raddr;
1141 u->flags = p->flags;
1142 u->hop_limit = p->hop_limit;
1143 u->encap_limit = p->encap_limit;
1144 u->flowinfo = p->flowinfo;
1145 u->link = p->link;
1146 u->i_key = p->i_key;
1147 u->o_key = p->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001148 u->i_flags = gre_tnl_flags_to_gre_flags(p->i_flags);
1149 u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001150 memcpy(u->name, p->name, sizeof(u->name));
1151}
1152
1153static int ip6gre_tunnel_ioctl(struct net_device *dev,
1154 struct ifreq *ifr, int cmd)
1155{
1156 int err = 0;
1157 struct ip6_tnl_parm2 p;
1158 struct __ip6_tnl_parm p1;
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001159 struct ip6_tnl *t = netdev_priv(dev);
1160 struct net *net = t->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001161 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1162
Tom Herbert308edfdf2016-04-29 17:12:17 -07001163 memset(&p1, 0, sizeof(p1));
1164
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001165 switch (cmd) {
1166 case SIOCGETTUNNEL:
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001167 if (dev == ign->fb_tunnel_dev) {
1168 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
1169 err = -EFAULT;
1170 break;
1171 }
1172 ip6gre_tnl_parm_from_user(&p1, &p);
1173 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +01001174 if (!t)
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001175 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001176 }
Amerigo Wang5dbd5062013-05-09 21:56:37 +00001177 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001178 ip6gre_tnl_parm_to_user(&p, &t->parms);
1179 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
1180 err = -EFAULT;
1181 break;
1182
1183 case SIOCADDTUNNEL:
1184 case SIOCCHGTUNNEL:
1185 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001186 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001187 goto done;
1188
1189 err = -EFAULT;
1190 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1191 goto done;
1192
1193 err = -EINVAL;
1194 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
1195 goto done;
1196
1197 if (!(p.i_flags&GRE_KEY))
1198 p.i_key = 0;
1199 if (!(p.o_flags&GRE_KEY))
1200 p.o_key = 0;
1201
1202 ip6gre_tnl_parm_from_user(&p1, &p);
1203 t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
1204
1205 if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Ian Morris53b24b82015-03-29 14:00:05 +01001206 if (t) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001207 if (t->dev != dev) {
1208 err = -EEXIST;
1209 break;
1210 }
1211 } else {
1212 t = netdev_priv(dev);
1213
1214 ip6gre_tunnel_unlink(ign, t);
1215 synchronize_net();
1216 ip6gre_tnl_change(t, &p1, 1);
1217 ip6gre_tunnel_link(ign, t);
1218 netdev_state_change(dev);
1219 }
1220 }
1221
1222 if (t) {
1223 err = 0;
1224
Amerigo Wang5dbd5062013-05-09 21:56:37 +00001225 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001226 ip6gre_tnl_parm_to_user(&p, &t->parms);
1227 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
1228 err = -EFAULT;
1229 } else
1230 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1231 break;
1232
1233 case SIOCDELTUNNEL:
1234 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001235 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001236 goto done;
1237
1238 if (dev == ign->fb_tunnel_dev) {
1239 err = -EFAULT;
1240 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1241 goto done;
1242 err = -ENOENT;
1243 ip6gre_tnl_parm_from_user(&p1, &p);
1244 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +01001245 if (!t)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001246 goto done;
1247 err = -EPERM;
1248 if (t == netdev_priv(ign->fb_tunnel_dev))
1249 goto done;
1250 dev = t->dev;
1251 }
1252 unregister_netdevice(dev);
1253 err = 0;
1254 break;
1255
1256 default:
1257 err = -EINVAL;
1258 }
1259
1260done:
1261 return err;
1262}
1263
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001264static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
Xin Long76cc0d32017-09-15 12:00:07 +08001265 unsigned short type, const void *daddr,
1266 const void *saddr, unsigned int len)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001267{
1268 struct ip6_tnl *t = netdev_priv(dev);
Xin Long76cc0d32017-09-15 12:00:07 +08001269 struct ipv6hdr *ipv6h;
1270 __be16 *p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001271
Xin Long76cc0d32017-09-15 12:00:07 +08001272 ipv6h = skb_push(skb, t->hlen + sizeof(*ipv6h));
1273 ip6_flow_hdr(ipv6h, 0, ip6_make_flowlabel(dev_net(dev), skb,
1274 t->fl.u.ip6.flowlabel,
1275 true, &t->fl.u.ip6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001276 ipv6h->hop_limit = t->parms.hop_limit;
1277 ipv6h->nexthdr = NEXTHDR_GRE;
1278 ipv6h->saddr = t->parms.laddr;
1279 ipv6h->daddr = t->parms.raddr;
1280
Xin Long76cc0d32017-09-15 12:00:07 +08001281 p = (__be16 *)(ipv6h + 1);
1282 p[0] = t->parms.o_flags;
1283 p[1] = htons(type);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001284
1285 /*
1286 * Set the source hardware address.
1287 */
1288
1289 if (saddr)
1290 memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
1291 if (daddr)
1292 memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
1293 if (!ipv6_addr_any(&ipv6h->daddr))
1294 return t->hlen;
1295
1296 return -t->hlen;
1297}
1298
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001299static const struct header_ops ip6gre_header_ops = {
1300 .create = ip6gre_header,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001301};
1302
1303static const struct net_device_ops ip6gre_netdev_ops = {
1304 .ndo_init = ip6gre_tunnel_init,
1305 .ndo_uninit = ip6gre_tunnel_uninit,
1306 .ndo_start_xmit = ip6gre_tunnel_xmit,
1307 .ndo_do_ioctl = ip6gre_tunnel_ioctl,
Tom Herbertb05229f2016-04-29 17:12:21 -07001308 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +00001309 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001310 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001311};
1312
1313static void ip6gre_dev_free(struct net_device *dev)
1314{
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001315 struct ip6_tnl *t = netdev_priv(dev);
1316
Paolo Abeni607f7252016-02-12 15:43:54 +01001317 dst_cache_destroy(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001318 free_percpu(dev->tstats);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001319}
1320
1321static void ip6gre_tunnel_setup(struct net_device *dev)
1322{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001323 dev->netdev_ops = &ip6gre_netdev_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001324 dev->needs_free_netdev = true;
1325 dev->priv_destructor = ip6gre_dev_free;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001326
1327 dev->type = ARPHRD_IP6GRE;
Tom Herbertb05229f2016-04-29 17:12:21 -07001328
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001329 dev->flags |= IFF_NOARP;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001330 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -07001331 netif_keep_dst(dev);
Felix Jia45ce0fd2017-01-26 16:59:18 +13001332 /* This perm addr will be used as interface identifier by IPv6 */
1333 dev->addr_assign_type = NET_ADDR_RANDOM;
1334 eth_random_addr(dev->perm_addr);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001335}
1336
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001337static int ip6gre_tunnel_init_common(struct net_device *dev)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001338{
1339 struct ip6_tnl *tunnel;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001340 int ret;
Tom Herbertb05229f2016-04-29 17:12:21 -07001341 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001342
1343 tunnel = netdev_priv(dev);
1344
1345 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001346 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001347 strcpy(tunnel->parms.name, dev->name);
1348
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001349 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1350 if (!dev->tstats)
1351 return -ENOMEM;
1352
Paolo Abeni607f7252016-02-12 15:43:54 +01001353 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001354 if (ret) {
1355 free_percpu(dev->tstats);
1356 dev->tstats = NULL;
1357 return ret;
1358 }
1359
Tom Herbertb05229f2016-04-29 17:12:21 -07001360 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001361 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen;
Tom Herbertb05229f2016-04-29 17:12:21 -07001362 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1363
Tom Herbertdb2ec952016-05-09 17:12:08 -07001364 dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1365 dev->mtu = ETH_DATA_LEN - t_hlen;
Haishuang Yan1b227e52016-05-21 18:17:34 +08001366 if (dev->type == ARPHRD_ETHER)
1367 dev->mtu -= ETH_HLEN;
Tom Herbertb05229f2016-04-29 17:12:21 -07001368 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1369 dev->mtu -= 8;
1370
William Tu6712abc2017-12-01 15:26:08 -08001371 if (tunnel->parms.collect_md) {
1372 dev->features |= NETIF_F_NETNS_LOCAL;
1373 netif_keep_dst(dev);
1374 }
1375
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001376 return 0;
1377}
1378
1379static int ip6gre_tunnel_init(struct net_device *dev)
1380{
1381 struct ip6_tnl *tunnel;
1382 int ret;
1383
1384 ret = ip6gre_tunnel_init_common(dev);
1385 if (ret)
1386 return ret;
1387
1388 tunnel = netdev_priv(dev);
1389
William Tu6712abc2017-12-01 15:26:08 -08001390 if (tunnel->parms.collect_md)
1391 return 0;
1392
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001393 memcpy(dev->dev_addr, &tunnel->parms.laddr, sizeof(struct in6_addr));
1394 memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1395
1396 if (ipv6_addr_any(&tunnel->parms.raddr))
1397 dev->header_ops = &ip6gre_header_ops;
1398
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001399 return 0;
1400}
1401
1402static void ip6gre_fb_tunnel_init(struct net_device *dev)
1403{
1404 struct ip6_tnl *tunnel = netdev_priv(dev);
1405
1406 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001407 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001408 strcpy(tunnel->parms.name, dev->name);
1409
1410 tunnel->hlen = sizeof(struct ipv6hdr) + 4;
1411
1412 dev_hold(dev);
1413}
1414
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001415static struct inet6_protocol ip6gre_protocol __read_mostly = {
Tom Herbert308edfdf2016-04-29 17:12:17 -07001416 .handler = gre_rcv,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001417 .err_handler = ip6gre_err,
1418 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1419};
1420
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001421static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001422{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001423 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1424 struct net_device *dev, *aux;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001425 int prio;
1426
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001427 for_each_netdev_safe(net, dev, aux)
1428 if (dev->rtnl_link_ops == &ip6gre_link_ops ||
William Tu5a963eb2017-11-30 11:51:29 -08001429 dev->rtnl_link_ops == &ip6gre_tap_ops ||
1430 dev->rtnl_link_ops == &ip6erspan_tap_ops)
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001431 unregister_netdevice_queue(dev, head);
1432
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001433 for (prio = 0; prio < 4; prio++) {
1434 int h;
Jiri Kosinae87a8f22016-08-10 11:03:35 +02001435 for (h = 0; h < IP6_GRE_HASH_SIZE; h++) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001436 struct ip6_tnl *t;
1437
1438 t = rtnl_dereference(ign->tunnels[prio][h]);
1439
Ian Morris53b24b82015-03-29 14:00:05 +01001440 while (t) {
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001441 /* If dev is in the same netns, it has already
1442 * been added to the list by the previous loop.
1443 */
1444 if (!net_eq(dev_net(t->dev), net))
1445 unregister_netdevice_queue(t->dev,
1446 head);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001447 t = rtnl_dereference(t->next);
1448 }
1449 }
1450 }
1451}
1452
1453static int __net_init ip6gre_init_net(struct net *net)
1454{
1455 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1456 int err;
1457
1458 ign->fb_tunnel_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001459 NET_NAME_UNKNOWN,
1460 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001461 if (!ign->fb_tunnel_dev) {
1462 err = -ENOMEM;
1463 goto err_alloc_dev;
1464 }
1465 dev_net_set(ign->fb_tunnel_dev, net);
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001466 /* FB netdevice is special: we have one, and only one per netns.
1467 * Allowing to move it to another netns is clearly unsafe.
1468 */
1469 ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1470
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001471
1472 ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1473 ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1474
1475 err = register_netdev(ign->fb_tunnel_dev);
1476 if (err)
1477 goto err_reg_dev;
1478
1479 rcu_assign_pointer(ign->tunnels_wc[0],
1480 netdev_priv(ign->fb_tunnel_dev));
1481 return 0;
1482
1483err_reg_dev:
David S. Millercf124db2017-05-08 12:52:56 -04001484 free_netdev(ign->fb_tunnel_dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001485err_alloc_dev:
1486 return err;
1487}
1488
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001489static void __net_exit ip6gre_exit_batch_net(struct list_head *net_list)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001490{
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001491 struct net *net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001492 LIST_HEAD(list);
1493
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001494 rtnl_lock();
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001495 list_for_each_entry(net, net_list, exit_list)
1496 ip6gre_destroy_tunnels(net, &list);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001497 unregister_netdevice_many(&list);
1498 rtnl_unlock();
1499}
1500
1501static struct pernet_operations ip6gre_net_ops = {
1502 .init = ip6gre_init_net,
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001503 .exit_batch = ip6gre_exit_batch_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001504 .id = &ip6gre_net_id,
1505 .size = sizeof(struct ip6gre_net),
1506};
1507
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001508static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[],
1509 struct netlink_ext_ack *extack)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001510{
1511 __be16 flags;
1512
1513 if (!data)
1514 return 0;
1515
1516 flags = 0;
1517 if (data[IFLA_GRE_IFLAGS])
1518 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1519 if (data[IFLA_GRE_OFLAGS])
1520 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1521 if (flags & (GRE_VERSION|GRE_ROUTING))
1522 return -EINVAL;
1523
1524 return 0;
1525}
1526
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001527static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[],
1528 struct netlink_ext_ack *extack)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001529{
1530 struct in6_addr daddr;
1531
1532 if (tb[IFLA_ADDRESS]) {
1533 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1534 return -EINVAL;
1535 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1536 return -EADDRNOTAVAIL;
1537 }
1538
1539 if (!data)
1540 goto out;
1541
1542 if (data[IFLA_GRE_REMOTE]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02001543 daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001544 if (ipv6_addr_any(&daddr))
1545 return -EINVAL;
1546 }
1547
1548out:
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001549 return ip6gre_tunnel_validate(tb, data, extack);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001550}
1551
William Tu5a963eb2017-11-30 11:51:29 -08001552static int ip6erspan_tap_validate(struct nlattr *tb[], struct nlattr *data[],
1553 struct netlink_ext_ack *extack)
1554{
1555 __be16 flags = 0;
William Tu94d7d8f2017-12-13 16:38:57 -08001556 int ret, ver = 0;
William Tu5a963eb2017-11-30 11:51:29 -08001557
1558 if (!data)
1559 return 0;
1560
1561 ret = ip6gre_tap_validate(tb, data, extack);
1562 if (ret)
1563 return ret;
1564
1565 /* ERSPAN should only have GRE sequence and key flag */
1566 if (data[IFLA_GRE_OFLAGS])
1567 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1568 if (data[IFLA_GRE_IFLAGS])
1569 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1570 if (!data[IFLA_GRE_COLLECT_METADATA] &&
1571 flags != (GRE_SEQ | GRE_KEY))
1572 return -EINVAL;
1573
1574 /* ERSPAN Session ID only has 10-bit. Since we reuse
1575 * 32-bit key field as ID, check it's range.
1576 */
1577 if (data[IFLA_GRE_IKEY] &&
1578 (ntohl(nla_get_be32(data[IFLA_GRE_IKEY])) & ~ID_MASK))
1579 return -EINVAL;
1580
1581 if (data[IFLA_GRE_OKEY] &&
1582 (ntohl(nla_get_be32(data[IFLA_GRE_OKEY])) & ~ID_MASK))
1583 return -EINVAL;
1584
William Tu94d7d8f2017-12-13 16:38:57 -08001585 if (data[IFLA_GRE_ERSPAN_VER]) {
1586 ver = nla_get_u8(data[IFLA_GRE_ERSPAN_VER]);
1587 if (ver != 1 && ver != 2)
William Tu5a963eb2017-11-30 11:51:29 -08001588 return -EINVAL;
1589 }
William Tu94d7d8f2017-12-13 16:38:57 -08001590
1591 if (ver == 1) {
1592 if (data[IFLA_GRE_ERSPAN_INDEX]) {
1593 u32 index = nla_get_u32(data[IFLA_GRE_ERSPAN_INDEX]);
1594
1595 if (index & ~INDEX_MASK)
1596 return -EINVAL;
1597 }
1598 } else if (ver == 2) {
1599 if (data[IFLA_GRE_ERSPAN_DIR]) {
1600 u16 dir = nla_get_u8(data[IFLA_GRE_ERSPAN_DIR]);
1601
1602 if (dir & ~(DIR_MASK >> DIR_OFFSET))
1603 return -EINVAL;
1604 }
1605
1606 if (data[IFLA_GRE_ERSPAN_HWID]) {
1607 u16 hwid = nla_get_u16(data[IFLA_GRE_ERSPAN_HWID]);
1608
1609 if (hwid & ~(HWID_MASK >> HWID_OFFSET))
1610 return -EINVAL;
1611 }
1612 }
1613
William Tu5a963eb2017-11-30 11:51:29 -08001614 return 0;
1615}
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001616
1617static void ip6gre_netlink_parms(struct nlattr *data[],
1618 struct __ip6_tnl_parm *parms)
1619{
1620 memset(parms, 0, sizeof(*parms));
1621
1622 if (!data)
1623 return;
1624
1625 if (data[IFLA_GRE_LINK])
1626 parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1627
1628 if (data[IFLA_GRE_IFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001629 parms->i_flags = gre_flags_to_tnl_flags(
1630 nla_get_be16(data[IFLA_GRE_IFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001631
1632 if (data[IFLA_GRE_OFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001633 parms->o_flags = gre_flags_to_tnl_flags(
1634 nla_get_be16(data[IFLA_GRE_OFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001635
1636 if (data[IFLA_GRE_IKEY])
1637 parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1638
1639 if (data[IFLA_GRE_OKEY])
1640 parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1641
1642 if (data[IFLA_GRE_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +02001643 parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001644
1645 if (data[IFLA_GRE_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +02001646 parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001647
1648 if (data[IFLA_GRE_TTL])
1649 parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1650
1651 if (data[IFLA_GRE_ENCAP_LIMIT])
1652 parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1653
1654 if (data[IFLA_GRE_FLOWINFO])
Lance Richardsonc2675de2016-09-24 14:01:04 -04001655 parms->flowinfo = nla_get_be32(data[IFLA_GRE_FLOWINFO]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001656
1657 if (data[IFLA_GRE_FLAGS])
1658 parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
Craig Gallek0a473b82017-04-19 12:30:53 -04001659
1660 if (data[IFLA_GRE_FWMARK])
1661 parms->fwmark = nla_get_u32(data[IFLA_GRE_FWMARK]);
William Tu5a963eb2017-11-30 11:51:29 -08001662
William Tu6712abc2017-12-01 15:26:08 -08001663 if (data[IFLA_GRE_COLLECT_METADATA])
1664 parms->collect_md = true;
William Tu94d7d8f2017-12-13 16:38:57 -08001665
1666 if (data[IFLA_GRE_ERSPAN_VER])
1667 parms->erspan_ver = nla_get_u8(data[IFLA_GRE_ERSPAN_VER]);
1668
1669 if (parms->erspan_ver == 1) {
1670 if (data[IFLA_GRE_ERSPAN_INDEX])
1671 parms->index = nla_get_u32(data[IFLA_GRE_ERSPAN_INDEX]);
1672 } else if (parms->erspan_ver == 2) {
1673 if (data[IFLA_GRE_ERSPAN_DIR])
1674 parms->dir = nla_get_u8(data[IFLA_GRE_ERSPAN_DIR]);
1675 if (data[IFLA_GRE_ERSPAN_HWID])
1676 parms->hwid = nla_get_u16(data[IFLA_GRE_ERSPAN_HWID]);
1677 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001678}
1679
1680static int ip6gre_tap_init(struct net_device *dev)
1681{
1682 struct ip6_tnl *tunnel;
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001683 int ret;
1684
1685 ret = ip6gre_tunnel_init_common(dev);
1686 if (ret)
1687 return ret;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001688
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001689 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1690
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001691 tunnel = netdev_priv(dev);
1692
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001693 ip6gre_tnl_link_config(tunnel, 1);
1694
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001695 return 0;
1696}
1697
1698static const struct net_device_ops ip6gre_tap_netdev_ops = {
1699 .ndo_init = ip6gre_tap_init,
1700 .ndo_uninit = ip6gre_tunnel_uninit,
1701 .ndo_start_xmit = ip6gre_tunnel_xmit,
1702 .ndo_set_mac_address = eth_mac_addr,
1703 .ndo_validate_addr = eth_validate_addr,
Tom Herbertb05229f2016-04-29 17:12:21 -07001704 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +00001705 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001706 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001707};
1708
Alexander Duyckac4eb002016-04-14 15:33:51 -04001709#define GRE6_FEATURES (NETIF_F_SG | \
1710 NETIF_F_FRAGLIST | \
1711 NETIF_F_HIGHDMA | \
1712 NETIF_F_HW_CSUM)
1713
William Tu5a963eb2017-11-30 11:51:29 -08001714static int ip6erspan_tap_init(struct net_device *dev)
1715{
1716 struct ip6_tnl *tunnel;
1717 int t_hlen;
1718 int ret;
1719
1720 tunnel = netdev_priv(dev);
1721
1722 tunnel->dev = dev;
1723 tunnel->net = dev_net(dev);
1724 strcpy(tunnel->parms.name, dev->name);
1725
1726 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1727 if (!dev->tstats)
1728 return -ENOMEM;
1729
1730 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
1731 if (ret) {
1732 free_percpu(dev->tstats);
1733 dev->tstats = NULL;
1734 return ret;
1735 }
1736
1737 tunnel->tun_hlen = 8;
1738 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen +
William Tu94d7d8f2017-12-13 16:38:57 -08001739 erspan_hdr_len(tunnel->parms.erspan_ver);
William Tu5a963eb2017-11-30 11:51:29 -08001740 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1741
1742 dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1743 dev->mtu = ETH_DATA_LEN - t_hlen;
1744 if (dev->type == ARPHRD_ETHER)
1745 dev->mtu -= ETH_HLEN;
1746 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1747 dev->mtu -= 8;
1748
1749 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1750 tunnel = netdev_priv(dev);
1751 ip6gre_tnl_link_config(tunnel, 1);
1752
1753 return 0;
1754}
1755
1756static const struct net_device_ops ip6erspan_netdev_ops = {
1757 .ndo_init = ip6erspan_tap_init,
1758 .ndo_uninit = ip6gre_tunnel_uninit,
1759 .ndo_start_xmit = ip6erspan_tunnel_xmit,
1760 .ndo_set_mac_address = eth_mac_addr,
1761 .ndo_validate_addr = eth_validate_addr,
1762 .ndo_change_mtu = ip6_tnl_change_mtu,
1763 .ndo_get_stats64 = ip_tunnel_get_stats64,
1764 .ndo_get_iflink = ip6_tnl_get_iflink,
1765};
1766
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001767static void ip6gre_tap_setup(struct net_device *dev)
1768{
1769
1770 ether_setup(dev);
1771
1772 dev->netdev_ops = &ip6gre_tap_netdev_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001773 dev->needs_free_netdev = true;
1774 dev->priv_destructor = ip6gre_dev_free;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001775
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001776 dev->features |= NETIF_F_NETNS_LOCAL;
Jiri Bencd13b1612016-02-17 15:32:53 +01001777 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001778 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Xin Long2d405572017-09-28 13:23:50 +08001779 netif_keep_dst(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001780}
1781
Tom Herbert1faf3d92016-05-18 09:06:19 -07001782static bool ip6gre_netlink_encap_parms(struct nlattr *data[],
1783 struct ip_tunnel_encap *ipencap)
1784{
1785 bool ret = false;
1786
1787 memset(ipencap, 0, sizeof(*ipencap));
1788
1789 if (!data)
1790 return ret;
1791
1792 if (data[IFLA_GRE_ENCAP_TYPE]) {
1793 ret = true;
1794 ipencap->type = nla_get_u16(data[IFLA_GRE_ENCAP_TYPE]);
1795 }
1796
1797 if (data[IFLA_GRE_ENCAP_FLAGS]) {
1798 ret = true;
1799 ipencap->flags = nla_get_u16(data[IFLA_GRE_ENCAP_FLAGS]);
1800 }
1801
1802 if (data[IFLA_GRE_ENCAP_SPORT]) {
1803 ret = true;
1804 ipencap->sport = nla_get_be16(data[IFLA_GRE_ENCAP_SPORT]);
1805 }
1806
1807 if (data[IFLA_GRE_ENCAP_DPORT]) {
1808 ret = true;
1809 ipencap->dport = nla_get_be16(data[IFLA_GRE_ENCAP_DPORT]);
1810 }
1811
1812 return ret;
1813}
1814
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001815static int ip6gre_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02001816 struct nlattr *tb[], struct nlattr *data[],
1817 struct netlink_ext_ack *extack)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001818{
1819 struct ip6_tnl *nt;
1820 struct net *net = dev_net(dev);
1821 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001822 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001823 int err;
1824
1825 nt = netdev_priv(dev);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001826
1827 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1828 int err = ip6_tnl_encap_setup(nt, &ipencap);
1829
1830 if (err < 0)
1831 return err;
1832 }
1833
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001834 ip6gre_netlink_parms(data, &nt->parms);
1835
William Tu6712abc2017-12-01 15:26:08 -08001836 if (nt->parms.collect_md) {
1837 if (rtnl_dereference(ign->collect_md_tun))
1838 return -EEXIST;
1839 } else {
1840 if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
1841 return -EEXIST;
1842 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001843
1844 if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS])
1845 eth_hw_addr_random(dev);
1846
1847 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001848 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001849 ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
1850
Alexander Duyckac4eb002016-04-14 15:33:51 -04001851 dev->features |= GRE6_FEATURES;
1852 dev->hw_features |= GRE6_FEATURES;
1853
Tom Herbertb45bd1d2016-05-09 17:12:12 -07001854 if (!(nt->parms.o_flags & TUNNEL_SEQ)) {
Alexander Duyck6a553682016-05-18 10:44:47 -07001855 /* TCP offload with GRE SEQ is not supported, nor
1856 * can we support 2 levels of outer headers requiring
1857 * an update.
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001858 */
Alexander Duyck6a553682016-05-18 10:44:47 -07001859 if (!(nt->parms.o_flags & TUNNEL_CSUM) ||
1860 (nt->encap.type == TUNNEL_ENCAP_NONE)) {
1861 dev->features |= NETIF_F_GSO_SOFTWARE;
1862 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1863 }
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001864
1865 /* Can use a lockless transmit, unless we generate
1866 * output sequences
1867 */
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001868 dev->features |= NETIF_F_LLTX;
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001869 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001870
1871 err = register_netdevice(dev);
1872 if (err)
1873 goto out;
1874
1875 dev_hold(dev);
1876 ip6gre_tunnel_link(ign, nt);
1877
1878out:
1879 return err;
1880}
1881
1882static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
Matthias Schifferad744b22017-06-25 23:56:00 +02001883 struct nlattr *data[],
1884 struct netlink_ext_ack *extack)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001885{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001886 struct ip6_tnl *t, *nt = netdev_priv(dev);
1887 struct net *net = nt->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001888 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1889 struct __ip6_tnl_parm p;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001890 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001891
1892 if (dev == ign->fb_tunnel_dev)
1893 return -EINVAL;
1894
Tom Herbert1faf3d92016-05-18 09:06:19 -07001895 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1896 int err = ip6_tnl_encap_setup(nt, &ipencap);
1897
1898 if (err < 0)
1899 return err;
1900 }
1901
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001902 ip6gre_netlink_parms(data, &p);
1903
1904 t = ip6gre_tunnel_locate(net, &p, 0);
1905
1906 if (t) {
1907 if (t->dev != dev)
1908 return -EEXIST;
1909 } else {
1910 t = nt;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001911 }
1912
Nicolas Dichtel6a61d4d2015-12-03 17:21:50 +01001913 ip6gre_tunnel_unlink(ign, t);
1914 ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
1915 ip6gre_tunnel_link(ign, t);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001916 return 0;
1917}
1918
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001919static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
1920{
1921 struct net *net = dev_net(dev);
1922 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1923
1924 if (dev != ign->fb_tunnel_dev)
1925 unregister_netdevice_queue(dev, head);
1926}
1927
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001928static size_t ip6gre_get_size(const struct net_device *dev)
1929{
1930 return
1931 /* IFLA_GRE_LINK */
1932 nla_total_size(4) +
1933 /* IFLA_GRE_IFLAGS */
1934 nla_total_size(2) +
1935 /* IFLA_GRE_OFLAGS */
1936 nla_total_size(2) +
1937 /* IFLA_GRE_IKEY */
1938 nla_total_size(4) +
1939 /* IFLA_GRE_OKEY */
1940 nla_total_size(4) +
1941 /* IFLA_GRE_LOCAL */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001942 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001943 /* IFLA_GRE_REMOTE */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001944 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001945 /* IFLA_GRE_TTL */
1946 nla_total_size(1) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001947 /* IFLA_GRE_ENCAP_LIMIT */
1948 nla_total_size(1) +
1949 /* IFLA_GRE_FLOWINFO */
1950 nla_total_size(4) +
1951 /* IFLA_GRE_FLAGS */
1952 nla_total_size(4) +
Tom Herbert1faf3d92016-05-18 09:06:19 -07001953 /* IFLA_GRE_ENCAP_TYPE */
1954 nla_total_size(2) +
1955 /* IFLA_GRE_ENCAP_FLAGS */
1956 nla_total_size(2) +
1957 /* IFLA_GRE_ENCAP_SPORT */
1958 nla_total_size(2) +
1959 /* IFLA_GRE_ENCAP_DPORT */
1960 nla_total_size(2) +
William Tu6712abc2017-12-01 15:26:08 -08001961 /* IFLA_GRE_COLLECT_METADATA */
1962 nla_total_size(0) +
Craig Gallek0a473b82017-04-19 12:30:53 -04001963 /* IFLA_GRE_FWMARK */
1964 nla_total_size(4) +
William Tu5a963eb2017-11-30 11:51:29 -08001965 /* IFLA_GRE_ERSPAN_INDEX */
1966 nla_total_size(4) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001967 0;
1968}
1969
1970static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
1971{
1972 struct ip6_tnl *t = netdev_priv(dev);
1973 struct __ip6_tnl_parm *p = &t->parms;
1974
1975 if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001976 nla_put_be16(skb, IFLA_GRE_IFLAGS,
1977 gre_tnl_flags_to_gre_flags(p->i_flags)) ||
1978 nla_put_be16(skb, IFLA_GRE_OFLAGS,
1979 gre_tnl_flags_to_gre_flags(p->o_flags)) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001980 nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
1981 nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
Jiri Benc930345e2015-03-29 16:59:25 +02001982 nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
1983 nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001984 nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001985 nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
1986 nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
Craig Gallek0a473b82017-04-19 12:30:53 -04001987 nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags) ||
William Tu5a963eb2017-11-30 11:51:29 -08001988 nla_put_u32(skb, IFLA_GRE_FWMARK, p->fwmark) ||
1989 nla_put_u32(skb, IFLA_GRE_ERSPAN_INDEX, p->index))
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001990 goto nla_put_failure;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001991
1992 if (nla_put_u16(skb, IFLA_GRE_ENCAP_TYPE,
1993 t->encap.type) ||
1994 nla_put_be16(skb, IFLA_GRE_ENCAP_SPORT,
1995 t->encap.sport) ||
1996 nla_put_be16(skb, IFLA_GRE_ENCAP_DPORT,
1997 t->encap.dport) ||
1998 nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS,
1999 t->encap.flags))
2000 goto nla_put_failure;
2001
William Tu6712abc2017-12-01 15:26:08 -08002002 if (p->collect_md) {
2003 if (nla_put_flag(skb, IFLA_GRE_COLLECT_METADATA))
2004 goto nla_put_failure;
2005 }
2006
William Tu94d7d8f2017-12-13 16:38:57 -08002007 if (nla_put_u8(skb, IFLA_GRE_ERSPAN_VER, p->erspan_ver))
2008 goto nla_put_failure;
2009
2010 if (p->erspan_ver == 1) {
2011 if (nla_put_u32(skb, IFLA_GRE_ERSPAN_INDEX, p->index))
2012 goto nla_put_failure;
2013 } else if (p->erspan_ver == 2) {
2014 if (nla_put_u8(skb, IFLA_GRE_ERSPAN_DIR, p->dir))
2015 goto nla_put_failure;
2016 if (nla_put_u16(skb, IFLA_GRE_ERSPAN_HWID, p->hwid))
2017 goto nla_put_failure;
2018 }
2019
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002020 return 0;
2021
2022nla_put_failure:
2023 return -EMSGSIZE;
2024}
2025
2026static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
2027 [IFLA_GRE_LINK] = { .type = NLA_U32 },
2028 [IFLA_GRE_IFLAGS] = { .type = NLA_U16 },
2029 [IFLA_GRE_OFLAGS] = { .type = NLA_U16 },
2030 [IFLA_GRE_IKEY] = { .type = NLA_U32 },
2031 [IFLA_GRE_OKEY] = { .type = NLA_U32 },
2032 [IFLA_GRE_LOCAL] = { .len = FIELD_SIZEOF(struct ipv6hdr, saddr) },
2033 [IFLA_GRE_REMOTE] = { .len = FIELD_SIZEOF(struct ipv6hdr, daddr) },
2034 [IFLA_GRE_TTL] = { .type = NLA_U8 },
2035 [IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
2036 [IFLA_GRE_FLOWINFO] = { .type = NLA_U32 },
2037 [IFLA_GRE_FLAGS] = { .type = NLA_U32 },
Tom Herbert1faf3d92016-05-18 09:06:19 -07002038 [IFLA_GRE_ENCAP_TYPE] = { .type = NLA_U16 },
2039 [IFLA_GRE_ENCAP_FLAGS] = { .type = NLA_U16 },
2040 [IFLA_GRE_ENCAP_SPORT] = { .type = NLA_U16 },
2041 [IFLA_GRE_ENCAP_DPORT] = { .type = NLA_U16 },
William Tu6712abc2017-12-01 15:26:08 -08002042 [IFLA_GRE_COLLECT_METADATA] = { .type = NLA_FLAG },
Craig Gallek0a473b82017-04-19 12:30:53 -04002043 [IFLA_GRE_FWMARK] = { .type = NLA_U32 },
William Tu5a963eb2017-11-30 11:51:29 -08002044 [IFLA_GRE_ERSPAN_INDEX] = { .type = NLA_U32 },
William Tu94d7d8f2017-12-13 16:38:57 -08002045 [IFLA_GRE_ERSPAN_VER] = { .type = NLA_U8 },
2046 [IFLA_GRE_ERSPAN_DIR] = { .type = NLA_U8 },
2047 [IFLA_GRE_ERSPAN_HWID] = { .type = NLA_U16 },
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002048};
2049
William Tu5a963eb2017-11-30 11:51:29 -08002050static void ip6erspan_tap_setup(struct net_device *dev)
2051{
2052 ether_setup(dev);
2053
2054 dev->netdev_ops = &ip6erspan_netdev_ops;
2055 dev->needs_free_netdev = true;
2056 dev->priv_destructor = ip6gre_dev_free;
2057
2058 dev->features |= NETIF_F_NETNS_LOCAL;
2059 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
2060 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
2061 netif_keep_dst(dev);
2062}
2063
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002064static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
2065 .kind = "ip6gre",
2066 .maxtype = IFLA_GRE_MAX,
2067 .policy = ip6gre_policy,
2068 .priv_size = sizeof(struct ip6_tnl),
2069 .setup = ip6gre_tunnel_setup,
2070 .validate = ip6gre_tunnel_validate,
2071 .newlink = ip6gre_newlink,
2072 .changelink = ip6gre_changelink,
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02002073 .dellink = ip6gre_dellink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002074 .get_size = ip6gre_get_size,
2075 .fill_info = ip6gre_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01002076 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002077};
2078
2079static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
2080 .kind = "ip6gretap",
2081 .maxtype = IFLA_GRE_MAX,
2082 .policy = ip6gre_policy,
2083 .priv_size = sizeof(struct ip6_tnl),
2084 .setup = ip6gre_tap_setup,
2085 .validate = ip6gre_tap_validate,
2086 .newlink = ip6gre_newlink,
2087 .changelink = ip6gre_changelink,
2088 .get_size = ip6gre_get_size,
2089 .fill_info = ip6gre_fill_info,
Nicolas Dichtel3390e392015-01-20 15:15:43 +01002090 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002091};
2092
William Tu5a963eb2017-11-30 11:51:29 -08002093static struct rtnl_link_ops ip6erspan_tap_ops __read_mostly = {
2094 .kind = "ip6erspan",
2095 .maxtype = IFLA_GRE_MAX,
2096 .policy = ip6gre_policy,
2097 .priv_size = sizeof(struct ip6_tnl),
2098 .setup = ip6erspan_tap_setup,
2099 .validate = ip6erspan_tap_validate,
2100 .newlink = ip6gre_newlink,
2101 .changelink = ip6gre_changelink,
2102 .get_size = ip6gre_get_size,
2103 .fill_info = ip6gre_fill_info,
2104 .get_link_net = ip6_tnl_get_link_net,
2105};
2106
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002107/*
2108 * And now the modules code and kernel interface.
2109 */
2110
2111static int __init ip6gre_init(void)
2112{
2113 int err;
2114
2115 pr_info("GRE over IPv6 tunneling driver\n");
2116
2117 err = register_pernet_device(&ip6gre_net_ops);
2118 if (err < 0)
2119 return err;
2120
2121 err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
2122 if (err < 0) {
2123 pr_info("%s: can't add protocol\n", __func__);
2124 goto add_proto_failed;
2125 }
2126
2127 err = rtnl_link_register(&ip6gre_link_ops);
2128 if (err < 0)
2129 goto rtnl_link_failed;
2130
2131 err = rtnl_link_register(&ip6gre_tap_ops);
2132 if (err < 0)
2133 goto tap_ops_failed;
2134
William Tu5a963eb2017-11-30 11:51:29 -08002135 err = rtnl_link_register(&ip6erspan_tap_ops);
2136 if (err < 0)
2137 goto erspan_link_failed;
2138
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002139out:
2140 return err;
2141
William Tu5a963eb2017-11-30 11:51:29 -08002142erspan_link_failed:
2143 rtnl_link_unregister(&ip6gre_tap_ops);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002144tap_ops_failed:
2145 rtnl_link_unregister(&ip6gre_link_ops);
2146rtnl_link_failed:
2147 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
2148add_proto_failed:
2149 unregister_pernet_device(&ip6gre_net_ops);
2150 goto out;
2151}
2152
2153static void __exit ip6gre_fini(void)
2154{
2155 rtnl_link_unregister(&ip6gre_tap_ops);
2156 rtnl_link_unregister(&ip6gre_link_ops);
William Tu5a963eb2017-11-30 11:51:29 -08002157 rtnl_link_unregister(&ip6erspan_tap_ops);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002158 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
2159 unregister_pernet_device(&ip6gre_net_ops);
2160}
2161
2162module_init(ip6gre_init);
2163module_exit(ip6gre_fini);
2164MODULE_LICENSE("GPL");
2165MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
2166MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
2167MODULE_ALIAS_RTNL_LINK("ip6gre");
Nicolas Dichtel5a4ee9a2014-09-24 11:03:00 +02002168MODULE_ALIAS_RTNL_LINK("ip6gretap");
William Tu94d7d8f2017-12-13 16:38:57 -08002169MODULE_ALIAS_RTNL_LINK("ip6erspan");
xeb@mail.ruc12b3952012-08-10 00:51:50 +00002170MODULE_ALIAS_NETDEV("ip6gre0");