blob: e9b14e3493f2656670c4139060085bf5cb2110f6 [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);
Xin Long6d428bc2017-10-26 19:23:27 +0800411 if (code != ICMPV6_PORT_UNREACH)
412 break;
413 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000414 case ICMPV6_TIME_EXCEED:
415 if (code == ICMPV6_EXC_HOPLIMIT) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200416 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
417 t->parms.name);
Xin Long6d428bc2017-10-26 19:23:27 +0800418 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000419 }
Xin Long6d428bc2017-10-26 19:23:27 +0800420 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000421 case ICMPV6_PARAMPROB:
422 teli = 0;
423 if (code == ICMPV6_HDR_FIELD)
424 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
425
Sabrina Dubrocad1e158e2015-02-04 15:25:09 +0100426 if (teli && teli == be32_to_cpu(info) - 2) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000427 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
428 if (tel->encap_limit == 0) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200429 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
430 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000431 }
432 } else {
Matt Bennetta46496c2015-09-23 16:58:31 +1200433 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
434 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000435 }
Xin Long6d428bc2017-10-26 19:23:27 +0800436 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000437 case ICMPV6_PKT_TOOBIG:
Xin Longca7d8a32017-09-05 17:26:33 +0800438 mtu = be32_to_cpu(info) - offset - t->tun_hlen;
439 if (t->dev->type == ARPHRD_ETHER)
440 mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000441 if (mtu < IPV6_MIN_MTU)
442 mtu = IPV6_MIN_MTU;
443 t->dev->mtu = mtu;
Xin Long6d428bc2017-10-26 19:23:27 +0800444 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000445 }
446
447 if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
448 t->err_count++;
449 else
450 t->err_count = 1;
451 t->err_time = jiffies;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000452}
453
Tom Herbert308edfdf2016-04-29 17:12:17 -0700454static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000455{
456 const struct ipv6hdr *ipv6h;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000457 struct ip6_tnl *tunnel;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000458
459 ipv6h = ipv6_hdr(skb);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000460 tunnel = ip6gre_tunnel_lookup(skb->dev,
Tom Herbert308edfdf2016-04-29 17:12:17 -0700461 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
462 tpi->proto);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000463 if (tunnel) {
Tom Herbert308edfdf2016-04-29 17:12:17 -0700464 ip6_tnl_rcv(tunnel, skb, tpi, NULL, false);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000465
Tom Herbert308edfdf2016-04-29 17:12:17 -0700466 return PACKET_RCVD;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000467 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000468
Tom Herbert308edfdf2016-04-29 17:12:17 -0700469 return PACKET_REJECT;
470}
471
472static int gre_rcv(struct sk_buff *skb)
473{
474 struct tnl_ptk_info tpi;
475 bool csum_err = false;
476 int hdr_len;
477
Eric Dumazete5826152016-06-15 06:24:00 -0700478 hdr_len = gre_parse_header(skb, &tpi, &csum_err, htons(ETH_P_IPV6), 0);
Jiri Bencf132ae72016-05-03 15:00:21 +0200479 if (hdr_len < 0)
Tom Herbert308edfdf2016-04-29 17:12:17 -0700480 goto drop;
481
482 if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false))
483 goto drop;
484
485 if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD)
486 return 0;
487
488 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000489drop:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000490 kfree_skb(skb);
491 return 0;
492}
493
494struct ipv6_tel_txoption {
495 struct ipv6_txoptions ops;
496 __u8 dst_opt[8];
497};
498
Tom Herbertb05229f2016-04-29 17:12:21 -0700499static int gre_handle_offloads(struct sk_buff *skb, bool csum)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000500{
Tom Herbertb05229f2016-04-29 17:12:21 -0700501 return iptunnel_handle_offloads(skb,
502 csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000503}
504
Tom Herbertb05229f2016-04-29 17:12:21 -0700505static netdev_tx_t __gre6_xmit(struct sk_buff *skb,
506 struct net_device *dev, __u8 dsfield,
507 struct flowi6 *fl6, int encap_limit,
508 __u32 *pmtu, __be16 proto)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000509{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000510 struct ip6_tnl *tunnel = netdev_priv(dev);
Xin Longd6b1aeb2017-10-26 19:27:17 +0800511 struct dst_entry *dst = skb_dst(skb);
512 __be16 protocol;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000513
514 if (dev->type == ARPHRD_ETHER)
515 IPCB(skb)->flags = 0;
516
Tom Herbertb05229f2016-04-29 17:12:21 -0700517 if (dev->header_ops && dev->type == ARPHRD_IP6GRE)
518 fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr;
519 else
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000520 fl6->daddr = tunnel->parms.raddr;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000521
Tom Herbertb05229f2016-04-29 17:12:21 -0700522 if (tunnel->parms.o_flags & TUNNEL_SEQ)
523 tunnel->o_seqno++;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000524
Tom Herbertb05229f2016-04-29 17:12:21 -0700525 /* Push GRE header. */
Xin Longd6b1aeb2017-10-26 19:27:17 +0800526 protocol = (dev->type == ARPHRD_ETHER) ? htons(ETH_P_TEB) : proto;
Tom Herbertb05229f2016-04-29 17:12:21 -0700527 gre_build_header(skb, tunnel->tun_hlen, tunnel->parms.o_flags,
528 protocol, tunnel->parms.o_key, htonl(tunnel->o_seqno));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000529
Xin Longd6b1aeb2017-10-26 19:27:17 +0800530 /* TooBig packet may have updated dst->dev's mtu */
531 if (dst && dst_mtu(dst) > dst->dev->mtu)
532 dst->ops->update_pmtu(dst, NULL, skb, dst->dev->mtu);
533
Tom Herbertb05229f2016-04-29 17:12:21 -0700534 return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu,
535 NEXTHDR_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000536}
537
538static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev)
539{
540 struct ip6_tnl *t = netdev_priv(dev);
541 const struct iphdr *iph = ip_hdr(skb);
542 int encap_limit = -1;
543 struct flowi6 fl6;
544 __u8 dsfield;
545 __u32 mtu;
546 int err;
547
Bernie Harris5146d1f2016-02-22 12:58:05 +1300548 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
549
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000550 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
551 encap_limit = t->parms.encap_limit;
552
553 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000554
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000555 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
Peter Dawsonadfe95f2017-05-26 06:35:18 +1000556 dsfield = ipv4_get_dsfield(iph);
557 else
558 dsfield = ip6_tclass(t->parms.flowinfo);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000559 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
560 fl6.flowi6_mark = skb->mark;
561
Tom Herbertb05229f2016-04-29 17:12:21 -0700562 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
563 if (err)
564 return -1;
565
566 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
567 skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000568 if (err != 0) {
569 /* XXX: send ICMP error even if DF is not set. */
570 if (err == -EMSGSIZE)
571 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
572 htonl(mtu));
573 return -1;
574 }
575
576 return 0;
577}
578
579static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev)
580{
581 struct ip6_tnl *t = netdev_priv(dev);
582 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
583 int encap_limit = -1;
584 __u16 offset;
585 struct flowi6 fl6;
586 __u8 dsfield;
587 __u32 mtu;
588 int err;
589
590 if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
591 return -1;
592
593 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Eric Dumazetb07bf232017-01-23 16:43:05 -0800594 /* ip6_tnl_parse_tlv_enc_lim() might have reallocated skb->head */
595 ipv6h = ipv6_hdr(skb);
596
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000597 if (offset > 0) {
598 struct ipv6_tlv_tnl_enc_lim *tel;
599 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
600 if (tel->encap_limit == 0) {
601 icmpv6_send(skb, ICMPV6_PARAMPROB,
602 ICMPV6_HDR_FIELD, offset + 2);
603 return -1;
604 }
605 encap_limit = tel->encap_limit - 1;
606 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
607 encap_limit = t->parms.encap_limit;
608
609 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000610
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000611 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
Peter Dawsonadfe95f2017-05-26 06:35:18 +1000612 dsfield = ipv6_get_dsfield(ipv6h);
613 else
614 dsfield = ip6_tclass(t->parms.flowinfo);
615
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000616 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +0100617 fl6.flowlabel |= ip6_flowlabel(ipv6h);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000618 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
619 fl6.flowi6_mark = skb->mark;
620
Tom Herbertb05229f2016-04-29 17:12:21 -0700621 if (gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM)))
622 return -1;
623
624 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit,
625 &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000626 if (err != 0) {
627 if (err == -EMSGSIZE)
628 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
629 return -1;
630 }
631
632 return 0;
633}
634
635/**
636 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
637 * @t: the outgoing tunnel device
638 * @hdr: IPv6 header from the incoming packet
639 *
640 * Description:
641 * Avoid trivial tunneling loop by checking that tunnel exit-point
642 * doesn't match source of incoming packet.
643 *
644 * Return:
645 * 1 if conflict,
646 * 0 else
647 **/
648
649static inline bool ip6gre_tnl_addr_conflict(const struct ip6_tnl *t,
650 const struct ipv6hdr *hdr)
651{
652 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
653}
654
655static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev)
656{
657 struct ip6_tnl *t = netdev_priv(dev);
658 int encap_limit = -1;
659 struct flowi6 fl6;
660 __u32 mtu;
661 int err;
662
663 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
664 encap_limit = t->parms.encap_limit;
665
666 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000667
Tom Herbertb05229f2016-04-29 17:12:21 -0700668 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
669 if (err)
670 return err;
671
672 err = __gre6_xmit(skb, dev, 0, &fl6, encap_limit, &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000673
674 return err;
675}
676
677static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
678 struct net_device *dev)
679{
680 struct ip6_tnl *t = netdev_priv(dev);
681 struct net_device_stats *stats = &t->dev->stats;
682 int ret;
683
Steffen Klassertd5005142014-11-05 08:02:48 +0100684 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
Tommi Rantala41ab3e32013-02-06 03:24:02 +0000685 goto tx_err;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000686
687 switch (skb->protocol) {
688 case htons(ETH_P_IP):
689 ret = ip6gre_xmit_ipv4(skb, dev);
690 break;
691 case htons(ETH_P_IPV6):
692 ret = ip6gre_xmit_ipv6(skb, dev);
693 break;
694 default:
695 ret = ip6gre_xmit_other(skb, dev);
696 break;
697 }
698
699 if (ret < 0)
700 goto tx_err;
701
702 return NETDEV_TX_OK;
703
704tx_err:
705 stats->tx_errors++;
706 stats->tx_dropped++;
707 kfree_skb(skb);
708 return NETDEV_TX_OK;
709}
710
711static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
712{
713 struct net_device *dev = t->dev;
714 struct __ip6_tnl_parm *p = &t->parms;
715 struct flowi6 *fl6 = &t->fl.u.ip6;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700716 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000717
718 if (dev->type != ARPHRD_ETHER) {
719 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
720 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
721 }
722
723 /* Set up flowi template */
724 fl6->saddr = p->laddr;
725 fl6->daddr = p->raddr;
726 fl6->flowi6_oif = p->link;
727 fl6->flowlabel = 0;
Haishuang Yan252f3f52016-05-21 18:17:35 +0800728 fl6->flowi6_proto = IPPROTO_GRE;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000729
730 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
731 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
732 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
733 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
734
735 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
736 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
737
738 if (p->flags&IP6_TNL_F_CAP_XMIT &&
739 p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER)
740 dev->flags |= IFF_POINTOPOINT;
741 else
742 dev->flags &= ~IFF_POINTOPOINT;
743
Tom Herbertdb2ec952016-05-09 17:12:08 -0700744 t->tun_hlen = gre_calc_hlen(t->parms.o_flags);
745
Tom Herbert1faf3d92016-05-18 09:06:19 -0700746 t->hlen = t->encap_hlen + t->tun_hlen;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700747
748 t_hlen = t->hlen + sizeof(struct ipv6hdr);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000749
750 if (p->flags & IP6_TNL_F_CAP_XMIT) {
751 int strict = (ipv6_addr_type(&p->raddr) &
752 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
753
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200754 struct rt6_info *rt = rt6_lookup(t->net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000755 &p->raddr, &p->laddr,
756 p->link, strict);
757
Ian Morris63159f22015-03-29 14:00:04 +0100758 if (!rt)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000759 return;
760
761 if (rt->dst.dev) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700762 dev->hard_header_len = rt->dst.dev->hard_header_len +
763 t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000764
765 if (set_mtu) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700766 dev->mtu = rt->dst.dev->mtu - t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000767 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
768 dev->mtu -= 8;
Alexander Duycka9e242c2016-04-14 15:33:45 -0400769 if (dev->type == ARPHRD_ETHER)
770 dev->mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000771
772 if (dev->mtu < IPV6_MIN_MTU)
773 dev->mtu = IPV6_MIN_MTU;
774 }
775 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000776 ip6_rt_put(rt);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000777 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000778}
779
780static int ip6gre_tnl_change(struct ip6_tnl *t,
781 const struct __ip6_tnl_parm *p, int set_mtu)
782{
783 t->parms.laddr = p->laddr;
784 t->parms.raddr = p->raddr;
785 t->parms.flags = p->flags;
786 t->parms.hop_limit = p->hop_limit;
787 t->parms.encap_limit = p->encap_limit;
788 t->parms.flowinfo = p->flowinfo;
789 t->parms.link = p->link;
790 t->parms.proto = p->proto;
791 t->parms.i_key = p->i_key;
792 t->parms.o_key = p->o_key;
793 t->parms.i_flags = p->i_flags;
794 t->parms.o_flags = p->o_flags;
Paolo Abeni607f7252016-02-12 15:43:54 +0100795 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000796 ip6gre_tnl_link_config(t, set_mtu);
797 return 0;
798}
799
800static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
801 const struct ip6_tnl_parm2 *u)
802{
803 p->laddr = u->laddr;
804 p->raddr = u->raddr;
805 p->flags = u->flags;
806 p->hop_limit = u->hop_limit;
807 p->encap_limit = u->encap_limit;
808 p->flowinfo = u->flowinfo;
809 p->link = u->link;
810 p->i_key = u->i_key;
811 p->o_key = u->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700812 p->i_flags = gre_flags_to_tnl_flags(u->i_flags);
813 p->o_flags = gre_flags_to_tnl_flags(u->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000814 memcpy(p->name, u->name, sizeof(u->name));
815}
816
817static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
818 const struct __ip6_tnl_parm *p)
819{
820 u->proto = IPPROTO_GRE;
821 u->laddr = p->laddr;
822 u->raddr = p->raddr;
823 u->flags = p->flags;
824 u->hop_limit = p->hop_limit;
825 u->encap_limit = p->encap_limit;
826 u->flowinfo = p->flowinfo;
827 u->link = p->link;
828 u->i_key = p->i_key;
829 u->o_key = p->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700830 u->i_flags = gre_tnl_flags_to_gre_flags(p->i_flags);
831 u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000832 memcpy(u->name, p->name, sizeof(u->name));
833}
834
835static int ip6gre_tunnel_ioctl(struct net_device *dev,
836 struct ifreq *ifr, int cmd)
837{
838 int err = 0;
839 struct ip6_tnl_parm2 p;
840 struct __ip6_tnl_parm p1;
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200841 struct ip6_tnl *t = netdev_priv(dev);
842 struct net *net = t->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000843 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
844
Tom Herbert308edfdf2016-04-29 17:12:17 -0700845 memset(&p1, 0, sizeof(p1));
846
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000847 switch (cmd) {
848 case SIOCGETTUNNEL:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000849 if (dev == ign->fb_tunnel_dev) {
850 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
851 err = -EFAULT;
852 break;
853 }
854 ip6gre_tnl_parm_from_user(&p1, &p);
855 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100856 if (!t)
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200857 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000858 }
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000859 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000860 ip6gre_tnl_parm_to_user(&p, &t->parms);
861 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
862 err = -EFAULT;
863 break;
864
865 case SIOCADDTUNNEL:
866 case SIOCCHGTUNNEL:
867 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000868 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000869 goto done;
870
871 err = -EFAULT;
872 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
873 goto done;
874
875 err = -EINVAL;
876 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
877 goto done;
878
879 if (!(p.i_flags&GRE_KEY))
880 p.i_key = 0;
881 if (!(p.o_flags&GRE_KEY))
882 p.o_key = 0;
883
884 ip6gre_tnl_parm_from_user(&p1, &p);
885 t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
886
887 if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Ian Morris53b24b82015-03-29 14:00:05 +0100888 if (t) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000889 if (t->dev != dev) {
890 err = -EEXIST;
891 break;
892 }
893 } else {
894 t = netdev_priv(dev);
895
896 ip6gre_tunnel_unlink(ign, t);
897 synchronize_net();
898 ip6gre_tnl_change(t, &p1, 1);
899 ip6gre_tunnel_link(ign, t);
900 netdev_state_change(dev);
901 }
902 }
903
904 if (t) {
905 err = 0;
906
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000907 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000908 ip6gre_tnl_parm_to_user(&p, &t->parms);
909 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
910 err = -EFAULT;
911 } else
912 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
913 break;
914
915 case SIOCDELTUNNEL:
916 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000917 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000918 goto done;
919
920 if (dev == ign->fb_tunnel_dev) {
921 err = -EFAULT;
922 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
923 goto done;
924 err = -ENOENT;
925 ip6gre_tnl_parm_from_user(&p1, &p);
926 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100927 if (!t)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000928 goto done;
929 err = -EPERM;
930 if (t == netdev_priv(ign->fb_tunnel_dev))
931 goto done;
932 dev = t->dev;
933 }
934 unregister_netdevice(dev);
935 err = 0;
936 break;
937
938 default:
939 err = -EINVAL;
940 }
941
942done:
943 return err;
944}
945
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000946static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
Xin Longe814bae2017-09-15 12:00:07 +0800947 unsigned short type, const void *daddr,
948 const void *saddr, unsigned int len)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000949{
950 struct ip6_tnl *t = netdev_priv(dev);
Xin Longe814bae2017-09-15 12:00:07 +0800951 struct ipv6hdr *ipv6h;
952 __be16 *p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000953
Xin Longe814bae2017-09-15 12:00:07 +0800954 ipv6h = (struct ipv6hdr *)skb_push(skb, t->hlen + sizeof(*ipv6h));
955 ip6_flow_hdr(ipv6h, 0, ip6_make_flowlabel(dev_net(dev), skb,
956 t->fl.u.ip6.flowlabel,
957 true, &t->fl.u.ip6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000958 ipv6h->hop_limit = t->parms.hop_limit;
959 ipv6h->nexthdr = NEXTHDR_GRE;
960 ipv6h->saddr = t->parms.laddr;
961 ipv6h->daddr = t->parms.raddr;
962
Xin Longe814bae2017-09-15 12:00:07 +0800963 p = (__be16 *)(ipv6h + 1);
964 p[0] = t->parms.o_flags;
965 p[1] = htons(type);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000966
967 /*
968 * Set the source hardware address.
969 */
970
971 if (saddr)
972 memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
973 if (daddr)
974 memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
975 if (!ipv6_addr_any(&ipv6h->daddr))
976 return t->hlen;
977
978 return -t->hlen;
979}
980
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000981static const struct header_ops ip6gre_header_ops = {
982 .create = ip6gre_header,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000983};
984
985static const struct net_device_ops ip6gre_netdev_ops = {
986 .ndo_init = ip6gre_tunnel_init,
987 .ndo_uninit = ip6gre_tunnel_uninit,
988 .ndo_start_xmit = ip6gre_tunnel_xmit,
989 .ndo_do_ioctl = ip6gre_tunnel_ioctl,
Tom Herbertb05229f2016-04-29 17:12:21 -0700990 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +0000991 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +0200992 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000993};
994
995static void ip6gre_dev_free(struct net_device *dev)
996{
Martin KaFai Laucdf34642015-09-15 14:30:07 -0700997 struct ip6_tnl *t = netdev_priv(dev);
998
Paolo Abeni607f7252016-02-12 15:43:54 +0100999 dst_cache_destroy(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001000 free_percpu(dev->tstats);
1001 free_netdev(dev);
1002}
1003
1004static void ip6gre_tunnel_setup(struct net_device *dev)
1005{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001006 dev->netdev_ops = &ip6gre_netdev_ops;
1007 dev->destructor = ip6gre_dev_free;
1008
1009 dev->type = ARPHRD_IP6GRE;
Tom Herbertb05229f2016-04-29 17:12:21 -07001010
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001011 dev->flags |= IFF_NOARP;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001012 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -07001013 netif_keep_dst(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001014}
1015
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001016static int ip6gre_tunnel_init_common(struct net_device *dev)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001017{
1018 struct ip6_tnl *tunnel;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001019 int ret;
Tom Herbertb05229f2016-04-29 17:12:21 -07001020 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001021
1022 tunnel = netdev_priv(dev);
1023
1024 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001025 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001026 strcpy(tunnel->parms.name, dev->name);
1027
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001028 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1029 if (!dev->tstats)
1030 return -ENOMEM;
1031
Paolo Abeni607f7252016-02-12 15:43:54 +01001032 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001033 if (ret) {
1034 free_percpu(dev->tstats);
1035 dev->tstats = NULL;
1036 return ret;
1037 }
1038
Tom Herbertb05229f2016-04-29 17:12:21 -07001039 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001040 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen;
Tom Herbertb05229f2016-04-29 17:12:21 -07001041 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1042
Tom Herbertdb2ec952016-05-09 17:12:08 -07001043 dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1044 dev->mtu = ETH_DATA_LEN - t_hlen;
Haishuang Yan1b227e52016-05-21 18:17:34 +08001045 if (dev->type == ARPHRD_ETHER)
1046 dev->mtu -= ETH_HLEN;
Tom Herbertb05229f2016-04-29 17:12:21 -07001047 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1048 dev->mtu -= 8;
1049
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001050 return 0;
1051}
1052
1053static int ip6gre_tunnel_init(struct net_device *dev)
1054{
1055 struct ip6_tnl *tunnel;
1056 int ret;
1057
1058 ret = ip6gre_tunnel_init_common(dev);
1059 if (ret)
1060 return ret;
1061
1062 tunnel = netdev_priv(dev);
1063
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001064 memcpy(dev->dev_addr, &tunnel->parms.laddr, sizeof(struct in6_addr));
1065 memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1066
1067 if (ipv6_addr_any(&tunnel->parms.raddr))
1068 dev->header_ops = &ip6gre_header_ops;
1069
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001070 return 0;
1071}
1072
1073static void ip6gre_fb_tunnel_init(struct net_device *dev)
1074{
1075 struct ip6_tnl *tunnel = netdev_priv(dev);
1076
1077 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001078 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001079 strcpy(tunnel->parms.name, dev->name);
1080
1081 tunnel->hlen = sizeof(struct ipv6hdr) + 4;
1082
1083 dev_hold(dev);
1084}
1085
1086
1087static struct inet6_protocol ip6gre_protocol __read_mostly = {
Tom Herbert308edfdf2016-04-29 17:12:17 -07001088 .handler = gre_rcv,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001089 .err_handler = ip6gre_err,
1090 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1091};
1092
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001093static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001094{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001095 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1096 struct net_device *dev, *aux;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001097 int prio;
1098
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001099 for_each_netdev_safe(net, dev, aux)
1100 if (dev->rtnl_link_ops == &ip6gre_link_ops ||
1101 dev->rtnl_link_ops == &ip6gre_tap_ops)
1102 unregister_netdevice_queue(dev, head);
1103
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001104 for (prio = 0; prio < 4; prio++) {
1105 int h;
Jiri Kosinae87a8f22016-08-10 11:03:35 +02001106 for (h = 0; h < IP6_GRE_HASH_SIZE; h++) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001107 struct ip6_tnl *t;
1108
1109 t = rtnl_dereference(ign->tunnels[prio][h]);
1110
Ian Morris53b24b82015-03-29 14:00:05 +01001111 while (t) {
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001112 /* If dev is in the same netns, it has already
1113 * been added to the list by the previous loop.
1114 */
1115 if (!net_eq(dev_net(t->dev), net))
1116 unregister_netdevice_queue(t->dev,
1117 head);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001118 t = rtnl_dereference(t->next);
1119 }
1120 }
1121 }
1122}
1123
1124static int __net_init ip6gre_init_net(struct net *net)
1125{
1126 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1127 int err;
1128
1129 ign->fb_tunnel_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001130 NET_NAME_UNKNOWN,
1131 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001132 if (!ign->fb_tunnel_dev) {
1133 err = -ENOMEM;
1134 goto err_alloc_dev;
1135 }
1136 dev_net_set(ign->fb_tunnel_dev, net);
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001137 /* FB netdevice is special: we have one, and only one per netns.
1138 * Allowing to move it to another netns is clearly unsafe.
1139 */
1140 ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1141
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001142
1143 ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1144 ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1145
1146 err = register_netdev(ign->fb_tunnel_dev);
1147 if (err)
1148 goto err_reg_dev;
1149
1150 rcu_assign_pointer(ign->tunnels_wc[0],
1151 netdev_priv(ign->fb_tunnel_dev));
1152 return 0;
1153
1154err_reg_dev:
1155 ip6gre_dev_free(ign->fb_tunnel_dev);
1156err_alloc_dev:
1157 return err;
1158}
1159
1160static void __net_exit ip6gre_exit_net(struct net *net)
1161{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001162 LIST_HEAD(list);
1163
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001164 rtnl_lock();
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001165 ip6gre_destroy_tunnels(net, &list);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001166 unregister_netdevice_many(&list);
1167 rtnl_unlock();
1168}
1169
1170static struct pernet_operations ip6gre_net_ops = {
1171 .init = ip6gre_init_net,
1172 .exit = ip6gre_exit_net,
1173 .id = &ip6gre_net_id,
1174 .size = sizeof(struct ip6gre_net),
1175};
1176
1177static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
1178{
1179 __be16 flags;
1180
1181 if (!data)
1182 return 0;
1183
1184 flags = 0;
1185 if (data[IFLA_GRE_IFLAGS])
1186 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1187 if (data[IFLA_GRE_OFLAGS])
1188 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1189 if (flags & (GRE_VERSION|GRE_ROUTING))
1190 return -EINVAL;
1191
1192 return 0;
1193}
1194
1195static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[])
1196{
1197 struct in6_addr daddr;
1198
1199 if (tb[IFLA_ADDRESS]) {
1200 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1201 return -EINVAL;
1202 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1203 return -EADDRNOTAVAIL;
1204 }
1205
1206 if (!data)
1207 goto out;
1208
1209 if (data[IFLA_GRE_REMOTE]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02001210 daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001211 if (ipv6_addr_any(&daddr))
1212 return -EINVAL;
1213 }
1214
1215out:
1216 return ip6gre_tunnel_validate(tb, data);
1217}
1218
1219
1220static void ip6gre_netlink_parms(struct nlattr *data[],
1221 struct __ip6_tnl_parm *parms)
1222{
1223 memset(parms, 0, sizeof(*parms));
1224
1225 if (!data)
1226 return;
1227
1228 if (data[IFLA_GRE_LINK])
1229 parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1230
1231 if (data[IFLA_GRE_IFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001232 parms->i_flags = gre_flags_to_tnl_flags(
1233 nla_get_be16(data[IFLA_GRE_IFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001234
1235 if (data[IFLA_GRE_OFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001236 parms->o_flags = gre_flags_to_tnl_flags(
1237 nla_get_be16(data[IFLA_GRE_OFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001238
1239 if (data[IFLA_GRE_IKEY])
1240 parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1241
1242 if (data[IFLA_GRE_OKEY])
1243 parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1244
1245 if (data[IFLA_GRE_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +02001246 parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001247
1248 if (data[IFLA_GRE_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +02001249 parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001250
1251 if (data[IFLA_GRE_TTL])
1252 parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1253
1254 if (data[IFLA_GRE_ENCAP_LIMIT])
1255 parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1256
1257 if (data[IFLA_GRE_FLOWINFO])
Lance Richardsonc2675de2016-09-24 14:01:04 -04001258 parms->flowinfo = nla_get_be32(data[IFLA_GRE_FLOWINFO]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001259
1260 if (data[IFLA_GRE_FLAGS])
1261 parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
1262}
1263
1264static int ip6gre_tap_init(struct net_device *dev)
1265{
1266 struct ip6_tnl *tunnel;
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001267 int ret;
1268
1269 ret = ip6gre_tunnel_init_common(dev);
1270 if (ret)
1271 return ret;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001272
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001273 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1274
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001275 tunnel = netdev_priv(dev);
1276
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001277 ip6gre_tnl_link_config(tunnel, 1);
1278
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001279 return 0;
1280}
1281
1282static const struct net_device_ops ip6gre_tap_netdev_ops = {
1283 .ndo_init = ip6gre_tap_init,
1284 .ndo_uninit = ip6gre_tunnel_uninit,
1285 .ndo_start_xmit = ip6gre_tunnel_xmit,
1286 .ndo_set_mac_address = eth_mac_addr,
1287 .ndo_validate_addr = eth_validate_addr,
Tom Herbertb05229f2016-04-29 17:12:21 -07001288 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +00001289 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001290 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001291};
1292
Alexander Duyckac4eb002016-04-14 15:33:51 -04001293#define GRE6_FEATURES (NETIF_F_SG | \
1294 NETIF_F_FRAGLIST | \
1295 NETIF_F_HIGHDMA | \
1296 NETIF_F_HW_CSUM)
1297
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001298static void ip6gre_tap_setup(struct net_device *dev)
1299{
1300
1301 ether_setup(dev);
1302
1303 dev->netdev_ops = &ip6gre_tap_netdev_ops;
1304 dev->destructor = ip6gre_dev_free;
1305
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001306 dev->features |= NETIF_F_NETNS_LOCAL;
Jiri Bencd13b1612016-02-17 15:32:53 +01001307 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001308 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Xin Longab4da562017-09-28 13:23:50 +08001309 netif_keep_dst(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001310}
1311
Tom Herbert1faf3d92016-05-18 09:06:19 -07001312static bool ip6gre_netlink_encap_parms(struct nlattr *data[],
1313 struct ip_tunnel_encap *ipencap)
1314{
1315 bool ret = false;
1316
1317 memset(ipencap, 0, sizeof(*ipencap));
1318
1319 if (!data)
1320 return ret;
1321
1322 if (data[IFLA_GRE_ENCAP_TYPE]) {
1323 ret = true;
1324 ipencap->type = nla_get_u16(data[IFLA_GRE_ENCAP_TYPE]);
1325 }
1326
1327 if (data[IFLA_GRE_ENCAP_FLAGS]) {
1328 ret = true;
1329 ipencap->flags = nla_get_u16(data[IFLA_GRE_ENCAP_FLAGS]);
1330 }
1331
1332 if (data[IFLA_GRE_ENCAP_SPORT]) {
1333 ret = true;
1334 ipencap->sport = nla_get_be16(data[IFLA_GRE_ENCAP_SPORT]);
1335 }
1336
1337 if (data[IFLA_GRE_ENCAP_DPORT]) {
1338 ret = true;
1339 ipencap->dport = nla_get_be16(data[IFLA_GRE_ENCAP_DPORT]);
1340 }
1341
1342 return ret;
1343}
1344
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001345static int ip6gre_newlink(struct net *src_net, struct net_device *dev,
1346 struct nlattr *tb[], struct nlattr *data[])
1347{
1348 struct ip6_tnl *nt;
1349 struct net *net = dev_net(dev);
1350 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001351 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001352 int err;
1353
1354 nt = netdev_priv(dev);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001355
1356 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1357 int err = ip6_tnl_encap_setup(nt, &ipencap);
1358
1359 if (err < 0)
1360 return err;
1361 }
1362
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001363 ip6gre_netlink_parms(data, &nt->parms);
1364
1365 if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
1366 return -EEXIST;
1367
1368 if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS])
1369 eth_hw_addr_random(dev);
1370
1371 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001372 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001373 ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
1374
Alexander Duyckac4eb002016-04-14 15:33:51 -04001375 dev->features |= GRE6_FEATURES;
1376 dev->hw_features |= GRE6_FEATURES;
1377
Tom Herbertb45bd1d2016-05-09 17:12:12 -07001378 if (!(nt->parms.o_flags & TUNNEL_SEQ)) {
Alexander Duyck6a553682016-05-18 10:44:47 -07001379 /* TCP offload with GRE SEQ is not supported, nor
1380 * can we support 2 levels of outer headers requiring
1381 * an update.
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001382 */
Alexander Duyck6a553682016-05-18 10:44:47 -07001383 if (!(nt->parms.o_flags & TUNNEL_CSUM) ||
1384 (nt->encap.type == TUNNEL_ENCAP_NONE)) {
1385 dev->features |= NETIF_F_GSO_SOFTWARE;
1386 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1387 }
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001388
1389 /* Can use a lockless transmit, unless we generate
1390 * output sequences
1391 */
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001392 dev->features |= NETIF_F_LLTX;
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001393 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001394
1395 err = register_netdevice(dev);
1396 if (err)
1397 goto out;
1398
1399 dev_hold(dev);
1400 ip6gre_tunnel_link(ign, nt);
1401
1402out:
1403 return err;
1404}
1405
1406static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
1407 struct nlattr *data[])
1408{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001409 struct ip6_tnl *t, *nt = netdev_priv(dev);
1410 struct net *net = nt->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001411 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1412 struct __ip6_tnl_parm p;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001413 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001414
1415 if (dev == ign->fb_tunnel_dev)
1416 return -EINVAL;
1417
Tom Herbert1faf3d92016-05-18 09:06:19 -07001418 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1419 int err = ip6_tnl_encap_setup(nt, &ipencap);
1420
1421 if (err < 0)
1422 return err;
1423 }
1424
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001425 ip6gre_netlink_parms(data, &p);
1426
1427 t = ip6gre_tunnel_locate(net, &p, 0);
1428
1429 if (t) {
1430 if (t->dev != dev)
1431 return -EEXIST;
1432 } else {
1433 t = nt;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001434 }
1435
Nicolas Dichtel6a61d4d2015-12-03 17:21:50 +01001436 ip6gre_tunnel_unlink(ign, t);
1437 ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
1438 ip6gre_tunnel_link(ign, t);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001439 return 0;
1440}
1441
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001442static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
1443{
1444 struct net *net = dev_net(dev);
1445 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1446
1447 if (dev != ign->fb_tunnel_dev)
1448 unregister_netdevice_queue(dev, head);
1449}
1450
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001451static size_t ip6gre_get_size(const struct net_device *dev)
1452{
1453 return
1454 /* IFLA_GRE_LINK */
1455 nla_total_size(4) +
1456 /* IFLA_GRE_IFLAGS */
1457 nla_total_size(2) +
1458 /* IFLA_GRE_OFLAGS */
1459 nla_total_size(2) +
1460 /* IFLA_GRE_IKEY */
1461 nla_total_size(4) +
1462 /* IFLA_GRE_OKEY */
1463 nla_total_size(4) +
1464 /* IFLA_GRE_LOCAL */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001465 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001466 /* IFLA_GRE_REMOTE */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001467 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001468 /* IFLA_GRE_TTL */
1469 nla_total_size(1) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001470 /* IFLA_GRE_ENCAP_LIMIT */
1471 nla_total_size(1) +
1472 /* IFLA_GRE_FLOWINFO */
1473 nla_total_size(4) +
1474 /* IFLA_GRE_FLAGS */
1475 nla_total_size(4) +
Tom Herbert1faf3d92016-05-18 09:06:19 -07001476 /* IFLA_GRE_ENCAP_TYPE */
1477 nla_total_size(2) +
1478 /* IFLA_GRE_ENCAP_FLAGS */
1479 nla_total_size(2) +
1480 /* IFLA_GRE_ENCAP_SPORT */
1481 nla_total_size(2) +
1482 /* IFLA_GRE_ENCAP_DPORT */
1483 nla_total_size(2) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001484 0;
1485}
1486
1487static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
1488{
1489 struct ip6_tnl *t = netdev_priv(dev);
1490 struct __ip6_tnl_parm *p = &t->parms;
1491
1492 if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001493 nla_put_be16(skb, IFLA_GRE_IFLAGS,
1494 gre_tnl_flags_to_gre_flags(p->i_flags)) ||
1495 nla_put_be16(skb, IFLA_GRE_OFLAGS,
1496 gre_tnl_flags_to_gre_flags(p->o_flags)) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001497 nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
1498 nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
Jiri Benc930345e2015-03-29 16:59:25 +02001499 nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
1500 nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001501 nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001502 nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
1503 nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
1504 nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags))
1505 goto nla_put_failure;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001506
1507 if (nla_put_u16(skb, IFLA_GRE_ENCAP_TYPE,
1508 t->encap.type) ||
1509 nla_put_be16(skb, IFLA_GRE_ENCAP_SPORT,
1510 t->encap.sport) ||
1511 nla_put_be16(skb, IFLA_GRE_ENCAP_DPORT,
1512 t->encap.dport) ||
1513 nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS,
1514 t->encap.flags))
1515 goto nla_put_failure;
1516
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001517 return 0;
1518
1519nla_put_failure:
1520 return -EMSGSIZE;
1521}
1522
1523static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
1524 [IFLA_GRE_LINK] = { .type = NLA_U32 },
1525 [IFLA_GRE_IFLAGS] = { .type = NLA_U16 },
1526 [IFLA_GRE_OFLAGS] = { .type = NLA_U16 },
1527 [IFLA_GRE_IKEY] = { .type = NLA_U32 },
1528 [IFLA_GRE_OKEY] = { .type = NLA_U32 },
1529 [IFLA_GRE_LOCAL] = { .len = FIELD_SIZEOF(struct ipv6hdr, saddr) },
1530 [IFLA_GRE_REMOTE] = { .len = FIELD_SIZEOF(struct ipv6hdr, daddr) },
1531 [IFLA_GRE_TTL] = { .type = NLA_U8 },
1532 [IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
1533 [IFLA_GRE_FLOWINFO] = { .type = NLA_U32 },
1534 [IFLA_GRE_FLAGS] = { .type = NLA_U32 },
Tom Herbert1faf3d92016-05-18 09:06:19 -07001535 [IFLA_GRE_ENCAP_TYPE] = { .type = NLA_U16 },
1536 [IFLA_GRE_ENCAP_FLAGS] = { .type = NLA_U16 },
1537 [IFLA_GRE_ENCAP_SPORT] = { .type = NLA_U16 },
1538 [IFLA_GRE_ENCAP_DPORT] = { .type = NLA_U16 },
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001539};
1540
1541static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
1542 .kind = "ip6gre",
1543 .maxtype = IFLA_GRE_MAX,
1544 .policy = ip6gre_policy,
1545 .priv_size = sizeof(struct ip6_tnl),
1546 .setup = ip6gre_tunnel_setup,
1547 .validate = ip6gre_tunnel_validate,
1548 .newlink = ip6gre_newlink,
1549 .changelink = ip6gre_changelink,
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001550 .dellink = ip6gre_dellink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001551 .get_size = ip6gre_get_size,
1552 .fill_info = ip6gre_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01001553 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001554};
1555
1556static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
1557 .kind = "ip6gretap",
1558 .maxtype = IFLA_GRE_MAX,
1559 .policy = ip6gre_policy,
1560 .priv_size = sizeof(struct ip6_tnl),
1561 .setup = ip6gre_tap_setup,
1562 .validate = ip6gre_tap_validate,
1563 .newlink = ip6gre_newlink,
1564 .changelink = ip6gre_changelink,
1565 .get_size = ip6gre_get_size,
1566 .fill_info = ip6gre_fill_info,
Nicolas Dichtel3390e392015-01-20 15:15:43 +01001567 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001568};
1569
1570/*
1571 * And now the modules code and kernel interface.
1572 */
1573
1574static int __init ip6gre_init(void)
1575{
1576 int err;
1577
1578 pr_info("GRE over IPv6 tunneling driver\n");
1579
1580 err = register_pernet_device(&ip6gre_net_ops);
1581 if (err < 0)
1582 return err;
1583
1584 err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
1585 if (err < 0) {
1586 pr_info("%s: can't add protocol\n", __func__);
1587 goto add_proto_failed;
1588 }
1589
1590 err = rtnl_link_register(&ip6gre_link_ops);
1591 if (err < 0)
1592 goto rtnl_link_failed;
1593
1594 err = rtnl_link_register(&ip6gre_tap_ops);
1595 if (err < 0)
1596 goto tap_ops_failed;
1597
1598out:
1599 return err;
1600
1601tap_ops_failed:
1602 rtnl_link_unregister(&ip6gre_link_ops);
1603rtnl_link_failed:
1604 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1605add_proto_failed:
1606 unregister_pernet_device(&ip6gre_net_ops);
1607 goto out;
1608}
1609
1610static void __exit ip6gre_fini(void)
1611{
1612 rtnl_link_unregister(&ip6gre_tap_ops);
1613 rtnl_link_unregister(&ip6gre_link_ops);
1614 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1615 unregister_pernet_device(&ip6gre_net_ops);
1616}
1617
1618module_init(ip6gre_init);
1619module_exit(ip6gre_fini);
1620MODULE_LICENSE("GPL");
1621MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
1622MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
1623MODULE_ALIAS_RTNL_LINK("ip6gre");
Nicolas Dichtel5a4ee9a2014-09-24 11:03:00 +02001624MODULE_ALIAS_RTNL_LINK("ip6gretap");
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001625MODULE_ALIAS_NETDEV("ip6gre0");