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