blob: 4ce74f86291bfbd1426632e98b92115c1c2234a4 [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,
370 u8 type, u8 code, int offset, __be32 info)
371{
372 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *)skb->data;
Eric Dumazetb87fb392012-08-19 03:47:30 +0000373 __be16 *p = (__be16 *)(skb->data + offset);
374 int grehlen = offset + 4;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000375 struct ip6_tnl *t;
376 __be16 flags;
377
378 flags = p[0];
379 if (flags&(GRE_CSUM|GRE_KEY|GRE_SEQ|GRE_ROUTING|GRE_VERSION)) {
380 if (flags&(GRE_VERSION|GRE_ROUTING))
381 return;
382 if (flags&GRE_KEY) {
383 grehlen += 4;
384 if (flags&GRE_CSUM)
385 grehlen += 4;
386 }
387 }
388
389 /* If only 8 bytes returned, keyed message will be dropped here */
Eric Dumazetb87fb392012-08-19 03:47:30 +0000390 if (!pskb_may_pull(skb, grehlen))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000391 return;
Eric Dumazetb87fb392012-08-19 03:47:30 +0000392 ipv6h = (const struct ipv6hdr *)skb->data;
393 p = (__be16 *)(skb->data + offset);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000394
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000395 t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr,
396 flags & GRE_KEY ?
397 *(((__be32 *)p) + (grehlen / 4) - 1) : 0,
398 p[1]);
Ian Morris63159f22015-03-29 14:00:04 +0100399 if (!t)
stephen hemminger0c5794a2012-09-24 18:12:24 +0000400 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000401
402 switch (type) {
403 __u32 teli;
404 struct ipv6_tlv_tnl_enc_lim *tel;
405 __u32 mtu;
406 case ICMPV6_DEST_UNREACH:
Matt Bennetta46496c2015-09-23 16:58:31 +1200407 net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
408 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000409 break;
410 case ICMPV6_TIME_EXCEED:
411 if (code == ICMPV6_EXC_HOPLIMIT) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200412 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
413 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000414 }
415 break;
416 case ICMPV6_PARAMPROB:
417 teli = 0;
418 if (code == ICMPV6_HDR_FIELD)
419 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
420
Sabrina Dubrocad1e158e2015-02-04 15:25:09 +0100421 if (teli && teli == be32_to_cpu(info) - 2) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000422 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
423 if (tel->encap_limit == 0) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200424 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
425 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000426 }
427 } else {
Matt Bennetta46496c2015-09-23 16:58:31 +1200428 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
429 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000430 }
431 break;
432 case ICMPV6_PKT_TOOBIG:
Sabrina Dubrocad1e158e2015-02-04 15:25:09 +0100433 mtu = be32_to_cpu(info) - offset;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000434 if (mtu < IPV6_MIN_MTU)
435 mtu = IPV6_MIN_MTU;
436 t->dev->mtu = mtu;
437 break;
438 }
439
440 if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
441 t->err_count++;
442 else
443 t->err_count = 1;
444 t->err_time = jiffies;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000445}
446
Tom Herbert308edfdf2016-04-29 17:12:17 -0700447static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000448{
449 const struct ipv6hdr *ipv6h;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000450 struct ip6_tnl *tunnel;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000451
452 ipv6h = ipv6_hdr(skb);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000453 tunnel = ip6gre_tunnel_lookup(skb->dev,
Tom Herbert308edfdf2016-04-29 17:12:17 -0700454 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
455 tpi->proto);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000456 if (tunnel) {
Tom Herbert308edfdf2016-04-29 17:12:17 -0700457 ip6_tnl_rcv(tunnel, skb, tpi, NULL, false);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000458
Tom Herbert308edfdf2016-04-29 17:12:17 -0700459 return PACKET_RCVD;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000460 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000461
Tom Herbert308edfdf2016-04-29 17:12:17 -0700462 return PACKET_REJECT;
463}
464
465static int gre_rcv(struct sk_buff *skb)
466{
467 struct tnl_ptk_info tpi;
468 bool csum_err = false;
469 int hdr_len;
470
Eric Dumazete5826152016-06-15 06:24:00 -0700471 hdr_len = gre_parse_header(skb, &tpi, &csum_err, htons(ETH_P_IPV6), 0);
Jiri Bencf132ae72016-05-03 15:00:21 +0200472 if (hdr_len < 0)
Tom Herbert308edfdf2016-04-29 17:12:17 -0700473 goto drop;
474
475 if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false))
476 goto drop;
477
478 if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD)
479 return 0;
480
481 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000482drop:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000483 kfree_skb(skb);
484 return 0;
485}
486
487struct ipv6_tel_txoption {
488 struct ipv6_txoptions ops;
489 __u8 dst_opt[8];
490};
491
Tom Herbertb05229f2016-04-29 17:12:21 -0700492static int gre_handle_offloads(struct sk_buff *skb, bool csum)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000493{
Tom Herbertb05229f2016-04-29 17:12:21 -0700494 return iptunnel_handle_offloads(skb,
495 csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000496}
497
Tom Herbertb05229f2016-04-29 17:12:21 -0700498static netdev_tx_t __gre6_xmit(struct sk_buff *skb,
499 struct net_device *dev, __u8 dsfield,
500 struct flowi6 *fl6, int encap_limit,
501 __u32 *pmtu, __be16 proto)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000502{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000503 struct ip6_tnl *tunnel = netdev_priv(dev);
Tom Herbertb05229f2016-04-29 17:12:21 -0700504 __be16 protocol = (dev->type == ARPHRD_ETHER) ?
505 htons(ETH_P_TEB) : proto;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000506
507 if (dev->type == ARPHRD_ETHER)
508 IPCB(skb)->flags = 0;
509
Tom Herbertb05229f2016-04-29 17:12:21 -0700510 if (dev->header_ops && dev->type == ARPHRD_IP6GRE)
511 fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr;
512 else
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000513 fl6->daddr = tunnel->parms.raddr;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000514
Tom Herbertb05229f2016-04-29 17:12:21 -0700515 if (tunnel->parms.o_flags & TUNNEL_SEQ)
516 tunnel->o_seqno++;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000517
Tom Herbertb05229f2016-04-29 17:12:21 -0700518 /* Push GRE header. */
519 gre_build_header(skb, tunnel->tun_hlen, tunnel->parms.o_flags,
520 protocol, tunnel->parms.o_key, htonl(tunnel->o_seqno));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000521
Tom Herbertb05229f2016-04-29 17:12:21 -0700522 return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu,
523 NEXTHDR_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000524}
525
526static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev)
527{
528 struct ip6_tnl *t = netdev_priv(dev);
529 const struct iphdr *iph = ip_hdr(skb);
530 int encap_limit = -1;
531 struct flowi6 fl6;
532 __u8 dsfield;
533 __u32 mtu;
534 int err;
535
Bernie Harris5146d1f2016-02-22 12:58:05 +1300536 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
537
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000538 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
539 encap_limit = t->parms.encap_limit;
540
541 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000542
543 dsfield = ipv4_get_dsfield(iph);
544
545 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
546 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
547 & IPV6_TCLASS_MASK;
548 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
549 fl6.flowi6_mark = skb->mark;
550
Tom Herbertb05229f2016-04-29 17:12:21 -0700551 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
552 if (err)
553 return -1;
554
555 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
556 skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000557 if (err != 0) {
558 /* XXX: send ICMP error even if DF is not set. */
559 if (err == -EMSGSIZE)
560 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
561 htonl(mtu));
562 return -1;
563 }
564
565 return 0;
566}
567
568static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev)
569{
570 struct ip6_tnl *t = netdev_priv(dev);
571 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
572 int encap_limit = -1;
573 __u16 offset;
574 struct flowi6 fl6;
575 __u8 dsfield;
576 __u32 mtu;
577 int err;
578
579 if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
580 return -1;
581
582 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
583 if (offset > 0) {
584 struct ipv6_tlv_tnl_enc_lim *tel;
585 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
586 if (tel->encap_limit == 0) {
587 icmpv6_send(skb, ICMPV6_PARAMPROB,
588 ICMPV6_HDR_FIELD, offset + 2);
589 return -1;
590 }
591 encap_limit = tel->encap_limit - 1;
592 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
593 encap_limit = t->parms.encap_limit;
594
595 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000596
597 dsfield = ipv6_get_dsfield(ipv6h);
598 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
599 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
600 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +0100601 fl6.flowlabel |= ip6_flowlabel(ipv6h);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000602 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
603 fl6.flowi6_mark = skb->mark;
604
Tom Herbertb05229f2016-04-29 17:12:21 -0700605 if (gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM)))
606 return -1;
607
608 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit,
609 &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000610 if (err != 0) {
611 if (err == -EMSGSIZE)
612 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
613 return -1;
614 }
615
616 return 0;
617}
618
619/**
620 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
621 * @t: the outgoing tunnel device
622 * @hdr: IPv6 header from the incoming packet
623 *
624 * Description:
625 * Avoid trivial tunneling loop by checking that tunnel exit-point
626 * doesn't match source of incoming packet.
627 *
628 * Return:
629 * 1 if conflict,
630 * 0 else
631 **/
632
633static inline bool ip6gre_tnl_addr_conflict(const struct ip6_tnl *t,
634 const struct ipv6hdr *hdr)
635{
636 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
637}
638
639static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev)
640{
641 struct ip6_tnl *t = netdev_priv(dev);
642 int encap_limit = -1;
643 struct flowi6 fl6;
644 __u32 mtu;
645 int err;
646
647 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
648 encap_limit = t->parms.encap_limit;
649
650 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
651 fl6.flowi6_proto = skb->protocol;
652
Tom Herbertb05229f2016-04-29 17:12:21 -0700653 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
654 if (err)
655 return err;
656
657 err = __gre6_xmit(skb, dev, 0, &fl6, encap_limit, &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000658
659 return err;
660}
661
662static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
663 struct net_device *dev)
664{
665 struct ip6_tnl *t = netdev_priv(dev);
666 struct net_device_stats *stats = &t->dev->stats;
667 int ret;
668
Steffen Klassertd5005142014-11-05 08:02:48 +0100669 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
Tommi Rantala41ab3e32013-02-06 03:24:02 +0000670 goto tx_err;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000671
672 switch (skb->protocol) {
673 case htons(ETH_P_IP):
674 ret = ip6gre_xmit_ipv4(skb, dev);
675 break;
676 case htons(ETH_P_IPV6):
677 ret = ip6gre_xmit_ipv6(skb, dev);
678 break;
679 default:
680 ret = ip6gre_xmit_other(skb, dev);
681 break;
682 }
683
684 if (ret < 0)
685 goto tx_err;
686
687 return NETDEV_TX_OK;
688
689tx_err:
690 stats->tx_errors++;
691 stats->tx_dropped++;
692 kfree_skb(skb);
693 return NETDEV_TX_OK;
694}
695
696static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
697{
698 struct net_device *dev = t->dev;
699 struct __ip6_tnl_parm *p = &t->parms;
700 struct flowi6 *fl6 = &t->fl.u.ip6;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700701 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000702
703 if (dev->type != ARPHRD_ETHER) {
704 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
705 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
706 }
707
708 /* Set up flowi template */
709 fl6->saddr = p->laddr;
710 fl6->daddr = p->raddr;
711 fl6->flowi6_oif = p->link;
712 fl6->flowlabel = 0;
Haishuang Yan252f3f52016-05-21 18:17:35 +0800713 fl6->flowi6_proto = IPPROTO_GRE;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000714
715 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
716 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
717 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
718 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
719
720 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
721 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
722
723 if (p->flags&IP6_TNL_F_CAP_XMIT &&
724 p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER)
725 dev->flags |= IFF_POINTOPOINT;
726 else
727 dev->flags &= ~IFF_POINTOPOINT;
728
Tom Herbertdb2ec952016-05-09 17:12:08 -0700729 t->tun_hlen = gre_calc_hlen(t->parms.o_flags);
730
Tom Herbert1faf3d92016-05-18 09:06:19 -0700731 t->hlen = t->encap_hlen + t->tun_hlen;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700732
733 t_hlen = t->hlen + sizeof(struct ipv6hdr);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000734
735 if (p->flags & IP6_TNL_F_CAP_XMIT) {
736 int strict = (ipv6_addr_type(&p->raddr) &
737 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
738
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200739 struct rt6_info *rt = rt6_lookup(t->net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000740 &p->raddr, &p->laddr,
741 p->link, strict);
742
Ian Morris63159f22015-03-29 14:00:04 +0100743 if (!rt)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000744 return;
745
746 if (rt->dst.dev) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700747 dev->hard_header_len = rt->dst.dev->hard_header_len +
748 t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000749
750 if (set_mtu) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700751 dev->mtu = rt->dst.dev->mtu - t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000752 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
753 dev->mtu -= 8;
Alexander Duycka9e242c2016-04-14 15:33:45 -0400754 if (dev->type == ARPHRD_ETHER)
755 dev->mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000756
757 if (dev->mtu < IPV6_MIN_MTU)
758 dev->mtu = IPV6_MIN_MTU;
759 }
760 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000761 ip6_rt_put(rt);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000762 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000763}
764
765static int ip6gre_tnl_change(struct ip6_tnl *t,
766 const struct __ip6_tnl_parm *p, int set_mtu)
767{
768 t->parms.laddr = p->laddr;
769 t->parms.raddr = p->raddr;
770 t->parms.flags = p->flags;
771 t->parms.hop_limit = p->hop_limit;
772 t->parms.encap_limit = p->encap_limit;
773 t->parms.flowinfo = p->flowinfo;
774 t->parms.link = p->link;
775 t->parms.proto = p->proto;
776 t->parms.i_key = p->i_key;
777 t->parms.o_key = p->o_key;
778 t->parms.i_flags = p->i_flags;
779 t->parms.o_flags = p->o_flags;
Paolo Abeni607f7252016-02-12 15:43:54 +0100780 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000781 ip6gre_tnl_link_config(t, set_mtu);
782 return 0;
783}
784
785static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
786 const struct ip6_tnl_parm2 *u)
787{
788 p->laddr = u->laddr;
789 p->raddr = u->raddr;
790 p->flags = u->flags;
791 p->hop_limit = u->hop_limit;
792 p->encap_limit = u->encap_limit;
793 p->flowinfo = u->flowinfo;
794 p->link = u->link;
795 p->i_key = u->i_key;
796 p->o_key = u->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700797 p->i_flags = gre_flags_to_tnl_flags(u->i_flags);
798 p->o_flags = gre_flags_to_tnl_flags(u->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000799 memcpy(p->name, u->name, sizeof(u->name));
800}
801
802static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
803 const struct __ip6_tnl_parm *p)
804{
805 u->proto = IPPROTO_GRE;
806 u->laddr = p->laddr;
807 u->raddr = p->raddr;
808 u->flags = p->flags;
809 u->hop_limit = p->hop_limit;
810 u->encap_limit = p->encap_limit;
811 u->flowinfo = p->flowinfo;
812 u->link = p->link;
813 u->i_key = p->i_key;
814 u->o_key = p->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700815 u->i_flags = gre_tnl_flags_to_gre_flags(p->i_flags);
816 u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000817 memcpy(u->name, p->name, sizeof(u->name));
818}
819
820static int ip6gre_tunnel_ioctl(struct net_device *dev,
821 struct ifreq *ifr, int cmd)
822{
823 int err = 0;
824 struct ip6_tnl_parm2 p;
825 struct __ip6_tnl_parm p1;
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200826 struct ip6_tnl *t = netdev_priv(dev);
827 struct net *net = t->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000828 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
829
Tom Herbert308edfdf2016-04-29 17:12:17 -0700830 memset(&p1, 0, sizeof(p1));
831
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000832 switch (cmd) {
833 case SIOCGETTUNNEL:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000834 if (dev == ign->fb_tunnel_dev) {
835 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
836 err = -EFAULT;
837 break;
838 }
839 ip6gre_tnl_parm_from_user(&p1, &p);
840 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100841 if (!t)
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200842 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000843 }
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000844 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000845 ip6gre_tnl_parm_to_user(&p, &t->parms);
846 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
847 err = -EFAULT;
848 break;
849
850 case SIOCADDTUNNEL:
851 case SIOCCHGTUNNEL:
852 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000853 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000854 goto done;
855
856 err = -EFAULT;
857 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
858 goto done;
859
860 err = -EINVAL;
861 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
862 goto done;
863
864 if (!(p.i_flags&GRE_KEY))
865 p.i_key = 0;
866 if (!(p.o_flags&GRE_KEY))
867 p.o_key = 0;
868
869 ip6gre_tnl_parm_from_user(&p1, &p);
870 t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
871
872 if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Ian Morris53b24b82015-03-29 14:00:05 +0100873 if (t) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000874 if (t->dev != dev) {
875 err = -EEXIST;
876 break;
877 }
878 } else {
879 t = netdev_priv(dev);
880
881 ip6gre_tunnel_unlink(ign, t);
882 synchronize_net();
883 ip6gre_tnl_change(t, &p1, 1);
884 ip6gre_tunnel_link(ign, t);
885 netdev_state_change(dev);
886 }
887 }
888
889 if (t) {
890 err = 0;
891
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000892 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000893 ip6gre_tnl_parm_to_user(&p, &t->parms);
894 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
895 err = -EFAULT;
896 } else
897 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
898 break;
899
900 case SIOCDELTUNNEL:
901 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000902 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000903 goto done;
904
905 if (dev == ign->fb_tunnel_dev) {
906 err = -EFAULT;
907 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
908 goto done;
909 err = -ENOENT;
910 ip6gre_tnl_parm_from_user(&p1, &p);
911 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100912 if (!t)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000913 goto done;
914 err = -EPERM;
915 if (t == netdev_priv(ign->fb_tunnel_dev))
916 goto done;
917 dev = t->dev;
918 }
919 unregister_netdevice(dev);
920 err = 0;
921 break;
922
923 default:
924 err = -EINVAL;
925 }
926
927done:
928 return err;
929}
930
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000931static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
932 unsigned short type,
933 const void *daddr, const void *saddr, unsigned int len)
934{
935 struct ip6_tnl *t = netdev_priv(dev);
936 struct ipv6hdr *ipv6h = (struct ipv6hdr *)skb_push(skb, t->hlen);
937 __be16 *p = (__be16 *)(ipv6h+1);
938
Tom Herbertcb1ce2e2014-07-01 21:33:10 -0700939 ip6_flow_hdr(ipv6h, 0,
940 ip6_make_flowlabel(dev_net(dev), skb,
Tom Herbert42240902015-07-31 16:52:12 -0700941 t->fl.u.ip6.flowlabel, true,
Tom Herbert67800f92015-07-31 16:52:11 -0700942 &t->fl.u.ip6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000943 ipv6h->hop_limit = t->parms.hop_limit;
944 ipv6h->nexthdr = NEXTHDR_GRE;
945 ipv6h->saddr = t->parms.laddr;
946 ipv6h->daddr = t->parms.raddr;
947
948 p[0] = t->parms.o_flags;
949 p[1] = htons(type);
950
951 /*
952 * Set the source hardware address.
953 */
954
955 if (saddr)
956 memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
957 if (daddr)
958 memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
959 if (!ipv6_addr_any(&ipv6h->daddr))
960 return t->hlen;
961
962 return -t->hlen;
963}
964
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000965static const struct header_ops ip6gre_header_ops = {
966 .create = ip6gre_header,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000967};
968
969static const struct net_device_ops ip6gre_netdev_ops = {
970 .ndo_init = ip6gre_tunnel_init,
971 .ndo_uninit = ip6gre_tunnel_uninit,
972 .ndo_start_xmit = ip6gre_tunnel_xmit,
973 .ndo_do_ioctl = ip6gre_tunnel_ioctl,
Tom Herbertb05229f2016-04-29 17:12:21 -0700974 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +0000975 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +0200976 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000977};
978
979static void ip6gre_dev_free(struct net_device *dev)
980{
Martin KaFai Laucdf34642015-09-15 14:30:07 -0700981 struct ip6_tnl *t = netdev_priv(dev);
982
Paolo Abeni607f7252016-02-12 15:43:54 +0100983 dst_cache_destroy(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000984 free_percpu(dev->tstats);
985 free_netdev(dev);
986}
987
988static void ip6gre_tunnel_setup(struct net_device *dev)
989{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000990 dev->netdev_ops = &ip6gre_netdev_ops;
991 dev->destructor = ip6gre_dev_free;
992
993 dev->type = ARPHRD_IP6GRE;
Tom Herbertb05229f2016-04-29 17:12:21 -0700994
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000995 dev->flags |= IFF_NOARP;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000996 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -0700997 netif_keep_dst(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000998}
999
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001000static int ip6gre_tunnel_init_common(struct net_device *dev)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001001{
1002 struct ip6_tnl *tunnel;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001003 int ret;
Tom Herbertb05229f2016-04-29 17:12:21 -07001004 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001005
1006 tunnel = netdev_priv(dev);
1007
1008 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001009 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001010 strcpy(tunnel->parms.name, dev->name);
1011
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001012 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1013 if (!dev->tstats)
1014 return -ENOMEM;
1015
Paolo Abeni607f7252016-02-12 15:43:54 +01001016 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001017 if (ret) {
1018 free_percpu(dev->tstats);
1019 dev->tstats = NULL;
1020 return ret;
1021 }
1022
Tom Herbertb05229f2016-04-29 17:12:21 -07001023 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001024 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen;
Tom Herbertb05229f2016-04-29 17:12:21 -07001025 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1026
Tom Herbertdb2ec952016-05-09 17:12:08 -07001027 dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1028 dev->mtu = ETH_DATA_LEN - t_hlen;
Haishuang Yan1b227e52016-05-21 18:17:34 +08001029 if (dev->type == ARPHRD_ETHER)
1030 dev->mtu -= ETH_HLEN;
Tom Herbertb05229f2016-04-29 17:12:21 -07001031 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1032 dev->mtu -= 8;
1033
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001034 return 0;
1035}
1036
1037static int ip6gre_tunnel_init(struct net_device *dev)
1038{
1039 struct ip6_tnl *tunnel;
1040 int ret;
1041
1042 ret = ip6gre_tunnel_init_common(dev);
1043 if (ret)
1044 return ret;
1045
1046 tunnel = netdev_priv(dev);
1047
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001048 memcpy(dev->dev_addr, &tunnel->parms.laddr, sizeof(struct in6_addr));
1049 memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1050
1051 if (ipv6_addr_any(&tunnel->parms.raddr))
1052 dev->header_ops = &ip6gre_header_ops;
1053
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001054 return 0;
1055}
1056
1057static void ip6gre_fb_tunnel_init(struct net_device *dev)
1058{
1059 struct ip6_tnl *tunnel = netdev_priv(dev);
1060
1061 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001062 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001063 strcpy(tunnel->parms.name, dev->name);
1064
1065 tunnel->hlen = sizeof(struct ipv6hdr) + 4;
1066
1067 dev_hold(dev);
1068}
1069
1070
1071static struct inet6_protocol ip6gre_protocol __read_mostly = {
Tom Herbert308edfdf2016-04-29 17:12:17 -07001072 .handler = gre_rcv,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001073 .err_handler = ip6gre_err,
1074 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1075};
1076
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001077static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001078{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001079 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1080 struct net_device *dev, *aux;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001081 int prio;
1082
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001083 for_each_netdev_safe(net, dev, aux)
1084 if (dev->rtnl_link_ops == &ip6gre_link_ops ||
1085 dev->rtnl_link_ops == &ip6gre_tap_ops)
1086 unregister_netdevice_queue(dev, head);
1087
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001088 for (prio = 0; prio < 4; prio++) {
1089 int h;
Jiri Kosinae87a8f22016-08-10 11:03:35 +02001090 for (h = 0; h < IP6_GRE_HASH_SIZE; h++) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001091 struct ip6_tnl *t;
1092
1093 t = rtnl_dereference(ign->tunnels[prio][h]);
1094
Ian Morris53b24b82015-03-29 14:00:05 +01001095 while (t) {
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001096 /* If dev is in the same netns, it has already
1097 * been added to the list by the previous loop.
1098 */
1099 if (!net_eq(dev_net(t->dev), net))
1100 unregister_netdevice_queue(t->dev,
1101 head);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001102 t = rtnl_dereference(t->next);
1103 }
1104 }
1105 }
1106}
1107
1108static int __net_init ip6gre_init_net(struct net *net)
1109{
1110 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1111 int err;
1112
1113 ign->fb_tunnel_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001114 NET_NAME_UNKNOWN,
1115 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001116 if (!ign->fb_tunnel_dev) {
1117 err = -ENOMEM;
1118 goto err_alloc_dev;
1119 }
1120 dev_net_set(ign->fb_tunnel_dev, net);
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001121 /* FB netdevice is special: we have one, and only one per netns.
1122 * Allowing to move it to another netns is clearly unsafe.
1123 */
1124 ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1125
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001126
1127 ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1128 ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1129
1130 err = register_netdev(ign->fb_tunnel_dev);
1131 if (err)
1132 goto err_reg_dev;
1133
1134 rcu_assign_pointer(ign->tunnels_wc[0],
1135 netdev_priv(ign->fb_tunnel_dev));
1136 return 0;
1137
1138err_reg_dev:
1139 ip6gre_dev_free(ign->fb_tunnel_dev);
1140err_alloc_dev:
1141 return err;
1142}
1143
1144static void __net_exit ip6gre_exit_net(struct net *net)
1145{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001146 LIST_HEAD(list);
1147
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001148 rtnl_lock();
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001149 ip6gre_destroy_tunnels(net, &list);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001150 unregister_netdevice_many(&list);
1151 rtnl_unlock();
1152}
1153
1154static struct pernet_operations ip6gre_net_ops = {
1155 .init = ip6gre_init_net,
1156 .exit = ip6gre_exit_net,
1157 .id = &ip6gre_net_id,
1158 .size = sizeof(struct ip6gre_net),
1159};
1160
1161static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
1162{
1163 __be16 flags;
1164
1165 if (!data)
1166 return 0;
1167
1168 flags = 0;
1169 if (data[IFLA_GRE_IFLAGS])
1170 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1171 if (data[IFLA_GRE_OFLAGS])
1172 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1173 if (flags & (GRE_VERSION|GRE_ROUTING))
1174 return -EINVAL;
1175
1176 return 0;
1177}
1178
1179static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[])
1180{
1181 struct in6_addr daddr;
1182
1183 if (tb[IFLA_ADDRESS]) {
1184 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1185 return -EINVAL;
1186 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1187 return -EADDRNOTAVAIL;
1188 }
1189
1190 if (!data)
1191 goto out;
1192
1193 if (data[IFLA_GRE_REMOTE]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02001194 daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001195 if (ipv6_addr_any(&daddr))
1196 return -EINVAL;
1197 }
1198
1199out:
1200 return ip6gre_tunnel_validate(tb, data);
1201}
1202
1203
1204static void ip6gre_netlink_parms(struct nlattr *data[],
1205 struct __ip6_tnl_parm *parms)
1206{
1207 memset(parms, 0, sizeof(*parms));
1208
1209 if (!data)
1210 return;
1211
1212 if (data[IFLA_GRE_LINK])
1213 parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1214
1215 if (data[IFLA_GRE_IFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001216 parms->i_flags = gre_flags_to_tnl_flags(
1217 nla_get_be16(data[IFLA_GRE_IFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001218
1219 if (data[IFLA_GRE_OFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001220 parms->o_flags = gre_flags_to_tnl_flags(
1221 nla_get_be16(data[IFLA_GRE_OFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001222
1223 if (data[IFLA_GRE_IKEY])
1224 parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1225
1226 if (data[IFLA_GRE_OKEY])
1227 parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1228
1229 if (data[IFLA_GRE_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +02001230 parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001231
1232 if (data[IFLA_GRE_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +02001233 parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001234
1235 if (data[IFLA_GRE_TTL])
1236 parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1237
1238 if (data[IFLA_GRE_ENCAP_LIMIT])
1239 parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1240
1241 if (data[IFLA_GRE_FLOWINFO])
Lance Richardsonc2675de2016-09-24 14:01:04 -04001242 parms->flowinfo = nla_get_be32(data[IFLA_GRE_FLOWINFO]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001243
1244 if (data[IFLA_GRE_FLAGS])
1245 parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
1246}
1247
1248static int ip6gre_tap_init(struct net_device *dev)
1249{
1250 struct ip6_tnl *tunnel;
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001251 int ret;
1252
1253 ret = ip6gre_tunnel_init_common(dev);
1254 if (ret)
1255 return ret;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001256
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001257 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1258
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001259 tunnel = netdev_priv(dev);
1260
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001261 ip6gre_tnl_link_config(tunnel, 1);
1262
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001263 return 0;
1264}
1265
1266static const struct net_device_ops ip6gre_tap_netdev_ops = {
1267 .ndo_init = ip6gre_tap_init,
1268 .ndo_uninit = ip6gre_tunnel_uninit,
1269 .ndo_start_xmit = ip6gre_tunnel_xmit,
1270 .ndo_set_mac_address = eth_mac_addr,
1271 .ndo_validate_addr = eth_validate_addr,
Tom Herbertb05229f2016-04-29 17:12:21 -07001272 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +00001273 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001274 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001275};
1276
Alexander Duyckac4eb002016-04-14 15:33:51 -04001277#define GRE6_FEATURES (NETIF_F_SG | \
1278 NETIF_F_FRAGLIST | \
1279 NETIF_F_HIGHDMA | \
1280 NETIF_F_HW_CSUM)
1281
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001282static void ip6gre_tap_setup(struct net_device *dev)
1283{
1284
1285 ether_setup(dev);
1286
1287 dev->netdev_ops = &ip6gre_tap_netdev_ops;
1288 dev->destructor = ip6gre_dev_free;
1289
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001290 dev->features |= NETIF_F_NETNS_LOCAL;
Jiri Bencd13b1612016-02-17 15:32:53 +01001291 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001292 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001293}
1294
Tom Herbert1faf3d92016-05-18 09:06:19 -07001295static bool ip6gre_netlink_encap_parms(struct nlattr *data[],
1296 struct ip_tunnel_encap *ipencap)
1297{
1298 bool ret = false;
1299
1300 memset(ipencap, 0, sizeof(*ipencap));
1301
1302 if (!data)
1303 return ret;
1304
1305 if (data[IFLA_GRE_ENCAP_TYPE]) {
1306 ret = true;
1307 ipencap->type = nla_get_u16(data[IFLA_GRE_ENCAP_TYPE]);
1308 }
1309
1310 if (data[IFLA_GRE_ENCAP_FLAGS]) {
1311 ret = true;
1312 ipencap->flags = nla_get_u16(data[IFLA_GRE_ENCAP_FLAGS]);
1313 }
1314
1315 if (data[IFLA_GRE_ENCAP_SPORT]) {
1316 ret = true;
1317 ipencap->sport = nla_get_be16(data[IFLA_GRE_ENCAP_SPORT]);
1318 }
1319
1320 if (data[IFLA_GRE_ENCAP_DPORT]) {
1321 ret = true;
1322 ipencap->dport = nla_get_be16(data[IFLA_GRE_ENCAP_DPORT]);
1323 }
1324
1325 return ret;
1326}
1327
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001328static int ip6gre_newlink(struct net *src_net, struct net_device *dev,
1329 struct nlattr *tb[], struct nlattr *data[])
1330{
1331 struct ip6_tnl *nt;
1332 struct net *net = dev_net(dev);
1333 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001334 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001335 int err;
1336
1337 nt = netdev_priv(dev);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001338
1339 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1340 int err = ip6_tnl_encap_setup(nt, &ipencap);
1341
1342 if (err < 0)
1343 return err;
1344 }
1345
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001346 ip6gre_netlink_parms(data, &nt->parms);
1347
1348 if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
1349 return -EEXIST;
1350
1351 if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS])
1352 eth_hw_addr_random(dev);
1353
1354 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001355 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001356 ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
1357
Alexander Duyckac4eb002016-04-14 15:33:51 -04001358 dev->features |= GRE6_FEATURES;
1359 dev->hw_features |= GRE6_FEATURES;
1360
Tom Herbertb45bd1d2016-05-09 17:12:12 -07001361 if (!(nt->parms.o_flags & TUNNEL_SEQ)) {
Alexander Duyck6a553682016-05-18 10:44:47 -07001362 /* TCP offload with GRE SEQ is not supported, nor
1363 * can we support 2 levels of outer headers requiring
1364 * an update.
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001365 */
Alexander Duyck6a553682016-05-18 10:44:47 -07001366 if (!(nt->parms.o_flags & TUNNEL_CSUM) ||
1367 (nt->encap.type == TUNNEL_ENCAP_NONE)) {
1368 dev->features |= NETIF_F_GSO_SOFTWARE;
1369 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1370 }
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001371
1372 /* Can use a lockless transmit, unless we generate
1373 * output sequences
1374 */
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001375 dev->features |= NETIF_F_LLTX;
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001376 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001377
1378 err = register_netdevice(dev);
1379 if (err)
1380 goto out;
1381
1382 dev_hold(dev);
1383 ip6gre_tunnel_link(ign, nt);
1384
1385out:
1386 return err;
1387}
1388
1389static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
1390 struct nlattr *data[])
1391{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001392 struct ip6_tnl *t, *nt = netdev_priv(dev);
1393 struct net *net = nt->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001394 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1395 struct __ip6_tnl_parm p;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001396 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001397
1398 if (dev == ign->fb_tunnel_dev)
1399 return -EINVAL;
1400
Tom Herbert1faf3d92016-05-18 09:06:19 -07001401 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1402 int err = ip6_tnl_encap_setup(nt, &ipencap);
1403
1404 if (err < 0)
1405 return err;
1406 }
1407
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001408 ip6gre_netlink_parms(data, &p);
1409
1410 t = ip6gre_tunnel_locate(net, &p, 0);
1411
1412 if (t) {
1413 if (t->dev != dev)
1414 return -EEXIST;
1415 } else {
1416 t = nt;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001417 }
1418
Nicolas Dichtel6a61d4d2015-12-03 17:21:50 +01001419 ip6gre_tunnel_unlink(ign, t);
1420 ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
1421 ip6gre_tunnel_link(ign, t);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001422 return 0;
1423}
1424
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001425static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
1426{
1427 struct net *net = dev_net(dev);
1428 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1429
1430 if (dev != ign->fb_tunnel_dev)
1431 unregister_netdevice_queue(dev, head);
1432}
1433
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001434static size_t ip6gre_get_size(const struct net_device *dev)
1435{
1436 return
1437 /* IFLA_GRE_LINK */
1438 nla_total_size(4) +
1439 /* IFLA_GRE_IFLAGS */
1440 nla_total_size(2) +
1441 /* IFLA_GRE_OFLAGS */
1442 nla_total_size(2) +
1443 /* IFLA_GRE_IKEY */
1444 nla_total_size(4) +
1445 /* IFLA_GRE_OKEY */
1446 nla_total_size(4) +
1447 /* IFLA_GRE_LOCAL */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001448 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001449 /* IFLA_GRE_REMOTE */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001450 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001451 /* IFLA_GRE_TTL */
1452 nla_total_size(1) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001453 /* IFLA_GRE_ENCAP_LIMIT */
1454 nla_total_size(1) +
1455 /* IFLA_GRE_FLOWINFO */
1456 nla_total_size(4) +
1457 /* IFLA_GRE_FLAGS */
1458 nla_total_size(4) +
Tom Herbert1faf3d92016-05-18 09:06:19 -07001459 /* IFLA_GRE_ENCAP_TYPE */
1460 nla_total_size(2) +
1461 /* IFLA_GRE_ENCAP_FLAGS */
1462 nla_total_size(2) +
1463 /* IFLA_GRE_ENCAP_SPORT */
1464 nla_total_size(2) +
1465 /* IFLA_GRE_ENCAP_DPORT */
1466 nla_total_size(2) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001467 0;
1468}
1469
1470static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
1471{
1472 struct ip6_tnl *t = netdev_priv(dev);
1473 struct __ip6_tnl_parm *p = &t->parms;
1474
1475 if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001476 nla_put_be16(skb, IFLA_GRE_IFLAGS,
1477 gre_tnl_flags_to_gre_flags(p->i_flags)) ||
1478 nla_put_be16(skb, IFLA_GRE_OFLAGS,
1479 gre_tnl_flags_to_gre_flags(p->o_flags)) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001480 nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
1481 nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
Jiri Benc930345e2015-03-29 16:59:25 +02001482 nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
1483 nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001484 nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001485 nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
1486 nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
1487 nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags))
1488 goto nla_put_failure;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001489
1490 if (nla_put_u16(skb, IFLA_GRE_ENCAP_TYPE,
1491 t->encap.type) ||
1492 nla_put_be16(skb, IFLA_GRE_ENCAP_SPORT,
1493 t->encap.sport) ||
1494 nla_put_be16(skb, IFLA_GRE_ENCAP_DPORT,
1495 t->encap.dport) ||
1496 nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS,
1497 t->encap.flags))
1498 goto nla_put_failure;
1499
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001500 return 0;
1501
1502nla_put_failure:
1503 return -EMSGSIZE;
1504}
1505
1506static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
1507 [IFLA_GRE_LINK] = { .type = NLA_U32 },
1508 [IFLA_GRE_IFLAGS] = { .type = NLA_U16 },
1509 [IFLA_GRE_OFLAGS] = { .type = NLA_U16 },
1510 [IFLA_GRE_IKEY] = { .type = NLA_U32 },
1511 [IFLA_GRE_OKEY] = { .type = NLA_U32 },
1512 [IFLA_GRE_LOCAL] = { .len = FIELD_SIZEOF(struct ipv6hdr, saddr) },
1513 [IFLA_GRE_REMOTE] = { .len = FIELD_SIZEOF(struct ipv6hdr, daddr) },
1514 [IFLA_GRE_TTL] = { .type = NLA_U8 },
1515 [IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
1516 [IFLA_GRE_FLOWINFO] = { .type = NLA_U32 },
1517 [IFLA_GRE_FLAGS] = { .type = NLA_U32 },
Tom Herbert1faf3d92016-05-18 09:06:19 -07001518 [IFLA_GRE_ENCAP_TYPE] = { .type = NLA_U16 },
1519 [IFLA_GRE_ENCAP_FLAGS] = { .type = NLA_U16 },
1520 [IFLA_GRE_ENCAP_SPORT] = { .type = NLA_U16 },
1521 [IFLA_GRE_ENCAP_DPORT] = { .type = NLA_U16 },
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001522};
1523
1524static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
1525 .kind = "ip6gre",
1526 .maxtype = IFLA_GRE_MAX,
1527 .policy = ip6gre_policy,
1528 .priv_size = sizeof(struct ip6_tnl),
1529 .setup = ip6gre_tunnel_setup,
1530 .validate = ip6gre_tunnel_validate,
1531 .newlink = ip6gre_newlink,
1532 .changelink = ip6gre_changelink,
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001533 .dellink = ip6gre_dellink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001534 .get_size = ip6gre_get_size,
1535 .fill_info = ip6gre_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01001536 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001537};
1538
1539static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
1540 .kind = "ip6gretap",
1541 .maxtype = IFLA_GRE_MAX,
1542 .policy = ip6gre_policy,
1543 .priv_size = sizeof(struct ip6_tnl),
1544 .setup = ip6gre_tap_setup,
1545 .validate = ip6gre_tap_validate,
1546 .newlink = ip6gre_newlink,
1547 .changelink = ip6gre_changelink,
1548 .get_size = ip6gre_get_size,
1549 .fill_info = ip6gre_fill_info,
Nicolas Dichtel3390e392015-01-20 15:15:43 +01001550 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001551};
1552
1553/*
1554 * And now the modules code and kernel interface.
1555 */
1556
1557static int __init ip6gre_init(void)
1558{
1559 int err;
1560
1561 pr_info("GRE over IPv6 tunneling driver\n");
1562
1563 err = register_pernet_device(&ip6gre_net_ops);
1564 if (err < 0)
1565 return err;
1566
1567 err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
1568 if (err < 0) {
1569 pr_info("%s: can't add protocol\n", __func__);
1570 goto add_proto_failed;
1571 }
1572
1573 err = rtnl_link_register(&ip6gre_link_ops);
1574 if (err < 0)
1575 goto rtnl_link_failed;
1576
1577 err = rtnl_link_register(&ip6gre_tap_ops);
1578 if (err < 0)
1579 goto tap_ops_failed;
1580
1581out:
1582 return err;
1583
1584tap_ops_failed:
1585 rtnl_link_unregister(&ip6gre_link_ops);
1586rtnl_link_failed:
1587 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1588add_proto_failed:
1589 unregister_pernet_device(&ip6gre_net_ops);
1590 goto out;
1591}
1592
1593static void __exit ip6gre_fini(void)
1594{
1595 rtnl_link_unregister(&ip6gre_tap_ops);
1596 rtnl_link_unregister(&ip6gre_link_ops);
1597 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1598 unregister_pernet_device(&ip6gre_net_ops);
1599}
1600
1601module_init(ip6gre_init);
1602module_exit(ip6gre_fini);
1603MODULE_LICENSE("GPL");
1604MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
1605MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
1606MODULE_ALIAS_RTNL_LINK("ip6gre");
Nicolas Dichtel5a4ee9a2014-09-24 11:03:00 +02001607MODULE_ALIAS_RTNL_LINK("ip6gretap");
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001608MODULE_ALIAS_NETDEV("ip6gre0");