1 /* $OpenBSD: if_trunk.c,v 1.30 2007/01/31 06:20:19 reyk Exp $ */ 2 3 /* 4 * Copyright (c) 2005, 2006 Reyk Floeter <reyk@openbsd.org> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19 #include <sys/cdefs.h> 20 __FBSDID("$FreeBSD$"); 21 22 #include "opt_inet.h" 23 #include "opt_inet6.h" 24 25 #include <sys/param.h> 26 #include <sys/kernel.h> 27 #include <sys/malloc.h> 28 #include <sys/mbuf.h> 29 #include <sys/queue.h> 30 #include <sys/socket.h> 31 #include <sys/sockio.h> 32 #include <sys/sysctl.h> 33 #include <sys/module.h> 34 #include <sys/priv.h> 35 #include <sys/systm.h> 36 #include <sys/proc.h> 37 #include <sys/hash.h> 38 #include <sys/lock.h> 39 #include <sys/rwlock.h> 40 #include <sys/taskqueue.h> 41 42 #include <net/ethernet.h> 43 #include <net/if.h> 44 #include <net/if_clone.h> 45 #include <net/if_arp.h> 46 #include <net/if_dl.h> 47 #include <net/if_llc.h> 48 #include <net/if_media.h> 49 #include <net/if_types.h> 50 #include <net/if_var.h> 51 #include <net/bpf.h> 52 53 #ifdef INET 54 #include <netinet/in.h> 55 #include <netinet/in_systm.h> 56 #include <netinet/if_ether.h> 57 #include <netinet/ip.h> 58 #endif 59 60 #ifdef INET6 61 #include <netinet/ip6.h> 62 #endif 63 64 #include <net/if_vlan_var.h> 65 #include <net/if_lagg.h> 66 #include <net/ieee8023ad_lacp.h> 67 68 /* Special flags we should propagate to the lagg ports. */ 69 static struct { 70 int flag; 71 int (*func)(struct ifnet *, int); 72 } lagg_pflags[] = { 73 {IFF_PROMISC, ifpromisc}, 74 {IFF_ALLMULTI, if_allmulti}, 75 {0, NULL} 76 }; 77 78 SLIST_HEAD(__trhead, lagg_softc) lagg_list; /* list of laggs */ 79 static struct mtx lagg_list_mtx; 80 eventhandler_tag lagg_detach_cookie = NULL; 81 82 static int lagg_clone_create(struct if_clone *, int, caddr_t); 83 static void lagg_clone_destroy(struct ifnet *); 84 static void lagg_lladdr(struct lagg_softc *, uint8_t *); 85 static void lagg_capabilities(struct lagg_softc *); 86 static void lagg_port_lladdr(struct lagg_port *, uint8_t *); 87 static void lagg_port_setlladdr(void *, int); 88 static int lagg_port_create(struct lagg_softc *, struct ifnet *); 89 static int lagg_port_destroy(struct lagg_port *, int); 90 static struct mbuf *lagg_input(struct ifnet *, struct mbuf *); 91 static void lagg_port_state(struct ifnet *, int); 92 static int lagg_port_ioctl(struct ifnet *, u_long, caddr_t); 93 static int lagg_port_output(struct ifnet *, struct mbuf *, 94 struct sockaddr *, struct rtentry *); 95 static void lagg_port_ifdetach(void *arg __unused, struct ifnet *); 96 static int lagg_port_checkstacking(struct lagg_softc *); 97 static void lagg_port2req(struct lagg_port *, struct lagg_reqport *); 98 static void lagg_init(void *); 99 static void lagg_stop(struct lagg_softc *); 100 static int lagg_ioctl(struct ifnet *, u_long, caddr_t); 101 static int lagg_ether_setmulti(struct lagg_softc *); 102 static int lagg_ether_cmdmulti(struct lagg_port *, int); 103 static int lagg_setflag(struct lagg_port *, int, int, 104 int (*func)(struct ifnet *, int)); 105 static int lagg_setflags(struct lagg_port *, int status); 106 static void lagg_start(struct ifnet *); 107 static int lagg_media_change(struct ifnet *); 108 static void lagg_media_status(struct ifnet *, struct ifmediareq *); 109 static struct lagg_port *lagg_link_active(struct lagg_softc *, 110 struct lagg_port *); 111 static const void *lagg_gethdr(struct mbuf *, u_int, u_int, void *); 112 113 IFC_SIMPLE_DECLARE(lagg, 0); 114 115 /* Simple round robin */ 116 static int lagg_rr_attach(struct lagg_softc *); 117 static int lagg_rr_detach(struct lagg_softc *); 118 static void lagg_rr_port_destroy(struct lagg_port *); 119 static int lagg_rr_start(struct lagg_softc *, struct mbuf *); 120 static struct mbuf *lagg_rr_input(struct lagg_softc *, struct lagg_port *, 121 struct mbuf *); 122 123 /* Active failover */ 124 static int lagg_fail_attach(struct lagg_softc *); 125 static int lagg_fail_detach(struct lagg_softc *); 126 static int lagg_fail_start(struct lagg_softc *, struct mbuf *); 127 static struct mbuf *lagg_fail_input(struct lagg_softc *, struct lagg_port *, 128 struct mbuf *); 129 130 /* Loadbalancing */ 131 static int lagg_lb_attach(struct lagg_softc *); 132 static int lagg_lb_detach(struct lagg_softc *); 133 static int lagg_lb_port_create(struct lagg_port *); 134 static void lagg_lb_port_destroy(struct lagg_port *); 135 static int lagg_lb_start(struct lagg_softc *, struct mbuf *); 136 static struct mbuf *lagg_lb_input(struct lagg_softc *, struct lagg_port *, 137 struct mbuf *); 138 static int lagg_lb_porttable(struct lagg_softc *, struct lagg_port *); 139 140 /* 802.3ad LACP */ 141 static int lagg_lacp_attach(struct lagg_softc *); 142 static int lagg_lacp_detach(struct lagg_softc *); 143 static int lagg_lacp_start(struct lagg_softc *, struct mbuf *); 144 static struct mbuf *lagg_lacp_input(struct lagg_softc *, struct lagg_port *, 145 struct mbuf *); 146 static void lagg_lacp_lladdr(struct lagg_softc *); 147 148 /* lagg protocol table */ 149 static const struct { 150 int ti_proto; 151 int (*ti_attach)(struct lagg_softc *); 152 } lagg_protos[] = { 153 { LAGG_PROTO_ROUNDROBIN, lagg_rr_attach }, 154 { LAGG_PROTO_FAILOVER, lagg_fail_attach }, 155 { LAGG_PROTO_LOADBALANCE, lagg_lb_attach }, 156 { LAGG_PROTO_ETHERCHANNEL, lagg_lb_attach }, 157 { LAGG_PROTO_LACP, lagg_lacp_attach }, 158 { LAGG_PROTO_NONE, NULL } 159 }; 160 161 static int 162 lagg_modevent(module_t mod, int type, void *data) 163 { 164 165 switch (type) { 166 case MOD_LOAD: 167 mtx_init(&lagg_list_mtx, "if_lagg list", NULL, MTX_DEF); 168 SLIST_INIT(&lagg_list); 169 if_clone_attach(&lagg_cloner); 170 lagg_input_p = lagg_input; 171 lagg_linkstate_p = lagg_port_state; 172 lagg_detach_cookie = EVENTHANDLER_REGISTER( 173 ifnet_departure_event, lagg_port_ifdetach, NULL, 174 EVENTHANDLER_PRI_ANY); 175 break; 176 case MOD_UNLOAD: 177 EVENTHANDLER_DEREGISTER(ifnet_departure_event, 178 lagg_detach_cookie); 179 if_clone_detach(&lagg_cloner); 180 lagg_input_p = NULL; 181 lagg_linkstate_p = NULL; 182 mtx_destroy(&lagg_list_mtx); 183 break; 184 default: 185 return (EOPNOTSUPP); 186 } 187 return (0); 188 } 189 190 static moduledata_t lagg_mod = { 191 "if_lagg", 192 lagg_modevent, 193 0 194 }; 195 196 DECLARE_MODULE(if_lagg, lagg_mod, SI_SUB_PSEUDO, SI_ORDER_ANY); 197 198 static int 199 lagg_clone_create(struct if_clone *ifc, int unit, caddr_t params) 200 { 201 struct lagg_softc *sc; 202 struct ifnet *ifp; 203 int i, error = 0; 204 static const u_char eaddr[6]; /* 00:00:00:00:00:00 */ 205 206 sc = malloc(sizeof(*sc), M_DEVBUF, M_WAITOK|M_ZERO); 207 ifp = sc->sc_ifp = if_alloc(IFT_ETHER); 208 if (ifp == NULL) { 209 free(sc, M_DEVBUF); 210 return (ENOSPC); 211 } 212 213 sc->sc_proto = LAGG_PROTO_NONE; 214 for (i = 0; lagg_protos[i].ti_proto != LAGG_PROTO_NONE; i++) { 215 if (lagg_protos[i].ti_proto == LAGG_PROTO_DEFAULT) { 216 sc->sc_proto = lagg_protos[i].ti_proto; 217 if ((error = lagg_protos[i].ti_attach(sc)) != 0) { 218 if_free_type(ifp, IFT_ETHER); 219 free(sc, M_DEVBUF); 220 return (error); 221 } 222 break; 223 } 224 } 225 LAGG_LOCK_INIT(sc); 226 SLIST_INIT(&sc->sc_ports); 227 TASK_INIT(&sc->sc_lladdr_task, 0, lagg_port_setlladdr, sc); 228 229 /* Initialise pseudo media types */ 230 ifmedia_init(&sc->sc_media, 0, lagg_media_change, 231 lagg_media_status); 232 ifmedia_add(&sc->sc_media, IFM_ETHER | IFM_AUTO, 0, NULL); 233 ifmedia_set(&sc->sc_media, IFM_ETHER | IFM_AUTO); 234 235 if_initname(ifp, ifc->ifc_name, unit); 236 ifp->if_type = IFT_ETHER; 237 ifp->if_softc = sc; 238 ifp->if_start = lagg_start; 239 ifp->if_init = lagg_init; 240 ifp->if_ioctl = lagg_ioctl; 241 ifp->if_flags = IFF_SIMPLEX | IFF_BROADCAST | IFF_MULTICAST; 242 243 IFQ_SET_MAXLEN(&ifp->if_snd, ifqmaxlen); 244 ifp->if_snd.ifq_drv_maxlen = ifqmaxlen; 245 IFQ_SET_READY(&ifp->if_snd); 246 247 /* 248 * Attach as an ordinary ethernet device, childs will be attached 249 * as special device IFT_IEEE8023ADLAG. 250 */ 251 ether_ifattach(ifp, eaddr); 252 253 /* Insert into the global list of laggs */ 254 mtx_lock(&lagg_list_mtx); 255 SLIST_INSERT_HEAD(&lagg_list, sc, sc_entries); 256 mtx_unlock(&lagg_list_mtx); 257 258 return (0); 259 } 260 261 static void 262 lagg_clone_destroy(struct ifnet *ifp) 263 { 264 struct lagg_softc *sc = (struct lagg_softc *)ifp->if_softc; 265 struct lagg_port *lp; 266 267 LAGG_WLOCK(sc); 268 269 lagg_stop(sc); 270 ifp->if_flags &= ~IFF_UP; 271 272 /* Shutdown and remove lagg ports */ 273 while ((lp = SLIST_FIRST(&sc->sc_ports)) != NULL) 274 lagg_port_destroy(lp, 1); 275 /* Unhook the aggregation protocol */ 276 if (sc->sc_detach != NULL) 277 (*sc->sc_detach)(sc); 278 279 LAGG_WUNLOCK(sc); 280 281 ifmedia_removeall(&sc->sc_media); 282 ether_ifdetach(ifp); 283 if_free_type(ifp, IFT_ETHER); 284 285 mtx_lock(&lagg_list_mtx); 286 SLIST_REMOVE(&lagg_list, sc, lagg_softc, sc_entries); 287 mtx_unlock(&lagg_list_mtx); 288 289 taskqueue_drain(taskqueue_swi, &sc->sc_lladdr_task); 290 LAGG_LOCK_DESTROY(sc); 291 free(sc, M_DEVBUF); 292 } 293 294 static void 295 lagg_lladdr(struct lagg_softc *sc, uint8_t *lladdr) 296 { 297 struct ifnet *ifp = sc->sc_ifp; 298 299 if (memcmp(lladdr, IF_LLADDR(ifp), ETHER_ADDR_LEN) == 0) 300 return; 301 302 bcopy(lladdr, IF_LLADDR(ifp), ETHER_ADDR_LEN); 303 /* Let the protocol know the MAC has changed */ 304 if (sc->sc_lladdr != NULL) 305 (*sc->sc_lladdr)(sc); 306 } 307 308 static void 309 lagg_capabilities(struct lagg_softc *sc) 310 { 311 struct lagg_port *lp; 312 int cap = ~0, ena = ~0; 313 314 LAGG_WLOCK_ASSERT(sc); 315 316 /* Get capabilities from the lagg ports */ 317 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 318 cap &= lp->lp_ifp->if_capabilities; 319 ena &= lp->lp_ifp->if_capenable; 320 } 321 cap = (cap == ~0 ? 0 : cap); 322 ena = (ena == ~0 ? 0 : ena); 323 324 if (sc->sc_ifp->if_capabilities != cap || 325 sc->sc_ifp->if_capenable != ena) { 326 sc->sc_ifp->if_capabilities = cap; 327 sc->sc_ifp->if_capenable = ena; 328 getmicrotime(&sc->sc_ifp->if_lastchange); 329 330 if (sc->sc_ifflags & IFF_DEBUG) 331 if_printf(sc->sc_ifp, 332 "capabilities 0x%08x enabled 0x%08x\n", cap, ena); 333 } 334 } 335 336 static void 337 lagg_port_lladdr(struct lagg_port *lp, uint8_t *lladdr) 338 { 339 struct lagg_softc *sc = lp->lp_softc; 340 struct ifnet *ifp = lp->lp_ifp; 341 struct lagg_llq *llq; 342 int pending = 0; 343 344 LAGG_WLOCK_ASSERT(sc); 345 346 if (lp->lp_detaching || 347 memcmp(lladdr, IF_LLADDR(ifp), ETHER_ADDR_LEN) == 0) 348 return; 349 350 /* Check to make sure its not already queued to be changed */ 351 SLIST_FOREACH(llq, &sc->sc_llq_head, llq_entries) { 352 if (llq->llq_ifp == ifp) { 353 pending = 1; 354 break; 355 } 356 } 357 358 if (!pending) { 359 llq = malloc(sizeof(struct lagg_llq), M_DEVBUF, M_NOWAIT); 360 if (llq == NULL) /* XXX what to do */ 361 return; 362 } 363 364 /* Update the lladdr even if pending, it may have changed */ 365 llq->llq_ifp = ifp; 366 bcopy(lladdr, llq->llq_lladdr, ETHER_ADDR_LEN); 367 368 if (!pending) 369 SLIST_INSERT_HEAD(&sc->sc_llq_head, llq, llq_entries); 370 371 taskqueue_enqueue(taskqueue_swi, &sc->sc_lladdr_task); 372 } 373 374 /* 375 * Set the interface MAC address from a taskqueue to avoid a LOR. 376 */ 377 static void 378 lagg_port_setlladdr(void *arg, int pending) 379 { 380 struct lagg_softc *sc = (struct lagg_softc *)arg; 381 struct lagg_llq *llq, *head; 382 struct ifnet *ifp; 383 int error; 384 385 /* Grab a local reference of the queue and remove it from the softc */ 386 LAGG_WLOCK(sc); 387 head = SLIST_FIRST(&sc->sc_llq_head); 388 SLIST_FIRST(&sc->sc_llq_head) = NULL; 389 LAGG_WUNLOCK(sc); 390 391 /* 392 * Traverse the queue and set the lladdr on each ifp. It is safe to do 393 * unlocked as we have the only reference to it. 394 */ 395 for (llq = head; llq != NULL; llq = head) { 396 ifp = llq->llq_ifp; 397 398 /* Set the link layer address */ 399 error = if_setlladdr(ifp, llq->llq_lladdr, ETHER_ADDR_LEN); 400 if (error) 401 printf("%s: setlladdr failed on %s\n", __func__, 402 ifp->if_xname); 403 404 head = SLIST_NEXT(llq, llq_entries); 405 free(llq, M_DEVBUF); 406 } 407 } 408 409 static int 410 lagg_port_create(struct lagg_softc *sc, struct ifnet *ifp) 411 { 412 struct lagg_softc *sc_ptr; 413 struct lagg_port *lp; 414 int error = 0; 415 416 LAGG_WLOCK_ASSERT(sc); 417 418 /* Limit the maximal number of lagg ports */ 419 if (sc->sc_count >= LAGG_MAX_PORTS) 420 return (ENOSPC); 421 422 /* New lagg port has to be in an idle state */ 423 if (ifp->if_drv_flags & IFF_DRV_OACTIVE) 424 return (EBUSY); 425 426 /* Check if port has already been associated to a lagg */ 427 if (ifp->if_lagg != NULL) 428 return (EBUSY); 429 430 /* XXX Disallow non-ethernet interfaces (this should be any of 802) */ 431 if (ifp->if_type != IFT_ETHER) 432 return (EPROTONOSUPPORT); 433 434 /* Allow the first Ethernet member to define the MTU */ 435 if (SLIST_EMPTY(&sc->sc_ports)) 436 sc->sc_ifp->if_mtu = ifp->if_mtu; 437 else if (sc->sc_ifp->if_mtu != ifp->if_mtu) { 438 if_printf(sc->sc_ifp, "invalid MTU for %s\n", 439 ifp->if_xname); 440 return (EINVAL); 441 } 442 443 if ((lp = malloc(sizeof(struct lagg_port), 444 M_DEVBUF, M_NOWAIT|M_ZERO)) == NULL) 445 return (ENOMEM); 446 447 /* Check if port is a stacked lagg */ 448 mtx_lock(&lagg_list_mtx); 449 SLIST_FOREACH(sc_ptr, &lagg_list, sc_entries) { 450 if (ifp == sc_ptr->sc_ifp) { 451 mtx_unlock(&lagg_list_mtx); 452 free(lp, M_DEVBUF); 453 return (EINVAL); 454 /* XXX disable stacking for the moment, its untested 455 lp->lp_flags |= LAGG_PORT_STACK; 456 if (lagg_port_checkstacking(sc_ptr) >= 457 LAGG_MAX_STACKING) { 458 mtx_unlock(&lagg_list_mtx); 459 free(lp, M_DEVBUF); 460 return (E2BIG); 461 } 462 */ 463 } 464 } 465 mtx_unlock(&lagg_list_mtx); 466 467 /* Change the interface type */ 468 lp->lp_iftype = ifp->if_type; 469 ifp->if_type = IFT_IEEE8023ADLAG; 470 ifp->if_lagg = lp; 471 lp->lp_ioctl = ifp->if_ioctl; 472 ifp->if_ioctl = lagg_port_ioctl; 473 lp->lp_output = ifp->if_output; 474 ifp->if_output = lagg_port_output; 475 476 lp->lp_ifp = ifp; 477 lp->lp_softc = sc; 478 479 /* Save port link layer address */ 480 bcopy(IF_LLADDR(ifp), lp->lp_lladdr, ETHER_ADDR_LEN); 481 482 if (SLIST_EMPTY(&sc->sc_ports)) { 483 sc->sc_primary = lp; 484 lagg_lladdr(sc, IF_LLADDR(ifp)); 485 } else { 486 /* Update link layer address for this port */ 487 lagg_port_lladdr(lp, IF_LLADDR(sc->sc_ifp)); 488 } 489 490 /* Insert into the list of ports */ 491 SLIST_INSERT_HEAD(&sc->sc_ports, lp, lp_entries); 492 sc->sc_count++; 493 494 /* Update lagg capabilities */ 495 lagg_capabilities(sc); 496 497 /* Add multicast addresses and interface flags to this port */ 498 lagg_ether_cmdmulti(lp, 1); 499 lagg_setflags(lp, 1); 500 501 if (sc->sc_port_create != NULL) 502 error = (*sc->sc_port_create)(lp); 503 if (error) { 504 /* remove the port again, without calling sc_port_destroy */ 505 lagg_port_destroy(lp, 0); 506 return (error); 507 } 508 509 return (error); 510 } 511 512 static int 513 lagg_port_checkstacking(struct lagg_softc *sc) 514 { 515 struct lagg_softc *sc_ptr; 516 struct lagg_port *lp; 517 int m = 0; 518 519 LAGG_WLOCK_ASSERT(sc); 520 521 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 522 if (lp->lp_flags & LAGG_PORT_STACK) { 523 sc_ptr = (struct lagg_softc *)lp->lp_ifp->if_softc; 524 m = MAX(m, lagg_port_checkstacking(sc_ptr)); 525 } 526 } 527 528 return (m + 1); 529 } 530 531 static int 532 lagg_port_destroy(struct lagg_port *lp, int runpd) 533 { 534 struct lagg_softc *sc = lp->lp_softc; 535 struct lagg_port *lp_ptr; 536 struct lagg_llq *llq; 537 struct ifnet *ifp = lp->lp_ifp; 538 539 LAGG_WLOCK_ASSERT(sc); 540 541 if (runpd && sc->sc_port_destroy != NULL) 542 (*sc->sc_port_destroy)(lp); 543 544 /* 545 * Remove multicast addresses and interface flags from this port and 546 * reset the MAC address, skip if the interface is being detached. 547 */ 548 if (!lp->lp_detaching) { 549 lagg_ether_cmdmulti(lp, 0); 550 lagg_setflags(lp, 0); 551 lagg_port_lladdr(lp, lp->lp_lladdr); 552 } 553 554 /* Restore interface */ 555 ifp->if_type = lp->lp_iftype; 556 ifp->if_ioctl = lp->lp_ioctl; 557 ifp->if_output = lp->lp_output; 558 ifp->if_lagg = NULL; 559 560 /* Finally, remove the port from the lagg */ 561 SLIST_REMOVE(&sc->sc_ports, lp, lagg_port, lp_entries); 562 sc->sc_count--; 563 564 /* Update the primary interface */ 565 if (lp == sc->sc_primary) { 566 uint8_t lladdr[ETHER_ADDR_LEN]; 567 568 if ((lp_ptr = SLIST_FIRST(&sc->sc_ports)) == NULL) { 569 bzero(&lladdr, ETHER_ADDR_LEN); 570 } else { 571 bcopy(lp_ptr->lp_lladdr, 572 lladdr, ETHER_ADDR_LEN); 573 } 574 lagg_lladdr(sc, lladdr); 575 sc->sc_primary = lp_ptr; 576 577 /* Update link layer address for each port */ 578 SLIST_FOREACH(lp_ptr, &sc->sc_ports, lp_entries) 579 lagg_port_lladdr(lp_ptr, lladdr); 580 } 581 582 /* Remove any pending lladdr changes from the queue */ 583 if (lp->lp_detaching) { 584 SLIST_FOREACH(llq, &sc->sc_llq_head, llq_entries) { 585 if (llq->llq_ifp == ifp) { 586 SLIST_REMOVE(&sc->sc_llq_head, llq, lagg_llq, 587 llq_entries); 588 free(llq, M_DEVBUF); 589 break; /* Only appears once */ 590 } 591 } 592 } 593 594 if (lp->lp_ifflags) 595 if_printf(ifp, "%s: lp_ifflags unclean\n", __func__); 596 597 free(lp, M_DEVBUF); 598 599 /* Update lagg capabilities */ 600 lagg_capabilities(sc); 601 602 return (0); 603 } 604 605 static int 606 lagg_port_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) 607 { 608 struct lagg_reqport *rp = (struct lagg_reqport *)data; 609 struct lagg_softc *sc; 610 struct lagg_port *lp = NULL; 611 int error = 0; 612 613 /* Should be checked by the caller */ 614 if (ifp->if_type != IFT_IEEE8023ADLAG || 615 (lp = ifp->if_lagg) == NULL || (sc = lp->lp_softc) == NULL) 616 goto fallback; 617 618 switch (cmd) { 619 case SIOCGLAGGPORT: 620 if (rp->rp_portname[0] == '\0' || 621 ifunit(rp->rp_portname) != ifp) { 622 error = EINVAL; 623 break; 624 } 625 626 LAGG_RLOCK(sc); 627 if ((lp = ifp->if_lagg) == NULL || lp->lp_softc != sc) { 628 error = ENOENT; 629 LAGG_RUNLOCK(sc); 630 break; 631 } 632 633 lagg_port2req(lp, rp); 634 LAGG_RUNLOCK(sc); 635 break; 636 637 case SIOCSIFCAP: 638 if (lp->lp_ioctl == NULL) { 639 error = EINVAL; 640 break; 641 } 642 error = (*lp->lp_ioctl)(ifp, cmd, data); 643 if (error) 644 break; 645 646 /* Update lagg interface capabilities */ 647 LAGG_WLOCK(sc); 648 lagg_capabilities(sc); 649 LAGG_WUNLOCK(sc); 650 break; 651 652 case SIOCSIFMTU: 653 /* Do not allow the MTU to be changed once joined */ 654 error = EINVAL; 655 break; 656 657 default: 658 goto fallback; 659 } 660 661 return (error); 662 663 fallback: 664 if (lp->lp_ioctl != NULL) 665 return ((*lp->lp_ioctl)(ifp, cmd, data)); 666 667 return (EINVAL); 668 } 669 670 static int 671 lagg_port_output(struct ifnet *ifp, struct mbuf *m, 672 struct sockaddr *dst, struct rtentry *rt0) 673 { 674 struct lagg_port *lp = ifp->if_lagg; 675 struct ether_header *eh; 676 short type = 0; 677 678 switch (dst->sa_family) { 679 case pseudo_AF_HDRCMPLT: 680 case AF_UNSPEC: 681 eh = (struct ether_header *)dst->sa_data; 682 type = eh->ether_type; 683 break; 684 } 685 686 /* 687 * Only allow ethernet types required to initiate or maintain the link, 688 * aggregated frames take a different path. 689 */ 690 switch (ntohs(type)) { 691 case ETHERTYPE_PAE: /* EAPOL PAE/802.1x */ 692 return ((*lp->lp_output)(ifp, m, dst, rt0)); 693 } 694 695 /* drop any other frames */ 696 m_freem(m); 697 return (EBUSY); 698 } 699 700 static void 701 lagg_port_ifdetach(void *arg __unused, struct ifnet *ifp) 702 { 703 struct lagg_port *lp; 704 struct lagg_softc *sc; 705 706 if ((lp = ifp->if_lagg) == NULL) 707 return; 708 709 sc = lp->lp_softc; 710 711 LAGG_WLOCK(sc); 712 lp->lp_detaching = 1; 713 lagg_port_destroy(lp, 1); 714 LAGG_WUNLOCK(sc); 715 } 716 717 static void 718 lagg_port2req(struct lagg_port *lp, struct lagg_reqport *rp) 719 { 720 struct lagg_softc *sc = lp->lp_softc; 721 722 strlcpy(rp->rp_ifname, sc->sc_ifname, sizeof(rp->rp_ifname)); 723 strlcpy(rp->rp_portname, lp->lp_ifp->if_xname, sizeof(rp->rp_portname)); 724 rp->rp_prio = lp->lp_prio; 725 rp->rp_flags = lp->lp_flags; 726 if (sc->sc_portreq != NULL) 727 (*sc->sc_portreq)(lp, (caddr_t)&rp->rp_psc); 728 729 /* Add protocol specific flags */ 730 switch (sc->sc_proto) { 731 case LAGG_PROTO_FAILOVER: 732 if (lp == sc->sc_primary) 733 rp->rp_flags |= LAGG_PORT_MASTER; 734 if (lp == lagg_link_active(sc, sc->sc_primary)) 735 rp->rp_flags |= LAGG_PORT_ACTIVE; 736 break; 737 738 case LAGG_PROTO_ROUNDROBIN: 739 case LAGG_PROTO_LOADBALANCE: 740 case LAGG_PROTO_ETHERCHANNEL: 741 if (LAGG_PORTACTIVE(lp)) 742 rp->rp_flags |= LAGG_PORT_ACTIVE; 743 break; 744 745 case LAGG_PROTO_LACP: 746 /* LACP has a different definition of active */ 747 if (lacp_port_isactive(lp)) 748 rp->rp_flags |= LAGG_PORT_ACTIVE; 749 break; 750 } 751 752 } 753 754 static void 755 lagg_init(void *xsc) 756 { 757 struct lagg_softc *sc = (struct lagg_softc *)xsc; 758 struct lagg_port *lp; 759 struct ifnet *ifp = sc->sc_ifp; 760 761 if (ifp->if_drv_flags & IFF_DRV_RUNNING) 762 return; 763 764 LAGG_WLOCK(sc); 765 766 ifp->if_drv_flags |= IFF_DRV_RUNNING; 767 /* Update the port lladdrs */ 768 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 769 lagg_port_lladdr(lp, IF_LLADDR(ifp)); 770 771 if (sc->sc_init != NULL) 772 (*sc->sc_init)(sc); 773 774 LAGG_WUNLOCK(sc); 775 } 776 777 static void 778 lagg_stop(struct lagg_softc *sc) 779 { 780 struct ifnet *ifp = sc->sc_ifp; 781 782 LAGG_WLOCK_ASSERT(sc); 783 784 if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) 785 return; 786 787 ifp->if_drv_flags &= ~IFF_DRV_RUNNING; 788 789 if (sc->sc_stop != NULL) 790 (*sc->sc_stop)(sc); 791 } 792 793 static int 794 lagg_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) 795 { 796 struct lagg_softc *sc = (struct lagg_softc *)ifp->if_softc; 797 struct lagg_reqall *ra = (struct lagg_reqall *)data; 798 struct lagg_reqport *rp = (struct lagg_reqport *)data, rpbuf; 799 struct ifreq *ifr = (struct ifreq *)data; 800 struct lagg_port *lp; 801 struct ifnet *tpif; 802 struct thread *td = curthread; 803 char *buf, *outbuf; 804 int count, buflen, len, error = 0; 805 806 bzero(&rpbuf, sizeof(rpbuf)); 807 808 switch (cmd) { 809 case SIOCGLAGG: 810 LAGG_RLOCK(sc); 811 count = 0; 812 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 813 count++; 814 buflen = count * sizeof(struct lagg_reqport); 815 LAGG_RUNLOCK(sc); 816 817 outbuf = malloc(buflen, M_TEMP, M_WAITOK | M_ZERO); 818 819 LAGG_RLOCK(sc); 820 ra->ra_proto = sc->sc_proto; 821 if (sc->sc_req != NULL) 822 (*sc->sc_req)(sc, (caddr_t)&ra->ra_psc); 823 824 count = 0; 825 buf = outbuf; 826 len = min(ra->ra_size, buflen); 827 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 828 if (len < sizeof(rpbuf)) 829 break; 830 831 lagg_port2req(lp, &rpbuf); 832 memcpy(buf, &rpbuf, sizeof(rpbuf)); 833 count++; 834 buf += sizeof(rpbuf); 835 len -= sizeof(rpbuf); 836 } 837 LAGG_RUNLOCK(sc); 838 ra->ra_ports = count; 839 ra->ra_size = count * sizeof(rpbuf); 840 error = copyout(outbuf, ra->ra_port, ra->ra_size); 841 free(outbuf, M_TEMP); 842 break; 843 case SIOCSLAGG: 844 error = priv_check(td, PRIV_NET_LAGG); 845 if (error) 846 break; 847 if (ra->ra_proto >= LAGG_PROTO_MAX) { 848 error = EPROTONOSUPPORT; 849 break; 850 } 851 if (sc->sc_proto != LAGG_PROTO_NONE) { 852 LAGG_WLOCK(sc); 853 error = sc->sc_detach(sc); 854 /* Reset protocol and pointers */ 855 sc->sc_proto = LAGG_PROTO_NONE; 856 sc->sc_detach = NULL; 857 sc->sc_start = NULL; 858 sc->sc_input = NULL; 859 sc->sc_port_create = NULL; 860 sc->sc_port_destroy = NULL; 861 sc->sc_linkstate = NULL; 862 sc->sc_init = NULL; 863 sc->sc_stop = NULL; 864 sc->sc_lladdr = NULL; 865 sc->sc_req = NULL; 866 sc->sc_portreq = NULL; 867 LAGG_WUNLOCK(sc); 868 } 869 if (error != 0) 870 break; 871 for (int i = 0; i < (sizeof(lagg_protos) / 872 sizeof(lagg_protos[0])); i++) { 873 if (lagg_protos[i].ti_proto == ra->ra_proto) { 874 if (sc->sc_ifflags & IFF_DEBUG) 875 printf("%s: using proto %u\n", 876 sc->sc_ifname, 877 lagg_protos[i].ti_proto); 878 LAGG_WLOCK(sc); 879 sc->sc_proto = lagg_protos[i].ti_proto; 880 if (sc->sc_proto != LAGG_PROTO_NONE) 881 error = lagg_protos[i].ti_attach(sc); 882 LAGG_WUNLOCK(sc); 883 return (error); 884 } 885 } 886 error = EPROTONOSUPPORT; 887 break; 888 case SIOCGLAGGPORT: 889 if (rp->rp_portname[0] == '\0' || 890 (tpif = ifunit(rp->rp_portname)) == NULL) { 891 error = EINVAL; 892 break; 893 } 894 895 LAGG_RLOCK(sc); 896 if ((lp = (struct lagg_port *)tpif->if_lagg) == NULL || 897 lp->lp_softc != sc) { 898 error = ENOENT; 899 LAGG_RUNLOCK(sc); 900 break; 901 } 902 903 lagg_port2req(lp, rp); 904 LAGG_RUNLOCK(sc); 905 break; 906 case SIOCSLAGGPORT: 907 error = priv_check(td, PRIV_NET_LAGG); 908 if (error) 909 break; 910 if (rp->rp_portname[0] == '\0' || 911 (tpif = ifunit(rp->rp_portname)) == NULL) { 912 error = EINVAL; 913 break; 914 } 915 LAGG_WLOCK(sc); 916 error = lagg_port_create(sc, tpif); 917 LAGG_WUNLOCK(sc); 918 break; 919 case SIOCSLAGGDELPORT: 920 error = priv_check(td, PRIV_NET_LAGG); 921 if (error) 922 break; 923 if (rp->rp_portname[0] == '\0' || 924 (tpif = ifunit(rp->rp_portname)) == NULL) { 925 error = EINVAL; 926 break; 927 } 928 929 LAGG_WLOCK(sc); 930 if ((lp = (struct lagg_port *)tpif->if_lagg) == NULL || 931 lp->lp_softc != sc) { 932 error = ENOENT; 933 LAGG_WUNLOCK(sc); 934 break; 935 } 936 937 error = lagg_port_destroy(lp, 1); 938 LAGG_WUNLOCK(sc); 939 break; 940 case SIOCSIFFLAGS: 941 /* Set flags on ports too */ 942 LAGG_WLOCK(sc); 943 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 944 lagg_setflags(lp, 1); 945 } 946 LAGG_WUNLOCK(sc); 947 948 if (!(ifp->if_flags & IFF_UP) && 949 (ifp->if_drv_flags & IFF_DRV_RUNNING)) { 950 /* 951 * If interface is marked down and it is running, 952 * then stop and disable it. 953 */ 954 LAGG_WLOCK(sc); 955 lagg_stop(sc); 956 LAGG_WUNLOCK(sc); 957 } else if ((ifp->if_flags & IFF_UP) && 958 !(ifp->if_drv_flags & IFF_DRV_RUNNING)) { 959 /* 960 * If interface is marked up and it is stopped, then 961 * start it. 962 */ 963 (*ifp->if_init)(sc); 964 } 965 break; 966 case SIOCADDMULTI: 967 case SIOCDELMULTI: 968 LAGG_WLOCK(sc); 969 error = lagg_ether_setmulti(sc); 970 LAGG_WUNLOCK(sc); 971 break; 972 case SIOCSIFMEDIA: 973 case SIOCGIFMEDIA: 974 error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd); 975 break; 976 977 case SIOCSIFCAP: 978 case SIOCSIFMTU: 979 /* Do not allow the MTU or caps to be directly changed */ 980 error = EINVAL; 981 break; 982 983 default: 984 error = ether_ioctl(ifp, cmd, data); 985 break; 986 } 987 return (error); 988 } 989 990 static int 991 lagg_ether_setmulti(struct lagg_softc *sc) 992 { 993 struct lagg_port *lp; 994 995 LAGG_WLOCK_ASSERT(sc); 996 997 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 998 /* First, remove any existing filter entries. */ 999 lagg_ether_cmdmulti(lp, 0); 1000 /* copy all addresses from the lagg interface to the port */ 1001 lagg_ether_cmdmulti(lp, 1); 1002 } 1003 return (0); 1004 } 1005 1006 static int 1007 lagg_ether_cmdmulti(struct lagg_port *lp, int set) 1008 { 1009 struct lagg_softc *sc = lp->lp_softc; 1010 struct ifnet *ifp = lp->lp_ifp; 1011 struct ifnet *scifp = sc->sc_ifp; 1012 struct lagg_mc *mc; 1013 struct ifmultiaddr *ifma, *rifma = NULL; 1014 struct sockaddr_dl sdl; 1015 int error; 1016 1017 LAGG_WLOCK_ASSERT(sc); 1018 1019 bzero((char *)&sdl, sizeof(sdl)); 1020 sdl.sdl_len = sizeof(sdl); 1021 sdl.sdl_family = AF_LINK; 1022 sdl.sdl_type = IFT_ETHER; 1023 sdl.sdl_alen = ETHER_ADDR_LEN; 1024 sdl.sdl_index = ifp->if_index; 1025 1026 if (set) { 1027 TAILQ_FOREACH(ifma, &scifp->if_multiaddrs, ifma_link) { 1028 if (ifma->ifma_addr->sa_family != AF_LINK) 1029 continue; 1030 bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr), 1031 LLADDR(&sdl), ETHER_ADDR_LEN); 1032 1033 error = if_addmulti(ifp, (struct sockaddr *)&sdl, &rifma); 1034 if (error) 1035 return (error); 1036 mc = malloc(sizeof(struct lagg_mc), M_DEVBUF, M_NOWAIT); 1037 if (mc == NULL) 1038 return (ENOMEM); 1039 mc->mc_ifma = rifma; 1040 SLIST_INSERT_HEAD(&lp->lp_mc_head, mc, mc_entries); 1041 } 1042 } else { 1043 while ((mc = SLIST_FIRST(&lp->lp_mc_head)) != NULL) { 1044 SLIST_REMOVE(&lp->lp_mc_head, mc, lagg_mc, mc_entries); 1045 if_delmulti_ifma(mc->mc_ifma); 1046 free(mc, M_DEVBUF); 1047 } 1048 } 1049 return (0); 1050 } 1051 1052 /* Handle a ref counted flag that should be set on the lagg port as well */ 1053 static int 1054 lagg_setflag(struct lagg_port *lp, int flag, int status, 1055 int (*func)(struct ifnet *, int)) 1056 { 1057 struct lagg_softc *sc = lp->lp_softc; 1058 struct ifnet *scifp = sc->sc_ifp; 1059 struct ifnet *ifp = lp->lp_ifp; 1060 int error; 1061 1062 LAGG_WLOCK_ASSERT(sc); 1063 1064 status = status ? (scifp->if_flags & flag) : 0; 1065 /* Now "status" contains the flag value or 0 */ 1066 1067 /* 1068 * See if recorded ports status is different from what 1069 * we want it to be. If it is, flip it. We record ports 1070 * status in lp_ifflags so that we won't clear ports flag 1071 * we haven't set. In fact, we don't clear or set ports 1072 * flags directly, but get or release references to them. 1073 * That's why we can be sure that recorded flags still are 1074 * in accord with actual ports flags. 1075 */ 1076 if (status != (lp->lp_ifflags & flag)) { 1077 error = (*func)(ifp, status); 1078 if (error) 1079 return (error); 1080 lp->lp_ifflags &= ~flag; 1081 lp->lp_ifflags |= status; 1082 } 1083 return (0); 1084 } 1085 1086 /* 1087 * Handle IFF_* flags that require certain changes on the lagg port 1088 * if "status" is true, update ports flags respective to the lagg 1089 * if "status" is false, forcedly clear the flags set on port. 1090 */ 1091 static int 1092 lagg_setflags(struct lagg_port *lp, int status) 1093 { 1094 int error, i; 1095 1096 for (i = 0; lagg_pflags[i].flag; i++) { 1097 error = lagg_setflag(lp, lagg_pflags[i].flag, 1098 status, lagg_pflags[i].func); 1099 if (error) 1100 return (error); 1101 } 1102 return (0); 1103 } 1104 1105 static void 1106 lagg_start(struct ifnet *ifp) 1107 { 1108 struct lagg_softc *sc = (struct lagg_softc *)ifp->if_softc; 1109 struct mbuf *m; 1110 int error = 0; 1111 1112 LAGG_RLOCK(sc); 1113 for (;; error = 0) { 1114 IFQ_DEQUEUE(&ifp->if_snd, m); 1115 if (m == NULL) 1116 break; 1117 1118 BPF_MTAP(ifp, m); 1119 1120 if (sc->sc_proto != LAGG_PROTO_NONE) 1121 error = (*sc->sc_start)(sc, m); 1122 else 1123 m_freem(m); 1124 1125 if (error == 0) 1126 ifp->if_opackets++; 1127 else { 1128 m_freem(m); /* sc_start failed */ 1129 ifp->if_oerrors++; 1130 } 1131 } 1132 LAGG_RUNLOCK(sc); 1133 1134 return; 1135 } 1136 1137 static struct mbuf * 1138 lagg_input(struct ifnet *ifp, struct mbuf *m) 1139 { 1140 struct lagg_port *lp = ifp->if_lagg; 1141 struct lagg_softc *sc = lp->lp_softc; 1142 struct ifnet *scifp = sc->sc_ifp; 1143 1144 if ((scifp->if_drv_flags & IFF_DRV_RUNNING) == 0 || 1145 (lp->lp_flags & LAGG_PORT_DISABLED) || 1146 sc->sc_proto == LAGG_PROTO_NONE) { 1147 m_freem(m); 1148 return (NULL); 1149 } 1150 1151 LAGG_RLOCK(sc); 1152 BPF_MTAP(scifp, m); 1153 1154 m = (*sc->sc_input)(sc, lp, m); 1155 1156 if (m != NULL) { 1157 scifp->if_ipackets++; 1158 scifp->if_ibytes += m->m_pkthdr.len; 1159 } 1160 1161 LAGG_RUNLOCK(sc); 1162 return (m); 1163 } 1164 1165 static int 1166 lagg_media_change(struct ifnet *ifp) 1167 { 1168 struct lagg_softc *sc = (struct lagg_softc *)ifp->if_softc; 1169 1170 if (sc->sc_ifflags & IFF_DEBUG) 1171 printf("%s\n", __func__); 1172 1173 /* Ignore */ 1174 return (0); 1175 } 1176 1177 static void 1178 lagg_media_status(struct ifnet *ifp, struct ifmediareq *imr) 1179 { 1180 struct lagg_softc *sc = (struct lagg_softc *)ifp->if_softc; 1181 struct lagg_port *lp; 1182 1183 imr->ifm_status = IFM_AVALID; 1184 imr->ifm_active = IFM_ETHER | IFM_AUTO; 1185 1186 LAGG_RLOCK(sc); 1187 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 1188 if (LAGG_PORTACTIVE(lp)) 1189 imr->ifm_status |= IFM_ACTIVE; 1190 } 1191 LAGG_RUNLOCK(sc); 1192 } 1193 1194 static void 1195 lagg_port_state(struct ifnet *ifp, int state) 1196 { 1197 struct lagg_port *lp = (struct lagg_port *)ifp->if_lagg; 1198 struct lagg_softc *sc = NULL; 1199 1200 if (lp != NULL) 1201 sc = lp->lp_softc; 1202 if (sc == NULL) 1203 return; 1204 1205 LAGG_WLOCK(sc); 1206 if (sc->sc_linkstate != NULL) 1207 (*sc->sc_linkstate)(lp); 1208 LAGG_WUNLOCK(sc); 1209 } 1210 1211 struct lagg_port * 1212 lagg_link_active(struct lagg_softc *sc, struct lagg_port *lp) 1213 { 1214 struct lagg_port *lp_next, *rval = NULL; 1215 // int new_link = LINK_STATE_DOWN; 1216 1217 LAGG_RLOCK_ASSERT(sc); 1218 /* 1219 * Search a port which reports an active link state. 1220 */ 1221 1222 if (lp == NULL) 1223 goto search; 1224 if (LAGG_PORTACTIVE(lp)) { 1225 rval = lp; 1226 goto found; 1227 } 1228 if ((lp_next = SLIST_NEXT(lp, lp_entries)) != NULL && 1229 LAGG_PORTACTIVE(lp_next)) { 1230 rval = lp_next; 1231 goto found; 1232 } 1233 1234 search: 1235 SLIST_FOREACH(lp_next, &sc->sc_ports, lp_entries) { 1236 if (LAGG_PORTACTIVE(lp_next)) { 1237 rval = lp_next; 1238 goto found; 1239 } 1240 } 1241 1242 found: 1243 if (rval != NULL) { 1244 /* 1245 * The IEEE 802.1D standard assumes that a lagg with 1246 * multiple ports is always full duplex. This is valid 1247 * for load sharing laggs and if at least two links 1248 * are active. Unfortunately, checking the latter would 1249 * be too expensive at this point. 1250 XXX 1251 if ((sc->sc_capabilities & IFCAP_LAGG_FULLDUPLEX) && 1252 (sc->sc_count > 1)) 1253 new_link = LINK_STATE_FULL_DUPLEX; 1254 else 1255 new_link = rval->lp_link_state; 1256 */ 1257 } 1258 1259 return (rval); 1260 } 1261 1262 static const void * 1263 lagg_gethdr(struct mbuf *m, u_int off, u_int len, void *buf) 1264 { 1265 if (m->m_pkthdr.len < (off + len)) { 1266 return (NULL); 1267 } else if (m->m_len < (off + len)) { 1268 m_copydata(m, off, len, buf); 1269 return (buf); 1270 } 1271 return (mtod(m, char *) + off); 1272 } 1273 1274 uint32_t 1275 lagg_hashmbuf(struct mbuf *m, uint32_t key) 1276 { 1277 uint16_t etype; 1278 uint32_t p = 0; 1279 int off; 1280 struct ether_header *eh; 1281 struct ether_vlan_header vlanbuf; 1282 const struct ether_vlan_header *vlan; 1283 #ifdef INET 1284 const struct ip *ip; 1285 struct ip ipbuf; 1286 #endif 1287 #ifdef INET6 1288 const struct ip6_hdr *ip6; 1289 struct ip6_hdr ip6buf; 1290 uint32_t flow; 1291 #endif 1292 1293 off = sizeof(*eh); 1294 if (m->m_len < off) 1295 goto out; 1296 eh = mtod(m, struct ether_header *); 1297 etype = ntohs(eh->ether_type); 1298 p = hash32_buf(&eh->ether_shost, ETHER_ADDR_LEN, key); 1299 p = hash32_buf(&eh->ether_dhost, ETHER_ADDR_LEN, p); 1300 1301 /* Special handling for encapsulating VLAN frames */ 1302 if (m->m_flags & M_VLANTAG) { 1303 p = hash32_buf(&m->m_pkthdr.ether_vtag, 1304 sizeof(m->m_pkthdr.ether_vtag), p); 1305 } else if (etype == ETHERTYPE_VLAN) { 1306 vlan = lagg_gethdr(m, off, sizeof(*vlan), &vlanbuf); 1307 if (vlan == NULL) 1308 goto out; 1309 1310 p = hash32_buf(&vlan->evl_tag, sizeof(vlan->evl_tag), p); 1311 etype = ntohs(vlan->evl_proto); 1312 off += sizeof(*vlan) - sizeof(*eh); 1313 } 1314 1315 switch (etype) { 1316 #ifdef INET 1317 case ETHERTYPE_IP: 1318 ip = lagg_gethdr(m, off, sizeof(*ip), &ipbuf); 1319 if (ip == NULL) 1320 goto out; 1321 1322 p = hash32_buf(&ip->ip_src, sizeof(struct in_addr), p); 1323 p = hash32_buf(&ip->ip_dst, sizeof(struct in_addr), p); 1324 break; 1325 #endif 1326 #ifdef INET6 1327 case ETHERTYPE_IPV6: 1328 ip6 = lagg_gethdr(m, off, sizeof(*ip6), &ip6buf); 1329 if (ip6 == NULL) 1330 goto out; 1331 1332 p = hash32_buf(&ip6->ip6_src, sizeof(struct in6_addr), p); 1333 p = hash32_buf(&ip6->ip6_dst, sizeof(struct in6_addr), p); 1334 flow = ip6->ip6_flow & IPV6_FLOWLABEL_MASK; 1335 p = hash32_buf(&flow, sizeof(flow), p); /* IPv6 flow label */ 1336 break; 1337 #endif 1338 } 1339 out: 1340 return (p); 1341 } 1342 1343 int 1344 lagg_enqueue(struct ifnet *ifp, struct mbuf *m) 1345 { 1346 int error = 0; 1347 1348 IFQ_HANDOFF(ifp, m, error); 1349 return (error); 1350 } 1351 1352 /* 1353 * Simple round robin aggregation 1354 */ 1355 1356 static int 1357 lagg_rr_attach(struct lagg_softc *sc) 1358 { 1359 struct lagg_port *lp; 1360 1361 sc->sc_detach = lagg_rr_detach; 1362 sc->sc_start = lagg_rr_start; 1363 sc->sc_input = lagg_rr_input; 1364 sc->sc_port_create = NULL; 1365 sc->sc_port_destroy = lagg_rr_port_destroy; 1366 sc->sc_capabilities = IFCAP_LAGG_FULLDUPLEX; 1367 1368 lp = SLIST_FIRST(&sc->sc_ports); 1369 sc->sc_psc = (caddr_t)lp; 1370 1371 return (0); 1372 } 1373 1374 static int 1375 lagg_rr_detach(struct lagg_softc *sc) 1376 { 1377 sc->sc_psc = NULL; 1378 return (0); 1379 } 1380 1381 static void 1382 lagg_rr_port_destroy(struct lagg_port *lp) 1383 { 1384 struct lagg_softc *sc = lp->lp_softc; 1385 1386 if (lp == (struct lagg_port *)sc->sc_psc) 1387 sc->sc_psc = NULL; 1388 } 1389 1390 static int 1391 lagg_rr_start(struct lagg_softc *sc, struct mbuf *m) 1392 { 1393 struct lagg_port *lp = (struct lagg_port *)sc->sc_psc, *lp_next; 1394 int error = 0; 1395 1396 if (lp == NULL && (lp = lagg_link_active(sc, NULL)) == NULL) 1397 return (ENOENT); 1398 1399 /* Send mbuf */ 1400 error = lagg_enqueue(lp->lp_ifp, m); 1401 1402 /* Get next active port */ 1403 lp_next = lagg_link_active(sc, SLIST_NEXT(lp, lp_entries)); 1404 sc->sc_psc = (caddr_t)lp_next; 1405 1406 return (error); 1407 } 1408 1409 static struct mbuf * 1410 lagg_rr_input(struct lagg_softc *sc, struct lagg_port *lp, struct mbuf *m) 1411 { 1412 struct ifnet *ifp = sc->sc_ifp; 1413 1414 /* Just pass in the packet to our lagg device */ 1415 m->m_pkthdr.rcvif = ifp; 1416 1417 return (m); 1418 } 1419 1420 /* 1421 * Active failover 1422 */ 1423 1424 static int 1425 lagg_fail_attach(struct lagg_softc *sc) 1426 { 1427 sc->sc_detach = lagg_fail_detach; 1428 sc->sc_start = lagg_fail_start; 1429 sc->sc_input = lagg_fail_input; 1430 sc->sc_port_create = NULL; 1431 sc->sc_port_destroy = NULL; 1432 1433 return (0); 1434 } 1435 1436 static int 1437 lagg_fail_detach(struct lagg_softc *sc) 1438 { 1439 return (0); 1440 } 1441 1442 static int 1443 lagg_fail_start(struct lagg_softc *sc, struct mbuf *m) 1444 { 1445 struct lagg_port *lp; 1446 1447 /* Use the master port if active or the next available port */ 1448 if ((lp = lagg_link_active(sc, sc->sc_primary)) == NULL) 1449 return (ENOENT); 1450 1451 /* Send mbuf */ 1452 return (lagg_enqueue(lp->lp_ifp, m)); 1453 } 1454 1455 static struct mbuf * 1456 lagg_fail_input(struct lagg_softc *sc, struct lagg_port *lp, struct mbuf *m) 1457 { 1458 struct ifnet *ifp = sc->sc_ifp; 1459 struct lagg_port *tmp_tp; 1460 1461 if (lp == sc->sc_primary) { 1462 m->m_pkthdr.rcvif = ifp; 1463 return (m); 1464 } 1465 1466 if (sc->sc_primary->lp_link_state == LINK_STATE_DOWN) { 1467 tmp_tp = lagg_link_active(sc, NULL); 1468 /* 1469 * If tmp_tp is null, we've recieved a packet when all 1470 * our links are down. Weird, but process it anyways. 1471 */ 1472 if ((tmp_tp == NULL || tmp_tp == lp)) { 1473 m->m_pkthdr.rcvif = ifp; 1474 return (m); 1475 } 1476 } 1477 1478 m_freem(m); 1479 return (NULL); 1480 } 1481 1482 /* 1483 * Loadbalancing 1484 */ 1485 1486 static int 1487 lagg_lb_attach(struct lagg_softc *sc) 1488 { 1489 struct lagg_port *lp; 1490 struct lagg_lb *lb; 1491 1492 if ((lb = (struct lagg_lb *)malloc(sizeof(struct lagg_lb), 1493 M_DEVBUF, M_NOWAIT|M_ZERO)) == NULL) 1494 return (ENOMEM); 1495 1496 sc->sc_detach = lagg_lb_detach; 1497 sc->sc_start = lagg_lb_start; 1498 sc->sc_input = lagg_lb_input; 1499 sc->sc_port_create = lagg_lb_port_create; 1500 sc->sc_port_destroy = lagg_lb_port_destroy; 1501 sc->sc_capabilities = IFCAP_LAGG_FULLDUPLEX; 1502 1503 lb->lb_key = arc4random(); 1504 sc->sc_psc = (caddr_t)lb; 1505 1506 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 1507 lagg_lb_port_create(lp); 1508 1509 return (0); 1510 } 1511 1512 static int 1513 lagg_lb_detach(struct lagg_softc *sc) 1514 { 1515 struct lagg_lb *lb = (struct lagg_lb *)sc->sc_psc; 1516 if (lb != NULL) 1517 free(lb, M_DEVBUF); 1518 return (0); 1519 } 1520 1521 static int 1522 lagg_lb_porttable(struct lagg_softc *sc, struct lagg_port *lp) 1523 { 1524 struct lagg_lb *lb = (struct lagg_lb *)sc->sc_psc; 1525 struct lagg_port *lp_next; 1526 int i = 0; 1527 1528 bzero(&lb->lb_ports, sizeof(lb->lb_ports)); 1529 SLIST_FOREACH(lp_next, &sc->sc_ports, lp_entries) { 1530 if (lp_next == lp) 1531 continue; 1532 if (i >= LAGG_MAX_PORTS) 1533 return (EINVAL); 1534 if (sc->sc_ifflags & IFF_DEBUG) 1535 printf("%s: port %s at index %d\n", 1536 sc->sc_ifname, lp_next->lp_ifname, i); 1537 lb->lb_ports[i++] = lp_next; 1538 } 1539 1540 return (0); 1541 } 1542 1543 static int 1544 lagg_lb_port_create(struct lagg_port *lp) 1545 { 1546 struct lagg_softc *sc = lp->lp_softc; 1547 return (lagg_lb_porttable(sc, NULL)); 1548 } 1549 1550 static void 1551 lagg_lb_port_destroy(struct lagg_port *lp) 1552 { 1553 struct lagg_softc *sc = lp->lp_softc; 1554 lagg_lb_porttable(sc, lp); 1555 } 1556 1557 static int 1558 lagg_lb_start(struct lagg_softc *sc, struct mbuf *m) 1559 { 1560 struct lagg_lb *lb = (struct lagg_lb *)sc->sc_psc; 1561 struct lagg_port *lp = NULL; 1562 uint32_t p = 0; 1563 int idx; 1564 1565 p = lagg_hashmbuf(m, lb->lb_key); 1566 if ((idx = p % sc->sc_count) >= LAGG_MAX_PORTS) 1567 return (EINVAL); 1568 lp = lb->lb_ports[idx]; 1569 1570 /* 1571 * Check the port's link state. This will return the next active 1572 * port if the link is down or the port is NULL. 1573 */ 1574 if ((lp = lagg_link_active(sc, lp)) == NULL) 1575 return (ENOENT); 1576 1577 /* Send mbuf */ 1578 return (lagg_enqueue(lp->lp_ifp, m)); 1579 } 1580 1581 static struct mbuf * 1582 lagg_lb_input(struct lagg_softc *sc, struct lagg_port *lp, struct mbuf *m) 1583 { 1584 struct ifnet *ifp = sc->sc_ifp; 1585 1586 /* Just pass in the packet to our lagg device */ 1587 m->m_pkthdr.rcvif = ifp; 1588 1589 return (m); 1590 } 1591 1592 /* 1593 * 802.3ad LACP 1594 */ 1595 1596 static int 1597 lagg_lacp_attach(struct lagg_softc *sc) 1598 { 1599 struct lagg_port *lp; 1600 int error; 1601 1602 sc->sc_detach = lagg_lacp_detach; 1603 sc->sc_port_create = lacp_port_create; 1604 sc->sc_port_destroy = lacp_port_destroy; 1605 sc->sc_linkstate = lacp_linkstate; 1606 sc->sc_start = lagg_lacp_start; 1607 sc->sc_input = lagg_lacp_input; 1608 sc->sc_init = lacp_init; 1609 sc->sc_stop = lacp_stop; 1610 sc->sc_lladdr = lagg_lacp_lladdr; 1611 sc->sc_req = lacp_req; 1612 sc->sc_portreq = lacp_portreq; 1613 1614 error = lacp_attach(sc); 1615 if (error) 1616 return (error); 1617 1618 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 1619 lacp_port_create(lp); 1620 1621 return (error); 1622 } 1623 1624 static int 1625 lagg_lacp_detach(struct lagg_softc *sc) 1626 { 1627 struct lagg_port *lp; 1628 int error; 1629 1630 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 1631 lacp_port_destroy(lp); 1632 1633 /* unlocking is safe here */ 1634 LAGG_WUNLOCK(sc); 1635 error = lacp_detach(sc); 1636 LAGG_WLOCK(sc); 1637 1638 return (error); 1639 } 1640 1641 static void 1642 lagg_lacp_lladdr(struct lagg_softc *sc) 1643 { 1644 struct lagg_port *lp; 1645 1646 /* purge all the lacp ports */ 1647 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 1648 lacp_port_destroy(lp); 1649 1650 /* add them back in */ 1651 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 1652 lacp_port_create(lp); 1653 } 1654 1655 static int 1656 lagg_lacp_start(struct lagg_softc *sc, struct mbuf *m) 1657 { 1658 struct lagg_port *lp; 1659 1660 lp = lacp_select_tx_port(sc, m); 1661 if (lp == NULL) 1662 return (EBUSY); 1663 1664 /* Send mbuf */ 1665 return (lagg_enqueue(lp->lp_ifp, m)); 1666 } 1667 1668 static struct mbuf * 1669 lagg_lacp_input(struct lagg_softc *sc, struct lagg_port *lp, struct mbuf *m) 1670 { 1671 struct ifnet *ifp = sc->sc_ifp; 1672 struct ether_header *eh; 1673 u_short etype; 1674 1675 eh = mtod(m, struct ether_header *); 1676 etype = ntohs(eh->ether_type); 1677 1678 /* Tap off LACP control messages */ 1679 if (etype == ETHERTYPE_SLOW) { 1680 lacp_input(lp, m); 1681 return (NULL); 1682 } 1683 1684 /* 1685 * If the port is not collecting or not in the active aggregator then 1686 * free and return. 1687 */ 1688 if ((lp->lp_flags & LAGG_PORT_COLLECTING) == 0 || 1689 lacp_port_isactive(lp) == 0) { 1690 m_freem(m); 1691 return (NULL); 1692 } 1693 1694 m->m_pkthdr.rcvif = ifp; 1695 return (m); 1696 } 1697