blob: 0a5922055da29f05083368d9a76e3bdb5eee3d6c [file] [log] [blame]
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001/*
2 * GRE over IPv6 protocol decoder.
3 *
4 * Authors: Dmitry Kozlov (xeb@mail.ru)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
15#include <linux/capability.h>
16#include <linux/module.h>
17#include <linux/types.h>
18#include <linux/kernel.h>
19#include <linux/slab.h>
20#include <linux/uaccess.h>
21#include <linux/skbuff.h>
22#include <linux/netdevice.h>
23#include <linux/in.h>
24#include <linux/tcp.h>
25#include <linux/udp.h>
26#include <linux/if_arp.h>
xeb@mail.ruc12b3952012-08-10 00:51:50 +000027#include <linux/init.h>
28#include <linux/in6.h>
29#include <linux/inetdevice.h>
30#include <linux/igmp.h>
31#include <linux/netfilter_ipv4.h>
32#include <linux/etherdevice.h>
33#include <linux/if_ether.h>
34#include <linux/hash.h>
35#include <linux/if_tunnel.h>
36#include <linux/ip6_tunnel.h>
37
38#include <net/sock.h>
39#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000040#include <net/ip_tunnels.h>
xeb@mail.ruc12b3952012-08-10 00:51:50 +000041#include <net/icmp.h>
42#include <net/protocol.h>
43#include <net/addrconf.h>
44#include <net/arp.h>
45#include <net/checksum.h>
46#include <net/dsfield.h>
47#include <net/inet_ecn.h>
48#include <net/xfrm.h>
49#include <net/net_namespace.h>
50#include <net/netns/generic.h>
51#include <net/rtnetlink.h>
52
53#include <net/ipv6.h>
54#include <net/ip6_fib.h>
55#include <net/ip6_route.h>
56#include <net/ip6_tunnel.h>
Tom Herbert308edfdf2016-04-29 17:12:17 -070057#include <net/gre.h>
xeb@mail.ruc12b3952012-08-10 00:51:50 +000058
59
stephen hemmingereccc1bb2012-09-25 11:02:48 +000060static bool log_ecn_error = true;
61module_param(log_ecn_error, bool, 0644);
62MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
63
Jiri Kosinae87a8f22016-08-10 11:03:35 +020064#define IP6_GRE_HASH_SIZE_SHIFT 5
65#define IP6_GRE_HASH_SIZE (1 << IP6_GRE_HASH_SIZE_SHIFT)
xeb@mail.ruc12b3952012-08-10 00:51:50 +000066
67static int ip6gre_net_id __read_mostly;
68struct ip6gre_net {
Jiri Kosinae87a8f22016-08-10 11:03:35 +020069 struct ip6_tnl __rcu *tunnels[4][IP6_GRE_HASH_SIZE];
xeb@mail.ruc12b3952012-08-10 00:51:50 +000070
71 struct net_device *fb_tunnel_dev;
72};
73
74static struct rtnl_link_ops ip6gre_link_ops __read_mostly;
Nicolas Dichtel22f08062014-04-22 10:15:24 +020075static struct rtnl_link_ops ip6gre_tap_ops __read_mostly;
xeb@mail.ruc12b3952012-08-10 00:51:50 +000076static int ip6gre_tunnel_init(struct net_device *dev);
77static void ip6gre_tunnel_setup(struct net_device *dev);
78static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t);
79static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu);
80
81/* Tunnel hash table */
82
83/*
84 4 hash tables:
85
86 3: (remote,local)
87 2: (remote,*)
88 1: (*,local)
89 0: (*,*)
90
91 We require exact key match i.e. if a key is present in packet
92 it will match only tunnel with the same key; if it is not present,
93 it will match only keyless tunnel.
94
95 All keysless packets, if not matched configured keyless tunnels
96 will match fallback tunnel.
97 */
98
Jiri Kosinae87a8f22016-08-10 11:03:35 +020099#define HASH_KEY(key) (((__force u32)key^((__force u32)key>>4))&(IP6_GRE_HASH_SIZE - 1))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000100static u32 HASH_ADDR(const struct in6_addr *addr)
101{
102 u32 hash = ipv6_addr_hash(addr);
103
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200104 return hash_32(hash, IP6_GRE_HASH_SIZE_SHIFT);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000105}
106
107#define tunnels_r_l tunnels[3]
108#define tunnels_r tunnels[2]
109#define tunnels_l tunnels[1]
110#define tunnels_wc tunnels[0]
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000111
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000112/* Given src, dst and key, find appropriate for input tunnel. */
113
114static struct ip6_tnl *ip6gre_tunnel_lookup(struct net_device *dev,
115 const struct in6_addr *remote, const struct in6_addr *local,
116 __be32 key, __be16 gre_proto)
117{
118 struct net *net = dev_net(dev);
119 int link = dev->ifindex;
120 unsigned int h0 = HASH_ADDR(remote);
121 unsigned int h1 = HASH_KEY(key);
122 struct ip6_tnl *t, *cand = NULL;
123 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
124 int dev_type = (gre_proto == htons(ETH_P_TEB)) ?
125 ARPHRD_ETHER : ARPHRD_IP6GRE;
126 int score, cand_score = 4;
127
Amerigo Wange086cad2012-11-11 21:52:34 +0000128 for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000129 if (!ipv6_addr_equal(local, &t->parms.laddr) ||
130 !ipv6_addr_equal(remote, &t->parms.raddr) ||
131 key != t->parms.i_key ||
132 !(t->dev->flags & IFF_UP))
133 continue;
134
135 if (t->dev->type != ARPHRD_IP6GRE &&
136 t->dev->type != dev_type)
137 continue;
138
139 score = 0;
140 if (t->parms.link != link)
141 score |= 1;
142 if (t->dev->type != dev_type)
143 score |= 2;
144 if (score == 0)
145 return t;
146
147 if (score < cand_score) {
148 cand = t;
149 cand_score = score;
150 }
151 }
152
Amerigo Wange086cad2012-11-11 21:52:34 +0000153 for_each_ip_tunnel_rcu(t, ign->tunnels_r[h0 ^ h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000154 if (!ipv6_addr_equal(remote, &t->parms.raddr) ||
155 key != t->parms.i_key ||
156 !(t->dev->flags & IFF_UP))
157 continue;
158
159 if (t->dev->type != ARPHRD_IP6GRE &&
160 t->dev->type != dev_type)
161 continue;
162
163 score = 0;
164 if (t->parms.link != link)
165 score |= 1;
166 if (t->dev->type != dev_type)
167 score |= 2;
168 if (score == 0)
169 return t;
170
171 if (score < cand_score) {
172 cand = t;
173 cand_score = score;
174 }
175 }
176
Amerigo Wange086cad2012-11-11 21:52:34 +0000177 for_each_ip_tunnel_rcu(t, ign->tunnels_l[h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000178 if ((!ipv6_addr_equal(local, &t->parms.laddr) &&
179 (!ipv6_addr_equal(local, &t->parms.raddr) ||
180 !ipv6_addr_is_multicast(local))) ||
181 key != t->parms.i_key ||
182 !(t->dev->flags & IFF_UP))
183 continue;
184
185 if (t->dev->type != ARPHRD_IP6GRE &&
186 t->dev->type != dev_type)
187 continue;
188
189 score = 0;
190 if (t->parms.link != link)
191 score |= 1;
192 if (t->dev->type != dev_type)
193 score |= 2;
194 if (score == 0)
195 return t;
196
197 if (score < cand_score) {
198 cand = t;
199 cand_score = score;
200 }
201 }
202
Amerigo Wange086cad2012-11-11 21:52:34 +0000203 for_each_ip_tunnel_rcu(t, ign->tunnels_wc[h1]) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000204 if (t->parms.i_key != key ||
205 !(t->dev->flags & IFF_UP))
206 continue;
207
208 if (t->dev->type != ARPHRD_IP6GRE &&
209 t->dev->type != dev_type)
210 continue;
211
212 score = 0;
213 if (t->parms.link != link)
214 score |= 1;
215 if (t->dev->type != dev_type)
216 score |= 2;
217 if (score == 0)
218 return t;
219
220 if (score < cand_score) {
221 cand = t;
222 cand_score = score;
223 }
224 }
225
Ian Morris53b24b82015-03-29 14:00:05 +0100226 if (cand)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000227 return cand;
228
229 dev = ign->fb_tunnel_dev;
230 if (dev->flags & IFF_UP)
231 return netdev_priv(dev);
232
233 return NULL;
234}
235
236static struct ip6_tnl __rcu **__ip6gre_bucket(struct ip6gre_net *ign,
237 const struct __ip6_tnl_parm *p)
238{
239 const struct in6_addr *remote = &p->raddr;
240 const struct in6_addr *local = &p->laddr;
241 unsigned int h = HASH_KEY(p->i_key);
242 int prio = 0;
243
244 if (!ipv6_addr_any(local))
245 prio |= 1;
246 if (!ipv6_addr_any(remote) && !ipv6_addr_is_multicast(remote)) {
247 prio |= 2;
248 h ^= HASH_ADDR(remote);
249 }
250
251 return &ign->tunnels[prio][h];
252}
253
254static inline struct ip6_tnl __rcu **ip6gre_bucket(struct ip6gre_net *ign,
255 const struct ip6_tnl *t)
256{
257 return __ip6gre_bucket(ign, &t->parms);
258}
259
260static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t)
261{
262 struct ip6_tnl __rcu **tp = ip6gre_bucket(ign, t);
263
264 rcu_assign_pointer(t->next, rtnl_dereference(*tp));
265 rcu_assign_pointer(*tp, t);
266}
267
268static void ip6gre_tunnel_unlink(struct ip6gre_net *ign, struct ip6_tnl *t)
269{
270 struct ip6_tnl __rcu **tp;
271 struct ip6_tnl *iter;
272
273 for (tp = ip6gre_bucket(ign, t);
274 (iter = rtnl_dereference(*tp)) != NULL;
275 tp = &iter->next) {
276 if (t == iter) {
277 rcu_assign_pointer(*tp, t->next);
278 break;
279 }
280 }
281}
282
283static struct ip6_tnl *ip6gre_tunnel_find(struct net *net,
284 const struct __ip6_tnl_parm *parms,
285 int type)
286{
287 const struct in6_addr *remote = &parms->raddr;
288 const struct in6_addr *local = &parms->laddr;
289 __be32 key = parms->i_key;
290 int link = parms->link;
291 struct ip6_tnl *t;
292 struct ip6_tnl __rcu **tp;
293 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
294
295 for (tp = __ip6gre_bucket(ign, parms);
296 (t = rtnl_dereference(*tp)) != NULL;
297 tp = &t->next)
298 if (ipv6_addr_equal(local, &t->parms.laddr) &&
299 ipv6_addr_equal(remote, &t->parms.raddr) &&
300 key == t->parms.i_key &&
301 link == t->parms.link &&
302 type == t->dev->type)
303 break;
304
305 return t;
306}
307
308static struct ip6_tnl *ip6gre_tunnel_locate(struct net *net,
309 const struct __ip6_tnl_parm *parms, int create)
310{
311 struct ip6_tnl *t, *nt;
312 struct net_device *dev;
313 char name[IFNAMSIZ];
314 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
315
316 t = ip6gre_tunnel_find(net, parms, ARPHRD_IP6GRE);
Steffen Klassertcd0a0bd2014-09-22 10:07:26 +0200317 if (t && create)
318 return NULL;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000319 if (t || !create)
320 return t;
321
322 if (parms->name[0])
323 strlcpy(name, parms->name, IFNAMSIZ);
324 else
325 strcpy(name, "ip6gre%d");
326
Tom Gundersenc835a672014-07-14 16:37:24 +0200327 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
328 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000329 if (!dev)
330 return NULL;
331
332 dev_net_set(dev, net);
333
334 nt = netdev_priv(dev);
335 nt->parms = *parms;
336 dev->rtnl_link_ops = &ip6gre_link_ops;
337
338 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200339 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000340 ip6gre_tnl_link_config(nt, 1);
341
342 if (register_netdevice(dev) < 0)
343 goto failed_free;
344
345 /* Can use a lockless transmit, unless we generate output sequences */
Tom Herbertb45bd1d2016-05-09 17:12:12 -0700346 if (!(nt->parms.o_flags & TUNNEL_SEQ))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000347 dev->features |= NETIF_F_LLTX;
348
349 dev_hold(dev);
350 ip6gre_tunnel_link(ign, nt);
351 return nt;
352
353failed_free:
354 free_netdev(dev);
355 return NULL;
356}
357
358static void ip6gre_tunnel_uninit(struct net_device *dev)
359{
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200360 struct ip6_tnl *t = netdev_priv(dev);
361 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000362
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200363 ip6gre_tunnel_unlink(ign, t);
Paolo Abeni607f7252016-02-12 15:43:54 +0100364 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000365 dev_put(dev);
366}
367
368
369static void ip6gre_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Eric Dumazetae1768b2017-02-04 23:18:55 -0800370 u8 type, u8 code, int offset, __be32 info)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000371{
Eric Dumazetae1768b2017-02-04 23:18:55 -0800372 const struct gre_base_hdr *greh;
373 const struct ipv6hdr *ipv6h;
374 int grehlen = sizeof(*greh);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000375 struct ip6_tnl *t;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800376 int key_off = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000377 __be16 flags;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800378 __be32 key;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000379
Eric Dumazetae1768b2017-02-04 23:18:55 -0800380 if (!pskb_may_pull(skb, offset + grehlen))
381 return;
382 greh = (const struct gre_base_hdr *)(skb->data + offset);
383 flags = greh->flags;
384 if (flags & (GRE_VERSION | GRE_ROUTING))
385 return;
386 if (flags & GRE_CSUM)
387 grehlen += 4;
388 if (flags & GRE_KEY) {
389 key_off = grehlen + offset;
390 grehlen += 4;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000391 }
392
Eric Dumazetae1768b2017-02-04 23:18:55 -0800393 if (!pskb_may_pull(skb, offset + grehlen))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000394 return;
Eric Dumazetb87fb392012-08-19 03:47:30 +0000395 ipv6h = (const struct ipv6hdr *)skb->data;
Eric Dumazetae1768b2017-02-04 23:18:55 -0800396 greh = (const struct gre_base_hdr *)(skb->data + offset);
397 key = key_off ? *(__be32 *)(skb->data + key_off) : 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000398
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000399 t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr,
Eric Dumazetae1768b2017-02-04 23:18:55 -0800400 key, greh->protocol);
Ian Morris63159f22015-03-29 14:00:04 +0100401 if (!t)
stephen hemminger0c5794a2012-09-24 18:12:24 +0000402 return;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000403
404 switch (type) {
405 __u32 teli;
406 struct ipv6_tlv_tnl_enc_lim *tel;
407 __u32 mtu;
408 case ICMPV6_DEST_UNREACH:
Matt Bennetta46496c2015-09-23 16:58:31 +1200409 net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
410 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000411 break;
412 case ICMPV6_TIME_EXCEED:
413 if (code == ICMPV6_EXC_HOPLIMIT) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200414 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
415 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000416 }
417 break;
418 case ICMPV6_PARAMPROB:
419 teli = 0;
420 if (code == ICMPV6_HDR_FIELD)
421 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
422
Sabrina Dubrocad1e158e2015-02-04 15:25:09 +0100423 if (teli && teli == be32_to_cpu(info) - 2) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000424 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
425 if (tel->encap_limit == 0) {
Matt Bennetta46496c2015-09-23 16:58:31 +1200426 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
427 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000428 }
429 } else {
Matt Bennetta46496c2015-09-23 16:58:31 +1200430 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
431 t->parms.name);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000432 }
433 break;
434 case ICMPV6_PKT_TOOBIG:
Sabrina Dubrocad1e158e2015-02-04 15:25:09 +0100435 mtu = be32_to_cpu(info) - offset;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000436 if (mtu < IPV6_MIN_MTU)
437 mtu = IPV6_MIN_MTU;
438 t->dev->mtu = mtu;
439 break;
440 }
441
442 if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
443 t->err_count++;
444 else
445 t->err_count = 1;
446 t->err_time = jiffies;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000447}
448
Tom Herbert308edfdf2016-04-29 17:12:17 -0700449static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000450{
451 const struct ipv6hdr *ipv6h;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000452 struct ip6_tnl *tunnel;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000453
454 ipv6h = ipv6_hdr(skb);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000455 tunnel = ip6gre_tunnel_lookup(skb->dev,
Tom Herbert308edfdf2016-04-29 17:12:17 -0700456 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
457 tpi->proto);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000458 if (tunnel) {
Tom Herbert308edfdf2016-04-29 17:12:17 -0700459 ip6_tnl_rcv(tunnel, skb, tpi, NULL, false);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000460
Tom Herbert308edfdf2016-04-29 17:12:17 -0700461 return PACKET_RCVD;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000462 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000463
Tom Herbert308edfdf2016-04-29 17:12:17 -0700464 return PACKET_REJECT;
465}
466
467static int gre_rcv(struct sk_buff *skb)
468{
469 struct tnl_ptk_info tpi;
470 bool csum_err = false;
471 int hdr_len;
472
Eric Dumazete5826152016-06-15 06:24:00 -0700473 hdr_len = gre_parse_header(skb, &tpi, &csum_err, htons(ETH_P_IPV6), 0);
Jiri Bencf132ae72016-05-03 15:00:21 +0200474 if (hdr_len < 0)
Tom Herbert308edfdf2016-04-29 17:12:17 -0700475 goto drop;
476
477 if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false))
478 goto drop;
479
480 if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD)
481 return 0;
482
483 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000484drop:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000485 kfree_skb(skb);
486 return 0;
487}
488
489struct ipv6_tel_txoption {
490 struct ipv6_txoptions ops;
491 __u8 dst_opt[8];
492};
493
Tom Herbertb05229f2016-04-29 17:12:21 -0700494static int gre_handle_offloads(struct sk_buff *skb, bool csum)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000495{
Tom Herbertb05229f2016-04-29 17:12:21 -0700496 return iptunnel_handle_offloads(skb,
497 csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000498}
499
Tom Herbertb05229f2016-04-29 17:12:21 -0700500static netdev_tx_t __gre6_xmit(struct sk_buff *skb,
501 struct net_device *dev, __u8 dsfield,
502 struct flowi6 *fl6, int encap_limit,
503 __u32 *pmtu, __be16 proto)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000504{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000505 struct ip6_tnl *tunnel = netdev_priv(dev);
Tom Herbertb05229f2016-04-29 17:12:21 -0700506 __be16 protocol = (dev->type == ARPHRD_ETHER) ?
507 htons(ETH_P_TEB) : proto;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000508
509 if (dev->type == ARPHRD_ETHER)
510 IPCB(skb)->flags = 0;
511
Tom Herbertb05229f2016-04-29 17:12:21 -0700512 if (dev->header_ops && dev->type == ARPHRD_IP6GRE)
513 fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr;
514 else
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000515 fl6->daddr = tunnel->parms.raddr;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000516
Tom Herbertb05229f2016-04-29 17:12:21 -0700517 if (tunnel->parms.o_flags & TUNNEL_SEQ)
518 tunnel->o_seqno++;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000519
Tom Herbertb05229f2016-04-29 17:12:21 -0700520 /* Push GRE header. */
521 gre_build_header(skb, tunnel->tun_hlen, tunnel->parms.o_flags,
522 protocol, tunnel->parms.o_key, htonl(tunnel->o_seqno));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000523
Tom Herbertb05229f2016-04-29 17:12:21 -0700524 return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu,
525 NEXTHDR_GRE);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000526}
527
528static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev)
529{
530 struct ip6_tnl *t = netdev_priv(dev);
531 const struct iphdr *iph = ip_hdr(skb);
532 int encap_limit = -1;
533 struct flowi6 fl6;
534 __u8 dsfield;
535 __u32 mtu;
536 int err;
537
Bernie Harris5146d1f2016-02-22 12:58:05 +1300538 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
539
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000540 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
541 encap_limit = t->parms.encap_limit;
542
543 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000544
545 dsfield = ipv4_get_dsfield(iph);
546
547 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
548 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
549 & IPV6_TCLASS_MASK;
550 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
551 fl6.flowi6_mark = skb->mark;
552
Tom Herbertb05229f2016-04-29 17:12:21 -0700553 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
554 if (err)
555 return -1;
556
557 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
558 skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000559 if (err != 0) {
560 /* XXX: send ICMP error even if DF is not set. */
561 if (err == -EMSGSIZE)
562 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
563 htonl(mtu));
564 return -1;
565 }
566
567 return 0;
568}
569
570static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev)
571{
572 struct ip6_tnl *t = netdev_priv(dev);
573 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
574 int encap_limit = -1;
575 __u16 offset;
576 struct flowi6 fl6;
577 __u8 dsfield;
578 __u32 mtu;
579 int err;
580
581 if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr))
582 return -1;
583
584 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
585 if (offset > 0) {
586 struct ipv6_tlv_tnl_enc_lim *tel;
587 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
588 if (tel->encap_limit == 0) {
589 icmpv6_send(skb, ICMPV6_PARAMPROB,
590 ICMPV6_HDR_FIELD, offset + 2);
591 return -1;
592 }
593 encap_limit = tel->encap_limit - 1;
594 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
595 encap_limit = t->parms.encap_limit;
596
597 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000598
599 dsfield = ipv6_get_dsfield(ipv6h);
600 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
601 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
602 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +0100603 fl6.flowlabel |= ip6_flowlabel(ipv6h);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000604 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
605 fl6.flowi6_mark = skb->mark;
606
Tom Herbertb05229f2016-04-29 17:12:21 -0700607 if (gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM)))
608 return -1;
609
610 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit,
611 &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000612 if (err != 0) {
613 if (err == -EMSGSIZE)
614 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
615 return -1;
616 }
617
618 return 0;
619}
620
621/**
622 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
623 * @t: the outgoing tunnel device
624 * @hdr: IPv6 header from the incoming packet
625 *
626 * Description:
627 * Avoid trivial tunneling loop by checking that tunnel exit-point
628 * doesn't match source of incoming packet.
629 *
630 * Return:
631 * 1 if conflict,
632 * 0 else
633 **/
634
635static inline bool ip6gre_tnl_addr_conflict(const struct ip6_tnl *t,
636 const struct ipv6hdr *hdr)
637{
638 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
639}
640
641static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev)
642{
643 struct ip6_tnl *t = netdev_priv(dev);
644 int encap_limit = -1;
645 struct flowi6 fl6;
646 __u32 mtu;
647 int err;
648
649 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
650 encap_limit = t->parms.encap_limit;
651
652 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000653
Tom Herbertb05229f2016-04-29 17:12:21 -0700654 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
655 if (err)
656 return err;
657
658 err = __gre6_xmit(skb, dev, 0, &fl6, encap_limit, &mtu, skb->protocol);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000659
660 return err;
661}
662
663static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
664 struct net_device *dev)
665{
666 struct ip6_tnl *t = netdev_priv(dev);
667 struct net_device_stats *stats = &t->dev->stats;
668 int ret;
669
Steffen Klassertd5005142014-11-05 08:02:48 +0100670 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
Tommi Rantala41ab3e32013-02-06 03:24:02 +0000671 goto tx_err;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000672
673 switch (skb->protocol) {
674 case htons(ETH_P_IP):
675 ret = ip6gre_xmit_ipv4(skb, dev);
676 break;
677 case htons(ETH_P_IPV6):
678 ret = ip6gre_xmit_ipv6(skb, dev);
679 break;
680 default:
681 ret = ip6gre_xmit_other(skb, dev);
682 break;
683 }
684
685 if (ret < 0)
686 goto tx_err;
687
688 return NETDEV_TX_OK;
689
690tx_err:
691 stats->tx_errors++;
692 stats->tx_dropped++;
693 kfree_skb(skb);
694 return NETDEV_TX_OK;
695}
696
697static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
698{
699 struct net_device *dev = t->dev;
700 struct __ip6_tnl_parm *p = &t->parms;
701 struct flowi6 *fl6 = &t->fl.u.ip6;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700702 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000703
704 if (dev->type != ARPHRD_ETHER) {
705 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
706 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
707 }
708
709 /* Set up flowi template */
710 fl6->saddr = p->laddr;
711 fl6->daddr = p->raddr;
712 fl6->flowi6_oif = p->link;
713 fl6->flowlabel = 0;
Haishuang Yan252f3f52016-05-21 18:17:35 +0800714 fl6->flowi6_proto = IPPROTO_GRE;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000715
716 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
717 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
718 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
719 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
720
721 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
722 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
723
724 if (p->flags&IP6_TNL_F_CAP_XMIT &&
725 p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER)
726 dev->flags |= IFF_POINTOPOINT;
727 else
728 dev->flags &= ~IFF_POINTOPOINT;
729
Tom Herbertdb2ec952016-05-09 17:12:08 -0700730 t->tun_hlen = gre_calc_hlen(t->parms.o_flags);
731
Tom Herbert1faf3d92016-05-18 09:06:19 -0700732 t->hlen = t->encap_hlen + t->tun_hlen;
Tom Herbertdb2ec952016-05-09 17:12:08 -0700733
734 t_hlen = t->hlen + sizeof(struct ipv6hdr);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000735
736 if (p->flags & IP6_TNL_F_CAP_XMIT) {
737 int strict = (ipv6_addr_type(&p->raddr) &
738 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
739
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200740 struct rt6_info *rt = rt6_lookup(t->net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000741 &p->raddr, &p->laddr,
742 p->link, strict);
743
Ian Morris63159f22015-03-29 14:00:04 +0100744 if (!rt)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000745 return;
746
747 if (rt->dst.dev) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700748 dev->hard_header_len = rt->dst.dev->hard_header_len +
749 t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000750
751 if (set_mtu) {
Tom Herbertdb2ec952016-05-09 17:12:08 -0700752 dev->mtu = rt->dst.dev->mtu - t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000753 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
754 dev->mtu -= 8;
Alexander Duycka9e242c2016-04-14 15:33:45 -0400755 if (dev->type == ARPHRD_ETHER)
756 dev->mtu -= ETH_HLEN;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000757
758 if (dev->mtu < IPV6_MIN_MTU)
759 dev->mtu = IPV6_MIN_MTU;
760 }
761 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000762 ip6_rt_put(rt);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000763 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000764}
765
766static int ip6gre_tnl_change(struct ip6_tnl *t,
767 const struct __ip6_tnl_parm *p, int set_mtu)
768{
769 t->parms.laddr = p->laddr;
770 t->parms.raddr = p->raddr;
771 t->parms.flags = p->flags;
772 t->parms.hop_limit = p->hop_limit;
773 t->parms.encap_limit = p->encap_limit;
774 t->parms.flowinfo = p->flowinfo;
775 t->parms.link = p->link;
776 t->parms.proto = p->proto;
777 t->parms.i_key = p->i_key;
778 t->parms.o_key = p->o_key;
779 t->parms.i_flags = p->i_flags;
780 t->parms.o_flags = p->o_flags;
Paolo Abeni607f7252016-02-12 15:43:54 +0100781 dst_cache_reset(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000782 ip6gre_tnl_link_config(t, set_mtu);
783 return 0;
784}
785
786static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
787 const struct ip6_tnl_parm2 *u)
788{
789 p->laddr = u->laddr;
790 p->raddr = u->raddr;
791 p->flags = u->flags;
792 p->hop_limit = u->hop_limit;
793 p->encap_limit = u->encap_limit;
794 p->flowinfo = u->flowinfo;
795 p->link = u->link;
796 p->i_key = u->i_key;
797 p->o_key = u->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700798 p->i_flags = gre_flags_to_tnl_flags(u->i_flags);
799 p->o_flags = gre_flags_to_tnl_flags(u->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000800 memcpy(p->name, u->name, sizeof(u->name));
801}
802
803static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
804 const struct __ip6_tnl_parm *p)
805{
806 u->proto = IPPROTO_GRE;
807 u->laddr = p->laddr;
808 u->raddr = p->raddr;
809 u->flags = p->flags;
810 u->hop_limit = p->hop_limit;
811 u->encap_limit = p->encap_limit;
812 u->flowinfo = p->flowinfo;
813 u->link = p->link;
814 u->i_key = p->i_key;
815 u->o_key = p->o_key;
Tom Herbertf41fe3c2016-05-09 17:12:09 -0700816 u->i_flags = gre_tnl_flags_to_gre_flags(p->i_flags);
817 u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000818 memcpy(u->name, p->name, sizeof(u->name));
819}
820
821static int ip6gre_tunnel_ioctl(struct net_device *dev,
822 struct ifreq *ifr, int cmd)
823{
824 int err = 0;
825 struct ip6_tnl_parm2 p;
826 struct __ip6_tnl_parm p1;
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200827 struct ip6_tnl *t = netdev_priv(dev);
828 struct net *net = t->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000829 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
830
Tom Herbert308edfdf2016-04-29 17:12:17 -0700831 memset(&p1, 0, sizeof(p1));
832
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000833 switch (cmd) {
834 case SIOCGETTUNNEL:
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000835 if (dev == ign->fb_tunnel_dev) {
836 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
837 err = -EFAULT;
838 break;
839 }
840 ip6gre_tnl_parm_from_user(&p1, &p);
841 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100842 if (!t)
Nicolas Dichtel22f08062014-04-22 10:15:24 +0200843 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000844 }
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000845 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000846 ip6gre_tnl_parm_to_user(&p, &t->parms);
847 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
848 err = -EFAULT;
849 break;
850
851 case SIOCADDTUNNEL:
852 case SIOCCHGTUNNEL:
853 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000854 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000855 goto done;
856
857 err = -EFAULT;
858 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
859 goto done;
860
861 err = -EINVAL;
862 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
863 goto done;
864
865 if (!(p.i_flags&GRE_KEY))
866 p.i_key = 0;
867 if (!(p.o_flags&GRE_KEY))
868 p.o_key = 0;
869
870 ip6gre_tnl_parm_from_user(&p1, &p);
871 t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
872
873 if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Ian Morris53b24b82015-03-29 14:00:05 +0100874 if (t) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000875 if (t->dev != dev) {
876 err = -EEXIST;
877 break;
878 }
879 } else {
880 t = netdev_priv(dev);
881
882 ip6gre_tunnel_unlink(ign, t);
883 synchronize_net();
884 ip6gre_tnl_change(t, &p1, 1);
885 ip6gre_tunnel_link(ign, t);
886 netdev_state_change(dev);
887 }
888 }
889
890 if (t) {
891 err = 0;
892
Amerigo Wang5dbd5062013-05-09 21:56:37 +0000893 memset(&p, 0, sizeof(p));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000894 ip6gre_tnl_parm_to_user(&p, &t->parms);
895 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
896 err = -EFAULT;
897 } else
898 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
899 break;
900
901 case SIOCDELTUNNEL:
902 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000903 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000904 goto done;
905
906 if (dev == ign->fb_tunnel_dev) {
907 err = -EFAULT;
908 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
909 goto done;
910 err = -ENOENT;
911 ip6gre_tnl_parm_from_user(&p1, &p);
912 t = ip6gre_tunnel_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100913 if (!t)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000914 goto done;
915 err = -EPERM;
916 if (t == netdev_priv(ign->fb_tunnel_dev))
917 goto done;
918 dev = t->dev;
919 }
920 unregister_netdevice(dev);
921 err = 0;
922 break;
923
924 default:
925 err = -EINVAL;
926 }
927
928done:
929 return err;
930}
931
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000932static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
933 unsigned short type,
934 const void *daddr, const void *saddr, unsigned int len)
935{
936 struct ip6_tnl *t = netdev_priv(dev);
937 struct ipv6hdr *ipv6h = (struct ipv6hdr *)skb_push(skb, t->hlen);
938 __be16 *p = (__be16 *)(ipv6h+1);
939
Tom Herbertcb1ce2e2014-07-01 21:33:10 -0700940 ip6_flow_hdr(ipv6h, 0,
941 ip6_make_flowlabel(dev_net(dev), skb,
Tom Herbert42240902015-07-31 16:52:12 -0700942 t->fl.u.ip6.flowlabel, true,
Tom Herbert67800f92015-07-31 16:52:11 -0700943 &t->fl.u.ip6));
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000944 ipv6h->hop_limit = t->parms.hop_limit;
945 ipv6h->nexthdr = NEXTHDR_GRE;
946 ipv6h->saddr = t->parms.laddr;
947 ipv6h->daddr = t->parms.raddr;
948
949 p[0] = t->parms.o_flags;
950 p[1] = htons(type);
951
952 /*
953 * Set the source hardware address.
954 */
955
956 if (saddr)
957 memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
958 if (daddr)
959 memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
960 if (!ipv6_addr_any(&ipv6h->daddr))
961 return t->hlen;
962
963 return -t->hlen;
964}
965
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000966static const struct header_ops ip6gre_header_ops = {
967 .create = ip6gre_header,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000968};
969
970static const struct net_device_ops ip6gre_netdev_ops = {
971 .ndo_init = ip6gre_tunnel_init,
972 .ndo_uninit = ip6gre_tunnel_uninit,
973 .ndo_start_xmit = ip6gre_tunnel_xmit,
974 .ndo_do_ioctl = ip6gre_tunnel_ioctl,
Tom Herbertb05229f2016-04-29 17:12:21 -0700975 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +0000976 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +0200977 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000978};
979
980static void ip6gre_dev_free(struct net_device *dev)
981{
Martin KaFai Laucdf34642015-09-15 14:30:07 -0700982 struct ip6_tnl *t = netdev_priv(dev);
983
Paolo Abeni607f7252016-02-12 15:43:54 +0100984 dst_cache_destroy(&t->dst_cache);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000985 free_percpu(dev->tstats);
986 free_netdev(dev);
987}
988
989static void ip6gre_tunnel_setup(struct net_device *dev)
990{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000991 dev->netdev_ops = &ip6gre_netdev_ops;
992 dev->destructor = ip6gre_dev_free;
993
994 dev->type = ARPHRD_IP6GRE;
Tom Herbertb05229f2016-04-29 17:12:21 -0700995
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000996 dev->flags |= IFF_NOARP;
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000997 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -0700998 netif_keep_dst(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000999}
1000
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001001static int ip6gre_tunnel_init_common(struct net_device *dev)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001002{
1003 struct ip6_tnl *tunnel;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001004 int ret;
Tom Herbertb05229f2016-04-29 17:12:21 -07001005 int t_hlen;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001006
1007 tunnel = netdev_priv(dev);
1008
1009 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001010 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001011 strcpy(tunnel->parms.name, dev->name);
1012
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001013 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1014 if (!dev->tstats)
1015 return -ENOMEM;
1016
Paolo Abeni607f7252016-02-12 15:43:54 +01001017 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001018 if (ret) {
1019 free_percpu(dev->tstats);
1020 dev->tstats = NULL;
1021 return ret;
1022 }
1023
Tom Herbertb05229f2016-04-29 17:12:21 -07001024 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001025 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen;
Tom Herbertb05229f2016-04-29 17:12:21 -07001026 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1027
Tom Herbertdb2ec952016-05-09 17:12:08 -07001028 dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1029 dev->mtu = ETH_DATA_LEN - t_hlen;
Haishuang Yan1b227e52016-05-21 18:17:34 +08001030 if (dev->type == ARPHRD_ETHER)
1031 dev->mtu -= ETH_HLEN;
Tom Herbertb05229f2016-04-29 17:12:21 -07001032 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1033 dev->mtu -= 8;
1034
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001035 return 0;
1036}
1037
1038static int ip6gre_tunnel_init(struct net_device *dev)
1039{
1040 struct ip6_tnl *tunnel;
1041 int ret;
1042
1043 ret = ip6gre_tunnel_init_common(dev);
1044 if (ret)
1045 return ret;
1046
1047 tunnel = netdev_priv(dev);
1048
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001049 memcpy(dev->dev_addr, &tunnel->parms.laddr, sizeof(struct in6_addr));
1050 memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1051
1052 if (ipv6_addr_any(&tunnel->parms.raddr))
1053 dev->header_ops = &ip6gre_header_ops;
1054
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001055 return 0;
1056}
1057
1058static void ip6gre_fb_tunnel_init(struct net_device *dev)
1059{
1060 struct ip6_tnl *tunnel = netdev_priv(dev);
1061
1062 tunnel->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001063 tunnel->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001064 strcpy(tunnel->parms.name, dev->name);
1065
1066 tunnel->hlen = sizeof(struct ipv6hdr) + 4;
1067
1068 dev_hold(dev);
1069}
1070
1071
1072static struct inet6_protocol ip6gre_protocol __read_mostly = {
Tom Herbert308edfdf2016-04-29 17:12:17 -07001073 .handler = gre_rcv,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001074 .err_handler = ip6gre_err,
1075 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1076};
1077
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001078static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001079{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001080 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1081 struct net_device *dev, *aux;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001082 int prio;
1083
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001084 for_each_netdev_safe(net, dev, aux)
1085 if (dev->rtnl_link_ops == &ip6gre_link_ops ||
1086 dev->rtnl_link_ops == &ip6gre_tap_ops)
1087 unregister_netdevice_queue(dev, head);
1088
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001089 for (prio = 0; prio < 4; prio++) {
1090 int h;
Jiri Kosinae87a8f22016-08-10 11:03:35 +02001091 for (h = 0; h < IP6_GRE_HASH_SIZE; h++) {
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001092 struct ip6_tnl *t;
1093
1094 t = rtnl_dereference(ign->tunnels[prio][h]);
1095
Ian Morris53b24b82015-03-29 14:00:05 +01001096 while (t) {
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001097 /* If dev is in the same netns, it has already
1098 * been added to the list by the previous loop.
1099 */
1100 if (!net_eq(dev_net(t->dev), net))
1101 unregister_netdevice_queue(t->dev,
1102 head);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001103 t = rtnl_dereference(t->next);
1104 }
1105 }
1106 }
1107}
1108
1109static int __net_init ip6gre_init_net(struct net *net)
1110{
1111 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1112 int err;
1113
1114 ign->fb_tunnel_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001115 NET_NAME_UNKNOWN,
1116 ip6gre_tunnel_setup);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001117 if (!ign->fb_tunnel_dev) {
1118 err = -ENOMEM;
1119 goto err_alloc_dev;
1120 }
1121 dev_net_set(ign->fb_tunnel_dev, net);
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001122 /* FB netdevice is special: we have one, and only one per netns.
1123 * Allowing to move it to another netns is clearly unsafe.
1124 */
1125 ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1126
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001127
1128 ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1129 ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1130
1131 err = register_netdev(ign->fb_tunnel_dev);
1132 if (err)
1133 goto err_reg_dev;
1134
1135 rcu_assign_pointer(ign->tunnels_wc[0],
1136 netdev_priv(ign->fb_tunnel_dev));
1137 return 0;
1138
1139err_reg_dev:
1140 ip6gre_dev_free(ign->fb_tunnel_dev);
1141err_alloc_dev:
1142 return err;
1143}
1144
1145static void __net_exit ip6gre_exit_net(struct net *net)
1146{
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001147 LIST_HEAD(list);
1148
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001149 rtnl_lock();
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001150 ip6gre_destroy_tunnels(net, &list);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001151 unregister_netdevice_many(&list);
1152 rtnl_unlock();
1153}
1154
1155static struct pernet_operations ip6gre_net_ops = {
1156 .init = ip6gre_init_net,
1157 .exit = ip6gre_exit_net,
1158 .id = &ip6gre_net_id,
1159 .size = sizeof(struct ip6gre_net),
1160};
1161
1162static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
1163{
1164 __be16 flags;
1165
1166 if (!data)
1167 return 0;
1168
1169 flags = 0;
1170 if (data[IFLA_GRE_IFLAGS])
1171 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1172 if (data[IFLA_GRE_OFLAGS])
1173 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1174 if (flags & (GRE_VERSION|GRE_ROUTING))
1175 return -EINVAL;
1176
1177 return 0;
1178}
1179
1180static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[])
1181{
1182 struct in6_addr daddr;
1183
1184 if (tb[IFLA_ADDRESS]) {
1185 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1186 return -EINVAL;
1187 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1188 return -EADDRNOTAVAIL;
1189 }
1190
1191 if (!data)
1192 goto out;
1193
1194 if (data[IFLA_GRE_REMOTE]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02001195 daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001196 if (ipv6_addr_any(&daddr))
1197 return -EINVAL;
1198 }
1199
1200out:
1201 return ip6gre_tunnel_validate(tb, data);
1202}
1203
1204
1205static void ip6gre_netlink_parms(struct nlattr *data[],
1206 struct __ip6_tnl_parm *parms)
1207{
1208 memset(parms, 0, sizeof(*parms));
1209
1210 if (!data)
1211 return;
1212
1213 if (data[IFLA_GRE_LINK])
1214 parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1215
1216 if (data[IFLA_GRE_IFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001217 parms->i_flags = gre_flags_to_tnl_flags(
1218 nla_get_be16(data[IFLA_GRE_IFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001219
1220 if (data[IFLA_GRE_OFLAGS])
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001221 parms->o_flags = gre_flags_to_tnl_flags(
1222 nla_get_be16(data[IFLA_GRE_OFLAGS]));
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001223
1224 if (data[IFLA_GRE_IKEY])
1225 parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1226
1227 if (data[IFLA_GRE_OKEY])
1228 parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1229
1230 if (data[IFLA_GRE_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +02001231 parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001232
1233 if (data[IFLA_GRE_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +02001234 parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001235
1236 if (data[IFLA_GRE_TTL])
1237 parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1238
1239 if (data[IFLA_GRE_ENCAP_LIMIT])
1240 parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1241
1242 if (data[IFLA_GRE_FLOWINFO])
Lance Richardsonc2675de2016-09-24 14:01:04 -04001243 parms->flowinfo = nla_get_be32(data[IFLA_GRE_FLOWINFO]);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001244
1245 if (data[IFLA_GRE_FLAGS])
1246 parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
1247}
1248
1249static int ip6gre_tap_init(struct net_device *dev)
1250{
1251 struct ip6_tnl *tunnel;
Martin KaFai Laua3c119d2015-09-15 14:30:05 -07001252 int ret;
1253
1254 ret = ip6gre_tunnel_init_common(dev);
1255 if (ret)
1256 return ret;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001257
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001258 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1259
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001260 tunnel = netdev_priv(dev);
1261
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001262 ip6gre_tnl_link_config(tunnel, 1);
1263
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001264 return 0;
1265}
1266
1267static const struct net_device_ops ip6gre_tap_netdev_ops = {
1268 .ndo_init = ip6gre_tap_init,
1269 .ndo_uninit = ip6gre_tunnel_uninit,
1270 .ndo_start_xmit = ip6gre_tunnel_xmit,
1271 .ndo_set_mac_address = eth_mac_addr,
1272 .ndo_validate_addr = eth_validate_addr,
Tom Herbertb05229f2016-04-29 17:12:21 -07001273 .ndo_change_mtu = ip6_tnl_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +00001274 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001275 .ndo_get_iflink = ip6_tnl_get_iflink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001276};
1277
Alexander Duyckac4eb002016-04-14 15:33:51 -04001278#define GRE6_FEATURES (NETIF_F_SG | \
1279 NETIF_F_FRAGLIST | \
1280 NETIF_F_HIGHDMA | \
1281 NETIF_F_HW_CSUM)
1282
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001283static void ip6gre_tap_setup(struct net_device *dev)
1284{
1285
1286 ether_setup(dev);
1287
1288 dev->netdev_ops = &ip6gre_tap_netdev_ops;
1289 dev->destructor = ip6gre_dev_free;
1290
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001291 dev->features |= NETIF_F_NETNS_LOCAL;
Jiri Bencd13b1612016-02-17 15:32:53 +01001292 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Shweta Choudaha0a46baa2016-06-08 20:15:43 +01001293 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001294}
1295
Tom Herbert1faf3d92016-05-18 09:06:19 -07001296static bool ip6gre_netlink_encap_parms(struct nlattr *data[],
1297 struct ip_tunnel_encap *ipencap)
1298{
1299 bool ret = false;
1300
1301 memset(ipencap, 0, sizeof(*ipencap));
1302
1303 if (!data)
1304 return ret;
1305
1306 if (data[IFLA_GRE_ENCAP_TYPE]) {
1307 ret = true;
1308 ipencap->type = nla_get_u16(data[IFLA_GRE_ENCAP_TYPE]);
1309 }
1310
1311 if (data[IFLA_GRE_ENCAP_FLAGS]) {
1312 ret = true;
1313 ipencap->flags = nla_get_u16(data[IFLA_GRE_ENCAP_FLAGS]);
1314 }
1315
1316 if (data[IFLA_GRE_ENCAP_SPORT]) {
1317 ret = true;
1318 ipencap->sport = nla_get_be16(data[IFLA_GRE_ENCAP_SPORT]);
1319 }
1320
1321 if (data[IFLA_GRE_ENCAP_DPORT]) {
1322 ret = true;
1323 ipencap->dport = nla_get_be16(data[IFLA_GRE_ENCAP_DPORT]);
1324 }
1325
1326 return ret;
1327}
1328
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001329static int ip6gre_newlink(struct net *src_net, struct net_device *dev,
1330 struct nlattr *tb[], struct nlattr *data[])
1331{
1332 struct ip6_tnl *nt;
1333 struct net *net = dev_net(dev);
1334 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001335 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001336 int err;
1337
1338 nt = netdev_priv(dev);
Tom Herbert1faf3d92016-05-18 09:06:19 -07001339
1340 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1341 int err = ip6_tnl_encap_setup(nt, &ipencap);
1342
1343 if (err < 0)
1344 return err;
1345 }
1346
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001347 ip6gre_netlink_parms(data, &nt->parms);
1348
1349 if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
1350 return -EEXIST;
1351
1352 if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS])
1353 eth_hw_addr_random(dev);
1354
1355 nt->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001356 nt->net = dev_net(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001357 ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
1358
Alexander Duyckac4eb002016-04-14 15:33:51 -04001359 dev->features |= GRE6_FEATURES;
1360 dev->hw_features |= GRE6_FEATURES;
1361
Tom Herbertb45bd1d2016-05-09 17:12:12 -07001362 if (!(nt->parms.o_flags & TUNNEL_SEQ)) {
Alexander Duyck6a553682016-05-18 10:44:47 -07001363 /* TCP offload with GRE SEQ is not supported, nor
1364 * can we support 2 levels of outer headers requiring
1365 * an update.
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001366 */
Alexander Duyck6a553682016-05-18 10:44:47 -07001367 if (!(nt->parms.o_flags & TUNNEL_CSUM) ||
1368 (nt->encap.type == TUNNEL_ENCAP_NONE)) {
1369 dev->features |= NETIF_F_GSO_SOFTWARE;
1370 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1371 }
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001372
1373 /* Can use a lockless transmit, unless we generate
1374 * output sequences
1375 */
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001376 dev->features |= NETIF_F_LLTX;
Alexander Duyck3a80e1f2016-04-14 15:34:04 -04001377 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001378
1379 err = register_netdevice(dev);
1380 if (err)
1381 goto out;
1382
1383 dev_hold(dev);
1384 ip6gre_tunnel_link(ign, nt);
1385
1386out:
1387 return err;
1388}
1389
1390static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
1391 struct nlattr *data[])
1392{
Nicolas Dichtel22f08062014-04-22 10:15:24 +02001393 struct ip6_tnl *t, *nt = netdev_priv(dev);
1394 struct net *net = nt->net;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001395 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1396 struct __ip6_tnl_parm p;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001397 struct ip_tunnel_encap ipencap;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001398
1399 if (dev == ign->fb_tunnel_dev)
1400 return -EINVAL;
1401
Tom Herbert1faf3d92016-05-18 09:06:19 -07001402 if (ip6gre_netlink_encap_parms(data, &ipencap)) {
1403 int err = ip6_tnl_encap_setup(nt, &ipencap);
1404
1405 if (err < 0)
1406 return err;
1407 }
1408
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001409 ip6gre_netlink_parms(data, &p);
1410
1411 t = ip6gre_tunnel_locate(net, &p, 0);
1412
1413 if (t) {
1414 if (t->dev != dev)
1415 return -EEXIST;
1416 } else {
1417 t = nt;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001418 }
1419
Nicolas Dichtel6a61d4d2015-12-03 17:21:50 +01001420 ip6gre_tunnel_unlink(ign, t);
1421 ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
1422 ip6gre_tunnel_link(ign, t);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001423 return 0;
1424}
1425
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001426static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
1427{
1428 struct net *net = dev_net(dev);
1429 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1430
1431 if (dev != ign->fb_tunnel_dev)
1432 unregister_netdevice_queue(dev, head);
1433}
1434
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001435static size_t ip6gre_get_size(const struct net_device *dev)
1436{
1437 return
1438 /* IFLA_GRE_LINK */
1439 nla_total_size(4) +
1440 /* IFLA_GRE_IFLAGS */
1441 nla_total_size(2) +
1442 /* IFLA_GRE_OFLAGS */
1443 nla_total_size(2) +
1444 /* IFLA_GRE_IKEY */
1445 nla_total_size(4) +
1446 /* IFLA_GRE_OKEY */
1447 nla_total_size(4) +
1448 /* IFLA_GRE_LOCAL */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001449 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001450 /* IFLA_GRE_REMOTE */
Nicolas Dichtela3754132012-11-09 05:34:56 +00001451 nla_total_size(sizeof(struct in6_addr)) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001452 /* IFLA_GRE_TTL */
1453 nla_total_size(1) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001454 /* IFLA_GRE_ENCAP_LIMIT */
1455 nla_total_size(1) +
1456 /* IFLA_GRE_FLOWINFO */
1457 nla_total_size(4) +
1458 /* IFLA_GRE_FLAGS */
1459 nla_total_size(4) +
Tom Herbert1faf3d92016-05-18 09:06:19 -07001460 /* IFLA_GRE_ENCAP_TYPE */
1461 nla_total_size(2) +
1462 /* IFLA_GRE_ENCAP_FLAGS */
1463 nla_total_size(2) +
1464 /* IFLA_GRE_ENCAP_SPORT */
1465 nla_total_size(2) +
1466 /* IFLA_GRE_ENCAP_DPORT */
1467 nla_total_size(2) +
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001468 0;
1469}
1470
1471static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
1472{
1473 struct ip6_tnl *t = netdev_priv(dev);
1474 struct __ip6_tnl_parm *p = &t->parms;
1475
1476 if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
Tom Herbertf41fe3c2016-05-09 17:12:09 -07001477 nla_put_be16(skb, IFLA_GRE_IFLAGS,
1478 gre_tnl_flags_to_gre_flags(p->i_flags)) ||
1479 nla_put_be16(skb, IFLA_GRE_OFLAGS,
1480 gre_tnl_flags_to_gre_flags(p->o_flags)) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001481 nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
1482 nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
Jiri Benc930345e2015-03-29 16:59:25 +02001483 nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
1484 nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001485 nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001486 nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
1487 nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
1488 nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags))
1489 goto nla_put_failure;
Tom Herbert1faf3d92016-05-18 09:06:19 -07001490
1491 if (nla_put_u16(skb, IFLA_GRE_ENCAP_TYPE,
1492 t->encap.type) ||
1493 nla_put_be16(skb, IFLA_GRE_ENCAP_SPORT,
1494 t->encap.sport) ||
1495 nla_put_be16(skb, IFLA_GRE_ENCAP_DPORT,
1496 t->encap.dport) ||
1497 nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS,
1498 t->encap.flags))
1499 goto nla_put_failure;
1500
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001501 return 0;
1502
1503nla_put_failure:
1504 return -EMSGSIZE;
1505}
1506
1507static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
1508 [IFLA_GRE_LINK] = { .type = NLA_U32 },
1509 [IFLA_GRE_IFLAGS] = { .type = NLA_U16 },
1510 [IFLA_GRE_OFLAGS] = { .type = NLA_U16 },
1511 [IFLA_GRE_IKEY] = { .type = NLA_U32 },
1512 [IFLA_GRE_OKEY] = { .type = NLA_U32 },
1513 [IFLA_GRE_LOCAL] = { .len = FIELD_SIZEOF(struct ipv6hdr, saddr) },
1514 [IFLA_GRE_REMOTE] = { .len = FIELD_SIZEOF(struct ipv6hdr, daddr) },
1515 [IFLA_GRE_TTL] = { .type = NLA_U8 },
1516 [IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
1517 [IFLA_GRE_FLOWINFO] = { .type = NLA_U32 },
1518 [IFLA_GRE_FLAGS] = { .type = NLA_U32 },
Tom Herbert1faf3d92016-05-18 09:06:19 -07001519 [IFLA_GRE_ENCAP_TYPE] = { .type = NLA_U16 },
1520 [IFLA_GRE_ENCAP_FLAGS] = { .type = NLA_U16 },
1521 [IFLA_GRE_ENCAP_SPORT] = { .type = NLA_U16 },
1522 [IFLA_GRE_ENCAP_DPORT] = { .type = NLA_U16 },
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001523};
1524
1525static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
1526 .kind = "ip6gre",
1527 .maxtype = IFLA_GRE_MAX,
1528 .policy = ip6gre_policy,
1529 .priv_size = sizeof(struct ip6_tnl),
1530 .setup = ip6gre_tunnel_setup,
1531 .validate = ip6gre_tunnel_validate,
1532 .newlink = ip6gre_newlink,
1533 .changelink = ip6gre_changelink,
Nicolas Dichtel54d63f782014-04-14 17:11:38 +02001534 .dellink = ip6gre_dellink,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001535 .get_size = ip6gre_get_size,
1536 .fill_info = ip6gre_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01001537 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001538};
1539
1540static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
1541 .kind = "ip6gretap",
1542 .maxtype = IFLA_GRE_MAX,
1543 .policy = ip6gre_policy,
1544 .priv_size = sizeof(struct ip6_tnl),
1545 .setup = ip6gre_tap_setup,
1546 .validate = ip6gre_tap_validate,
1547 .newlink = ip6gre_newlink,
1548 .changelink = ip6gre_changelink,
1549 .get_size = ip6gre_get_size,
1550 .fill_info = ip6gre_fill_info,
Nicolas Dichtel3390e392015-01-20 15:15:43 +01001551 .get_link_net = ip6_tnl_get_link_net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001552};
1553
1554/*
1555 * And now the modules code and kernel interface.
1556 */
1557
1558static int __init ip6gre_init(void)
1559{
1560 int err;
1561
1562 pr_info("GRE over IPv6 tunneling driver\n");
1563
1564 err = register_pernet_device(&ip6gre_net_ops);
1565 if (err < 0)
1566 return err;
1567
1568 err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
1569 if (err < 0) {
1570 pr_info("%s: can't add protocol\n", __func__);
1571 goto add_proto_failed;
1572 }
1573
1574 err = rtnl_link_register(&ip6gre_link_ops);
1575 if (err < 0)
1576 goto rtnl_link_failed;
1577
1578 err = rtnl_link_register(&ip6gre_tap_ops);
1579 if (err < 0)
1580 goto tap_ops_failed;
1581
1582out:
1583 return err;
1584
1585tap_ops_failed:
1586 rtnl_link_unregister(&ip6gre_link_ops);
1587rtnl_link_failed:
1588 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1589add_proto_failed:
1590 unregister_pernet_device(&ip6gre_net_ops);
1591 goto out;
1592}
1593
1594static void __exit ip6gre_fini(void)
1595{
1596 rtnl_link_unregister(&ip6gre_tap_ops);
1597 rtnl_link_unregister(&ip6gre_link_ops);
1598 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1599 unregister_pernet_device(&ip6gre_net_ops);
1600}
1601
1602module_init(ip6gre_init);
1603module_exit(ip6gre_fini);
1604MODULE_LICENSE("GPL");
1605MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
1606MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
1607MODULE_ALIAS_RTNL_LINK("ip6gre");
Nicolas Dichtel5a4ee9a2014-09-24 11:03:00 +02001608MODULE_ALIAS_RTNL_LINK("ip6gretap");
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001609MODULE_ALIAS_NETDEV("ip6gre0");