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