xref: /freebsd/sys/net/if_vlan.c (revision ca9ac06c99bfd0150b85d4d83c396ce6237c0e05)
1 /*-
2  * Copyright 1998 Massachusetts Institute of Technology
3  *
4  * Permission to use, copy, modify, and distribute this software and
5  * its documentation for any purpose and without fee is hereby
6  * granted, provided that both the above copyright notice and this
7  * permission notice appear in all copies, that both the above
8  * copyright notice and this permission notice appear in all
9  * supporting documentation, and that the name of M.I.T. not be used
10  * in advertising or publicity pertaining to distribution of the
11  * software without specific, written prior permission.  M.I.T. makes
12  * no representations about the suitability of this software for any
13  * purpose.  It is provided "as is" without express or implied
14  * warranty.
15  *
16  * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
17  * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
18  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
20  * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  */
31 
32 /*
33  * if_vlan.c - pseudo-device driver for IEEE 802.1Q virtual LANs.
34  * Might be extended some day to also handle IEEE 802.1p priority
35  * tagging.  This is sort of sneaky in the implementation, since
36  * we need to pretend to be enough of an Ethernet implementation
37  * to make arp work.  The way we do this is by telling everyone
38  * that we are an Ethernet, and then catch the packets that
39  * ether_output() left on our output queue when it calls
40  * if_start(), rewrite them for use by the real outgoing interface,
41  * and ask it to send them.
42  */
43 
44 #include "opt_inet.h"
45 
46 #include <sys/param.h>
47 #include <sys/kernel.h>
48 #include <sys/malloc.h>
49 #include <sys/mbuf.h>
50 #include <sys/module.h>
51 #include <sys/queue.h>
52 #include <sys/socket.h>
53 #include <sys/sockio.h>
54 #include <sys/sysctl.h>
55 #include <sys/systm.h>
56 
57 #include <net/bpf.h>
58 #include <net/ethernet.h>
59 #include <net/if.h>
60 #include <net/if_clone.h>
61 #include <net/if_arp.h>
62 #include <net/if_dl.h>
63 #include <net/if_types.h>
64 #include <net/if_vlan_var.h>
65 #include <net/route.h>
66 
67 #ifdef INET
68 #include <netinet/in.h>
69 #include <netinet/if_ether.h>
70 #endif
71 
72 #define VLANNAME	"vlan"
73 
74 struct vlan_mc_entry {
75 	struct ether_addr		mc_addr;
76 	SLIST_ENTRY(vlan_mc_entry)	mc_entries;
77 };
78 
79 struct	ifvlan {
80 	struct	arpcom ifv_ac;	/* make this an interface */
81 	struct	ifnet *ifv_p;	/* parent inteface of this vlan */
82 	struct	ifv_linkmib {
83 		int	ifvm_parent;
84 		int	ifvm_encaplen;	/* encapsulation length */
85 		int	ifvm_mtufudge;	/* MTU fudged by this much */
86 		int	ifvm_mintu;	/* min transmission unit */
87 		u_int16_t ifvm_proto; /* encapsulation ethertype */
88 		u_int16_t ifvm_tag; /* tag to apply on packets leaving if */
89 	}	ifv_mib;
90 	SLIST_HEAD(__vlan_mchead, vlan_mc_entry)	vlan_mc_listhead;
91 	LIST_ENTRY(ifvlan) ifv_list;
92 	int	ifv_flags;
93 };
94 #define	ifv_if	ifv_ac.ac_if
95 #define	ifv_tag	ifv_mib.ifvm_tag
96 #define	ifv_encaplen	ifv_mib.ifvm_encaplen
97 #define	ifv_mtufudge	ifv_mib.ifvm_mtufudge
98 #define	ifv_mintu	ifv_mib.ifvm_mintu
99 
100 #define	IFVF_PROMISC	0x01		/* promiscuous mode enabled */
101 
102 SYSCTL_DECL(_net_link);
103 SYSCTL_NODE(_net_link, IFT_L2VLAN, vlan, CTLFLAG_RW, 0, "IEEE 802.1Q VLAN");
104 SYSCTL_NODE(_net_link_vlan, PF_LINK, link, CTLFLAG_RW, 0, "for consistency");
105 
106 static MALLOC_DEFINE(M_VLAN, VLANNAME, "802.1Q Virtual LAN Interface");
107 static LIST_HEAD(, ifvlan) ifv_list;
108 
109 /*
110  * Locking: one lock is used to guard both the ifv_list and modification
111  * to vlan data structures.  We are rather conservative here; probably
112  * more than necessary.
113  */
114 static struct mtx ifv_mtx;
115 #define	VLAN_LOCK_INIT()	mtx_init(&ifv_mtx, VLANNAME, NULL, MTX_DEF)
116 #define	VLAN_LOCK_DESTROY()	mtx_destroy(&ifv_mtx)
117 #define	VLAN_LOCK_ASSERT()	mtx_assert(&ifv_mtx, MA_OWNED)
118 #define	VLAN_LOCK()	mtx_lock(&ifv_mtx)
119 #define	VLAN_UNLOCK()	mtx_unlock(&ifv_mtx)
120 
121 static	void vlan_start(struct ifnet *ifp);
122 static	void vlan_ifinit(void *foo);
123 static	void vlan_input(struct ifnet *ifp, struct mbuf *m);
124 static	int vlan_ioctl(struct ifnet *ifp, u_long cmd, caddr_t addr);
125 static	int vlan_setmulti(struct ifnet *ifp);
126 static	int vlan_unconfig(struct ifnet *ifp);
127 static	int vlan_config(struct ifvlan *ifv, struct ifnet *p);
128 static	void vlan_link_state(struct ifnet *ifp, int link);
129 static	int vlan_set_promisc(struct ifnet *ifp);
130 
131 static	struct ifnet *vlan_clone_match_ethertag(struct if_clone *,
132     const char *, int *);
133 static	int vlan_clone_match(struct if_clone *, const char *);
134 static	int vlan_clone_create(struct if_clone *, char *, size_t);
135 static	int vlan_clone_destroy(struct if_clone *, struct ifnet *);
136 
137 static	struct if_clone vlan_cloner = IFC_CLONE_INITIALIZER(VLANNAME, NULL,
138     IF_MAXUNIT, NULL, vlan_clone_match, vlan_clone_create, vlan_clone_destroy);
139 
140 /*
141  * Program our multicast filter. What we're actually doing is
142  * programming the multicast filter of the parent. This has the
143  * side effect of causing the parent interface to receive multicast
144  * traffic that it doesn't really want, which ends up being discarded
145  * later by the upper protocol layers. Unfortunately, there's no way
146  * to avoid this: there really is only one physical interface.
147  *
148  * XXX: There is a possible race here if more than one thread is
149  *      modifying the multicast state of the vlan interface at the same time.
150  */
151 static int
152 vlan_setmulti(struct ifnet *ifp)
153 {
154 	struct ifnet		*ifp_p;
155 	struct ifmultiaddr	*ifma, *rifma = NULL;
156 	struct ifvlan		*sc;
157 	struct vlan_mc_entry	*mc = NULL;
158 	struct sockaddr_dl	sdl;
159 	int			error;
160 
161 	/*VLAN_LOCK_ASSERT();*/
162 
163 	/* Find the parent. */
164 	sc = ifp->if_softc;
165 	ifp_p = sc->ifv_p;
166 
167 	/*
168 	 * If we don't have a parent, just remember the membership for
169 	 * when we do.
170 	 */
171 	if (ifp_p == NULL)
172 		return (0);
173 
174 	bzero((char *)&sdl, sizeof(sdl));
175 	sdl.sdl_len = sizeof(sdl);
176 	sdl.sdl_family = AF_LINK;
177 	sdl.sdl_index = ifp_p->if_index;
178 	sdl.sdl_type = IFT_ETHER;
179 	sdl.sdl_alen = ETHER_ADDR_LEN;
180 
181 	/* First, remove any existing filter entries. */
182 	while (SLIST_FIRST(&sc->vlan_mc_listhead) != NULL) {
183 		mc = SLIST_FIRST(&sc->vlan_mc_listhead);
184 		bcopy((char *)&mc->mc_addr, LLADDR(&sdl), ETHER_ADDR_LEN);
185 		error = if_delmulti(ifp_p, (struct sockaddr *)&sdl);
186 		if (error)
187 			return (error);
188 		SLIST_REMOVE_HEAD(&sc->vlan_mc_listhead, mc_entries);
189 		free(mc, M_VLAN);
190 	}
191 
192 	/* Now program new ones. */
193 	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
194 		if (ifma->ifma_addr->sa_family != AF_LINK)
195 			continue;
196 		mc = malloc(sizeof(struct vlan_mc_entry), M_VLAN, M_NOWAIT);
197 		if (mc == NULL)
198 			return (ENOMEM);
199 		bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
200 		    (char *)&mc->mc_addr, ETHER_ADDR_LEN);
201 		SLIST_INSERT_HEAD(&sc->vlan_mc_listhead, mc, mc_entries);
202 		bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
203 		    LLADDR(&sdl), ETHER_ADDR_LEN);
204 		error = if_addmulti(ifp_p, (struct sockaddr *)&sdl, &rifma);
205 		if (error)
206 			return (error);
207 	}
208 
209 	return (0);
210 }
211 
212 /*
213  * VLAN support can be loaded as a module.  The only place in the
214  * system that's intimately aware of this is ether_input.  We hook
215  * into this code through vlan_input_p which is defined there and
216  * set here.  Noone else in the system should be aware of this so
217  * we use an explicit reference here.
218  *
219  * NB: Noone should ever need to check if vlan_input_p is null or
220  *     not.  This is because interfaces have a count of the number
221  *     of active vlans (if_nvlans) and this should never be bumped
222  *     except by vlan_config--which is in this module so therefore
223  *     the module must be loaded and vlan_input_p must be non-NULL.
224  */
225 extern	void (*vlan_input_p)(struct ifnet *, struct mbuf *);
226 
227 /* For MII eyes only... */
228 extern	void (*vlan_link_state_p)(struct ifnet *, int);
229 
230 static int
231 vlan_modevent(module_t mod, int type, void *data)
232 {
233 
234 	switch (type) {
235 	case MOD_LOAD:
236 		LIST_INIT(&ifv_list);
237 		VLAN_LOCK_INIT();
238 		vlan_input_p = vlan_input;
239 		vlan_link_state_p = vlan_link_state;
240 		if_clone_attach(&vlan_cloner);
241 		break;
242 	case MOD_UNLOAD:
243 		if_clone_detach(&vlan_cloner);
244 		vlan_input_p = NULL;
245 		vlan_link_state_p = NULL;
246 		while (!LIST_EMPTY(&ifv_list))
247 			vlan_clone_destroy(&vlan_cloner,
248 			    &LIST_FIRST(&ifv_list)->ifv_if);
249 		VLAN_LOCK_DESTROY();
250 		break;
251 	default:
252 		return (EOPNOTSUPP);
253 	}
254 	return (0);
255 }
256 
257 static moduledata_t vlan_mod = {
258 	"if_vlan",
259 	vlan_modevent,
260 	0
261 };
262 
263 DECLARE_MODULE(if_vlan, vlan_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
264 MODULE_DEPEND(if_vlan, miibus, 1, 1, 1);
265 
266 static struct ifnet *
267 vlan_clone_match_ethertag(struct if_clone *ifc, const char *name, int *tag)
268 {
269 	const char *cp;
270 	struct ifnet *ifp;
271 	int t = 0;
272 
273 	/* Check for <etherif>.<vlan> style interface names. */
274 	IFNET_RLOCK();
275 	TAILQ_FOREACH(ifp, &ifnet, if_link) {
276 		if (ifp->if_type != IFT_ETHER)
277 			continue;
278 		if (strncmp(ifp->if_xname, name, strlen(ifp->if_xname)) != 0)
279 			continue;
280 		cp = name + strlen(ifp->if_xname);
281 		if (*cp != '.')
282 			continue;
283 		for(; *cp != '\0'; cp++) {
284 			if (*cp < '0' || *cp > '9')
285 				continue;
286 			t = (t * 10) + (*cp - '0');
287 		}
288 		if (tag != NULL)
289 			*tag = t;
290 		break;
291 	}
292 	IFNET_RUNLOCK();
293 
294 	return (ifp);
295 }
296 
297 static int
298 vlan_clone_match(struct if_clone *ifc, const char *name)
299 {
300 	const char *cp;
301 
302 	if (vlan_clone_match_ethertag(ifc, name, NULL) != NULL)
303 		return (1);
304 
305 	if (strncmp(VLANNAME, name, strlen(VLANNAME)) != 0)
306 		return (0);
307 	for (cp = name + 4; *cp != '\0'; cp++) {
308 		if (*cp < '0' || *cp > '9')
309 			return (0);
310 	}
311 
312 	return (1);
313 }
314 
315 static int
316 vlan_clone_create(struct if_clone *ifc, char *name, size_t len)
317 {
318 	char *dp;
319 	int wildcard;
320 	int unit;
321 	int error;
322 	int tag;
323 	int ethertag;
324 	struct ifvlan *ifv;
325 	struct ifnet *ifp;
326 	struct ifnet *p;
327 
328 	if ((p = vlan_clone_match_ethertag(ifc, name, &tag)) != NULL) {
329 		ethertag = 1;
330 		unit = -1;
331 		wildcard = 0;
332 
333 		/*
334 		 * Don't let the caller set up a VLAN tag with
335 		 * anything except VLID bits.
336 		 */
337 		if (tag & ~EVL_VLID_MASK)
338 			return (EINVAL);
339 	} else {
340 		ethertag = 0;
341 
342 		error = ifc_name2unit(name, &unit);
343 		if (error != 0)
344 			return (error);
345 
346 		wildcard = (unit < 0);
347 	}
348 
349 	error = ifc_alloc_unit(ifc, &unit);
350 	if (error != 0)
351 		return (error);
352 
353 	/* In the wildcard case, we need to update the name. */
354 	if (wildcard) {
355 		for (dp = name; *dp != '\0'; dp++);
356 		if (snprintf(dp, len - (dp-name), "%d", unit) >
357 		    len - (dp-name) - 1) {
358 			panic("%s: interface name too long", __func__);
359 		}
360 	}
361 
362 	ifv = malloc(sizeof(struct ifvlan), M_VLAN, M_WAITOK | M_ZERO);
363 	ifp = &ifv->ifv_if;
364 	SLIST_INIT(&ifv->vlan_mc_listhead);
365 
366 	ifp->if_softc = ifv;
367 	/*
368 	 * Set the name manually rather than using if_initname because
369 	 * we don't conform to the default naming convention for interfaces.
370 	 */
371 	strlcpy(ifp->if_xname, name, IFNAMSIZ);
372 	ifp->if_dname = ifc->ifc_name;
373 	ifp->if_dunit = unit;
374 	/* NB: flags are not set here */
375 	ifp->if_linkmib = &ifv->ifv_mib;
376 	ifp->if_linkmiblen = sizeof(ifv->ifv_mib);
377 	/* NB: mtu is not set here */
378 
379 	ifp->if_init = vlan_ifinit;
380 	ifp->if_start = vlan_start;
381 	ifp->if_ioctl = vlan_ioctl;
382 	ifp->if_snd.ifq_maxlen = ifqmaxlen;
383 	ether_ifattach(ifp, ifv->ifv_ac.ac_enaddr);
384 	/* Now undo some of the damage... */
385 	ifp->if_baudrate = 0;
386 	ifp->if_type = IFT_L2VLAN;
387 	ifp->if_hdrlen = ETHER_VLAN_ENCAP_LEN;
388 
389 	VLAN_LOCK();
390 	LIST_INSERT_HEAD(&ifv_list, ifv, ifv_list);
391 	VLAN_UNLOCK();
392 
393 	if (ethertag) {
394 		VLAN_LOCK();
395 		error = vlan_config(ifv, p);
396 		if (error != 0) {
397 			/*
398 			 * Since we've partialy failed, we need to back
399 			 * out all the way, otherwise userland could get
400 			 * confused.  Thus, we destroy the interface.
401 			 */
402 			LIST_REMOVE(ifv, ifv_list);
403 			vlan_unconfig(ifp);
404 			VLAN_UNLOCK();
405 			ether_ifdetach(ifp);
406 			free(ifv, M_VLAN);
407 
408 			return (error);
409 		}
410 		ifv->ifv_tag = tag;
411 		ifp->if_flags |= IFF_RUNNING;
412 		VLAN_UNLOCK();
413 
414 		/* Update promiscuous mode, if necessary. */
415 		vlan_set_promisc(ifp);
416 	}
417 
418 	return (0);
419 }
420 
421 static int
422 vlan_clone_destroy(struct if_clone *ifc, struct ifnet *ifp)
423 {
424 	int unit;
425 	struct ifvlan *ifv = ifp->if_softc;
426 
427 	unit = ifp->if_dunit;
428 
429 	VLAN_LOCK();
430 	LIST_REMOVE(ifv, ifv_list);
431 	vlan_unconfig(ifp);
432 	VLAN_UNLOCK();
433 
434 	ether_ifdetach(ifp);
435 
436 	free(ifv, M_VLAN);
437 
438 	ifc_free_unit(ifc, unit);
439 
440 	return (0);
441 }
442 
443 /*
444  * The ifp->if_init entry point for vlan(4) is a no-op.
445  */
446 static void
447 vlan_ifinit(void *foo)
448 {
449 
450 }
451 
452 static void
453 vlan_start(struct ifnet *ifp)
454 {
455 	struct ifvlan *ifv;
456 	struct ifnet *p;
457 	struct ether_vlan_header *evl;
458 	struct mbuf *m;
459 	int error;
460 
461 	ifv = ifp->if_softc;
462 	p = ifv->ifv_p;
463 
464 	ifp->if_flags |= IFF_OACTIVE;
465 	for (;;) {
466 		IF_DEQUEUE(&ifp->if_snd, m);
467 		if (m == 0)
468 			break;
469 		BPF_MTAP(ifp, m);
470 
471 		/*
472 		 * Do not run parent's if_start() if the parent is not up,
473 		 * or parent's driver will cause a system crash.
474 		 */
475 		if ((p->if_flags & (IFF_UP | IFF_RUNNING)) !=
476 					(IFF_UP | IFF_RUNNING)) {
477 			m_freem(m);
478 			ifp->if_collisions++;
479 			continue;
480 		}
481 
482 		/*
483 		 * If underlying interface can do VLAN tag insertion itself,
484 		 * just pass the packet along. However, we need some way to
485 		 * tell the interface where the packet came from so that it
486 		 * knows how to find the VLAN tag to use, so we attach a
487 		 * packet tag that holds it.
488 		 */
489 		if (p->if_capenable & IFCAP_VLAN_HWTAGGING) {
490 			struct m_tag *mtag = m_tag_alloc(MTAG_VLAN,
491 							 MTAG_VLAN_TAG,
492 							 sizeof(u_int),
493 							 M_NOWAIT);
494 			if (mtag == NULL) {
495 				ifp->if_oerrors++;
496 				m_freem(m);
497 				continue;
498 			}
499 			*(u_int*)(mtag + 1) = ifv->ifv_tag;
500 			m_tag_prepend(m, mtag);
501 		} else {
502 			M_PREPEND(m, ifv->ifv_encaplen, M_DONTWAIT);
503 			if (m == NULL) {
504 				if_printf(ifp,
505 				    "unable to prepend VLAN header\n");
506 				ifp->if_oerrors++;
507 				continue;
508 			}
509 			/* M_PREPEND takes care of m_len, m_pkthdr.len for us */
510 
511 			if (m->m_len < sizeof(*evl)) {
512 				m = m_pullup(m, sizeof(*evl));
513 				if (m == NULL) {
514 					if_printf(ifp,
515 					    "cannot pullup VLAN header\n");
516 					ifp->if_oerrors++;
517 					continue;
518 				}
519 			}
520 
521 			/*
522 			 * Transform the Ethernet header into an Ethernet header
523 			 * with 802.1Q encapsulation.
524 			 */
525 			bcopy(mtod(m, char *) + ifv->ifv_encaplen,
526 			      mtod(m, char *), ETHER_HDR_LEN);
527 			evl = mtod(m, struct ether_vlan_header *);
528 			evl->evl_proto = evl->evl_encap_proto;
529 			evl->evl_encap_proto = htons(ETHERTYPE_VLAN);
530 			evl->evl_tag = htons(ifv->ifv_tag);
531 #ifdef DEBUG
532 			printf("vlan_start: %*D\n", (int)sizeof(*evl),
533 			    (unsigned char *)evl, ":");
534 #endif
535 		}
536 
537 		/*
538 		 * Send it, precisely as ether_output() would have.
539 		 * We are already running at splimp.
540 		 */
541 		IFQ_HANDOFF(p, m, error);
542 		if (!error)
543 			ifp->if_opackets++;
544 		else
545 			ifp->if_oerrors++;
546 	}
547 	ifp->if_flags &= ~IFF_OACTIVE;
548 }
549 
550 static void
551 vlan_input(struct ifnet *ifp, struct mbuf *m)
552 {
553 	struct ether_vlan_header *evl;
554 	struct ifvlan *ifv;
555 	struct m_tag *mtag;
556 	u_int tag;
557 
558 	mtag = m_tag_locate(m, MTAG_VLAN, MTAG_VLAN_TAG, NULL);
559 	if (mtag != NULL) {
560 		/*
561 		 * Packet is tagged, m contains a normal
562 		 * Ethernet frame; the tag is stored out-of-band.
563 		 */
564 		tag = EVL_VLANOFTAG(VLAN_TAG_VALUE(mtag));
565 		m_tag_delete(m, mtag);
566 		m->m_flags &= ~M_VLANTAG;
567 	} else {
568 		switch (ifp->if_type) {
569 		case IFT_ETHER:
570 			if (m->m_len < sizeof(*evl) &&
571 			    (m = m_pullup(m, sizeof(*evl))) == NULL) {
572 				if_printf(ifp, "cannot pullup VLAN header\n");
573 				return;
574 			}
575 			evl = mtod(m, struct ether_vlan_header *);
576 			KASSERT(ntohs(evl->evl_encap_proto) == ETHERTYPE_VLAN,
577 				("vlan_input: bad encapsulated protocols (%u)",
578 				 ntohs(evl->evl_encap_proto)));
579 
580 			tag = EVL_VLANOFTAG(ntohs(evl->evl_tag));
581 
582 			/*
583 			 * Restore the original ethertype.  We'll remove
584 			 * the encapsulation after we've found the vlan
585 			 * interface corresponding to the tag.
586 			 */
587 			evl->evl_encap_proto = evl->evl_proto;
588 			break;
589 		default:
590 			tag = (u_int) -1;
591 #ifdef DIAGNOSTIC
592 			panic("vlan_input: unsupported if type %u",
593 			    ifp->if_type);
594 #endif
595 			break;
596 		}
597 	}
598 
599 	VLAN_LOCK();
600 	LIST_FOREACH(ifv, &ifv_list, ifv_list)
601 		if (ifp == ifv->ifv_p && tag == ifv->ifv_tag)
602 			break;
603 
604 	if (ifv == NULL || (ifv->ifv_if.if_flags & IFF_UP) == 0) {
605 		VLAN_UNLOCK();
606 		m_freem(m);
607 		ifp->if_noproto++;
608 #ifdef DEBUG
609 		printf("vlan_input: tag %d, no interface\n", tag);
610 #endif
611 		return;
612 	}
613 	VLAN_UNLOCK();		/* XXX extend below? */
614 #ifdef DEBUG
615 	printf("vlan_input: tag %d, parent %s\n", tag, ifv->ifv_p->if_xname);
616 #endif
617 
618 	if (mtag == NULL) {
619 		/*
620 		 * Packet had an in-line encapsulation header;
621 		 * remove it.  The original header has already
622 		 * been fixed up above.
623 		 */
624 		bcopy(mtod(m, caddr_t),
625 		      mtod(m, caddr_t) + ETHER_VLAN_ENCAP_LEN,
626 		      ETHER_HDR_LEN);
627 		m_adj(m, ETHER_VLAN_ENCAP_LEN);
628 	}
629 
630 	m->m_pkthdr.rcvif = &ifv->ifv_if;
631 	ifv->ifv_if.if_ipackets++;
632 
633 	/* Pass it back through the parent's input routine. */
634 	(*ifp->if_input)(&ifv->ifv_if, m);
635 }
636 
637 static int
638 vlan_config(struct ifvlan *ifv, struct ifnet *p)
639 {
640 	struct ifaddr *ifa1, *ifa2;
641 	struct sockaddr_dl *sdl1, *sdl2;
642 
643 	VLAN_LOCK_ASSERT();
644 
645 	if (p->if_data.ifi_type != IFT_ETHER)
646 		return (EPROTONOSUPPORT);
647 	if (ifv->ifv_p)
648 		return (EBUSY);
649 
650 	ifv->ifv_encaplen = ETHER_VLAN_ENCAP_LEN;
651 	ifv->ifv_mintu = ETHERMIN;
652 	ifv->ifv_flags = 0;
653 
654 	/*
655 	 * The active VLAN counter on the parent is used
656 	 * at various places to see if there is a vlan(4)
657 	 * attached to this physical interface.
658 	 */
659 	p->if_nvlans++;
660 
661 	/*
662 	 * If the parent supports the VLAN_MTU capability,
663 	 * i.e. can Tx/Rx larger than ETHER_MAX_LEN frames,
664 	 * use it.
665 	 */
666 	if (p->if_capenable & IFCAP_VLAN_MTU) {
667 		/*
668 		 * No need to fudge the MTU since the parent can
669 		 * handle extended frames.
670 		 */
671 		ifv->ifv_mtufudge = 0;
672 	} else {
673 		/*
674 		 * Fudge the MTU by the encapsulation size.  This
675 		 * makes us incompatible with strictly compliant
676 		 * 802.1Q implementations, but allows us to use
677 		 * the feature with other NetBSD implementations,
678 		 * which might still be useful.
679 		 */
680 		ifv->ifv_mtufudge = ifv->ifv_encaplen;
681 	}
682 
683 	ifv->ifv_p = p;
684 	ifv->ifv_if.if_mtu = p->if_mtu - ifv->ifv_mtufudge;
685 	/*
686 	 * Copy only a selected subset of flags from the parent.
687 	 * Other flags are none of our business.
688 	 */
689 	ifv->ifv_if.if_flags = (p->if_flags &
690 	    (IFF_BROADCAST | IFF_MULTICAST | IFF_SIMPLEX | IFF_POINTOPOINT));
691 	ifv->ifv_if.if_link_state = p->if_link_state;
692 
693 #if 0
694 	/*
695 	 * Not ready yet.  We need notification from the parent
696 	 * when hw checksumming flags in its if_capenable change.
697 	 * Flags set in if_capabilities only are useless.
698 	 */
699 	/*
700 	 * If the parent interface can do hardware-assisted
701 	 * VLAN encapsulation, then propagate its hardware-
702 	 * assisted checksumming flags.
703 	 */
704 	if (p->if_capabilities & IFCAP_VLAN_HWTAGGING)
705 		ifv->ifv_if.if_capabilities |= p->if_capabilities & IFCAP_HWCSUM;
706 #endif
707 
708 	/*
709 	 * Set up our ``Ethernet address'' to reflect the underlying
710 	 * physical interface's.
711 	 */
712 	ifa1 = ifaddr_byindex(ifv->ifv_if.if_index);
713 	ifa2 = ifaddr_byindex(p->if_index);
714 	sdl1 = (struct sockaddr_dl *)ifa1->ifa_addr;
715 	sdl2 = (struct sockaddr_dl *)ifa2->ifa_addr;
716 	sdl1->sdl_type = IFT_ETHER;
717 	sdl1->sdl_alen = ETHER_ADDR_LEN;
718 	bcopy(LLADDR(sdl2), LLADDR(sdl1), ETHER_ADDR_LEN);
719 	bcopy(LLADDR(sdl2), ifv->ifv_ac.ac_enaddr, ETHER_ADDR_LEN);
720 
721 	/*
722 	 * Configure multicast addresses that may already be
723 	 * joined on the vlan device.
724 	 */
725 	(void)vlan_setmulti(&ifv->ifv_if); /* XXX: VLAN lock held */
726 
727 	return (0);
728 }
729 
730 static int
731 vlan_unconfig(struct ifnet *ifp)
732 {
733 	struct ifaddr *ifa;
734 	struct sockaddr_dl *sdl;
735 	struct vlan_mc_entry *mc;
736 	struct ifvlan *ifv;
737 	struct ifnet *p;
738 	int error;
739 
740 	VLAN_LOCK_ASSERT();
741 
742 	ifv = ifp->if_softc;
743 	p = ifv->ifv_p;
744 
745 	if (p) {
746 		struct sockaddr_dl sdl;
747 
748 		/*
749 		 * Since the interface is being unconfigured, we need to
750 		 * empty the list of multicast groups that we may have joined
751 		 * while we were alive from the parent's list.
752 		 */
753 		bzero((char *)&sdl, sizeof(sdl));
754 		sdl.sdl_len = sizeof(sdl);
755 		sdl.sdl_family = AF_LINK;
756 		sdl.sdl_index = p->if_index;
757 		sdl.sdl_type = IFT_ETHER;
758 		sdl.sdl_alen = ETHER_ADDR_LEN;
759 
760 		while(SLIST_FIRST(&ifv->vlan_mc_listhead) != NULL) {
761 			mc = SLIST_FIRST(&ifv->vlan_mc_listhead);
762 			bcopy((char *)&mc->mc_addr, LLADDR(&sdl),
763 			    ETHER_ADDR_LEN);
764 			error = if_delmulti(p, (struct sockaddr *)&sdl);
765 			if (error)
766 				return (error);
767 			SLIST_REMOVE_HEAD(&ifv->vlan_mc_listhead, mc_entries);
768 			free(mc, M_VLAN);
769 		}
770 
771 		p->if_nvlans--;
772 	}
773 
774 	/* Disconnect from parent. */
775 	ifv->ifv_p = NULL;
776 	ifv->ifv_if.if_mtu = ETHERMTU;		/* XXX why not 0? */
777 	ifv->ifv_flags = 0;
778 	ifv->ifv_if.if_link_state = LINK_STATE_UNKNOWN;
779 
780 	/* Clear our MAC address. */
781 	ifa = ifaddr_byindex(ifv->ifv_if.if_index);
782 	sdl = (struct sockaddr_dl *)ifa->ifa_addr;
783 	sdl->sdl_type = IFT_ETHER;
784 	sdl->sdl_alen = ETHER_ADDR_LEN;
785 	bzero(LLADDR(sdl), ETHER_ADDR_LEN);
786 	bzero(ifv->ifv_ac.ac_enaddr, ETHER_ADDR_LEN);
787 
788 	return (0);
789 }
790 
791 static int
792 vlan_set_promisc(struct ifnet *ifp)
793 {
794 	struct ifvlan *ifv = ifp->if_softc;
795 	int error = 0;
796 
797 	if ((ifp->if_flags & IFF_PROMISC) != 0) {
798 		if ((ifv->ifv_flags & IFVF_PROMISC) == 0) {
799 			error = ifpromisc(ifv->ifv_p, 1);
800 			if (error == 0)
801 				ifv->ifv_flags |= IFVF_PROMISC;
802 		}
803 	} else {
804 		if ((ifv->ifv_flags & IFVF_PROMISC) != 0) {
805 			error = ifpromisc(ifv->ifv_p, 0);
806 			if (error == 0)
807 				ifv->ifv_flags &= ~IFVF_PROMISC;
808 		}
809 	}
810 
811 	return (error);
812 }
813 
814 /* Inform all vlans that their parent has changed link state */
815 static void
816 vlan_link_state(struct ifnet *ifp, int link)
817 {
818 	struct ifvlan *ifv;
819 
820 	VLAN_LOCK();
821 	LIST_FOREACH(ifv, &ifv_list, ifv_list) {
822 		if (ifv->ifv_p == ifp) {
823 			ifv->ifv_if.if_link_state = ifv->ifv_p->if_link_state;
824 			rt_ifmsg(&(ifv->ifv_if));
825 			KNOTE_UNLOCKED(&ifp->if_klist, link);
826 		}
827 	}
828 	VLAN_UNLOCK();
829 }
830 
831 static int
832 vlan_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
833 {
834 	struct ifaddr *ifa;
835 	struct ifnet *p;
836 	struct ifreq *ifr;
837 	struct ifvlan *ifv;
838 	struct vlanreq vlr;
839 	int error = 0;
840 
841 	ifr = (struct ifreq *)data;
842 	ifa = (struct ifaddr *)data;
843 	ifv = ifp->if_softc;
844 
845 	switch (cmd) {
846 	case SIOCSIFADDR:
847 		ifp->if_flags |= IFF_UP;
848 
849 		switch (ifa->ifa_addr->sa_family) {
850 #ifdef INET
851 		case AF_INET:
852 			arp_ifinit(&ifv->ifv_if, ifa);
853 			break;
854 #endif
855 		default:
856 			break;
857 		}
858 		break;
859 
860 	case SIOCGIFADDR:
861 		{
862 			struct sockaddr *sa;
863 
864 			sa = (struct sockaddr *) &ifr->ifr_data;
865 			bcopy(IFP2AC(ifp)->ac_enaddr, (caddr_t)sa->sa_data,
866 			    ETHER_ADDR_LEN);
867 		}
868 		break;
869 
870 	case SIOCGIFMEDIA:
871 		VLAN_LOCK();
872 		if (ifv->ifv_p != NULL) {
873 			error = (*ifv->ifv_p->if_ioctl)(ifv->ifv_p,
874 					SIOCGIFMEDIA, data);
875 			VLAN_UNLOCK();
876 			/* Limit the result to the parent's current config. */
877 			if (error == 0) {
878 				struct ifmediareq *ifmr;
879 
880 				ifmr = (struct ifmediareq *)data;
881 				if (ifmr->ifm_count >= 1 && ifmr->ifm_ulist) {
882 					ifmr->ifm_count = 1;
883 					error = copyout(&ifmr->ifm_current,
884 						ifmr->ifm_ulist,
885 						sizeof(int));
886 				}
887 			}
888 		} else {
889 			VLAN_UNLOCK();
890 			error = EINVAL;
891 		}
892 		break;
893 
894 	case SIOCSIFMEDIA:
895 		error = EINVAL;
896 		break;
897 
898 	case SIOCSIFMTU:
899 		/*
900 		 * Set the interface MTU.
901 		 */
902 		VLAN_LOCK();
903 		if (ifv->ifv_p != NULL) {
904 			if (ifr->ifr_mtu >
905 			     (ifv->ifv_p->if_mtu - ifv->ifv_mtufudge) ||
906 			    ifr->ifr_mtu <
907 			     (ifv->ifv_mintu - ifv->ifv_mtufudge))
908 				error = EINVAL;
909 			else
910 				ifp->if_mtu = ifr->ifr_mtu;
911 		} else
912 			error = EINVAL;
913 		VLAN_UNLOCK();
914 		break;
915 
916 	case SIOCSETVLAN:
917 		error = copyin(ifr->ifr_data, &vlr, sizeof(vlr));
918 		if (error)
919 			break;
920 		if (vlr.vlr_parent[0] == '\0') {
921 			VLAN_LOCK();
922 			vlan_unconfig(ifp);
923 			if (ifp->if_flags & IFF_UP)
924 				if_down(ifp);
925 			ifp->if_flags &= ~IFF_RUNNING;
926 			VLAN_UNLOCK();
927 			break;
928 		}
929 		p = ifunit(vlr.vlr_parent);
930 		if (p == 0) {
931 			error = ENOENT;
932 			break;
933 		}
934 		/*
935 		 * Don't let the caller set up a VLAN tag with
936 		 * anything except VLID bits.
937 		 */
938 		if (vlr.vlr_tag & ~EVL_VLID_MASK) {
939 			error = EINVAL;
940 			break;
941 		}
942 		VLAN_LOCK();
943 		error = vlan_config(ifv, p);
944 		if (error) {
945 			VLAN_UNLOCK();
946 			break;
947 		}
948 		ifv->ifv_tag = vlr.vlr_tag;
949 		ifp->if_flags |= IFF_RUNNING;
950 		VLAN_UNLOCK();
951 
952 		/* Update promiscuous mode, if necessary. */
953 		vlan_set_promisc(ifp);
954 		break;
955 
956 	case SIOCGETVLAN:
957 		bzero(&vlr, sizeof(vlr));
958 		VLAN_LOCK();
959 		if (ifv->ifv_p) {
960 			strlcpy(vlr.vlr_parent, ifv->ifv_p->if_xname,
961 			    sizeof(vlr.vlr_parent));
962 			vlr.vlr_tag = ifv->ifv_tag;
963 		}
964 		VLAN_UNLOCK();
965 		error = copyout(&vlr, ifr->ifr_data, sizeof(vlr));
966 		break;
967 
968 	case SIOCSIFFLAGS:
969 		/*
970 		 * For promiscuous mode, we enable promiscuous mode on
971 		 * the parent if we need promiscuous on the VLAN interface.
972 		 */
973 		if (ifv->ifv_p != NULL)
974 			error = vlan_set_promisc(ifp);
975 		break;
976 
977 	case SIOCADDMULTI:
978 	case SIOCDELMULTI:
979 		/*VLAN_LOCK();*/
980 		error = vlan_setmulti(ifp);
981 		/*VLAN_UNLOCK();*/
982 		break;
983 	default:
984 		error = EINVAL;
985 	}
986 
987 	return (error);
988 }
989