blob: caee5530ae2ced12e9715f571e61f1a776298323 [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>
xeb@mail.ruc12b3952012-08-10 00:51:50 +000058
59
stephen hemmingereccc1bb2012-09-25 11:02:48 +000060static bool log_ecn_error = true;
61module_param(log_ecn_error, bool, 0644);
62MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
63
Jiri Kosinae87a8f22016-08-10 11:03:35 +020064#define IP6_GRE_HASH_SIZE_SHIFT 5
65#define IP6_GRE_HASH_SIZE (1 << IP6_GRE_HASH_SIZE_SHIFT)
xeb@mail.ruc12b3952012-08-10 00:51:50 +000066
67static int ip6gre_net_id __read_mostly;
68struct ip6gre_net {
Jiri Kosinae87a8f22016-08-10 11:03:35 +020069 struct ip6_tnl __rcu *tunnels[4][IP6_GRE_HASH_SIZE];
xeb@mail.ruc12b3952012-08-10 00:51:50 +000070
71 struct net_device *fb_tunnel_dev;
72};
73
74static struct rtnl_link_ops ip6gre_link_ops __read_mostly;
Nicolas Dichtel22f08062014-04-22 10:15:24 +020075static struct rtnl_link_ops ip6gre_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);
80
81/* Tunnel hash table */
82
83/*
84 4 hash tables:
85
86 3: (remote,local)
87 2: (remote,*)
88 1: (*,local)
89 0: (*,*)
90
91 We require exact key match i.e. if a key is present in packet
92 it will match only tunnel with the same key; if it is not present,
93 it will match only keyless tunnel.
94
95 All keysless packets, if not matched configured keyless tunnels
96 will match fallback tunnel.
97 */
98
Jiri Kosinae87a8f22016-08-10 11:03:35 +020099#define HASH_KEY(key) (((__force u32)key^((__force u32)key>>4))&(IP6_GRE_HASH_SIZE - 1))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000100static u32 HASH_ADDR(const struct in6_addr *addr)
101{
102 u32 hash = ipv6_addr_hash(addr);
103
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200104 return hash_32(hash, IP6_GRE_HASH_SIZE_SHIFT);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000105}
106
107#define tunnels_r_l tunnels[3]
108#define tunnels_r tunnels[2]
109#define tunnels_l tunnels[1]
110#define tunnels_wc tunnels[0]
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000111
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000112/* Given src, dst and key, find appropriate for input tunnel. */
113
114static struct ip6_tnl *ip6gre_tunnel_lookup(struct net_device *dev,
115 const struct in6_addr *remote, const struct in6_addr *local,
116 __be32 key, __be16 gre_proto)
117{
118 struct net *net = dev_net(dev);
119 int link = dev->ifindex;
120 unsigned int h0 = HASH_ADDR(remote);
121 unsigned int h1 = HASH_KEY(key);
122 struct ip6_tnl *t, *cand = NULL;
123 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
124 int dev_type = (gre_proto == htons(ETH_P_TEB)) ?
125 ARPHRD_ETHER : ARPHRD_IP6GRE;
126 int score, cand_score = 4;
127
Amerigo Wange086cad2012-11-11 21:52:34 +0000128 for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000129 if (!ipv6_addr_equal(local, &t->parms.laddr) ||
130 !ipv6_addr_equal(remote, &t->parms.raddr) ||
131 key != t->parms.i_key ||
132 !(t->dev->flags & IFF_UP))
133 continue;
134
135 if (t->dev->type != ARPHRD_IP6GRE &&
136 t->dev->type != dev_type)
137 continue;
138
139 score = 0;
140 if (t->parms.link != link)
141 score |= 1;
142 if (t->dev->type != dev_type)
143 score |= 2;
144 if (score == 0)
145 return t;
146
147 if (score < cand_score) {
148 cand = t;
149 cand_score = score;
150 }
151 }
152
Amerigo Wange086cad2012-11-11 21:52:34 +0000153 for_each_ip_tunnel_rcu(t, ign->tunnels_r[h0 ^ h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000154 if (!ipv6_addr_equal(remote, &t->parms.raddr) ||
155 key != t->parms.i_key ||
156 !(t->dev->flags & IFF_UP))
157 continue;
158
159 if (t->dev->type != ARPHRD_IP6GRE &&
160 t->dev->type != dev_type)
161 continue;
162
163 score = 0;
164 if (t->parms.link != link)
165 score |= 1;
166 if (t->dev->type != dev_type)
167 score |= 2;
168 if (score == 0)
169 return t;
170
171 if (score < cand_score) {
172 cand = t;
173 cand_score = score;
174 }
175 }
176
Amerigo Wange086cad2012-11-11 21:52:34 +0000177 for_each_ip_tunnel_rcu(t, ign->tunnels_l[h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000178 if ((!ipv6_addr_equal(local, &t->parms.laddr) &&
179 (!ipv6_addr_equal(local, &t->parms.raddr) ||
180 !ipv6_addr_is_multicast(local))) ||
181 key != t->parms.i_key ||
182 !(t->dev->flags & IFF_UP))
183 continue;
184
185 if (t->dev->type != ARPHRD_IP6GRE &&
186 t->dev->type != dev_type)
187 continue;
188
189 score = 0;
190 if (t->parms.link != link)
191 score |= 1;
192 if (t->dev->type != dev_type)
193 score |= 2;
194 if (score == 0)
195 return t;
196
197 if (score < cand_score) {
198 cand = t;
199 cand_score = score;
200 }
201 }
202
Amerigo Wange086cad2012-11-11 21:52:34 +0000203 for_each_ip_tunnel_rcu(t, ign->tunnels_wc[h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000204 if (t->parms.i_key != key ||
205 !(t->dev->flags & IFF_UP))
206 continue;
207
208 if (t->dev->type != ARPHRD_IP6GRE &&
209 t->dev->type != dev_type)
210 continue;
211
212 score = 0;
213 if (t->parms.link != link)
214 score |= 1;
215 if (t->dev->type != dev_type)
216 score |= 2;
217 if (score == 0)
218 return t;
219
220 if (score < cand_score) {
221 cand = t;
222 cand_score = score;
223 }
224 }
225
Ian Morris53b24b82015-03-29 14:00:05 +0100226 if (cand)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000227 return cand;
228
229 dev = ign->fb_tunnel_dev;
230 if (dev->flags & IFF_UP)
231 return netdev_priv(dev);
232
233 return NULL;
234}
235
236static struct ip6_tnl __rcu **__ip6gre_bucket(struct ip6gre_net *ign,
237 const struct __ip6_tnl_parm *p)
238{
239 const struct in6_addr *remote = &p->raddr;
240 const struct in6_addr *local = &p->laddr;
241 unsigned int h = HASH_KEY(p->i_key);
242 int prio = 0;
243
244 if (!ipv6_addr_any(local))
245 prio |= 1;
246 if (!ipv6_addr_any(remote) && !ipv6_addr_is_multicast(remote)) {
247 prio |= 2;
248 h ^= HASH_ADDR(remote);
249 }
250
251 return &ign->tunnels[prio][h];
252}
253
254static inline struct ip6_tnl __rcu **ip6gre_bucket(struct ip6gre_net *ign,
255 const struct ip6_tnl *t)
256{
257 return __ip6gre_bucket(ign, &t->parms);
258}
259
260static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t)
261{
262 struct ip6_tnl __rcu **tp = ip6gre_bucket(ign, t);
263
264 rcu_assign_pointer(t->next, rtnl_dereference(*tp));
265 rcu_assign_pointer(*tp, t);
266}
267
268static void ip6gre_tunnel_unlink(struct ip6gre_net *ign, struct ip6_tnl *t)
269{
270 struct ip6_tnl __rcu **tp;
271 struct ip6_tnl *iter;
272
273 for (tp = ip6gre_bucket(ign, t);
274 (iter = rtnl_dereference(*tp)) != NULL;
275 tp = &iter->next) {
276 if (t == iter) {
277 rcu_assign_pointer(*tp, t->next);
278 break;
279 }
280 }
281}
282
283static struct ip6_tnl *ip6gre_tunnel_find(struct net *net,
284 const struct __ip6_tnl_parm *parms,
285 int type)
286{
287 const struct in6_addr *remote = &parms->raddr;
288 const struct in6_addr *local = &parms->laddr;
289 __be32 key = parms->i_key;
290 int link = parms->link;
291 struct ip6_tnl *t;
292 struct ip6_tnl __rcu **tp;
293 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
294
295 for (tp = __ip6gre_bucket(ign, parms);
296 (t = rtnl_dereference(*tp)) != NULL;
297 tp = &t->next)
298 if (ipv6_addr_equal(local, &t->parms.laddr) &&
299 ipv6_addr_equal(remote, &t->parms.raddr) &&
300 key == t->parms.i_key &&
301 link == t->parms.link &&
302 type == t->dev->type)
303 break;
304
305 return t;
306}
307
308static struct ip6_tnl *ip6gre_tunnel_locate(struct net *net,
309 const struct __ip6_tnl_parm *parms, int create)
310{
311 struct ip6_tnl *t, *nt;
312 struct net_device *dev;
313 char name[IFNAMSIZ];
314 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
315
316 t = ip6gre_tunnel_find(net, parms, ARPHRD_IP6GRE);
Steffen Klassertcd0a0bd2014-09-22 10:07:26 +0200317 if (t && create)
318 return NULL;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000319 if (t || !create)
320 return t;
321
Eric Dumazet5dcf6eb2018-04-05 06:39:29 -0700322 if (parms->name[0]) {
323 if (!dev_valid_name(parms->name))
324 return NULL;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000325 strlcpy(name, parms->name, IFNAMSIZ);
Eric Dumazet5dcf6eb2018-04-05 06:39:29 -0700326 } else {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000327 strcpy(name, "ip6gre%d");
Eric Dumazet5dcf6eb2018-04-05 06:39:29 -0700328 }
Tom Gundersenc835a672014-07-14 16:37:24 +0200329 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
330 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000331 if (!dev)
332 return NULL;
333
334 dev_net_set(dev, net);
335
336 nt = netdev_priv(dev);
337 nt->parms = *parms;
338 dev->rtnl_link_ops = &ip6gre_link_ops;
339
340 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200341 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000342
343 if (register_netdevice(dev) < 0)
344 goto failed_free;
345
Alexey Kodanevcc99c6d2018-01-18 20:51:12 +0300346 ip6gre_tnl_link_config(nt, 1);
347
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000348 /* Can use a lockless transmit, unless we generate output sequences */
Tom Herbertb45bd1d2016-05-09 17:12:12 -0700349 if (!(nt->parms.o_flags & TUNNEL_SEQ))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000350 dev->features |= NETIF_F_LLTX;
351
352 dev_hold(dev);
353 ip6gre_tunnel_link(ign, nt);
354 return nt;
355
356failed_free:
357 free_netdev(dev);
358 return NULL;
359}
360
361static void ip6gre_tunnel_uninit(struct net_device *dev)
362{
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200363 struct ip6_tnl *t = netdev_priv(dev);
364 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000365
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200366 ip6gre_tunnel_unlink(ign, t);
Paolo Abeni607f7252016-02-12 15:43:54 +0100367 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000368 dev_put(dev);
369}
370
371
372static void ip6gre_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Eric Dumazetae1768b2017-02-04 23:18:55 -0800373 u8 type, u8 code, int offset, __be32 info)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000374{
Eric Dumazetae1768b2017-02-04 23:18:55 -0800375 const struct gre_base_hdr *greh;
376 const struct ipv6hdr *ipv6h;
377 int grehlen = sizeof(*greh);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000378 struct ip6_tnl *t;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800379 int key_off = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000380 __be16 flags;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800381 __be32 key;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000382
Eric Dumazetae1768b2017-02-04 23:18:55 -0800383 if (!pskb_may_pull(skb, offset + grehlen))
384 return;
385 greh = (const struct gre_base_hdr *)(skb->data + offset);
386 flags = greh->flags;
387 if (flags & (GRE_VERSION | GRE_ROUTING))
388 return;
389 if (flags & GRE_CSUM)
390 grehlen += 4;
391 if (flags & GRE_KEY) {
392 key_off = grehlen + offset;
393 grehlen += 4;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000394 }
395
Eric Dumazetae1768b2017-02-04 23:18:55 -0800396 if (!pskb_may_pull(skb, offset + grehlen))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000397 return;
Eric Dumazetb87fb392012-08-19 03:47:30 +0000398 ipv6h = (const struct ipv6hdr *)skb->data;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800399 greh = (const struct gre_base_hdr *)(skb->data + offset);
400 key = key_off ? *(__be32 *)(skb->data + key_off) : 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000401
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000402 t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr,
Eric Dumazetae1768b2017-02-04 23:18:55 -0800403 key, greh->protocol);
Ian Morris63159f22015-03-29 14:00:04 +0100404 if (!t)
stephen hemminger0c5794a2012-09-24 18:12:24 +0000405 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000406
407 switch (type) {
408 __u32 teli;
409 struct ipv6_tlv_tnl_enc_lim *tel;
410 __u32 mtu;
411 case ICMPV6_DEST_UNREACH:
Matt Bennetta46496c2015-09-23 16:58:31 +1200412 net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
413 t->parms.name);
Xin Long6d428bc2017-10-26 19:23:27 +0800414 if (code != ICMPV6_PORT_UNREACH)
415 break;
416 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000417 case ICMPV6_TIME_EXCEED:
418 if (code == ICMPV6_EXC_HOPLIMIT) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200419 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
420 t->parms.name);
Xin Long6d428bc2017-10-26 19:23:27 +0800421 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000422 }
Xin Long6d428bc2017-10-26 19:23:27 +0800423 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000424 case ICMPV6_PARAMPROB:
425 teli = 0;
426 if (code == ICMPV6_HDR_FIELD)
427 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
428
Sabrina Dubrocad1e158e2015-02-04 15:25:09 +0100429 if (teli && teli == be32_to_cpu(info) - 2) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000430 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
431 if (tel->encap_limit == 0) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200432 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
433 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000434 }
435 } else {
Matt Bennetta46496c2015-09-23 16:58:31 +1200436 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
437 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000438 }
Xin Long6d428bc2017-10-26 19:23:27 +0800439 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000440 case ICMPV6_PKT_TOOBIG:
Xin Longca7d8a32017-09-05 17:26:33 +0800441 mtu = be32_to_cpu(info) - offset - t->tun_hlen;
442 if (t->dev->type == ARPHRD_ETHER)
443 mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000444 if (mtu < IPV6_MIN_MTU)
445 mtu = IPV6_MIN_MTU;
446 t->dev->mtu = mtu;
Xin Long6d428bc2017-10-26 19:23:27 +0800447 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000448 }
449
450 if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
451 t->err_count++;
452 else
453 t->err_count = 1;
454 t->err_time = jiffies;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000455}
456
Tom Herbert308edfdf2016-04-29 17:12:17 -0700457static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000458{
459 const struct ipv6hdr *ipv6h;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000460 struct ip6_tnl *tunnel;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000461
462 ipv6h = ipv6_hdr(skb);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000463 tunnel = ip6gre_tunnel_lookup(skb->dev,
Tom Herbert308edfdf2016-04-29 17:12:17 -0700464 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
465 tpi->proto);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000466 if (tunnel) {
Alexey Kodanev2388d522017-11-17 19:16:17 +0300467 ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000468
Tom Herbert308edfdf2016-04-29 17:12:17 -0700469 return PACKET_RCVD;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000470 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000471
Tom Herbert308edfdf2016-04-29 17:12:17 -0700472 return PACKET_REJECT;
473}
474
475static int gre_rcv(struct sk_buff *skb)
476{
477 struct tnl_ptk_info tpi;
478 bool csum_err = false;
479 int hdr_len;
480
Eric Dumazete5826152016-06-15 06:24:00 -0700481 hdr_len = gre_parse_header(skb, &tpi, &csum_err, htons(ETH_P_IPV6), 0);
Jiri Bencf132ae72016-05-03 15:00:21 +0200482 if (hdr_len < 0)
Tom Herbert308edfdf2016-04-29 17:12:17 -0700483 goto drop;
484
485 if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false))
486 goto drop;
487
488 if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD)
489 return 0;
490
491 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000492drop:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000493 kfree_skb(skb);
494 return 0;
495}
496
497struct ipv6_tel_txoption {
498 struct ipv6_txoptions ops;
499 __u8 dst_opt[8];
500};
501
Tom Herbertb05229f2016-04-29 17:12:21 -0700502static int gre_handle_offloads(struct sk_buff *skb, bool csum)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000503{
Tom Herbertb05229f2016-04-29 17:12:21 -0700504 return iptunnel_handle_offloads(skb,
505 csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000506}
507
Tom Herbertb05229f2016-04-29 17:12:21 -0700508static netdev_tx_t __gre6_xmit(struct sk_buff *skb,
509 struct net_device *dev, __u8 dsfield,
510 struct flowi6 *fl6, int encap_limit,
511 __u32 *pmtu, __be16 proto)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000512{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000513 struct ip6_tnl *tunnel = netdev_priv(dev);
Xin Longd6b1aeb2017-10-26 19:27:17 +0800514 struct dst_entry *dst = skb_dst(skb);
515 __be16 protocol;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000516
517 if (dev->type == ARPHRD_ETHER)
518 IPCB(skb)->flags = 0;
519
Tom Herbertb05229f2016-04-29 17:12:21 -0700520 if (dev->header_ops && dev->type == ARPHRD_IP6GRE)
521 fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr;
522 else
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000523 fl6->daddr = tunnel->parms.raddr;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000524
Tom Herbertb05229f2016-04-29 17:12:21 -0700525 if (tunnel->parms.o_flags & TUNNEL_SEQ)
526 tunnel->o_seqno++;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000527
Tom Herbertb05229f2016-04-29 17:12:21 -0700528 /* Push GRE header. */
Xin Longd6b1aeb2017-10-26 19:27:17 +0800529 protocol = (dev->type == ARPHRD_ETHER) ? htons(ETH_P_TEB) : proto;
Tom Herbertb05229f2016-04-29 17:12:21 -0700530 gre_build_header(skb, tunnel->tun_hlen, tunnel->parms.o_flags,
531 protocol, tunnel->parms.o_key, htonl(tunnel->o_seqno));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000532
Xin Longd6b1aeb2017-10-26 19:27:17 +0800533 /* TooBig packet may have updated dst->dev's mtu */
534 if (dst && dst_mtu(dst) > dst->dev->mtu)
535 dst->ops->update_pmtu(dst, NULL, skb, dst->dev->mtu);
536
Tom Herbertb05229f2016-04-29 17:12:21 -0700537 return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu,
538 NEXTHDR_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000539}
540
541static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev)
542{
543 struct ip6_tnl *t = netdev_priv(dev);
544 const struct iphdr *iph = ip_hdr(skb);
545 int encap_limit = -1;
546 struct flowi6 fl6;
547 __u8 dsfield;
548 __u32 mtu;
549 int err;
550
Bernie Harris5146d1f2016-02-22 12:58:05 +1300551 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
552
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000553 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
554 encap_limit = t->parms.encap_limit;
555
556 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000557
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000558 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
Peter Dawsonadfe95f2017-05-26 06:35:18 +1000559 dsfield = ipv4_get_dsfield(iph);
560 else
561 dsfield = ip6_tclass(t->parms.flowinfo);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000562 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
563 fl6.flowi6_mark = skb->mark;
564
Tom Herbertb05229f2016-04-29 17:12:21 -0700565 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
566 if (err)
567 return -1;
568
569 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
570 skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000571 if (err != 0) {
572 /* XXX: send ICMP error even if DF is not set. */
573 if (err == -EMSGSIZE)
574 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
575 htonl(mtu));
576 return -1;
577 }
578
579 return 0;
580}
581
582static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev)
583{
584 struct ip6_tnl *t = netdev_priv(dev);
585 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
586 int encap_limit = -1;
587 __u16 offset;
588 struct flowi6 fl6;
589 __u8 dsfield;
590 __u32 mtu;
591 int err;
592
593 if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
594 return -1;
595
596 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Eric Dumazetb07bf232017-01-23 16:43:05 -0800597 /* ip6_tnl_parse_tlv_enc_lim() might have reallocated skb->head */
598 ipv6h = ipv6_hdr(skb);
599
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000600 if (offset > 0) {
601 struct ipv6_tlv_tnl_enc_lim *tel;
602 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
603 if (tel->encap_limit == 0) {
604 icmpv6_send(skb, ICMPV6_PARAMPROB,
605 ICMPV6_HDR_FIELD, offset + 2);
606 return -1;
607 }
608 encap_limit = tel->encap_limit - 1;
609 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
610 encap_limit = t->parms.encap_limit;
611
612 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000613
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000614 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
Peter Dawsonadfe95f2017-05-26 06:35:18 +1000615 dsfield = ipv6_get_dsfield(ipv6h);
616 else
617 dsfield = ip6_tclass(t->parms.flowinfo);
618
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000619 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +0100620 fl6.flowlabel |= ip6_flowlabel(ipv6h);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000621 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
622 fl6.flowi6_mark = skb->mark;
623
Tom Herbertb05229f2016-04-29 17:12:21 -0700624 if (gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM)))
625 return -1;
626
627 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit,
628 &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000629 if (err != 0) {
630 if (err == -EMSGSIZE)
631 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
632 return -1;
633 }
634
635 return 0;
636}
637
638/**
639 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
640 * @t: the outgoing tunnel device
641 * @hdr: IPv6 header from the incoming packet
642 *
643 * Description:
644 * Avoid trivial tunneling loop by checking that tunnel exit-point
645 * doesn't match source of incoming packet.
646 *
647 * Return:
648 * 1 if conflict,
649 * 0 else
650 **/
651
652static inline bool ip6gre_tnl_addr_conflict(const struct ip6_tnl *t,
653 const struct ipv6hdr *hdr)
654{
655 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
656}
657
658static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev)
659{
660 struct ip6_tnl *t = netdev_priv(dev);
661 int encap_limit = -1;
662 struct flowi6 fl6;
663 __u32 mtu;
664 int err;
665
666 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
667 encap_limit = t->parms.encap_limit;
668
669 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000670
Tom Herbertb05229f2016-04-29 17:12:21 -0700671 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
672 if (err)
673 return err;
674
675 err = __gre6_xmit(skb, dev, 0, &fl6, encap_limit, &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000676
677 return err;
678}
679
680static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
681 struct net_device *dev)
682{
683 struct ip6_tnl *t = netdev_priv(dev);
684 struct net_device_stats *stats = &t->dev->stats;
685 int ret;
686
Steffen Klassertd5005142014-11-05 08:02:48 +0100687 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
Tommi Rantala41ab3e32013-02-06 03:24:02 +0000688 goto tx_err;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000689
690 switch (skb->protocol) {
691 case htons(ETH_P_IP):
692 ret = ip6gre_xmit_ipv4(skb, dev);
693 break;
694 case htons(ETH_P_IPV6):
695 ret = ip6gre_xmit_ipv6(skb, dev);
696 break;
697 default:
698 ret = ip6gre_xmit_other(skb, dev);
699 break;
700 }
701
702 if (ret < 0)
703 goto tx_err;
704
705 return NETDEV_TX_OK;
706
707tx_err:
708 stats->tx_errors++;
709 stats->tx_dropped++;
710 kfree_skb(skb);
711 return NETDEV_TX_OK;
712}
713
714static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
715{
716 struct net_device *dev = t->dev;
717 struct __ip6_tnl_parm *p = &t->parms;
718 struct flowi6 *fl6 = &t->fl.u.ip6;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700719 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000720
721 if (dev->type != ARPHRD_ETHER) {
722 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
723 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
724 }
725
726 /* Set up flowi template */
727 fl6->saddr = p->laddr;
728 fl6->daddr = p->raddr;
729 fl6->flowi6_oif = p->link;
730 fl6->flowlabel = 0;
Haishuang Yan252f3f52016-05-21 18:17:35 +0800731 fl6->flowi6_proto = IPPROTO_GRE;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000732
733 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
734 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
735 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
736 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
737
738 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
739 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
740
741 if (p->flags&IP6_TNL_F_CAP_XMIT &&
742 p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER)
743 dev->flags |= IFF_POINTOPOINT;
744 else
745 dev->flags &= ~IFF_POINTOPOINT;
746
Tom Herbertdb2ec952016-05-09 17:12:08 -0700747 t->tun_hlen = gre_calc_hlen(t->parms.o_flags);
748
Tom Herbert1faf3d92016-05-18 09:06:19 -0700749 t->hlen = t->encap_hlen + t->tun_hlen;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700750
751 t_hlen = t->hlen + sizeof(struct ipv6hdr);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000752
753 if (p->flags & IP6_TNL_F_CAP_XMIT) {
754 int strict = (ipv6_addr_type(&p->raddr) &
755 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
756
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200757 struct rt6_info *rt = rt6_lookup(t->net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000758 &p->raddr, &p->laddr,
759 p->link, strict);
760
Ian Morris63159f22015-03-29 14:00:04 +0100761 if (!rt)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000762 return;
763
764 if (rt->dst.dev) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700765 dev->hard_header_len = rt->dst.dev->hard_header_len +
766 t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000767
768 if (set_mtu) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700769 dev->mtu = rt->dst.dev->mtu - t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000770 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
771 dev->mtu -= 8;
Alexander Duycka9e242c2016-04-14 15:33:45 -0400772 if (dev->type == ARPHRD_ETHER)
773 dev->mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000774
775 if (dev->mtu < IPV6_MIN_MTU)
776 dev->mtu = IPV6_MIN_MTU;
777 }
778 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000779 ip6_rt_put(rt);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000780 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000781}
782
783static int ip6gre_tnl_change(struct ip6_tnl *t,
784 const struct __ip6_tnl_parm *p, int set_mtu)
785{
786 t->parms.laddr = p->laddr;
787 t->parms.raddr = p->raddr;
788 t->parms.flags = p->flags;
789 t->parms.hop_limit = p->hop_limit;
790 t->parms.encap_limit = p->encap_limit;
791 t->parms.flowinfo = p->flowinfo;
792 t->parms.link = p->link;
793 t->parms.proto = p->proto;
794 t->parms.i_key = p->i_key;
795 t->parms.o_key = p->o_key;
796 t->parms.i_flags = p->i_flags;
797 t->parms.o_flags = p->o_flags;
Paolo Abeni607f7252016-02-12 15:43:54 +0100798 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000799 ip6gre_tnl_link_config(t, set_mtu);
800 return 0;
801}
802
803static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
804 const struct ip6_tnl_parm2 *u)
805{
806 p->laddr = u->laddr;
807 p->raddr = u->raddr;
808 p->flags = u->flags;
809 p->hop_limit = u->hop_limit;
810 p->encap_limit = u->encap_limit;
811 p->flowinfo = u->flowinfo;
812 p->link = u->link;
813 p->i_key = u->i_key;
814 p->o_key = u->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700815 p->i_flags = gre_flags_to_tnl_flags(u->i_flags);
816 p->o_flags = gre_flags_to_tnl_flags(u->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000817 memcpy(p->name, u->name, sizeof(u->name));
818}
819
820static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
821 const struct __ip6_tnl_parm *p)
822{
823 u->proto = IPPROTO_GRE;
824 u->laddr = p->laddr;
825 u->raddr = p->raddr;
826 u->flags = p->flags;
827 u->hop_limit = p->hop_limit;
828 u->encap_limit = p->encap_limit;
829 u->flowinfo = p->flowinfo;
830 u->link = p->link;
831 u->i_key = p->i_key;
832 u->o_key = p->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700833 u->i_flags = gre_tnl_flags_to_gre_flags(p->i_flags);
834 u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000835 memcpy(u->name, p->name, sizeof(u->name));
836}
837
838static int ip6gre_tunnel_ioctl(struct net_device *dev,
839 struct ifreq *ifr, int cmd)
840{
841 int err = 0;
842 struct ip6_tnl_parm2 p;
843 struct __ip6_tnl_parm p1;
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200844 struct ip6_tnl *t = netdev_priv(dev);
845 struct net *net = t->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000846 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
847
Tom Herbert308edfdf2016-04-29 17:12:17 -0700848 memset(&p1, 0, sizeof(p1));
849
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000850 switch (cmd) {
851 case SIOCGETTUNNEL:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000852 if (dev == ign->fb_tunnel_dev) {
853 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
854 err = -EFAULT;
855 break;
856 }
857 ip6gre_tnl_parm_from_user(&p1, &p);
858 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100859 if (!t)
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200860 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000861 }
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000862 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000863 ip6gre_tnl_parm_to_user(&p, &t->parms);
864 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
865 err = -EFAULT;
866 break;
867
868 case SIOCADDTUNNEL:
869 case SIOCCHGTUNNEL:
870 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000871 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000872 goto done;
873
874 err = -EFAULT;
875 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
876 goto done;
877
878 err = -EINVAL;
879 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
880 goto done;
881
882 if (!(p.i_flags&GRE_KEY))
883 p.i_key = 0;
884 if (!(p.o_flags&GRE_KEY))
885 p.o_key = 0;
886
887 ip6gre_tnl_parm_from_user(&p1, &p);
888 t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
889
890 if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Ian Morris53b24b82015-03-29 14:00:05 +0100891 if (t) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000892 if (t->dev != dev) {
893 err = -EEXIST;
894 break;
895 }
896 } else {
897 t = netdev_priv(dev);
898
899 ip6gre_tunnel_unlink(ign, t);
900 synchronize_net();
901 ip6gre_tnl_change(t, &p1, 1);
902 ip6gre_tunnel_link(ign, t);
903 netdev_state_change(dev);
904 }
905 }
906
907 if (t) {
908 err = 0;
909
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000910 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000911 ip6gre_tnl_parm_to_user(&p, &t->parms);
912 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
913 err = -EFAULT;
914 } else
915 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
916 break;
917
918 case SIOCDELTUNNEL:
919 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000920 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000921 goto done;
922
923 if (dev == ign->fb_tunnel_dev) {
924 err = -EFAULT;
925 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
926 goto done;
927 err = -ENOENT;
928 ip6gre_tnl_parm_from_user(&p1, &p);
929 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100930 if (!t)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000931 goto done;
932 err = -EPERM;
933 if (t == netdev_priv(ign->fb_tunnel_dev))
934 goto done;
935 dev = t->dev;
936 }
937 unregister_netdevice(dev);
938 err = 0;
939 break;
940
941 default:
942 err = -EINVAL;
943 }
944
945done:
946 return err;
947}
948
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000949static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
Xin Longe814bae2017-09-15 12:00:07 +0800950 unsigned short type, const void *daddr,
951 const void *saddr, unsigned int len)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000952{
953 struct ip6_tnl *t = netdev_priv(dev);
Xin Longe814bae2017-09-15 12:00:07 +0800954 struct ipv6hdr *ipv6h;
955 __be16 *p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000956
Xin Longe814bae2017-09-15 12:00:07 +0800957 ipv6h = (struct ipv6hdr *)skb_push(skb, t->hlen + sizeof(*ipv6h));
958 ip6_flow_hdr(ipv6h, 0, ip6_make_flowlabel(dev_net(dev), skb,
959 t->fl.u.ip6.flowlabel,
960 true, &t->fl.u.ip6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000961 ipv6h->hop_limit = t->parms.hop_limit;
962 ipv6h->nexthdr = NEXTHDR_GRE;
963 ipv6h->saddr = t->parms.laddr;
964 ipv6h->daddr = t->parms.raddr;
965
Xin Longe814bae2017-09-15 12:00:07 +0800966 p = (__be16 *)(ipv6h + 1);
967 p[0] = t->parms.o_flags;
968 p[1] = htons(type);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000969
970 /*
971 * Set the source hardware address.
972 */
973
974 if (saddr)
975 memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
976 if (daddr)
977 memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
978 if (!ipv6_addr_any(&ipv6h->daddr))
979 return t->hlen;
980
981 return -t->hlen;
982}
983
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000984static const struct header_ops ip6gre_header_ops = {
985 .create = ip6gre_header,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000986};
987
988static const struct net_device_ops ip6gre_netdev_ops = {
989 .ndo_init = ip6gre_tunnel_init,
990 .ndo_uninit = ip6gre_tunnel_uninit,
991 .ndo_start_xmit = ip6gre_tunnel_xmit,
992 .ndo_do_ioctl = ip6gre_tunnel_ioctl,
Tom Herbertb05229f2016-04-29 17:12:21 -0700993 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +0000994 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +0200995 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000996};
997
998static void ip6gre_dev_free(struct net_device *dev)
999{
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001000 struct ip6_tnl *t = netdev_priv(dev);
1001
Paolo Abeni607f7252016-02-12 15:43:54 +01001002 dst_cache_destroy(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001003 free_percpu(dev->tstats);
1004 free_netdev(dev);
1005}
1006
1007static void ip6gre_tunnel_setup(struct net_device *dev)
1008{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001009 dev->netdev_ops = &ip6gre_netdev_ops;
1010 dev->destructor = ip6gre_dev_free;
1011
1012 dev->type = ARPHRD_IP6GRE;
Tom Herbertb05229f2016-04-29 17:12:21 -07001013
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001014 dev->flags |= IFF_NOARP;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001015 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -07001016 netif_keep_dst(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001017}
1018
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001019static int ip6gre_tunnel_init_common(struct net_device *dev)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001020{
1021 struct ip6_tnl *tunnel;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001022 int ret;
Tom Herbertb05229f2016-04-29 17:12:21 -07001023 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001024
1025 tunnel = netdev_priv(dev);
1026
1027 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001028 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001029 strcpy(tunnel->parms.name, dev->name);
1030
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001031 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1032 if (!dev->tstats)
1033 return -ENOMEM;
1034
Paolo Abeni607f7252016-02-12 15:43:54 +01001035 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001036 if (ret) {
1037 free_percpu(dev->tstats);
1038 dev->tstats = NULL;
1039 return ret;
1040 }
1041
Tom Herbertb05229f2016-04-29 17:12:21 -07001042 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001043 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen;
Tom Herbertb05229f2016-04-29 17:12:21 -07001044 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1045
Tom Herbertdb2ec952016-05-09 17:12:08 -07001046 dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1047 dev->mtu = ETH_DATA_LEN - t_hlen;
Haishuang Yan1b227e52016-05-21 18:17:34 +08001048 if (dev->type == ARPHRD_ETHER)
1049 dev->mtu -= ETH_HLEN;
Tom Herbertb05229f2016-04-29 17:12:21 -07001050 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1051 dev->mtu -= 8;
1052
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001053 return 0;
1054}
1055
1056static int ip6gre_tunnel_init(struct net_device *dev)
1057{
1058 struct ip6_tnl *tunnel;
1059 int ret;
1060
1061 ret = ip6gre_tunnel_init_common(dev);
1062 if (ret)
1063 return ret;
1064
1065 tunnel = netdev_priv(dev);
1066
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001067 memcpy(dev->dev_addr, &tunnel->parms.laddr, sizeof(struct in6_addr));
1068 memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1069
1070 if (ipv6_addr_any(&tunnel->parms.raddr))
1071 dev->header_ops = &ip6gre_header_ops;
1072
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001073 return 0;
1074}
1075
1076static void ip6gre_fb_tunnel_init(struct net_device *dev)
1077{
1078 struct ip6_tnl *tunnel = netdev_priv(dev);
1079
1080 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001081 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001082 strcpy(tunnel->parms.name, dev->name);
1083
1084 tunnel->hlen = sizeof(struct ipv6hdr) + 4;
1085
1086 dev_hold(dev);
1087}
1088
1089
1090static struct inet6_protocol ip6gre_protocol __read_mostly = {
Tom Herbert308edfdf2016-04-29 17:12:17 -07001091 .handler = gre_rcv,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001092 .err_handler = ip6gre_err,
1093 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1094};
1095
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001096static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001097{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001098 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1099 struct net_device *dev, *aux;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001100 int prio;
1101
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001102 for_each_netdev_safe(net, dev, aux)
1103 if (dev->rtnl_link_ops == &ip6gre_link_ops ||
1104 dev->rtnl_link_ops == &ip6gre_tap_ops)
1105 unregister_netdevice_queue(dev, head);
1106
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001107 for (prio = 0; prio < 4; prio++) {
1108 int h;
Jiri Kosinae87a8f22016-08-10 11:03:35 +02001109 for (h = 0; h < IP6_GRE_HASH_SIZE; h++) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001110 struct ip6_tnl *t;
1111
1112 t = rtnl_dereference(ign->tunnels[prio][h]);
1113
Ian Morris53b24b82015-03-29 14:00:05 +01001114 while (t) {
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001115 /* If dev is in the same netns, it has already
1116 * been added to the list by the previous loop.
1117 */
1118 if (!net_eq(dev_net(t->dev), net))
1119 unregister_netdevice_queue(t->dev,
1120 head);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001121 t = rtnl_dereference(t->next);
1122 }
1123 }
1124 }
1125}
1126
1127static int __net_init ip6gre_init_net(struct net *net)
1128{
1129 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1130 int err;
1131
1132 ign->fb_tunnel_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001133 NET_NAME_UNKNOWN,
1134 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001135 if (!ign->fb_tunnel_dev) {
1136 err = -ENOMEM;
1137 goto err_alloc_dev;
1138 }
1139 dev_net_set(ign->fb_tunnel_dev, net);
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001140 /* FB netdevice is special: we have one, and only one per netns.
1141 * Allowing to move it to another netns is clearly unsafe.
1142 */
1143 ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1144
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001145
1146 ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1147 ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1148
1149 err = register_netdev(ign->fb_tunnel_dev);
1150 if (err)
1151 goto err_reg_dev;
1152
1153 rcu_assign_pointer(ign->tunnels_wc[0],
1154 netdev_priv(ign->fb_tunnel_dev));
1155 return 0;
1156
1157err_reg_dev:
1158 ip6gre_dev_free(ign->fb_tunnel_dev);
1159err_alloc_dev:
1160 return err;
1161}
1162
1163static void __net_exit ip6gre_exit_net(struct net *net)
1164{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001165 LIST_HEAD(list);
1166
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001167 rtnl_lock();
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001168 ip6gre_destroy_tunnels(net, &list);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001169 unregister_netdevice_many(&list);
1170 rtnl_unlock();
1171}
1172
1173static struct pernet_operations ip6gre_net_ops = {
1174 .init = ip6gre_init_net,
1175 .exit = ip6gre_exit_net,
1176 .id = &ip6gre_net_id,
1177 .size = sizeof(struct ip6gre_net),
1178};
1179
1180static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
1181{
1182 __be16 flags;
1183
1184 if (!data)
1185 return 0;
1186
1187 flags = 0;
1188 if (data[IFLA_GRE_IFLAGS])
1189 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1190 if (data[IFLA_GRE_OFLAGS])
1191 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1192 if (flags & (GRE_VERSION|GRE_ROUTING))
1193 return -EINVAL;
1194
1195 return 0;
1196}
1197
1198static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[])
1199{
1200 struct in6_addr daddr;
1201
1202 if (tb[IFLA_ADDRESS]) {
1203 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1204 return -EINVAL;
1205 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1206 return -EADDRNOTAVAIL;
1207 }
1208
1209 if (!data)
1210 goto out;
1211
1212 if (data[IFLA_GRE_REMOTE]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02001213 daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001214 if (ipv6_addr_any(&daddr))
1215 return -EINVAL;
1216 }
1217
1218out:
1219 return ip6gre_tunnel_validate(tb, data);
1220}
1221
1222
1223static void ip6gre_netlink_parms(struct nlattr *data[],
1224 struct __ip6_tnl_parm *parms)
1225{
1226 memset(parms, 0, sizeof(*parms));
1227
1228 if (!data)
1229 return;
1230
1231 if (data[IFLA_GRE_LINK])
1232 parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1233
1234 if (data[IFLA_GRE_IFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001235 parms->i_flags = gre_flags_to_tnl_flags(
1236 nla_get_be16(data[IFLA_GRE_IFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001237
1238 if (data[IFLA_GRE_OFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001239 parms->o_flags = gre_flags_to_tnl_flags(
1240 nla_get_be16(data[IFLA_GRE_OFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001241
1242 if (data[IFLA_GRE_IKEY])
1243 parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1244
1245 if (data[IFLA_GRE_OKEY])
1246 parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1247
1248 if (data[IFLA_GRE_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +02001249 parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001250
1251 if (data[IFLA_GRE_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +02001252 parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001253
1254 if (data[IFLA_GRE_TTL])
1255 parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1256
1257 if (data[IFLA_GRE_ENCAP_LIMIT])
1258 parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1259
1260 if (data[IFLA_GRE_FLOWINFO])
Lance Richardsonc2675de2016-09-24 14:01:04 -04001261 parms->flowinfo = nla_get_be32(data[IFLA_GRE_FLOWINFO]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001262
1263 if (data[IFLA_GRE_FLAGS])
1264 parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
1265}
1266
1267static int ip6gre_tap_init(struct net_device *dev)
1268{
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001269 int ret;
1270
1271 ret = ip6gre_tunnel_init_common(dev);
1272 if (ret)
1273 return ret;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001274
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001275 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1276
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001277 return 0;
1278}
1279
1280static const struct net_device_ops ip6gre_tap_netdev_ops = {
1281 .ndo_init = ip6gre_tap_init,
1282 .ndo_uninit = ip6gre_tunnel_uninit,
1283 .ndo_start_xmit = ip6gre_tunnel_xmit,
1284 .ndo_set_mac_address = eth_mac_addr,
1285 .ndo_validate_addr = eth_validate_addr,
Tom Herbertb05229f2016-04-29 17:12:21 -07001286 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +00001287 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001288 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001289};
1290
Alexander Duyckac4eb002016-04-14 15:33:51 -04001291#define GRE6_FEATURES (NETIF_F_SG | \
1292 NETIF_F_FRAGLIST | \
1293 NETIF_F_HIGHDMA | \
1294 NETIF_F_HW_CSUM)
1295
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001296static void ip6gre_tap_setup(struct net_device *dev)
1297{
1298
1299 ether_setup(dev);
1300
1301 dev->netdev_ops = &ip6gre_tap_netdev_ops;
1302 dev->destructor = ip6gre_dev_free;
1303
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001304 dev->features |= NETIF_F_NETNS_LOCAL;
Jiri Bencd13b1612016-02-17 15:32:53 +01001305 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001306 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Xin Longab4da562017-09-28 13:23:50 +08001307 netif_keep_dst(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001308}
1309
Tom Herbert1faf3d92016-05-18 09:06:19 -07001310static bool ip6gre_netlink_encap_parms(struct nlattr *data[],
1311 struct ip_tunnel_encap *ipencap)
1312{
1313 bool ret = false;
1314
1315 memset(ipencap, 0, sizeof(*ipencap));
1316
1317 if (!data)
1318 return ret;
1319
1320 if (data[IFLA_GRE_ENCAP_TYPE]) {
1321 ret = true;
1322 ipencap->type = nla_get_u16(data[IFLA_GRE_ENCAP_TYPE]);
1323 }
1324
1325 if (data[IFLA_GRE_ENCAP_FLAGS]) {
1326 ret = true;
1327 ipencap->flags = nla_get_u16(data[IFLA_GRE_ENCAP_FLAGS]);
1328 }
1329
1330 if (data[IFLA_GRE_ENCAP_SPORT]) {
1331 ret = true;
1332 ipencap->sport = nla_get_be16(data[IFLA_GRE_ENCAP_SPORT]);
1333 }
1334
1335 if (data[IFLA_GRE_ENCAP_DPORT]) {
1336 ret = true;
1337 ipencap->dport = nla_get_be16(data[IFLA_GRE_ENCAP_DPORT]);
1338 }
1339
1340 return ret;
1341}
1342
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001343static int ip6gre_newlink(struct net *src_net, struct net_device *dev,
1344 struct nlattr *tb[], struct nlattr *data[])
1345{
1346 struct ip6_tnl *nt;
1347 struct net *net = dev_net(dev);
1348 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001349 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001350 int err;
1351
1352 nt = netdev_priv(dev);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001353
1354 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1355 int err = ip6_tnl_encap_setup(nt, &ipencap);
1356
1357 if (err < 0)
1358 return err;
1359 }
1360
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001361 ip6gre_netlink_parms(data, &nt->parms);
1362
1363 if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
1364 return -EEXIST;
1365
1366 if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS])
1367 eth_hw_addr_random(dev);
1368
1369 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001370 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001371
Alexander Duyckac4eb002016-04-14 15:33:51 -04001372 dev->features |= GRE6_FEATURES;
1373 dev->hw_features |= GRE6_FEATURES;
1374
Tom Herbertb45bd1d2016-05-09 17:12:12 -07001375 if (!(nt->parms.o_flags & TUNNEL_SEQ)) {
Alexander Duyck6a553682016-05-18 10:44:47 -07001376 /* TCP offload with GRE SEQ is not supported, nor
1377 * can we support 2 levels of outer headers requiring
1378 * an update.
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001379 */
Alexander Duyck6a553682016-05-18 10:44:47 -07001380 if (!(nt->parms.o_flags & TUNNEL_CSUM) ||
1381 (nt->encap.type == TUNNEL_ENCAP_NONE)) {
1382 dev->features |= NETIF_F_GSO_SOFTWARE;
1383 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1384 }
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001385
1386 /* Can use a lockless transmit, unless we generate
1387 * output sequences
1388 */
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001389 dev->features |= NETIF_F_LLTX;
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001390 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001391
1392 err = register_netdevice(dev);
1393 if (err)
1394 goto out;
1395
Alexey Kodanevcc99c6d2018-01-18 20:51:12 +03001396 ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
1397
1398 if (tb[IFLA_MTU])
1399 ip6_tnl_change_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1400
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001401 dev_hold(dev);
1402 ip6gre_tunnel_link(ign, nt);
1403
1404out:
1405 return err;
1406}
1407
1408static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
1409 struct nlattr *data[])
1410{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001411 struct ip6_tnl *t, *nt = netdev_priv(dev);
1412 struct net *net = nt->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001413 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1414 struct __ip6_tnl_parm p;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001415 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001416
1417 if (dev == ign->fb_tunnel_dev)
1418 return -EINVAL;
1419
Tom Herbert1faf3d92016-05-18 09:06:19 -07001420 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1421 int err = ip6_tnl_encap_setup(nt, &ipencap);
1422
1423 if (err < 0)
1424 return err;
1425 }
1426
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001427 ip6gre_netlink_parms(data, &p);
1428
1429 t = ip6gre_tunnel_locate(net, &p, 0);
1430
1431 if (t) {
1432 if (t->dev != dev)
1433 return -EEXIST;
1434 } else {
1435 t = nt;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001436 }
1437
Nicolas Dichtel6a61d4d2015-12-03 17:21:50 +01001438 ip6gre_tunnel_unlink(ign, t);
1439 ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
1440 ip6gre_tunnel_link(ign, t);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001441 return 0;
1442}
1443
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001444static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
1445{
1446 struct net *net = dev_net(dev);
1447 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1448
1449 if (dev != ign->fb_tunnel_dev)
1450 unregister_netdevice_queue(dev, head);
1451}
1452
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001453static size_t ip6gre_get_size(const struct net_device *dev)
1454{
1455 return
1456 /* IFLA_GRE_LINK */
1457 nla_total_size(4) +
1458 /* IFLA_GRE_IFLAGS */
1459 nla_total_size(2) +
1460 /* IFLA_GRE_OFLAGS */
1461 nla_total_size(2) +
1462 /* IFLA_GRE_IKEY */
1463 nla_total_size(4) +
1464 /* IFLA_GRE_OKEY */
1465 nla_total_size(4) +
1466 /* IFLA_GRE_LOCAL */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001467 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001468 /* IFLA_GRE_REMOTE */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001469 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001470 /* IFLA_GRE_TTL */
1471 nla_total_size(1) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001472 /* IFLA_GRE_ENCAP_LIMIT */
1473 nla_total_size(1) +
1474 /* IFLA_GRE_FLOWINFO */
1475 nla_total_size(4) +
1476 /* IFLA_GRE_FLAGS */
1477 nla_total_size(4) +
Tom Herbert1faf3d92016-05-18 09:06:19 -07001478 /* IFLA_GRE_ENCAP_TYPE */
1479 nla_total_size(2) +
1480 /* IFLA_GRE_ENCAP_FLAGS */
1481 nla_total_size(2) +
1482 /* IFLA_GRE_ENCAP_SPORT */
1483 nla_total_size(2) +
1484 /* IFLA_GRE_ENCAP_DPORT */
1485 nla_total_size(2) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001486 0;
1487}
1488
1489static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
1490{
1491 struct ip6_tnl *t = netdev_priv(dev);
1492 struct __ip6_tnl_parm *p = &t->parms;
1493
1494 if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001495 nla_put_be16(skb, IFLA_GRE_IFLAGS,
1496 gre_tnl_flags_to_gre_flags(p->i_flags)) ||
1497 nla_put_be16(skb, IFLA_GRE_OFLAGS,
1498 gre_tnl_flags_to_gre_flags(p->o_flags)) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001499 nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
1500 nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
Jiri Benc930345e2015-03-29 16:59:25 +02001501 nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
1502 nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001503 nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001504 nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
1505 nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
1506 nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags))
1507 goto nla_put_failure;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001508
1509 if (nla_put_u16(skb, IFLA_GRE_ENCAP_TYPE,
1510 t->encap.type) ||
1511 nla_put_be16(skb, IFLA_GRE_ENCAP_SPORT,
1512 t->encap.sport) ||
1513 nla_put_be16(skb, IFLA_GRE_ENCAP_DPORT,
1514 t->encap.dport) ||
1515 nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS,
1516 t->encap.flags))
1517 goto nla_put_failure;
1518
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001519 return 0;
1520
1521nla_put_failure:
1522 return -EMSGSIZE;
1523}
1524
1525static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
1526 [IFLA_GRE_LINK] = { .type = NLA_U32 },
1527 [IFLA_GRE_IFLAGS] = { .type = NLA_U16 },
1528 [IFLA_GRE_OFLAGS] = { .type = NLA_U16 },
1529 [IFLA_GRE_IKEY] = { .type = NLA_U32 },
1530 [IFLA_GRE_OKEY] = { .type = NLA_U32 },
1531 [IFLA_GRE_LOCAL] = { .len = FIELD_SIZEOF(struct ipv6hdr, saddr) },
1532 [IFLA_GRE_REMOTE] = { .len = FIELD_SIZEOF(struct ipv6hdr, daddr) },
1533 [IFLA_GRE_TTL] = { .type = NLA_U8 },
1534 [IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
1535 [IFLA_GRE_FLOWINFO] = { .type = NLA_U32 },
1536 [IFLA_GRE_FLAGS] = { .type = NLA_U32 },
Tom Herbert1faf3d92016-05-18 09:06:19 -07001537 [IFLA_GRE_ENCAP_TYPE] = { .type = NLA_U16 },
1538 [IFLA_GRE_ENCAP_FLAGS] = { .type = NLA_U16 },
1539 [IFLA_GRE_ENCAP_SPORT] = { .type = NLA_U16 },
1540 [IFLA_GRE_ENCAP_DPORT] = { .type = NLA_U16 },
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001541};
1542
1543static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
1544 .kind = "ip6gre",
1545 .maxtype = IFLA_GRE_MAX,
1546 .policy = ip6gre_policy,
1547 .priv_size = sizeof(struct ip6_tnl),
1548 .setup = ip6gre_tunnel_setup,
1549 .validate = ip6gre_tunnel_validate,
1550 .newlink = ip6gre_newlink,
1551 .changelink = ip6gre_changelink,
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001552 .dellink = ip6gre_dellink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001553 .get_size = ip6gre_get_size,
1554 .fill_info = ip6gre_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01001555 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001556};
1557
1558static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
1559 .kind = "ip6gretap",
1560 .maxtype = IFLA_GRE_MAX,
1561 .policy = ip6gre_policy,
1562 .priv_size = sizeof(struct ip6_tnl),
1563 .setup = ip6gre_tap_setup,
1564 .validate = ip6gre_tap_validate,
1565 .newlink = ip6gre_newlink,
1566 .changelink = ip6gre_changelink,
1567 .get_size = ip6gre_get_size,
1568 .fill_info = ip6gre_fill_info,
Nicolas Dichtel3390e392015-01-20 15:15:43 +01001569 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001570};
1571
1572/*
1573 * And now the modules code and kernel interface.
1574 */
1575
1576static int __init ip6gre_init(void)
1577{
1578 int err;
1579
1580 pr_info("GRE over IPv6 tunneling driver\n");
1581
1582 err = register_pernet_device(&ip6gre_net_ops);
1583 if (err < 0)
1584 return err;
1585
1586 err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
1587 if (err < 0) {
1588 pr_info("%s: can't add protocol\n", __func__);
1589 goto add_proto_failed;
1590 }
1591
1592 err = rtnl_link_register(&ip6gre_link_ops);
1593 if (err < 0)
1594 goto rtnl_link_failed;
1595
1596 err = rtnl_link_register(&ip6gre_tap_ops);
1597 if (err < 0)
1598 goto tap_ops_failed;
1599
1600out:
1601 return err;
1602
1603tap_ops_failed:
1604 rtnl_link_unregister(&ip6gre_link_ops);
1605rtnl_link_failed:
1606 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1607add_proto_failed:
1608 unregister_pernet_device(&ip6gre_net_ops);
1609 goto out;
1610}
1611
1612static void __exit ip6gre_fini(void)
1613{
1614 rtnl_link_unregister(&ip6gre_tap_ops);
1615 rtnl_link_unregister(&ip6gre_link_ops);
1616 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1617 unregister_pernet_device(&ip6gre_net_ops);
1618}
1619
1620module_init(ip6gre_init);
1621module_exit(ip6gre_fini);
1622MODULE_LICENSE("GPL");
1623MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
1624MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
1625MODULE_ALIAS_RTNL_LINK("ip6gre");
Nicolas Dichtel5a4ee9a2014-09-24 11:03:00 +02001626MODULE_ALIAS_RTNL_LINK("ip6gretap");
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001627MODULE_ALIAS_NETDEV("ip6gre0");