1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * VXLAN: Virtual eXtensible Local Area Network 4 * 5 * Copyright (c) 2012-2013 Vyatta Inc. 6 */ 7 8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 9 10 #include <linux/kernel.h> 11 #include <linux/module.h> 12 #include <linux/errno.h> 13 #include <linux/slab.h> 14 #include <linux/udp.h> 15 #include <linux/igmp.h> 16 #include <linux/if_ether.h> 17 #include <linux/ethtool.h> 18 #include <net/arp.h> 19 #include <net/ndisc.h> 20 #include <net/gro.h> 21 #include <net/ipv6_stubs.h> 22 #include <net/ip.h> 23 #include <net/icmp.h> 24 #include <net/rtnetlink.h> 25 #include <net/inet_ecn.h> 26 #include <net/net_namespace.h> 27 #include <net/netns/generic.h> 28 #include <net/tun_proto.h> 29 #include <net/vxlan.h> 30 #include <net/nexthop.h> 31 32 #if IS_ENABLED(CONFIG_IPV6) 33 #include <net/ip6_tunnel.h> 34 #include <net/ip6_checksum.h> 35 #endif 36 37 #include "vxlan_private.h" 38 39 #define VXLAN_VERSION "0.1" 40 41 #define FDB_AGE_DEFAULT 300 /* 5 min */ 42 #define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */ 43 44 /* UDP port for VXLAN traffic. 45 * The IANA assigned port is 4789, but the Linux default is 8472 46 * for compatibility with early adopters. 47 */ 48 static unsigned short vxlan_port __read_mostly = 8472; 49 module_param_named(udp_port, vxlan_port, ushort, 0444); 50 MODULE_PARM_DESC(udp_port, "Destination UDP port"); 51 52 static bool log_ecn_error = true; 53 module_param(log_ecn_error, bool, 0644); 54 MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN"); 55 56 unsigned int vxlan_net_id; 57 58 const u8 all_zeros_mac[ETH_ALEN + 2]; 59 static struct rtnl_link_ops vxlan_link_ops; 60 61 static int vxlan_sock_add(struct vxlan_dev *vxlan); 62 63 static void vxlan_vs_del_dev(struct vxlan_dev *vxlan); 64 65 /* salt for hash table */ 66 static u32 vxlan_salt __read_mostly; 67 68 static inline bool vxlan_collect_metadata(struct vxlan_sock *vs) 69 { 70 return vs->flags & VXLAN_F_COLLECT_METADATA || 71 ip_tunnel_collect_metadata(); 72 } 73 74 /* Find VXLAN socket based on network namespace, address family, UDP port, 75 * enabled unshareable flags and socket device binding (see l3mdev with 76 * non-default VRF). 77 */ 78 static struct vxlan_sock *vxlan_find_sock(struct net *net, sa_family_t family, 79 __be16 port, u32 flags, int ifindex) 80 { 81 struct vxlan_sock *vs; 82 83 flags &= VXLAN_F_RCV_FLAGS; 84 85 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) { 86 if (inet_sk(vs->sock->sk)->inet_sport == port && 87 vxlan_get_sk_family(vs) == family && 88 vs->flags == flags && 89 vs->sock->sk->sk_bound_dev_if == ifindex) 90 return vs; 91 } 92 return NULL; 93 } 94 95 static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, 96 int ifindex, __be32 vni, 97 struct vxlan_vni_node **vninode) 98 { 99 struct vxlan_vni_node *vnode; 100 struct vxlan_dev_node *node; 101 102 /* For flow based devices, map all packets to VNI 0 */ 103 if (vs->flags & VXLAN_F_COLLECT_METADATA && 104 !(vs->flags & VXLAN_F_VNIFILTER)) 105 vni = 0; 106 107 hlist_for_each_entry_rcu(node, vni_head(vs, vni), hlist) { 108 if (!node->vxlan) 109 continue; 110 vnode = NULL; 111 if (node->vxlan->cfg.flags & VXLAN_F_VNIFILTER) { 112 vnode = vxlan_vnifilter_lookup(node->vxlan, vni); 113 if (!vnode) 114 continue; 115 } else if (node->vxlan->default_dst.remote_vni != vni) { 116 continue; 117 } 118 119 if (IS_ENABLED(CONFIG_IPV6)) { 120 const struct vxlan_config *cfg = &node->vxlan->cfg; 121 122 if ((cfg->flags & VXLAN_F_IPV6_LINKLOCAL) && 123 cfg->remote_ifindex != ifindex) 124 continue; 125 } 126 127 if (vninode) 128 *vninode = vnode; 129 return node->vxlan; 130 } 131 132 return NULL; 133 } 134 135 /* Look up VNI in a per net namespace table */ 136 static struct vxlan_dev *vxlan_find_vni(struct net *net, int ifindex, 137 __be32 vni, sa_family_t family, 138 __be16 port, u32 flags) 139 { 140 struct vxlan_sock *vs; 141 142 vs = vxlan_find_sock(net, family, port, flags, ifindex); 143 if (!vs) 144 return NULL; 145 146 return vxlan_vs_find_vni(vs, ifindex, vni, NULL); 147 } 148 149 /* Fill in neighbour message in skbuff. */ 150 static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan, 151 const struct vxlan_fdb *fdb, 152 u32 portid, u32 seq, int type, unsigned int flags, 153 const struct vxlan_rdst *rdst) 154 { 155 unsigned long now = jiffies; 156 struct nda_cacheinfo ci; 157 bool send_ip, send_eth; 158 struct nlmsghdr *nlh; 159 struct nexthop *nh; 160 struct ndmsg *ndm; 161 int nh_family; 162 u32 nh_id; 163 164 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags); 165 if (nlh == NULL) 166 return -EMSGSIZE; 167 168 ndm = nlmsg_data(nlh); 169 memset(ndm, 0, sizeof(*ndm)); 170 171 send_eth = send_ip = true; 172 173 rcu_read_lock(); 174 nh = rcu_dereference(fdb->nh); 175 if (nh) { 176 nh_family = nexthop_get_family(nh); 177 nh_id = nh->id; 178 } 179 rcu_read_unlock(); 180 181 if (type == RTM_GETNEIGH) { 182 if (rdst) { 183 send_ip = !vxlan_addr_any(&rdst->remote_ip); 184 ndm->ndm_family = send_ip ? rdst->remote_ip.sa.sa_family : AF_INET; 185 } else if (nh) { 186 ndm->ndm_family = nh_family; 187 } 188 send_eth = !is_zero_ether_addr(fdb->eth_addr); 189 } else 190 ndm->ndm_family = AF_BRIDGE; 191 ndm->ndm_state = fdb->state; 192 ndm->ndm_ifindex = vxlan->dev->ifindex; 193 ndm->ndm_flags = fdb->flags; 194 if (rdst && rdst->offloaded) 195 ndm->ndm_flags |= NTF_OFFLOADED; 196 ndm->ndm_type = RTN_UNICAST; 197 198 if (!net_eq(dev_net(vxlan->dev), vxlan->net) && 199 nla_put_s32(skb, NDA_LINK_NETNSID, 200 peernet2id(dev_net(vxlan->dev), vxlan->net))) 201 goto nla_put_failure; 202 203 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr)) 204 goto nla_put_failure; 205 if (nh) { 206 if (nla_put_u32(skb, NDA_NH_ID, nh_id)) 207 goto nla_put_failure; 208 } else if (rdst) { 209 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, 210 &rdst->remote_ip)) 211 goto nla_put_failure; 212 213 if (rdst->remote_port && 214 rdst->remote_port != vxlan->cfg.dst_port && 215 nla_put_be16(skb, NDA_PORT, rdst->remote_port)) 216 goto nla_put_failure; 217 if (rdst->remote_vni != vxlan->default_dst.remote_vni && 218 nla_put_u32(skb, NDA_VNI, be32_to_cpu(rdst->remote_vni))) 219 goto nla_put_failure; 220 if (rdst->remote_ifindex && 221 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex)) 222 goto nla_put_failure; 223 } 224 225 if ((vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) && fdb->vni && 226 nla_put_u32(skb, NDA_SRC_VNI, 227 be32_to_cpu(fdb->vni))) 228 goto nla_put_failure; 229 230 ci.ndm_used = jiffies_to_clock_t(now - READ_ONCE(fdb->used)); 231 ci.ndm_confirmed = 0; 232 ci.ndm_updated = jiffies_to_clock_t(now - READ_ONCE(fdb->updated)); 233 ci.ndm_refcnt = 0; 234 235 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci)) 236 goto nla_put_failure; 237 238 nlmsg_end(skb, nlh); 239 return 0; 240 241 nla_put_failure: 242 nlmsg_cancel(skb, nlh); 243 return -EMSGSIZE; 244 } 245 246 static inline size_t vxlan_nlmsg_size(void) 247 { 248 return NLMSG_ALIGN(sizeof(struct ndmsg)) 249 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */ 250 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */ 251 + nla_total_size(sizeof(__be16)) /* NDA_PORT */ 252 + nla_total_size(sizeof(__be32)) /* NDA_VNI */ 253 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */ 254 + nla_total_size(sizeof(__s32)) /* NDA_LINK_NETNSID */ 255 + nla_total_size(sizeof(struct nda_cacheinfo)); 256 } 257 258 static void __vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb, 259 struct vxlan_rdst *rd, int type) 260 { 261 struct net *net = dev_net(vxlan->dev); 262 struct sk_buff *skb; 263 int err = -ENOBUFS; 264 265 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC); 266 if (skb == NULL) 267 goto errout; 268 269 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd); 270 if (err < 0) { 271 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */ 272 WARN_ON(err == -EMSGSIZE); 273 kfree_skb(skb); 274 goto errout; 275 } 276 277 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC); 278 return; 279 errout: 280 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err); 281 } 282 283 static void vxlan_fdb_switchdev_notifier_info(const struct vxlan_dev *vxlan, 284 const struct vxlan_fdb *fdb, 285 const struct vxlan_rdst *rd, 286 struct netlink_ext_ack *extack, 287 struct switchdev_notifier_vxlan_fdb_info *fdb_info) 288 { 289 fdb_info->info.dev = vxlan->dev; 290 fdb_info->info.extack = extack; 291 fdb_info->remote_ip = rd->remote_ip; 292 fdb_info->remote_port = rd->remote_port; 293 fdb_info->remote_vni = rd->remote_vni; 294 fdb_info->remote_ifindex = rd->remote_ifindex; 295 memcpy(fdb_info->eth_addr, fdb->eth_addr, ETH_ALEN); 296 fdb_info->vni = fdb->vni; 297 fdb_info->offloaded = rd->offloaded; 298 fdb_info->added_by_user = fdb->flags & NTF_VXLAN_ADDED_BY_USER; 299 } 300 301 static int vxlan_fdb_switchdev_call_notifiers(struct vxlan_dev *vxlan, 302 struct vxlan_fdb *fdb, 303 struct vxlan_rdst *rd, 304 bool adding, 305 struct netlink_ext_ack *extack) 306 { 307 struct switchdev_notifier_vxlan_fdb_info info; 308 enum switchdev_notifier_type notifier_type; 309 int ret; 310 311 if (WARN_ON(!rd)) 312 return 0; 313 314 notifier_type = adding ? SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE 315 : SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE; 316 vxlan_fdb_switchdev_notifier_info(vxlan, fdb, rd, NULL, &info); 317 ret = call_switchdev_notifiers(notifier_type, vxlan->dev, 318 &info.info, extack); 319 return notifier_to_errno(ret); 320 } 321 322 static int vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb, 323 struct vxlan_rdst *rd, int type, bool swdev_notify, 324 struct netlink_ext_ack *extack) 325 { 326 int err; 327 328 if (swdev_notify && rd) { 329 switch (type) { 330 case RTM_NEWNEIGH: 331 err = vxlan_fdb_switchdev_call_notifiers(vxlan, fdb, rd, 332 true, extack); 333 if (err) 334 return err; 335 break; 336 case RTM_DELNEIGH: 337 vxlan_fdb_switchdev_call_notifiers(vxlan, fdb, rd, 338 false, extack); 339 break; 340 } 341 } 342 343 __vxlan_fdb_notify(vxlan, fdb, rd, type); 344 return 0; 345 } 346 347 static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa) 348 { 349 struct vxlan_dev *vxlan = netdev_priv(dev); 350 struct vxlan_fdb f = { 351 .state = NUD_STALE, 352 }; 353 struct vxlan_rdst remote = { 354 .remote_ip = *ipa, /* goes to NDA_DST */ 355 .remote_vni = cpu_to_be32(VXLAN_N_VID), 356 }; 357 358 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH, true, NULL); 359 } 360 361 static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN]) 362 { 363 struct vxlan_fdb f = { 364 .state = NUD_STALE, 365 }; 366 struct vxlan_rdst remote = { }; 367 368 memcpy(f.eth_addr, eth_addr, ETH_ALEN); 369 370 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH, true, NULL); 371 } 372 373 /* Hash Ethernet address */ 374 static u32 eth_hash(const unsigned char *addr) 375 { 376 u64 value = get_unaligned((u64 *)addr); 377 378 /* only want 6 bytes */ 379 #ifdef __BIG_ENDIAN 380 value >>= 16; 381 #else 382 value <<= 16; 383 #endif 384 return hash_64(value, FDB_HASH_BITS); 385 } 386 387 u32 eth_vni_hash(const unsigned char *addr, __be32 vni) 388 { 389 /* use 1 byte of OUI and 3 bytes of NIC */ 390 u32 key = get_unaligned((u32 *)(addr + 2)); 391 392 return jhash_2words(key, vni, vxlan_salt) & (FDB_HASH_SIZE - 1); 393 } 394 395 u32 fdb_head_index(struct vxlan_dev *vxlan, const u8 *mac, __be32 vni) 396 { 397 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) 398 return eth_vni_hash(mac, vni); 399 else 400 return eth_hash(mac); 401 } 402 403 /* Hash chain to use given mac address */ 404 static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan, 405 const u8 *mac, __be32 vni) 406 { 407 return &vxlan->fdb_head[fdb_head_index(vxlan, mac, vni)]; 408 } 409 410 /* Look up Ethernet address in forwarding table */ 411 static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan, 412 const u8 *mac, __be32 vni) 413 { 414 struct hlist_head *head = vxlan_fdb_head(vxlan, mac, vni); 415 struct vxlan_fdb *f; 416 417 hlist_for_each_entry_rcu(f, head, hlist) { 418 if (ether_addr_equal(mac, f->eth_addr)) { 419 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) { 420 if (vni == f->vni) 421 return f; 422 } else { 423 return f; 424 } 425 } 426 } 427 428 return NULL; 429 } 430 431 static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan, 432 const u8 *mac, __be32 vni) 433 { 434 struct vxlan_fdb *f; 435 436 f = __vxlan_find_mac(vxlan, mac, vni); 437 if (f) { 438 unsigned long now = jiffies; 439 440 if (READ_ONCE(f->used) != now) 441 WRITE_ONCE(f->used, now); 442 } 443 444 return f; 445 } 446 447 /* caller should hold vxlan->hash_lock */ 448 static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f, 449 union vxlan_addr *ip, __be16 port, 450 __be32 vni, __u32 ifindex) 451 { 452 struct vxlan_rdst *rd; 453 454 list_for_each_entry(rd, &f->remotes, list) { 455 if (vxlan_addr_equal(&rd->remote_ip, ip) && 456 rd->remote_port == port && 457 rd->remote_vni == vni && 458 rd->remote_ifindex == ifindex) 459 return rd; 460 } 461 462 return NULL; 463 } 464 465 int vxlan_fdb_find_uc(struct net_device *dev, const u8 *mac, __be32 vni, 466 struct switchdev_notifier_vxlan_fdb_info *fdb_info) 467 { 468 struct vxlan_dev *vxlan = netdev_priv(dev); 469 u8 eth_addr[ETH_ALEN + 2] = { 0 }; 470 struct vxlan_rdst *rdst; 471 struct vxlan_fdb *f; 472 int rc = 0; 473 474 if (is_multicast_ether_addr(mac) || 475 is_zero_ether_addr(mac)) 476 return -EINVAL; 477 478 ether_addr_copy(eth_addr, mac); 479 480 rcu_read_lock(); 481 482 f = __vxlan_find_mac(vxlan, eth_addr, vni); 483 if (!f) { 484 rc = -ENOENT; 485 goto out; 486 } 487 488 rdst = first_remote_rcu(f); 489 vxlan_fdb_switchdev_notifier_info(vxlan, f, rdst, NULL, fdb_info); 490 491 out: 492 rcu_read_unlock(); 493 return rc; 494 } 495 EXPORT_SYMBOL_GPL(vxlan_fdb_find_uc); 496 497 static int vxlan_fdb_notify_one(struct notifier_block *nb, 498 const struct vxlan_dev *vxlan, 499 const struct vxlan_fdb *f, 500 const struct vxlan_rdst *rdst, 501 struct netlink_ext_ack *extack) 502 { 503 struct switchdev_notifier_vxlan_fdb_info fdb_info; 504 int rc; 505 506 vxlan_fdb_switchdev_notifier_info(vxlan, f, rdst, extack, &fdb_info); 507 rc = nb->notifier_call(nb, SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE, 508 &fdb_info); 509 return notifier_to_errno(rc); 510 } 511 512 int vxlan_fdb_replay(const struct net_device *dev, __be32 vni, 513 struct notifier_block *nb, 514 struct netlink_ext_ack *extack) 515 { 516 struct vxlan_dev *vxlan; 517 struct vxlan_rdst *rdst; 518 struct vxlan_fdb *f; 519 unsigned int h; 520 int rc = 0; 521 522 if (!netif_is_vxlan(dev)) 523 return -EINVAL; 524 vxlan = netdev_priv(dev); 525 526 for (h = 0; h < FDB_HASH_SIZE; ++h) { 527 spin_lock_bh(&vxlan->hash_lock[h]); 528 hlist_for_each_entry(f, &vxlan->fdb_head[h], hlist) { 529 if (f->vni == vni) { 530 list_for_each_entry(rdst, &f->remotes, list) { 531 rc = vxlan_fdb_notify_one(nb, vxlan, 532 f, rdst, 533 extack); 534 if (rc) 535 goto unlock; 536 } 537 } 538 } 539 spin_unlock_bh(&vxlan->hash_lock[h]); 540 } 541 return 0; 542 543 unlock: 544 spin_unlock_bh(&vxlan->hash_lock[h]); 545 return rc; 546 } 547 EXPORT_SYMBOL_GPL(vxlan_fdb_replay); 548 549 void vxlan_fdb_clear_offload(const struct net_device *dev, __be32 vni) 550 { 551 struct vxlan_dev *vxlan; 552 struct vxlan_rdst *rdst; 553 struct vxlan_fdb *f; 554 unsigned int h; 555 556 if (!netif_is_vxlan(dev)) 557 return; 558 vxlan = netdev_priv(dev); 559 560 for (h = 0; h < FDB_HASH_SIZE; ++h) { 561 spin_lock_bh(&vxlan->hash_lock[h]); 562 hlist_for_each_entry(f, &vxlan->fdb_head[h], hlist) 563 if (f->vni == vni) 564 list_for_each_entry(rdst, &f->remotes, list) 565 rdst->offloaded = false; 566 spin_unlock_bh(&vxlan->hash_lock[h]); 567 } 568 569 } 570 EXPORT_SYMBOL_GPL(vxlan_fdb_clear_offload); 571 572 /* Replace destination of unicast mac */ 573 static int vxlan_fdb_replace(struct vxlan_fdb *f, 574 union vxlan_addr *ip, __be16 port, __be32 vni, 575 __u32 ifindex, struct vxlan_rdst *oldrd) 576 { 577 struct vxlan_rdst *rd; 578 579 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex); 580 if (rd) 581 return 0; 582 583 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list); 584 if (!rd) 585 return 0; 586 587 *oldrd = *rd; 588 dst_cache_reset(&rd->dst_cache); 589 rd->remote_ip = *ip; 590 rd->remote_port = port; 591 rd->remote_vni = vni; 592 rd->remote_ifindex = ifindex; 593 rd->offloaded = false; 594 return 1; 595 } 596 597 /* Add/update destinations for multicast */ 598 static int vxlan_fdb_append(struct vxlan_fdb *f, 599 union vxlan_addr *ip, __be16 port, __be32 vni, 600 __u32 ifindex, struct vxlan_rdst **rdp) 601 { 602 struct vxlan_rdst *rd; 603 604 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex); 605 if (rd) 606 return 0; 607 608 rd = kmalloc(sizeof(*rd), GFP_ATOMIC); 609 if (rd == NULL) 610 return -ENOMEM; 611 612 if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) { 613 kfree(rd); 614 return -ENOMEM; 615 } 616 617 rd->remote_ip = *ip; 618 rd->remote_port = port; 619 rd->offloaded = false; 620 rd->remote_vni = vni; 621 rd->remote_ifindex = ifindex; 622 623 list_add_tail_rcu(&rd->list, &f->remotes); 624 625 *rdp = rd; 626 return 1; 627 } 628 629 static bool vxlan_parse_gpe_proto(const struct vxlanhdr *hdr, __be16 *protocol) 630 { 631 const struct vxlanhdr_gpe *gpe = (const struct vxlanhdr_gpe *)hdr; 632 633 /* Need to have Next Protocol set for interfaces in GPE mode. */ 634 if (!gpe->np_applied) 635 return false; 636 /* "The initial version is 0. If a receiver does not support the 637 * version indicated it MUST drop the packet. 638 */ 639 if (gpe->version != 0) 640 return false; 641 /* "When the O bit is set to 1, the packet is an OAM packet and OAM 642 * processing MUST occur." However, we don't implement OAM 643 * processing, thus drop the packet. 644 */ 645 if (gpe->oam_flag) 646 return false; 647 648 *protocol = tun_p_to_eth_p(gpe->next_protocol); 649 if (!*protocol) 650 return false; 651 652 return true; 653 } 654 655 static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb, 656 unsigned int off, 657 struct vxlanhdr *vh, size_t hdrlen, 658 __be32 vni_field, 659 struct gro_remcsum *grc, 660 bool nopartial) 661 { 662 size_t start, offset; 663 664 if (skb->remcsum_offload) 665 return vh; 666 667 if (!NAPI_GRO_CB(skb)->csum_valid) 668 return NULL; 669 670 start = vxlan_rco_start(vni_field); 671 offset = start + vxlan_rco_offset(vni_field); 672 673 vh = skb_gro_remcsum_process(skb, (void *)vh, off, hdrlen, 674 start, offset, grc, nopartial); 675 676 skb->remcsum_offload = 1; 677 678 return vh; 679 } 680 681 static struct vxlanhdr *vxlan_gro_prepare_receive(struct sock *sk, 682 struct list_head *head, 683 struct sk_buff *skb, 684 struct gro_remcsum *grc) 685 { 686 struct sk_buff *p; 687 struct vxlanhdr *vh, *vh2; 688 unsigned int hlen, off_vx; 689 struct vxlan_sock *vs = rcu_dereference_sk_user_data(sk); 690 __be32 flags; 691 692 skb_gro_remcsum_init(grc); 693 694 off_vx = skb_gro_offset(skb); 695 hlen = off_vx + sizeof(*vh); 696 vh = skb_gro_header(skb, hlen, off_vx); 697 if (unlikely(!vh)) 698 return NULL; 699 700 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr)); 701 702 flags = vh->vx_flags; 703 704 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) { 705 vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr), 706 vh->vx_vni, grc, 707 !!(vs->flags & 708 VXLAN_F_REMCSUM_NOPARTIAL)); 709 710 if (!vh) 711 return NULL; 712 } 713 714 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */ 715 716 list_for_each_entry(p, head, list) { 717 if (!NAPI_GRO_CB(p)->same_flow) 718 continue; 719 720 vh2 = (struct vxlanhdr *)(p->data + off_vx); 721 if (vh->vx_flags != vh2->vx_flags || 722 vh->vx_vni != vh2->vx_vni) { 723 NAPI_GRO_CB(p)->same_flow = 0; 724 continue; 725 } 726 } 727 728 return vh; 729 } 730 731 static struct sk_buff *vxlan_gro_receive(struct sock *sk, 732 struct list_head *head, 733 struct sk_buff *skb) 734 { 735 struct sk_buff *pp = NULL; 736 struct gro_remcsum grc; 737 int flush = 1; 738 739 if (vxlan_gro_prepare_receive(sk, head, skb, &grc)) { 740 pp = call_gro_receive(eth_gro_receive, head, skb); 741 flush = 0; 742 } 743 skb_gro_flush_final_remcsum(skb, pp, flush, &grc); 744 return pp; 745 } 746 747 static struct sk_buff *vxlan_gpe_gro_receive(struct sock *sk, 748 struct list_head *head, 749 struct sk_buff *skb) 750 { 751 const struct packet_offload *ptype; 752 struct sk_buff *pp = NULL; 753 struct gro_remcsum grc; 754 struct vxlanhdr *vh; 755 __be16 protocol; 756 int flush = 1; 757 758 vh = vxlan_gro_prepare_receive(sk, head, skb, &grc); 759 if (vh) { 760 if (!vxlan_parse_gpe_proto(vh, &protocol)) 761 goto out; 762 ptype = gro_find_receive_by_type(protocol); 763 if (!ptype) 764 goto out; 765 pp = call_gro_receive(ptype->callbacks.gro_receive, head, skb); 766 flush = 0; 767 } 768 out: 769 skb_gro_flush_final_remcsum(skb, pp, flush, &grc); 770 return pp; 771 } 772 773 static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff) 774 { 775 /* Sets 'skb->inner_mac_header' since we are always called with 776 * 'skb->encapsulation' set. 777 */ 778 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr)); 779 } 780 781 static int vxlan_gpe_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff) 782 { 783 struct vxlanhdr *vh = (struct vxlanhdr *)(skb->data + nhoff); 784 const struct packet_offload *ptype; 785 int err = -ENOSYS; 786 __be16 protocol; 787 788 if (!vxlan_parse_gpe_proto(vh, &protocol)) 789 return err; 790 ptype = gro_find_complete_by_type(protocol); 791 if (ptype) 792 err = ptype->callbacks.gro_complete(skb, nhoff + sizeof(struct vxlanhdr)); 793 return err; 794 } 795 796 static struct vxlan_fdb *vxlan_fdb_alloc(struct vxlan_dev *vxlan, const u8 *mac, 797 __u16 state, __be32 src_vni, 798 __u16 ndm_flags) 799 { 800 struct vxlan_fdb *f; 801 802 f = kmalloc(sizeof(*f), GFP_ATOMIC); 803 if (!f) 804 return NULL; 805 f->state = state; 806 f->flags = ndm_flags; 807 f->updated = f->used = jiffies; 808 f->vni = src_vni; 809 f->nh = NULL; 810 RCU_INIT_POINTER(f->vdev, vxlan); 811 INIT_LIST_HEAD(&f->nh_list); 812 INIT_LIST_HEAD(&f->remotes); 813 memcpy(f->eth_addr, mac, ETH_ALEN); 814 815 return f; 816 } 817 818 static void vxlan_fdb_insert(struct vxlan_dev *vxlan, const u8 *mac, 819 __be32 src_vni, struct vxlan_fdb *f) 820 { 821 ++vxlan->addrcnt; 822 hlist_add_head_rcu(&f->hlist, 823 vxlan_fdb_head(vxlan, mac, src_vni)); 824 } 825 826 static int vxlan_fdb_nh_update(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb, 827 u32 nhid, struct netlink_ext_ack *extack) 828 { 829 struct nexthop *old_nh = rtnl_dereference(fdb->nh); 830 struct nexthop *nh; 831 int err = -EINVAL; 832 833 if (old_nh && old_nh->id == nhid) 834 return 0; 835 836 nh = nexthop_find_by_id(vxlan->net, nhid); 837 if (!nh) { 838 NL_SET_ERR_MSG(extack, "Nexthop id does not exist"); 839 goto err_inval; 840 } 841 842 if (!nexthop_get(nh)) { 843 NL_SET_ERR_MSG(extack, "Nexthop has been deleted"); 844 nh = NULL; 845 goto err_inval; 846 } 847 if (!nexthop_is_fdb(nh)) { 848 NL_SET_ERR_MSG(extack, "Nexthop is not a fdb nexthop"); 849 goto err_inval; 850 } 851 852 if (!nexthop_is_multipath(nh)) { 853 NL_SET_ERR_MSG(extack, "Nexthop is not a multipath group"); 854 goto err_inval; 855 } 856 857 /* check nexthop group family */ 858 switch (vxlan->default_dst.remote_ip.sa.sa_family) { 859 case AF_INET: 860 if (!nexthop_has_v4(nh)) { 861 err = -EAFNOSUPPORT; 862 NL_SET_ERR_MSG(extack, "Nexthop group family not supported"); 863 goto err_inval; 864 } 865 break; 866 case AF_INET6: 867 if (nexthop_has_v4(nh)) { 868 err = -EAFNOSUPPORT; 869 NL_SET_ERR_MSG(extack, "Nexthop group family not supported"); 870 goto err_inval; 871 } 872 } 873 874 if (old_nh) { 875 list_del_rcu(&fdb->nh_list); 876 nexthop_put(old_nh); 877 } 878 rcu_assign_pointer(fdb->nh, nh); 879 list_add_tail_rcu(&fdb->nh_list, &nh->fdb_list); 880 return 1; 881 882 err_inval: 883 if (nh) 884 nexthop_put(nh); 885 return err; 886 } 887 888 int vxlan_fdb_create(struct vxlan_dev *vxlan, 889 const u8 *mac, union vxlan_addr *ip, 890 __u16 state, __be16 port, __be32 src_vni, 891 __be32 vni, __u32 ifindex, __u16 ndm_flags, 892 u32 nhid, struct vxlan_fdb **fdb, 893 struct netlink_ext_ack *extack) 894 { 895 struct vxlan_rdst *rd = NULL; 896 struct vxlan_fdb *f; 897 int rc; 898 899 if (vxlan->cfg.addrmax && 900 vxlan->addrcnt >= vxlan->cfg.addrmax) 901 return -ENOSPC; 902 903 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip); 904 f = vxlan_fdb_alloc(vxlan, mac, state, src_vni, ndm_flags); 905 if (!f) 906 return -ENOMEM; 907 908 if (nhid) 909 rc = vxlan_fdb_nh_update(vxlan, f, nhid, extack); 910 else 911 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd); 912 if (rc < 0) 913 goto errout; 914 915 *fdb = f; 916 917 return 0; 918 919 errout: 920 kfree(f); 921 return rc; 922 } 923 924 static void __vxlan_fdb_free(struct vxlan_fdb *f) 925 { 926 struct vxlan_rdst *rd, *nd; 927 struct nexthop *nh; 928 929 nh = rcu_dereference_raw(f->nh); 930 if (nh) { 931 rcu_assign_pointer(f->nh, NULL); 932 rcu_assign_pointer(f->vdev, NULL); 933 nexthop_put(nh); 934 } 935 936 list_for_each_entry_safe(rd, nd, &f->remotes, list) { 937 dst_cache_destroy(&rd->dst_cache); 938 kfree(rd); 939 } 940 kfree(f); 941 } 942 943 static void vxlan_fdb_free(struct rcu_head *head) 944 { 945 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu); 946 947 __vxlan_fdb_free(f); 948 } 949 950 static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f, 951 bool do_notify, bool swdev_notify) 952 { 953 struct vxlan_rdst *rd; 954 955 netdev_dbg(vxlan->dev, "delete %pM\n", f->eth_addr); 956 957 --vxlan->addrcnt; 958 if (do_notify) { 959 if (rcu_access_pointer(f->nh)) 960 vxlan_fdb_notify(vxlan, f, NULL, RTM_DELNEIGH, 961 swdev_notify, NULL); 962 else 963 list_for_each_entry(rd, &f->remotes, list) 964 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH, 965 swdev_notify, NULL); 966 } 967 968 hlist_del_rcu(&f->hlist); 969 list_del_rcu(&f->nh_list); 970 call_rcu(&f->rcu, vxlan_fdb_free); 971 } 972 973 static void vxlan_dst_free(struct rcu_head *head) 974 { 975 struct vxlan_rdst *rd = container_of(head, struct vxlan_rdst, rcu); 976 977 dst_cache_destroy(&rd->dst_cache); 978 kfree(rd); 979 } 980 981 static int vxlan_fdb_update_existing(struct vxlan_dev *vxlan, 982 union vxlan_addr *ip, 983 __u16 state, __u16 flags, 984 __be16 port, __be32 vni, 985 __u32 ifindex, __u16 ndm_flags, 986 struct vxlan_fdb *f, u32 nhid, 987 bool swdev_notify, 988 struct netlink_ext_ack *extack) 989 { 990 __u16 fdb_flags = (ndm_flags & ~NTF_USE); 991 struct vxlan_rdst *rd = NULL; 992 struct vxlan_rdst oldrd; 993 int notify = 0; 994 int rc = 0; 995 int err; 996 997 if (nhid && !rcu_access_pointer(f->nh)) { 998 NL_SET_ERR_MSG(extack, 999 "Cannot replace an existing non nexthop fdb with a nexthop"); 1000 return -EOPNOTSUPP; 1001 } 1002 1003 if (nhid && (flags & NLM_F_APPEND)) { 1004 NL_SET_ERR_MSG(extack, 1005 "Cannot append to a nexthop fdb"); 1006 return -EOPNOTSUPP; 1007 } 1008 1009 /* Do not allow an externally learned entry to take over an entry added 1010 * by the user. 1011 */ 1012 if (!(fdb_flags & NTF_EXT_LEARNED) || 1013 !(f->flags & NTF_VXLAN_ADDED_BY_USER)) { 1014 if (f->state != state) { 1015 f->state = state; 1016 notify = 1; 1017 } 1018 if (f->flags != fdb_flags) { 1019 f->flags = fdb_flags; 1020 notify = 1; 1021 } 1022 } 1023 1024 if ((flags & NLM_F_REPLACE)) { 1025 /* Only change unicasts */ 1026 if (!(is_multicast_ether_addr(f->eth_addr) || 1027 is_zero_ether_addr(f->eth_addr))) { 1028 if (nhid) { 1029 rc = vxlan_fdb_nh_update(vxlan, f, nhid, extack); 1030 if (rc < 0) 1031 return rc; 1032 } else { 1033 rc = vxlan_fdb_replace(f, ip, port, vni, 1034 ifindex, &oldrd); 1035 } 1036 notify |= rc; 1037 } else { 1038 NL_SET_ERR_MSG(extack, "Cannot replace non-unicast fdb entries"); 1039 return -EOPNOTSUPP; 1040 } 1041 } 1042 if ((flags & NLM_F_APPEND) && 1043 (is_multicast_ether_addr(f->eth_addr) || 1044 is_zero_ether_addr(f->eth_addr))) { 1045 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd); 1046 1047 if (rc < 0) 1048 return rc; 1049 notify |= rc; 1050 } 1051 1052 if (ndm_flags & NTF_USE) 1053 WRITE_ONCE(f->updated, jiffies); 1054 1055 if (notify) { 1056 if (rd == NULL) 1057 rd = first_remote_rtnl(f); 1058 1059 WRITE_ONCE(f->updated, jiffies); 1060 err = vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH, 1061 swdev_notify, extack); 1062 if (err) 1063 goto err_notify; 1064 } 1065 1066 return 0; 1067 1068 err_notify: 1069 if (nhid) 1070 return err; 1071 if ((flags & NLM_F_REPLACE) && rc) 1072 *rd = oldrd; 1073 else if ((flags & NLM_F_APPEND) && rc) { 1074 list_del_rcu(&rd->list); 1075 call_rcu(&rd->rcu, vxlan_dst_free); 1076 } 1077 return err; 1078 } 1079 1080 static int vxlan_fdb_update_create(struct vxlan_dev *vxlan, 1081 const u8 *mac, union vxlan_addr *ip, 1082 __u16 state, __u16 flags, 1083 __be16 port, __be32 src_vni, __be32 vni, 1084 __u32 ifindex, __u16 ndm_flags, u32 nhid, 1085 bool swdev_notify, 1086 struct netlink_ext_ack *extack) 1087 { 1088 __u16 fdb_flags = (ndm_flags & ~NTF_USE); 1089 struct vxlan_fdb *f; 1090 int rc; 1091 1092 /* Disallow replace to add a multicast entry */ 1093 if ((flags & NLM_F_REPLACE) && 1094 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac))) 1095 return -EOPNOTSUPP; 1096 1097 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip); 1098 rc = vxlan_fdb_create(vxlan, mac, ip, state, port, src_vni, 1099 vni, ifindex, fdb_flags, nhid, &f, extack); 1100 if (rc < 0) 1101 return rc; 1102 1103 vxlan_fdb_insert(vxlan, mac, src_vni, f); 1104 rc = vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_NEWNEIGH, 1105 swdev_notify, extack); 1106 if (rc) 1107 goto err_notify; 1108 1109 return 0; 1110 1111 err_notify: 1112 vxlan_fdb_destroy(vxlan, f, false, false); 1113 return rc; 1114 } 1115 1116 /* Add new entry to forwarding table -- assumes lock held */ 1117 int vxlan_fdb_update(struct vxlan_dev *vxlan, 1118 const u8 *mac, union vxlan_addr *ip, 1119 __u16 state, __u16 flags, 1120 __be16 port, __be32 src_vni, __be32 vni, 1121 __u32 ifindex, __u16 ndm_flags, u32 nhid, 1122 bool swdev_notify, 1123 struct netlink_ext_ack *extack) 1124 { 1125 struct vxlan_fdb *f; 1126 1127 f = __vxlan_find_mac(vxlan, mac, src_vni); 1128 if (f) { 1129 if (flags & NLM_F_EXCL) { 1130 netdev_dbg(vxlan->dev, 1131 "lost race to create %pM\n", mac); 1132 return -EEXIST; 1133 } 1134 1135 return vxlan_fdb_update_existing(vxlan, ip, state, flags, port, 1136 vni, ifindex, ndm_flags, f, 1137 nhid, swdev_notify, extack); 1138 } else { 1139 if (!(flags & NLM_F_CREATE)) 1140 return -ENOENT; 1141 1142 return vxlan_fdb_update_create(vxlan, mac, ip, state, flags, 1143 port, src_vni, vni, ifindex, 1144 ndm_flags, nhid, swdev_notify, 1145 extack); 1146 } 1147 } 1148 1149 static void vxlan_fdb_dst_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f, 1150 struct vxlan_rdst *rd, bool swdev_notify) 1151 { 1152 list_del_rcu(&rd->list); 1153 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH, swdev_notify, NULL); 1154 call_rcu(&rd->rcu, vxlan_dst_free); 1155 } 1156 1157 static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan, 1158 union vxlan_addr *ip, __be16 *port, __be32 *src_vni, 1159 __be32 *vni, u32 *ifindex, u32 *nhid, 1160 struct netlink_ext_ack *extack) 1161 { 1162 struct net *net = dev_net(vxlan->dev); 1163 int err; 1164 1165 if (tb[NDA_NH_ID] && 1166 (tb[NDA_DST] || tb[NDA_VNI] || tb[NDA_IFINDEX] || tb[NDA_PORT])) { 1167 NL_SET_ERR_MSG(extack, "DST, VNI, ifindex and port are mutually exclusive with NH_ID"); 1168 return -EINVAL; 1169 } 1170 1171 if (tb[NDA_DST]) { 1172 err = vxlan_nla_get_addr(ip, tb[NDA_DST]); 1173 if (err) { 1174 NL_SET_ERR_MSG(extack, "Unsupported address family"); 1175 return err; 1176 } 1177 } else { 1178 union vxlan_addr *remote = &vxlan->default_dst.remote_ip; 1179 1180 if (remote->sa.sa_family == AF_INET) { 1181 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY); 1182 ip->sa.sa_family = AF_INET; 1183 #if IS_ENABLED(CONFIG_IPV6) 1184 } else { 1185 ip->sin6.sin6_addr = in6addr_any; 1186 ip->sa.sa_family = AF_INET6; 1187 #endif 1188 } 1189 } 1190 1191 if (tb[NDA_PORT]) { 1192 if (nla_len(tb[NDA_PORT]) != sizeof(__be16)) { 1193 NL_SET_ERR_MSG(extack, "Invalid vxlan port"); 1194 return -EINVAL; 1195 } 1196 *port = nla_get_be16(tb[NDA_PORT]); 1197 } else { 1198 *port = vxlan->cfg.dst_port; 1199 } 1200 1201 if (tb[NDA_VNI]) { 1202 if (nla_len(tb[NDA_VNI]) != sizeof(u32)) { 1203 NL_SET_ERR_MSG(extack, "Invalid vni"); 1204 return -EINVAL; 1205 } 1206 *vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI])); 1207 } else { 1208 *vni = vxlan->default_dst.remote_vni; 1209 } 1210 1211 if (tb[NDA_SRC_VNI]) { 1212 if (nla_len(tb[NDA_SRC_VNI]) != sizeof(u32)) { 1213 NL_SET_ERR_MSG(extack, "Invalid src vni"); 1214 return -EINVAL; 1215 } 1216 *src_vni = cpu_to_be32(nla_get_u32(tb[NDA_SRC_VNI])); 1217 } else { 1218 *src_vni = vxlan->default_dst.remote_vni; 1219 } 1220 1221 if (tb[NDA_IFINDEX]) { 1222 struct net_device *tdev; 1223 1224 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32)) { 1225 NL_SET_ERR_MSG(extack, "Invalid ifindex"); 1226 return -EINVAL; 1227 } 1228 *ifindex = nla_get_u32(tb[NDA_IFINDEX]); 1229 tdev = __dev_get_by_index(net, *ifindex); 1230 if (!tdev) { 1231 NL_SET_ERR_MSG(extack, "Device not found"); 1232 return -EADDRNOTAVAIL; 1233 } 1234 } else { 1235 *ifindex = 0; 1236 } 1237 1238 *nhid = nla_get_u32_default(tb[NDA_NH_ID], 0); 1239 1240 return 0; 1241 } 1242 1243 /* Add static entry (via netlink) */ 1244 static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[], 1245 struct net_device *dev, 1246 const unsigned char *addr, u16 vid, u16 flags, 1247 bool *notified, struct netlink_ext_ack *extack) 1248 { 1249 struct vxlan_dev *vxlan = netdev_priv(dev); 1250 /* struct net *net = dev_net(vxlan->dev); */ 1251 union vxlan_addr ip; 1252 __be16 port; 1253 __be32 src_vni, vni; 1254 u32 ifindex, nhid; 1255 u32 hash_index; 1256 int err; 1257 1258 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) { 1259 pr_info("RTM_NEWNEIGH with invalid state %#x\n", 1260 ndm->ndm_state); 1261 return -EINVAL; 1262 } 1263 1264 if (!tb || (!tb[NDA_DST] && !tb[NDA_NH_ID])) 1265 return -EINVAL; 1266 1267 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex, 1268 &nhid, extack); 1269 if (err) 1270 return err; 1271 1272 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family) 1273 return -EAFNOSUPPORT; 1274 1275 hash_index = fdb_head_index(vxlan, addr, src_vni); 1276 spin_lock_bh(&vxlan->hash_lock[hash_index]); 1277 err = vxlan_fdb_update(vxlan, addr, &ip, ndm->ndm_state, flags, 1278 port, src_vni, vni, ifindex, 1279 ndm->ndm_flags | NTF_VXLAN_ADDED_BY_USER, 1280 nhid, true, extack); 1281 spin_unlock_bh(&vxlan->hash_lock[hash_index]); 1282 1283 if (!err) 1284 *notified = true; 1285 1286 return err; 1287 } 1288 1289 int __vxlan_fdb_delete(struct vxlan_dev *vxlan, 1290 const unsigned char *addr, union vxlan_addr ip, 1291 __be16 port, __be32 src_vni, __be32 vni, 1292 u32 ifindex, bool swdev_notify) 1293 { 1294 struct vxlan_rdst *rd = NULL; 1295 struct vxlan_fdb *f; 1296 int err = -ENOENT; 1297 1298 f = __vxlan_find_mac(vxlan, addr, src_vni); 1299 if (!f) 1300 return err; 1301 1302 if (!vxlan_addr_any(&ip)) { 1303 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex); 1304 if (!rd) 1305 goto out; 1306 } 1307 1308 /* remove a destination if it's not the only one on the list, 1309 * otherwise destroy the fdb entry 1310 */ 1311 if (rd && !list_is_singular(&f->remotes)) { 1312 vxlan_fdb_dst_destroy(vxlan, f, rd, swdev_notify); 1313 goto out; 1314 } 1315 1316 vxlan_fdb_destroy(vxlan, f, true, swdev_notify); 1317 1318 out: 1319 return 0; 1320 } 1321 1322 /* Delete entry (via netlink) */ 1323 static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[], 1324 struct net_device *dev, 1325 const unsigned char *addr, u16 vid, bool *notified, 1326 struct netlink_ext_ack *extack) 1327 { 1328 struct vxlan_dev *vxlan = netdev_priv(dev); 1329 union vxlan_addr ip; 1330 __be32 src_vni, vni; 1331 u32 ifindex, nhid; 1332 u32 hash_index; 1333 __be16 port; 1334 int err; 1335 1336 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex, 1337 &nhid, extack); 1338 if (err) 1339 return err; 1340 1341 hash_index = fdb_head_index(vxlan, addr, src_vni); 1342 spin_lock_bh(&vxlan->hash_lock[hash_index]); 1343 err = __vxlan_fdb_delete(vxlan, addr, ip, port, src_vni, vni, ifindex, 1344 true); 1345 spin_unlock_bh(&vxlan->hash_lock[hash_index]); 1346 1347 if (!err) 1348 *notified = true; 1349 1350 return err; 1351 } 1352 1353 /* Dump forwarding table */ 1354 static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb, 1355 struct net_device *dev, 1356 struct net_device *filter_dev, int *idx) 1357 { 1358 struct ndo_fdb_dump_context *ctx = (void *)cb->ctx; 1359 struct vxlan_dev *vxlan = netdev_priv(dev); 1360 unsigned int h; 1361 int err = 0; 1362 1363 for (h = 0; h < FDB_HASH_SIZE; ++h) { 1364 struct vxlan_fdb *f; 1365 1366 rcu_read_lock(); 1367 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) { 1368 struct vxlan_rdst *rd; 1369 1370 if (rcu_access_pointer(f->nh)) { 1371 if (*idx < ctx->fdb_idx) 1372 goto skip_nh; 1373 err = vxlan_fdb_info(skb, vxlan, f, 1374 NETLINK_CB(cb->skb).portid, 1375 cb->nlh->nlmsg_seq, 1376 RTM_NEWNEIGH, 1377 NLM_F_MULTI, NULL); 1378 if (err < 0) { 1379 rcu_read_unlock(); 1380 goto out; 1381 } 1382 skip_nh: 1383 *idx += 1; 1384 continue; 1385 } 1386 1387 list_for_each_entry_rcu(rd, &f->remotes, list) { 1388 if (*idx < ctx->fdb_idx) 1389 goto skip; 1390 1391 err = vxlan_fdb_info(skb, vxlan, f, 1392 NETLINK_CB(cb->skb).portid, 1393 cb->nlh->nlmsg_seq, 1394 RTM_NEWNEIGH, 1395 NLM_F_MULTI, rd); 1396 if (err < 0) { 1397 rcu_read_unlock(); 1398 goto out; 1399 } 1400 skip: 1401 *idx += 1; 1402 } 1403 } 1404 rcu_read_unlock(); 1405 } 1406 out: 1407 return err; 1408 } 1409 1410 static int vxlan_fdb_get(struct sk_buff *skb, 1411 struct nlattr *tb[], 1412 struct net_device *dev, 1413 const unsigned char *addr, 1414 u16 vid, u32 portid, u32 seq, 1415 struct netlink_ext_ack *extack) 1416 { 1417 struct vxlan_dev *vxlan = netdev_priv(dev); 1418 struct vxlan_fdb *f; 1419 __be32 vni; 1420 int err; 1421 1422 if (tb[NDA_VNI]) 1423 vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI])); 1424 else 1425 vni = vxlan->default_dst.remote_vni; 1426 1427 rcu_read_lock(); 1428 1429 f = __vxlan_find_mac(vxlan, addr, vni); 1430 if (!f) { 1431 NL_SET_ERR_MSG(extack, "Fdb entry not found"); 1432 err = -ENOENT; 1433 goto errout; 1434 } 1435 1436 err = vxlan_fdb_info(skb, vxlan, f, portid, seq, 1437 RTM_NEWNEIGH, 0, first_remote_rcu(f)); 1438 errout: 1439 rcu_read_unlock(); 1440 return err; 1441 } 1442 1443 /* Watch incoming packets to learn mapping between Ethernet address 1444 * and Tunnel endpoint. 1445 */ 1446 static enum skb_drop_reason vxlan_snoop(struct net_device *dev, 1447 union vxlan_addr *src_ip, 1448 const u8 *src_mac, u32 src_ifindex, 1449 __be32 vni) 1450 { 1451 struct vxlan_dev *vxlan = netdev_priv(dev); 1452 struct vxlan_fdb *f; 1453 u32 ifindex = 0; 1454 1455 /* Ignore packets from invalid src-address */ 1456 if (!is_valid_ether_addr(src_mac)) 1457 return SKB_DROP_REASON_MAC_INVALID_SOURCE; 1458 1459 #if IS_ENABLED(CONFIG_IPV6) 1460 if (src_ip->sa.sa_family == AF_INET6 && 1461 (ipv6_addr_type(&src_ip->sin6.sin6_addr) & IPV6_ADDR_LINKLOCAL)) 1462 ifindex = src_ifindex; 1463 #endif 1464 1465 f = __vxlan_find_mac(vxlan, src_mac, vni); 1466 if (likely(f)) { 1467 struct vxlan_rdst *rdst = first_remote_rcu(f); 1468 unsigned long now = jiffies; 1469 1470 if (READ_ONCE(f->updated) != now) 1471 WRITE_ONCE(f->updated, now); 1472 1473 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip) && 1474 rdst->remote_ifindex == ifindex)) 1475 return SKB_NOT_DROPPED_YET; 1476 1477 /* Don't migrate static entries, drop packets */ 1478 if (f->state & (NUD_PERMANENT | NUD_NOARP)) 1479 return SKB_DROP_REASON_VXLAN_ENTRY_EXISTS; 1480 1481 /* Don't override an fdb with nexthop with a learnt entry */ 1482 if (rcu_access_pointer(f->nh)) 1483 return SKB_DROP_REASON_VXLAN_ENTRY_EXISTS; 1484 1485 if (net_ratelimit()) 1486 netdev_info(dev, 1487 "%pM migrated from %pIS to %pIS\n", 1488 src_mac, &rdst->remote_ip.sa, &src_ip->sa); 1489 1490 rdst->remote_ip = *src_ip; 1491 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH, true, NULL); 1492 } else { 1493 u32 hash_index = fdb_head_index(vxlan, src_mac, vni); 1494 1495 /* learned new entry */ 1496 spin_lock(&vxlan->hash_lock[hash_index]); 1497 1498 /* close off race between vxlan_flush and incoming packets */ 1499 if (netif_running(dev)) 1500 vxlan_fdb_update(vxlan, src_mac, src_ip, 1501 NUD_REACHABLE, 1502 NLM_F_EXCL|NLM_F_CREATE, 1503 vxlan->cfg.dst_port, 1504 vni, 1505 vxlan->default_dst.remote_vni, 1506 ifindex, NTF_SELF, 0, true, NULL); 1507 spin_unlock(&vxlan->hash_lock[hash_index]); 1508 } 1509 1510 return SKB_NOT_DROPPED_YET; 1511 } 1512 1513 static bool __vxlan_sock_release_prep(struct vxlan_sock *vs) 1514 { 1515 struct vxlan_net *vn; 1516 1517 if (!vs) 1518 return false; 1519 if (!refcount_dec_and_test(&vs->refcnt)) 1520 return false; 1521 1522 vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id); 1523 spin_lock(&vn->sock_lock); 1524 hlist_del_rcu(&vs->hlist); 1525 udp_tunnel_notify_del_rx_port(vs->sock, 1526 (vs->flags & VXLAN_F_GPE) ? 1527 UDP_TUNNEL_TYPE_VXLAN_GPE : 1528 UDP_TUNNEL_TYPE_VXLAN); 1529 spin_unlock(&vn->sock_lock); 1530 1531 return true; 1532 } 1533 1534 static void vxlan_sock_release(struct vxlan_dev *vxlan) 1535 { 1536 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock); 1537 #if IS_ENABLED(CONFIG_IPV6) 1538 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock); 1539 1540 RCU_INIT_POINTER(vxlan->vn6_sock, NULL); 1541 #endif 1542 1543 RCU_INIT_POINTER(vxlan->vn4_sock, NULL); 1544 synchronize_net(); 1545 1546 if (vxlan->cfg.flags & VXLAN_F_VNIFILTER) 1547 vxlan_vs_del_vnigrp(vxlan); 1548 else 1549 vxlan_vs_del_dev(vxlan); 1550 1551 if (__vxlan_sock_release_prep(sock4)) { 1552 udp_tunnel_sock_release(sock4->sock); 1553 kfree(sock4); 1554 } 1555 1556 #if IS_ENABLED(CONFIG_IPV6) 1557 if (__vxlan_sock_release_prep(sock6)) { 1558 udp_tunnel_sock_release(sock6->sock); 1559 kfree(sock6); 1560 } 1561 #endif 1562 } 1563 1564 static enum skb_drop_reason vxlan_remcsum(struct sk_buff *skb, u32 vxflags) 1565 { 1566 const struct vxlanhdr *vh = vxlan_hdr(skb); 1567 enum skb_drop_reason reason; 1568 size_t start, offset; 1569 1570 if (!(vh->vx_flags & VXLAN_HF_RCO) || skb->remcsum_offload) 1571 return SKB_NOT_DROPPED_YET; 1572 1573 start = vxlan_rco_start(vh->vx_vni); 1574 offset = start + vxlan_rco_offset(vh->vx_vni); 1575 1576 reason = pskb_may_pull_reason(skb, offset + sizeof(u16)); 1577 if (reason) 1578 return reason; 1579 1580 skb_remcsum_process(skb, (void *)(vxlan_hdr(skb) + 1), start, offset, 1581 !!(vxflags & VXLAN_F_REMCSUM_NOPARTIAL)); 1582 return SKB_NOT_DROPPED_YET; 1583 } 1584 1585 static void vxlan_parse_gbp_hdr(struct sk_buff *skb, u32 vxflags, 1586 struct vxlan_metadata *md) 1587 { 1588 const struct vxlanhdr *vh = vxlan_hdr(skb); 1589 const struct vxlanhdr_gbp *gbp; 1590 struct metadata_dst *tun_dst; 1591 1592 gbp = (const struct vxlanhdr_gbp *)vh; 1593 1594 if (!(vh->vx_flags & VXLAN_HF_GBP)) 1595 return; 1596 1597 md->gbp = ntohs(gbp->policy_id); 1598 1599 tun_dst = (struct metadata_dst *)skb_dst(skb); 1600 if (tun_dst) { 1601 __set_bit(IP_TUNNEL_VXLAN_OPT_BIT, 1602 tun_dst->u.tun_info.key.tun_flags); 1603 tun_dst->u.tun_info.options_len = sizeof(*md); 1604 } 1605 if (gbp->dont_learn) 1606 md->gbp |= VXLAN_GBP_DONT_LEARN; 1607 1608 if (gbp->policy_applied) 1609 md->gbp |= VXLAN_GBP_POLICY_APPLIED; 1610 1611 /* In flow-based mode, GBP is carried in dst_metadata */ 1612 if (!(vxflags & VXLAN_F_COLLECT_METADATA)) 1613 skb->mark = md->gbp; 1614 } 1615 1616 static enum skb_drop_reason vxlan_set_mac(struct vxlan_dev *vxlan, 1617 struct vxlan_sock *vs, 1618 struct sk_buff *skb, __be32 vni) 1619 { 1620 union vxlan_addr saddr; 1621 u32 ifindex = skb->dev->ifindex; 1622 1623 skb_reset_mac_header(skb); 1624 skb->protocol = eth_type_trans(skb, vxlan->dev); 1625 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN); 1626 1627 /* Ignore packet loops (and multicast echo) */ 1628 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr)) 1629 return SKB_DROP_REASON_LOCAL_MAC; 1630 1631 /* Get address from the outer IP header */ 1632 if (vxlan_get_sk_family(vs) == AF_INET) { 1633 saddr.sin.sin_addr.s_addr = ip_hdr(skb)->saddr; 1634 saddr.sa.sa_family = AF_INET; 1635 #if IS_ENABLED(CONFIG_IPV6) 1636 } else { 1637 saddr.sin6.sin6_addr = ipv6_hdr(skb)->saddr; 1638 saddr.sa.sa_family = AF_INET6; 1639 #endif 1640 } 1641 1642 if (!(vxlan->cfg.flags & VXLAN_F_LEARN)) 1643 return SKB_NOT_DROPPED_YET; 1644 1645 return vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source, 1646 ifindex, vni); 1647 } 1648 1649 static bool vxlan_ecn_decapsulate(struct vxlan_sock *vs, void *oiph, 1650 struct sk_buff *skb) 1651 { 1652 int err = 0; 1653 1654 if (vxlan_get_sk_family(vs) == AF_INET) 1655 err = IP_ECN_decapsulate(oiph, skb); 1656 #if IS_ENABLED(CONFIG_IPV6) 1657 else 1658 err = IP6_ECN_decapsulate(oiph, skb); 1659 #endif 1660 1661 if (unlikely(err) && log_ecn_error) { 1662 if (vxlan_get_sk_family(vs) == AF_INET) 1663 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n", 1664 &((struct iphdr *)oiph)->saddr, 1665 ((struct iphdr *)oiph)->tos); 1666 else 1667 net_info_ratelimited("non-ECT from %pI6\n", 1668 &((struct ipv6hdr *)oiph)->saddr); 1669 } 1670 return err <= 1; 1671 } 1672 1673 static int vxlan_rcv(struct sock *sk, struct sk_buff *skb) 1674 { 1675 struct vxlan_vni_node *vninode = NULL; 1676 const struct vxlanhdr *vh; 1677 struct vxlan_dev *vxlan; 1678 struct vxlan_sock *vs; 1679 struct vxlan_metadata _md; 1680 struct vxlan_metadata *md = &_md; 1681 __be16 protocol = htons(ETH_P_TEB); 1682 enum skb_drop_reason reason; 1683 bool raw_proto = false; 1684 void *oiph; 1685 __be32 vni = 0; 1686 int nh; 1687 1688 /* Need UDP and VXLAN header to be present */ 1689 reason = pskb_may_pull_reason(skb, VXLAN_HLEN); 1690 if (reason) 1691 goto drop; 1692 1693 vh = vxlan_hdr(skb); 1694 /* VNI flag always required to be set */ 1695 if (!(vh->vx_flags & VXLAN_HF_VNI)) { 1696 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n", 1697 ntohl(vh->vx_flags), ntohl(vh->vx_vni)); 1698 reason = SKB_DROP_REASON_VXLAN_INVALID_HDR; 1699 /* Return non vxlan pkt */ 1700 goto drop; 1701 } 1702 1703 vs = rcu_dereference_sk_user_data(sk); 1704 if (!vs) 1705 goto drop; 1706 1707 vni = vxlan_vni(vh->vx_vni); 1708 1709 vxlan = vxlan_vs_find_vni(vs, skb->dev->ifindex, vni, &vninode); 1710 if (!vxlan) { 1711 reason = SKB_DROP_REASON_VXLAN_VNI_NOT_FOUND; 1712 goto drop; 1713 } 1714 1715 if (vh->vx_flags & vxlan->cfg.reserved_bits.vx_flags || 1716 vh->vx_vni & vxlan->cfg.reserved_bits.vx_vni) { 1717 /* If the header uses bits besides those enabled by the 1718 * netdevice configuration, treat this as a malformed packet. 1719 * This behavior diverges from VXLAN RFC (RFC7348) which 1720 * stipulates that bits in reserved in reserved fields are to be 1721 * ignored. The approach here maintains compatibility with 1722 * previous stack code, and also is more robust and provides a 1723 * little more security in adding extensions to VXLAN. 1724 */ 1725 reason = SKB_DROP_REASON_VXLAN_INVALID_HDR; 1726 DEV_STATS_INC(vxlan->dev, rx_frame_errors); 1727 DEV_STATS_INC(vxlan->dev, rx_errors); 1728 vxlan_vnifilter_count(vxlan, vni, vninode, 1729 VXLAN_VNI_STATS_RX_ERRORS, 0); 1730 goto drop; 1731 } 1732 1733 if (vxlan->cfg.flags & VXLAN_F_GPE) { 1734 if (!vxlan_parse_gpe_proto(vh, &protocol)) 1735 goto drop; 1736 raw_proto = true; 1737 } 1738 1739 if (__iptunnel_pull_header(skb, VXLAN_HLEN, protocol, raw_proto, 1740 !net_eq(vxlan->net, dev_net(vxlan->dev)))) { 1741 reason = SKB_DROP_REASON_NOMEM; 1742 goto drop; 1743 } 1744 1745 if (vxlan->cfg.flags & VXLAN_F_REMCSUM_RX) { 1746 reason = vxlan_remcsum(skb, vxlan->cfg.flags); 1747 if (unlikely(reason)) 1748 goto drop; 1749 } 1750 1751 if (vxlan_collect_metadata(vs)) { 1752 IP_TUNNEL_DECLARE_FLAGS(flags) = { }; 1753 struct metadata_dst *tun_dst; 1754 1755 __set_bit(IP_TUNNEL_KEY_BIT, flags); 1756 tun_dst = udp_tun_rx_dst(skb, vxlan_get_sk_family(vs), flags, 1757 key32_to_tunnel_id(vni), sizeof(*md)); 1758 1759 if (!tun_dst) { 1760 reason = SKB_DROP_REASON_NOMEM; 1761 goto drop; 1762 } 1763 1764 md = ip_tunnel_info_opts(&tun_dst->u.tun_info); 1765 1766 skb_dst_set(skb, (struct dst_entry *)tun_dst); 1767 } else { 1768 memset(md, 0, sizeof(*md)); 1769 } 1770 1771 if (vxlan->cfg.flags & VXLAN_F_GBP) 1772 vxlan_parse_gbp_hdr(skb, vxlan->cfg.flags, md); 1773 /* Note that GBP and GPE can never be active together. This is 1774 * ensured in vxlan_dev_configure. 1775 */ 1776 1777 if (!raw_proto) { 1778 reason = vxlan_set_mac(vxlan, vs, skb, vni); 1779 if (reason) 1780 goto drop; 1781 } else { 1782 skb_reset_mac_header(skb); 1783 skb->dev = vxlan->dev; 1784 skb->pkt_type = PACKET_HOST; 1785 } 1786 1787 /* Save offset of outer header relative to skb->head, 1788 * because we are going to reset the network header to the inner header 1789 * and might change skb->head. 1790 */ 1791 nh = skb_network_header(skb) - skb->head; 1792 1793 skb_reset_network_header(skb); 1794 1795 reason = pskb_inet_may_pull_reason(skb); 1796 if (reason) { 1797 DEV_STATS_INC(vxlan->dev, rx_length_errors); 1798 DEV_STATS_INC(vxlan->dev, rx_errors); 1799 vxlan_vnifilter_count(vxlan, vni, vninode, 1800 VXLAN_VNI_STATS_RX_ERRORS, 0); 1801 goto drop; 1802 } 1803 1804 /* Get the outer header. */ 1805 oiph = skb->head + nh; 1806 1807 if (!vxlan_ecn_decapsulate(vs, oiph, skb)) { 1808 reason = SKB_DROP_REASON_IP_TUNNEL_ECN; 1809 DEV_STATS_INC(vxlan->dev, rx_frame_errors); 1810 DEV_STATS_INC(vxlan->dev, rx_errors); 1811 vxlan_vnifilter_count(vxlan, vni, vninode, 1812 VXLAN_VNI_STATS_RX_ERRORS, 0); 1813 goto drop; 1814 } 1815 1816 rcu_read_lock(); 1817 1818 if (unlikely(!(vxlan->dev->flags & IFF_UP))) { 1819 rcu_read_unlock(); 1820 dev_dstats_rx_dropped(vxlan->dev); 1821 vxlan_vnifilter_count(vxlan, vni, vninode, 1822 VXLAN_VNI_STATS_RX_DROPS, 0); 1823 reason = SKB_DROP_REASON_DEV_READY; 1824 goto drop; 1825 } 1826 1827 dev_dstats_rx_add(vxlan->dev, skb->len); 1828 vxlan_vnifilter_count(vxlan, vni, vninode, VXLAN_VNI_STATS_RX, skb->len); 1829 gro_cells_receive(&vxlan->gro_cells, skb); 1830 1831 rcu_read_unlock(); 1832 1833 return 0; 1834 1835 drop: 1836 reason = reason ?: SKB_DROP_REASON_NOT_SPECIFIED; 1837 /* Consume bad packet */ 1838 kfree_skb_reason(skb, reason); 1839 return 0; 1840 } 1841 1842 static int vxlan_err_lookup(struct sock *sk, struct sk_buff *skb) 1843 { 1844 struct vxlan_dev *vxlan; 1845 struct vxlan_sock *vs; 1846 struct vxlanhdr *hdr; 1847 __be32 vni; 1848 1849 if (!pskb_may_pull(skb, skb_transport_offset(skb) + VXLAN_HLEN)) 1850 return -EINVAL; 1851 1852 hdr = vxlan_hdr(skb); 1853 1854 if (!(hdr->vx_flags & VXLAN_HF_VNI)) 1855 return -EINVAL; 1856 1857 vs = rcu_dereference_sk_user_data(sk); 1858 if (!vs) 1859 return -ENOENT; 1860 1861 vni = vxlan_vni(hdr->vx_vni); 1862 vxlan = vxlan_vs_find_vni(vs, skb->dev->ifindex, vni, NULL); 1863 if (!vxlan) 1864 return -ENOENT; 1865 1866 return 0; 1867 } 1868 1869 static int arp_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni) 1870 { 1871 struct vxlan_dev *vxlan = netdev_priv(dev); 1872 struct arphdr *parp; 1873 u8 *arpptr, *sha; 1874 __be32 sip, tip; 1875 struct neighbour *n; 1876 1877 if (dev->flags & IFF_NOARP) 1878 goto out; 1879 1880 if (!pskb_may_pull(skb, arp_hdr_len(dev))) { 1881 dev_dstats_tx_dropped(dev); 1882 vxlan_vnifilter_count(vxlan, vni, NULL, 1883 VXLAN_VNI_STATS_TX_DROPS, 0); 1884 goto out; 1885 } 1886 parp = arp_hdr(skb); 1887 1888 if ((parp->ar_hrd != htons(ARPHRD_ETHER) && 1889 parp->ar_hrd != htons(ARPHRD_IEEE802)) || 1890 parp->ar_pro != htons(ETH_P_IP) || 1891 parp->ar_op != htons(ARPOP_REQUEST) || 1892 parp->ar_hln != dev->addr_len || 1893 parp->ar_pln != 4) 1894 goto out; 1895 arpptr = (u8 *)parp + sizeof(struct arphdr); 1896 sha = arpptr; 1897 arpptr += dev->addr_len; /* sha */ 1898 memcpy(&sip, arpptr, sizeof(sip)); 1899 arpptr += sizeof(sip); 1900 arpptr += dev->addr_len; /* tha */ 1901 memcpy(&tip, arpptr, sizeof(tip)); 1902 1903 if (ipv4_is_loopback(tip) || 1904 ipv4_is_multicast(tip)) 1905 goto out; 1906 1907 n = neigh_lookup(&arp_tbl, &tip, dev); 1908 1909 if (n) { 1910 struct vxlan_fdb *f; 1911 struct sk_buff *reply; 1912 1913 if (!(READ_ONCE(n->nud_state) & NUD_CONNECTED)) { 1914 neigh_release(n); 1915 goto out; 1916 } 1917 1918 f = vxlan_find_mac(vxlan, n->ha, vni); 1919 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) { 1920 /* bridge-local neighbor */ 1921 neigh_release(n); 1922 goto out; 1923 } 1924 1925 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha, 1926 n->ha, sha); 1927 1928 neigh_release(n); 1929 1930 if (reply == NULL) 1931 goto out; 1932 1933 skb_reset_mac_header(reply); 1934 __skb_pull(reply, skb_network_offset(reply)); 1935 reply->ip_summed = CHECKSUM_UNNECESSARY; 1936 reply->pkt_type = PACKET_HOST; 1937 1938 if (netif_rx(reply) == NET_RX_DROP) { 1939 dev_dstats_rx_dropped(dev); 1940 vxlan_vnifilter_count(vxlan, vni, NULL, 1941 VXLAN_VNI_STATS_RX_DROPS, 0); 1942 } 1943 1944 } else if (vxlan->cfg.flags & VXLAN_F_L3MISS) { 1945 union vxlan_addr ipa = { 1946 .sin.sin_addr.s_addr = tip, 1947 .sin.sin_family = AF_INET, 1948 }; 1949 1950 vxlan_ip_miss(dev, &ipa); 1951 } 1952 out: 1953 consume_skb(skb); 1954 return NETDEV_TX_OK; 1955 } 1956 1957 #if IS_ENABLED(CONFIG_IPV6) 1958 static struct sk_buff *vxlan_na_create(struct sk_buff *request, 1959 struct neighbour *n, bool isrouter) 1960 { 1961 struct net_device *dev = request->dev; 1962 struct sk_buff *reply; 1963 struct nd_msg *ns, *na; 1964 struct ipv6hdr *pip6; 1965 u8 *daddr; 1966 int na_olen = 8; /* opt hdr + ETH_ALEN for target */ 1967 int ns_olen; 1968 int i, len; 1969 1970 if (dev == NULL || !pskb_may_pull(request, request->len)) 1971 return NULL; 1972 1973 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) + 1974 sizeof(*na) + na_olen + dev->needed_tailroom; 1975 reply = alloc_skb(len, GFP_ATOMIC); 1976 if (reply == NULL) 1977 return NULL; 1978 1979 reply->protocol = htons(ETH_P_IPV6); 1980 reply->dev = dev; 1981 skb_reserve(reply, LL_RESERVED_SPACE(request->dev)); 1982 skb_push(reply, sizeof(struct ethhdr)); 1983 skb_reset_mac_header(reply); 1984 1985 ns = (struct nd_msg *)(ipv6_hdr(request) + 1); 1986 1987 daddr = eth_hdr(request)->h_source; 1988 ns_olen = request->len - skb_network_offset(request) - 1989 sizeof(struct ipv6hdr) - sizeof(*ns); 1990 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) { 1991 if (!ns->opt[i + 1]) { 1992 kfree_skb(reply); 1993 return NULL; 1994 } 1995 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) { 1996 daddr = ns->opt + i + sizeof(struct nd_opt_hdr); 1997 break; 1998 } 1999 } 2000 2001 /* Ethernet header */ 2002 ether_addr_copy(eth_hdr(reply)->h_dest, daddr); 2003 ether_addr_copy(eth_hdr(reply)->h_source, n->ha); 2004 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6); 2005 reply->protocol = htons(ETH_P_IPV6); 2006 2007 skb_pull(reply, sizeof(struct ethhdr)); 2008 skb_reset_network_header(reply); 2009 skb_put(reply, sizeof(struct ipv6hdr)); 2010 2011 /* IPv6 header */ 2012 2013 pip6 = ipv6_hdr(reply); 2014 memset(pip6, 0, sizeof(struct ipv6hdr)); 2015 pip6->version = 6; 2016 pip6->priority = ipv6_hdr(request)->priority; 2017 pip6->nexthdr = IPPROTO_ICMPV6; 2018 pip6->hop_limit = 255; 2019 pip6->daddr = ipv6_hdr(request)->saddr; 2020 pip6->saddr = *(struct in6_addr *)n->primary_key; 2021 2022 skb_pull(reply, sizeof(struct ipv6hdr)); 2023 skb_reset_transport_header(reply); 2024 2025 /* Neighbor Advertisement */ 2026 na = skb_put_zero(reply, sizeof(*na) + na_olen); 2027 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT; 2028 na->icmph.icmp6_router = isrouter; 2029 na->icmph.icmp6_override = 1; 2030 na->icmph.icmp6_solicited = 1; 2031 na->target = ns->target; 2032 ether_addr_copy(&na->opt[2], n->ha); 2033 na->opt[0] = ND_OPT_TARGET_LL_ADDR; 2034 na->opt[1] = na_olen >> 3; 2035 2036 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr, 2037 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6, 2038 csum_partial(na, sizeof(*na)+na_olen, 0)); 2039 2040 pip6->payload_len = htons(sizeof(*na)+na_olen); 2041 2042 skb_push(reply, sizeof(struct ipv6hdr)); 2043 2044 reply->ip_summed = CHECKSUM_UNNECESSARY; 2045 2046 return reply; 2047 } 2048 2049 static int neigh_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni) 2050 { 2051 struct vxlan_dev *vxlan = netdev_priv(dev); 2052 const struct in6_addr *daddr; 2053 const struct ipv6hdr *iphdr; 2054 struct inet6_dev *in6_dev; 2055 struct neighbour *n; 2056 struct nd_msg *msg; 2057 2058 rcu_read_lock(); 2059 in6_dev = __in6_dev_get(dev); 2060 if (!in6_dev) 2061 goto out; 2062 2063 iphdr = ipv6_hdr(skb); 2064 daddr = &iphdr->daddr; 2065 msg = (struct nd_msg *)(iphdr + 1); 2066 2067 if (ipv6_addr_loopback(daddr) || 2068 ipv6_addr_is_multicast(&msg->target)) 2069 goto out; 2070 2071 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev); 2072 2073 if (n) { 2074 struct vxlan_fdb *f; 2075 struct sk_buff *reply; 2076 2077 if (!(READ_ONCE(n->nud_state) & NUD_CONNECTED)) { 2078 neigh_release(n); 2079 goto out; 2080 } 2081 2082 f = vxlan_find_mac(vxlan, n->ha, vni); 2083 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) { 2084 /* bridge-local neighbor */ 2085 neigh_release(n); 2086 goto out; 2087 } 2088 2089 reply = vxlan_na_create(skb, n, 2090 !!(f ? f->flags & NTF_ROUTER : 0)); 2091 2092 neigh_release(n); 2093 2094 if (reply == NULL) 2095 goto out; 2096 2097 if (netif_rx(reply) == NET_RX_DROP) { 2098 dev_dstats_rx_dropped(dev); 2099 vxlan_vnifilter_count(vxlan, vni, NULL, 2100 VXLAN_VNI_STATS_RX_DROPS, 0); 2101 } 2102 } else if (vxlan->cfg.flags & VXLAN_F_L3MISS) { 2103 union vxlan_addr ipa = { 2104 .sin6.sin6_addr = msg->target, 2105 .sin6.sin6_family = AF_INET6, 2106 }; 2107 2108 vxlan_ip_miss(dev, &ipa); 2109 } 2110 2111 out: 2112 rcu_read_unlock(); 2113 consume_skb(skb); 2114 return NETDEV_TX_OK; 2115 } 2116 #endif 2117 2118 static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb) 2119 { 2120 struct vxlan_dev *vxlan = netdev_priv(dev); 2121 struct neighbour *n; 2122 2123 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest)) 2124 return false; 2125 2126 n = NULL; 2127 switch (ntohs(eth_hdr(skb)->h_proto)) { 2128 case ETH_P_IP: 2129 { 2130 struct iphdr *pip; 2131 2132 if (!pskb_may_pull(skb, sizeof(struct iphdr))) 2133 return false; 2134 pip = ip_hdr(skb); 2135 n = neigh_lookup(&arp_tbl, &pip->daddr, dev); 2136 if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) { 2137 union vxlan_addr ipa = { 2138 .sin.sin_addr.s_addr = pip->daddr, 2139 .sin.sin_family = AF_INET, 2140 }; 2141 2142 vxlan_ip_miss(dev, &ipa); 2143 return false; 2144 } 2145 2146 break; 2147 } 2148 #if IS_ENABLED(CONFIG_IPV6) 2149 case ETH_P_IPV6: 2150 { 2151 struct ipv6hdr *pip6; 2152 2153 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr))) 2154 return false; 2155 pip6 = ipv6_hdr(skb); 2156 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev); 2157 if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) { 2158 union vxlan_addr ipa = { 2159 .sin6.sin6_addr = pip6->daddr, 2160 .sin6.sin6_family = AF_INET6, 2161 }; 2162 2163 vxlan_ip_miss(dev, &ipa); 2164 return false; 2165 } 2166 2167 break; 2168 } 2169 #endif 2170 default: 2171 return false; 2172 } 2173 2174 if (n) { 2175 bool diff; 2176 2177 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha); 2178 if (diff) { 2179 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest, 2180 dev->addr_len); 2181 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len); 2182 } 2183 neigh_release(n); 2184 return diff; 2185 } 2186 2187 return false; 2188 } 2189 2190 static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, __be16 protocol) 2191 { 2192 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)vxh; 2193 2194 gpe->np_applied = 1; 2195 gpe->next_protocol = tun_p_from_eth_p(protocol); 2196 if (!gpe->next_protocol) 2197 return -EPFNOSUPPORT; 2198 return 0; 2199 } 2200 2201 static int vxlan_build_skb(struct sk_buff *skb, struct dst_entry *dst, 2202 int iphdr_len, __be32 vni, 2203 struct vxlan_metadata *md, u32 vxflags, 2204 bool udp_sum) 2205 { 2206 struct vxlanhdr *vxh; 2207 int min_headroom; 2208 int err; 2209 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL; 2210 __be16 inner_protocol = htons(ETH_P_TEB); 2211 2212 if ((vxflags & VXLAN_F_REMCSUM_TX) && 2213 skb->ip_summed == CHECKSUM_PARTIAL) { 2214 int csum_start = skb_checksum_start_offset(skb); 2215 2216 if (csum_start <= VXLAN_MAX_REMCSUM_START && 2217 !(csum_start & VXLAN_RCO_SHIFT_MASK) && 2218 (skb->csum_offset == offsetof(struct udphdr, check) || 2219 skb->csum_offset == offsetof(struct tcphdr, check))) 2220 type |= SKB_GSO_TUNNEL_REMCSUM; 2221 } 2222 2223 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len 2224 + VXLAN_HLEN + iphdr_len; 2225 2226 /* Need space for new headers (invalidates iph ptr) */ 2227 err = skb_cow_head(skb, min_headroom); 2228 if (unlikely(err)) 2229 return err; 2230 2231 err = iptunnel_handle_offloads(skb, type); 2232 if (err) 2233 return err; 2234 2235 vxh = __skb_push(skb, sizeof(*vxh)); 2236 vxh->vx_flags = VXLAN_HF_VNI; 2237 vxh->vx_vni = vxlan_vni_field(vni); 2238 2239 if (type & SKB_GSO_TUNNEL_REMCSUM) { 2240 unsigned int start; 2241 2242 start = skb_checksum_start_offset(skb) - sizeof(struct vxlanhdr); 2243 vxh->vx_vni |= vxlan_compute_rco(start, skb->csum_offset); 2244 vxh->vx_flags |= VXLAN_HF_RCO; 2245 2246 if (!skb_is_gso(skb)) { 2247 skb->ip_summed = CHECKSUM_NONE; 2248 skb->encapsulation = 0; 2249 } 2250 } 2251 2252 if (vxflags & VXLAN_F_GBP) 2253 vxlan_build_gbp_hdr(vxh, md); 2254 if (vxflags & VXLAN_F_GPE) { 2255 err = vxlan_build_gpe_hdr(vxh, skb->protocol); 2256 if (err < 0) 2257 return err; 2258 inner_protocol = skb->protocol; 2259 } 2260 2261 skb_set_inner_protocol(skb, inner_protocol); 2262 return 0; 2263 } 2264 2265 /* Bypass encapsulation if the destination is local */ 2266 static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan, 2267 struct vxlan_dev *dst_vxlan, __be32 vni, 2268 bool snoop) 2269 { 2270 union vxlan_addr loopback; 2271 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip; 2272 unsigned int len = skb->len; 2273 struct net_device *dev; 2274 2275 skb->pkt_type = PACKET_HOST; 2276 skb->encapsulation = 0; 2277 skb->dev = dst_vxlan->dev; 2278 __skb_pull(skb, skb_network_offset(skb)); 2279 2280 if (remote_ip->sa.sa_family == AF_INET) { 2281 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); 2282 loopback.sa.sa_family = AF_INET; 2283 #if IS_ENABLED(CONFIG_IPV6) 2284 } else { 2285 loopback.sin6.sin6_addr = in6addr_loopback; 2286 loopback.sa.sa_family = AF_INET6; 2287 #endif 2288 } 2289 2290 rcu_read_lock(); 2291 dev = skb->dev; 2292 if (unlikely(!(dev->flags & IFF_UP))) { 2293 kfree_skb_reason(skb, SKB_DROP_REASON_DEV_READY); 2294 goto drop; 2295 } 2296 2297 if ((dst_vxlan->cfg.flags & VXLAN_F_LEARN) && snoop) 2298 vxlan_snoop(dev, &loopback, eth_hdr(skb)->h_source, 0, vni); 2299 2300 dev_dstats_tx_add(src_vxlan->dev, len); 2301 vxlan_vnifilter_count(src_vxlan, vni, NULL, VXLAN_VNI_STATS_TX, len); 2302 2303 if (__netif_rx(skb) == NET_RX_SUCCESS) { 2304 dev_dstats_rx_add(dst_vxlan->dev, len); 2305 vxlan_vnifilter_count(dst_vxlan, vni, NULL, VXLAN_VNI_STATS_RX, 2306 len); 2307 } else { 2308 drop: 2309 dev_dstats_rx_dropped(dev); 2310 vxlan_vnifilter_count(dst_vxlan, vni, NULL, 2311 VXLAN_VNI_STATS_RX_DROPS, 0); 2312 } 2313 rcu_read_unlock(); 2314 } 2315 2316 static int encap_bypass_if_local(struct sk_buff *skb, struct net_device *dev, 2317 struct vxlan_dev *vxlan, 2318 int addr_family, 2319 __be16 dst_port, int dst_ifindex, __be32 vni, 2320 struct dst_entry *dst, 2321 u32 rt_flags) 2322 { 2323 #if IS_ENABLED(CONFIG_IPV6) 2324 /* IPv6 rt-flags are checked against RTF_LOCAL, but the value of 2325 * RTF_LOCAL is equal to RTCF_LOCAL. So to keep code simple 2326 * we can use RTCF_LOCAL which works for ipv4 and ipv6 route entry. 2327 */ 2328 BUILD_BUG_ON(RTCF_LOCAL != RTF_LOCAL); 2329 #endif 2330 /* Bypass encapsulation if the destination is local */ 2331 if (rt_flags & RTCF_LOCAL && 2332 !(rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST)) && 2333 vxlan->cfg.flags & VXLAN_F_LOCALBYPASS) { 2334 struct vxlan_dev *dst_vxlan; 2335 2336 dst_release(dst); 2337 dst_vxlan = vxlan_find_vni(vxlan->net, dst_ifindex, vni, 2338 addr_family, dst_port, 2339 vxlan->cfg.flags); 2340 if (!dst_vxlan) { 2341 DEV_STATS_INC(dev, tx_errors); 2342 vxlan_vnifilter_count(vxlan, vni, NULL, 2343 VXLAN_VNI_STATS_TX_ERRORS, 0); 2344 kfree_skb_reason(skb, SKB_DROP_REASON_VXLAN_VNI_NOT_FOUND); 2345 2346 return -ENOENT; 2347 } 2348 vxlan_encap_bypass(skb, vxlan, dst_vxlan, vni, true); 2349 return 1; 2350 } 2351 2352 return 0; 2353 } 2354 2355 void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev, 2356 __be32 default_vni, struct vxlan_rdst *rdst, bool did_rsc) 2357 { 2358 struct dst_cache *dst_cache; 2359 struct ip_tunnel_info *info; 2360 struct ip_tunnel_key *pkey; 2361 struct ip_tunnel_key key; 2362 struct vxlan_dev *vxlan = netdev_priv(dev); 2363 const struct iphdr *old_iph; 2364 struct vxlan_metadata _md; 2365 struct vxlan_metadata *md = &_md; 2366 unsigned int pkt_len = skb->len; 2367 __be16 src_port = 0, dst_port; 2368 struct dst_entry *ndst = NULL; 2369 int addr_family; 2370 __u8 tos, ttl; 2371 int ifindex; 2372 int err; 2373 u32 flags = vxlan->cfg.flags; 2374 bool use_cache; 2375 bool udp_sum = false; 2376 bool xnet = !net_eq(vxlan->net, dev_net(vxlan->dev)); 2377 enum skb_drop_reason reason; 2378 bool no_eth_encap; 2379 __be32 vni = 0; 2380 2381 no_eth_encap = flags & VXLAN_F_GPE && skb->protocol != htons(ETH_P_TEB); 2382 reason = skb_vlan_inet_prepare(skb, no_eth_encap); 2383 if (reason) 2384 goto drop; 2385 2386 reason = SKB_DROP_REASON_NOT_SPECIFIED; 2387 old_iph = ip_hdr(skb); 2388 2389 info = skb_tunnel_info(skb); 2390 use_cache = ip_tunnel_dst_cache_usable(skb, info); 2391 2392 if (rdst) { 2393 memset(&key, 0, sizeof(key)); 2394 pkey = &key; 2395 2396 if (vxlan_addr_any(&rdst->remote_ip)) { 2397 if (did_rsc) { 2398 /* short-circuited back to local bridge */ 2399 vxlan_encap_bypass(skb, vxlan, vxlan, 2400 default_vni, true); 2401 return; 2402 } 2403 goto drop; 2404 } 2405 2406 addr_family = vxlan->cfg.saddr.sa.sa_family; 2407 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port; 2408 vni = (rdst->remote_vni) ? : default_vni; 2409 ifindex = rdst->remote_ifindex; 2410 2411 if (addr_family == AF_INET) { 2412 key.u.ipv4.src = vxlan->cfg.saddr.sin.sin_addr.s_addr; 2413 key.u.ipv4.dst = rdst->remote_ip.sin.sin_addr.s_addr; 2414 } else { 2415 key.u.ipv6.src = vxlan->cfg.saddr.sin6.sin6_addr; 2416 key.u.ipv6.dst = rdst->remote_ip.sin6.sin6_addr; 2417 } 2418 2419 dst_cache = &rdst->dst_cache; 2420 md->gbp = skb->mark; 2421 if (flags & VXLAN_F_TTL_INHERIT) { 2422 ttl = ip_tunnel_get_ttl(old_iph, skb); 2423 } else { 2424 ttl = vxlan->cfg.ttl; 2425 if (!ttl && vxlan_addr_multicast(&rdst->remote_ip)) 2426 ttl = 1; 2427 } 2428 tos = vxlan->cfg.tos; 2429 if (tos == 1) 2430 tos = ip_tunnel_get_dsfield(old_iph, skb); 2431 if (tos && !info) 2432 use_cache = false; 2433 2434 if (addr_family == AF_INET) 2435 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM_TX); 2436 else 2437 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX); 2438 #if IS_ENABLED(CONFIG_IPV6) 2439 switch (vxlan->cfg.label_policy) { 2440 case VXLAN_LABEL_FIXED: 2441 key.label = vxlan->cfg.label; 2442 break; 2443 case VXLAN_LABEL_INHERIT: 2444 key.label = ip_tunnel_get_flowlabel(old_iph, skb); 2445 break; 2446 default: 2447 DEBUG_NET_WARN_ON_ONCE(1); 2448 goto drop; 2449 } 2450 #endif 2451 } else { 2452 if (!info) { 2453 WARN_ONCE(1, "%s: Missing encapsulation instructions\n", 2454 dev->name); 2455 goto drop; 2456 } 2457 pkey = &info->key; 2458 addr_family = ip_tunnel_info_af(info); 2459 dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port; 2460 vni = tunnel_id_to_key32(info->key.tun_id); 2461 ifindex = 0; 2462 dst_cache = &info->dst_cache; 2463 if (test_bit(IP_TUNNEL_VXLAN_OPT_BIT, info->key.tun_flags)) { 2464 if (info->options_len < sizeof(*md)) 2465 goto drop; 2466 md = ip_tunnel_info_opts(info); 2467 } 2468 ttl = info->key.ttl; 2469 tos = info->key.tos; 2470 udp_sum = test_bit(IP_TUNNEL_CSUM_BIT, info->key.tun_flags); 2471 } 2472 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min, 2473 vxlan->cfg.port_max, true); 2474 2475 rcu_read_lock(); 2476 if (addr_family == AF_INET) { 2477 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock); 2478 struct rtable *rt; 2479 __be16 df = 0; 2480 __be32 saddr; 2481 2482 if (!ifindex) 2483 ifindex = sock4->sock->sk->sk_bound_dev_if; 2484 2485 rt = udp_tunnel_dst_lookup(skb, dev, vxlan->net, ifindex, 2486 &saddr, pkey, src_port, dst_port, 2487 tos, use_cache ? dst_cache : NULL); 2488 if (IS_ERR(rt)) { 2489 err = PTR_ERR(rt); 2490 reason = SKB_DROP_REASON_IP_OUTNOROUTES; 2491 goto tx_error; 2492 } 2493 2494 if (!info) { 2495 /* Bypass encapsulation if the destination is local */ 2496 err = encap_bypass_if_local(skb, dev, vxlan, AF_INET, 2497 dst_port, ifindex, vni, 2498 &rt->dst, rt->rt_flags); 2499 if (err) 2500 goto out_unlock; 2501 2502 if (vxlan->cfg.df == VXLAN_DF_SET) { 2503 df = htons(IP_DF); 2504 } else if (vxlan->cfg.df == VXLAN_DF_INHERIT) { 2505 struct ethhdr *eth = eth_hdr(skb); 2506 2507 if (ntohs(eth->h_proto) == ETH_P_IPV6 || 2508 (ntohs(eth->h_proto) == ETH_P_IP && 2509 old_iph->frag_off & htons(IP_DF))) 2510 df = htons(IP_DF); 2511 } 2512 } else if (test_bit(IP_TUNNEL_DONT_FRAGMENT_BIT, 2513 info->key.tun_flags)) { 2514 df = htons(IP_DF); 2515 } 2516 2517 ndst = &rt->dst; 2518 err = skb_tunnel_check_pmtu(skb, ndst, vxlan_headroom(flags & VXLAN_F_GPE), 2519 netif_is_any_bridge_port(dev)); 2520 if (err < 0) { 2521 goto tx_error; 2522 } else if (err) { 2523 if (info) { 2524 struct ip_tunnel_info *unclone; 2525 2526 unclone = skb_tunnel_info_unclone(skb); 2527 if (unlikely(!unclone)) 2528 goto tx_error; 2529 2530 unclone->key.u.ipv4.src = pkey->u.ipv4.dst; 2531 unclone->key.u.ipv4.dst = saddr; 2532 } 2533 vxlan_encap_bypass(skb, vxlan, vxlan, vni, false); 2534 dst_release(ndst); 2535 goto out_unlock; 2536 } 2537 2538 tos = ip_tunnel_ecn_encap(tos, old_iph, skb); 2539 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst); 2540 err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr), 2541 vni, md, flags, udp_sum); 2542 if (err < 0) { 2543 reason = SKB_DROP_REASON_NOMEM; 2544 goto tx_error; 2545 } 2546 2547 udp_tunnel_xmit_skb(rt, sock4->sock->sk, skb, saddr, 2548 pkey->u.ipv4.dst, tos, ttl, df, 2549 src_port, dst_port, xnet, !udp_sum); 2550 #if IS_ENABLED(CONFIG_IPV6) 2551 } else { 2552 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock); 2553 struct in6_addr saddr; 2554 2555 if (!ifindex) 2556 ifindex = sock6->sock->sk->sk_bound_dev_if; 2557 2558 ndst = udp_tunnel6_dst_lookup(skb, dev, vxlan->net, sock6->sock, 2559 ifindex, &saddr, pkey, 2560 src_port, dst_port, tos, 2561 use_cache ? dst_cache : NULL); 2562 if (IS_ERR(ndst)) { 2563 err = PTR_ERR(ndst); 2564 ndst = NULL; 2565 reason = SKB_DROP_REASON_IP_OUTNOROUTES; 2566 goto tx_error; 2567 } 2568 2569 if (!info) { 2570 u32 rt6i_flags = dst_rt6_info(ndst)->rt6i_flags; 2571 2572 err = encap_bypass_if_local(skb, dev, vxlan, AF_INET6, 2573 dst_port, ifindex, vni, 2574 ndst, rt6i_flags); 2575 if (err) 2576 goto out_unlock; 2577 } 2578 2579 err = skb_tunnel_check_pmtu(skb, ndst, 2580 vxlan_headroom((flags & VXLAN_F_GPE) | VXLAN_F_IPV6), 2581 netif_is_any_bridge_port(dev)); 2582 if (err < 0) { 2583 goto tx_error; 2584 } else if (err) { 2585 if (info) { 2586 struct ip_tunnel_info *unclone; 2587 2588 unclone = skb_tunnel_info_unclone(skb); 2589 if (unlikely(!unclone)) 2590 goto tx_error; 2591 2592 unclone->key.u.ipv6.src = pkey->u.ipv6.dst; 2593 unclone->key.u.ipv6.dst = saddr; 2594 } 2595 2596 vxlan_encap_bypass(skb, vxlan, vxlan, vni, false); 2597 dst_release(ndst); 2598 goto out_unlock; 2599 } 2600 2601 tos = ip_tunnel_ecn_encap(tos, old_iph, skb); 2602 ttl = ttl ? : ip6_dst_hoplimit(ndst); 2603 skb_scrub_packet(skb, xnet); 2604 err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr), 2605 vni, md, flags, udp_sum); 2606 if (err < 0) { 2607 reason = SKB_DROP_REASON_NOMEM; 2608 goto tx_error; 2609 } 2610 2611 udp_tunnel6_xmit_skb(ndst, sock6->sock->sk, skb, dev, 2612 &saddr, &pkey->u.ipv6.dst, tos, ttl, 2613 pkey->label, src_port, dst_port, !udp_sum); 2614 #endif 2615 } 2616 vxlan_vnifilter_count(vxlan, vni, NULL, VXLAN_VNI_STATS_TX, pkt_len); 2617 out_unlock: 2618 rcu_read_unlock(); 2619 return; 2620 2621 drop: 2622 dev_dstats_tx_dropped(dev); 2623 vxlan_vnifilter_count(vxlan, vni, NULL, VXLAN_VNI_STATS_TX_DROPS, 0); 2624 kfree_skb_reason(skb, reason); 2625 return; 2626 2627 tx_error: 2628 rcu_read_unlock(); 2629 if (err == -ELOOP) 2630 DEV_STATS_INC(dev, collisions); 2631 else if (err == -ENETUNREACH) 2632 DEV_STATS_INC(dev, tx_carrier_errors); 2633 dst_release(ndst); 2634 DEV_STATS_INC(dev, tx_errors); 2635 vxlan_vnifilter_count(vxlan, vni, NULL, VXLAN_VNI_STATS_TX_ERRORS, 0); 2636 kfree_skb_reason(skb, reason); 2637 } 2638 2639 static void vxlan_xmit_nh(struct sk_buff *skb, struct net_device *dev, 2640 struct vxlan_fdb *f, __be32 vni, bool did_rsc) 2641 { 2642 struct vxlan_rdst nh_rdst; 2643 struct nexthop *nh; 2644 bool do_xmit; 2645 u32 hash; 2646 2647 memset(&nh_rdst, 0, sizeof(struct vxlan_rdst)); 2648 hash = skb_get_hash(skb); 2649 2650 rcu_read_lock(); 2651 nh = rcu_dereference(f->nh); 2652 if (!nh) { 2653 rcu_read_unlock(); 2654 goto drop; 2655 } 2656 do_xmit = vxlan_fdb_nh_path_select(nh, hash, &nh_rdst); 2657 rcu_read_unlock(); 2658 2659 if (likely(do_xmit)) 2660 vxlan_xmit_one(skb, dev, vni, &nh_rdst, did_rsc); 2661 else 2662 goto drop; 2663 2664 return; 2665 2666 drop: 2667 dev_dstats_tx_dropped(dev); 2668 vxlan_vnifilter_count(netdev_priv(dev), vni, NULL, 2669 VXLAN_VNI_STATS_TX_DROPS, 0); 2670 dev_kfree_skb(skb); 2671 } 2672 2673 static netdev_tx_t vxlan_xmit_nhid(struct sk_buff *skb, struct net_device *dev, 2674 u32 nhid, __be32 vni) 2675 { 2676 struct vxlan_dev *vxlan = netdev_priv(dev); 2677 struct vxlan_rdst nh_rdst; 2678 struct nexthop *nh; 2679 bool do_xmit; 2680 u32 hash; 2681 2682 memset(&nh_rdst, 0, sizeof(struct vxlan_rdst)); 2683 hash = skb_get_hash(skb); 2684 2685 rcu_read_lock(); 2686 nh = nexthop_find_by_id(dev_net(dev), nhid); 2687 if (unlikely(!nh || !nexthop_is_fdb(nh) || !nexthop_is_multipath(nh))) { 2688 rcu_read_unlock(); 2689 goto drop; 2690 } 2691 do_xmit = vxlan_fdb_nh_path_select(nh, hash, &nh_rdst); 2692 rcu_read_unlock(); 2693 2694 if (vxlan->cfg.saddr.sa.sa_family != nh_rdst.remote_ip.sa.sa_family) 2695 goto drop; 2696 2697 if (likely(do_xmit)) 2698 vxlan_xmit_one(skb, dev, vni, &nh_rdst, false); 2699 else 2700 goto drop; 2701 2702 return NETDEV_TX_OK; 2703 2704 drop: 2705 dev_dstats_tx_dropped(dev); 2706 vxlan_vnifilter_count(netdev_priv(dev), vni, NULL, 2707 VXLAN_VNI_STATS_TX_DROPS, 0); 2708 dev_kfree_skb(skb); 2709 return NETDEV_TX_OK; 2710 } 2711 2712 /* Transmit local packets over Vxlan 2713 * 2714 * Outer IP header inherits ECN and DF from inner header. 2715 * Outer UDP destination is the VXLAN assigned port. 2716 * source port is based on hash of flow 2717 */ 2718 static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev) 2719 { 2720 struct vxlan_dev *vxlan = netdev_priv(dev); 2721 struct vxlan_rdst *rdst, *fdst = NULL; 2722 const struct ip_tunnel_info *info; 2723 struct vxlan_fdb *f; 2724 struct ethhdr *eth; 2725 __be32 vni = 0; 2726 u32 nhid = 0; 2727 bool did_rsc; 2728 2729 info = skb_tunnel_info(skb); 2730 2731 skb_reset_mac_header(skb); 2732 2733 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) { 2734 if (info && info->mode & IP_TUNNEL_INFO_BRIDGE && 2735 info->mode & IP_TUNNEL_INFO_TX) { 2736 vni = tunnel_id_to_key32(info->key.tun_id); 2737 nhid = info->key.nhid; 2738 } else { 2739 if (info && info->mode & IP_TUNNEL_INFO_TX) 2740 vxlan_xmit_one(skb, dev, vni, NULL, false); 2741 else 2742 kfree_skb_reason(skb, SKB_DROP_REASON_TUNNEL_TXINFO); 2743 return NETDEV_TX_OK; 2744 } 2745 } 2746 2747 if (vxlan->cfg.flags & VXLAN_F_PROXY) { 2748 eth = eth_hdr(skb); 2749 if (ntohs(eth->h_proto) == ETH_P_ARP) 2750 return arp_reduce(dev, skb, vni); 2751 #if IS_ENABLED(CONFIG_IPV6) 2752 else if (ntohs(eth->h_proto) == ETH_P_IPV6 && 2753 pskb_may_pull(skb, sizeof(struct ipv6hdr) + 2754 sizeof(struct nd_msg)) && 2755 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) { 2756 struct nd_msg *m = (struct nd_msg *)(ipv6_hdr(skb) + 1); 2757 2758 if (m->icmph.icmp6_code == 0 && 2759 m->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION) 2760 return neigh_reduce(dev, skb, vni); 2761 } 2762 #endif 2763 } 2764 2765 if (nhid) 2766 return vxlan_xmit_nhid(skb, dev, nhid, vni); 2767 2768 if (vxlan->cfg.flags & VXLAN_F_MDB) { 2769 struct vxlan_mdb_entry *mdb_entry; 2770 2771 rcu_read_lock(); 2772 mdb_entry = vxlan_mdb_entry_skb_get(vxlan, skb, vni); 2773 if (mdb_entry) { 2774 netdev_tx_t ret; 2775 2776 ret = vxlan_mdb_xmit(vxlan, mdb_entry, skb); 2777 rcu_read_unlock(); 2778 return ret; 2779 } 2780 rcu_read_unlock(); 2781 } 2782 2783 eth = eth_hdr(skb); 2784 f = vxlan_find_mac(vxlan, eth->h_dest, vni); 2785 did_rsc = false; 2786 2787 if (f && (f->flags & NTF_ROUTER) && (vxlan->cfg.flags & VXLAN_F_RSC) && 2788 (ntohs(eth->h_proto) == ETH_P_IP || 2789 ntohs(eth->h_proto) == ETH_P_IPV6)) { 2790 did_rsc = route_shortcircuit(dev, skb); 2791 if (did_rsc) 2792 f = vxlan_find_mac(vxlan, eth->h_dest, vni); 2793 } 2794 2795 if (f == NULL) { 2796 f = vxlan_find_mac(vxlan, all_zeros_mac, vni); 2797 if (f == NULL) { 2798 if ((vxlan->cfg.flags & VXLAN_F_L2MISS) && 2799 !is_multicast_ether_addr(eth->h_dest)) 2800 vxlan_fdb_miss(vxlan, eth->h_dest); 2801 2802 dev_dstats_tx_dropped(dev); 2803 vxlan_vnifilter_count(vxlan, vni, NULL, 2804 VXLAN_VNI_STATS_TX_DROPS, 0); 2805 kfree_skb_reason(skb, SKB_DROP_REASON_NO_TX_TARGET); 2806 return NETDEV_TX_OK; 2807 } 2808 } 2809 2810 if (rcu_access_pointer(f->nh)) { 2811 vxlan_xmit_nh(skb, dev, f, 2812 (vni ? : vxlan->default_dst.remote_vni), did_rsc); 2813 } else { 2814 list_for_each_entry_rcu(rdst, &f->remotes, list) { 2815 struct sk_buff *skb1; 2816 2817 if (!fdst) { 2818 fdst = rdst; 2819 continue; 2820 } 2821 skb1 = skb_clone(skb, GFP_ATOMIC); 2822 if (skb1) 2823 vxlan_xmit_one(skb1, dev, vni, rdst, did_rsc); 2824 } 2825 if (fdst) 2826 vxlan_xmit_one(skb, dev, vni, fdst, did_rsc); 2827 else 2828 kfree_skb_reason(skb, SKB_DROP_REASON_NO_TX_TARGET); 2829 } 2830 2831 return NETDEV_TX_OK; 2832 } 2833 2834 /* Walk the forwarding table and purge stale entries */ 2835 static void vxlan_cleanup(struct timer_list *t) 2836 { 2837 struct vxlan_dev *vxlan = from_timer(vxlan, t, age_timer); 2838 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL; 2839 unsigned int h; 2840 2841 if (!netif_running(vxlan->dev)) 2842 return; 2843 2844 for (h = 0; h < FDB_HASH_SIZE; ++h) { 2845 struct hlist_node *p, *n; 2846 2847 spin_lock(&vxlan->hash_lock[h]); 2848 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) { 2849 struct vxlan_fdb *f 2850 = container_of(p, struct vxlan_fdb, hlist); 2851 unsigned long timeout; 2852 2853 if (f->state & (NUD_PERMANENT | NUD_NOARP)) 2854 continue; 2855 2856 if (f->flags & NTF_EXT_LEARNED) 2857 continue; 2858 2859 timeout = READ_ONCE(f->updated) + vxlan->cfg.age_interval * HZ; 2860 if (time_before_eq(timeout, jiffies)) { 2861 netdev_dbg(vxlan->dev, 2862 "garbage collect %pM\n", 2863 f->eth_addr); 2864 f->state = NUD_STALE; 2865 vxlan_fdb_destroy(vxlan, f, true, true); 2866 } else if (time_before(timeout, next_timer)) 2867 next_timer = timeout; 2868 } 2869 spin_unlock(&vxlan->hash_lock[h]); 2870 } 2871 2872 mod_timer(&vxlan->age_timer, next_timer); 2873 } 2874 2875 static void vxlan_vs_del_dev(struct vxlan_dev *vxlan) 2876 { 2877 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id); 2878 2879 spin_lock(&vn->sock_lock); 2880 hlist_del_init_rcu(&vxlan->hlist4.hlist); 2881 #if IS_ENABLED(CONFIG_IPV6) 2882 hlist_del_init_rcu(&vxlan->hlist6.hlist); 2883 #endif 2884 spin_unlock(&vn->sock_lock); 2885 } 2886 2887 static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan, 2888 struct vxlan_dev_node *node) 2889 { 2890 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id); 2891 __be32 vni = vxlan->default_dst.remote_vni; 2892 2893 node->vxlan = vxlan; 2894 spin_lock(&vn->sock_lock); 2895 hlist_add_head_rcu(&node->hlist, vni_head(vs, vni)); 2896 spin_unlock(&vn->sock_lock); 2897 } 2898 2899 /* Setup stats when device is created */ 2900 static int vxlan_init(struct net_device *dev) 2901 { 2902 struct vxlan_dev *vxlan = netdev_priv(dev); 2903 int err; 2904 2905 if (vxlan->cfg.flags & VXLAN_F_VNIFILTER) { 2906 err = vxlan_vnigroup_init(vxlan); 2907 if (err) 2908 return err; 2909 } 2910 2911 err = gro_cells_init(&vxlan->gro_cells, dev); 2912 if (err) 2913 goto err_vnigroup_uninit; 2914 2915 err = vxlan_mdb_init(vxlan); 2916 if (err) 2917 goto err_gro_cells_destroy; 2918 2919 netdev_lockdep_set_classes(dev); 2920 return 0; 2921 2922 err_gro_cells_destroy: 2923 gro_cells_destroy(&vxlan->gro_cells); 2924 err_vnigroup_uninit: 2925 if (vxlan->cfg.flags & VXLAN_F_VNIFILTER) 2926 vxlan_vnigroup_uninit(vxlan); 2927 return err; 2928 } 2929 2930 static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan, __be32 vni) 2931 { 2932 struct vxlan_fdb *f; 2933 u32 hash_index = fdb_head_index(vxlan, all_zeros_mac, vni); 2934 2935 spin_lock_bh(&vxlan->hash_lock[hash_index]); 2936 f = __vxlan_find_mac(vxlan, all_zeros_mac, vni); 2937 if (f) 2938 vxlan_fdb_destroy(vxlan, f, true, true); 2939 spin_unlock_bh(&vxlan->hash_lock[hash_index]); 2940 } 2941 2942 static void vxlan_uninit(struct net_device *dev) 2943 { 2944 struct vxlan_dev *vxlan = netdev_priv(dev); 2945 2946 vxlan_mdb_fini(vxlan); 2947 2948 if (vxlan->cfg.flags & VXLAN_F_VNIFILTER) 2949 vxlan_vnigroup_uninit(vxlan); 2950 2951 gro_cells_destroy(&vxlan->gro_cells); 2952 2953 vxlan_fdb_delete_default(vxlan, vxlan->cfg.vni); 2954 } 2955 2956 /* Start ageing timer and join group when device is brought up */ 2957 static int vxlan_open(struct net_device *dev) 2958 { 2959 struct vxlan_dev *vxlan = netdev_priv(dev); 2960 int ret; 2961 2962 ret = vxlan_sock_add(vxlan); 2963 if (ret < 0) 2964 return ret; 2965 2966 ret = vxlan_multicast_join(vxlan); 2967 if (ret) { 2968 vxlan_sock_release(vxlan); 2969 return ret; 2970 } 2971 2972 if (vxlan->cfg.age_interval) 2973 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL); 2974 2975 return ret; 2976 } 2977 2978 struct vxlan_fdb_flush_desc { 2979 bool ignore_default_entry; 2980 unsigned long state; 2981 unsigned long state_mask; 2982 unsigned long flags; 2983 unsigned long flags_mask; 2984 __be32 src_vni; 2985 u32 nhid; 2986 __be32 vni; 2987 __be16 port; 2988 union vxlan_addr dst_ip; 2989 }; 2990 2991 static bool vxlan_fdb_is_default_entry(const struct vxlan_fdb *f, 2992 const struct vxlan_dev *vxlan) 2993 { 2994 return is_zero_ether_addr(f->eth_addr) && f->vni == vxlan->cfg.vni; 2995 } 2996 2997 static bool vxlan_fdb_nhid_matches(const struct vxlan_fdb *f, u32 nhid) 2998 { 2999 struct nexthop *nh = rtnl_dereference(f->nh); 3000 3001 return nh && nh->id == nhid; 3002 } 3003 3004 static bool vxlan_fdb_flush_matches(const struct vxlan_fdb *f, 3005 const struct vxlan_dev *vxlan, 3006 const struct vxlan_fdb_flush_desc *desc) 3007 { 3008 if (desc->state_mask && (f->state & desc->state_mask) != desc->state) 3009 return false; 3010 3011 if (desc->flags_mask && (f->flags & desc->flags_mask) != desc->flags) 3012 return false; 3013 3014 if (desc->ignore_default_entry && vxlan_fdb_is_default_entry(f, vxlan)) 3015 return false; 3016 3017 if (desc->src_vni && f->vni != desc->src_vni) 3018 return false; 3019 3020 if (desc->nhid && !vxlan_fdb_nhid_matches(f, desc->nhid)) 3021 return false; 3022 3023 return true; 3024 } 3025 3026 static bool 3027 vxlan_fdb_flush_should_match_remotes(const struct vxlan_fdb_flush_desc *desc) 3028 { 3029 return desc->vni || desc->port || desc->dst_ip.sa.sa_family; 3030 } 3031 3032 static bool 3033 vxlan_fdb_flush_remote_matches(const struct vxlan_fdb_flush_desc *desc, 3034 const struct vxlan_rdst *rd) 3035 { 3036 if (desc->vni && rd->remote_vni != desc->vni) 3037 return false; 3038 3039 if (desc->port && rd->remote_port != desc->port) 3040 return false; 3041 3042 if (desc->dst_ip.sa.sa_family && 3043 !vxlan_addr_equal(&rd->remote_ip, &desc->dst_ip)) 3044 return false; 3045 3046 return true; 3047 } 3048 3049 static void 3050 vxlan_fdb_flush_match_remotes(struct vxlan_fdb *f, struct vxlan_dev *vxlan, 3051 const struct vxlan_fdb_flush_desc *desc, 3052 bool *p_destroy_fdb) 3053 { 3054 bool remotes_flushed = false; 3055 struct vxlan_rdst *rd, *tmp; 3056 3057 list_for_each_entry_safe(rd, tmp, &f->remotes, list) { 3058 if (!vxlan_fdb_flush_remote_matches(desc, rd)) 3059 continue; 3060 3061 vxlan_fdb_dst_destroy(vxlan, f, rd, true); 3062 remotes_flushed = true; 3063 } 3064 3065 *p_destroy_fdb = remotes_flushed && list_empty(&f->remotes); 3066 } 3067 3068 /* Purge the forwarding table */ 3069 static void vxlan_flush(struct vxlan_dev *vxlan, 3070 const struct vxlan_fdb_flush_desc *desc) 3071 { 3072 bool match_remotes = vxlan_fdb_flush_should_match_remotes(desc); 3073 unsigned int h; 3074 3075 for (h = 0; h < FDB_HASH_SIZE; ++h) { 3076 struct hlist_node *p, *n; 3077 3078 spin_lock_bh(&vxlan->hash_lock[h]); 3079 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) { 3080 struct vxlan_fdb *f 3081 = container_of(p, struct vxlan_fdb, hlist); 3082 3083 if (!vxlan_fdb_flush_matches(f, vxlan, desc)) 3084 continue; 3085 3086 if (match_remotes) { 3087 bool destroy_fdb = false; 3088 3089 vxlan_fdb_flush_match_remotes(f, vxlan, desc, 3090 &destroy_fdb); 3091 3092 if (!destroy_fdb) 3093 continue; 3094 } 3095 3096 vxlan_fdb_destroy(vxlan, f, true, true); 3097 } 3098 spin_unlock_bh(&vxlan->hash_lock[h]); 3099 } 3100 } 3101 3102 static const struct nla_policy vxlan_del_bulk_policy[NDA_MAX + 1] = { 3103 [NDA_SRC_VNI] = { .type = NLA_U32 }, 3104 [NDA_NH_ID] = { .type = NLA_U32 }, 3105 [NDA_VNI] = { .type = NLA_U32 }, 3106 [NDA_PORT] = { .type = NLA_U16 }, 3107 [NDA_DST] = NLA_POLICY_RANGE(NLA_BINARY, sizeof(struct in_addr), 3108 sizeof(struct in6_addr)), 3109 [NDA_NDM_STATE_MASK] = { .type = NLA_U16 }, 3110 [NDA_NDM_FLAGS_MASK] = { .type = NLA_U8 }, 3111 }; 3112 3113 #define VXLAN_FDB_FLUSH_IGNORED_NDM_FLAGS (NTF_MASTER | NTF_SELF) 3114 #define VXLAN_FDB_FLUSH_ALLOWED_NDM_STATES (NUD_PERMANENT | NUD_NOARP) 3115 #define VXLAN_FDB_FLUSH_ALLOWED_NDM_FLAGS (NTF_EXT_LEARNED | NTF_OFFLOADED | \ 3116 NTF_ROUTER) 3117 3118 static int vxlan_fdb_delete_bulk(struct nlmsghdr *nlh, struct net_device *dev, 3119 struct netlink_ext_ack *extack) 3120 { 3121 struct vxlan_dev *vxlan = netdev_priv(dev); 3122 struct vxlan_fdb_flush_desc desc = {}; 3123 struct ndmsg *ndm = nlmsg_data(nlh); 3124 struct nlattr *tb[NDA_MAX + 1]; 3125 u8 ndm_flags; 3126 int err; 3127 3128 ndm_flags = ndm->ndm_flags & ~VXLAN_FDB_FLUSH_IGNORED_NDM_FLAGS; 3129 3130 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, vxlan_del_bulk_policy, 3131 extack); 3132 if (err) 3133 return err; 3134 3135 if (ndm_flags & ~VXLAN_FDB_FLUSH_ALLOWED_NDM_FLAGS) { 3136 NL_SET_ERR_MSG(extack, "Unsupported fdb flush ndm flag bits set"); 3137 return -EINVAL; 3138 } 3139 if (ndm->ndm_state & ~VXLAN_FDB_FLUSH_ALLOWED_NDM_STATES) { 3140 NL_SET_ERR_MSG(extack, "Unsupported fdb flush ndm state bits set"); 3141 return -EINVAL; 3142 } 3143 3144 desc.state = ndm->ndm_state; 3145 desc.flags = ndm_flags; 3146 3147 if (tb[NDA_NDM_STATE_MASK]) 3148 desc.state_mask = nla_get_u16(tb[NDA_NDM_STATE_MASK]); 3149 3150 if (tb[NDA_NDM_FLAGS_MASK]) 3151 desc.flags_mask = nla_get_u8(tb[NDA_NDM_FLAGS_MASK]); 3152 3153 if (tb[NDA_SRC_VNI]) 3154 desc.src_vni = cpu_to_be32(nla_get_u32(tb[NDA_SRC_VNI])); 3155 3156 if (tb[NDA_NH_ID]) 3157 desc.nhid = nla_get_u32(tb[NDA_NH_ID]); 3158 3159 if (tb[NDA_VNI]) 3160 desc.vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI])); 3161 3162 if (tb[NDA_PORT]) 3163 desc.port = nla_get_be16(tb[NDA_PORT]); 3164 3165 if (tb[NDA_DST]) { 3166 union vxlan_addr ip; 3167 3168 err = vxlan_nla_get_addr(&ip, tb[NDA_DST]); 3169 if (err) { 3170 NL_SET_ERR_MSG_ATTR(extack, tb[NDA_DST], 3171 "Unsupported address family"); 3172 return err; 3173 } 3174 desc.dst_ip = ip; 3175 } 3176 3177 vxlan_flush(vxlan, &desc); 3178 3179 return 0; 3180 } 3181 3182 /* Cleanup timer and forwarding table on shutdown */ 3183 static int vxlan_stop(struct net_device *dev) 3184 { 3185 struct vxlan_dev *vxlan = netdev_priv(dev); 3186 struct vxlan_fdb_flush_desc desc = { 3187 /* Default entry is deleted at vxlan_uninit. */ 3188 .ignore_default_entry = true, 3189 .state = 0, 3190 .state_mask = NUD_PERMANENT | NUD_NOARP, 3191 }; 3192 3193 vxlan_multicast_leave(vxlan); 3194 3195 del_timer_sync(&vxlan->age_timer); 3196 3197 vxlan_flush(vxlan, &desc); 3198 vxlan_sock_release(vxlan); 3199 3200 return 0; 3201 } 3202 3203 /* Stub, nothing needs to be done. */ 3204 static void vxlan_set_multicast_list(struct net_device *dev) 3205 { 3206 } 3207 3208 static int vxlan_change_mtu(struct net_device *dev, int new_mtu) 3209 { 3210 struct vxlan_dev *vxlan = netdev_priv(dev); 3211 struct vxlan_rdst *dst = &vxlan->default_dst; 3212 struct net_device *lowerdev = __dev_get_by_index(vxlan->net, 3213 dst->remote_ifindex); 3214 3215 /* This check is different than dev->max_mtu, because it looks at 3216 * the lowerdev->mtu, rather than the static dev->max_mtu 3217 */ 3218 if (lowerdev) { 3219 int max_mtu = lowerdev->mtu - vxlan_headroom(vxlan->cfg.flags); 3220 if (new_mtu > max_mtu) 3221 return -EINVAL; 3222 } 3223 3224 WRITE_ONCE(dev->mtu, new_mtu); 3225 return 0; 3226 } 3227 3228 static int vxlan_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb) 3229 { 3230 struct vxlan_dev *vxlan = netdev_priv(dev); 3231 struct ip_tunnel_info *info = skb_tunnel_info(skb); 3232 __be16 sport, dport; 3233 3234 sport = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min, 3235 vxlan->cfg.port_max, true); 3236 dport = info->key.tp_dst ? : vxlan->cfg.dst_port; 3237 3238 if (ip_tunnel_info_af(info) == AF_INET) { 3239 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock); 3240 struct rtable *rt; 3241 3242 if (!sock4) 3243 return -EIO; 3244 3245 rt = udp_tunnel_dst_lookup(skb, dev, vxlan->net, 0, 3246 &info->key.u.ipv4.src, 3247 &info->key, 3248 sport, dport, info->key.tos, 3249 &info->dst_cache); 3250 if (IS_ERR(rt)) 3251 return PTR_ERR(rt); 3252 ip_rt_put(rt); 3253 } else { 3254 #if IS_ENABLED(CONFIG_IPV6) 3255 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock); 3256 struct dst_entry *ndst; 3257 3258 if (!sock6) 3259 return -EIO; 3260 3261 ndst = udp_tunnel6_dst_lookup(skb, dev, vxlan->net, sock6->sock, 3262 0, &info->key.u.ipv6.src, 3263 &info->key, 3264 sport, dport, info->key.tos, 3265 &info->dst_cache); 3266 if (IS_ERR(ndst)) 3267 return PTR_ERR(ndst); 3268 dst_release(ndst); 3269 #else /* !CONFIG_IPV6 */ 3270 return -EPFNOSUPPORT; 3271 #endif 3272 } 3273 info->key.tp_src = sport; 3274 info->key.tp_dst = dport; 3275 return 0; 3276 } 3277 3278 static const struct net_device_ops vxlan_netdev_ether_ops = { 3279 .ndo_init = vxlan_init, 3280 .ndo_uninit = vxlan_uninit, 3281 .ndo_open = vxlan_open, 3282 .ndo_stop = vxlan_stop, 3283 .ndo_start_xmit = vxlan_xmit, 3284 .ndo_set_rx_mode = vxlan_set_multicast_list, 3285 .ndo_change_mtu = vxlan_change_mtu, 3286 .ndo_validate_addr = eth_validate_addr, 3287 .ndo_set_mac_address = eth_mac_addr, 3288 .ndo_fdb_add = vxlan_fdb_add, 3289 .ndo_fdb_del = vxlan_fdb_delete, 3290 .ndo_fdb_del_bulk = vxlan_fdb_delete_bulk, 3291 .ndo_fdb_dump = vxlan_fdb_dump, 3292 .ndo_fdb_get = vxlan_fdb_get, 3293 .ndo_mdb_add = vxlan_mdb_add, 3294 .ndo_mdb_del = vxlan_mdb_del, 3295 .ndo_mdb_del_bulk = vxlan_mdb_del_bulk, 3296 .ndo_mdb_dump = vxlan_mdb_dump, 3297 .ndo_mdb_get = vxlan_mdb_get, 3298 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst, 3299 }; 3300 3301 static const struct net_device_ops vxlan_netdev_raw_ops = { 3302 .ndo_init = vxlan_init, 3303 .ndo_uninit = vxlan_uninit, 3304 .ndo_open = vxlan_open, 3305 .ndo_stop = vxlan_stop, 3306 .ndo_start_xmit = vxlan_xmit, 3307 .ndo_change_mtu = vxlan_change_mtu, 3308 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst, 3309 }; 3310 3311 /* Info for udev, that this is a virtual tunnel endpoint */ 3312 static const struct device_type vxlan_type = { 3313 .name = "vxlan", 3314 }; 3315 3316 /* Calls the ndo_udp_tunnel_add of the caller in order to 3317 * supply the listening VXLAN udp ports. Callers are expected 3318 * to implement the ndo_udp_tunnel_add. 3319 */ 3320 static void vxlan_offload_rx_ports(struct net_device *dev, bool push) 3321 { 3322 struct vxlan_sock *vs; 3323 struct net *net = dev_net(dev); 3324 struct vxlan_net *vn = net_generic(net, vxlan_net_id); 3325 unsigned int i; 3326 3327 spin_lock(&vn->sock_lock); 3328 for (i = 0; i < PORT_HASH_SIZE; ++i) { 3329 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) { 3330 unsigned short type; 3331 3332 if (vs->flags & VXLAN_F_GPE) 3333 type = UDP_TUNNEL_TYPE_VXLAN_GPE; 3334 else 3335 type = UDP_TUNNEL_TYPE_VXLAN; 3336 3337 if (push) 3338 udp_tunnel_push_rx_port(dev, vs->sock, type); 3339 else 3340 udp_tunnel_drop_rx_port(dev, vs->sock, type); 3341 } 3342 } 3343 spin_unlock(&vn->sock_lock); 3344 } 3345 3346 /* Initialize the device structure. */ 3347 static void vxlan_setup(struct net_device *dev) 3348 { 3349 struct vxlan_dev *vxlan = netdev_priv(dev); 3350 unsigned int h; 3351 3352 eth_hw_addr_random(dev); 3353 ether_setup(dev); 3354 3355 dev->needs_free_netdev = true; 3356 SET_NETDEV_DEVTYPE(dev, &vxlan_type); 3357 3358 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_FRAGLIST; 3359 dev->features |= NETIF_F_RXCSUM; 3360 dev->features |= NETIF_F_GSO_SOFTWARE; 3361 3362 dev->vlan_features = dev->features; 3363 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_FRAGLIST; 3364 dev->hw_features |= NETIF_F_RXCSUM; 3365 dev->hw_features |= NETIF_F_GSO_SOFTWARE; 3366 netif_keep_dst(dev); 3367 dev->priv_flags |= IFF_NO_QUEUE; 3368 dev->change_proto_down = true; 3369 dev->lltx = true; 3370 3371 /* MTU range: 68 - 65535 */ 3372 dev->min_mtu = ETH_MIN_MTU; 3373 dev->max_mtu = ETH_MAX_MTU; 3374 3375 dev->pcpu_stat_type = NETDEV_PCPU_STAT_DSTATS; 3376 INIT_LIST_HEAD(&vxlan->next); 3377 3378 timer_setup(&vxlan->age_timer, vxlan_cleanup, TIMER_DEFERRABLE); 3379 3380 vxlan->dev = dev; 3381 3382 for (h = 0; h < FDB_HASH_SIZE; ++h) { 3383 spin_lock_init(&vxlan->hash_lock[h]); 3384 INIT_HLIST_HEAD(&vxlan->fdb_head[h]); 3385 } 3386 } 3387 3388 static void vxlan_ether_setup(struct net_device *dev) 3389 { 3390 dev->priv_flags &= ~IFF_TX_SKB_SHARING; 3391 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; 3392 dev->netdev_ops = &vxlan_netdev_ether_ops; 3393 } 3394 3395 static void vxlan_raw_setup(struct net_device *dev) 3396 { 3397 dev->header_ops = NULL; 3398 dev->type = ARPHRD_NONE; 3399 dev->hard_header_len = 0; 3400 dev->addr_len = 0; 3401 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST; 3402 dev->netdev_ops = &vxlan_netdev_raw_ops; 3403 } 3404 3405 static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = { 3406 [IFLA_VXLAN_UNSPEC] = { .strict_start_type = IFLA_VXLAN_LOCALBYPASS }, 3407 [IFLA_VXLAN_ID] = { .type = NLA_U32 }, 3408 [IFLA_VXLAN_GROUP] = { .len = sizeof_field(struct iphdr, daddr) }, 3409 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) }, 3410 [IFLA_VXLAN_LINK] = { .type = NLA_U32 }, 3411 [IFLA_VXLAN_LOCAL] = { .len = sizeof_field(struct iphdr, saddr) }, 3412 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) }, 3413 [IFLA_VXLAN_TOS] = { .type = NLA_U8 }, 3414 [IFLA_VXLAN_TTL] = { .type = NLA_U8 }, 3415 [IFLA_VXLAN_LABEL] = { .type = NLA_U32 }, 3416 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 }, 3417 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 }, 3418 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 }, 3419 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) }, 3420 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 }, 3421 [IFLA_VXLAN_RSC] = { .type = NLA_U8 }, 3422 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 }, 3423 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 }, 3424 [IFLA_VXLAN_COLLECT_METADATA] = { .type = NLA_U8 }, 3425 [IFLA_VXLAN_PORT] = { .type = NLA_U16 }, 3426 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 }, 3427 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 }, 3428 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 }, 3429 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 }, 3430 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 }, 3431 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, }, 3432 [IFLA_VXLAN_GPE] = { .type = NLA_FLAG, }, 3433 [IFLA_VXLAN_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG }, 3434 [IFLA_VXLAN_TTL_INHERIT] = { .type = NLA_FLAG }, 3435 [IFLA_VXLAN_DF] = { .type = NLA_U8 }, 3436 [IFLA_VXLAN_VNIFILTER] = { .type = NLA_U8 }, 3437 [IFLA_VXLAN_LOCALBYPASS] = NLA_POLICY_MAX(NLA_U8, 1), 3438 [IFLA_VXLAN_LABEL_POLICY] = NLA_POLICY_MAX(NLA_U32, VXLAN_LABEL_MAX), 3439 [IFLA_VXLAN_RESERVED_BITS] = NLA_POLICY_EXACT_LEN(sizeof(struct vxlanhdr)), 3440 }; 3441 3442 static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[], 3443 struct netlink_ext_ack *extack) 3444 { 3445 if (tb[IFLA_ADDRESS]) { 3446 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) { 3447 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS], 3448 "Provided link layer address is not Ethernet"); 3449 return -EINVAL; 3450 } 3451 3452 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) { 3453 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS], 3454 "Provided Ethernet address is not unicast"); 3455 return -EADDRNOTAVAIL; 3456 } 3457 } 3458 3459 if (tb[IFLA_MTU]) { 3460 u32 mtu = nla_get_u32(tb[IFLA_MTU]); 3461 3462 if (mtu < ETH_MIN_MTU || mtu > ETH_MAX_MTU) { 3463 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU], 3464 "MTU must be between 68 and 65535"); 3465 return -EINVAL; 3466 } 3467 } 3468 3469 if (!data) { 3470 NL_SET_ERR_MSG(extack, 3471 "Required attributes not provided to perform the operation"); 3472 return -EINVAL; 3473 } 3474 3475 if (data[IFLA_VXLAN_ID]) { 3476 u32 id = nla_get_u32(data[IFLA_VXLAN_ID]); 3477 3478 if (id >= VXLAN_N_VID) { 3479 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_VXLAN_ID], 3480 "VXLAN ID must be lower than 16777216"); 3481 return -ERANGE; 3482 } 3483 } 3484 3485 if (data[IFLA_VXLAN_PORT_RANGE]) { 3486 const struct ifla_vxlan_port_range *p 3487 = nla_data(data[IFLA_VXLAN_PORT_RANGE]); 3488 3489 if (ntohs(p->high) < ntohs(p->low)) { 3490 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_VXLAN_PORT_RANGE], 3491 "Invalid source port range"); 3492 return -EINVAL; 3493 } 3494 } 3495 3496 if (data[IFLA_VXLAN_DF]) { 3497 enum ifla_vxlan_df df = nla_get_u8(data[IFLA_VXLAN_DF]); 3498 3499 if (df < 0 || df > VXLAN_DF_MAX) { 3500 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_VXLAN_DF], 3501 "Invalid DF attribute"); 3502 return -EINVAL; 3503 } 3504 } 3505 3506 return 0; 3507 } 3508 3509 static void vxlan_get_drvinfo(struct net_device *netdev, 3510 struct ethtool_drvinfo *drvinfo) 3511 { 3512 strscpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version)); 3513 strscpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver)); 3514 } 3515 3516 static int vxlan_get_link_ksettings(struct net_device *dev, 3517 struct ethtool_link_ksettings *cmd) 3518 { 3519 struct vxlan_dev *vxlan = netdev_priv(dev); 3520 struct vxlan_rdst *dst = &vxlan->default_dst; 3521 struct net_device *lowerdev = __dev_get_by_index(vxlan->net, 3522 dst->remote_ifindex); 3523 3524 if (!lowerdev) { 3525 cmd->base.duplex = DUPLEX_UNKNOWN; 3526 cmd->base.port = PORT_OTHER; 3527 cmd->base.speed = SPEED_UNKNOWN; 3528 3529 return 0; 3530 } 3531 3532 return __ethtool_get_link_ksettings(lowerdev, cmd); 3533 } 3534 3535 static const struct ethtool_ops vxlan_ethtool_ops = { 3536 .get_drvinfo = vxlan_get_drvinfo, 3537 .get_link = ethtool_op_get_link, 3538 .get_link_ksettings = vxlan_get_link_ksettings, 3539 }; 3540 3541 static struct socket *vxlan_create_sock(struct net *net, bool ipv6, 3542 __be16 port, u32 flags, int ifindex) 3543 { 3544 struct socket *sock; 3545 struct udp_port_cfg udp_conf; 3546 int err; 3547 3548 memset(&udp_conf, 0, sizeof(udp_conf)); 3549 3550 if (ipv6) { 3551 udp_conf.family = AF_INET6; 3552 udp_conf.use_udp6_rx_checksums = 3553 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX); 3554 udp_conf.ipv6_v6only = 1; 3555 } else { 3556 udp_conf.family = AF_INET; 3557 } 3558 3559 udp_conf.local_udp_port = port; 3560 udp_conf.bind_ifindex = ifindex; 3561 3562 /* Open UDP socket */ 3563 err = udp_sock_create(net, &udp_conf, &sock); 3564 if (err < 0) 3565 return ERR_PTR(err); 3566 3567 udp_allow_gso(sock->sk); 3568 return sock; 3569 } 3570 3571 /* Create new listen socket if needed */ 3572 static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6, 3573 __be16 port, u32 flags, 3574 int ifindex) 3575 { 3576 struct vxlan_net *vn = net_generic(net, vxlan_net_id); 3577 struct vxlan_sock *vs; 3578 struct socket *sock; 3579 unsigned int h; 3580 struct udp_tunnel_sock_cfg tunnel_cfg; 3581 3582 vs = kzalloc(sizeof(*vs), GFP_KERNEL); 3583 if (!vs) 3584 return ERR_PTR(-ENOMEM); 3585 3586 for (h = 0; h < VNI_HASH_SIZE; ++h) 3587 INIT_HLIST_HEAD(&vs->vni_list[h]); 3588 3589 sock = vxlan_create_sock(net, ipv6, port, flags, ifindex); 3590 if (IS_ERR(sock)) { 3591 kfree(vs); 3592 return ERR_CAST(sock); 3593 } 3594 3595 vs->sock = sock; 3596 refcount_set(&vs->refcnt, 1); 3597 vs->flags = (flags & VXLAN_F_RCV_FLAGS); 3598 3599 spin_lock(&vn->sock_lock); 3600 hlist_add_head_rcu(&vs->hlist, vs_head(net, port)); 3601 udp_tunnel_notify_add_rx_port(sock, 3602 (vs->flags & VXLAN_F_GPE) ? 3603 UDP_TUNNEL_TYPE_VXLAN_GPE : 3604 UDP_TUNNEL_TYPE_VXLAN); 3605 spin_unlock(&vn->sock_lock); 3606 3607 /* Mark socket as an encapsulation socket. */ 3608 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg)); 3609 tunnel_cfg.sk_user_data = vs; 3610 tunnel_cfg.encap_type = 1; 3611 tunnel_cfg.encap_rcv = vxlan_rcv; 3612 tunnel_cfg.encap_err_lookup = vxlan_err_lookup; 3613 tunnel_cfg.encap_destroy = NULL; 3614 if (vs->flags & VXLAN_F_GPE) { 3615 tunnel_cfg.gro_receive = vxlan_gpe_gro_receive; 3616 tunnel_cfg.gro_complete = vxlan_gpe_gro_complete; 3617 } else { 3618 tunnel_cfg.gro_receive = vxlan_gro_receive; 3619 tunnel_cfg.gro_complete = vxlan_gro_complete; 3620 } 3621 3622 setup_udp_tunnel_sock(net, sock, &tunnel_cfg); 3623 3624 return vs; 3625 } 3626 3627 static int __vxlan_sock_add(struct vxlan_dev *vxlan, bool ipv6) 3628 { 3629 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id); 3630 bool metadata = vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA; 3631 struct vxlan_sock *vs = NULL; 3632 struct vxlan_dev_node *node; 3633 int l3mdev_index = 0; 3634 3635 if (vxlan->cfg.remote_ifindex) 3636 l3mdev_index = l3mdev_master_upper_ifindex_by_index( 3637 vxlan->net, vxlan->cfg.remote_ifindex); 3638 3639 if (!vxlan->cfg.no_share) { 3640 spin_lock(&vn->sock_lock); 3641 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET, 3642 vxlan->cfg.dst_port, vxlan->cfg.flags, 3643 l3mdev_index); 3644 if (vs && !refcount_inc_not_zero(&vs->refcnt)) { 3645 spin_unlock(&vn->sock_lock); 3646 return -EBUSY; 3647 } 3648 spin_unlock(&vn->sock_lock); 3649 } 3650 if (!vs) 3651 vs = vxlan_socket_create(vxlan->net, ipv6, 3652 vxlan->cfg.dst_port, vxlan->cfg.flags, 3653 l3mdev_index); 3654 if (IS_ERR(vs)) 3655 return PTR_ERR(vs); 3656 #if IS_ENABLED(CONFIG_IPV6) 3657 if (ipv6) { 3658 rcu_assign_pointer(vxlan->vn6_sock, vs); 3659 node = &vxlan->hlist6; 3660 } else 3661 #endif 3662 { 3663 rcu_assign_pointer(vxlan->vn4_sock, vs); 3664 node = &vxlan->hlist4; 3665 } 3666 3667 if (metadata && (vxlan->cfg.flags & VXLAN_F_VNIFILTER)) 3668 vxlan_vs_add_vnigrp(vxlan, vs, ipv6); 3669 else 3670 vxlan_vs_add_dev(vs, vxlan, node); 3671 3672 return 0; 3673 } 3674 3675 static int vxlan_sock_add(struct vxlan_dev *vxlan) 3676 { 3677 bool metadata = vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA; 3678 bool ipv6 = vxlan->cfg.flags & VXLAN_F_IPV6 || metadata; 3679 bool ipv4 = !ipv6 || metadata; 3680 int ret = 0; 3681 3682 RCU_INIT_POINTER(vxlan->vn4_sock, NULL); 3683 #if IS_ENABLED(CONFIG_IPV6) 3684 RCU_INIT_POINTER(vxlan->vn6_sock, NULL); 3685 if (ipv6) { 3686 ret = __vxlan_sock_add(vxlan, true); 3687 if (ret < 0 && ret != -EAFNOSUPPORT) 3688 ipv4 = false; 3689 } 3690 #endif 3691 if (ipv4) 3692 ret = __vxlan_sock_add(vxlan, false); 3693 if (ret < 0) 3694 vxlan_sock_release(vxlan); 3695 return ret; 3696 } 3697 3698 int vxlan_vni_in_use(struct net *src_net, struct vxlan_dev *vxlan, 3699 struct vxlan_config *conf, __be32 vni) 3700 { 3701 struct vxlan_net *vn = net_generic(src_net, vxlan_net_id); 3702 struct vxlan_dev *tmp; 3703 3704 list_for_each_entry(tmp, &vn->vxlan_list, next) { 3705 if (tmp == vxlan) 3706 continue; 3707 if (tmp->cfg.flags & VXLAN_F_VNIFILTER) { 3708 if (!vxlan_vnifilter_lookup(tmp, vni)) 3709 continue; 3710 } else if (tmp->cfg.vni != vni) { 3711 continue; 3712 } 3713 if (tmp->cfg.dst_port != conf->dst_port) 3714 continue; 3715 if ((tmp->cfg.flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)) != 3716 (conf->flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6))) 3717 continue; 3718 3719 if ((conf->flags & VXLAN_F_IPV6_LINKLOCAL) && 3720 tmp->cfg.remote_ifindex != conf->remote_ifindex) 3721 continue; 3722 3723 return -EEXIST; 3724 } 3725 3726 return 0; 3727 } 3728 3729 static int vxlan_config_validate(struct net *src_net, struct vxlan_config *conf, 3730 struct net_device **lower, 3731 struct vxlan_dev *old, 3732 struct netlink_ext_ack *extack) 3733 { 3734 bool use_ipv6 = false; 3735 3736 if (conf->flags & VXLAN_F_GPE) { 3737 /* For now, allow GPE only together with 3738 * COLLECT_METADATA. This can be relaxed later; in such 3739 * case, the other side of the PtP link will have to be 3740 * provided. 3741 */ 3742 if ((conf->flags & ~VXLAN_F_ALLOWED_GPE) || 3743 !(conf->flags & VXLAN_F_COLLECT_METADATA)) { 3744 NL_SET_ERR_MSG(extack, 3745 "VXLAN GPE does not support this combination of attributes"); 3746 return -EINVAL; 3747 } 3748 } 3749 3750 if (!conf->remote_ip.sa.sa_family && !conf->saddr.sa.sa_family) { 3751 /* Unless IPv6 is explicitly requested, assume IPv4 */ 3752 conf->remote_ip.sa.sa_family = AF_INET; 3753 conf->saddr.sa.sa_family = AF_INET; 3754 } else if (!conf->remote_ip.sa.sa_family) { 3755 conf->remote_ip.sa.sa_family = conf->saddr.sa.sa_family; 3756 } else if (!conf->saddr.sa.sa_family) { 3757 conf->saddr.sa.sa_family = conf->remote_ip.sa.sa_family; 3758 } 3759 3760 if (conf->saddr.sa.sa_family != conf->remote_ip.sa.sa_family) { 3761 NL_SET_ERR_MSG(extack, 3762 "Local and remote address must be from the same family"); 3763 return -EINVAL; 3764 } 3765 3766 if (vxlan_addr_multicast(&conf->saddr)) { 3767 NL_SET_ERR_MSG(extack, "Local address cannot be multicast"); 3768 return -EINVAL; 3769 } 3770 3771 if (conf->saddr.sa.sa_family == AF_INET6) { 3772 if (!IS_ENABLED(CONFIG_IPV6)) { 3773 NL_SET_ERR_MSG(extack, 3774 "IPv6 support not enabled in the kernel"); 3775 return -EPFNOSUPPORT; 3776 } 3777 use_ipv6 = true; 3778 conf->flags |= VXLAN_F_IPV6; 3779 3780 if (!(conf->flags & VXLAN_F_COLLECT_METADATA)) { 3781 int local_type = 3782 ipv6_addr_type(&conf->saddr.sin6.sin6_addr); 3783 int remote_type = 3784 ipv6_addr_type(&conf->remote_ip.sin6.sin6_addr); 3785 3786 if (local_type & IPV6_ADDR_LINKLOCAL) { 3787 if (!(remote_type & IPV6_ADDR_LINKLOCAL) && 3788 (remote_type != IPV6_ADDR_ANY)) { 3789 NL_SET_ERR_MSG(extack, 3790 "Invalid combination of local and remote address scopes"); 3791 return -EINVAL; 3792 } 3793 3794 conf->flags |= VXLAN_F_IPV6_LINKLOCAL; 3795 } else { 3796 if (remote_type == 3797 (IPV6_ADDR_UNICAST | IPV6_ADDR_LINKLOCAL)) { 3798 NL_SET_ERR_MSG(extack, 3799 "Invalid combination of local and remote address scopes"); 3800 return -EINVAL; 3801 } 3802 3803 conf->flags &= ~VXLAN_F_IPV6_LINKLOCAL; 3804 } 3805 } 3806 } 3807 3808 if (conf->label && !use_ipv6) { 3809 NL_SET_ERR_MSG(extack, 3810 "Label attribute only applies to IPv6 VXLAN devices"); 3811 return -EINVAL; 3812 } 3813 3814 if (conf->label_policy && !use_ipv6) { 3815 NL_SET_ERR_MSG(extack, 3816 "Label policy only applies to IPv6 VXLAN devices"); 3817 return -EINVAL; 3818 } 3819 3820 if (conf->remote_ifindex) { 3821 struct net_device *lowerdev; 3822 3823 lowerdev = __dev_get_by_index(src_net, conf->remote_ifindex); 3824 if (!lowerdev) { 3825 NL_SET_ERR_MSG(extack, 3826 "Invalid local interface, device not found"); 3827 return -ENODEV; 3828 } 3829 3830 #if IS_ENABLED(CONFIG_IPV6) 3831 if (use_ipv6) { 3832 struct inet6_dev *idev = __in6_dev_get(lowerdev); 3833 3834 if (idev && idev->cnf.disable_ipv6) { 3835 NL_SET_ERR_MSG(extack, 3836 "IPv6 support disabled by administrator"); 3837 return -EPERM; 3838 } 3839 } 3840 #endif 3841 3842 *lower = lowerdev; 3843 } else { 3844 if (vxlan_addr_multicast(&conf->remote_ip)) { 3845 NL_SET_ERR_MSG(extack, 3846 "Local interface required for multicast remote destination"); 3847 3848 return -EINVAL; 3849 } 3850 3851 #if IS_ENABLED(CONFIG_IPV6) 3852 if (conf->flags & VXLAN_F_IPV6_LINKLOCAL) { 3853 NL_SET_ERR_MSG(extack, 3854 "Local interface required for link-local local/remote addresses"); 3855 return -EINVAL; 3856 } 3857 #endif 3858 3859 *lower = NULL; 3860 } 3861 3862 if (!conf->dst_port) { 3863 if (conf->flags & VXLAN_F_GPE) 3864 conf->dst_port = htons(IANA_VXLAN_GPE_UDP_PORT); 3865 else 3866 conf->dst_port = htons(vxlan_port); 3867 } 3868 3869 if (!conf->age_interval) 3870 conf->age_interval = FDB_AGE_DEFAULT; 3871 3872 if (vxlan_vni_in_use(src_net, old, conf, conf->vni)) { 3873 NL_SET_ERR_MSG(extack, 3874 "A VXLAN device with the specified VNI already exists"); 3875 return -EEXIST; 3876 } 3877 3878 return 0; 3879 } 3880 3881 static void vxlan_config_apply(struct net_device *dev, 3882 struct vxlan_config *conf, 3883 struct net_device *lowerdev, 3884 struct net *src_net, 3885 bool changelink) 3886 { 3887 struct vxlan_dev *vxlan = netdev_priv(dev); 3888 struct vxlan_rdst *dst = &vxlan->default_dst; 3889 unsigned short needed_headroom = ETH_HLEN; 3890 int max_mtu = ETH_MAX_MTU; 3891 u32 flags = conf->flags; 3892 3893 if (!changelink) { 3894 if (flags & VXLAN_F_GPE) 3895 vxlan_raw_setup(dev); 3896 else 3897 vxlan_ether_setup(dev); 3898 3899 if (conf->mtu) 3900 dev->mtu = conf->mtu; 3901 3902 vxlan->net = src_net; 3903 } 3904 3905 dst->remote_vni = conf->vni; 3906 3907 memcpy(&dst->remote_ip, &conf->remote_ip, sizeof(conf->remote_ip)); 3908 3909 if (lowerdev) { 3910 dst->remote_ifindex = conf->remote_ifindex; 3911 3912 netif_inherit_tso_max(dev, lowerdev); 3913 3914 needed_headroom = lowerdev->hard_header_len; 3915 needed_headroom += lowerdev->needed_headroom; 3916 3917 dev->needed_tailroom = lowerdev->needed_tailroom; 3918 3919 max_mtu = lowerdev->mtu - vxlan_headroom(flags); 3920 if (max_mtu < ETH_MIN_MTU) 3921 max_mtu = ETH_MIN_MTU; 3922 3923 if (!changelink && !conf->mtu) 3924 dev->mtu = max_mtu; 3925 } 3926 3927 if (dev->mtu > max_mtu) 3928 dev->mtu = max_mtu; 3929 3930 if (flags & VXLAN_F_COLLECT_METADATA) 3931 flags |= VXLAN_F_IPV6; 3932 needed_headroom += vxlan_headroom(flags); 3933 dev->needed_headroom = needed_headroom; 3934 3935 memcpy(&vxlan->cfg, conf, sizeof(*conf)); 3936 } 3937 3938 static int vxlan_dev_configure(struct net *src_net, struct net_device *dev, 3939 struct vxlan_config *conf, 3940 struct netlink_ext_ack *extack) 3941 { 3942 struct vxlan_dev *vxlan = netdev_priv(dev); 3943 struct net_device *lowerdev; 3944 int ret; 3945 3946 ret = vxlan_config_validate(src_net, conf, &lowerdev, vxlan, extack); 3947 if (ret) 3948 return ret; 3949 3950 vxlan_config_apply(dev, conf, lowerdev, src_net, false); 3951 3952 return 0; 3953 } 3954 3955 static int __vxlan_dev_create(struct net *net, struct net_device *dev, 3956 struct vxlan_config *conf, 3957 struct netlink_ext_ack *extack) 3958 { 3959 struct vxlan_net *vn = net_generic(net, vxlan_net_id); 3960 struct vxlan_dev *vxlan = netdev_priv(dev); 3961 struct net_device *remote_dev = NULL; 3962 struct vxlan_fdb *f = NULL; 3963 bool unregister = false; 3964 struct vxlan_rdst *dst; 3965 int err; 3966 3967 dst = &vxlan->default_dst; 3968 err = vxlan_dev_configure(net, dev, conf, extack); 3969 if (err) 3970 return err; 3971 3972 dev->ethtool_ops = &vxlan_ethtool_ops; 3973 3974 /* create an fdb entry for a valid default destination */ 3975 if (!vxlan_addr_any(&dst->remote_ip)) { 3976 err = vxlan_fdb_create(vxlan, all_zeros_mac, 3977 &dst->remote_ip, 3978 NUD_REACHABLE | NUD_PERMANENT, 3979 vxlan->cfg.dst_port, 3980 dst->remote_vni, 3981 dst->remote_vni, 3982 dst->remote_ifindex, 3983 NTF_SELF, 0, &f, extack); 3984 if (err) 3985 return err; 3986 } 3987 3988 err = register_netdevice(dev); 3989 if (err) 3990 goto errout; 3991 unregister = true; 3992 3993 if (dst->remote_ifindex) { 3994 remote_dev = __dev_get_by_index(net, dst->remote_ifindex); 3995 if (!remote_dev) { 3996 err = -ENODEV; 3997 goto errout; 3998 } 3999 4000 err = netdev_upper_dev_link(remote_dev, dev, extack); 4001 if (err) 4002 goto errout; 4003 } 4004 4005 err = rtnl_configure_link(dev, NULL, 0, NULL); 4006 if (err < 0) 4007 goto unlink; 4008 4009 if (f) { 4010 vxlan_fdb_insert(vxlan, all_zeros_mac, dst->remote_vni, f); 4011 4012 /* notify default fdb entry */ 4013 err = vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), 4014 RTM_NEWNEIGH, true, extack); 4015 if (err) { 4016 vxlan_fdb_destroy(vxlan, f, false, false); 4017 if (remote_dev) 4018 netdev_upper_dev_unlink(remote_dev, dev); 4019 goto unregister; 4020 } 4021 } 4022 4023 list_add(&vxlan->next, &vn->vxlan_list); 4024 if (remote_dev) 4025 dst->remote_dev = remote_dev; 4026 return 0; 4027 unlink: 4028 if (remote_dev) 4029 netdev_upper_dev_unlink(remote_dev, dev); 4030 errout: 4031 /* unregister_netdevice() destroys the default FDB entry with deletion 4032 * notification. But the addition notification was not sent yet, so 4033 * destroy the entry by hand here. 4034 */ 4035 if (f) 4036 __vxlan_fdb_free(f); 4037 unregister: 4038 if (unregister) 4039 unregister_netdevice(dev); 4040 return err; 4041 } 4042 4043 /* Set/clear flags based on attribute */ 4044 static int vxlan_nl2flag(struct vxlan_config *conf, struct nlattr *tb[], 4045 int attrtype, unsigned long mask, bool changelink, 4046 bool changelink_supported, 4047 struct netlink_ext_ack *extack) 4048 { 4049 unsigned long flags; 4050 4051 if (!tb[attrtype]) 4052 return 0; 4053 4054 if (changelink && !changelink_supported) { 4055 vxlan_flag_attr_error(attrtype, extack); 4056 return -EOPNOTSUPP; 4057 } 4058 4059 if (vxlan_policy[attrtype].type == NLA_FLAG) 4060 flags = conf->flags | mask; 4061 else if (nla_get_u8(tb[attrtype])) 4062 flags = conf->flags | mask; 4063 else 4064 flags = conf->flags & ~mask; 4065 4066 conf->flags = flags; 4067 4068 return 0; 4069 } 4070 4071 static int vxlan_nl2conf(struct nlattr *tb[], struct nlattr *data[], 4072 struct net_device *dev, struct vxlan_config *conf, 4073 bool changelink, struct netlink_ext_ack *extack) 4074 { 4075 struct vxlanhdr used_bits = { 4076 .vx_flags = VXLAN_HF_VNI, 4077 .vx_vni = VXLAN_VNI_MASK, 4078 }; 4079 struct vxlan_dev *vxlan = netdev_priv(dev); 4080 int err = 0; 4081 4082 memset(conf, 0, sizeof(*conf)); 4083 4084 /* if changelink operation, start with old existing cfg */ 4085 if (changelink) 4086 memcpy(conf, &vxlan->cfg, sizeof(*conf)); 4087 4088 if (data[IFLA_VXLAN_ID]) { 4089 __be32 vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID])); 4090 4091 if (changelink && (vni != conf->vni)) { 4092 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_ID], "Cannot change VNI"); 4093 return -EOPNOTSUPP; 4094 } 4095 conf->vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID])); 4096 } 4097 4098 if (data[IFLA_VXLAN_GROUP]) { 4099 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET)) { 4100 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP], "New group address family does not match old group"); 4101 return -EOPNOTSUPP; 4102 } 4103 4104 conf->remote_ip.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_GROUP]); 4105 conf->remote_ip.sa.sa_family = AF_INET; 4106 } else if (data[IFLA_VXLAN_GROUP6]) { 4107 if (!IS_ENABLED(CONFIG_IPV6)) { 4108 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP6], "IPv6 support not enabled in the kernel"); 4109 return -EPFNOSUPPORT; 4110 } 4111 4112 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET6)) { 4113 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP6], "New group address family does not match old group"); 4114 return -EOPNOTSUPP; 4115 } 4116 4117 conf->remote_ip.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_GROUP6]); 4118 conf->remote_ip.sa.sa_family = AF_INET6; 4119 } 4120 4121 if (data[IFLA_VXLAN_LOCAL]) { 4122 if (changelink && (conf->saddr.sa.sa_family != AF_INET)) { 4123 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL], "New local address family does not match old"); 4124 return -EOPNOTSUPP; 4125 } 4126 4127 conf->saddr.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_LOCAL]); 4128 conf->saddr.sa.sa_family = AF_INET; 4129 } else if (data[IFLA_VXLAN_LOCAL6]) { 4130 if (!IS_ENABLED(CONFIG_IPV6)) { 4131 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL6], "IPv6 support not enabled in the kernel"); 4132 return -EPFNOSUPPORT; 4133 } 4134 4135 if (changelink && (conf->saddr.sa.sa_family != AF_INET6)) { 4136 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL6], "New local address family does not match old"); 4137 return -EOPNOTSUPP; 4138 } 4139 4140 /* TODO: respect scope id */ 4141 conf->saddr.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_LOCAL6]); 4142 conf->saddr.sa.sa_family = AF_INET6; 4143 } 4144 4145 if (data[IFLA_VXLAN_LINK]) 4146 conf->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]); 4147 4148 if (data[IFLA_VXLAN_TOS]) 4149 conf->tos = nla_get_u8(data[IFLA_VXLAN_TOS]); 4150 4151 if (data[IFLA_VXLAN_TTL]) 4152 conf->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]); 4153 4154 if (data[IFLA_VXLAN_TTL_INHERIT]) { 4155 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_TTL_INHERIT, 4156 VXLAN_F_TTL_INHERIT, changelink, false, 4157 extack); 4158 if (err) 4159 return err; 4160 4161 } 4162 4163 if (data[IFLA_VXLAN_LABEL]) 4164 conf->label = nla_get_be32(data[IFLA_VXLAN_LABEL]) & 4165 IPV6_FLOWLABEL_MASK; 4166 if (data[IFLA_VXLAN_LABEL_POLICY]) 4167 conf->label_policy = nla_get_u32(data[IFLA_VXLAN_LABEL_POLICY]); 4168 4169 if (data[IFLA_VXLAN_LEARNING]) { 4170 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_LEARNING, 4171 VXLAN_F_LEARN, changelink, true, 4172 extack); 4173 if (err) 4174 return err; 4175 } else if (!changelink) { 4176 /* default to learn on a new device */ 4177 conf->flags |= VXLAN_F_LEARN; 4178 } 4179 4180 if (data[IFLA_VXLAN_AGEING]) 4181 conf->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]); 4182 4183 if (data[IFLA_VXLAN_PROXY]) { 4184 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_PROXY, 4185 VXLAN_F_PROXY, changelink, false, 4186 extack); 4187 if (err) 4188 return err; 4189 } 4190 4191 if (data[IFLA_VXLAN_RSC]) { 4192 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_RSC, 4193 VXLAN_F_RSC, changelink, false, 4194 extack); 4195 if (err) 4196 return err; 4197 } 4198 4199 if (data[IFLA_VXLAN_L2MISS]) { 4200 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_L2MISS, 4201 VXLAN_F_L2MISS, changelink, false, 4202 extack); 4203 if (err) 4204 return err; 4205 } 4206 4207 if (data[IFLA_VXLAN_L3MISS]) { 4208 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_L3MISS, 4209 VXLAN_F_L3MISS, changelink, false, 4210 extack); 4211 if (err) 4212 return err; 4213 } 4214 4215 if (data[IFLA_VXLAN_LIMIT]) { 4216 if (changelink) { 4217 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LIMIT], 4218 "Cannot change limit"); 4219 return -EOPNOTSUPP; 4220 } 4221 conf->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]); 4222 } 4223 4224 if (data[IFLA_VXLAN_COLLECT_METADATA]) { 4225 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_COLLECT_METADATA, 4226 VXLAN_F_COLLECT_METADATA, changelink, false, 4227 extack); 4228 if (err) 4229 return err; 4230 } 4231 4232 if (data[IFLA_VXLAN_PORT_RANGE]) { 4233 if (!changelink) { 4234 const struct ifla_vxlan_port_range *p 4235 = nla_data(data[IFLA_VXLAN_PORT_RANGE]); 4236 conf->port_min = ntohs(p->low); 4237 conf->port_max = ntohs(p->high); 4238 } else { 4239 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT_RANGE], 4240 "Cannot change port range"); 4241 return -EOPNOTSUPP; 4242 } 4243 } 4244 4245 if (data[IFLA_VXLAN_PORT]) { 4246 if (changelink) { 4247 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT], 4248 "Cannot change port"); 4249 return -EOPNOTSUPP; 4250 } 4251 conf->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]); 4252 } 4253 4254 if (data[IFLA_VXLAN_UDP_CSUM]) { 4255 if (changelink) { 4256 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_UDP_CSUM], 4257 "Cannot change UDP_CSUM flag"); 4258 return -EOPNOTSUPP; 4259 } 4260 if (!nla_get_u8(data[IFLA_VXLAN_UDP_CSUM])) 4261 conf->flags |= VXLAN_F_UDP_ZERO_CSUM_TX; 4262 } 4263 4264 if (data[IFLA_VXLAN_LOCALBYPASS]) { 4265 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_LOCALBYPASS, 4266 VXLAN_F_LOCALBYPASS, changelink, 4267 true, extack); 4268 if (err) 4269 return err; 4270 } else if (!changelink) { 4271 /* default to local bypass on a new device */ 4272 conf->flags |= VXLAN_F_LOCALBYPASS; 4273 } 4274 4275 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]) { 4276 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_UDP_ZERO_CSUM6_TX, 4277 VXLAN_F_UDP_ZERO_CSUM6_TX, changelink, 4278 false, extack); 4279 if (err) 4280 return err; 4281 } 4282 4283 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]) { 4284 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_UDP_ZERO_CSUM6_RX, 4285 VXLAN_F_UDP_ZERO_CSUM6_RX, changelink, 4286 false, extack); 4287 if (err) 4288 return err; 4289 } 4290 4291 if (data[IFLA_VXLAN_REMCSUM_TX]) { 4292 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_TX, 4293 VXLAN_F_REMCSUM_TX, changelink, false, 4294 extack); 4295 if (err) 4296 return err; 4297 } 4298 4299 if (data[IFLA_VXLAN_REMCSUM_RX]) { 4300 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_RX, 4301 VXLAN_F_REMCSUM_RX, changelink, false, 4302 extack); 4303 if (err) 4304 return err; 4305 used_bits.vx_flags |= VXLAN_HF_RCO; 4306 used_bits.vx_vni |= ~VXLAN_VNI_MASK; 4307 } 4308 4309 if (data[IFLA_VXLAN_GBP]) { 4310 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_GBP, 4311 VXLAN_F_GBP, changelink, false, extack); 4312 if (err) 4313 return err; 4314 used_bits.vx_flags |= VXLAN_GBP_USED_BITS; 4315 } 4316 4317 if (data[IFLA_VXLAN_GPE]) { 4318 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_GPE, 4319 VXLAN_F_GPE, changelink, false, 4320 extack); 4321 if (err) 4322 return err; 4323 4324 used_bits.vx_flags |= VXLAN_GPE_USED_BITS; 4325 } 4326 4327 if (data[IFLA_VXLAN_RESERVED_BITS]) { 4328 struct vxlanhdr reserved_bits; 4329 4330 if (changelink) { 4331 NL_SET_ERR_MSG_ATTR(extack, 4332 data[IFLA_VXLAN_RESERVED_BITS], 4333 "Cannot change reserved_bits"); 4334 return -EOPNOTSUPP; 4335 } 4336 4337 nla_memcpy(&reserved_bits, data[IFLA_VXLAN_RESERVED_BITS], 4338 sizeof(reserved_bits)); 4339 if (used_bits.vx_flags & reserved_bits.vx_flags || 4340 used_bits.vx_vni & reserved_bits.vx_vni) { 4341 __be64 ub_be64, rb_be64; 4342 4343 memcpy(&ub_be64, &used_bits, sizeof(ub_be64)); 4344 memcpy(&rb_be64, &reserved_bits, sizeof(rb_be64)); 4345 4346 NL_SET_ERR_MSG_ATTR_FMT(extack, 4347 data[IFLA_VXLAN_RESERVED_BITS], 4348 "Used bits %#018llx cannot overlap reserved bits %#018llx", 4349 be64_to_cpu(ub_be64), 4350 be64_to_cpu(rb_be64)); 4351 return -EINVAL; 4352 } 4353 4354 conf->reserved_bits = reserved_bits; 4355 } else { 4356 /* For backwards compatibility, only allow reserved fields to be 4357 * used by VXLAN extensions if explicitly requested. 4358 */ 4359 conf->reserved_bits = (struct vxlanhdr) { 4360 .vx_flags = ~used_bits.vx_flags, 4361 .vx_vni = ~used_bits.vx_vni, 4362 }; 4363 } 4364 4365 if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL]) { 4366 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_NOPARTIAL, 4367 VXLAN_F_REMCSUM_NOPARTIAL, changelink, 4368 false, extack); 4369 if (err) 4370 return err; 4371 } 4372 4373 if (tb[IFLA_MTU]) { 4374 if (changelink) { 4375 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU], 4376 "Cannot change mtu"); 4377 return -EOPNOTSUPP; 4378 } 4379 conf->mtu = nla_get_u32(tb[IFLA_MTU]); 4380 } 4381 4382 if (data[IFLA_VXLAN_DF]) 4383 conf->df = nla_get_u8(data[IFLA_VXLAN_DF]); 4384 4385 if (data[IFLA_VXLAN_VNIFILTER]) { 4386 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_VNIFILTER, 4387 VXLAN_F_VNIFILTER, changelink, false, 4388 extack); 4389 if (err) 4390 return err; 4391 4392 if ((conf->flags & VXLAN_F_VNIFILTER) && 4393 !(conf->flags & VXLAN_F_COLLECT_METADATA)) { 4394 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_VXLAN_VNIFILTER], 4395 "vxlan vnifilter only valid in collect metadata mode"); 4396 return -EINVAL; 4397 } 4398 } 4399 4400 return 0; 4401 } 4402 4403 static int vxlan_newlink(struct net_device *dev, 4404 struct rtnl_newlink_params *params, 4405 struct netlink_ext_ack *extack) 4406 { 4407 struct net *link_net = rtnl_newlink_link_net(params); 4408 struct nlattr **data = params->data; 4409 struct nlattr **tb = params->tb; 4410 struct vxlan_config conf; 4411 int err; 4412 4413 err = vxlan_nl2conf(tb, data, dev, &conf, false, extack); 4414 if (err) 4415 return err; 4416 4417 return __vxlan_dev_create(link_net, dev, &conf, extack); 4418 } 4419 4420 static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[], 4421 struct nlattr *data[], 4422 struct netlink_ext_ack *extack) 4423 { 4424 struct vxlan_dev *vxlan = netdev_priv(dev); 4425 bool rem_ip_changed, change_igmp; 4426 struct net_device *lowerdev; 4427 struct vxlan_config conf; 4428 struct vxlan_rdst *dst; 4429 int err; 4430 4431 dst = &vxlan->default_dst; 4432 err = vxlan_nl2conf(tb, data, dev, &conf, true, extack); 4433 if (err) 4434 return err; 4435 4436 err = vxlan_config_validate(vxlan->net, &conf, &lowerdev, 4437 vxlan, extack); 4438 if (err) 4439 return err; 4440 4441 if (dst->remote_dev == lowerdev) 4442 lowerdev = NULL; 4443 4444 err = netdev_adjacent_change_prepare(dst->remote_dev, lowerdev, dev, 4445 extack); 4446 if (err) 4447 return err; 4448 4449 rem_ip_changed = !vxlan_addr_equal(&conf.remote_ip, &dst->remote_ip); 4450 change_igmp = vxlan->dev->flags & IFF_UP && 4451 (rem_ip_changed || 4452 dst->remote_ifindex != conf.remote_ifindex); 4453 4454 /* handle default dst entry */ 4455 if (rem_ip_changed) { 4456 u32 hash_index = fdb_head_index(vxlan, all_zeros_mac, conf.vni); 4457 4458 spin_lock_bh(&vxlan->hash_lock[hash_index]); 4459 if (!vxlan_addr_any(&conf.remote_ip)) { 4460 err = vxlan_fdb_update(vxlan, all_zeros_mac, 4461 &conf.remote_ip, 4462 NUD_REACHABLE | NUD_PERMANENT, 4463 NLM_F_APPEND | NLM_F_CREATE, 4464 vxlan->cfg.dst_port, 4465 conf.vni, conf.vni, 4466 conf.remote_ifindex, 4467 NTF_SELF, 0, true, extack); 4468 if (err) { 4469 spin_unlock_bh(&vxlan->hash_lock[hash_index]); 4470 netdev_adjacent_change_abort(dst->remote_dev, 4471 lowerdev, dev); 4472 return err; 4473 } 4474 } 4475 if (!vxlan_addr_any(&dst->remote_ip)) 4476 __vxlan_fdb_delete(vxlan, all_zeros_mac, 4477 dst->remote_ip, 4478 vxlan->cfg.dst_port, 4479 dst->remote_vni, 4480 dst->remote_vni, 4481 dst->remote_ifindex, 4482 true); 4483 spin_unlock_bh(&vxlan->hash_lock[hash_index]); 4484 4485 /* If vni filtering device, also update fdb entries of 4486 * all vnis that were using default remote ip 4487 */ 4488 if (vxlan->cfg.flags & VXLAN_F_VNIFILTER) { 4489 err = vxlan_vnilist_update_group(vxlan, &dst->remote_ip, 4490 &conf.remote_ip, extack); 4491 if (err) { 4492 netdev_adjacent_change_abort(dst->remote_dev, 4493 lowerdev, dev); 4494 return err; 4495 } 4496 } 4497 } 4498 4499 if (change_igmp && vxlan_addr_multicast(&dst->remote_ip)) 4500 err = vxlan_multicast_leave(vxlan); 4501 4502 if (conf.age_interval != vxlan->cfg.age_interval) 4503 mod_timer(&vxlan->age_timer, jiffies); 4504 4505 netdev_adjacent_change_commit(dst->remote_dev, lowerdev, dev); 4506 if (lowerdev && lowerdev != dst->remote_dev) 4507 dst->remote_dev = lowerdev; 4508 vxlan_config_apply(dev, &conf, lowerdev, vxlan->net, true); 4509 4510 if (!err && change_igmp && 4511 vxlan_addr_multicast(&dst->remote_ip)) 4512 err = vxlan_multicast_join(vxlan); 4513 4514 return err; 4515 } 4516 4517 static void vxlan_dellink(struct net_device *dev, struct list_head *head) 4518 { 4519 struct vxlan_dev *vxlan = netdev_priv(dev); 4520 struct vxlan_fdb_flush_desc desc = { 4521 /* Default entry is deleted at vxlan_uninit. */ 4522 .ignore_default_entry = true, 4523 }; 4524 4525 vxlan_flush(vxlan, &desc); 4526 4527 list_del(&vxlan->next); 4528 unregister_netdevice_queue(dev, head); 4529 if (vxlan->default_dst.remote_dev) 4530 netdev_upper_dev_unlink(vxlan->default_dst.remote_dev, dev); 4531 } 4532 4533 static size_t vxlan_get_size(const struct net_device *dev) 4534 { 4535 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */ 4536 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */ 4537 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */ 4538 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */ 4539 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */ 4540 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL_INHERIT */ 4541 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */ 4542 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_DF */ 4543 nla_total_size(sizeof(__be32)) + /* IFLA_VXLAN_LABEL */ 4544 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LABEL_POLICY */ 4545 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */ 4546 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */ 4547 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */ 4548 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */ 4549 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */ 4550 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_COLLECT_METADATA */ 4551 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */ 4552 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */ 4553 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */ 4554 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */ 4555 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */ 4556 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */ 4557 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */ 4558 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */ 4559 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LOCALBYPASS */ 4560 /* IFLA_VXLAN_PORT_RANGE */ 4561 nla_total_size(sizeof(struct ifla_vxlan_port_range)) + 4562 nla_total_size(0) + /* IFLA_VXLAN_GBP */ 4563 nla_total_size(0) + /* IFLA_VXLAN_GPE */ 4564 nla_total_size(0) + /* IFLA_VXLAN_REMCSUM_NOPARTIAL */ 4565 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_VNIFILTER */ 4566 /* IFLA_VXLAN_RESERVED_BITS */ 4567 nla_total_size(sizeof(struct vxlanhdr)) + 4568 0; 4569 } 4570 4571 static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev) 4572 { 4573 const struct vxlan_dev *vxlan = netdev_priv(dev); 4574 const struct vxlan_rdst *dst = &vxlan->default_dst; 4575 struct ifla_vxlan_port_range ports = { 4576 .low = htons(vxlan->cfg.port_min), 4577 .high = htons(vxlan->cfg.port_max), 4578 }; 4579 4580 if (nla_put_u32(skb, IFLA_VXLAN_ID, be32_to_cpu(dst->remote_vni))) 4581 goto nla_put_failure; 4582 4583 if (!vxlan_addr_any(&dst->remote_ip)) { 4584 if (dst->remote_ip.sa.sa_family == AF_INET) { 4585 if (nla_put_in_addr(skb, IFLA_VXLAN_GROUP, 4586 dst->remote_ip.sin.sin_addr.s_addr)) 4587 goto nla_put_failure; 4588 #if IS_ENABLED(CONFIG_IPV6) 4589 } else { 4590 if (nla_put_in6_addr(skb, IFLA_VXLAN_GROUP6, 4591 &dst->remote_ip.sin6.sin6_addr)) 4592 goto nla_put_failure; 4593 #endif 4594 } 4595 } 4596 4597 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex)) 4598 goto nla_put_failure; 4599 4600 if (!vxlan_addr_any(&vxlan->cfg.saddr)) { 4601 if (vxlan->cfg.saddr.sa.sa_family == AF_INET) { 4602 if (nla_put_in_addr(skb, IFLA_VXLAN_LOCAL, 4603 vxlan->cfg.saddr.sin.sin_addr.s_addr)) 4604 goto nla_put_failure; 4605 #if IS_ENABLED(CONFIG_IPV6) 4606 } else { 4607 if (nla_put_in6_addr(skb, IFLA_VXLAN_LOCAL6, 4608 &vxlan->cfg.saddr.sin6.sin6_addr)) 4609 goto nla_put_failure; 4610 #endif 4611 } 4612 } 4613 4614 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) || 4615 nla_put_u8(skb, IFLA_VXLAN_TTL_INHERIT, 4616 !!(vxlan->cfg.flags & VXLAN_F_TTL_INHERIT)) || 4617 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) || 4618 nla_put_u8(skb, IFLA_VXLAN_DF, vxlan->cfg.df) || 4619 nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) || 4620 nla_put_u32(skb, IFLA_VXLAN_LABEL_POLICY, vxlan->cfg.label_policy) || 4621 nla_put_u8(skb, IFLA_VXLAN_LEARNING, 4622 !!(vxlan->cfg.flags & VXLAN_F_LEARN)) || 4623 nla_put_u8(skb, IFLA_VXLAN_PROXY, 4624 !!(vxlan->cfg.flags & VXLAN_F_PROXY)) || 4625 nla_put_u8(skb, IFLA_VXLAN_RSC, 4626 !!(vxlan->cfg.flags & VXLAN_F_RSC)) || 4627 nla_put_u8(skb, IFLA_VXLAN_L2MISS, 4628 !!(vxlan->cfg.flags & VXLAN_F_L2MISS)) || 4629 nla_put_u8(skb, IFLA_VXLAN_L3MISS, 4630 !!(vxlan->cfg.flags & VXLAN_F_L3MISS)) || 4631 nla_put_u8(skb, IFLA_VXLAN_COLLECT_METADATA, 4632 !!(vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)) || 4633 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->cfg.age_interval) || 4634 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->cfg.addrmax) || 4635 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->cfg.dst_port) || 4636 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM, 4637 !(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM_TX)) || 4638 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX, 4639 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) || 4640 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX, 4641 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) || 4642 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX, 4643 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_TX)) || 4644 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX, 4645 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_RX)) || 4646 nla_put_u8(skb, IFLA_VXLAN_LOCALBYPASS, 4647 !!(vxlan->cfg.flags & VXLAN_F_LOCALBYPASS))) 4648 goto nla_put_failure; 4649 4650 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports)) 4651 goto nla_put_failure; 4652 4653 if (vxlan->cfg.flags & VXLAN_F_GBP && 4654 nla_put_flag(skb, IFLA_VXLAN_GBP)) 4655 goto nla_put_failure; 4656 4657 if (vxlan->cfg.flags & VXLAN_F_GPE && 4658 nla_put_flag(skb, IFLA_VXLAN_GPE)) 4659 goto nla_put_failure; 4660 4661 if (vxlan->cfg.flags & VXLAN_F_REMCSUM_NOPARTIAL && 4662 nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL)) 4663 goto nla_put_failure; 4664 4665 if (vxlan->cfg.flags & VXLAN_F_VNIFILTER && 4666 nla_put_u8(skb, IFLA_VXLAN_VNIFILTER, 4667 !!(vxlan->cfg.flags & VXLAN_F_VNIFILTER))) 4668 goto nla_put_failure; 4669 4670 if (nla_put(skb, IFLA_VXLAN_RESERVED_BITS, 4671 sizeof(vxlan->cfg.reserved_bits), 4672 &vxlan->cfg.reserved_bits)) 4673 goto nla_put_failure; 4674 4675 return 0; 4676 4677 nla_put_failure: 4678 return -EMSGSIZE; 4679 } 4680 4681 static struct net *vxlan_get_link_net(const struct net_device *dev) 4682 { 4683 struct vxlan_dev *vxlan = netdev_priv(dev); 4684 4685 return READ_ONCE(vxlan->net); 4686 } 4687 4688 static struct rtnl_link_ops vxlan_link_ops __read_mostly = { 4689 .kind = "vxlan", 4690 .maxtype = IFLA_VXLAN_MAX, 4691 .policy = vxlan_policy, 4692 .priv_size = sizeof(struct vxlan_dev), 4693 .setup = vxlan_setup, 4694 .validate = vxlan_validate, 4695 .newlink = vxlan_newlink, 4696 .changelink = vxlan_changelink, 4697 .dellink = vxlan_dellink, 4698 .get_size = vxlan_get_size, 4699 .fill_info = vxlan_fill_info, 4700 .get_link_net = vxlan_get_link_net, 4701 }; 4702 4703 struct net_device *vxlan_dev_create(struct net *net, const char *name, 4704 u8 name_assign_type, 4705 struct vxlan_config *conf) 4706 { 4707 struct nlattr *tb[IFLA_MAX + 1]; 4708 struct net_device *dev; 4709 int err; 4710 4711 memset(&tb, 0, sizeof(tb)); 4712 4713 dev = rtnl_create_link(net, name, name_assign_type, 4714 &vxlan_link_ops, tb, NULL); 4715 if (IS_ERR(dev)) 4716 return dev; 4717 4718 err = __vxlan_dev_create(net, dev, conf, NULL); 4719 if (err < 0) { 4720 free_netdev(dev); 4721 return ERR_PTR(err); 4722 } 4723 4724 err = rtnl_configure_link(dev, NULL, 0, NULL); 4725 if (err < 0) { 4726 LIST_HEAD(list_kill); 4727 4728 vxlan_dellink(dev, &list_kill); 4729 unregister_netdevice_many(&list_kill); 4730 return ERR_PTR(err); 4731 } 4732 4733 return dev; 4734 } 4735 EXPORT_SYMBOL_GPL(vxlan_dev_create); 4736 4737 static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn, 4738 struct net_device *dev) 4739 { 4740 struct vxlan_dev *vxlan, *next; 4741 LIST_HEAD(list_kill); 4742 4743 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) { 4744 struct vxlan_rdst *dst = &vxlan->default_dst; 4745 4746 /* In case we created vxlan device with carrier 4747 * and we loose the carrier due to module unload 4748 * we also need to remove vxlan device. In other 4749 * cases, it's not necessary and remote_ifindex 4750 * is 0 here, so no matches. 4751 */ 4752 if (dst->remote_ifindex == dev->ifindex) 4753 vxlan_dellink(vxlan->dev, &list_kill); 4754 } 4755 4756 unregister_netdevice_many(&list_kill); 4757 } 4758 4759 static int vxlan_netdevice_event(struct notifier_block *unused, 4760 unsigned long event, void *ptr) 4761 { 4762 struct net_device *dev = netdev_notifier_info_to_dev(ptr); 4763 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id); 4764 4765 if (event == NETDEV_UNREGISTER) 4766 vxlan_handle_lowerdev_unregister(vn, dev); 4767 else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO) 4768 vxlan_offload_rx_ports(dev, true); 4769 else if (event == NETDEV_UDP_TUNNEL_DROP_INFO) 4770 vxlan_offload_rx_ports(dev, false); 4771 4772 return NOTIFY_DONE; 4773 } 4774 4775 static struct notifier_block vxlan_notifier_block __read_mostly = { 4776 .notifier_call = vxlan_netdevice_event, 4777 }; 4778 4779 static void 4780 vxlan_fdb_offloaded_set(struct net_device *dev, 4781 struct switchdev_notifier_vxlan_fdb_info *fdb_info) 4782 { 4783 struct vxlan_dev *vxlan = netdev_priv(dev); 4784 struct vxlan_rdst *rdst; 4785 struct vxlan_fdb *f; 4786 u32 hash_index; 4787 4788 hash_index = fdb_head_index(vxlan, fdb_info->eth_addr, fdb_info->vni); 4789 4790 spin_lock_bh(&vxlan->hash_lock[hash_index]); 4791 4792 f = __vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni); 4793 if (!f) 4794 goto out; 4795 4796 rdst = vxlan_fdb_find_rdst(f, &fdb_info->remote_ip, 4797 fdb_info->remote_port, 4798 fdb_info->remote_vni, 4799 fdb_info->remote_ifindex); 4800 if (!rdst) 4801 goto out; 4802 4803 rdst->offloaded = fdb_info->offloaded; 4804 4805 out: 4806 spin_unlock_bh(&vxlan->hash_lock[hash_index]); 4807 } 4808 4809 static int 4810 vxlan_fdb_external_learn_add(struct net_device *dev, 4811 struct switchdev_notifier_vxlan_fdb_info *fdb_info) 4812 { 4813 struct vxlan_dev *vxlan = netdev_priv(dev); 4814 struct netlink_ext_ack *extack; 4815 u32 hash_index; 4816 int err; 4817 4818 hash_index = fdb_head_index(vxlan, fdb_info->eth_addr, fdb_info->vni); 4819 extack = switchdev_notifier_info_to_extack(&fdb_info->info); 4820 4821 spin_lock_bh(&vxlan->hash_lock[hash_index]); 4822 err = vxlan_fdb_update(vxlan, fdb_info->eth_addr, &fdb_info->remote_ip, 4823 NUD_REACHABLE, 4824 NLM_F_CREATE | NLM_F_REPLACE, 4825 fdb_info->remote_port, 4826 fdb_info->vni, 4827 fdb_info->remote_vni, 4828 fdb_info->remote_ifindex, 4829 NTF_USE | NTF_SELF | NTF_EXT_LEARNED, 4830 0, false, extack); 4831 spin_unlock_bh(&vxlan->hash_lock[hash_index]); 4832 4833 return err; 4834 } 4835 4836 static int 4837 vxlan_fdb_external_learn_del(struct net_device *dev, 4838 struct switchdev_notifier_vxlan_fdb_info *fdb_info) 4839 { 4840 struct vxlan_dev *vxlan = netdev_priv(dev); 4841 struct vxlan_fdb *f; 4842 u32 hash_index; 4843 int err = 0; 4844 4845 hash_index = fdb_head_index(vxlan, fdb_info->eth_addr, fdb_info->vni); 4846 spin_lock_bh(&vxlan->hash_lock[hash_index]); 4847 4848 f = __vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni); 4849 if (!f) 4850 err = -ENOENT; 4851 else if (f->flags & NTF_EXT_LEARNED) 4852 err = __vxlan_fdb_delete(vxlan, fdb_info->eth_addr, 4853 fdb_info->remote_ip, 4854 fdb_info->remote_port, 4855 fdb_info->vni, 4856 fdb_info->remote_vni, 4857 fdb_info->remote_ifindex, 4858 false); 4859 4860 spin_unlock_bh(&vxlan->hash_lock[hash_index]); 4861 4862 return err; 4863 } 4864 4865 static int vxlan_switchdev_event(struct notifier_block *unused, 4866 unsigned long event, void *ptr) 4867 { 4868 struct net_device *dev = switchdev_notifier_info_to_dev(ptr); 4869 struct switchdev_notifier_vxlan_fdb_info *fdb_info; 4870 int err = 0; 4871 4872 switch (event) { 4873 case SWITCHDEV_VXLAN_FDB_OFFLOADED: 4874 vxlan_fdb_offloaded_set(dev, ptr); 4875 break; 4876 case SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE: 4877 fdb_info = ptr; 4878 err = vxlan_fdb_external_learn_add(dev, fdb_info); 4879 if (err) { 4880 err = notifier_from_errno(err); 4881 break; 4882 } 4883 fdb_info->offloaded = true; 4884 vxlan_fdb_offloaded_set(dev, fdb_info); 4885 break; 4886 case SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE: 4887 fdb_info = ptr; 4888 err = vxlan_fdb_external_learn_del(dev, fdb_info); 4889 if (err) { 4890 err = notifier_from_errno(err); 4891 break; 4892 } 4893 fdb_info->offloaded = false; 4894 vxlan_fdb_offloaded_set(dev, fdb_info); 4895 break; 4896 } 4897 4898 return err; 4899 } 4900 4901 static struct notifier_block vxlan_switchdev_notifier_block __read_mostly = { 4902 .notifier_call = vxlan_switchdev_event, 4903 }; 4904 4905 static void vxlan_fdb_nh_flush(struct nexthop *nh) 4906 { 4907 struct vxlan_fdb *fdb; 4908 struct vxlan_dev *vxlan; 4909 u32 hash_index; 4910 4911 rcu_read_lock(); 4912 list_for_each_entry_rcu(fdb, &nh->fdb_list, nh_list) { 4913 vxlan = rcu_dereference(fdb->vdev); 4914 WARN_ON(!vxlan); 4915 hash_index = fdb_head_index(vxlan, fdb->eth_addr, 4916 vxlan->default_dst.remote_vni); 4917 spin_lock_bh(&vxlan->hash_lock[hash_index]); 4918 if (!hlist_unhashed(&fdb->hlist)) 4919 vxlan_fdb_destroy(vxlan, fdb, false, false); 4920 spin_unlock_bh(&vxlan->hash_lock[hash_index]); 4921 } 4922 rcu_read_unlock(); 4923 } 4924 4925 static int vxlan_nexthop_event(struct notifier_block *nb, 4926 unsigned long event, void *ptr) 4927 { 4928 struct nh_notifier_info *info = ptr; 4929 struct nexthop *nh; 4930 4931 if (event != NEXTHOP_EVENT_DEL) 4932 return NOTIFY_DONE; 4933 4934 nh = nexthop_find_by_id(info->net, info->id); 4935 if (!nh) 4936 return NOTIFY_DONE; 4937 4938 vxlan_fdb_nh_flush(nh); 4939 4940 return NOTIFY_DONE; 4941 } 4942 4943 static __net_init int vxlan_init_net(struct net *net) 4944 { 4945 struct vxlan_net *vn = net_generic(net, vxlan_net_id); 4946 unsigned int h; 4947 4948 INIT_LIST_HEAD(&vn->vxlan_list); 4949 spin_lock_init(&vn->sock_lock); 4950 vn->nexthop_notifier_block.notifier_call = vxlan_nexthop_event; 4951 4952 for (h = 0; h < PORT_HASH_SIZE; ++h) 4953 INIT_HLIST_HEAD(&vn->sock_list[h]); 4954 4955 return register_nexthop_notifier(net, &vn->nexthop_notifier_block, 4956 NULL); 4957 } 4958 4959 static void __net_exit vxlan_destroy_tunnels(struct vxlan_net *vn, 4960 struct list_head *dev_to_kill) 4961 { 4962 struct vxlan_dev *vxlan, *next; 4963 4964 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) 4965 vxlan_dellink(vxlan->dev, dev_to_kill); 4966 } 4967 4968 static void __net_exit vxlan_exit_batch_rtnl(struct list_head *net_list, 4969 struct list_head *dev_to_kill) 4970 { 4971 struct net *net; 4972 4973 ASSERT_RTNL(); 4974 list_for_each_entry(net, net_list, exit_list) { 4975 struct vxlan_net *vn = net_generic(net, vxlan_net_id); 4976 4977 __unregister_nexthop_notifier(net, &vn->nexthop_notifier_block); 4978 4979 vxlan_destroy_tunnels(vn, dev_to_kill); 4980 } 4981 } 4982 4983 static void __net_exit vxlan_exit_net(struct net *net) 4984 { 4985 struct vxlan_net *vn = net_generic(net, vxlan_net_id); 4986 unsigned int h; 4987 4988 for (h = 0; h < PORT_HASH_SIZE; ++h) 4989 WARN_ON_ONCE(!hlist_empty(&vn->sock_list[h])); 4990 } 4991 4992 static struct pernet_operations vxlan_net_ops = { 4993 .init = vxlan_init_net, 4994 .exit_batch_rtnl = vxlan_exit_batch_rtnl, 4995 .exit = vxlan_exit_net, 4996 .id = &vxlan_net_id, 4997 .size = sizeof(struct vxlan_net), 4998 }; 4999 5000 static int __init vxlan_init_module(void) 5001 { 5002 int rc; 5003 5004 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt)); 5005 5006 rc = register_pernet_subsys(&vxlan_net_ops); 5007 if (rc) 5008 goto out1; 5009 5010 rc = register_netdevice_notifier(&vxlan_notifier_block); 5011 if (rc) 5012 goto out2; 5013 5014 rc = register_switchdev_notifier(&vxlan_switchdev_notifier_block); 5015 if (rc) 5016 goto out3; 5017 5018 rc = rtnl_link_register(&vxlan_link_ops); 5019 if (rc) 5020 goto out4; 5021 5022 rc = vxlan_vnifilter_init(); 5023 if (rc) 5024 goto out5; 5025 5026 return 0; 5027 out5: 5028 rtnl_link_unregister(&vxlan_link_ops); 5029 out4: 5030 unregister_switchdev_notifier(&vxlan_switchdev_notifier_block); 5031 out3: 5032 unregister_netdevice_notifier(&vxlan_notifier_block); 5033 out2: 5034 unregister_pernet_subsys(&vxlan_net_ops); 5035 out1: 5036 return rc; 5037 } 5038 late_initcall(vxlan_init_module); 5039 5040 static void __exit vxlan_cleanup_module(void) 5041 { 5042 vxlan_vnifilter_uninit(); 5043 rtnl_link_unregister(&vxlan_link_ops); 5044 unregister_switchdev_notifier(&vxlan_switchdev_notifier_block); 5045 unregister_netdevice_notifier(&vxlan_notifier_block); 5046 unregister_pernet_subsys(&vxlan_net_ops); 5047 /* rcu_barrier() is called by netns */ 5048 } 5049 module_exit(vxlan_cleanup_module); 5050 5051 MODULE_LICENSE("GPL"); 5052 MODULE_VERSION(VXLAN_VERSION); 5053 MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>"); 5054 MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic"); 5055 MODULE_ALIAS_RTNL_LINK("vxlan"); 5056