blob: f78afe43bdff34414b7cf32b5049dd9f5aaf5b7d [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
322 if (parms->name[0])
323 strlcpy(name, parms->name, IFNAMSIZ);
324 else
325 strcpy(name, "ip6gre%d");
326
Tom Gundersenc835a672014-07-14 16:37:24 +0200327 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
328 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000329 if (!dev)
330 return NULL;
331
332 dev_net_set(dev, net);
333
334 nt = netdev_priv(dev);
335 nt->parms = *parms;
336 dev->rtnl_link_ops = &ip6gre_link_ops;
337
338 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200339 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000340 ip6gre_tnl_link_config(nt, 1);
341
342 if (register_netdevice(dev) < 0)
343 goto failed_free;
344
345 /* Can use a lockless transmit, unless we generate output sequences */
Tom Herbertb45bd1d2016-05-09 17:12:12 -0700346 if (!(nt->parms.o_flags & TUNNEL_SEQ))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000347 dev->features |= NETIF_F_LLTX;
348
349 dev_hold(dev);
350 ip6gre_tunnel_link(ign, nt);
351 return nt;
352
353failed_free:
354 free_netdev(dev);
355 return NULL;
356}
357
358static void ip6gre_tunnel_uninit(struct net_device *dev)
359{
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200360 struct ip6_tnl *t = netdev_priv(dev);
361 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000362
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200363 ip6gre_tunnel_unlink(ign, t);
Paolo Abeni607f7252016-02-12 15:43:54 +0100364 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000365 dev_put(dev);
366}
367
368
369static void ip6gre_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Eric Dumazetae1768b2017-02-04 23:18:55 -0800370 u8 type, u8 code, int offset, __be32 info)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000371{
Eric Dumazetae1768b2017-02-04 23:18:55 -0800372 const struct gre_base_hdr *greh;
373 const struct ipv6hdr *ipv6h;
374 int grehlen = sizeof(*greh);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000375 struct ip6_tnl *t;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800376 int key_off = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000377 __be16 flags;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800378 __be32 key;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000379
Eric Dumazetae1768b2017-02-04 23:18:55 -0800380 if (!pskb_may_pull(skb, offset + grehlen))
381 return;
382 greh = (const struct gre_base_hdr *)(skb->data + offset);
383 flags = greh->flags;
384 if (flags & (GRE_VERSION | GRE_ROUTING))
385 return;
386 if (flags & GRE_CSUM)
387 grehlen += 4;
388 if (flags & GRE_KEY) {
389 key_off = grehlen + offset;
390 grehlen += 4;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000391 }
392
Eric Dumazetae1768b2017-02-04 23:18:55 -0800393 if (!pskb_may_pull(skb, offset + grehlen))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000394 return;
Eric Dumazetb87fb392012-08-19 03:47:30 +0000395 ipv6h = (const struct ipv6hdr *)skb->data;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800396 greh = (const struct gre_base_hdr *)(skb->data + offset);
397 key = key_off ? *(__be32 *)(skb->data + key_off) : 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000398
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000399 t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr,
Eric Dumazetae1768b2017-02-04 23:18:55 -0800400 key, greh->protocol);
Ian Morris63159f22015-03-29 14:00:04 +0100401 if (!t)
stephen hemminger0c5794a2012-09-24 18:12:24 +0000402 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000403
404 switch (type) {
405 __u32 teli;
406 struct ipv6_tlv_tnl_enc_lim *tel;
407 __u32 mtu;
408 case ICMPV6_DEST_UNREACH:
Matt Bennetta46496c2015-09-23 16:58:31 +1200409 net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
410 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000411 break;
412 case ICMPV6_TIME_EXCEED:
413 if (code == ICMPV6_EXC_HOPLIMIT) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200414 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
415 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000416 }
417 break;
418 case ICMPV6_PARAMPROB:
419 teli = 0;
420 if (code == ICMPV6_HDR_FIELD)
421 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
422
Sabrina Dubrocad1e158e2015-02-04 15:25:09 +0100423 if (teli && teli == be32_to_cpu(info) - 2) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000424 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
425 if (tel->encap_limit == 0) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200426 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
427 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000428 }
429 } else {
Matt Bennetta46496c2015-09-23 16:58:31 +1200430 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
431 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000432 }
433 break;
434 case ICMPV6_PKT_TOOBIG:
Xin Longca7d8a32017-09-05 17:26:33 +0800435 mtu = be32_to_cpu(info) - offset - t->tun_hlen;
436 if (t->dev->type == ARPHRD_ETHER)
437 mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000438 if (mtu < IPV6_MIN_MTU)
439 mtu = IPV6_MIN_MTU;
440 t->dev->mtu = mtu;
441 break;
442 }
443
444 if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
445 t->err_count++;
446 else
447 t->err_count = 1;
448 t->err_time = jiffies;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000449}
450
Tom Herbert308edfdf2016-04-29 17:12:17 -0700451static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000452{
453 const struct ipv6hdr *ipv6h;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000454 struct ip6_tnl *tunnel;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000455
456 ipv6h = ipv6_hdr(skb);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000457 tunnel = ip6gre_tunnel_lookup(skb->dev,
Tom Herbert308edfdf2016-04-29 17:12:17 -0700458 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
459 tpi->proto);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000460 if (tunnel) {
Tom Herbert308edfdf2016-04-29 17:12:17 -0700461 ip6_tnl_rcv(tunnel, skb, tpi, NULL, false);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000462
Tom Herbert308edfdf2016-04-29 17:12:17 -0700463 return PACKET_RCVD;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000464 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000465
Tom Herbert308edfdf2016-04-29 17:12:17 -0700466 return PACKET_REJECT;
467}
468
469static int gre_rcv(struct sk_buff *skb)
470{
471 struct tnl_ptk_info tpi;
472 bool csum_err = false;
473 int hdr_len;
474
Eric Dumazete5826152016-06-15 06:24:00 -0700475 hdr_len = gre_parse_header(skb, &tpi, &csum_err, htons(ETH_P_IPV6), 0);
Jiri Bencf132ae72016-05-03 15:00:21 +0200476 if (hdr_len < 0)
Tom Herbert308edfdf2016-04-29 17:12:17 -0700477 goto drop;
478
479 if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false))
480 goto drop;
481
482 if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD)
483 return 0;
484
485 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000486drop:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000487 kfree_skb(skb);
488 return 0;
489}
490
491struct ipv6_tel_txoption {
492 struct ipv6_txoptions ops;
493 __u8 dst_opt[8];
494};
495
Tom Herbertb05229f2016-04-29 17:12:21 -0700496static int gre_handle_offloads(struct sk_buff *skb, bool csum)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000497{
Tom Herbertb05229f2016-04-29 17:12:21 -0700498 return iptunnel_handle_offloads(skb,
499 csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000500}
501
Tom Herbertb05229f2016-04-29 17:12:21 -0700502static netdev_tx_t __gre6_xmit(struct sk_buff *skb,
503 struct net_device *dev, __u8 dsfield,
504 struct flowi6 *fl6, int encap_limit,
505 __u32 *pmtu, __be16 proto)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000506{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000507 struct ip6_tnl *tunnel = netdev_priv(dev);
Tom Herbertb05229f2016-04-29 17:12:21 -0700508 __be16 protocol = (dev->type == ARPHRD_ETHER) ?
509 htons(ETH_P_TEB) : proto;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000510
511 if (dev->type == ARPHRD_ETHER)
512 IPCB(skb)->flags = 0;
513
Tom Herbertb05229f2016-04-29 17:12:21 -0700514 if (dev->header_ops && dev->type == ARPHRD_IP6GRE)
515 fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr;
516 else
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000517 fl6->daddr = tunnel->parms.raddr;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000518
Tom Herbertb05229f2016-04-29 17:12:21 -0700519 if (tunnel->parms.o_flags & TUNNEL_SEQ)
520 tunnel->o_seqno++;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000521
Tom Herbertb05229f2016-04-29 17:12:21 -0700522 /* Push GRE header. */
523 gre_build_header(skb, tunnel->tun_hlen, tunnel->parms.o_flags,
524 protocol, tunnel->parms.o_key, htonl(tunnel->o_seqno));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000525
Tom Herbertb05229f2016-04-29 17:12:21 -0700526 return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu,
527 NEXTHDR_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000528}
529
530static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev)
531{
532 struct ip6_tnl *t = netdev_priv(dev);
533 const struct iphdr *iph = ip_hdr(skb);
534 int encap_limit = -1;
535 struct flowi6 fl6;
536 __u8 dsfield;
537 __u32 mtu;
538 int err;
539
Bernie Harris5146d1f2016-02-22 12:58:05 +1300540 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
541
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000542 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
543 encap_limit = t->parms.encap_limit;
544
545 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000546
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000547 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
Peter Dawsonadfe95f2017-05-26 06:35:18 +1000548 dsfield = ipv4_get_dsfield(iph);
549 else
550 dsfield = ip6_tclass(t->parms.flowinfo);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000551 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
552 fl6.flowi6_mark = skb->mark;
553
Tom Herbertb05229f2016-04-29 17:12:21 -0700554 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
555 if (err)
556 return -1;
557
558 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
559 skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000560 if (err != 0) {
561 /* XXX: send ICMP error even if DF is not set. */
562 if (err == -EMSGSIZE)
563 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
564 htonl(mtu));
565 return -1;
566 }
567
568 return 0;
569}
570
571static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev)
572{
573 struct ip6_tnl *t = netdev_priv(dev);
574 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
575 int encap_limit = -1;
576 __u16 offset;
577 struct flowi6 fl6;
578 __u8 dsfield;
579 __u32 mtu;
580 int err;
581
582 if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
583 return -1;
584
585 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Eric Dumazetb07bf232017-01-23 16:43:05 -0800586 /* ip6_tnl_parse_tlv_enc_lim() might have reallocated skb->head */
587 ipv6h = ipv6_hdr(skb);
588
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000589 if (offset > 0) {
590 struct ipv6_tlv_tnl_enc_lim *tel;
591 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
592 if (tel->encap_limit == 0) {
593 icmpv6_send(skb, ICMPV6_PARAMPROB,
594 ICMPV6_HDR_FIELD, offset + 2);
595 return -1;
596 }
597 encap_limit = tel->encap_limit - 1;
598 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
599 encap_limit = t->parms.encap_limit;
600
601 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000602
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000603 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
Peter Dawsonadfe95f2017-05-26 06:35:18 +1000604 dsfield = ipv6_get_dsfield(ipv6h);
605 else
606 dsfield = ip6_tclass(t->parms.flowinfo);
607
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000608 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +0100609 fl6.flowlabel |= ip6_flowlabel(ipv6h);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000610 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
611 fl6.flowi6_mark = skb->mark;
612
Tom Herbertb05229f2016-04-29 17:12:21 -0700613 if (gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM)))
614 return -1;
615
616 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit,
617 &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000618 if (err != 0) {
619 if (err == -EMSGSIZE)
620 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
621 return -1;
622 }
623
624 return 0;
625}
626
627/**
628 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
629 * @t: the outgoing tunnel device
630 * @hdr: IPv6 header from the incoming packet
631 *
632 * Description:
633 * Avoid trivial tunneling loop by checking that tunnel exit-point
634 * doesn't match source of incoming packet.
635 *
636 * Return:
637 * 1 if conflict,
638 * 0 else
639 **/
640
641static inline bool ip6gre_tnl_addr_conflict(const struct ip6_tnl *t,
642 const struct ipv6hdr *hdr)
643{
644 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
645}
646
647static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev)
648{
649 struct ip6_tnl *t = netdev_priv(dev);
650 int encap_limit = -1;
651 struct flowi6 fl6;
652 __u32 mtu;
653 int err;
654
655 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
656 encap_limit = t->parms.encap_limit;
657
658 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000659
Tom Herbertb05229f2016-04-29 17:12:21 -0700660 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
661 if (err)
662 return err;
663
664 err = __gre6_xmit(skb, dev, 0, &fl6, encap_limit, &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000665
666 return err;
667}
668
669static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
670 struct net_device *dev)
671{
672 struct ip6_tnl *t = netdev_priv(dev);
673 struct net_device_stats *stats = &t->dev->stats;
674 int ret;
675
Steffen Klassertd5005142014-11-05 08:02:48 +0100676 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
Tommi Rantala41ab3e32013-02-06 03:24:02 +0000677 goto tx_err;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000678
679 switch (skb->protocol) {
680 case htons(ETH_P_IP):
681 ret = ip6gre_xmit_ipv4(skb, dev);
682 break;
683 case htons(ETH_P_IPV6):
684 ret = ip6gre_xmit_ipv6(skb, dev);
685 break;
686 default:
687 ret = ip6gre_xmit_other(skb, dev);
688 break;
689 }
690
691 if (ret < 0)
692 goto tx_err;
693
694 return NETDEV_TX_OK;
695
696tx_err:
697 stats->tx_errors++;
698 stats->tx_dropped++;
699 kfree_skb(skb);
700 return NETDEV_TX_OK;
701}
702
703static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
704{
705 struct net_device *dev = t->dev;
706 struct __ip6_tnl_parm *p = &t->parms;
707 struct flowi6 *fl6 = &t->fl.u.ip6;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700708 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000709
710 if (dev->type != ARPHRD_ETHER) {
711 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
712 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
713 }
714
715 /* Set up flowi template */
716 fl6->saddr = p->laddr;
717 fl6->daddr = p->raddr;
718 fl6->flowi6_oif = p->link;
719 fl6->flowlabel = 0;
Haishuang Yan252f3f52016-05-21 18:17:35 +0800720 fl6->flowi6_proto = IPPROTO_GRE;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000721
722 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
723 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
724 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
725 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
726
727 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
728 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
729
730 if (p->flags&IP6_TNL_F_CAP_XMIT &&
731 p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER)
732 dev->flags |= IFF_POINTOPOINT;
733 else
734 dev->flags &= ~IFF_POINTOPOINT;
735
Tom Herbertdb2ec952016-05-09 17:12:08 -0700736 t->tun_hlen = gre_calc_hlen(t->parms.o_flags);
737
Tom Herbert1faf3d92016-05-18 09:06:19 -0700738 t->hlen = t->encap_hlen + t->tun_hlen;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700739
740 t_hlen = t->hlen + sizeof(struct ipv6hdr);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000741
742 if (p->flags & IP6_TNL_F_CAP_XMIT) {
743 int strict = (ipv6_addr_type(&p->raddr) &
744 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
745
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200746 struct rt6_info *rt = rt6_lookup(t->net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000747 &p->raddr, &p->laddr,
748 p->link, strict);
749
Ian Morris63159f22015-03-29 14:00:04 +0100750 if (!rt)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000751 return;
752
753 if (rt->dst.dev) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700754 dev->hard_header_len = rt->dst.dev->hard_header_len +
755 t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000756
757 if (set_mtu) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700758 dev->mtu = rt->dst.dev->mtu - t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000759 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
760 dev->mtu -= 8;
Alexander Duycka9e242c2016-04-14 15:33:45 -0400761 if (dev->type == ARPHRD_ETHER)
762 dev->mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000763
764 if (dev->mtu < IPV6_MIN_MTU)
765 dev->mtu = IPV6_MIN_MTU;
766 }
767 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000768 ip6_rt_put(rt);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000769 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000770}
771
772static int ip6gre_tnl_change(struct ip6_tnl *t,
773 const struct __ip6_tnl_parm *p, int set_mtu)
774{
775 t->parms.laddr = p->laddr;
776 t->parms.raddr = p->raddr;
777 t->parms.flags = p->flags;
778 t->parms.hop_limit = p->hop_limit;
779 t->parms.encap_limit = p->encap_limit;
780 t->parms.flowinfo = p->flowinfo;
781 t->parms.link = p->link;
782 t->parms.proto = p->proto;
783 t->parms.i_key = p->i_key;
784 t->parms.o_key = p->o_key;
785 t->parms.i_flags = p->i_flags;
786 t->parms.o_flags = p->o_flags;
Paolo Abeni607f7252016-02-12 15:43:54 +0100787 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000788 ip6gre_tnl_link_config(t, set_mtu);
789 return 0;
790}
791
792static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
793 const struct ip6_tnl_parm2 *u)
794{
795 p->laddr = u->laddr;
796 p->raddr = u->raddr;
797 p->flags = u->flags;
798 p->hop_limit = u->hop_limit;
799 p->encap_limit = u->encap_limit;
800 p->flowinfo = u->flowinfo;
801 p->link = u->link;
802 p->i_key = u->i_key;
803 p->o_key = u->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700804 p->i_flags = gre_flags_to_tnl_flags(u->i_flags);
805 p->o_flags = gre_flags_to_tnl_flags(u->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000806 memcpy(p->name, u->name, sizeof(u->name));
807}
808
809static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
810 const struct __ip6_tnl_parm *p)
811{
812 u->proto = IPPROTO_GRE;
813 u->laddr = p->laddr;
814 u->raddr = p->raddr;
815 u->flags = p->flags;
816 u->hop_limit = p->hop_limit;
817 u->encap_limit = p->encap_limit;
818 u->flowinfo = p->flowinfo;
819 u->link = p->link;
820 u->i_key = p->i_key;
821 u->o_key = p->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700822 u->i_flags = gre_tnl_flags_to_gre_flags(p->i_flags);
823 u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000824 memcpy(u->name, p->name, sizeof(u->name));
825}
826
827static int ip6gre_tunnel_ioctl(struct net_device *dev,
828 struct ifreq *ifr, int cmd)
829{
830 int err = 0;
831 struct ip6_tnl_parm2 p;
832 struct __ip6_tnl_parm p1;
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200833 struct ip6_tnl *t = netdev_priv(dev);
834 struct net *net = t->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000835 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
836
Tom Herbert308edfdf2016-04-29 17:12:17 -0700837 memset(&p1, 0, sizeof(p1));
838
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000839 switch (cmd) {
840 case SIOCGETTUNNEL:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000841 if (dev == ign->fb_tunnel_dev) {
842 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
843 err = -EFAULT;
844 break;
845 }
846 ip6gre_tnl_parm_from_user(&p1, &p);
847 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100848 if (!t)
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200849 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000850 }
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000851 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000852 ip6gre_tnl_parm_to_user(&p, &t->parms);
853 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
854 err = -EFAULT;
855 break;
856
857 case SIOCADDTUNNEL:
858 case SIOCCHGTUNNEL:
859 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000860 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000861 goto done;
862
863 err = -EFAULT;
864 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
865 goto done;
866
867 err = -EINVAL;
868 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
869 goto done;
870
871 if (!(p.i_flags&GRE_KEY))
872 p.i_key = 0;
873 if (!(p.o_flags&GRE_KEY))
874 p.o_key = 0;
875
876 ip6gre_tnl_parm_from_user(&p1, &p);
877 t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
878
879 if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Ian Morris53b24b82015-03-29 14:00:05 +0100880 if (t) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000881 if (t->dev != dev) {
882 err = -EEXIST;
883 break;
884 }
885 } else {
886 t = netdev_priv(dev);
887
888 ip6gre_tunnel_unlink(ign, t);
889 synchronize_net();
890 ip6gre_tnl_change(t, &p1, 1);
891 ip6gre_tunnel_link(ign, t);
892 netdev_state_change(dev);
893 }
894 }
895
896 if (t) {
897 err = 0;
898
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000899 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000900 ip6gre_tnl_parm_to_user(&p, &t->parms);
901 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
902 err = -EFAULT;
903 } else
904 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
905 break;
906
907 case SIOCDELTUNNEL:
908 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000909 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000910 goto done;
911
912 if (dev == ign->fb_tunnel_dev) {
913 err = -EFAULT;
914 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
915 goto done;
916 err = -ENOENT;
917 ip6gre_tnl_parm_from_user(&p1, &p);
918 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100919 if (!t)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000920 goto done;
921 err = -EPERM;
922 if (t == netdev_priv(ign->fb_tunnel_dev))
923 goto done;
924 dev = t->dev;
925 }
926 unregister_netdevice(dev);
927 err = 0;
928 break;
929
930 default:
931 err = -EINVAL;
932 }
933
934done:
935 return err;
936}
937
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000938static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
939 unsigned short type,
940 const void *daddr, const void *saddr, unsigned int len)
941{
942 struct ip6_tnl *t = netdev_priv(dev);
943 struct ipv6hdr *ipv6h = (struct ipv6hdr *)skb_push(skb, t->hlen);
944 __be16 *p = (__be16 *)(ipv6h+1);
945
Tom Herbertcb1ce2e2014-07-01 21:33:10 -0700946 ip6_flow_hdr(ipv6h, 0,
947 ip6_make_flowlabel(dev_net(dev), skb,
Tom Herbert42240902015-07-31 16:52:12 -0700948 t->fl.u.ip6.flowlabel, true,
Tom Herbert67800f92015-07-31 16:52:11 -0700949 &t->fl.u.ip6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000950 ipv6h->hop_limit = t->parms.hop_limit;
951 ipv6h->nexthdr = NEXTHDR_GRE;
952 ipv6h->saddr = t->parms.laddr;
953 ipv6h->daddr = t->parms.raddr;
954
955 p[0] = t->parms.o_flags;
956 p[1] = htons(type);
957
958 /*
959 * Set the source hardware address.
960 */
961
962 if (saddr)
963 memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
964 if (daddr)
965 memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
966 if (!ipv6_addr_any(&ipv6h->daddr))
967 return t->hlen;
968
969 return -t->hlen;
970}
971
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000972static const struct header_ops ip6gre_header_ops = {
973 .create = ip6gre_header,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000974};
975
976static const struct net_device_ops ip6gre_netdev_ops = {
977 .ndo_init = ip6gre_tunnel_init,
978 .ndo_uninit = ip6gre_tunnel_uninit,
979 .ndo_start_xmit = ip6gre_tunnel_xmit,
980 .ndo_do_ioctl = ip6gre_tunnel_ioctl,
Tom Herbertb05229f2016-04-29 17:12:21 -0700981 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +0000982 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +0200983 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000984};
985
986static void ip6gre_dev_free(struct net_device *dev)
987{
Martin KaFai Laucdf34642015-09-15 14:30:07 -0700988 struct ip6_tnl *t = netdev_priv(dev);
989
Paolo Abeni607f7252016-02-12 15:43:54 +0100990 dst_cache_destroy(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000991 free_percpu(dev->tstats);
992 free_netdev(dev);
993}
994
995static void ip6gre_tunnel_setup(struct net_device *dev)
996{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000997 dev->netdev_ops = &ip6gre_netdev_ops;
998 dev->destructor = ip6gre_dev_free;
999
1000 dev->type = ARPHRD_IP6GRE;
Tom Herbertb05229f2016-04-29 17:12:21 -07001001
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001002 dev->flags |= IFF_NOARP;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001003 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -07001004 netif_keep_dst(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001005}
1006
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001007static int ip6gre_tunnel_init_common(struct net_device *dev)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001008{
1009 struct ip6_tnl *tunnel;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001010 int ret;
Tom Herbertb05229f2016-04-29 17:12:21 -07001011 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001012
1013 tunnel = netdev_priv(dev);
1014
1015 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001016 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001017 strcpy(tunnel->parms.name, dev->name);
1018
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001019 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1020 if (!dev->tstats)
1021 return -ENOMEM;
1022
Paolo Abeni607f7252016-02-12 15:43:54 +01001023 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001024 if (ret) {
1025 free_percpu(dev->tstats);
1026 dev->tstats = NULL;
1027 return ret;
1028 }
1029
Tom Herbertb05229f2016-04-29 17:12:21 -07001030 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001031 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen;
Tom Herbertb05229f2016-04-29 17:12:21 -07001032 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1033
Tom Herbertdb2ec952016-05-09 17:12:08 -07001034 dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1035 dev->mtu = ETH_DATA_LEN - t_hlen;
Haishuang Yan1b227e52016-05-21 18:17:34 +08001036 if (dev->type == ARPHRD_ETHER)
1037 dev->mtu -= ETH_HLEN;
Tom Herbertb05229f2016-04-29 17:12:21 -07001038 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1039 dev->mtu -= 8;
1040
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001041 return 0;
1042}
1043
1044static int ip6gre_tunnel_init(struct net_device *dev)
1045{
1046 struct ip6_tnl *tunnel;
1047 int ret;
1048
1049 ret = ip6gre_tunnel_init_common(dev);
1050 if (ret)
1051 return ret;
1052
1053 tunnel = netdev_priv(dev);
1054
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001055 memcpy(dev->dev_addr, &tunnel->parms.laddr, sizeof(struct in6_addr));
1056 memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1057
1058 if (ipv6_addr_any(&tunnel->parms.raddr))
1059 dev->header_ops = &ip6gre_header_ops;
1060
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001061 return 0;
1062}
1063
1064static void ip6gre_fb_tunnel_init(struct net_device *dev)
1065{
1066 struct ip6_tnl *tunnel = netdev_priv(dev);
1067
1068 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001069 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001070 strcpy(tunnel->parms.name, dev->name);
1071
1072 tunnel->hlen = sizeof(struct ipv6hdr) + 4;
1073
1074 dev_hold(dev);
1075}
1076
1077
1078static struct inet6_protocol ip6gre_protocol __read_mostly = {
Tom Herbert308edfdf2016-04-29 17:12:17 -07001079 .handler = gre_rcv,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001080 .err_handler = ip6gre_err,
1081 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1082};
1083
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001084static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001085{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001086 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1087 struct net_device *dev, *aux;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001088 int prio;
1089
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001090 for_each_netdev_safe(net, dev, aux)
1091 if (dev->rtnl_link_ops == &ip6gre_link_ops ||
1092 dev->rtnl_link_ops == &ip6gre_tap_ops)
1093 unregister_netdevice_queue(dev, head);
1094
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001095 for (prio = 0; prio < 4; prio++) {
1096 int h;
Jiri Kosinae87a8f22016-08-10 11:03:35 +02001097 for (h = 0; h < IP6_GRE_HASH_SIZE; h++) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001098 struct ip6_tnl *t;
1099
1100 t = rtnl_dereference(ign->tunnels[prio][h]);
1101
Ian Morris53b24b82015-03-29 14:00:05 +01001102 while (t) {
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001103 /* If dev is in the same netns, it has already
1104 * been added to the list by the previous loop.
1105 */
1106 if (!net_eq(dev_net(t->dev), net))
1107 unregister_netdevice_queue(t->dev,
1108 head);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001109 t = rtnl_dereference(t->next);
1110 }
1111 }
1112 }
1113}
1114
1115static int __net_init ip6gre_init_net(struct net *net)
1116{
1117 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1118 int err;
1119
1120 ign->fb_tunnel_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001121 NET_NAME_UNKNOWN,
1122 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001123 if (!ign->fb_tunnel_dev) {
1124 err = -ENOMEM;
1125 goto err_alloc_dev;
1126 }
1127 dev_net_set(ign->fb_tunnel_dev, net);
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001128 /* FB netdevice is special: we have one, and only one per netns.
1129 * Allowing to move it to another netns is clearly unsafe.
1130 */
1131 ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1132
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001133
1134 ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1135 ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1136
1137 err = register_netdev(ign->fb_tunnel_dev);
1138 if (err)
1139 goto err_reg_dev;
1140
1141 rcu_assign_pointer(ign->tunnels_wc[0],
1142 netdev_priv(ign->fb_tunnel_dev));
1143 return 0;
1144
1145err_reg_dev:
1146 ip6gre_dev_free(ign->fb_tunnel_dev);
1147err_alloc_dev:
1148 return err;
1149}
1150
1151static void __net_exit ip6gre_exit_net(struct net *net)
1152{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001153 LIST_HEAD(list);
1154
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001155 rtnl_lock();
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001156 ip6gre_destroy_tunnels(net, &list);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001157 unregister_netdevice_many(&list);
1158 rtnl_unlock();
1159}
1160
1161static struct pernet_operations ip6gre_net_ops = {
1162 .init = ip6gre_init_net,
1163 .exit = ip6gre_exit_net,
1164 .id = &ip6gre_net_id,
1165 .size = sizeof(struct ip6gre_net),
1166};
1167
1168static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
1169{
1170 __be16 flags;
1171
1172 if (!data)
1173 return 0;
1174
1175 flags = 0;
1176 if (data[IFLA_GRE_IFLAGS])
1177 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1178 if (data[IFLA_GRE_OFLAGS])
1179 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1180 if (flags & (GRE_VERSION|GRE_ROUTING))
1181 return -EINVAL;
1182
1183 return 0;
1184}
1185
1186static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[])
1187{
1188 struct in6_addr daddr;
1189
1190 if (tb[IFLA_ADDRESS]) {
1191 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1192 return -EINVAL;
1193 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1194 return -EADDRNOTAVAIL;
1195 }
1196
1197 if (!data)
1198 goto out;
1199
1200 if (data[IFLA_GRE_REMOTE]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02001201 daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001202 if (ipv6_addr_any(&daddr))
1203 return -EINVAL;
1204 }
1205
1206out:
1207 return ip6gre_tunnel_validate(tb, data);
1208}
1209
1210
1211static void ip6gre_netlink_parms(struct nlattr *data[],
1212 struct __ip6_tnl_parm *parms)
1213{
1214 memset(parms, 0, sizeof(*parms));
1215
1216 if (!data)
1217 return;
1218
1219 if (data[IFLA_GRE_LINK])
1220 parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1221
1222 if (data[IFLA_GRE_IFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001223 parms->i_flags = gre_flags_to_tnl_flags(
1224 nla_get_be16(data[IFLA_GRE_IFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001225
1226 if (data[IFLA_GRE_OFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001227 parms->o_flags = gre_flags_to_tnl_flags(
1228 nla_get_be16(data[IFLA_GRE_OFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001229
1230 if (data[IFLA_GRE_IKEY])
1231 parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1232
1233 if (data[IFLA_GRE_OKEY])
1234 parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1235
1236 if (data[IFLA_GRE_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +02001237 parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001238
1239 if (data[IFLA_GRE_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +02001240 parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001241
1242 if (data[IFLA_GRE_TTL])
1243 parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1244
1245 if (data[IFLA_GRE_ENCAP_LIMIT])
1246 parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1247
1248 if (data[IFLA_GRE_FLOWINFO])
Lance Richardsonc2675de2016-09-24 14:01:04 -04001249 parms->flowinfo = nla_get_be32(data[IFLA_GRE_FLOWINFO]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001250
1251 if (data[IFLA_GRE_FLAGS])
1252 parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
1253}
1254
1255static int ip6gre_tap_init(struct net_device *dev)
1256{
1257 struct ip6_tnl *tunnel;
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001258 int ret;
1259
1260 ret = ip6gre_tunnel_init_common(dev);
1261 if (ret)
1262 return ret;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001263
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001264 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1265
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001266 tunnel = netdev_priv(dev);
1267
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001268 ip6gre_tnl_link_config(tunnel, 1);
1269
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001270 return 0;
1271}
1272
1273static const struct net_device_ops ip6gre_tap_netdev_ops = {
1274 .ndo_init = ip6gre_tap_init,
1275 .ndo_uninit = ip6gre_tunnel_uninit,
1276 .ndo_start_xmit = ip6gre_tunnel_xmit,
1277 .ndo_set_mac_address = eth_mac_addr,
1278 .ndo_validate_addr = eth_validate_addr,
Tom Herbertb05229f2016-04-29 17:12:21 -07001279 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +00001280 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001281 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001282};
1283
Alexander Duyckac4eb002016-04-14 15:33:51 -04001284#define GRE6_FEATURES (NETIF_F_SG | \
1285 NETIF_F_FRAGLIST | \
1286 NETIF_F_HIGHDMA | \
1287 NETIF_F_HW_CSUM)
1288
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001289static void ip6gre_tap_setup(struct net_device *dev)
1290{
1291
1292 ether_setup(dev);
1293
1294 dev->netdev_ops = &ip6gre_tap_netdev_ops;
1295 dev->destructor = ip6gre_dev_free;
1296
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001297 dev->features |= NETIF_F_NETNS_LOCAL;
Jiri Bencd13b1612016-02-17 15:32:53 +01001298 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001299 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001300}
1301
Tom Herbert1faf3d92016-05-18 09:06:19 -07001302static bool ip6gre_netlink_encap_parms(struct nlattr *data[],
1303 struct ip_tunnel_encap *ipencap)
1304{
1305 bool ret = false;
1306
1307 memset(ipencap, 0, sizeof(*ipencap));
1308
1309 if (!data)
1310 return ret;
1311
1312 if (data[IFLA_GRE_ENCAP_TYPE]) {
1313 ret = true;
1314 ipencap->type = nla_get_u16(data[IFLA_GRE_ENCAP_TYPE]);
1315 }
1316
1317 if (data[IFLA_GRE_ENCAP_FLAGS]) {
1318 ret = true;
1319 ipencap->flags = nla_get_u16(data[IFLA_GRE_ENCAP_FLAGS]);
1320 }
1321
1322 if (data[IFLA_GRE_ENCAP_SPORT]) {
1323 ret = true;
1324 ipencap->sport = nla_get_be16(data[IFLA_GRE_ENCAP_SPORT]);
1325 }
1326
1327 if (data[IFLA_GRE_ENCAP_DPORT]) {
1328 ret = true;
1329 ipencap->dport = nla_get_be16(data[IFLA_GRE_ENCAP_DPORT]);
1330 }
1331
1332 return ret;
1333}
1334
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001335static int ip6gre_newlink(struct net *src_net, struct net_device *dev,
1336 struct nlattr *tb[], struct nlattr *data[])
1337{
1338 struct ip6_tnl *nt;
1339 struct net *net = dev_net(dev);
1340 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001341 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001342 int err;
1343
1344 nt = netdev_priv(dev);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001345
1346 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1347 int err = ip6_tnl_encap_setup(nt, &ipencap);
1348
1349 if (err < 0)
1350 return err;
1351 }
1352
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001353 ip6gre_netlink_parms(data, &nt->parms);
1354
1355 if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
1356 return -EEXIST;
1357
1358 if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS])
1359 eth_hw_addr_random(dev);
1360
1361 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001362 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001363 ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
1364
Alexander Duyckac4eb002016-04-14 15:33:51 -04001365 dev->features |= GRE6_FEATURES;
1366 dev->hw_features |= GRE6_FEATURES;
1367
Tom Herbertb45bd1d2016-05-09 17:12:12 -07001368 if (!(nt->parms.o_flags & TUNNEL_SEQ)) {
Alexander Duyck6a553682016-05-18 10:44:47 -07001369 /* TCP offload with GRE SEQ is not supported, nor
1370 * can we support 2 levels of outer headers requiring
1371 * an update.
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001372 */
Alexander Duyck6a553682016-05-18 10:44:47 -07001373 if (!(nt->parms.o_flags & TUNNEL_CSUM) ||
1374 (nt->encap.type == TUNNEL_ENCAP_NONE)) {
1375 dev->features |= NETIF_F_GSO_SOFTWARE;
1376 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1377 }
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001378
1379 /* Can use a lockless transmit, unless we generate
1380 * output sequences
1381 */
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001382 dev->features |= NETIF_F_LLTX;
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001383 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001384
1385 err = register_netdevice(dev);
1386 if (err)
1387 goto out;
1388
1389 dev_hold(dev);
1390 ip6gre_tunnel_link(ign, nt);
1391
1392out:
1393 return err;
1394}
1395
1396static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
1397 struct nlattr *data[])
1398{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001399 struct ip6_tnl *t, *nt = netdev_priv(dev);
1400 struct net *net = nt->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001401 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1402 struct __ip6_tnl_parm p;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001403 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001404
1405 if (dev == ign->fb_tunnel_dev)
1406 return -EINVAL;
1407
Tom Herbert1faf3d92016-05-18 09:06:19 -07001408 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1409 int err = ip6_tnl_encap_setup(nt, &ipencap);
1410
1411 if (err < 0)
1412 return err;
1413 }
1414
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001415 ip6gre_netlink_parms(data, &p);
1416
1417 t = ip6gre_tunnel_locate(net, &p, 0);
1418
1419 if (t) {
1420 if (t->dev != dev)
1421 return -EEXIST;
1422 } else {
1423 t = nt;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001424 }
1425
Nicolas Dichtel6a61d4d2015-12-03 17:21:50 +01001426 ip6gre_tunnel_unlink(ign, t);
1427 ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
1428 ip6gre_tunnel_link(ign, t);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001429 return 0;
1430}
1431
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001432static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
1433{
1434 struct net *net = dev_net(dev);
1435 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1436
1437 if (dev != ign->fb_tunnel_dev)
1438 unregister_netdevice_queue(dev, head);
1439}
1440
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001441static size_t ip6gre_get_size(const struct net_device *dev)
1442{
1443 return
1444 /* IFLA_GRE_LINK */
1445 nla_total_size(4) +
1446 /* IFLA_GRE_IFLAGS */
1447 nla_total_size(2) +
1448 /* IFLA_GRE_OFLAGS */
1449 nla_total_size(2) +
1450 /* IFLA_GRE_IKEY */
1451 nla_total_size(4) +
1452 /* IFLA_GRE_OKEY */
1453 nla_total_size(4) +
1454 /* IFLA_GRE_LOCAL */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001455 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001456 /* IFLA_GRE_REMOTE */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001457 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001458 /* IFLA_GRE_TTL */
1459 nla_total_size(1) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001460 /* IFLA_GRE_ENCAP_LIMIT */
1461 nla_total_size(1) +
1462 /* IFLA_GRE_FLOWINFO */
1463 nla_total_size(4) +
1464 /* IFLA_GRE_FLAGS */
1465 nla_total_size(4) +
Tom Herbert1faf3d92016-05-18 09:06:19 -07001466 /* IFLA_GRE_ENCAP_TYPE */
1467 nla_total_size(2) +
1468 /* IFLA_GRE_ENCAP_FLAGS */
1469 nla_total_size(2) +
1470 /* IFLA_GRE_ENCAP_SPORT */
1471 nla_total_size(2) +
1472 /* IFLA_GRE_ENCAP_DPORT */
1473 nla_total_size(2) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001474 0;
1475}
1476
1477static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
1478{
1479 struct ip6_tnl *t = netdev_priv(dev);
1480 struct __ip6_tnl_parm *p = &t->parms;
1481
1482 if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001483 nla_put_be16(skb, IFLA_GRE_IFLAGS,
1484 gre_tnl_flags_to_gre_flags(p->i_flags)) ||
1485 nla_put_be16(skb, IFLA_GRE_OFLAGS,
1486 gre_tnl_flags_to_gre_flags(p->o_flags)) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001487 nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
1488 nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
Jiri Benc930345e2015-03-29 16:59:25 +02001489 nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
1490 nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001491 nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001492 nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
1493 nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
1494 nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags))
1495 goto nla_put_failure;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001496
1497 if (nla_put_u16(skb, IFLA_GRE_ENCAP_TYPE,
1498 t->encap.type) ||
1499 nla_put_be16(skb, IFLA_GRE_ENCAP_SPORT,
1500 t->encap.sport) ||
1501 nla_put_be16(skb, IFLA_GRE_ENCAP_DPORT,
1502 t->encap.dport) ||
1503 nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS,
1504 t->encap.flags))
1505 goto nla_put_failure;
1506
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001507 return 0;
1508
1509nla_put_failure:
1510 return -EMSGSIZE;
1511}
1512
1513static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
1514 [IFLA_GRE_LINK] = { .type = NLA_U32 },
1515 [IFLA_GRE_IFLAGS] = { .type = NLA_U16 },
1516 [IFLA_GRE_OFLAGS] = { .type = NLA_U16 },
1517 [IFLA_GRE_IKEY] = { .type = NLA_U32 },
1518 [IFLA_GRE_OKEY] = { .type = NLA_U32 },
1519 [IFLA_GRE_LOCAL] = { .len = FIELD_SIZEOF(struct ipv6hdr, saddr) },
1520 [IFLA_GRE_REMOTE] = { .len = FIELD_SIZEOF(struct ipv6hdr, daddr) },
1521 [IFLA_GRE_TTL] = { .type = NLA_U8 },
1522 [IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
1523 [IFLA_GRE_FLOWINFO] = { .type = NLA_U32 },
1524 [IFLA_GRE_FLAGS] = { .type = NLA_U32 },
Tom Herbert1faf3d92016-05-18 09:06:19 -07001525 [IFLA_GRE_ENCAP_TYPE] = { .type = NLA_U16 },
1526 [IFLA_GRE_ENCAP_FLAGS] = { .type = NLA_U16 },
1527 [IFLA_GRE_ENCAP_SPORT] = { .type = NLA_U16 },
1528 [IFLA_GRE_ENCAP_DPORT] = { .type = NLA_U16 },
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001529};
1530
1531static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
1532 .kind = "ip6gre",
1533 .maxtype = IFLA_GRE_MAX,
1534 .policy = ip6gre_policy,
1535 .priv_size = sizeof(struct ip6_tnl),
1536 .setup = ip6gre_tunnel_setup,
1537 .validate = ip6gre_tunnel_validate,
1538 .newlink = ip6gre_newlink,
1539 .changelink = ip6gre_changelink,
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001540 .dellink = ip6gre_dellink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001541 .get_size = ip6gre_get_size,
1542 .fill_info = ip6gre_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01001543 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001544};
1545
1546static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
1547 .kind = "ip6gretap",
1548 .maxtype = IFLA_GRE_MAX,
1549 .policy = ip6gre_policy,
1550 .priv_size = sizeof(struct ip6_tnl),
1551 .setup = ip6gre_tap_setup,
1552 .validate = ip6gre_tap_validate,
1553 .newlink = ip6gre_newlink,
1554 .changelink = ip6gre_changelink,
1555 .get_size = ip6gre_get_size,
1556 .fill_info = ip6gre_fill_info,
Nicolas Dichtel3390e392015-01-20 15:15:43 +01001557 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001558};
1559
1560/*
1561 * And now the modules code and kernel interface.
1562 */
1563
1564static int __init ip6gre_init(void)
1565{
1566 int err;
1567
1568 pr_info("GRE over IPv6 tunneling driver\n");
1569
1570 err = register_pernet_device(&ip6gre_net_ops);
1571 if (err < 0)
1572 return err;
1573
1574 err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
1575 if (err < 0) {
1576 pr_info("%s: can't add protocol\n", __func__);
1577 goto add_proto_failed;
1578 }
1579
1580 err = rtnl_link_register(&ip6gre_link_ops);
1581 if (err < 0)
1582 goto rtnl_link_failed;
1583
1584 err = rtnl_link_register(&ip6gre_tap_ops);
1585 if (err < 0)
1586 goto tap_ops_failed;
1587
1588out:
1589 return err;
1590
1591tap_ops_failed:
1592 rtnl_link_unregister(&ip6gre_link_ops);
1593rtnl_link_failed:
1594 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1595add_proto_failed:
1596 unregister_pernet_device(&ip6gre_net_ops);
1597 goto out;
1598}
1599
1600static void __exit ip6gre_fini(void)
1601{
1602 rtnl_link_unregister(&ip6gre_tap_ops);
1603 rtnl_link_unregister(&ip6gre_link_ops);
1604 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1605 unregister_pernet_device(&ip6gre_net_ops);
1606}
1607
1608module_init(ip6gre_init);
1609module_exit(ip6gre_fini);
1610MODULE_LICENSE("GPL");
1611MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
1612MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
1613MODULE_ALIAS_RTNL_LINK("ip6gre");
Nicolas Dichtel5a4ee9a2014-09-24 11:03:00 +02001614MODULE_ALIAS_RTNL_LINK("ip6gretap");
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001615MODULE_ALIAS_NETDEV("ip6gre0");