blob: 21bd54fd9ba7fe372540ea47aa7f8edd460f98d6 [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
341 if (register_netdevice(dev) < 0)
342 goto failed_free;
343
Alexey Kodanevcc99c6d2018-01-18 20:51:12 +0300344 ip6gre_tnl_link_config(nt, 1);
345
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000346 /* Can use a lockless transmit, unless we generate output sequences */
Tom Herbertb45bd1d2016-05-09 17:12:12 -0700347 if (!(nt->parms.o_flags & TUNNEL_SEQ))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000348 dev->features |= NETIF_F_LLTX;
349
350 dev_hold(dev);
351 ip6gre_tunnel_link(ign, nt);
352 return nt;
353
354failed_free:
355 free_netdev(dev);
356 return NULL;
357}
358
359static void ip6gre_tunnel_uninit(struct net_device *dev)
360{
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200361 struct ip6_tnl *t = netdev_priv(dev);
362 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000363
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200364 ip6gre_tunnel_unlink(ign, t);
Paolo Abeni607f7252016-02-12 15:43:54 +0100365 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000366 dev_put(dev);
367}
368
369
370static void ip6gre_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Eric Dumazetae1768b2017-02-04 23:18:55 -0800371 u8 type, u8 code, int offset, __be32 info)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000372{
Eric Dumazetae1768b2017-02-04 23:18:55 -0800373 const struct gre_base_hdr *greh;
374 const struct ipv6hdr *ipv6h;
375 int grehlen = sizeof(*greh);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000376 struct ip6_tnl *t;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800377 int key_off = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000378 __be16 flags;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800379 __be32 key;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000380
Eric Dumazetae1768b2017-02-04 23:18:55 -0800381 if (!pskb_may_pull(skb, offset + grehlen))
382 return;
383 greh = (const struct gre_base_hdr *)(skb->data + offset);
384 flags = greh->flags;
385 if (flags & (GRE_VERSION | GRE_ROUTING))
386 return;
387 if (flags & GRE_CSUM)
388 grehlen += 4;
389 if (flags & GRE_KEY) {
390 key_off = grehlen + offset;
391 grehlen += 4;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000392 }
393
Eric Dumazetae1768b2017-02-04 23:18:55 -0800394 if (!pskb_may_pull(skb, offset + grehlen))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000395 return;
Eric Dumazetb87fb392012-08-19 03:47:30 +0000396 ipv6h = (const struct ipv6hdr *)skb->data;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800397 greh = (const struct gre_base_hdr *)(skb->data + offset);
398 key = key_off ? *(__be32 *)(skb->data + key_off) : 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000399
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000400 t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr,
Eric Dumazetae1768b2017-02-04 23:18:55 -0800401 key, greh->protocol);
Ian Morris63159f22015-03-29 14:00:04 +0100402 if (!t)
stephen hemminger0c5794a2012-09-24 18:12:24 +0000403 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000404
405 switch (type) {
406 __u32 teli;
407 struct ipv6_tlv_tnl_enc_lim *tel;
408 __u32 mtu;
409 case ICMPV6_DEST_UNREACH:
Matt Bennetta46496c2015-09-23 16:58:31 +1200410 net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
411 t->parms.name);
Xin Long6d428bc2017-10-26 19:23:27 +0800412 if (code != ICMPV6_PORT_UNREACH)
413 break;
414 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000415 case ICMPV6_TIME_EXCEED:
416 if (code == ICMPV6_EXC_HOPLIMIT) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200417 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
418 t->parms.name);
Xin Long6d428bc2017-10-26 19:23:27 +0800419 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000420 }
Xin Long6d428bc2017-10-26 19:23:27 +0800421 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000422 case ICMPV6_PARAMPROB:
423 teli = 0;
424 if (code == ICMPV6_HDR_FIELD)
425 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
426
Sabrina Dubrocad1e158e2015-02-04 15:25:09 +0100427 if (teli && teli == be32_to_cpu(info) - 2) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000428 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
429 if (tel->encap_limit == 0) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200430 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
431 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000432 }
433 } else {
Matt Bennetta46496c2015-09-23 16:58:31 +1200434 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
435 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000436 }
Xin Long6d428bc2017-10-26 19:23:27 +0800437 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000438 case ICMPV6_PKT_TOOBIG:
Xin Longca7d8a32017-09-05 17:26:33 +0800439 mtu = be32_to_cpu(info) - offset - t->tun_hlen;
440 if (t->dev->type == ARPHRD_ETHER)
441 mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000442 if (mtu < IPV6_MIN_MTU)
443 mtu = IPV6_MIN_MTU;
444 t->dev->mtu = mtu;
Xin Long6d428bc2017-10-26 19:23:27 +0800445 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000446 }
447
448 if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
449 t->err_count++;
450 else
451 t->err_count = 1;
452 t->err_time = jiffies;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000453}
454
Tom Herbert308edfdf2016-04-29 17:12:17 -0700455static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000456{
457 const struct ipv6hdr *ipv6h;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000458 struct ip6_tnl *tunnel;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000459
460 ipv6h = ipv6_hdr(skb);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000461 tunnel = ip6gre_tunnel_lookup(skb->dev,
Tom Herbert308edfdf2016-04-29 17:12:17 -0700462 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
463 tpi->proto);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000464 if (tunnel) {
Alexey Kodanev2388d522017-11-17 19:16:17 +0300465 ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000466
Tom Herbert308edfdf2016-04-29 17:12:17 -0700467 return PACKET_RCVD;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000468 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000469
Tom Herbert308edfdf2016-04-29 17:12:17 -0700470 return PACKET_REJECT;
471}
472
473static int gre_rcv(struct sk_buff *skb)
474{
475 struct tnl_ptk_info tpi;
476 bool csum_err = false;
477 int hdr_len;
478
Eric Dumazete5826152016-06-15 06:24:00 -0700479 hdr_len = gre_parse_header(skb, &tpi, &csum_err, htons(ETH_P_IPV6), 0);
Jiri Bencf132ae72016-05-03 15:00:21 +0200480 if (hdr_len < 0)
Tom Herbert308edfdf2016-04-29 17:12:17 -0700481 goto drop;
482
483 if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false))
484 goto drop;
485
486 if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD)
487 return 0;
488
489 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000490drop:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000491 kfree_skb(skb);
492 return 0;
493}
494
495struct ipv6_tel_txoption {
496 struct ipv6_txoptions ops;
497 __u8 dst_opt[8];
498};
499
Tom Herbertb05229f2016-04-29 17:12:21 -0700500static int gre_handle_offloads(struct sk_buff *skb, bool csum)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000501{
Tom Herbertb05229f2016-04-29 17:12:21 -0700502 return iptunnel_handle_offloads(skb,
503 csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000504}
505
Tom Herbertb05229f2016-04-29 17:12:21 -0700506static netdev_tx_t __gre6_xmit(struct sk_buff *skb,
507 struct net_device *dev, __u8 dsfield,
508 struct flowi6 *fl6, int encap_limit,
509 __u32 *pmtu, __be16 proto)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000510{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000511 struct ip6_tnl *tunnel = netdev_priv(dev);
Xin Longd6b1aeb2017-10-26 19:27:17 +0800512 struct dst_entry *dst = skb_dst(skb);
513 __be16 protocol;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000514
515 if (dev->type == ARPHRD_ETHER)
516 IPCB(skb)->flags = 0;
517
Tom Herbertb05229f2016-04-29 17:12:21 -0700518 if (dev->header_ops && dev->type == ARPHRD_IP6GRE)
519 fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr;
520 else
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000521 fl6->daddr = tunnel->parms.raddr;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000522
Tom Herbertb05229f2016-04-29 17:12:21 -0700523 if (tunnel->parms.o_flags & TUNNEL_SEQ)
524 tunnel->o_seqno++;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000525
Tom Herbertb05229f2016-04-29 17:12:21 -0700526 /* Push GRE header. */
Xin Longd6b1aeb2017-10-26 19:27:17 +0800527 protocol = (dev->type == ARPHRD_ETHER) ? htons(ETH_P_TEB) : proto;
Tom Herbertb05229f2016-04-29 17:12:21 -0700528 gre_build_header(skb, tunnel->tun_hlen, tunnel->parms.o_flags,
529 protocol, tunnel->parms.o_key, htonl(tunnel->o_seqno));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000530
Xin Longd6b1aeb2017-10-26 19:27:17 +0800531 /* TooBig packet may have updated dst->dev's mtu */
532 if (dst && dst_mtu(dst) > dst->dev->mtu)
533 dst->ops->update_pmtu(dst, NULL, skb, dst->dev->mtu);
534
Tom Herbertb05229f2016-04-29 17:12:21 -0700535 return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu,
536 NEXTHDR_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000537}
538
539static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev)
540{
541 struct ip6_tnl *t = netdev_priv(dev);
542 const struct iphdr *iph = ip_hdr(skb);
543 int encap_limit = -1;
544 struct flowi6 fl6;
545 __u8 dsfield;
546 __u32 mtu;
547 int err;
548
Bernie Harris5146d1f2016-02-22 12:58:05 +1300549 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
550
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000551 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
552 encap_limit = t->parms.encap_limit;
553
554 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000555
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000556 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
Peter Dawsonadfe95f2017-05-26 06:35:18 +1000557 dsfield = ipv4_get_dsfield(iph);
558 else
559 dsfield = ip6_tclass(t->parms.flowinfo);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000560 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
561 fl6.flowi6_mark = skb->mark;
562
Lorenzo Colitti50442922016-11-04 02:23:43 +0900563 fl6.flowi6_uid = sock_net_uid(dev_net(dev), NULL);
564
Tom Herbertb05229f2016-04-29 17:12:21 -0700565 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
566 if (err)
567 return -1;
568
569 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
570 skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000571 if (err != 0) {
572 /* XXX: send ICMP error even if DF is not set. */
573 if (err == -EMSGSIZE)
574 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
575 htonl(mtu));
576 return -1;
577 }
578
579 return 0;
580}
581
582static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev)
583{
584 struct ip6_tnl *t = netdev_priv(dev);
585 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
586 int encap_limit = -1;
587 __u16 offset;
588 struct flowi6 fl6;
589 __u8 dsfield;
590 __u32 mtu;
591 int err;
592
593 if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
594 return -1;
595
596 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Eric Dumazetb07bf232017-01-23 16:43:05 -0800597 /* ip6_tnl_parse_tlv_enc_lim() might have reallocated skb->head */
598 ipv6h = ipv6_hdr(skb);
599
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000600 if (offset > 0) {
601 struct ipv6_tlv_tnl_enc_lim *tel;
602 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
603 if (tel->encap_limit == 0) {
604 icmpv6_send(skb, ICMPV6_PARAMPROB,
605 ICMPV6_HDR_FIELD, offset + 2);
606 return -1;
607 }
608 encap_limit = tel->encap_limit - 1;
609 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
610 encap_limit = t->parms.encap_limit;
611
612 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000613
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000614 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
Peter Dawsonadfe95f2017-05-26 06:35:18 +1000615 dsfield = ipv6_get_dsfield(ipv6h);
616 else
617 dsfield = ip6_tclass(t->parms.flowinfo);
618
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000619 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +0100620 fl6.flowlabel |= ip6_flowlabel(ipv6h);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000621 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
622 fl6.flowi6_mark = skb->mark;
623
Lorenzo Colitti50442922016-11-04 02:23:43 +0900624 fl6.flowi6_uid = sock_net_uid(dev_net(dev), NULL);
625
Tom Herbertb05229f2016-04-29 17:12:21 -0700626 if (gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM)))
627 return -1;
628
629 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit,
630 &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000631 if (err != 0) {
632 if (err == -EMSGSIZE)
633 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
634 return -1;
635 }
636
637 return 0;
638}
639
640/**
641 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
642 * @t: the outgoing tunnel device
643 * @hdr: IPv6 header from the incoming packet
644 *
645 * Description:
646 * Avoid trivial tunneling loop by checking that tunnel exit-point
647 * doesn't match source of incoming packet.
648 *
649 * Return:
650 * 1 if conflict,
651 * 0 else
652 **/
653
654static inline bool ip6gre_tnl_addr_conflict(const struct ip6_tnl *t,
655 const struct ipv6hdr *hdr)
656{
657 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
658}
659
660static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev)
661{
662 struct ip6_tnl *t = netdev_priv(dev);
663 int encap_limit = -1;
664 struct flowi6 fl6;
665 __u32 mtu;
666 int err;
667
668 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
669 encap_limit = t->parms.encap_limit;
670
671 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000672
Tom Herbertb05229f2016-04-29 17:12:21 -0700673 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
674 if (err)
675 return err;
676
677 err = __gre6_xmit(skb, dev, 0, &fl6, encap_limit, &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000678
679 return err;
680}
681
682static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
683 struct net_device *dev)
684{
685 struct ip6_tnl *t = netdev_priv(dev);
686 struct net_device_stats *stats = &t->dev->stats;
687 int ret;
688
Steffen Klassertd5005142014-11-05 08:02:48 +0100689 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
Tommi Rantala41ab3e32013-02-06 03:24:02 +0000690 goto tx_err;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000691
692 switch (skb->protocol) {
693 case htons(ETH_P_IP):
694 ret = ip6gre_xmit_ipv4(skb, dev);
695 break;
696 case htons(ETH_P_IPV6):
697 ret = ip6gre_xmit_ipv6(skb, dev);
698 break;
699 default:
700 ret = ip6gre_xmit_other(skb, dev);
701 break;
702 }
703
704 if (ret < 0)
705 goto tx_err;
706
707 return NETDEV_TX_OK;
708
709tx_err:
710 stats->tx_errors++;
711 stats->tx_dropped++;
712 kfree_skb(skb);
713 return NETDEV_TX_OK;
714}
715
716static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
717{
718 struct net_device *dev = t->dev;
719 struct __ip6_tnl_parm *p = &t->parms;
720 struct flowi6 *fl6 = &t->fl.u.ip6;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700721 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000722
723 if (dev->type != ARPHRD_ETHER) {
724 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
725 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
726 }
727
728 /* Set up flowi template */
729 fl6->saddr = p->laddr;
730 fl6->daddr = p->raddr;
731 fl6->flowi6_oif = p->link;
732 fl6->flowlabel = 0;
Haishuang Yan252f3f52016-05-21 18:17:35 +0800733 fl6->flowi6_proto = IPPROTO_GRE;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000734
735 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
736 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
737 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
738 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
739
740 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
741 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
742
743 if (p->flags&IP6_TNL_F_CAP_XMIT &&
744 p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER)
745 dev->flags |= IFF_POINTOPOINT;
746 else
747 dev->flags &= ~IFF_POINTOPOINT;
748
Tom Herbertdb2ec952016-05-09 17:12:08 -0700749 t->tun_hlen = gre_calc_hlen(t->parms.o_flags);
750
Tom Herbert1faf3d92016-05-18 09:06:19 -0700751 t->hlen = t->encap_hlen + t->tun_hlen;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700752
753 t_hlen = t->hlen + sizeof(struct ipv6hdr);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000754
755 if (p->flags & IP6_TNL_F_CAP_XMIT) {
756 int strict = (ipv6_addr_type(&p->raddr) &
757 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
758
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200759 struct rt6_info *rt = rt6_lookup(t->net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000760 &p->raddr, &p->laddr,
761 p->link, strict);
762
Ian Morris63159f22015-03-29 14:00:04 +0100763 if (!rt)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000764 return;
765
766 if (rt->dst.dev) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700767 dev->hard_header_len = rt->dst.dev->hard_header_len +
768 t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000769
770 if (set_mtu) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700771 dev->mtu = rt->dst.dev->mtu - t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000772 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
773 dev->mtu -= 8;
Alexander Duycka9e242c2016-04-14 15:33:45 -0400774 if (dev->type == ARPHRD_ETHER)
775 dev->mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000776
777 if (dev->mtu < IPV6_MIN_MTU)
778 dev->mtu = IPV6_MIN_MTU;
779 }
780 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000781 ip6_rt_put(rt);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000782 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000783}
784
785static int ip6gre_tnl_change(struct ip6_tnl *t,
786 const struct __ip6_tnl_parm *p, int set_mtu)
787{
788 t->parms.laddr = p->laddr;
789 t->parms.raddr = p->raddr;
790 t->parms.flags = p->flags;
791 t->parms.hop_limit = p->hop_limit;
792 t->parms.encap_limit = p->encap_limit;
793 t->parms.flowinfo = p->flowinfo;
794 t->parms.link = p->link;
795 t->parms.proto = p->proto;
796 t->parms.i_key = p->i_key;
797 t->parms.o_key = p->o_key;
798 t->parms.i_flags = p->i_flags;
799 t->parms.o_flags = p->o_flags;
Paolo Abeni607f7252016-02-12 15:43:54 +0100800 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000801 ip6gre_tnl_link_config(t, set_mtu);
802 return 0;
803}
804
805static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
806 const struct ip6_tnl_parm2 *u)
807{
808 p->laddr = u->laddr;
809 p->raddr = u->raddr;
810 p->flags = u->flags;
811 p->hop_limit = u->hop_limit;
812 p->encap_limit = u->encap_limit;
813 p->flowinfo = u->flowinfo;
814 p->link = u->link;
815 p->i_key = u->i_key;
816 p->o_key = u->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700817 p->i_flags = gre_flags_to_tnl_flags(u->i_flags);
818 p->o_flags = gre_flags_to_tnl_flags(u->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000819 memcpy(p->name, u->name, sizeof(u->name));
820}
821
822static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
823 const struct __ip6_tnl_parm *p)
824{
825 u->proto = IPPROTO_GRE;
826 u->laddr = p->laddr;
827 u->raddr = p->raddr;
828 u->flags = p->flags;
829 u->hop_limit = p->hop_limit;
830 u->encap_limit = p->encap_limit;
831 u->flowinfo = p->flowinfo;
832 u->link = p->link;
833 u->i_key = p->i_key;
834 u->o_key = p->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700835 u->i_flags = gre_tnl_flags_to_gre_flags(p->i_flags);
836 u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000837 memcpy(u->name, p->name, sizeof(u->name));
838}
839
840static int ip6gre_tunnel_ioctl(struct net_device *dev,
841 struct ifreq *ifr, int cmd)
842{
843 int err = 0;
844 struct ip6_tnl_parm2 p;
845 struct __ip6_tnl_parm p1;
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200846 struct ip6_tnl *t = netdev_priv(dev);
847 struct net *net = t->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000848 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
849
Tom Herbert308edfdf2016-04-29 17:12:17 -0700850 memset(&p1, 0, sizeof(p1));
851
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000852 switch (cmd) {
853 case SIOCGETTUNNEL:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000854 if (dev == ign->fb_tunnel_dev) {
855 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
856 err = -EFAULT;
857 break;
858 }
859 ip6gre_tnl_parm_from_user(&p1, &p);
860 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100861 if (!t)
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200862 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000863 }
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000864 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000865 ip6gre_tnl_parm_to_user(&p, &t->parms);
866 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
867 err = -EFAULT;
868 break;
869
870 case SIOCADDTUNNEL:
871 case SIOCCHGTUNNEL:
872 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000873 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000874 goto done;
875
876 err = -EFAULT;
877 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
878 goto done;
879
880 err = -EINVAL;
881 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
882 goto done;
883
884 if (!(p.i_flags&GRE_KEY))
885 p.i_key = 0;
886 if (!(p.o_flags&GRE_KEY))
887 p.o_key = 0;
888
889 ip6gre_tnl_parm_from_user(&p1, &p);
890 t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
891
892 if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Ian Morris53b24b82015-03-29 14:00:05 +0100893 if (t) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000894 if (t->dev != dev) {
895 err = -EEXIST;
896 break;
897 }
898 } else {
899 t = netdev_priv(dev);
900
901 ip6gre_tunnel_unlink(ign, t);
902 synchronize_net();
903 ip6gre_tnl_change(t, &p1, 1);
904 ip6gre_tunnel_link(ign, t);
905 netdev_state_change(dev);
906 }
907 }
908
909 if (t) {
910 err = 0;
911
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000912 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000913 ip6gre_tnl_parm_to_user(&p, &t->parms);
914 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
915 err = -EFAULT;
916 } else
917 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
918 break;
919
920 case SIOCDELTUNNEL:
921 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000922 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000923 goto done;
924
925 if (dev == ign->fb_tunnel_dev) {
926 err = -EFAULT;
927 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
928 goto done;
929 err = -ENOENT;
930 ip6gre_tnl_parm_from_user(&p1, &p);
931 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100932 if (!t)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000933 goto done;
934 err = -EPERM;
935 if (t == netdev_priv(ign->fb_tunnel_dev))
936 goto done;
937 dev = t->dev;
938 }
939 unregister_netdevice(dev);
940 err = 0;
941 break;
942
943 default:
944 err = -EINVAL;
945 }
946
947done:
948 return err;
949}
950
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000951static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
Xin Longe814bae2017-09-15 12:00:07 +0800952 unsigned short type, const void *daddr,
953 const void *saddr, unsigned int len)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000954{
955 struct ip6_tnl *t = netdev_priv(dev);
Xin Longe814bae2017-09-15 12:00:07 +0800956 struct ipv6hdr *ipv6h;
957 __be16 *p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000958
Xin Longe814bae2017-09-15 12:00:07 +0800959 ipv6h = (struct ipv6hdr *)skb_push(skb, t->hlen + sizeof(*ipv6h));
960 ip6_flow_hdr(ipv6h, 0, ip6_make_flowlabel(dev_net(dev), skb,
961 t->fl.u.ip6.flowlabel,
962 true, &t->fl.u.ip6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000963 ipv6h->hop_limit = t->parms.hop_limit;
964 ipv6h->nexthdr = NEXTHDR_GRE;
965 ipv6h->saddr = t->parms.laddr;
966 ipv6h->daddr = t->parms.raddr;
967
Xin Longe814bae2017-09-15 12:00:07 +0800968 p = (__be16 *)(ipv6h + 1);
969 p[0] = t->parms.o_flags;
970 p[1] = htons(type);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000971
972 /*
973 * Set the source hardware address.
974 */
975
976 if (saddr)
977 memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
978 if (daddr)
979 memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
980 if (!ipv6_addr_any(&ipv6h->daddr))
981 return t->hlen;
982
983 return -t->hlen;
984}
985
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000986static const struct header_ops ip6gre_header_ops = {
987 .create = ip6gre_header,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000988};
989
990static const struct net_device_ops ip6gre_netdev_ops = {
991 .ndo_init = ip6gre_tunnel_init,
992 .ndo_uninit = ip6gre_tunnel_uninit,
993 .ndo_start_xmit = ip6gre_tunnel_xmit,
994 .ndo_do_ioctl = ip6gre_tunnel_ioctl,
Tom Herbertb05229f2016-04-29 17:12:21 -0700995 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +0000996 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +0200997 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000998};
999
1000static void ip6gre_dev_free(struct net_device *dev)
1001{
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001002 struct ip6_tnl *t = netdev_priv(dev);
1003
Paolo Abeni607f7252016-02-12 15:43:54 +01001004 dst_cache_destroy(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001005 free_percpu(dev->tstats);
1006 free_netdev(dev);
1007}
1008
1009static void ip6gre_tunnel_setup(struct net_device *dev)
1010{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001011 dev->netdev_ops = &ip6gre_netdev_ops;
1012 dev->destructor = ip6gre_dev_free;
1013
1014 dev->type = ARPHRD_IP6GRE;
Tom Herbertb05229f2016-04-29 17:12:21 -07001015
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001016 dev->flags |= IFF_NOARP;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001017 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -07001018 netif_keep_dst(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001019}
1020
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001021static int ip6gre_tunnel_init_common(struct net_device *dev)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001022{
1023 struct ip6_tnl *tunnel;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001024 int ret;
Tom Herbertb05229f2016-04-29 17:12:21 -07001025 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001026
1027 tunnel = netdev_priv(dev);
1028
1029 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001030 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001031 strcpy(tunnel->parms.name, dev->name);
1032
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001033 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1034 if (!dev->tstats)
1035 return -ENOMEM;
1036
Paolo Abeni607f7252016-02-12 15:43:54 +01001037 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001038 if (ret) {
1039 free_percpu(dev->tstats);
1040 dev->tstats = NULL;
1041 return ret;
1042 }
1043
Tom Herbertb05229f2016-04-29 17:12:21 -07001044 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001045 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen;
Tom Herbertb05229f2016-04-29 17:12:21 -07001046 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1047
Tom Herbertdb2ec952016-05-09 17:12:08 -07001048 dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1049 dev->mtu = ETH_DATA_LEN - t_hlen;
Haishuang Yan1b227e52016-05-21 18:17:34 +08001050 if (dev->type == ARPHRD_ETHER)
1051 dev->mtu -= ETH_HLEN;
Tom Herbertb05229f2016-04-29 17:12:21 -07001052 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1053 dev->mtu -= 8;
1054
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001055 return 0;
1056}
1057
1058static int ip6gre_tunnel_init(struct net_device *dev)
1059{
1060 struct ip6_tnl *tunnel;
1061 int ret;
1062
1063 ret = ip6gre_tunnel_init_common(dev);
1064 if (ret)
1065 return ret;
1066
1067 tunnel = netdev_priv(dev);
1068
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001069 memcpy(dev->dev_addr, &tunnel->parms.laddr, sizeof(struct in6_addr));
1070 memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1071
1072 if (ipv6_addr_any(&tunnel->parms.raddr))
1073 dev->header_ops = &ip6gre_header_ops;
1074
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001075 return 0;
1076}
1077
1078static void ip6gre_fb_tunnel_init(struct net_device *dev)
1079{
1080 struct ip6_tnl *tunnel = netdev_priv(dev);
1081
1082 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001083 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001084 strcpy(tunnel->parms.name, dev->name);
1085
1086 tunnel->hlen = sizeof(struct ipv6hdr) + 4;
1087
1088 dev_hold(dev);
1089}
1090
1091
1092static struct inet6_protocol ip6gre_protocol __read_mostly = {
Tom Herbert308edfdf2016-04-29 17:12:17 -07001093 .handler = gre_rcv,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001094 .err_handler = ip6gre_err,
1095 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1096};
1097
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001098static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001099{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001100 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1101 struct net_device *dev, *aux;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001102 int prio;
1103
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001104 for_each_netdev_safe(net, dev, aux)
1105 if (dev->rtnl_link_ops == &ip6gre_link_ops ||
1106 dev->rtnl_link_ops == &ip6gre_tap_ops)
1107 unregister_netdevice_queue(dev, head);
1108
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001109 for (prio = 0; prio < 4; prio++) {
1110 int h;
Jiri Kosinae87a8f22016-08-10 11:03:35 +02001111 for (h = 0; h < IP6_GRE_HASH_SIZE; h++) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001112 struct ip6_tnl *t;
1113
1114 t = rtnl_dereference(ign->tunnels[prio][h]);
1115
Ian Morris53b24b82015-03-29 14:00:05 +01001116 while (t) {
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001117 /* If dev is in the same netns, it has already
1118 * been added to the list by the previous loop.
1119 */
1120 if (!net_eq(dev_net(t->dev), net))
1121 unregister_netdevice_queue(t->dev,
1122 head);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001123 t = rtnl_dereference(t->next);
1124 }
1125 }
1126 }
1127}
1128
1129static int __net_init ip6gre_init_net(struct net *net)
1130{
1131 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1132 int err;
1133
1134 ign->fb_tunnel_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001135 NET_NAME_UNKNOWN,
1136 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001137 if (!ign->fb_tunnel_dev) {
1138 err = -ENOMEM;
1139 goto err_alloc_dev;
1140 }
1141 dev_net_set(ign->fb_tunnel_dev, net);
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001142 /* FB netdevice is special: we have one, and only one per netns.
1143 * Allowing to move it to another netns is clearly unsafe.
1144 */
1145 ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1146
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001147
1148 ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1149 ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1150
1151 err = register_netdev(ign->fb_tunnel_dev);
1152 if (err)
1153 goto err_reg_dev;
1154
1155 rcu_assign_pointer(ign->tunnels_wc[0],
1156 netdev_priv(ign->fb_tunnel_dev));
1157 return 0;
1158
1159err_reg_dev:
1160 ip6gre_dev_free(ign->fb_tunnel_dev);
1161err_alloc_dev:
1162 return err;
1163}
1164
1165static void __net_exit ip6gre_exit_net(struct net *net)
1166{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001167 LIST_HEAD(list);
1168
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001169 rtnl_lock();
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001170 ip6gre_destroy_tunnels(net, &list);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001171 unregister_netdevice_many(&list);
1172 rtnl_unlock();
1173}
1174
1175static struct pernet_operations ip6gre_net_ops = {
1176 .init = ip6gre_init_net,
1177 .exit = ip6gre_exit_net,
1178 .id = &ip6gre_net_id,
1179 .size = sizeof(struct ip6gre_net),
1180};
1181
1182static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
1183{
1184 __be16 flags;
1185
1186 if (!data)
1187 return 0;
1188
1189 flags = 0;
1190 if (data[IFLA_GRE_IFLAGS])
1191 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1192 if (data[IFLA_GRE_OFLAGS])
1193 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1194 if (flags & (GRE_VERSION|GRE_ROUTING))
1195 return -EINVAL;
1196
1197 return 0;
1198}
1199
1200static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[])
1201{
1202 struct in6_addr daddr;
1203
1204 if (tb[IFLA_ADDRESS]) {
1205 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1206 return -EINVAL;
1207 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1208 return -EADDRNOTAVAIL;
1209 }
1210
1211 if (!data)
1212 goto out;
1213
1214 if (data[IFLA_GRE_REMOTE]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02001215 daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001216 if (ipv6_addr_any(&daddr))
1217 return -EINVAL;
1218 }
1219
1220out:
1221 return ip6gre_tunnel_validate(tb, data);
1222}
1223
1224
1225static void ip6gre_netlink_parms(struct nlattr *data[],
1226 struct __ip6_tnl_parm *parms)
1227{
1228 memset(parms, 0, sizeof(*parms));
1229
1230 if (!data)
1231 return;
1232
1233 if (data[IFLA_GRE_LINK])
1234 parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1235
1236 if (data[IFLA_GRE_IFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001237 parms->i_flags = gre_flags_to_tnl_flags(
1238 nla_get_be16(data[IFLA_GRE_IFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001239
1240 if (data[IFLA_GRE_OFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001241 parms->o_flags = gre_flags_to_tnl_flags(
1242 nla_get_be16(data[IFLA_GRE_OFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001243
1244 if (data[IFLA_GRE_IKEY])
1245 parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1246
1247 if (data[IFLA_GRE_OKEY])
1248 parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1249
1250 if (data[IFLA_GRE_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +02001251 parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001252
1253 if (data[IFLA_GRE_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +02001254 parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001255
1256 if (data[IFLA_GRE_TTL])
1257 parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1258
1259 if (data[IFLA_GRE_ENCAP_LIMIT])
1260 parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1261
1262 if (data[IFLA_GRE_FLOWINFO])
Lance Richardsonc2675de2016-09-24 14:01:04 -04001263 parms->flowinfo = nla_get_be32(data[IFLA_GRE_FLOWINFO]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001264
1265 if (data[IFLA_GRE_FLAGS])
1266 parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
1267}
1268
1269static int ip6gre_tap_init(struct net_device *dev)
1270{
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001271 int ret;
1272
1273 ret = ip6gre_tunnel_init_common(dev);
1274 if (ret)
1275 return ret;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001276
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001277 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
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
Alexander Duyckac4eb002016-04-14 15:33:51 -04001374 dev->features |= GRE6_FEATURES;
1375 dev->hw_features |= GRE6_FEATURES;
1376
Tom Herbertb45bd1d2016-05-09 17:12:12 -07001377 if (!(nt->parms.o_flags & TUNNEL_SEQ)) {
Alexander Duyck6a553682016-05-18 10:44:47 -07001378 /* TCP offload with GRE SEQ is not supported, nor
1379 * can we support 2 levels of outer headers requiring
1380 * an update.
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001381 */
Alexander Duyck6a553682016-05-18 10:44:47 -07001382 if (!(nt->parms.o_flags & TUNNEL_CSUM) ||
1383 (nt->encap.type == TUNNEL_ENCAP_NONE)) {
1384 dev->features |= NETIF_F_GSO_SOFTWARE;
1385 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1386 }
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001387
1388 /* Can use a lockless transmit, unless we generate
1389 * output sequences
1390 */
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001391 dev->features |= NETIF_F_LLTX;
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001392 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001393
1394 err = register_netdevice(dev);
1395 if (err)
1396 goto out;
1397
Alexey Kodanevcc99c6d2018-01-18 20:51:12 +03001398 ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
1399
1400 if (tb[IFLA_MTU])
1401 ip6_tnl_change_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1402
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001403 dev_hold(dev);
1404 ip6gre_tunnel_link(ign, nt);
1405
1406out:
1407 return err;
1408}
1409
1410static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
1411 struct nlattr *data[])
1412{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001413 struct ip6_tnl *t, *nt = netdev_priv(dev);
1414 struct net *net = nt->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001415 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1416 struct __ip6_tnl_parm p;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001417 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001418
1419 if (dev == ign->fb_tunnel_dev)
1420 return -EINVAL;
1421
Tom Herbert1faf3d92016-05-18 09:06:19 -07001422 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1423 int err = ip6_tnl_encap_setup(nt, &ipencap);
1424
1425 if (err < 0)
1426 return err;
1427 }
1428
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001429 ip6gre_netlink_parms(data, &p);
1430
1431 t = ip6gre_tunnel_locate(net, &p, 0);
1432
1433 if (t) {
1434 if (t->dev != dev)
1435 return -EEXIST;
1436 } else {
1437 t = nt;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001438 }
1439
Nicolas Dichtel6a61d4d2015-12-03 17:21:50 +01001440 ip6gre_tunnel_unlink(ign, t);
1441 ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
1442 ip6gre_tunnel_link(ign, t);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001443 return 0;
1444}
1445
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001446static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
1447{
1448 struct net *net = dev_net(dev);
1449 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1450
1451 if (dev != ign->fb_tunnel_dev)
1452 unregister_netdevice_queue(dev, head);
1453}
1454
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001455static size_t ip6gre_get_size(const struct net_device *dev)
1456{
1457 return
1458 /* IFLA_GRE_LINK */
1459 nla_total_size(4) +
1460 /* IFLA_GRE_IFLAGS */
1461 nla_total_size(2) +
1462 /* IFLA_GRE_OFLAGS */
1463 nla_total_size(2) +
1464 /* IFLA_GRE_IKEY */
1465 nla_total_size(4) +
1466 /* IFLA_GRE_OKEY */
1467 nla_total_size(4) +
1468 /* IFLA_GRE_LOCAL */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001469 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001470 /* IFLA_GRE_REMOTE */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001471 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001472 /* IFLA_GRE_TTL */
1473 nla_total_size(1) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001474 /* IFLA_GRE_ENCAP_LIMIT */
1475 nla_total_size(1) +
1476 /* IFLA_GRE_FLOWINFO */
1477 nla_total_size(4) +
1478 /* IFLA_GRE_FLAGS */
1479 nla_total_size(4) +
Tom Herbert1faf3d92016-05-18 09:06:19 -07001480 /* IFLA_GRE_ENCAP_TYPE */
1481 nla_total_size(2) +
1482 /* IFLA_GRE_ENCAP_FLAGS */
1483 nla_total_size(2) +
1484 /* IFLA_GRE_ENCAP_SPORT */
1485 nla_total_size(2) +
1486 /* IFLA_GRE_ENCAP_DPORT */
1487 nla_total_size(2) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001488 0;
1489}
1490
1491static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
1492{
1493 struct ip6_tnl *t = netdev_priv(dev);
1494 struct __ip6_tnl_parm *p = &t->parms;
1495
1496 if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001497 nla_put_be16(skb, IFLA_GRE_IFLAGS,
1498 gre_tnl_flags_to_gre_flags(p->i_flags)) ||
1499 nla_put_be16(skb, IFLA_GRE_OFLAGS,
1500 gre_tnl_flags_to_gre_flags(p->o_flags)) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001501 nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
1502 nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
Jiri Benc930345e2015-03-29 16:59:25 +02001503 nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
1504 nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001505 nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001506 nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
1507 nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
1508 nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags))
1509 goto nla_put_failure;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001510
1511 if (nla_put_u16(skb, IFLA_GRE_ENCAP_TYPE,
1512 t->encap.type) ||
1513 nla_put_be16(skb, IFLA_GRE_ENCAP_SPORT,
1514 t->encap.sport) ||
1515 nla_put_be16(skb, IFLA_GRE_ENCAP_DPORT,
1516 t->encap.dport) ||
1517 nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS,
1518 t->encap.flags))
1519 goto nla_put_failure;
1520
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001521 return 0;
1522
1523nla_put_failure:
1524 return -EMSGSIZE;
1525}
1526
1527static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
1528 [IFLA_GRE_LINK] = { .type = NLA_U32 },
1529 [IFLA_GRE_IFLAGS] = { .type = NLA_U16 },
1530 [IFLA_GRE_OFLAGS] = { .type = NLA_U16 },
1531 [IFLA_GRE_IKEY] = { .type = NLA_U32 },
1532 [IFLA_GRE_OKEY] = { .type = NLA_U32 },
1533 [IFLA_GRE_LOCAL] = { .len = FIELD_SIZEOF(struct ipv6hdr, saddr) },
1534 [IFLA_GRE_REMOTE] = { .len = FIELD_SIZEOF(struct ipv6hdr, daddr) },
1535 [IFLA_GRE_TTL] = { .type = NLA_U8 },
1536 [IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
1537 [IFLA_GRE_FLOWINFO] = { .type = NLA_U32 },
1538 [IFLA_GRE_FLAGS] = { .type = NLA_U32 },
Tom Herbert1faf3d92016-05-18 09:06:19 -07001539 [IFLA_GRE_ENCAP_TYPE] = { .type = NLA_U16 },
1540 [IFLA_GRE_ENCAP_FLAGS] = { .type = NLA_U16 },
1541 [IFLA_GRE_ENCAP_SPORT] = { .type = NLA_U16 },
1542 [IFLA_GRE_ENCAP_DPORT] = { .type = NLA_U16 },
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001543};
1544
1545static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
1546 .kind = "ip6gre",
1547 .maxtype = IFLA_GRE_MAX,
1548 .policy = ip6gre_policy,
1549 .priv_size = sizeof(struct ip6_tnl),
1550 .setup = ip6gre_tunnel_setup,
1551 .validate = ip6gre_tunnel_validate,
1552 .newlink = ip6gre_newlink,
1553 .changelink = ip6gre_changelink,
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001554 .dellink = ip6gre_dellink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001555 .get_size = ip6gre_get_size,
1556 .fill_info = ip6gre_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01001557 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001558};
1559
1560static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
1561 .kind = "ip6gretap",
1562 .maxtype = IFLA_GRE_MAX,
1563 .policy = ip6gre_policy,
1564 .priv_size = sizeof(struct ip6_tnl),
1565 .setup = ip6gre_tap_setup,
1566 .validate = ip6gre_tap_validate,
1567 .newlink = ip6gre_newlink,
1568 .changelink = ip6gre_changelink,
1569 .get_size = ip6gre_get_size,
1570 .fill_info = ip6gre_fill_info,
Nicolas Dichtel3390e392015-01-20 15:15:43 +01001571 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001572};
1573
1574/*
1575 * And now the modules code and kernel interface.
1576 */
1577
1578static int __init ip6gre_init(void)
1579{
1580 int err;
1581
1582 pr_info("GRE over IPv6 tunneling driver\n");
1583
1584 err = register_pernet_device(&ip6gre_net_ops);
1585 if (err < 0)
1586 return err;
1587
1588 err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
1589 if (err < 0) {
1590 pr_info("%s: can't add protocol\n", __func__);
1591 goto add_proto_failed;
1592 }
1593
1594 err = rtnl_link_register(&ip6gre_link_ops);
1595 if (err < 0)
1596 goto rtnl_link_failed;
1597
1598 err = rtnl_link_register(&ip6gre_tap_ops);
1599 if (err < 0)
1600 goto tap_ops_failed;
1601
1602out:
1603 return err;
1604
1605tap_ops_failed:
1606 rtnl_link_unregister(&ip6gre_link_ops);
1607rtnl_link_failed:
1608 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1609add_proto_failed:
1610 unregister_pernet_device(&ip6gre_net_ops);
1611 goto out;
1612}
1613
1614static void __exit ip6gre_fini(void)
1615{
1616 rtnl_link_unregister(&ip6gre_tap_ops);
1617 rtnl_link_unregister(&ip6gre_link_ops);
1618 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1619 unregister_pernet_device(&ip6gre_net_ops);
1620}
1621
1622module_init(ip6gre_init);
1623module_exit(ip6gre_fini);
1624MODULE_LICENSE("GPL");
1625MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
1626MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
1627MODULE_ALIAS_RTNL_LINK("ip6gre");
Nicolas Dichtel5a4ee9a2014-09-24 11:03:00 +02001628MODULE_ALIAS_RTNL_LINK("ip6gretap");
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001629MODULE_ALIAS_NETDEV("ip6gre0");