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