stmmac: dwmac-socfpga: make socfpga_dwmac_pm_ops static
[deliverable/linux.git] / net / ipv6 / ip6_gre.c
CommitLineData
c12b395a 1/*
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>
c12b395a 27#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>
c5441932 40#include <net/ip_tunnels.h>
c12b395a 41#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>
308edfdf 57#include <net/gre.h>
c12b395a 58
59
eccc1bb8 60static 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
c12b395a 64#define HASH_SIZE_SHIFT 5
65#define HASH_SIZE (1 << HASH_SIZE_SHIFT)
66
67static int ip6gre_net_id __read_mostly;
68struct ip6gre_net {
69 struct ip6_tnl __rcu *tunnels[4][HASH_SIZE];
70
71 struct net_device *fb_tunnel_dev;
72};
73
74static struct rtnl_link_ops ip6gre_link_ops __read_mostly;
22f08069 75static struct rtnl_link_ops ip6gre_tap_ops __read_mostly;
c12b395a 76static 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
99#define HASH_KEY(key) (((__force u32)key^((__force u32)key>>4))&(HASH_SIZE - 1))
100static u32 HASH_ADDR(const struct in6_addr *addr)
101{
102 u32 hash = ipv6_addr_hash(addr);
103
104 return hash_32(hash, HASH_SIZE_SHIFT);
105}
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]
c12b395a 111
c12b395a 112/* 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
e086cadc 128 for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) {
c12b395a 129 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
e086cadc 153 for_each_ip_tunnel_rcu(t, ign->tunnels_r[h0 ^ h1]) {
c12b395a 154 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
e086cadc 177 for_each_ip_tunnel_rcu(t, ign->tunnels_l[h1]) {
c12b395a 178 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
e086cadc 203 for_each_ip_tunnel_rcu(t, ign->tunnels_wc[h1]) {
c12b395a 204 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
53b24b8f 226 if (cand)
c12b395a 227 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);
cd0a0bd9
SK
317 if (t && create)
318 return NULL;
c12b395a 319 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
c835a677
TG
327 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
328 ip6gre_tunnel_setup);
c12b395a 329 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;
0bd87628 339 nt->net = dev_net(dev);
c12b395a 340 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 */
346 if (!(nt->parms.o_flags & GRE_SEQ))
347 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{
22f08069
ND
360 struct ip6_tnl *t = netdev_priv(dev);
361 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id);
c12b395a 362
22f08069 363 ip6gre_tunnel_unlink(ign, t);
607f725f 364 dst_cache_reset(&t->dst_cache);
c12b395a 365 dev_put(dev);
366}
367
368
369static void ip6gre_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
370 u8 type, u8 code, int offset, __be32 info)
371{
372 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *)skb->data;
b87fb39e
ED
373 __be16 *p = (__be16 *)(skb->data + offset);
374 int grehlen = offset + 4;
c12b395a 375 struct ip6_tnl *t;
376 __be16 flags;
377
378 flags = p[0];
379 if (flags&(GRE_CSUM|GRE_KEY|GRE_SEQ|GRE_ROUTING|GRE_VERSION)) {
380 if (flags&(GRE_VERSION|GRE_ROUTING))
381 return;
382 if (flags&GRE_KEY) {
383 grehlen += 4;
384 if (flags&GRE_CSUM)
385 grehlen += 4;
386 }
387 }
388
389 /* If only 8 bytes returned, keyed message will be dropped here */
b87fb39e 390 if (!pskb_may_pull(skb, grehlen))
c12b395a 391 return;
b87fb39e
ED
392 ipv6h = (const struct ipv6hdr *)skb->data;
393 p = (__be16 *)(skb->data + offset);
c12b395a 394
c12b395a 395 t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr,
396 flags & GRE_KEY ?
397 *(((__be32 *)p) + (grehlen / 4) - 1) : 0,
398 p[1]);
63159f29 399 if (!t)
0c5794a6 400 return;
c12b395a 401
402 switch (type) {
403 __u32 teli;
404 struct ipv6_tlv_tnl_enc_lim *tel;
405 __u32 mtu;
406 case ICMPV6_DEST_UNREACH:
a46496ce
MB
407 net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
408 t->parms.name);
c12b395a 409 break;
410 case ICMPV6_TIME_EXCEED:
411 if (code == ICMPV6_EXC_HOPLIMIT) {
a46496ce
MB
412 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
413 t->parms.name);
c12b395a 414 }
415 break;
416 case ICMPV6_PARAMPROB:
417 teli = 0;
418 if (code == ICMPV6_HDR_FIELD)
419 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
420
d1e158e2 421 if (teli && teli == be32_to_cpu(info) - 2) {
c12b395a 422 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
423 if (tel->encap_limit == 0) {
a46496ce
MB
424 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
425 t->parms.name);
c12b395a 426 }
427 } else {
a46496ce
MB
428 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
429 t->parms.name);
c12b395a 430 }
431 break;
432 case ICMPV6_PKT_TOOBIG:
d1e158e2 433 mtu = be32_to_cpu(info) - offset;
c12b395a 434 if (mtu < IPV6_MIN_MTU)
435 mtu = IPV6_MIN_MTU;
436 t->dev->mtu = mtu;
437 break;
438 }
439
440 if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO))
441 t->err_count++;
442 else
443 t->err_count = 1;
444 t->err_time = jiffies;
c12b395a 445}
446
308edfdf 447static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
c12b395a 448{
449 const struct ipv6hdr *ipv6h;
c12b395a 450 struct ip6_tnl *tunnel;
c12b395a 451
452 ipv6h = ipv6_hdr(skb);
c12b395a 453 tunnel = ip6gre_tunnel_lookup(skb->dev,
308edfdf
TH
454 &ipv6h->saddr, &ipv6h->daddr, tpi->key,
455 tpi->proto);
c12b395a 456 if (tunnel) {
308edfdf 457 ip6_tnl_rcv(tunnel, skb, tpi, NULL, false);
c12b395a 458
308edfdf
TH
459 return PACKET_RCVD;
460 }
eccc1bb8 461
308edfdf
TH
462 return PACKET_REJECT;
463}
eccc1bb8 464
308edfdf
TH
465static int gre_rcv(struct sk_buff *skb)
466{
467 struct tnl_ptk_info tpi;
468 bool csum_err = false;
469 int hdr_len;
eccc1bb8 470
f132ae7c
JB
471 hdr_len = gre_parse_header(skb, &tpi, &csum_err);
472 if (hdr_len < 0)
308edfdf 473 goto drop;
c12b395a 474
308edfdf
TH
475 if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false))
476 goto drop;
c12b395a 477
308edfdf 478 if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD)
c12b395a 479 return 0;
c12b395a 480
308edfdf 481 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
c12b395a 482drop:
c12b395a 483 kfree_skb(skb);
484 return 0;
485}
486
487struct ipv6_tel_txoption {
488 struct ipv6_txoptions ops;
489 __u8 dst_opt[8];
490};
491
b05229f4 492static int gre_handle_offloads(struct sk_buff *skb, bool csum)
c12b395a 493{
b05229f4
TH
494 return iptunnel_handle_offloads(skb,
495 csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE);
c12b395a 496}
497
b05229f4
TH
498static netdev_tx_t __gre6_xmit(struct sk_buff *skb,
499 struct net_device *dev, __u8 dsfield,
500 struct flowi6 *fl6, int encap_limit,
501 __u32 *pmtu, __be16 proto)
c12b395a 502{
c12b395a 503 struct ip6_tnl *tunnel = netdev_priv(dev);
b05229f4
TH
504 __be16 protocol = (dev->type == ARPHRD_ETHER) ?
505 htons(ETH_P_TEB) : proto;
c12b395a 506
507 if (dev->type == ARPHRD_ETHER)
508 IPCB(skb)->flags = 0;
509
b05229f4
TH
510 if (dev->header_ops && dev->type == ARPHRD_IP6GRE)
511 fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr;
512 else
c12b395a 513 fl6->daddr = tunnel->parms.raddr;
c12b395a 514
b05229f4
TH
515 if (tunnel->parms.o_flags & TUNNEL_SEQ)
516 tunnel->o_seqno++;
c12b395a 517
b05229f4
TH
518 /* Push GRE header. */
519 gre_build_header(skb, tunnel->tun_hlen, tunnel->parms.o_flags,
520 protocol, tunnel->parms.o_key, htonl(tunnel->o_seqno));
c12b395a 521
b05229f4 522 skb_set_inner_protocol(skb, proto);
c12b395a 523
b05229f4
TH
524 return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu,
525 NEXTHDR_GRE);
c12b395a 526}
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
5146d1f1
BH
538 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
539
c12b395a 540 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));
c12b395a 544
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
b05229f4
TH
553 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);
c12b395a 559 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));
c12b395a 598
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)
3308de2b 603 fl6.flowlabel |= ip6_flowlabel(ipv6h);
c12b395a 604 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
605 fl6.flowi6_mark = skb->mark;
606
b05229f4
TH
607 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);
c12b395a 612 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));
653 fl6.flowi6_proto = skb->protocol;
654
b05229f4
TH
655 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM));
656 if (err)
657 return err;
658
659 err = __gre6_xmit(skb, dev, 0, &fl6, encap_limit, &mtu, skb->protocol);
c12b395a 660
661 return err;
662}
663
664static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb,
665 struct net_device *dev)
666{
667 struct ip6_tnl *t = netdev_priv(dev);
668 struct net_device_stats *stats = &t->dev->stats;
669 int ret;
670
d5005140 671 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr))
41ab3e31 672 goto tx_err;
c12b395a 673
674 switch (skb->protocol) {
675 case htons(ETH_P_IP):
676 ret = ip6gre_xmit_ipv4(skb, dev);
677 break;
678 case htons(ETH_P_IPV6):
679 ret = ip6gre_xmit_ipv6(skb, dev);
680 break;
681 default:
682 ret = ip6gre_xmit_other(skb, dev);
683 break;
684 }
685
686 if (ret < 0)
687 goto tx_err;
688
689 return NETDEV_TX_OK;
690
691tx_err:
692 stats->tx_errors++;
693 stats->tx_dropped++;
694 kfree_skb(skb);
695 return NETDEV_TX_OK;
696}
697
698static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu)
699{
700 struct net_device *dev = t->dev;
701 struct __ip6_tnl_parm *p = &t->parms;
702 struct flowi6 *fl6 = &t->fl.u.ip6;
703 int addend = sizeof(struct ipv6hdr) + 4;
704
705 if (dev->type != ARPHRD_ETHER) {
706 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
707 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
708 }
709
710 /* Set up flowi template */
711 fl6->saddr = p->laddr;
712 fl6->daddr = p->raddr;
713 fl6->flowi6_oif = p->link;
714 fl6->flowlabel = 0;
715
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
c12b395a 730 /* Precalculate GRE options length */
731 if (t->parms.o_flags&(GRE_CSUM|GRE_KEY|GRE_SEQ)) {
732 if (t->parms.o_flags&GRE_CSUM)
733 addend += 4;
734 if (t->parms.o_flags&GRE_KEY)
735 addend += 4;
736 if (t->parms.o_flags&GRE_SEQ)
737 addend += 4;
738 }
bf581759 739 t->hlen = addend;
c12b395a 740
741 if (p->flags & IP6_TNL_F_CAP_XMIT) {
742 int strict = (ipv6_addr_type(&p->raddr) &
743 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
744
22f08069 745 struct rt6_info *rt = rt6_lookup(t->net,
c12b395a 746 &p->raddr, &p->laddr,
747 p->link, strict);
748
63159f29 749 if (!rt)
c12b395a 750 return;
751
752 if (rt->dst.dev) {
753 dev->hard_header_len = rt->dst.dev->hard_header_len + addend;
754
755 if (set_mtu) {
756 dev->mtu = rt->dst.dev->mtu - addend;
757 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
758 dev->mtu -= 8;
a9e242ca
AD
759 if (dev->type == ARPHRD_ETHER)
760 dev->mtu -= ETH_HLEN;
c12b395a 761
762 if (dev->mtu < IPV6_MIN_MTU)
763 dev->mtu = IPV6_MIN_MTU;
764 }
765 }
94e187c0 766 ip6_rt_put(rt);
c12b395a 767 }
c12b395a 768}
769
770static int ip6gre_tnl_change(struct ip6_tnl *t,
771 const struct __ip6_tnl_parm *p, int set_mtu)
772{
773 t->parms.laddr = p->laddr;
774 t->parms.raddr = p->raddr;
775 t->parms.flags = p->flags;
776 t->parms.hop_limit = p->hop_limit;
777 t->parms.encap_limit = p->encap_limit;
778 t->parms.flowinfo = p->flowinfo;
779 t->parms.link = p->link;
780 t->parms.proto = p->proto;
781 t->parms.i_key = p->i_key;
782 t->parms.o_key = p->o_key;
783 t->parms.i_flags = p->i_flags;
784 t->parms.o_flags = p->o_flags;
607f725f 785 dst_cache_reset(&t->dst_cache);
c12b395a 786 ip6gre_tnl_link_config(t, set_mtu);
787 return 0;
788}
789
790static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p,
791 const struct ip6_tnl_parm2 *u)
792{
793 p->laddr = u->laddr;
794 p->raddr = u->raddr;
795 p->flags = u->flags;
796 p->hop_limit = u->hop_limit;
797 p->encap_limit = u->encap_limit;
798 p->flowinfo = u->flowinfo;
799 p->link = u->link;
800 p->i_key = u->i_key;
801 p->o_key = u->o_key;
802 p->i_flags = u->i_flags;
803 p->o_flags = u->o_flags;
804 memcpy(p->name, u->name, sizeof(u->name));
805}
806
807static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u,
808 const struct __ip6_tnl_parm *p)
809{
810 u->proto = IPPROTO_GRE;
811 u->laddr = p->laddr;
812 u->raddr = p->raddr;
813 u->flags = p->flags;
814 u->hop_limit = p->hop_limit;
815 u->encap_limit = p->encap_limit;
816 u->flowinfo = p->flowinfo;
817 u->link = p->link;
818 u->i_key = p->i_key;
819 u->o_key = p->o_key;
820 u->i_flags = p->i_flags;
821 u->o_flags = p->o_flags;
822 memcpy(u->name, p->name, sizeof(u->name));
823}
824
825static int ip6gre_tunnel_ioctl(struct net_device *dev,
826 struct ifreq *ifr, int cmd)
827{
828 int err = 0;
829 struct ip6_tnl_parm2 p;
830 struct __ip6_tnl_parm p1;
22f08069
ND
831 struct ip6_tnl *t = netdev_priv(dev);
832 struct net *net = t->net;
c12b395a 833 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
834
308edfdf
TH
835 memset(&p1, 0, sizeof(p1));
836
c12b395a 837 switch (cmd) {
838 case SIOCGETTUNNEL:
c12b395a 839 if (dev == ign->fb_tunnel_dev) {
840 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
841 err = -EFAULT;
842 break;
843 }
844 ip6gre_tnl_parm_from_user(&p1, &p);
845 t = ip6gre_tunnel_locate(net, &p1, 0);
63159f29 846 if (!t)
22f08069 847 t = netdev_priv(dev);
c12b395a 848 }
5dbd5068 849 memset(&p, 0, sizeof(p));
c12b395a 850 ip6gre_tnl_parm_to_user(&p, &t->parms);
851 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
852 err = -EFAULT;
853 break;
854
855 case SIOCADDTUNNEL:
856 case SIOCCHGTUNNEL:
857 err = -EPERM;
af31f412 858 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
c12b395a 859 goto done;
860
861 err = -EFAULT;
862 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
863 goto done;
864
865 err = -EINVAL;
866 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING))
867 goto done;
868
869 if (!(p.i_flags&GRE_KEY))
870 p.i_key = 0;
871 if (!(p.o_flags&GRE_KEY))
872 p.o_key = 0;
873
874 ip6gre_tnl_parm_from_user(&p1, &p);
875 t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL);
876
877 if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
53b24b8f 878 if (t) {
c12b395a 879 if (t->dev != dev) {
880 err = -EEXIST;
881 break;
882 }
883 } else {
884 t = netdev_priv(dev);
885
886 ip6gre_tunnel_unlink(ign, t);
887 synchronize_net();
888 ip6gre_tnl_change(t, &p1, 1);
889 ip6gre_tunnel_link(ign, t);
890 netdev_state_change(dev);
891 }
892 }
893
894 if (t) {
895 err = 0;
896
5dbd5068 897 memset(&p, 0, sizeof(p));
c12b395a 898 ip6gre_tnl_parm_to_user(&p, &t->parms);
899 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
900 err = -EFAULT;
901 } else
902 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
903 break;
904
905 case SIOCDELTUNNEL:
906 err = -EPERM;
af31f412 907 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
c12b395a 908 goto done;
909
910 if (dev == ign->fb_tunnel_dev) {
911 err = -EFAULT;
912 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
913 goto done;
914 err = -ENOENT;
915 ip6gre_tnl_parm_from_user(&p1, &p);
916 t = ip6gre_tunnel_locate(net, &p1, 0);
63159f29 917 if (!t)
c12b395a 918 goto done;
919 err = -EPERM;
920 if (t == netdev_priv(ign->fb_tunnel_dev))
921 goto done;
922 dev = t->dev;
923 }
924 unregister_netdevice(dev);
925 err = 0;
926 break;
927
928 default:
929 err = -EINVAL;
930 }
931
932done:
933 return err;
934}
935
c12b395a 936static int ip6gre_header(struct sk_buff *skb, struct net_device *dev,
937 unsigned short type,
938 const void *daddr, const void *saddr, unsigned int len)
939{
940 struct ip6_tnl *t = netdev_priv(dev);
941 struct ipv6hdr *ipv6h = (struct ipv6hdr *)skb_push(skb, t->hlen);
942 __be16 *p = (__be16 *)(ipv6h+1);
943
cb1ce2ef
TH
944 ip6_flow_hdr(ipv6h, 0,
945 ip6_make_flowlabel(dev_net(dev), skb,
42240901 946 t->fl.u.ip6.flowlabel, true,
67800f9b 947 &t->fl.u.ip6));
c12b395a 948 ipv6h->hop_limit = t->parms.hop_limit;
949 ipv6h->nexthdr = NEXTHDR_GRE;
950 ipv6h->saddr = t->parms.laddr;
951 ipv6h->daddr = t->parms.raddr;
952
953 p[0] = t->parms.o_flags;
954 p[1] = htons(type);
955
956 /*
957 * Set the source hardware address.
958 */
959
960 if (saddr)
961 memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr));
962 if (daddr)
963 memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr));
964 if (!ipv6_addr_any(&ipv6h->daddr))
965 return t->hlen;
966
967 return -t->hlen;
968}
969
c12b395a 970static const struct header_ops ip6gre_header_ops = {
971 .create = ip6gre_header,
c12b395a 972};
973
974static const struct net_device_ops ip6gre_netdev_ops = {
975 .ndo_init = ip6gre_tunnel_init,
976 .ndo_uninit = ip6gre_tunnel_uninit,
977 .ndo_start_xmit = ip6gre_tunnel_xmit,
978 .ndo_do_ioctl = ip6gre_tunnel_ioctl,
b05229f4 979 .ndo_change_mtu = ip6_tnl_change_mtu,
f61dd388 980 .ndo_get_stats64 = ip_tunnel_get_stats64,
ecf2c06a 981 .ndo_get_iflink = ip6_tnl_get_iflink,
c12b395a 982};
983
984static void ip6gre_dev_free(struct net_device *dev)
985{
cdf3464e
MKL
986 struct ip6_tnl *t = netdev_priv(dev);
987
607f725f 988 dst_cache_destroy(&t->dst_cache);
c12b395a 989 free_percpu(dev->tstats);
990 free_netdev(dev);
991}
992
993static void ip6gre_tunnel_setup(struct net_device *dev)
994{
c12b395a 995 dev->netdev_ops = &ip6gre_netdev_ops;
996 dev->destructor = ip6gre_dev_free;
997
998 dev->type = ARPHRD_IP6GRE;
b05229f4 999
c12b395a 1000 dev->flags |= IFF_NOARP;
c12b395a 1001 dev->addr_len = sizeof(struct in6_addr);
02875878 1002 netif_keep_dst(dev);
c12b395a 1003}
1004
a3c119d3 1005static int ip6gre_tunnel_init_common(struct net_device *dev)
c12b395a 1006{
1007 struct ip6_tnl *tunnel;
cdf3464e 1008 int ret;
b05229f4 1009 int t_hlen;
c12b395a 1010
1011 tunnel = netdev_priv(dev);
1012
1013 tunnel->dev = dev;
0bd87628 1014 tunnel->net = dev_net(dev);
c12b395a 1015 strcpy(tunnel->parms.name, dev->name);
1016
a3c119d3
MKL
1017 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1018 if (!dev->tstats)
1019 return -ENOMEM;
1020
607f725f 1021 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
cdf3464e
MKL
1022 if (ret) {
1023 free_percpu(dev->tstats);
1024 dev->tstats = NULL;
1025 return ret;
1026 }
1027
b05229f4
TH
1028 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags);
1029
1030 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr);
1031
1032 dev->needed_headroom = LL_MAX_HEADER + t_hlen + 4;
1033 dev->mtu = ETH_DATA_LEN - t_hlen - 4;
1034
1035 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1036 dev->mtu -= 8;
1037
a3c119d3
MKL
1038 return 0;
1039}
1040
1041static int ip6gre_tunnel_init(struct net_device *dev)
1042{
1043 struct ip6_tnl *tunnel;
1044 int ret;
1045
1046 ret = ip6gre_tunnel_init_common(dev);
1047 if (ret)
1048 return ret;
1049
1050 tunnel = netdev_priv(dev);
1051
c12b395a 1052 memcpy(dev->dev_addr, &tunnel->parms.laddr, sizeof(struct in6_addr));
1053 memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr));
1054
1055 if (ipv6_addr_any(&tunnel->parms.raddr))
1056 dev->header_ops = &ip6gre_header_ops;
1057
c12b395a 1058 return 0;
1059}
1060
1061static void ip6gre_fb_tunnel_init(struct net_device *dev)
1062{
1063 struct ip6_tnl *tunnel = netdev_priv(dev);
1064
1065 tunnel->dev = dev;
0bd87628 1066 tunnel->net = dev_net(dev);
c12b395a 1067 strcpy(tunnel->parms.name, dev->name);
1068
1069 tunnel->hlen = sizeof(struct ipv6hdr) + 4;
1070
1071 dev_hold(dev);
1072}
1073
1074
1075static struct inet6_protocol ip6gre_protocol __read_mostly = {
308edfdf 1076 .handler = gre_rcv,
c12b395a 1077 .err_handler = ip6gre_err,
1078 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1079};
1080
22f08069 1081static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head)
c12b395a 1082{
22f08069
ND
1083 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1084 struct net_device *dev, *aux;
c12b395a 1085 int prio;
1086
22f08069
ND
1087 for_each_netdev_safe(net, dev, aux)
1088 if (dev->rtnl_link_ops == &ip6gre_link_ops ||
1089 dev->rtnl_link_ops == &ip6gre_tap_ops)
1090 unregister_netdevice_queue(dev, head);
1091
c12b395a 1092 for (prio = 0; prio < 4; prio++) {
1093 int h;
1094 for (h = 0; h < HASH_SIZE; h++) {
1095 struct ip6_tnl *t;
1096
1097 t = rtnl_dereference(ign->tunnels[prio][h]);
1098
53b24b8f 1099 while (t) {
22f08069
ND
1100 /* If dev is in the same netns, it has already
1101 * been added to the list by the previous loop.
1102 */
1103 if (!net_eq(dev_net(t->dev), net))
1104 unregister_netdevice_queue(t->dev,
1105 head);
c12b395a 1106 t = rtnl_dereference(t->next);
1107 }
1108 }
1109 }
1110}
1111
1112static int __net_init ip6gre_init_net(struct net *net)
1113{
1114 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1115 int err;
1116
1117 ign->fb_tunnel_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0",
c835a677
TG
1118 NET_NAME_UNKNOWN,
1119 ip6gre_tunnel_setup);
c12b395a 1120 if (!ign->fb_tunnel_dev) {
1121 err = -ENOMEM;
1122 goto err_alloc_dev;
1123 }
1124 dev_net_set(ign->fb_tunnel_dev, net);
22f08069
ND
1125 /* FB netdevice is special: we have one, and only one per netns.
1126 * Allowing to move it to another netns is clearly unsafe.
1127 */
1128 ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1129
c12b395a 1130
1131 ip6gre_fb_tunnel_init(ign->fb_tunnel_dev);
1132 ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops;
1133
1134 err = register_netdev(ign->fb_tunnel_dev);
1135 if (err)
1136 goto err_reg_dev;
1137
1138 rcu_assign_pointer(ign->tunnels_wc[0],
1139 netdev_priv(ign->fb_tunnel_dev));
1140 return 0;
1141
1142err_reg_dev:
1143 ip6gre_dev_free(ign->fb_tunnel_dev);
1144err_alloc_dev:
1145 return err;
1146}
1147
1148static void __net_exit ip6gre_exit_net(struct net *net)
1149{
c12b395a 1150 LIST_HEAD(list);
1151
c12b395a 1152 rtnl_lock();
22f08069 1153 ip6gre_destroy_tunnels(net, &list);
c12b395a 1154 unregister_netdevice_many(&list);
1155 rtnl_unlock();
1156}
1157
1158static struct pernet_operations ip6gre_net_ops = {
1159 .init = ip6gre_init_net,
1160 .exit = ip6gre_exit_net,
1161 .id = &ip6gre_net_id,
1162 .size = sizeof(struct ip6gre_net),
1163};
1164
1165static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
1166{
1167 __be16 flags;
1168
1169 if (!data)
1170 return 0;
1171
1172 flags = 0;
1173 if (data[IFLA_GRE_IFLAGS])
1174 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]);
1175 if (data[IFLA_GRE_OFLAGS])
1176 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]);
1177 if (flags & (GRE_VERSION|GRE_ROUTING))
1178 return -EINVAL;
1179
1180 return 0;
1181}
1182
1183static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[])
1184{
1185 struct in6_addr daddr;
1186
1187 if (tb[IFLA_ADDRESS]) {
1188 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1189 return -EINVAL;
1190 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1191 return -EADDRNOTAVAIL;
1192 }
1193
1194 if (!data)
1195 goto out;
1196
1197 if (data[IFLA_GRE_REMOTE]) {
67b61f6c 1198 daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
c12b395a 1199 if (ipv6_addr_any(&daddr))
1200 return -EINVAL;
1201 }
1202
1203out:
1204 return ip6gre_tunnel_validate(tb, data);
1205}
1206
1207
1208static void ip6gre_netlink_parms(struct nlattr *data[],
1209 struct __ip6_tnl_parm *parms)
1210{
1211 memset(parms, 0, sizeof(*parms));
1212
1213 if (!data)
1214 return;
1215
1216 if (data[IFLA_GRE_LINK])
1217 parms->link = nla_get_u32(data[IFLA_GRE_LINK]);
1218
1219 if (data[IFLA_GRE_IFLAGS])
1220 parms->i_flags = nla_get_be16(data[IFLA_GRE_IFLAGS]);
1221
1222 if (data[IFLA_GRE_OFLAGS])
1223 parms->o_flags = nla_get_be16(data[IFLA_GRE_OFLAGS]);
1224
1225 if (data[IFLA_GRE_IKEY])
1226 parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]);
1227
1228 if (data[IFLA_GRE_OKEY])
1229 parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]);
1230
1231 if (data[IFLA_GRE_LOCAL])
67b61f6c 1232 parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]);
c12b395a 1233
1234 if (data[IFLA_GRE_REMOTE])
67b61f6c 1235 parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]);
c12b395a 1236
1237 if (data[IFLA_GRE_TTL])
1238 parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]);
1239
1240 if (data[IFLA_GRE_ENCAP_LIMIT])
1241 parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]);
1242
1243 if (data[IFLA_GRE_FLOWINFO])
1244 parms->flowinfo = nla_get_u32(data[IFLA_GRE_FLOWINFO]);
1245
1246 if (data[IFLA_GRE_FLAGS])
1247 parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]);
1248}
1249
1250static int ip6gre_tap_init(struct net_device *dev)
1251{
1252 struct ip6_tnl *tunnel;
a3c119d3 1253 int ret;
c12b395a 1254
a3c119d3
MKL
1255 ret = ip6gre_tunnel_init_common(dev);
1256 if (ret)
1257 return ret;
c12b395a 1258
a3c119d3 1259 tunnel = netdev_priv(dev);
c12b395a 1260
1261 ip6gre_tnl_link_config(tunnel, 1);
1262
c12b395a 1263 return 0;
1264}
1265
1266static const struct net_device_ops ip6gre_tap_netdev_ops = {
1267 .ndo_init = ip6gre_tap_init,
1268 .ndo_uninit = ip6gre_tunnel_uninit,
1269 .ndo_start_xmit = ip6gre_tunnel_xmit,
1270 .ndo_set_mac_address = eth_mac_addr,
1271 .ndo_validate_addr = eth_validate_addr,
b05229f4 1272 .ndo_change_mtu = ip6_tnl_change_mtu,
f61dd388 1273 .ndo_get_stats64 = ip_tunnel_get_stats64,
ecf2c06a 1274 .ndo_get_iflink = ip6_tnl_get_iflink,
c12b395a 1275};
1276
ac4eb009
AD
1277#define GRE6_FEATURES (NETIF_F_SG | \
1278 NETIF_F_FRAGLIST | \
1279 NETIF_F_HIGHDMA | \
1280 NETIF_F_HW_CSUM)
1281
c12b395a 1282static void ip6gre_tap_setup(struct net_device *dev)
1283{
1284
1285 ether_setup(dev);
1286
1287 dev->netdev_ops = &ip6gre_tap_netdev_ops;
1288 dev->destructor = ip6gre_dev_free;
1289
c12b395a 1290 dev->features |= NETIF_F_NETNS_LOCAL;
d13b161c 1291 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
c12b395a 1292}
1293
1294static int ip6gre_newlink(struct net *src_net, struct net_device *dev,
1295 struct nlattr *tb[], struct nlattr *data[])
1296{
1297 struct ip6_tnl *nt;
1298 struct net *net = dev_net(dev);
1299 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1300 int err;
1301
1302 nt = netdev_priv(dev);
1303 ip6gre_netlink_parms(data, &nt->parms);
1304
1305 if (ip6gre_tunnel_find(net, &nt->parms, dev->type))
1306 return -EEXIST;
1307
1308 if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS])
1309 eth_hw_addr_random(dev);
1310
1311 nt->dev = dev;
0bd87628 1312 nt->net = dev_net(dev);
c12b395a 1313 ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]);
1314
ac4eb009
AD
1315 dev->features |= GRE6_FEATURES;
1316 dev->hw_features |= GRE6_FEATURES;
1317
3a80e1fa
AD
1318 if (!(nt->parms.o_flags & GRE_SEQ)) {
1319 /* TCP segmentation offload is not supported when we
1320 * generate output sequences.
1321 */
1322 dev->features |= NETIF_F_GSO_SOFTWARE;
1323 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1324
1325 /* Can use a lockless transmit, unless we generate
1326 * output sequences
1327 */
c12b395a 1328 dev->features |= NETIF_F_LLTX;
3a80e1fa 1329 }
c12b395a 1330
1331 err = register_netdevice(dev);
1332 if (err)
1333 goto out;
1334
1335 dev_hold(dev);
1336 ip6gre_tunnel_link(ign, nt);
1337
1338out:
1339 return err;
1340}
1341
1342static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[],
1343 struct nlattr *data[])
1344{
22f08069
ND
1345 struct ip6_tnl *t, *nt = netdev_priv(dev);
1346 struct net *net = nt->net;
c12b395a 1347 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1348 struct __ip6_tnl_parm p;
1349
1350 if (dev == ign->fb_tunnel_dev)
1351 return -EINVAL;
1352
c12b395a 1353 ip6gre_netlink_parms(data, &p);
1354
1355 t = ip6gre_tunnel_locate(net, &p, 0);
1356
1357 if (t) {
1358 if (t->dev != dev)
1359 return -EEXIST;
1360 } else {
1361 t = nt;
c12b395a 1362 }
1363
6a61d4db
ND
1364 ip6gre_tunnel_unlink(ign, t);
1365 ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]);
1366 ip6gre_tunnel_link(ign, t);
c12b395a 1367 return 0;
1368}
1369
54d63f78
ND
1370static void ip6gre_dellink(struct net_device *dev, struct list_head *head)
1371{
1372 struct net *net = dev_net(dev);
1373 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id);
1374
1375 if (dev != ign->fb_tunnel_dev)
1376 unregister_netdevice_queue(dev, head);
1377}
1378
c12b395a 1379static size_t ip6gre_get_size(const struct net_device *dev)
1380{
1381 return
1382 /* IFLA_GRE_LINK */
1383 nla_total_size(4) +
1384 /* IFLA_GRE_IFLAGS */
1385 nla_total_size(2) +
1386 /* IFLA_GRE_OFLAGS */
1387 nla_total_size(2) +
1388 /* IFLA_GRE_IKEY */
1389 nla_total_size(4) +
1390 /* IFLA_GRE_OKEY */
1391 nla_total_size(4) +
1392 /* IFLA_GRE_LOCAL */
a3754133 1393 nla_total_size(sizeof(struct in6_addr)) +
c12b395a 1394 /* IFLA_GRE_REMOTE */
a3754133 1395 nla_total_size(sizeof(struct in6_addr)) +
c12b395a 1396 /* IFLA_GRE_TTL */
1397 nla_total_size(1) +
1398 /* IFLA_GRE_TOS */
1399 nla_total_size(1) +
1400 /* IFLA_GRE_ENCAP_LIMIT */
1401 nla_total_size(1) +
1402 /* IFLA_GRE_FLOWINFO */
1403 nla_total_size(4) +
1404 /* IFLA_GRE_FLAGS */
1405 nla_total_size(4) +
1406 0;
1407}
1408
1409static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
1410{
1411 struct ip6_tnl *t = netdev_priv(dev);
1412 struct __ip6_tnl_parm *p = &t->parms;
1413
1414 if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) ||
1415 nla_put_be16(skb, IFLA_GRE_IFLAGS, p->i_flags) ||
1416 nla_put_be16(skb, IFLA_GRE_OFLAGS, p->o_flags) ||
1417 nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) ||
1418 nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) ||
930345ea
JB
1419 nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
1420 nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
c12b395a 1421 nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
1422 /*nla_put_u8(skb, IFLA_GRE_TOS, t->priority) ||*/
1423 nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
1424 nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
1425 nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags))
1426 goto nla_put_failure;
1427 return 0;
1428
1429nla_put_failure:
1430 return -EMSGSIZE;
1431}
1432
1433static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
1434 [IFLA_GRE_LINK] = { .type = NLA_U32 },
1435 [IFLA_GRE_IFLAGS] = { .type = NLA_U16 },
1436 [IFLA_GRE_OFLAGS] = { .type = NLA_U16 },
1437 [IFLA_GRE_IKEY] = { .type = NLA_U32 },
1438 [IFLA_GRE_OKEY] = { .type = NLA_U32 },
1439 [IFLA_GRE_LOCAL] = { .len = FIELD_SIZEOF(struct ipv6hdr, saddr) },
1440 [IFLA_GRE_REMOTE] = { .len = FIELD_SIZEOF(struct ipv6hdr, daddr) },
1441 [IFLA_GRE_TTL] = { .type = NLA_U8 },
1442 [IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 },
1443 [IFLA_GRE_FLOWINFO] = { .type = NLA_U32 },
1444 [IFLA_GRE_FLAGS] = { .type = NLA_U32 },
1445};
1446
1447static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
1448 .kind = "ip6gre",
1449 .maxtype = IFLA_GRE_MAX,
1450 .policy = ip6gre_policy,
1451 .priv_size = sizeof(struct ip6_tnl),
1452 .setup = ip6gre_tunnel_setup,
1453 .validate = ip6gre_tunnel_validate,
1454 .newlink = ip6gre_newlink,
1455 .changelink = ip6gre_changelink,
54d63f78 1456 .dellink = ip6gre_dellink,
c12b395a 1457 .get_size = ip6gre_get_size,
1458 .fill_info = ip6gre_fill_info,
1728d4fa 1459 .get_link_net = ip6_tnl_get_link_net,
c12b395a 1460};
1461
1462static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
1463 .kind = "ip6gretap",
1464 .maxtype = IFLA_GRE_MAX,
1465 .policy = ip6gre_policy,
1466 .priv_size = sizeof(struct ip6_tnl),
1467 .setup = ip6gre_tap_setup,
1468 .validate = ip6gre_tap_validate,
1469 .newlink = ip6gre_newlink,
1470 .changelink = ip6gre_changelink,
1471 .get_size = ip6gre_get_size,
1472 .fill_info = ip6gre_fill_info,
3390e397 1473 .get_link_net = ip6_tnl_get_link_net,
c12b395a 1474};
1475
1476/*
1477 * And now the modules code and kernel interface.
1478 */
1479
1480static int __init ip6gre_init(void)
1481{
1482 int err;
1483
1484 pr_info("GRE over IPv6 tunneling driver\n");
1485
1486 err = register_pernet_device(&ip6gre_net_ops);
1487 if (err < 0)
1488 return err;
1489
1490 err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE);
1491 if (err < 0) {
1492 pr_info("%s: can't add protocol\n", __func__);
1493 goto add_proto_failed;
1494 }
1495
1496 err = rtnl_link_register(&ip6gre_link_ops);
1497 if (err < 0)
1498 goto rtnl_link_failed;
1499
1500 err = rtnl_link_register(&ip6gre_tap_ops);
1501 if (err < 0)
1502 goto tap_ops_failed;
1503
1504out:
1505 return err;
1506
1507tap_ops_failed:
1508 rtnl_link_unregister(&ip6gre_link_ops);
1509rtnl_link_failed:
1510 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1511add_proto_failed:
1512 unregister_pernet_device(&ip6gre_net_ops);
1513 goto out;
1514}
1515
1516static void __exit ip6gre_fini(void)
1517{
1518 rtnl_link_unregister(&ip6gre_tap_ops);
1519 rtnl_link_unregister(&ip6gre_link_ops);
1520 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE);
1521 unregister_pernet_device(&ip6gre_net_ops);
1522}
1523
1524module_init(ip6gre_init);
1525module_exit(ip6gre_fini);
1526MODULE_LICENSE("GPL");
1527MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
1528MODULE_DESCRIPTION("GRE over IPv6 tunneling device");
1529MODULE_ALIAS_RTNL_LINK("ip6gre");
5a4ee9a9 1530MODULE_ALIAS_RTNL_LINK("ip6gretap");
c12b395a 1531MODULE_ALIAS_NETDEV("ip6gre0");
This page took 0.440278 seconds and 5 git commands to generate.