1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * GRE over IPv6 protocol decoder. 4 * 5 * Authors: Dmitry Kozlov (xeb@mail.ru) 6 */ 7 8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 9 10 #include <linux/capability.h> 11 #include <linux/module.h> 12 #include <linux/types.h> 13 #include <linux/kernel.h> 14 #include <linux/slab.h> 15 #include <linux/uaccess.h> 16 #include <linux/skbuff.h> 17 #include <linux/netdevice.h> 18 #include <linux/in.h> 19 #include <linux/tcp.h> 20 #include <linux/udp.h> 21 #include <linux/if_arp.h> 22 #include <linux/init.h> 23 #include <linux/in6.h> 24 #include <linux/inetdevice.h> 25 #include <linux/igmp.h> 26 #include <linux/netfilter_ipv4.h> 27 #include <linux/etherdevice.h> 28 #include <linux/if_ether.h> 29 #include <linux/hash.h> 30 #include <linux/if_tunnel.h> 31 #include <linux/ip6_tunnel.h> 32 33 #include <net/sock.h> 34 #include <net/ip.h> 35 #include <net/ip_tunnels.h> 36 #include <net/icmp.h> 37 #include <net/protocol.h> 38 #include <net/addrconf.h> 39 #include <net/arp.h> 40 #include <net/checksum.h> 41 #include <net/dsfield.h> 42 #include <net/inet_ecn.h> 43 #include <net/xfrm.h> 44 #include <net/net_namespace.h> 45 #include <net/netns/generic.h> 46 #include <net/rtnetlink.h> 47 48 #include <net/ipv6.h> 49 #include <net/ip6_fib.h> 50 #include <net/ip6_route.h> 51 #include <net/ip6_tunnel.h> 52 #include <net/gre.h> 53 #include <net/erspan.h> 54 #include <net/dst_metadata.h> 55 56 57 static bool log_ecn_error = true; 58 module_param(log_ecn_error, bool, 0644); 59 MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN"); 60 61 #define IP6_GRE_HASH_SIZE_SHIFT 5 62 #define IP6_GRE_HASH_SIZE (1 << IP6_GRE_HASH_SIZE_SHIFT) 63 64 static unsigned int ip6gre_net_id __read_mostly; 65 struct ip6gre_net { 66 struct ip6_tnl __rcu *tunnels[4][IP6_GRE_HASH_SIZE]; 67 68 struct ip6_tnl __rcu *collect_md_tun; 69 struct ip6_tnl __rcu *collect_md_tun_erspan; 70 struct net_device *fb_tunnel_dev; 71 }; 72 73 static struct rtnl_link_ops ip6gre_link_ops __read_mostly; 74 static struct rtnl_link_ops ip6gre_tap_ops __read_mostly; 75 static struct rtnl_link_ops ip6erspan_tap_ops __read_mostly; 76 static int ip6gre_tunnel_init(struct net_device *dev); 77 static void ip6gre_tunnel_setup(struct net_device *dev); 78 static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t); 79 static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu); 80 static void ip6erspan_tnl_link_config(struct ip6_tnl *t, int set_mtu); 81 82 /* Tunnel hash table */ 83 84 /* 85 4 hash tables: 86 87 3: (remote,local) 88 2: (remote,*) 89 1: (*,local) 90 0: (*,*) 91 92 We require exact key match i.e. if a key is present in packet 93 it will match only tunnel with the same key; if it is not present, 94 it will match only keyless tunnel. 95 96 All keysless packets, if not matched configured keyless tunnels 97 will match fallback tunnel. 98 */ 99 100 #define HASH_KEY(key) (((__force u32)key^((__force u32)key>>4))&(IP6_GRE_HASH_SIZE - 1)) 101 static u32 HASH_ADDR(const struct in6_addr *addr) 102 { 103 u32 hash = ipv6_addr_hash(addr); 104 105 return hash_32(hash, IP6_GRE_HASH_SIZE_SHIFT); 106 } 107 108 #define tunnels_r_l tunnels[3] 109 #define tunnels_r tunnels[2] 110 #define tunnels_l tunnels[1] 111 #define tunnels_wc tunnels[0] 112 113 /* Given src, dst and key, find appropriate for input tunnel. */ 114 115 static struct ip6_tnl *ip6gre_tunnel_lookup(struct net_device *dev, 116 const struct in6_addr *remote, const struct in6_addr *local, 117 __be32 key, __be16 gre_proto) 118 { 119 struct net *net = dev_net(dev); 120 int link = dev->ifindex; 121 unsigned int h0 = HASH_ADDR(remote); 122 unsigned int h1 = HASH_KEY(key); 123 struct ip6_tnl *t, *cand = NULL; 124 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id); 125 int dev_type = (gre_proto == htons(ETH_P_TEB) || 126 gre_proto == htons(ETH_P_ERSPAN) || 127 gre_proto == htons(ETH_P_ERSPAN2)) ? 128 ARPHRD_ETHER : ARPHRD_IP6GRE; 129 int score, cand_score = 4; 130 struct net_device *ndev; 131 132 for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) { 133 if (!ipv6_addr_equal(local, &t->parms.laddr) || 134 !ipv6_addr_equal(remote, &t->parms.raddr) || 135 key != t->parms.i_key || 136 !(t->dev->flags & IFF_UP)) 137 continue; 138 139 if (t->dev->type != ARPHRD_IP6GRE && 140 t->dev->type != dev_type) 141 continue; 142 143 score = 0; 144 if (t->parms.link != link) 145 score |= 1; 146 if (t->dev->type != dev_type) 147 score |= 2; 148 if (score == 0) 149 return t; 150 151 if (score < cand_score) { 152 cand = t; 153 cand_score = score; 154 } 155 } 156 157 for_each_ip_tunnel_rcu(t, ign->tunnels_r[h0 ^ h1]) { 158 if (!ipv6_addr_equal(remote, &t->parms.raddr) || 159 key != t->parms.i_key || 160 !(t->dev->flags & IFF_UP)) 161 continue; 162 163 if (t->dev->type != ARPHRD_IP6GRE && 164 t->dev->type != dev_type) 165 continue; 166 167 score = 0; 168 if (t->parms.link != link) 169 score |= 1; 170 if (t->dev->type != dev_type) 171 score |= 2; 172 if (score == 0) 173 return t; 174 175 if (score < cand_score) { 176 cand = t; 177 cand_score = score; 178 } 179 } 180 181 for_each_ip_tunnel_rcu(t, ign->tunnels_l[h1]) { 182 if ((!ipv6_addr_equal(local, &t->parms.laddr) && 183 (!ipv6_addr_equal(local, &t->parms.raddr) || 184 !ipv6_addr_is_multicast(local))) || 185 key != t->parms.i_key || 186 !(t->dev->flags & IFF_UP)) 187 continue; 188 189 if (t->dev->type != ARPHRD_IP6GRE && 190 t->dev->type != dev_type) 191 continue; 192 193 score = 0; 194 if (t->parms.link != link) 195 score |= 1; 196 if (t->dev->type != dev_type) 197 score |= 2; 198 if (score == 0) 199 return t; 200 201 if (score < cand_score) { 202 cand = t; 203 cand_score = score; 204 } 205 } 206 207 for_each_ip_tunnel_rcu(t, ign->tunnels_wc[h1]) { 208 if (t->parms.i_key != key || 209 !(t->dev->flags & IFF_UP)) 210 continue; 211 212 if (t->dev->type != ARPHRD_IP6GRE && 213 t->dev->type != dev_type) 214 continue; 215 216 score = 0; 217 if (t->parms.link != link) 218 score |= 1; 219 if (t->dev->type != dev_type) 220 score |= 2; 221 if (score == 0) 222 return t; 223 224 if (score < cand_score) { 225 cand = t; 226 cand_score = score; 227 } 228 } 229 230 if (cand) 231 return cand; 232 233 if (gre_proto == htons(ETH_P_ERSPAN) || 234 gre_proto == htons(ETH_P_ERSPAN2)) 235 t = rcu_dereference(ign->collect_md_tun_erspan); 236 else 237 t = rcu_dereference(ign->collect_md_tun); 238 239 if (t && t->dev->flags & IFF_UP) 240 return t; 241 242 ndev = READ_ONCE(ign->fb_tunnel_dev); 243 if (ndev && ndev->flags & IFF_UP) 244 return netdev_priv(ndev); 245 246 return NULL; 247 } 248 249 static struct ip6_tnl __rcu **__ip6gre_bucket(struct ip6gre_net *ign, 250 const struct __ip6_tnl_parm *p) 251 { 252 const struct in6_addr *remote = &p->raddr; 253 const struct in6_addr *local = &p->laddr; 254 unsigned int h = HASH_KEY(p->i_key); 255 int prio = 0; 256 257 if (!ipv6_addr_any(local)) 258 prio |= 1; 259 if (!ipv6_addr_any(remote) && !ipv6_addr_is_multicast(remote)) { 260 prio |= 2; 261 h ^= HASH_ADDR(remote); 262 } 263 264 return &ign->tunnels[prio][h]; 265 } 266 267 static void ip6gre_tunnel_link_md(struct ip6gre_net *ign, struct ip6_tnl *t) 268 { 269 if (t->parms.collect_md) 270 rcu_assign_pointer(ign->collect_md_tun, t); 271 } 272 273 static void ip6erspan_tunnel_link_md(struct ip6gre_net *ign, struct ip6_tnl *t) 274 { 275 if (t->parms.collect_md) 276 rcu_assign_pointer(ign->collect_md_tun_erspan, t); 277 } 278 279 static void ip6gre_tunnel_unlink_md(struct ip6gre_net *ign, struct ip6_tnl *t) 280 { 281 if (t->parms.collect_md) 282 rcu_assign_pointer(ign->collect_md_tun, NULL); 283 } 284 285 static void ip6erspan_tunnel_unlink_md(struct ip6gre_net *ign, 286 struct ip6_tnl *t) 287 { 288 if (t->parms.collect_md) 289 rcu_assign_pointer(ign->collect_md_tun_erspan, NULL); 290 } 291 292 static inline struct ip6_tnl __rcu **ip6gre_bucket(struct ip6gre_net *ign, 293 const struct ip6_tnl *t) 294 { 295 return __ip6gre_bucket(ign, &t->parms); 296 } 297 298 static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t) 299 { 300 struct ip6_tnl __rcu **tp = ip6gre_bucket(ign, t); 301 302 rcu_assign_pointer(t->next, rtnl_dereference(*tp)); 303 rcu_assign_pointer(*tp, t); 304 } 305 306 static void ip6gre_tunnel_unlink(struct ip6gre_net *ign, struct ip6_tnl *t) 307 { 308 struct ip6_tnl __rcu **tp; 309 struct ip6_tnl *iter; 310 311 for (tp = ip6gre_bucket(ign, t); 312 (iter = rtnl_dereference(*tp)) != NULL; 313 tp = &iter->next) { 314 if (t == iter) { 315 rcu_assign_pointer(*tp, t->next); 316 break; 317 } 318 } 319 } 320 321 static struct ip6_tnl *ip6gre_tunnel_find(struct net *net, 322 const struct __ip6_tnl_parm *parms, 323 int type) 324 { 325 const struct in6_addr *remote = &parms->raddr; 326 const struct in6_addr *local = &parms->laddr; 327 __be32 key = parms->i_key; 328 int link = parms->link; 329 struct ip6_tnl *t; 330 struct ip6_tnl __rcu **tp; 331 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id); 332 333 for (tp = __ip6gre_bucket(ign, parms); 334 (t = rtnl_dereference(*tp)) != NULL; 335 tp = &t->next) 336 if (ipv6_addr_equal(local, &t->parms.laddr) && 337 ipv6_addr_equal(remote, &t->parms.raddr) && 338 key == t->parms.i_key && 339 link == t->parms.link && 340 type == t->dev->type) 341 break; 342 343 return t; 344 } 345 346 static struct ip6_tnl *ip6gre_tunnel_locate(struct net *net, 347 const struct __ip6_tnl_parm *parms, int create) 348 { 349 struct ip6_tnl *t, *nt; 350 struct net_device *dev; 351 char name[IFNAMSIZ]; 352 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id); 353 354 t = ip6gre_tunnel_find(net, parms, ARPHRD_IP6GRE); 355 if (t && create) 356 return NULL; 357 if (t || !create) 358 return t; 359 360 if (parms->name[0]) { 361 if (!dev_valid_name(parms->name)) 362 return NULL; 363 strscpy(name, parms->name, IFNAMSIZ); 364 } else { 365 strcpy(name, "ip6gre%d"); 366 } 367 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN, 368 ip6gre_tunnel_setup); 369 if (!dev) 370 return NULL; 371 372 dev_net_set(dev, net); 373 374 nt = netdev_priv(dev); 375 nt->parms = *parms; 376 dev->rtnl_link_ops = &ip6gre_link_ops; 377 378 nt->dev = dev; 379 nt->net = dev_net(dev); 380 381 if (register_netdevice(dev) < 0) 382 goto failed_free; 383 384 ip6gre_tnl_link_config(nt, 1); 385 ip6gre_tunnel_link(ign, nt); 386 return nt; 387 388 failed_free: 389 free_netdev(dev); 390 return NULL; 391 } 392 393 static void ip6erspan_tunnel_uninit(struct net_device *dev) 394 { 395 struct ip6_tnl *t = netdev_priv(dev); 396 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id); 397 398 ip6erspan_tunnel_unlink_md(ign, t); 399 ip6gre_tunnel_unlink(ign, t); 400 dst_cache_reset(&t->dst_cache); 401 netdev_put(dev, &t->dev_tracker); 402 } 403 404 static void ip6gre_tunnel_uninit(struct net_device *dev) 405 { 406 struct ip6_tnl *t = netdev_priv(dev); 407 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id); 408 409 ip6gre_tunnel_unlink_md(ign, t); 410 ip6gre_tunnel_unlink(ign, t); 411 if (ign->fb_tunnel_dev == dev) 412 WRITE_ONCE(ign->fb_tunnel_dev, NULL); 413 dst_cache_reset(&t->dst_cache); 414 netdev_put(dev, &t->dev_tracker); 415 } 416 417 418 static int ip6gre_err(struct sk_buff *skb, struct inet6_skb_parm *opt, 419 u8 type, u8 code, int offset, __be32 info) 420 { 421 struct net *net = dev_net(skb->dev); 422 const struct ipv6hdr *ipv6h; 423 struct tnl_ptk_info tpi; 424 struct ip6_tnl *t; 425 426 if (gre_parse_header(skb, &tpi, NULL, htons(ETH_P_IPV6), 427 offset) < 0) 428 return -EINVAL; 429 430 ipv6h = (const struct ipv6hdr *)skb->data; 431 t = ip6gre_tunnel_lookup(skb->dev, &ipv6h->daddr, &ipv6h->saddr, 432 tpi.key, tpi.proto); 433 if (!t) 434 return -ENOENT; 435 436 switch (type) { 437 case ICMPV6_DEST_UNREACH: 438 net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n", 439 t->parms.name); 440 if (code != ICMPV6_PORT_UNREACH) 441 break; 442 return 0; 443 case ICMPV6_TIME_EXCEED: 444 if (code == ICMPV6_EXC_HOPLIMIT) { 445 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n", 446 t->parms.name); 447 break; 448 } 449 return 0; 450 case ICMPV6_PARAMPROB: { 451 struct ipv6_tlv_tnl_enc_lim *tel; 452 __u32 teli; 453 454 teli = 0; 455 if (code == ICMPV6_HDR_FIELD) 456 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data); 457 458 if (teli && teli == be32_to_cpu(info) - 2) { 459 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli]; 460 if (tel->encap_limit == 0) { 461 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n", 462 t->parms.name); 463 } 464 } else { 465 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n", 466 t->parms.name); 467 } 468 return 0; 469 } 470 case ICMPV6_PKT_TOOBIG: 471 ip6_update_pmtu(skb, net, info, 0, 0, sock_net_uid(net, NULL)); 472 return 0; 473 case NDISC_REDIRECT: 474 ip6_redirect(skb, net, skb->dev->ifindex, 0, 475 sock_net_uid(net, NULL)); 476 return 0; 477 } 478 479 if (time_before(jiffies, t->err_time + IP6TUNNEL_ERR_TIMEO)) 480 t->err_count++; 481 else 482 t->err_count = 1; 483 t->err_time = jiffies; 484 485 return 0; 486 } 487 488 static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi) 489 { 490 const struct ipv6hdr *ipv6h; 491 struct ip6_tnl *tunnel; 492 493 ipv6h = ipv6_hdr(skb); 494 tunnel = ip6gre_tunnel_lookup(skb->dev, 495 &ipv6h->saddr, &ipv6h->daddr, tpi->key, 496 tpi->proto); 497 if (tunnel) { 498 if (tunnel->parms.collect_md) { 499 IP_TUNNEL_DECLARE_FLAGS(flags); 500 struct metadata_dst *tun_dst; 501 __be64 tun_id; 502 503 ip_tunnel_flags_copy(flags, tpi->flags); 504 tun_id = key32_to_tunnel_id(tpi->key); 505 506 tun_dst = ipv6_tun_rx_dst(skb, flags, tun_id, 0); 507 if (!tun_dst) 508 return PACKET_REJECT; 509 510 ip6_tnl_rcv(tunnel, skb, tpi, tun_dst, log_ecn_error); 511 } else { 512 ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error); 513 } 514 515 return PACKET_RCVD; 516 } 517 518 return PACKET_REJECT; 519 } 520 521 static int ip6erspan_rcv(struct sk_buff *skb, 522 struct tnl_ptk_info *tpi, 523 int gre_hdr_len) 524 { 525 struct erspan_base_hdr *ershdr; 526 const struct ipv6hdr *ipv6h; 527 struct erspan_md2 *md2; 528 struct ip6_tnl *tunnel; 529 u8 ver; 530 531 ipv6h = ipv6_hdr(skb); 532 ershdr = (struct erspan_base_hdr *)skb->data; 533 ver = ershdr->ver; 534 535 tunnel = ip6gre_tunnel_lookup(skb->dev, 536 &ipv6h->saddr, &ipv6h->daddr, tpi->key, 537 tpi->proto); 538 if (tunnel) { 539 int len = erspan_hdr_len(ver); 540 541 if (unlikely(!pskb_may_pull(skb, len))) 542 return PACKET_REJECT; 543 544 if (__iptunnel_pull_header(skb, len, 545 htons(ETH_P_TEB), 546 false, false) < 0) 547 return PACKET_REJECT; 548 549 if (tunnel->parms.collect_md) { 550 struct erspan_metadata *pkt_md, *md; 551 IP_TUNNEL_DECLARE_FLAGS(flags); 552 struct metadata_dst *tun_dst; 553 struct ip_tunnel_info *info; 554 unsigned char *gh; 555 __be64 tun_id; 556 557 __set_bit(IP_TUNNEL_KEY_BIT, tpi->flags); 558 ip_tunnel_flags_copy(flags, tpi->flags); 559 tun_id = key32_to_tunnel_id(tpi->key); 560 561 tun_dst = ipv6_tun_rx_dst(skb, flags, tun_id, 562 sizeof(*md)); 563 if (!tun_dst) 564 return PACKET_REJECT; 565 566 /* skb can be uncloned in __iptunnel_pull_header, so 567 * old pkt_md is no longer valid and we need to reset 568 * it 569 */ 570 gh = skb_network_header(skb) + 571 skb_network_header_len(skb); 572 pkt_md = (struct erspan_metadata *)(gh + gre_hdr_len + 573 sizeof(*ershdr)); 574 info = &tun_dst->u.tun_info; 575 md = ip_tunnel_info_opts(info); 576 md->version = ver; 577 md2 = &md->u.md2; 578 memcpy(md2, pkt_md, ver == 1 ? ERSPAN_V1_MDSIZE : 579 ERSPAN_V2_MDSIZE); 580 __set_bit(IP_TUNNEL_ERSPAN_OPT_BIT, 581 info->key.tun_flags); 582 info->options_len = sizeof(*md); 583 584 ip6_tnl_rcv(tunnel, skb, tpi, tun_dst, log_ecn_error); 585 586 } else { 587 ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error); 588 } 589 590 return PACKET_RCVD; 591 } 592 593 return PACKET_REJECT; 594 } 595 596 static int gre_rcv(struct sk_buff *skb) 597 { 598 struct tnl_ptk_info tpi; 599 bool csum_err = false; 600 int hdr_len; 601 602 hdr_len = gre_parse_header(skb, &tpi, &csum_err, htons(ETH_P_IPV6), 0); 603 if (hdr_len < 0) 604 goto drop; 605 606 if (iptunnel_pull_header(skb, hdr_len, tpi.proto, false)) 607 goto drop; 608 609 if (unlikely(tpi.proto == htons(ETH_P_ERSPAN) || 610 tpi.proto == htons(ETH_P_ERSPAN2))) { 611 if (ip6erspan_rcv(skb, &tpi, hdr_len) == PACKET_RCVD) 612 return 0; 613 goto out; 614 } 615 616 if (ip6gre_rcv(skb, &tpi) == PACKET_RCVD) 617 return 0; 618 619 out: 620 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0); 621 drop: 622 kfree_skb(skb); 623 return 0; 624 } 625 626 static int gre_handle_offloads(struct sk_buff *skb, bool csum) 627 { 628 return iptunnel_handle_offloads(skb, 629 csum ? SKB_GSO_GRE_CSUM : SKB_GSO_GRE); 630 } 631 632 static void prepare_ip6gre_xmit_ipv4(struct sk_buff *skb, 633 struct net_device *dev, 634 struct flowi6 *fl6, __u8 *dsfield, 635 int *encap_limit) 636 { 637 const struct iphdr *iph = ip_hdr(skb); 638 struct ip6_tnl *t = netdev_priv(dev); 639 640 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) 641 *encap_limit = t->parms.encap_limit; 642 643 memcpy(fl6, &t->fl.u.ip6, sizeof(*fl6)); 644 645 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS) 646 *dsfield = ipv4_get_dsfield(iph); 647 else 648 *dsfield = ip6_tclass(t->parms.flowinfo); 649 650 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK) 651 fl6->flowi6_mark = skb->mark; 652 else 653 fl6->flowi6_mark = t->parms.fwmark; 654 655 fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL); 656 } 657 658 static int prepare_ip6gre_xmit_ipv6(struct sk_buff *skb, 659 struct net_device *dev, 660 struct flowi6 *fl6, __u8 *dsfield, 661 int *encap_limit) 662 { 663 struct ipv6hdr *ipv6h; 664 struct ip6_tnl *t = netdev_priv(dev); 665 __u16 offset; 666 667 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb)); 668 /* ip6_tnl_parse_tlv_enc_lim() might have reallocated skb->head */ 669 ipv6h = ipv6_hdr(skb); 670 671 if (offset > 0) { 672 struct ipv6_tlv_tnl_enc_lim *tel; 673 674 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset]; 675 if (tel->encap_limit == 0) { 676 icmpv6_ndo_send(skb, ICMPV6_PARAMPROB, 677 ICMPV6_HDR_FIELD, offset + 2); 678 return -1; 679 } 680 *encap_limit = tel->encap_limit - 1; 681 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) { 682 *encap_limit = t->parms.encap_limit; 683 } 684 685 memcpy(fl6, &t->fl.u.ip6, sizeof(*fl6)); 686 687 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS) 688 *dsfield = ipv6_get_dsfield(ipv6h); 689 else 690 *dsfield = ip6_tclass(t->parms.flowinfo); 691 692 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL) 693 fl6->flowlabel |= ip6_flowlabel(ipv6h); 694 695 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK) 696 fl6->flowi6_mark = skb->mark; 697 else 698 fl6->flowi6_mark = t->parms.fwmark; 699 700 fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL); 701 702 return 0; 703 } 704 705 static int prepare_ip6gre_xmit_other(struct sk_buff *skb, 706 struct net_device *dev, 707 struct flowi6 *fl6, __u8 *dsfield, 708 int *encap_limit) 709 { 710 struct ip6_tnl *t = netdev_priv(dev); 711 712 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) 713 *encap_limit = t->parms.encap_limit; 714 715 memcpy(fl6, &t->fl.u.ip6, sizeof(*fl6)); 716 717 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS) 718 *dsfield = 0; 719 else 720 *dsfield = ip6_tclass(t->parms.flowinfo); 721 722 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK) 723 fl6->flowi6_mark = skb->mark; 724 else 725 fl6->flowi6_mark = t->parms.fwmark; 726 727 fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL); 728 729 return 0; 730 } 731 732 static struct ip_tunnel_info *skb_tunnel_info_txcheck(struct sk_buff *skb) 733 { 734 struct ip_tunnel_info *tun_info; 735 736 tun_info = skb_tunnel_info(skb); 737 if (unlikely(!tun_info || !(tun_info->mode & IP_TUNNEL_INFO_TX))) 738 return ERR_PTR(-EINVAL); 739 740 return tun_info; 741 } 742 743 static netdev_tx_t __gre6_xmit(struct sk_buff *skb, 744 struct net_device *dev, __u8 dsfield, 745 struct flowi6 *fl6, int encap_limit, 746 __u32 *pmtu, __be16 proto) 747 { 748 struct ip6_tnl *tunnel = netdev_priv(dev); 749 IP_TUNNEL_DECLARE_FLAGS(flags); 750 __be16 protocol; 751 752 if (dev->type == ARPHRD_ETHER) 753 IPCB(skb)->flags = 0; 754 755 if (dev->header_ops && dev->type == ARPHRD_IP6GRE) 756 fl6->daddr = ((struct ipv6hdr *)skb->data)->daddr; 757 else 758 fl6->daddr = tunnel->parms.raddr; 759 760 /* Push GRE header. */ 761 protocol = (dev->type == ARPHRD_ETHER) ? htons(ETH_P_TEB) : proto; 762 763 if (tunnel->parms.collect_md) { 764 struct ip_tunnel_info *tun_info; 765 const struct ip_tunnel_key *key; 766 int tun_hlen; 767 768 tun_info = skb_tunnel_info_txcheck(skb); 769 if (IS_ERR(tun_info) || 770 unlikely(ip_tunnel_info_af(tun_info) != AF_INET6)) 771 return -EINVAL; 772 773 key = &tun_info->key; 774 memset(fl6, 0, sizeof(*fl6)); 775 fl6->flowi6_proto = IPPROTO_GRE; 776 fl6->daddr = key->u.ipv6.dst; 777 fl6->flowlabel = key->label; 778 fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL); 779 fl6->fl6_gre_key = tunnel_id_to_key32(key->tun_id); 780 781 dsfield = key->tos; 782 ip_tunnel_flags_zero(flags); 783 __set_bit(IP_TUNNEL_CSUM_BIT, flags); 784 __set_bit(IP_TUNNEL_KEY_BIT, flags); 785 __set_bit(IP_TUNNEL_SEQ_BIT, flags); 786 ip_tunnel_flags_and(flags, flags, key->tun_flags); 787 tun_hlen = gre_calc_hlen(flags); 788 789 if (skb_cow_head(skb, dev->needed_headroom ?: tun_hlen + tunnel->encap_hlen)) 790 return -ENOMEM; 791 792 gre_build_header(skb, tun_hlen, 793 flags, protocol, 794 tunnel_id_to_key32(tun_info->key.tun_id), 795 test_bit(IP_TUNNEL_SEQ_BIT, flags) ? 796 htonl(atomic_fetch_inc(&tunnel->o_seqno)) : 797 0); 798 799 } else { 800 if (skb_cow_head(skb, dev->needed_headroom ?: tunnel->hlen)) 801 return -ENOMEM; 802 803 ip_tunnel_flags_copy(flags, tunnel->parms.o_flags); 804 805 gre_build_header(skb, tunnel->tun_hlen, flags, 806 protocol, tunnel->parms.o_key, 807 test_bit(IP_TUNNEL_SEQ_BIT, flags) ? 808 htonl(atomic_fetch_inc(&tunnel->o_seqno)) : 809 0); 810 } 811 812 return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu, 813 NEXTHDR_GRE); 814 } 815 816 static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev) 817 { 818 struct ip6_tnl *t = netdev_priv(dev); 819 int encap_limit = -1; 820 struct flowi6 fl6; 821 __u8 dsfield = 0; 822 __u32 mtu; 823 int err; 824 825 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt)); 826 827 if (!t->parms.collect_md) 828 prepare_ip6gre_xmit_ipv4(skb, dev, &fl6, 829 &dsfield, &encap_limit); 830 831 err = gre_handle_offloads(skb, test_bit(IP_TUNNEL_CSUM_BIT, 832 t->parms.o_flags)); 833 if (err) 834 return -1; 835 836 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu, 837 skb->protocol); 838 if (err != 0) { 839 /* XXX: send ICMP error even if DF is not set. */ 840 if (err == -EMSGSIZE) 841 icmp_ndo_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, 842 htonl(mtu)); 843 return -1; 844 } 845 846 return 0; 847 } 848 849 static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev) 850 { 851 struct ip6_tnl *t = netdev_priv(dev); 852 struct ipv6hdr *ipv6h = ipv6_hdr(skb); 853 int encap_limit = -1; 854 struct flowi6 fl6; 855 __u8 dsfield = 0; 856 __u32 mtu; 857 int err; 858 859 if (ipv6_addr_equal(&t->parms.raddr, &ipv6h->saddr)) 860 return -1; 861 862 if (!t->parms.collect_md && 863 prepare_ip6gre_xmit_ipv6(skb, dev, &fl6, &dsfield, &encap_limit)) 864 return -1; 865 866 if (gre_handle_offloads(skb, test_bit(IP_TUNNEL_CSUM_BIT, 867 t->parms.o_flags))) 868 return -1; 869 870 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, 871 &mtu, skb->protocol); 872 if (err != 0) { 873 if (err == -EMSGSIZE) 874 icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu); 875 return -1; 876 } 877 878 return 0; 879 } 880 881 static int ip6gre_xmit_other(struct sk_buff *skb, struct net_device *dev) 882 { 883 struct ip6_tnl *t = netdev_priv(dev); 884 int encap_limit = -1; 885 struct flowi6 fl6; 886 __u8 dsfield = 0; 887 __u32 mtu; 888 int err; 889 890 if (!t->parms.collect_md && 891 prepare_ip6gre_xmit_other(skb, dev, &fl6, &dsfield, &encap_limit)) 892 return -1; 893 894 err = gre_handle_offloads(skb, test_bit(IP_TUNNEL_CSUM_BIT, 895 t->parms.o_flags)); 896 if (err) 897 return err; 898 err = __gre6_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu, skb->protocol); 899 900 return err; 901 } 902 903 static netdev_tx_t ip6gre_tunnel_xmit(struct sk_buff *skb, 904 struct net_device *dev) 905 { 906 struct ip6_tnl *t = netdev_priv(dev); 907 __be16 payload_protocol; 908 int ret; 909 910 if (!pskb_inet_may_pull(skb)) 911 goto tx_err; 912 913 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr)) 914 goto tx_err; 915 916 payload_protocol = skb_protocol(skb, true); 917 switch (payload_protocol) { 918 case htons(ETH_P_IP): 919 ret = ip6gre_xmit_ipv4(skb, dev); 920 break; 921 case htons(ETH_P_IPV6): 922 ret = ip6gre_xmit_ipv6(skb, dev); 923 break; 924 default: 925 ret = ip6gre_xmit_other(skb, dev); 926 break; 927 } 928 929 if (ret < 0) 930 goto tx_err; 931 932 return NETDEV_TX_OK; 933 934 tx_err: 935 if (!t->parms.collect_md || !IS_ERR(skb_tunnel_info_txcheck(skb))) 936 DEV_STATS_INC(dev, tx_errors); 937 DEV_STATS_INC(dev, tx_dropped); 938 kfree_skb(skb); 939 return NETDEV_TX_OK; 940 } 941 942 static netdev_tx_t ip6erspan_tunnel_xmit(struct sk_buff *skb, 943 struct net_device *dev) 944 { 945 struct ip_tunnel_info *tun_info = NULL; 946 struct ip6_tnl *t = netdev_priv(dev); 947 struct dst_entry *dst = skb_dst(skb); 948 IP_TUNNEL_DECLARE_FLAGS(flags) = { }; 949 bool truncate = false; 950 int encap_limit = -1; 951 __u8 dsfield = false; 952 struct flowi6 fl6; 953 int err = -EINVAL; 954 __be16 proto; 955 __u32 mtu; 956 int nhoff; 957 958 if (!pskb_inet_may_pull(skb)) 959 goto tx_err; 960 961 if (!ip6_tnl_xmit_ctl(t, &t->parms.laddr, &t->parms.raddr)) 962 goto tx_err; 963 964 if (gre_handle_offloads(skb, false)) 965 goto tx_err; 966 967 if (skb->len > dev->mtu + dev->hard_header_len) { 968 if (pskb_trim(skb, dev->mtu + dev->hard_header_len)) 969 goto tx_err; 970 truncate = true; 971 } 972 973 nhoff = skb_network_offset(skb); 974 if (skb->protocol == htons(ETH_P_IP) && 975 (ntohs(ip_hdr(skb)->tot_len) > skb->len - nhoff)) 976 truncate = true; 977 978 if (skb->protocol == htons(ETH_P_IPV6)) { 979 int thoff; 980 981 if (skb_transport_header_was_set(skb)) 982 thoff = skb_transport_offset(skb); 983 else 984 thoff = nhoff + sizeof(struct ipv6hdr); 985 if (ntohs(ipv6_hdr(skb)->payload_len) > skb->len - thoff) 986 truncate = true; 987 } 988 989 if (skb_cow_head(skb, dev->needed_headroom ?: t->hlen)) 990 goto tx_err; 991 992 __clear_bit(IP_TUNNEL_KEY_BIT, t->parms.o_flags); 993 IPCB(skb)->flags = 0; 994 995 /* For collect_md mode, derive fl6 from the tunnel key, 996 * for native mode, call prepare_ip6gre_xmit_{ipv4,ipv6}. 997 */ 998 if (t->parms.collect_md) { 999 const struct ip_tunnel_key *key; 1000 struct erspan_metadata *md; 1001 __be32 tun_id; 1002 1003 tun_info = skb_tunnel_info_txcheck(skb); 1004 if (IS_ERR(tun_info) || 1005 unlikely(ip_tunnel_info_af(tun_info) != AF_INET6)) 1006 goto tx_err; 1007 1008 key = &tun_info->key; 1009 memset(&fl6, 0, sizeof(fl6)); 1010 fl6.flowi6_proto = IPPROTO_GRE; 1011 fl6.daddr = key->u.ipv6.dst; 1012 fl6.flowlabel = key->label; 1013 fl6.flowi6_uid = sock_net_uid(dev_net(dev), NULL); 1014 fl6.fl6_gre_key = tunnel_id_to_key32(key->tun_id); 1015 1016 dsfield = key->tos; 1017 if (!test_bit(IP_TUNNEL_ERSPAN_OPT_BIT, 1018 tun_info->key.tun_flags)) 1019 goto tx_err; 1020 if (tun_info->options_len < sizeof(*md)) 1021 goto tx_err; 1022 md = ip_tunnel_info_opts(tun_info); 1023 1024 tun_id = tunnel_id_to_key32(key->tun_id); 1025 if (md->version == 1) { 1026 erspan_build_header(skb, 1027 ntohl(tun_id), 1028 ntohl(md->u.index), truncate, 1029 false); 1030 proto = htons(ETH_P_ERSPAN); 1031 } else if (md->version == 2) { 1032 erspan_build_header_v2(skb, 1033 ntohl(tun_id), 1034 md->u.md2.dir, 1035 get_hwid(&md->u.md2), 1036 truncate, false); 1037 proto = htons(ETH_P_ERSPAN2); 1038 } else { 1039 goto tx_err; 1040 } 1041 } else { 1042 switch (skb->protocol) { 1043 case htons(ETH_P_IP): 1044 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt)); 1045 prepare_ip6gre_xmit_ipv4(skb, dev, &fl6, 1046 &dsfield, &encap_limit); 1047 break; 1048 case htons(ETH_P_IPV6): 1049 if (ipv6_addr_equal(&t->parms.raddr, &ipv6_hdr(skb)->saddr)) 1050 goto tx_err; 1051 if (prepare_ip6gre_xmit_ipv6(skb, dev, &fl6, 1052 &dsfield, &encap_limit)) 1053 goto tx_err; 1054 break; 1055 default: 1056 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6)); 1057 break; 1058 } 1059 1060 if (t->parms.erspan_ver == 1) { 1061 erspan_build_header(skb, ntohl(t->parms.o_key), 1062 t->parms.index, 1063 truncate, false); 1064 proto = htons(ETH_P_ERSPAN); 1065 } else if (t->parms.erspan_ver == 2) { 1066 erspan_build_header_v2(skb, ntohl(t->parms.o_key), 1067 t->parms.dir, 1068 t->parms.hwid, 1069 truncate, false); 1070 proto = htons(ETH_P_ERSPAN2); 1071 } else { 1072 goto tx_err; 1073 } 1074 1075 fl6.daddr = t->parms.raddr; 1076 } 1077 1078 /* Push GRE header. */ 1079 __set_bit(IP_TUNNEL_SEQ_BIT, flags); 1080 gre_build_header(skb, 8, flags, proto, 0, 1081 htonl(atomic_fetch_inc(&t->o_seqno))); 1082 1083 /* TooBig packet may have updated dst->dev's mtu */ 1084 if (!t->parms.collect_md && dst && dst_mtu(dst) > dst->dev->mtu) 1085 dst->ops->update_pmtu(dst, NULL, skb, dst->dev->mtu, false); 1086 1087 err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu, 1088 NEXTHDR_GRE); 1089 if (err != 0) { 1090 /* XXX: send ICMP error even if DF is not set. */ 1091 if (err == -EMSGSIZE) { 1092 if (skb->protocol == htons(ETH_P_IP)) 1093 icmp_ndo_send(skb, ICMP_DEST_UNREACH, 1094 ICMP_FRAG_NEEDED, htonl(mtu)); 1095 else 1096 icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu); 1097 } 1098 1099 goto tx_err; 1100 } 1101 return NETDEV_TX_OK; 1102 1103 tx_err: 1104 if (!IS_ERR(tun_info)) 1105 DEV_STATS_INC(dev, tx_errors); 1106 DEV_STATS_INC(dev, tx_dropped); 1107 kfree_skb(skb); 1108 return NETDEV_TX_OK; 1109 } 1110 1111 static void ip6gre_tnl_link_config_common(struct ip6_tnl *t) 1112 { 1113 struct net_device *dev = t->dev; 1114 struct __ip6_tnl_parm *p = &t->parms; 1115 struct flowi6 *fl6 = &t->fl.u.ip6; 1116 1117 if (dev->type != ARPHRD_ETHER) { 1118 __dev_addr_set(dev, &p->laddr, sizeof(struct in6_addr)); 1119 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr)); 1120 } 1121 1122 /* Set up flowi template */ 1123 fl6->saddr = p->laddr; 1124 fl6->daddr = p->raddr; 1125 fl6->flowi6_oif = p->link; 1126 fl6->flowlabel = 0; 1127 fl6->flowi6_proto = IPPROTO_GRE; 1128 fl6->fl6_gre_key = t->parms.o_key; 1129 1130 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS)) 1131 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo; 1132 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL)) 1133 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo; 1134 1135 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET); 1136 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr); 1137 1138 if (p->flags&IP6_TNL_F_CAP_XMIT && 1139 p->flags&IP6_TNL_F_CAP_RCV && dev->type != ARPHRD_ETHER) 1140 dev->flags |= IFF_POINTOPOINT; 1141 else 1142 dev->flags &= ~IFF_POINTOPOINT; 1143 } 1144 1145 static void ip6gre_tnl_link_config_route(struct ip6_tnl *t, int set_mtu, 1146 int t_hlen) 1147 { 1148 const struct __ip6_tnl_parm *p = &t->parms; 1149 struct net_device *dev = t->dev; 1150 1151 if (p->flags & IP6_TNL_F_CAP_XMIT) { 1152 int strict = (ipv6_addr_type(&p->raddr) & 1153 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL)); 1154 1155 struct rt6_info *rt = rt6_lookup(t->net, 1156 &p->raddr, &p->laddr, 1157 p->link, NULL, strict); 1158 1159 if (!rt) 1160 return; 1161 1162 if (rt->dst.dev) { 1163 unsigned short dst_len = rt->dst.dev->hard_header_len + 1164 t_hlen; 1165 1166 if (t->dev->header_ops) 1167 dev->hard_header_len = dst_len; 1168 else 1169 dev->needed_headroom = dst_len; 1170 1171 if (set_mtu) { 1172 int mtu = rt->dst.dev->mtu - t_hlen; 1173 1174 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) 1175 mtu -= 8; 1176 if (dev->type == ARPHRD_ETHER) 1177 mtu -= ETH_HLEN; 1178 1179 if (mtu < IPV6_MIN_MTU) 1180 mtu = IPV6_MIN_MTU; 1181 WRITE_ONCE(dev->mtu, mtu); 1182 } 1183 } 1184 ip6_rt_put(rt); 1185 } 1186 } 1187 1188 static int ip6gre_calc_hlen(struct ip6_tnl *tunnel) 1189 { 1190 int t_hlen; 1191 1192 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags); 1193 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen; 1194 1195 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr); 1196 1197 if (tunnel->dev->header_ops) 1198 tunnel->dev->hard_header_len = LL_MAX_HEADER + t_hlen; 1199 else 1200 tunnel->dev->needed_headroom = LL_MAX_HEADER + t_hlen; 1201 1202 return t_hlen; 1203 } 1204 1205 static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu) 1206 { 1207 ip6gre_tnl_link_config_common(t); 1208 ip6gre_tnl_link_config_route(t, set_mtu, ip6gre_calc_hlen(t)); 1209 } 1210 1211 static void ip6gre_tnl_copy_tnl_parm(struct ip6_tnl *t, 1212 const struct __ip6_tnl_parm *p) 1213 { 1214 t->parms.laddr = p->laddr; 1215 t->parms.raddr = p->raddr; 1216 t->parms.flags = p->flags; 1217 t->parms.hop_limit = p->hop_limit; 1218 t->parms.encap_limit = p->encap_limit; 1219 t->parms.flowinfo = p->flowinfo; 1220 t->parms.link = p->link; 1221 t->parms.proto = p->proto; 1222 t->parms.i_key = p->i_key; 1223 t->parms.o_key = p->o_key; 1224 ip_tunnel_flags_copy(t->parms.i_flags, p->i_flags); 1225 ip_tunnel_flags_copy(t->parms.o_flags, p->o_flags); 1226 t->parms.fwmark = p->fwmark; 1227 t->parms.erspan_ver = p->erspan_ver; 1228 t->parms.index = p->index; 1229 t->parms.dir = p->dir; 1230 t->parms.hwid = p->hwid; 1231 dst_cache_reset(&t->dst_cache); 1232 } 1233 1234 static int ip6gre_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p, 1235 int set_mtu) 1236 { 1237 ip6gre_tnl_copy_tnl_parm(t, p); 1238 ip6gre_tnl_link_config(t, set_mtu); 1239 return 0; 1240 } 1241 1242 static void ip6gre_tnl_parm_from_user(struct __ip6_tnl_parm *p, 1243 const struct ip6_tnl_parm2 *u) 1244 { 1245 p->laddr = u->laddr; 1246 p->raddr = u->raddr; 1247 p->flags = u->flags; 1248 p->hop_limit = u->hop_limit; 1249 p->encap_limit = u->encap_limit; 1250 p->flowinfo = u->flowinfo; 1251 p->link = u->link; 1252 p->i_key = u->i_key; 1253 p->o_key = u->o_key; 1254 gre_flags_to_tnl_flags(p->i_flags, u->i_flags); 1255 gre_flags_to_tnl_flags(p->o_flags, u->o_flags); 1256 memcpy(p->name, u->name, sizeof(u->name)); 1257 } 1258 1259 static void ip6gre_tnl_parm_to_user(struct ip6_tnl_parm2 *u, 1260 const struct __ip6_tnl_parm *p) 1261 { 1262 u->proto = IPPROTO_GRE; 1263 u->laddr = p->laddr; 1264 u->raddr = p->raddr; 1265 u->flags = p->flags; 1266 u->hop_limit = p->hop_limit; 1267 u->encap_limit = p->encap_limit; 1268 u->flowinfo = p->flowinfo; 1269 u->link = p->link; 1270 u->i_key = p->i_key; 1271 u->o_key = p->o_key; 1272 u->i_flags = gre_tnl_flags_to_gre_flags(p->i_flags); 1273 u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags); 1274 memcpy(u->name, p->name, sizeof(u->name)); 1275 } 1276 1277 static int ip6gre_tunnel_siocdevprivate(struct net_device *dev, 1278 struct ifreq *ifr, void __user *data, 1279 int cmd) 1280 { 1281 int err = 0; 1282 struct ip6_tnl_parm2 p; 1283 struct __ip6_tnl_parm p1; 1284 struct ip6_tnl *t = netdev_priv(dev); 1285 struct net *net = t->net; 1286 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id); 1287 1288 memset(&p1, 0, sizeof(p1)); 1289 1290 switch (cmd) { 1291 case SIOCGETTUNNEL: 1292 if (dev == ign->fb_tunnel_dev) { 1293 if (copy_from_user(&p, data, sizeof(p))) { 1294 err = -EFAULT; 1295 break; 1296 } 1297 ip6gre_tnl_parm_from_user(&p1, &p); 1298 t = ip6gre_tunnel_locate(net, &p1, 0); 1299 if (!t) 1300 t = netdev_priv(dev); 1301 } 1302 memset(&p, 0, sizeof(p)); 1303 ip6gre_tnl_parm_to_user(&p, &t->parms); 1304 if (copy_to_user(data, &p, sizeof(p))) 1305 err = -EFAULT; 1306 break; 1307 1308 case SIOCADDTUNNEL: 1309 case SIOCCHGTUNNEL: 1310 err = -EPERM; 1311 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 1312 goto done; 1313 1314 err = -EFAULT; 1315 if (copy_from_user(&p, data, sizeof(p))) 1316 goto done; 1317 1318 err = -EINVAL; 1319 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING)) 1320 goto done; 1321 1322 if (!(p.i_flags&GRE_KEY)) 1323 p.i_key = 0; 1324 if (!(p.o_flags&GRE_KEY)) 1325 p.o_key = 0; 1326 1327 ip6gre_tnl_parm_from_user(&p1, &p); 1328 t = ip6gre_tunnel_locate(net, &p1, cmd == SIOCADDTUNNEL); 1329 1330 if (dev != ign->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) { 1331 if (t) { 1332 if (t->dev != dev) { 1333 err = -EEXIST; 1334 break; 1335 } 1336 } else { 1337 t = netdev_priv(dev); 1338 1339 ip6gre_tunnel_unlink(ign, t); 1340 synchronize_net(); 1341 ip6gre_tnl_change(t, &p1, 1); 1342 ip6gre_tunnel_link(ign, t); 1343 netdev_state_change(dev); 1344 } 1345 } 1346 1347 if (t) { 1348 err = 0; 1349 1350 memset(&p, 0, sizeof(p)); 1351 ip6gre_tnl_parm_to_user(&p, &t->parms); 1352 if (copy_to_user(data, &p, sizeof(p))) 1353 err = -EFAULT; 1354 } else 1355 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT); 1356 break; 1357 1358 case SIOCDELTUNNEL: 1359 err = -EPERM; 1360 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 1361 goto done; 1362 1363 if (dev == ign->fb_tunnel_dev) { 1364 err = -EFAULT; 1365 if (copy_from_user(&p, data, sizeof(p))) 1366 goto done; 1367 err = -ENOENT; 1368 ip6gre_tnl_parm_from_user(&p1, &p); 1369 t = ip6gre_tunnel_locate(net, &p1, 0); 1370 if (!t) 1371 goto done; 1372 err = -EPERM; 1373 if (t == netdev_priv(ign->fb_tunnel_dev)) 1374 goto done; 1375 dev = t->dev; 1376 } 1377 unregister_netdevice(dev); 1378 err = 0; 1379 break; 1380 1381 default: 1382 err = -EINVAL; 1383 } 1384 1385 done: 1386 return err; 1387 } 1388 1389 static int ip6gre_header(struct sk_buff *skb, struct net_device *dev, 1390 unsigned short type, const void *daddr, 1391 const void *saddr, unsigned int len) 1392 { 1393 struct ip6_tnl *t = netdev_priv(dev); 1394 struct ipv6hdr *ipv6h; 1395 __be16 *p; 1396 1397 ipv6h = skb_push(skb, t->hlen + sizeof(*ipv6h)); 1398 ip6_flow_hdr(ipv6h, 0, ip6_make_flowlabel(dev_net(dev), skb, 1399 t->fl.u.ip6.flowlabel, 1400 true, &t->fl.u.ip6)); 1401 ipv6h->hop_limit = t->parms.hop_limit; 1402 ipv6h->nexthdr = NEXTHDR_GRE; 1403 ipv6h->saddr = t->parms.laddr; 1404 ipv6h->daddr = t->parms.raddr; 1405 1406 p = (__be16 *)(ipv6h + 1); 1407 p[0] = ip_tunnel_flags_to_be16(t->parms.o_flags); 1408 p[1] = htons(type); 1409 1410 /* 1411 * Set the source hardware address. 1412 */ 1413 1414 if (saddr) 1415 memcpy(&ipv6h->saddr, saddr, sizeof(struct in6_addr)); 1416 if (daddr) 1417 memcpy(&ipv6h->daddr, daddr, sizeof(struct in6_addr)); 1418 if (!ipv6_addr_any(&ipv6h->daddr)) 1419 return t->hlen; 1420 1421 return -t->hlen; 1422 } 1423 1424 static const struct header_ops ip6gre_header_ops = { 1425 .create = ip6gre_header, 1426 }; 1427 1428 static const struct net_device_ops ip6gre_netdev_ops = { 1429 .ndo_init = ip6gre_tunnel_init, 1430 .ndo_uninit = ip6gre_tunnel_uninit, 1431 .ndo_start_xmit = ip6gre_tunnel_xmit, 1432 .ndo_siocdevprivate = ip6gre_tunnel_siocdevprivate, 1433 .ndo_change_mtu = ip6_tnl_change_mtu, 1434 .ndo_get_stats64 = dev_get_tstats64, 1435 .ndo_get_iflink = ip6_tnl_get_iflink, 1436 }; 1437 1438 static void ip6gre_dev_free(struct net_device *dev) 1439 { 1440 struct ip6_tnl *t = netdev_priv(dev); 1441 1442 gro_cells_destroy(&t->gro_cells); 1443 dst_cache_destroy(&t->dst_cache); 1444 free_percpu(dev->tstats); 1445 } 1446 1447 static void ip6gre_tunnel_setup(struct net_device *dev) 1448 { 1449 dev->netdev_ops = &ip6gre_netdev_ops; 1450 dev->needs_free_netdev = true; 1451 dev->priv_destructor = ip6gre_dev_free; 1452 1453 dev->type = ARPHRD_IP6GRE; 1454 1455 dev->flags |= IFF_NOARP; 1456 dev->addr_len = sizeof(struct in6_addr); 1457 netif_keep_dst(dev); 1458 /* This perm addr will be used as interface identifier by IPv6 */ 1459 dev->addr_assign_type = NET_ADDR_RANDOM; 1460 eth_random_addr(dev->perm_addr); 1461 } 1462 1463 #define GRE6_FEATURES (NETIF_F_SG | \ 1464 NETIF_F_FRAGLIST | \ 1465 NETIF_F_HIGHDMA | \ 1466 NETIF_F_HW_CSUM) 1467 1468 static void ip6gre_tnl_init_features(struct net_device *dev) 1469 { 1470 struct ip6_tnl *nt = netdev_priv(dev); 1471 1472 dev->features |= GRE6_FEATURES | NETIF_F_LLTX; 1473 dev->hw_features |= GRE6_FEATURES; 1474 1475 /* TCP offload with GRE SEQ is not supported, nor can we support 2 1476 * levels of outer headers requiring an update. 1477 */ 1478 if (test_bit(IP_TUNNEL_SEQ_BIT, nt->parms.o_flags)) 1479 return; 1480 if (test_bit(IP_TUNNEL_CSUM_BIT, nt->parms.o_flags) && 1481 nt->encap.type != TUNNEL_ENCAP_NONE) 1482 return; 1483 1484 dev->features |= NETIF_F_GSO_SOFTWARE; 1485 dev->hw_features |= NETIF_F_GSO_SOFTWARE; 1486 } 1487 1488 static int ip6gre_tunnel_init_common(struct net_device *dev) 1489 { 1490 struct ip6_tnl *tunnel; 1491 int ret; 1492 int t_hlen; 1493 1494 tunnel = netdev_priv(dev); 1495 1496 tunnel->dev = dev; 1497 tunnel->net = dev_net(dev); 1498 strcpy(tunnel->parms.name, dev->name); 1499 1500 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats); 1501 if (!dev->tstats) 1502 return -ENOMEM; 1503 1504 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL); 1505 if (ret) 1506 goto cleanup_alloc_pcpu_stats; 1507 1508 ret = gro_cells_init(&tunnel->gro_cells, dev); 1509 if (ret) 1510 goto cleanup_dst_cache_init; 1511 1512 t_hlen = ip6gre_calc_hlen(tunnel); 1513 dev->mtu = ETH_DATA_LEN - t_hlen; 1514 if (dev->type == ARPHRD_ETHER) 1515 dev->mtu -= ETH_HLEN; 1516 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) 1517 dev->mtu -= 8; 1518 1519 if (tunnel->parms.collect_md) { 1520 netif_keep_dst(dev); 1521 } 1522 ip6gre_tnl_init_features(dev); 1523 1524 netdev_hold(dev, &tunnel->dev_tracker, GFP_KERNEL); 1525 netdev_lockdep_set_classes(dev); 1526 return 0; 1527 1528 cleanup_dst_cache_init: 1529 dst_cache_destroy(&tunnel->dst_cache); 1530 cleanup_alloc_pcpu_stats: 1531 free_percpu(dev->tstats); 1532 dev->tstats = NULL; 1533 return ret; 1534 } 1535 1536 static int ip6gre_tunnel_init(struct net_device *dev) 1537 { 1538 struct ip6_tnl *tunnel; 1539 int ret; 1540 1541 ret = ip6gre_tunnel_init_common(dev); 1542 if (ret) 1543 return ret; 1544 1545 tunnel = netdev_priv(dev); 1546 1547 if (tunnel->parms.collect_md) 1548 return 0; 1549 1550 __dev_addr_set(dev, &tunnel->parms.laddr, sizeof(struct in6_addr)); 1551 memcpy(dev->broadcast, &tunnel->parms.raddr, sizeof(struct in6_addr)); 1552 1553 if (ipv6_addr_any(&tunnel->parms.raddr)) 1554 dev->header_ops = &ip6gre_header_ops; 1555 1556 return 0; 1557 } 1558 1559 static void ip6gre_fb_tunnel_init(struct net_device *dev) 1560 { 1561 struct ip6_tnl *tunnel = netdev_priv(dev); 1562 1563 tunnel->dev = dev; 1564 tunnel->net = dev_net(dev); 1565 strcpy(tunnel->parms.name, dev->name); 1566 1567 tunnel->hlen = sizeof(struct ipv6hdr) + 4; 1568 } 1569 1570 static struct inet6_protocol ip6gre_protocol __read_mostly = { 1571 .handler = gre_rcv, 1572 .err_handler = ip6gre_err, 1573 .flags = INET6_PROTO_FINAL, 1574 }; 1575 1576 static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head) 1577 { 1578 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id); 1579 struct net_device *dev, *aux; 1580 int prio; 1581 1582 for_each_netdev_safe(net, dev, aux) 1583 if (dev->rtnl_link_ops == &ip6gre_link_ops || 1584 dev->rtnl_link_ops == &ip6gre_tap_ops || 1585 dev->rtnl_link_ops == &ip6erspan_tap_ops) 1586 unregister_netdevice_queue(dev, head); 1587 1588 for (prio = 0; prio < 4; prio++) { 1589 int h; 1590 for (h = 0; h < IP6_GRE_HASH_SIZE; h++) { 1591 struct ip6_tnl *t; 1592 1593 t = rtnl_dereference(ign->tunnels[prio][h]); 1594 1595 while (t) { 1596 /* If dev is in the same netns, it has already 1597 * been added to the list by the previous loop. 1598 */ 1599 if (!net_eq(dev_net(t->dev), net)) 1600 unregister_netdevice_queue(t->dev, 1601 head); 1602 t = rtnl_dereference(t->next); 1603 } 1604 } 1605 } 1606 } 1607 1608 static int __net_init ip6gre_init_net(struct net *net) 1609 { 1610 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id); 1611 struct net_device *ndev; 1612 int err; 1613 1614 if (!net_has_fallback_tunnels(net)) 1615 return 0; 1616 ndev = alloc_netdev(sizeof(struct ip6_tnl), "ip6gre0", 1617 NET_NAME_UNKNOWN, ip6gre_tunnel_setup); 1618 if (!ndev) { 1619 err = -ENOMEM; 1620 goto err_alloc_dev; 1621 } 1622 ign->fb_tunnel_dev = ndev; 1623 dev_net_set(ign->fb_tunnel_dev, net); 1624 /* FB netdevice is special: we have one, and only one per netns. 1625 * Allowing to move it to another netns is clearly unsafe. 1626 */ 1627 ign->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL; 1628 1629 1630 ip6gre_fb_tunnel_init(ign->fb_tunnel_dev); 1631 ign->fb_tunnel_dev->rtnl_link_ops = &ip6gre_link_ops; 1632 1633 err = register_netdev(ign->fb_tunnel_dev); 1634 if (err) 1635 goto err_reg_dev; 1636 1637 rcu_assign_pointer(ign->tunnels_wc[0], 1638 netdev_priv(ign->fb_tunnel_dev)); 1639 return 0; 1640 1641 err_reg_dev: 1642 free_netdev(ndev); 1643 err_alloc_dev: 1644 return err; 1645 } 1646 1647 static void __net_exit ip6gre_exit_batch_rtnl(struct list_head *net_list, 1648 struct list_head *dev_to_kill) 1649 { 1650 struct net *net; 1651 1652 ASSERT_RTNL(); 1653 list_for_each_entry(net, net_list, exit_list) 1654 ip6gre_destroy_tunnels(net, dev_to_kill); 1655 } 1656 1657 static struct pernet_operations ip6gre_net_ops = { 1658 .init = ip6gre_init_net, 1659 .exit_batch_rtnl = ip6gre_exit_batch_rtnl, 1660 .id = &ip6gre_net_id, 1661 .size = sizeof(struct ip6gre_net), 1662 }; 1663 1664 static int ip6gre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[], 1665 struct netlink_ext_ack *extack) 1666 { 1667 __be16 flags; 1668 1669 if (!data) 1670 return 0; 1671 1672 flags = 0; 1673 if (data[IFLA_GRE_IFLAGS]) 1674 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]); 1675 if (data[IFLA_GRE_OFLAGS]) 1676 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]); 1677 if (flags & (GRE_VERSION|GRE_ROUTING)) 1678 return -EINVAL; 1679 1680 return 0; 1681 } 1682 1683 static int ip6gre_tap_validate(struct nlattr *tb[], struct nlattr *data[], 1684 struct netlink_ext_ack *extack) 1685 { 1686 struct in6_addr daddr; 1687 1688 if (tb[IFLA_ADDRESS]) { 1689 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) 1690 return -EINVAL; 1691 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) 1692 return -EADDRNOTAVAIL; 1693 } 1694 1695 if (!data) 1696 goto out; 1697 1698 if (data[IFLA_GRE_REMOTE]) { 1699 daddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]); 1700 if (ipv6_addr_any(&daddr)) 1701 return -EINVAL; 1702 } 1703 1704 out: 1705 return ip6gre_tunnel_validate(tb, data, extack); 1706 } 1707 1708 static int ip6erspan_tap_validate(struct nlattr *tb[], struct nlattr *data[], 1709 struct netlink_ext_ack *extack) 1710 { 1711 __be16 flags = 0; 1712 int ret, ver = 0; 1713 1714 if (!data) 1715 return 0; 1716 1717 ret = ip6gre_tap_validate(tb, data, extack); 1718 if (ret) 1719 return ret; 1720 1721 /* ERSPAN should only have GRE sequence and key flag */ 1722 if (data[IFLA_GRE_OFLAGS]) 1723 flags |= nla_get_be16(data[IFLA_GRE_OFLAGS]); 1724 if (data[IFLA_GRE_IFLAGS]) 1725 flags |= nla_get_be16(data[IFLA_GRE_IFLAGS]); 1726 if (!data[IFLA_GRE_COLLECT_METADATA] && 1727 flags != (GRE_SEQ | GRE_KEY)) 1728 return -EINVAL; 1729 1730 /* ERSPAN Session ID only has 10-bit. Since we reuse 1731 * 32-bit key field as ID, check it's range. 1732 */ 1733 if (data[IFLA_GRE_IKEY] && 1734 (ntohl(nla_get_be32(data[IFLA_GRE_IKEY])) & ~ID_MASK)) 1735 return -EINVAL; 1736 1737 if (data[IFLA_GRE_OKEY] && 1738 (ntohl(nla_get_be32(data[IFLA_GRE_OKEY])) & ~ID_MASK)) 1739 return -EINVAL; 1740 1741 if (data[IFLA_GRE_ERSPAN_VER]) { 1742 ver = nla_get_u8(data[IFLA_GRE_ERSPAN_VER]); 1743 if (ver != 1 && ver != 2) 1744 return -EINVAL; 1745 } 1746 1747 if (ver == 1) { 1748 if (data[IFLA_GRE_ERSPAN_INDEX]) { 1749 u32 index = nla_get_u32(data[IFLA_GRE_ERSPAN_INDEX]); 1750 1751 if (index & ~INDEX_MASK) 1752 return -EINVAL; 1753 } 1754 } else if (ver == 2) { 1755 if (data[IFLA_GRE_ERSPAN_DIR]) { 1756 u16 dir = nla_get_u8(data[IFLA_GRE_ERSPAN_DIR]); 1757 1758 if (dir & ~(DIR_MASK >> DIR_OFFSET)) 1759 return -EINVAL; 1760 } 1761 1762 if (data[IFLA_GRE_ERSPAN_HWID]) { 1763 u16 hwid = nla_get_u16(data[IFLA_GRE_ERSPAN_HWID]); 1764 1765 if (hwid & ~(HWID_MASK >> HWID_OFFSET)) 1766 return -EINVAL; 1767 } 1768 } 1769 1770 return 0; 1771 } 1772 1773 static void ip6erspan_set_version(struct nlattr *data[], 1774 struct __ip6_tnl_parm *parms) 1775 { 1776 if (!data) 1777 return; 1778 1779 parms->erspan_ver = 1; 1780 if (data[IFLA_GRE_ERSPAN_VER]) 1781 parms->erspan_ver = nla_get_u8(data[IFLA_GRE_ERSPAN_VER]); 1782 1783 if (parms->erspan_ver == 1) { 1784 if (data[IFLA_GRE_ERSPAN_INDEX]) 1785 parms->index = nla_get_u32(data[IFLA_GRE_ERSPAN_INDEX]); 1786 } else if (parms->erspan_ver == 2) { 1787 if (data[IFLA_GRE_ERSPAN_DIR]) 1788 parms->dir = nla_get_u8(data[IFLA_GRE_ERSPAN_DIR]); 1789 if (data[IFLA_GRE_ERSPAN_HWID]) 1790 parms->hwid = nla_get_u16(data[IFLA_GRE_ERSPAN_HWID]); 1791 } 1792 } 1793 1794 static void ip6gre_netlink_parms(struct nlattr *data[], 1795 struct __ip6_tnl_parm *parms) 1796 { 1797 memset(parms, 0, sizeof(*parms)); 1798 1799 if (!data) 1800 return; 1801 1802 if (data[IFLA_GRE_LINK]) 1803 parms->link = nla_get_u32(data[IFLA_GRE_LINK]); 1804 1805 if (data[IFLA_GRE_IFLAGS]) 1806 gre_flags_to_tnl_flags(parms->i_flags, 1807 nla_get_be16(data[IFLA_GRE_IFLAGS])); 1808 1809 if (data[IFLA_GRE_OFLAGS]) 1810 gre_flags_to_tnl_flags(parms->o_flags, 1811 nla_get_be16(data[IFLA_GRE_OFLAGS])); 1812 1813 if (data[IFLA_GRE_IKEY]) 1814 parms->i_key = nla_get_be32(data[IFLA_GRE_IKEY]); 1815 1816 if (data[IFLA_GRE_OKEY]) 1817 parms->o_key = nla_get_be32(data[IFLA_GRE_OKEY]); 1818 1819 if (data[IFLA_GRE_LOCAL]) 1820 parms->laddr = nla_get_in6_addr(data[IFLA_GRE_LOCAL]); 1821 1822 if (data[IFLA_GRE_REMOTE]) 1823 parms->raddr = nla_get_in6_addr(data[IFLA_GRE_REMOTE]); 1824 1825 if (data[IFLA_GRE_TTL]) 1826 parms->hop_limit = nla_get_u8(data[IFLA_GRE_TTL]); 1827 1828 if (data[IFLA_GRE_ENCAP_LIMIT]) 1829 parms->encap_limit = nla_get_u8(data[IFLA_GRE_ENCAP_LIMIT]); 1830 1831 if (data[IFLA_GRE_FLOWINFO]) 1832 parms->flowinfo = nla_get_be32(data[IFLA_GRE_FLOWINFO]); 1833 1834 if (data[IFLA_GRE_FLAGS]) 1835 parms->flags = nla_get_u32(data[IFLA_GRE_FLAGS]); 1836 1837 if (data[IFLA_GRE_FWMARK]) 1838 parms->fwmark = nla_get_u32(data[IFLA_GRE_FWMARK]); 1839 1840 if (data[IFLA_GRE_COLLECT_METADATA]) 1841 parms->collect_md = true; 1842 } 1843 1844 static int ip6gre_tap_init(struct net_device *dev) 1845 { 1846 int ret; 1847 1848 ret = ip6gre_tunnel_init_common(dev); 1849 if (ret) 1850 return ret; 1851 1852 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; 1853 1854 return 0; 1855 } 1856 1857 static const struct net_device_ops ip6gre_tap_netdev_ops = { 1858 .ndo_init = ip6gre_tap_init, 1859 .ndo_uninit = ip6gre_tunnel_uninit, 1860 .ndo_start_xmit = ip6gre_tunnel_xmit, 1861 .ndo_set_mac_address = eth_mac_addr, 1862 .ndo_validate_addr = eth_validate_addr, 1863 .ndo_change_mtu = ip6_tnl_change_mtu, 1864 .ndo_get_stats64 = dev_get_tstats64, 1865 .ndo_get_iflink = ip6_tnl_get_iflink, 1866 }; 1867 1868 static int ip6erspan_calc_hlen(struct ip6_tnl *tunnel) 1869 { 1870 int t_hlen; 1871 1872 tunnel->tun_hlen = 8; 1873 tunnel->hlen = tunnel->tun_hlen + tunnel->encap_hlen + 1874 erspan_hdr_len(tunnel->parms.erspan_ver); 1875 1876 t_hlen = tunnel->hlen + sizeof(struct ipv6hdr); 1877 tunnel->dev->needed_headroom = LL_MAX_HEADER + t_hlen; 1878 return t_hlen; 1879 } 1880 1881 static int ip6erspan_tap_init(struct net_device *dev) 1882 { 1883 struct ip6_tnl *tunnel; 1884 int t_hlen; 1885 int ret; 1886 1887 tunnel = netdev_priv(dev); 1888 1889 tunnel->dev = dev; 1890 tunnel->net = dev_net(dev); 1891 strcpy(tunnel->parms.name, dev->name); 1892 1893 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats); 1894 if (!dev->tstats) 1895 return -ENOMEM; 1896 1897 ret = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL); 1898 if (ret) 1899 goto cleanup_alloc_pcpu_stats; 1900 1901 ret = gro_cells_init(&tunnel->gro_cells, dev); 1902 if (ret) 1903 goto cleanup_dst_cache_init; 1904 1905 t_hlen = ip6erspan_calc_hlen(tunnel); 1906 dev->mtu = ETH_DATA_LEN - t_hlen; 1907 if (dev->type == ARPHRD_ETHER) 1908 dev->mtu -= ETH_HLEN; 1909 if (!(tunnel->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) 1910 dev->mtu -= 8; 1911 1912 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; 1913 ip6erspan_tnl_link_config(tunnel, 1); 1914 1915 netdev_hold(dev, &tunnel->dev_tracker, GFP_KERNEL); 1916 netdev_lockdep_set_classes(dev); 1917 return 0; 1918 1919 cleanup_dst_cache_init: 1920 dst_cache_destroy(&tunnel->dst_cache); 1921 cleanup_alloc_pcpu_stats: 1922 free_percpu(dev->tstats); 1923 dev->tstats = NULL; 1924 return ret; 1925 } 1926 1927 static const struct net_device_ops ip6erspan_netdev_ops = { 1928 .ndo_init = ip6erspan_tap_init, 1929 .ndo_uninit = ip6erspan_tunnel_uninit, 1930 .ndo_start_xmit = ip6erspan_tunnel_xmit, 1931 .ndo_set_mac_address = eth_mac_addr, 1932 .ndo_validate_addr = eth_validate_addr, 1933 .ndo_change_mtu = ip6_tnl_change_mtu, 1934 .ndo_get_stats64 = dev_get_tstats64, 1935 .ndo_get_iflink = ip6_tnl_get_iflink, 1936 }; 1937 1938 static void ip6gre_tap_setup(struct net_device *dev) 1939 { 1940 1941 ether_setup(dev); 1942 1943 dev->max_mtu = 0; 1944 dev->netdev_ops = &ip6gre_tap_netdev_ops; 1945 dev->needs_free_netdev = true; 1946 dev->priv_destructor = ip6gre_dev_free; 1947 1948 dev->priv_flags &= ~IFF_TX_SKB_SHARING; 1949 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; 1950 netif_keep_dst(dev); 1951 } 1952 1953 static bool ip6gre_netlink_encap_parms(struct nlattr *data[], 1954 struct ip_tunnel_encap *ipencap) 1955 { 1956 bool ret = false; 1957 1958 memset(ipencap, 0, sizeof(*ipencap)); 1959 1960 if (!data) 1961 return ret; 1962 1963 if (data[IFLA_GRE_ENCAP_TYPE]) { 1964 ret = true; 1965 ipencap->type = nla_get_u16(data[IFLA_GRE_ENCAP_TYPE]); 1966 } 1967 1968 if (data[IFLA_GRE_ENCAP_FLAGS]) { 1969 ret = true; 1970 ipencap->flags = nla_get_u16(data[IFLA_GRE_ENCAP_FLAGS]); 1971 } 1972 1973 if (data[IFLA_GRE_ENCAP_SPORT]) { 1974 ret = true; 1975 ipencap->sport = nla_get_be16(data[IFLA_GRE_ENCAP_SPORT]); 1976 } 1977 1978 if (data[IFLA_GRE_ENCAP_DPORT]) { 1979 ret = true; 1980 ipencap->dport = nla_get_be16(data[IFLA_GRE_ENCAP_DPORT]); 1981 } 1982 1983 return ret; 1984 } 1985 1986 static int ip6gre_newlink_common(struct net *src_net, struct net_device *dev, 1987 struct nlattr *tb[], struct nlattr *data[], 1988 struct netlink_ext_ack *extack) 1989 { 1990 struct ip6_tnl *nt; 1991 struct ip_tunnel_encap ipencap; 1992 int err; 1993 1994 nt = netdev_priv(dev); 1995 1996 if (ip6gre_netlink_encap_parms(data, &ipencap)) { 1997 int err = ip6_tnl_encap_setup(nt, &ipencap); 1998 1999 if (err < 0) 2000 return err; 2001 } 2002 2003 if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS]) 2004 eth_hw_addr_random(dev); 2005 2006 nt->dev = dev; 2007 nt->net = dev_net(dev); 2008 2009 err = register_netdevice(dev); 2010 if (err) 2011 goto out; 2012 2013 if (tb[IFLA_MTU]) 2014 ip6_tnl_change_mtu(dev, nla_get_u32(tb[IFLA_MTU])); 2015 2016 out: 2017 return err; 2018 } 2019 2020 static int ip6gre_newlink(struct net *src_net, struct net_device *dev, 2021 struct nlattr *tb[], struct nlattr *data[], 2022 struct netlink_ext_ack *extack) 2023 { 2024 struct ip6_tnl *nt = netdev_priv(dev); 2025 struct net *net = dev_net(dev); 2026 struct ip6gre_net *ign; 2027 int err; 2028 2029 ip6gre_netlink_parms(data, &nt->parms); 2030 ign = net_generic(net, ip6gre_net_id); 2031 2032 if (nt->parms.collect_md) { 2033 if (rtnl_dereference(ign->collect_md_tun)) 2034 return -EEXIST; 2035 } else { 2036 if (ip6gre_tunnel_find(net, &nt->parms, dev->type)) 2037 return -EEXIST; 2038 } 2039 2040 err = ip6gre_newlink_common(src_net, dev, tb, data, extack); 2041 if (!err) { 2042 ip6gre_tnl_link_config(nt, !tb[IFLA_MTU]); 2043 ip6gre_tunnel_link_md(ign, nt); 2044 ip6gre_tunnel_link(net_generic(net, ip6gre_net_id), nt); 2045 } 2046 return err; 2047 } 2048 2049 static struct ip6_tnl * 2050 ip6gre_changelink_common(struct net_device *dev, struct nlattr *tb[], 2051 struct nlattr *data[], struct __ip6_tnl_parm *p_p, 2052 struct netlink_ext_ack *extack) 2053 { 2054 struct ip6_tnl *t, *nt = netdev_priv(dev); 2055 struct net *net = nt->net; 2056 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id); 2057 struct ip_tunnel_encap ipencap; 2058 2059 if (dev == ign->fb_tunnel_dev) 2060 return ERR_PTR(-EINVAL); 2061 2062 if (ip6gre_netlink_encap_parms(data, &ipencap)) { 2063 int err = ip6_tnl_encap_setup(nt, &ipencap); 2064 2065 if (err < 0) 2066 return ERR_PTR(err); 2067 } 2068 2069 ip6gre_netlink_parms(data, p_p); 2070 2071 t = ip6gre_tunnel_locate(net, p_p, 0); 2072 2073 if (t) { 2074 if (t->dev != dev) 2075 return ERR_PTR(-EEXIST); 2076 } else { 2077 t = nt; 2078 } 2079 2080 return t; 2081 } 2082 2083 static int ip6gre_changelink(struct net_device *dev, struct nlattr *tb[], 2084 struct nlattr *data[], 2085 struct netlink_ext_ack *extack) 2086 { 2087 struct ip6_tnl *t = netdev_priv(dev); 2088 struct ip6gre_net *ign = net_generic(t->net, ip6gre_net_id); 2089 struct __ip6_tnl_parm p; 2090 2091 t = ip6gre_changelink_common(dev, tb, data, &p, extack); 2092 if (IS_ERR(t)) 2093 return PTR_ERR(t); 2094 2095 ip6gre_tunnel_unlink_md(ign, t); 2096 ip6gre_tunnel_unlink(ign, t); 2097 ip6gre_tnl_change(t, &p, !tb[IFLA_MTU]); 2098 ip6gre_tunnel_link_md(ign, t); 2099 ip6gre_tunnel_link(ign, t); 2100 return 0; 2101 } 2102 2103 static void ip6gre_dellink(struct net_device *dev, struct list_head *head) 2104 { 2105 struct net *net = dev_net(dev); 2106 struct ip6gre_net *ign = net_generic(net, ip6gre_net_id); 2107 2108 if (dev != ign->fb_tunnel_dev) 2109 unregister_netdevice_queue(dev, head); 2110 } 2111 2112 static size_t ip6gre_get_size(const struct net_device *dev) 2113 { 2114 return 2115 /* IFLA_GRE_LINK */ 2116 nla_total_size(4) + 2117 /* IFLA_GRE_IFLAGS */ 2118 nla_total_size(2) + 2119 /* IFLA_GRE_OFLAGS */ 2120 nla_total_size(2) + 2121 /* IFLA_GRE_IKEY */ 2122 nla_total_size(4) + 2123 /* IFLA_GRE_OKEY */ 2124 nla_total_size(4) + 2125 /* IFLA_GRE_LOCAL */ 2126 nla_total_size(sizeof(struct in6_addr)) + 2127 /* IFLA_GRE_REMOTE */ 2128 nla_total_size(sizeof(struct in6_addr)) + 2129 /* IFLA_GRE_TTL */ 2130 nla_total_size(1) + 2131 /* IFLA_GRE_ENCAP_LIMIT */ 2132 nla_total_size(1) + 2133 /* IFLA_GRE_FLOWINFO */ 2134 nla_total_size(4) + 2135 /* IFLA_GRE_FLAGS */ 2136 nla_total_size(4) + 2137 /* IFLA_GRE_ENCAP_TYPE */ 2138 nla_total_size(2) + 2139 /* IFLA_GRE_ENCAP_FLAGS */ 2140 nla_total_size(2) + 2141 /* IFLA_GRE_ENCAP_SPORT */ 2142 nla_total_size(2) + 2143 /* IFLA_GRE_ENCAP_DPORT */ 2144 nla_total_size(2) + 2145 /* IFLA_GRE_COLLECT_METADATA */ 2146 nla_total_size(0) + 2147 /* IFLA_GRE_FWMARK */ 2148 nla_total_size(4) + 2149 /* IFLA_GRE_ERSPAN_INDEX */ 2150 nla_total_size(4) + 2151 0; 2152 } 2153 2154 static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev) 2155 { 2156 struct ip6_tnl *t = netdev_priv(dev); 2157 struct __ip6_tnl_parm *p = &t->parms; 2158 IP_TUNNEL_DECLARE_FLAGS(o_flags); 2159 2160 ip_tunnel_flags_copy(o_flags, p->o_flags); 2161 2162 if (p->erspan_ver == 1 || p->erspan_ver == 2) { 2163 if (!p->collect_md) 2164 __set_bit(IP_TUNNEL_KEY_BIT, o_flags); 2165 2166 if (nla_put_u8(skb, IFLA_GRE_ERSPAN_VER, p->erspan_ver)) 2167 goto nla_put_failure; 2168 2169 if (p->erspan_ver == 1) { 2170 if (nla_put_u32(skb, IFLA_GRE_ERSPAN_INDEX, p->index)) 2171 goto nla_put_failure; 2172 } else { 2173 if (nla_put_u8(skb, IFLA_GRE_ERSPAN_DIR, p->dir)) 2174 goto nla_put_failure; 2175 if (nla_put_u16(skb, IFLA_GRE_ERSPAN_HWID, p->hwid)) 2176 goto nla_put_failure; 2177 } 2178 } 2179 2180 if (nla_put_u32(skb, IFLA_GRE_LINK, p->link) || 2181 nla_put_be16(skb, IFLA_GRE_IFLAGS, 2182 gre_tnl_flags_to_gre_flags(p->i_flags)) || 2183 nla_put_be16(skb, IFLA_GRE_OFLAGS, 2184 gre_tnl_flags_to_gre_flags(o_flags)) || 2185 nla_put_be32(skb, IFLA_GRE_IKEY, p->i_key) || 2186 nla_put_be32(skb, IFLA_GRE_OKEY, p->o_key) || 2187 nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) || 2188 nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) || 2189 nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) || 2190 nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) || 2191 nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) || 2192 nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags) || 2193 nla_put_u32(skb, IFLA_GRE_FWMARK, p->fwmark)) 2194 goto nla_put_failure; 2195 2196 if (nla_put_u16(skb, IFLA_GRE_ENCAP_TYPE, 2197 t->encap.type) || 2198 nla_put_be16(skb, IFLA_GRE_ENCAP_SPORT, 2199 t->encap.sport) || 2200 nla_put_be16(skb, IFLA_GRE_ENCAP_DPORT, 2201 t->encap.dport) || 2202 nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS, 2203 t->encap.flags)) 2204 goto nla_put_failure; 2205 2206 if (p->collect_md) { 2207 if (nla_put_flag(skb, IFLA_GRE_COLLECT_METADATA)) 2208 goto nla_put_failure; 2209 } 2210 2211 return 0; 2212 2213 nla_put_failure: 2214 return -EMSGSIZE; 2215 } 2216 2217 static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = { 2218 [IFLA_GRE_LINK] = { .type = NLA_U32 }, 2219 [IFLA_GRE_IFLAGS] = { .type = NLA_U16 }, 2220 [IFLA_GRE_OFLAGS] = { .type = NLA_U16 }, 2221 [IFLA_GRE_IKEY] = { .type = NLA_U32 }, 2222 [IFLA_GRE_OKEY] = { .type = NLA_U32 }, 2223 [IFLA_GRE_LOCAL] = { .len = sizeof_field(struct ipv6hdr, saddr) }, 2224 [IFLA_GRE_REMOTE] = { .len = sizeof_field(struct ipv6hdr, daddr) }, 2225 [IFLA_GRE_TTL] = { .type = NLA_U8 }, 2226 [IFLA_GRE_ENCAP_LIMIT] = { .type = NLA_U8 }, 2227 [IFLA_GRE_FLOWINFO] = { .type = NLA_U32 }, 2228 [IFLA_GRE_FLAGS] = { .type = NLA_U32 }, 2229 [IFLA_GRE_ENCAP_TYPE] = { .type = NLA_U16 }, 2230 [IFLA_GRE_ENCAP_FLAGS] = { .type = NLA_U16 }, 2231 [IFLA_GRE_ENCAP_SPORT] = { .type = NLA_U16 }, 2232 [IFLA_GRE_ENCAP_DPORT] = { .type = NLA_U16 }, 2233 [IFLA_GRE_COLLECT_METADATA] = { .type = NLA_FLAG }, 2234 [IFLA_GRE_FWMARK] = { .type = NLA_U32 }, 2235 [IFLA_GRE_ERSPAN_INDEX] = { .type = NLA_U32 }, 2236 [IFLA_GRE_ERSPAN_VER] = { .type = NLA_U8 }, 2237 [IFLA_GRE_ERSPAN_DIR] = { .type = NLA_U8 }, 2238 [IFLA_GRE_ERSPAN_HWID] = { .type = NLA_U16 }, 2239 }; 2240 2241 static void ip6erspan_tap_setup(struct net_device *dev) 2242 { 2243 ether_setup(dev); 2244 2245 dev->max_mtu = 0; 2246 dev->netdev_ops = &ip6erspan_netdev_ops; 2247 dev->needs_free_netdev = true; 2248 dev->priv_destructor = ip6gre_dev_free; 2249 2250 dev->priv_flags &= ~IFF_TX_SKB_SHARING; 2251 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; 2252 netif_keep_dst(dev); 2253 } 2254 2255 static int ip6erspan_newlink(struct net *src_net, struct net_device *dev, 2256 struct nlattr *tb[], struct nlattr *data[], 2257 struct netlink_ext_ack *extack) 2258 { 2259 struct ip6_tnl *nt = netdev_priv(dev); 2260 struct net *net = dev_net(dev); 2261 struct ip6gre_net *ign; 2262 int err; 2263 2264 ip6gre_netlink_parms(data, &nt->parms); 2265 ip6erspan_set_version(data, &nt->parms); 2266 ign = net_generic(net, ip6gre_net_id); 2267 2268 if (nt->parms.collect_md) { 2269 if (rtnl_dereference(ign->collect_md_tun_erspan)) 2270 return -EEXIST; 2271 } else { 2272 if (ip6gre_tunnel_find(net, &nt->parms, dev->type)) 2273 return -EEXIST; 2274 } 2275 2276 err = ip6gre_newlink_common(src_net, dev, tb, data, extack); 2277 if (!err) { 2278 ip6erspan_tnl_link_config(nt, !tb[IFLA_MTU]); 2279 ip6erspan_tunnel_link_md(ign, nt); 2280 ip6gre_tunnel_link(net_generic(net, ip6gre_net_id), nt); 2281 } 2282 return err; 2283 } 2284 2285 static void ip6erspan_tnl_link_config(struct ip6_tnl *t, int set_mtu) 2286 { 2287 ip6gre_tnl_link_config_common(t); 2288 ip6gre_tnl_link_config_route(t, set_mtu, ip6erspan_calc_hlen(t)); 2289 } 2290 2291 static int ip6erspan_tnl_change(struct ip6_tnl *t, 2292 const struct __ip6_tnl_parm *p, int set_mtu) 2293 { 2294 ip6gre_tnl_copy_tnl_parm(t, p); 2295 ip6erspan_tnl_link_config(t, set_mtu); 2296 return 0; 2297 } 2298 2299 static int ip6erspan_changelink(struct net_device *dev, struct nlattr *tb[], 2300 struct nlattr *data[], 2301 struct netlink_ext_ack *extack) 2302 { 2303 struct ip6gre_net *ign = net_generic(dev_net(dev), ip6gre_net_id); 2304 struct __ip6_tnl_parm p; 2305 struct ip6_tnl *t; 2306 2307 t = ip6gre_changelink_common(dev, tb, data, &p, extack); 2308 if (IS_ERR(t)) 2309 return PTR_ERR(t); 2310 2311 ip6erspan_set_version(data, &p); 2312 ip6gre_tunnel_unlink_md(ign, t); 2313 ip6gre_tunnel_unlink(ign, t); 2314 ip6erspan_tnl_change(t, &p, !tb[IFLA_MTU]); 2315 ip6erspan_tunnel_link_md(ign, t); 2316 ip6gre_tunnel_link(ign, t); 2317 return 0; 2318 } 2319 2320 static struct rtnl_link_ops ip6gre_link_ops __read_mostly = { 2321 .kind = "ip6gre", 2322 .maxtype = IFLA_GRE_MAX, 2323 .policy = ip6gre_policy, 2324 .priv_size = sizeof(struct ip6_tnl), 2325 .setup = ip6gre_tunnel_setup, 2326 .validate = ip6gre_tunnel_validate, 2327 .newlink = ip6gre_newlink, 2328 .changelink = ip6gre_changelink, 2329 .dellink = ip6gre_dellink, 2330 .get_size = ip6gre_get_size, 2331 .fill_info = ip6gre_fill_info, 2332 .get_link_net = ip6_tnl_get_link_net, 2333 }; 2334 2335 static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = { 2336 .kind = "ip6gretap", 2337 .maxtype = IFLA_GRE_MAX, 2338 .policy = ip6gre_policy, 2339 .priv_size = sizeof(struct ip6_tnl), 2340 .setup = ip6gre_tap_setup, 2341 .validate = ip6gre_tap_validate, 2342 .newlink = ip6gre_newlink, 2343 .changelink = ip6gre_changelink, 2344 .get_size = ip6gre_get_size, 2345 .fill_info = ip6gre_fill_info, 2346 .get_link_net = ip6_tnl_get_link_net, 2347 }; 2348 2349 static struct rtnl_link_ops ip6erspan_tap_ops __read_mostly = { 2350 .kind = "ip6erspan", 2351 .maxtype = IFLA_GRE_MAX, 2352 .policy = ip6gre_policy, 2353 .priv_size = sizeof(struct ip6_tnl), 2354 .setup = ip6erspan_tap_setup, 2355 .validate = ip6erspan_tap_validate, 2356 .newlink = ip6erspan_newlink, 2357 .changelink = ip6erspan_changelink, 2358 .get_size = ip6gre_get_size, 2359 .fill_info = ip6gre_fill_info, 2360 .get_link_net = ip6_tnl_get_link_net, 2361 }; 2362 2363 /* 2364 * And now the modules code and kernel interface. 2365 */ 2366 2367 static int __init ip6gre_init(void) 2368 { 2369 int err; 2370 2371 pr_info("GRE over IPv6 tunneling driver\n"); 2372 2373 err = register_pernet_device(&ip6gre_net_ops); 2374 if (err < 0) 2375 return err; 2376 2377 err = inet6_add_protocol(&ip6gre_protocol, IPPROTO_GRE); 2378 if (err < 0) { 2379 pr_info("%s: can't add protocol\n", __func__); 2380 goto add_proto_failed; 2381 } 2382 2383 err = rtnl_link_register(&ip6gre_link_ops); 2384 if (err < 0) 2385 goto rtnl_link_failed; 2386 2387 err = rtnl_link_register(&ip6gre_tap_ops); 2388 if (err < 0) 2389 goto tap_ops_failed; 2390 2391 err = rtnl_link_register(&ip6erspan_tap_ops); 2392 if (err < 0) 2393 goto erspan_link_failed; 2394 2395 out: 2396 return err; 2397 2398 erspan_link_failed: 2399 rtnl_link_unregister(&ip6gre_tap_ops); 2400 tap_ops_failed: 2401 rtnl_link_unregister(&ip6gre_link_ops); 2402 rtnl_link_failed: 2403 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE); 2404 add_proto_failed: 2405 unregister_pernet_device(&ip6gre_net_ops); 2406 goto out; 2407 } 2408 2409 static void __exit ip6gre_fini(void) 2410 { 2411 rtnl_link_unregister(&ip6gre_tap_ops); 2412 rtnl_link_unregister(&ip6gre_link_ops); 2413 rtnl_link_unregister(&ip6erspan_tap_ops); 2414 inet6_del_protocol(&ip6gre_protocol, IPPROTO_GRE); 2415 unregister_pernet_device(&ip6gre_net_ops); 2416 } 2417 2418 module_init(ip6gre_init); 2419 module_exit(ip6gre_fini); 2420 MODULE_LICENSE("GPL"); 2421 MODULE_AUTHOR("D. Kozlov <xeb@mail.ru>"); 2422 MODULE_DESCRIPTION("GRE over IPv6 tunneling device"); 2423 MODULE_ALIAS_RTNL_LINK("ip6gre"); 2424 MODULE_ALIAS_RTNL_LINK("ip6gretap"); 2425 MODULE_ALIAS_RTNL_LINK("ip6erspan"); 2426 MODULE_ALIAS_NETDEV("ip6gre0"); 2427