1 /* $OpenBSD: if_trunk.c,v 1.30 2007/01/31 06:20:19 reyk Exp $ 2 * $FreeBSD: head/sys/net/if_lagg.c 256218 2013-10-09 19:04:40Z glebius $ 3 */ 4 /* 5 * Copyright (c) 2005, 2006 Reyk Floeter <reyk@openbsd.org> 6 * Copyright (c) 2007 Andrew Thompson <thompsa@FreeBSD.org> 7 * Copyright (c) 2014 Marcelo Araujo <araujo@FreeBSD.org> 8 * 9 * Permission to use, copy, modify, and distribute this software for any 10 * purpose with or without fee is hereby granted, provided that the above 11 * copyright notice and this permission notice appear in all copies. 12 * 13 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 14 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 15 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 16 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 17 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 18 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 19 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 20 */ 21 22 #include <sys/cdefs.h> 23 24 #include "opt_inet.h" 25 #include "opt_inet6.h" 26 27 #include <sys/param.h> 28 #include <sys/kernel.h> 29 #include <sys/malloc.h> 30 #include <sys/mbuf.h> 31 #include <sys/queue.h> 32 #include <sys/socket.h> 33 #include <sys/sockio.h> 34 #include <sys/sysctl.h> 35 #include <sys/module.h> 36 #include <sys/priv.h> 37 #include <sys/systm.h> 38 #include <sys/proc.h> 39 #include <sys/hash.h> 40 #include <sys/lock.h> 41 #include <sys/taskqueue.h> 42 #include <sys/eventhandler.h> 43 44 #include <net/ethernet.h> 45 #include <net/if.h> 46 #include <net/if_clone.h> 47 #include <net/if_arp.h> 48 #include <net/if_dl.h> 49 #include <net/if_llc.h> 50 #include <net/if_media.h> 51 #include <net/if_types.h> 52 #include <net/if_var.h> 53 #include <net/ifq_var.h> 54 #include <net/bpf.h> 55 56 #include <net/netmsg2.h> 57 #include <net/netisr2.h> 58 59 #if defined(INET) || defined(INET6) 60 #include <netinet/in.h> 61 #endif 62 #ifdef INET 63 #include <netinet/in_systm.h> 64 #include <netinet/if_ether.h> 65 #include <netinet/ip.h> 66 #endif 67 68 #ifdef INET6 69 #include <netinet/ip6.h> 70 #include <netinet6/in6_var.h> 71 #include <netinet6/in6_ifattach.h> 72 #endif 73 74 #include <net/vlan/if_vlan_var.h> 75 #include <net/lagg/if_lagg.h> 76 #include <net/lagg/ieee8023ad_lacp.h> 77 78 /* Special flags we should propagate to the lagg ports. */ 79 static struct { 80 int flag; 81 int (*func)(struct ifnet *, int); 82 } lagg_pflags[] = { 83 {IFF_PROMISC, ifpromisc}, 84 {IFF_ALLMULTI, if_allmulti}, 85 {0, NULL} 86 }; 87 88 SLIST_HEAD(, lagg_softc) lagg_list; /* list of laggs */ 89 static struct lock lagg_list_lock; 90 eventhandler_tag lagg_detach_cookie = NULL; 91 92 static int lagg_clone_create(struct if_clone *, int, caddr_t); 93 static int lagg_clone_destroy(struct ifnet *); 94 static const char * laggname = "lagg"; 95 struct if_clone lagg_cloner = IF_CLONE_INITIALIZER("lagg", 96 lagg_clone_create, 97 lagg_clone_destroy, 98 0, IF_MAXUNIT); 99 100 static void lagg_lladdr(struct lagg_softc *, uint8_t *); 101 static void lagg_capabilities(struct lagg_softc *); 102 static void lagg_port_lladdr(struct lagg_port *, uint8_t *); 103 static void lagg_port_setlladdr(void *, int); 104 static int lagg_port_create(struct lagg_softc *, struct ifnet *); 105 static int lagg_port_destroy(struct lagg_port *, int); 106 static void lagg_input(struct ifnet *, struct mbuf *); 107 static void lagg_linkstate(struct lagg_softc *); 108 #if 0 /* XXX */ 109 static void lagg_port_state(struct ifnet *, int); 110 #endif 111 static int lagg_port_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *cr); 112 static int lagg_port_output(struct ifnet *, struct mbuf *, 113 struct sockaddr *, struct rtentry *); 114 static void lagg_port_ifdetach(void *arg __unused, struct ifnet *); 115 #ifdef LAGG_PORT_STACKING 116 static int lagg_port_checkstacking(struct lagg_softc *); 117 #endif 118 static void lagg_port2req(struct lagg_port *, struct lagg_reqport *); 119 static void lagg_init(void *); 120 static void lagg_stop(struct lagg_softc *); 121 static int lagg_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *cr); 122 static int lagg_ether_setmulti(struct lagg_softc *); 123 static int lagg_ether_cmdmulti(struct lagg_port *, int); 124 static int lagg_setflag(struct lagg_port *, int, int, 125 int (*func)(struct ifnet *, int)); 126 static int lagg_setflags(struct lagg_port *, int status); 127 static void lagg_start(struct ifnet *, struct ifaltq_subque *ifsq); 128 static void lagg_start_dispatch(netmsg_t msg); 129 /* Not needed? 130 static int lagg_output(struct ifnet *ifp, struct mbuf *m); 131 */ 132 #if 0 /* XXX */ 133 static int lagg_transmit(struct ifnet *, struct mbuf *); 134 static void lagg_qflush(struct ifnet *); 135 #endif 136 static int lagg_media_change(struct ifnet *); 137 static void lagg_media_status(struct ifnet *, struct ifmediareq *); 138 static struct lagg_port *lagg_link_active(struct lagg_softc *, 139 struct lagg_port *); 140 static const void *lagg_gethdr(struct mbuf *, u_int, u_int, void *); 141 static int lagg_sysctl_active(SYSCTL_HANDLER_ARGS); 142 143 /* Simple round robin */ 144 static int lagg_rr_attach(struct lagg_softc *); 145 static int lagg_rr_detach(struct lagg_softc *); 146 static struct ifnet *lagg_rr_select_tx_port(struct lagg_softc *sc, 147 struct mbuf *m); 148 static struct mbuf *lagg_rr_input(struct lagg_softc *, struct lagg_port *, 149 struct mbuf *); 150 151 /* Active failover */ 152 static int lagg_fail_attach(struct lagg_softc *); 153 static int lagg_fail_detach(struct lagg_softc *); 154 static struct ifnet *lagg_fail_select_tx_port(struct lagg_softc *, 155 struct mbuf *); 156 static struct mbuf *lagg_fail_input(struct lagg_softc *, struct lagg_port *, 157 struct mbuf *); 158 159 /* Loadbalancing */ 160 static int lagg_lb_attach(struct lagg_softc *); 161 static int lagg_lb_detach(struct lagg_softc *); 162 static int lagg_lb_port_create(struct lagg_port *); 163 static void lagg_lb_port_destroy(struct lagg_port *); 164 static struct ifnet *lagg_lb_select_tx_port(struct lagg_softc *, 165 struct mbuf *); 166 static struct mbuf *lagg_lb_input(struct lagg_softc *, struct lagg_port *, 167 struct mbuf *); 168 static int lagg_lb_porttable(struct lagg_softc *, struct lagg_port *); 169 170 /* 802.3ad LACP */ 171 static int lagg_lacp_attach(struct lagg_softc *); 172 static int lagg_lacp_detach(struct lagg_softc *); 173 static struct ifnet *lagg_lacp_select_tx_port(struct lagg_softc *, 174 struct mbuf *); 175 static struct mbuf *lagg_lacp_input(struct lagg_softc *, struct lagg_port *, 176 struct mbuf *); 177 static void lagg_lacp_lladdr(struct lagg_softc *); 178 179 static void lagg_callout(void *); 180 181 /* lagg protocol table */ 182 static const struct { 183 int ti_proto; 184 int (*ti_attach)(struct lagg_softc *); 185 } lagg_protos[] = { 186 { LAGG_PROTO_ROUNDROBIN, lagg_rr_attach }, 187 { LAGG_PROTO_FAILOVER, lagg_fail_attach }, 188 { LAGG_PROTO_LOADBALANCE, lagg_lb_attach }, 189 { LAGG_PROTO_ETHERCHANNEL, lagg_lb_attach }, 190 { LAGG_PROTO_LACP, lagg_lacp_attach }, 191 { LAGG_PROTO_NONE, NULL } 192 }; 193 194 SYSCTL_DECL(_net_link); 195 SYSCTL_NODE(_net_link, OID_AUTO, lagg, CTLFLAG_RW, 0, 196 "Link Aggregation"); 197 198 static int lagg_failover_rx_all = 0; /* Allow input on any failover links */ 199 SYSCTL_INT(_net_link_lagg, OID_AUTO, failover_rx_all, CTLFLAG_RW, 200 &lagg_failover_rx_all, 0, 201 "Accept input from any interface in a failover lagg"); 202 static int def_use_flowid = 1; /* Default value for using M_FLOWID */ 203 TUNABLE_INT("net.link.lagg.default_use_flowid", &def_use_flowid); 204 SYSCTL_INT(_net_link_lagg, OID_AUTO, default_use_flowid, CTLFLAG_RW, 205 &def_use_flowid, 0, 206 "Default setting for using flow id for load sharing"); 207 208 static int 209 lagg_modevent(module_t mod, int type, void *data) 210 { 211 212 switch (type) { 213 case MOD_LOAD: 214 lockinit(&lagg_list_lock, "if_lagg list", 0, 0); 215 SLIST_INIT(&lagg_list); 216 if_clone_attach(&lagg_cloner); 217 lagg_input_p = lagg_input; 218 lagg_detach_cookie = EVENTHANDLER_REGISTER( 219 ifnet_departure_event, lagg_port_ifdetach, NULL, 220 EVENTHANDLER_PRI_ANY); 221 break; 222 case MOD_UNLOAD: 223 EVENTHANDLER_DEREGISTER(ifnet_departure_event, 224 lagg_detach_cookie); 225 lagg_input_p = NULL; 226 if_clone_detach(&lagg_cloner); 227 lockuninit(&lagg_list_lock); 228 break; 229 default: 230 return (EOPNOTSUPP); 231 } 232 return (0); 233 } 234 235 static moduledata_t lagg_mod = { 236 "if_lagg", 237 lagg_modevent, 238 0 239 }; 240 241 DECLARE_MODULE(if_lagg, lagg_mod, SI_SUB_PSEUDO, SI_ORDER_ANY); 242 MODULE_VERSION(if_lagg, 1); 243 244 /* 245 * This routine is run via an vlan 246 * config EVENT 247 */ 248 static void 249 lagg_register_vlan(void *arg, struct ifnet *ifp, u_int16_t vtag) 250 { 251 #if 0 /* XXX */ 252 struct lagg_softc *sc = ifp->if_softc; 253 struct lagg_port *lp; 254 255 if (ifp->if_softc != arg) /* Not our event */ 256 return; 257 258 LAGG_RLOCK(sc); 259 if (!SLIST_EMPTY(&sc->sc_ports)) { 260 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 261 EVENTHANDLER_INVOKE(vlan_config, lp->lp_ifp); 262 } 263 LAGG_RUNLOCK(sc); 264 #endif 265 266 } 267 268 /* 269 * This routine is run via an vlan 270 * unconfig EVENT 271 */ 272 static void 273 lagg_unregister_vlan(void *arg, struct ifnet *ifp, u_int16_t vtag) 274 { 275 struct lagg_softc *sc = ifp->if_softc; 276 /* 277 struct lagg_port *lp; 278 */ 279 280 if (ifp->if_softc != arg) /* Not our event */ 281 return; 282 283 LAGG_RLOCK(sc); 284 if (!SLIST_EMPTY(&sc->sc_ports)) { 285 #if 0 /* XXX */ 286 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 287 EVENTHANDLER_INVOKE(vlan_unconfig, lp->lp_ifp); 288 #endif 289 } 290 LAGG_RUNLOCK(sc); 291 } 292 293 static int 294 lagg_clone_create(struct if_clone *ifc, int unit, caddr_t params __unused) 295 { 296 struct lagg_softc *sc; 297 struct ifnet *ifp; 298 int i, error = 0; 299 static const u_char eaddr[6]; /* 00:00:00:00:00:00 */ 300 struct sysctl_oid *oid; 301 char num[14]; /* sufficient for 32 bits */ 302 303 sc = kmalloc(sizeof(*sc), M_DEVBUF, M_WAITOK|M_ZERO); 304 ifp = sc->sc_ifp = &sc->sc_if; // XXX if_alloc(IFT_ETHER); 305 /* 306 if (ifp == NULL) { 307 kfree(sc, M_DEVBUF); 308 return (ENOSPC); 309 } 310 */ 311 /* 312 sc->sc_ipackets = counter_u64_alloc(M_WAITOK); 313 sc->sc_opackets = counter_u64_alloc(M_WAITOK); 314 sc->sc_ibytes = counter_u64_alloc(M_WAITOK); 315 sc->sc_obytes = counter_u64_alloc(M_WAITOK); 316 */ 317 sysctl_ctx_init(&sc->ctx); 318 ksnprintf(num, sizeof(num), "%u", unit); 319 sc->use_flowid = def_use_flowid; 320 sc->sc_oid = oid = SYSCTL_ADD_NODE(&sc->ctx, 321 &SYSCTL_NODE_CHILDREN(_net_link, lagg), 322 OID_AUTO, num, CTLFLAG_RD, NULL, ""); 323 SYSCTL_ADD_INT(&sc->ctx, SYSCTL_CHILDREN(oid), OID_AUTO, 324 "use_flowid", CTLTYPE_INT|CTLFLAG_RW, &sc->use_flowid, sc->use_flowid, 325 "Use flow id for load sharing"); 326 SYSCTL_ADD_INT(&sc->ctx, SYSCTL_CHILDREN(oid), OID_AUTO, 327 "count", CTLTYPE_INT|CTLFLAG_RD, &sc->sc_count, sc->sc_count, 328 "Total number of ports"); 329 SYSCTL_ADD_PROC(&sc->ctx, SYSCTL_CHILDREN(oid), OID_AUTO, 330 "active", CTLTYPE_INT|CTLFLAG_RD, sc, 0, lagg_sysctl_active, 331 "I", "Total number of active ports"); 332 SYSCTL_ADD_INT(&sc->ctx, SYSCTL_CHILDREN(oid), OID_AUTO, 333 "flapping", CTLTYPE_INT|CTLFLAG_RD, &sc->sc_flapping, 334 sc->sc_flapping, "Total number of port change events"); 335 /* Hash all layers by default */ 336 sc->sc_flags = LAGG_F_HASHL2|LAGG_F_HASHL3|LAGG_F_HASHL4; 337 338 sc->sc_proto = LAGG_PROTO_NONE; 339 for (i = 0; lagg_protos[i].ti_proto != LAGG_PROTO_NONE; i++) { 340 if (lagg_protos[i].ti_proto == LAGG_PROTO_DEFAULT) { 341 sc->sc_proto = lagg_protos[i].ti_proto; 342 if ((error = lagg_protos[i].ti_attach(sc)) != 0) { 343 if_free(ifp); 344 kfree(sc, M_DEVBUF); 345 return (error); 346 } 347 break; 348 } 349 } 350 LAGG_LOCK_INIT(sc); 351 LAGG_CALLOUT_LOCK_INIT(sc); 352 SLIST_INIT(&sc->sc_ports); 353 TASK_INIT(&sc->sc_lladdr_task, 0, lagg_port_setlladdr, sc); 354 355 /* 356 * This uses the callout lock rather than the rmlock; one can't 357 * hold said rmlock during SWI. 358 */ 359 callout_init_lk(&sc->sc_callout, &sc->sc_call_lock); 360 361 /* Initialise pseudo media types */ 362 ifmedia_init(&sc->sc_media, 0, lagg_media_change, 363 lagg_media_status); 364 ifmedia_add(&sc->sc_media, IFM_ETHER | IFM_AUTO, 0, NULL); 365 ifmedia_set(&sc->sc_media, IFM_ETHER | IFM_AUTO); 366 367 if_initname(ifp, laggname, unit); 368 ifp->if_softc = sc; 369 #if 0 /* XXX */ 370 ifp->if_transmit = lagg_transmit; 371 ifp->if_qflush = lagg_qflush; 372 #endif 373 ifp->if_mtu = ETHERMTU; 374 ifp->if_init = lagg_init; 375 ifp->if_ioctl = lagg_ioctl; 376 ifp->if_flags = IFF_SIMPLEX | IFF_BROADCAST | IFF_MULTICAST; 377 ifp->if_start = lagg_start; 378 ifp->if_type = IFT_ETHER; 379 ifq_set_maxlen(&ifp->if_snd, ifqmaxlen); 380 ifq_set_ready(&ifp->if_snd); 381 ifp->if_hdrlen = ETHER_HDR_LEN; 382 383 #if 0 /* XXX */ 384 ifp->if_capenable = ifp->if_capabilities = IFCAP_HWSTATS; 385 #endif 386 /* 387 * Attach as an ordinary ethernet device, children will be attached 388 * as special device IFT_IEEE8023ADLAG. 389 */ 390 391 ether_ifattach(ifp, eaddr, NULL); 392 393 sc->vlan_attach = EVENTHANDLER_REGISTER(vlan_config, 394 lagg_register_vlan, sc, EVENTHANDLER_PRI_FIRST); 395 sc->vlan_detach = EVENTHANDLER_REGISTER(vlan_unconfig, 396 lagg_unregister_vlan, sc, EVENTHANDLER_PRI_FIRST); 397 398 /* Insert into the global list of laggs */ 399 lockmgr(&lagg_list_lock, LK_EXCLUSIVE); 400 SLIST_INSERT_HEAD(&lagg_list, sc, sc_entries); 401 lockmgr(&lagg_list_lock, LK_RELEASE); 402 403 callout_reset(&sc->sc_callout, hz, lagg_callout, sc); 404 405 return (0); 406 } 407 408 static int 409 lagg_clone_destroy(struct ifnet *ifp) 410 { 411 struct lagg_softc *sc = (struct lagg_softc *)ifp->if_softc; 412 struct lagg_port *lp; 413 414 LAGG_WLOCK(sc); 415 416 lagg_stop(sc); 417 ifp->if_flags &= ~IFF_UP; 418 419 EVENTHANDLER_DEREGISTER(vlan_config, sc->vlan_attach); 420 EVENTHANDLER_DEREGISTER(vlan_unconfig, sc->vlan_detach); 421 422 /* Shutdown and remove lagg ports */ 423 while ((lp = SLIST_FIRST(&sc->sc_ports)) != NULL) 424 lagg_port_destroy(lp, 1); 425 /* Unhook the aggregation protocol */ 426 if (sc->sc_detach != NULL) 427 (*sc->sc_detach)(sc); 428 429 LAGG_WUNLOCK(sc); 430 431 sysctl_ctx_free(&sc->ctx); 432 ifmedia_removeall(&sc->sc_media); 433 ether_ifdetach(ifp); 434 /* This ifp is part of lagg_softc, don't free it! */ 435 /* if_free(ifp); */ 436 437 /* This grabs sc_callout_mtx, serialising it correctly */ 438 callout_drain(&sc->sc_callout); 439 440 #if 0 441 /* At this point it's drained; we can free this */ 442 counter_u64_free(sc->sc_ipackets); 443 counter_u64_free(sc->sc_opackets); 444 counter_u64_free(sc->sc_ibytes); 445 counter_u64_free(sc->sc_obytes); 446 #endif 447 448 lockmgr(&lagg_list_lock, LK_EXCLUSIVE); 449 SLIST_REMOVE(&lagg_list, sc, lagg_softc, sc_entries); 450 lockmgr(&lagg_list_lock, LK_RELEASE); 451 452 taskqueue_drain(taskqueue_swi, &sc->sc_lladdr_task); 453 LAGG_LOCK_DESTROY(sc); 454 LAGG_CALLOUT_LOCK_DESTROY(sc); 455 kfree(sc, M_DEVBUF); 456 457 return 0; 458 } 459 460 static void 461 lagg_lladdr(struct lagg_softc *sc, uint8_t *lladdr) 462 { 463 struct ifnet *ifp = sc->sc_ifp; 464 465 if (memcmp(lladdr, IF_LLADDR(ifp), ETHER_ADDR_LEN) == 0) 466 return; 467 468 bcopy(lladdr, IF_LLADDR(ifp), ETHER_ADDR_LEN); 469 /* Let the protocol know the MAC has changed */ 470 if (sc->sc_lladdr != NULL) 471 (*sc->sc_lladdr)(sc); 472 EVENTHANDLER_INVOKE(iflladdr_event, ifp); 473 } 474 475 static void 476 lagg_capabilities(struct lagg_softc *sc) 477 { 478 struct lagg_port *lp; 479 int cap = ~0, ena = ~0; 480 u_long hwa = ~0UL; 481 482 LAGG_WLOCK_ASSERT(sc); 483 484 /* Get capabilities from the lagg ports */ 485 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 486 cap &= lp->lp_ifp->if_capabilities; 487 ena &= lp->lp_ifp->if_capenable; 488 hwa &= lp->lp_ifp->if_hwassist; 489 } 490 cap = (cap == ~0 ? 0 : cap); 491 ena = (ena == ~0 ? 0 : ena); 492 hwa = (hwa == ~0 ? 0 : hwa); 493 494 if (sc->sc_ifp->if_capabilities != cap || 495 sc->sc_ifp->if_capenable != ena || 496 sc->sc_ifp->if_hwassist != hwa) { 497 sc->sc_ifp->if_capabilities = cap; 498 sc->sc_ifp->if_capenable = ena; 499 sc->sc_ifp->if_hwassist = hwa; 500 getmicrotime(&sc->sc_ifp->if_lastchange); 501 502 if (sc->sc_ifflags & IFF_DEBUG) 503 if_printf(sc->sc_ifp, 504 "capabilities 0x%08x enabled 0x%08x\n", cap, ena); 505 } 506 } 507 508 static void 509 lagg_port_lladdr(struct lagg_port *lp, uint8_t *lladdr) 510 { 511 struct lagg_softc *sc = lp->lp_softc; 512 struct ifnet *ifp = lp->lp_ifp; 513 struct lagg_llq *llq; 514 int pending = 0; 515 516 LAGG_WLOCK_ASSERT(sc); 517 518 if (lp->lp_detaching || 519 memcmp(lladdr, IF_LLADDR(ifp), ETHER_ADDR_LEN) == 0) 520 return; 521 522 /* Check to make sure its not already queued to be changed */ 523 SLIST_FOREACH(llq, &sc->sc_llq_head, llq_entries) { 524 if (llq->llq_ifp == ifp) { 525 pending = 1; 526 break; 527 } 528 } 529 530 if (!pending) { 531 llq = kmalloc(sizeof(struct lagg_llq), M_DEVBUF, M_NOWAIT); 532 if (llq == NULL) /* XXX what to do */ 533 return; 534 } 535 536 /* Update the lladdr even if pending, it may have changed */ 537 llq->llq_ifp = ifp; 538 bcopy(lladdr, llq->llq_lladdr, ETHER_ADDR_LEN); 539 540 if (!pending) 541 SLIST_INSERT_HEAD(&sc->sc_llq_head, llq, llq_entries); 542 543 taskqueue_enqueue(taskqueue_swi, &sc->sc_lladdr_task); 544 } 545 546 /* 547 * Set the interface MAC address from a taskqueue to avoid a LOR. 548 */ 549 static void 550 lagg_port_setlladdr(void *arg, int pending) 551 { 552 struct lagg_softc *sc = (struct lagg_softc *)arg; 553 struct lagg_llq *llq, *head; 554 struct ifnet *ifp; 555 int error; 556 557 /* Grab a local reference of the queue and remove it from the softc */ 558 LAGG_WLOCK(sc); 559 head = SLIST_FIRST(&sc->sc_llq_head); 560 SLIST_FIRST(&sc->sc_llq_head) = NULL; 561 LAGG_WUNLOCK(sc); 562 563 /* 564 * Traverse the queue and set the lladdr on each ifp. It is safe to do 565 * unlocked as we have the only reference to it. 566 */ 567 for (llq = head; llq != NULL; llq = head) { 568 ifp = llq->llq_ifp; 569 570 /* Set the link layer address */ 571 /* CURVNET_SET(ifp->if_vnet); */ 572 error = if_setlladdr(ifp, llq->llq_lladdr, ETHER_ADDR_LEN); 573 /* CURVNET_RESTORE(); */ 574 if (error) 575 kprintf("%s: setlladdr failed on %s\n", __func__, 576 ifp->if_xname); 577 578 head = SLIST_NEXT(llq, llq_entries); 579 kfree(llq, M_DEVBUF); 580 } 581 } 582 583 static int 584 lagg_port_create(struct lagg_softc *sc, struct ifnet *ifp) 585 { 586 struct lagg_softc *sc_ptr; 587 struct lagg_port *lp; 588 int error = 0; 589 590 LAGG_WLOCK_ASSERT(sc); 591 592 /* Limit the maximal number of lagg ports */ 593 if (sc->sc_count >= LAGG_MAX_PORTS) 594 return (ENOSPC); 595 596 /* Check if port has already been associated to a lagg */ 597 if (ifp->if_lagg != NULL) { 598 /* Port is already in the current lagg? */ 599 lp = (struct lagg_port *)ifp->if_lagg; 600 if (lp->lp_softc == sc) 601 return (EEXIST); 602 return (EBUSY); 603 } 604 605 /* XXX Disallow non-ethernet interfaces (this should be any of 802) */ 606 if (ifp->if_type != IFT_ETHER) 607 return (EPROTONOSUPPORT); 608 609 #ifdef INET6 610 /* 611 * The member interface should not have inet6 address because 612 * two interfaces with a valid link-local scope zone must not be 613 * merged in any form. This restriction is needed to 614 * prevent violation of link-local scope zone. Attempts to 615 * add a member interface which has inet6 addresses triggers 616 * removal of all inet6 addresses on the member interface. 617 */ 618 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 619 if (in6ifa_llaonifp(lp->lp_ifp)) { 620 in6_ifdetach(lp->lp_ifp); 621 if_printf(sc->sc_ifp, 622 "IPv6 addresses on %s have been removed " 623 "before adding it as a member to prevent " 624 "IPv6 address scope violation.\n", 625 lp->lp_ifp->if_xname); 626 } 627 } 628 if (in6ifa_llaonifp(ifp)) { 629 in6_ifdetach(ifp); 630 if_printf(sc->sc_ifp, 631 "IPv6 addresses on %s have been removed " 632 "before adding it as a member to prevent " 633 "IPv6 address scope violation.\n", 634 ifp->if_xname); 635 } 636 #endif 637 /* Allow the first Ethernet member to define the MTU */ 638 if (SLIST_EMPTY(&sc->sc_ports)) 639 sc->sc_ifp->if_mtu = ifp->if_mtu; 640 else if (sc->sc_ifp->if_mtu != ifp->if_mtu) { 641 if_printf(sc->sc_ifp, "invalid MTU for %s\n", 642 ifp->if_xname); 643 return (EINVAL); 644 } 645 646 if ((lp = kmalloc(sizeof(struct lagg_port), 647 M_DEVBUF, M_NOWAIT|M_ZERO)) == NULL) 648 return (ENOMEM); 649 650 /* Check if port is a stacked lagg */ 651 lockmgr(&lagg_list_lock, LK_EXCLUSIVE); 652 SLIST_FOREACH(sc_ptr, &lagg_list, sc_entries) { 653 if (ifp == sc_ptr->sc_ifp) { 654 lockmgr(&lagg_list_lock, LK_RELEASE); 655 kfree(lp, M_DEVBUF); 656 return (EINVAL); 657 /* XXX disable stacking for the moment, its untested */ 658 #ifdef LAGG_PORT_STACKING 659 lp->lp_flags |= LAGG_PORT_STACK; 660 if (lagg_port_checkstacking(sc_ptr) >= 661 LAGG_MAX_STACKING) { 662 lockmgr(&lagg_list_lock, LK_RELEASE); 663 kfree(lp, M_DEVBUF); 664 return (E2BIG); 665 } 666 #endif 667 } 668 } 669 lockmgr(&lagg_list_lock, LK_RELEASE); 670 671 /* Change the interface type */ 672 lp->lp_iftype = ifp->if_type; 673 ifp->if_type = IFT_IEEE8023ADLAG; 674 ifp->if_lagg = lp; 675 lp->lp_ioctl = ifp->if_ioctl; 676 ifp->if_ioctl = lagg_port_ioctl; 677 lp->lp_output = ifp->if_output; 678 ifp->if_output = lagg_port_output; 679 680 lp->lp_ifp = ifp; 681 lp->lp_softc = sc; 682 683 /* Save port link layer address */ 684 bcopy(IF_LLADDR(ifp), lp->lp_lladdr, ETHER_ADDR_LEN); 685 686 if (SLIST_EMPTY(&sc->sc_ports)) { 687 sc->sc_primary = lp; 688 lagg_lladdr(sc, IF_LLADDR(ifp)); 689 } else { 690 /* Update link layer address for this port */ 691 lagg_port_lladdr(lp, IF_LLADDR(sc->sc_ifp)); 692 } 693 694 /* Insert into the list of ports */ 695 SLIST_INSERT_HEAD(&sc->sc_ports, lp, lp_entries); 696 sc->sc_count++; 697 698 /* Update lagg capabilities */ 699 lagg_capabilities(sc); 700 lagg_linkstate(sc); 701 702 /* Add multicast addresses and interface flags to this port */ 703 lagg_ether_cmdmulti(lp, 1); 704 lagg_setflags(lp, 1); 705 706 if (sc->sc_port_create != NULL) 707 error = (*sc->sc_port_create)(lp); 708 if (error) { 709 /* remove the port again, without calling sc_port_destroy */ 710 lagg_port_destroy(lp, 0); 711 return (error); 712 } 713 714 return (error); 715 } 716 717 #ifdef LAGG_PORT_STACKING 718 static int 719 lagg_port_checkstacking(struct lagg_softc *sc) 720 { 721 struct lagg_softc *sc_ptr; 722 struct lagg_port *lp; 723 int m = 0; 724 725 LAGG_WLOCK_ASSERT(sc); 726 727 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 728 if (lp->lp_flags & LAGG_PORT_STACK) { 729 sc_ptr = (struct lagg_softc *)lp->lp_ifp->if_softc; 730 m = MAX(m, lagg_port_checkstacking(sc_ptr)); 731 } 732 } 733 734 return (m + 1); 735 } 736 #endif 737 738 static int 739 lagg_port_destroy(struct lagg_port *lp, int runpd) 740 { 741 struct lagg_softc *sc = lp->lp_softc; 742 struct lagg_port *lp_ptr; 743 struct lagg_llq *llq; 744 struct ifnet *ifp = lp->lp_ifp; 745 746 LAGG_WLOCK_ASSERT(sc); 747 748 if (runpd && sc->sc_port_destroy != NULL) 749 (*sc->sc_port_destroy)(lp); 750 751 /* 752 * Remove multicast addresses and interface flags from this port and 753 * reset the MAC address, skip if the interface is being detached. 754 */ 755 if (!lp->lp_detaching) { 756 lagg_ether_cmdmulti(lp, 0); 757 lagg_setflags(lp, 0); 758 lagg_port_lladdr(lp, lp->lp_lladdr); 759 } 760 761 /* Restore interface */ 762 ifp->if_type = lp->lp_iftype; 763 ifp->if_ioctl = lp->lp_ioctl; 764 ifp->if_output = lp->lp_output; 765 ifp->if_lagg = NULL; 766 767 /* Finally, remove the port from the lagg */ 768 SLIST_REMOVE(&sc->sc_ports, lp, lagg_port, lp_entries); 769 sc->sc_count--; 770 771 /* Update the primary interface */ 772 if (lp == sc->sc_primary) { 773 uint8_t lladdr[ETHER_ADDR_LEN]; 774 775 if ((lp_ptr = SLIST_FIRST(&sc->sc_ports)) == NULL) { 776 bzero(&lladdr, ETHER_ADDR_LEN); 777 } else { 778 bcopy(lp_ptr->lp_lladdr, 779 lladdr, ETHER_ADDR_LEN); 780 } 781 lagg_lladdr(sc, lladdr); 782 sc->sc_primary = lp_ptr; 783 784 /* Update link layer address for each port */ 785 SLIST_FOREACH(lp_ptr, &sc->sc_ports, lp_entries) 786 lagg_port_lladdr(lp_ptr, lladdr); 787 } 788 789 /* Remove any pending lladdr changes from the queue */ 790 if (lp->lp_detaching) { 791 SLIST_FOREACH(llq, &sc->sc_llq_head, llq_entries) { 792 if (llq->llq_ifp == ifp) { 793 SLIST_REMOVE(&sc->sc_llq_head, llq, lagg_llq, 794 llq_entries); 795 kfree(llq, M_DEVBUF); 796 break; /* Only appears once */ 797 } 798 } 799 } 800 801 if (lp->lp_ifflags) 802 if_printf(ifp, "%s: lp_ifflags unclean\n", __func__); 803 804 kfree(lp, M_DEVBUF); 805 806 /* Update lagg capabilities */ 807 lagg_capabilities(sc); 808 lagg_linkstate(sc); 809 810 return (0); 811 } 812 813 static int 814 lagg_port_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr) 815 { 816 struct lagg_reqport *rp = (struct lagg_reqport *)data; 817 struct lagg_softc *sc; 818 struct lagg_port *lp = NULL; 819 int error = 0; 820 821 ASSERT_IFNET_SERIALIZED_ALL(ifp); 822 823 /* Should be checked by the caller */ 824 if (ifp->if_type != IFT_IEEE8023ADLAG || 825 (lp = ifp->if_lagg) == NULL || (sc = lp->lp_softc) == NULL) 826 goto fallback; 827 828 switch (cmd) { 829 case SIOCGLAGGPORT: 830 if (rp->rp_portname[0] == '\0') { 831 error = EINVAL; 832 break; 833 } 834 835 /* 836 * Release ifp serializers before ifnet_lock 837 * to prevent lock order reversal. 838 */ 839 ifnet_deserialize_all(ifp); 840 ifnet_lock(); 841 if (ifunit(rp->rp_portname) != ifp) { 842 ifnet_unlock(); 843 ifnet_serialize_all(ifp); 844 error = EINVAL; 845 break; 846 } 847 ifnet_unlock(); 848 ifnet_serialize_all(ifp); 849 850 LAGG_RLOCK(sc); 851 if ((lp = ifp->if_lagg) == NULL || lp->lp_softc != sc) { 852 error = ENOENT; 853 LAGG_RUNLOCK(sc); 854 break; 855 } 856 857 lagg_port2req(lp, rp); 858 LAGG_RUNLOCK(sc); 859 break; 860 861 case SIOCSIFCAP: 862 if (lp->lp_ioctl == NULL) { 863 error = EINVAL; 864 break; 865 } 866 867 error = (*lp->lp_ioctl)(ifp, cmd, data, cr); 868 if (error) 869 break; 870 871 /* Update lagg interface capabilities */ 872 LAGG_WLOCK(sc); 873 lagg_capabilities(sc); 874 LAGG_WUNLOCK(sc); 875 break; 876 case SIOCGIFMEDIA: 877 if (lp->lp_ioctl == NULL) { 878 error = EINVAL; 879 break; 880 } 881 882 error = (*lp->lp_ioctl)(ifp, cmd, data, cr); 883 break; 884 case SIOCSIFMTU: 885 /* Do not allow the MTU to be changed once joined */ 886 error = EINVAL; 887 break; 888 889 default: 890 goto fallback; 891 } 892 893 return (error); 894 895 fallback: 896 if (lp->lp_ioctl != NULL) { 897 int result; 898 result = ((*lp->lp_ioctl)(ifp, cmd, data, cr)); 899 } 900 return (EINVAL); 901 } 902 903 /* 904 * For direct output to child ports. 905 */ 906 static int 907 lagg_port_output(struct ifnet *ifp, struct mbuf *m, 908 struct sockaddr *dst, struct rtentry *ro) 909 { 910 struct lagg_port *lp = ifp->if_lagg; 911 912 switch (dst->sa_family) { 913 case pseudo_AF_HDRCMPLT: 914 case AF_UNSPEC: 915 return ((*lp->lp_output)(ifp, m, dst, ro)); 916 } 917 918 /* drop any other frames */ 919 m_freem(m); 920 return (ENETDOWN); 921 } 922 923 static void 924 lagg_port_ifdetach(void *arg __unused, struct ifnet *ifp) 925 { 926 struct lagg_port *lp; 927 struct lagg_softc *sc; 928 929 if ((lp = ifp->if_lagg) == NULL) 930 return; 931 #if 0 /* XXX */ 932 /* If the ifnet is just being renamed, don't do anything. */ 933 if (ifp->if_flags & IFF_RENAMING) 934 return; 935 #endif 936 sc = lp->lp_softc; 937 938 LAGG_WLOCK(sc); 939 lp->lp_detaching = 1; 940 lagg_port_destroy(lp, 1); 941 LAGG_WUNLOCK(sc); 942 } 943 944 static void 945 lagg_port2req(struct lagg_port *lp, struct lagg_reqport *rp) 946 { 947 struct lagg_softc *sc = lp->lp_softc; 948 949 strlcpy(rp->rp_ifname, sc->sc_ifname, sizeof(rp->rp_ifname)); 950 strlcpy(rp->rp_portname, lp->lp_ifp->if_xname, sizeof(rp->rp_portname)); 951 rp->rp_prio = lp->lp_prio; 952 rp->rp_flags = lp->lp_flags; 953 if (sc->sc_portreq != NULL) 954 (*sc->sc_portreq)(lp, (caddr_t)&rp->rp_psc); 955 956 /* Add protocol specific flags */ 957 switch (sc->sc_proto) { 958 case LAGG_PROTO_FAILOVER: 959 if (lp == sc->sc_primary) 960 rp->rp_flags |= LAGG_PORT_MASTER; 961 if (lp == lagg_link_active(sc, sc->sc_primary)) 962 rp->rp_flags |= LAGG_PORT_ACTIVE; 963 break; 964 965 case LAGG_PROTO_ROUNDROBIN: 966 case LAGG_PROTO_LOADBALANCE: 967 case LAGG_PROTO_ETHERCHANNEL: 968 if (LAGG_PORTACTIVE(lp)) 969 rp->rp_flags |= LAGG_PORT_ACTIVE; 970 break; 971 972 case LAGG_PROTO_LACP: 973 /* LACP has a different definition of active */ 974 if (lacp_isactive(lp)) 975 rp->rp_flags |= LAGG_PORT_ACTIVE; 976 if (lacp_iscollecting(lp)) 977 rp->rp_flags |= LAGG_PORT_COLLECTING; 978 if (lacp_isdistributing(lp)) 979 rp->rp_flags |= LAGG_PORT_DISTRIBUTING; 980 break; 981 } 982 983 } 984 985 static void 986 lagg_init(void *xsc) 987 { 988 struct lagg_softc *sc = (struct lagg_softc *)xsc; 989 struct lagg_port *lp; 990 struct ifnet *ifp = sc->sc_ifp; 991 992 if (ifp->if_flags & IFF_RUNNING) 993 return; 994 995 LAGG_WLOCK(sc); 996 997 ifp->if_flags |= IFF_RUNNING; 998 /* Update the port lladdrs */ 999 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 1000 lagg_port_lladdr(lp, IF_LLADDR(ifp)); 1001 1002 if (sc->sc_init != NULL) 1003 (*sc->sc_init)(sc); 1004 1005 LAGG_WUNLOCK(sc); 1006 } 1007 1008 static void 1009 lagg_stop(struct lagg_softc *sc) 1010 { 1011 struct ifnet *ifp = sc->sc_ifp; 1012 1013 LAGG_WLOCK_ASSERT(sc); 1014 1015 if ((ifp->if_flags & IFF_RUNNING) == 0) 1016 return; 1017 1018 ifp->if_flags &= ~IFF_RUNNING; 1019 1020 if (sc->sc_stop != NULL) 1021 (*sc->sc_stop)(sc); 1022 } 1023 1024 static int 1025 lagg_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr) 1026 { 1027 struct lagg_softc *sc = (struct lagg_softc *)ifp->if_softc; 1028 struct lagg_reqall *ra = (struct lagg_reqall *)data; 1029 struct lagg_reqport *rp = (struct lagg_reqport *)data, rpbuf; 1030 struct lagg_reqflags *rf = (struct lagg_reqflags *)data; 1031 struct ifreq *ifr = (struct ifreq *)data; 1032 struct lagg_port *lp; 1033 struct ifnet *tpif; 1034 struct thread *td = curthread; 1035 char *buf, *outbuf; 1036 int count, buflen, len, error = 0; 1037 1038 ASSERT_IFNET_SERIALIZED_ALL(ifp); 1039 1040 bzero(&rpbuf, sizeof(rpbuf)); 1041 1042 switch (cmd) { 1043 case SIOCGLAGG: 1044 LAGG_RLOCK(sc); 1045 count = 0; 1046 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 1047 count++; 1048 buflen = count * sizeof(struct lagg_reqport); 1049 LAGG_RUNLOCK(sc); 1050 1051 outbuf = kmalloc(buflen, M_TEMP, M_WAITOK | M_ZERO); 1052 1053 LAGG_RLOCK(sc); 1054 ra->ra_proto = sc->sc_proto; 1055 if (sc->sc_req != NULL) 1056 (*sc->sc_req)(sc, (caddr_t)&ra->ra_psc); 1057 1058 count = 0; 1059 buf = outbuf; 1060 len = min(ra->ra_size, buflen); 1061 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 1062 if (len < sizeof(rpbuf)) 1063 break; 1064 1065 lagg_port2req(lp, &rpbuf); 1066 memcpy(buf, &rpbuf, sizeof(rpbuf)); 1067 count++; 1068 buf += sizeof(rpbuf); 1069 len -= sizeof(rpbuf); 1070 } 1071 LAGG_RUNLOCK(sc); 1072 ra->ra_ports = count; 1073 ra->ra_size = count * sizeof(rpbuf); 1074 error = copyout(outbuf, ra->ra_port, ra->ra_size); 1075 kfree(outbuf, M_TEMP); 1076 break; 1077 case SIOCSLAGG: 1078 error = priv_check(td, PRIV_NET_LAGG); 1079 if (error) 1080 break; 1081 if (ra->ra_proto >= LAGG_PROTO_MAX) { 1082 error = EPROTONOSUPPORT; 1083 break; 1084 } 1085 LAGG_WLOCK(sc); 1086 if (sc->sc_proto != LAGG_PROTO_NONE) { 1087 /* Reset protocol first in case detach unlocks */ 1088 sc->sc_proto = LAGG_PROTO_NONE; 1089 error = sc->sc_detach(sc); 1090 sc->sc_detach = NULL; 1091 sc->sc_start = NULL; 1092 sc->sc_input = NULL; 1093 sc->sc_port_create = NULL; 1094 sc->sc_port_destroy = NULL; 1095 sc->sc_linkstate = NULL; 1096 sc->sc_init = NULL; 1097 sc->sc_stop = NULL; 1098 sc->sc_lladdr = NULL; 1099 sc->sc_req = NULL; 1100 sc->sc_portreq = NULL; 1101 } else if (sc->sc_input != NULL) { 1102 /* Still detaching */ 1103 error = EBUSY; 1104 } 1105 if (error != 0) { 1106 LAGG_WUNLOCK(sc); 1107 break; 1108 } 1109 for (int i = 0; i < (NELEM(lagg_protos)); i++) { 1110 if (lagg_protos[i].ti_proto == ra->ra_proto) { 1111 if (sc->sc_ifflags & IFF_DEBUG) 1112 kprintf("%s: using proto %u\n", 1113 sc->sc_ifname, 1114 lagg_protos[i].ti_proto); 1115 sc->sc_proto = lagg_protos[i].ti_proto; 1116 if (sc->sc_proto != LAGG_PROTO_NONE) 1117 error = lagg_protos[i].ti_attach(sc); 1118 LAGG_WUNLOCK(sc); 1119 return (error); 1120 } 1121 } 1122 LAGG_WUNLOCK(sc); 1123 error = EPROTONOSUPPORT; 1124 break; 1125 case SIOCGLAGGFLAGS: 1126 rf->rf_flags = sc->sc_flags; 1127 break; 1128 case SIOCSLAGGHASH: 1129 error = priv_check(td, PRIV_NET_LAGG); 1130 if (error) 1131 break; 1132 if ((rf->rf_flags & LAGG_F_HASHMASK) == 0) { 1133 error = EINVAL; 1134 break; 1135 } 1136 LAGG_WLOCK(sc); 1137 sc->sc_flags &= ~LAGG_F_HASHMASK; 1138 sc->sc_flags |= rf->rf_flags & LAGG_F_HASHMASK; 1139 LAGG_WUNLOCK(sc); 1140 break; 1141 case SIOCGLAGGPORT: 1142 /* 1143 * Release ifp serializers before ifnet_lock 1144 * to prevent lock order reversal. 1145 */ 1146 ifnet_deserialize_all(ifp); 1147 ifnet_lock(); 1148 if (rp->rp_portname[0] == '\0' || 1149 (tpif = ifunit(rp->rp_portname)) == NULL) { 1150 ifnet_unlock(); 1151 ifnet_serialize_all(ifp); 1152 error = EINVAL; 1153 break; 1154 } 1155 1156 LAGG_RLOCK(sc); 1157 if ((lp = (struct lagg_port *)tpif->if_lagg) == NULL || 1158 lp->lp_softc != sc) { 1159 error = ENOENT; 1160 LAGG_RUNLOCK(sc); 1161 ifnet_unlock(); 1162 ifnet_serialize_all(ifp); 1163 break; 1164 } 1165 1166 lagg_port2req(lp, rp); 1167 LAGG_RUNLOCK(sc); 1168 ifnet_unlock(); 1169 ifnet_serialize_all(ifp); 1170 break; 1171 case SIOCSLAGGPORT: 1172 error = priv_check(td, PRIV_NET_LAGG); 1173 if (error) 1174 break; 1175 /* 1176 * Release ifp serializers before ifnet_lock 1177 * to prevent lock order reversal. 1178 */ 1179 ifnet_deserialize_all(ifp); 1180 ifnet_lock(); 1181 if (rp->rp_portname[0] == '\0' || 1182 (tpif = ifunit(rp->rp_portname)) == NULL) { 1183 ifnet_unlock(); 1184 ifnet_serialize_all(ifp); 1185 error = EINVAL; 1186 break; 1187 } 1188 LAGG_WLOCK(sc); 1189 error = lagg_port_create(sc, tpif); 1190 LAGG_WUNLOCK(sc); 1191 ifnet_unlock(); 1192 ifnet_serialize_all(ifp); 1193 break; 1194 case SIOCSLAGGDELPORT: 1195 error = priv_check(td, PRIV_NET_LAGG); 1196 if (error) 1197 break; 1198 /* 1199 * Release ifp serializers before ifnet_lock 1200 * to prevent lock order reversal. 1201 */ 1202 ifnet_deserialize_all(ifp); 1203 ifnet_lock(); 1204 if (rp->rp_portname[0] == '\0' || 1205 (tpif = ifunit(rp->rp_portname)) == NULL) { 1206 ifnet_unlock(); 1207 ifnet_serialize_all(ifp); 1208 error = EINVAL; 1209 break; 1210 } 1211 1212 LAGG_WLOCK(sc); 1213 if ((lp = (struct lagg_port *)tpif->if_lagg) == NULL || 1214 lp->lp_softc != sc) { 1215 error = ENOENT; 1216 LAGG_WUNLOCK(sc); 1217 ifnet_unlock(); 1218 ifnet_serialize_all(ifp); 1219 break; 1220 } 1221 1222 error = lagg_port_destroy(lp, 1); 1223 LAGG_WUNLOCK(sc); 1224 ifnet_unlock(); 1225 ifnet_serialize_all(ifp); 1226 break; 1227 case SIOCSIFFLAGS: 1228 /* Set flags on ports too */ 1229 LAGG_WLOCK(sc); 1230 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 1231 lagg_setflags(lp, 1); 1232 } 1233 LAGG_WUNLOCK(sc); 1234 1235 if (!(ifp->if_flags & IFF_UP) && 1236 (ifp->if_flags & IFF_RUNNING)) { 1237 /* 1238 * If interface is marked down and it is running, 1239 * then stop and disable it. 1240 */ 1241 LAGG_WLOCK(sc); 1242 lagg_stop(sc); 1243 LAGG_WUNLOCK(sc); 1244 } else if ((ifp->if_flags & IFF_UP) && 1245 !(ifp->if_flags & IFF_RUNNING)) { 1246 /* 1247 * If interface is marked up and it is stopped, then 1248 * start it. 1249 */ 1250 (*ifp->if_init)(sc); 1251 } 1252 break; 1253 case SIOCADDMULTI: 1254 case SIOCDELMULTI: 1255 LAGG_WLOCK(sc); 1256 error = lagg_ether_setmulti(sc); 1257 LAGG_WUNLOCK(sc); 1258 break; 1259 case SIOCSIFMEDIA: 1260 case SIOCGIFMEDIA: 1261 error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd); 1262 break; 1263 1264 case SIOCSIFCAP: 1265 case SIOCSIFMTU: 1266 /* Do not allow the MTU or caps to be directly changed */ 1267 error = EINVAL; 1268 break; 1269 1270 default: 1271 error = ether_ioctl(ifp, cmd, data); 1272 break; 1273 } 1274 return (error); 1275 } 1276 1277 static int 1278 lagg_ether_setmulti(struct lagg_softc *sc) 1279 { 1280 struct lagg_port *lp; 1281 1282 LAGG_WLOCK_ASSERT(sc); 1283 1284 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 1285 /* First, remove any existing filter entries. */ 1286 lagg_ether_cmdmulti(lp, 0); 1287 /* copy all addresses from the lagg interface to the port */ 1288 lagg_ether_cmdmulti(lp, 1); 1289 } 1290 return (0); 1291 } 1292 1293 static int 1294 lagg_ether_cmdmulti(struct lagg_port *lp, int set) 1295 { 1296 struct lagg_softc *sc = lp->lp_softc; 1297 struct ifnet *ifp = lp->lp_ifp; 1298 struct ifnet *scifp = sc->sc_ifp; 1299 struct lagg_mc *mc; 1300 struct ifmultiaddr *ifma, *rifma = NULL; 1301 struct sockaddr_dl sdl; 1302 int error; 1303 1304 ASSERT_IFNET_NOT_SERIALIZED_ALL(ifp); 1305 LAGG_WLOCK_ASSERT(sc); 1306 1307 bzero((char *)&sdl, sizeof(sdl)); 1308 sdl.sdl_len = sizeof(sdl); 1309 sdl.sdl_family = AF_LINK; 1310 sdl.sdl_type = IFT_ETHER; 1311 sdl.sdl_alen = ETHER_ADDR_LEN; 1312 sdl.sdl_index = ifp->if_index; 1313 1314 if (set) { 1315 TAILQ_FOREACH(ifma, &scifp->if_multiaddrs, ifma_link) { 1316 if (ifma->ifma_addr->sa_family != AF_LINK) 1317 continue; 1318 bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr), 1319 LLADDR(&sdl), ETHER_ADDR_LEN); 1320 1321 error = if_addmulti(ifp, (struct sockaddr *)&sdl, &rifma); 1322 if (error) 1323 return (error); 1324 mc = kmalloc(sizeof(struct lagg_mc), M_DEVBUF, M_NOWAIT); 1325 if (mc == NULL) 1326 return (ENOMEM); 1327 mc->mc_ifma = rifma; 1328 SLIST_INSERT_HEAD(&lp->lp_mc_head, mc, mc_entries); 1329 } 1330 } else { 1331 while ((mc = SLIST_FIRST(&lp->lp_mc_head)) != NULL) { 1332 SLIST_REMOVE(&lp->lp_mc_head, mc, lagg_mc, mc_entries); 1333 if_delmulti(ifp, (struct sockaddr *)mc->mc_ifma); 1334 kfree(mc, M_DEVBUF); 1335 } 1336 } 1337 return (0); 1338 } 1339 1340 /* Handle a ref counted flag that should be set on the lagg port as well */ 1341 static int 1342 lagg_setflag(struct lagg_port *lp, int flag, int status, 1343 int (*func)(struct ifnet *, int)) 1344 { 1345 struct lagg_softc *sc = lp->lp_softc; 1346 struct ifnet *scifp = sc->sc_ifp; 1347 struct ifnet *ifp = lp->lp_ifp; 1348 int error; 1349 1350 LAGG_WLOCK_ASSERT(sc); 1351 ASSERT_IFNET_NOT_SERIALIZED_ALL(ifp); 1352 1353 status = status ? (scifp->if_flags & flag) : 0; 1354 /* Now "status" contains the flag value or 0 */ 1355 1356 /* 1357 * See if recorded ports status is different from what 1358 * we want it to be. If it is, flip it. We record ports 1359 * status in lp_ifflags so that we won't clear ports flag 1360 * we haven't set. In fact, we don't clear or set ports 1361 * flags directly, but get or release references to them. 1362 * That's why we can be sure that recorded flags still are 1363 * in accord with actual ports flags. 1364 */ 1365 if (status != (lp->lp_ifflags & flag)) { 1366 error = (*func)(ifp, status); 1367 if (error) 1368 return (error); 1369 lp->lp_ifflags &= ~flag; 1370 lp->lp_ifflags |= status; 1371 } 1372 return (0); 1373 } 1374 1375 /* 1376 * Handle IFF_* flags that require certain changes on the lagg port 1377 * if "status" is true, update ports flags respective to the lagg 1378 * if "status" is false, forcedly clear the flags set on port. 1379 */ 1380 static int 1381 lagg_setflags(struct lagg_port *lp, int status) 1382 { 1383 int error, i; 1384 1385 ASSERT_IFNET_NOT_SERIALIZED_ALL(lp->lp_ifp); 1386 1387 for (i = 0; lagg_pflags[i].flag; i++) { 1388 error = lagg_setflag(lp, lagg_pflags[i].flag, 1389 status, lagg_pflags[i].func); 1390 if (error) 1391 return (error); 1392 } 1393 return (0); 1394 } 1395 1396 1397 #if 0 /* XXX not needed? */ 1398 static int 1399 lagg_output(struct ifnet *ifp, struct mbuf *m) 1400 { 1401 struct lagg_softc *sc = ifp->if_softc; 1402 int error, len, mcast; 1403 1404 len = m->m_pkthdr.len; 1405 mcast = (m->m_flags & (M_MCAST | M_BCAST)) ? 1 : 0; 1406 1407 LAGG_RLOCK(sc); 1408 /* We need a Tx algorithm and at least one port */ 1409 if (sc->sc_proto == LAGG_PROTO_NONE || sc->sc_count == 0) { 1410 LAGG_RUNLOCK(sc); 1411 m_freem(m); 1412 ifp->if_oerrors++; 1413 return (ENXIO); 1414 } 1415 1416 BPF_MTAP(ifp, m); 1417 1418 error = (*sc->sc_start)(sc, m); 1419 LAGG_RUNLOCK(sc); 1420 1421 if (error == 0) { 1422 IFNET_STAT_INC(ifp, opackets, 1); 1423 IFNET_STAT_INC(ifp, obytes, len); 1424 ifp->if_omcasts += mcast; 1425 } else 1426 ifp->if_oerrors++; 1427 1428 return error; 1429 } 1430 #endif 1431 1432 #if 0 /* XXX */ 1433 /* 1434 * The ifp->if_qflush entry point for lagg(4) is no-op. 1435 */ 1436 static void 1437 lagg_qflush(struct ifnet *ifp __unused) 1438 { 1439 } 1440 #endif 1441 static void 1442 lagg_input(struct ifnet *ifp, struct mbuf *m) 1443 { 1444 struct lagg_port *lp = ifp->if_lagg; 1445 struct lagg_softc *sc = lp->lp_softc; 1446 struct ifnet *scifp = sc->sc_ifp; 1447 1448 LAGG_RLOCK(sc); 1449 if ((scifp->if_flags & IFF_RUNNING) == 0 || 1450 (lp->lp_flags & LAGG_PORT_DISABLED) || 1451 sc->sc_proto == LAGG_PROTO_NONE) { 1452 LAGG_RUNLOCK(sc); 1453 m_freem(m); 1454 return; 1455 } 1456 1457 BPF_MTAP(scifp, m); 1458 m = (*sc->sc_input)(sc, lp, m); 1459 1460 LAGG_RUNLOCK(sc); 1461 1462 if (m != NULL) { 1463 IFNET_STAT_INC(ifp, ipackets, 1); 1464 IFNET_STAT_INC(ifp, ibytes, m->m_pkthdr.len); 1465 1466 if (scifp->if_flags & IFF_MONITOR) { 1467 m_freem(m); 1468 m = NULL; 1469 } 1470 ether_reinput_oncpu(scifp, m, REINPUT_RUNBPF); 1471 } 1472 } 1473 1474 static int 1475 lagg_media_change(struct ifnet *ifp) 1476 { 1477 struct lagg_softc *sc = (struct lagg_softc *)ifp->if_softc; 1478 1479 if (sc->sc_ifflags & IFF_DEBUG) 1480 kprintf("%s\n", __func__); 1481 /* Ignore */ 1482 return (0); 1483 } 1484 1485 static void 1486 lagg_media_status(struct ifnet *ifp, struct ifmediareq *imr) 1487 { 1488 struct lagg_softc *sc = (struct lagg_softc *)ifp->if_softc; 1489 struct lagg_port *lp; 1490 1491 imr->ifm_status = IFM_AVALID; 1492 imr->ifm_active = IFM_ETHER | IFM_AUTO; 1493 1494 LAGG_RLOCK(sc); 1495 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 1496 if (LAGG_PORTACTIVE(lp)) 1497 imr->ifm_status |= IFM_ACTIVE; 1498 } 1499 LAGG_RUNLOCK(sc); 1500 } 1501 1502 static void 1503 lagg_linkstate(struct lagg_softc *sc) 1504 { 1505 struct lagg_port *lp; 1506 int new_link = LINK_STATE_DOWN; 1507 uint64_t speed; 1508 1509 /* Our link is considered up if at least one of our ports is active */ 1510 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) { 1511 if (lp->lp_link_state == LINK_STATE_UP) { 1512 new_link = LINK_STATE_UP; 1513 break; 1514 } 1515 } 1516 if_link_state_change(sc->sc_ifp); 1517 1518 /* Update if_baudrate to reflect the max possible speed */ 1519 switch (sc->sc_proto) { 1520 case LAGG_PROTO_FAILOVER: 1521 sc->sc_ifp->if_baudrate = sc->sc_primary != NULL ? 1522 sc->sc_primary->lp_ifp->if_baudrate : 0; 1523 break; 1524 case LAGG_PROTO_ROUNDROBIN: 1525 case LAGG_PROTO_LOADBALANCE: 1526 case LAGG_PROTO_ETHERCHANNEL: 1527 speed = 0; 1528 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 1529 speed += lp->lp_ifp->if_baudrate; 1530 sc->sc_ifp->if_baudrate = speed; 1531 break; 1532 case LAGG_PROTO_LACP: 1533 /* LACP updates if_baudrate itself */ 1534 break; 1535 } 1536 } 1537 1538 #if 0 /* XXX */ 1539 static void 1540 lagg_port_state(struct ifnet *ifp, int state) 1541 { 1542 struct lagg_port *lp = (struct lagg_port *)ifp->if_lagg; 1543 struct lagg_softc *sc = NULL; 1544 1545 if (lp != NULL) 1546 sc = lp->lp_softc; 1547 if (sc == NULL) 1548 return; 1549 1550 LAGG_WLOCK(sc); 1551 lagg_linkstate(sc); 1552 if (sc->sc_linkstate != NULL) 1553 (*sc->sc_linkstate)(lp); 1554 LAGG_WUNLOCK(sc); 1555 } 1556 #endif 1557 1558 struct lagg_port * 1559 lagg_link_active(struct lagg_softc *sc, struct lagg_port *lp) 1560 { 1561 struct lagg_port *lp_next, *rval = NULL; 1562 // int new_link = LINK_STATE_DOWN; 1563 1564 LAGG_RLOCK_ASSERT(sc); 1565 /* 1566 * Search a port which reports an active link state. 1567 */ 1568 1569 if (lp == NULL) 1570 goto search; 1571 if (LAGG_PORTACTIVE(lp)) { 1572 rval = lp; 1573 goto found; 1574 } 1575 if ((lp_next = SLIST_NEXT(lp, lp_entries)) != NULL && 1576 LAGG_PORTACTIVE(lp_next)) { 1577 rval = lp_next; 1578 goto found; 1579 } 1580 1581 search: 1582 SLIST_FOREACH(lp_next, &sc->sc_ports, lp_entries) { 1583 if (LAGG_PORTACTIVE(lp_next)) { 1584 rval = lp_next; 1585 goto found; 1586 } 1587 } 1588 1589 found: 1590 if (rval != NULL) { 1591 /* 1592 * The IEEE 802.1D standard assumes that a lagg with 1593 * multiple ports is always full duplex. This is valid 1594 * for load sharing laggs and if at least two links 1595 * are active. Unfortunately, checking the latter would 1596 * be too expensive at this point. 1597 XXX 1598 if ((sc->sc_capabilities & IFCAP_LAGG_FULLDUPLEX) && 1599 (sc->sc_count > 1)) 1600 new_link = LINK_STATE_FULL_DUPLEX; 1601 else 1602 new_link = rval->lp_link_state; 1603 */ 1604 } 1605 1606 return (rval); 1607 } 1608 1609 static const void * 1610 lagg_gethdr(struct mbuf *m, u_int off, u_int len, void *buf) 1611 { 1612 if (m->m_pkthdr.len < (off + len)) { 1613 return (NULL); 1614 } else if (m->m_len < (off + len)) { 1615 m_copydata(m, off, len, buf); 1616 return (buf); 1617 } 1618 return (mtod(m, char *) + off); 1619 } 1620 1621 static int 1622 lagg_sysctl_active(SYSCTL_HANDLER_ARGS) 1623 { 1624 struct lagg_softc *sc = (struct lagg_softc *)arg1; 1625 struct lagg_port *lp; 1626 int error; 1627 1628 /* LACP tracks active links automatically, the others do not */ 1629 if (sc->sc_proto != LAGG_PROTO_LACP) { 1630 sc->sc_active = 0; 1631 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 1632 sc->sc_active += LAGG_PORTACTIVE(lp); 1633 } 1634 1635 error = sysctl_handle_int(oidp, &sc->sc_active, 0, req); 1636 if ((error) || (req->newptr == NULL)) 1637 return (error); 1638 1639 return (0); 1640 } 1641 1642 uint32_t 1643 lagg_hashmbuf(struct lagg_softc *sc, struct mbuf *m, uint32_t key) 1644 { 1645 uint16_t etype; 1646 uint32_t p = key; 1647 int off; 1648 struct ether_header *eh; 1649 const struct ether_vlan_header *vlan; 1650 #ifdef INET 1651 const struct ip *ip; 1652 const uint32_t *ports; 1653 int iphlen; 1654 #endif 1655 #ifdef INET6 1656 const struct ip6_hdr *ip6; 1657 uint32_t flow; 1658 #endif 1659 union { 1660 #ifdef INET 1661 struct ip ip; 1662 #endif 1663 #ifdef INET6 1664 struct ip6_hdr ip6; 1665 #endif 1666 struct ether_vlan_header vlan; 1667 uint32_t port; 1668 } buf; 1669 1670 1671 off = sizeof(*eh); 1672 if (m->m_len < off) 1673 goto out; 1674 eh = mtod(m, struct ether_header *); 1675 etype = ntohs(eh->ether_type); 1676 if (sc->sc_flags & LAGG_F_HASHL2) { 1677 p = hash32_buf(&eh->ether_shost, ETHER_ADDR_LEN, p); 1678 p = hash32_buf(&eh->ether_dhost, ETHER_ADDR_LEN, p); 1679 } 1680 1681 /* Special handling for encapsulating VLAN frames */ 1682 #if 0 /* XXX */ 1683 if ((m->m_flags & M_VLANTAG) && (sc->sc_flags & LAGG_F_HASHL2)) { 1684 p = hash32_buf(&m->m_pkthdr.ether_vtag, 1685 sizeof(m->m_pkthdr.ether_vtag), p); 1686 } else 1687 #endif 1688 if (etype == ETHERTYPE_VLAN) { 1689 vlan = lagg_gethdr(m, off, sizeof(*vlan), &buf); 1690 if (vlan == NULL) 1691 goto out; 1692 1693 if (sc->sc_flags & LAGG_F_HASHL2) 1694 p = hash32_buf(&vlan->evl_tag, sizeof(vlan->evl_tag), p); 1695 etype = ntohs(vlan->evl_proto); 1696 off += sizeof(*vlan) - sizeof(*eh); 1697 } 1698 1699 switch (etype) { 1700 #ifdef INET 1701 case ETHERTYPE_IP: 1702 ip = lagg_gethdr(m, off, sizeof(*ip), &buf); 1703 if (ip == NULL) 1704 goto out; 1705 1706 if (sc->sc_flags & LAGG_F_HASHL3) { 1707 p = hash32_buf(&ip->ip_src, sizeof(struct in_addr), p); 1708 p = hash32_buf(&ip->ip_dst, sizeof(struct in_addr), p); 1709 } 1710 if (!(sc->sc_flags & LAGG_F_HASHL4)) 1711 break; 1712 switch (ip->ip_p) { 1713 case IPPROTO_TCP: 1714 case IPPROTO_UDP: 1715 iphlen = ip->ip_hl << 2; 1716 if (iphlen < sizeof(*ip)) 1717 break; 1718 off += iphlen; 1719 ports = lagg_gethdr(m, off, sizeof(*ports), &buf); 1720 if (ports == NULL) 1721 break; 1722 p = hash32_buf(ports, sizeof(*ports), p); 1723 break; 1724 } 1725 break; 1726 #endif 1727 #ifdef INET6 1728 case ETHERTYPE_IPV6: 1729 if (!(sc->sc_flags & LAGG_F_HASHL3)) 1730 break; 1731 ip6 = lagg_gethdr(m, off, sizeof(*ip6), &buf); 1732 if (ip6 == NULL) 1733 goto out; 1734 1735 p = hash32_buf(&ip6->ip6_src, sizeof(struct in6_addr), p); 1736 p = hash32_buf(&ip6->ip6_dst, sizeof(struct in6_addr), p); 1737 flow = ip6->ip6_flow & IPV6_FLOWLABEL_MASK; 1738 p = hash32_buf(&flow, sizeof(flow), p); /* IPv6 flow label */ 1739 break; 1740 #endif 1741 } 1742 out: 1743 return (p); 1744 } 1745 1746 static void 1747 lagg_start(struct ifnet *ifp, struct ifaltq_subque *ifsq) 1748 { 1749 struct lagg_softc *sc = ifp->if_softc; 1750 struct mbuf *m; 1751 struct ifnet *ifp_p; 1752 struct netmsg_packet *nmp; 1753 lwkt_port_t p_port; 1754 1755 ASSERT_ALTQ_SQ_DEFAULT(ifp, ifsq); 1756 ASSERT_ALTQ_SQ_SERIALIZED_HW(ifsq); 1757 1758 if (((ifp->if_flags & IFF_RUNNING) == 0) 1759 || (sc->sc_proto == LAGG_PROTO_NONE) 1760 || (sc->sc_count == 0)) { 1761 ifsq_purge(ifsq); 1762 return; 1763 } 1764 1765 1766 LAGG_RLOCK(sc); 1767 for (;;) { 1768 m = ifsq_dequeue(ifsq); 1769 if (m == NULL){ 1770 break; 1771 } 1772 // Choose output port 1773 ifp_p = (*sc->sc_select_tx_port)(sc, m); 1774 1775 if (ifp_p == NULL) { 1776 ifsq_purge(ifsq); 1777 break; 1778 } 1779 p_port = netisr_cpuport( 1780 ifsq_get_cpuid(ifq_get_subq_default(&ifp_p->if_snd))); 1781 1782 BPF_MTAP(ifp, m); 1783 1784 nmp = &m->m_hdr.mh_netmsg; 1785 1786 netmsg_init(&nmp->base, NULL, &netisr_apanic_rport, 1787 0, lagg_start_dispatch); 1788 nmp->nm_packet = m; 1789 nmp->base.lmsg.u.ms_resultp = ifp_p; 1790 1791 lwkt_sendmsg(p_port, &nmp->base.lmsg); 1792 IFNET_STAT_INC(ifp, opackets, 1); 1793 } 1794 LAGG_RUNLOCK(sc); 1795 } 1796 1797 1798 static void 1799 lagg_start_dispatch(netmsg_t msg) 1800 { 1801 struct netmsg_packet *nmp = &msg->packet; 1802 struct mbuf *m; 1803 struct ifnet *ifp; 1804 struct altq_pktattr pktattr; 1805 1806 m = nmp->nm_packet; 1807 ifp = msg->lmsg.u.ms_resultp; 1808 1809 M_ASSERTPKTHDR(m); 1810 1811 /* Does altq mix with lacp? */ 1812 if (ifq_is_enabled(&ifp->if_snd)) 1813 altq_etherclassify(&ifp->if_snd, m, &pktattr); 1814 1815 ifq_dispatch(ifp, m, &pktattr); 1816 } 1817 1818 1819 int 1820 lagg_enqueue(struct ifnet *ifp, struct mbuf *m) 1821 { 1822 struct altq_pktattr pktattr; 1823 1824 if (ifq_is_enabled(&ifp->if_snd)) 1825 altq_etherclassify(&ifp->if_snd, m, &pktattr); 1826 1827 ifq_dispatch(ifp, m, &pktattr); 1828 return 0; 1829 } 1830 1831 /* 1832 * Simple round robin aggregation 1833 */ 1834 static int 1835 lagg_rr_attach(struct lagg_softc *sc) 1836 { 1837 sc->sc_detach = lagg_rr_detach; 1838 sc->sc_input = lagg_rr_input; 1839 sc->sc_select_tx_port = lagg_rr_select_tx_port; 1840 sc->sc_port_create = NULL; 1841 sc->sc_capabilities = IFCAP_LAGG_FULLDUPLEX; 1842 sc->sc_seq = 0; 1843 1844 return (0); 1845 } 1846 1847 static int 1848 lagg_rr_detach(struct lagg_softc *sc) 1849 { 1850 return (0); 1851 } 1852 1853 static struct ifnet * 1854 lagg_rr_select_tx_port(struct lagg_softc *sc, struct mbuf *m) 1855 { 1856 struct lagg_port *lp; 1857 uint32_t p; 1858 1859 p = atomic_fetchadd_32(&sc->sc_seq, 1); 1860 p %= sc->sc_count; 1861 lp = SLIST_FIRST(&sc->sc_ports); 1862 while (p--) 1863 lp = SLIST_NEXT(lp, lp_entries); 1864 1865 /* 1866 * Check the port's link state. This will return the next active 1867 * port if the link is down or the port is NULL. 1868 */ 1869 if ((lp = lagg_link_active(sc, lp)) == NULL) { 1870 return (NULL); 1871 } 1872 1873 return (lp->lp_ifp); 1874 } 1875 1876 static struct mbuf * 1877 lagg_rr_input(struct lagg_softc *sc, struct lagg_port *lp, struct mbuf *m) 1878 { 1879 struct ifnet *ifp = sc->sc_ifp; 1880 1881 /* Just pass in the packet to our lagg device */ 1882 m->m_pkthdr.rcvif = ifp; 1883 1884 return (m); 1885 } 1886 1887 /* 1888 * Active failover 1889 */ 1890 1891 static int 1892 lagg_fail_attach(struct lagg_softc *sc) 1893 { 1894 sc->sc_detach = lagg_fail_detach; 1895 sc->sc_select_tx_port = lagg_fail_select_tx_port; 1896 sc->sc_input = lagg_fail_input; 1897 sc->sc_port_create = NULL; 1898 sc->sc_port_destroy = NULL; 1899 1900 return (0); 1901 } 1902 1903 static int 1904 lagg_fail_detach(struct lagg_softc *sc) 1905 { 1906 return (0); 1907 } 1908 1909 struct ifnet * 1910 lagg_fail_select_tx_port(struct lagg_softc *sc, struct mbuf *m) 1911 { 1912 struct lagg_port *lp; 1913 1914 if ((lp = lagg_link_active(sc, sc->sc_primary)) == NULL) 1915 return NULL; 1916 1917 return lp->lp_ifp; 1918 } 1919 1920 static struct mbuf * 1921 lagg_fail_input(struct lagg_softc *sc, struct lagg_port *lp, struct mbuf *m) 1922 { 1923 struct ifnet *ifp = sc->sc_ifp; 1924 struct lagg_port *tmp_tp; 1925 1926 if (lp == sc->sc_primary || lagg_failover_rx_all) { 1927 m->m_pkthdr.rcvif = ifp; 1928 return (m); 1929 } 1930 1931 if (!LAGG_PORTACTIVE(sc->sc_primary)) { 1932 tmp_tp = lagg_link_active(sc, sc->sc_primary); 1933 /* 1934 * If tmp_tp is null, we've recieved a packet when all 1935 * our links are down. Weird, but process it anyways. 1936 */ 1937 if ((tmp_tp == NULL || tmp_tp == lp)) { 1938 m->m_pkthdr.rcvif = ifp; 1939 return (m); 1940 } 1941 } 1942 1943 m_freem(m); 1944 return (NULL); 1945 } 1946 1947 /* 1948 * Loadbalancing 1949 */ 1950 1951 static int 1952 lagg_lb_attach(struct lagg_softc *sc) 1953 { 1954 struct lagg_port *lp; 1955 struct lagg_lb *lb; 1956 1957 if ((lb = (struct lagg_lb *)kmalloc(sizeof(struct lagg_lb), 1958 M_DEVBUF, M_NOWAIT|M_ZERO)) == NULL) 1959 return (ENOMEM); 1960 1961 sc->sc_detach = lagg_lb_detach; 1962 sc->sc_select_tx_port = lagg_lb_select_tx_port; 1963 sc->sc_input = lagg_lb_input; 1964 sc->sc_port_create = lagg_lb_port_create; 1965 sc->sc_port_destroy = lagg_lb_port_destroy; 1966 sc->sc_capabilities = IFCAP_LAGG_FULLDUPLEX; 1967 1968 lb->lb_key = karc4random(); 1969 sc->sc_psc = (caddr_t)lb; 1970 1971 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 1972 lagg_lb_port_create(lp); 1973 1974 return (0); 1975 } 1976 1977 static int 1978 lagg_lb_detach(struct lagg_softc *sc) 1979 { 1980 struct lagg_lb *lb = (struct lagg_lb *)sc->sc_psc; 1981 if (lb != NULL) 1982 kfree(lb, M_DEVBUF); 1983 return (0); 1984 } 1985 1986 static int 1987 lagg_lb_porttable(struct lagg_softc *sc, struct lagg_port *lp) 1988 { 1989 struct lagg_lb *lb = (struct lagg_lb *)sc->sc_psc; 1990 struct lagg_port *lp_next; 1991 int i = 0; 1992 1993 bzero(&lb->lb_ports, sizeof(lb->lb_ports)); 1994 SLIST_FOREACH(lp_next, &sc->sc_ports, lp_entries) { 1995 if (lp_next == lp) 1996 continue; 1997 if (i >= LAGG_MAX_PORTS) 1998 return (EINVAL); 1999 if (sc->sc_ifflags & IFF_DEBUG) 2000 kprintf("%s: port %s at index %d\n", 2001 sc->sc_ifname, lp_next->lp_ifname, i); 2002 lb->lb_ports[i++] = lp_next; 2003 } 2004 2005 return (0); 2006 } 2007 2008 static int 2009 lagg_lb_port_create(struct lagg_port *lp) 2010 { 2011 struct lagg_softc *sc = lp->lp_softc; 2012 return (lagg_lb_porttable(sc, NULL)); 2013 } 2014 2015 static void 2016 lagg_lb_port_destroy(struct lagg_port *lp) 2017 { 2018 struct lagg_softc *sc = lp->lp_softc; 2019 lagg_lb_porttable(sc, lp); 2020 } 2021 2022 2023 struct ifnet * 2024 lagg_lb_select_tx_port(struct lagg_softc *sc, struct mbuf *m) 2025 { 2026 struct lagg_lb *lb = (struct lagg_lb *)sc->sc_psc; 2027 struct lagg_port *lp = NULL; 2028 uint32_t p = 0; 2029 2030 /* XXX 2031 if (sc->use_flowid && (m->m_flags & M_FLOWID)) 2032 p = m->m_pkthdr.flowid; 2033 else 2034 */ 2035 p = lagg_hashmbuf(sc, m, lb->lb_key); 2036 p %= sc->sc_count; 2037 lp = lb->lb_ports[p]; 2038 2039 /* 2040 * Check the port's link state. This will return the next active 2041 * port if the link is down or the port is NULL. 2042 */ 2043 if ((lp = lagg_link_active(sc, lp)) == NULL) 2044 return NULL; 2045 2046 return lp->lp_ifp; 2047 } 2048 2049 static struct mbuf * 2050 lagg_lb_input(struct lagg_softc *sc, struct lagg_port *lp, struct mbuf *m) 2051 { 2052 struct ifnet *ifp = sc->sc_ifp; 2053 2054 /* Just pass in the packet to our lagg device */ 2055 m->m_pkthdr.rcvif = ifp; 2056 2057 return (m); 2058 } 2059 2060 /* 2061 * 802.3ad LACP 2062 */ 2063 static int 2064 lagg_lacp_attach(struct lagg_softc *sc) 2065 { 2066 struct lagg_port *lp; 2067 int error; 2068 2069 sc->sc_detach = lagg_lacp_detach; 2070 sc->sc_port_create = lacp_port_create; 2071 sc->sc_port_destroy = lacp_port_destroy; 2072 sc->sc_linkstate = lacp_linkstate; 2073 sc->sc_select_tx_port = lagg_lacp_select_tx_port; 2074 sc->sc_input = lagg_lacp_input; 2075 sc->sc_init = lacp_init; 2076 sc->sc_stop = lacp_stop; 2077 sc->sc_lladdr = lagg_lacp_lladdr; 2078 sc->sc_req = lacp_req; 2079 sc->sc_portreq = lacp_portreq; 2080 2081 error = lacp_attach(sc); 2082 if (error) 2083 return (error); 2084 2085 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 2086 lacp_port_create(lp); 2087 2088 return (error); 2089 } 2090 2091 static int 2092 lagg_lacp_detach(struct lagg_softc *sc) 2093 { 2094 struct lagg_port *lp; 2095 int error; 2096 2097 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 2098 lacp_port_destroy(lp); 2099 2100 /* unlocking is safe here */ 2101 LAGG_WUNLOCK(sc); 2102 error = lacp_detach(sc); 2103 LAGG_WLOCK(sc); 2104 2105 return (error); 2106 } 2107 2108 static void 2109 lagg_lacp_lladdr(struct lagg_softc *sc) 2110 { 2111 struct lagg_port *lp; 2112 2113 /* purge all the lacp ports */ 2114 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 2115 lacp_port_destroy(lp); 2116 2117 /* add them back in */ 2118 SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) 2119 lacp_port_create(lp); 2120 } 2121 2122 struct ifnet * 2123 lagg_lacp_select_tx_port(struct lagg_softc *sc, struct mbuf *m) 2124 { 2125 struct lagg_port *lp; 2126 lp = lacp_select_tx_port(sc, m); 2127 if (lp == NULL) 2128 return NULL; 2129 2130 return lp->lp_ifp; 2131 } 2132 2133 static struct mbuf * 2134 lagg_lacp_input(struct lagg_softc *sc, struct lagg_port *lp, struct mbuf *m) 2135 { 2136 struct ifnet *ifp = sc->sc_ifp; 2137 struct ether_header *eh; 2138 u_short etype; 2139 2140 eh = mtod(m, struct ether_header *); 2141 etype = ntohs(eh->ether_type); 2142 2143 /* Tap off LACP control messages */ 2144 if ((m->m_flags & M_VLANTAG) == 0 && etype == ETHERTYPE_SLOW) { 2145 m = lacp_input(lp, m); 2146 if (m == NULL) 2147 return (NULL); 2148 } 2149 2150 /* 2151 * If the port is not collecting or not in the active aggregator then 2152 * free and return. 2153 */ 2154 if (lacp_iscollecting(lp) == 0 || lacp_isactive(lp) == 0) { 2155 m_freem(m); 2156 return (NULL); 2157 } 2158 2159 m->m_pkthdr.rcvif = ifp; 2160 return (m); 2161 } 2162 2163 static void 2164 lagg_callout(void *arg) 2165 { 2166 struct lagg_softc *sc = (struct lagg_softc *)arg; 2167 #if 0 /* XXX */ 2168 struct ifnet *ifp = sc->sc_ifp; 2169 2170 ifp->if_ipackets = counter_u64_fetch(sc->sc_ipackets); 2171 ifp->if_opackets = counter_u64_fetch(sc->sc_opackets); 2172 ifp->if_ibytes = counter_u64_fetch(sc->sc_ibytes); 2173 ifp->if_obytes = counter_u64_fetch(sc->sc_obytes); 2174 #endif 2175 2176 callout_reset(&sc->sc_callout, hz, lagg_callout, sc); 2177 } 2178