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