xref: /freebsd/sys/net/if_bridgevar.h (revision fe267a55)
131997bf2SAndrew Thompson /*	$NetBSD: if_bridgevar.h,v 1.4 2003/07/08 07:13:50 itojun Exp $	*/
231997bf2SAndrew Thompson 
331997bf2SAndrew Thompson /*
4fe267a55SPedro F. Giffuni  * SPDX-License-Identifier: BSD-4-Clause
5fe267a55SPedro F. Giffuni  *
631997bf2SAndrew Thompson  * Copyright 2001 Wasabi Systems, Inc.
731997bf2SAndrew Thompson  * All rights reserved.
831997bf2SAndrew Thompson  *
931997bf2SAndrew Thompson  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
1031997bf2SAndrew Thompson  *
1131997bf2SAndrew Thompson  * Redistribution and use in source and binary forms, with or without
1231997bf2SAndrew Thompson  * modification, are permitted provided that the following conditions
1331997bf2SAndrew Thompson  * are met:
1431997bf2SAndrew Thompson  * 1. Redistributions of source code must retain the above copyright
1531997bf2SAndrew Thompson  *    notice, this list of conditions and the following disclaimer.
1631997bf2SAndrew Thompson  * 2. Redistributions in binary form must reproduce the above copyright
1731997bf2SAndrew Thompson  *    notice, this list of conditions and the following disclaimer in the
1831997bf2SAndrew Thompson  *    documentation and/or other materials provided with the distribution.
1931997bf2SAndrew Thompson  * 3. All advertising materials mentioning features or use of this software
2031997bf2SAndrew Thompson  *    must display the following acknowledgement:
2131997bf2SAndrew Thompson  *	This product includes software developed for the NetBSD Project by
2231997bf2SAndrew Thompson  *	Wasabi Systems, Inc.
2331997bf2SAndrew Thompson  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
2431997bf2SAndrew Thompson  *    or promote products derived from this software without specific prior
2531997bf2SAndrew Thompson  *    written permission.
2631997bf2SAndrew Thompson  *
2731997bf2SAndrew Thompson  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
2831997bf2SAndrew Thompson  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2931997bf2SAndrew Thompson  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3031997bf2SAndrew Thompson  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
3131997bf2SAndrew Thompson  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
3231997bf2SAndrew Thompson  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3331997bf2SAndrew Thompson  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3431997bf2SAndrew Thompson  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3531997bf2SAndrew Thompson  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3631997bf2SAndrew Thompson  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3731997bf2SAndrew Thompson  * POSSIBILITY OF SUCH DAMAGE.
3831997bf2SAndrew Thompson  */
3931997bf2SAndrew Thompson 
4031997bf2SAndrew Thompson /*
4131997bf2SAndrew Thompson  * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net)
4231997bf2SAndrew Thompson  * All rights reserved.
4331997bf2SAndrew Thompson  *
4431997bf2SAndrew Thompson  * Redistribution and use in source and binary forms, with or without
4531997bf2SAndrew Thompson  * modification, are permitted provided that the following conditions
4631997bf2SAndrew Thompson  * are met:
4731997bf2SAndrew Thompson  * 1. Redistributions of source code must retain the above copyright
4831997bf2SAndrew Thompson  *    notice, this list of conditions and the following disclaimer.
4931997bf2SAndrew Thompson  * 2. Redistributions in binary form must reproduce the above copyright
5031997bf2SAndrew Thompson  *    notice, this list of conditions and the following disclaimer in the
5131997bf2SAndrew Thompson  *    documentation and/or other materials provided with the distribution.
5231997bf2SAndrew Thompson  * 3. All advertising materials mentioning features or use of this software
5331997bf2SAndrew Thompson  *    must display the following acknowledgement:
5431997bf2SAndrew Thompson  *	This product includes software developed by Jason L. Wright
5531997bf2SAndrew Thompson  * 4. The name of the author may not be used to endorse or promote products
5631997bf2SAndrew Thompson  *    derived from this software without specific prior written permission.
5731997bf2SAndrew Thompson  *
5831997bf2SAndrew Thompson  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
5931997bf2SAndrew Thompson  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
6031997bf2SAndrew Thompson  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
6131997bf2SAndrew Thompson  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
6231997bf2SAndrew Thompson  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
6331997bf2SAndrew Thompson  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
6431997bf2SAndrew Thompson  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
6531997bf2SAndrew Thompson  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
6631997bf2SAndrew Thompson  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
6731997bf2SAndrew Thompson  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
6831997bf2SAndrew Thompson  * POSSIBILITY OF SUCH DAMAGE.
6931997bf2SAndrew Thompson  *
7031997bf2SAndrew Thompson  * OpenBSD: if_bridge.h,v 1.14 2001/03/22 03:48:29 jason Exp
7131997bf2SAndrew Thompson  *
7231997bf2SAndrew Thompson  * $FreeBSD$
7331997bf2SAndrew Thompson  */
7431997bf2SAndrew Thompson 
7531997bf2SAndrew Thompson /*
7631997bf2SAndrew Thompson  * Data structure and control definitions for bridge interfaces.
7731997bf2SAndrew Thompson  */
7831997bf2SAndrew Thompson 
7931997bf2SAndrew Thompson #include <sys/callout.h>
8031997bf2SAndrew Thompson #include <sys/queue.h>
81fd6238a6SAndrew Thompson #include <sys/condvar.h>
8231997bf2SAndrew Thompson 
8331997bf2SAndrew Thompson /*
8431997bf2SAndrew Thompson  * Commands used in the SIOCSDRVSPEC ioctl.  Note the lookup of the
8531997bf2SAndrew Thompson  * bridge interface itself is keyed off the ifdrv structure.
8631997bf2SAndrew Thompson  */
8731997bf2SAndrew Thompson #define	BRDGADD			0	/* add bridge member (ifbreq) */
8831997bf2SAndrew Thompson #define	BRDGDEL			1	/* delete bridge member (ifbreq) */
8931997bf2SAndrew Thompson #define	BRDGGIFFLGS		2	/* get member if flags (ifbreq) */
9031997bf2SAndrew Thompson #define	BRDGSIFFLGS		3	/* set member if flags (ifbreq) */
9131997bf2SAndrew Thompson #define	BRDGSCACHE		4	/* set cache size (ifbrparam) */
9231997bf2SAndrew Thompson #define	BRDGGCACHE		5	/* get cache size (ifbrparam) */
9331997bf2SAndrew Thompson #define	BRDGGIFS		6	/* get member list (ifbifconf) */
9431997bf2SAndrew Thompson #define	BRDGRTS			7	/* get address list (ifbaconf) */
9531997bf2SAndrew Thompson #define	BRDGSADDR		8	/* set static address (ifbareq) */
9631997bf2SAndrew Thompson #define	BRDGSTO			9	/* set cache timeout (ifbrparam) */
9731997bf2SAndrew Thompson #define	BRDGGTO			10	/* get cache timeout (ifbrparam) */
9831997bf2SAndrew Thompson #define	BRDGDADDR		11	/* delete address (ifbareq) */
9931997bf2SAndrew Thompson #define	BRDGFLUSH		12	/* flush address cache (ifbreq) */
10031997bf2SAndrew Thompson 
10131997bf2SAndrew Thompson #define	BRDGGPRI		13	/* get priority (ifbrparam) */
10231997bf2SAndrew Thompson #define	BRDGSPRI		14	/* set priority (ifbrparam) */
10331997bf2SAndrew Thompson #define	BRDGGHT			15	/* get hello time (ifbrparam) */
10431997bf2SAndrew Thompson #define	BRDGSHT			16	/* set hello time (ifbrparam) */
10531997bf2SAndrew Thompson #define	BRDGGFD			17	/* get forward delay (ifbrparam) */
10631997bf2SAndrew Thompson #define	BRDGSFD			18	/* set forward delay (ifbrparam) */
10731997bf2SAndrew Thompson #define	BRDGGMA			19	/* get max age (ifbrparam) */
10831997bf2SAndrew Thompson #define	BRDGSMA			20	/* set max age (ifbrparam) */
10931997bf2SAndrew Thompson #define	BRDGSIFPRIO		21	/* set if priority (ifbreq) */
11031997bf2SAndrew Thompson #define	BRDGSIFCOST		22	/* set if path cost (ifbreq) */
11191f6764eSAndrew Thompson #define	BRDGADDS		23	/* add bridge span member (ifbreq) */
11291f6764eSAndrew Thompson #define	BRDGDELS		24	/* delete bridge span member (ifbreq) */
11351383c37SAndrew Thompson #define	BRDGPARAM		25	/* get bridge STP params (ifbropreq) */
11451383c37SAndrew Thompson #define	BRDGGRTE		26	/* get cache drops (ifbrparam) */
11551383c37SAndrew Thompson #define	BRDGGIFSSTP		27	/* get member STP params list
11651383c37SAndrew Thompson 					 * (ifbpstpconf) */
1173fab7669SAndrew Thompson #define	BRDGSPROTO		28	/* set protocol (ifbrparam) */
1183fab7669SAndrew Thompson #define	BRDGSTXHC		29	/* set tx hold count (ifbrparam) */
1195f33ec7bSAndrew Thompson #define	BRDGSIFAMAX		30	/* set max interface addrs (ifbreq) */
12031997bf2SAndrew Thompson 
12131997bf2SAndrew Thompson /*
12231997bf2SAndrew Thompson  * Generic bridge control request.
12331997bf2SAndrew Thompson  */
12431997bf2SAndrew Thompson struct ifbreq {
12531997bf2SAndrew Thompson 	char		ifbr_ifsname[IFNAMSIZ];	/* member if name */
12631997bf2SAndrew Thompson 	uint32_t	ifbr_ifsflags;		/* member if flags */
1273fab7669SAndrew Thompson 	uint32_t	ifbr_stpflags;		/* member if STP flags */
1283fab7669SAndrew Thompson 	uint32_t	ifbr_path_cost;		/* member if STP cost */
12931997bf2SAndrew Thompson 	uint8_t		ifbr_portno;		/* member if port number */
1303fab7669SAndrew Thompson 	uint8_t		ifbr_priority;		/* member if STP priority */
1313fab7669SAndrew Thompson 	uint8_t		ifbr_proto;		/* member if STP protocol */
1323fab7669SAndrew Thompson 	uint8_t		ifbr_role;		/* member if STP role */
1333fab7669SAndrew Thompson 	uint8_t		ifbr_state;		/* member if STP state */
1345f33ec7bSAndrew Thompson 	uint32_t	ifbr_addrcnt;		/* member if addr number */
1355f33ec7bSAndrew Thompson 	uint32_t	ifbr_addrmax;		/* member if addr max */
1365f33ec7bSAndrew Thompson 	uint32_t	ifbr_addrexceeded;	/* member if addr violations */
1375f33ec7bSAndrew Thompson 	uint8_t		pad[32];
13831997bf2SAndrew Thompson };
13931997bf2SAndrew Thompson 
14031997bf2SAndrew Thompson /* BRDGGIFFLAGS, BRDGSIFFLAGS */
1416c32e05cSAndrew Thompson #define	IFBIF_LEARNING		0x0001	/* if can learn */
1426c32e05cSAndrew Thompson #define	IFBIF_DISCOVER		0x0002	/* if sends packets w/ unknown dest. */
1436c32e05cSAndrew Thompson #define	IFBIF_STP		0x0004	/* if participates in spanning tree */
1446c32e05cSAndrew Thompson #define	IFBIF_SPAN		0x0008	/* if is a span port */
1456c32e05cSAndrew Thompson #define	IFBIF_STICKY		0x0010	/* if learned addresses stick */
1466c32e05cSAndrew Thompson #define	IFBIF_BSTP_EDGE		0x0020	/* member stp edge port */
1476c32e05cSAndrew Thompson #define	IFBIF_BSTP_AUTOEDGE	0x0040	/* member stp autoedge enabled */
14878709605SAndrew Thompson #define	IFBIF_BSTP_PTP		0x0080	/* member stp point to point */
14978709605SAndrew Thompson #define	IFBIF_BSTP_AUTOPTP	0x0100	/* member stp autoptp enabled */
150daacddcaSShteryana Shopova #define	IFBIF_BSTP_ADMEDGE	0x0200	/* member stp admin edge enabled */
151daacddcaSShteryana Shopova #define	IFBIF_BSTP_ADMCOST	0x0400	/* member stp admin path cost */
15285ce7297SAndrew Thompson #define	IFBIF_PRIVATE		0x0800	/* if is a private segment */
15331997bf2SAndrew Thompson 
1546c32e05cSAndrew Thompson #define	IFBIFBITS	"\020\001LEARNING\002DISCOVER\003STP\004SPAN" \
15585ce7297SAndrew Thompson 			"\005STICKY\014PRIVATE\006EDGE\007AUTOEDGE\010PTP" \
15685ce7297SAndrew Thompson 			"\011AUTOPTP"
15778709605SAndrew Thompson #define	IFBIFMASK	~(IFBIF_BSTP_EDGE|IFBIF_BSTP_AUTOEDGE|IFBIF_BSTP_PTP| \
15878709605SAndrew Thompson 			IFBIF_BSTP_AUTOPTP|IFBIF_BSTP_ADMEDGE| \
159daacddcaSShteryana Shopova 			IFBIF_BSTP_ADMCOST)	/* not saved */
16031997bf2SAndrew Thompson 
16131997bf2SAndrew Thompson /* BRDGFLUSH */
16231997bf2SAndrew Thompson #define	IFBF_FLUSHDYN		0x00	/* flush learned addresses only */
16331997bf2SAndrew Thompson #define	IFBF_FLUSHALL		0x01	/* flush all addresses */
16431997bf2SAndrew Thompson 
16531997bf2SAndrew Thompson /*
16631997bf2SAndrew Thompson  * Interface list structure.
16731997bf2SAndrew Thompson  */
16831997bf2SAndrew Thompson struct ifbifconf {
16931997bf2SAndrew Thompson 	uint32_t	ifbic_len;	/* buffer size */
17031997bf2SAndrew Thompson 	union {
17131997bf2SAndrew Thompson 		caddr_t	ifbicu_buf;
17231997bf2SAndrew Thompson 		struct ifbreq *ifbicu_req;
17331997bf2SAndrew Thompson 	} ifbic_ifbicu;
17431997bf2SAndrew Thompson #define	ifbic_buf	ifbic_ifbicu.ifbicu_buf
17531997bf2SAndrew Thompson #define	ifbic_req	ifbic_ifbicu.ifbicu_req
17631997bf2SAndrew Thompson };
17731997bf2SAndrew Thompson 
17831997bf2SAndrew Thompson /*
17931997bf2SAndrew Thompson  * Bridge address request.
18031997bf2SAndrew Thompson  */
18131997bf2SAndrew Thompson struct ifbareq {
18231997bf2SAndrew Thompson 	char		ifba_ifsname[IFNAMSIZ];	/* member if name */
18331997bf2SAndrew Thompson 	unsigned long	ifba_expire;		/* address expire time */
18431997bf2SAndrew Thompson 	uint8_t		ifba_flags;		/* address flags */
18531997bf2SAndrew Thompson 	uint8_t		ifba_dst[ETHER_ADDR_LEN];/* destination address */
18622dcc3c1SAndrew Thompson 	uint16_t	ifba_vlan;		/* vlan id */
18731997bf2SAndrew Thompson };
18831997bf2SAndrew Thompson 
18931997bf2SAndrew Thompson #define	IFBAF_TYPEMASK	0x03	/* address type mask */
19031997bf2SAndrew Thompson #define	IFBAF_DYNAMIC	0x00	/* dynamically learned address */
19131997bf2SAndrew Thompson #define	IFBAF_STATIC	0x01	/* static address */
1923df7fad0SAndrew Thompson #define	IFBAF_STICKY	0x02	/* sticky address */
19331997bf2SAndrew Thompson 
1943df7fad0SAndrew Thompson #define	IFBAFBITS	"\020\1STATIC\2STICKY"
19531997bf2SAndrew Thompson 
19631997bf2SAndrew Thompson /*
19731997bf2SAndrew Thompson  * Address list structure.
19831997bf2SAndrew Thompson  */
19931997bf2SAndrew Thompson struct ifbaconf {
20031997bf2SAndrew Thompson 	uint32_t	ifbac_len;	/* buffer size */
20131997bf2SAndrew Thompson 	union {
20231997bf2SAndrew Thompson 		caddr_t ifbacu_buf;
20331997bf2SAndrew Thompson 		struct ifbareq *ifbacu_req;
20431997bf2SAndrew Thompson 	} ifbac_ifbacu;
20531997bf2SAndrew Thompson #define	ifbac_buf	ifbac_ifbacu.ifbacu_buf
20631997bf2SAndrew Thompson #define	ifbac_req	ifbac_ifbacu.ifbacu_req
20731997bf2SAndrew Thompson };
20831997bf2SAndrew Thompson 
20931997bf2SAndrew Thompson /*
21031997bf2SAndrew Thompson  * Bridge parameter structure.
21131997bf2SAndrew Thompson  */
21231997bf2SAndrew Thompson struct ifbrparam {
21331997bf2SAndrew Thompson 	union {
21431997bf2SAndrew Thompson 		uint32_t ifbrpu_int32;
21531997bf2SAndrew Thompson 		uint16_t ifbrpu_int16;
21631997bf2SAndrew Thompson 		uint8_t ifbrpu_int8;
21731997bf2SAndrew Thompson 	} ifbrp_ifbrpu;
21831997bf2SAndrew Thompson };
21931997bf2SAndrew Thompson #define	ifbrp_csize	ifbrp_ifbrpu.ifbrpu_int32	/* cache size */
22031997bf2SAndrew Thompson #define	ifbrp_ctime	ifbrp_ifbrpu.ifbrpu_int32	/* cache time (sec) */
22131997bf2SAndrew Thompson #define	ifbrp_prio	ifbrp_ifbrpu.ifbrpu_int16	/* bridge priority */
2223fab7669SAndrew Thompson #define	ifbrp_proto	ifbrp_ifbrpu.ifbrpu_int8	/* bridge protocol */
2233fab7669SAndrew Thompson #define	ifbrp_txhc	ifbrp_ifbrpu.ifbrpu_int8	/* bpdu tx holdcount */
22431997bf2SAndrew Thompson #define	ifbrp_hellotime	ifbrp_ifbrpu.ifbrpu_int8	/* hello time (sec) */
22531997bf2SAndrew Thompson #define	ifbrp_fwddelay	ifbrp_ifbrpu.ifbrpu_int8	/* fwd time (sec) */
22631997bf2SAndrew Thompson #define	ifbrp_maxage	ifbrp_ifbrpu.ifbrpu_int8	/* max age (sec) */
22751383c37SAndrew Thompson #define	ifbrp_cexceeded ifbrp_ifbrpu.ifbrpu_int32	/* # of cache dropped
22851383c37SAndrew Thompson 							 * adresses */
22951383c37SAndrew Thompson /*
23051383c37SAndrew Thompson  * Bridge current operational parameters structure.
23151383c37SAndrew Thompson  */
23251383c37SAndrew Thompson struct ifbropreq {
2333fab7669SAndrew Thompson 	uint8_t		ifbop_holdcount;
23451383c37SAndrew Thompson 	uint8_t		ifbop_maxage;
23551383c37SAndrew Thompson 	uint8_t		ifbop_hellotime;
23651383c37SAndrew Thompson 	uint8_t		ifbop_fwddelay;
2373fab7669SAndrew Thompson 	uint8_t		ifbop_protocol;
2383fab7669SAndrew Thompson 	uint16_t	ifbop_priority;
23951383c37SAndrew Thompson 	uint16_t	ifbop_root_port;
24051383c37SAndrew Thompson 	uint32_t	ifbop_root_path_cost;
2416c32e05cSAndrew Thompson 	uint64_t	ifbop_bridgeid;
24251383c37SAndrew Thompson 	uint64_t	ifbop_designated_root;
2436c32e05cSAndrew Thompson 	uint64_t	ifbop_designated_bridge;
24451383c37SAndrew Thompson 	struct timeval	ifbop_last_tc_time;
24551383c37SAndrew Thompson };
24651383c37SAndrew Thompson 
24751383c37SAndrew Thompson /*
24851383c37SAndrew Thompson  * Bridge member operational STP params structure.
24951383c37SAndrew Thompson  */
25051383c37SAndrew Thompson struct ifbpstpreq {
25151383c37SAndrew Thompson 	uint8_t		ifbp_portno;		/* bp STP port number */
25251383c37SAndrew Thompson 	uint32_t	ifbp_fwd_trans;		/* bp STP fwd transitions */
25351383c37SAndrew Thompson 	uint32_t	ifbp_design_cost;	/* bp STP designated cost */
25451383c37SAndrew Thompson 	uint32_t	ifbp_design_port;	/* bp STP designated port */
25551383c37SAndrew Thompson 	uint64_t	ifbp_design_bridge;	/* bp STP designated bridge */
25651383c37SAndrew Thompson 	uint64_t	ifbp_design_root;	/* bp STP designated root */
25751383c37SAndrew Thompson };
25851383c37SAndrew Thompson 
25951383c37SAndrew Thompson /*
26051383c37SAndrew Thompson  * Bridge STP ports list structure.
26151383c37SAndrew Thompson  */
26251383c37SAndrew Thompson struct ifbpstpconf {
26351383c37SAndrew Thompson 	uint32_t	ifbpstp_len;	/* buffer size */
26451383c37SAndrew Thompson 	union {
26551383c37SAndrew Thompson 		caddr_t	ifbpstpu_buf;
26651383c37SAndrew Thompson 		struct ifbpstpreq *ifbpstpu_req;
26751383c37SAndrew Thompson 	} ifbpstp_ifbpstpu;
26851383c37SAndrew Thompson #define	ifbpstp_buf	ifbpstp_ifbpstpu.ifbpstpu_buf
26951383c37SAndrew Thompson #define	ifbpstp_req	ifbpstp_ifbpstpu.ifbpstpu_req
27051383c37SAndrew Thompson };
27131997bf2SAndrew Thompson 
27231997bf2SAndrew Thompson #ifdef _KERNEL
27331997bf2SAndrew Thompson 
27431997bf2SAndrew Thompson #define BRIDGE_LOCK_INIT(_sc)		do {			\
27531997bf2SAndrew Thompson 	mtx_init(&(_sc)->sc_mtx, "if_bridge", NULL, MTX_DEF);	\
27631997bf2SAndrew Thompson 	cv_init(&(_sc)->sc_cv, "if_bridge_cv");			\
27731997bf2SAndrew Thompson } while (0)
27831997bf2SAndrew Thompson #define BRIDGE_LOCK_DESTROY(_sc)	do {	\
27931997bf2SAndrew Thompson 	mtx_destroy(&(_sc)->sc_mtx);		\
28031997bf2SAndrew Thompson 	cv_destroy(&(_sc)->sc_cv);		\
28131997bf2SAndrew Thompson } while (0)
28231997bf2SAndrew Thompson #define BRIDGE_LOCK(_sc)		mtx_lock(&(_sc)->sc_mtx)
28331997bf2SAndrew Thompson #define BRIDGE_UNLOCK(_sc)		mtx_unlock(&(_sc)->sc_mtx)
28431997bf2SAndrew Thompson #define BRIDGE_LOCK_ASSERT(_sc)		mtx_assert(&(_sc)->sc_mtx, MA_OWNED)
285ab5cda71SKristof Provost #define BRIDGE_UNLOCK_ASSERT(_sc)	mtx_assert(&(_sc)->sc_mtx, MA_NOTOWNED)
28631997bf2SAndrew Thompson #define	BRIDGE_LOCK2REF(_sc, _err)	do {	\
28731997bf2SAndrew Thompson 	mtx_assert(&(_sc)->sc_mtx, MA_OWNED);	\
28831997bf2SAndrew Thompson 	if ((_sc)->sc_iflist_xcnt > 0)		\
28931997bf2SAndrew Thompson 		(_err) = EBUSY;			\
29031997bf2SAndrew Thompson 	else					\
29131997bf2SAndrew Thompson 		(_sc)->sc_iflist_ref++;		\
29231997bf2SAndrew Thompson 	mtx_unlock(&(_sc)->sc_mtx);		\
29331997bf2SAndrew Thompson } while (0)
29431997bf2SAndrew Thompson #define	BRIDGE_UNREF(_sc)		do {				\
29531997bf2SAndrew Thompson 	mtx_lock(&(_sc)->sc_mtx);					\
29631997bf2SAndrew Thompson 	(_sc)->sc_iflist_ref--;						\
29731997bf2SAndrew Thompson 	if (((_sc)->sc_iflist_xcnt > 0) && ((_sc)->sc_iflist_ref == 0))	\
29831997bf2SAndrew Thompson 		cv_broadcast(&(_sc)->sc_cv);				\
29931997bf2SAndrew Thompson 	mtx_unlock(&(_sc)->sc_mtx);					\
30031997bf2SAndrew Thompson } while (0)
30131997bf2SAndrew Thompson #define	BRIDGE_XLOCK(_sc)		do {		\
30231997bf2SAndrew Thompson 	mtx_assert(&(_sc)->sc_mtx, MA_OWNED);		\
30331997bf2SAndrew Thompson 	(_sc)->sc_iflist_xcnt++;			\
30431997bf2SAndrew Thompson 	while ((_sc)->sc_iflist_ref > 0)		\
30531997bf2SAndrew Thompson 		cv_wait(&(_sc)->sc_cv, &(_sc)->sc_mtx);	\
30631997bf2SAndrew Thompson } while (0)
30731997bf2SAndrew Thompson #define	BRIDGE_XDROP(_sc)		do {	\
30831997bf2SAndrew Thompson 	mtx_assert(&(_sc)->sc_mtx, MA_OWNED);	\
30931997bf2SAndrew Thompson 	(_sc)->sc_iflist_xcnt--;		\
31031997bf2SAndrew Thompson } while (0)
31131997bf2SAndrew Thompson 
312fd6238a6SAndrew Thompson #define BRIDGE_INPUT(_ifp, _m)		do {    	\
313fd6238a6SAndrew Thompson 	KASSERT(bridge_input_p != NULL,			\
314fd6238a6SAndrew Thompson 	    ("%s: if_bridge not loaded!", __func__));	\
315fd6238a6SAndrew Thompson 	_m = (*bridge_input_p)(_ifp, _m);		\
316fd6238a6SAndrew Thompson 	if (_m != NULL)					\
317fd6238a6SAndrew Thompson 		_ifp = _m->m_pkthdr.rcvif;		\
318fd6238a6SAndrew Thompson } while (0)
319fd6238a6SAndrew Thompson 
320fd6238a6SAndrew Thompson #define BRIDGE_OUTPUT(_ifp, _m, _err)	do {    		\
321fd6238a6SAndrew Thompson 	KASSERT(bridge_output_p != NULL,			\
322fd6238a6SAndrew Thompson 	    ("%s: if_bridge not loaded!", __func__));		\
323fd6238a6SAndrew Thompson 	_err = (*bridge_output_p)(_ifp, _m, NULL, NULL);	\
324fd6238a6SAndrew Thompson } while (0)
325fd6238a6SAndrew Thompson 
326fd6238a6SAndrew Thompson extern	struct mbuf *(*bridge_input_p)(struct ifnet *, struct mbuf *);
327fd6238a6SAndrew Thompson extern	int (*bridge_output_p)(struct ifnet *, struct mbuf *,
328fd6238a6SAndrew Thompson 		struct sockaddr *, struct rtentry *);
329fd6238a6SAndrew Thompson extern	void (*bridge_dn_p)(struct mbuf *, struct ifnet *);
33031997bf2SAndrew Thompson 
33131997bf2SAndrew Thompson #endif /* _KERNEL */
332