xref: /freebsd/sys/net/if_vlan.c (revision ea4ca115b7b110ada3d657044c19fab4c8766a52)
1c398230bSWarner Losh /*-
22cc2df49SGarrett Wollman  * Copyright 1998 Massachusetts Institute of Technology
32cc2df49SGarrett Wollman  *
42cc2df49SGarrett Wollman  * Permission to use, copy, modify, and distribute this software and
52cc2df49SGarrett Wollman  * its documentation for any purpose and without fee is hereby
62cc2df49SGarrett Wollman  * granted, provided that both the above copyright notice and this
72cc2df49SGarrett Wollman  * permission notice appear in all copies, that both the above
82cc2df49SGarrett Wollman  * copyright notice and this permission notice appear in all
92cc2df49SGarrett Wollman  * supporting documentation, and that the name of M.I.T. not be used
102cc2df49SGarrett Wollman  * in advertising or publicity pertaining to distribution of the
112cc2df49SGarrett Wollman  * software without specific, written prior permission.  M.I.T. makes
122cc2df49SGarrett Wollman  * no representations about the suitability of this software for any
132cc2df49SGarrett Wollman  * purpose.  It is provided "as is" without express or implied
142cc2df49SGarrett Wollman  * warranty.
152cc2df49SGarrett Wollman  *
162cc2df49SGarrett Wollman  * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
172cc2df49SGarrett Wollman  * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
182cc2df49SGarrett Wollman  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
192cc2df49SGarrett Wollman  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
202cc2df49SGarrett Wollman  * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212cc2df49SGarrett Wollman  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222cc2df49SGarrett Wollman  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
232cc2df49SGarrett Wollman  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
242cc2df49SGarrett Wollman  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
252cc2df49SGarrett Wollman  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
262cc2df49SGarrett Wollman  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
272cc2df49SGarrett Wollman  * SUCH DAMAGE.
282cc2df49SGarrett Wollman  *
29c3aac50fSPeter Wemm  * $FreeBSD$
302cc2df49SGarrett Wollman  */
312cc2df49SGarrett Wollman 
322cc2df49SGarrett Wollman /*
332cc2df49SGarrett Wollman  * if_vlan.c - pseudo-device driver for IEEE 802.1Q virtual LANs.
342cc2df49SGarrett Wollman  * Might be extended some day to also handle IEEE 802.1p priority
352cc2df49SGarrett Wollman  * tagging.  This is sort of sneaky in the implementation, since
362cc2df49SGarrett Wollman  * we need to pretend to be enough of an Ethernet implementation
372cc2df49SGarrett Wollman  * to make arp work.  The way we do this is by telling everyone
382cc2df49SGarrett Wollman  * that we are an Ethernet, and then catch the packets that
3946a32e61SPhilippe Charnier  * ether_output() left on our output queue when it calls
402cc2df49SGarrett Wollman  * if_start(), rewrite them for use by the real outgoing interface,
412cc2df49SGarrett Wollman  * and ask it to send them.
422cc2df49SGarrett Wollman  */
432cc2df49SGarrett Wollman 
4475ee267cSGleb Smirnoff #include "opt_vlan.h"
452cc2df49SGarrett Wollman 
462cc2df49SGarrett Wollman #include <sys/param.h>
472cc2df49SGarrett Wollman #include <sys/kernel.h>
4875ee267cSGleb Smirnoff #include <sys/lock.h>
49f731f104SBill Paul #include <sys/malloc.h>
502cc2df49SGarrett Wollman #include <sys/mbuf.h>
512b120974SPeter Wemm #include <sys/module.h>
5275ee267cSGleb Smirnoff #include <sys/rwlock.h>
53f731f104SBill Paul #include <sys/queue.h>
542cc2df49SGarrett Wollman #include <sys/socket.h>
552cc2df49SGarrett Wollman #include <sys/sockio.h>
562cc2df49SGarrett Wollman #include <sys/sysctl.h>
572cc2df49SGarrett Wollman #include <sys/systm.h>
582cc2df49SGarrett Wollman 
592cc2df49SGarrett Wollman #include <net/bpf.h>
602cc2df49SGarrett Wollman #include <net/ethernet.h>
612cc2df49SGarrett Wollman #include <net/if.h>
62f889d2efSBrooks Davis #include <net/if_clone.h>
632cc2df49SGarrett Wollman #include <net/if_dl.h>
642cc2df49SGarrett Wollman #include <net/if_types.h>
652cc2df49SGarrett Wollman #include <net/if_vlan_var.h>
664b79449eSBjoern A. Zeeb #include <net/vnet.h>
672cc2df49SGarrett Wollman 
689d4fe4b2SBrooks Davis #define VLANNAME	"vlan"
6975ee267cSGleb Smirnoff #define	VLAN_DEF_HWIDTH	4
7064a17d2eSYaroslav Tykhiy #define	VLAN_IFFLAGS	(IFF_BROADCAST | IFF_MULTICAST)
7175ee267cSGleb Smirnoff 
722dc879b3SYaroslav Tykhiy #define	UP_AND_RUNNING(ifp) \
732dc879b3SYaroslav Tykhiy     ((ifp)->if_flags & IFF_UP && (ifp)->if_drv_flags & IFF_DRV_RUNNING)
742dc879b3SYaroslav Tykhiy 
7575ee267cSGleb Smirnoff LIST_HEAD(ifvlanhead, ifvlan);
7675ee267cSGleb Smirnoff 
7775ee267cSGleb Smirnoff struct ifvlantrunk {
7875ee267cSGleb Smirnoff 	struct	ifnet   *parent;	/* parent interface of this trunk */
7975ee267cSGleb Smirnoff 	struct	rwlock	rw;
8075ee267cSGleb Smirnoff #ifdef VLAN_ARRAY
815cb8c31aSYaroslav Tykhiy #define	VLAN_ARRAY_SIZE	(EVL_VLID_MASK + 1)
825cb8c31aSYaroslav Tykhiy 	struct	ifvlan	*vlans[VLAN_ARRAY_SIZE]; /* static table */
8375ee267cSGleb Smirnoff #else
8475ee267cSGleb Smirnoff 	struct	ifvlanhead *hash;	/* dynamic hash-list table */
8575ee267cSGleb Smirnoff 	uint16_t	hmask;
8675ee267cSGleb Smirnoff 	uint16_t	hwidth;
8775ee267cSGleb Smirnoff #endif
8875ee267cSGleb Smirnoff 	int		refcnt;
8975ee267cSGleb Smirnoff };
909d4fe4b2SBrooks Davis 
91a3814acfSSam Leffler struct vlan_mc_entry {
92a3814acfSSam Leffler 	struct ether_addr		mc_addr;
93a3814acfSSam Leffler 	SLIST_ENTRY(vlan_mc_entry)	mc_entries;
94a3814acfSSam Leffler };
95a3814acfSSam Leffler 
96a3814acfSSam Leffler struct	ifvlan {
9775ee267cSGleb Smirnoff 	struct	ifvlantrunk *ifv_trunk;
98fc74a9f9SBrooks Davis 	struct	ifnet *ifv_ifp;
9975ee267cSGleb Smirnoff #define	TRUNK(ifv)	((ifv)->ifv_trunk)
10075ee267cSGleb Smirnoff #define	PARENT(ifv)	((ifv)->ifv_trunk->parent)
1011cf236fbSYaroslav Tykhiy 	int	ifv_pflags;	/* special flags we have set on parent */
102a3814acfSSam Leffler 	struct	ifv_linkmib {
103a3814acfSSam Leffler 		int	ifvm_encaplen;	/* encapsulation length */
104a3814acfSSam Leffler 		int	ifvm_mtufudge;	/* MTU fudged by this much */
105a3814acfSSam Leffler 		int	ifvm_mintu;	/* min transmission unit */
10673f2233dSYaroslav Tykhiy 		uint16_t ifvm_proto;	/* encapsulation ethertype */
10775ee267cSGleb Smirnoff 		uint16_t ifvm_tag;	/* tag to apply on packets leaving if */
108a3814acfSSam Leffler 	}	ifv_mib;
109114c608cSYaroslav Tykhiy 	SLIST_HEAD(, vlan_mc_entry) vlan_mc_listhead;
110c0cb022bSYaroslav Tykhiy #ifndef VLAN_ARRAY
111a3814acfSSam Leffler 	LIST_ENTRY(ifvlan) ifv_list;
112c0cb022bSYaroslav Tykhiy #endif
113a3814acfSSam Leffler };
11473f2233dSYaroslav Tykhiy #define	ifv_proto	ifv_mib.ifvm_proto
115a3814acfSSam Leffler #define	ifv_tag		ifv_mib.ifvm_tag
116a3814acfSSam Leffler #define	ifv_encaplen	ifv_mib.ifvm_encaplen
117a3814acfSSam Leffler #define	ifv_mtufudge	ifv_mib.ifvm_mtufudge
118a3814acfSSam Leffler #define	ifv_mintu	ifv_mib.ifvm_mintu
119a3814acfSSam Leffler 
12075ee267cSGleb Smirnoff /* Special flags we should propagate to parent. */
1211cf236fbSYaroslav Tykhiy static struct {
1221cf236fbSYaroslav Tykhiy 	int flag;
1231cf236fbSYaroslav Tykhiy 	int (*func)(struct ifnet *, int);
1241cf236fbSYaroslav Tykhiy } vlan_pflags[] = {
1251cf236fbSYaroslav Tykhiy 	{IFF_PROMISC, ifpromisc},
1261cf236fbSYaroslav Tykhiy 	{IFF_ALLMULTI, if_allmulti},
1271cf236fbSYaroslav Tykhiy 	{0, NULL}
1281cf236fbSYaroslav Tykhiy };
129a3814acfSSam Leffler 
1304a408dcbSBill Paul SYSCTL_DECL(_net_link);
131d2a75853SBill Fenner SYSCTL_NODE(_net_link, IFT_L2VLAN, vlan, CTLFLAG_RW, 0, "IEEE 802.1Q VLAN");
1322cc2df49SGarrett Wollman SYSCTL_NODE(_net_link_vlan, PF_LINK, link, CTLFLAG_RW, 0, "for consistency");
1332cc2df49SGarrett Wollman 
134f6e5e0adSYaroslav Tykhiy static int soft_pad = 0;
135f6e5e0adSYaroslav Tykhiy SYSCTL_INT(_net_link_vlan, OID_AUTO, soft_pad, CTLFLAG_RW, &soft_pad, 0,
136f6e5e0adSYaroslav Tykhiy 	   "pad short frames before tagging");
137f6e5e0adSYaroslav Tykhiy 
1385e17543aSBrooks Davis static MALLOC_DEFINE(M_VLAN, VLANNAME, "802.1Q Virtual LAN Interface");
1392cc2df49SGarrett Wollman 
1405cb8c31aSYaroslav Tykhiy static eventhandler_tag ifdetach_tag;
141ea4ca115SAndrew Thompson static eventhandler_tag iflladdr_tag;
1425cb8c31aSYaroslav Tykhiy 
1434faedfe8SSam Leffler /*
14475ee267cSGleb Smirnoff  * We have a global mutex, that is used to serialize configuration
14575ee267cSGleb Smirnoff  * changes and isn't used in normal packet delivery.
14675ee267cSGleb Smirnoff  *
14775ee267cSGleb Smirnoff  * We also have a per-trunk rwlock, that is locked shared on packet
14875ee267cSGleb Smirnoff  * processing and exclusive when configuration is changed.
14975ee267cSGleb Smirnoff  *
15075ee267cSGleb Smirnoff  * The VLAN_ARRAY substitutes the dynamic hash with a static array
151ad387028SAndrew Thompson  * with 4096 entries. In theory this can give a boost in processing,
15275ee267cSGleb Smirnoff  * however on practice it does not. Probably this is because array
15375ee267cSGleb Smirnoff  * is too big to fit into CPU cache.
1544faedfe8SSam Leffler  */
1554faedfe8SSam Leffler static struct mtx ifv_mtx;
15675ee267cSGleb Smirnoff #define	VLAN_LOCK_INIT()	mtx_init(&ifv_mtx, "vlan_global", NULL, MTX_DEF)
1574faedfe8SSam Leffler #define	VLAN_LOCK_DESTROY()	mtx_destroy(&ifv_mtx)
1584faedfe8SSam Leffler #define	VLAN_LOCK_ASSERT()	mtx_assert(&ifv_mtx, MA_OWNED)
1594faedfe8SSam Leffler #define	VLAN_LOCK()		mtx_lock(&ifv_mtx)
1604faedfe8SSam Leffler #define	VLAN_UNLOCK()		mtx_unlock(&ifv_mtx)
16175ee267cSGleb Smirnoff #define	TRUNK_LOCK_INIT(trunk)	rw_init(&(trunk)->rw, VLANNAME)
16275ee267cSGleb Smirnoff #define	TRUNK_LOCK_DESTROY(trunk) rw_destroy(&(trunk)->rw)
16375ee267cSGleb Smirnoff #define	TRUNK_LOCK(trunk)	rw_wlock(&(trunk)->rw)
16475ee267cSGleb Smirnoff #define	TRUNK_UNLOCK(trunk)	rw_wunlock(&(trunk)->rw)
16575ee267cSGleb Smirnoff #define	TRUNK_LOCK_ASSERT(trunk) rw_assert(&(trunk)->rw, RA_WLOCKED)
16675ee267cSGleb Smirnoff #define	TRUNK_RLOCK(trunk)	rw_rlock(&(trunk)->rw)
16775ee267cSGleb Smirnoff #define	TRUNK_RUNLOCK(trunk)	rw_runlock(&(trunk)->rw)
16875ee267cSGleb Smirnoff #define	TRUNK_LOCK_RASSERT(trunk) rw_assert(&(trunk)->rw, RA_RLOCKED)
16975ee267cSGleb Smirnoff 
17075ee267cSGleb Smirnoff #ifndef VLAN_ARRAY
17175ee267cSGleb Smirnoff static	void vlan_inithash(struct ifvlantrunk *trunk);
17275ee267cSGleb Smirnoff static	void vlan_freehash(struct ifvlantrunk *trunk);
17375ee267cSGleb Smirnoff static	int vlan_inshash(struct ifvlantrunk *trunk, struct ifvlan *ifv);
17475ee267cSGleb Smirnoff static	int vlan_remhash(struct ifvlantrunk *trunk, struct ifvlan *ifv);
17575ee267cSGleb Smirnoff static	void vlan_growhash(struct ifvlantrunk *trunk, int howmuch);
17675ee267cSGleb Smirnoff static __inline struct ifvlan * vlan_gethash(struct ifvlantrunk *trunk,
17775ee267cSGleb Smirnoff 	uint16_t tag);
17875ee267cSGleb Smirnoff #endif
17975ee267cSGleb Smirnoff static	void trunk_destroy(struct ifvlantrunk *trunk);
1804faedfe8SSam Leffler 
1812cc2df49SGarrett Wollman static	void vlan_start(struct ifnet *ifp);
182114c608cSYaroslav Tykhiy static	void vlan_init(void *foo);
183a3814acfSSam Leffler static	void vlan_input(struct ifnet *ifp, struct mbuf *m);
184cfe8b629SGarrett Wollman static	int vlan_ioctl(struct ifnet *ifp, u_long cmd, caddr_t addr);
1851cf236fbSYaroslav Tykhiy static	int vlan_setflag(struct ifnet *ifp, int flag, int status,
1861cf236fbSYaroslav Tykhiy     int (*func)(struct ifnet *, int));
1871cf236fbSYaroslav Tykhiy static	int vlan_setflags(struct ifnet *ifp, int status);
188f731f104SBill Paul static	int vlan_setmulti(struct ifnet *ifp);
189f731f104SBill Paul static	int vlan_unconfig(struct ifnet *ifp);
1905cb8c31aSYaroslav Tykhiy static	int vlan_unconfig_locked(struct ifnet *ifp);
19175ee267cSGleb Smirnoff static	int vlan_config(struct ifvlan *ifv, struct ifnet *p, uint16_t tag);
192a6fffd6cSBrooks Davis static	void vlan_link_state(struct ifnet *ifp);
19375ee267cSGleb Smirnoff static	void vlan_capabilities(struct ifvlan *ifv);
19475ee267cSGleb Smirnoff static	void vlan_trunk_capabilities(struct ifnet *ifp);
195f731f104SBill Paul 
196f889d2efSBrooks Davis static	struct ifnet *vlan_clone_match_ethertag(struct if_clone *,
197f889d2efSBrooks Davis     const char *, int *);
198f889d2efSBrooks Davis static	int vlan_clone_match(struct if_clone *, const char *);
1996b7330e2SSam Leffler static	int vlan_clone_create(struct if_clone *, char *, size_t, caddr_t);
200f889d2efSBrooks Davis static	int vlan_clone_destroy(struct if_clone *, struct ifnet *);
201f889d2efSBrooks Davis 
2025cb8c31aSYaroslav Tykhiy static	void vlan_ifdetach(void *arg, struct ifnet *ifp);
203ea4ca115SAndrew Thompson static  void vlan_iflladdr(void *arg, struct ifnet *ifp);
2045cb8c31aSYaroslav Tykhiy 
205c6e6ca3eSYaroslav Tykhiy static	struct if_clone vlan_cloner = IFC_CLONE_INITIALIZER(VLANNAME, NULL,
206c6e6ca3eSYaroslav Tykhiy     IF_MAXUNIT, NULL, vlan_clone_match, vlan_clone_create, vlan_clone_destroy);
2079d4fe4b2SBrooks Davis 
20875ee267cSGleb Smirnoff #ifndef VLAN_ARRAY
20975ee267cSGleb Smirnoff #define HASH(n, m)	((((n) >> 8) ^ ((n) >> 4) ^ (n)) & (m))
210114c608cSYaroslav Tykhiy 
21175ee267cSGleb Smirnoff static void
21275ee267cSGleb Smirnoff vlan_inithash(struct ifvlantrunk *trunk)
21375ee267cSGleb Smirnoff {
21475ee267cSGleb Smirnoff 	int i, n;
21575ee267cSGleb Smirnoff 
21675ee267cSGleb Smirnoff 	/*
21775ee267cSGleb Smirnoff 	 * The trunk must not be locked here since we call malloc(M_WAITOK).
21875ee267cSGleb Smirnoff 	 * It is OK in case this function is called before the trunk struct
21975ee267cSGleb Smirnoff 	 * gets hooked up and becomes visible from other threads.
22075ee267cSGleb Smirnoff 	 */
22175ee267cSGleb Smirnoff 
22275ee267cSGleb Smirnoff 	KASSERT(trunk->hwidth == 0 && trunk->hash == NULL,
22375ee267cSGleb Smirnoff 	    ("%s: hash already initialized", __func__));
22475ee267cSGleb Smirnoff 
22575ee267cSGleb Smirnoff 	trunk->hwidth = VLAN_DEF_HWIDTH;
22675ee267cSGleb Smirnoff 	n = 1 << trunk->hwidth;
22775ee267cSGleb Smirnoff 	trunk->hmask = n - 1;
22875ee267cSGleb Smirnoff 	trunk->hash = malloc(sizeof(struct ifvlanhead) * n, M_VLAN, M_WAITOK);
22975ee267cSGleb Smirnoff 	for (i = 0; i < n; i++)
23075ee267cSGleb Smirnoff 		LIST_INIT(&trunk->hash[i]);
23175ee267cSGleb Smirnoff }
23275ee267cSGleb Smirnoff 
23375ee267cSGleb Smirnoff static void
23475ee267cSGleb Smirnoff vlan_freehash(struct ifvlantrunk *trunk)
23575ee267cSGleb Smirnoff {
23675ee267cSGleb Smirnoff #ifdef INVARIANTS
23775ee267cSGleb Smirnoff 	int i;
23875ee267cSGleb Smirnoff 
23975ee267cSGleb Smirnoff 	KASSERT(trunk->hwidth > 0, ("%s: hwidth not positive", __func__));
24075ee267cSGleb Smirnoff 	for (i = 0; i < (1 << trunk->hwidth); i++)
24175ee267cSGleb Smirnoff 		KASSERT(LIST_EMPTY(&trunk->hash[i]),
24275ee267cSGleb Smirnoff 		    ("%s: hash table not empty", __func__));
24375ee267cSGleb Smirnoff #endif
24475ee267cSGleb Smirnoff 	free(trunk->hash, M_VLAN);
24575ee267cSGleb Smirnoff 	trunk->hash = NULL;
24675ee267cSGleb Smirnoff 	trunk->hwidth = trunk->hmask = 0;
24775ee267cSGleb Smirnoff }
24875ee267cSGleb Smirnoff 
24975ee267cSGleb Smirnoff static int
25075ee267cSGleb Smirnoff vlan_inshash(struct ifvlantrunk *trunk, struct ifvlan *ifv)
25175ee267cSGleb Smirnoff {
25275ee267cSGleb Smirnoff 	int i, b;
25375ee267cSGleb Smirnoff 	struct ifvlan *ifv2;
25475ee267cSGleb Smirnoff 
25575ee267cSGleb Smirnoff 	TRUNK_LOCK_ASSERT(trunk);
25675ee267cSGleb Smirnoff 	KASSERT(trunk->hwidth > 0, ("%s: hwidth not positive", __func__));
25775ee267cSGleb Smirnoff 
25875ee267cSGleb Smirnoff 	b = 1 << trunk->hwidth;
25975ee267cSGleb Smirnoff 	i = HASH(ifv->ifv_tag, trunk->hmask);
26075ee267cSGleb Smirnoff 	LIST_FOREACH(ifv2, &trunk->hash[i], ifv_list)
26175ee267cSGleb Smirnoff 		if (ifv->ifv_tag == ifv2->ifv_tag)
26275ee267cSGleb Smirnoff 			return (EEXIST);
26375ee267cSGleb Smirnoff 
26475ee267cSGleb Smirnoff 	/*
26575ee267cSGleb Smirnoff 	 * Grow the hash when the number of vlans exceeds half of the number of
26675ee267cSGleb Smirnoff 	 * hash buckets squared. This will make the average linked-list length
26775ee267cSGleb Smirnoff 	 * buckets/2.
26875ee267cSGleb Smirnoff 	 */
26975ee267cSGleb Smirnoff 	if (trunk->refcnt > (b * b) / 2) {
27075ee267cSGleb Smirnoff 		vlan_growhash(trunk, 1);
27175ee267cSGleb Smirnoff 		i = HASH(ifv->ifv_tag, trunk->hmask);
27275ee267cSGleb Smirnoff 	}
27375ee267cSGleb Smirnoff 	LIST_INSERT_HEAD(&trunk->hash[i], ifv, ifv_list);
27475ee267cSGleb Smirnoff 	trunk->refcnt++;
27575ee267cSGleb Smirnoff 
27675ee267cSGleb Smirnoff 	return (0);
27775ee267cSGleb Smirnoff }
27875ee267cSGleb Smirnoff 
27975ee267cSGleb Smirnoff static int
28075ee267cSGleb Smirnoff vlan_remhash(struct ifvlantrunk *trunk, struct ifvlan *ifv)
28175ee267cSGleb Smirnoff {
28275ee267cSGleb Smirnoff 	int i, b;
28375ee267cSGleb Smirnoff 	struct ifvlan *ifv2;
28475ee267cSGleb Smirnoff 
28575ee267cSGleb Smirnoff 	TRUNK_LOCK_ASSERT(trunk);
28675ee267cSGleb Smirnoff 	KASSERT(trunk->hwidth > 0, ("%s: hwidth not positive", __func__));
28775ee267cSGleb Smirnoff 
28875ee267cSGleb Smirnoff 	b = 1 << trunk->hwidth;
28975ee267cSGleb Smirnoff 	i = HASH(ifv->ifv_tag, trunk->hmask);
29075ee267cSGleb Smirnoff 	LIST_FOREACH(ifv2, &trunk->hash[i], ifv_list)
29175ee267cSGleb Smirnoff 		if (ifv2 == ifv) {
29275ee267cSGleb Smirnoff 			trunk->refcnt--;
29375ee267cSGleb Smirnoff 			LIST_REMOVE(ifv2, ifv_list);
29475ee267cSGleb Smirnoff 			if (trunk->refcnt < (b * b) / 2)
29575ee267cSGleb Smirnoff 				vlan_growhash(trunk, -1);
29675ee267cSGleb Smirnoff 			return (0);
29775ee267cSGleb Smirnoff 		}
29875ee267cSGleb Smirnoff 
29975ee267cSGleb Smirnoff 	panic("%s: vlan not found\n", __func__);
30075ee267cSGleb Smirnoff 	return (ENOENT); /*NOTREACHED*/
30175ee267cSGleb Smirnoff }
30275ee267cSGleb Smirnoff 
30375ee267cSGleb Smirnoff /*
30475ee267cSGleb Smirnoff  * Grow the hash larger or smaller if memory permits.
30575ee267cSGleb Smirnoff  */
30675ee267cSGleb Smirnoff static void
30775ee267cSGleb Smirnoff vlan_growhash(struct ifvlantrunk *trunk, int howmuch)
30875ee267cSGleb Smirnoff {
30975ee267cSGleb Smirnoff 	struct ifvlan *ifv;
31075ee267cSGleb Smirnoff 	struct ifvlanhead *hash2;
31175ee267cSGleb Smirnoff 	int hwidth2, i, j, n, n2;
31275ee267cSGleb Smirnoff 
31375ee267cSGleb Smirnoff 	TRUNK_LOCK_ASSERT(trunk);
31475ee267cSGleb Smirnoff 	KASSERT(trunk->hwidth > 0, ("%s: hwidth not positive", __func__));
31575ee267cSGleb Smirnoff 
31675ee267cSGleb Smirnoff 	if (howmuch == 0) {
31775ee267cSGleb Smirnoff 		/* Harmless yet obvious coding error */
31875ee267cSGleb Smirnoff 		printf("%s: howmuch is 0\n", __func__);
31975ee267cSGleb Smirnoff 		return;
32075ee267cSGleb Smirnoff 	}
32175ee267cSGleb Smirnoff 
32275ee267cSGleb Smirnoff 	hwidth2 = trunk->hwidth + howmuch;
32375ee267cSGleb Smirnoff 	n = 1 << trunk->hwidth;
32475ee267cSGleb Smirnoff 	n2 = 1 << hwidth2;
32575ee267cSGleb Smirnoff 	/* Do not shrink the table below the default */
32675ee267cSGleb Smirnoff 	if (hwidth2 < VLAN_DEF_HWIDTH)
32775ee267cSGleb Smirnoff 		return;
32875ee267cSGleb Smirnoff 
32975ee267cSGleb Smirnoff 	/* M_NOWAIT because we're called with trunk mutex held */
33075ee267cSGleb Smirnoff 	hash2 = malloc(sizeof(struct ifvlanhead) * n2, M_VLAN, M_NOWAIT);
33175ee267cSGleb Smirnoff 	if (hash2 == NULL) {
33275ee267cSGleb Smirnoff 		printf("%s: out of memory -- hash size not changed\n",
33375ee267cSGleb Smirnoff 		    __func__);
33475ee267cSGleb Smirnoff 		return;		/* We can live with the old hash table */
33575ee267cSGleb Smirnoff 	}
33675ee267cSGleb Smirnoff 	for (j = 0; j < n2; j++)
33775ee267cSGleb Smirnoff 		LIST_INIT(&hash2[j]);
33875ee267cSGleb Smirnoff 	for (i = 0; i < n; i++)
339c0cb022bSYaroslav Tykhiy 		while ((ifv = LIST_FIRST(&trunk->hash[i])) != NULL) {
34075ee267cSGleb Smirnoff 			LIST_REMOVE(ifv, ifv_list);
34175ee267cSGleb Smirnoff 			j = HASH(ifv->ifv_tag, n2 - 1);
34275ee267cSGleb Smirnoff 			LIST_INSERT_HEAD(&hash2[j], ifv, ifv_list);
34375ee267cSGleb Smirnoff 		}
34475ee267cSGleb Smirnoff 	free(trunk->hash, M_VLAN);
34575ee267cSGleb Smirnoff 	trunk->hash = hash2;
34675ee267cSGleb Smirnoff 	trunk->hwidth = hwidth2;
34775ee267cSGleb Smirnoff 	trunk->hmask = n2 - 1;
348f84b2d69SYaroslav Tykhiy 
349f84b2d69SYaroslav Tykhiy 	if (bootverbose)
350f84b2d69SYaroslav Tykhiy 		if_printf(trunk->parent,
351f84b2d69SYaroslav Tykhiy 		    "VLAN hash table resized from %d to %d buckets\n", n, n2);
35275ee267cSGleb Smirnoff }
35375ee267cSGleb Smirnoff 
35475ee267cSGleb Smirnoff static __inline struct ifvlan *
35575ee267cSGleb Smirnoff vlan_gethash(struct ifvlantrunk *trunk, uint16_t tag)
35675ee267cSGleb Smirnoff {
35775ee267cSGleb Smirnoff 	struct ifvlan *ifv;
35875ee267cSGleb Smirnoff 
35975ee267cSGleb Smirnoff 	TRUNK_LOCK_RASSERT(trunk);
36075ee267cSGleb Smirnoff 
36175ee267cSGleb Smirnoff 	LIST_FOREACH(ifv, &trunk->hash[HASH(tag, trunk->hmask)], ifv_list)
36275ee267cSGleb Smirnoff 		if (ifv->ifv_tag == tag)
36375ee267cSGleb Smirnoff 			return (ifv);
36475ee267cSGleb Smirnoff 	return (NULL);
36575ee267cSGleb Smirnoff }
36675ee267cSGleb Smirnoff 
36775ee267cSGleb Smirnoff #if 0
36875ee267cSGleb Smirnoff /* Debugging code to view the hashtables. */
36975ee267cSGleb Smirnoff static void
37075ee267cSGleb Smirnoff vlan_dumphash(struct ifvlantrunk *trunk)
37175ee267cSGleb Smirnoff {
37275ee267cSGleb Smirnoff 	int i;
37375ee267cSGleb Smirnoff 	struct ifvlan *ifv;
37475ee267cSGleb Smirnoff 
37575ee267cSGleb Smirnoff 	for (i = 0; i < (1 << trunk->hwidth); i++) {
37675ee267cSGleb Smirnoff 		printf("%d: ", i);
37775ee267cSGleb Smirnoff 		LIST_FOREACH(ifv, &trunk->hash[i], ifv_list)
37875ee267cSGleb Smirnoff 			printf("%s ", ifv->ifv_ifp->if_xname);
37975ee267cSGleb Smirnoff 		printf("\n");
38075ee267cSGleb Smirnoff 	}
38175ee267cSGleb Smirnoff }
38275ee267cSGleb Smirnoff #endif /* 0 */
38375ee267cSGleb Smirnoff #endif /* !VLAN_ARRAY */
38475ee267cSGleb Smirnoff 
38575ee267cSGleb Smirnoff static void
38675ee267cSGleb Smirnoff trunk_destroy(struct ifvlantrunk *trunk)
38775ee267cSGleb Smirnoff {
38875ee267cSGleb Smirnoff 	VLAN_LOCK_ASSERT();
38975ee267cSGleb Smirnoff 
39075ee267cSGleb Smirnoff 	TRUNK_LOCK(trunk);
39175ee267cSGleb Smirnoff #ifndef VLAN_ARRAY
39275ee267cSGleb Smirnoff 	vlan_freehash(trunk);
39375ee267cSGleb Smirnoff #endif
39475ee267cSGleb Smirnoff 	trunk->parent->if_vlantrunk = NULL;
39533499e2aSYaroslav Tykhiy 	TRUNK_UNLOCK(trunk);
39633499e2aSYaroslav Tykhiy 	TRUNK_LOCK_DESTROY(trunk);
39775ee267cSGleb Smirnoff 	free(trunk, M_VLAN);
39875ee267cSGleb Smirnoff }
39975ee267cSGleb Smirnoff 
400f731f104SBill Paul /*
401f731f104SBill Paul  * Program our multicast filter. What we're actually doing is
402f731f104SBill Paul  * programming the multicast filter of the parent. This has the
403f731f104SBill Paul  * side effect of causing the parent interface to receive multicast
404f731f104SBill Paul  * traffic that it doesn't really want, which ends up being discarded
405f731f104SBill Paul  * later by the upper protocol layers. Unfortunately, there's no way
406f731f104SBill Paul  * to avoid this: there really is only one physical interface.
40729c2dfbeSBruce M Simpson  *
40829c2dfbeSBruce M Simpson  * XXX: There is a possible race here if more than one thread is
40929c2dfbeSBruce M Simpson  *      modifying the multicast state of the vlan interface at the same time.
410f731f104SBill Paul  */
4112b120974SPeter Wemm static int
4122b120974SPeter Wemm vlan_setmulti(struct ifnet *ifp)
413f731f104SBill Paul {
414f731f104SBill Paul 	struct ifnet		*ifp_p;
415f731f104SBill Paul 	struct ifmultiaddr	*ifma, *rifma = NULL;
416f731f104SBill Paul 	struct ifvlan		*sc;
417c0cb022bSYaroslav Tykhiy 	struct vlan_mc_entry	*mc;
418f731f104SBill Paul 	struct sockaddr_dl	sdl;
419f731f104SBill Paul 	int			error;
420f731f104SBill Paul 
42129c2dfbeSBruce M Simpson 	/*VLAN_LOCK_ASSERT();*/
42229c2dfbeSBruce M Simpson 
423f731f104SBill Paul 	/* Find the parent. */
424f731f104SBill Paul 	sc = ifp->if_softc;
42575ee267cSGleb Smirnoff 	ifp_p = PARENT(sc);
4261b2a4f7aSBill Fenner 
4278b615593SMarko Zec 	CURVNET_SET_QUIET(ifp_p->if_vnet);
4288b615593SMarko Zec 
42915a66c21SBruce M Simpson 	bzero((char *)&sdl, sizeof(sdl));
43015a66c21SBruce M Simpson 	sdl.sdl_len = sizeof(sdl);
431f731f104SBill Paul 	sdl.sdl_family = AF_LINK;
43226e30963SBill Fenner 	sdl.sdl_index = ifp_p->if_index;
43326e30963SBill Fenner 	sdl.sdl_type = IFT_ETHER;
43424993214SYaroslav Tykhiy 	sdl.sdl_alen = ETHER_ADDR_LEN;
435f731f104SBill Paul 
436f731f104SBill Paul 	/* First, remove any existing filter entries. */
437c0cb022bSYaroslav Tykhiy 	while ((mc = SLIST_FIRST(&sc->vlan_mc_listhead)) != NULL) {
438f731f104SBill Paul 		bcopy((char *)&mc->mc_addr, LLADDR(&sdl), ETHER_ADDR_LEN);
439f731f104SBill Paul 		error = if_delmulti(ifp_p, (struct sockaddr *)&sdl);
440f731f104SBill Paul 		if (error)
441f731f104SBill Paul 			return (error);
442f731f104SBill Paul 		SLIST_REMOVE_HEAD(&sc->vlan_mc_listhead, mc_entries);
4439d4fe4b2SBrooks Davis 		free(mc, M_VLAN);
444f731f104SBill Paul 	}
445f731f104SBill Paul 
446f731f104SBill Paul 	/* Now program new ones. */
4476817526dSPoul-Henning Kamp 	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
448f731f104SBill Paul 		if (ifma->ifma_addr->sa_family != AF_LINK)
449f731f104SBill Paul 			continue;
45029c2dfbeSBruce M Simpson 		mc = malloc(sizeof(struct vlan_mc_entry), M_VLAN, M_NOWAIT);
45129c2dfbeSBruce M Simpson 		if (mc == NULL)
45229c2dfbeSBruce M Simpson 			return (ENOMEM);
453f731f104SBill Paul 		bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
454f731f104SBill Paul 		    (char *)&mc->mc_addr, ETHER_ADDR_LEN);
455f731f104SBill Paul 		SLIST_INSERT_HEAD(&sc->vlan_mc_listhead, mc, mc_entries);
45626e30963SBill Fenner 		bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
45726e30963SBill Fenner 		    LLADDR(&sdl), ETHER_ADDR_LEN);
458f731f104SBill Paul 		error = if_addmulti(ifp_p, (struct sockaddr *)&sdl, &rifma);
459f731f104SBill Paul 		if (error)
460f731f104SBill Paul 			return (error);
461f731f104SBill Paul 	}
462f731f104SBill Paul 
4638b615593SMarko Zec 	CURVNET_RESTORE();
464f731f104SBill Paul 	return (0);
465f731f104SBill Paul }
4662cc2df49SGarrett Wollman 
467a3814acfSSam Leffler /*
468ea4ca115SAndrew Thompson  * A handler for parent interface link layer address changes.
469ea4ca115SAndrew Thompson  * If the parent interface link layer address is changed we
470ea4ca115SAndrew Thompson  * should also change it on all children vlans.
471ea4ca115SAndrew Thompson  */
472ea4ca115SAndrew Thompson static void
473ea4ca115SAndrew Thompson vlan_iflladdr(void *arg __unused, struct ifnet *ifp)
474ea4ca115SAndrew Thompson {
475ea4ca115SAndrew Thompson 	struct ifvlan *ifv;
476ea4ca115SAndrew Thompson 	int i;
477ea4ca115SAndrew Thompson 
478ea4ca115SAndrew Thompson 	/*
479ea4ca115SAndrew Thompson 	 * Check if it's a trunk interface first of all
480ea4ca115SAndrew Thompson 	 * to avoid needless locking.
481ea4ca115SAndrew Thompson 	 */
482ea4ca115SAndrew Thompson 	if (ifp->if_vlantrunk == NULL)
483ea4ca115SAndrew Thompson 		return;
484ea4ca115SAndrew Thompson 
485ea4ca115SAndrew Thompson 	VLAN_LOCK();
486ea4ca115SAndrew Thompson 	/*
487ea4ca115SAndrew Thompson 	 * OK, it's a trunk.  Loop over and change all vlan's lladdrs on it.
488ea4ca115SAndrew Thompson 	 */
489ea4ca115SAndrew Thompson #ifdef VLAN_ARRAY
490ea4ca115SAndrew Thompson 	for (i = 0; i < VLAN_ARRAY_SIZE; i++)
491ea4ca115SAndrew Thompson 		if ((ifv = ifp->if_vlantrunk->vlans[i]))
492ea4ca115SAndrew Thompson 			if_setlladdr(ifv->ifv_ifp, IF_LLADDR(ifp), ETHER_ADDR_LEN);
493ea4ca115SAndrew Thompson #else /* VLAN_ARRAY */
494ea4ca115SAndrew Thompson 	for (i = 0; i < (1 << ifp->if_vlantrunk->hwidth); i++)
495ea4ca115SAndrew Thompson 		LIST_FOREACH(ifv, &ifp->if_vlantrunk->hash[i], ifv_list)
496ea4ca115SAndrew Thompson 			if_setlladdr(ifv->ifv_ifp, IF_LLADDR(ifp), ETHER_ADDR_LEN);
497ea4ca115SAndrew Thompson #endif /* VLAN_ARRAY */
498ea4ca115SAndrew Thompson 	VLAN_UNLOCK();
499ea4ca115SAndrew Thompson 
500ea4ca115SAndrew Thompson }
501ea4ca115SAndrew Thompson 
502ea4ca115SAndrew Thompson /*
5035cb8c31aSYaroslav Tykhiy  * A handler for network interface departure events.
5045cb8c31aSYaroslav Tykhiy  * Track departure of trunks here so that we don't access invalid
5055cb8c31aSYaroslav Tykhiy  * pointers or whatever if a trunk is ripped from under us, e.g.,
5065428776eSJohn Baldwin  * by ejecting its hot-plug card.  However, if an ifnet is simply
5075428776eSJohn Baldwin  * being renamed, then there's no need to tear down the state.
5085cb8c31aSYaroslav Tykhiy  */
5095cb8c31aSYaroslav Tykhiy static void
5105cb8c31aSYaroslav Tykhiy vlan_ifdetach(void *arg __unused, struct ifnet *ifp)
5115cb8c31aSYaroslav Tykhiy {
5125cb8c31aSYaroslav Tykhiy 	struct ifvlan *ifv;
5135cb8c31aSYaroslav Tykhiy 	int i;
5145cb8c31aSYaroslav Tykhiy 
5155cb8c31aSYaroslav Tykhiy 	/*
5165cb8c31aSYaroslav Tykhiy 	 * Check if it's a trunk interface first of all
5175cb8c31aSYaroslav Tykhiy 	 * to avoid needless locking.
5185cb8c31aSYaroslav Tykhiy 	 */
5195cb8c31aSYaroslav Tykhiy 	if (ifp->if_vlantrunk == NULL)
5205cb8c31aSYaroslav Tykhiy 		return;
5215cb8c31aSYaroslav Tykhiy 
5225428776eSJohn Baldwin 	/* If the ifnet is just being renamed, don't do anything. */
5235428776eSJohn Baldwin 	if (ifp->if_flags & IFF_RENAMING)
5245428776eSJohn Baldwin 		return;
5255428776eSJohn Baldwin 
5265cb8c31aSYaroslav Tykhiy 	VLAN_LOCK();
5275cb8c31aSYaroslav Tykhiy 	/*
5285cb8c31aSYaroslav Tykhiy 	 * OK, it's a trunk.  Loop over and detach all vlan's on it.
5295cb8c31aSYaroslav Tykhiy 	 * Check trunk pointer after each vlan_unconfig() as it will
5305cb8c31aSYaroslav Tykhiy 	 * free it and set to NULL after the last vlan was detached.
5315cb8c31aSYaroslav Tykhiy 	 */
5325cb8c31aSYaroslav Tykhiy #ifdef VLAN_ARRAY
5335cb8c31aSYaroslav Tykhiy 	for (i = 0; i < VLAN_ARRAY_SIZE; i++)
5345cb8c31aSYaroslav Tykhiy 		if ((ifv = ifp->if_vlantrunk->vlans[i])) {
5355cb8c31aSYaroslav Tykhiy 			vlan_unconfig_locked(ifv->ifv_ifp);
5365cb8c31aSYaroslav Tykhiy 			if (ifp->if_vlantrunk == NULL)
5375cb8c31aSYaroslav Tykhiy 				break;
5385cb8c31aSYaroslav Tykhiy 		}
5395cb8c31aSYaroslav Tykhiy #else /* VLAN_ARRAY */
5405cb8c31aSYaroslav Tykhiy restart:
5415cb8c31aSYaroslav Tykhiy 	for (i = 0; i < (1 << ifp->if_vlantrunk->hwidth); i++)
5425cb8c31aSYaroslav Tykhiy 		if ((ifv = LIST_FIRST(&ifp->if_vlantrunk->hash[i]))) {
5435cb8c31aSYaroslav Tykhiy 			vlan_unconfig_locked(ifv->ifv_ifp);
5445cb8c31aSYaroslav Tykhiy 			if (ifp->if_vlantrunk)
5455cb8c31aSYaroslav Tykhiy 				goto restart;	/* trunk->hwidth can change */
5465cb8c31aSYaroslav Tykhiy 			else
5475cb8c31aSYaroslav Tykhiy 				break;
5485cb8c31aSYaroslav Tykhiy 		}
5495cb8c31aSYaroslav Tykhiy #endif /* VLAN_ARRAY */
5505cb8c31aSYaroslav Tykhiy 	/* Trunk should have been destroyed in vlan_unconfig(). */
5515cb8c31aSYaroslav Tykhiy 	KASSERT(ifp->if_vlantrunk == NULL, ("%s: purge failed", __func__));
5525cb8c31aSYaroslav Tykhiy 	VLAN_UNLOCK();
5535cb8c31aSYaroslav Tykhiy }
5545cb8c31aSYaroslav Tykhiy 
5555cb8c31aSYaroslav Tykhiy /*
556a3814acfSSam Leffler  * VLAN support can be loaded as a module.  The only place in the
557a3814acfSSam Leffler  * system that's intimately aware of this is ether_input.  We hook
558a3814acfSSam Leffler  * into this code through vlan_input_p which is defined there and
559a3814acfSSam Leffler  * set here.  Noone else in the system should be aware of this so
560a3814acfSSam Leffler  * we use an explicit reference here.
561a3814acfSSam Leffler  */
562a3814acfSSam Leffler extern	void (*vlan_input_p)(struct ifnet *, struct mbuf *);
563a3814acfSSam Leffler 
564984be3efSGleb Smirnoff /* For if_link_state_change() eyes only... */
565a6fffd6cSBrooks Davis extern	void (*vlan_link_state_p)(struct ifnet *);
566127d7b2dSAndre Oppermann 
5672b120974SPeter Wemm static int
5682b120974SPeter Wemm vlan_modevent(module_t mod, int type, void *data)
5692b120974SPeter Wemm {
5709d4fe4b2SBrooks Davis 
5712b120974SPeter Wemm 	switch (type) {
5722b120974SPeter Wemm 	case MOD_LOAD:
5735cb8c31aSYaroslav Tykhiy 		ifdetach_tag = EVENTHANDLER_REGISTER(ifnet_departure_event,
5745cb8c31aSYaroslav Tykhiy 		    vlan_ifdetach, NULL, EVENTHANDLER_PRI_ANY);
5755cb8c31aSYaroslav Tykhiy 		if (ifdetach_tag == NULL)
5765cb8c31aSYaroslav Tykhiy 			return (ENOMEM);
577ea4ca115SAndrew Thompson 		iflladdr_tag = EVENTHANDLER_REGISTER(iflladdr_event,
578ea4ca115SAndrew Thompson 		    vlan_iflladdr, NULL, EVENTHANDLER_PRI_ANY);
579ea4ca115SAndrew Thompson 		if (iflladdr_tag == NULL)
580ea4ca115SAndrew Thompson 			return (ENOMEM);
5814faedfe8SSam Leffler 		VLAN_LOCK_INIT();
5829d4fe4b2SBrooks Davis 		vlan_input_p = vlan_input;
583127d7b2dSAndre Oppermann 		vlan_link_state_p = vlan_link_state;
58475ee267cSGleb Smirnoff 		vlan_trunk_cap_p = vlan_trunk_capabilities;
5859d4fe4b2SBrooks Davis 		if_clone_attach(&vlan_cloner);
58625c0f7b3SYaroslav Tykhiy 		if (bootverbose)
58725c0f7b3SYaroslav Tykhiy 			printf("vlan: initialized, using "
58825c0f7b3SYaroslav Tykhiy #ifdef VLAN_ARRAY
58925c0f7b3SYaroslav Tykhiy 			       "full-size arrays"
59025c0f7b3SYaroslav Tykhiy #else
59125c0f7b3SYaroslav Tykhiy 			       "hash tables with chaining"
59225c0f7b3SYaroslav Tykhiy #endif
59325c0f7b3SYaroslav Tykhiy 
59425c0f7b3SYaroslav Tykhiy 			       "\n");
5952b120974SPeter Wemm 		break;
5962b120974SPeter Wemm 	case MOD_UNLOAD:
5979d4fe4b2SBrooks Davis 		if_clone_detach(&vlan_cloner);
5985cb8c31aSYaroslav Tykhiy 		EVENTHANDLER_DEREGISTER(ifnet_departure_event, ifdetach_tag);
599ea4ca115SAndrew Thompson 		EVENTHANDLER_DEREGISTER(iflladdr_event, iflladdr_tag);
6009d4fe4b2SBrooks Davis 		vlan_input_p = NULL;
601127d7b2dSAndre Oppermann 		vlan_link_state_p = NULL;
60275ee267cSGleb Smirnoff 		vlan_trunk_cap_p = NULL;
6034faedfe8SSam Leffler 		VLAN_LOCK_DESTROY();
60425c0f7b3SYaroslav Tykhiy 		if (bootverbose)
60525c0f7b3SYaroslav Tykhiy 			printf("vlan: unloaded\n");
6069d4fe4b2SBrooks Davis 		break;
6073e019deaSPoul-Henning Kamp 	default:
6083e019deaSPoul-Henning Kamp 		return (EOPNOTSUPP);
6092b120974SPeter Wemm 	}
61015a66c21SBruce M Simpson 	return (0);
6112b120974SPeter Wemm }
6122b120974SPeter Wemm 
6132b120974SPeter Wemm static moduledata_t vlan_mod = {
6142b120974SPeter Wemm 	"if_vlan",
6152b120974SPeter Wemm 	vlan_modevent,
6162b120974SPeter Wemm 	0
6172b120974SPeter Wemm };
6182b120974SPeter Wemm 
6192b120974SPeter Wemm DECLARE_MODULE(if_vlan, vlan_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
62011edc477SEd Maste MODULE_VERSION(if_vlan, 3);
6212cc2df49SGarrett Wollman 
622f889d2efSBrooks Davis static struct ifnet *
623f889d2efSBrooks Davis vlan_clone_match_ethertag(struct if_clone *ifc, const char *name, int *tag)
6249d4fe4b2SBrooks Davis {
625f889d2efSBrooks Davis 	const char *cp;
626f889d2efSBrooks Davis 	struct ifnet *ifp;
627fb92ad4aSJohn Baldwin 	int t;
628f889d2efSBrooks Davis 
629f889d2efSBrooks Davis 	/* Check for <etherif>.<vlan> style interface names. */
63077dfcdc4SRobert Watson 	IFNET_RLOCK_NOSLEEP();
631603724d3SBjoern A. Zeeb 	TAILQ_FOREACH(ifp, &V_ifnet, if_link) {
632f889d2efSBrooks Davis 		if (ifp->if_type != IFT_ETHER)
633f889d2efSBrooks Davis 			continue;
634f889d2efSBrooks Davis 		if (strncmp(ifp->if_xname, name, strlen(ifp->if_xname)) != 0)
635f889d2efSBrooks Davis 			continue;
636f889d2efSBrooks Davis 		cp = name + strlen(ifp->if_xname);
637fb92ad4aSJohn Baldwin 		if (*cp++ != '.')
638f889d2efSBrooks Davis 			continue;
639fb92ad4aSJohn Baldwin 		if (*cp == '\0')
640f889d2efSBrooks Davis 			continue;
641fb92ad4aSJohn Baldwin 		t = 0;
642fb92ad4aSJohn Baldwin 		for(; *cp >= '0' && *cp <= '9'; cp++)
643f889d2efSBrooks Davis 			t = (t * 10) + (*cp - '0');
644fb92ad4aSJohn Baldwin 		if (*cp != '\0')
645fb92ad4aSJohn Baldwin 			continue;
646f889d2efSBrooks Davis 		if (tag != NULL)
647f889d2efSBrooks Davis 			*tag = t;
648f889d2efSBrooks Davis 		break;
649f889d2efSBrooks Davis 	}
65077dfcdc4SRobert Watson 	IFNET_RUNLOCK_NOSLEEP();
651f889d2efSBrooks Davis 
65215a66c21SBruce M Simpson 	return (ifp);
653f889d2efSBrooks Davis }
654f889d2efSBrooks Davis 
655f889d2efSBrooks Davis static int
656f889d2efSBrooks Davis vlan_clone_match(struct if_clone *ifc, const char *name)
657f889d2efSBrooks Davis {
658f889d2efSBrooks Davis 	const char *cp;
659f889d2efSBrooks Davis 
660f889d2efSBrooks Davis 	if (vlan_clone_match_ethertag(ifc, name, NULL) != NULL)
661f889d2efSBrooks Davis 		return (1);
662f889d2efSBrooks Davis 
663f889d2efSBrooks Davis 	if (strncmp(VLANNAME, name, strlen(VLANNAME)) != 0)
664f889d2efSBrooks Davis 		return (0);
665f889d2efSBrooks Davis 	for (cp = name + 4; *cp != '\0'; cp++) {
666f889d2efSBrooks Davis 		if (*cp < '0' || *cp > '9')
667f889d2efSBrooks Davis 			return (0);
668f889d2efSBrooks Davis 	}
669f889d2efSBrooks Davis 
670f889d2efSBrooks Davis 	return (1);
671f889d2efSBrooks Davis }
672f889d2efSBrooks Davis 
673f889d2efSBrooks Davis static int
6746b7330e2SSam Leffler vlan_clone_create(struct if_clone *ifc, char *name, size_t len, caddr_t params)
675f889d2efSBrooks Davis {
676f889d2efSBrooks Davis 	char *dp;
677f889d2efSBrooks Davis 	int wildcard;
678f889d2efSBrooks Davis 	int unit;
679f889d2efSBrooks Davis 	int error;
680f889d2efSBrooks Davis 	int tag;
681f889d2efSBrooks Davis 	int ethertag;
6829d4fe4b2SBrooks Davis 	struct ifvlan *ifv;
6839d4fe4b2SBrooks Davis 	struct ifnet *ifp;
684f889d2efSBrooks Davis 	struct ifnet *p;
6856b7330e2SSam Leffler 	struct vlanreq vlr;
68665239942SYaroslav Tykhiy 	static const u_char eaddr[ETHER_ADDR_LEN];	/* 00:00:00:00:00:00 */
687f889d2efSBrooks Davis 
6886b7330e2SSam Leffler 	/*
6896b7330e2SSam Leffler 	 * There are 3 (ugh) ways to specify the cloned device:
6906b7330e2SSam Leffler 	 * o pass a parameter block with the clone request.
6916b7330e2SSam Leffler 	 * o specify parameters in the text of the clone device name
6926b7330e2SSam Leffler 	 * o specify no parameters and get an unattached device that
6936b7330e2SSam Leffler 	 *   must be configured separately.
6946b7330e2SSam Leffler 	 * The first technique is preferred; the latter two are
6956b7330e2SSam Leffler 	 * supported for backwards compatibilty.
6966b7330e2SSam Leffler 	 */
6976b7330e2SSam Leffler 	if (params) {
6986b7330e2SSam Leffler 		error = copyin(params, &vlr, sizeof(vlr));
6996b7330e2SSam Leffler 		if (error)
7006b7330e2SSam Leffler 			return error;
7016b7330e2SSam Leffler 		p = ifunit(vlr.vlr_parent);
7026b7330e2SSam Leffler 		if (p == NULL)
7036b7330e2SSam Leffler 			return ENXIO;
7046b7330e2SSam Leffler 		/*
7056b7330e2SSam Leffler 		 * Don't let the caller set up a VLAN tag with
7066b7330e2SSam Leffler 		 * anything except VLID bits.
7076b7330e2SSam Leffler 		 */
7086b7330e2SSam Leffler 		if (vlr.vlr_tag & ~EVL_VLID_MASK)
7096b7330e2SSam Leffler 			return (EINVAL);
7106b7330e2SSam Leffler 		error = ifc_name2unit(name, &unit);
7116b7330e2SSam Leffler 		if (error != 0)
7126b7330e2SSam Leffler 			return (error);
7136b7330e2SSam Leffler 
7146b7330e2SSam Leffler 		ethertag = 1;
7156b7330e2SSam Leffler 		tag = vlr.vlr_tag;
7166b7330e2SSam Leffler 		wildcard = (unit < 0);
7176b7330e2SSam Leffler 	} else if ((p = vlan_clone_match_ethertag(ifc, name, &tag)) != NULL) {
718f889d2efSBrooks Davis 		ethertag = 1;
719f889d2efSBrooks Davis 		unit = -1;
720f889d2efSBrooks Davis 		wildcard = 0;
721f889d2efSBrooks Davis 
722f889d2efSBrooks Davis 		/*
723f889d2efSBrooks Davis 		 * Don't let the caller set up a VLAN tag with
724f889d2efSBrooks Davis 		 * anything except VLID bits.
725f889d2efSBrooks Davis 		 */
72615a66c21SBruce M Simpson 		if (tag & ~EVL_VLID_MASK)
727f889d2efSBrooks Davis 			return (EINVAL);
728f889d2efSBrooks Davis 	} else {
729f889d2efSBrooks Davis 		ethertag = 0;
730f889d2efSBrooks Davis 
731f889d2efSBrooks Davis 		error = ifc_name2unit(name, &unit);
732f889d2efSBrooks Davis 		if (error != 0)
733f889d2efSBrooks Davis 			return (error);
734f889d2efSBrooks Davis 
735f889d2efSBrooks Davis 		wildcard = (unit < 0);
736f889d2efSBrooks Davis 	}
737f889d2efSBrooks Davis 
738f889d2efSBrooks Davis 	error = ifc_alloc_unit(ifc, &unit);
739f889d2efSBrooks Davis 	if (error != 0)
740f889d2efSBrooks Davis 		return (error);
741f889d2efSBrooks Davis 
742f889d2efSBrooks Davis 	/* In the wildcard case, we need to update the name. */
743f889d2efSBrooks Davis 	if (wildcard) {
744f889d2efSBrooks Davis 		for (dp = name; *dp != '\0'; dp++);
745f889d2efSBrooks Davis 		if (snprintf(dp, len - (dp-name), "%d", unit) >
746f889d2efSBrooks Davis 		    len - (dp-name) - 1) {
747f889d2efSBrooks Davis 			panic("%s: interface name too long", __func__);
748f889d2efSBrooks Davis 		}
749f889d2efSBrooks Davis 	}
7509d4fe4b2SBrooks Davis 
751a163d034SWarner Losh 	ifv = malloc(sizeof(struct ifvlan), M_VLAN, M_WAITOK | M_ZERO);
752fc74a9f9SBrooks Davis 	ifp = ifv->ifv_ifp = if_alloc(IFT_ETHER);
753fc74a9f9SBrooks Davis 	if (ifp == NULL) {
754fc74a9f9SBrooks Davis 		ifc_free_unit(ifc, unit);
755fc74a9f9SBrooks Davis 		free(ifv, M_VLAN);
756fc74a9f9SBrooks Davis 		return (ENOSPC);
757fc74a9f9SBrooks Davis 	}
7589d4fe4b2SBrooks Davis 	SLIST_INIT(&ifv->vlan_mc_listhead);
7599d4fe4b2SBrooks Davis 
7609d4fe4b2SBrooks Davis 	ifp->if_softc = ifv;
761f889d2efSBrooks Davis 	/*
762cab574d8SYaroslav Tykhiy 	 * Set the name manually rather than using if_initname because
763f889d2efSBrooks Davis 	 * we don't conform to the default naming convention for interfaces.
764f889d2efSBrooks Davis 	 */
765f889d2efSBrooks Davis 	strlcpy(ifp->if_xname, name, IFNAMSIZ);
766f889d2efSBrooks Davis 	ifp->if_dname = ifc->ifc_name;
767f889d2efSBrooks Davis 	ifp->if_dunit = unit;
7689d4fe4b2SBrooks Davis 	/* NB: flags are not set here */
7699d4fe4b2SBrooks Davis 	ifp->if_linkmib = &ifv->ifv_mib;
77015a66c21SBruce M Simpson 	ifp->if_linkmiblen = sizeof(ifv->ifv_mib);
7719d4fe4b2SBrooks Davis 	/* NB: mtu is not set here */
7729d4fe4b2SBrooks Davis 
773114c608cSYaroslav Tykhiy 	ifp->if_init = vlan_init;
7749d4fe4b2SBrooks Davis 	ifp->if_start = vlan_start;
7759d4fe4b2SBrooks Davis 	ifp->if_ioctl = vlan_ioctl;
7769d4fe4b2SBrooks Davis 	ifp->if_snd.ifq_maxlen = ifqmaxlen;
77764a17d2eSYaroslav Tykhiy 	ifp->if_flags = VLAN_IFFLAGS;
778fc74a9f9SBrooks Davis 	ether_ifattach(ifp, eaddr);
7799d4fe4b2SBrooks Davis 	/* Now undo some of the damage... */
780211f625aSBill Fenner 	ifp->if_baudrate = 0;
781a3814acfSSam Leffler 	ifp->if_type = IFT_L2VLAN;
782a3814acfSSam Leffler 	ifp->if_hdrlen = ETHER_VLAN_ENCAP_LEN;
7839d4fe4b2SBrooks Davis 
784f889d2efSBrooks Davis 	if (ethertag) {
78575ee267cSGleb Smirnoff 		error = vlan_config(ifv, p, tag);
786f889d2efSBrooks Davis 		if (error != 0) {
787f889d2efSBrooks Davis 			/*
788f889d2efSBrooks Davis 			 * Since we've partialy failed, we need to back
789f889d2efSBrooks Davis 			 * out all the way, otherwise userland could get
790f889d2efSBrooks Davis 			 * confused.  Thus, we destroy the interface.
791f889d2efSBrooks Davis 			 */
792f889d2efSBrooks Davis 			ether_ifdetach(ifp);
793249f4297SYaroslav Tykhiy 			vlan_unconfig(ifp);
794fc74a9f9SBrooks Davis 			if_free_type(ifp, IFT_ETHER);
79596c8ef3aSMaxim Konovalov 			ifc_free_unit(ifc, unit);
796f889d2efSBrooks Davis 			free(ifv, M_VLAN);
797f889d2efSBrooks Davis 
798f889d2efSBrooks Davis 			return (error);
799f889d2efSBrooks Davis 		}
800f889d2efSBrooks Davis 
8011cf236fbSYaroslav Tykhiy 		/* Update flags on the parent, if necessary. */
8021cf236fbSYaroslav Tykhiy 		vlan_setflags(ifp, 1);
803f889d2efSBrooks Davis 	}
804f889d2efSBrooks Davis 
8059d4fe4b2SBrooks Davis 	return (0);
8069d4fe4b2SBrooks Davis }
8079d4fe4b2SBrooks Davis 
808f889d2efSBrooks Davis static int
809f889d2efSBrooks Davis vlan_clone_destroy(struct if_clone *ifc, struct ifnet *ifp)
8109d4fe4b2SBrooks Davis {
8119d4fe4b2SBrooks Davis 	struct ifvlan *ifv = ifp->if_softc;
812114c608cSYaroslav Tykhiy 	int unit = ifp->if_dunit;
813b4e9f837SBrooks Davis 
814249f4297SYaroslav Tykhiy 	ether_ifdetach(ifp);	/* first, remove it from system-wide lists */
815249f4297SYaroslav Tykhiy 	vlan_unconfig(ifp);	/* now it can be unconfigured and freed */
816f3447eb4SBrooks Davis 	if_free_type(ifp, IFT_ETHER);
8179d4fe4b2SBrooks Davis 	free(ifv, M_VLAN);
818b4e9f837SBrooks Davis 	ifc_free_unit(ifc, unit);
819b4e9f837SBrooks Davis 
820f889d2efSBrooks Davis 	return (0);
8219d4fe4b2SBrooks Davis }
8229d4fe4b2SBrooks Davis 
82315a66c21SBruce M Simpson /*
82415a66c21SBruce M Simpson  * The ifp->if_init entry point for vlan(4) is a no-op.
82515a66c21SBruce M Simpson  */
8262cc2df49SGarrett Wollman static void
827114c608cSYaroslav Tykhiy vlan_init(void *foo __unused)
8282cc2df49SGarrett Wollman {
8292cc2df49SGarrett Wollman }
8302cc2df49SGarrett Wollman 
8316d3a3ab7SGleb Smirnoff /*
8326d3a3ab7SGleb Smirnoff  * The if_start method for vlan(4) interface. It doesn't
8336d3a3ab7SGleb Smirnoff  * raises the IFF_DRV_OACTIVE flag, since it is called
8346d3a3ab7SGleb Smirnoff  * only from IFQ_HANDOFF() macro in ether_output_frame().
8356d3a3ab7SGleb Smirnoff  * If the interface queue is full, and vlan_start() is
8366d3a3ab7SGleb Smirnoff  * not called, the queue would never get emptied and
8376d3a3ab7SGleb Smirnoff  * interface would stall forever.
8386d3a3ab7SGleb Smirnoff  */
8392cc2df49SGarrett Wollman static void
8402cc2df49SGarrett Wollman vlan_start(struct ifnet *ifp)
8412cc2df49SGarrett Wollman {
8422cc2df49SGarrett Wollman 	struct ifvlan *ifv;
8432cc2df49SGarrett Wollman 	struct ifnet *p;
8445326b23cSMatthew N. Dodd 	struct mbuf *m;
845affc907dSMax Laier 	int error;
8462cc2df49SGarrett Wollman 
8472cc2df49SGarrett Wollman 	ifv = ifp->if_softc;
84875ee267cSGleb Smirnoff 	p = PARENT(ifv);
8492cc2df49SGarrett Wollman 
8502cc2df49SGarrett Wollman 	for (;;) {
8512cc2df49SGarrett Wollman 		IF_DEQUEUE(&ifp->if_snd, m);
8522dc879b3SYaroslav Tykhiy 		if (m == NULL)
8532cc2df49SGarrett Wollman 			break;
854a3814acfSSam Leffler 		BPF_MTAP(ifp, m);
8552cc2df49SGarrett Wollman 
856f731f104SBill Paul 		/*
85724993214SYaroslav Tykhiy 		 * Do not run parent's if_start() if the parent is not up,
85824993214SYaroslav Tykhiy 		 * or parent's driver will cause a system crash.
85924993214SYaroslav Tykhiy 		 */
8602dc879b3SYaroslav Tykhiy 		if (!UP_AND_RUNNING(p)) {
86124993214SYaroslav Tykhiy 			m_freem(m);
862a3814acfSSam Leffler 			ifp->if_collisions++;
86324993214SYaroslav Tykhiy 			continue;
86424993214SYaroslav Tykhiy 		}
86524993214SYaroslav Tykhiy 
86624993214SYaroslav Tykhiy 		/*
867f6e5e0adSYaroslav Tykhiy 		 * Pad the frame to the minimum size allowed if told to.
868f6e5e0adSYaroslav Tykhiy 		 * This option is in accord with IEEE Std 802.1Q, 2003 Ed.,
869f6e5e0adSYaroslav Tykhiy 		 * paragraph C.4.4.3.b.  It can help to work around buggy
870f6e5e0adSYaroslav Tykhiy 		 * bridges that violate paragraph C.4.4.3.a from the same
871f6e5e0adSYaroslav Tykhiy 		 * document, i.e., fail to pad short frames after untagging.
872f6e5e0adSYaroslav Tykhiy 		 * E.g., a tagged frame 66 bytes long (incl. FCS) is OK, but
873f6e5e0adSYaroslav Tykhiy 		 * untagging it will produce a 62-byte frame, which is a runt
874f6e5e0adSYaroslav Tykhiy 		 * and requires padding.  There are VLAN-enabled network
875f6e5e0adSYaroslav Tykhiy 		 * devices that just discard such runts instead or mishandle
876f6e5e0adSYaroslav Tykhiy 		 * them somehow.
877f6e5e0adSYaroslav Tykhiy 		 */
878f6e5e0adSYaroslav Tykhiy 		if (soft_pad) {
879f6e5e0adSYaroslav Tykhiy 			static char pad[8];	/* just zeros */
880f6e5e0adSYaroslav Tykhiy 			int n;
881f6e5e0adSYaroslav Tykhiy 
882f6e5e0adSYaroslav Tykhiy 			for (n = ETHERMIN + ETHER_HDR_LEN - m->m_pkthdr.len;
883f6e5e0adSYaroslav Tykhiy 			     n > 0; n -= sizeof(pad))
884f6e5e0adSYaroslav Tykhiy 				if (!m_append(m, min(n, sizeof(pad)), pad))
885f6e5e0adSYaroslav Tykhiy 					break;
886f6e5e0adSYaroslav Tykhiy 
887f6e5e0adSYaroslav Tykhiy 			if (n > 0) {
888f6e5e0adSYaroslav Tykhiy 				if_printf(ifp, "cannot pad short frame\n");
889f6e5e0adSYaroslav Tykhiy 				ifp->if_oerrors++;
890f6e5e0adSYaroslav Tykhiy 				m_freem(m);
891f6e5e0adSYaroslav Tykhiy 				continue;
892f6e5e0adSYaroslav Tykhiy 			}
893f6e5e0adSYaroslav Tykhiy 		}
894f6e5e0adSYaroslav Tykhiy 
895f6e5e0adSYaroslav Tykhiy 		/*
896a3814acfSSam Leffler 		 * If underlying interface can do VLAN tag insertion itself,
897a3814acfSSam Leffler 		 * just pass the packet along. However, we need some way to
898a3814acfSSam Leffler 		 * tell the interface where the packet came from so that it
899a3814acfSSam Leffler 		 * knows how to find the VLAN tag to use, so we attach a
900a3814acfSSam Leffler 		 * packet tag that holds it.
901f731f104SBill Paul 		 */
902b08347a0SYaroslav Tykhiy 		if (p->if_capenable & IFCAP_VLAN_HWTAGGING) {
90378ba57b9SAndre Oppermann 			m->m_pkthdr.ether_vtag = ifv->ifv_tag;
904ba26134bSGleb Smirnoff 			m->m_flags |= M_VLANTAG;
905f731f104SBill Paul 		} else {
90660e87ca8SAndrew Thompson 			m = ether_vlanencap(m, ifv->ifv_tag);
9074af90a4dSMatthew N. Dodd 			if (m == NULL) {
9086cbd3e99SYaroslav Tykhiy 				if_printf(ifp,
9096cbd3e99SYaroslav Tykhiy 				    "unable to prepend VLAN header\n");
91026f9b263SRuslan Ermilov 				ifp->if_oerrors++;
9112cc2df49SGarrett Wollman 				continue;
9124af90a4dSMatthew N. Dodd 			}
913f731f104SBill Paul 		}
9142cc2df49SGarrett Wollman 
9152cc2df49SGarrett Wollman 		/*
9162cc2df49SGarrett Wollman 		 * Send it, precisely as ether_output() would have.
9172cc2df49SGarrett Wollman 		 * We are already running at splimp.
9182cc2df49SGarrett Wollman 		 */
919aea78d20SKip Macy 		error = (p->if_transmit)(p, m);
920affc907dSMax Laier 		if (!error)
921f731f104SBill Paul 			ifp->if_opackets++;
922df5e1987SJonathan Lemon 		else
923df5e1987SJonathan Lemon 			ifp->if_oerrors++;
9242cc2df49SGarrett Wollman 	}
925f731f104SBill Paul }
926f731f104SBill Paul 
927a3814acfSSam Leffler static void
928a3814acfSSam Leffler vlan_input(struct ifnet *ifp, struct mbuf *m)
929f731f104SBill Paul {
93075ee267cSGleb Smirnoff 	struct ifvlantrunk *trunk = ifp->if_vlantrunk;
931f731f104SBill Paul 	struct ifvlan *ifv;
93275ee267cSGleb Smirnoff 	uint16_t tag;
93375ee267cSGleb Smirnoff 
93475ee267cSGleb Smirnoff 	KASSERT(trunk != NULL, ("%s: no trunk", __func__));
935a3814acfSSam Leffler 
936f4ec4126SYaroslav Tykhiy 	if (m->m_flags & M_VLANTAG) {
937a3814acfSSam Leffler 		/*
93814e98256SYaroslav Tykhiy 		 * Packet is tagged, but m contains a normal
939a3814acfSSam Leffler 		 * Ethernet frame; the tag is stored out-of-band.
940a3814acfSSam Leffler 		 */
94178ba57b9SAndre Oppermann 		tag = EVL_VLANOFTAG(m->m_pkthdr.ether_vtag);
9426ee20ab5SRuslan Ermilov 		m->m_flags &= ~M_VLANTAG;
943a3814acfSSam Leffler 	} else {
94475ee267cSGleb Smirnoff 		struct ether_vlan_header *evl;
94575ee267cSGleb Smirnoff 
94614e98256SYaroslav Tykhiy 		/*
94714e98256SYaroslav Tykhiy 		 * Packet is tagged in-band as specified by 802.1q.
94814e98256SYaroslav Tykhiy 		 */
949a3814acfSSam Leffler 		switch (ifp->if_type) {
950a3814acfSSam Leffler 		case IFT_ETHER:
951a3814acfSSam Leffler 			if (m->m_len < sizeof(*evl) &&
952a3814acfSSam Leffler 			    (m = m_pullup(m, sizeof(*evl))) == NULL) {
953a3814acfSSam Leffler 				if_printf(ifp, "cannot pullup VLAN header\n");
954a3814acfSSam Leffler 				return;
955a3814acfSSam Leffler 			}
956a3814acfSSam Leffler 			evl = mtod(m, struct ether_vlan_header *);
957fb88a3e0SBill Paul 			tag = EVL_VLANOFTAG(ntohs(evl->evl_tag));
958db8b5973SYaroslav Tykhiy 
959db8b5973SYaroslav Tykhiy 			/*
9602dc879b3SYaroslav Tykhiy 			 * Remove the 802.1q header by copying the Ethernet
9612dc879b3SYaroslav Tykhiy 			 * addresses over it and adjusting the beginning of
9622dc879b3SYaroslav Tykhiy 			 * the data in the mbuf.  The encapsulated Ethernet
9632dc879b3SYaroslav Tykhiy 			 * type field is already in place.
964db8b5973SYaroslav Tykhiy 			 */
9652dc879b3SYaroslav Tykhiy 			bcopy((char *)evl, (char *)evl + ETHER_VLAN_ENCAP_LEN,
9662dc879b3SYaroslav Tykhiy 			      ETHER_HDR_LEN - ETHER_TYPE_LEN);
9672dc879b3SYaroslav Tykhiy 			m_adj(m, ETHER_VLAN_ENCAP_LEN);
968a3814acfSSam Leffler 			break;
9692dc879b3SYaroslav Tykhiy 
970a3814acfSSam Leffler 		default:
971db8b5973SYaroslav Tykhiy #ifdef INVARIANTS
97260c60618SYaroslav Tykhiy 			panic("%s: %s has unsupported if_type %u",
97360c60618SYaroslav Tykhiy 			      __func__, ifp->if_xname, ifp->if_type);
974a3814acfSSam Leffler #endif
97560c60618SYaroslav Tykhiy 			m_freem(m);
97660c60618SYaroslav Tykhiy 			ifp->if_noproto++;
97760c60618SYaroslav Tykhiy 			return;
978a3814acfSSam Leffler 		}
9797a46ec8fSBrooks Davis 	}
9807a46ec8fSBrooks Davis 
98115ed2fa1SYaroslav Tykhiy 	TRUNK_RLOCK(trunk);
98275ee267cSGleb Smirnoff #ifdef VLAN_ARRAY
98375ee267cSGleb Smirnoff 	ifv = trunk->vlans[tag];
98475ee267cSGleb Smirnoff #else
98575ee267cSGleb Smirnoff 	ifv = vlan_gethash(trunk, tag);
98615ed2fa1SYaroslav Tykhiy #endif
9872dc879b3SYaroslav Tykhiy 	if (ifv == NULL || !UP_AND_RUNNING(ifv->ifv_ifp)) {
98875ee267cSGleb Smirnoff 		TRUNK_RUNLOCK(trunk);
98975ee267cSGleb Smirnoff 		m_freem(m);
99075ee267cSGleb Smirnoff 		ifp->if_noproto++;
99175ee267cSGleb Smirnoff 		return;
99275ee267cSGleb Smirnoff 	}
99375ee267cSGleb Smirnoff 	TRUNK_RUNLOCK(trunk);
994f731f104SBill Paul 
995fc74a9f9SBrooks Davis 	m->m_pkthdr.rcvif = ifv->ifv_ifp;
996fc74a9f9SBrooks Davis 	ifv->ifv_ifp->if_ipackets++;
9972cc2df49SGarrett Wollman 
998a3814acfSSam Leffler 	/* Pass it back through the parent's input routine. */
999fc74a9f9SBrooks Davis 	(*ifp->if_input)(ifv->ifv_ifp, m);
10002cc2df49SGarrett Wollman }
10012cc2df49SGarrett Wollman 
10022cc2df49SGarrett Wollman static int
100375ee267cSGleb Smirnoff vlan_config(struct ifvlan *ifv, struct ifnet *p, uint16_t tag)
10042cc2df49SGarrett Wollman {
100575ee267cSGleb Smirnoff 	struct ifvlantrunk *trunk;
10061cf236fbSYaroslav Tykhiy 	struct ifnet *ifp;
100775ee267cSGleb Smirnoff 	int error = 0;
10082cc2df49SGarrett Wollman 
100975ee267cSGleb Smirnoff 	/* VID numbers 0x0 and 0xFFF are reserved */
101075ee267cSGleb Smirnoff 	if (tag == 0 || tag == 0xFFF)
101175ee267cSGleb Smirnoff 		return (EINVAL);
10121cf236fbSYaroslav Tykhiy 	if (p->if_type != IFT_ETHER)
101315a66c21SBruce M Simpson 		return (EPROTONOSUPPORT);
101464a17d2eSYaroslav Tykhiy 	if ((p->if_flags & VLAN_IFFLAGS) != VLAN_IFFLAGS)
101564a17d2eSYaroslav Tykhiy 		return (EPROTONOSUPPORT);
101675ee267cSGleb Smirnoff 	if (ifv->ifv_trunk)
101715a66c21SBruce M Simpson 		return (EBUSY);
10182cc2df49SGarrett Wollman 
101975ee267cSGleb Smirnoff 	if (p->if_vlantrunk == NULL) {
102075ee267cSGleb Smirnoff 		trunk = malloc(sizeof(struct ifvlantrunk),
102175ee267cSGleb Smirnoff 		    M_VLAN, M_WAITOK | M_ZERO);
102275ee267cSGleb Smirnoff #ifndef VLAN_ARRAY
102375ee267cSGleb Smirnoff 		vlan_inithash(trunk);
102475ee267cSGleb Smirnoff #endif
102505a2398fSGleb Smirnoff 		VLAN_LOCK();
102605a2398fSGleb Smirnoff 		if (p->if_vlantrunk != NULL) {
102705a2398fSGleb Smirnoff 			/* A race that that is very unlikely to be hit. */
102805a2398fSGleb Smirnoff #ifndef VLAN_ARRAY
102905a2398fSGleb Smirnoff 			vlan_freehash(trunk);
103005a2398fSGleb Smirnoff #endif
103105a2398fSGleb Smirnoff 			free(trunk, M_VLAN);
103205a2398fSGleb Smirnoff 			goto exists;
103305a2398fSGleb Smirnoff 		}
103475ee267cSGleb Smirnoff 		TRUNK_LOCK_INIT(trunk);
103575ee267cSGleb Smirnoff 		TRUNK_LOCK(trunk);
103675ee267cSGleb Smirnoff 		p->if_vlantrunk = trunk;
103775ee267cSGleb Smirnoff 		trunk->parent = p;
103875ee267cSGleb Smirnoff 	} else {
103975ee267cSGleb Smirnoff 		VLAN_LOCK();
104075ee267cSGleb Smirnoff exists:
104175ee267cSGleb Smirnoff 		trunk = p->if_vlantrunk;
104275ee267cSGleb Smirnoff 		TRUNK_LOCK(trunk);
104375ee267cSGleb Smirnoff 	}
104475ee267cSGleb Smirnoff 
104515ed2fa1SYaroslav Tykhiy 	ifv->ifv_tag = tag;	/* must set this before vlan_inshash() */
104675ee267cSGleb Smirnoff #ifdef VLAN_ARRAY
104715ed2fa1SYaroslav Tykhiy 	if (trunk->vlans[tag] != NULL) {
104875ee267cSGleb Smirnoff 		error = EEXIST;
104915ed2fa1SYaroslav Tykhiy 		goto done;
105015ed2fa1SYaroslav Tykhiy 	}
105115ed2fa1SYaroslav Tykhiy 	trunk->vlans[tag] = ifv;
105215ed2fa1SYaroslav Tykhiy 	trunk->refcnt++;
105375ee267cSGleb Smirnoff #else
105475ee267cSGleb Smirnoff 	error = vlan_inshash(trunk, ifv);
105575ee267cSGleb Smirnoff 	if (error)
105675ee267cSGleb Smirnoff 		goto done;
105715ed2fa1SYaroslav Tykhiy #endif
105873f2233dSYaroslav Tykhiy 	ifv->ifv_proto = ETHERTYPE_VLAN;
1059a3814acfSSam Leffler 	ifv->ifv_encaplen = ETHER_VLAN_ENCAP_LEN;
1060a3814acfSSam Leffler 	ifv->ifv_mintu = ETHERMIN;
10611cf236fbSYaroslav Tykhiy 	ifv->ifv_pflags = 0;
1062a3814acfSSam Leffler 
1063a3814acfSSam Leffler 	/*
1064a3814acfSSam Leffler 	 * If the parent supports the VLAN_MTU capability,
1065a3814acfSSam Leffler 	 * i.e. can Tx/Rx larger than ETHER_MAX_LEN frames,
1066656acce4SYaroslav Tykhiy 	 * use it.
1067a3814acfSSam Leffler 	 */
1068656acce4SYaroslav Tykhiy 	if (p->if_capenable & IFCAP_VLAN_MTU) {
1069656acce4SYaroslav Tykhiy 		/*
1070656acce4SYaroslav Tykhiy 		 * No need to fudge the MTU since the parent can
1071656acce4SYaroslav Tykhiy 		 * handle extended frames.
1072656acce4SYaroslav Tykhiy 		 */
1073a3814acfSSam Leffler 		ifv->ifv_mtufudge = 0;
1074656acce4SYaroslav Tykhiy 	} else {
1075a3814acfSSam Leffler 		/*
1076a3814acfSSam Leffler 		 * Fudge the MTU by the encapsulation size.  This
1077a3814acfSSam Leffler 		 * makes us incompatible with strictly compliant
1078a3814acfSSam Leffler 		 * 802.1Q implementations, but allows us to use
1079a3814acfSSam Leffler 		 * the feature with other NetBSD implementations,
1080a3814acfSSam Leffler 		 * which might still be useful.
1081a3814acfSSam Leffler 		 */
1082a3814acfSSam Leffler 		ifv->ifv_mtufudge = ifv->ifv_encaplen;
1083a3814acfSSam Leffler 	}
1084a3814acfSSam Leffler 
108575ee267cSGleb Smirnoff 	ifv->ifv_trunk = trunk;
10861cf236fbSYaroslav Tykhiy 	ifp = ifv->ifv_ifp;
10871cf236fbSYaroslav Tykhiy 	ifp->if_mtu = p->if_mtu - ifv->ifv_mtufudge;
108875ee267cSGleb Smirnoff 	ifp->if_baudrate = p->if_baudrate;
10892cc2df49SGarrett Wollman 	/*
109024993214SYaroslav Tykhiy 	 * Copy only a selected subset of flags from the parent.
109124993214SYaroslav Tykhiy 	 * Other flags are none of our business.
10922cc2df49SGarrett Wollman 	 */
109364a17d2eSYaroslav Tykhiy #define VLAN_COPY_FLAGS (IFF_SIMPLEX)
10941cf236fbSYaroslav Tykhiy 	ifp->if_flags &= ~VLAN_COPY_FLAGS;
10951cf236fbSYaroslav Tykhiy 	ifp->if_flags |= p->if_flags & VLAN_COPY_FLAGS;
10961cf236fbSYaroslav Tykhiy #undef VLAN_COPY_FLAGS
10971cf236fbSYaroslav Tykhiy 
10981cf236fbSYaroslav Tykhiy 	ifp->if_link_state = p->if_link_state;
10992cc2df49SGarrett Wollman 
110075ee267cSGleb Smirnoff 	vlan_capabilities(ifv);
1101a3814acfSSam Leffler 
1102a3814acfSSam Leffler 	/*
11032cc2df49SGarrett Wollman 	 * Set up our ``Ethernet address'' to reflect the underlying
11042cc2df49SGarrett Wollman 	 * physical interface's.
11052cc2df49SGarrett Wollman 	 */
1106d09ed26fSRuslan Ermilov 	bcopy(IF_LLADDR(p), IF_LLADDR(ifp), ETHER_ADDR_LEN);
11071b2a4f7aSBill Fenner 
11081b2a4f7aSBill Fenner 	/*
11091b2a4f7aSBill Fenner 	 * Configure multicast addresses that may already be
11101b2a4f7aSBill Fenner 	 * joined on the vlan device.
11111b2a4f7aSBill Fenner 	 */
11121cf236fbSYaroslav Tykhiy 	(void)vlan_setmulti(ifp); /* XXX: VLAN lock held */
11132ada9747SYaroslav Tykhiy 
11142ada9747SYaroslav Tykhiy 	/* We are ready for operation now. */
11152ada9747SYaroslav Tykhiy 	ifp->if_drv_flags |= IFF_DRV_RUNNING;
111675ee267cSGleb Smirnoff done:
111775ee267cSGleb Smirnoff 	TRUNK_UNLOCK(trunk);
1118c725524cSJack F Vogel 	if (error == 0)
1119c725524cSJack F Vogel 		EVENTHANDLER_INVOKE(vlan_config, p, ifv->ifv_tag);
112075ee267cSGleb Smirnoff 	VLAN_UNLOCK();
112175ee267cSGleb Smirnoff 
112275ee267cSGleb Smirnoff 	return (error);
11232cc2df49SGarrett Wollman }
11242cc2df49SGarrett Wollman 
11252cc2df49SGarrett Wollman static int
1126f731f104SBill Paul vlan_unconfig(struct ifnet *ifp)
1127f731f104SBill Paul {
11285cb8c31aSYaroslav Tykhiy 	int ret;
11295cb8c31aSYaroslav Tykhiy 
11305cb8c31aSYaroslav Tykhiy 	VLAN_LOCK();
11315cb8c31aSYaroslav Tykhiy 	ret = vlan_unconfig_locked(ifp);
11325cb8c31aSYaroslav Tykhiy 	VLAN_UNLOCK();
11335cb8c31aSYaroslav Tykhiy 	return (ret);
11345cb8c31aSYaroslav Tykhiy }
11355cb8c31aSYaroslav Tykhiy 
11365cb8c31aSYaroslav Tykhiy static int
11375cb8c31aSYaroslav Tykhiy vlan_unconfig_locked(struct ifnet *ifp)
11385cb8c31aSYaroslav Tykhiy {
113975ee267cSGleb Smirnoff 	struct ifvlantrunk *trunk;
1140f731f104SBill Paul 	struct vlan_mc_entry *mc;
1141f731f104SBill Paul 	struct ifvlan *ifv;
1142c725524cSJack F Vogel 	struct ifnet  *parent;
1143f731f104SBill Paul 	int error;
1144f731f104SBill Paul 
11455cb8c31aSYaroslav Tykhiy 	VLAN_LOCK_ASSERT();
11464faedfe8SSam Leffler 
1147f731f104SBill Paul 	ifv = ifp->if_softc;
114875ee267cSGleb Smirnoff 	trunk = ifv->ifv_trunk;
114922893351SJack F Vogel 	parent = NULL;
1150f731f104SBill Paul 
115122893351SJack F Vogel 	if (trunk != NULL) {
11521b2a4f7aSBill Fenner 		struct sockaddr_dl sdl;
115375ee267cSGleb Smirnoff 
115475ee267cSGleb Smirnoff 		TRUNK_LOCK(trunk);
115522893351SJack F Vogel 		parent = trunk->parent;
11561b2a4f7aSBill Fenner 
1157f731f104SBill Paul 		/*
1158f731f104SBill Paul 		 * Since the interface is being unconfigured, we need to
1159f731f104SBill Paul 		 * empty the list of multicast groups that we may have joined
11601b2a4f7aSBill Fenner 		 * while we were alive from the parent's list.
1161f731f104SBill Paul 		 */
116215a66c21SBruce M Simpson 		bzero((char *)&sdl, sizeof(sdl));
116315a66c21SBruce M Simpson 		sdl.sdl_len = sizeof(sdl);
1164f731f104SBill Paul 		sdl.sdl_family = AF_LINK;
116522893351SJack F Vogel 		sdl.sdl_index = parent->if_index;
11661b2a4f7aSBill Fenner 		sdl.sdl_type = IFT_ETHER;
11671b2a4f7aSBill Fenner 		sdl.sdl_alen = ETHER_ADDR_LEN;
11681b2a4f7aSBill Fenner 
1169c0cb022bSYaroslav Tykhiy 		while ((mc = SLIST_FIRST(&ifv->vlan_mc_listhead)) != NULL) {
117015a66c21SBruce M Simpson 			bcopy((char *)&mc->mc_addr, LLADDR(&sdl),
117115a66c21SBruce M Simpson 			    ETHER_ADDR_LEN);
117222893351SJack F Vogel 			error = if_delmulti(parent, (struct sockaddr *)&sdl);
1173f731f104SBill Paul 			if (error)
1174f731f104SBill Paul 				return (error);
1175f731f104SBill Paul 			SLIST_REMOVE_HEAD(&ifv->vlan_mc_listhead, mc_entries);
11769d4fe4b2SBrooks Davis 			free(mc, M_VLAN);
1177f731f104SBill Paul 		}
1178a3814acfSSam Leffler 
11791cf236fbSYaroslav Tykhiy 		vlan_setflags(ifp, 0); /* clear special flags on parent */
118015ed2fa1SYaroslav Tykhiy #ifdef VLAN_ARRAY
118115ed2fa1SYaroslav Tykhiy 		trunk->vlans[ifv->ifv_tag] = NULL;
118215ed2fa1SYaroslav Tykhiy 		trunk->refcnt--;
118315ed2fa1SYaroslav Tykhiy #else
118475ee267cSGleb Smirnoff 		vlan_remhash(trunk, ifv);
118575ee267cSGleb Smirnoff #endif
118675ee267cSGleb Smirnoff 		ifv->ifv_trunk = NULL;
118775ee267cSGleb Smirnoff 
118875ee267cSGleb Smirnoff 		/*
118975ee267cSGleb Smirnoff 		 * Check if we were the last.
119075ee267cSGleb Smirnoff 		 */
119175ee267cSGleb Smirnoff 		if (trunk->refcnt == 0) {
119215ed2fa1SYaroslav Tykhiy 			trunk->parent->if_vlantrunk = NULL;
119375ee267cSGleb Smirnoff 			/*
119475ee267cSGleb Smirnoff 			 * XXXGL: If some ithread has already entered
119575ee267cSGleb Smirnoff 			 * vlan_input() and is now blocked on the trunk
119675ee267cSGleb Smirnoff 			 * lock, then it should preempt us right after
119775ee267cSGleb Smirnoff 			 * unlock and finish its work. Then we will acquire
119875ee267cSGleb Smirnoff 			 * lock again in trunk_destroy().
119975ee267cSGleb Smirnoff 			 */
120075ee267cSGleb Smirnoff 			TRUNK_UNLOCK(trunk);
120175ee267cSGleb Smirnoff 			trunk_destroy(trunk);
120275ee267cSGleb Smirnoff 		} else
120375ee267cSGleb Smirnoff 			TRUNK_UNLOCK(trunk);
12041b2a4f7aSBill Fenner 	}
1205f731f104SBill Paul 
1206f731f104SBill Paul 	/* Disconnect from parent. */
12071cf236fbSYaroslav Tykhiy 	if (ifv->ifv_pflags)
12081cf236fbSYaroslav Tykhiy 		if_printf(ifp, "%s: ifv_pflags unclean\n", __func__);
12095cb8c31aSYaroslav Tykhiy 	ifp->if_mtu = ETHERMTU;
12105cb8c31aSYaroslav Tykhiy 	ifp->if_link_state = LINK_STATE_UNKNOWN;
12115cb8c31aSYaroslav Tykhiy 	ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
1212f731f104SBill Paul 
121322893351SJack F Vogel 	/*
121422893351SJack F Vogel 	 * Only dispatch an event if vlan was
121522893351SJack F Vogel 	 * attached, otherwise there is nothing
121622893351SJack F Vogel 	 * to cleanup anyway.
121722893351SJack F Vogel 	 */
121822893351SJack F Vogel 	if (parent != NULL)
1219c725524cSJack F Vogel 		EVENTHANDLER_INVOKE(vlan_unconfig, parent, ifv->ifv_tag);
1220c725524cSJack F Vogel 
122115a66c21SBruce M Simpson 	return (0);
1222f731f104SBill Paul }
1223f731f104SBill Paul 
12241cf236fbSYaroslav Tykhiy /* Handle a reference counted flag that should be set on the parent as well */
1225f731f104SBill Paul static int
12261cf236fbSYaroslav Tykhiy vlan_setflag(struct ifnet *ifp, int flag, int status,
12271cf236fbSYaroslav Tykhiy 	     int (*func)(struct ifnet *, int))
1228a3814acfSSam Leffler {
12291cf236fbSYaroslav Tykhiy 	struct ifvlan *ifv;
12301cf236fbSYaroslav Tykhiy 	int error;
1231a3814acfSSam Leffler 
12321cf236fbSYaroslav Tykhiy 	/* XXX VLAN_LOCK_ASSERT(); */
1233a3814acfSSam Leffler 
12341cf236fbSYaroslav Tykhiy 	ifv = ifp->if_softc;
12351cf236fbSYaroslav Tykhiy 	status = status ? (ifp->if_flags & flag) : 0;
12361cf236fbSYaroslav Tykhiy 	/* Now "status" contains the flag value or 0 */
12371cf236fbSYaroslav Tykhiy 
12381cf236fbSYaroslav Tykhiy 	/*
12391cf236fbSYaroslav Tykhiy 	 * See if recorded parent's status is different from what
12401cf236fbSYaroslav Tykhiy 	 * we want it to be.  If it is, flip it.  We record parent's
12411cf236fbSYaroslav Tykhiy 	 * status in ifv_pflags so that we won't clear parent's flag
12421cf236fbSYaroslav Tykhiy 	 * we haven't set.  In fact, we don't clear or set parent's
12431cf236fbSYaroslav Tykhiy 	 * flags directly, but get or release references to them.
12441cf236fbSYaroslav Tykhiy 	 * That's why we can be sure that recorded flags still are
12451cf236fbSYaroslav Tykhiy 	 * in accord with actual parent's flags.
12461cf236fbSYaroslav Tykhiy 	 */
12471cf236fbSYaroslav Tykhiy 	if (status != (ifv->ifv_pflags & flag)) {
124875ee267cSGleb Smirnoff 		error = (*func)(PARENT(ifv), status);
12491cf236fbSYaroslav Tykhiy 		if (error)
1250a3814acfSSam Leffler 			return (error);
12511cf236fbSYaroslav Tykhiy 		ifv->ifv_pflags &= ~flag;
12521cf236fbSYaroslav Tykhiy 		ifv->ifv_pflags |= status;
12531cf236fbSYaroslav Tykhiy 	}
12541cf236fbSYaroslav Tykhiy 	return (0);
12551cf236fbSYaroslav Tykhiy }
12561cf236fbSYaroslav Tykhiy 
12571cf236fbSYaroslav Tykhiy /*
12581cf236fbSYaroslav Tykhiy  * Handle IFF_* flags that require certain changes on the parent:
12591cf236fbSYaroslav Tykhiy  * if "status" is true, update parent's flags respective to our if_flags;
12601cf236fbSYaroslav Tykhiy  * if "status" is false, forcedly clear the flags set on parent.
12611cf236fbSYaroslav Tykhiy  */
12621cf236fbSYaroslav Tykhiy static int
12631cf236fbSYaroslav Tykhiy vlan_setflags(struct ifnet *ifp, int status)
12641cf236fbSYaroslav Tykhiy {
12651cf236fbSYaroslav Tykhiy 	int error, i;
12661cf236fbSYaroslav Tykhiy 
12671cf236fbSYaroslav Tykhiy 	for (i = 0; vlan_pflags[i].flag; i++) {
12681cf236fbSYaroslav Tykhiy 		error = vlan_setflag(ifp, vlan_pflags[i].flag,
12691cf236fbSYaroslav Tykhiy 				     status, vlan_pflags[i].func);
12701cf236fbSYaroslav Tykhiy 		if (error)
12711cf236fbSYaroslav Tykhiy 			return (error);
12721cf236fbSYaroslav Tykhiy 	}
12731cf236fbSYaroslav Tykhiy 	return (0);
1274a3814acfSSam Leffler }
1275a3814acfSSam Leffler 
1276127d7b2dSAndre Oppermann /* Inform all vlans that their parent has changed link state */
1277127d7b2dSAndre Oppermann static void
1278a6fffd6cSBrooks Davis vlan_link_state(struct ifnet *ifp)
1279127d7b2dSAndre Oppermann {
128075ee267cSGleb Smirnoff 	struct ifvlantrunk *trunk = ifp->if_vlantrunk;
1281127d7b2dSAndre Oppermann 	struct ifvlan *ifv;
128275ee267cSGleb Smirnoff 	int i;
1283127d7b2dSAndre Oppermann 
128475ee267cSGleb Smirnoff 	TRUNK_LOCK(trunk);
128575ee267cSGleb Smirnoff #ifdef VLAN_ARRAY
128615ed2fa1SYaroslav Tykhiy 	for (i = 0; i < VLAN_ARRAY_SIZE; i++)
128775ee267cSGleb Smirnoff 		if (trunk->vlans[i] != NULL) {
128875ee267cSGleb Smirnoff 			ifv = trunk->vlans[i];
128975ee267cSGleb Smirnoff #else
1290aad0be7aSGleb Smirnoff 	for (i = 0; i < (1 << trunk->hwidth); i++)
1291aad0be7aSGleb Smirnoff 		LIST_FOREACH(ifv, &trunk->hash[i], ifv_list) {
129275ee267cSGleb Smirnoff #endif
1293aad0be7aSGleb Smirnoff 			ifv->ifv_ifp->if_baudrate = trunk->parent->if_baudrate;
1294fc74a9f9SBrooks Davis 			if_link_state_change(ifv->ifv_ifp,
129575ee267cSGleb Smirnoff 			    trunk->parent->if_link_state);
1296127d7b2dSAndre Oppermann 		}
129775ee267cSGleb Smirnoff 	TRUNK_UNLOCK(trunk);
129875ee267cSGleb Smirnoff }
129975ee267cSGleb Smirnoff 
130075ee267cSGleb Smirnoff static void
130175ee267cSGleb Smirnoff vlan_capabilities(struct ifvlan *ifv)
130275ee267cSGleb Smirnoff {
130375ee267cSGleb Smirnoff 	struct ifnet *p = PARENT(ifv);
130475ee267cSGleb Smirnoff 	struct ifnet *ifp = ifv->ifv_ifp;
130575ee267cSGleb Smirnoff 
130675ee267cSGleb Smirnoff 	TRUNK_LOCK_ASSERT(TRUNK(ifv));
130775ee267cSGleb Smirnoff 
130875ee267cSGleb Smirnoff 	/*
130975ee267cSGleb Smirnoff 	 * If the parent interface can do checksum offloading
131075ee267cSGleb Smirnoff 	 * on VLANs, then propagate its hardware-assisted
131175ee267cSGleb Smirnoff 	 * checksumming flags. Also assert that checksum
131275ee267cSGleb Smirnoff 	 * offloading requires hardware VLAN tagging.
131375ee267cSGleb Smirnoff 	 */
131475ee267cSGleb Smirnoff 	if (p->if_capabilities & IFCAP_VLAN_HWCSUM)
131575ee267cSGleb Smirnoff 		ifp->if_capabilities = p->if_capabilities & IFCAP_HWCSUM;
131675ee267cSGleb Smirnoff 
131775ee267cSGleb Smirnoff 	if (p->if_capenable & IFCAP_VLAN_HWCSUM &&
131875ee267cSGleb Smirnoff 	    p->if_capenable & IFCAP_VLAN_HWTAGGING) {
131975ee267cSGleb Smirnoff 		ifp->if_capenable = p->if_capenable & IFCAP_HWCSUM;
132075ee267cSGleb Smirnoff 		ifp->if_hwassist = p->if_hwassist;
132175ee267cSGleb Smirnoff 	} else {
132275ee267cSGleb Smirnoff 		ifp->if_capenable = 0;
132375ee267cSGleb Smirnoff 		ifp->if_hwassist = 0;
132475ee267cSGleb Smirnoff 	}
132575ee267cSGleb Smirnoff }
132675ee267cSGleb Smirnoff 
132775ee267cSGleb Smirnoff static void
132875ee267cSGleb Smirnoff vlan_trunk_capabilities(struct ifnet *ifp)
132975ee267cSGleb Smirnoff {
133075ee267cSGleb Smirnoff 	struct ifvlantrunk *trunk = ifp->if_vlantrunk;
133175ee267cSGleb Smirnoff 	struct ifvlan *ifv;
133275ee267cSGleb Smirnoff 	int i;
133375ee267cSGleb Smirnoff 
133475ee267cSGleb Smirnoff 	TRUNK_LOCK(trunk);
133575ee267cSGleb Smirnoff #ifdef VLAN_ARRAY
133615ed2fa1SYaroslav Tykhiy 	for (i = 0; i < VLAN_ARRAY_SIZE; i++)
133775ee267cSGleb Smirnoff 		if (trunk->vlans[i] != NULL) {
133875ee267cSGleb Smirnoff 			ifv = trunk->vlans[i];
133975ee267cSGleb Smirnoff #else
134075ee267cSGleb Smirnoff 	for (i = 0; i < (1 << trunk->hwidth); i++) {
134175ee267cSGleb Smirnoff 		LIST_FOREACH(ifv, &trunk->hash[i], ifv_list)
134275ee267cSGleb Smirnoff #endif
134375ee267cSGleb Smirnoff 			vlan_capabilities(ifv);
134475ee267cSGleb Smirnoff 	}
134575ee267cSGleb Smirnoff 	TRUNK_UNLOCK(trunk);
1346127d7b2dSAndre Oppermann }
1347127d7b2dSAndre Oppermann 
1348a3814acfSSam Leffler static int
1349cfe8b629SGarrett Wollman vlan_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
13502cc2df49SGarrett Wollman {
13512cc2df49SGarrett Wollman 	struct ifnet *p;
13522cc2df49SGarrett Wollman 	struct ifreq *ifr;
13532cc2df49SGarrett Wollman 	struct ifvlan *ifv;
13542cc2df49SGarrett Wollman 	struct vlanreq vlr;
13552cc2df49SGarrett Wollman 	int error = 0;
13562cc2df49SGarrett Wollman 
13572cc2df49SGarrett Wollman 	ifr = (struct ifreq *)data;
13582cc2df49SGarrett Wollman 	ifv = ifp->if_softc;
13592cc2df49SGarrett Wollman 
13602cc2df49SGarrett Wollman 	switch (cmd) {
1361b3cca108SBill Fenner 	case SIOCGIFMEDIA:
13624faedfe8SSam Leffler 		VLAN_LOCK();
136375ee267cSGleb Smirnoff 		if (TRUNK(ifv) != NULL) {
136475ee267cSGleb Smirnoff 			error = (*PARENT(ifv)->if_ioctl)(PARENT(ifv),
13654faedfe8SSam Leffler 					SIOCGIFMEDIA, data);
13664faedfe8SSam Leffler 			VLAN_UNLOCK();
1367b3cca108SBill Fenner 			/* Limit the result to the parent's current config. */
1368b3cca108SBill Fenner 			if (error == 0) {
1369b3cca108SBill Fenner 				struct ifmediareq *ifmr;
1370b3cca108SBill Fenner 
1371b3cca108SBill Fenner 				ifmr = (struct ifmediareq *)data;
1372b3cca108SBill Fenner 				if (ifmr->ifm_count >= 1 && ifmr->ifm_ulist) {
1373b3cca108SBill Fenner 					ifmr->ifm_count = 1;
1374b3cca108SBill Fenner 					error = copyout(&ifmr->ifm_current,
1375b3cca108SBill Fenner 						ifmr->ifm_ulist,
1376b3cca108SBill Fenner 						sizeof(int));
1377b3cca108SBill Fenner 				}
1378b3cca108SBill Fenner 			}
13794faedfe8SSam Leffler 		} else {
13804faedfe8SSam Leffler 			VLAN_UNLOCK();
1381b3cca108SBill Fenner 			error = EINVAL;
13824faedfe8SSam Leffler 		}
1383b3cca108SBill Fenner 		break;
1384b3cca108SBill Fenner 
1385b3cca108SBill Fenner 	case SIOCSIFMEDIA:
1386b3cca108SBill Fenner 		error = EINVAL;
1387b3cca108SBill Fenner 		break;
1388b3cca108SBill Fenner 
13892cc2df49SGarrett Wollman 	case SIOCSIFMTU:
13902cc2df49SGarrett Wollman 		/*
13912cc2df49SGarrett Wollman 		 * Set the interface MTU.
13922cc2df49SGarrett Wollman 		 */
13934faedfe8SSam Leffler 		VLAN_LOCK();
139475ee267cSGleb Smirnoff 		if (TRUNK(ifv) != NULL) {
1395a3814acfSSam Leffler 			if (ifr->ifr_mtu >
139675ee267cSGleb Smirnoff 			     (PARENT(ifv)->if_mtu - ifv->ifv_mtufudge) ||
1397a3814acfSSam Leffler 			    ifr->ifr_mtu <
1398a3814acfSSam Leffler 			     (ifv->ifv_mintu - ifv->ifv_mtufudge))
13992cc2df49SGarrett Wollman 				error = EINVAL;
1400a3814acfSSam Leffler 			else
14012cc2df49SGarrett Wollman 				ifp->if_mtu = ifr->ifr_mtu;
1402a3814acfSSam Leffler 		} else
1403a3814acfSSam Leffler 			error = EINVAL;
14044faedfe8SSam Leffler 		VLAN_UNLOCK();
14052cc2df49SGarrett Wollman 		break;
14062cc2df49SGarrett Wollman 
14072cc2df49SGarrett Wollman 	case SIOCSETVLAN:
140815a66c21SBruce M Simpson 		error = copyin(ifr->ifr_data, &vlr, sizeof(vlr));
14092cc2df49SGarrett Wollman 		if (error)
14102cc2df49SGarrett Wollman 			break;
14112cc2df49SGarrett Wollman 		if (vlr.vlr_parent[0] == '\0') {
1412f731f104SBill Paul 			vlan_unconfig(ifp);
14132cc2df49SGarrett Wollman 			break;
14142cc2df49SGarrett Wollman 		}
14152cc2df49SGarrett Wollman 		p = ifunit(vlr.vlr_parent);
14161bdc73d3SEd Maste 		if (p == NULL) {
14172cc2df49SGarrett Wollman 			error = ENOENT;
14182cc2df49SGarrett Wollman 			break;
14192cc2df49SGarrett Wollman 		}
1420fb88a3e0SBill Paul 		/*
1421fb88a3e0SBill Paul 		 * Don't let the caller set up a VLAN tag with
1422fb88a3e0SBill Paul 		 * anything except VLID bits.
1423fb88a3e0SBill Paul 		 */
1424fb88a3e0SBill Paul 		if (vlr.vlr_tag & ~EVL_VLID_MASK) {
1425fb88a3e0SBill Paul 			error = EINVAL;
1426fb88a3e0SBill Paul 			break;
1427fb88a3e0SBill Paul 		}
142875ee267cSGleb Smirnoff 		error = vlan_config(ifv, p, vlr.vlr_tag);
142975ee267cSGleb Smirnoff 		if (error)
14302cc2df49SGarrett Wollman 			break;
1431a3814acfSSam Leffler 
14321cf236fbSYaroslav Tykhiy 		/* Update flags on the parent, if necessary. */
14331cf236fbSYaroslav Tykhiy 		vlan_setflags(ifp, 1);
14342cc2df49SGarrett Wollman 		break;
14352cc2df49SGarrett Wollman 
14362cc2df49SGarrett Wollman 	case SIOCGETVLAN:
143715a66c21SBruce M Simpson 		bzero(&vlr, sizeof(vlr));
14384faedfe8SSam Leffler 		VLAN_LOCK();
143975ee267cSGleb Smirnoff 		if (TRUNK(ifv) != NULL) {
144075ee267cSGleb Smirnoff 			strlcpy(vlr.vlr_parent, PARENT(ifv)->if_xname,
14419bf40edeSBrooks Davis 			    sizeof(vlr.vlr_parent));
14422cc2df49SGarrett Wollman 			vlr.vlr_tag = ifv->ifv_tag;
14432cc2df49SGarrett Wollman 		}
14444faedfe8SSam Leffler 		VLAN_UNLOCK();
144515a66c21SBruce M Simpson 		error = copyout(&vlr, ifr->ifr_data, sizeof(vlr));
14462cc2df49SGarrett Wollman 		break;
14472cc2df49SGarrett Wollman 
14482cc2df49SGarrett Wollman 	case SIOCSIFFLAGS:
14492cc2df49SGarrett Wollman 		/*
14501cf236fbSYaroslav Tykhiy 		 * We should propagate selected flags to the parent,
14511cf236fbSYaroslav Tykhiy 		 * e.g., promiscuous mode.
14522cc2df49SGarrett Wollman 		 */
145375ee267cSGleb Smirnoff 		if (TRUNK(ifv) != NULL)
14541cf236fbSYaroslav Tykhiy 			error = vlan_setflags(ifp, 1);
14552cc2df49SGarrett Wollman 		break;
1456a3814acfSSam Leffler 
1457f731f104SBill Paul 	case SIOCADDMULTI:
1458f731f104SBill Paul 	case SIOCDELMULTI:
145975ee267cSGleb Smirnoff 		/*
146075ee267cSGleb Smirnoff 		 * If we don't have a parent, just remember the membership for
146175ee267cSGleb Smirnoff 		 * when we do.
146275ee267cSGleb Smirnoff 		 */
146375ee267cSGleb Smirnoff 		if (TRUNK(ifv) != NULL)
1464f731f104SBill Paul 			error = vlan_setmulti(ifp);
1465f731f104SBill Paul 		break;
146675ee267cSGleb Smirnoff 
14672cc2df49SGarrett Wollman 	default:
14689c6dee24SYaroslav Tykhiy 		error = ether_ioctl(ifp, cmd, data);
14692cc2df49SGarrett Wollman 	}
147015a66c21SBruce M Simpson 
147115a66c21SBruce M Simpson 	return (error);
14722cc2df49SGarrett Wollman }
1473