The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/net/if_bridge.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $NetBSD: if_bridge.c,v 1.31 2005/06/01 19:45:34 jdc Exp $       */
    2 
    3 /*
    4  * Copyright 2001 Wasabi Systems, Inc.
    5  * All rights reserved.
    6  *
    7  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
    8  *
    9  * Redistribution and use in source and binary forms, with or without
   10  * modification, are permitted provided that the following conditions
   11  * are met:
   12  * 1. Redistributions of source code must retain the above copyright
   13  *    notice, this list of conditions and the following disclaimer.
   14  * 2. Redistributions in binary form must reproduce the above copyright
   15  *    notice, this list of conditions and the following disclaimer in the
   16  *    documentation and/or other materials provided with the distribution.
   17  * 3. All advertising materials mentioning features or use of this software
   18  *    must display the following acknowledgement:
   19  *      This product includes software developed for the NetBSD Project by
   20  *      Wasabi Systems, Inc.
   21  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
   22  *    or promote products derived from this software without specific prior
   23  *    written permission.
   24  *
   25  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
   26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
   27  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   28  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
   29  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   30  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   32  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   33  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   34  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   35  * POSSIBILITY OF SUCH DAMAGE.
   36  */
   37 
   38 /*
   39  * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net)
   40  * All rights reserved.
   41  *
   42  * Redistribution and use in source and binary forms, with or without
   43  * modification, are permitted provided that the following conditions
   44  * are met:
   45  * 1. Redistributions of source code must retain the above copyright
   46  *    notice, this list of conditions and the following disclaimer.
   47  * 2. Redistributions in binary form must reproduce the above copyright
   48  *    notice, this list of conditions and the following disclaimer in the
   49  *    documentation and/or other materials provided with the distribution.
   50  *
   51  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   52  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
   53  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   54  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
   55  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   56  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
   57  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   58  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   59  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
   60  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   61  * POSSIBILITY OF SUCH DAMAGE.
   62  *
   63  * OpenBSD: if_bridge.c,v 1.60 2001/06/15 03:38:33 itojun Exp
   64  */
   65 
   66 /*
   67  * Network interface bridge support.
   68  *
   69  * TODO:
   70  *
   71  *      - Currently only supports Ethernet-like interfaces (Ethernet,
   72  *        802.11, VLANs on Ethernet, etc.)  Figure out a nice way
   73  *        to bridge other types of interfaces (FDDI-FDDI, and maybe
   74  *        consider heterogeneous bridges).
   75  */
   76 
   77 #include <sys/cdefs.h>
   78 __FBSDID("$FreeBSD$");
   79 
   80 #include "opt_inet.h"
   81 #include "opt_inet6.h"
   82 
   83 #include <sys/param.h>
   84 #include <sys/eventhandler.h>
   85 #include <sys/mbuf.h>
   86 #include <sys/malloc.h>
   87 #include <sys/protosw.h>
   88 #include <sys/systm.h>
   89 #include <sys/jail.h>
   90 #include <sys/time.h>
   91 #include <sys/socket.h> /* for net/if.h */
   92 #include <sys/sockio.h>
   93 #include <sys/ctype.h>  /* string functions */
   94 #include <sys/kernel.h>
   95 #include <sys/random.h>
   96 #include <sys/syslog.h>
   97 #include <sys/sysctl.h>
   98 #include <vm/uma.h>
   99 #include <sys/module.h>
  100 #include <sys/priv.h>
  101 #include <sys/proc.h>
  102 #include <sys/lock.h>
  103 #include <sys/mutex.h>
  104 
  105 #include <net/bpf.h>
  106 #include <net/if.h>
  107 #include <net/if_clone.h>
  108 #include <net/if_dl.h>
  109 #include <net/if_types.h>
  110 #include <net/if_var.h>
  111 #include <net/pfil.h>
  112 #include <net/vnet.h>
  113 
  114 #include <netinet/in.h>
  115 #include <netinet/in_systm.h>
  116 #include <netinet/in_var.h>
  117 #include <netinet/ip.h>
  118 #include <netinet/ip_var.h>
  119 #ifdef INET6
  120 #include <netinet/ip6.h>
  121 #include <netinet6/ip6_var.h>
  122 #include <netinet6/in6_ifattach.h>
  123 #endif
  124 #if defined(INET) || defined(INET6)
  125 #include <netinet/ip_carp.h>
  126 #endif
  127 #include <machine/in_cksum.h>
  128 #include <netinet/if_ether.h>
  129 #include <net/bridgestp.h>
  130 #include <net/if_bridgevar.h>
  131 #include <net/if_llc.h>
  132 #include <net/if_vlan_var.h>
  133 
  134 #include <net/route.h>
  135 
  136 /*
  137  * Size of the route hash table.  Must be a power of two.
  138  */
  139 #ifndef BRIDGE_RTHASH_SIZE
  140 #define BRIDGE_RTHASH_SIZE              1024
  141 #endif
  142 
  143 #define BRIDGE_RTHASH_MASK              (BRIDGE_RTHASH_SIZE - 1)
  144 
  145 /*
  146  * Default maximum number of addresses to cache.
  147  */
  148 #ifndef BRIDGE_RTABLE_MAX
  149 #define BRIDGE_RTABLE_MAX               2000
  150 #endif
  151 
  152 /*
  153  * Timeout (in seconds) for entries learned dynamically.
  154  */
  155 #ifndef BRIDGE_RTABLE_TIMEOUT
  156 #define BRIDGE_RTABLE_TIMEOUT           (20 * 60)       /* same as ARP */
  157 #endif
  158 
  159 /*
  160  * Number of seconds between walks of the route list.
  161  */
  162 #ifndef BRIDGE_RTABLE_PRUNE_PERIOD
  163 #define BRIDGE_RTABLE_PRUNE_PERIOD      (5 * 60)
  164 #endif
  165 
  166 /*
  167  * List of capabilities to possibly mask on the member interface.
  168  */
  169 #define BRIDGE_IFCAPS_MASK              (IFCAP_TOE|IFCAP_TSO|IFCAP_TXCSUM|\
  170                                          IFCAP_TXCSUM_IPV6)
  171 
  172 /*
  173  * List of capabilities to strip
  174  */
  175 #define BRIDGE_IFCAPS_STRIP             IFCAP_LRO
  176 
  177 /*
  178  * Bridge interface list entry.
  179  */
  180 struct bridge_iflist {
  181         LIST_ENTRY(bridge_iflist) bif_next;
  182         struct ifnet            *bif_ifp;       /* member if */
  183         struct bstp_port        bif_stp;        /* STP state */
  184         uint32_t                bif_flags;      /* member if flags */
  185         int                     bif_savedcaps;  /* saved capabilities */
  186         uint32_t                bif_addrmax;    /* max # of addresses */
  187         uint32_t                bif_addrcnt;    /* cur. # of addresses */
  188         uint32_t                bif_addrexceeded;/* # of address violations */
  189 };
  190 
  191 /*
  192  * Bridge route node.
  193  */
  194 struct bridge_rtnode {
  195         LIST_ENTRY(bridge_rtnode) brt_hash;     /* hash table linkage */
  196         LIST_ENTRY(bridge_rtnode) brt_list;     /* list linkage */
  197         struct bridge_iflist    *brt_dst;       /* destination if */
  198         unsigned long           brt_expire;     /* expiration time */
  199         uint8_t                 brt_flags;      /* address flags */
  200         uint8_t                 brt_addr[ETHER_ADDR_LEN];
  201         uint16_t                brt_vlan;       /* vlan id */
  202 };
  203 #define brt_ifp                 brt_dst->bif_ifp
  204 
  205 /*
  206  * Software state for each bridge.
  207  */
  208 struct bridge_softc {
  209         struct ifnet            *sc_ifp;        /* make this an interface */
  210         LIST_ENTRY(bridge_softc) sc_list;
  211         struct mtx              sc_mtx;
  212         struct cv               sc_cv;
  213         uint32_t                sc_brtmax;      /* max # of addresses */
  214         uint32_t                sc_brtcnt;      /* cur. # of addresses */
  215         uint32_t                sc_brttimeout;  /* rt timeout in seconds */
  216         struct callout          sc_brcallout;   /* bridge callout */
  217         uint32_t                sc_iflist_ref;  /* refcount for sc_iflist */
  218         uint32_t                sc_iflist_xcnt; /* refcount for sc_iflist */
  219         LIST_HEAD(, bridge_iflist) sc_iflist;   /* member interface list */
  220         LIST_HEAD(, bridge_rtnode) *sc_rthash;  /* our forwarding table */
  221         LIST_HEAD(, bridge_rtnode) sc_rtlist;   /* list version of above */
  222         uint32_t                sc_rthash_key;  /* key for hash */
  223         LIST_HEAD(, bridge_iflist) sc_spanlist; /* span ports list */
  224         struct bstp_state       sc_stp;         /* STP state */
  225         uint32_t                sc_brtexceeded; /* # of cache drops */
  226         struct ifnet            *sc_ifaddr;     /* member mac copied from */
  227         struct ether_addr       sc_defaddr;     /* Default MAC address */
  228 };
  229 
  230 static VNET_DEFINE(struct mtx, bridge_list_mtx);
  231 #define V_bridge_list_mtx       VNET(bridge_list_mtx)
  232 static eventhandler_tag bridge_detach_cookie;
  233 
  234 int     bridge_rtable_prune_period = BRIDGE_RTABLE_PRUNE_PERIOD;
  235 
  236 static VNET_DEFINE(uma_zone_t, bridge_rtnode_zone);
  237 #define V_bridge_rtnode_zone    VNET(bridge_rtnode_zone)
  238 
  239 static int      bridge_clone_create(struct if_clone *, int, caddr_t);
  240 static void     bridge_clone_destroy(struct ifnet *);
  241 
  242 static int      bridge_ioctl(struct ifnet *, u_long, caddr_t);
  243 static void     bridge_mutecaps(struct bridge_softc *);
  244 static void     bridge_set_ifcap(struct bridge_softc *, struct bridge_iflist *,
  245                     int);
  246 static void     bridge_ifdetach(void *arg __unused, struct ifnet *);
  247 static void     bridge_init(void *);
  248 static void     bridge_dummynet(struct mbuf *, struct ifnet *);
  249 static void     bridge_stop(struct ifnet *, int);
  250 static int      bridge_transmit(struct ifnet *, struct mbuf *);
  251 static void     bridge_qflush(struct ifnet *);
  252 static struct mbuf *bridge_input(struct ifnet *, struct mbuf *);
  253 static int      bridge_output(struct ifnet *, struct mbuf *, struct sockaddr *,
  254                     struct rtentry *);
  255 static int      bridge_enqueue(struct bridge_softc *, struct ifnet *,
  256                     struct mbuf *);
  257 static void     bridge_rtdelete(struct bridge_softc *, struct ifnet *ifp, int);
  258 
  259 static void     bridge_forward(struct bridge_softc *, struct bridge_iflist *,
  260                     struct mbuf *m);
  261 
  262 static void     bridge_timer(void *);
  263 
  264 static void     bridge_broadcast(struct bridge_softc *, struct ifnet *,
  265                     struct mbuf *, int);
  266 static void     bridge_span(struct bridge_softc *, struct mbuf *);
  267 
  268 static int      bridge_rtupdate(struct bridge_softc *, const uint8_t *,
  269                     uint16_t, struct bridge_iflist *, int, uint8_t);
  270 static struct ifnet *bridge_rtlookup(struct bridge_softc *, const uint8_t *,
  271                     uint16_t);
  272 static void     bridge_rttrim(struct bridge_softc *);
  273 static void     bridge_rtage(struct bridge_softc *);
  274 static void     bridge_rtflush(struct bridge_softc *, int);
  275 static int      bridge_rtdaddr(struct bridge_softc *, const uint8_t *,
  276                     uint16_t);
  277 
  278 static void     bridge_rtable_init(struct bridge_softc *);
  279 static void     bridge_rtable_fini(struct bridge_softc *);
  280 
  281 static int      bridge_rtnode_addr_cmp(const uint8_t *, const uint8_t *);
  282 static struct bridge_rtnode *bridge_rtnode_lookup(struct bridge_softc *,
  283                     const uint8_t *, uint16_t);
  284 static int      bridge_rtnode_insert(struct bridge_softc *,
  285                     struct bridge_rtnode *);
  286 static void     bridge_rtnode_destroy(struct bridge_softc *,
  287                     struct bridge_rtnode *);
  288 static void     bridge_rtable_expire(struct ifnet *, int);
  289 static void     bridge_state_change(struct ifnet *, int);
  290 
  291 static struct bridge_iflist *bridge_lookup_member(struct bridge_softc *,
  292                     const char *name);
  293 static struct bridge_iflist *bridge_lookup_member_if(struct bridge_softc *,
  294                     struct ifnet *ifp);
  295 static void     bridge_delete_member(struct bridge_softc *,
  296                     struct bridge_iflist *, int);
  297 static void     bridge_delete_span(struct bridge_softc *,
  298                     struct bridge_iflist *);
  299 
  300 static int      bridge_ioctl_add(struct bridge_softc *, void *);
  301 static int      bridge_ioctl_del(struct bridge_softc *, void *);
  302 static int      bridge_ioctl_gifflags(struct bridge_softc *, void *);
  303 static int      bridge_ioctl_sifflags(struct bridge_softc *, void *);
  304 static int      bridge_ioctl_scache(struct bridge_softc *, void *);
  305 static int      bridge_ioctl_gcache(struct bridge_softc *, void *);
  306 static int      bridge_ioctl_gifs(struct bridge_softc *, void *);
  307 static int      bridge_ioctl_rts(struct bridge_softc *, void *);
  308 static int      bridge_ioctl_saddr(struct bridge_softc *, void *);
  309 static int      bridge_ioctl_sto(struct bridge_softc *, void *);
  310 static int      bridge_ioctl_gto(struct bridge_softc *, void *);
  311 static int      bridge_ioctl_daddr(struct bridge_softc *, void *);
  312 static int      bridge_ioctl_flush(struct bridge_softc *, void *);
  313 static int      bridge_ioctl_gpri(struct bridge_softc *, void *);
  314 static int      bridge_ioctl_spri(struct bridge_softc *, void *);
  315 static int      bridge_ioctl_ght(struct bridge_softc *, void *);
  316 static int      bridge_ioctl_sht(struct bridge_softc *, void *);
  317 static int      bridge_ioctl_gfd(struct bridge_softc *, void *);
  318 static int      bridge_ioctl_sfd(struct bridge_softc *, void *);
  319 static int      bridge_ioctl_gma(struct bridge_softc *, void *);
  320 static int      bridge_ioctl_sma(struct bridge_softc *, void *);
  321 static int      bridge_ioctl_sifprio(struct bridge_softc *, void *);
  322 static int      bridge_ioctl_sifcost(struct bridge_softc *, void *);
  323 static int      bridge_ioctl_sifmaxaddr(struct bridge_softc *, void *);
  324 static int      bridge_ioctl_addspan(struct bridge_softc *, void *);
  325 static int      bridge_ioctl_delspan(struct bridge_softc *, void *);
  326 static int      bridge_ioctl_gbparam(struct bridge_softc *, void *);
  327 static int      bridge_ioctl_grte(struct bridge_softc *, void *);
  328 static int      bridge_ioctl_gifsstp(struct bridge_softc *, void *);
  329 static int      bridge_ioctl_sproto(struct bridge_softc *, void *);
  330 static int      bridge_ioctl_stxhc(struct bridge_softc *, void *);
  331 static int      bridge_pfil(struct mbuf **, struct ifnet *, struct ifnet *,
  332                     int);
  333 static int      bridge_ip_checkbasic(struct mbuf **mp);
  334 #ifdef INET6
  335 static int      bridge_ip6_checkbasic(struct mbuf **mp);
  336 #endif /* INET6 */
  337 static int      bridge_fragment(struct ifnet *, struct mbuf **mp,
  338                     struct ether_header *, int, struct llc *);
  339 static void     bridge_linkstate(struct ifnet *ifp);
  340 static void     bridge_linkcheck(struct bridge_softc *sc);
  341 
  342 extern void (*bridge_linkstate_p)(struct ifnet *ifp);
  343 
  344 /* The default bridge vlan is 1 (IEEE 802.1Q-2003 Table 9-2) */
  345 #define VLANTAGOF(_m)   \
  346     (_m->m_flags & M_VLANTAG) ? EVL_VLANOFTAG(_m->m_pkthdr.ether_vtag) : 1
  347 
  348 static struct bstp_cb_ops bridge_ops = {
  349         .bcb_state = bridge_state_change,
  350         .bcb_rtage = bridge_rtable_expire
  351 };
  352 
  353 SYSCTL_DECL(_net_link);
  354 static SYSCTL_NODE(_net_link, IFT_BRIDGE, bridge, CTLFLAG_RW, 0, "Bridge");
  355 
  356 /* only pass IP[46] packets when pfil is enabled */
  357 static VNET_DEFINE(int, pfil_onlyip) = 1;
  358 #define V_pfil_onlyip   VNET(pfil_onlyip)
  359 SYSCTL_INT(_net_link_bridge, OID_AUTO, pfil_onlyip,
  360     CTLFLAG_RWTUN | CTLFLAG_VNET, &VNET_NAME(pfil_onlyip), 0,
  361     "Only pass IP packets when pfil is enabled");
  362 
  363 /* run pfil hooks on the bridge interface */
  364 static VNET_DEFINE(int, pfil_bridge) = 1;
  365 #define V_pfil_bridge   VNET(pfil_bridge)
  366 SYSCTL_INT(_net_link_bridge, OID_AUTO, pfil_bridge,
  367     CTLFLAG_RWTUN | CTLFLAG_VNET, &VNET_NAME(pfil_bridge), 0,
  368     "Packet filter on the bridge interface");
  369 
  370 /* layer2 filter with ipfw */
  371 static VNET_DEFINE(int, pfil_ipfw);
  372 #define V_pfil_ipfw     VNET(pfil_ipfw)
  373 
  374 /* layer2 ARP filter with ipfw */
  375 static VNET_DEFINE(int, pfil_ipfw_arp);
  376 #define V_pfil_ipfw_arp VNET(pfil_ipfw_arp)
  377 SYSCTL_INT(_net_link_bridge, OID_AUTO, ipfw_arp,
  378     CTLFLAG_RWTUN | CTLFLAG_VNET, &VNET_NAME(pfil_ipfw_arp), 0,
  379     "Filter ARP packets through IPFW layer2");
  380 
  381 /* run pfil hooks on the member interface */
  382 static VNET_DEFINE(int, pfil_member) = 1;
  383 #define V_pfil_member   VNET(pfil_member)
  384 SYSCTL_INT(_net_link_bridge, OID_AUTO, pfil_member,
  385     CTLFLAG_RWTUN | CTLFLAG_VNET, &VNET_NAME(pfil_member), 0,
  386     "Packet filter on the member interface");
  387 
  388 /* run pfil hooks on the physical interface for locally destined packets */
  389 static VNET_DEFINE(int, pfil_local_phys);
  390 #define V_pfil_local_phys       VNET(pfil_local_phys)
  391 SYSCTL_INT(_net_link_bridge, OID_AUTO, pfil_local_phys,
  392     CTLFLAG_RWTUN | CTLFLAG_VNET, &VNET_NAME(pfil_local_phys), 0,
  393     "Packet filter on the physical interface for locally destined packets");
  394 
  395 /* log STP state changes */
  396 static VNET_DEFINE(int, log_stp);
  397 #define V_log_stp       VNET(log_stp)
  398 SYSCTL_INT(_net_link_bridge, OID_AUTO, log_stp,
  399     CTLFLAG_RWTUN | CTLFLAG_VNET, &VNET_NAME(log_stp), 0,
  400     "Log STP state changes");
  401 
  402 /* share MAC with first bridge member */
  403 static VNET_DEFINE(int, bridge_inherit_mac);
  404 #define V_bridge_inherit_mac    VNET(bridge_inherit_mac)
  405 SYSCTL_INT(_net_link_bridge, OID_AUTO, inherit_mac,
  406     CTLFLAG_RWTUN | CTLFLAG_VNET, &VNET_NAME(bridge_inherit_mac), 0,
  407     "Inherit MAC address from the first bridge member");
  408 
  409 static VNET_DEFINE(int, allow_llz_overlap) = 0;
  410 #define V_allow_llz_overlap     VNET(allow_llz_overlap)
  411 SYSCTL_INT(_net_link_bridge, OID_AUTO, allow_llz_overlap,
  412     CTLFLAG_VNET | CTLFLAG_RW | CTLFLAG_VNET, &VNET_NAME(allow_llz_overlap), 0,
  413     "Allow overlap of link-local scope "
  414     "zones of a bridge interface and the member interfaces");
  415 
  416 struct bridge_control {
  417         int     (*bc_func)(struct bridge_softc *, void *);
  418         int     bc_argsize;
  419         int     bc_flags;
  420 };
  421 
  422 #define BC_F_COPYIN             0x01    /* copy arguments in */
  423 #define BC_F_COPYOUT            0x02    /* copy arguments out */
  424 #define BC_F_SUSER              0x04    /* do super-user check */
  425 
  426 const struct bridge_control bridge_control_table[] = {
  427         { bridge_ioctl_add,             sizeof(struct ifbreq),
  428           BC_F_COPYIN|BC_F_SUSER },
  429         { bridge_ioctl_del,             sizeof(struct ifbreq),
  430           BC_F_COPYIN|BC_F_SUSER },
  431 
  432         { bridge_ioctl_gifflags,        sizeof(struct ifbreq),
  433           BC_F_COPYIN|BC_F_COPYOUT },
  434         { bridge_ioctl_sifflags,        sizeof(struct ifbreq),
  435           BC_F_COPYIN|BC_F_SUSER },
  436 
  437         { bridge_ioctl_scache,          sizeof(struct ifbrparam),
  438           BC_F_COPYIN|BC_F_SUSER },
  439         { bridge_ioctl_gcache,          sizeof(struct ifbrparam),
  440           BC_F_COPYOUT },
  441 
  442         { bridge_ioctl_gifs,            sizeof(struct ifbifconf),
  443           BC_F_COPYIN|BC_F_COPYOUT },
  444         { bridge_ioctl_rts,             sizeof(struct ifbaconf),
  445           BC_F_COPYIN|BC_F_COPYOUT },
  446 
  447         { bridge_ioctl_saddr,           sizeof(struct ifbareq),
  448           BC_F_COPYIN|BC_F_SUSER },
  449 
  450         { bridge_ioctl_sto,             sizeof(struct ifbrparam),
  451           BC_F_COPYIN|BC_F_SUSER },
  452         { bridge_ioctl_gto,             sizeof(struct ifbrparam),
  453           BC_F_COPYOUT },
  454 
  455         { bridge_ioctl_daddr,           sizeof(struct ifbareq),
  456           BC_F_COPYIN|BC_F_SUSER },
  457 
  458         { bridge_ioctl_flush,           sizeof(struct ifbreq),
  459           BC_F_COPYIN|BC_F_SUSER },
  460 
  461         { bridge_ioctl_gpri,            sizeof(struct ifbrparam),
  462           BC_F_COPYOUT },
  463         { bridge_ioctl_spri,            sizeof(struct ifbrparam),
  464           BC_F_COPYIN|BC_F_SUSER },
  465 
  466         { bridge_ioctl_ght,             sizeof(struct ifbrparam),
  467           BC_F_COPYOUT },
  468         { bridge_ioctl_sht,             sizeof(struct ifbrparam),
  469           BC_F_COPYIN|BC_F_SUSER },
  470 
  471         { bridge_ioctl_gfd,             sizeof(struct ifbrparam),
  472           BC_F_COPYOUT },
  473         { bridge_ioctl_sfd,             sizeof(struct ifbrparam),
  474           BC_F_COPYIN|BC_F_SUSER },
  475 
  476         { bridge_ioctl_gma,             sizeof(struct ifbrparam),
  477           BC_F_COPYOUT },
  478         { bridge_ioctl_sma,             sizeof(struct ifbrparam),
  479           BC_F_COPYIN|BC_F_SUSER },
  480 
  481         { bridge_ioctl_sifprio,         sizeof(struct ifbreq),
  482           BC_F_COPYIN|BC_F_SUSER },
  483 
  484         { bridge_ioctl_sifcost,         sizeof(struct ifbreq),
  485           BC_F_COPYIN|BC_F_SUSER },
  486 
  487         { bridge_ioctl_addspan,         sizeof(struct ifbreq),
  488           BC_F_COPYIN|BC_F_SUSER },
  489         { bridge_ioctl_delspan,         sizeof(struct ifbreq),
  490           BC_F_COPYIN|BC_F_SUSER },
  491 
  492         { bridge_ioctl_gbparam,         sizeof(struct ifbropreq),
  493           BC_F_COPYOUT },
  494 
  495         { bridge_ioctl_grte,            sizeof(struct ifbrparam),
  496           BC_F_COPYOUT },
  497 
  498         { bridge_ioctl_gifsstp,         sizeof(struct ifbpstpconf),
  499           BC_F_COPYIN|BC_F_COPYOUT },
  500 
  501         { bridge_ioctl_sproto,          sizeof(struct ifbrparam),
  502           BC_F_COPYIN|BC_F_SUSER },
  503 
  504         { bridge_ioctl_stxhc,           sizeof(struct ifbrparam),
  505           BC_F_COPYIN|BC_F_SUSER },
  506 
  507         { bridge_ioctl_sifmaxaddr,      sizeof(struct ifbreq),
  508           BC_F_COPYIN|BC_F_SUSER },
  509 
  510 };
  511 const int bridge_control_table_size = nitems(bridge_control_table);
  512 
  513 static VNET_DEFINE(LIST_HEAD(, bridge_softc), bridge_list);
  514 #define V_bridge_list   VNET(bridge_list)
  515 #define BRIDGE_LIST_LOCK_INIT(x)        mtx_init(&V_bridge_list_mtx,    \
  516                                             "if_bridge list", NULL, MTX_DEF)
  517 #define BRIDGE_LIST_LOCK_DESTROY(x)     mtx_destroy(&V_bridge_list_mtx)
  518 #define BRIDGE_LIST_LOCK(x)             mtx_lock(&V_bridge_list_mtx)
  519 #define BRIDGE_LIST_UNLOCK(x)           mtx_unlock(&V_bridge_list_mtx)
  520 
  521 static VNET_DEFINE(struct if_clone *, bridge_cloner);
  522 #define V_bridge_cloner VNET(bridge_cloner)
  523 
  524 static const char bridge_name[] = "bridge";
  525 
  526 static void
  527 vnet_bridge_init(const void *unused __unused)
  528 {
  529 
  530         V_bridge_rtnode_zone = uma_zcreate("bridge_rtnode",
  531             sizeof(struct bridge_rtnode), NULL, NULL, NULL, NULL,
  532             UMA_ALIGN_PTR, 0);
  533         BRIDGE_LIST_LOCK_INIT();
  534         LIST_INIT(&V_bridge_list);
  535         V_bridge_cloner = if_clone_simple(bridge_name,
  536             bridge_clone_create, bridge_clone_destroy, 0);
  537 }
  538 VNET_SYSINIT(vnet_bridge_init, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY,
  539     vnet_bridge_init, NULL);
  540 
  541 static void
  542 vnet_bridge_uninit(const void *unused __unused)
  543 {
  544 
  545         if_clone_detach(V_bridge_cloner);
  546         V_bridge_cloner = NULL;
  547         BRIDGE_LIST_LOCK_DESTROY();
  548         uma_zdestroy(V_bridge_rtnode_zone);
  549 }
  550 VNET_SYSUNINIT(vnet_bridge_uninit, SI_SUB_PSEUDO, SI_ORDER_ANY,
  551     vnet_bridge_uninit, NULL);
  552 
  553 static int
  554 bridge_modevent(module_t mod, int type, void *data)
  555 {
  556 
  557         switch (type) {
  558         case MOD_LOAD:
  559                 bridge_input_p = bridge_input;
  560                 bridge_output_p = bridge_output;
  561                 bridge_dn_p = bridge_dummynet;
  562                 bridge_linkstate_p = bridge_linkstate;
  563                 bridge_detach_cookie = EVENTHANDLER_REGISTER(
  564                     ifnet_departure_event, bridge_ifdetach, NULL,
  565                     EVENTHANDLER_PRI_ANY);
  566                 break;
  567         case MOD_UNLOAD:
  568                 EVENTHANDLER_DEREGISTER(ifnet_departure_event,
  569                     bridge_detach_cookie);
  570                 bridge_input_p = NULL;
  571                 bridge_output_p = NULL;
  572                 bridge_dn_p = NULL;
  573                 bridge_linkstate_p = NULL;
  574                 break;
  575         default:
  576                 return (EOPNOTSUPP);
  577         }
  578         return (0);
  579 }
  580 
  581 static moduledata_t bridge_mod = {
  582         "if_bridge",
  583         bridge_modevent,
  584         0
  585 };
  586 
  587 DECLARE_MODULE(if_bridge, bridge_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
  588 MODULE_VERSION(if_bridge, 1);
  589 MODULE_DEPEND(if_bridge, bridgestp, 1, 1, 1);
  590 
  591 /*
  592  * handler for net.link.bridge.ipfw
  593  */
  594 static int
  595 sysctl_pfil_ipfw(SYSCTL_HANDLER_ARGS)
  596 {
  597         int enable = V_pfil_ipfw;
  598         int error;
  599 
  600         error = sysctl_handle_int(oidp, &enable, 0, req);
  601         enable &= 1;
  602 
  603         if (enable != V_pfil_ipfw) {
  604                 V_pfil_ipfw = enable;
  605 
  606                 /*
  607                  * Disable pfil so that ipfw doesnt run twice, if the user
  608                  * really wants both then they can re-enable pfil_bridge and/or
  609                  * pfil_member. Also allow non-ip packets as ipfw can filter by
  610                  * layer2 type.
  611                  */
  612                 if (V_pfil_ipfw) {
  613                         V_pfil_onlyip = 0;
  614                         V_pfil_bridge = 0;
  615                         V_pfil_member = 0;
  616                 }
  617         }
  618 
  619         return (error);
  620 }
  621 SYSCTL_PROC(_net_link_bridge, OID_AUTO, ipfw,
  622     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_VNET,
  623     &VNET_NAME(pfil_ipfw), 0, &sysctl_pfil_ipfw, "I",
  624     "Layer2 filter with IPFW");
  625 
  626 /*
  627  * bridge_clone_create:
  628  *
  629  *      Create a new bridge instance.
  630  */
  631 static int
  632 bridge_clone_create(struct if_clone *ifc, int unit, caddr_t params)
  633 {
  634         struct bridge_softc *sc, *sc2;
  635         struct ifnet *bifp, *ifp;
  636         int fb, retry;
  637         unsigned long hostid;
  638 
  639         sc = malloc(sizeof(*sc), M_DEVBUF, M_WAITOK|M_ZERO);
  640         ifp = sc->sc_ifp = if_alloc(IFT_ETHER);
  641         if (ifp == NULL) {
  642                 free(sc, M_DEVBUF);
  643                 return (ENOSPC);
  644         }
  645 
  646         BRIDGE_LOCK_INIT(sc);
  647         sc->sc_brtmax = BRIDGE_RTABLE_MAX;
  648         sc->sc_brttimeout = BRIDGE_RTABLE_TIMEOUT;
  649 
  650         /* Initialize our routing table. */
  651         bridge_rtable_init(sc);
  652 
  653         callout_init_mtx(&sc->sc_brcallout, &sc->sc_mtx, 0);
  654 
  655         LIST_INIT(&sc->sc_iflist);
  656         LIST_INIT(&sc->sc_spanlist);
  657 
  658         ifp->if_softc = sc;
  659         if_initname(ifp, bridge_name, unit);
  660         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
  661         ifp->if_ioctl = bridge_ioctl;
  662         ifp->if_transmit = bridge_transmit;
  663         ifp->if_qflush = bridge_qflush;
  664         ifp->if_init = bridge_init;
  665         ifp->if_type = IFT_BRIDGE;
  666 
  667         /*
  668          * Generate an ethernet address with a locally administered address.
  669          *
  670          * Since we are using random ethernet addresses for the bridge, it is
  671          * possible that we might have address collisions, so make sure that
  672          * this hardware address isn't already in use on another bridge.
  673          * The first try uses the hostid and falls back to arc4rand().
  674          */
  675         fb = 0;
  676         getcredhostid(curthread->td_ucred, &hostid);
  677         do {
  678                 if (fb || hostid == 0) {
  679                         ether_gen_addr(ifp, &sc->sc_defaddr);
  680                 } else {
  681                         sc->sc_defaddr.octet[0] = 0x2;
  682                         sc->sc_defaddr.octet[1] = (hostid >> 24) & 0xff;
  683                         sc->sc_defaddr.octet[2] = (hostid >> 16) & 0xff;
  684                         sc->sc_defaddr.octet[3] = (hostid >> 8 ) & 0xff;
  685                         sc->sc_defaddr.octet[4] =  hostid        & 0xff;
  686                         sc->sc_defaddr.octet[5] = ifp->if_dunit & 0xff;
  687                 }
  688 
  689                 fb = 1;
  690                 retry = 0;
  691                 BRIDGE_LIST_LOCK();
  692                 LIST_FOREACH(sc2, &V_bridge_list, sc_list) {
  693                         bifp = sc2->sc_ifp;
  694                         if (memcmp(sc->sc_defaddr.octet,
  695                             IF_LLADDR(bifp), ETHER_ADDR_LEN) == 0) {
  696                                 retry = 1;
  697                                 break;
  698                         }
  699                 }
  700                 BRIDGE_LIST_UNLOCK();
  701         } while (retry == 1);
  702 
  703         bstp_attach(&sc->sc_stp, &bridge_ops);
  704         ether_ifattach(ifp, sc->sc_defaddr.octet);
  705         /* Now undo some of the damage... */
  706         ifp->if_baudrate = 0;
  707         ifp->if_type = IFT_BRIDGE;
  708 
  709         BRIDGE_LIST_LOCK();
  710         LIST_INSERT_HEAD(&V_bridge_list, sc, sc_list);
  711         BRIDGE_LIST_UNLOCK();
  712 
  713         return (0);
  714 }
  715 
  716 /*
  717  * bridge_clone_destroy:
  718  *
  719  *      Destroy a bridge instance.
  720  */
  721 static void
  722 bridge_clone_destroy(struct ifnet *ifp)
  723 {
  724         struct bridge_softc *sc = ifp->if_softc;
  725         struct bridge_iflist *bif;
  726 
  727         BRIDGE_LOCK(sc);
  728 
  729         bridge_stop(ifp, 1);
  730         ifp->if_flags &= ~IFF_UP;
  731 
  732         while ((bif = LIST_FIRST(&sc->sc_iflist)) != NULL)
  733                 bridge_delete_member(sc, bif, 0);
  734 
  735         while ((bif = LIST_FIRST(&sc->sc_spanlist)) != NULL) {
  736                 bridge_delete_span(sc, bif);
  737         }
  738 
  739         /* Tear down the routing table. */
  740         bridge_rtable_fini(sc);
  741 
  742         BRIDGE_UNLOCK(sc);
  743 
  744         callout_drain(&sc->sc_brcallout);
  745 
  746         BRIDGE_LIST_LOCK();
  747         LIST_REMOVE(sc, sc_list);
  748         BRIDGE_LIST_UNLOCK();
  749 
  750         bstp_detach(&sc->sc_stp);
  751         ether_ifdetach(ifp);
  752         if_free(ifp);
  753 
  754         BRIDGE_LOCK_DESTROY(sc);
  755         free(sc, M_DEVBUF);
  756 }
  757 
  758 /*
  759  * bridge_ioctl:
  760  *
  761  *      Handle a control request from the operator.
  762  */
  763 static int
  764 bridge_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
  765 {
  766         struct bridge_softc *sc = ifp->if_softc;
  767         struct ifreq *ifr = (struct ifreq *)data;
  768         struct bridge_iflist *bif;
  769         struct thread *td = curthread;
  770         union {
  771                 struct ifbreq ifbreq;
  772                 struct ifbifconf ifbifconf;
  773                 struct ifbareq ifbareq;
  774                 struct ifbaconf ifbaconf;
  775                 struct ifbrparam ifbrparam;
  776                 struct ifbropreq ifbropreq;
  777         } args;
  778         struct ifdrv *ifd = (struct ifdrv *) data;
  779         const struct bridge_control *bc;
  780         int error = 0;
  781 
  782         switch (cmd) {
  783 
  784         case SIOCADDMULTI:
  785         case SIOCDELMULTI:
  786                 break;
  787 
  788         case SIOCGDRVSPEC:
  789         case SIOCSDRVSPEC:
  790                 if (ifd->ifd_cmd >= bridge_control_table_size) {
  791                         error = EINVAL;
  792                         break;
  793                 }
  794                 bc = &bridge_control_table[ifd->ifd_cmd];
  795 
  796                 if (cmd == SIOCGDRVSPEC &&
  797                     (bc->bc_flags & BC_F_COPYOUT) == 0) {
  798                         error = EINVAL;
  799                         break;
  800                 }
  801                 else if (cmd == SIOCSDRVSPEC &&
  802                     (bc->bc_flags & BC_F_COPYOUT) != 0) {
  803                         error = EINVAL;
  804                         break;
  805                 }
  806 
  807                 if (bc->bc_flags & BC_F_SUSER) {
  808                         error = priv_check(td, PRIV_NET_BRIDGE);
  809                         if (error)
  810                                 break;
  811                 }
  812 
  813                 if (ifd->ifd_len != bc->bc_argsize ||
  814                     ifd->ifd_len > sizeof(args)) {
  815                         error = EINVAL;
  816                         break;
  817                 }
  818 
  819                 bzero(&args, sizeof(args));
  820                 if (bc->bc_flags & BC_F_COPYIN) {
  821                         error = copyin(ifd->ifd_data, &args, ifd->ifd_len);
  822                         if (error)
  823                                 break;
  824                 }
  825 
  826                 BRIDGE_LOCK(sc);
  827                 error = (*bc->bc_func)(sc, &args);
  828                 BRIDGE_UNLOCK(sc);
  829                 if (error)
  830                         break;
  831 
  832                 if (bc->bc_flags & BC_F_COPYOUT)
  833                         error = copyout(&args, ifd->ifd_data, ifd->ifd_len);
  834 
  835                 break;
  836 
  837         case SIOCSIFFLAGS:
  838                 if (!(ifp->if_flags & IFF_UP) &&
  839                     (ifp->if_drv_flags & IFF_DRV_RUNNING)) {
  840                         /*
  841                          * If interface is marked down and it is running,
  842                          * then stop and disable it.
  843                          */
  844                         BRIDGE_LOCK(sc);
  845                         bridge_stop(ifp, 1);
  846                         BRIDGE_UNLOCK(sc);
  847                 } else if ((ifp->if_flags & IFF_UP) &&
  848                     !(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
  849                         /*
  850                          * If interface is marked up and it is stopped, then
  851                          * start it.
  852                          */
  853                         (*ifp->if_init)(sc);
  854                 }
  855                 break;
  856 
  857         case SIOCSIFMTU:
  858                 if (ifr->ifr_mtu < 576) {
  859                         error = EINVAL;
  860                         break;
  861                 }
  862                 if (LIST_EMPTY(&sc->sc_iflist)) {
  863                         sc->sc_ifp->if_mtu = ifr->ifr_mtu;
  864                         break;
  865                 }
  866                 BRIDGE_LOCK(sc);
  867                 LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
  868                         if (bif->bif_ifp->if_mtu != ifr->ifr_mtu) {
  869                                 log(LOG_NOTICE, "%s: invalid MTU: %u(%s)"
  870                                     " != %d\n", sc->sc_ifp->if_xname,
  871                                     bif->bif_ifp->if_mtu,
  872                                     bif->bif_ifp->if_xname, ifr->ifr_mtu);
  873                                 error = EINVAL;
  874                                 break;
  875                         }
  876                 }
  877                 if (!error)
  878                         sc->sc_ifp->if_mtu = ifr->ifr_mtu;
  879                 BRIDGE_UNLOCK(sc);
  880                 break;
  881         default:
  882                 /*
  883                  * drop the lock as ether_ioctl() will call bridge_start() and
  884                  * cause the lock to be recursed.
  885                  */
  886                 error = ether_ioctl(ifp, cmd, data);
  887                 break;
  888         }
  889 
  890         return (error);
  891 }
  892 
  893 /*
  894  * bridge_mutecaps:
  895  *
  896  *      Clear or restore unwanted capabilities on the member interface
  897  */
  898 static void
  899 bridge_mutecaps(struct bridge_softc *sc)
  900 {
  901         struct bridge_iflist *bif;
  902         int enabled, mask;
  903 
  904         /* Initial bitmask of capabilities to test */
  905         mask = BRIDGE_IFCAPS_MASK;
  906 
  907         LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
  908                 /* Every member must support it or its disabled */
  909                 mask &= bif->bif_savedcaps;
  910         }
  911 
  912         BRIDGE_XLOCK(sc);
  913         LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
  914                 enabled = bif->bif_ifp->if_capenable;
  915                 enabled &= ~BRIDGE_IFCAPS_STRIP;
  916                 /* strip off mask bits and enable them again if allowed */
  917                 enabled &= ~BRIDGE_IFCAPS_MASK;
  918                 enabled |= mask;
  919                 BRIDGE_UNLOCK(sc);
  920                 bridge_set_ifcap(sc, bif, enabled);
  921                 BRIDGE_LOCK(sc);
  922         }
  923         BRIDGE_XDROP(sc);
  924 
  925 }
  926 
  927 static void
  928 bridge_set_ifcap(struct bridge_softc *sc, struct bridge_iflist *bif, int set)
  929 {
  930         struct ifnet *ifp = bif->bif_ifp;
  931         struct ifreq ifr;
  932         int error, mask, stuck;
  933 
  934         BRIDGE_UNLOCK_ASSERT(sc);
  935 
  936         bzero(&ifr, sizeof(ifr));
  937         ifr.ifr_reqcap = set;
  938 
  939         if (ifp->if_capenable != set) {
  940                 error = (*ifp->if_ioctl)(ifp, SIOCSIFCAP, (caddr_t)&ifr);
  941                 if (error)
  942                         if_printf(sc->sc_ifp,
  943                             "error setting capabilities on %s: %d\n",
  944                             ifp->if_xname, error);
  945                 mask = BRIDGE_IFCAPS_MASK | BRIDGE_IFCAPS_STRIP;
  946                 stuck = ifp->if_capenable & mask & ~set;
  947                 if (stuck != 0)
  948                         if_printf(sc->sc_ifp,
  949                             "can't disable some capabilities on %s: 0x%x\n",
  950                             ifp->if_xname, stuck);
  951         }
  952 }
  953 
  954 /*
  955  * bridge_lookup_member:
  956  *
  957  *      Lookup a bridge member interface.
  958  */
  959 static struct bridge_iflist *
  960 bridge_lookup_member(struct bridge_softc *sc, const char *name)
  961 {
  962         struct bridge_iflist *bif;
  963         struct ifnet *ifp;
  964 
  965         BRIDGE_LOCK_ASSERT(sc);
  966 
  967         LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
  968                 ifp = bif->bif_ifp;
  969                 if (strcmp(ifp->if_xname, name) == 0)
  970                         return (bif);
  971         }
  972 
  973         return (NULL);
  974 }
  975 
  976 /*
  977  * bridge_lookup_member_if:
  978  *
  979  *      Lookup a bridge member interface by ifnet*.
  980  */
  981 static struct bridge_iflist *
  982 bridge_lookup_member_if(struct bridge_softc *sc, struct ifnet *member_ifp)
  983 {
  984         struct bridge_iflist *bif;
  985 
  986         BRIDGE_LOCK_ASSERT(sc);
  987 
  988         LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
  989                 if (bif->bif_ifp == member_ifp)
  990                         return (bif);
  991         }
  992 
  993         return (NULL);
  994 }
  995 
  996 /*
  997  * bridge_delete_member:
  998  *
  999  *      Delete the specified member interface.
 1000  */
 1001 static void
 1002 bridge_delete_member(struct bridge_softc *sc, struct bridge_iflist *bif,
 1003     int gone)
 1004 {
 1005         struct ifnet *ifs = bif->bif_ifp;
 1006         struct ifnet *fif = NULL;
 1007 
 1008         BRIDGE_LOCK_ASSERT(sc);
 1009 
 1010         if (bif->bif_flags & IFBIF_STP)
 1011                 bstp_disable(&bif->bif_stp);
 1012 
 1013         ifs->if_bridge = NULL;
 1014         BRIDGE_XLOCK(sc);
 1015         LIST_REMOVE(bif, bif_next);
 1016         BRIDGE_XDROP(sc);
 1017 
 1018         /*
 1019          * If removing the interface that gave the bridge its mac address, set
 1020          * the mac address of the bridge to the address of the next member, or
 1021          * to its default address if no members are left.
 1022          */
 1023         if (V_bridge_inherit_mac && sc->sc_ifaddr == ifs) {
 1024                 if (LIST_EMPTY(&sc->sc_iflist)) {
 1025                         bcopy(&sc->sc_defaddr,
 1026                             IF_LLADDR(sc->sc_ifp), ETHER_ADDR_LEN);
 1027                         sc->sc_ifaddr = NULL;
 1028                 } else {
 1029                         fif = LIST_FIRST(&sc->sc_iflist)->bif_ifp;
 1030                         bcopy(IF_LLADDR(fif),
 1031                             IF_LLADDR(sc->sc_ifp), ETHER_ADDR_LEN);
 1032                         sc->sc_ifaddr = fif;
 1033                 }
 1034                 EVENTHANDLER_INVOKE(iflladdr_event, sc->sc_ifp);
 1035         }
 1036 
 1037         bridge_linkcheck(sc);
 1038         bridge_mutecaps(sc);    /* recalcuate now this interface is removed */
 1039         bridge_rtdelete(sc, ifs, IFBF_FLUSHALL);
 1040         KASSERT(bif->bif_addrcnt == 0,
 1041             ("%s: %d bridge routes referenced", __func__, bif->bif_addrcnt));
 1042 
 1043         BRIDGE_UNLOCK(sc);
 1044         if (!gone) {
 1045                 switch (ifs->if_type) {
 1046                 case IFT_ETHER:
 1047                 case IFT_L2VLAN:
 1048                         /*
 1049                          * Take the interface out of promiscuous mode, but only
 1050                          * if it was promiscuous in the first place. It might
 1051                          * not be if we're in the bridge_ioctl_add() error path.
 1052                          */
 1053                         if (ifs->if_flags & IFF_PROMISC)
 1054                                 (void) ifpromisc(ifs, 0);
 1055                         break;
 1056 
 1057                 case IFT_GIF:
 1058                         break;
 1059 
 1060                 default:
 1061 #ifdef DIAGNOSTIC
 1062                         panic("bridge_delete_member: impossible");
 1063 #endif
 1064                         break;
 1065                 }
 1066                 /* reneable any interface capabilities */
 1067                 bridge_set_ifcap(sc, bif, bif->bif_savedcaps);
 1068         }
 1069         bstp_destroy(&bif->bif_stp);    /* prepare to free */
 1070         BRIDGE_LOCK(sc);
 1071         free(bif, M_DEVBUF);
 1072 }
 1073 
 1074 /*
 1075  * bridge_delete_span:
 1076  *
 1077  *      Delete the specified span interface.
 1078  */
 1079 static void
 1080 bridge_delete_span(struct bridge_softc *sc, struct bridge_iflist *bif)
 1081 {
 1082         BRIDGE_LOCK_ASSERT(sc);
 1083 
 1084         KASSERT(bif->bif_ifp->if_bridge == NULL,
 1085             ("%s: not a span interface", __func__));
 1086 
 1087         LIST_REMOVE(bif, bif_next);
 1088         free(bif, M_DEVBUF);
 1089 }
 1090 
 1091 static int
 1092 bridge_ioctl_add(struct bridge_softc *sc, void *arg)
 1093 {
 1094         struct ifbreq *req = arg;
 1095         struct bridge_iflist *bif = NULL;
 1096         struct ifnet *ifs;
 1097         int error = 0;
 1098 
 1099         ifs = ifunit(req->ifbr_ifsname);
 1100         if (ifs == NULL)
 1101                 return (ENOENT);
 1102         if (ifs->if_ioctl == NULL)      /* must be supported */
 1103                 return (EINVAL);
 1104 
 1105         /* If it's in the span list, it can't be a member. */
 1106         LIST_FOREACH(bif, &sc->sc_spanlist, bif_next)
 1107                 if (ifs == bif->bif_ifp)
 1108                         return (EBUSY);
 1109 
 1110         if (ifs->if_bridge == sc)
 1111                 return (EEXIST);
 1112 
 1113         if (ifs->if_bridge != NULL)
 1114                 return (EBUSY);
 1115 
 1116         switch (ifs->if_type) {
 1117         case IFT_ETHER:
 1118         case IFT_L2VLAN:
 1119         case IFT_GIF:
 1120                 /* permitted interface types */
 1121                 break;
 1122         default:
 1123                 return (EINVAL);
 1124         }
 1125 
 1126 #ifdef INET6
 1127         /*
 1128          * Two valid inet6 addresses with link-local scope must not be
 1129          * on the parent interface and the member interfaces at the
 1130          * same time.  This restriction is needed to prevent violation
 1131          * of link-local scope zone.  Attempts to add a member
 1132          * interface which has inet6 addresses when the parent has
 1133          * inet6 triggers removal of all inet6 addresses on the member
 1134          * interface.
 1135          */
 1136 
 1137         /* Check if the parent interface has a link-local scope addr. */
 1138         if (V_allow_llz_overlap == 0 &&
 1139             in6ifa_llaonifp(sc->sc_ifp) != NULL) {
 1140                 /*
 1141                  * If any, remove all inet6 addresses from the member
 1142                  * interfaces.
 1143                  */
 1144                 BRIDGE_XLOCK(sc);
 1145                 LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
 1146                         if (in6ifa_llaonifp(bif->bif_ifp)) {
 1147                                 BRIDGE_UNLOCK(sc);
 1148                                 in6_ifdetach(bif->bif_ifp);
 1149                                 BRIDGE_LOCK(sc);
 1150                                 if_printf(sc->sc_ifp,
 1151                                     "IPv6 addresses on %s have been removed "
 1152                                     "before adding it as a member to prevent "
 1153                                     "IPv6 address scope violation.\n",
 1154                                     bif->bif_ifp->if_xname);
 1155                         }
 1156                 }
 1157                 BRIDGE_XDROP(sc);
 1158                 if (in6ifa_llaonifp(ifs)) {
 1159                         BRIDGE_UNLOCK(sc);
 1160                         in6_ifdetach(ifs);
 1161                         BRIDGE_LOCK(sc);
 1162                         if_printf(sc->sc_ifp,
 1163                             "IPv6 addresses on %s have been removed "
 1164                             "before adding it as a member to prevent "
 1165                             "IPv6 address scope violation.\n",
 1166                             ifs->if_xname);
 1167                 }
 1168         }
 1169 #endif
 1170         /* Allow the first Ethernet member to define the MTU */
 1171         if (LIST_EMPTY(&sc->sc_iflist))
 1172                 sc->sc_ifp->if_mtu = ifs->if_mtu;
 1173         else if (sc->sc_ifp->if_mtu != ifs->if_mtu) {
 1174                 if_printf(sc->sc_ifp, "invalid MTU: %u(%s) != %u\n",
 1175                     ifs->if_mtu, ifs->if_xname, sc->sc_ifp->if_mtu);
 1176                 return (EINVAL);
 1177         }
 1178 
 1179         bif = malloc(sizeof(*bif), M_DEVBUF, M_NOWAIT|M_ZERO);
 1180         if (bif == NULL)
 1181                 return (ENOMEM);
 1182 
 1183         bif->bif_ifp = ifs;
 1184         bif->bif_flags = IFBIF_LEARNING | IFBIF_DISCOVER;
 1185         bif->bif_savedcaps = ifs->if_capenable;
 1186 
 1187         /*
 1188          * Assign the interface's MAC address to the bridge if it's the first
 1189          * member and the MAC address of the bridge has not been changed from
 1190          * the default randomly generated one.
 1191          */
 1192         if (V_bridge_inherit_mac && LIST_EMPTY(&sc->sc_iflist) &&
 1193             !memcmp(IF_LLADDR(sc->sc_ifp), sc->sc_defaddr.octet, ETHER_ADDR_LEN)) {
 1194                 bcopy(IF_LLADDR(ifs), IF_LLADDR(sc->sc_ifp), ETHER_ADDR_LEN);
 1195                 sc->sc_ifaddr = ifs;
 1196                 EVENTHANDLER_INVOKE(iflladdr_event, sc->sc_ifp);
 1197         }
 1198 
 1199         ifs->if_bridge = sc;
 1200         bstp_create(&sc->sc_stp, &bif->bif_stp, bif->bif_ifp);
 1201         /*
 1202          * XXX: XLOCK HERE!?!
 1203          *
 1204          * NOTE: insert_***HEAD*** should be safe for the traversals.
 1205          */
 1206         LIST_INSERT_HEAD(&sc->sc_iflist, bif, bif_next);
 1207 
 1208         /* Set interface capabilities to the intersection set of all members */
 1209         bridge_mutecaps(sc);
 1210         bridge_linkcheck(sc);
 1211 
 1212         /* Place the interface into promiscuous mode */
 1213         switch (ifs->if_type) {
 1214                 case IFT_ETHER:
 1215                 case IFT_L2VLAN:
 1216                         BRIDGE_UNLOCK(sc);
 1217                         error = ifpromisc(ifs, 1);
 1218                         BRIDGE_LOCK(sc);
 1219                         break;
 1220         }
 1221 
 1222         if (error)
 1223                 bridge_delete_member(sc, bif, 0);
 1224         return (error);
 1225 }
 1226 
 1227 static int
 1228 bridge_ioctl_del(struct bridge_softc *sc, void *arg)
 1229 {
 1230         struct ifbreq *req = arg;
 1231         struct bridge_iflist *bif;
 1232 
 1233         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
 1234         if (bif == NULL)
 1235                 return (ENOENT);
 1236 
 1237         bridge_delete_member(sc, bif, 0);
 1238 
 1239         return (0);
 1240 }
 1241 
 1242 static int
 1243 bridge_ioctl_gifflags(struct bridge_softc *sc, void *arg)
 1244 {
 1245         struct ifbreq *req = arg;
 1246         struct bridge_iflist *bif;
 1247         struct bstp_port *bp;
 1248 
 1249         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
 1250         if (bif == NULL)
 1251                 return (ENOENT);
 1252 
 1253         bp = &bif->bif_stp;
 1254         req->ifbr_ifsflags = bif->bif_flags;
 1255         req->ifbr_state = bp->bp_state;
 1256         req->ifbr_priority = bp->bp_priority;
 1257         req->ifbr_path_cost = bp->bp_path_cost;
 1258         req->ifbr_portno = bif->bif_ifp->if_index & 0xfff;
 1259         req->ifbr_proto = bp->bp_protover;
 1260         req->ifbr_role = bp->bp_role;
 1261         req->ifbr_stpflags = bp->bp_flags;
 1262         req->ifbr_addrcnt = bif->bif_addrcnt;
 1263         req->ifbr_addrmax = bif->bif_addrmax;
 1264         req->ifbr_addrexceeded = bif->bif_addrexceeded;
 1265 
 1266         /* Copy STP state options as flags */
 1267         if (bp->bp_operedge)
 1268                 req->ifbr_ifsflags |= IFBIF_BSTP_EDGE;
 1269         if (bp->bp_flags & BSTP_PORT_AUTOEDGE)
 1270                 req->ifbr_ifsflags |= IFBIF_BSTP_AUTOEDGE;
 1271         if (bp->bp_ptp_link)
 1272                 req->ifbr_ifsflags |= IFBIF_BSTP_PTP;
 1273         if (bp->bp_flags & BSTP_PORT_AUTOPTP)
 1274                 req->ifbr_ifsflags |= IFBIF_BSTP_AUTOPTP;
 1275         if (bp->bp_flags & BSTP_PORT_ADMEDGE)
 1276                 req->ifbr_ifsflags |= IFBIF_BSTP_ADMEDGE;
 1277         if (bp->bp_flags & BSTP_PORT_ADMCOST)
 1278                 req->ifbr_ifsflags |= IFBIF_BSTP_ADMCOST;
 1279         return (0);
 1280 }
 1281 
 1282 static int
 1283 bridge_ioctl_sifflags(struct bridge_softc *sc, void *arg)
 1284 {
 1285         struct ifbreq *req = arg;
 1286         struct bridge_iflist *bif;
 1287         struct bstp_port *bp;
 1288         int error;
 1289 
 1290         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
 1291         if (bif == NULL)
 1292                 return (ENOENT);
 1293         bp = &bif->bif_stp;
 1294 
 1295         if (req->ifbr_ifsflags & IFBIF_SPAN)
 1296                 /* SPAN is readonly */
 1297                 return (EINVAL);
 1298 
 1299         if (req->ifbr_ifsflags & IFBIF_STP) {
 1300                 if ((bif->bif_flags & IFBIF_STP) == 0) {
 1301                         error = bstp_enable(&bif->bif_stp);
 1302                         if (error)
 1303                                 return (error);
 1304                 }
 1305         } else {
 1306                 if ((bif->bif_flags & IFBIF_STP) != 0)
 1307                         bstp_disable(&bif->bif_stp);
 1308         }
 1309 
 1310         /* Pass on STP flags */
 1311         bstp_set_edge(bp, req->ifbr_ifsflags & IFBIF_BSTP_EDGE ? 1 : 0);
 1312         bstp_set_autoedge(bp, req->ifbr_ifsflags & IFBIF_BSTP_AUTOEDGE ? 1 : 0);
 1313         bstp_set_ptp(bp, req->ifbr_ifsflags & IFBIF_BSTP_PTP ? 1 : 0);
 1314         bstp_set_autoptp(bp, req->ifbr_ifsflags & IFBIF_BSTP_AUTOPTP ? 1 : 0);
 1315 
 1316         /* Save the bits relating to the bridge */
 1317         bif->bif_flags = req->ifbr_ifsflags & IFBIFMASK;
 1318 
 1319         return (0);
 1320 }
 1321 
 1322 static int
 1323 bridge_ioctl_scache(struct bridge_softc *sc, void *arg)
 1324 {
 1325         struct ifbrparam *param = arg;
 1326 
 1327         sc->sc_brtmax = param->ifbrp_csize;
 1328         bridge_rttrim(sc);
 1329 
 1330         return (0);
 1331 }
 1332 
 1333 static int
 1334 bridge_ioctl_gcache(struct bridge_softc *sc, void *arg)
 1335 {
 1336         struct ifbrparam *param = arg;
 1337 
 1338         param->ifbrp_csize = sc->sc_brtmax;
 1339 
 1340         return (0);
 1341 }
 1342 
 1343 static int
 1344 bridge_ioctl_gifs(struct bridge_softc *sc, void *arg)
 1345 {
 1346         struct ifbifconf *bifc = arg;
 1347         struct bridge_iflist *bif;
 1348         struct ifbreq breq;
 1349         char *buf, *outbuf;
 1350         int count, buflen, len, error = 0;
 1351 
 1352         count = 0;
 1353         LIST_FOREACH(bif, &sc->sc_iflist, bif_next)
 1354                 count++;
 1355         LIST_FOREACH(bif, &sc->sc_spanlist, bif_next)
 1356                 count++;
 1357 
 1358         buflen = sizeof(breq) * count;
 1359         if (bifc->ifbic_len == 0) {
 1360                 bifc->ifbic_len = buflen;
 1361                 return (0);
 1362         }
 1363         BRIDGE_UNLOCK(sc);
 1364         outbuf = malloc(buflen, M_TEMP, M_WAITOK | M_ZERO);
 1365         BRIDGE_LOCK(sc);
 1366 
 1367         count = 0;
 1368         buf = outbuf;
 1369         len = min(bifc->ifbic_len, buflen);
 1370         bzero(&breq, sizeof(breq));
 1371         LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
 1372                 if (len < sizeof(breq))
 1373                         break;
 1374 
 1375                 strlcpy(breq.ifbr_ifsname, bif->bif_ifp->if_xname,
 1376                     sizeof(breq.ifbr_ifsname));
 1377                 /* Fill in the ifbreq structure */
 1378                 error = bridge_ioctl_gifflags(sc, &breq);
 1379                 if (error)
 1380                         break;
 1381                 memcpy(buf, &breq, sizeof(breq));
 1382                 count++;
 1383                 buf += sizeof(breq);
 1384                 len -= sizeof(breq);
 1385         }
 1386         LIST_FOREACH(bif, &sc->sc_spanlist, bif_next) {
 1387                 if (len < sizeof(breq))
 1388                         break;
 1389 
 1390                 strlcpy(breq.ifbr_ifsname, bif->bif_ifp->if_xname,
 1391                     sizeof(breq.ifbr_ifsname));
 1392                 breq.ifbr_ifsflags = bif->bif_flags;
 1393                 breq.ifbr_portno = bif->bif_ifp->if_index & 0xfff;
 1394                 memcpy(buf, &breq, sizeof(breq));
 1395                 count++;
 1396                 buf += sizeof(breq);
 1397                 len -= sizeof(breq);
 1398         }
 1399 
 1400         BRIDGE_UNLOCK(sc);
 1401         bifc->ifbic_len = sizeof(breq) * count;
 1402         error = copyout(outbuf, bifc->ifbic_req, bifc->ifbic_len);
 1403         BRIDGE_LOCK(sc);
 1404         free(outbuf, M_TEMP);
 1405         return (error);
 1406 }
 1407 
 1408 static int
 1409 bridge_ioctl_rts(struct bridge_softc *sc, void *arg)
 1410 {
 1411         struct ifbaconf *bac = arg;
 1412         struct bridge_rtnode *brt;
 1413         struct ifbareq bareq;
 1414         char *buf, *outbuf;
 1415         int count, buflen, len, error = 0;
 1416 
 1417         if (bac->ifbac_len == 0)
 1418                 return (0);
 1419 
 1420         count = 0;
 1421         LIST_FOREACH(brt, &sc->sc_rtlist, brt_list)
 1422                 count++;
 1423         buflen = sizeof(bareq) * count;
 1424 
 1425         BRIDGE_UNLOCK(sc);
 1426         outbuf = malloc(buflen, M_TEMP, M_WAITOK | M_ZERO);
 1427         BRIDGE_LOCK(sc);
 1428 
 1429         count = 0;
 1430         buf = outbuf;
 1431         len = min(bac->ifbac_len, buflen);
 1432         bzero(&bareq, sizeof(bareq));
 1433         LIST_FOREACH(brt, &sc->sc_rtlist, brt_list) {
 1434                 if (len < sizeof(bareq))
 1435                         goto out;
 1436                 strlcpy(bareq.ifba_ifsname, brt->brt_ifp->if_xname,
 1437                     sizeof(bareq.ifba_ifsname));
 1438                 memcpy(bareq.ifba_dst, brt->brt_addr, sizeof(brt->brt_addr));
 1439                 bareq.ifba_vlan = brt->brt_vlan;
 1440                 if ((brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC &&
 1441                                 time_uptime < brt->brt_expire)
 1442                         bareq.ifba_expire = brt->brt_expire - time_uptime;
 1443                 else
 1444                         bareq.ifba_expire = 0;
 1445                 bareq.ifba_flags = brt->brt_flags;
 1446 
 1447                 memcpy(buf, &bareq, sizeof(bareq));
 1448                 count++;
 1449                 buf += sizeof(bareq);
 1450                 len -= sizeof(bareq);
 1451         }
 1452 out:
 1453         BRIDGE_UNLOCK(sc);
 1454         bac->ifbac_len = sizeof(bareq) * count;
 1455         error = copyout(outbuf, bac->ifbac_req, bac->ifbac_len);
 1456         BRIDGE_LOCK(sc);
 1457         free(outbuf, M_TEMP);
 1458         return (error);
 1459 }
 1460 
 1461 static int
 1462 bridge_ioctl_saddr(struct bridge_softc *sc, void *arg)
 1463 {
 1464         struct ifbareq *req = arg;
 1465         struct bridge_iflist *bif;
 1466         int error;
 1467 
 1468         bif = bridge_lookup_member(sc, req->ifba_ifsname);
 1469         if (bif == NULL)
 1470                 return (ENOENT);
 1471 
 1472         error = bridge_rtupdate(sc, req->ifba_dst, req->ifba_vlan, bif, 1,
 1473             req->ifba_flags);
 1474 
 1475         return (error);
 1476 }
 1477 
 1478 static int
 1479 bridge_ioctl_sto(struct bridge_softc *sc, void *arg)
 1480 {
 1481         struct ifbrparam *param = arg;
 1482 
 1483         sc->sc_brttimeout = param->ifbrp_ctime;
 1484         return (0);
 1485 }
 1486 
 1487 static int
 1488 bridge_ioctl_gto(struct bridge_softc *sc, void *arg)
 1489 {
 1490         struct ifbrparam *param = arg;
 1491 
 1492         param->ifbrp_ctime = sc->sc_brttimeout;
 1493         return (0);
 1494 }
 1495 
 1496 static int
 1497 bridge_ioctl_daddr(struct bridge_softc *sc, void *arg)
 1498 {
 1499         struct ifbareq *req = arg;
 1500 
 1501         return (bridge_rtdaddr(sc, req->ifba_dst, req->ifba_vlan));
 1502 }
 1503 
 1504 static int
 1505 bridge_ioctl_flush(struct bridge_softc *sc, void *arg)
 1506 {
 1507         struct ifbreq *req = arg;
 1508 
 1509         bridge_rtflush(sc, req->ifbr_ifsflags);
 1510         return (0);
 1511 }
 1512 
 1513 static int
 1514 bridge_ioctl_gpri(struct bridge_softc *sc, void *arg)
 1515 {
 1516         struct ifbrparam *param = arg;
 1517         struct bstp_state *bs = &sc->sc_stp;
 1518 
 1519         param->ifbrp_prio = bs->bs_bridge_priority;
 1520         return (0);
 1521 }
 1522 
 1523 static int
 1524 bridge_ioctl_spri(struct bridge_softc *sc, void *arg)
 1525 {
 1526         struct ifbrparam *param = arg;
 1527 
 1528         return (bstp_set_priority(&sc->sc_stp, param->ifbrp_prio));
 1529 }
 1530 
 1531 static int
 1532 bridge_ioctl_ght(struct bridge_softc *sc, void *arg)
 1533 {
 1534         struct ifbrparam *param = arg;
 1535         struct bstp_state *bs = &sc->sc_stp;
 1536 
 1537         param->ifbrp_hellotime = bs->bs_bridge_htime >> 8;
 1538         return (0);
 1539 }
 1540 
 1541 static int
 1542 bridge_ioctl_sht(struct bridge_softc *sc, void *arg)
 1543 {
 1544         struct ifbrparam *param = arg;
 1545 
 1546         return (bstp_set_htime(&sc->sc_stp, param->ifbrp_hellotime));
 1547 }
 1548 
 1549 static int
 1550 bridge_ioctl_gfd(struct bridge_softc *sc, void *arg)
 1551 {
 1552         struct ifbrparam *param = arg;
 1553         struct bstp_state *bs = &sc->sc_stp;
 1554 
 1555         param->ifbrp_fwddelay = bs->bs_bridge_fdelay >> 8;
 1556         return (0);
 1557 }
 1558 
 1559 static int
 1560 bridge_ioctl_sfd(struct bridge_softc *sc, void *arg)
 1561 {
 1562         struct ifbrparam *param = arg;
 1563 
 1564         return (bstp_set_fdelay(&sc->sc_stp, param->ifbrp_fwddelay));
 1565 }
 1566 
 1567 static int
 1568 bridge_ioctl_gma(struct bridge_softc *sc, void *arg)
 1569 {
 1570         struct ifbrparam *param = arg;
 1571         struct bstp_state *bs = &sc->sc_stp;
 1572 
 1573         param->ifbrp_maxage = bs->bs_bridge_max_age >> 8;
 1574         return (0);
 1575 }
 1576 
 1577 static int
 1578 bridge_ioctl_sma(struct bridge_softc *sc, void *arg)
 1579 {
 1580         struct ifbrparam *param = arg;
 1581 
 1582         return (bstp_set_maxage(&sc->sc_stp, param->ifbrp_maxage));
 1583 }
 1584 
 1585 static int
 1586 bridge_ioctl_sifprio(struct bridge_softc *sc, void *arg)
 1587 {
 1588         struct ifbreq *req = arg;
 1589         struct bridge_iflist *bif;
 1590 
 1591         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
 1592         if (bif == NULL)
 1593                 return (ENOENT);
 1594 
 1595         return (bstp_set_port_priority(&bif->bif_stp, req->ifbr_priority));
 1596 }
 1597 
 1598 static int
 1599 bridge_ioctl_sifcost(struct bridge_softc *sc, void *arg)
 1600 {
 1601         struct ifbreq *req = arg;
 1602         struct bridge_iflist *bif;
 1603 
 1604         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
 1605         if (bif == NULL)
 1606                 return (ENOENT);
 1607 
 1608         return (bstp_set_path_cost(&bif->bif_stp, req->ifbr_path_cost));
 1609 }
 1610 
 1611 static int
 1612 bridge_ioctl_sifmaxaddr(struct bridge_softc *sc, void *arg)
 1613 {
 1614         struct ifbreq *req = arg;
 1615         struct bridge_iflist *bif;
 1616 
 1617         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
 1618         if (bif == NULL)
 1619                 return (ENOENT);
 1620 
 1621         bif->bif_addrmax = req->ifbr_addrmax;
 1622         return (0);
 1623 }
 1624 
 1625 static int
 1626 bridge_ioctl_addspan(struct bridge_softc *sc, void *arg)
 1627 {
 1628         struct ifbreq *req = arg;
 1629         struct bridge_iflist *bif = NULL;
 1630         struct ifnet *ifs;
 1631 
 1632         ifs = ifunit(req->ifbr_ifsname);
 1633         if (ifs == NULL)
 1634                 return (ENOENT);
 1635 
 1636         LIST_FOREACH(bif, &sc->sc_spanlist, bif_next)
 1637                 if (ifs == bif->bif_ifp)
 1638                         return (EBUSY);
 1639 
 1640         if (ifs->if_bridge != NULL)
 1641                 return (EBUSY);
 1642 
 1643         switch (ifs->if_type) {
 1644                 case IFT_ETHER:
 1645                 case IFT_GIF:
 1646                 case IFT_L2VLAN:
 1647                         break;
 1648                 default:
 1649                         return (EINVAL);
 1650         }
 1651 
 1652         bif = malloc(sizeof(*bif), M_DEVBUF, M_NOWAIT|M_ZERO);
 1653         if (bif == NULL)
 1654                 return (ENOMEM);
 1655 
 1656         bif->bif_ifp = ifs;
 1657         bif->bif_flags = IFBIF_SPAN;
 1658 
 1659         LIST_INSERT_HEAD(&sc->sc_spanlist, bif, bif_next);
 1660 
 1661         return (0);
 1662 }
 1663 
 1664 static int
 1665 bridge_ioctl_delspan(struct bridge_softc *sc, void *arg)
 1666 {
 1667         struct ifbreq *req = arg;
 1668         struct bridge_iflist *bif;
 1669         struct ifnet *ifs;
 1670 
 1671         ifs = ifunit(req->ifbr_ifsname);
 1672         if (ifs == NULL)
 1673                 return (ENOENT);
 1674 
 1675         LIST_FOREACH(bif, &sc->sc_spanlist, bif_next)
 1676                 if (ifs == bif->bif_ifp)
 1677                         break;
 1678 
 1679         if (bif == NULL)
 1680                 return (ENOENT);
 1681 
 1682         bridge_delete_span(sc, bif);
 1683 
 1684         return (0);
 1685 }
 1686 
 1687 static int
 1688 bridge_ioctl_gbparam(struct bridge_softc *sc, void *arg)
 1689 {
 1690         struct ifbropreq *req = arg;
 1691         struct bstp_state *bs = &sc->sc_stp;
 1692         struct bstp_port *root_port;
 1693 
 1694         req->ifbop_maxage = bs->bs_bridge_max_age >> 8;
 1695         req->ifbop_hellotime = bs->bs_bridge_htime >> 8;
 1696         req->ifbop_fwddelay = bs->bs_bridge_fdelay >> 8;
 1697 
 1698         root_port = bs->bs_root_port;
 1699         if (root_port == NULL)
 1700                 req->ifbop_root_port = 0;
 1701         else
 1702                 req->ifbop_root_port = root_port->bp_ifp->if_index;
 1703 
 1704         req->ifbop_holdcount = bs->bs_txholdcount;
 1705         req->ifbop_priority = bs->bs_bridge_priority;
 1706         req->ifbop_protocol = bs->bs_protover;
 1707         req->ifbop_root_path_cost = bs->bs_root_pv.pv_cost;
 1708         req->ifbop_bridgeid = bs->bs_bridge_pv.pv_dbridge_id;
 1709         req->ifbop_designated_root = bs->bs_root_pv.pv_root_id;
 1710         req->ifbop_designated_bridge = bs->bs_root_pv.pv_dbridge_id;
 1711         req->ifbop_last_tc_time.tv_sec = bs->bs_last_tc_time.tv_sec;
 1712         req->ifbop_last_tc_time.tv_usec = bs->bs_last_tc_time.tv_usec;
 1713 
 1714         return (0);
 1715 }
 1716 
 1717 static int
 1718 bridge_ioctl_grte(struct bridge_softc *sc, void *arg)
 1719 {
 1720         struct ifbrparam *param = arg;
 1721 
 1722         param->ifbrp_cexceeded = sc->sc_brtexceeded;
 1723         return (0);
 1724 }
 1725 
 1726 static int
 1727 bridge_ioctl_gifsstp(struct bridge_softc *sc, void *arg)
 1728 {
 1729         struct ifbpstpconf *bifstp = arg;
 1730         struct bridge_iflist *bif;
 1731         struct bstp_port *bp;
 1732         struct ifbpstpreq bpreq;
 1733         char *buf, *outbuf;
 1734         int count, buflen, len, error = 0;
 1735 
 1736         count = 0;
 1737         LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
 1738                 if ((bif->bif_flags & IFBIF_STP) != 0)
 1739                         count++;
 1740         }
 1741 
 1742         buflen = sizeof(bpreq) * count;
 1743         if (bifstp->ifbpstp_len == 0) {
 1744                 bifstp->ifbpstp_len = buflen;
 1745                 return (0);
 1746         }
 1747 
 1748         BRIDGE_UNLOCK(sc);
 1749         outbuf = malloc(buflen, M_TEMP, M_WAITOK | M_ZERO);
 1750         BRIDGE_LOCK(sc);
 1751 
 1752         count = 0;
 1753         buf = outbuf;
 1754         len = min(bifstp->ifbpstp_len, buflen);
 1755         bzero(&bpreq, sizeof(bpreq));
 1756         LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
 1757                 if (len < sizeof(bpreq))
 1758                         break;
 1759 
 1760                 if ((bif->bif_flags & IFBIF_STP) == 0)
 1761                         continue;
 1762 
 1763                 bp = &bif->bif_stp;
 1764                 bpreq.ifbp_portno = bif->bif_ifp->if_index & 0xfff;
 1765                 bpreq.ifbp_fwd_trans = bp->bp_forward_transitions;
 1766                 bpreq.ifbp_design_cost = bp->bp_desg_pv.pv_cost;
 1767                 bpreq.ifbp_design_port = bp->bp_desg_pv.pv_port_id;
 1768                 bpreq.ifbp_design_bridge = bp->bp_desg_pv.pv_dbridge_id;
 1769                 bpreq.ifbp_design_root = bp->bp_desg_pv.pv_root_id;
 1770 
 1771                 memcpy(buf, &bpreq, sizeof(bpreq));
 1772                 count++;
 1773                 buf += sizeof(bpreq);
 1774                 len -= sizeof(bpreq);
 1775         }
 1776 
 1777         BRIDGE_UNLOCK(sc);
 1778         bifstp->ifbpstp_len = sizeof(bpreq) * count;
 1779         error = copyout(outbuf, bifstp->ifbpstp_req, bifstp->ifbpstp_len);
 1780         BRIDGE_LOCK(sc);
 1781         free(outbuf, M_TEMP);
 1782         return (error);
 1783 }
 1784 
 1785 static int
 1786 bridge_ioctl_sproto(struct bridge_softc *sc, void *arg)
 1787 {
 1788         struct ifbrparam *param = arg;
 1789 
 1790         return (bstp_set_protocol(&sc->sc_stp, param->ifbrp_proto));
 1791 }
 1792 
 1793 static int
 1794 bridge_ioctl_stxhc(struct bridge_softc *sc, void *arg)
 1795 {
 1796         struct ifbrparam *param = arg;
 1797 
 1798         return (bstp_set_holdcount(&sc->sc_stp, param->ifbrp_txhc));
 1799 }
 1800 
 1801 /*
 1802  * bridge_ifdetach:
 1803  *
 1804  *      Detach an interface from a bridge.  Called when a member
 1805  *      interface is detaching.
 1806  */
 1807 static void
 1808 bridge_ifdetach(void *arg __unused, struct ifnet *ifp)
 1809 {
 1810         struct bridge_softc *sc = ifp->if_bridge;
 1811         struct bridge_iflist *bif;
 1812 
 1813         if (ifp->if_flags & IFF_RENAMING)
 1814                 return;
 1815         if (V_bridge_cloner == NULL) {
 1816                 /*
 1817                  * This detach handler can be called after
 1818                  * vnet_bridge_uninit().  Just return in that case.
 1819                  */
 1820                 return;
 1821         }
 1822         /* Check if the interface is a bridge member */
 1823         if (sc != NULL) {
 1824                 BRIDGE_LOCK(sc);
 1825 
 1826                 bif = bridge_lookup_member_if(sc, ifp);
 1827                 if (bif != NULL)
 1828                         bridge_delete_member(sc, bif, 1);
 1829 
 1830                 BRIDGE_UNLOCK(sc);
 1831                 return;
 1832         }
 1833 
 1834         /* Check if the interface is a span port */
 1835         BRIDGE_LIST_LOCK();
 1836         LIST_FOREACH(sc, &V_bridge_list, sc_list) {
 1837                 BRIDGE_LOCK(sc);
 1838                 LIST_FOREACH(bif, &sc->sc_spanlist, bif_next)
 1839                         if (ifp == bif->bif_ifp) {
 1840                                 bridge_delete_span(sc, bif);
 1841                                 break;
 1842                         }
 1843 
 1844                 BRIDGE_UNLOCK(sc);
 1845         }
 1846         BRIDGE_LIST_UNLOCK();
 1847 }
 1848 
 1849 /*
 1850  * bridge_init:
 1851  *
 1852  *      Initialize a bridge interface.
 1853  */
 1854 static void
 1855 bridge_init(void *xsc)
 1856 {
 1857         struct bridge_softc *sc = (struct bridge_softc *)xsc;
 1858         struct ifnet *ifp = sc->sc_ifp;
 1859 
 1860         if (ifp->if_drv_flags & IFF_DRV_RUNNING)
 1861                 return;
 1862 
 1863         BRIDGE_LOCK(sc);
 1864         callout_reset(&sc->sc_brcallout, bridge_rtable_prune_period * hz,
 1865             bridge_timer, sc);
 1866 
 1867         ifp->if_drv_flags |= IFF_DRV_RUNNING;
 1868         bstp_init(&sc->sc_stp);         /* Initialize Spanning Tree */
 1869 
 1870         BRIDGE_UNLOCK(sc);
 1871 }
 1872 
 1873 /*
 1874  * bridge_stop:
 1875  *
 1876  *      Stop the bridge interface.
 1877  */
 1878 static void
 1879 bridge_stop(struct ifnet *ifp, int disable)
 1880 {
 1881         struct bridge_softc *sc = ifp->if_softc;
 1882 
 1883         BRIDGE_LOCK_ASSERT(sc);
 1884 
 1885         if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0)
 1886                 return;
 1887 
 1888         callout_stop(&sc->sc_brcallout);
 1889         bstp_stop(&sc->sc_stp);
 1890 
 1891         bridge_rtflush(sc, IFBF_FLUSHDYN);
 1892 
 1893         ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
 1894 }
 1895 
 1896 /*
 1897  * bridge_enqueue:
 1898  *
 1899  *      Enqueue a packet on a bridge member interface.
 1900  *
 1901  */
 1902 static int
 1903 bridge_enqueue(struct bridge_softc *sc, struct ifnet *dst_ifp, struct mbuf *m)
 1904 {
 1905         int len, err = 0;
 1906         short mflags;
 1907         struct mbuf *m0;
 1908 
 1909         /* We may be sending a fragment so traverse the mbuf */
 1910         for (; m; m = m0) {
 1911                 m0 = m->m_nextpkt;
 1912                 m->m_nextpkt = NULL;
 1913                 len = m->m_pkthdr.len;
 1914                 mflags = m->m_flags;
 1915 
 1916                 /*
 1917                  * If underlying interface can not do VLAN tag insertion itself
 1918                  * then attach a packet tag that holds it.
 1919                  */
 1920                 if ((m->m_flags & M_VLANTAG) &&
 1921                     (dst_ifp->if_capenable & IFCAP_VLAN_HWTAGGING) == 0) {
 1922                         m = ether_vlanencap(m, m->m_pkthdr.ether_vtag);
 1923                         if (m == NULL) {
 1924                                 if_printf(dst_ifp,
 1925                                     "unable to prepend VLAN header\n");
 1926                                 if_inc_counter(dst_ifp, IFCOUNTER_OERRORS, 1);
 1927                                 continue;
 1928                         }
 1929                         m->m_flags &= ~M_VLANTAG;
 1930                 }
 1931 
 1932                 M_ASSERTPKTHDR(m); /* We shouldn't transmit mbuf without pkthdr */
 1933                 if ((err = dst_ifp->if_transmit(dst_ifp, m))) {
 1934                         m_freem(m0);
 1935                         if_inc_counter(sc->sc_ifp, IFCOUNTER_OERRORS, 1);
 1936                         break;
 1937                 }
 1938 
 1939                 if_inc_counter(sc->sc_ifp, IFCOUNTER_OPACKETS, 1);
 1940                 if_inc_counter(sc->sc_ifp, IFCOUNTER_OBYTES, len);
 1941                 if (mflags & M_MCAST)
 1942                         if_inc_counter(sc->sc_ifp, IFCOUNTER_OMCASTS, 1);
 1943         }
 1944 
 1945         return (err);
 1946 }
 1947 
 1948 /*
 1949  * bridge_dummynet:
 1950  *
 1951  *      Receive a queued packet from dummynet and pass it on to the output
 1952  *      interface.
 1953  *
 1954  *      The mbuf has the Ethernet header already attached.
 1955  */
 1956 static void
 1957 bridge_dummynet(struct mbuf *m, struct ifnet *ifp)
 1958 {
 1959         struct bridge_softc *sc;
 1960 
 1961         sc = ifp->if_bridge;
 1962 
 1963         /*
 1964          * The packet didnt originate from a member interface. This should only
 1965          * ever happen if a member interface is removed while packets are
 1966          * queued for it.
 1967          */
 1968         if (sc == NULL) {
 1969                 m_freem(m);
 1970                 return;
 1971         }
 1972 
 1973         if (PFIL_HOOKED(&V_inet_pfil_hook)
 1974 #ifdef INET6
 1975             || PFIL_HOOKED(&V_inet6_pfil_hook)
 1976 #endif
 1977             ) {
 1978                 if (bridge_pfil(&m, sc->sc_ifp, ifp, PFIL_OUT) != 0)
 1979                         return;
 1980                 if (m == NULL)
 1981                         return;
 1982         }
 1983 
 1984         bridge_enqueue(sc, ifp, m);
 1985 }
 1986 
 1987 /*
 1988  * bridge_output:
 1989  *
 1990  *      Send output from a bridge member interface.  This
 1991  *      performs the bridging function for locally originated
 1992  *      packets.
 1993  *
 1994  *      The mbuf has the Ethernet header already attached.  We must
 1995  *      enqueue or free the mbuf before returning.
 1996  */
 1997 static int
 1998 bridge_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *sa,
 1999     struct rtentry *rt)
 2000 {
 2001         struct ether_header *eh;
 2002         struct ifnet *dst_if;
 2003         struct bridge_softc *sc;
 2004         uint16_t vlan;
 2005 
 2006         if (m->m_len < ETHER_HDR_LEN) {
 2007                 m = m_pullup(m, ETHER_HDR_LEN);
 2008                 if (m == NULL)
 2009                         return (0);
 2010         }
 2011 
 2012         eh = mtod(m, struct ether_header *);
 2013         sc = ifp->if_bridge;
 2014         vlan = VLANTAGOF(m);
 2015 
 2016         BRIDGE_LOCK(sc);
 2017 
 2018         /*
 2019          * If bridge is down, but the original output interface is up,
 2020          * go ahead and send out that interface.  Otherwise, the packet
 2021          * is dropped below.
 2022          */
 2023         if ((sc->sc_ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) {
 2024                 dst_if = ifp;
 2025                 goto sendunicast;
 2026         }
 2027 
 2028         /*
 2029          * If the packet is a multicast, or we don't know a better way to
 2030          * get there, send to all interfaces.
 2031          */
 2032         if (ETHER_IS_MULTICAST(eh->ether_dhost))
 2033                 dst_if = NULL;
 2034         else
 2035                 dst_if = bridge_rtlookup(sc, eh->ether_dhost, vlan);
 2036         if (dst_if == NULL) {
 2037                 struct bridge_iflist *bif;
 2038                 struct mbuf *mc;
 2039                 int error = 0, used = 0;
 2040 
 2041                 bridge_span(sc, m);
 2042 
 2043                 BRIDGE_LOCK2REF(sc, error);
 2044                 if (error) {
 2045                         m_freem(m);
 2046                         return (0);
 2047                 }
 2048 
 2049                 LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
 2050                         dst_if = bif->bif_ifp;
 2051 
 2052                         if (dst_if->if_type == IFT_GIF)
 2053                                 continue;
 2054                         if ((dst_if->if_drv_flags & IFF_DRV_RUNNING) == 0)
 2055                                 continue;
 2056 
 2057                         /*
 2058                          * If this is not the original output interface,
 2059                          * and the interface is participating in spanning
 2060                          * tree, make sure the port is in a state that
 2061                          * allows forwarding.
 2062                          */
 2063                         if (dst_if != ifp && (bif->bif_flags & IFBIF_STP) &&
 2064                             bif->bif_stp.bp_state == BSTP_IFSTATE_DISCARDING)
 2065                                 continue;
 2066 
 2067                         if (LIST_NEXT(bif, bif_next) == NULL) {
 2068                                 used = 1;
 2069                                 mc = m;
 2070                         } else {
 2071                                 mc = m_copypacket(m, M_NOWAIT);
 2072                                 if (mc == NULL) {
 2073                                         if_inc_counter(sc->sc_ifp, IFCOUNTER_OERRORS, 1);
 2074                                         continue;
 2075                                 }
 2076                         }
 2077 
 2078                         bridge_enqueue(sc, dst_if, mc);
 2079                 }
 2080                 if (used == 0)
 2081                         m_freem(m);
 2082                 BRIDGE_UNREF(sc);
 2083                 return (0);
 2084         }
 2085 
 2086 sendunicast:
 2087         /*
 2088          * XXX Spanning tree consideration here?
 2089          */
 2090 
 2091         bridge_span(sc, m);
 2092         if ((dst_if->if_drv_flags & IFF_DRV_RUNNING) == 0) {
 2093                 m_freem(m);
 2094                 BRIDGE_UNLOCK(sc);
 2095                 return (0);
 2096         }
 2097 
 2098         BRIDGE_UNLOCK(sc);
 2099         bridge_enqueue(sc, dst_if, m);
 2100         return (0);
 2101 }
 2102 
 2103 /*
 2104  * bridge_transmit:
 2105  *
 2106  *      Do output on a bridge.
 2107  *
 2108  */
 2109 static int
 2110 bridge_transmit(struct ifnet *ifp, struct mbuf *m)
 2111 {
 2112         struct bridge_softc *sc;
 2113         struct ether_header *eh;
 2114         struct ifnet *dst_if;
 2115         int error = 0;
 2116 
 2117         sc = ifp->if_softc;
 2118 
 2119         ETHER_BPF_MTAP(ifp, m);
 2120 
 2121         eh = mtod(m, struct ether_header *);
 2122 
 2123         BRIDGE_LOCK(sc);
 2124         if (((m->m_flags & (M_BCAST|M_MCAST)) == 0) &&
 2125             (dst_if = bridge_rtlookup(sc, eh->ether_dhost, 1)) != NULL) {
 2126                 BRIDGE_UNLOCK(sc);
 2127                 error = bridge_enqueue(sc, dst_if, m);
 2128         } else
 2129                 bridge_broadcast(sc, ifp, m, 0);
 2130 
 2131         return (error);
 2132 }
 2133 
 2134 /*
 2135  * The ifp->if_qflush entry point for if_bridge(4) is no-op.
 2136  */
 2137 static void
 2138 bridge_qflush(struct ifnet *ifp __unused)
 2139 {
 2140 }
 2141 
 2142 /*
 2143  * bridge_forward:
 2144  *
 2145  *      The forwarding function of the bridge.
 2146  *
 2147  *      NOTE: Releases the lock on return.
 2148  */
 2149 static void
 2150 bridge_forward(struct bridge_softc *sc, struct bridge_iflist *sbif,
 2151     struct mbuf *m)
 2152 {
 2153         struct bridge_iflist *dbif;
 2154         struct ifnet *src_if, *dst_if, *ifp;
 2155         struct ether_header *eh;
 2156         uint16_t vlan;
 2157         uint8_t *dst;
 2158         int error;
 2159 
 2160         src_if = m->m_pkthdr.rcvif;
 2161         ifp = sc->sc_ifp;
 2162 
 2163         if_inc_counter(ifp, IFCOUNTER_IPACKETS, 1);
 2164         if_inc_counter(ifp, IFCOUNTER_IBYTES, m->m_pkthdr.len);
 2165         vlan = VLANTAGOF(m);
 2166 
 2167         if ((sbif->bif_flags & IFBIF_STP) &&
 2168             sbif->bif_stp.bp_state == BSTP_IFSTATE_DISCARDING)
 2169                 goto drop;
 2170 
 2171         eh = mtod(m, struct ether_header *);
 2172         dst = eh->ether_dhost;
 2173 
 2174         /* If the interface is learning, record the address. */
 2175         if (sbif->bif_flags & IFBIF_LEARNING) {
 2176                 error = bridge_rtupdate(sc, eh->ether_shost, vlan,
 2177                     sbif, 0, IFBAF_DYNAMIC);
 2178                 /*
 2179                  * If the interface has addresses limits then deny any source
 2180                  * that is not in the cache.
 2181                  */
 2182                 if (error && sbif->bif_addrmax)
 2183                         goto drop;
 2184         }
 2185 
 2186         if ((sbif->bif_flags & IFBIF_STP) != 0 &&
 2187             sbif->bif_stp.bp_state == BSTP_IFSTATE_LEARNING)
 2188                 goto drop;
 2189 
 2190         /*
 2191          * At this point, the port either doesn't participate
 2192          * in spanning tree or it is in the forwarding state.
 2193          */
 2194 
 2195         /*
 2196          * If the packet is unicast, destined for someone on
 2197          * "this" side of the bridge, drop it.
 2198          */
 2199         if ((m->m_flags & (M_BCAST|M_MCAST)) == 0) {
 2200                 dst_if = bridge_rtlookup(sc, dst, vlan);
 2201                 if (src_if == dst_if)
 2202                         goto drop;
 2203         } else {
 2204                 /*
 2205                  * Check if its a reserved multicast address, any address
 2206                  * listed in 802.1D section 7.12.6 may not be forwarded by the
 2207                  * bridge.
 2208                  * This is currently 01-80-C2-00-00-00 to 01-80-C2-00-00-0F
 2209                  */
 2210                 if (dst[0] == 0x01 && dst[1] == 0x80 &&
 2211                     dst[2] == 0xc2 && dst[3] == 0x00 &&
 2212                     dst[4] == 0x00 && dst[5] <= 0x0f)
 2213                         goto drop;
 2214 
 2215                 /* ...forward it to all interfaces. */
 2216                 if_inc_counter(ifp, IFCOUNTER_IMCASTS, 1);
 2217                 dst_if = NULL;
 2218         }
 2219 
 2220         /*
 2221          * If we have a destination interface which is a member of our bridge,
 2222          * OR this is a unicast packet, push it through the bpf(4) machinery.
 2223          * For broadcast or multicast packets, don't bother because it will
 2224          * be reinjected into ether_input. We do this before we pass the packets
 2225          * through the pfil(9) framework, as it is possible that pfil(9) will
 2226          * drop the packet, or possibly modify it, making it difficult to debug
 2227          * firewall issues on the bridge.
 2228          */
 2229         if (dst_if != NULL || (m->m_flags & (M_BCAST | M_MCAST)) == 0)
 2230                 ETHER_BPF_MTAP(ifp, m);
 2231 
 2232         /* run the packet filter */
 2233         if (PFIL_HOOKED(&V_inet_pfil_hook)
 2234 #ifdef INET6
 2235             || PFIL_HOOKED(&V_inet6_pfil_hook)
 2236 #endif
 2237             ) {
 2238                 BRIDGE_UNLOCK(sc);
 2239                 if (bridge_pfil(&m, ifp, src_if, PFIL_IN) != 0)
 2240                         return;
 2241                 if (m == NULL)
 2242                         return;
 2243                 BRIDGE_LOCK(sc);
 2244         }
 2245 
 2246         if (dst_if == NULL) {
 2247                 bridge_broadcast(sc, src_if, m, 1);
 2248                 return;
 2249         }
 2250 
 2251         /*
 2252          * At this point, we're dealing with a unicast frame
 2253          * going to a different interface.
 2254          */
 2255         if ((dst_if->if_drv_flags & IFF_DRV_RUNNING) == 0)
 2256                 goto drop;
 2257 
 2258         dbif = bridge_lookup_member_if(sc, dst_if);
 2259         if (dbif == NULL)
 2260                 /* Not a member of the bridge (anymore?) */
 2261                 goto drop;
 2262 
 2263         /* Private segments can not talk to each other */
 2264         if (sbif->bif_flags & dbif->bif_flags & IFBIF_PRIVATE)
 2265                 goto drop;
 2266 
 2267         if ((dbif->bif_flags & IFBIF_STP) &&
 2268             dbif->bif_stp.bp_state == BSTP_IFSTATE_DISCARDING)
 2269                 goto drop;
 2270 
 2271         BRIDGE_UNLOCK(sc);
 2272 
 2273         if (PFIL_HOOKED(&V_inet_pfil_hook)
 2274 #ifdef INET6
 2275             || PFIL_HOOKED(&V_inet6_pfil_hook)
 2276 #endif
 2277             ) {
 2278                 if (bridge_pfil(&m, ifp, dst_if, PFIL_OUT) != 0)
 2279                         return;
 2280                 if (m == NULL)
 2281                         return;
 2282         }
 2283 
 2284         bridge_enqueue(sc, dst_if, m);
 2285         return;
 2286 
 2287 drop:
 2288         BRIDGE_UNLOCK(sc);
 2289         m_freem(m);
 2290 }
 2291 
 2292 /*
 2293  * bridge_input:
 2294  *
 2295  *      Receive input from a member interface.  Queue the packet for
 2296  *      bridging if it is not for us.
 2297  */
 2298 static struct mbuf *
 2299 bridge_input(struct ifnet *ifp, struct mbuf *m)
 2300 {
 2301         struct bridge_softc *sc = ifp->if_bridge;
 2302         struct bridge_iflist *bif, *bif2;
 2303         struct ifnet *bifp;
 2304         struct ether_header *eh;
 2305         struct mbuf *mc, *mc2;
 2306         uint16_t vlan;
 2307         int error;
 2308 
 2309         if ((sc->sc_ifp->if_drv_flags & IFF_DRV_RUNNING) == 0)
 2310                 return (m);
 2311 
 2312         bifp = sc->sc_ifp;
 2313         vlan = VLANTAGOF(m);
 2314 
 2315         /*
 2316          * Implement support for bridge monitoring. If this flag has been
 2317          * set on this interface, discard the packet once we push it through
 2318          * the bpf(4) machinery, but before we do, increment the byte and
 2319          * packet counters associated with this interface.
 2320          */
 2321         if ((bifp->if_flags & IFF_MONITOR) != 0) {
 2322                 m->m_pkthdr.rcvif  = bifp;
 2323                 ETHER_BPF_MTAP(bifp, m);
 2324                 if_inc_counter(bifp, IFCOUNTER_IPACKETS, 1);
 2325                 if_inc_counter(bifp, IFCOUNTER_IBYTES, m->m_pkthdr.len);
 2326                 m_freem(m);
 2327                 return (NULL);
 2328         }
 2329         BRIDGE_LOCK(sc);
 2330         bif = bridge_lookup_member_if(sc, ifp);
 2331         if (bif == NULL) {
 2332                 BRIDGE_UNLOCK(sc);
 2333                 return (m);
 2334         }
 2335 
 2336         eh = mtod(m, struct ether_header *);
 2337 
 2338         bridge_span(sc, m);
 2339 
 2340         if (m->m_flags & (M_BCAST|M_MCAST)) {
 2341                 /* Tap off 802.1D packets; they do not get forwarded. */
 2342                 if (memcmp(eh->ether_dhost, bstp_etheraddr,
 2343                     ETHER_ADDR_LEN) == 0) {
 2344                         bstp_input(&bif->bif_stp, ifp, m); /* consumes mbuf */
 2345                         BRIDGE_UNLOCK(sc);
 2346                         return (NULL);
 2347                 }
 2348 
 2349                 if ((bif->bif_flags & IFBIF_STP) &&
 2350                     bif->bif_stp.bp_state == BSTP_IFSTATE_DISCARDING) {
 2351                         BRIDGE_UNLOCK(sc);
 2352                         return (m);
 2353                 }
 2354 
 2355                 /*
 2356                  * Make a deep copy of the packet and enqueue the copy
 2357                  * for bridge processing; return the original packet for
 2358                  * local processing.
 2359                  */
 2360                 mc = m_dup(m, M_NOWAIT);
 2361                 if (mc == NULL) {
 2362                         BRIDGE_UNLOCK(sc);
 2363                         return (m);
 2364                 }
 2365 
 2366                 /* Perform the bridge forwarding function with the copy. */
 2367                 bridge_forward(sc, bif, mc);
 2368 
 2369                 /*
 2370                  * Reinject the mbuf as arriving on the bridge so we have a
 2371                  * chance at claiming multicast packets. We can not loop back
 2372                  * here from ether_input as a bridge is never a member of a
 2373                  * bridge.
 2374                  */
 2375                 KASSERT(bifp->if_bridge == NULL,
 2376                     ("loop created in bridge_input"));
 2377                 mc2 = m_dup(m, M_NOWAIT);
 2378                 if (mc2 != NULL) {
 2379                         /* Keep the layer3 header aligned */
 2380                         int i = min(mc2->m_pkthdr.len, max_protohdr);
 2381                         mc2 = m_copyup(mc2, i, ETHER_ALIGN);
 2382                 }
 2383                 if (mc2 != NULL) {
 2384                         mc2->m_pkthdr.rcvif = bifp;
 2385                         (*bifp->if_input)(bifp, mc2);
 2386                 }
 2387 
 2388                 /* Return the original packet for local processing. */
 2389                 return (m);
 2390         }
 2391 
 2392         if ((bif->bif_flags & IFBIF_STP) &&
 2393             bif->bif_stp.bp_state == BSTP_IFSTATE_DISCARDING) {
 2394                 BRIDGE_UNLOCK(sc);
 2395                 return (m);
 2396         }
 2397 
 2398 #if (defined(INET) || defined(INET6))
 2399 #   define OR_CARP_CHECK_WE_ARE_DST(iface) \
 2400         || ((iface)->if_carp \
 2401             && (*carp_forus_p)((iface), eh->ether_dhost))
 2402 #   define OR_CARP_CHECK_WE_ARE_SRC(iface) \
 2403         || ((iface)->if_carp \
 2404             && (*carp_forus_p)((iface), eh->ether_shost))
 2405 #else
 2406 #   define OR_CARP_CHECK_WE_ARE_DST(iface)
 2407 #   define OR_CARP_CHECK_WE_ARE_SRC(iface)
 2408 #endif
 2409 
 2410 #ifdef INET6
 2411 #   define OR_PFIL_HOOKED_INET6 \
 2412         || PFIL_HOOKED(&V_inet6_pfil_hook)
 2413 #else
 2414 #   define OR_PFIL_HOOKED_INET6
 2415 #endif
 2416 
 2417 #define GRAB_OUR_PACKETS(iface) \
 2418         if ((iface)->if_type == IFT_GIF) \
 2419                 continue; \
 2420         /* It is destined for us. */ \
 2421         if (memcmp(IF_LLADDR((iface)), eh->ether_dhost,  ETHER_ADDR_LEN) == 0 \
 2422             OR_CARP_CHECK_WE_ARE_DST((iface))                           \
 2423             ) {                                                         \
 2424                 if ((iface)->if_type == IFT_BRIDGE) {                   \
 2425                         ETHER_BPF_MTAP(iface, m);                       \
 2426                         if_inc_counter(iface, IFCOUNTER_IPACKETS, 1);                           \
 2427                         if_inc_counter(iface, IFCOUNTER_IBYTES, m->m_pkthdr.len);               \
 2428                         /* Filter on the physical interface. */         \
 2429                         if (V_pfil_local_phys &&                        \
 2430                             (PFIL_HOOKED(&V_inet_pfil_hook)             \
 2431                              OR_PFIL_HOOKED_INET6)) {                   \
 2432                                 if (bridge_pfil(&m, NULL, ifp,          \
 2433                                     PFIL_IN) != 0 || m == NULL) {       \
 2434                                         BRIDGE_UNLOCK(sc);              \
 2435                                         return (NULL);                  \
 2436                                 }                                       \
 2437                                 eh = mtod(m, struct ether_header *);    \
 2438                         }                                               \
 2439                 }                                                       \
 2440                 if (bif->bif_flags & IFBIF_LEARNING) {                  \
 2441                         error = bridge_rtupdate(sc, eh->ether_shost,    \
 2442                             vlan, bif, 0, IFBAF_DYNAMIC);               \
 2443                         if (error && bif->bif_addrmax) {                \
 2444                                 BRIDGE_UNLOCK(sc);                      \
 2445                                 m_freem(m);                             \
 2446                                 return (NULL);                          \
 2447                         }                                               \
 2448                 }                                                       \
 2449                 m->m_pkthdr.rcvif = iface;                              \
 2450                 BRIDGE_UNLOCK(sc);                                      \
 2451                 return (m);                                             \
 2452         }                                                               \
 2453                                                                         \
 2454         /* We just received a packet that we sent out. */               \
 2455         if (memcmp(IF_LLADDR((iface)), eh->ether_shost, ETHER_ADDR_LEN) == 0 \
 2456             OR_CARP_CHECK_WE_ARE_SRC((iface))                   \
 2457             ) {                                                         \
 2458                 BRIDGE_UNLOCK(sc);                                      \
 2459                 m_freem(m);                                             \
 2460                 return (NULL);                                          \
 2461         }
 2462 
 2463         /*
 2464          * Unicast.  Make sure it's not for the bridge.
 2465          */
 2466         do { GRAB_OUR_PACKETS(bifp) } while (0);
 2467 
 2468         /*
 2469          * Give a chance for ifp at first priority. This will help when the
 2470          * packet comes through the interface like VLAN's with the same MACs
 2471          * on several interfaces from the same bridge. This also will save
 2472          * some CPU cycles in case the destination interface and the input
 2473          * interface (eq ifp) are the same.
 2474          */
 2475         do { GRAB_OUR_PACKETS(ifp) } while (0);
 2476 
 2477         /* Now check the all bridge members. */
 2478         LIST_FOREACH(bif2, &sc->sc_iflist, bif_next) {
 2479                 GRAB_OUR_PACKETS(bif2->bif_ifp)
 2480         }
 2481 
 2482 #undef OR_CARP_CHECK_WE_ARE_DST
 2483 #undef OR_CARP_CHECK_WE_ARE_SRC
 2484 #undef OR_PFIL_HOOKED_INET6
 2485 #undef GRAB_OUR_PACKETS
 2486 
 2487         /* Perform the bridge forwarding function. */
 2488         bridge_forward(sc, bif, m);
 2489 
 2490         return (NULL);
 2491 }
 2492 
 2493 /*
 2494  * bridge_broadcast:
 2495  *
 2496  *      Send a frame to all interfaces that are members of
 2497  *      the bridge, except for the one on which the packet
 2498  *      arrived.
 2499  *
 2500  *      NOTE: Releases the lock on return.
 2501  */
 2502 static void
 2503 bridge_broadcast(struct bridge_softc *sc, struct ifnet *src_if,
 2504     struct mbuf *m, int runfilt)
 2505 {
 2506         struct bridge_iflist *dbif, *sbif;
 2507         struct mbuf *mc;
 2508         struct ifnet *dst_if;
 2509         int error = 0, used = 0, i;
 2510 
 2511         sbif = bridge_lookup_member_if(sc, src_if);
 2512 
 2513         BRIDGE_LOCK2REF(sc, error);
 2514         if (error) {
 2515                 m_freem(m);
 2516                 return;
 2517         }
 2518 
 2519         /* Filter on the bridge interface before broadcasting */
 2520         if (runfilt && (PFIL_HOOKED(&V_inet_pfil_hook)
 2521 #ifdef INET6
 2522             || PFIL_HOOKED(&V_inet6_pfil_hook)
 2523 #endif
 2524             )) {
 2525                 if (bridge_pfil(&m, sc->sc_ifp, NULL, PFIL_OUT) != 0)
 2526                         goto out;
 2527                 if (m == NULL)
 2528                         goto out;
 2529         }
 2530 
 2531         LIST_FOREACH(dbif, &sc->sc_iflist, bif_next) {
 2532                 dst_if = dbif->bif_ifp;
 2533                 if (dst_if == src_if)
 2534                         continue;
 2535 
 2536                 /* Private segments can not talk to each other */
 2537                 if (sbif && (sbif->bif_flags & dbif->bif_flags & IFBIF_PRIVATE))
 2538                         continue;
 2539 
 2540                 if ((dbif->bif_flags & IFBIF_STP) &&
 2541                     dbif->bif_stp.bp_state == BSTP_IFSTATE_DISCARDING)
 2542                         continue;
 2543 
 2544                 if ((dbif->bif_flags & IFBIF_DISCOVER) == 0 &&
 2545                     (m->m_flags & (M_BCAST|M_MCAST)) == 0)
 2546                         continue;
 2547 
 2548                 if ((dst_if->if_drv_flags & IFF_DRV_RUNNING) == 0)
 2549                         continue;
 2550 
 2551                 if (LIST_NEXT(dbif, bif_next) == NULL) {
 2552                         mc = m;
 2553                         used = 1;
 2554                 } else {
 2555                         mc = m_dup(m, M_NOWAIT);
 2556                         if (mc == NULL) {
 2557                                 if_inc_counter(sc->sc_ifp, IFCOUNTER_OERRORS, 1);
 2558                                 continue;
 2559                         }
 2560                 }
 2561 
 2562                 /*
 2563                  * Filter on the output interface. Pass a NULL bridge interface
 2564                  * pointer so we do not redundantly filter on the bridge for
 2565                  * each interface we broadcast on.
 2566                  */
 2567                 if (runfilt && (PFIL_HOOKED(&V_inet_pfil_hook)
 2568 #ifdef INET6
 2569                     || PFIL_HOOKED(&V_inet6_pfil_hook)
 2570 #endif
 2571                     )) {
 2572                         if (used == 0) {
 2573                                 /* Keep the layer3 header aligned */
 2574                                 i = min(mc->m_pkthdr.len, max_protohdr);
 2575                                 mc = m_copyup(mc, i, ETHER_ALIGN);
 2576                                 if (mc == NULL) {
 2577                                         if_inc_counter(sc->sc_ifp, IFCOUNTER_OERRORS, 1);
 2578                                         continue;
 2579                                 }
 2580                         }
 2581                         if (bridge_pfil(&mc, NULL, dst_if, PFIL_OUT) != 0)
 2582                                 continue;
 2583                         if (mc == NULL)
 2584                                 continue;
 2585                 }
 2586 
 2587                 bridge_enqueue(sc, dst_if, mc);
 2588         }
 2589         if (used == 0)
 2590                 m_freem(m);
 2591 
 2592 out:
 2593         BRIDGE_UNREF(sc);
 2594 }
 2595 
 2596 /*
 2597  * bridge_span:
 2598  *
 2599  *      Duplicate a packet out one or more interfaces that are in span mode,
 2600  *      the original mbuf is unmodified.
 2601  */
 2602 static void
 2603 bridge_span(struct bridge_softc *sc, struct mbuf *m)
 2604 {
 2605         struct bridge_iflist *bif;
 2606         struct ifnet *dst_if;
 2607         struct mbuf *mc;
 2608 
 2609         if (LIST_EMPTY(&sc->sc_spanlist))
 2610                 return;
 2611 
 2612         LIST_FOREACH(bif, &sc->sc_spanlist, bif_next) {
 2613                 dst_if = bif->bif_ifp;
 2614 
 2615                 if ((dst_if->if_drv_flags & IFF_DRV_RUNNING) == 0)
 2616                         continue;
 2617 
 2618                 mc = m_copypacket(m, M_NOWAIT);
 2619                 if (mc == NULL) {
 2620                         if_inc_counter(sc->sc_ifp, IFCOUNTER_OERRORS, 1);
 2621                         continue;
 2622                 }
 2623 
 2624                 bridge_enqueue(sc, dst_if, mc);
 2625         }
 2626 }
 2627 
 2628 /*
 2629  * bridge_rtupdate:
 2630  *
 2631  *      Add a bridge routing entry.
 2632  */
 2633 static int
 2634 bridge_rtupdate(struct bridge_softc *sc, const uint8_t *dst, uint16_t vlan,
 2635     struct bridge_iflist *bif, int setflags, uint8_t flags)
 2636 {
 2637         struct bridge_rtnode *brt;
 2638         int error;
 2639 
 2640         BRIDGE_LOCK_ASSERT(sc);
 2641 
 2642         /* Check the source address is valid and not multicast. */
 2643         if (ETHER_IS_MULTICAST(dst) ||
 2644             (dst[0] == 0 && dst[1] == 0 && dst[2] == 0 &&
 2645              dst[3] == 0 && dst[4] == 0 && dst[5] == 0) != 0)
 2646                 return (EINVAL);
 2647 
 2648         /* 802.1p frames map to vlan 1 */
 2649         if (vlan == 0)
 2650                 vlan = 1;
 2651 
 2652         /*
 2653          * A route for this destination might already exist.  If so,
 2654          * update it, otherwise create a new one.
 2655          */
 2656         if ((brt = bridge_rtnode_lookup(sc, dst, vlan)) == NULL) {
 2657                 if (sc->sc_brtcnt >= sc->sc_brtmax) {
 2658                         sc->sc_brtexceeded++;
 2659                         return (ENOSPC);
 2660                 }
 2661                 /* Check per interface address limits (if enabled) */
 2662                 if (bif->bif_addrmax && bif->bif_addrcnt >= bif->bif_addrmax) {
 2663                         bif->bif_addrexceeded++;
 2664                         return (ENOSPC);
 2665                 }
 2666 
 2667                 /*
 2668                  * Allocate a new bridge forwarding node, and
 2669                  * initialize the expiration time and Ethernet
 2670                  * address.
 2671                  */
 2672                 brt = uma_zalloc(V_bridge_rtnode_zone, M_NOWAIT | M_ZERO);
 2673                 if (brt == NULL)
 2674                         return (ENOMEM);
 2675 
 2676                 if (bif->bif_flags & IFBIF_STICKY)
 2677                         brt->brt_flags = IFBAF_STICKY;
 2678                 else
 2679                         brt->brt_flags = IFBAF_DYNAMIC;
 2680 
 2681                 memcpy(brt->brt_addr, dst, ETHER_ADDR_LEN);
 2682                 brt->brt_vlan = vlan;
 2683 
 2684                 if ((error = bridge_rtnode_insert(sc, brt)) != 0) {
 2685                         uma_zfree(V_bridge_rtnode_zone, brt);
 2686                         return (error);
 2687                 }
 2688                 brt->brt_dst = bif;
 2689                 bif->bif_addrcnt++;
 2690         }
 2691 
 2692         if ((brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC &&
 2693             brt->brt_dst != bif) {
 2694                 brt->brt_dst->bif_addrcnt--;
 2695                 brt->brt_dst = bif;
 2696                 brt->brt_dst->bif_addrcnt++;
 2697         }
 2698 
 2699         if ((flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC)
 2700                 brt->brt_expire = time_uptime + sc->sc_brttimeout;
 2701         if (setflags)
 2702                 brt->brt_flags = flags;
 2703 
 2704         return (0);
 2705 }
 2706 
 2707 /*
 2708  * bridge_rtlookup:
 2709  *
 2710  *      Lookup the destination interface for an address.
 2711  */
 2712 static struct ifnet *
 2713 bridge_rtlookup(struct bridge_softc *sc, const uint8_t *addr, uint16_t vlan)
 2714 {
 2715         struct bridge_rtnode *brt;
 2716 
 2717         BRIDGE_LOCK_ASSERT(sc);
 2718 
 2719         if ((brt = bridge_rtnode_lookup(sc, addr, vlan)) == NULL)
 2720                 return (NULL);
 2721 
 2722         return (brt->brt_ifp);
 2723 }
 2724 
 2725 /*
 2726  * bridge_rttrim:
 2727  *
 2728  *      Trim the routine table so that we have a number
 2729  *      of routing entries less than or equal to the
 2730  *      maximum number.
 2731  */
 2732 static void
 2733 bridge_rttrim(struct bridge_softc *sc)
 2734 {
 2735         struct bridge_rtnode *brt, *nbrt;
 2736 
 2737         BRIDGE_LOCK_ASSERT(sc);
 2738 
 2739         /* Make sure we actually need to do this. */
 2740         if (sc->sc_brtcnt <= sc->sc_brtmax)
 2741                 return;
 2742 
 2743         /* Force an aging cycle; this might trim enough addresses. */
 2744         bridge_rtage(sc);
 2745         if (sc->sc_brtcnt <= sc->sc_brtmax)
 2746                 return;
 2747 
 2748         LIST_FOREACH_SAFE(brt, &sc->sc_rtlist, brt_list, nbrt) {
 2749                 if ((brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC) {
 2750                         bridge_rtnode_destroy(sc, brt);
 2751                         if (sc->sc_brtcnt <= sc->sc_brtmax)
 2752                                 return;
 2753                 }
 2754         }
 2755 }
 2756 
 2757 /*
 2758  * bridge_timer:
 2759  *
 2760  *      Aging timer for the bridge.
 2761  */
 2762 static void
 2763 bridge_timer(void *arg)
 2764 {
 2765         struct bridge_softc *sc = arg;
 2766 
 2767         BRIDGE_LOCK_ASSERT(sc);
 2768 
 2769         /* Destruction of rtnodes requires a proper vnet context */
 2770         CURVNET_SET(sc->sc_ifp->if_vnet);
 2771         bridge_rtage(sc);
 2772 
 2773         if (sc->sc_ifp->if_drv_flags & IFF_DRV_RUNNING)
 2774                 callout_reset(&sc->sc_brcallout,
 2775                     bridge_rtable_prune_period * hz, bridge_timer, sc);
 2776         CURVNET_RESTORE();
 2777 }
 2778 
 2779 /*
 2780  * bridge_rtage:
 2781  *
 2782  *      Perform an aging cycle.
 2783  */
 2784 static void
 2785 bridge_rtage(struct bridge_softc *sc)
 2786 {
 2787         struct bridge_rtnode *brt, *nbrt;
 2788 
 2789         BRIDGE_LOCK_ASSERT(sc);
 2790 
 2791         LIST_FOREACH_SAFE(brt, &sc->sc_rtlist, brt_list, nbrt) {
 2792                 if ((brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC) {
 2793                         if (time_uptime >= brt->brt_expire)
 2794                                 bridge_rtnode_destroy(sc, brt);
 2795                 }
 2796         }
 2797 }
 2798 
 2799 /*
 2800  * bridge_rtflush:
 2801  *
 2802  *      Remove all dynamic addresses from the bridge.
 2803  */
 2804 static void
 2805 bridge_rtflush(struct bridge_softc *sc, int full)
 2806 {
 2807         struct bridge_rtnode *brt, *nbrt;
 2808 
 2809         BRIDGE_LOCK_ASSERT(sc);
 2810 
 2811         LIST_FOREACH_SAFE(brt, &sc->sc_rtlist, brt_list, nbrt) {
 2812                 if (full || (brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC)
 2813                         bridge_rtnode_destroy(sc, brt);
 2814         }
 2815 }
 2816 
 2817 /*
 2818  * bridge_rtdaddr:
 2819  *
 2820  *      Remove an address from the table.
 2821  */
 2822 static int
 2823 bridge_rtdaddr(struct bridge_softc *sc, const uint8_t *addr, uint16_t vlan)
 2824 {
 2825         struct bridge_rtnode *brt;
 2826         int found = 0;
 2827 
 2828         BRIDGE_LOCK_ASSERT(sc);
 2829 
 2830         /*
 2831          * If vlan is zero then we want to delete for all vlans so the lookup
 2832          * may return more than one.
 2833          */
 2834         while ((brt = bridge_rtnode_lookup(sc, addr, vlan)) != NULL) {
 2835                 bridge_rtnode_destroy(sc, brt);
 2836                 found = 1;
 2837         }
 2838 
 2839         return (found ? 0 : ENOENT);
 2840 }
 2841 
 2842 /*
 2843  * bridge_rtdelete:
 2844  *
 2845  *      Delete routes to a speicifc member interface.
 2846  */
 2847 static void
 2848 bridge_rtdelete(struct bridge_softc *sc, struct ifnet *ifp, int full)
 2849 {
 2850         struct bridge_rtnode *brt, *nbrt;
 2851 
 2852         BRIDGE_LOCK_ASSERT(sc);
 2853 
 2854         LIST_FOREACH_SAFE(brt, &sc->sc_rtlist, brt_list, nbrt) {
 2855                 if (brt->brt_ifp == ifp && (full ||
 2856                             (brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC))
 2857                         bridge_rtnode_destroy(sc, brt);
 2858         }
 2859 }
 2860 
 2861 /*
 2862  * bridge_rtable_init:
 2863  *
 2864  *      Initialize the route table for this bridge.
 2865  */
 2866 static void
 2867 bridge_rtable_init(struct bridge_softc *sc)
 2868 {
 2869         int i;
 2870 
 2871         sc->sc_rthash = malloc(sizeof(*sc->sc_rthash) * BRIDGE_RTHASH_SIZE,
 2872             M_DEVBUF, M_WAITOK);
 2873 
 2874         for (i = 0; i < BRIDGE_RTHASH_SIZE; i++)
 2875                 LIST_INIT(&sc->sc_rthash[i]);
 2876 
 2877         sc->sc_rthash_key = arc4random();
 2878         LIST_INIT(&sc->sc_rtlist);
 2879 }
 2880 
 2881 /*
 2882  * bridge_rtable_fini:
 2883  *
 2884  *      Deconstruct the route table for this bridge.
 2885  */
 2886 static void
 2887 bridge_rtable_fini(struct bridge_softc *sc)
 2888 {
 2889 
 2890         KASSERT(sc->sc_brtcnt == 0,
 2891             ("%s: %d bridge routes referenced", __func__, sc->sc_brtcnt));
 2892         free(sc->sc_rthash, M_DEVBUF);
 2893 }
 2894 
 2895 /*
 2896  * The following hash function is adapted from "Hash Functions" by Bob Jenkins
 2897  * ("Algorithm Alley", Dr. Dobbs Journal, September 1997).
 2898  */
 2899 #define mix(a, b, c)                                                    \
 2900 do {                                                                    \
 2901         a -= b; a -= c; a ^= (c >> 13);                                 \
 2902         b -= c; b -= a; b ^= (a << 8);                                  \
 2903         c -= a; c -= b; c ^= (b >> 13);                                 \
 2904         a -= b; a -= c; a ^= (c >> 12);                                 \
 2905         b -= c; b -= a; b ^= (a << 16);                                 \
 2906         c -= a; c -= b; c ^= (b >> 5);                                  \
 2907         a -= b; a -= c; a ^= (c >> 3);                                  \
 2908         b -= c; b -= a; b ^= (a << 10);                                 \
 2909         c -= a; c -= b; c ^= (b >> 15);                                 \
 2910 } while (/*CONSTCOND*/0)
 2911 
 2912 static __inline uint32_t
 2913 bridge_rthash(struct bridge_softc *sc, const uint8_t *addr)
 2914 {
 2915         uint32_t a = 0x9e3779b9, b = 0x9e3779b9, c = sc->sc_rthash_key;
 2916 
 2917         b += addr[5] << 8;
 2918         b += addr[4];
 2919         a += addr[3] << 24;
 2920         a += addr[2] << 16;
 2921         a += addr[1] << 8;
 2922         a += addr[0];
 2923 
 2924         mix(a, b, c);
 2925 
 2926         return (c & BRIDGE_RTHASH_MASK);
 2927 }
 2928 
 2929 #undef mix
 2930 
 2931 static int
 2932 bridge_rtnode_addr_cmp(const uint8_t *a, const uint8_t *b)
 2933 {
 2934         int i, d;
 2935 
 2936         for (i = 0, d = 0; i < ETHER_ADDR_LEN && d == 0; i++) {
 2937                 d = ((int)a[i]) - ((int)b[i]);
 2938         }
 2939 
 2940         return (d);
 2941 }
 2942 
 2943 /*
 2944  * bridge_rtnode_lookup:
 2945  *
 2946  *      Look up a bridge route node for the specified destination. Compare the
 2947  *      vlan id or if zero then just return the first match.
 2948  */
 2949 static struct bridge_rtnode *
 2950 bridge_rtnode_lookup(struct bridge_softc *sc, const uint8_t *addr, uint16_t vlan)
 2951 {
 2952         struct bridge_rtnode *brt;
 2953         uint32_t hash;
 2954         int dir;
 2955 
 2956         BRIDGE_LOCK_ASSERT(sc);
 2957 
 2958         hash = bridge_rthash(sc, addr);
 2959         LIST_FOREACH(brt, &sc->sc_rthash[hash], brt_hash) {
 2960                 dir = bridge_rtnode_addr_cmp(addr, brt->brt_addr);
 2961                 if (dir == 0 && (brt->brt_vlan == vlan || vlan == 0))
 2962                         return (brt);
 2963                 if (dir > 0)
 2964                         return (NULL);
 2965         }
 2966 
 2967         return (NULL);
 2968 }
 2969 
 2970 /*
 2971  * bridge_rtnode_insert:
 2972  *
 2973  *      Insert the specified bridge node into the route table.  We
 2974  *      assume the entry is not already in the table.
 2975  */
 2976 static int
 2977 bridge_rtnode_insert(struct bridge_softc *sc, struct bridge_rtnode *brt)
 2978 {
 2979         struct bridge_rtnode *lbrt;
 2980         uint32_t hash;
 2981         int dir;
 2982 
 2983         BRIDGE_LOCK_ASSERT(sc);
 2984 
 2985         hash = bridge_rthash(sc, brt->brt_addr);
 2986 
 2987         lbrt = LIST_FIRST(&sc->sc_rthash[hash]);
 2988         if (lbrt == NULL) {
 2989                 LIST_INSERT_HEAD(&sc->sc_rthash[hash], brt, brt_hash);
 2990                 goto out;
 2991         }
 2992 
 2993         do {
 2994                 dir = bridge_rtnode_addr_cmp(brt->brt_addr, lbrt->brt_addr);
 2995                 if (dir == 0 && brt->brt_vlan == lbrt->brt_vlan)
 2996                         return (EEXIST);
 2997                 if (dir > 0) {
 2998                         LIST_INSERT_BEFORE(lbrt, brt, brt_hash);
 2999                         goto out;
 3000                 }
 3001                 if (LIST_NEXT(lbrt, brt_hash) == NULL) {
 3002                         LIST_INSERT_AFTER(lbrt, brt, brt_hash);
 3003                         goto out;
 3004                 }
 3005                 lbrt = LIST_NEXT(lbrt, brt_hash);
 3006         } while (lbrt != NULL);
 3007 
 3008 #ifdef DIAGNOSTIC
 3009         panic("bridge_rtnode_insert: impossible");
 3010 #endif
 3011 
 3012 out:
 3013         LIST_INSERT_HEAD(&sc->sc_rtlist, brt, brt_list);
 3014         sc->sc_brtcnt++;
 3015 
 3016         return (0);
 3017 }
 3018 
 3019 /*
 3020  * bridge_rtnode_destroy:
 3021  *
 3022  *      Destroy a bridge rtnode.
 3023  */
 3024 static void
 3025 bridge_rtnode_destroy(struct bridge_softc *sc, struct bridge_rtnode *brt)
 3026 {
 3027         BRIDGE_LOCK_ASSERT(sc);
 3028 
 3029         LIST_REMOVE(brt, brt_hash);
 3030 
 3031         LIST_REMOVE(brt, brt_list);
 3032         sc->sc_brtcnt--;
 3033         brt->brt_dst->bif_addrcnt--;
 3034         uma_zfree(V_bridge_rtnode_zone, brt);
 3035 }
 3036 
 3037 /*
 3038  * bridge_rtable_expire:
 3039  *
 3040  *      Set the expiry time for all routes on an interface.
 3041  */
 3042 static void
 3043 bridge_rtable_expire(struct ifnet *ifp, int age)
 3044 {
 3045         struct bridge_softc *sc = ifp->if_bridge;
 3046         struct bridge_rtnode *brt;
 3047 
 3048         CURVNET_SET(ifp->if_vnet);
 3049         BRIDGE_LOCK(sc);
 3050 
 3051         /*
 3052          * If the age is zero then flush, otherwise set all the expiry times to
 3053          * age for the interface
 3054          */
 3055         if (age == 0)
 3056                 bridge_rtdelete(sc, ifp, IFBF_FLUSHDYN);
 3057         else {
 3058                 LIST_FOREACH(brt, &sc->sc_rtlist, brt_list) {
 3059                         /* Cap the expiry time to 'age' */
 3060                         if (brt->brt_ifp == ifp &&
 3061                             brt->brt_expire > time_uptime + age &&
 3062                             (brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC)
 3063                                 brt->brt_expire = time_uptime + age;
 3064                 }
 3065         }
 3066         BRIDGE_UNLOCK(sc);
 3067         CURVNET_RESTORE();
 3068 }
 3069 
 3070 /*
 3071  * bridge_state_change:
 3072  *
 3073  *      Callback from the bridgestp code when a port changes states.
 3074  */
 3075 static void
 3076 bridge_state_change(struct ifnet *ifp, int state)
 3077 {
 3078         struct bridge_softc *sc = ifp->if_bridge;
 3079         static const char *stpstates[] = {
 3080                 "disabled",
 3081                 "listening",
 3082                 "learning",
 3083                 "forwarding",
 3084                 "blocking",
 3085                 "discarding"
 3086         };
 3087 
 3088         CURVNET_SET(ifp->if_vnet);
 3089         if (V_log_stp)
 3090                 log(LOG_NOTICE, "%s: state changed to %s on %s\n",
 3091                     sc->sc_ifp->if_xname, stpstates[state], ifp->if_xname);
 3092         CURVNET_RESTORE();
 3093 }
 3094 
 3095 /*
 3096  * Send bridge packets through pfil if they are one of the types pfil can deal
 3097  * with, or if they are ARP or REVARP.  (pfil will pass ARP and REVARP without
 3098  * question.) If *bifp or *ifp are NULL then packet filtering is skipped for
 3099  * that interface.
 3100  */
 3101 static int
 3102 bridge_pfil(struct mbuf **mp, struct ifnet *bifp, struct ifnet *ifp, int dir)
 3103 {
 3104         int snap, error, i, hlen;
 3105         struct ether_header *eh1, eh2;
 3106         struct ip *ip;
 3107         struct llc llc1;
 3108         u_int16_t ether_type;
 3109 
 3110         snap = 0;
 3111         error = -1;     /* Default error if not error == 0 */
 3112 
 3113 #if 0
 3114         /* we may return with the IP fields swapped, ensure its not shared */
 3115         KASSERT(M_WRITABLE(*mp), ("%s: modifying a shared mbuf", __func__));
 3116 #endif
 3117 
 3118         if (V_pfil_bridge == 0 && V_pfil_member == 0 && V_pfil_ipfw == 0)
 3119                 return (0); /* filtering is disabled */
 3120 
 3121         i = min((*mp)->m_pkthdr.len, max_protohdr);
 3122         if ((*mp)->m_len < i) {
 3123             *mp = m_pullup(*mp, i);
 3124             if (*mp == NULL) {
 3125                 printf("%s: m_pullup failed\n", __func__);
 3126                 return (-1);
 3127             }
 3128         }
 3129 
 3130         eh1 = mtod(*mp, struct ether_header *);
 3131         ether_type = ntohs(eh1->ether_type);
 3132 
 3133         /*
 3134          * Check for SNAP/LLC.
 3135          */
 3136         if (ether_type < ETHERMTU) {
 3137                 struct llc *llc2 = (struct llc *)(eh1 + 1);
 3138 
 3139                 if ((*mp)->m_len >= ETHER_HDR_LEN + 8 &&
 3140                     llc2->llc_dsap == LLC_SNAP_LSAP &&
 3141                     llc2->llc_ssap == LLC_SNAP_LSAP &&
 3142                     llc2->llc_control == LLC_UI) {
 3143                         ether_type = htons(llc2->llc_un.type_snap.ether_type);
 3144                         snap = 1;
 3145                 }
 3146         }
 3147 
 3148         /*
 3149          * If we're trying to filter bridge traffic, don't look at anything
 3150          * other than IP and ARP traffic.  If the filter doesn't understand
 3151          * IPv6, don't allow IPv6 through the bridge either.  This is lame
 3152          * since if we really wanted, say, an AppleTalk filter, we are hosed,
 3153          * but of course we don't have an AppleTalk filter to begin with.
 3154          * (Note that since pfil doesn't understand ARP it will pass *ALL*
 3155          * ARP traffic.)
 3156          */
 3157         switch (ether_type) {
 3158                 case ETHERTYPE_ARP:
 3159                 case ETHERTYPE_REVARP:
 3160                         if (V_pfil_ipfw_arp == 0)
 3161                                 return (0); /* Automatically pass */
 3162                         break;
 3163 
 3164                 case ETHERTYPE_IP:
 3165 #ifdef INET6
 3166                 case ETHERTYPE_IPV6:
 3167 #endif /* INET6 */
 3168                         break;
 3169                 default:
 3170                         /*
 3171                          * Check to see if the user wants to pass non-ip
 3172                          * packets, these will not be checked by pfil(9) and
 3173                          * passed unconditionally so the default is to drop.
 3174                          */
 3175                         if (V_pfil_onlyip)
 3176                                 goto bad;
 3177         }
 3178 
 3179         /* Run the packet through pfil before stripping link headers */
 3180         if (PFIL_HOOKED(&V_link_pfil_hook) && V_pfil_ipfw != 0 &&
 3181                         dir == PFIL_OUT && ifp != NULL) {
 3182 
 3183                 error = pfil_run_hooks(&V_link_pfil_hook, mp, ifp, dir, 0,
 3184                     NULL);
 3185 
 3186                 if (*mp == NULL || error != 0) /* packet consumed by filter */
 3187                         return (error);
 3188         }
 3189 
 3190         /* Strip off the Ethernet header and keep a copy. */
 3191         m_copydata(*mp, 0, ETHER_HDR_LEN, (caddr_t) &eh2);
 3192         m_adj(*mp, ETHER_HDR_LEN);
 3193 
 3194         /* Strip off snap header, if present */
 3195         if (snap) {
 3196                 m_copydata(*mp, 0, sizeof(struct llc), (caddr_t) &llc1);
 3197                 m_adj(*mp, sizeof(struct llc));
 3198         }
 3199 
 3200         /*
 3201          * Check the IP header for alignment and errors
 3202          */
 3203         if (dir == PFIL_IN) {
 3204                 switch (ether_type) {
 3205                         case ETHERTYPE_IP:
 3206                                 error = bridge_ip_checkbasic(mp);
 3207                                 break;
 3208 #ifdef INET6
 3209                         case ETHERTYPE_IPV6:
 3210                                 error = bridge_ip6_checkbasic(mp);
 3211                                 break;
 3212 #endif /* INET6 */
 3213                         default:
 3214                                 error = 0;
 3215                 }
 3216                 if (error)
 3217                         goto bad;
 3218         }
 3219 
 3220         error = 0;
 3221 
 3222         /*
 3223          * Run the packet through pfil
 3224          */
 3225         switch (ether_type) {
 3226         case ETHERTYPE_IP:
 3227                 /*
 3228                  * Run pfil on the member interface and the bridge, both can
 3229                  * be skipped by clearing pfil_member or pfil_bridge.
 3230                  *
 3231                  * Keep the order:
 3232                  *   in_if -> bridge_if -> out_if
 3233                  */
 3234                 if (V_pfil_bridge && dir == PFIL_OUT && bifp != NULL)
 3235                         error = pfil_run_hooks(&V_inet_pfil_hook, mp, bifp,
 3236                                         dir, 0, NULL);
 3237 
 3238                 if (*mp == NULL || error != 0) /* filter may consume */
 3239                         break;
 3240 
 3241                 if (V_pfil_member && ifp != NULL)
 3242                         error = pfil_run_hooks(&V_inet_pfil_hook, mp, ifp,
 3243                                         dir, 0, NULL);
 3244 
 3245                 if (*mp == NULL || error != 0) /* filter may consume */
 3246                         break;
 3247 
 3248                 if (V_pfil_bridge && dir == PFIL_IN && bifp != NULL)
 3249                         error = pfil_run_hooks(&V_inet_pfil_hook, mp, bifp,
 3250                                         dir, 0, NULL);
 3251 
 3252                 if (*mp == NULL || error != 0) /* filter may consume */
 3253                         break;
 3254 
 3255                 /* check if we need to fragment the packet */
 3256                 /* bridge_fragment generates a mbuf chain of packets */
 3257                 /* that already include eth headers */
 3258                 if (V_pfil_member && ifp != NULL && dir == PFIL_OUT) {
 3259                         i = (*mp)->m_pkthdr.len;
 3260                         if (i > ifp->if_mtu) {
 3261                                 error = bridge_fragment(ifp, mp, &eh2, snap,
 3262                                             &llc1);
 3263                                 return (error);
 3264                         }
 3265                 }
 3266 
 3267                 /* Recalculate the ip checksum. */
 3268                 ip = mtod(*mp, struct ip *);
 3269                 hlen = ip->ip_hl << 2;
 3270                 if (hlen < sizeof(struct ip))
 3271                         goto bad;
 3272                 if (hlen > (*mp)->m_len) {
 3273                         if ((*mp = m_pullup(*mp, hlen)) == NULL)
 3274                                 goto bad;
 3275                         ip = mtod(*mp, struct ip *);
 3276                         if (ip == NULL)
 3277                                 goto bad;
 3278                 }
 3279                 ip->ip_sum = 0;
 3280                 if (hlen == sizeof(struct ip))
 3281                         ip->ip_sum = in_cksum_hdr(ip);
 3282                 else
 3283                         ip->ip_sum = in_cksum(*mp, hlen);
 3284 
 3285                 break;
 3286 #ifdef INET6
 3287         case ETHERTYPE_IPV6:
 3288                 if (V_pfil_bridge && dir == PFIL_OUT && bifp != NULL)
 3289                         error = pfil_run_hooks(&V_inet6_pfil_hook, mp, bifp,
 3290                                         dir, 0, NULL);
 3291 
 3292                 if (*mp == NULL || error != 0) /* filter may consume */
 3293                         break;
 3294 
 3295                 if (V_pfil_member && ifp != NULL)
 3296                         error = pfil_run_hooks(&V_inet6_pfil_hook, mp, ifp,
 3297                                         dir, 0, NULL);
 3298 
 3299                 if (*mp == NULL || error != 0) /* filter may consume */
 3300                         break;
 3301 
 3302                 if (V_pfil_bridge && dir == PFIL_IN && bifp != NULL)
 3303                         error = pfil_run_hooks(&V_inet6_pfil_hook, mp, bifp,
 3304                                         dir, 0, NULL);
 3305                 break;
 3306 #endif
 3307         default:
 3308                 error = 0;
 3309                 break;
 3310         }
 3311 
 3312         if (*mp == NULL)
 3313                 return (error);
 3314         if (error != 0)
 3315                 goto bad;
 3316 
 3317         error = -1;
 3318 
 3319         /*
 3320          * Finally, put everything back the way it was and return
 3321          */
 3322         if (snap) {
 3323                 M_PREPEND(*mp, sizeof(struct llc), M_NOWAIT);
 3324                 if (*mp == NULL)
 3325                         return (error);
 3326                 bcopy(&llc1, mtod(*mp, caddr_t), sizeof(struct llc));
 3327         }
 3328 
 3329         M_PREPEND(*mp, ETHER_HDR_LEN, M_NOWAIT);
 3330         if (*mp == NULL)
 3331                 return (error);
 3332         bcopy(&eh2, mtod(*mp, caddr_t), ETHER_HDR_LEN);
 3333 
 3334         return (0);
 3335 
 3336 bad:
 3337         m_freem(*mp);
 3338         *mp = NULL;
 3339         return (error);
 3340 }
 3341 
 3342 /*
 3343  * Perform basic checks on header size since
 3344  * pfil assumes ip_input has already processed
 3345  * it for it.  Cut-and-pasted from ip_input.c.
 3346  * Given how simple the IPv6 version is,
 3347  * does the IPv4 version really need to be
 3348  * this complicated?
 3349  *
 3350  * XXX Should we update ipstat here, or not?
 3351  * XXX Right now we update ipstat but not
 3352  * XXX csum_counter.
 3353  */
 3354 static int
 3355 bridge_ip_checkbasic(struct mbuf **mp)
 3356 {
 3357         struct mbuf *m = *mp;
 3358         struct ip *ip;
 3359         int len, hlen;
 3360         u_short sum;
 3361 
 3362         if (*mp == NULL)
 3363                 return (-1);
 3364 
 3365         if (IP_HDR_ALIGNED_P(mtod(m, caddr_t)) == 0) {
 3366                 if ((m = m_copyup(m, sizeof(struct ip),
 3367                         (max_linkhdr + 3) & ~3)) == NULL) {
 3368                         /* XXXJRT new stat, please */
 3369                         KMOD_IPSTAT_INC(ips_toosmall);
 3370                         goto bad;
 3371                 }
 3372         } else if (__predict_false(m->m_len < sizeof (struct ip))) {
 3373                 if ((m = m_pullup(m, sizeof (struct ip))) == NULL) {
 3374                         KMOD_IPSTAT_INC(ips_toosmall);
 3375                         goto bad;
 3376                 }
 3377         }
 3378         ip = mtod(m, struct ip *);
 3379         if (ip == NULL) goto bad;
 3380 
 3381         if (ip->ip_v != IPVERSION) {
 3382                 KMOD_IPSTAT_INC(ips_badvers);
 3383                 goto bad;
 3384         }
 3385         hlen = ip->ip_hl << 2;
 3386         if (hlen < sizeof(struct ip)) { /* minimum header length */
 3387                 KMOD_IPSTAT_INC(ips_badhlen);
 3388                 goto bad;
 3389         }
 3390         if (hlen > m->m_len) {
 3391                 if ((m = m_pullup(m, hlen)) == NULL) {
 3392                         KMOD_IPSTAT_INC(ips_badhlen);
 3393                         goto bad;
 3394                 }
 3395                 ip = mtod(m, struct ip *);
 3396                 if (ip == NULL) goto bad;
 3397         }
 3398 
 3399         if (m->m_pkthdr.csum_flags & CSUM_IP_CHECKED) {
 3400                 sum = !(m->m_pkthdr.csum_flags & CSUM_IP_VALID);
 3401         } else {
 3402                 if (hlen == sizeof(struct ip)) {
 3403                         sum = in_cksum_hdr(ip);
 3404                 } else {
 3405                         sum = in_cksum(m, hlen);
 3406                 }
 3407         }
 3408         if (sum) {
 3409                 KMOD_IPSTAT_INC(ips_badsum);
 3410                 goto bad;
 3411         }
 3412 
 3413         /* Retrieve the packet length. */
 3414         len = ntohs(ip->ip_len);
 3415 
 3416         /*
 3417          * Check for additional length bogosity
 3418          */
 3419         if (len < hlen) {
 3420                 KMOD_IPSTAT_INC(ips_badlen);
 3421                 goto bad;
 3422         }
 3423 
 3424         /*
 3425          * Check that the amount of data in the buffers
 3426          * is as at least much as the IP header would have us expect.
 3427          * Drop packet if shorter than we expect.
 3428          */
 3429         if (m->m_pkthdr.len < len) {
 3430                 KMOD_IPSTAT_INC(ips_tooshort);
 3431                 goto bad;
 3432         }
 3433 
 3434         /* Checks out, proceed */
 3435         *mp = m;
 3436         return (0);
 3437 
 3438 bad:
 3439         *mp = m;
 3440         return (-1);
 3441 }
 3442 
 3443 #ifdef INET6
 3444 /*
 3445  * Same as above, but for IPv6.
 3446  * Cut-and-pasted from ip6_input.c.
 3447  * XXX Should we update ip6stat, or not?
 3448  */
 3449 static int
 3450 bridge_ip6_checkbasic(struct mbuf **mp)
 3451 {
 3452         struct mbuf *m = *mp;
 3453         struct ip6_hdr *ip6;
 3454 
 3455         /*
 3456          * If the IPv6 header is not aligned, slurp it up into a new
 3457          * mbuf with space for link headers, in the event we forward
 3458          * it.  Otherwise, if it is aligned, make sure the entire base
 3459          * IPv6 header is in the first mbuf of the chain.
 3460          */
 3461         if (IP6_HDR_ALIGNED_P(mtod(m, caddr_t)) == 0) {
 3462                 struct ifnet *inifp = m->m_pkthdr.rcvif;
 3463                 if ((m = m_copyup(m, sizeof(struct ip6_hdr),
 3464                             (max_linkhdr + 3) & ~3)) == NULL) {
 3465                         /* XXXJRT new stat, please */
 3466                         IP6STAT_INC(ip6s_toosmall);
 3467                         in6_ifstat_inc(inifp, ifs6_in_hdrerr);
 3468                         goto bad;
 3469                 }
 3470         } else if (__predict_false(m->m_len < sizeof(struct ip6_hdr))) {
 3471                 struct ifnet *inifp = m->m_pkthdr.rcvif;
 3472                 if ((m = m_pullup(m, sizeof(struct ip6_hdr))) == NULL) {
 3473                         IP6STAT_INC(ip6s_toosmall);
 3474                         in6_ifstat_inc(inifp, ifs6_in_hdrerr);
 3475                         goto bad;
 3476                 }
 3477         }
 3478 
 3479         ip6 = mtod(m, struct ip6_hdr *);
 3480 
 3481         if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
 3482                 IP6STAT_INC(ip6s_badvers);
 3483                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_hdrerr);
 3484                 goto bad;
 3485         }
 3486 
 3487         /* Checks out, proceed */
 3488         *mp = m;
 3489         return (0);
 3490 
 3491 bad:
 3492         *mp = m;
 3493         return (-1);
 3494 }
 3495 #endif /* INET6 */
 3496 
 3497 /*
 3498  * bridge_fragment:
 3499  *
 3500  *      Fragment mbuf chain in multiple packets and prepend ethernet header.
 3501  */
 3502 static int
 3503 bridge_fragment(struct ifnet *ifp, struct mbuf **mp, struct ether_header *eh,
 3504     int snap, struct llc *llc)
 3505 {
 3506         struct mbuf *m = *mp, *nextpkt = NULL, *mprev = NULL, *mcur = NULL;
 3507         struct ip *ip;
 3508         int error = -1;
 3509 
 3510         if (m->m_len < sizeof(struct ip) &&
 3511             (m = m_pullup(m, sizeof(struct ip))) == NULL)
 3512                 goto dropit;
 3513         ip = mtod(m, struct ip *);
 3514 
 3515         m->m_pkthdr.csum_flags |= CSUM_IP;
 3516         error = ip_fragment(ip, &m, ifp->if_mtu, ifp->if_hwassist);
 3517         if (error)
 3518                 goto dropit;
 3519 
 3520         /*
 3521          * Walk the chain and re-add the Ethernet header for
 3522          * each mbuf packet.
 3523          */
 3524         for (mcur = m; mcur; mcur = mcur->m_nextpkt) {
 3525                 nextpkt = mcur->m_nextpkt;
 3526                 mcur->m_nextpkt = NULL;
 3527                 if (snap) {
 3528                         M_PREPEND(mcur, sizeof(struct llc), M_NOWAIT);
 3529                         if (mcur == NULL) {
 3530                                 error = ENOBUFS;
 3531                                 if (mprev != NULL)
 3532                                         mprev->m_nextpkt = nextpkt;
 3533                                 goto dropit;
 3534                         }
 3535                         bcopy(llc, mtod(mcur, caddr_t),sizeof(struct llc));
 3536                 }
 3537 
 3538                 M_PREPEND(mcur, ETHER_HDR_LEN, M_NOWAIT);
 3539                 if (mcur == NULL) {
 3540                         error = ENOBUFS;
 3541                         if (mprev != NULL)
 3542                                 mprev->m_nextpkt = nextpkt;
 3543                         goto dropit;
 3544                 }
 3545                 bcopy(eh, mtod(mcur, caddr_t), ETHER_HDR_LEN);
 3546 
 3547                 /*
 3548                  * The previous two M_PREPEND could have inserted one or two
 3549                  * mbufs in front so we have to update the previous packet's
 3550                  * m_nextpkt.
 3551                  */
 3552                 mcur->m_nextpkt = nextpkt;
 3553                 if (mprev != NULL)
 3554                         mprev->m_nextpkt = mcur;
 3555                 else {
 3556                         /* The first mbuf in the original chain needs to be
 3557                          * updated. */
 3558                         *mp = mcur;
 3559                 }
 3560                 mprev = mcur;
 3561         }
 3562 
 3563         KMOD_IPSTAT_INC(ips_fragmented);
 3564         return (error);
 3565 
 3566 dropit:
 3567         for (mcur = *mp; mcur; mcur = m) { /* droping the full packet chain */
 3568                 m = mcur->m_nextpkt;
 3569                 m_freem(mcur);
 3570         }
 3571         return (error);
 3572 }
 3573 
 3574 static void
 3575 bridge_linkstate(struct ifnet *ifp)
 3576 {
 3577         struct bridge_softc *sc = ifp->if_bridge;
 3578         struct bridge_iflist *bif;
 3579 
 3580         BRIDGE_LOCK(sc);
 3581         bif = bridge_lookup_member_if(sc, ifp);
 3582         if (bif == NULL) {
 3583                 BRIDGE_UNLOCK(sc);
 3584                 return;
 3585         }
 3586         bridge_linkcheck(sc);
 3587         BRIDGE_UNLOCK(sc);
 3588 
 3589         bstp_linkstate(&bif->bif_stp);
 3590 }
 3591 
 3592 static void
 3593 bridge_linkcheck(struct bridge_softc *sc)
 3594 {
 3595         struct bridge_iflist *bif;
 3596         int new_link, hasls;
 3597 
 3598         BRIDGE_LOCK_ASSERT(sc);
 3599         new_link = LINK_STATE_DOWN;
 3600         hasls = 0;
 3601         /* Our link is considered up if at least one of our ports is active */
 3602         LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
 3603                 if (bif->bif_ifp->if_capabilities & IFCAP_LINKSTATE)
 3604                         hasls++;
 3605                 if (bif->bif_ifp->if_link_state == LINK_STATE_UP) {
 3606                         new_link = LINK_STATE_UP;
 3607                         break;
 3608                 }
 3609         }
 3610         if (!LIST_EMPTY(&sc->sc_iflist) && !hasls) {
 3611                 /* If no interfaces support link-state then we default to up */
 3612                 new_link = LINK_STATE_UP;
 3613         }
 3614         if_link_state_change(sc->sc_ifp, new_link);
 3615 }

Cache object: 3291c97c166d9df40817be5afc40458b


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.