kernel: Fix -Wundef in a number of places.
[dragonfly.git] / sys / net / bridge / if_bridge.c
1 /*
2  * Copyright 2001 Wasabi Systems, Inc.
3  * All rights reserved.
4  *
5  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed for the NetBSD Project by
18  *      Wasabi Systems, Inc.
19  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
20  *    or promote products derived from this software without specific prior
21  *    written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
27  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  */
35
36 /*
37  * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net)
38  * All rights reserved.
39  *
40  * Redistribution and use in source and binary forms, with or without
41  * modification, are permitted provided that the following conditions
42  * are met:
43  * 1. Redistributions of source code must retain the above copyright
44  *    notice, this list of conditions and the following disclaimer.
45  * 2. Redistributions in binary form must reproduce the above copyright
46  *    notice, this list of conditions and the following disclaimer in the
47  *    documentation and/or other materials provided with the distribution.
48  * 3. All advertising materials mentioning features or use of this software
49  *    must display the following acknowledgement:
50  *      This product includes software developed by Jason L. Wright
51  * 4. The name of the author may not be used to endorse or promote products
52  *    derived from this software without specific prior written permission.
53  *
54  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
55  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
56  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
57  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
58  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
59  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
60  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
62  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
63  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
64  * POSSIBILITY OF SUCH DAMAGE.
65  *
66  * $OpenBSD: if_bridge.c,v 1.60 2001/06/15 03:38:33 itojun Exp $
67  * $NetBSD: if_bridge.c,v 1.31 2005/06/01 19:45:34 jdc Exp $
68  * $FreeBSD: src/sys/net/if_bridge.c,v 1.26 2005/10/13 23:05:55 thompsa Exp $
69  */
70
71 /*
72  * Network interface bridge support.
73  *
74  * TODO:
75  *
76  *      - Currently only supports Ethernet-like interfaces (Ethernet,
77  *        802.11, VLANs on Ethernet, etc.)  Figure out a nice way
78  *        to bridge other types of interfaces (FDDI-FDDI, and maybe
79  *        consider heterogenous bridges).
80  *
81  *
82  * Bridge's route information is duplicated to each CPUs:
83  *
84  *      CPU0          CPU1          CPU2          CPU3
85  * +-----------+ +-----------+ +-----------+ +-----------+
86  * |  rtnode   | |  rtnode   | |  rtnode   | |  rtnode   |
87  * |           | |           | |           | |           |
88  * | dst eaddr | | dst eaddr | | dst eaddr | | dst eaddr |
89  * +-----------+ +-----------+ +-----------+ +-----------+
90  *       |         |                     |         |
91  *       |         |                     |         |
92  *       |         |     +----------+    |         |
93  *       |         |     |  rtinfo  |    |         |
94  *       |         +---->|          |<---+         |
95  *       |               |  flags   |              |
96  *       +-------------->|  timeout |<-------------+
97  *                       |  dst_ifp |
98  *                       +----------+
99  *
100  * We choose to put timeout and dst_ifp into shared part, so updating
101  * them will be cheaper than using message forwarding.  Also there is
102  * not need to use spinlock to protect the updating: timeout and dst_ifp
103  * is not related and specific field's updating order has no importance.
104  * The cache pollution by the share part should not be heavy: in a stable
105  * setup, dst_ifp probably will be not changed in rtnode's life time,
106  * while timeout is refreshed once per second; most of the time, timeout
107  * and dst_ifp are read-only accessed.
108  *
109  *
110  * Bridge route information installation on bridge_input path:
111  *
112  *      CPU0           CPU1         CPU2          CPU3
113  *
114  *                               tcp_thread2
115  *                                    |
116  *                                alloc nmsg
117  *                    snd nmsg        |
118  *                    w/o rtinfo      |
119  *      ifnet0<-----------------------+
120  *        |                           :
121  *    lookup dst                      :
122  *   rtnode exists?(Y)free nmsg       :
123  *        |(N)                        :
124  *        |
125  *  alloc rtinfo
126  *  alloc rtnode
127  * install rtnode
128  *        |
129  *        +---------->ifnet1
130  *        : fwd nmsg    |
131  *        : w/ rtinfo   |
132  *        :             |
133  *        :             |
134  *                 alloc rtnode
135  *               (w/ nmsg's rtinfo)
136  *                install rtnode
137  *                      |
138  *                      +---------->ifnet2
139  *                      : fwd nmsg    |
140  *                      : w/ rtinfo   |
141  *                      :             |
142  *                      :         same as ifnet1
143  *                                    |
144  *                                    +---------->ifnet3
145  *                                    : fwd nmsg    |
146  *                                    : w/ rtinfo   |
147  *                                    :             |
148  *                                    :         same as ifnet1
149  *                                               free nmsg
150  *                                                  :
151  *                                                  :
152  *
153  * The netmsgs forwarded between protocol threads and ifnet threads are
154  * allocated with (M_WAITOK|M_NULLOK), so it will not fail under most
155  * cases (route information is too precious to be not installed :).
156  * Since multiple threads may try to install route information for the
157  * same dst eaddr, we look up route information in ifnet0.  However, this
158  * looking up only need to be performed on ifnet0, which is the start
159  * point of the route information installation process.
160  *
161  *
162  * Bridge route information deleting/flushing:
163  *
164  *  CPU0            CPU1             CPU2             CPU3
165  *
166  * netisr0
167  *   |
168  * find suitable rtnodes,
169  * mark their rtinfo dead
170  *   |
171  *   | domsg <------------------------------------------+
172  *   |                                                  | replymsg
173  *   |                                                  |
174  *   V     fwdmsg           fwdmsg           fwdmsg     |
175  * ifnet0 --------> ifnet1 --------> ifnet2 --------> ifnet3
176  * delete rtnodes   delete rtnodes   delete rtnodes   delete rtnodes
177  * w/ dead rtinfo   w/ dead rtinfo   w/ dead rtinfo   w/ dead rtinfo
178  *                                                    free dead rtinfos
179  *
180  * All deleting/flushing operations are serialized by netisr0, so each
181  * operation only reaps the route information marked dead by itself.
182  *
183  *
184  * Bridge route information adding/deleting/flushing:
185  * Since all operation is serialized by the fixed message flow between
186  * ifnet threads, it is not possible to create corrupted per-cpu route
187  * information.
188  *
189  *
190  *
191  * Percpu member interface list iteration with blocking operation:
192  * Since one bridge could only delete one member interface at a time and
193  * the deleted member interface is not freed after netmsg_service_sync(),
194  * following way is used to make sure that even if the certain member
195  * interface is ripped from the percpu list during the blocking operation,
196  * the iteration still could keep going:
197  *
198  * TAILQ_FOREACH_MUTABLE(bif, sc->sc_iflists[mycpuid], bif_next, nbif) {
199  *     blocking operation;
200  *     blocking operation;
201  *     ...
202  *     ...
203  *     if (nbif != NULL && !nbif->bif_onlist) {
204  *         KKASSERT(bif->bif_onlist);
205  *         nbif = TAILQ_NEXT(bif, bif_next);
206  *     }
207  * }
208  *
209  * As mentioned above only one member interface could be unlinked from the
210  * percpu member interface list, so either bif or nbif may be not on the list,
211  * but _not_ both.  To keep the list iteration, we don't care about bif, but
212  * only nbif.  Since removed member interface will only be freed after we
213  * finish our work, it is safe to access any field in an unlinked bif (here
214  * bif_onlist).  If nbif is no longer on the list, then bif must be on the
215  * list, so we change nbif to the next element of bif and keep going.
216  */
217
218 #include "opt_inet.h"
219 #include "opt_inet6.h"
220
221 #include <sys/param.h>
222 #include <sys/mbuf.h>
223 #include <sys/malloc.h>
224 #include <sys/protosw.h>
225 #include <sys/systm.h>
226 #include <sys/time.h>
227 #include <sys/socket.h> /* for net/if.h */
228 #include <sys/sockio.h>
229 #include <sys/ctype.h>  /* string functions */
230 #include <sys/kernel.h>
231 #include <sys/random.h>
232 #include <sys/sysctl.h>
233 #include <sys/module.h>
234 #include <sys/proc.h>
235 #include <sys/priv.h>
236 #include <sys/lock.h>
237 #include <sys/thread.h>
238 #include <sys/thread2.h>
239 #include <sys/mpipe.h>
240
241 #include <net/bpf.h>
242 #include <net/if.h>
243 #include <net/if_dl.h>
244 #include <net/if_types.h>
245 #include <net/if_var.h>
246 #include <net/pfil.h>
247 #include <net/ifq_var.h>
248 #include <net/if_clone.h>
249
250 #include <netinet/in.h> /* for struct arpcom */
251 #include <netinet/in_systm.h>
252 #include <netinet/in_var.h>
253 #include <netinet/ip.h>
254 #include <netinet/ip_var.h>
255 #ifdef INET6
256 #include <netinet/ip6.h>
257 #include <netinet6/ip6_var.h>
258 #endif
259 #include <netinet/if_ether.h> /* for struct arpcom */
260 #include <net/bridge/if_bridgevar.h>
261 #include <net/if_llc.h>
262 #include <net/netmsg2.h>
263
264 #include <net/route.h>
265 #include <sys/in_cksum.h>
266
267 /*
268  * Size of the route hash table.  Must be a power of two.
269  */
270 #ifndef BRIDGE_RTHASH_SIZE
271 #define BRIDGE_RTHASH_SIZE              1024
272 #endif
273
274 #define BRIDGE_RTHASH_MASK              (BRIDGE_RTHASH_SIZE - 1)
275
276 /*
277  * Maximum number of addresses to cache.
278  */
279 #ifndef BRIDGE_RTABLE_MAX
280 #define BRIDGE_RTABLE_MAX               100
281 #endif
282
283 /*
284  * Spanning tree defaults.
285  */
286 #define BSTP_DEFAULT_MAX_AGE            (20 * 256)
287 #define BSTP_DEFAULT_HELLO_TIME         (2 * 256)
288 #define BSTP_DEFAULT_FORWARD_DELAY      (15 * 256)
289 #define BSTP_DEFAULT_HOLD_TIME          (1 * 256)
290 #define BSTP_DEFAULT_BRIDGE_PRIORITY    0x8000
291 #define BSTP_DEFAULT_PORT_PRIORITY      0x80
292 #define BSTP_DEFAULT_PATH_COST          55
293
294 /*
295  * Timeout (in seconds) for entries learned dynamically.
296  */
297 #ifndef BRIDGE_RTABLE_TIMEOUT
298 #define BRIDGE_RTABLE_TIMEOUT           (20 * 60)       /* same as ARP */
299 #endif
300
301 /*
302  * Number of seconds between walks of the route list.
303  */
304 #ifndef BRIDGE_RTABLE_PRUNE_PERIOD
305 #define BRIDGE_RTABLE_PRUNE_PERIOD      (5 * 60)
306 #endif
307
308 /*
309  * List of capabilities to mask on the member interface.
310  */
311 #define BRIDGE_IFCAPS_MASK              IFCAP_TXCSUM
312
313 typedef int     (*bridge_ctl_t)(struct bridge_softc *, void *);
314
315 struct netmsg_brctl {
316         struct netmsg_base      base;
317         bridge_ctl_t            bc_func;
318         struct bridge_softc     *bc_sc;
319         void                    *bc_arg;
320 };
321
322 struct netmsg_brsaddr {
323         struct netmsg_base      base;
324         struct bridge_softc     *br_softc;
325         struct ifnet            *br_dst_if;
326         struct bridge_rtinfo    *br_rtinfo;
327         int                     br_setflags;
328         uint8_t                 br_dst[ETHER_ADDR_LEN];
329         uint8_t                 br_flags;
330 };
331
332 struct netmsg_braddbif {
333         struct netmsg_base      base;
334         struct bridge_softc     *br_softc;
335         struct bridge_ifinfo    *br_bif_info;
336         struct ifnet            *br_bif_ifp;
337 };
338
339 struct netmsg_brdelbif {
340         struct netmsg_base      base;
341         struct bridge_softc     *br_softc;
342         struct bridge_ifinfo    *br_bif_info;
343         struct bridge_iflist_head *br_bif_list;
344 };
345
346 struct netmsg_brsflags {
347         struct netmsg_base      base;
348         struct bridge_softc     *br_softc;
349         struct bridge_ifinfo    *br_bif_info;
350         uint32_t                br_bif_flags;
351 };
352
353 eventhandler_tag        bridge_detach_cookie = NULL;
354
355 extern  struct mbuf *(*bridge_input_p)(struct ifnet *, struct mbuf *);
356 extern  int (*bridge_output_p)(struct ifnet *, struct mbuf *);
357 extern  void (*bridge_dn_p)(struct mbuf *, struct ifnet *);
358 extern  struct ifnet *(*bridge_interface_p)(void *if_bridge);
359
360 static int      bridge_rtable_prune_period = BRIDGE_RTABLE_PRUNE_PERIOD;
361
362 static int      bridge_clone_create(struct if_clone *, int, caddr_t);
363 static int      bridge_clone_destroy(struct ifnet *);
364
365 static int      bridge_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
366 static void     bridge_mutecaps(struct bridge_ifinfo *, struct ifnet *, int);
367 static void     bridge_ifdetach(void *, struct ifnet *);
368 static void     bridge_init(void *);
369 static int      bridge_from_us(struct bridge_softc *, struct ether_header *);
370 static void     bridge_stop(struct ifnet *);
371 static void     bridge_start(struct ifnet *);
372 static struct mbuf *bridge_input(struct ifnet *, struct mbuf *);
373 static int      bridge_output(struct ifnet *, struct mbuf *);
374 static struct ifnet *bridge_interface(void *if_bridge);
375
376 static void     bridge_forward(struct bridge_softc *, struct mbuf *m);
377
378 static void     bridge_timer_handler(netmsg_t);
379 static void     bridge_timer(void *);
380
381 static void     bridge_start_bcast(struct bridge_softc *, struct mbuf *);
382 static void     bridge_broadcast(struct bridge_softc *, struct ifnet *,
383                     struct mbuf *);
384 static void     bridge_span(struct bridge_softc *, struct mbuf *);
385
386 static int      bridge_rtupdate(struct bridge_softc *, const uint8_t *,
387                     struct ifnet *, uint8_t);
388 static struct ifnet *bridge_rtlookup(struct bridge_softc *, const uint8_t *);
389 static void     bridge_rtreap(struct bridge_softc *);
390 static void     bridge_rtreap_async(struct bridge_softc *);
391 static void     bridge_rttrim(struct bridge_softc *);
392 static int      bridge_rtage_finddead(struct bridge_softc *);
393 static void     bridge_rtage(struct bridge_softc *);
394 static void     bridge_rtflush(struct bridge_softc *, int);
395 static int      bridge_rtdaddr(struct bridge_softc *, const uint8_t *);
396 static int      bridge_rtsaddr(struct bridge_softc *, const uint8_t *,
397                     struct ifnet *, uint8_t);
398 static void     bridge_rtmsg_sync(struct bridge_softc *sc);
399 static void     bridge_rtreap_handler(netmsg_t);
400 static void     bridge_rtinstall_handler(netmsg_t);
401 static int      bridge_rtinstall_oncpu(struct bridge_softc *, const uint8_t *,
402                     struct ifnet *, int, uint8_t, struct bridge_rtinfo **);
403
404 static void     bridge_rtable_init(struct bridge_softc *);
405 static void     bridge_rtable_fini(struct bridge_softc *);
406
407 static int      bridge_rtnode_addr_cmp(const uint8_t *, const uint8_t *);
408 static struct bridge_rtnode *bridge_rtnode_lookup(struct bridge_softc *,
409                     const uint8_t *);
410 static void     bridge_rtnode_insert(struct bridge_softc *,
411                     struct bridge_rtnode *);
412 static void     bridge_rtnode_destroy(struct bridge_softc *,
413                     struct bridge_rtnode *);
414
415 static struct bridge_iflist *bridge_lookup_member(struct bridge_softc *,
416                     const char *name);
417 static struct bridge_iflist *bridge_lookup_member_if(struct bridge_softc *,
418                     struct ifnet *ifp);
419 static struct bridge_iflist *bridge_lookup_member_ifinfo(struct bridge_softc *,
420                     struct bridge_ifinfo *);
421 static void     bridge_delete_member(struct bridge_softc *,
422                     struct bridge_iflist *, int);
423 static void     bridge_delete_span(struct bridge_softc *,
424                     struct bridge_iflist *);
425
426 static int      bridge_control(struct bridge_softc *, u_long,
427                                bridge_ctl_t, void *);
428 static int      bridge_ioctl_init(struct bridge_softc *, void *);
429 static int      bridge_ioctl_stop(struct bridge_softc *, void *);
430 static int      bridge_ioctl_add(struct bridge_softc *, void *);
431 static int      bridge_ioctl_del(struct bridge_softc *, void *);
432 static void     bridge_ioctl_fillflags(struct bridge_softc *sc,
433                                 struct bridge_iflist *bif, struct ifbreq *req);
434 static int      bridge_ioctl_gifflags(struct bridge_softc *, void *);
435 static int      bridge_ioctl_sifflags(struct bridge_softc *, void *);
436 static int      bridge_ioctl_scache(struct bridge_softc *, void *);
437 static int      bridge_ioctl_gcache(struct bridge_softc *, void *);
438 static int      bridge_ioctl_gifs(struct bridge_softc *, void *);
439 static int      bridge_ioctl_rts(struct bridge_softc *, void *);
440 static int      bridge_ioctl_saddr(struct bridge_softc *, void *);
441 static int      bridge_ioctl_sto(struct bridge_softc *, void *);
442 static int      bridge_ioctl_gto(struct bridge_softc *, void *);
443 static int      bridge_ioctl_daddr(struct bridge_softc *, void *);
444 static int      bridge_ioctl_flush(struct bridge_softc *, void *);
445 static int      bridge_ioctl_gpri(struct bridge_softc *, void *);
446 static int      bridge_ioctl_spri(struct bridge_softc *, void *);
447 static int      bridge_ioctl_reinit(struct bridge_softc *, void *);
448 static int      bridge_ioctl_ght(struct bridge_softc *, void *);
449 static int      bridge_ioctl_sht(struct bridge_softc *, void *);
450 static int      bridge_ioctl_gfd(struct bridge_softc *, void *);
451 static int      bridge_ioctl_sfd(struct bridge_softc *, void *);
452 static int      bridge_ioctl_gma(struct bridge_softc *, void *);
453 static int      bridge_ioctl_sma(struct bridge_softc *, void *);
454 static int      bridge_ioctl_sifprio(struct bridge_softc *, void *);
455 static int      bridge_ioctl_sifcost(struct bridge_softc *, void *);
456 static int      bridge_ioctl_addspan(struct bridge_softc *, void *);
457 static int      bridge_ioctl_delspan(struct bridge_softc *, void *);
458 static int      bridge_ioctl_sifbondwght(struct bridge_softc *, void *);
459 static int      bridge_pfil(struct mbuf **, struct ifnet *, struct ifnet *,
460                     int);
461 static int      bridge_ip_checkbasic(struct mbuf **mp);
462 #ifdef INET6
463 static int      bridge_ip6_checkbasic(struct mbuf **mp);
464 #endif /* INET6 */
465 static int      bridge_fragment(struct ifnet *, struct mbuf *,
466                     struct ether_header *, int, struct llc *);
467 static void     bridge_enqueue_handler(netmsg_t);
468 static void     bridge_handoff(struct bridge_softc *, struct ifnet *,
469                     struct mbuf *, int);
470
471 static void     bridge_del_bif_handler(netmsg_t);
472 static void     bridge_add_bif_handler(netmsg_t);
473 static void     bridge_del_bif(struct bridge_softc *, struct bridge_ifinfo *,
474                     struct bridge_iflist_head *);
475 static void     bridge_add_bif(struct bridge_softc *, struct bridge_ifinfo *,
476                     struct ifnet *);
477
478 SYSCTL_DECL(_net_link);
479 SYSCTL_NODE(_net_link, IFT_BRIDGE, bridge, CTLFLAG_RW, 0, "Bridge");
480
481 static int pfil_onlyip = 1; /* only pass IP[46] packets when pfil is enabled */
482 static int pfil_bridge = 1; /* run pfil hooks on the bridge interface */
483 static int pfil_member = 1; /* run pfil hooks on the member interface */
484 static int bridge_debug;
485 SYSCTL_INT(_net_link_bridge, OID_AUTO, pfil_onlyip, CTLFLAG_RW,
486     &pfil_onlyip, 0, "Only pass IP packets when pfil is enabled");
487 SYSCTL_INT(_net_link_bridge, OID_AUTO, pfil_bridge, CTLFLAG_RW,
488     &pfil_bridge, 0, "Packet filter on the bridge interface");
489 SYSCTL_INT(_net_link_bridge, OID_AUTO, pfil_member, CTLFLAG_RW,
490     &pfil_member, 0, "Packet filter on the member interface");
491 SYSCTL_INT(_net_link_bridge, OID_AUTO, debug, CTLFLAG_RW,
492     &bridge_debug, 0, "Bridge debug mode");
493
494 struct bridge_control_arg {
495         union {
496                 struct ifbreq ifbreq;
497                 struct ifbifconf ifbifconf;
498                 struct ifbareq ifbareq;
499                 struct ifbaconf ifbaconf;
500                 struct ifbrparam ifbrparam;
501         } bca_u;
502         int     bca_len;
503         void    *bca_uptr;
504         void    *bca_kptr;
505 };
506
507 struct bridge_control {
508         bridge_ctl_t    bc_func;
509         int             bc_argsize;
510         int             bc_flags;
511 };
512
513 #define BC_F_COPYIN             0x01    /* copy arguments in */
514 #define BC_F_COPYOUT            0x02    /* copy arguments out */
515 #define BC_F_SUSER              0x04    /* do super-user check */
516
517 const struct bridge_control bridge_control_table[] = {
518         { bridge_ioctl_add,             sizeof(struct ifbreq),
519           BC_F_COPYIN|BC_F_SUSER },
520         { bridge_ioctl_del,             sizeof(struct ifbreq),
521           BC_F_COPYIN|BC_F_SUSER },
522
523         { bridge_ioctl_gifflags,        sizeof(struct ifbreq),
524           BC_F_COPYIN|BC_F_COPYOUT },
525         { bridge_ioctl_sifflags,        sizeof(struct ifbreq),
526           BC_F_COPYIN|BC_F_SUSER },
527
528         { bridge_ioctl_scache,          sizeof(struct ifbrparam),
529           BC_F_COPYIN|BC_F_SUSER },
530         { bridge_ioctl_gcache,          sizeof(struct ifbrparam),
531           BC_F_COPYOUT },
532
533         { bridge_ioctl_gifs,            sizeof(struct ifbifconf),
534           BC_F_COPYIN|BC_F_COPYOUT },
535         { bridge_ioctl_rts,             sizeof(struct ifbaconf),
536           BC_F_COPYIN|BC_F_COPYOUT },
537
538         { bridge_ioctl_saddr,           sizeof(struct ifbareq),
539           BC_F_COPYIN|BC_F_SUSER },
540
541         { bridge_ioctl_sto,             sizeof(struct ifbrparam),
542           BC_F_COPYIN|BC_F_SUSER },
543         { bridge_ioctl_gto,             sizeof(struct ifbrparam),
544           BC_F_COPYOUT },
545
546         { bridge_ioctl_daddr,           sizeof(struct ifbareq),
547           BC_F_COPYIN|BC_F_SUSER },
548
549         { bridge_ioctl_flush,           sizeof(struct ifbreq),
550           BC_F_COPYIN|BC_F_SUSER },
551
552         { bridge_ioctl_gpri,            sizeof(struct ifbrparam),
553           BC_F_COPYOUT },
554         { bridge_ioctl_spri,            sizeof(struct ifbrparam),
555           BC_F_COPYIN|BC_F_SUSER },
556
557         { bridge_ioctl_ght,             sizeof(struct ifbrparam),
558           BC_F_COPYOUT },
559         { bridge_ioctl_sht,             sizeof(struct ifbrparam),
560           BC_F_COPYIN|BC_F_SUSER },
561
562         { bridge_ioctl_gfd,             sizeof(struct ifbrparam),
563           BC_F_COPYOUT },
564         { bridge_ioctl_sfd,             sizeof(struct ifbrparam),
565           BC_F_COPYIN|BC_F_SUSER },
566
567         { bridge_ioctl_gma,             sizeof(struct ifbrparam),
568           BC_F_COPYOUT },
569         { bridge_ioctl_sma,             sizeof(struct ifbrparam),
570           BC_F_COPYIN|BC_F_SUSER },
571
572         { bridge_ioctl_sifprio,         sizeof(struct ifbreq),
573           BC_F_COPYIN|BC_F_SUSER },
574
575         { bridge_ioctl_sifcost,         sizeof(struct ifbreq),
576           BC_F_COPYIN|BC_F_SUSER },
577
578         { bridge_ioctl_addspan,         sizeof(struct ifbreq),
579           BC_F_COPYIN|BC_F_SUSER },
580         { bridge_ioctl_delspan,         sizeof(struct ifbreq),
581           BC_F_COPYIN|BC_F_SUSER },
582
583         { bridge_ioctl_sifbondwght,     sizeof(struct ifbreq),
584           BC_F_COPYIN|BC_F_SUSER },
585
586 };
587 static const int bridge_control_table_size = NELEM(bridge_control_table);
588
589 LIST_HEAD(, bridge_softc) bridge_list;
590
591 struct if_clone bridge_cloner = IF_CLONE_INITIALIZER("bridge",
592                                 bridge_clone_create,
593                                 bridge_clone_destroy, 0, IF_MAXUNIT);
594
595 static int
596 bridge_modevent(module_t mod, int type, void *data)
597 {
598         switch (type) {
599         case MOD_LOAD:
600                 LIST_INIT(&bridge_list);
601                 if_clone_attach(&bridge_cloner);
602                 bridge_input_p = bridge_input;
603                 bridge_output_p = bridge_output;
604                 bridge_interface_p = bridge_interface;
605                 bridge_detach_cookie = EVENTHANDLER_REGISTER(
606                     ifnet_detach_event, bridge_ifdetach, NULL,
607                     EVENTHANDLER_PRI_ANY);
608 #if 0 /* notyet */
609                 bstp_linkstate_p = bstp_linkstate;
610 #endif
611                 break;
612         case MOD_UNLOAD:
613                 if (!LIST_EMPTY(&bridge_list))
614                         return (EBUSY);
615                 EVENTHANDLER_DEREGISTER(ifnet_detach_event,
616                     bridge_detach_cookie);
617                 if_clone_detach(&bridge_cloner);
618                 bridge_input_p = NULL;
619                 bridge_output_p = NULL;
620                 bridge_interface_p = NULL;
621 #if 0 /* notyet */
622                 bstp_linkstate_p = NULL;
623 #endif
624                 break;
625         default:
626                 return (EOPNOTSUPP);
627         }
628         return (0);
629 }
630
631 static moduledata_t bridge_mod = {
632         "if_bridge",
633         bridge_modevent,
634         0
635 };
636
637 DECLARE_MODULE(if_bridge, bridge_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
638
639
640 /*
641  * bridge_clone_create:
642  *
643  *      Create a new bridge instance.
644  */
645 static int
646 bridge_clone_create(struct if_clone *ifc, int unit, caddr_t param __unused)
647 {
648         struct bridge_softc *sc;
649         struct ifnet *ifp;
650         u_char eaddr[6];
651         int cpu, rnd;
652
653         sc = kmalloc(sizeof(*sc), M_DEVBUF, M_WAITOK | M_ZERO);
654         ifp = sc->sc_ifp = &sc->sc_if;
655
656         sc->sc_brtmax = BRIDGE_RTABLE_MAX;
657         sc->sc_brttimeout = BRIDGE_RTABLE_TIMEOUT;
658         sc->sc_bridge_max_age = BSTP_DEFAULT_MAX_AGE;
659         sc->sc_bridge_hello_time = BSTP_DEFAULT_HELLO_TIME;
660         sc->sc_bridge_forward_delay = BSTP_DEFAULT_FORWARD_DELAY;
661         sc->sc_bridge_priority = BSTP_DEFAULT_BRIDGE_PRIORITY;
662         sc->sc_hold_time = BSTP_DEFAULT_HOLD_TIME;
663
664         /* Initialize our routing table. */
665         bridge_rtable_init(sc);
666
667         callout_init(&sc->sc_brcallout);
668         netmsg_init(&sc->sc_brtimemsg, NULL, &netisr_adone_rport,
669                     MSGF_DROPABLE, bridge_timer_handler);
670         sc->sc_brtimemsg.lmsg.u.ms_resultp = sc;
671
672         callout_init(&sc->sc_bstpcallout);
673         netmsg_init(&sc->sc_bstptimemsg, NULL, &netisr_adone_rport,
674                     MSGF_DROPABLE, bstp_tick_handler);
675         sc->sc_bstptimemsg.lmsg.u.ms_resultp = sc;
676
677         /* Initialize per-cpu member iface lists */
678         sc->sc_iflists = kmalloc(sizeof(*sc->sc_iflists) * ncpus,
679                                  M_DEVBUF, M_WAITOK);
680         for (cpu = 0; cpu < ncpus; ++cpu)
681                 TAILQ_INIT(&sc->sc_iflists[cpu]);
682
683         TAILQ_INIT(&sc->sc_spanlist);
684
685         ifp->if_softc = sc;
686         if_initname(ifp, ifc->ifc_name, unit);
687         ifp->if_mtu = ETHERMTU;
688         ifp->if_flags = IFF_BROADCAST | IFF_MULTICAST;
689         ifp->if_ioctl = bridge_ioctl;
690         ifp->if_start = bridge_start;
691         ifp->if_init = bridge_init;
692         ifp->if_type = IFT_ETHER;
693         ifq_set_maxlen(&ifp->if_snd, ifqmaxlen);
694         ifq_set_ready(&ifp->if_snd);
695         ifp->if_hdrlen = ETHER_HDR_LEN;
696
697         /*
698          * Generate a random ethernet address and use the private AC:DE:48
699          * OUI code.
700          */
701         rnd = karc4random();
702         bcopy(&rnd, &eaddr[0], 4); /* ETHER_ADDR_LEN == 6 */
703         rnd = karc4random();
704         bcopy(&rnd, &eaddr[2], 4); /* ETHER_ADDR_LEN == 6 */
705
706         eaddr[0] &= ~1; /* clear multicast bit */
707         eaddr[0] |= 2;  /* set the LAA bit */
708
709         ether_ifattach(ifp, eaddr, NULL);
710         /* Now undo some of the damage... */
711         ifp->if_baudrate = 0;
712         /*ifp->if_type = IFT_BRIDGE;*/
713
714         crit_enter();   /* XXX MP */
715         LIST_INSERT_HEAD(&bridge_list, sc, sc_list);
716         crit_exit();
717
718         return (0);
719 }
720
721 static void
722 bridge_delete_dispatch(netmsg_t msg)
723 {
724         struct bridge_softc *sc = msg->lmsg.u.ms_resultp;
725         struct ifnet *bifp = sc->sc_ifp;
726         struct bridge_iflist *bif;
727
728         ifnet_serialize_all(bifp);
729
730         while ((bif = TAILQ_FIRST(&sc->sc_iflists[mycpuid])) != NULL)
731                 bridge_delete_member(sc, bif, 0);
732
733         while ((bif = TAILQ_FIRST(&sc->sc_spanlist)) != NULL)
734                 bridge_delete_span(sc, bif);
735
736         ifnet_deserialize_all(bifp);
737
738         lwkt_replymsg(&msg->lmsg, 0);
739 }
740
741 /*
742  * bridge_clone_destroy:
743  *
744  *      Destroy a bridge instance.
745  */
746 static int
747 bridge_clone_destroy(struct ifnet *ifp)
748 {
749         struct bridge_softc *sc = ifp->if_softc;
750         struct netmsg_base msg;
751
752         ifnet_serialize_all(ifp);
753
754         bridge_stop(ifp);
755         ifp->if_flags &= ~IFF_UP;
756
757         ifnet_deserialize_all(ifp);
758
759         netmsg_init(&msg, NULL, &curthread->td_msgport,
760                     0, bridge_delete_dispatch);
761         msg.lmsg.u.ms_resultp = sc;
762         lwkt_domsg(BRIDGE_CFGPORT, &msg.lmsg, 0);
763
764         crit_enter();   /* XXX MP */
765         LIST_REMOVE(sc, sc_list);
766         crit_exit();
767
768         ether_ifdetach(ifp);
769
770         /* Tear down the routing table. */
771         bridge_rtable_fini(sc);
772
773         /* Free per-cpu member iface lists */
774         kfree(sc->sc_iflists, M_DEVBUF);
775
776         kfree(sc, M_DEVBUF);
777
778         return 0;
779 }
780
781 /*
782  * bridge_ioctl:
783  *
784  *      Handle a control request from the operator.
785  */
786 static int
787 bridge_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
788 {
789         struct bridge_softc *sc = ifp->if_softc;
790         struct bridge_control_arg args;
791         struct ifdrv *ifd = (struct ifdrv *) data;
792         const struct bridge_control *bc;
793         int error = 0;
794
795         ASSERT_IFNET_SERIALIZED_ALL(ifp);
796
797         switch (cmd) {
798         case SIOCADDMULTI:
799         case SIOCDELMULTI:
800                 break;
801
802         case SIOCGDRVSPEC:
803         case SIOCSDRVSPEC:
804                 if (ifd->ifd_cmd >= bridge_control_table_size) {
805                         error = EINVAL;
806                         break;
807                 }
808                 bc = &bridge_control_table[ifd->ifd_cmd];
809
810                 if (cmd == SIOCGDRVSPEC &&
811                     (bc->bc_flags & BC_F_COPYOUT) == 0) {
812                         error = EINVAL;
813                         break;
814                 } else if (cmd == SIOCSDRVSPEC &&
815                            (bc->bc_flags & BC_F_COPYOUT)) {
816                         error = EINVAL;
817                         break;
818                 }
819
820                 if (bc->bc_flags & BC_F_SUSER) {
821                         error = priv_check_cred(cr, PRIV_ROOT, NULL_CRED_OKAY);
822                         if (error)
823                                 break;
824                 }
825
826                 if (ifd->ifd_len != bc->bc_argsize ||
827                     ifd->ifd_len > sizeof(args.bca_u)) {
828                         error = EINVAL;
829                         break;
830                 }
831
832                 memset(&args, 0, sizeof(args));
833                 if (bc->bc_flags & BC_F_COPYIN) {
834                         error = copyin(ifd->ifd_data, &args.bca_u,
835                                        ifd->ifd_len);
836                         if (error)
837                                 break;
838                 }
839
840                 error = bridge_control(sc, cmd, bc->bc_func, &args);
841                 if (error) {
842                         KKASSERT(args.bca_len == 0 && args.bca_kptr == NULL);
843                         break;
844                 }
845
846                 if (bc->bc_flags & BC_F_COPYOUT) {
847                         error = copyout(&args, ifd->ifd_data, ifd->ifd_len);
848                         if (args.bca_len != 0) {
849                                 KKASSERT(args.bca_kptr != NULL);
850                                 if (!error) {
851                                         error = copyout(args.bca_kptr,
852                                                 args.bca_uptr, args.bca_len);
853                                 }
854                                 kfree(args.bca_kptr, M_TEMP);
855                         } else {
856                                 KKASSERT(args.bca_kptr == NULL);
857                         }
858                 } else {
859                         KKASSERT(args.bca_len == 0 && args.bca_kptr == NULL);
860                 }
861                 break;
862
863         case SIOCSIFFLAGS:
864                 if (!(ifp->if_flags & IFF_UP) &&
865                     (ifp->if_flags & IFF_RUNNING)) {
866                         /*
867                          * If interface is marked down and it is running,
868                          * then stop it.
869                          */
870                         bridge_stop(ifp);
871                 } else if ((ifp->if_flags & IFF_UP) &&
872                     !(ifp->if_flags & IFF_RUNNING)) {
873                         /*
874                          * If interface is marked up and it is stopped, then
875                          * start it.
876                          */
877                         ifp->if_init(sc);
878                 }
879
880                 /*
881                  * If running and link flag state change we have to
882                  * reinitialize as well.
883                  */
884                 if ((ifp->if_flags & IFF_RUNNING) &&
885                     (ifp->if_flags & (IFF_LINK0|IFF_LINK1|IFF_LINK2)) !=
886                     sc->sc_copy_flags) {
887                         sc->sc_copy_flags = ifp->if_flags &
888                                         (IFF_LINK0|IFF_LINK1|IFF_LINK2);
889                         bridge_control(sc, 0, bridge_ioctl_reinit, NULL);
890                 }
891
892                 break;
893
894         case SIOCSIFMTU:
895                 /* Do not allow the MTU to be changed on the bridge */
896                 error = EINVAL;
897                 break;
898
899         default:
900                 error = ether_ioctl(ifp, cmd, data);
901                 break;
902         }
903         return (error);
904 }
905
906 /*
907  * bridge_mutecaps:
908  *
909  *      Clear or restore unwanted capabilities on the member interface
910  */
911 static void
912 bridge_mutecaps(struct bridge_ifinfo *bif_info, struct ifnet *ifp, int mute)
913 {
914         struct ifreq ifr;
915         int error;
916
917         if (ifp->if_ioctl == NULL)
918                 return;
919
920         bzero(&ifr, sizeof(ifr));
921         ifr.ifr_reqcap = ifp->if_capenable;
922
923         if (mute) {
924                 /* mask off and save capabilities */
925                 bif_info->bifi_mutecap = ifr.ifr_reqcap & BRIDGE_IFCAPS_MASK;
926                 if (bif_info->bifi_mutecap != 0)
927                         ifr.ifr_reqcap &= ~BRIDGE_IFCAPS_MASK;
928         } else {
929                 /* restore muted capabilities */
930                 ifr.ifr_reqcap |= bif_info->bifi_mutecap;
931         }
932
933         if (bif_info->bifi_mutecap != 0) {
934                 ifnet_serialize_all(ifp);
935                 error = ifp->if_ioctl(ifp, SIOCSIFCAP, (caddr_t)&ifr, NULL);
936                 ifnet_deserialize_all(ifp);
937         }
938 }
939
940 /*
941  * bridge_lookup_member:
942  *
943  *      Lookup a bridge member interface.
944  */
945 static struct bridge_iflist *
946 bridge_lookup_member(struct bridge_softc *sc, const char *name)
947 {
948         struct bridge_iflist *bif;
949
950         TAILQ_FOREACH(bif, &sc->sc_iflists[mycpuid], bif_next) {
951                 if (strcmp(bif->bif_ifp->if_xname, name) == 0)
952                         return (bif);
953         }
954         return (NULL);
955 }
956
957 /*
958  * bridge_lookup_member_if:
959  *
960  *      Lookup a bridge member interface by ifnet*.
961  */
962 static struct bridge_iflist *
963 bridge_lookup_member_if(struct bridge_softc *sc, struct ifnet *member_ifp)
964 {
965         struct bridge_iflist *bif;
966
967         TAILQ_FOREACH(bif, &sc->sc_iflists[mycpuid], bif_next) {
968                 if (bif->bif_ifp == member_ifp)
969                         return (bif);
970         }
971         return (NULL);
972 }
973
974 /*
975  * bridge_lookup_member_ifinfo:
976  *
977  *      Lookup a bridge member interface by bridge_ifinfo.
978  */
979 static struct bridge_iflist *
980 bridge_lookup_member_ifinfo(struct bridge_softc *sc,
981                             struct bridge_ifinfo *bif_info)
982 {
983         struct bridge_iflist *bif;
984
985         TAILQ_FOREACH(bif, &sc->sc_iflists[mycpuid], bif_next) {
986                 if (bif->bif_info == bif_info)
987                         return (bif);
988         }
989         return (NULL);
990 }
991
992 /*
993  * bridge_delete_member:
994  *
995  *      Delete the specified member interface.
996  */
997 static void
998 bridge_delete_member(struct bridge_softc *sc, struct bridge_iflist *bif,
999     int gone)
1000 {
1001         struct ifnet *ifs = bif->bif_ifp;
1002         struct ifnet *bifp = sc->sc_ifp;
1003         struct bridge_ifinfo *bif_info = bif->bif_info;
1004         struct bridge_iflist_head saved_bifs;
1005
1006         ASSERT_IFNET_SERIALIZED_ALL(bifp);
1007         KKASSERT(bif_info != NULL);
1008
1009         ifs->if_bridge = NULL;
1010
1011         /*
1012          * Release bridge interface's serializer:
1013          * - To avoid possible dead lock.
1014          * - Various sync operation will block the current thread.
1015          */
1016         ifnet_deserialize_all(bifp);
1017
1018         if (!gone) {
1019                 switch (ifs->if_type) {
1020                 case IFT_ETHER:
1021                 case IFT_L2VLAN:
1022                         /*
1023                          * Take the interface out of promiscuous mode.
1024                          */
1025                         ifpromisc(ifs, 0);
1026                         bridge_mutecaps(bif_info, ifs, 0);
1027                         break;
1028
1029                 case IFT_GIF:
1030                         break;
1031
1032                 default:
1033                         panic("bridge_delete_member: impossible");
1034                         break;
1035                 }
1036         }
1037
1038         /*
1039          * Remove bifs from percpu linked list.
1040          *
1041          * Removed bifs are not freed immediately, instead,
1042          * they are saved in saved_bifs.  They will be freed
1043          * after we make sure that no one is accessing them,
1044          * i.e. after following netmsg_service_sync()
1045          */
1046         TAILQ_INIT(&saved_bifs);
1047         bridge_del_bif(sc, bif_info, &saved_bifs);
1048
1049         /*
1050          * Make sure that all protocol threads:
1051          * o  see 'ifs' if_bridge is changed
1052          * o  know that bif is removed from the percpu linked list
1053          */
1054         netmsg_service_sync();
1055
1056         /*
1057          * Free the removed bifs
1058          */
1059         KKASSERT(!TAILQ_EMPTY(&saved_bifs));
1060         while ((bif = TAILQ_FIRST(&saved_bifs)) != NULL) {
1061                 TAILQ_REMOVE(&saved_bifs, bif, bif_next);
1062                 kfree(bif, M_DEVBUF);
1063         }
1064
1065         /* See the comment in bridge_ioctl_stop() */
1066         bridge_rtmsg_sync(sc);
1067         bridge_rtdelete(sc, ifs, IFBF_FLUSHALL | IFBF_FLUSHSYNC);
1068
1069         ifnet_serialize_all(bifp);
1070
1071         if (bifp->if_flags & IFF_RUNNING)
1072                 bstp_initialization(sc);
1073
1074         /*
1075          * Free the bif_info after bstp_initialization(), so that
1076          * bridge_softc.sc_root_port will not reference a dangling
1077          * pointer.
1078          */
1079         kfree(bif_info, M_DEVBUF);
1080 }
1081
1082 /*
1083  * bridge_delete_span:
1084  *
1085  *      Delete the specified span interface.
1086  */
1087 static void
1088 bridge_delete_span(struct bridge_softc *sc, struct bridge_iflist *bif)
1089 {
1090         KASSERT(bif->bif_ifp->if_bridge == NULL,
1091             ("%s: not a span interface", __func__));
1092
1093         TAILQ_REMOVE(&sc->sc_iflists[mycpuid], bif, bif_next);
1094         kfree(bif, M_DEVBUF);
1095 }
1096
1097 static int
1098 bridge_ioctl_init(struct bridge_softc *sc, void *arg __unused)
1099 {
1100         struct ifnet *ifp = sc->sc_ifp;
1101
1102         if (ifp->if_flags & IFF_RUNNING)
1103                 return 0;
1104
1105         callout_reset(&sc->sc_brcallout, bridge_rtable_prune_period * hz,
1106             bridge_timer, sc);
1107
1108         ifp->if_flags |= IFF_RUNNING;
1109         bstp_initialization(sc);
1110         return 0;
1111 }
1112
1113 static int
1114 bridge_ioctl_stop(struct bridge_softc *sc, void *arg __unused)
1115 {
1116         struct ifnet *ifp = sc->sc_ifp;
1117         struct lwkt_msg *lmsg;
1118
1119         if ((ifp->if_flags & IFF_RUNNING) == 0)
1120                 return 0;
1121
1122         callout_stop(&sc->sc_brcallout);
1123
1124         crit_enter();
1125         lmsg = &sc->sc_brtimemsg.lmsg;
1126         if ((lmsg->ms_flags & MSGF_DONE) == 0) {
1127                 /* Pending to be processed; drop it */
1128                 lwkt_dropmsg(lmsg);
1129         }
1130         crit_exit();
1131
1132         bstp_stop(sc);
1133
1134         ifp->if_flags &= ~IFF_RUNNING;
1135
1136         ifnet_deserialize_all(ifp);
1137
1138         /* Let everyone know that we are stopped */
1139         netmsg_service_sync();
1140
1141         /*
1142          * Sync ifnetX msgports in the order we forward rtnode
1143          * installation message.  This is used to make sure that
1144          * all rtnode installation messages sent by bridge_rtupdate()
1145          * during above netmsg_service_sync() are flushed.
1146          */
1147         bridge_rtmsg_sync(sc);
1148         bridge_rtflush(sc, IFBF_FLUSHDYN | IFBF_FLUSHSYNC);
1149
1150         ifnet_serialize_all(ifp);
1151         return 0;
1152 }
1153
1154 static int
1155 bridge_ioctl_add(struct bridge_softc *sc, void *arg)
1156 {
1157         struct ifbreq *req = arg;
1158         struct bridge_iflist *bif;
1159         struct bridge_ifinfo *bif_info;
1160         struct ifnet *ifs, *bifp;
1161         int error = 0;
1162
1163         bifp = sc->sc_ifp;
1164         ASSERT_IFNET_SERIALIZED_ALL(bifp);
1165
1166         ifs = ifunit(req->ifbr_ifsname);
1167         if (ifs == NULL)
1168                 return (ENOENT);
1169
1170         /* If it's in the span list, it can't be a member. */
1171         TAILQ_FOREACH(bif, &sc->sc_spanlist, bif_next)
1172                 if (ifs == bif->bif_ifp)
1173                         return (EBUSY);
1174
1175         /* Allow the first Ethernet member to define the MTU */
1176         if (ifs->if_type != IFT_GIF) {
1177                 if (TAILQ_EMPTY(&sc->sc_iflists[mycpuid])) {
1178                         bifp->if_mtu = ifs->if_mtu;
1179                 } else if (bifp->if_mtu != ifs->if_mtu) {
1180                         if_printf(bifp, "invalid MTU for %s\n", ifs->if_xname);
1181                         return (EINVAL);
1182                 }
1183         }
1184
1185         if (ifs->if_bridge == sc)
1186                 return (EEXIST);
1187
1188         if (ifs->if_bridge != NULL)
1189                 return (EBUSY);
1190
1191         bif_info = kmalloc(sizeof(*bif_info), M_DEVBUF, M_WAITOK | M_ZERO);
1192         bif_info->bifi_priority = BSTP_DEFAULT_PORT_PRIORITY;
1193         bif_info->bifi_path_cost = BSTP_DEFAULT_PATH_COST;
1194         bif_info->bifi_ifp = ifs;
1195         bif_info->bifi_bond_weight = 1;
1196
1197         /*
1198          * Release bridge interface's serializer:
1199          * - To avoid possible dead lock.
1200          * - Various sync operation will block the current thread.
1201          */
1202         ifnet_deserialize_all(bifp);
1203
1204         switch (ifs->if_type) {
1205         case IFT_ETHER:
1206         case IFT_L2VLAN:
1207                 /*
1208                  * Place the interface into promiscuous mode.
1209                  */
1210                 error = ifpromisc(ifs, 1);
1211                 if (error) {
1212                         ifnet_serialize_all(bifp);
1213                         goto out;
1214                 }
1215                 bridge_mutecaps(bif_info, ifs, 1);
1216                 break;
1217
1218         case IFT_GIF: /* :^) */
1219                 break;
1220
1221         default:
1222                 error = EINVAL;
1223                 ifnet_serialize_all(bifp);
1224                 goto out;
1225         }
1226
1227         /*
1228          * Add bifs to percpu linked lists
1229          */
1230         bridge_add_bif(sc, bif_info, ifs);
1231
1232         ifnet_serialize_all(bifp);
1233
1234         if (bifp->if_flags & IFF_RUNNING)
1235                 bstp_initialization(sc);
1236         else
1237                 bstp_stop(sc);
1238
1239         /*
1240          * Everything has been setup, so let the member interface
1241          * deliver packets to this bridge on its input/output path.
1242          */
1243         ifs->if_bridge = sc;
1244 out:
1245         if (error) {
1246                 if (bif_info != NULL)
1247                         kfree(bif_info, M_DEVBUF);
1248         }
1249         return (error);
1250 }
1251
1252 static int
1253 bridge_ioctl_del(struct bridge_softc *sc, void *arg)
1254 {
1255         struct ifbreq *req = arg;
1256         struct bridge_iflist *bif;
1257
1258         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
1259         if (bif == NULL)
1260                 return (ENOENT);
1261
1262         bridge_delete_member(sc, bif, 0);
1263
1264         return (0);
1265 }
1266
1267 static int
1268 bridge_ioctl_gifflags(struct bridge_softc *sc, void *arg)
1269 {
1270         struct ifbreq *req = arg;
1271         struct bridge_iflist *bif;
1272
1273         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
1274         if (bif == NULL)
1275                 return (ENOENT);
1276         bridge_ioctl_fillflags(sc, bif, req);
1277         return (0);
1278 }
1279
1280 static void
1281 bridge_ioctl_fillflags(struct bridge_softc *sc, struct bridge_iflist *bif,
1282                        struct ifbreq *req)
1283 {
1284         req->ifbr_ifsflags = bif->bif_flags;
1285         req->ifbr_state = bif->bif_state;
1286         req->ifbr_priority = bif->bif_priority;
1287         req->ifbr_path_cost = bif->bif_path_cost;
1288         req->ifbr_bond_weight = bif->bif_bond_weight;
1289         req->ifbr_portno = bif->bif_ifp->if_index & 0xff;
1290         if (bif->bif_flags & IFBIF_STP) {
1291                 req->ifbr_peer_root = bif->bif_peer_root;
1292                 req->ifbr_peer_bridge = bif->bif_peer_bridge;
1293                 req->ifbr_peer_cost = bif->bif_peer_cost;
1294                 req->ifbr_peer_port = bif->bif_peer_port;
1295                 if (bstp_supersedes_port_info(sc, bif)) {
1296                         req->ifbr_designated_root = bif->bif_peer_root;
1297                         req->ifbr_designated_bridge = bif->bif_peer_bridge;
1298                         req->ifbr_designated_cost = bif->bif_peer_cost;
1299                         req->ifbr_designated_port = bif->bif_peer_port;
1300                 } else {
1301                         req->ifbr_designated_root = sc->sc_bridge_id;
1302                         req->ifbr_designated_bridge = sc->sc_bridge_id;
1303                         req->ifbr_designated_cost = bif->bif_path_cost +
1304                                                     bif->bif_peer_cost;
1305                         req->ifbr_designated_port = bif->bif_port_id;
1306                 }
1307         } else {
1308                 req->ifbr_peer_root = 0;
1309                 req->ifbr_peer_bridge = 0;
1310                 req->ifbr_peer_cost = 0;
1311                 req->ifbr_peer_port = 0;
1312                 req->ifbr_designated_root = 0;
1313                 req->ifbr_designated_bridge = 0;
1314                 req->ifbr_designated_cost = 0;
1315                 req->ifbr_designated_port = 0;
1316         }
1317 }
1318
1319 static int
1320 bridge_ioctl_sifflags(struct bridge_softc *sc, void *arg)
1321 {
1322         struct ifbreq *req = arg;
1323         struct bridge_iflist *bif;
1324         struct ifnet *bifp = sc->sc_ifp;
1325
1326         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
1327         if (bif == NULL)
1328                 return (ENOENT);
1329
1330         if (req->ifbr_ifsflags & IFBIF_SPAN) {
1331                 /* SPAN is readonly */
1332                 return (EINVAL);
1333         }
1334
1335         if (req->ifbr_ifsflags & IFBIF_STP) {
1336                 switch (bif->bif_ifp->if_type) {
1337                 case IFT_ETHER:
1338                         /* These can do spanning tree. */
1339                         break;
1340
1341                 default:
1342                         /* Nothing else can. */
1343                         return (EINVAL);
1344                 }
1345         }
1346
1347         bif->bif_flags = (bif->bif_flags & IFBIF_KEEPMASK) |
1348                          (req->ifbr_ifsflags & ~IFBIF_KEEPMASK);
1349         if (bifp->if_flags & IFF_RUNNING)
1350                 bstp_initialization(sc);
1351
1352         return (0);
1353 }
1354
1355 static int
1356 bridge_ioctl_scache(struct bridge_softc *sc, void *arg)
1357 {
1358         struct ifbrparam *param = arg;
1359         struct ifnet *ifp = sc->sc_ifp;
1360
1361         sc->sc_brtmax = param->ifbrp_csize;
1362
1363         ifnet_deserialize_all(ifp);
1364         bridge_rttrim(sc);
1365         ifnet_serialize_all(ifp);
1366
1367         return (0);
1368 }
1369
1370 static int
1371 bridge_ioctl_gcache(struct bridge_softc *sc, void *arg)
1372 {
1373         struct ifbrparam *param = arg;
1374
1375         param->ifbrp_csize = sc->sc_brtmax;
1376
1377         return (0);
1378 }
1379
1380 static int
1381 bridge_ioctl_gifs(struct bridge_softc *sc, void *arg)
1382 {
1383         struct bridge_control_arg *bc_arg = arg;
1384         struct ifbifconf *bifc = arg;
1385         struct bridge_iflist *bif;
1386         struct ifbreq *breq;
1387         int count, len;
1388
1389         count = 0;
1390         TAILQ_FOREACH(bif, &sc->sc_iflists[mycpuid], bif_next)
1391                 count++;
1392         TAILQ_FOREACH(bif, &sc->sc_spanlist, bif_next)
1393                 count++;
1394
1395         if (bifc->ifbic_len == 0) {
1396                 bifc->ifbic_len = sizeof(*breq) * count;
1397                 return 0;
1398         } else if (count == 0 || bifc->ifbic_len < sizeof(*breq)) {
1399                 bifc->ifbic_len = 0;
1400                 return 0;
1401         }
1402
1403         len = min(bifc->ifbic_len, sizeof(*breq) * count);
1404         KKASSERT(len >= sizeof(*breq));
1405
1406         breq = kmalloc(len, M_TEMP, M_WAITOK | M_NULLOK | M_ZERO);
1407         if (breq == NULL) {
1408                 bifc->ifbic_len = 0;
1409                 return ENOMEM;
1410         }
1411         bc_arg->bca_kptr = breq;
1412
1413         count = 0;
1414         TAILQ_FOREACH(bif, &sc->sc_iflists[mycpuid], bif_next) {
1415                 if (len < sizeof(*breq))
1416                         break;
1417
1418                 strlcpy(breq->ifbr_ifsname, bif->bif_ifp->if_xname,
1419                         sizeof(breq->ifbr_ifsname));
1420                 bridge_ioctl_fillflags(sc, bif, breq);
1421                 breq++;
1422                 count++;
1423                 len -= sizeof(*breq);
1424         }
1425         TAILQ_FOREACH(bif, &sc->sc_spanlist, bif_next) {
1426                 if (len < sizeof(*breq))
1427                         break;
1428
1429                 strlcpy(breq->ifbr_ifsname, bif->bif_ifp->if_xname,
1430                         sizeof(breq->ifbr_ifsname));
1431                 breq->ifbr_ifsflags = bif->bif_flags;
1432                 breq->ifbr_portno = bif->bif_ifp->if_index & 0xff;
1433                 breq++;
1434                 count++;
1435                 len -= sizeof(*breq);
1436         }
1437
1438         bifc->ifbic_len = sizeof(*breq) * count;
1439         KKASSERT(bifc->ifbic_len > 0);
1440
1441         bc_arg->bca_len = bifc->ifbic_len;
1442         bc_arg->bca_uptr = bifc->ifbic_req;
1443         return 0;
1444 }
1445
1446 static int
1447 bridge_ioctl_rts(struct bridge_softc *sc, void *arg)
1448 {
1449         struct bridge_control_arg *bc_arg = arg;
1450         struct ifbaconf *bac = arg;
1451         struct bridge_rtnode *brt;
1452         struct ifbareq *bareq;
1453         int count, len;
1454
1455         count = 0;
1456         LIST_FOREACH(brt, &sc->sc_rtlists[mycpuid], brt_list)
1457                 count++;
1458
1459         if (bac->ifbac_len == 0) {
1460                 bac->ifbac_len = sizeof(*bareq) * count;
1461                 return 0;
1462         } else if (count == 0 || bac->ifbac_len < sizeof(*bareq)) {
1463                 bac->ifbac_len = 0;
1464                 return 0;
1465         }
1466
1467         len = min(bac->ifbac_len, sizeof(*bareq) * count);
1468         KKASSERT(len >= sizeof(*bareq));
1469
1470         bareq = kmalloc(len, M_TEMP, M_WAITOK | M_NULLOK | M_ZERO);
1471         if (bareq == NULL) {
1472                 bac->ifbac_len = 0;
1473                 return ENOMEM;
1474         }
1475         bc_arg->bca_kptr = bareq;
1476
1477         count = 0;
1478         LIST_FOREACH(brt, &sc->sc_rtlists[mycpuid], brt_list) {
1479                 struct bridge_rtinfo *bri = brt->brt_info;
1480                 unsigned long expire;
1481
1482                 if (len < sizeof(*bareq))
1483                         break;
1484
1485                 strlcpy(bareq->ifba_ifsname, bri->bri_ifp->if_xname,
1486                         sizeof(bareq->ifba_ifsname));
1487                 memcpy(bareq->ifba_dst, brt->brt_addr, sizeof(brt->brt_addr));
1488                 expire = bri->bri_expire;
1489                 if ((bri->bri_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC &&
1490                     time_second < expire)
1491                         bareq->ifba_expire = expire - time_second;
1492                 else
1493                         bareq->ifba_expire = 0;
1494                 bareq->ifba_flags = bri->bri_flags;
1495                 bareq++;
1496                 count++;
1497                 len -= sizeof(*bareq);
1498         }
1499
1500         bac->ifbac_len = sizeof(*bareq) * count;
1501         KKASSERT(bac->ifbac_len > 0);
1502
1503         bc_arg->bca_len = bac->ifbac_len;
1504         bc_arg->bca_uptr = bac->ifbac_req;
1505         return 0;
1506 }
1507
1508 static int
1509 bridge_ioctl_saddr(struct bridge_softc *sc, void *arg)
1510 {
1511         struct ifbareq *req = arg;
1512         struct bridge_iflist *bif;
1513         struct ifnet *ifp = sc->sc_ifp;
1514         int error;
1515
1516         ASSERT_IFNET_SERIALIZED_ALL(ifp);
1517
1518         bif = bridge_lookup_member(sc, req->ifba_ifsname);
1519         if (bif == NULL)
1520                 return (ENOENT);
1521
1522         ifnet_deserialize_all(ifp);
1523         error = bridge_rtsaddr(sc, req->ifba_dst, bif->bif_ifp,
1524                                req->ifba_flags);
1525         ifnet_serialize_all(ifp);
1526         return (error);
1527 }
1528
1529 static int
1530 bridge_ioctl_sto(struct bridge_softc *sc, void *arg)
1531 {
1532         struct ifbrparam *param = arg;
1533
1534         sc->sc_brttimeout = param->ifbrp_ctime;
1535
1536         return (0);
1537 }
1538
1539 static int
1540 bridge_ioctl_gto(struct bridge_softc *sc, void *arg)
1541 {
1542         struct ifbrparam *param = arg;
1543
1544         param->ifbrp_ctime = sc->sc_brttimeout;
1545
1546         return (0);
1547 }
1548
1549 static int
1550 bridge_ioctl_daddr(struct bridge_softc *sc, void *arg)
1551 {
1552         struct ifbareq *req = arg;
1553         struct ifnet *ifp = sc->sc_ifp;
1554         int error;
1555
1556         ifnet_deserialize_all(ifp);
1557         error = bridge_rtdaddr(sc, req->ifba_dst);
1558         ifnet_serialize_all(ifp);
1559         return error;
1560 }
1561
1562 static int
1563 bridge_ioctl_flush(struct bridge_softc *sc, void *arg)
1564 {
1565         struct ifbreq *req = arg;
1566         struct ifnet *ifp = sc->sc_ifp;
1567
1568         ifnet_deserialize_all(ifp);
1569         bridge_rtflush(sc, req->ifbr_ifsflags | IFBF_FLUSHSYNC);
1570         ifnet_serialize_all(ifp);
1571
1572         return (0);
1573 }
1574
1575 static int
1576 bridge_ioctl_gpri(struct bridge_softc *sc, void *arg)
1577 {
1578         struct ifbrparam *param = arg;
1579
1580         param->ifbrp_prio = sc->sc_bridge_priority;
1581
1582         return (0);
1583 }
1584
1585 static int
1586 bridge_ioctl_spri(struct bridge_softc *sc, void *arg)
1587 {
1588         struct ifbrparam *param = arg;
1589
1590         sc->sc_bridge_priority = param->ifbrp_prio;
1591
1592         if (sc->sc_ifp->if_flags & IFF_RUNNING)
1593                 bstp_initialization(sc);
1594
1595         return (0);
1596 }
1597
1598 static int
1599 bridge_ioctl_reinit(struct bridge_softc *sc, void *arg __unused)
1600 {
1601         if (sc->sc_ifp->if_flags & IFF_RUNNING)
1602                 bstp_initialization(sc);
1603         return (0);
1604 }
1605
1606 static int
1607 bridge_ioctl_ght(struct bridge_softc *sc, void *arg)
1608 {
1609         struct ifbrparam *param = arg;
1610
1611         param->ifbrp_hellotime = sc->sc_bridge_hello_time >> 8;
1612
1613         return (0);
1614 }
1615
1616 static int
1617 bridge_ioctl_sht(struct bridge_softc *sc, void *arg)
1618 {
1619         struct ifbrparam *param = arg;
1620
1621         if (param->ifbrp_hellotime == 0)
1622                 return (EINVAL);
1623         sc->sc_bridge_hello_time = param->ifbrp_hellotime << 8;
1624
1625         if (sc->sc_ifp->if_flags & IFF_RUNNING)
1626                 bstp_initialization(sc);
1627
1628         return (0);
1629 }
1630
1631 static int
1632 bridge_ioctl_gfd(struct bridge_softc *sc, void *arg)
1633 {
1634         struct ifbrparam *param = arg;
1635
1636         param->ifbrp_fwddelay = sc->sc_bridge_forward_delay >> 8;
1637
1638         return (0);
1639 }
1640
1641 static int
1642 bridge_ioctl_sfd(struct bridge_softc *sc, void *arg)
1643 {
1644         struct ifbrparam *param = arg;
1645
1646         if (param->ifbrp_fwddelay == 0)
1647                 return (EINVAL);
1648         sc->sc_bridge_forward_delay = param->ifbrp_fwddelay << 8;
1649
1650         if (sc->sc_ifp->if_flags & IFF_RUNNING)
1651                 bstp_initialization(sc);
1652
1653         return (0);
1654 }
1655
1656 static int
1657 bridge_ioctl_gma(struct bridge_softc *sc, void *arg)
1658 {
1659         struct ifbrparam *param = arg;
1660
1661         param->ifbrp_maxage = sc->sc_bridge_max_age >> 8;
1662
1663         return (0);
1664 }
1665
1666 static int
1667 bridge_ioctl_sma(struct bridge_softc *sc, void *arg)
1668 {
1669         struct ifbrparam *param = arg;
1670
1671         if (param->ifbrp_maxage == 0)
1672                 return (EINVAL);
1673         sc->sc_bridge_max_age = param->ifbrp_maxage << 8;
1674
1675         if (sc->sc_ifp->if_flags & IFF_RUNNING)
1676                 bstp_initialization(sc);
1677
1678         return (0);
1679 }
1680
1681 static int
1682 bridge_ioctl_sifprio(struct bridge_softc *sc, void *arg)
1683 {
1684         struct ifbreq *req = arg;
1685         struct bridge_iflist *bif;
1686
1687         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
1688         if (bif == NULL)
1689                 return (ENOENT);
1690
1691         bif->bif_priority = req->ifbr_priority;
1692
1693         if (sc->sc_ifp->if_flags & IFF_RUNNING)
1694                 bstp_initialization(sc);
1695
1696         return (0);
1697 }
1698
1699 static int
1700 bridge_ioctl_sifcost(struct bridge_softc *sc, void *arg)
1701 {
1702         struct ifbreq *req = arg;
1703         struct bridge_iflist *bif;
1704
1705         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
1706         if (bif == NULL)
1707                 return (ENOENT);
1708
1709         bif->bif_path_cost = req->ifbr_path_cost;
1710
1711         if (sc->sc_ifp->if_flags & IFF_RUNNING)
1712                 bstp_initialization(sc);
1713
1714         return (0);
1715 }
1716
1717 static int
1718 bridge_ioctl_sifbondwght(struct bridge_softc *sc, void *arg)
1719 {
1720         struct ifbreq *req = arg;
1721         struct bridge_iflist *bif;
1722
1723         bif = bridge_lookup_member(sc, req->ifbr_ifsname);
1724         if (bif == NULL)
1725                 return (ENOENT);
1726
1727         bif->bif_bond_weight = req->ifbr_bond_weight;
1728
1729         /* no reinit needed */
1730
1731         return (0);
1732 }
1733
1734 static int
1735 bridge_ioctl_addspan(struct bridge_softc *sc, void *arg)
1736 {
1737         struct ifbreq *req = arg;
1738         struct bridge_iflist *bif;
1739         struct ifnet *ifs;
1740         struct bridge_ifinfo *bif_info;
1741
1742         ifs = ifunit(req->ifbr_ifsname);
1743         if (ifs == NULL)
1744                 return (ENOENT);
1745
1746         TAILQ_FOREACH(bif, &sc->sc_spanlist, bif_next)
1747                 if (ifs == bif->bif_ifp)
1748                         return (EBUSY);
1749
1750         if (ifs->if_bridge != NULL)
1751                 return (EBUSY);
1752
1753         switch (ifs->if_type) {
1754         case IFT_ETHER:
1755         case IFT_GIF:
1756         case IFT_L2VLAN:
1757                 break;
1758
1759         default:
1760                 return (EINVAL);
1761         }
1762
1763         /*
1764          * bif_info is needed for bif_flags
1765          */
1766         bif_info = kmalloc(sizeof(*bif_info), M_DEVBUF, M_WAITOK | M_ZERO);
1767         bif_info->bifi_ifp = ifs;
1768
1769         bif = kmalloc(sizeof(*bif), M_DEVBUF, M_WAITOK | M_ZERO);
1770         bif->bif_ifp = ifs;
1771         bif->bif_info = bif_info;
1772         bif->bif_flags = IFBIF_SPAN;
1773         /* NOTE: span bif does not need bridge_ifinfo */
1774
1775         TAILQ_INSERT_HEAD(&sc->sc_spanlist, bif, bif_next);
1776
1777         sc->sc_span = 1;
1778
1779         return (0);
1780 }
1781
1782 static int
1783 bridge_ioctl_delspan(struct bridge_softc *sc, void *arg)
1784 {
1785         struct ifbreq *req = arg;
1786         struct bridge_iflist *bif;
1787         struct ifnet *ifs;
1788
1789         ifs = ifunit(req->ifbr_ifsname);
1790         if (ifs == NULL)
1791                 return (ENOENT);
1792
1793         TAILQ_FOREACH(bif, &sc->sc_spanlist, bif_next)
1794                 if (ifs == bif->bif_ifp)
1795                         break;
1796
1797         if (bif == NULL)
1798                 return (ENOENT);
1799
1800         bridge_delete_span(sc, bif);
1801
1802         if (TAILQ_EMPTY(&sc->sc_spanlist))
1803                 sc->sc_span = 0;
1804
1805         return (0);
1806 }
1807
1808 static void
1809 bridge_ifdetach_dispatch(netmsg_t msg)
1810 {
1811         struct ifnet *ifp, *bifp;
1812         struct bridge_softc *sc;
1813         struct bridge_iflist *bif;
1814
1815         ifp = msg->lmsg.u.ms_resultp;
1816         sc = ifp->if_bridge;
1817
1818         /* Check if the interface is a bridge member */
1819         if (sc != NULL) {
1820                 bifp = sc->sc_ifp;
1821
1822                 ifnet_serialize_all(bifp);
1823
1824                 bif = bridge_lookup_member_if(sc, ifp);
1825                 if (bif != NULL) {
1826                         bridge_delete_member(sc, bif, 1);
1827                 } else {
1828                         /* XXX Why bif will be NULL? */
1829                 }
1830
1831                 ifnet_deserialize_all(bifp);
1832                 goto reply;
1833         }
1834
1835         crit_enter();   /* XXX MP */
1836
1837         /* Check if the interface is a span port */
1838         LIST_FOREACH(sc, &bridge_list, sc_list) {
1839                 bifp = sc->sc_ifp;
1840
1841                 ifnet_serialize_all(bifp);
1842
1843                 TAILQ_FOREACH(bif, &sc->sc_spanlist, bif_next)
1844                         if (ifp == bif->bif_ifp) {
1845                                 bridge_delete_span(sc, bif);
1846                                 break;
1847                         }
1848
1849                 ifnet_deserialize_all(bifp);
1850         }
1851
1852         crit_exit();
1853
1854 reply:
1855         lwkt_replymsg(&msg->lmsg, 0);
1856 }
1857
1858 /*
1859  * bridge_ifdetach:
1860  *
1861  *      Detach an interface from a bridge.  Called when a member
1862  *      interface is detaching.
1863  */
1864 static void
1865 bridge_ifdetach(void *arg __unused, struct ifnet *ifp)
1866 {
1867         struct netmsg_base msg;
1868
1869         netmsg_init(&msg, NULL, &curthread->td_msgport,
1870                     0, bridge_ifdetach_dispatch);
1871         msg.lmsg.u.ms_resultp = ifp;
1872
1873         lwkt_domsg(BRIDGE_CFGPORT, &msg.lmsg, 0);
1874 }
1875
1876 /*
1877  * bridge_init:
1878  *
1879  *      Initialize a bridge interface.
1880  */
1881 static void
1882 bridge_init(void *xsc)
1883 {
1884         bridge_control(xsc, SIOCSIFFLAGS, bridge_ioctl_init, NULL);
1885 }
1886
1887 /*
1888  * bridge_stop:
1889  *
1890  *      Stop the bridge interface.
1891  */
1892 static void
1893 bridge_stop(struct ifnet *ifp)
1894 {
1895         bridge_control(ifp->if_softc, SIOCSIFFLAGS, bridge_ioctl_stop, NULL);
1896 }
1897
1898 /*
1899  * Returns TRUE if the packet is being sent 'from us'... from our bridge
1900  * interface or from any member of our bridge interface.  This is used
1901  * later on to force the MAC to be the MAC of our bridge interface.
1902  */
1903 static int
1904 bridge_from_us(struct bridge_softc *sc, struct ether_header *eh)
1905 {
1906         struct bridge_iflist *bif;
1907
1908         if (memcmp(eh->ether_shost, IF_LLADDR(sc->sc_ifp), ETHER_ADDR_LEN) == 0)
1909                 return (1);
1910
1911         TAILQ_FOREACH(bif, &sc->sc_iflists[mycpuid], bif_next) {
1912                 if (memcmp(eh->ether_shost, IF_LLADDR(bif->bif_ifp),
1913                            ETHER_ADDR_LEN) == 0) {
1914                         return (1);
1915                 }
1916         }
1917         return (0);
1918 }
1919
1920 /*
1921  * bridge_enqueue:
1922  *
1923  *      Enqueue a packet on a bridge member interface.
1924  *
1925  */
1926 void
1927 bridge_enqueue(struct ifnet *dst_ifp, struct mbuf *m)
1928 {
1929         struct netmsg_packet *nmp;
1930
1931         nmp = &m->m_hdr.mh_netmsg;
1932         netmsg_init(&nmp->base, NULL, &netisr_apanic_rport,
1933                     0, bridge_enqueue_handler);
1934         nmp->nm_packet = m;
1935         nmp->base.lmsg.u.ms_resultp = dst_ifp;
1936
1937         lwkt_sendmsg(ifnet_portfn(mycpu->gd_cpuid), &nmp->base.lmsg);
1938 }
1939
1940 /*
1941  * bridge_output:
1942  *
1943  *      Send output from a bridge member interface.  This
1944  *      performs the bridging function for locally originated
1945  *      packets.
1946  *
1947  *      The mbuf has the Ethernet header already attached.  We must
1948  *      enqueue or free the mbuf before returning.
1949  */
1950 static int
1951 bridge_output(struct ifnet *ifp, struct mbuf *m)
1952 {
1953         struct bridge_softc *sc = ifp->if_bridge;
1954         struct bridge_iflist *bif, *nbif;
1955         struct ether_header *eh;
1956         struct ifnet *dst_if, *alt_if, *bifp;
1957         int from_us;
1958         int priority;
1959         int alt_priority;
1960
1961         ASSERT_IFNET_NOT_SERIALIZED_ALL(ifp);
1962
1963         /*
1964          * Make sure that we are still a member of a bridge interface.
1965          */
1966         if (sc == NULL) {
1967                 m_freem(m);
1968                 return (0);
1969         }
1970         bifp = sc->sc_ifp;
1971
1972         /*
1973          * Acquire header
1974          */
1975         if (m->m_len < ETHER_HDR_LEN) {
1976                 m = m_pullup(m, ETHER_HDR_LEN);
1977                 if (m == NULL) {
1978                         bifp->if_oerrors++;
1979                         return (0);
1980                 }
1981         }
1982         eh = mtod(m, struct ether_header *);
1983         from_us = bridge_from_us(sc, eh);
1984
1985         /*
1986          * If bridge is down, but the original output interface is up,
1987          * go ahead and send out that interface.  Otherwise, the packet
1988          * is dropped below.
1989          */
1990         if ((bifp->if_flags & IFF_RUNNING) == 0) {
1991                 dst_if = ifp;
1992                 goto sendunicast;
1993         }
1994
1995         /*
1996          * If the packet is a multicast, or we don't know a better way to
1997          * get there, send to all interfaces.
1998          */
1999         if (ETHER_IS_MULTICAST(eh->ether_dhost))
2000                 dst_if = NULL;
2001         else
2002                 dst_if = bridge_rtlookup(sc, eh->ether_dhost);
2003
2004         if (dst_if == NULL) {
2005                 struct mbuf *mc;
2006                 int used = 0;
2007                 int found = 0;
2008
2009                 if (sc->sc_span)
2010                         bridge_span(sc, m);
2011
2012                 alt_if = NULL;
2013                 alt_priority = 0;
2014                 TAILQ_FOREACH_MUTABLE(bif, &sc->sc_iflists[mycpuid],
2015                                      bif_next, nbif) {
2016                         dst_if = bif->bif_ifp;
2017
2018                         if ((dst_if->if_flags & IFF_RUNNING) == 0)
2019                                 continue;
2020
2021                         /*
2022                          * If this is not the original output interface,
2023                          * and the interface is participating in spanning
2024                          * tree, make sure the port is in a state that
2025                          * allows forwarding.
2026                          *
2027                          * We keep track of a possible backup IF if we are
2028                          * unable to find any interfaces to forward through.
2029                          *
2030                          * NOTE: Currently round-robining is not implemented
2031                          *       across bonded interface groups (needs an
2032                          *       algorithm to track each group somehow).
2033                          *
2034                          *       Similarly we track only one alternative
2035                          *       interface if no suitable interfaces are
2036                          *       found.
2037                          */
2038                         if (dst_if != ifp &&
2039                             (bif->bif_flags & IFBIF_STP) != 0) {
2040                                 switch (bif->bif_state) {
2041                                 case BSTP_IFSTATE_BONDED:
2042                                         if (bif->bif_priority + 512 >
2043                                             alt_priority) {
2044                                                 alt_priority =
2045                                                     bif->bif_priority + 512;
2046                                                 alt_if = bif->bif_ifp;
2047                                         }
2048                                         continue;
2049                                 case BSTP_IFSTATE_BLOCKING:
2050                                         if (bif->bif_priority + 256 >
2051                                             alt_priority) {
2052                                                 alt_priority =
2053                                                     bif->bif_priority + 256;
2054                                                 alt_if = bif->bif_ifp;
2055                                         }
2056                                         continue;
2057                                 case BSTP_IFSTATE_LEARNING:
2058                                         if (bif->bif_priority > alt_priority) {
2059                                                 alt_priority =
2060                                                     bif->bif_priority;
2061                                                 alt_if = bif->bif_ifp;
2062                                         }
2063                                         continue;
2064                                 case BSTP_IFSTATE_L1BLOCKING:
2065                                 case BSTP_IFSTATE_LISTENING:
2066                                 case BSTP_IFSTATE_DISABLED:
2067                                         continue;
2068                                 default:
2069                                         /* FORWARDING */
2070                                         break;
2071                                 }
2072                         }
2073
2074                         KKASSERT(used == 0);
2075                         if (TAILQ_NEXT(bif, bif_next) == NULL) {
2076                                 used = 1;
2077                                 mc = m;
2078                         } else {
2079                                 mc = m_copypacket(m, MB_DONTWAIT);
2080                                 if (mc == NULL) {
2081                                         bifp->if_oerrors++;
2082                                         continue;
2083                                 }
2084                         }
2085
2086                         /*
2087                          * If the packet is 'from' us override ether_shost.
2088                          */
2089                         bridge_handoff(sc, dst_if, mc, from_us);
2090                         found = 1;
2091
2092                         if (nbif != NULL && !nbif->bif_onlist) {
2093                                 KKASSERT(bif->bif_onlist);
2094                                 nbif = TAILQ_NEXT(bif, bif_next);
2095                         }
2096                 }
2097
2098                 /*
2099                  * If we couldn't find anything use the backup interface
2100                  * if we have one.
2101                  */
2102                 if (found == 0 && alt_if) {
2103                         KKASSERT(used == 0);
2104                         mc = m;
2105                         used = 1;
2106                         bridge_handoff(sc, alt_if, mc, from_us);
2107                 }
2108
2109                 if (used == 0)
2110                         m_freem(m);
2111                 return (0);
2112         }
2113
2114 sendunicast:
2115         /*
2116          * If STP is enabled on the target we are an equal opportunity
2117          * employer and do not necessarily output to dst_if.  Instead
2118          * scan available links with the same MAC as the current dst_if
2119          * and choose the best one.
2120          *
2121          * We also need to do this because arp entries tag onto a particular
2122          * interface and if it happens to be dead then the packets will
2123          * go into a bit bucket.
2124          *
2125          * If LINK2 is set the matching links are bonded and we-round robin.
2126          * (the MAC address must be the same for the participating links).
2127          * In this case links in a STP FORWARDING or BONDED state are
2128          * allowed for unicast packets.
2129          */
2130         bif = bridge_lookup_member_if(sc, dst_if);
2131         if (bif->bif_flags & IFBIF_STP) {
2132                 alt_if = NULL;
2133                 priority = 0;
2134                 alt_priority = 0;
2135
2136                 TAILQ_FOREACH_MUTABLE(bif, &sc->sc_iflists[mycpuid],
2137                                      bif_next, nbif) {
2138                         /*
2139                          * Ignore member interfaces which aren't running.
2140                          */
2141                         if ((bif->bif_ifp->if_flags & IFF_RUNNING) == 0)
2142                                 continue;
2143
2144                         /*
2145                          * member interfaces with the same MAC (usually TAPs)
2146                          * are considered to be the same.  Select the best
2147                          * one from BONDED or FORWARDING and keep track of
2148                          * the best one in the BLOCKING state if no
2149                          * candidates are available otherwise.
2150                          */
2151                         if (memcmp(IF_LLADDR(bif->bif_ifp),
2152                                    IF_LLADDR(dst_if),
2153                                    ETHER_ADDR_LEN) != 0) {
2154                                 continue;
2155                         }
2156
2157                         switch(bif->bif_state) {
2158                         case BSTP_IFSTATE_BLOCKING:
2159                                 if (bif->bif_priority > alt_priority + 256) {
2160                                         alt_priority = bif->bif_priority + 256;
2161                                         alt_if = bif->bif_ifp;
2162                                 }
2163                                 continue;
2164                         case BSTP_IFSTATE_LEARNING:
2165                                 if (bif->bif_priority > alt_priority) {
2166                                         alt_priority = bif->bif_priority;
2167                                         alt_if = bif->bif_ifp;
2168                                 }
2169                                 continue;
2170                         case BSTP_IFSTATE_L1BLOCKING:
2171                         case BSTP_IFSTATE_LISTENING:
2172                         case BSTP_IFSTATE_DISABLED:
2173                                 continue;
2174                         default:
2175                                 /* bonded, forwarding */
2176                                 break;
2177                         }
2178
2179                         /*
2180                          * XXX we need to use the toepliz hash or
2181                          *     something like that instead of
2182                          *     round-robining.
2183                          */
2184                         if (sc->sc_ifp->if_flags & IFF_LINK2) {
2185                                 dst_if = bif->bif_ifp;
2186                                 if (++bif->bif_bond_count >=
2187                                     bif->bif_bond_weight) {
2188                                         bif->bif_bond_count = 0;
2189                                         TAILQ_REMOVE(&sc->sc_iflists[mycpuid],
2190                                                      bif, bif_next);
2191                                         TAILQ_INSERT_TAIL(
2192                                                      &sc->sc_iflists[mycpuid],
2193                                                      bif, bif_next);
2194                                 }
2195                                 priority = 1;
2196                                 break;
2197                         }
2198                         if (bif->bif_priority > priority) {
2199                                 priority = bif->bif_priority;
2200                                 dst_if = bif->bif_ifp;
2201                         }
2202                 }
2203
2204                 /*
2205                  * Interface of last resort if nothing was found.
2206                  */
2207                 if (priority == 0 && alt_if)
2208                         dst_if = alt_if;
2209         }
2210
2211         if (sc->sc_span)
2212                 bridge_span(sc, m);
2213         if ((dst_if->if_flags & IFF_RUNNING) == 0)
2214                 m_freem(m);
2215         else
2216                 bridge_handoff(sc, dst_if, m, from_us);
2217         return (0);
2218 }
2219
2220 /*
2221  * Returns the bridge interface associated with an ifc.
2222  * Pass ifp->if_bridge (must not be NULL).  Used by the ARP
2223  * code to supply the bridge for the is-at info, making
2224  * the bridge responsible for matching local addresses.
2225  *
2226  * Without this the ARP code will supply bridge member interfaces
2227  * for the is-at which makes it difficult the bridge to fail-over
2228  * interfaces (amoung other things).
2229  */
2230 static struct ifnet *
2231 bridge_interface(void *if_bridge)
2232 {
2233         struct bridge_softc *sc = if_bridge;
2234         return (sc->sc_ifp);
2235 }
2236
2237 /*
2238  * bridge_start:
2239  *
2240  *      Start output on a bridge.
2241  */
2242 static void
2243 bridge_start(struct ifnet *ifp)
2244 {
2245         struct bridge_softc *sc = ifp->if_softc;
2246
2247         ASSERT_IFNET_SERIALIZED_TX(ifp);
2248
2249         ifp->if_flags |= IFF_OACTIVE;
2250         for (;;) {
2251                 struct ifnet *dst_if = NULL;
2252                 struct ether_header *eh;
2253                 struct mbuf *m;
2254
2255                 m = ifq_dequeue(&ifp->if_snd, NULL);
2256                 if (m == NULL)
2257                         break;
2258
2259                 if (m->m_len < sizeof(*eh)) {
2260                         m = m_pullup(m, sizeof(*eh));
2261                         if (m == NULL) {
2262                                 ifp->if_oerrors++;
2263                                 continue;
2264                         }
2265                 }
2266                 eh = mtod(m, struct ether_header *);
2267
2268                 BPF_MTAP(ifp, m);
2269                 ifp->if_opackets++;
2270
2271                 if ((m->m_flags & (M_BCAST|M_MCAST)) == 0)
2272                         dst_if = bridge_rtlookup(sc, eh->ether_dhost);
2273
2274                 if (dst_if == NULL)
2275                         bridge_start_bcast(sc, m);
2276                 else
2277                         bridge_enqueue(dst_if, m);
2278         }
2279         ifp->if_flags &= ~IFF_OACTIVE;
2280 }
2281
2282 /*
2283  * bridge_forward:
2284  *
2285  *      Forward packets received on a bridge interface via the input
2286  *      path.
2287  *
2288  *      This implements the forwarding function of the bridge.
2289  */
2290 static void
2291 bridge_forward(struct bridge_softc *sc, struct mbuf *m)
2292 {
2293         struct bridge_iflist *bif, *nbif;
2294         struct ifnet *src_if, *dst_if, *alt_if, *ifp;
2295         struct ether_header *eh;
2296         int priority;
2297         int alt_priority;
2298         int from_blocking;
2299
2300         src_if = m->m_pkthdr.rcvif;
2301         ifp = sc->sc_ifp;
2302
2303         ASSERT_IFNET_NOT_SERIALIZED_ALL(ifp);
2304
2305         ifp->if_ipackets++;
2306         ifp->if_ibytes += m->m_pkthdr.len;
2307
2308         /*
2309          * Look up the bridge_iflist.
2310          */
2311         bif = bridge_lookup_member_if(sc, src_if);
2312         if (bif == NULL) {
2313                 /* Interface is not a bridge member (anymore?) */
2314                 m_freem(m);
2315                 return;
2316         }
2317
2318         /*
2319          * In spanning tree mode receiving a packet from an interface
2320          * in a BLOCKING state is allowed, it could be a member of last
2321          * resort from the sender's point of view, but forwarding it is
2322          * not allowed.
2323          *
2324          * The sender's spanning tree will eventually sync up and the
2325          * sender will go into a BLOCKING state too (but this still may be
2326          * an interface of last resort during state changes).
2327          */
2328         if (bif->bif_flags & IFBIF_STP) {
2329                 switch (bif->bif_state) {
2330                 case BSTP_IFSTATE_L1BLOCKING:
2331                 case BSTP_IFSTATE_LISTENING:
2332                 case BSTP_IFSTATE_DISABLED:
2333                         m_freem(m);
2334                         return;
2335                 default:
2336                         /* learning, blocking, bonded, forwarding */
2337                         break;
2338                 }
2339         }
2340         from_blocking = (bif->bif_state == BSTP_IFSTATE_BLOCKING);
2341
2342         eh = mtod(m, struct ether_header *);
2343
2344         /*
2345          * If the interface is learning, and the source
2346          * address is valid and not multicast, record
2347          * the address.
2348          */
2349         if ((bif->bif_flags & IFBIF_LEARNING) != 0 &&
2350             from_blocking == 0 &&
2351             ETHER_IS_MULTICAST(eh->ether_shost) == 0 &&
2352             (eh->ether_shost[0] == 0 &&
2353              eh->ether_shost[1] == 0 &&
2354              eh->ether_shost[2] == 0 &&
2355              eh->ether_shost[3] == 0 &&
2356              eh->ether_shost[4] == 0 &&
2357              eh->ether_shost[5] == 0) == 0) {
2358                 bridge_rtupdate(sc, eh->ether_shost, src_if, IFBAF_DYNAMIC);
2359         }
2360
2361         /*
2362          * Don't forward from an interface in the listening or learning
2363          * state.  That is, in the learning state we learn information
2364          * but we throw away the packets.
2365          *
2366          * We let through packets on interfaces in the blocking state.
2367          * The blocking state is applicable to the send side, not the
2368          * receive side.
2369          */
2370         if ((bif->bif_flags & IFBIF_STP) != 0 &&
2371             (bif->bif_state == BSTP_IFSTATE_LISTENING ||
2372              bif->bif_state == BSTP_IFSTATE_LEARNING)) {
2373                 m_freem(m);
2374                 return;
2375         }
2376
2377         /*
2378          * At this point, the port either doesn't participate
2379          * in spanning tree or it is in the forwarding state.
2380          */
2381
2382         /*
2383          * If the packet is unicast, destined for someone on
2384          * "this" side of the bridge, drop it.
2385          */
2386         if ((m->m_flags & (M_BCAST|M_MCAST)) == 0) {
2387                 dst_if = bridge_rtlookup(sc, eh->ether_dhost);
2388                 if (src_if == dst_if) {
2389                         m_freem(m);
2390                         return;
2391                 }
2392         } else {
2393                 /* ...forward it to all interfaces. */
2394                 ifp->if_imcasts++;
2395                 dst_if = NULL;
2396         }
2397
2398         /*
2399          * Brodcast if we do not have forwarding information.  However, if
2400          * we received the packet on a blocking interface we do not do this
2401          * (unless you really want to blow up your network).
2402          */
2403         if (dst_if == NULL) {
2404                 if (from_blocking)
2405                         m_freem(m);
2406                 else
2407                         bridge_broadcast(sc, src_if, m);
2408                 return;
2409         }
2410
2411         /*
2412          * Unicast, kinda replicates the output side of bridge_output().
2413          */
2414         bif = bridge_lookup_member_if(sc, dst_if);
2415         if (bif == NULL) {
2416                 /* Not a member of the bridge (anymore?) */
2417                 m_freem(m);
2418                 return;
2419         }
2420
2421         if (bif->bif_flags & IFBIF_STP) {
2422                 alt_if = NULL;
2423                 alt_priority = 0;
2424                 priority = 0;
2425
2426                 TAILQ_FOREACH_MUTABLE(bif, &sc->sc_iflists[mycpuid],
2427                                      bif_next, nbif) {
2428                         if (memcmp(IF_LLADDR(bif->bif_ifp),
2429                                    IF_LLADDR(dst_if),
2430                                    ETHER_ADDR_LEN) != 0) {
2431                                 continue;
2432                         }
2433
2434                         if ((bif->bif_ifp->if_flags & IFF_RUNNING) == 0)
2435                                 continue;
2436
2437                         /*
2438                          * NOTE: We allow tranmissions through a BLOCKING
2439                          *       or LEARNING interface only as a last resort.
2440                          *       We DISALLOW both cases if the receiving
2441                          *
2442                          * NOTE: If we send a packet through a learning
2443                          *       interface the receiving end (if also in
2444                          *       LEARNING) will throw it away, so this is
2445                          *       the ultimate last resort.
2446                          */
2447                         switch(bif->bif_state) {
2448                         case BSTP_IFSTATE_BLOCKING:
2449                                 if (from_blocking == 0 &&
2450                                     bif->bif_priority + 256 > alt_priority) {
2451                                         alt_priority = bif->bif_priority + 256;
2452                                         alt_if = bif->bif_ifp;
2453                                 }
2454                                 continue;
2455                         case BSTP_IFSTATE_LEARNING:
2456                                 if (from_blocking == 0 &&
2457                                     bif->bif_priority > alt_priority) {
2458                                         alt_priority = bif->bif_priority;
2459                                         alt_if = bif->bif_ifp;
2460                                 }
2461                                 continue;
2462                         case BSTP_IFSTATE_L1BLOCKING:
2463                         case BSTP_IFSTATE_LISTENING:
2464                         case BSTP_IFSTATE_DISABLED:
2465                                 continue;
2466                         default:
2467                                 /* FORWARDING, BONDED */
2468                                 break;
2469                         }
2470
2471                         /*
2472                          * XXX we need to use the toepliz hash or
2473                          *     something like that instead of
2474                          *     round-robining.
2475                          */
2476                         if (sc->sc_ifp->if_flags & IFF_LINK2) {
2477                                 dst_if = bif->bif_ifp;
2478                                 if (++bif->bif_bond_count >=
2479                                     bif->bif_bond_weight) {
2480                                         bif->bif_bond_count = 0;
2481                                         TAILQ_REMOVE(&sc->sc_iflists[mycpuid],
2482                                                      bif, bif_next);
2483                                         TAILQ_INSERT_TAIL(
2484                                                      &sc->sc_iflists[mycpuid],
2485                                                      bif, bif_next);
2486                                 }
2487                                 priority = 1;
2488                                 break;
2489                         }
2490
2491                         /*
2492                          * Select best interface in the FORWARDING or
2493                          * BONDED set.  Well, there shouldn't be any
2494                          * in a BONDED state if LINK2 is not set (they
2495                          * will all be in a BLOCKING) state, but there
2496                          * could be a transitory condition here.
2497                          */
2498                         if (bif->bif_priority > priority) {
2499                                 priority = bif->bif_priority;
2500                                 dst_if = bif->bif_ifp;
2501                         }
2502                 }
2503
2504                 /*
2505                  * If no suitable interfaces were found but a suitable
2506                  * alternative interface was found, use the alternative
2507                  * interface.
2508                  */
2509                 if (priority == 0 && alt_if)
2510                         dst_if = alt_if;
2511         }
2512
2513         /*
2514          * At this point, we're dealing with a unicast frame
2515          * going to a different interface.
2516          */
2517         if ((dst_if->if_flags & IFF_RUNNING) == 0) {
2518                 m_freem(m);
2519                 return;
2520         }
2521
2522         if (inet_pfil_hook.ph_hashooks > 0
2523 #ifdef INET6
2524             || inet6_pfil_hook.ph_hashooks > 0
2525 #endif
2526             ) {
2527                 if (bridge_pfil(&m, ifp, src_if, PFIL_IN) != 0)
2528                         return;
2529                 if (m == NULL)
2530                         return;
2531
2532                 if (bridge_pfil(&m, ifp, dst_if, PFIL_OUT) != 0)
2533                         return;
2534                 if (m == NULL)
2535                         return;
2536         }
2537         bridge_handoff(sc, dst_if, m, 0);
2538 }
2539
2540 /*
2541  * bridge_input:
2542  *
2543  *      Receive input from a member interface.  Queue the packet for
2544  *      bridging if it is not for us.
2545  */
2546 static struct mbuf *
2547 bridge_input(struct ifnet *ifp, struct mbuf *m)
2548 {
2549         struct bridge_softc *sc = ifp->if_bridge;
2550         struct bridge_iflist *bif;
2551         struct ifnet *bifp, *new_ifp;
2552         struct ether_header *eh;
2553         struct mbuf *mc, *mc2;
2554         int from_blocking;
2555
2556         ASSERT_IFNET_NOT_SERIALIZED_ALL(ifp);
2557
2558         /*
2559          * Make sure that we are still a member of a bridge interface.
2560          */
2561         if (sc == NULL)
2562                 return m;
2563
2564         new_ifp = NULL;
2565         bifp = sc->sc_ifp;
2566
2567         if ((bifp->if_flags & IFF_RUNNING) == 0)
2568                 goto out;
2569
2570         /*
2571          * Implement support for bridge monitoring.  If this flag has been
2572          * set on this interface, discard the packet once we push it through
2573          * the bpf(4) machinery, but before we do, increment various counters
2574          * associated with this bridge.
2575          */
2576         if (bifp->if_flags & IFF_MONITOR) {
2577                 /* Change input interface to this bridge */
2578                 m->m_pkthdr.rcvif = bifp;
2579
2580                 BPF_MTAP(bifp, m);
2581
2582                 /* Update bridge's ifnet statistics */
2583                 bifp->if_ipackets++;
2584                 bifp->if_ibytes += m->m_pkthdr.len;
2585                 if (m->m_flags & (M_MCAST | M_BCAST))
2586                         bifp->if_imcasts++;
2587
2588                 m_freem(m);
2589                 m = NULL;
2590                 goto out;
2591         }
2592
2593         /*
2594          * Handle the ether_header
2595          *
2596          * In all cases if the packet is destined for us via our MAC
2597          * we must clear BRIDGE_MBUF_TAGGED to ensure that we don't
2598          * repeat the source MAC out the same interface.
2599          *
2600          * This first test against our bridge MAC is the fast-path.
2601          *
2602          * NOTE!  The bridge interface can serve as an endpoint for
2603          *        communication but normally there are no IPs associated
2604          *        with it so you cannot route through it.  Instead what
2605          *        you do is point your default route *THROUGH* the bridge
2606          *        to the actual default router for one of the bridged spaces.
2607          *
2608          *        Another possibility is to put all your IP specifications
2609          *        on the bridge instead of on the individual interfaces.  If
2610          *        you do this it should be possible to use the bridge as an
2611          *        end point and route (rather than switch) through it using
2612          *        the default route or ipfw forwarding rules.
2613          */
2614
2615         /*
2616          * Acquire header
2617          */
2618         if (m->m_len < ETHER_HDR_LEN) {
2619                 m = m_pullup(m, ETHER_HDR_LEN);
2620                 if (m == NULL)
2621                         goto out;
2622         }
2623         eh = mtod(m, struct ether_header *);
2624         m->m_pkthdr.fw_flags |= BRIDGE_MBUF_TAGGED;
2625         bcopy(eh, &m->m_pkthdr.br.ether, sizeof(*eh));
2626
2627         if ((bridge_debug & 1) &&
2628             (ntohs(eh->ether_type) == ETHERTYPE_ARP ||
2629             ntohs(eh->ether_type) == ETHERTYPE_REVARP)) {
2630                 kprintf("%02x:%02x:%02x:%02x:%02x:%02x "
2631                         "%02x:%02x:%02x:%02x:%02x:%02x type %04x "
2632                         "lla %02x:%02x:%02x:%02x:%02x:%02x\n",
2633                         eh->ether_dhost[0],
2634                         eh->ether_dhost[1],
2635                         eh->ether_dhost[2],
2636                         eh->ether_dhost[3],
2637                         eh->ether_dhost[4],
2638                         eh->ether_dhost[5],
2639                         eh->ether_shost[0],
2640                         eh->ether_shost[1],
2641                         eh->ether_shost[2],
2642                         eh->ether_shost[3],
2643                         eh->ether_shost[4],
2644                         eh->ether_shost[5],
2645                         eh->ether_type,
2646                         ((u_char *)IF_LLADDR(bifp))[0],
2647                         ((u_char *)IF_LLADDR(bifp))[1],
2648                         ((u_char *)IF_LLADDR(bifp))[2],
2649                         ((u_char *)IF_LLADDR(bifp))[3],
2650                         ((u_char *)IF_LLADDR(bifp))[4],
2651                         ((u_char *)IF_LLADDR(bifp))[5]
2652                 );
2653         }
2654
2655         if (memcmp(eh->ether_dhost, IF_LLADDR(bifp), ETHER_ADDR_LEN) == 0) {
2656                 /*
2657                  * If the packet is for us, set the packets source as the
2658                  * bridge, and return the packet back to ifnet.if_input for
2659                  * local processing.
2660                  */
2661                 m->m_pkthdr.fw_flags &= ~BRIDGE_MBUF_TAGGED;
2662                 KASSERT(bifp->if_bridge == NULL,
2663                         ("loop created in bridge_input"));
2664                 if (pfil_member != 0) {
2665                         if (inet_pfil_hook.ph_hashooks > 0
2666 #ifdef INET6
2667                             || inet6_pfil_hook.ph_hashooks > 0
2668 #endif
2669                         ) {
2670                                 if (bridge_pfil(&m, NULL, ifp, PFIL_IN) != 0)
2671                                         goto out;
2672                                 if (m == NULL)
2673                                         goto out;
2674                         }
2675                 }
2676                 new_ifp = bifp;
2677                 goto out;
2678         }
2679
2680         /*
2681          * Tap all packets arriving on the bridge, no matter if
2682          * they are local destinations or not.  In is in.
2683          */
2684         BPF_MTAP(bifp, m);
2685
2686         bif = bridge_lookup_member_if(sc, ifp);
2687         if (bif == NULL)
2688                 goto out;
2689
2690         if (sc->sc_span)
2691                 bridge_span(sc, m);
2692
2693         if (m->m_flags & (M_BCAST | M_MCAST)) {
2694                 /*
2695                  * Tap off 802.1D packets; they do not get forwarded.
2696                  */
2697                 if (memcmp(eh->ether_dhost, bstp_etheraddr,
2698                             ETHER_ADDR_LEN) == 0) {
2699                         ifnet_serialize_all(bifp);
2700                         bstp_input(sc, bif, m);
2701                         ifnet_deserialize_all(bifp);
2702
2703                         /* m is freed by bstp_input */
2704                         m = NULL;
2705                         goto out;
2706                 }
2707
2708                 /*
2709                  * Other than 802.11d packets, ignore packets if the
2710                  * interface is not in a good state.
2711                  *
2712                  * NOTE: Broadcast/mcast packets received on a blocking or
2713                  *       learning interface are allowed for local processing.
2714                  *
2715                  *       The sending side of a blocked port will stop
2716                  *       transmitting when a better alternative is found.
2717                  *       However, later on we will disallow the forwarding
2718                  *       of bcast/mcsat packets over a blocking interface.
2719                  */
2720                 if (bif->bif_flags & IFBIF_STP) {
2721                         switch (bif->bif_state) {
2722                         case BSTP_IFSTATE_L1BLOCKING:
2723                         case BSTP_IFSTATE_LISTENING:
2724                         case BSTP_IFSTATE_DISABLED:
2725                                 goto out;
2726                         default:
2727                                 /* blocking, learning, bonded, forwarding */
2728                                 break;
2729                         }
2730                 }
2731
2732                 /*
2733                  * Make a deep copy of the packet and enqueue the copy
2734                  * for bridge processing; return the original packet for
2735                  * local processing.
2736                  */
2737                 mc = m_dup(m, MB_DONTWAIT);
2738                 if (mc == NULL)
2739                         goto out;
2740
2741                 /*
2742                  * It's just too dangerous to allow bcast/mcast over a
2743                  * blocked interface, eventually the network will sort
2744                  * itself out and a better path will be found.
2745                  */
2746                 if ((bif->bif_flags & IFBIF_STP) == 0 ||
2747                     bif->bif_state != BSTP_IFSTATE_BLOCKING) {
2748                         bridge_forward(sc, mc);
2749                 }
2750
2751                 /*
2752                  * Reinject the mbuf as arriving on the bridge so we have a
2753                  * chance at claiming multicast packets. We can not loop back
2754                  * here from ether_input as a bridge is never a member of a
2755                  * bridge.
2756                  */
2757                 KASSERT(bifp->if_bridge == NULL,
2758                         ("loop created in bridge_input"));
2759                 mc2 = m_dup(m, MB_DONTWAIT);
2760 #ifdef notyet
2761                 if (mc2 != NULL) {
2762                         /* Keep the layer3 header aligned */
2763                         int i = min(mc2->m_pkthdr.len, max_protohdr);
2764                         mc2 = m_copyup(mc2, i, ETHER_ALIGN);
2765                 }
2766 #endif
2767                 if (mc2 != NULL) {
2768                         /*
2769                          * Don't tap to bpf(4) again; we have already done
2770                          * the tapping.
2771                          *
2772                          * Leave m_pkthdr.rcvif alone, so ARP replies are
2773                          * processed as coming in on the correct interface.
2774                          *
2775                          * Clear the bridge flag for local processing in
2776                          * case the packet gets routed.
2777                          */
2778                         mc2->m_pkthdr.fw_flags &= ~BRIDGE_MBUF_TAGGED;
2779                         ether_reinput_oncpu(bifp, mc2, 0);
2780                 }
2781
2782                 /* Return the original packet for local processing. */
2783                 goto out;
2784         }
2785
2786         /*
2787          * Input of a unicast packet.  We have to allow unicast packets
2788          * input from links in the BLOCKING state as this might be an
2789          * interface of last resort.
2790          *
2791          * NOTE: We explicitly ignore normal packets received on a link
2792          *       in the BLOCKING state.  The point of being in that state
2793          *       is to avoid getting duplicate packets.
2794          *
2795          *       HOWEVER, if LINK2 is set the normal spanning tree code
2796          *       will mark an interface BLOCKING to avoid multi-cast/broadcast
2797          *       loops.  Unicast packets CAN still loop if we allow the
2798          *       case (hence we only do it in LINK2), but it isn't quite as
2799          *       bad as a broadcast packet looping.
2800          */
2801         from_blocking = 0;
2802         if (bif->bif_flags & IFBIF_STP) {
2803                 switch (bif->bif_state) {
2804                 case BSTP_IFSTATE_L1BLOCKING:
2805                 case BSTP_IFSTATE_LISTENING:
2806                 case BSTP_IFSTATE_DISABLED:
2807                         goto out;
2808                 case BSTP_IFSTATE_BLOCKING:
2809                         from_blocking = 1;
2810                         /* fall through */
2811                 default:
2812                         /* blocking, bonded, forwarding, learning */
2813                         break;
2814                 }
2815         }
2816
2817         /*
2818          * Unicast.  Make sure it's not for us.
2819          *
2820          * This loop is MPSAFE; the only blocking operation (bridge_rtupdate)
2821          * is followed by breaking out of the loop.
2822          */
2823         TAILQ_FOREACH(bif, &sc->sc_iflists[mycpuid], bif_next) {
2824                 if (bif->bif_ifp->if_type != IFT_ETHER)
2825                         continue;
2826
2827                 /*
2828                  * It is destined for an interface linked to the bridge.
2829                  * We want the bridge itself to take care of link level
2830                  * forwarding to member interfaces so reinput on the bridge.
2831                  * i.e. if you ping an IP on a target interface associated
2832                  * with the bridge, the arp is-at response should indicate
2833                  * the bridge MAC.
2834                  *
2835                  * Only update our addr list when learning if the port
2836                  * is not in a blocking state.  If it is we still allow
2837                  * the packet but we do not try to learn from it.
2838                  */
2839                 if (memcmp(IF_LLADDR(bif->bif_ifp), eh->ether_dhost,
2840                            ETHER_ADDR_LEN) == 0) {
2841                         if (bif->bif_ifp != ifp) {
2842                                 /* XXX loop prevention */
2843                                 m->m_flags |= M_ETHER_BRIDGED;
2844                         }
2845                         if ((bif->bif_flags & IFBIF_LEARNING) &&
2846                             bif->bif_state != BSTP_IFSTATE_BLOCKING) {
2847                                 bridge_rtupdate(sc, eh->ether_shost,
2848                                                 ifp, IFBAF_DYNAMIC);
2849                         }
2850                         new_ifp = bifp; /* not bif->bif_ifp */
2851                         m->m_pkthdr.fw_flags &= ~BRIDGE_MBUF_TAGGED;
2852                         goto out;
2853                 }
2854
2855                 /*
2856                  * Ignore received packets that were sent by us.
2857                  */
2858                 if (memcmp(IF_LLADDR(bif->bif_ifp), eh->ether_shost,
2859                            ETHER_ADDR_LEN) == 0) {
2860                         m_freem(m);
2861                         m = NULL;
2862                         goto out;
2863                 }
2864         }
2865
2866         /*
2867          * It isn't for us.
2868          *
2869          * Perform the bridge forwarding function, but disallow bridging
2870          * to interfaces in the blocking state if the packet came in on
2871          * an interface in the blocking state.
2872          */
2873         bridge_forward(sc, m);
2874         m = NULL;
2875
2876         /*
2877          * ether_reinput_oncpu() will reprocess rcvif as
2878          * coming from new_ifp (since we do not specify
2879          * REINPUT_KEEPRCVIF).
2880          */
2881 out:
2882         if (new_ifp != NULL) {
2883                 /*
2884                  * Clear the bridge flag for local processing in
2885                  * case the packet gets routed.
2886                  */
2887                 ether_reinput_oncpu(new_ifp, m, REINPUT_RUNBPF);
2888                 m = NULL;
2889         }
2890         return (m);
2891 }
2892
2893 /*
2894  * bridge_start_bcast:
2895  *
2896  *      Broadcast the packet sent from bridge to all member
2897  *      interfaces.
2898  *      This is a simplified version of bridge_broadcast(), however,
2899  *      this function expects caller to hold bridge's serializer.
2900  */
2901 static void
2902 bridge_start_bcast(struct bridge_softc *sc, struct mbuf *m)
2903 {
2904         struct bridge_iflist *bif;
2905         struct mbuf *mc;
2906         struct ifnet *dst_if, *alt_if, *bifp;
2907         int used = 0;
2908         int found = 0;
2909         int alt_priority;
2910
2911         bifp = sc->sc_ifp;
2912         ASSERT_IFNET_SERIALIZED_ALL(bifp);
2913
2914         /*
2915          * Following loop is MPSAFE; nothing is blocking
2916          * in the loop body.
2917          *
2918          * NOTE: We transmit through an member in the BLOCKING state only
2919          *       as a last resort.
2920          */
2921         alt_if = NULL;
2922         alt_priority = 0;
2923
2924         TAILQ_FOREACH(bif, &sc->sc_iflists[mycpuid], bif_next) {
2925                 dst_if = bif->bif_ifp;
2926
2927                 if (bif->bif_flags & IFBIF_STP) {
2928                         switch (bif->bif_state) {
2929                         case BSTP_IFSTATE_BLOCKING:
2930                                 if (bif->bif_priority > alt_priority) {
2931                                         alt_priority = bif->bif_priority;
2932                                         alt_if = bif->bif_ifp;
2933                                 }
2934                                 /* fall through */
2935                         case BSTP_IFSTATE_L1BLOCKING:
2936                         case BSTP_IFSTATE_DISABLED:
2937                                 continue;
2938                         default:
2939                                 /* listening, learning, bonded, forwarding */
2940                                 break;
2941                         }
2942                 }
2943
2944                 if ((bif->bif_flags & IFBIF_DISCOVER) == 0 &&
2945                     (m->m_flags & (M_BCAST|M_MCAST)) == 0)
2946                         continue;
2947
2948                 if ((dst_if->if_flags & IFF_RUNNING) == 0)
2949                         continue;
2950
2951                 if (TAILQ_NEXT(bif, bif_next) == NULL) {
2952                         mc = m;
2953                         used = 1;
2954                 } else {
2955                         mc = m_copypacket(m, MB_DONTWAIT);
2956                         if (mc == NULL) {
2957                                 bifp->if_oerrors++;
2958                                 continue;
2959                         }
2960                 }
2961                 found = 1;
2962                 bridge_enqueue(dst_if, mc);
2963         }
2964
2965         if (found == 0 && alt_if) {
2966                 KKASSERT(used == 0);
2967                 mc = m;
2968                 used = 1;
2969                 bridge_enqueue(alt_if, mc);
2970         }
2971
2972         if (used == 0)
2973                 m_freem(m);
2974 }
2975
2976 /*
2977  * bridge_broadcast:
2978  *
2979  *      Send a frame to all interfaces that are members of
2980  *      the bridge, except for the one on which the packet
2981  *      arrived.
2982  */
2983 static void
2984 bridge_broadcast(struct bridge_softc *sc, struct ifnet *src_if,
2985                  struct mbuf *m)
2986 {
2987         struct bridge_iflist *bif, *nbif;
2988         struct ether_header *eh;
2989         struct mbuf *mc;
2990         struct ifnet *dst_if, *alt_if, *bifp;
2991         int used;
2992         int found;
2993         int alt_priority;
2994         int from_us;
2995
2996         bifp = sc->sc_ifp;
2997         ASSERT_IFNET_NOT_SERIALIZED_ALL(bifp);
2998
2999         eh = mtod(m, struct ether_header *);
3000         from_us = bridge_from_us(sc, eh);
3001
3002         if (inet_pfil_hook.ph_hashooks > 0
3003 #ifdef INET6
3004             || inet6_pfil_hook.ph_hashooks > 0
3005 #endif
3006             ) {
3007                 if (bridge_pfil(&m, bifp, src_if, PFIL_IN) != 0)
3008                         return;
3009                 if (m == NULL)
3010                         return;
3011
3012                 /* Filter on the bridge interface before broadcasting */
3013                 if (bridge_pfil(&m, bifp, NULL, PFIL_OUT) != 0)
3014                         return;
3015                 if (m == NULL)
3016                         return;
3017         }
3018
3019         alt_if = 0;
3020         alt_priority = 0;
3021         found = 0;
3022         used = 0;
3023
3024         TAILQ_FOREACH_MUTABLE(bif, &sc->sc_iflists[mycpuid], bif_next, nbif) {
3025                 dst_if = bif->bif_ifp;
3026                 if (dst_if == src_if)
3027                         continue;
3028
3029                 if ((dst_if->if_flags & IFF_RUNNING) == 0)
3030                         continue;
3031
3032                 /*
3033                  * Generally speaking we only broadcast through forwarding
3034                  * interfaces.  If no interfaces are available we select
3035                  * a BONDED, BLOCKING, or LEARNING interface to forward
3036                  * through.
3037                  */
3038                 if (bif->bif_flags & IFBIF_STP) {
3039                         switch (bif->bif_state) {
3040                         case BSTP_IFSTATE_BONDED:
3041                                 if (bif->bif_priority + 512 > alt_priority) {
3042                                         alt_priority = bif->bif_priority + 512;
3043                                         alt_if = bif->bif_ifp;
3044                                 }
3045                                 continue;
3046                         case BSTP_IFSTATE_BLOCKING:
3047                                 if (bif->bif_priority + 256 > alt_priority) {
3048                                         alt_priority = bif->bif_priority + 256;
3049                                         alt_if = bif->bif_ifp;
3050                                 }
3051                                 continue;
3052                         case BSTP_IFSTATE_LEARNING:
3053                                 if (bif->bif_priority > alt_priority) {
3054                                         alt_priority = bif->bif_priority;
3055                                         alt_if = bif->bif_ifp;
3056                                 }
3057                                 continue;
3058                         case BSTP_IFSTATE_L1BLOCKING:
3059                         case BSTP_IFSTATE_DISABLED:
3060                         case BSTP_IFSTATE_LISTENING:
3061                                 continue;
3062                         default:
3063                                 /* forwarding */
3064                                 break;
3065                         }
3066                 }
3067
3068                 if ((bif->bif_flags & IFBIF_DISCOVER) == 0 &&
3069                     (m->m_flags & (M_BCAST|M_MCAST)) == 0) {
3070                         continue;
3071                 }
3072
3073                 if (TAILQ_NEXT(bif, bif_next) == NULL) {
3074                         mc = m;
3075                         used = 1;
3076                 } else {
3077                         mc = m_copypacket(m, MB_DONTWAIT);
3078                         if (mc == NULL) {
3079                                 sc->sc_ifp->if_oerrors++;
3080                                 continue;
3081                         }
3082                 }
3083                 found = 1;
3084
3085                 /*
3086                  * Filter on the output interface.  Pass a NULL bridge
3087                  * interface pointer so we do not redundantly filter on
3088                  * the bridge for each interface we broadcast on.
3089                  */
3090                 if (inet_pfil_hook.ph_hashooks > 0
3091 #ifdef INET6
3092                     || inet6_pfil_hook.ph_hashooks > 0
3093 #endif
3094                     ) {
3095                         if (bridge_pfil(&mc, NULL, dst_if, PFIL_OUT) != 0)
3096                                 continue;
3097                         if (mc == NULL)
3098                                 continue;
3099                 }
3100                 bridge_handoff(sc, dst_if, mc, from_us);
3101
3102                 if (nbif != NULL && !nbif->bif_onlist) {
3103                         KKASSERT(bif->bif_onlist);
3104                         nbif = TAILQ_NEXT(bif, bif_next);
3105                 }
3106         }
3107
3108         if (found == 0 && alt_if) {
3109                 KKASSERT(used == 0);
3110                 mc = m;
3111                 used = 1;
3112                 bridge_enqueue(alt_if, mc);
3113         }
3114
3115         if (used == 0)
3116                 m_freem(m);
3117 }
3118
3119 /*
3120  * bridge_span:
3121  *
3122  *      Duplicate a packet out one or more interfaces that are in span mode,
3123  *      the original mbuf is unmodified.
3124  */
3125 static void
3126 bridge_span(struct bridge_softc *sc, struct mbuf *m)
3127 {
3128         struct bridge_iflist *bif;
3129         struct ifnet *dst_if, *bifp;
3130         struct mbuf *mc;
3131
3132         bifp = sc->sc_ifp;
3133         ifnet_serialize_all(bifp);
3134
3135         TAILQ_FOREACH(bif, &sc->sc_spanlist, bif_next) {
3136                 dst_if = bif->bif_ifp;
3137
3138                 if ((dst_if->if_flags & IFF_RUNNING) == 0)
3139                         continue;
3140
3141                 mc = m_copypacket(m, MB_DONTWAIT);
3142                 if (mc == NULL) {
3143                         sc->sc_ifp->if_oerrors++;
3144                         continue;
3145                 }
3146                 bridge_enqueue(dst_if, mc);
3147         }
3148
3149         ifnet_deserialize_all(bifp);
3150 }
3151
3152 static void
3153 bridge_rtmsg_sync_handler(netmsg_t msg)
3154 {
3155         ifnet_forwardmsg(&msg->lmsg, mycpuid + 1);
3156 }
3157
3158 static void
3159 bridge_rtmsg_sync(struct bridge_softc *sc)
3160 {
3161         struct netmsg_base msg;
3162
3163         ASSERT_IFNET_NOT_SERIALIZED_ALL(sc->sc_ifp);
3164
3165         netmsg_init(&msg, NULL, &curthread->td_msgport,
3166                     0, bridge_rtmsg_sync_handler);
3167         ifnet_domsg(&msg.lmsg, 0);
3168 }
3169
3170 static __inline void
3171 bridge_rtinfo_update(struct bridge_rtinfo *bri, struct ifnet *dst_if,
3172                      int setflags, uint8_t flags, uint32_t timeo)
3173 {
3174         if ((bri->bri_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC &&
3175             bri->bri_ifp != dst_if)
3176                 bri->bri_ifp = dst_if;
3177         if ((flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC &&
3178             bri->bri_expire != time_second + timeo)
3179                 bri->bri_expire = time_second + timeo;
3180         if (setflags)
3181                 bri->bri_flags = flags;
3182 }
3183
3184 static int
3185 bridge_rtinstall_oncpu(struct bridge_softc *sc, const uint8_t *dst,
3186                        struct ifnet *dst_if, int setflags, uint8_t flags,
3187                        struct bridge_rtinfo **bri0)
3188 {
3189         struct bridge_rtnode *brt;
3190         struct bridge_rtinfo *bri;
3191
3192         if (mycpuid == 0) {
3193                 brt = bridge_rtnode_lookup(sc, dst);
3194                 if (brt != NULL) {
3195                         /*
3196                          * rtnode for 'dst' already exists.  We inform the
3197                          * caller about this by leaving bri0 as NULL.  The
3198                          * caller will terminate the intallation upon getting
3199                          * NULL bri0.  However, we still need to update the
3200                          * rtinfo.
3201                          */
3202                         KKASSERT(*bri0 == NULL);
3203
3204                         /* Update rtinfo */
3205                         bridge_rtinfo_update(brt->brt_info, dst_if, setflags,
3206                                              flags, sc->sc_brttimeout);
3207                         return 0;
3208                 }
3209
3210                 /*
3211                  * We only need to check brtcnt on CPU0, since if limit
3212                  * is to be exceeded, ENOSPC is returned.  Caller knows
3213                  * this and will terminate the installation.
3214                  */
3215                 if (sc->sc_brtcnt >= sc->sc_brtmax)
3216                         return ENOSPC;
3217
3218                 KKASSERT(*bri0 == NULL);
3219                 bri = kmalloc(sizeof(struct bridge_rtinfo), M_DEVBUF,
3220                                   M_WAITOK | M_ZERO);
3221                 *bri0 = bri;
3222
3223                 /* Setup rtinfo */
3224                 bri->bri_flags = IFBAF_DYNAMIC;
3225                 bridge_rtinfo_update(bri, dst_if, setflags, flags,
3226                                      sc->sc_brttimeout);
3227         } else {
3228                 bri = *bri0;
3229                 KKASSERT(bri != NULL);
3230         }
3231
3232         brt = kmalloc(sizeof(struct bridge_rtnode), M_DEVBUF,
3233                       M_WAITOK | M_ZERO);
3234         memcpy(brt->brt_addr, dst, ETHER_ADDR_LEN);
3235         brt->brt_info = bri;
3236
3237         bridge_rtnode_insert(sc, brt);
3238         return 0;
3239 }
3240
3241 static void
3242 bridge_rtinstall_handler(netmsg_t msg)
3243 {
3244         struct netmsg_brsaddr *brmsg = (struct netmsg_brsaddr *)msg;
3245         int error;
3246
3247         error = bridge_rtinstall_oncpu(brmsg->br_softc,
3248                                        brmsg->br_dst, brmsg->br_dst_if,
3249                                        brmsg->br_setflags, brmsg->br_flags,
3250                                        &brmsg->br_rtinfo);
3251         if (error) {
3252                 KKASSERT(mycpuid == 0 && brmsg->br_rtinfo == NULL);
3253                 lwkt_replymsg(&brmsg->base.lmsg, error);
3254                 return;
3255         } else if (brmsg->br_rtinfo == NULL) {
3256                 /* rtnode already exists for 'dst' */
3257                 KKASSERT(mycpuid == 0);
3258                 lwkt_replymsg(&brmsg->base.lmsg, 0);
3259                 return;
3260         }
3261         ifnet_forwardmsg(&brmsg->base.lmsg, mycpuid + 1);
3262 }
3263
3264 /*
3265  * bridge_rtupdate:
3266  *
3267  *      Add/Update a bridge routing entry.
3268  */
3269 static int
3270 bridge_rtupdate(struct bridge_softc *sc, const uint8_t *dst,
3271                 struct ifnet *dst_if, uint8_t flags)
3272 {
3273         struct bridge_rtnode *brt;
3274
3275         /*
3276          * A route for this destination might already exist.  If so,
3277          * update it, otherwise create a new one.
3278          */
3279         if ((brt = bridge_rtnode_lookup(sc, dst)) == NULL) {
3280                 struct netmsg_brsaddr *brmsg;
3281
3282                 if (sc->sc_brtcnt >= sc->sc_brtmax)
3283                         return ENOSPC;
3284
3285                 brmsg = kmalloc(sizeof(*brmsg), M_LWKTMSG, M_WAITOK | M_NULLOK);
3286                 if (brmsg == NULL)
3287                         return ENOMEM;
3288
3289                 netmsg_init(&brmsg->base, NULL, &netisr_afree_rport,
3290                             0, bridge_rtinstall_handler);
3291                 memcpy(brmsg->br_dst, dst, ETHER_ADDR_LEN);
3292                 brmsg->br_dst_if = dst_if;
3293                 brmsg->br_flags = flags;
3294                 brmsg->br_setflags = 0;
3295                 brmsg->br_softc = sc;
3296                 brmsg->br_rtinfo = NULL;
3297
3298                 ifnet_sendmsg(&brmsg->base.lmsg, 0);
3299                 return 0;
3300         }
3301         bridge_rtinfo_update(brt->brt_info, dst_if, 0, flags,
3302                              sc->sc_brttimeout);
3303         return 0;
3304 }
3305
3306 static int
3307 bridge_rtsaddr(struct bridge_softc *sc, const uint8_t *dst,
3308                struct ifnet *dst_if, uint8_t flags)
3309 {
3310         struct netmsg_brsaddr brmsg;
3311
3312         ASSERT_IFNET_NOT_SERIALIZED_ALL(sc->sc_ifp);
3313
3314         netmsg_init(&brmsg.base, NULL, &curthread->td_msgport,
3315                     0, bridge_rtinstall_handler);
3316         memcpy(brmsg.br_dst, dst, ETHER_ADDR_LEN);
3317         brmsg.br_dst_if = dst_if;
3318         brmsg.br_flags = flags;
3319         brmsg.br_setflags = 1;
3320         brmsg.br_softc = sc;
3321         brmsg.br_rtinfo = NULL;
3322
3323         return ifnet_domsg(&brmsg.base.lmsg, 0);
3324 }
3325
3326 /*
3327  * bridge_rtlookup:
3328  *
3329  *      Lookup the destination interface for an address.
3330  */
3331 static struct ifnet *
3332 bridge_rtlookup(struct bridge_softc *sc, const uint8_t *addr)
3333 {
3334         struct bridge_rtnode *brt;
3335
3336         if ((brt = bridge_rtnode_lookup(sc, addr)) == NULL)
3337                 return NULL;
3338         return brt->brt_info->bri_ifp;
3339 }
3340
3341 static void
3342 bridge_rtreap_handler(netmsg_t msg)
3343 {
3344         struct bridge_softc *sc = msg->lmsg.u.ms_resultp;
3345         struct bridge_rtnode *brt, *nbrt;
3346
3347         LIST_FOREACH_MUTABLE(brt, &sc->sc_rtlists[mycpuid], brt_list, nbrt) {
3348                 if (brt->brt_info->bri_dead)
3349                         bridge_rtnode_destroy(sc, brt);
3350         }
3351         ifnet_forwardmsg(&msg->lmsg, mycpuid + 1);
3352 }
3353
3354 static void
3355 bridge_rtreap(struct bridge_softc *sc)
3356 {
3357         struct netmsg_base msg;
3358
3359         ASSERT_IFNET_NOT_SERIALIZED_ALL(sc->sc_ifp);
3360
3361         netmsg_init(&msg, NULL, &curthread->td_msgport,
3362                     0, bridge_rtreap_handler);
3363         msg.lmsg.u.ms_resultp = sc;
3364
3365         ifnet_domsg(&msg.lmsg, 0);
3366 }
3367
3368 static void
3369 bridge_rtreap_async(struct bridge_softc *sc)
3370 {
3371         struct netmsg_base *msg;
3372
3373         msg = kmalloc(sizeof(*msg), M_LWKTMSG, M_WAITOK);
3374
3375         netmsg_init(msg, NULL, &netisr_afree_rport,
3376                     0, bridge_rtreap_handler);
3377         msg->lmsg.u.ms_resultp = sc;
3378
3379         ifnet_sendmsg(&msg->lmsg, 0);
3380 }
3381
3382 /*
3383  * bridge_rttrim:
3384  *
3385  *      Trim the routine table so that we have a number
3386  *      of routing entries less than or equal to the
3387  *      maximum number.
3388  */
3389 static void
3390 bridge_rttrim(struct bridge_softc *sc)
3391 {
3392         struct bridge_rtnode *brt;
3393         int dead;
3394
3395         ASSERT_IFNET_NOT_SERIALIZED_ALL(sc->sc_ifp);
3396
3397         /* Make sure we actually need to do this. */
3398         if (sc->sc_brtcnt <= sc->sc_brtmax)
3399                 return;
3400
3401         /*
3402          * Find out how many rtnodes are dead
3403          */
3404         dead = bridge_rtage_finddead(sc);
3405         KKASSERT(dead <= sc->sc_brtcnt);
3406
3407         if (sc->sc_brtcnt - dead <= sc->sc_brtmax) {
3408                 /* Enough dead rtnodes are found */
3409                 bridge_rtreap(sc);
3410                 return;
3411         }
3412
3413         /*
3414          * Kill some dynamic rtnodes to meet the brtmax
3415          */
3416         LIST_FOREACH(brt, &sc->sc_rtlists[mycpuid], brt_list) {
3417                 struct bridge_rtinfo *bri = brt->brt_info;
3418
3419                 if (bri->bri_dead) {
3420                         /*
3421                          * We have counted this rtnode in
3422                          * bridge_rtage_finddead()
3423                          */
3424                         continue;
3425                 }
3426
3427                 if ((bri->bri_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC) {
3428                         bri->bri_dead = 1;
3429                         ++dead;
3430                         KKASSERT(dead <= sc->sc_brtcnt);
3431
3432                         if (sc->sc_brtcnt - dead <= sc->sc_brtmax) {
3433                                 /* Enough rtnodes are collected */
3434                                 break;
3435                         }
3436                 }
3437         }
3438         if (dead)
3439                 bridge_rtreap(sc);
3440 }
3441
3442 /*
3443  * bridge_timer:
3444  *
3445  *      Aging timer for the bridge.
3446  */
3447 static void
3448 bridge_timer(void *arg)
3449 {
3450         struct bridge_softc *sc = arg;
3451         struct netmsg_base *msg;
3452
3453         KKASSERT(mycpuid == BRIDGE_CFGCPU);
3454
3455         crit_enter();
3456
3457         if (callout_pending(&sc->sc_brcallout) ||
3458             !callout_active(&sc->sc_brcallout)) {
3459                 crit_exit();
3460                 return;
3461         }
3462         callout_deactivate(&sc->sc_brcallout);
3463
3464         msg = &sc->sc_brtimemsg;
3465         KKASSERT(msg->lmsg.ms_flags & MSGF_DONE);
3466         lwkt_sendmsg(BRIDGE_CFGPORT, &msg->lmsg);
3467
3468         crit_exit();
3469 }
3470
3471 static void
3472 bridge_timer_handler(netmsg_t msg)
3473 {
3474         struct bridge_softc *sc = msg->lmsg.u.ms_resultp;
3475
3476         KKASSERT(&curthread->td_msgport == BRIDGE_CFGPORT);
3477
3478         crit_enter();
3479         /* Reply ASAP */
3480         lwkt_replymsg(&msg->lmsg, 0);
3481         crit_exit();
3482
3483         bridge_rtage(sc);
3484         if (sc->sc_ifp->if_flags & IFF_RUNNING) {
3485                 callout_reset(&sc->sc_brcallout,
3486                     bridge_rtable_prune_period * hz, bridge_timer, sc);
3487         }
3488 }
3489
3490 static int
3491 bridge_rtage_finddead(struct bridge_softc *sc)
3492 {
3493         struct bridge_rtnode *brt;
3494         int dead = 0;
3495
3496         LIST_FOREACH(brt, &sc->sc_rtlists[mycpuid], brt_list) {
3497                 struct bridge_rtinfo *bri = brt->brt_info;
3498
3499                 if ((bri->bri_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC &&
3500                     time_second >= bri->bri_expire) {
3501                         bri->bri_dead = 1;
3502                         ++dead;
3503                         KKASSERT(dead <= sc->sc_brtcnt);
3504                 }
3505         }
3506         return dead;
3507 }
3508
3509 /*
3510  * bridge_rtage:
3511  *
3512  *      Perform an aging cycle.
3513  */
3514 static void
3515 bridge_rtage(struct bridge_softc *sc)
3516 {
3517         ASSERT_IFNET_NOT_SERIALIZED_ALL(sc->sc_ifp);
3518
3519         if (bridge_rtage_finddead(sc))
3520                 bridge_rtreap(sc);
3521 }
3522
3523 /*
3524  * bridge_rtflush:
3525  *
3526  *      Remove all dynamic addresses from the bridge.
3527  */
3528 static void
3529 bridge_rtflush(struct bridge_softc *sc, int bf)
3530 {
3531         struct bridge_rtnode *brt;
3532         int reap;
3533
3534         reap = 0;
3535         LIST_FOREACH(brt, &sc->sc_rtlists[mycpuid], brt_list) {
3536                 struct bridge_rtinfo *bri = brt->brt_info;
3537
3538                 if ((bf & IFBF_FLUSHALL) ||
3539                     (bri->bri_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC) {
3540                         bri->bri_dead = 1;
3541                         reap = 1;
3542                 }
3543         }
3544         if (reap) {
3545                 if (bf & IFBF_FLUSHSYNC)
3546                         bridge_rtreap(sc);
3547                 else
3548                         bridge_rtreap_async(sc);
3549         }
3550 }
3551
3552 /*
3553  * bridge_rtdaddr:
3554  *
3555  *      Remove an address from the table.
3556  */
3557 static int
3558 bridge_rtdaddr(struct bridge_softc *sc, const uint8_t *addr)
3559 {
3560         struct bridge_rtnode *brt;
3561
3562         ASSERT_IFNET_NOT_SERIALIZED_ALL(sc->sc_ifp);
3563
3564         if ((brt = bridge_rtnode_lookup(sc, addr)) == NULL)
3565                 return (ENOENT);
3566
3567         /* TODO: add a cheaper delete operation */
3568         brt->brt_info->bri_dead = 1;
3569         bridge_rtreap(sc);
3570         return (0);
3571 }
3572
3573 /*
3574  * bridge_rtdelete:
3575  *
3576  *      Delete routes to a speicifc member interface.
3577  */
3578 void
3579 bridge_rtdelete(struct bridge_softc *sc, struct ifnet *ifp, int bf)
3580 {
3581         struct bridge_rtnode *brt;
3582         int reap;
3583
3584         reap = 0;
3585         LIST_FOREACH(brt, &sc->sc_rtlists[mycpuid], brt_list) {
3586                 struct bridge_rtinfo *bri = brt->brt_info;
3587
3588                 if (bri->bri_ifp == ifp &&
3589                     ((bf & IFBF_FLUSHALL) ||
3590                      (bri->bri_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC)) {
3591                         bri->bri_dead = 1;
3592                         reap = 1;
3593                 }
3594         }
3595         if (reap) {
3596                 if (bf & IFBF_FLUSHSYNC)
3597                         bridge_rtreap(sc);
3598                 else
3599                         bridge_rtreap_async(sc);
3600         }
3601 }
3602
3603 /*
3604  * bridge_rtable_init:
3605  *
3606  *      Initialize the route table for this bridge.
3607  */
3608 static void
3609 bridge_rtable_init(struct bridge_softc *sc)
3610 {
3611         int cpu;
3612
3613         /*
3614          * Initialize per-cpu hash tables
3615          */
3616         sc->sc_rthashs = kmalloc(sizeof(*sc->sc_rthashs) * ncpus,
3617                                  M_DEVBUF, M_WAITOK);
3618         for (cpu = 0; cpu < ncpus; ++cpu) {
3619                 int i;
3620
3621                 sc->sc_rthashs[cpu] =
3622                 kmalloc(sizeof(struct bridge_rtnode_head) * BRIDGE_RTHASH_SIZE,
3623                         M_DEVBUF, M_WAITOK);
3624
3625                 for (i = 0; i < BRIDGE_RTHASH_SIZE; i++)
3626                         LIST_INIT(&sc->sc_rthashs[cpu][i]);
3627         }
3628         sc->sc_rthash_key = karc4random();
3629
3630         /*
3631          * Initialize per-cpu lists
3632          */
3633         sc->sc_rtlists = kmalloc(sizeof(struct bridge_rtnode_head) * ncpus,
3634                                  M_DEVBUF, M_WAITOK);
3635         for (cpu = 0; cpu < ncpus; ++cpu)
3636                 LIST_INIT(&sc->sc_rtlists[cpu]);
3637 }
3638
3639 /*
3640  * bridge_rtable_fini:
3641  *
3642  *      Deconstruct the route table for this bridge.
3643  */
3644 static void
3645 bridge_rtable_fini(struct bridge_softc *sc)
3646 {
3647         int cpu;
3648
3649         /*
3650          * Free per-cpu hash tables
3651          */
3652         for (cpu = 0; cpu < ncpus; ++cpu)
3653                 kfree(sc->sc_rthashs[cpu], M_DEVBUF);
3654         kfree(sc->sc_rthashs, M_DEVBUF);
3655
3656         /*
3657          * Free per-cpu lists
3658          */
3659         kfree(sc->sc_rtlists, M_DEVBUF);
3660 }
3661
3662 /*
3663  * The following hash function is adapted from "Hash Functions" by Bob Jenkins
3664  * ("Algorithm Alley", Dr. Dobbs Journal, September 1997).
3665  */
3666 #define mix(a, b, c)                                                    \
3667 do {                                                                    \
3668         a -= b; a -= c; a ^= (c >> 13);                                 \
3669         b -= c; b -= a; b ^= (a << 8);                                  \
3670         c -= a; c -= b; c ^= (b >> 13);                                 \
3671         a -= b; a -= c; a ^= (c >> 12);                                 \
3672         b -= c; b -= a; b ^= (a << 16);                                 \
3673         c -= a; c -= b; c ^= (b >> 5);                                  \
3674         a -= b; a -= c; a ^= (c >> 3);                                  \
3675         b -= c; b -= a; b ^= (a << 10);                                 \
3676         c -= a; c -= b; c ^= (b >> 15);                                 \
3677 } while (/*CONSTCOND*/0)
3678
3679 static __inline uint32_t
3680 bridge_rthash(struct bridge_softc *sc, const uint8_t *addr)
3681 {
3682         uint32_t a = 0x9e3779b9, b = 0x9e3779b9, c = sc->sc_rthash_key;
3683
3684         b += addr[5] << 8;
3685         b += addr[4];
3686         a += addr[3] << 24;
3687         a += addr[2] << 16;
3688         a += addr[1] << 8;
3689         a += addr[0];
3690
3691         mix(a, b, c);
3692
3693         return (c & BRIDGE_RTHASH_MASK);
3694 }
3695
3696 #undef mix
3697
3698 static int
3699 bridge_rtnode_addr_cmp(const uint8_t *a, const uint8_t *b)
3700 {
3701         int i, d;
3702
3703         for (i = 0, d = 0; i < ETHER_ADDR_LEN && d == 0; i++) {
3704                 d = ((int)a[i]) - ((int)b[i]);
3705         }
3706
3707         return (d);
3708 }
3709
3710 /*
3711  * bridge_rtnode_lookup:
3712  *
3713  *      Look up a bridge route node for the specified destination.
3714  */
3715 static struct bridge_rtnode *
3716 bridge_rtnode_lookup(struct bridge_softc *sc, const uint8_t *addr)
3717 {
3718         struct bridge_rtnode *brt;
3719         uint32_t hash;
3720         int dir;
3721
3722         hash = bridge_rthash(sc, addr);
3723         LIST_FOREACH(brt, &sc->sc_rthashs[mycpuid][hash], brt_hash) {
3724                 dir = bridge_rtnode_addr_cmp(addr, brt->brt_addr);
3725                 if (dir == 0)
3726                         return (brt);
3727                 if (dir > 0)
3728                         return (NULL);
3729         }
3730
3731         return (NULL);
3732 }
3733
3734 /*
3735  * bridge_rtnode_insert:
3736  *
3737  *      Insert the specified bridge node into the route table.
3738  *      Caller has to make sure that rtnode does not exist.
3739  */
3740 static void
3741 bridge_rtnode_insert(struct bridge_softc *sc, struct bridge_rtnode *brt)
3742 {
3743         struct bridge_rtnode *lbrt;
3744         uint32_t hash;
3745         int dir;
3746
3747         hash = bridge_rthash(sc, brt->brt_addr);
3748
3749         lbrt = LIST_FIRST(&sc->sc_rthashs[mycpuid][hash]);
3750         if (lbrt == NULL) {
3751                 LIST_INSERT_HEAD(&sc->sc_rthashs[mycpuid][hash],
3752                                   brt, brt_hash);
3753                 goto out;
3754         }
3755
3756         do {
3757                 dir = bridge_rtnode_addr_cmp(brt->brt_addr, lbrt->brt_addr);
3758                 KASSERT(dir != 0, ("rtnode already exist\n"));
3759
3760                 if (dir > 0) {
3761                         LIST_INSERT_BEFORE(lbrt, brt, brt_hash);
3762                         goto out;
3763                 }
3764                 if (LIST_NEXT(lbrt, brt_hash) == NULL) {
3765                         LIST_INSERT_AFTER(lbrt, brt, brt_hash);
3766                         goto out;
3767                 }
3768                 lbrt = LIST_NEXT(lbrt, brt_hash);
3769         } while (lbrt != NULL);
3770
3771         panic("no suitable position found for rtnode\n");
3772 out:
3773         LIST_INSERT_HEAD(&sc->sc_rtlists[mycpuid], brt, brt_list);
3774         if (mycpuid == 0) {
3775                 /*
3776                  * Update the brtcnt.
3777                  * We only need to do it once and we do it on CPU0.
3778                  */
3779                 sc->sc_brtcnt++;
3780         }
3781 }
3782
3783 /*
3784  * bridge_rtnode_destroy:
3785  *
3786  *      Destroy a bridge rtnode.
3787  */
3788 static void
3789 bridge_rtnode_destroy(struct bridge_softc *sc, struct bridge_rtnode *brt)
3790 {
3791         LIST_REMOVE(brt, brt_hash);
3792         LIST_REMOVE(brt, brt_list);
3793
3794         if (mycpuid + 1 == ncpus) {
3795                 /* Free rtinfo associated with rtnode on the last cpu */
3796                 kfree(brt->brt_info, M_DEVBUF);
3797         }
3798         kfree(brt, M_DEVBUF);
3799
3800         if (mycpuid == 0) {
3801                 /* Update brtcnt only on CPU0 */
3802                 sc->sc_brtcnt--;
3803         }
3804 }
3805
3806 static __inline int
3807 bridge_post_pfil(struct mbuf *m)
3808 {
3809         if (m->m_pkthdr.fw_flags & IPFORWARD_MBUF_TAGGED)
3810                 return EOPNOTSUPP;
3811
3812         /* Not yet */
3813         if (m->m_pkthdr.fw_flags & DUMMYNET_MBUF_TAGGED)
3814                 return EOPNOTSUPP;
3815
3816         return 0;
3817 }
3818
3819 /*
3820  * Send bridge packets through pfil if they are one of the types pfil can deal
3821  * with, or if they are ARP or REVARP.  (pfil will pass ARP and REVARP without
3822  * question.) If *bifp or *ifp are NULL then packet filtering is skipped for
3823  * that interface.
3824  */
3825 static int
3826 bridge_pfil(struct mbuf **mp, struct ifnet *bifp, struct ifnet *ifp, int dir)
3827 {
3828         int snap, error, i, hlen;
3829         struct ether_header *eh1, eh2;
3830         struct ip *ip;
3831         struct llc llc1;
3832         u_int16_t ether_type;
3833
3834         snap = 0;
3835         error = -1;     /* Default error if not error == 0 */
3836
3837         if (pfil_bridge == 0 && pfil_member == 0)
3838                 return (0); /* filtering is disabled */
3839
3840         i = min((*mp)->m_pkthdr.len, max_protohdr);
3841         if ((*mp)->m_len < i) {
3842                 *mp = m_pullup(*mp, i);
3843                 if (*mp == NULL) {
3844                         kprintf("%s: m_pullup failed\n", __func__);
3845                         return (-1);
3846                 }
3847         }
3848
3849         eh1 = mtod(*mp, struct ether_header *);
3850         ether_type = ntohs(eh1->ether_type);
3851
3852         /*
3853          * Check for SNAP/LLC.
3854          */
3855         if (ether_type < ETHERMTU) {
3856                 struct llc *llc2 = (struct llc *)(eh1 + 1);
3857
3858                 if ((*mp)->m_len >= ETHER_HDR_LEN + 8 &&
3859                     llc2->llc_dsap == LLC_SNAP_LSAP &&
3860                     llc2->llc_ssap == LLC_SNAP_LSAP &&
3861                     llc2->llc_control == LLC_UI) {
3862                         ether_type = htons(llc2->llc_un.type_snap.ether_type);
3863                         snap = 1;
3864                 }
3865         }
3866
3867         /*
3868          * If we're trying to filter bridge traffic, don't look at anything
3869          * other than IP and ARP traffic.  If the filter doesn't understand
3870          * IPv6, don't allow IPv6 through the bridge either.  This is lame
3871          * since if we really wanted, say, an AppleTalk filter, we are hosed,
3872          * but of course we don't have an AppleTalk filter to begin with.
3873          * (Note that since pfil doesn't understand ARP it will pass *ALL*
3874          * ARP traffic.)
3875          */
3876         switch (ether_type) {
3877         case ETHERTYPE_ARP:
3878         case ETHERTYPE_REVARP:
3879                 return (0); /* Automatically pass */
3880
3881         case ETHERTYPE_IP:
3882 #ifdef INET6
3883         case ETHERTYPE_IPV6:
3884 #endif /* INET6 */
3885                 break;
3886
3887         default:
3888                 /*
3889                  * Check to see if the user wants to pass non-ip
3890                  * packets, these will not be checked by pfil(9)
3891                  * and passed unconditionally so the default is to drop.
3892                  */
3893                 if (pfil_onlyip)
3894                         goto bad;
3895         }
3896
3897         /* Strip off the Ethernet header and keep a copy. */
3898         m_copydata(*mp, 0, ETHER_HDR_LEN, (caddr_t) &eh2);
3899         m_adj(*mp, ETHER_HDR_LEN);
3900
3901         /* Strip off snap header, if present */
3902         if (snap) {
3903                 m_copydata(*mp, 0, sizeof(struct llc), (caddr_t) &llc1);
3904                 m_adj(*mp, sizeof(struct llc));
3905         }
3906
3907         /*
3908          * Check the IP header for alignment and errors
3909          */
3910         if (dir == PFIL_IN) {
3911                 switch (ether_type) {
3912                 case ETHERTYPE_IP:
3913                         error = bridge_ip_checkbasic(mp);
3914                         break;
3915 #ifdef INET6
3916                 case ETHERTYPE_IPV6:
3917                         error = bridge_ip6_checkbasic(mp);
3918                         break;
3919 #endif /* INET6 */
3920                 default:
3921                         error = 0;
3922                 }
3923                 if (error)
3924                         goto bad;
3925         }
3926
3927         error = 0;
3928
3929         /*
3930          * Run the packet through pfil
3931          */
3932         switch (ether_type) {
3933         case ETHERTYPE_IP:
3934                 /*
3935                  * before calling the firewall, swap fields the same as
3936                  * IP does. here we assume the header is contiguous
3937                  */
3938                 ip = mtod(*mp, struct ip *);
3939
3940                 ip->ip_len = ntohs(ip->ip_len);
3941                 ip->ip_off = ntohs(ip->ip_off);
3942
3943                 /*
3944                  * Run pfil on the member interface and the bridge, both can
3945                  * be skipped by clearing pfil_member or pfil_bridge.
3946                  *
3947                  * Keep the order:
3948                  *   in_if -> bridge_if -> out_if
3949                  */
3950                 if (pfil_bridge && dir == PFIL_OUT && bifp != NULL) {
3951                         error = pfil_run_hooks(&inet_pfil_hook, mp, bifp, dir);
3952                         if (*mp == NULL || error != 0) /* filter may consume */
3953                                 break;
3954                         error = bridge_post_pfil(*mp);
3955                         if (error)
3956                                 break;
3957                 }
3958
3959                 if (pfil_member && ifp != NULL) {
3960                         error = pfil_run_hooks(&inet_pfil_hook, mp, ifp, dir);
3961                         if (*mp == NULL || error != 0) /* filter may consume */
3962                                 break;
3963                         error = bridge_post_pfil(*mp);
3964                         if (error)
3965                                 break;
3966                 }
3967
3968                 if (pfil_bridge && dir == PFIL_IN && bifp != NULL) {
3969                         error = pfil_run_hooks(&inet_pfil_hook, mp, bifp, dir);
3970                         if (*mp == NULL || error != 0) /* filter may consume */
3971                                 break;
3972                         error = bridge_post_pfil(*mp);
3973                         if (error)
3974                                 break;
3975                 }
3976
3977                 /* check if we need to fragment the packet */
3978                 if (pfil_member && ifp != NULL && dir == PFIL_OUT) {
3979                         i = (*mp)->m_pkthdr.len;
3980                         if (i > ifp->if_mtu) {
3981                                 error = bridge_fragment(ifp, *mp, &eh2, snap,
3982                                             &llc1);
3983                                 return (error);
3984                         }
3985                 }
3986
3987                 /* Recalculate the ip checksum and restore byte ordering */
3988                 ip = mtod(*mp, struct ip *);
3989                 hlen = ip->ip_hl << 2;
3990                 if (hlen < sizeof(struct ip))
3991                         goto bad;
3992                 if (hlen > (*mp)->m_len) {
3993                         if ((*mp = m_pullup(*mp, hlen)) == 0)
3994                                 goto bad;
3995                         ip = mtod(*mp, struct ip *);
3996                         if (ip == NULL)
3997                                 goto bad;
3998                 }
3999                 ip->ip_len = htons(ip->ip_len);
4000                 ip->ip_off = htons(ip->ip_off);
4001                 ip->ip_sum = 0;
4002                 if (hlen == sizeof(struct ip))
4003                         ip->ip_sum = in_cksum_hdr(ip);
4004                 else
4005                         ip->ip_sum = in_cksum(*mp, hlen);
4006
4007                 break;
4008 #ifdef INET6
4009         case ETHERTYPE_IPV6:
4010                 if (pfil_bridge && dir == PFIL_OUT && bifp != NULL)
4011                         error = pfil_run_hooks(&inet6_pfil_hook, mp, bifp,
4012                                         dir);
4013
4014                 if (*mp == NULL || error != 0) /* filter may consume */
4015                         break;
4016
4017                 if (pfil_member && ifp != NULL)
4018                         error = pfil_run_hooks(&inet6_pfil_hook, mp, ifp,
4019                                         dir);
4020
4021                 if (*mp == NULL || error != 0) /* filter may consume */
4022                         break;
4023
4024                 if (pfil_bridge && dir == PFIL_IN && bifp != NULL)
4025                         error = pfil_run_hooks(&inet6_pfil_hook, mp, bifp,
4026                                         dir);
4027                 break;
4028 #endif
4029         default:
4030                 error = 0;
4031                 break;
4032         }
4033
4034         if (*mp == NULL)
4035                 return (error);
4036         if (error != 0)
4037                 goto bad;
4038
4039         error = -1;
4040
4041         /*
4042          * Finally, put everything back the way it was and return
4043          */
4044         if (snap) {
4045                 M_PREPEND(*mp, sizeof(struct llc), MB_DONTWAIT);
4046                 if (*mp == NULL)
4047                         return (error);
4048                 bcopy(&llc1, mtod(*mp, caddr_t), sizeof(struct llc));
4049         }
4050
4051         M_PREPEND(*mp, ETHER_HDR_LEN, MB_DONTWAIT);
4052         if (*mp == NULL)
4053                 return (error);
4054         bcopy(&eh2, mtod(*mp, caddr_t), ETHER_HDR_LEN);
4055
4056         return (0);
4057
4058 bad:
4059         m_freem(*mp);
4060         *mp = NULL;
4061         return (error);
4062 }
4063
4064 /*
4065  * Perform basic checks on header size since
4066  * pfil assumes ip_input has already processed
4067  * it for it.  Cut-and-pasted from ip_input.c.
4068  * Given how simple the IPv6 version is,
4069  * does the IPv4 version really need to be
4070  * this complicated?
4071  *
4072  * XXX Should we update ipstat here, or not?
4073  * XXX Right now we update ipstat but not
4074  * XXX csum_counter.
4075  */
4076 static int
4077 bridge_ip_checkbasic(struct mbuf **mp)
4078 {
4079         struct mbuf *m = *mp;
4080         struct ip *ip;
4081         int len, hlen;
4082         u_short sum;
4083
4084         if (*mp == NULL)
4085                 return (-1);
4086 #if 0 /* notyet */
4087         if (IP_HDR_ALIGNED_P(mtod(m, caddr_t)) == 0) {
4088                 if ((m = m_copyup(m, sizeof(struct ip),
4089                         (max_linkhdr + 3) & ~3)) == NULL) {
4090                         /* XXXJRT new stat, please */
4091                         ipstat.ips_toosmall++;
4092                         goto bad;
4093                 }
4094         } else
4095 #endif
4096 #ifndef __predict_false
4097 #define __predict_false(x) x
4098 #endif
4099          if (__predict_false(m->m_len < sizeof (struct ip))) {
4100                 if ((m = m_pullup(m, sizeof (struct ip))) == NULL) {
4101                         ipstat.ips_toosmall++;
4102                         goto bad;
4103                 }
4104         }
4105         ip = mtod(m, struct ip *);
4106         if (ip == NULL) goto bad;
4107
4108         if (ip->ip_v != IPVERSION) {
4109                 ipstat.ips_badvers++;
4110                 goto bad;
4111         }
4112         hlen = ip->ip_hl << 2;
4113         if (hlen < sizeof(struct ip)) { /* minimum header length */
4114                 ipstat.ips_badhlen++;
4115                 goto bad;
4116         }
4117         if (hlen > m->m_len) {
4118                 if ((m = m_pullup(m, hlen)) == 0) {
4119                         ipstat.ips_badhlen++;
4120                         goto bad;
4121                 }
4122                 ip = mtod(m, struct ip *);
4123                 if (ip == NULL) goto bad;
4124         }
4125
4126         if (m->m_pkthdr.csum_flags & CSUM_IP_CHECKED) {
4127                 sum = !(m->m_pkthdr.csum_flags & CSUM_IP_VALID);
4128         } else {
4129                 if (hlen == sizeof(struct ip)) {
4130                         sum = in_cksum_hdr(ip);
4131                 } else {
4132                         sum = in_cksum(m, hlen);
4133                 }
4134         }
4135         if (sum) {
4136                 ipstat.ips_badsum++;
4137                 goto bad;
4138         }
4139
4140         /* Retrieve the packet length. */
4141         len = ntohs(ip->ip_len);
4142
4143         /*
4144          * Check for additional length bogosity
4145          */
4146         if (len < hlen) {
4147                 ipstat.ips_badlen++;
4148                 goto bad;
4149         }
4150
4151         /*
4152          * Check that the amount of data in the buffers
4153          * is as at least much as the IP header would have us expect.
4154          * Drop packet if shorter than we expect.
4155          */
4156         if (m->m_pkthdr.len < len) {
4157                 ipstat.ips_tooshort++;
4158                 goto bad;
4159         }
4160
4161         /* Checks out, proceed */
4162         *mp = m;
4163         return (0);
4164
4165 bad:
4166         *mp = m;
4167         return (-1);
4168 }
4169
4170 #ifdef INET6
4171 /*
4172  * Same as above, but for IPv6.
4173  * Cut-and-pasted from ip6_input.c.
4174  * XXX Should we update ip6stat, or not?
4175  */
4176 static int
4177 bridge_ip6_checkbasic(struct mbuf **mp)
4178 {
4179         struct mbuf *m = *mp;
4180         struct ip6_hdr *ip6;
4181
4182         /*
4183          * If the IPv6 header is not aligned, slurp it up into a new
4184          * mbuf with space for link headers, in the event we forward
4185          * it.  Otherwise, if it is aligned, make sure the entire base
4186          * IPv6 header is in the first mbuf of the chain.
4187          */
4188 #if 0 /* notyet */
4189         if (IP6_HDR_ALIGNED_P(mtod(m, caddr_t)) == 0) {
4190                 struct ifnet *inifp = m->m_pkthdr.rcvif;
4191                 if ((m = m_copyup(m, sizeof(struct ip6_hdr),
4192                             (max_linkhdr + 3) & ~3)) == NULL) {
4193                         /* XXXJRT new stat, please */
4194                         ip6stat.ip6s_toosmall++;
4195                         in6_ifstat_inc(inifp, ifs6_in_hdrerr);
4196                         goto bad;
4197                 }
4198         } else
4199 #endif
4200         if (__predict_false(m->m_len < sizeof(struct ip6_hdr))) {
4201                 struct ifnet *inifp = m->m_pkthdr.rcvif;
4202                 if ((m = m_pullup(m, sizeof(struct ip6_hdr))) == NULL) {
4203                         ip6stat.ip6s_toosmall++;
4204                         in6_ifstat_inc(inifp, ifs6_in_hdrerr);
4205                         goto bad;
4206                 }
4207         }
4208
4209         ip6 = mtod(m, struct ip6_hdr *);
4210
4211         if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
4212                 ip6stat.ip6s_badvers++;
4213                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_hdrerr);
4214                 goto bad;
4215         }
4216
4217         /* Checks out, proceed */
4218         *mp = m;
4219         return (0);
4220
4221 bad:
4222         *mp = m;
4223         return (-1);
4224 }
4225 #endif /* INET6 */
4226
4227 /*
4228  * bridge_fragment:
4229  *
4230  *      Return a fragmented mbuf chain.
4231  */
4232 static int
4233 bridge_fragment(struct ifnet *ifp, struct mbuf *m, struct ether_header *eh,
4234     int snap, struct llc *llc)
4235 {
4236         struct mbuf *m0;
4237         struct ip *ip;
4238         int error = -1;
4239
4240         if (m->m_len < sizeof(struct ip) &&
4241             (m = m_pullup(m, sizeof(struct ip))) == NULL)
4242                 goto out;
4243         ip = mtod(m, struct ip *);
4244
4245         error = ip_fragment(ip, &m, ifp->if_mtu, ifp->if_hwassist,
4246                     CSUM_DELAY_IP);
4247         if (error)
4248                 goto out;
4249
4250         /* walk the chain and re-add the Ethernet header */
4251         for (m0 = m; m0; m0 = m0->m_nextpkt) {
4252                 if (error == 0) {
4253                         if (snap) {
4254                                 M_PREPEND(m0, sizeof(struct llc), MB_DONTWAIT);
4255                                 if (m0 == NULL) {
4256                                         error = ENOBUFS;
4257                                         continue;
4258                                 }
4259                                 bcopy(llc, mtod(m0, caddr_t),
4260                                     sizeof(struct llc));
4261                         }
4262                         M_PREPEND(m0, ETHER_HDR_LEN, MB_DONTWAIT);
4263                         if (m0 == NULL) {
4264                                 error = ENOBUFS;
4265                                 continue;
4266                         }
4267                         bcopy(eh, mtod(m0, caddr_t), ETHER_HDR_LEN);
4268                 } else 
4269                         m_freem(m);
4270         }
4271
4272         if (error == 0)
4273                 ipstat.ips_fragmented++;
4274
4275         return (error);
4276
4277 out:
4278         if (m != NULL)
4279                 m_freem(m);
4280         return (error);
4281 }
4282
4283 static void
4284 bridge_enqueue_handler(netmsg_t msg)
4285 {
4286         struct netmsg_packet *nmp;
4287         struct ifnet *dst_ifp;
4288         struct mbuf *m;
4289
4290         nmp = &msg->packet;
4291         m = nmp->nm_packet;
4292         dst_ifp = nmp->base.lmsg.u.ms_resultp;
4293
4294         bridge_handoff(dst_ifp->if_bridge, dst_ifp, m, 1);
4295 }
4296
4297 static void
4298 bridge_handoff(struct bridge_softc *sc, struct ifnet *dst_ifp,
4299                struct mbuf *m, int from_us)
4300 {
4301         struct mbuf *m0;
4302         struct ifnet *bifp;
4303
4304         bifp = sc->sc_ifp;
4305
4306         /* We may be sending a fragment so traverse the mbuf */
4307         for (; m; m = m0) {
4308                 struct altq_pktattr pktattr;
4309
4310                 m0 = m->m_nextpkt;
4311                 m->m_nextpkt = NULL;
4312
4313                 /*
4314                  * If being sent from our host override ether_shost
4315                  * with the bridge MAC.  This is mandatory for ARP
4316                  * so things don't get confused.  In particular we
4317                  * don't want ARPs to get associated with link interfaces
4318                  * under the bridge which might or might not stay valid.
4319                  *
4320                  * Also override ether_shost when relaying a packet out
4321                  * the same interface it came in on, due to multi-homed
4322                  * addresses & default routes, otherwise switches will
4323                  * get very confused.
4324                  *
4325                  * Otherwise if we are in transparent mode.
4326                  */
4327                 if (from_us || m->m_pkthdr.rcvif == dst_ifp) {
4328                         m_copyback(m,
4329                                    offsetof(struct ether_header, ether_shost),
4330                                    ETHER_ADDR_LEN, IF_LLADDR(sc->sc_ifp));
4331                 } else if ((bifp->if_flags & IFF_LINK0) &&
4332                            (m->m_pkthdr.fw_flags & BRIDGE_MBUF_TAGGED)) {
4333                         m_copyback(m,
4334                                    offsetof(struct ether_header, ether_shost),
4335                                    ETHER_ADDR_LEN,
4336                                    m->m_pkthdr.br.ether.ether_shost);
4337                 } /* else retain shost */
4338
4339                 if (ifq_is_enabled(&dst_ifp->if_snd))
4340                         altq_etherclassify(&dst_ifp->if_snd, m, &pktattr);
4341
4342                 ifq_dispatch(dst_ifp, m, &pktattr);
4343         }
4344 }
4345
4346 static void
4347 bridge_control_dispatch(netmsg_t msg)
4348 {
4349         struct netmsg_brctl *bc_msg = (struct netmsg_brctl *)msg;
4350         struct ifnet *bifp = bc_msg->bc_sc->sc_ifp;
4351         int error;
4352
4353         ifnet_serialize_all(bifp);
4354         error = bc_msg->bc_func(bc_msg->bc_sc, bc_msg->bc_arg);
4355         ifnet_deserialize_all(bifp);
4356
4357         lwkt_replymsg(&bc_msg->base.lmsg, error);
4358 }
4359
4360 static int
4361 bridge_control(struct bridge_softc *sc, u_long cmd,
4362                bridge_ctl_t bc_func, void *bc_arg)
4363 {
4364         struct ifnet *bifp = sc->sc_ifp;
4365         struct netmsg_brctl bc_msg;
4366         int error;
4367
4368         ASSERT_IFNET_SERIALIZED_ALL(bifp);
4369
4370         bzero(&bc_msg, sizeof(bc_msg));
4371
4372         netmsg_init(&bc_msg.base, NULL, &curthread->td_msgport,
4373                     0, bridge_control_dispatch);
4374         bc_msg.bc_func = bc_func;
4375         bc_msg.bc_sc = sc;
4376         bc_msg.bc_arg = bc_arg;
4377
4378         ifnet_deserialize_all(bifp);
4379         error = lwkt_domsg(BRIDGE_CFGPORT, &bc_msg.base.lmsg, 0);
4380         ifnet_serialize_all(bifp);
4381         return error;
4382 }
4383
4384 static void
4385 bridge_add_bif_handler(netmsg_t msg)
4386 {
4387         struct netmsg_braddbif *amsg = (struct netmsg_braddbif *)msg;
4388         struct bridge_softc *sc;
4389         struct bridge_iflist *bif;
4390
4391         sc = amsg->br_softc;
4392
4393         bif = kmalloc(sizeof(*bif), M_DEVBUF, M_WAITOK | M_ZERO);
4394         bif->bif_ifp = amsg->br_bif_ifp;
4395         bif->bif_onlist = 1;
4396         bif->bif_info = amsg->br_bif_info;
4397
4398         /*
4399          * runs through bif_info
4400          */
4401         bif->bif_flags = IFBIF_LEARNING | IFBIF_DISCOVER;
4402
4403         TAILQ_INSERT_HEAD(&sc->sc_iflists[mycpuid], bif, bif_next);
4404
4405         ifnet_forwardmsg(&amsg->base.lmsg, mycpuid + 1);
4406 }
4407
4408 static void
4409 bridge_add_bif(struct bridge_softc *sc, struct bridge_ifinfo *bif_info,
4410                struct ifnet *ifp)
4411 {
4412         struct netmsg_braddbif amsg;
4413
4414         ASSERT_IFNET_NOT_SERIALIZED_ALL(sc->sc_ifp);
4415
4416         netmsg_init(&amsg.base, NULL, &curthread->td_msgport,
4417                     0, bridge_add_bif_handler);
4418         amsg.br_softc = sc;
4419         amsg.br_bif_info = bif_info;
4420         amsg.br_bif_ifp = ifp;
4421
4422         ifnet_domsg(&amsg.base.lmsg, 0);
4423 }
4424
4425 static void
4426 bridge_del_bif_handler(netmsg_t msg)
4427 {
4428         struct netmsg_brdelbif *dmsg = (struct netmsg_brdelbif *)msg;
4429         struct bridge_softc *sc;
4430         struct bridge_iflist *bif;
4431
4432         sc = dmsg->br_softc;
4433
4434         /*
4435          * Locate the bif associated with the br_bif_info
4436          * on the current CPU
4437          */
4438         bif = bridge_lookup_member_ifinfo(sc, dmsg->br_bif_info);
4439         KKASSERT(bif != NULL && bif->bif_onlist);
4440
4441         /* Remove the bif from the current CPU's iflist */
4442         bif->bif_onlist = 0;
4443         TAILQ_REMOVE(dmsg->br_bif_list, bif, bif_next);
4444
4445         /* Save the removed bif for later freeing */
4446         TAILQ_INSERT_HEAD(dmsg->br_bif_list, bif, bif_next);
4447
4448         ifnet_forwardmsg(&dmsg->base.lmsg, mycpuid + 1);
4449 }
4450
4451 static void
4452 bridge_del_bif(struct bridge_softc *sc, struct bridge_ifinfo *bif_info,
4453                struct bridge_iflist_head *saved_bifs)
4454 {
4455         struct netmsg_brdelbif dmsg;
4456
4457         ASSERT_IFNET_NOT_SERIALIZED_ALL(sc->sc_ifp);
4458
4459         netmsg_init(&dmsg.base, NULL, &curthread->td_msgport,
4460                     0, bridge_del_bif_handler);
4461         dmsg.br_softc = sc;
4462         dmsg.br_bif_info = bif_info;
4463         dmsg.br_bif_list = saved_bifs;
4464
4465         ifnet_domsg(&dmsg.base.lmsg, 0);
4466 }