Home | History | Annotate | Line # | Download | only in net
if_bridge.c revision 1.2.2.2
      1  1.2.2.2  nathanw /*	$NetBSD: if_bridge.c,v 1.2.2.2 2001/08/24 00:12:08 nathanw Exp $	*/
      2  1.2.2.2  nathanw 
      3  1.2.2.2  nathanw /*
      4  1.2.2.2  nathanw  * Copyright 2001 Wasabi Systems, Inc.
      5  1.2.2.2  nathanw  * All rights reserved.
      6  1.2.2.2  nathanw  *
      7  1.2.2.2  nathanw  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
      8  1.2.2.2  nathanw  *
      9  1.2.2.2  nathanw  * Redistribution and use in source and binary forms, with or without
     10  1.2.2.2  nathanw  * modification, are permitted provided that the following conditions
     11  1.2.2.2  nathanw  * are met:
     12  1.2.2.2  nathanw  * 1. Redistributions of source code must retain the above copyright
     13  1.2.2.2  nathanw  *    notice, this list of conditions and the following disclaimer.
     14  1.2.2.2  nathanw  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.2.2.2  nathanw  *    notice, this list of conditions and the following disclaimer in the
     16  1.2.2.2  nathanw  *    documentation and/or other materials provided with the distribution.
     17  1.2.2.2  nathanw  * 3. All advertising materials mentioning features or use of this software
     18  1.2.2.2  nathanw  *    must display the following acknowledgement:
     19  1.2.2.2  nathanw  *	This product includes software developed for the NetBSD Project by
     20  1.2.2.2  nathanw  *	Wasabi Systems, Inc.
     21  1.2.2.2  nathanw  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22  1.2.2.2  nathanw  *    or promote products derived from this software without specific prior
     23  1.2.2.2  nathanw  *    written permission.
     24  1.2.2.2  nathanw  *
     25  1.2.2.2  nathanw  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26  1.2.2.2  nathanw  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  1.2.2.2  nathanw  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  1.2.2.2  nathanw  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29  1.2.2.2  nathanw  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  1.2.2.2  nathanw  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  1.2.2.2  nathanw  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  1.2.2.2  nathanw  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  1.2.2.2  nathanw  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  1.2.2.2  nathanw  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  1.2.2.2  nathanw  * POSSIBILITY OF SUCH DAMAGE.
     36  1.2.2.2  nathanw  */
     37  1.2.2.2  nathanw 
     38  1.2.2.2  nathanw /*
     39  1.2.2.2  nathanw  * Copyright (c) 1999, 2000 Jason L. Wright (jason (at) thought.net)
     40  1.2.2.2  nathanw  * All rights reserved.
     41  1.2.2.2  nathanw  *
     42  1.2.2.2  nathanw  * Redistribution and use in source and binary forms, with or without
     43  1.2.2.2  nathanw  * modification, are permitted provided that the following conditions
     44  1.2.2.2  nathanw  * are met:
     45  1.2.2.2  nathanw  * 1. Redistributions of source code must retain the above copyright
     46  1.2.2.2  nathanw  *    notice, this list of conditions and the following disclaimer.
     47  1.2.2.2  nathanw  * 2. Redistributions in binary form must reproduce the above copyright
     48  1.2.2.2  nathanw  *    notice, this list of conditions and the following disclaimer in the
     49  1.2.2.2  nathanw  *    documentation and/or other materials provided with the distribution.
     50  1.2.2.2  nathanw  * 3. All advertising materials mentioning features or use of this software
     51  1.2.2.2  nathanw  *    must display the following acknowledgement:
     52  1.2.2.2  nathanw  *	This product includes software developed by Jason L. Wright
     53  1.2.2.2  nathanw  * 4. The name of the author may not be used to endorse or promote products
     54  1.2.2.2  nathanw  *    derived from this software without specific prior written permission.
     55  1.2.2.2  nathanw  *
     56  1.2.2.2  nathanw  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     57  1.2.2.2  nathanw  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     58  1.2.2.2  nathanw  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     59  1.2.2.2  nathanw  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     60  1.2.2.2  nathanw  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     61  1.2.2.2  nathanw  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     62  1.2.2.2  nathanw  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     63  1.2.2.2  nathanw  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     64  1.2.2.2  nathanw  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     65  1.2.2.2  nathanw  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     66  1.2.2.2  nathanw  * POSSIBILITY OF SUCH DAMAGE.
     67  1.2.2.2  nathanw  *
     68  1.2.2.2  nathanw  * OpenBSD: if_bridge.c,v 1.60 2001/06/15 03:38:33 itojun Exp
     69  1.2.2.2  nathanw  */
     70  1.2.2.2  nathanw 
     71  1.2.2.2  nathanw /*
     72  1.2.2.2  nathanw  * Network interface bridge support.
     73  1.2.2.2  nathanw  *
     74  1.2.2.2  nathanw  * TODO:
     75  1.2.2.2  nathanw  *
     76  1.2.2.2  nathanw  *	- Currently only supports Ethernet-like interfaces (Ethernet,
     77  1.2.2.2  nathanw  *	  802.11, VLANs on Ethernet, etc.)  Figure out a nice way
     78  1.2.2.2  nathanw  *	  to bridge other types of interfaces (FDDI-FDDI, and maybe
     79  1.2.2.2  nathanw  *	  consider heterogenous bridges).
     80  1.2.2.2  nathanw  *
     81  1.2.2.2  nathanw  *	- Add packet filter hooks.
     82  1.2.2.2  nathanw  */
     83  1.2.2.2  nathanw 
     84  1.2.2.2  nathanw #include "bpfilter.h"
     85  1.2.2.2  nathanw #include "rnd.h"
     86  1.2.2.2  nathanw 
     87  1.2.2.2  nathanw #include <sys/param.h>
     88  1.2.2.2  nathanw #include <sys/kernel.h>
     89  1.2.2.2  nathanw #include <sys/mbuf.h>
     90  1.2.2.2  nathanw #include <sys/queue.h>
     91  1.2.2.2  nathanw #include <sys/socket.h>
     92  1.2.2.2  nathanw #include <sys/sockio.h>
     93  1.2.2.2  nathanw #include <sys/systm.h>
     94  1.2.2.2  nathanw #include <sys/proc.h>
     95  1.2.2.2  nathanw #include <sys/pool.h>
     96  1.2.2.2  nathanw 
     97  1.2.2.2  nathanw #if NRND > 0
     98  1.2.2.2  nathanw #include <sys/rnd.h>
     99  1.2.2.2  nathanw #endif
    100  1.2.2.2  nathanw 
    101  1.2.2.2  nathanw #if NBPFILTER > 0
    102  1.2.2.2  nathanw #include <net/bpf.h>
    103  1.2.2.2  nathanw #endif
    104  1.2.2.2  nathanw #include <net/if.h>
    105  1.2.2.2  nathanw #include <net/if_dl.h>
    106  1.2.2.2  nathanw #include <net/if_types.h>
    107  1.2.2.2  nathanw #include <net/if_llc.h>
    108  1.2.2.2  nathanw 
    109  1.2.2.2  nathanw #include <net/if_ether.h>
    110  1.2.2.2  nathanw #include <net/if_bridgevar.h>
    111  1.2.2.2  nathanw 
    112  1.2.2.2  nathanw /*
    113  1.2.2.2  nathanw  * Size of the route hash table.  Must be a power of two.
    114  1.2.2.2  nathanw  */
    115  1.2.2.2  nathanw #ifndef BRIDGE_RTHASH_SIZE
    116  1.2.2.2  nathanw #define	BRIDGE_RTHASH_SIZE		1024
    117  1.2.2.2  nathanw #endif
    118  1.2.2.2  nathanw 
    119  1.2.2.2  nathanw #define	BRIDGE_RTHASH_MASK		(BRIDGE_RTHASH_SIZE - 1)
    120  1.2.2.2  nathanw 
    121  1.2.2.2  nathanw /*
    122  1.2.2.2  nathanw  * Maximum number of addresses to cache.
    123  1.2.2.2  nathanw  */
    124  1.2.2.2  nathanw #ifndef BRIDGE_RTABLE_MAX
    125  1.2.2.2  nathanw #define	BRIDGE_RTABLE_MAX		100
    126  1.2.2.2  nathanw #endif
    127  1.2.2.2  nathanw 
    128  1.2.2.2  nathanw /*
    129  1.2.2.2  nathanw  * Spanning tree defaults.
    130  1.2.2.2  nathanw  */
    131  1.2.2.2  nathanw #define	BSTP_DEFAULT_MAX_AGE		(20 * 256)
    132  1.2.2.2  nathanw #define	BSTP_DEFAULT_HELLO_TIME		(2 * 256)
    133  1.2.2.2  nathanw #define	BSTP_DEFAULT_FORWARD_DELAY	(15 * 256)
    134  1.2.2.2  nathanw #define	BSTP_DEFAULT_HOLD_TIME		(1 * 256)
    135  1.2.2.2  nathanw #define	BSTP_DEFAULT_BRIDGE_PRIORITY	0x8000
    136  1.2.2.2  nathanw #define	BSTP_DEFAULT_PORT_PRIORITY	0x80
    137  1.2.2.2  nathanw #define	BSTP_DEFAULT_PATH_COST		55
    138  1.2.2.2  nathanw 
    139  1.2.2.2  nathanw /*
    140  1.2.2.2  nathanw  * Timeout (in seconds) for entries learned dynamically.
    141  1.2.2.2  nathanw  */
    142  1.2.2.2  nathanw #ifndef BRIDGE_RTABLE_TIMEOUT
    143  1.2.2.2  nathanw #define	BRIDGE_RTABLE_TIMEOUT		(20 * 60)	/* same as ARP */
    144  1.2.2.2  nathanw #endif
    145  1.2.2.2  nathanw 
    146  1.2.2.2  nathanw /*
    147  1.2.2.2  nathanw  * Number of seconds between walks of the route list.
    148  1.2.2.2  nathanw  */
    149  1.2.2.2  nathanw #ifndef BRIDGE_RTABLE_PRUNE_PERIOD
    150  1.2.2.2  nathanw #define	BRIDGE_RTABLE_PRUNE_PERIOD	(5 * 60)
    151  1.2.2.2  nathanw #endif
    152  1.2.2.2  nathanw 
    153  1.2.2.2  nathanw int	bridge_rtable_prune_period = BRIDGE_RTABLE_PRUNE_PERIOD;
    154  1.2.2.2  nathanw 
    155  1.2.2.2  nathanw struct pool bridge_rtnode_pool;
    156  1.2.2.2  nathanw 
    157  1.2.2.2  nathanw void	bridgeattach(int);
    158  1.2.2.2  nathanw 
    159  1.2.2.2  nathanw int	bridge_clone_create(struct if_clone *, int);
    160  1.2.2.2  nathanw void	bridge_clone_destroy(struct ifnet *);
    161  1.2.2.2  nathanw 
    162  1.2.2.2  nathanw int	bridge_ioctl(struct ifnet *, u_long, caddr_t);
    163  1.2.2.2  nathanw int	bridge_init(struct ifnet *);
    164  1.2.2.2  nathanw void	bridge_stop(struct ifnet *, int);
    165  1.2.2.2  nathanw void	bridge_start(struct ifnet *);
    166  1.2.2.2  nathanw 
    167  1.2.2.2  nathanw void	bridge_forward(struct bridge_softc *, struct mbuf *m);
    168  1.2.2.2  nathanw 
    169  1.2.2.2  nathanw void	bridge_timer(void *);
    170  1.2.2.2  nathanw 
    171  1.2.2.2  nathanw void	bridge_broadcast(struct bridge_softc *, struct ifnet *, struct mbuf *);
    172  1.2.2.2  nathanw 
    173  1.2.2.2  nathanw int	bridge_rtupdate(struct bridge_softc *, const uint8_t *,
    174  1.2.2.2  nathanw 	    struct ifnet *, int, uint8_t);
    175  1.2.2.2  nathanw struct ifnet *bridge_rtlookup(struct bridge_softc *, const uint8_t *);
    176  1.2.2.2  nathanw void	bridge_rttrim(struct bridge_softc *);
    177  1.2.2.2  nathanw void	bridge_rtage(struct bridge_softc *);
    178  1.2.2.2  nathanw void	bridge_rtflush(struct bridge_softc *, int);
    179  1.2.2.2  nathanw int	bridge_rtdaddr(struct bridge_softc *, const uint8_t *);
    180  1.2.2.2  nathanw void	bridge_rtdelete(struct bridge_softc *, struct ifnet *ifp);
    181  1.2.2.2  nathanw 
    182  1.2.2.2  nathanw int	bridge_rtable_init(struct bridge_softc *);
    183  1.2.2.2  nathanw void	bridge_rtable_fini(struct bridge_softc *);
    184  1.2.2.2  nathanw 
    185  1.2.2.2  nathanw struct bridge_rtnode *bridge_rtnode_lookup(struct bridge_softc *,
    186  1.2.2.2  nathanw 	    const uint8_t *);
    187  1.2.2.2  nathanw int	bridge_rtnode_insert(struct bridge_softc *, struct bridge_rtnode *);
    188  1.2.2.2  nathanw void	bridge_rtnode_destroy(struct bridge_softc *, struct bridge_rtnode *);
    189  1.2.2.2  nathanw 
    190  1.2.2.2  nathanw struct bridge_iflist *bridge_lookup_member(struct bridge_softc *,
    191  1.2.2.2  nathanw 	    const char *name);
    192  1.2.2.2  nathanw void	bridge_delete_member(struct bridge_softc *, struct bridge_iflist *);
    193  1.2.2.2  nathanw 
    194  1.2.2.2  nathanw int	bridge_ioctl_add(struct bridge_softc *, void *);
    195  1.2.2.2  nathanw int	bridge_ioctl_del(struct bridge_softc *, void *);
    196  1.2.2.2  nathanw int	bridge_ioctl_gifflags(struct bridge_softc *, void *);
    197  1.2.2.2  nathanw int	bridge_ioctl_sifflags(struct bridge_softc *, void *);
    198  1.2.2.2  nathanw int	bridge_ioctl_scache(struct bridge_softc *, void *);
    199  1.2.2.2  nathanw int	bridge_ioctl_gcache(struct bridge_softc *, void *);
    200  1.2.2.2  nathanw int	bridge_ioctl_gifs(struct bridge_softc *, void *);
    201  1.2.2.2  nathanw int	bridge_ioctl_rts(struct bridge_softc *, void *);
    202  1.2.2.2  nathanw int	bridge_ioctl_saddr(struct bridge_softc *, void *);
    203  1.2.2.2  nathanw int	bridge_ioctl_sto(struct bridge_softc *, void *);
    204  1.2.2.2  nathanw int	bridge_ioctl_gto(struct bridge_softc *, void *);
    205  1.2.2.2  nathanw int	bridge_ioctl_daddr(struct bridge_softc *, void *);
    206  1.2.2.2  nathanw int	bridge_ioctl_flush(struct bridge_softc *, void *);
    207  1.2.2.2  nathanw int	bridge_ioctl_gpri(struct bridge_softc *, void *);
    208  1.2.2.2  nathanw int	bridge_ioctl_spri(struct bridge_softc *, void *);
    209  1.2.2.2  nathanw int	bridge_ioctl_ght(struct bridge_softc *, void *);
    210  1.2.2.2  nathanw int	bridge_ioctl_sht(struct bridge_softc *, void *);
    211  1.2.2.2  nathanw int	bridge_ioctl_gfd(struct bridge_softc *, void *);
    212  1.2.2.2  nathanw int	bridge_ioctl_sfd(struct bridge_softc *, void *);
    213  1.2.2.2  nathanw int	bridge_ioctl_gma(struct bridge_softc *, void *);
    214  1.2.2.2  nathanw int	bridge_ioctl_sma(struct bridge_softc *, void *);
    215  1.2.2.2  nathanw int	bridge_ioctl_sifprio(struct bridge_softc *, void *);
    216  1.2.2.2  nathanw 
    217  1.2.2.2  nathanw struct bridge_control {
    218  1.2.2.2  nathanw 	int	(*bc_func)(struct bridge_softc *, void *);
    219  1.2.2.2  nathanw 	int	bc_argsize;
    220  1.2.2.2  nathanw 	int	bc_flags;
    221  1.2.2.2  nathanw };
    222  1.2.2.2  nathanw 
    223  1.2.2.2  nathanw #define	BC_F_COPYIN		0x01	/* copy arguments in */
    224  1.2.2.2  nathanw #define	BC_F_COPYOUT		0x02	/* copy arguments out */
    225  1.2.2.2  nathanw #define	BC_F_SUSER		0x04	/* do super-user check */
    226  1.2.2.2  nathanw 
    227  1.2.2.2  nathanw const struct bridge_control bridge_control_table[] = {
    228  1.2.2.2  nathanw 	{ bridge_ioctl_add,		sizeof(struct ifbreq),
    229  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    230  1.2.2.2  nathanw 	{ bridge_ioctl_del,		sizeof(struct ifbreq),
    231  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    232  1.2.2.2  nathanw 
    233  1.2.2.2  nathanw 	{ bridge_ioctl_gifflags,	sizeof(struct ifbreq),
    234  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_COPYOUT },
    235  1.2.2.2  nathanw 	{ bridge_ioctl_sifflags,	sizeof(struct ifbreq),
    236  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    237  1.2.2.2  nathanw 
    238  1.2.2.2  nathanw 	{ bridge_ioctl_scache,		sizeof(struct ifbrparam),
    239  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    240  1.2.2.2  nathanw 	{ bridge_ioctl_gcache,		sizeof(struct ifbrparam),
    241  1.2.2.2  nathanw 	  BC_F_COPYOUT },
    242  1.2.2.2  nathanw 
    243  1.2.2.2  nathanw 	{ bridge_ioctl_gifs,		sizeof(struct ifbifconf),
    244  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_COPYOUT },
    245  1.2.2.2  nathanw 	{ bridge_ioctl_rts,		sizeof(struct ifbaconf),
    246  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_COPYOUT },
    247  1.2.2.2  nathanw 
    248  1.2.2.2  nathanw 	{ bridge_ioctl_saddr,		sizeof(struct ifbareq),
    249  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    250  1.2.2.2  nathanw 
    251  1.2.2.2  nathanw 	{ bridge_ioctl_sto,		sizeof(struct ifbrparam),
    252  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    253  1.2.2.2  nathanw 	{ bridge_ioctl_gto,		sizeof(struct ifbrparam),
    254  1.2.2.2  nathanw 	  BC_F_COPYOUT },
    255  1.2.2.2  nathanw 
    256  1.2.2.2  nathanw 	{ bridge_ioctl_daddr,		sizeof(struct ifbareq),
    257  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    258  1.2.2.2  nathanw 
    259  1.2.2.2  nathanw 	{ bridge_ioctl_flush,		sizeof(struct ifbreq),
    260  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    261  1.2.2.2  nathanw 
    262  1.2.2.2  nathanw 	{ bridge_ioctl_gpri,		sizeof(struct ifbrparam),
    263  1.2.2.2  nathanw 	  BC_F_COPYOUT },
    264  1.2.2.2  nathanw 	{ bridge_ioctl_spri,		sizeof(struct ifbrparam),
    265  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    266  1.2.2.2  nathanw 
    267  1.2.2.2  nathanw 	{ bridge_ioctl_ght,		sizeof(struct ifbrparam),
    268  1.2.2.2  nathanw 	  BC_F_COPYOUT },
    269  1.2.2.2  nathanw 	{ bridge_ioctl_sht,		sizeof(struct ifbrparam),
    270  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    271  1.2.2.2  nathanw 
    272  1.2.2.2  nathanw 	{ bridge_ioctl_gfd,		sizeof(struct ifbrparam),
    273  1.2.2.2  nathanw 	  BC_F_COPYOUT },
    274  1.2.2.2  nathanw 	{ bridge_ioctl_sfd,		sizeof(struct ifbrparam),
    275  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    276  1.2.2.2  nathanw 
    277  1.2.2.2  nathanw 	{ bridge_ioctl_gma,		sizeof(struct ifbrparam),
    278  1.2.2.2  nathanw 	  BC_F_COPYOUT },
    279  1.2.2.2  nathanw 	{ bridge_ioctl_sma,		sizeof(struct ifbrparam),
    280  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    281  1.2.2.2  nathanw 
    282  1.2.2.2  nathanw 	{ bridge_ioctl_sifprio,		sizeof(struct ifbreq),
    283  1.2.2.2  nathanw 	  BC_F_COPYIN|BC_F_SUSER },
    284  1.2.2.2  nathanw };
    285  1.2.2.2  nathanw const int bridge_control_table_size =
    286  1.2.2.2  nathanw     sizeof(bridge_control_table) / sizeof(bridge_control_table[0]);
    287  1.2.2.2  nathanw 
    288  1.2.2.2  nathanw LIST_HEAD(, bridge_softc) bridge_list;
    289  1.2.2.2  nathanw 
    290  1.2.2.2  nathanw struct if_clone bridge_cloner =
    291  1.2.2.2  nathanw     IF_CLONE_INITIALIZER("bridge", bridge_clone_create, bridge_clone_destroy);
    292  1.2.2.2  nathanw 
    293  1.2.2.2  nathanw /*
    294  1.2.2.2  nathanw  * bridgeattach:
    295  1.2.2.2  nathanw  *
    296  1.2.2.2  nathanw  *	Pseudo-device attach routine.
    297  1.2.2.2  nathanw  */
    298  1.2.2.2  nathanw void
    299  1.2.2.2  nathanw bridgeattach(int n)
    300  1.2.2.2  nathanw {
    301  1.2.2.2  nathanw 
    302  1.2.2.2  nathanw 	pool_init(&bridge_rtnode_pool, sizeof(struct bridge_rtnode),
    303  1.2.2.2  nathanw 	    0, 0, 0, "brtpl", 0, NULL, NULL, 0);
    304  1.2.2.2  nathanw 
    305  1.2.2.2  nathanw 	LIST_INIT(&bridge_list);
    306  1.2.2.2  nathanw 	if_clone_attach(&bridge_cloner);
    307  1.2.2.2  nathanw }
    308  1.2.2.2  nathanw 
    309  1.2.2.2  nathanw /*
    310  1.2.2.2  nathanw  * bridge_clone_create:
    311  1.2.2.2  nathanw  *
    312  1.2.2.2  nathanw  *	Create a new bridge instance.
    313  1.2.2.2  nathanw  */
    314  1.2.2.2  nathanw int
    315  1.2.2.2  nathanw bridge_clone_create(struct if_clone *ifc, int unit)
    316  1.2.2.2  nathanw {
    317  1.2.2.2  nathanw 	struct bridge_softc *sc;
    318  1.2.2.2  nathanw 	struct ifnet *ifp;
    319  1.2.2.2  nathanw 	int s;
    320  1.2.2.2  nathanw 
    321  1.2.2.2  nathanw 	sc = malloc(sizeof(*sc), M_DEVBUF, M_WAITOK);
    322  1.2.2.2  nathanw 	memset(sc, 0, sizeof(*sc));
    323  1.2.2.2  nathanw 	ifp = &sc->sc_if;
    324  1.2.2.2  nathanw 
    325  1.2.2.2  nathanw 	sc->sc_brtmax = BRIDGE_RTABLE_MAX;
    326  1.2.2.2  nathanw 	sc->sc_brttimeout = BRIDGE_RTABLE_TIMEOUT;
    327  1.2.2.2  nathanw 	sc->sc_bridge_max_age = BSTP_DEFAULT_MAX_AGE;
    328  1.2.2.2  nathanw 	sc->sc_bridge_hello_time = BSTP_DEFAULT_HELLO_TIME;
    329  1.2.2.2  nathanw 	sc->sc_bridge_forward_delay = BSTP_DEFAULT_FORWARD_DELAY;
    330  1.2.2.2  nathanw 	sc->sc_bridge_priority = BSTP_DEFAULT_BRIDGE_PRIORITY;
    331  1.2.2.2  nathanw 	sc->sc_hold_time = BSTP_DEFAULT_HOLD_TIME;
    332  1.2.2.2  nathanw 
    333  1.2.2.2  nathanw 	/* Initialize our routing table. */
    334  1.2.2.2  nathanw 	bridge_rtable_init(sc);
    335  1.2.2.2  nathanw 
    336  1.2.2.2  nathanw 	callout_init(&sc->sc_brcallout);
    337  1.2.2.2  nathanw 	callout_init(&sc->sc_bstpcallout);
    338  1.2.2.2  nathanw 
    339  1.2.2.2  nathanw 	LIST_INIT(&sc->sc_iflist);
    340  1.2.2.2  nathanw 
    341  1.2.2.2  nathanw 	sprintf(ifp->if_xname, "%s%d", ifc->ifc_name, unit);
    342  1.2.2.2  nathanw 	ifp->if_softc = sc;
    343  1.2.2.2  nathanw 	ifp->if_mtu = ETHERMTU;
    344  1.2.2.2  nathanw 	ifp->if_ioctl = bridge_ioctl;
    345  1.2.2.2  nathanw 	ifp->if_output = bridge_output;
    346  1.2.2.2  nathanw 	ifp->if_start = bridge_start;
    347  1.2.2.2  nathanw 	ifp->if_stop = bridge_stop;
    348  1.2.2.2  nathanw 	ifp->if_init = bridge_init;
    349  1.2.2.2  nathanw 	ifp->if_type = IFT_PROPVIRTUAL;	/* XXX IFT_BRIDGE */
    350  1.2.2.2  nathanw 	ifp->if_addrlen = 0;
    351  1.2.2.2  nathanw 	ifp->if_dlt = DLT_EN10MB;
    352  1.2.2.2  nathanw 	ifp->if_hdrlen = ETHER_HDR_LEN;
    353  1.2.2.2  nathanw 
    354  1.2.2.2  nathanw 	if_attach(ifp);
    355  1.2.2.2  nathanw 
    356  1.2.2.2  nathanw 	if_alloc_sadl(ifp);
    357  1.2.2.2  nathanw 
    358  1.2.2.2  nathanw 	s = splnet();
    359  1.2.2.2  nathanw 	LIST_INSERT_HEAD(&bridge_list, sc, sc_list);
    360  1.2.2.2  nathanw 	splx(s);
    361  1.2.2.2  nathanw 
    362  1.2.2.2  nathanw 	return (0);
    363  1.2.2.2  nathanw }
    364  1.2.2.2  nathanw 
    365  1.2.2.2  nathanw /*
    366  1.2.2.2  nathanw  * bridge_clone_destroy:
    367  1.2.2.2  nathanw  *
    368  1.2.2.2  nathanw  *	Destroy a bridge instance.
    369  1.2.2.2  nathanw  */
    370  1.2.2.2  nathanw void
    371  1.2.2.2  nathanw bridge_clone_destroy(struct ifnet *ifp)
    372  1.2.2.2  nathanw {
    373  1.2.2.2  nathanw 	struct bridge_softc *sc = ifp->if_softc;
    374  1.2.2.2  nathanw 	struct bridge_iflist *bif;
    375  1.2.2.2  nathanw 	int s;
    376  1.2.2.2  nathanw 
    377  1.2.2.2  nathanw 	s = splnet();
    378  1.2.2.2  nathanw 
    379  1.2.2.2  nathanw 	bridge_stop(ifp, 1);
    380  1.2.2.2  nathanw 
    381  1.2.2.2  nathanw 	while ((bif = LIST_FIRST(&sc->sc_iflist)) != NULL)
    382  1.2.2.2  nathanw 		bridge_delete_member(sc, bif);
    383  1.2.2.2  nathanw 
    384  1.2.2.2  nathanw 	LIST_REMOVE(sc, sc_list);
    385  1.2.2.2  nathanw 
    386  1.2.2.2  nathanw 	splx(s);
    387  1.2.2.2  nathanw 
    388  1.2.2.2  nathanw 	if_detach(ifp);
    389  1.2.2.2  nathanw 
    390  1.2.2.2  nathanw 	/* Tear down the routing table. */
    391  1.2.2.2  nathanw 	bridge_rtable_fini(sc);
    392  1.2.2.2  nathanw 
    393  1.2.2.2  nathanw 	free(sc, M_DEVBUF);
    394  1.2.2.2  nathanw }
    395  1.2.2.2  nathanw 
    396  1.2.2.2  nathanw /*
    397  1.2.2.2  nathanw  * bridge_ioctl:
    398  1.2.2.2  nathanw  *
    399  1.2.2.2  nathanw  *	Handle a control request from the operator.
    400  1.2.2.2  nathanw  */
    401  1.2.2.2  nathanw int
    402  1.2.2.2  nathanw bridge_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
    403  1.2.2.2  nathanw {
    404  1.2.2.2  nathanw 	struct bridge_softc *sc = ifp->if_softc;
    405  1.2.2.2  nathanw 	struct proc *p = curproc;	/* XXX */
    406  1.2.2.2  nathanw 	union {
    407  1.2.2.2  nathanw 		struct ifbreq ifbreq;
    408  1.2.2.2  nathanw 		struct ifbifconf ifbifconf;
    409  1.2.2.2  nathanw 		struct ifbareq ifbareq;
    410  1.2.2.2  nathanw 		struct ifbaconf ifbaconf;
    411  1.2.2.2  nathanw 		struct ifbrparam ifbrparam;
    412  1.2.2.2  nathanw 	} args;
    413  1.2.2.2  nathanw 	struct ifdrv *ifd = (struct ifdrv *) data;
    414  1.2.2.2  nathanw 	const struct bridge_control *bc;
    415  1.2.2.2  nathanw 	int s, error = 0;
    416  1.2.2.2  nathanw 
    417  1.2.2.2  nathanw 	s = splnet();
    418  1.2.2.2  nathanw 
    419  1.2.2.2  nathanw 	switch (cmd) {
    420  1.2.2.2  nathanw 	case SIOCGDRVSPEC:
    421  1.2.2.2  nathanw 	case SIOCSDRVSPEC:
    422  1.2.2.2  nathanw 		if (ifd->ifd_cmd >= bridge_control_table_size) {
    423  1.2.2.2  nathanw 			error = EINVAL;
    424  1.2.2.2  nathanw 			break;
    425  1.2.2.2  nathanw 		}
    426  1.2.2.2  nathanw 		bc = &bridge_control_table[ifd->ifd_cmd];
    427  1.2.2.2  nathanw 
    428  1.2.2.2  nathanw 		if (cmd == SIOCGDRVSPEC &&
    429  1.2.2.2  nathanw 		    (bc->bc_flags & BC_F_COPYOUT) == 0)
    430  1.2.2.2  nathanw 			return (EINVAL);
    431  1.2.2.2  nathanw 		else if (cmd == SIOCSDRVSPEC &&
    432  1.2.2.2  nathanw 		    (bc->bc_flags & BC_F_COPYOUT) != 0)
    433  1.2.2.2  nathanw 			return (EINVAL);
    434  1.2.2.2  nathanw 
    435  1.2.2.2  nathanw 		if (bc->bc_flags & BC_F_SUSER) {
    436  1.2.2.2  nathanw 			error = suser(p->p_ucred, &p->p_acflag);
    437  1.2.2.2  nathanw 			if (error)
    438  1.2.2.2  nathanw 				break;
    439  1.2.2.2  nathanw 		}
    440  1.2.2.2  nathanw 
    441  1.2.2.2  nathanw 		if (ifd->ifd_len != bc->bc_argsize ||
    442  1.2.2.2  nathanw 		    ifd->ifd_len > sizeof(args)) {
    443  1.2.2.2  nathanw 			error = EINVAL;
    444  1.2.2.2  nathanw 			break;
    445  1.2.2.2  nathanw 		}
    446  1.2.2.2  nathanw 
    447  1.2.2.2  nathanw 		if (bc->bc_flags & BC_F_COPYIN) {
    448  1.2.2.2  nathanw 			error = copyin(ifd->ifd_data, &args, ifd->ifd_len);
    449  1.2.2.2  nathanw 			if (error)
    450  1.2.2.2  nathanw 				break;
    451  1.2.2.2  nathanw 		}
    452  1.2.2.2  nathanw 
    453  1.2.2.2  nathanw 		error = (*bc->bc_func)(sc, &args);
    454  1.2.2.2  nathanw 		if (error)
    455  1.2.2.2  nathanw 			break;
    456  1.2.2.2  nathanw 
    457  1.2.2.2  nathanw 		if (bc->bc_flags & BC_F_COPYOUT)
    458  1.2.2.2  nathanw 			error = copyout(&args, ifd->ifd_data, ifd->ifd_len);
    459  1.2.2.2  nathanw 
    460  1.2.2.2  nathanw 		break;
    461  1.2.2.2  nathanw 
    462  1.2.2.2  nathanw 	case SIOCSIFFLAGS:
    463  1.2.2.2  nathanw 		if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) == IFF_RUNNING) {
    464  1.2.2.2  nathanw 			/*
    465  1.2.2.2  nathanw 			 * If interface is marked down and it is running,
    466  1.2.2.2  nathanw 			 * then stop and disable it.
    467  1.2.2.2  nathanw 			 */
    468  1.2.2.2  nathanw 			(*ifp->if_stop)(ifp, 1);
    469  1.2.2.2  nathanw 		} else if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) == IFF_UP) {
    470  1.2.2.2  nathanw 			/*
    471  1.2.2.2  nathanw 			 * If interface is marked up and it is stopped, then
    472  1.2.2.2  nathanw 			 * start it.
    473  1.2.2.2  nathanw 			 */
    474  1.2.2.2  nathanw 			error = (*ifp->if_init)(ifp);
    475  1.2.2.2  nathanw 		}
    476  1.2.2.2  nathanw 		break;
    477  1.2.2.2  nathanw 
    478  1.2.2.2  nathanw 	default:
    479  1.2.2.2  nathanw 		error = ENOTTY;
    480  1.2.2.2  nathanw 		break;
    481  1.2.2.2  nathanw 	}
    482  1.2.2.2  nathanw 
    483  1.2.2.2  nathanw 	splx(s);
    484  1.2.2.2  nathanw 
    485  1.2.2.2  nathanw 	return (error);
    486  1.2.2.2  nathanw }
    487  1.2.2.2  nathanw 
    488  1.2.2.2  nathanw /*
    489  1.2.2.2  nathanw  * bridge_lookup_member:
    490  1.2.2.2  nathanw  *
    491  1.2.2.2  nathanw  *	Lookup a bridge member interface.  Must be called at splnet().
    492  1.2.2.2  nathanw  */
    493  1.2.2.2  nathanw struct bridge_iflist *
    494  1.2.2.2  nathanw bridge_lookup_member(struct bridge_softc *sc, const char *name)
    495  1.2.2.2  nathanw {
    496  1.2.2.2  nathanw 	struct bridge_iflist *bif;
    497  1.2.2.2  nathanw 	struct ifnet *ifp;
    498  1.2.2.2  nathanw 
    499  1.2.2.2  nathanw 	LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
    500  1.2.2.2  nathanw 		ifp = bif->bif_ifp;
    501  1.2.2.2  nathanw 		if (strcmp(ifp->if_xname, name) == 0)
    502  1.2.2.2  nathanw 			return (bif);
    503  1.2.2.2  nathanw 	}
    504  1.2.2.2  nathanw 
    505  1.2.2.2  nathanw 	return (NULL);
    506  1.2.2.2  nathanw }
    507  1.2.2.2  nathanw 
    508  1.2.2.2  nathanw /*
    509  1.2.2.2  nathanw  * bridge_delete_member:
    510  1.2.2.2  nathanw  *
    511  1.2.2.2  nathanw  *	Delete the specified member interface.
    512  1.2.2.2  nathanw  */
    513  1.2.2.2  nathanw void
    514  1.2.2.2  nathanw bridge_delete_member(struct bridge_softc *sc, struct bridge_iflist *bif)
    515  1.2.2.2  nathanw {
    516  1.2.2.2  nathanw 	struct ifnet *ifs = bif->bif_ifp;
    517  1.2.2.2  nathanw 
    518  1.2.2.2  nathanw 	switch (ifs->if_type) {
    519  1.2.2.2  nathanw 	case IFT_ETHER:
    520  1.2.2.2  nathanw 		/*
    521  1.2.2.2  nathanw 		 * Take the interface out of promiscuous mode.
    522  1.2.2.2  nathanw 		 */
    523  1.2.2.2  nathanw 		(void) ifpromisc(ifs, 0);
    524  1.2.2.2  nathanw 		break;
    525  1.2.2.2  nathanw 
    526  1.2.2.2  nathanw 	default:
    527  1.2.2.2  nathanw #ifdef DIAGNOSTIC
    528  1.2.2.2  nathanw 		panic("bridge_delete_member: impossible");
    529  1.2.2.2  nathanw #endif
    530  1.2.2.2  nathanw 		break;
    531  1.2.2.2  nathanw 	}
    532  1.2.2.2  nathanw 
    533  1.2.2.2  nathanw 	ifs->if_bridge = NULL;
    534  1.2.2.2  nathanw 	LIST_REMOVE(bif, bif_next);
    535  1.2.2.2  nathanw 
    536  1.2.2.2  nathanw 	bridge_rtdelete(sc, ifs);
    537  1.2.2.2  nathanw 
    538  1.2.2.2  nathanw 	free(bif, M_DEVBUF);
    539  1.2.2.2  nathanw 
    540  1.2.2.2  nathanw 	if (sc->sc_if.if_flags & IFF_RUNNING)
    541  1.2.2.2  nathanw 		bstp_initialization(sc);
    542  1.2.2.2  nathanw }
    543  1.2.2.2  nathanw 
    544  1.2.2.2  nathanw int
    545  1.2.2.2  nathanw bridge_ioctl_add(struct bridge_softc *sc, void *arg)
    546  1.2.2.2  nathanw {
    547  1.2.2.2  nathanw 	struct ifbreq *req = arg;
    548  1.2.2.2  nathanw 	struct bridge_iflist *bif = NULL;
    549  1.2.2.2  nathanw 	struct ifnet *ifs;
    550  1.2.2.2  nathanw 	int error = 0;
    551  1.2.2.2  nathanw 
    552  1.2.2.2  nathanw 	ifs = ifunit(req->ifbr_ifsname);
    553  1.2.2.2  nathanw 	if (ifs == NULL)
    554  1.2.2.2  nathanw 		return (ENOENT);
    555  1.2.2.2  nathanw 
    556  1.2.2.2  nathanw 	if (ifs->if_bridge == sc)
    557  1.2.2.2  nathanw 		return (EEXIST);
    558  1.2.2.2  nathanw 
    559  1.2.2.2  nathanw 	if (ifs->if_bridge != NULL)
    560  1.2.2.2  nathanw 		return (EBUSY);
    561  1.2.2.2  nathanw 
    562  1.2.2.2  nathanw 	bif = malloc(sizeof(*bif), M_DEVBUF, M_NOWAIT);
    563  1.2.2.2  nathanw 	if (bif == NULL)
    564  1.2.2.2  nathanw 		return (ENOMEM);
    565  1.2.2.2  nathanw 
    566  1.2.2.2  nathanw 	switch (ifs->if_type) {
    567  1.2.2.2  nathanw 	case IFT_ETHER:
    568  1.2.2.2  nathanw 		/*
    569  1.2.2.2  nathanw 		 * Place the interface into promiscuous mode.
    570  1.2.2.2  nathanw 		 */
    571  1.2.2.2  nathanw 		error = ifpromisc(ifs, 1);
    572  1.2.2.2  nathanw 		if (error)
    573  1.2.2.2  nathanw 			goto out;
    574  1.2.2.2  nathanw 		break;
    575  1.2.2.2  nathanw 
    576  1.2.2.2  nathanw 	default:
    577  1.2.2.2  nathanw 		return (EINVAL);
    578  1.2.2.2  nathanw 	}
    579  1.2.2.2  nathanw 
    580  1.2.2.2  nathanw 	bif->bif_ifp = ifs;
    581  1.2.2.2  nathanw 	bif->bif_flags = IFBIF_LEARNING | IFBIF_DISCOVER;
    582  1.2.2.2  nathanw 	bif->bif_priority = BSTP_DEFAULT_PORT_PRIORITY;
    583  1.2.2.2  nathanw 	bif->bif_path_cost = BSTP_DEFAULT_PATH_COST;
    584  1.2.2.2  nathanw 
    585  1.2.2.2  nathanw 	ifs->if_bridge = sc;
    586  1.2.2.2  nathanw 	LIST_INSERT_HEAD(&sc->sc_iflist, bif, bif_next);
    587  1.2.2.2  nathanw 
    588  1.2.2.2  nathanw 	if (sc->sc_if.if_flags & IFF_RUNNING)
    589  1.2.2.2  nathanw 		bstp_initialization(sc);
    590  1.2.2.2  nathanw 	else
    591  1.2.2.2  nathanw 		bstp_stop(sc);
    592  1.2.2.2  nathanw 
    593  1.2.2.2  nathanw  out:
    594  1.2.2.2  nathanw 	if (error) {
    595  1.2.2.2  nathanw 		if (bif != NULL)
    596  1.2.2.2  nathanw 			free(bif, M_DEVBUF);
    597  1.2.2.2  nathanw 	}
    598  1.2.2.2  nathanw 	return (error);
    599  1.2.2.2  nathanw }
    600  1.2.2.2  nathanw 
    601  1.2.2.2  nathanw int
    602  1.2.2.2  nathanw bridge_ioctl_del(struct bridge_softc *sc, void *arg)
    603  1.2.2.2  nathanw {
    604  1.2.2.2  nathanw 	struct ifbreq *req = arg;
    605  1.2.2.2  nathanw 	struct bridge_iflist *bif;
    606  1.2.2.2  nathanw 
    607  1.2.2.2  nathanw 	bif = bridge_lookup_member(sc, req->ifbr_ifsname);
    608  1.2.2.2  nathanw 	if (bif == NULL)
    609  1.2.2.2  nathanw 		return (ENOENT);
    610  1.2.2.2  nathanw 
    611  1.2.2.2  nathanw 	bridge_delete_member(sc, bif);
    612  1.2.2.2  nathanw 
    613  1.2.2.2  nathanw 	return (0);
    614  1.2.2.2  nathanw }
    615  1.2.2.2  nathanw 
    616  1.2.2.2  nathanw int
    617  1.2.2.2  nathanw bridge_ioctl_gifflags(struct bridge_softc *sc, void *arg)
    618  1.2.2.2  nathanw {
    619  1.2.2.2  nathanw 	struct ifbreq *req = arg;
    620  1.2.2.2  nathanw 	struct bridge_iflist *bif;
    621  1.2.2.2  nathanw 
    622  1.2.2.2  nathanw 	bif = bridge_lookup_member(sc, req->ifbr_ifsname);
    623  1.2.2.2  nathanw 	if (bif == NULL)
    624  1.2.2.2  nathanw 		return (ENOENT);
    625  1.2.2.2  nathanw 
    626  1.2.2.2  nathanw 	req->ifbr_ifsflags = bif->bif_flags;
    627  1.2.2.2  nathanw 	req->ifbr_state = bif->bif_state;
    628  1.2.2.2  nathanw 	req->ifbr_priority = bif->bif_priority;
    629  1.2.2.2  nathanw 	req->ifbr_portno = bif->bif_ifp->if_index & 0xff;
    630  1.2.2.2  nathanw 
    631  1.2.2.2  nathanw 	return (0);
    632  1.2.2.2  nathanw }
    633  1.2.2.2  nathanw 
    634  1.2.2.2  nathanw int
    635  1.2.2.2  nathanw bridge_ioctl_sifflags(struct bridge_softc *sc, void *arg)
    636  1.2.2.2  nathanw {
    637  1.2.2.2  nathanw 	struct ifbreq *req = arg;
    638  1.2.2.2  nathanw 	struct bridge_iflist *bif;
    639  1.2.2.2  nathanw 
    640  1.2.2.2  nathanw 	bif = bridge_lookup_member(sc, req->ifbr_ifsname);
    641  1.2.2.2  nathanw 	if (bif == NULL)
    642  1.2.2.2  nathanw 		return (ENOENT);
    643  1.2.2.2  nathanw 
    644  1.2.2.2  nathanw 	if (req->ifbr_ifsflags & IFBIF_STP) {
    645  1.2.2.2  nathanw 		switch (bif->bif_ifp->if_type) {
    646  1.2.2.2  nathanw 		case IFT_ETHER:
    647  1.2.2.2  nathanw 			/* These can do spanning tree. */
    648  1.2.2.2  nathanw 			break;
    649  1.2.2.2  nathanw 
    650  1.2.2.2  nathanw 		default:
    651  1.2.2.2  nathanw 			/* Nothing else can. */
    652  1.2.2.2  nathanw 			return (EINVAL);
    653  1.2.2.2  nathanw 		}
    654  1.2.2.2  nathanw 	}
    655  1.2.2.2  nathanw 
    656  1.2.2.2  nathanw 	bif->bif_flags = req->ifbr_ifsflags;
    657  1.2.2.2  nathanw 
    658  1.2.2.2  nathanw 	if (sc->sc_if.if_flags & IFF_RUNNING)
    659  1.2.2.2  nathanw 		bstp_initialization(sc);
    660  1.2.2.2  nathanw 
    661  1.2.2.2  nathanw 	return (0);
    662  1.2.2.2  nathanw }
    663  1.2.2.2  nathanw 
    664  1.2.2.2  nathanw int
    665  1.2.2.2  nathanw bridge_ioctl_scache(struct bridge_softc *sc, void *arg)
    666  1.2.2.2  nathanw {
    667  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    668  1.2.2.2  nathanw 
    669  1.2.2.2  nathanw 	sc->sc_brtmax = param->ifbrp_csize;
    670  1.2.2.2  nathanw 	bridge_rttrim(sc);
    671  1.2.2.2  nathanw 
    672  1.2.2.2  nathanw 	return (0);
    673  1.2.2.2  nathanw }
    674  1.2.2.2  nathanw 
    675  1.2.2.2  nathanw int
    676  1.2.2.2  nathanw bridge_ioctl_gcache(struct bridge_softc *sc, void *arg)
    677  1.2.2.2  nathanw {
    678  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    679  1.2.2.2  nathanw 
    680  1.2.2.2  nathanw 	param->ifbrp_csize = sc->sc_brtmax;
    681  1.2.2.2  nathanw 
    682  1.2.2.2  nathanw 	return (0);
    683  1.2.2.2  nathanw }
    684  1.2.2.2  nathanw 
    685  1.2.2.2  nathanw int
    686  1.2.2.2  nathanw bridge_ioctl_gifs(struct bridge_softc *sc, void *arg)
    687  1.2.2.2  nathanw {
    688  1.2.2.2  nathanw 	struct ifbifconf *bifc = arg;
    689  1.2.2.2  nathanw 	struct bridge_iflist *bif;
    690  1.2.2.2  nathanw 	struct ifbreq breq;
    691  1.2.2.2  nathanw 	int count, len, error = 0;
    692  1.2.2.2  nathanw 
    693  1.2.2.2  nathanw 	count = 0;
    694  1.2.2.2  nathanw 	LIST_FOREACH(bif, &sc->sc_iflist, bif_next)
    695  1.2.2.2  nathanw 		count++;
    696  1.2.2.2  nathanw 
    697  1.2.2.2  nathanw 	if (bifc->ifbic_len == 0) {
    698  1.2.2.2  nathanw 		bifc->ifbic_len = sizeof(breq) * count;
    699  1.2.2.2  nathanw 		return (0);
    700  1.2.2.2  nathanw 	}
    701  1.2.2.2  nathanw 
    702  1.2.2.2  nathanw 	count = 0;
    703  1.2.2.2  nathanw 	len = bifc->ifbic_len;
    704  1.2.2.2  nathanw 	LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
    705  1.2.2.2  nathanw 		if (len < sizeof(breq))
    706  1.2.2.2  nathanw 			break;
    707  1.2.2.2  nathanw 
    708  1.2.2.2  nathanw 		strcpy(breq.ifbr_ifsname, bif->bif_ifp->if_xname);
    709  1.2.2.2  nathanw 		breq.ifbr_ifsflags = bif->bif_flags;
    710  1.2.2.2  nathanw 		breq.ifbr_state = bif->bif_state;
    711  1.2.2.2  nathanw 		breq.ifbr_priority = bif->bif_priority;
    712  1.2.2.2  nathanw 		breq.ifbr_portno = bif->bif_ifp->if_index & 0xff;
    713  1.2.2.2  nathanw 		error = copyout(&breq, bifc->ifbic_req + count, sizeof(breq));
    714  1.2.2.2  nathanw 		if (error)
    715  1.2.2.2  nathanw 			break;
    716  1.2.2.2  nathanw 		count++;
    717  1.2.2.2  nathanw 		len -= sizeof(breq);
    718  1.2.2.2  nathanw 	}
    719  1.2.2.2  nathanw 
    720  1.2.2.2  nathanw 	bifc->ifbic_len = sizeof(breq) * count;
    721  1.2.2.2  nathanw 	return (error);
    722  1.2.2.2  nathanw }
    723  1.2.2.2  nathanw 
    724  1.2.2.2  nathanw int
    725  1.2.2.2  nathanw bridge_ioctl_rts(struct bridge_softc *sc, void *arg)
    726  1.2.2.2  nathanw {
    727  1.2.2.2  nathanw 	struct ifbaconf *bac = arg;
    728  1.2.2.2  nathanw 	struct bridge_rtnode *brt;
    729  1.2.2.2  nathanw 	struct ifbareq bareq;
    730  1.2.2.2  nathanw 	int count = 0, error = 0, len;
    731  1.2.2.2  nathanw 
    732  1.2.2.2  nathanw 	if (bac->ifbac_len == 0)
    733  1.2.2.2  nathanw 		return (0);
    734  1.2.2.2  nathanw 
    735  1.2.2.2  nathanw 	len = bac->ifbac_len;
    736  1.2.2.2  nathanw 	LIST_FOREACH(brt, &sc->sc_rtlist, brt_list) {
    737  1.2.2.2  nathanw 		if (len < sizeof(bareq))
    738  1.2.2.2  nathanw 			goto out;
    739  1.2.2.2  nathanw 		strcpy(bareq.ifba_ifsname, brt->brt_ifp->if_xname);
    740  1.2.2.2  nathanw 		memcpy(bareq.ifba_dst, brt->brt_addr, sizeof(brt->brt_addr));
    741  1.2.2.2  nathanw 		if ((brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC)
    742  1.2.2.2  nathanw 			bareq.ifba_expire = brt->brt_expire - mono_time.tv_sec;
    743  1.2.2.2  nathanw 		else
    744  1.2.2.2  nathanw 			bareq.ifba_expire = 0;
    745  1.2.2.2  nathanw 		bareq.ifba_flags = brt->brt_flags;
    746  1.2.2.2  nathanw 
    747  1.2.2.2  nathanw 		error = copyout(&bareq, bac->ifbac_req + count, sizeof(bareq));
    748  1.2.2.2  nathanw 		if (error)
    749  1.2.2.2  nathanw 			goto out;
    750  1.2.2.2  nathanw 		count++;
    751  1.2.2.2  nathanw 		len -= sizeof(bareq);
    752  1.2.2.2  nathanw 	}
    753  1.2.2.2  nathanw  out:
    754  1.2.2.2  nathanw 	bac->ifbac_len = sizeof(bareq) * count;
    755  1.2.2.2  nathanw 	return (error);
    756  1.2.2.2  nathanw }
    757  1.2.2.2  nathanw 
    758  1.2.2.2  nathanw int
    759  1.2.2.2  nathanw bridge_ioctl_saddr(struct bridge_softc *sc, void *arg)
    760  1.2.2.2  nathanw {
    761  1.2.2.2  nathanw 	struct ifbareq *req = arg;
    762  1.2.2.2  nathanw 	struct bridge_iflist *bif;
    763  1.2.2.2  nathanw 	int error;
    764  1.2.2.2  nathanw 
    765  1.2.2.2  nathanw 	bif = bridge_lookup_member(sc, req->ifba_ifsname);
    766  1.2.2.2  nathanw 	if (bif == NULL)
    767  1.2.2.2  nathanw 		return (ENOENT);
    768  1.2.2.2  nathanw 
    769  1.2.2.2  nathanw 	error = bridge_rtupdate(sc, req->ifba_dst, bif->bif_ifp, 1,
    770  1.2.2.2  nathanw 	    req->ifba_flags);
    771  1.2.2.2  nathanw 
    772  1.2.2.2  nathanw 	return (error);
    773  1.2.2.2  nathanw }
    774  1.2.2.2  nathanw 
    775  1.2.2.2  nathanw int
    776  1.2.2.2  nathanw bridge_ioctl_sto(struct bridge_softc *sc, void *arg)
    777  1.2.2.2  nathanw {
    778  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    779  1.2.2.2  nathanw 
    780  1.2.2.2  nathanw 	sc->sc_brttimeout = param->ifbrp_ctime;
    781  1.2.2.2  nathanw 
    782  1.2.2.2  nathanw 	return (0);
    783  1.2.2.2  nathanw }
    784  1.2.2.2  nathanw 
    785  1.2.2.2  nathanw int
    786  1.2.2.2  nathanw bridge_ioctl_gto(struct bridge_softc *sc, void *arg)
    787  1.2.2.2  nathanw {
    788  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    789  1.2.2.2  nathanw 
    790  1.2.2.2  nathanw 	param->ifbrp_ctime = sc->sc_brttimeout;
    791  1.2.2.2  nathanw 
    792  1.2.2.2  nathanw 	return (0);
    793  1.2.2.2  nathanw }
    794  1.2.2.2  nathanw 
    795  1.2.2.2  nathanw int
    796  1.2.2.2  nathanw bridge_ioctl_daddr(struct bridge_softc *sc, void *arg)
    797  1.2.2.2  nathanw {
    798  1.2.2.2  nathanw 	struct ifbareq *req = arg;
    799  1.2.2.2  nathanw 
    800  1.2.2.2  nathanw 	return (bridge_rtdaddr(sc, req->ifba_dst));
    801  1.2.2.2  nathanw }
    802  1.2.2.2  nathanw 
    803  1.2.2.2  nathanw int
    804  1.2.2.2  nathanw bridge_ioctl_flush(struct bridge_softc *sc, void *arg)
    805  1.2.2.2  nathanw {
    806  1.2.2.2  nathanw 	struct ifbreq *req = arg;
    807  1.2.2.2  nathanw 
    808  1.2.2.2  nathanw 	bridge_rtflush(sc, req->ifbr_ifsflags);
    809  1.2.2.2  nathanw 
    810  1.2.2.2  nathanw 	return (0);
    811  1.2.2.2  nathanw }
    812  1.2.2.2  nathanw 
    813  1.2.2.2  nathanw int
    814  1.2.2.2  nathanw bridge_ioctl_gpri(struct bridge_softc *sc, void *arg)
    815  1.2.2.2  nathanw {
    816  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    817  1.2.2.2  nathanw 
    818  1.2.2.2  nathanw 	param->ifbrp_prio = sc->sc_bridge_priority;
    819  1.2.2.2  nathanw 
    820  1.2.2.2  nathanw 	return (0);
    821  1.2.2.2  nathanw }
    822  1.2.2.2  nathanw 
    823  1.2.2.2  nathanw int
    824  1.2.2.2  nathanw bridge_ioctl_spri(struct bridge_softc *sc, void *arg)
    825  1.2.2.2  nathanw {
    826  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    827  1.2.2.2  nathanw 
    828  1.2.2.2  nathanw 	sc->sc_bridge_priority = param->ifbrp_prio;
    829  1.2.2.2  nathanw 
    830  1.2.2.2  nathanw 	if (sc->sc_if.if_flags & IFF_RUNNING)
    831  1.2.2.2  nathanw 		bstp_initialization(sc);
    832  1.2.2.2  nathanw 
    833  1.2.2.2  nathanw 	return (0);
    834  1.2.2.2  nathanw }
    835  1.2.2.2  nathanw 
    836  1.2.2.2  nathanw int
    837  1.2.2.2  nathanw bridge_ioctl_ght(struct bridge_softc *sc, void *arg)
    838  1.2.2.2  nathanw {
    839  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    840  1.2.2.2  nathanw 
    841  1.2.2.2  nathanw 	param->ifbrp_hellotime = sc->sc_bridge_hello_time >> 8;
    842  1.2.2.2  nathanw 
    843  1.2.2.2  nathanw 	return (0);
    844  1.2.2.2  nathanw }
    845  1.2.2.2  nathanw 
    846  1.2.2.2  nathanw int
    847  1.2.2.2  nathanw bridge_ioctl_sht(struct bridge_softc *sc, void *arg)
    848  1.2.2.2  nathanw {
    849  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    850  1.2.2.2  nathanw 
    851  1.2.2.2  nathanw 	if (param->ifbrp_hellotime == 0)
    852  1.2.2.2  nathanw 		return (EINVAL);
    853  1.2.2.2  nathanw 	sc->sc_bridge_hello_time = param->ifbrp_hellotime << 8;
    854  1.2.2.2  nathanw 
    855  1.2.2.2  nathanw 	if (sc->sc_if.if_flags & IFF_RUNNING)
    856  1.2.2.2  nathanw 		bstp_initialization(sc);
    857  1.2.2.2  nathanw 
    858  1.2.2.2  nathanw 	return (0);
    859  1.2.2.2  nathanw }
    860  1.2.2.2  nathanw 
    861  1.2.2.2  nathanw int
    862  1.2.2.2  nathanw bridge_ioctl_gfd(struct bridge_softc *sc, void *arg)
    863  1.2.2.2  nathanw {
    864  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    865  1.2.2.2  nathanw 
    866  1.2.2.2  nathanw 	param->ifbrp_fwddelay = sc->sc_bridge_forward_delay >> 8;
    867  1.2.2.2  nathanw 
    868  1.2.2.2  nathanw 	return (0);
    869  1.2.2.2  nathanw }
    870  1.2.2.2  nathanw 
    871  1.2.2.2  nathanw int
    872  1.2.2.2  nathanw bridge_ioctl_sfd(struct bridge_softc *sc, void *arg)
    873  1.2.2.2  nathanw {
    874  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    875  1.2.2.2  nathanw 
    876  1.2.2.2  nathanw 	if (param->ifbrp_fwddelay == 0)
    877  1.2.2.2  nathanw 		return (EINVAL);
    878  1.2.2.2  nathanw 	sc->sc_bridge_forward_delay = param->ifbrp_fwddelay << 8;
    879  1.2.2.2  nathanw 
    880  1.2.2.2  nathanw 	if (sc->sc_if.if_flags & IFF_RUNNING)
    881  1.2.2.2  nathanw 		bstp_initialization(sc);
    882  1.2.2.2  nathanw 
    883  1.2.2.2  nathanw 	return (0);
    884  1.2.2.2  nathanw }
    885  1.2.2.2  nathanw 
    886  1.2.2.2  nathanw int
    887  1.2.2.2  nathanw bridge_ioctl_gma(struct bridge_softc *sc, void *arg)
    888  1.2.2.2  nathanw {
    889  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    890  1.2.2.2  nathanw 
    891  1.2.2.2  nathanw 	param->ifbrp_maxage = sc->sc_bridge_max_age >> 8;
    892  1.2.2.2  nathanw 
    893  1.2.2.2  nathanw 	return (0);
    894  1.2.2.2  nathanw }
    895  1.2.2.2  nathanw 
    896  1.2.2.2  nathanw int
    897  1.2.2.2  nathanw bridge_ioctl_sma(struct bridge_softc *sc, void *arg)
    898  1.2.2.2  nathanw {
    899  1.2.2.2  nathanw 	struct ifbrparam *param = arg;
    900  1.2.2.2  nathanw 
    901  1.2.2.2  nathanw 	if (param->ifbrp_maxage == 0)
    902  1.2.2.2  nathanw 		return (EINVAL);
    903  1.2.2.2  nathanw 	sc->sc_bridge_max_age = param->ifbrp_maxage << 8;
    904  1.2.2.2  nathanw 
    905  1.2.2.2  nathanw 	if (sc->sc_if.if_flags & IFF_RUNNING)
    906  1.2.2.2  nathanw 		bstp_initialization(sc);
    907  1.2.2.2  nathanw 
    908  1.2.2.2  nathanw 	return (0);
    909  1.2.2.2  nathanw }
    910  1.2.2.2  nathanw 
    911  1.2.2.2  nathanw int
    912  1.2.2.2  nathanw bridge_ioctl_sifprio(struct bridge_softc *sc, void *arg)
    913  1.2.2.2  nathanw {
    914  1.2.2.2  nathanw 	struct ifbreq *req = arg;
    915  1.2.2.2  nathanw 	struct bridge_iflist *bif;
    916  1.2.2.2  nathanw 
    917  1.2.2.2  nathanw 	bif = bridge_lookup_member(sc, req->ifbr_ifsname);
    918  1.2.2.2  nathanw 	if (bif == NULL)
    919  1.2.2.2  nathanw 		return (ENOENT);
    920  1.2.2.2  nathanw 
    921  1.2.2.2  nathanw 	bif->bif_priority = req->ifbr_priority;
    922  1.2.2.2  nathanw 
    923  1.2.2.2  nathanw 	if (sc->sc_if.if_flags & IFF_RUNNING)
    924  1.2.2.2  nathanw 		bstp_initialization(sc);
    925  1.2.2.2  nathanw 
    926  1.2.2.2  nathanw 	return (0);
    927  1.2.2.2  nathanw }
    928  1.2.2.2  nathanw 
    929  1.2.2.2  nathanw /*
    930  1.2.2.2  nathanw  * bridge_ifdetach:
    931  1.2.2.2  nathanw  *
    932  1.2.2.2  nathanw  *	Detach an interface from a bridge.  Called when a member
    933  1.2.2.2  nathanw  *	interface is detaching.
    934  1.2.2.2  nathanw  */
    935  1.2.2.2  nathanw void
    936  1.2.2.2  nathanw bridge_ifdetach(struct ifnet *ifp)
    937  1.2.2.2  nathanw {
    938  1.2.2.2  nathanw 	struct bridge_softc *sc = ifp->if_bridge;
    939  1.2.2.2  nathanw 	struct ifbreq breq;
    940  1.2.2.2  nathanw 
    941  1.2.2.2  nathanw 	memset(&breq, 0, sizeof(breq));
    942  1.2.2.2  nathanw 	sprintf(breq.ifbr_ifsname, ifp->if_xname);
    943  1.2.2.2  nathanw 
    944  1.2.2.2  nathanw 	(void) bridge_ioctl_del(sc, &breq);
    945  1.2.2.2  nathanw }
    946  1.2.2.2  nathanw 
    947  1.2.2.2  nathanw /*
    948  1.2.2.2  nathanw  * bridge_init:
    949  1.2.2.2  nathanw  *
    950  1.2.2.2  nathanw  *	Initialize a bridge interface.
    951  1.2.2.2  nathanw  */
    952  1.2.2.2  nathanw int
    953  1.2.2.2  nathanw bridge_init(struct ifnet *ifp)
    954  1.2.2.2  nathanw {
    955  1.2.2.2  nathanw 	struct bridge_softc *sc = ifp->if_softc;
    956  1.2.2.2  nathanw 
    957  1.2.2.2  nathanw 	if (ifp->if_flags & IFF_RUNNING)
    958  1.2.2.2  nathanw 		return (0);
    959  1.2.2.2  nathanw 
    960  1.2.2.2  nathanw 	callout_reset(&sc->sc_brcallout, bridge_rtable_prune_period * hz,
    961  1.2.2.2  nathanw 	    bridge_timer, sc);
    962  1.2.2.2  nathanw 
    963  1.2.2.2  nathanw 	ifp->if_flags |= IFF_RUNNING;
    964  1.2.2.2  nathanw 	return (0);
    965  1.2.2.2  nathanw }
    966  1.2.2.2  nathanw 
    967  1.2.2.2  nathanw /*
    968  1.2.2.2  nathanw  * bridge_stop:
    969  1.2.2.2  nathanw  *
    970  1.2.2.2  nathanw  *	Stop the bridge interface.
    971  1.2.2.2  nathanw  */
    972  1.2.2.2  nathanw void
    973  1.2.2.2  nathanw bridge_stop(struct ifnet *ifp, int disable)
    974  1.2.2.2  nathanw {
    975  1.2.2.2  nathanw 	struct bridge_softc *sc = ifp->if_softc;
    976  1.2.2.2  nathanw 
    977  1.2.2.2  nathanw 	if ((ifp->if_flags & IFF_RUNNING) == 0)
    978  1.2.2.2  nathanw 		return;
    979  1.2.2.2  nathanw 
    980  1.2.2.2  nathanw 	callout_stop(&sc->sc_brcallout);
    981  1.2.2.2  nathanw 	bstp_stop(sc);
    982  1.2.2.2  nathanw 
    983  1.2.2.2  nathanw 	IF_PURGE(&ifp->if_snd);
    984  1.2.2.2  nathanw 
    985  1.2.2.2  nathanw 	bridge_rtflush(sc, IFBF_FLUSHDYN);
    986  1.2.2.2  nathanw 
    987  1.2.2.2  nathanw 	ifp->if_flags &= ~IFF_RUNNING;
    988  1.2.2.2  nathanw }
    989  1.2.2.2  nathanw 
    990  1.2.2.2  nathanw /*
    991  1.2.2.2  nathanw  * bridge_enqueue:
    992  1.2.2.2  nathanw  *
    993  1.2.2.2  nathanw  *	Enqueue a packet on a bridge member interface.
    994  1.2.2.2  nathanw  *
    995  1.2.2.2  nathanw  *	NOTE: must be called at splnet().
    996  1.2.2.2  nathanw  */
    997  1.2.2.2  nathanw __inline void
    998  1.2.2.2  nathanw bridge_enqueue(struct bridge_softc *sc, struct ifnet *dst_ifp, struct mbuf *m)
    999  1.2.2.2  nathanw {
   1000  1.2.2.2  nathanw 	ALTQ_DECL(struct altq_pktattr pktattr;)
   1001  1.2.2.2  nathanw 	int len, error;
   1002  1.2.2.2  nathanw 	short mflags;
   1003  1.2.2.2  nathanw 
   1004  1.2.2.2  nathanw #ifdef ALTQ
   1005  1.2.2.2  nathanw 	/*
   1006  1.2.2.2  nathanw 	 * If ALTQ is enabled on the member interface, do
   1007  1.2.2.2  nathanw 	 * classification; the queueing discipline might
   1008  1.2.2.2  nathanw 	 * not require classification, but might require
   1009  1.2.2.2  nathanw 	 * the address family/header pointer in the pktattr.
   1010  1.2.2.2  nathanw 	 */
   1011  1.2.2.2  nathanw 	if (ALTQ_IS_ENABLED(&dst_ifp->if_snd)) {
   1012  1.2.2.2  nathanw 		/* XXX IFT_ETHER */
   1013  1.2.2.2  nathanw 		altq_etherclassify(&dst_ifp->if_snd, m, &pktattr);
   1014  1.2.2.2  nathanw 	}
   1015  1.2.2.2  nathanw #endif /* ALTQ */
   1016  1.2.2.2  nathanw 
   1017  1.2.2.2  nathanw 	len = m->m_pkthdr.len;
   1018  1.2.2.2  nathanw 	mflags = m->m_flags;
   1019  1.2.2.2  nathanw 	IFQ_ENQUEUE(&dst_ifp->if_snd, m, &pktattr, error);
   1020  1.2.2.2  nathanw 	if (error) {
   1021  1.2.2.2  nathanw 		/* mbuf is already freed */
   1022  1.2.2.2  nathanw 		sc->sc_if.if_oerrors++;
   1023  1.2.2.2  nathanw 		return;
   1024  1.2.2.2  nathanw 	}
   1025  1.2.2.2  nathanw 
   1026  1.2.2.2  nathanw 	sc->sc_if.if_opackets++;
   1027  1.2.2.2  nathanw 	sc->sc_if.if_obytes += len;
   1028  1.2.2.2  nathanw 
   1029  1.2.2.2  nathanw 	dst_ifp->if_obytes += len;
   1030  1.2.2.2  nathanw 
   1031  1.2.2.2  nathanw 	if (mflags & M_MCAST) {
   1032  1.2.2.2  nathanw 		sc->sc_if.if_omcasts++;
   1033  1.2.2.2  nathanw 		dst_ifp->if_omcasts++;
   1034  1.2.2.2  nathanw 	}
   1035  1.2.2.2  nathanw 
   1036  1.2.2.2  nathanw 	if ((dst_ifp->if_flags & IFF_OACTIVE) == 0)
   1037  1.2.2.2  nathanw 		(*dst_ifp->if_start)(dst_ifp);
   1038  1.2.2.2  nathanw }
   1039  1.2.2.2  nathanw 
   1040  1.2.2.2  nathanw /*
   1041  1.2.2.2  nathanw  * bridge_output:
   1042  1.2.2.2  nathanw  *
   1043  1.2.2.2  nathanw  *	Send output from a bridge member interface.  This
   1044  1.2.2.2  nathanw  *	performs the bridging function for locally originated
   1045  1.2.2.2  nathanw  *	packets.
   1046  1.2.2.2  nathanw  *
   1047  1.2.2.2  nathanw  *	The mbuf has the Ethernet header already attached.  We must
   1048  1.2.2.2  nathanw  *	enqueue or free the mbuf before returning.
   1049  1.2.2.2  nathanw  */
   1050  1.2.2.2  nathanw int
   1051  1.2.2.2  nathanw bridge_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *sa,
   1052  1.2.2.2  nathanw     struct rtentry *rt)
   1053  1.2.2.2  nathanw {
   1054  1.2.2.2  nathanw 	struct ether_header *eh;
   1055  1.2.2.2  nathanw 	struct ifnet *dst_if;
   1056  1.2.2.2  nathanw 	struct bridge_softc *sc;
   1057  1.2.2.2  nathanw 	int s;
   1058  1.2.2.2  nathanw 
   1059  1.2.2.2  nathanw 	if (m->m_len < ETHER_HDR_LEN) {
   1060  1.2.2.2  nathanw 		m = m_pullup(m, ETHER_HDR_LEN);
   1061  1.2.2.2  nathanw 		if (m == NULL)
   1062  1.2.2.2  nathanw 			return (0);
   1063  1.2.2.2  nathanw 	}
   1064  1.2.2.2  nathanw 
   1065  1.2.2.2  nathanw 	eh = mtod(m, struct ether_header *);
   1066  1.2.2.2  nathanw 	sc = ifp->if_bridge;
   1067  1.2.2.2  nathanw 
   1068  1.2.2.2  nathanw 	s = splnet();
   1069  1.2.2.2  nathanw 
   1070  1.2.2.2  nathanw 	/*
   1071  1.2.2.2  nathanw 	 * If bridge is down, but the original output interface is up,
   1072  1.2.2.2  nathanw 	 * go ahead and send out that interface.  Otherwise, the packet
   1073  1.2.2.2  nathanw 	 * is dropped below.
   1074  1.2.2.2  nathanw 	 */
   1075  1.2.2.2  nathanw 	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0) {
   1076  1.2.2.2  nathanw 		dst_if = ifp;
   1077  1.2.2.2  nathanw 		goto sendunicast;
   1078  1.2.2.2  nathanw 	}
   1079  1.2.2.2  nathanw 
   1080  1.2.2.2  nathanw 	/*
   1081  1.2.2.2  nathanw 	 * If the packet is a multicast, or we don't know a better way to
   1082  1.2.2.2  nathanw 	 * get there, send to all interfaces.
   1083  1.2.2.2  nathanw 	 */
   1084  1.2.2.2  nathanw 	if (ETHER_IS_MULTICAST(eh->ether_dhost))
   1085  1.2.2.2  nathanw 		dst_if = NULL;
   1086  1.2.2.2  nathanw 	else
   1087  1.2.2.2  nathanw 		dst_if = bridge_rtlookup(sc, eh->ether_dhost);
   1088  1.2.2.2  nathanw 	if (dst_if == NULL) {
   1089  1.2.2.2  nathanw 		struct bridge_iflist *bif;
   1090  1.2.2.2  nathanw 		struct mbuf *mc;
   1091  1.2.2.2  nathanw 		int used = 0;
   1092  1.2.2.2  nathanw 
   1093  1.2.2.2  nathanw 		LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
   1094  1.2.2.2  nathanw 			dst_if = bif->bif_ifp;
   1095  1.2.2.2  nathanw 			if ((dst_if->if_flags & IFF_RUNNING) == 0)
   1096  1.2.2.2  nathanw 				continue;
   1097  1.2.2.2  nathanw 
   1098  1.2.2.2  nathanw 			/*
   1099  1.2.2.2  nathanw 			 * If this is not the original output interface,
   1100  1.2.2.2  nathanw 			 * and the interface is participating in spanning
   1101  1.2.2.2  nathanw 			 * tree, make sure the port is in a state that
   1102  1.2.2.2  nathanw 			 * allows forwarding.
   1103  1.2.2.2  nathanw 			 */
   1104  1.2.2.2  nathanw 			if (dst_if != ifp &&
   1105  1.2.2.2  nathanw 			    (bif->bif_flags & IFBIF_STP) != 0) {
   1106  1.2.2.2  nathanw 				switch (bif->bif_state) {
   1107  1.2.2.2  nathanw 				case BSTP_IFSTATE_BLOCKING:
   1108  1.2.2.2  nathanw 				case BSTP_IFSTATE_LISTENING:
   1109  1.2.2.2  nathanw 				case BSTP_IFSTATE_DISABLED:
   1110  1.2.2.2  nathanw 					continue;
   1111  1.2.2.2  nathanw 				}
   1112  1.2.2.2  nathanw 			}
   1113  1.2.2.2  nathanw 
   1114  1.2.2.2  nathanw 			if (LIST_NEXT(bif, bif_next) == NULL) {
   1115  1.2.2.2  nathanw 				used = 1;
   1116  1.2.2.2  nathanw 				mc = m;
   1117  1.2.2.2  nathanw 			} else {
   1118  1.2.2.2  nathanw 				mc = m_copym(m, 0, M_COPYALL, M_NOWAIT);
   1119  1.2.2.2  nathanw 				if (mc == NULL) {
   1120  1.2.2.2  nathanw 					sc->sc_if.if_oerrors++;
   1121  1.2.2.2  nathanw 					continue;
   1122  1.2.2.2  nathanw 				}
   1123  1.2.2.2  nathanw 			}
   1124  1.2.2.2  nathanw 
   1125  1.2.2.2  nathanw 			bridge_enqueue(sc, dst_if, mc);
   1126  1.2.2.2  nathanw 		}
   1127  1.2.2.2  nathanw 		if (used == 0)
   1128  1.2.2.2  nathanw 			m_freem(m);
   1129  1.2.2.2  nathanw 		splx(s);
   1130  1.2.2.2  nathanw 		return (0);
   1131  1.2.2.2  nathanw 	}
   1132  1.2.2.2  nathanw 
   1133  1.2.2.2  nathanw  sendunicast:
   1134  1.2.2.2  nathanw 	/*
   1135  1.2.2.2  nathanw 	 * XXX Spanning tree consideration here?
   1136  1.2.2.2  nathanw 	 */
   1137  1.2.2.2  nathanw 
   1138  1.2.2.2  nathanw 	if ((dst_if->if_flags & IFF_RUNNING) == 0) {
   1139  1.2.2.2  nathanw 		m_freem(m);
   1140  1.2.2.2  nathanw 		splx(s);
   1141  1.2.2.2  nathanw 		return (0);
   1142  1.2.2.2  nathanw 	}
   1143  1.2.2.2  nathanw 
   1144  1.2.2.2  nathanw 	bridge_enqueue(sc, dst_if, m);
   1145  1.2.2.2  nathanw 
   1146  1.2.2.2  nathanw 	splx(s);
   1147  1.2.2.2  nathanw 	return (0);
   1148  1.2.2.2  nathanw }
   1149  1.2.2.2  nathanw 
   1150  1.2.2.2  nathanw /*
   1151  1.2.2.2  nathanw  * bridge_start:
   1152  1.2.2.2  nathanw  *
   1153  1.2.2.2  nathanw  *	Start output on a bridge.
   1154  1.2.2.2  nathanw  *
   1155  1.2.2.2  nathanw  *	NOTE: This routine should never be called in this implementation.
   1156  1.2.2.2  nathanw  */
   1157  1.2.2.2  nathanw void
   1158  1.2.2.2  nathanw bridge_start(struct ifnet *ifp)
   1159  1.2.2.2  nathanw {
   1160  1.2.2.2  nathanw 
   1161  1.2.2.2  nathanw 	printf("%s: bridge_start() called\n", ifp->if_xname);
   1162  1.2.2.2  nathanw }
   1163  1.2.2.2  nathanw 
   1164  1.2.2.2  nathanw /*
   1165  1.2.2.2  nathanw  * bridge_forward:
   1166  1.2.2.2  nathanw  *
   1167  1.2.2.2  nathanw  *	The fowarding function of the bridge.
   1168  1.2.2.2  nathanw  */
   1169  1.2.2.2  nathanw void
   1170  1.2.2.2  nathanw bridge_forward(struct bridge_softc *sc, struct mbuf *m)
   1171  1.2.2.2  nathanw {
   1172  1.2.2.2  nathanw 	struct bridge_iflist *bif;
   1173  1.2.2.2  nathanw 	struct ifnet *src_if, *dst_if;
   1174  1.2.2.2  nathanw 	struct ether_header *eh;
   1175  1.2.2.2  nathanw 
   1176  1.2.2.2  nathanw 	src_if = m->m_pkthdr.rcvif;
   1177  1.2.2.2  nathanw 
   1178  1.2.2.2  nathanw 	sc->sc_if.if_ipackets++;
   1179  1.2.2.2  nathanw 	sc->sc_if.if_ibytes += m->m_pkthdr.len;
   1180  1.2.2.2  nathanw 
   1181  1.2.2.2  nathanw 	/*
   1182  1.2.2.2  nathanw 	 * Look up the bridge_iflist.
   1183  1.2.2.2  nathanw 	 * XXX This should be more efficient.
   1184  1.2.2.2  nathanw 	 */
   1185  1.2.2.2  nathanw 	bif = bridge_lookup_member(sc, src_if->if_xname);
   1186  1.2.2.2  nathanw 	if (bif == NULL) {
   1187  1.2.2.2  nathanw 		/* Interface is not a bridge member (anymore?) */
   1188  1.2.2.2  nathanw 		m_freem(m);
   1189  1.2.2.2  nathanw 		return;
   1190  1.2.2.2  nathanw 	}
   1191  1.2.2.2  nathanw 
   1192  1.2.2.2  nathanw 	if (bif->bif_flags & IFBIF_STP) {
   1193  1.2.2.2  nathanw 		switch (bif->bif_state) {
   1194  1.2.2.2  nathanw 		case BSTP_IFSTATE_BLOCKING:
   1195  1.2.2.2  nathanw 		case BSTP_IFSTATE_LISTENING:
   1196  1.2.2.2  nathanw 		case BSTP_IFSTATE_DISABLED:
   1197  1.2.2.2  nathanw 			m_freem(m);
   1198  1.2.2.2  nathanw 			return;
   1199  1.2.2.2  nathanw 		}
   1200  1.2.2.2  nathanw 	}
   1201  1.2.2.2  nathanw 
   1202  1.2.2.2  nathanw 	eh = mtod(m, struct ether_header *);
   1203  1.2.2.2  nathanw 
   1204  1.2.2.2  nathanw 	/*
   1205  1.2.2.2  nathanw 	 * If the interface is learning, and the source
   1206  1.2.2.2  nathanw 	 * address is valid and not multicast, record
   1207  1.2.2.2  nathanw 	 * the address.
   1208  1.2.2.2  nathanw 	 */
   1209  1.2.2.2  nathanw 	if ((bif->bif_flags & IFBIF_LEARNING) != 0 &&
   1210  1.2.2.2  nathanw 	    ETHER_IS_MULTICAST(eh->ether_shost) == 0 &&
   1211  1.2.2.2  nathanw 	    (eh->ether_shost[0] == 0 &&
   1212  1.2.2.2  nathanw 	     eh->ether_shost[1] == 0 &&
   1213  1.2.2.2  nathanw 	     eh->ether_shost[2] == 0 &&
   1214  1.2.2.2  nathanw 	     eh->ether_shost[3] == 0 &&
   1215  1.2.2.2  nathanw 	     eh->ether_shost[4] == 0 &&
   1216  1.2.2.2  nathanw 	     eh->ether_shost[5] == 0) == 0) {
   1217  1.2.2.2  nathanw 		(void) bridge_rtupdate(sc, eh->ether_shost,
   1218  1.2.2.2  nathanw 		    src_if, 0, IFBAF_DYNAMIC);
   1219  1.2.2.2  nathanw 	}
   1220  1.2.2.2  nathanw 
   1221  1.2.2.2  nathanw 	if ((bif->bif_flags & IFBIF_STP) != 0 &&
   1222  1.2.2.2  nathanw 	    bif->bif_state == BSTP_IFSTATE_LEARNING) {
   1223  1.2.2.2  nathanw 		m_freem(m);
   1224  1.2.2.2  nathanw 		return;
   1225  1.2.2.2  nathanw 	}
   1226  1.2.2.2  nathanw 
   1227  1.2.2.2  nathanw 	/*
   1228  1.2.2.2  nathanw 	 * At this point, the port either doesn't participate
   1229  1.2.2.2  nathanw 	 * in spanning tree or it is in the forwarding state.
   1230  1.2.2.2  nathanw 	 */
   1231  1.2.2.2  nathanw 
   1232  1.2.2.2  nathanw 	/*
   1233  1.2.2.2  nathanw 	 * If the packet is unicast, destined for someone on
   1234  1.2.2.2  nathanw 	 * "this" side of the bridge, drop it.
   1235  1.2.2.2  nathanw 	 */
   1236  1.2.2.2  nathanw 	if ((m->m_flags & (M_BCAST|M_MCAST)) == 0) {
   1237  1.2.2.2  nathanw 		dst_if = bridge_rtlookup(sc, eh->ether_dhost);
   1238  1.2.2.2  nathanw 		if (src_if == dst_if) {
   1239  1.2.2.2  nathanw 			m_freem(m);
   1240  1.2.2.2  nathanw 			return;
   1241  1.2.2.2  nathanw 		}
   1242  1.2.2.2  nathanw 	} else {
   1243  1.2.2.2  nathanw 		/* ...forward it to all interfaces. */
   1244  1.2.2.2  nathanw 		sc->sc_if.if_imcasts++;
   1245  1.2.2.2  nathanw 		dst_if = NULL;
   1246  1.2.2.2  nathanw 	}
   1247  1.2.2.2  nathanw 
   1248  1.2.2.2  nathanw 	if (dst_if == NULL) {
   1249  1.2.2.2  nathanw 		bridge_broadcast(sc, src_if, m);
   1250  1.2.2.2  nathanw 		return;
   1251  1.2.2.2  nathanw 	}
   1252  1.2.2.2  nathanw 
   1253  1.2.2.2  nathanw 	/*
   1254  1.2.2.2  nathanw 	 * At this point, we're dealing with a unicast frame
   1255  1.2.2.2  nathanw 	 * going to a different interface.
   1256  1.2.2.2  nathanw 	 */
   1257  1.2.2.2  nathanw 	if ((dst_if->if_flags & IFF_RUNNING) == 0) {
   1258  1.2.2.2  nathanw 		m_freem(m);
   1259  1.2.2.2  nathanw 		return;
   1260  1.2.2.2  nathanw 	}
   1261  1.2.2.2  nathanw 	/* XXX This needs to be more efficient. */
   1262  1.2.2.2  nathanw 	bif = bridge_lookup_member(sc, dst_if->if_xname);
   1263  1.2.2.2  nathanw 	if (bif == NULL) {
   1264  1.2.2.2  nathanw 		/* Not a member of the bridge (anymore?) */
   1265  1.2.2.2  nathanw 		m_freem(m);
   1266  1.2.2.2  nathanw 		return;
   1267  1.2.2.2  nathanw 	}
   1268  1.2.2.2  nathanw 
   1269  1.2.2.2  nathanw 	if (bif->bif_flags & IFBIF_STP) {
   1270  1.2.2.2  nathanw 		switch (bif->bif_state) {
   1271  1.2.2.2  nathanw 		case BSTP_IFSTATE_DISABLED:
   1272  1.2.2.2  nathanw 		case BSTP_IFSTATE_BLOCKING:
   1273  1.2.2.2  nathanw 			m_freem(m);
   1274  1.2.2.2  nathanw 			return;
   1275  1.2.2.2  nathanw 		}
   1276  1.2.2.2  nathanw 	}
   1277  1.2.2.2  nathanw 
   1278  1.2.2.2  nathanw 	bridge_enqueue(sc, dst_if, m);
   1279  1.2.2.2  nathanw }
   1280  1.2.2.2  nathanw 
   1281  1.2.2.2  nathanw /*
   1282  1.2.2.2  nathanw  * bridge_input:
   1283  1.2.2.2  nathanw  *
   1284  1.2.2.2  nathanw  *	Receive input from a member interface.  Queue the packet for
   1285  1.2.2.2  nathanw  *	bridging if it is not for us.
   1286  1.2.2.2  nathanw  */
   1287  1.2.2.2  nathanw struct mbuf *
   1288  1.2.2.2  nathanw bridge_input(struct ifnet *ifp, struct mbuf *m)
   1289  1.2.2.2  nathanw {
   1290  1.2.2.2  nathanw 	struct bridge_softc *sc = ifp->if_bridge;
   1291  1.2.2.2  nathanw 	struct bridge_iflist *bif;
   1292  1.2.2.2  nathanw 	struct ether_header *eh;
   1293  1.2.2.2  nathanw 	struct mbuf *mc;
   1294  1.2.2.2  nathanw 
   1295  1.2.2.2  nathanw 	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
   1296  1.2.2.2  nathanw 		return (m);
   1297  1.2.2.2  nathanw 
   1298  1.2.2.2  nathanw 	/* XXX This needs to be more efficient. */
   1299  1.2.2.2  nathanw 	bif = bridge_lookup_member(sc, ifp->if_xname);
   1300  1.2.2.2  nathanw 	if (bif == NULL)
   1301  1.2.2.2  nathanw 		return (m);
   1302  1.2.2.2  nathanw 
   1303  1.2.2.2  nathanw 	eh = mtod(m, struct ether_header *);
   1304  1.2.2.2  nathanw 
   1305  1.2.2.2  nathanw 	if (m->m_flags & (M_BCAST|M_MCAST)) {
   1306  1.2.2.2  nathanw 		/* Tap off 802.1D packets; they do not get forwarded. */
   1307  1.2.2.2  nathanw 		if (memcmp(eh->ether_dhost, bstp_etheraddr,
   1308  1.2.2.2  nathanw 		    ETHER_ADDR_LEN) == 0) {
   1309  1.2.2.2  nathanw 			m = bstp_input(ifp, m);
   1310  1.2.2.2  nathanw 			if (m == NULL)
   1311  1.2.2.2  nathanw 				return (NULL);
   1312  1.2.2.2  nathanw 		}
   1313  1.2.2.2  nathanw 
   1314  1.2.2.2  nathanw 		if (bif->bif_flags & IFBIF_STP) {
   1315  1.2.2.2  nathanw 			switch (bif->bif_state) {
   1316  1.2.2.2  nathanw 			case BSTP_IFSTATE_BLOCKING:
   1317  1.2.2.2  nathanw 			case BSTP_IFSTATE_LISTENING:
   1318  1.2.2.2  nathanw 			case BSTP_IFSTATE_DISABLED:
   1319  1.2.2.2  nathanw 				return (m);
   1320  1.2.2.2  nathanw 			}
   1321  1.2.2.2  nathanw 		}
   1322  1.2.2.2  nathanw 
   1323  1.2.2.2  nathanw 		/*
   1324  1.2.2.2  nathanw 		 * Make a deep copy of the packet and enqueue the copy
   1325  1.2.2.2  nathanw 		 * for bridge processing; return the original packet for
   1326  1.2.2.2  nathanw 		 * local processing.
   1327  1.2.2.2  nathanw 		 */
   1328  1.2.2.2  nathanw 		mc = m_dup(m, 0, M_COPYALL, M_NOWAIT);
   1329  1.2.2.2  nathanw 		if (mc == NULL)
   1330  1.2.2.2  nathanw 			return (m);
   1331  1.2.2.2  nathanw 
   1332  1.2.2.2  nathanw 		/* Perform the bridge forwarding function with the copy. */
   1333  1.2.2.2  nathanw 		bridge_forward(sc, mc);
   1334  1.2.2.2  nathanw 
   1335  1.2.2.2  nathanw 		/* Return the original packet for local processing. */
   1336  1.2.2.2  nathanw 		return (m);
   1337  1.2.2.2  nathanw 	}
   1338  1.2.2.2  nathanw 
   1339  1.2.2.2  nathanw 	if (bif->bif_flags & IFBIF_STP) {
   1340  1.2.2.2  nathanw 		switch (bif->bif_state) {
   1341  1.2.2.2  nathanw 		case BSTP_IFSTATE_BLOCKING:
   1342  1.2.2.2  nathanw 		case BSTP_IFSTATE_LISTENING:
   1343  1.2.2.2  nathanw 		case BSTP_IFSTATE_DISABLED:
   1344  1.2.2.2  nathanw 			return (m);
   1345  1.2.2.2  nathanw 		}
   1346  1.2.2.2  nathanw 	}
   1347  1.2.2.2  nathanw 
   1348  1.2.2.2  nathanw 	/*
   1349  1.2.2.2  nathanw 	 * Unicast.  Make sure it's not for us.
   1350  1.2.2.2  nathanw 	 */
   1351  1.2.2.2  nathanw 	LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
   1352  1.2.2.2  nathanw 		/* It is destined for us. */
   1353  1.2.2.2  nathanw 		if (memcmp(LLADDR(bif->bif_ifp->if_sadl), eh->ether_dhost,
   1354  1.2.2.2  nathanw 		    ETHER_ADDR_LEN) == 0) {
   1355  1.2.2.2  nathanw 			if (bif->bif_flags & IFBIF_LEARNING)
   1356  1.2.2.2  nathanw 				(void) bridge_rtupdate(sc,
   1357  1.2.2.2  nathanw 				    eh->ether_shost, ifp, 0, IFBAF_DYNAMIC);
   1358  1.2.2.2  nathanw 			m->m_pkthdr.rcvif = bif->bif_ifp;
   1359  1.2.2.2  nathanw 			return (m);
   1360  1.2.2.2  nathanw 		}
   1361  1.2.2.2  nathanw 
   1362  1.2.2.2  nathanw 		/* We just received a packet that we sent out. */
   1363  1.2.2.2  nathanw 		if (memcmp(LLADDR(bif->bif_ifp->if_sadl), eh->ether_shost,
   1364  1.2.2.2  nathanw 		    ETHER_ADDR_LEN) == 0) {
   1365  1.2.2.2  nathanw 			m_freem(m);
   1366  1.2.2.2  nathanw 			return (NULL);
   1367  1.2.2.2  nathanw 		}
   1368  1.2.2.2  nathanw 	}
   1369  1.2.2.2  nathanw 
   1370  1.2.2.2  nathanw 	/* Perform the bridge forwarding function. */
   1371  1.2.2.2  nathanw 	bridge_forward(sc, m);
   1372  1.2.2.2  nathanw 
   1373  1.2.2.2  nathanw 	return (NULL);
   1374  1.2.2.2  nathanw }
   1375  1.2.2.2  nathanw 
   1376  1.2.2.2  nathanw /*
   1377  1.2.2.2  nathanw  * bridge_broadcast:
   1378  1.2.2.2  nathanw  *
   1379  1.2.2.2  nathanw  *	Send a frame to all interfaces that are members of
   1380  1.2.2.2  nathanw  *	the bridge, except for the one on which the packet
   1381  1.2.2.2  nathanw  *	arrived.
   1382  1.2.2.2  nathanw  */
   1383  1.2.2.2  nathanw void
   1384  1.2.2.2  nathanw bridge_broadcast(struct bridge_softc *sc, struct ifnet *src_if,
   1385  1.2.2.2  nathanw     struct mbuf *m)
   1386  1.2.2.2  nathanw {
   1387  1.2.2.2  nathanw 	struct bridge_iflist *bif;
   1388  1.2.2.2  nathanw 	struct mbuf *mc;
   1389  1.2.2.2  nathanw 	struct ifnet *dst_if;
   1390  1.2.2.2  nathanw 	int used = 0;
   1391  1.2.2.2  nathanw 
   1392  1.2.2.2  nathanw 	LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
   1393  1.2.2.2  nathanw 		dst_if = bif->bif_ifp;
   1394  1.2.2.2  nathanw 		if (dst_if == src_if)
   1395  1.2.2.2  nathanw 			continue;
   1396  1.2.2.2  nathanw 
   1397  1.2.2.2  nathanw 		if (bif->bif_flags & IFBIF_STP) {
   1398  1.2.2.2  nathanw 			switch (bif->bif_state) {
   1399  1.2.2.2  nathanw 			case BSTP_IFSTATE_BLOCKING:
   1400  1.2.2.2  nathanw 			case BSTP_IFSTATE_DISABLED:
   1401  1.2.2.2  nathanw 				continue;
   1402  1.2.2.2  nathanw 			}
   1403  1.2.2.2  nathanw 		}
   1404  1.2.2.2  nathanw 
   1405  1.2.2.2  nathanw 		if ((bif->bif_flags & IFBIF_DISCOVER) == 0 &&
   1406  1.2.2.2  nathanw 		    (m->m_flags & (M_BCAST|M_MCAST)) == 0)
   1407  1.2.2.2  nathanw 			continue;
   1408  1.2.2.2  nathanw 
   1409  1.2.2.2  nathanw 		if ((dst_if->if_flags & IFF_RUNNING) == 0)
   1410  1.2.2.2  nathanw 			continue;
   1411  1.2.2.2  nathanw 
   1412  1.2.2.2  nathanw 		if (LIST_NEXT(bif, bif_next) == NULL) {
   1413  1.2.2.2  nathanw 			mc = m;
   1414  1.2.2.2  nathanw 			used = 1;
   1415  1.2.2.2  nathanw 		} else {
   1416  1.2.2.2  nathanw 			mc = m_copym(m, 0, M_COPYALL, M_DONTWAIT);
   1417  1.2.2.2  nathanw 			if (mc == NULL) {
   1418  1.2.2.2  nathanw 				sc->sc_if.if_oerrors++;
   1419  1.2.2.2  nathanw 				continue;
   1420  1.2.2.2  nathanw 			}
   1421  1.2.2.2  nathanw 		}
   1422  1.2.2.2  nathanw 
   1423  1.2.2.2  nathanw 		bridge_enqueue(sc, dst_if, mc);
   1424  1.2.2.2  nathanw 	}
   1425  1.2.2.2  nathanw 	if (used == 0)
   1426  1.2.2.2  nathanw 		m_freem(m);
   1427  1.2.2.2  nathanw }
   1428  1.2.2.2  nathanw 
   1429  1.2.2.2  nathanw /*
   1430  1.2.2.2  nathanw  * bridge_rtupdate:
   1431  1.2.2.2  nathanw  *
   1432  1.2.2.2  nathanw  *	Add a bridge routing entry.
   1433  1.2.2.2  nathanw  */
   1434  1.2.2.2  nathanw int
   1435  1.2.2.2  nathanw bridge_rtupdate(struct bridge_softc *sc, const uint8_t *dst,
   1436  1.2.2.2  nathanw     struct ifnet *dst_if, int setflags, uint8_t flags)
   1437  1.2.2.2  nathanw {
   1438  1.2.2.2  nathanw 	struct bridge_rtnode *brt;
   1439  1.2.2.2  nathanw 	int error;
   1440  1.2.2.2  nathanw 
   1441  1.2.2.2  nathanw 	/*
   1442  1.2.2.2  nathanw 	 * A route for this destination might already exist.  If so,
   1443  1.2.2.2  nathanw 	 * update it, otherwise create a new one.
   1444  1.2.2.2  nathanw 	 */
   1445  1.2.2.2  nathanw 	if ((brt = bridge_rtnode_lookup(sc, dst)) == NULL) {
   1446  1.2.2.2  nathanw 		if (sc->sc_brtcnt >= sc->sc_brtmax)
   1447  1.2.2.2  nathanw 			return (ENOSPC);
   1448  1.2.2.2  nathanw 
   1449  1.2.2.2  nathanw 		/*
   1450  1.2.2.2  nathanw 		 * Allocate a new bridge forwarding node, and
   1451  1.2.2.2  nathanw 		 * initialize the expiration time and Ethernet
   1452  1.2.2.2  nathanw 		 * address.
   1453  1.2.2.2  nathanw 		 */
   1454  1.2.2.2  nathanw 		brt = pool_get(&bridge_rtnode_pool, PR_NOWAIT);
   1455  1.2.2.2  nathanw 		if (brt == NULL)
   1456  1.2.2.2  nathanw 			return (ENOMEM);
   1457  1.2.2.2  nathanw 
   1458  1.2.2.2  nathanw 		memset(brt, 0, sizeof(*brt));
   1459  1.2.2.2  nathanw 		brt->brt_expire = mono_time.tv_sec + sc->sc_brttimeout;
   1460  1.2.2.2  nathanw 		brt->brt_flags = IFBAF_DYNAMIC;
   1461  1.2.2.2  nathanw 		memcpy(brt->brt_addr, dst, ETHER_ADDR_LEN);
   1462  1.2.2.2  nathanw 
   1463  1.2.2.2  nathanw 		if ((error = bridge_rtnode_insert(sc, brt)) != 0) {
   1464  1.2.2.2  nathanw 			pool_put(&bridge_rtnode_pool, brt);
   1465  1.2.2.2  nathanw 			return (error);
   1466  1.2.2.2  nathanw 		}
   1467  1.2.2.2  nathanw 	}
   1468  1.2.2.2  nathanw 
   1469  1.2.2.2  nathanw 	brt->brt_ifp = dst_if;
   1470  1.2.2.2  nathanw 	if (setflags) {
   1471  1.2.2.2  nathanw 		brt->brt_flags = flags;
   1472  1.2.2.2  nathanw 		brt->brt_expire = (flags & IFBAF_STATIC) ? 0 :
   1473  1.2.2.2  nathanw 		    mono_time.tv_sec + sc->sc_brttimeout;
   1474  1.2.2.2  nathanw 	}
   1475  1.2.2.2  nathanw 
   1476  1.2.2.2  nathanw 	return (0);
   1477  1.2.2.2  nathanw }
   1478  1.2.2.2  nathanw 
   1479  1.2.2.2  nathanw /*
   1480  1.2.2.2  nathanw  * bridge_rtlookup:
   1481  1.2.2.2  nathanw  *
   1482  1.2.2.2  nathanw  *	Lookup the destination interface for an address.
   1483  1.2.2.2  nathanw  */
   1484  1.2.2.2  nathanw struct ifnet *
   1485  1.2.2.2  nathanw bridge_rtlookup(struct bridge_softc *sc, const uint8_t *addr)
   1486  1.2.2.2  nathanw {
   1487  1.2.2.2  nathanw 	struct bridge_rtnode *brt;
   1488  1.2.2.2  nathanw 
   1489  1.2.2.2  nathanw 	if ((brt = bridge_rtnode_lookup(sc, addr)) == NULL)
   1490  1.2.2.2  nathanw 		return (NULL);
   1491  1.2.2.2  nathanw 
   1492  1.2.2.2  nathanw 	return (brt->brt_ifp);
   1493  1.2.2.2  nathanw }
   1494  1.2.2.2  nathanw 
   1495  1.2.2.2  nathanw /*
   1496  1.2.2.2  nathanw  * bridge_rttrim:
   1497  1.2.2.2  nathanw  *
   1498  1.2.2.2  nathanw  *	Trim the routine table so that we have a number
   1499  1.2.2.2  nathanw  *	of routing entries less than or equal to the
   1500  1.2.2.2  nathanw  *	maximum number.
   1501  1.2.2.2  nathanw  */
   1502  1.2.2.2  nathanw void
   1503  1.2.2.2  nathanw bridge_rttrim(struct bridge_softc *sc)
   1504  1.2.2.2  nathanw {
   1505  1.2.2.2  nathanw 	struct bridge_rtnode *brt, *nbrt;
   1506  1.2.2.2  nathanw 
   1507  1.2.2.2  nathanw 	/* Make sure we actually need to do this. */
   1508  1.2.2.2  nathanw 	if (sc->sc_brtcnt <= sc->sc_brtmax)
   1509  1.2.2.2  nathanw 		return;
   1510  1.2.2.2  nathanw 
   1511  1.2.2.2  nathanw 	/* Force an aging cycle; this might trim enough addresses. */
   1512  1.2.2.2  nathanw 	bridge_rtage(sc);
   1513  1.2.2.2  nathanw 	if (sc->sc_brtcnt <= sc->sc_brtmax)
   1514  1.2.2.2  nathanw 		return;
   1515  1.2.2.2  nathanw 
   1516  1.2.2.2  nathanw 	for (brt = LIST_FIRST(&sc->sc_rtlist); brt != NULL; brt = nbrt) {
   1517  1.2.2.2  nathanw 		nbrt = LIST_NEXT(brt, brt_list);
   1518  1.2.2.2  nathanw 		if ((brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC) {
   1519  1.2.2.2  nathanw 			bridge_rtnode_destroy(sc, brt);
   1520  1.2.2.2  nathanw 			if (sc->sc_brtcnt <= sc->sc_brtmax)
   1521  1.2.2.2  nathanw 				return;
   1522  1.2.2.2  nathanw 		}
   1523  1.2.2.2  nathanw 	}
   1524  1.2.2.2  nathanw }
   1525  1.2.2.2  nathanw 
   1526  1.2.2.2  nathanw /*
   1527  1.2.2.2  nathanw  * bridge_timer:
   1528  1.2.2.2  nathanw  *
   1529  1.2.2.2  nathanw  *	Aging timer for the bridge.
   1530  1.2.2.2  nathanw  */
   1531  1.2.2.2  nathanw void
   1532  1.2.2.2  nathanw bridge_timer(void *arg)
   1533  1.2.2.2  nathanw {
   1534  1.2.2.2  nathanw 	struct bridge_softc *sc = arg;
   1535  1.2.2.2  nathanw 	int s;
   1536  1.2.2.2  nathanw 
   1537  1.2.2.2  nathanw 	s = splnet();
   1538  1.2.2.2  nathanw 	bridge_rtage(sc);
   1539  1.2.2.2  nathanw 	splx(s);
   1540  1.2.2.2  nathanw 
   1541  1.2.2.2  nathanw 	if (sc->sc_if.if_flags & IFF_RUNNING)
   1542  1.2.2.2  nathanw 		callout_reset(&sc->sc_brcallout,
   1543  1.2.2.2  nathanw 		    bridge_rtable_prune_period * hz, bridge_timer, sc);
   1544  1.2.2.2  nathanw }
   1545  1.2.2.2  nathanw 
   1546  1.2.2.2  nathanw /*
   1547  1.2.2.2  nathanw  * bridge_rtage:
   1548  1.2.2.2  nathanw  *
   1549  1.2.2.2  nathanw  *	Perform an aging cycle.
   1550  1.2.2.2  nathanw  */
   1551  1.2.2.2  nathanw void
   1552  1.2.2.2  nathanw bridge_rtage(struct bridge_softc *sc)
   1553  1.2.2.2  nathanw {
   1554  1.2.2.2  nathanw 	struct bridge_rtnode *brt, *nbrt;
   1555  1.2.2.2  nathanw 
   1556  1.2.2.2  nathanw 	for (brt = LIST_FIRST(&sc->sc_rtlist); brt != NULL; brt = nbrt) {
   1557  1.2.2.2  nathanw 		nbrt = LIST_NEXT(brt, brt_list);
   1558  1.2.2.2  nathanw 		if ((brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC) {
   1559  1.2.2.2  nathanw 			if (mono_time.tv_sec >= brt->brt_expire)
   1560  1.2.2.2  nathanw 				bridge_rtnode_destroy(sc, brt);
   1561  1.2.2.2  nathanw 		}
   1562  1.2.2.2  nathanw 	}
   1563  1.2.2.2  nathanw }
   1564  1.2.2.2  nathanw 
   1565  1.2.2.2  nathanw /*
   1566  1.2.2.2  nathanw  * bridge_rtflush:
   1567  1.2.2.2  nathanw  *
   1568  1.2.2.2  nathanw  *	Remove all dynamic addresses from the bridge.
   1569  1.2.2.2  nathanw  */
   1570  1.2.2.2  nathanw void
   1571  1.2.2.2  nathanw bridge_rtflush(struct bridge_softc *sc, int full)
   1572  1.2.2.2  nathanw {
   1573  1.2.2.2  nathanw 	struct bridge_rtnode *brt, *nbrt;
   1574  1.2.2.2  nathanw 
   1575  1.2.2.2  nathanw 	for (brt = LIST_FIRST(&sc->sc_rtlist); brt != NULL; brt = nbrt) {
   1576  1.2.2.2  nathanw 		nbrt = LIST_NEXT(brt, brt_list);
   1577  1.2.2.2  nathanw 		if (full || (brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC)
   1578  1.2.2.2  nathanw 			bridge_rtnode_destroy(sc, brt);
   1579  1.2.2.2  nathanw 	}
   1580  1.2.2.2  nathanw }
   1581  1.2.2.2  nathanw 
   1582  1.2.2.2  nathanw /*
   1583  1.2.2.2  nathanw  * bridge_rtdaddr:
   1584  1.2.2.2  nathanw  *
   1585  1.2.2.2  nathanw  *	Remove an address from the table.
   1586  1.2.2.2  nathanw  */
   1587  1.2.2.2  nathanw int
   1588  1.2.2.2  nathanw bridge_rtdaddr(struct bridge_softc *sc, const uint8_t *addr)
   1589  1.2.2.2  nathanw {
   1590  1.2.2.2  nathanw 	struct bridge_rtnode *brt;
   1591  1.2.2.2  nathanw 
   1592  1.2.2.2  nathanw 	if ((brt = bridge_rtnode_lookup(sc, addr)) == NULL)
   1593  1.2.2.2  nathanw 		return (ENOENT);
   1594  1.2.2.2  nathanw 
   1595  1.2.2.2  nathanw 	bridge_rtnode_destroy(sc, brt);
   1596  1.2.2.2  nathanw 	return (0);
   1597  1.2.2.2  nathanw }
   1598  1.2.2.2  nathanw 
   1599  1.2.2.2  nathanw /*
   1600  1.2.2.2  nathanw  * bridge_rtdelete:
   1601  1.2.2.2  nathanw  *
   1602  1.2.2.2  nathanw  *	Delete routes to a speicifc member interface.
   1603  1.2.2.2  nathanw  */
   1604  1.2.2.2  nathanw void
   1605  1.2.2.2  nathanw bridge_rtdelete(struct bridge_softc *sc, struct ifnet *ifp)
   1606  1.2.2.2  nathanw {
   1607  1.2.2.2  nathanw 	struct bridge_rtnode *brt, *nbrt;
   1608  1.2.2.2  nathanw 
   1609  1.2.2.2  nathanw 	for (brt = LIST_FIRST(&sc->sc_rtlist); brt != NULL; brt = nbrt) {
   1610  1.2.2.2  nathanw 		nbrt = LIST_NEXT(brt, brt_list);
   1611  1.2.2.2  nathanw 		if (brt->brt_ifp == ifp)
   1612  1.2.2.2  nathanw 			bridge_rtnode_destroy(sc, brt);
   1613  1.2.2.2  nathanw 	}
   1614  1.2.2.2  nathanw }
   1615  1.2.2.2  nathanw 
   1616  1.2.2.2  nathanw /*
   1617  1.2.2.2  nathanw  * bridge_rtable_init:
   1618  1.2.2.2  nathanw  *
   1619  1.2.2.2  nathanw  *	Initialize the route table for this bridge.
   1620  1.2.2.2  nathanw  */
   1621  1.2.2.2  nathanw int
   1622  1.2.2.2  nathanw bridge_rtable_init(struct bridge_softc *sc)
   1623  1.2.2.2  nathanw {
   1624  1.2.2.2  nathanw 	int i;
   1625  1.2.2.2  nathanw 
   1626  1.2.2.2  nathanw 	sc->sc_rthash = malloc(sizeof(*sc->sc_rthash) * BRIDGE_RTHASH_SIZE,
   1627  1.2.2.2  nathanw 	    M_DEVBUF, M_NOWAIT);
   1628  1.2.2.2  nathanw 	if (sc->sc_rthash == NULL)
   1629  1.2.2.2  nathanw 		return (ENOMEM);
   1630  1.2.2.2  nathanw 
   1631  1.2.2.2  nathanw 	for (i = 0; i < BRIDGE_RTHASH_SIZE; i++)
   1632  1.2.2.2  nathanw 		LIST_INIT(&sc->sc_rthash[i]);
   1633  1.2.2.2  nathanw 
   1634  1.2.2.2  nathanw #if NRND > 0
   1635  1.2.2.2  nathanw 	rnd_extract_data(&sc->sc_rthash_key, sizeof(sc->sc_rthash_key),
   1636  1.2.2.2  nathanw 	    RND_EXTRACT_ANY);
   1637  1.2.2.2  nathanw #else
   1638  1.2.2.2  nathanw 	sc->sc_rthash_key = random();
   1639  1.2.2.2  nathanw #endif /* NRND > 0 */
   1640  1.2.2.2  nathanw 
   1641  1.2.2.2  nathanw 	LIST_INIT(&sc->sc_rtlist);
   1642  1.2.2.2  nathanw 
   1643  1.2.2.2  nathanw 	return (0);
   1644  1.2.2.2  nathanw }
   1645  1.2.2.2  nathanw 
   1646  1.2.2.2  nathanw /*
   1647  1.2.2.2  nathanw  * bridge_rtable_fini:
   1648  1.2.2.2  nathanw  *
   1649  1.2.2.2  nathanw  *	Deconstruct the route table for this bridge.
   1650  1.2.2.2  nathanw  */
   1651  1.2.2.2  nathanw void
   1652  1.2.2.2  nathanw bridge_rtable_fini(struct bridge_softc *sc)
   1653  1.2.2.2  nathanw {
   1654  1.2.2.2  nathanw 
   1655  1.2.2.2  nathanw 	free(sc->sc_rthash, M_DEVBUF);
   1656  1.2.2.2  nathanw }
   1657  1.2.2.2  nathanw 
   1658  1.2.2.2  nathanw /*
   1659  1.2.2.2  nathanw  * The following hash function is adapted from "Hash Functions" by Bob Jenkins
   1660  1.2.2.2  nathanw  * ("Algorithm Alley", Dr. Dobbs Journal, September 1997).
   1661  1.2.2.2  nathanw  */
   1662  1.2.2.2  nathanw #define	mix(a, b, c)							\
   1663  1.2.2.2  nathanw do {									\
   1664  1.2.2.2  nathanw 	a -= b; a -= c; a ^= (c >> 13);					\
   1665  1.2.2.2  nathanw 	b -= c; b -= a; b ^= (a << 8);					\
   1666  1.2.2.2  nathanw 	c -= a; c -= b; c ^= (b >> 13);					\
   1667  1.2.2.2  nathanw 	a -= b; a -= c; a ^= (c >> 12);					\
   1668  1.2.2.2  nathanw 	b -= c; b -= a; b ^= (a << 16);					\
   1669  1.2.2.2  nathanw 	c -= a; c -= b; c ^= (b >> 5);					\
   1670  1.2.2.2  nathanw 	a -= b; a -= c; a ^= (c >> 3);					\
   1671  1.2.2.2  nathanw 	b -= c; b -= a; b ^= (a << 10);					\
   1672  1.2.2.2  nathanw 	c -= a; c -= b; c ^= (b >> 15);					\
   1673  1.2.2.2  nathanw } while (/*CONSTCOND*/0)
   1674  1.2.2.2  nathanw 
   1675  1.2.2.2  nathanw static __inline uint32_t
   1676  1.2.2.2  nathanw bridge_rthash(struct bridge_softc *sc, const uint8_t *addr)
   1677  1.2.2.2  nathanw {
   1678  1.2.2.2  nathanw 	uint32_t a = 0x9e3779b9, b = 0x9e3779b9, c = sc->sc_rthash_key;
   1679  1.2.2.2  nathanw 
   1680  1.2.2.2  nathanw 	b += addr[5] << 8;
   1681  1.2.2.2  nathanw 	b += addr[4];
   1682  1.2.2.2  nathanw 	a += addr[3] << 24;
   1683  1.2.2.2  nathanw 	a += addr[2] << 16;
   1684  1.2.2.2  nathanw 	a += addr[1] << 8;
   1685  1.2.2.2  nathanw 	a += addr[0];
   1686  1.2.2.2  nathanw 
   1687  1.2.2.2  nathanw 	mix(a, b, c);
   1688  1.2.2.2  nathanw 
   1689  1.2.2.2  nathanw 	return (c & BRIDGE_RTHASH_MASK);
   1690  1.2.2.2  nathanw }
   1691  1.2.2.2  nathanw 
   1692  1.2.2.2  nathanw #undef mix
   1693  1.2.2.2  nathanw 
   1694  1.2.2.2  nathanw /*
   1695  1.2.2.2  nathanw  * bridge_rtnode_lookup:
   1696  1.2.2.2  nathanw  *
   1697  1.2.2.2  nathanw  *	Look up a bridge route node for the specified destination.
   1698  1.2.2.2  nathanw  */
   1699  1.2.2.2  nathanw struct bridge_rtnode *
   1700  1.2.2.2  nathanw bridge_rtnode_lookup(struct bridge_softc *sc, const uint8_t *addr)
   1701  1.2.2.2  nathanw {
   1702  1.2.2.2  nathanw 	struct bridge_rtnode *brt;
   1703  1.2.2.2  nathanw 	uint32_t hash;
   1704  1.2.2.2  nathanw 	int dir;
   1705  1.2.2.2  nathanw 
   1706  1.2.2.2  nathanw 	hash = bridge_rthash(sc, addr);
   1707  1.2.2.2  nathanw 	LIST_FOREACH(brt, &sc->sc_rthash[hash], brt_hash) {
   1708  1.2.2.2  nathanw 		dir = memcmp(addr, brt->brt_addr, ETHER_ADDR_LEN);
   1709  1.2.2.2  nathanw 		if (dir == 0)
   1710  1.2.2.2  nathanw 			return (brt);
   1711  1.2.2.2  nathanw 		if (dir > 0)
   1712  1.2.2.2  nathanw 			return (NULL);
   1713  1.2.2.2  nathanw 	}
   1714  1.2.2.2  nathanw 
   1715  1.2.2.2  nathanw 	return (NULL);
   1716  1.2.2.2  nathanw }
   1717  1.2.2.2  nathanw 
   1718  1.2.2.2  nathanw /*
   1719  1.2.2.2  nathanw  * bridge_rtnode_insert:
   1720  1.2.2.2  nathanw  *
   1721  1.2.2.2  nathanw  *	Insert the specified bridge node into the route table.  We
   1722  1.2.2.2  nathanw  *	assume the entry is not already in the table.
   1723  1.2.2.2  nathanw  */
   1724  1.2.2.2  nathanw int
   1725  1.2.2.2  nathanw bridge_rtnode_insert(struct bridge_softc *sc, struct bridge_rtnode *brt)
   1726  1.2.2.2  nathanw {
   1727  1.2.2.2  nathanw 	struct bridge_rtnode *lbrt;
   1728  1.2.2.2  nathanw 	uint32_t hash;
   1729  1.2.2.2  nathanw 	int dir;
   1730  1.2.2.2  nathanw 
   1731  1.2.2.2  nathanw 	hash = bridge_rthash(sc, brt->brt_addr);
   1732  1.2.2.2  nathanw 
   1733  1.2.2.2  nathanw 	lbrt = LIST_FIRST(&sc->sc_rthash[hash]);
   1734  1.2.2.2  nathanw 	if (lbrt == NULL) {
   1735  1.2.2.2  nathanw 		LIST_INSERT_HEAD(&sc->sc_rthash[hash], brt, brt_hash);
   1736  1.2.2.2  nathanw 		goto out;
   1737  1.2.2.2  nathanw 	}
   1738  1.2.2.2  nathanw 
   1739  1.2.2.2  nathanw 	do {
   1740  1.2.2.2  nathanw 		dir = memcmp(brt->brt_addr, lbrt->brt_addr, ETHER_ADDR_LEN);
   1741  1.2.2.2  nathanw 		if (dir == 0)
   1742  1.2.2.2  nathanw 			return (EEXIST);
   1743  1.2.2.2  nathanw 		if (dir > 0) {
   1744  1.2.2.2  nathanw 			LIST_INSERT_BEFORE(lbrt, brt, brt_hash);
   1745  1.2.2.2  nathanw 			goto out;
   1746  1.2.2.2  nathanw 		}
   1747  1.2.2.2  nathanw 		if (LIST_NEXT(lbrt, brt_hash) == NULL) {
   1748  1.2.2.2  nathanw 			LIST_INSERT_AFTER(lbrt, brt, brt_hash);
   1749  1.2.2.2  nathanw 			goto out;
   1750  1.2.2.2  nathanw 		}
   1751  1.2.2.2  nathanw 		lbrt = LIST_NEXT(lbrt, brt_hash);
   1752  1.2.2.2  nathanw 	} while (lbrt != NULL);
   1753  1.2.2.2  nathanw 
   1754  1.2.2.2  nathanw #ifdef DIAGNOSTIC
   1755  1.2.2.2  nathanw 	panic("bridge_rtnode_insert: impossible");
   1756  1.2.2.2  nathanw #endif
   1757  1.2.2.2  nathanw 
   1758  1.2.2.2  nathanw  out:
   1759  1.2.2.2  nathanw 	LIST_INSERT_HEAD(&sc->sc_rtlist, brt, brt_list);
   1760  1.2.2.2  nathanw 	sc->sc_brtcnt++;
   1761  1.2.2.2  nathanw 
   1762  1.2.2.2  nathanw 	return (0);
   1763  1.2.2.2  nathanw }
   1764  1.2.2.2  nathanw 
   1765  1.2.2.2  nathanw /*
   1766  1.2.2.2  nathanw  * bridge_rtnode_destroy:
   1767  1.2.2.2  nathanw  *
   1768  1.2.2.2  nathanw  *	Destroy a bridge rtnode.
   1769  1.2.2.2  nathanw  */
   1770  1.2.2.2  nathanw void
   1771  1.2.2.2  nathanw bridge_rtnode_destroy(struct bridge_softc *sc, struct bridge_rtnode *brt)
   1772  1.2.2.2  nathanw {
   1773  1.2.2.2  nathanw 
   1774  1.2.2.2  nathanw 	LIST_REMOVE(brt, brt_hash);
   1775  1.2.2.2  nathanw 
   1776  1.2.2.2  nathanw 	LIST_REMOVE(brt, brt_list);
   1777  1.2.2.2  nathanw 	sc->sc_brtcnt--;
   1778  1.2.2.2  nathanw 	pool_put(&bridge_rtnode_pool, brt);
   1779  1.2.2.2  nathanw }
   1780