xref: /dragonfly/sys/net/vlan/if_vlan.c (revision 82ece171)
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: src/sys/net/if_vlan.c,v 1.15.2.13 2003/02/14 22:25:58 fenner Exp $
30  * $DragonFly: src/sys/net/vlan/if_vlan.c,v 1.16 2005/06/14 17:34:29 joerg Exp $
31  */
32 
33 /*
34  * if_vlan.c - pseudo-device driver for IEEE 802.1Q virtual LANs.
35  * Might be extended some day to also handle IEEE 802.1p priority
36  * tagging.  This is sort of sneaky in the implementation, since
37  * we need to pretend to be enough of an Ethernet implementation
38  * to make arp work.  The way we do this is by telling everyone
39  * that we are an Ethernet, and then catch the packets that
40  * ether_output() left on our output queue queue when it calls
41  * if_start(), rewrite them for use by the real outgoing interface,
42  * and ask it to send them.
43  *
44  *
45  * XXX It's incorrect to assume that we must always kludge up
46  * headers on the physical device's behalf: some devices support
47  * VLAN tag insertion and extraction in firmware. For these cases,
48  * one can change the behavior of the vlan interface by setting
49  * the LINK0 flag on it (that is setting the vlan interface's LINK0
50  * flag, _not_ the parent's LINK0 flag; we try to leave the parent
51  * alone). If the interface has the LINK0 flag set, then it will
52  * not modify the ethernet header on output, because the parent
53  * can do that for itself. On input, the parent can call vlan_input_tag()
54  * directly in order to supply us with an incoming mbuf and the vlan
55  * tag value that goes with it.
56  */
57 
58 #ifndef NVLAN
59 #include "use_vlan.h"
60 #endif
61 #include "opt_inet.h"
62 
63 #include <sys/param.h>
64 #include <sys/kernel.h>
65 #include <sys/malloc.h>
66 #include <sys/mbuf.h>
67 #include <sys/module.h>
68 #include <sys/queue.h>
69 #include <sys/socket.h>
70 #include <sys/sockio.h>
71 #include <sys/sysctl.h>
72 #include <sys/systm.h>
73 #include <sys/thread2.h>
74 #include <machine/bus.h>	/* XXX: Shouldn't really be required! */
75 
76 #include <net/bpf.h>
77 #include <net/ethernet.h>
78 #include <net/if.h>
79 #include <net/if_arp.h>
80 #include <net/if_dl.h>
81 #include <net/if_types.h>
82 #include <net/ifq_var.h>
83 #include "if_vlan_var.h"
84 
85 #ifdef INET
86 #include <netinet/in.h>
87 #include <netinet/if_ether.h>
88 #endif
89 
90 #define VLANNAME	"vlan"
91 
92 SYSCTL_DECL(_net_link);
93 SYSCTL_NODE(_net_link, IFT_L2VLAN, vlan, CTLFLAG_RW, 0, "IEEE 802.1Q VLAN");
94 SYSCTL_NODE(_net_link_vlan, PF_LINK, link, CTLFLAG_RW, 0, "for consistency");
95 
96 static MALLOC_DEFINE(M_VLAN, "vlan", "802.1Q Virtual LAN Interface");
97 static LIST_HEAD(, ifvlan) ifv_list;
98 
99 static	int vlan_clone_create(struct if_clone *, int);
100 static	void vlan_clone_destroy(struct ifnet *);
101 static	void vlan_start(struct ifnet *ifp);
102 static	void vlan_ifinit(void *foo);
103 static	int vlan_input(struct ether_header *eh, struct mbuf *m);
104 static	int vlan_input_tag(struct mbuf *m, uint16_t t);
105 static	int vlan_ioctl(struct ifnet *ifp, u_long cmd, caddr_t addr,
106 		struct ucred *cr);
107 static	int vlan_setmulti(struct ifnet *ifp);
108 static	int vlan_unconfig(struct ifnet *ifp);
109 static	int vlan_config(struct ifvlan *ifv, struct ifnet *p);
110 
111 struct if_clone vlan_cloner = IF_CLONE_INITIALIZER("vlan", vlan_clone_create,
112     vlan_clone_destroy, NVLAN, IF_MAXUNIT);
113 
114 /*
115  * Program our multicast filter. What we're actually doing is
116  * programming the multicast filter of the parent. This has the
117  * side effect of causing the parent interface to receive multicast
118  * traffic that it doesn't really want, which ends up being discarded
119  * later by the upper protocol layers. Unfortunately, there's no way
120  * to avoid this: there really is only one physical interface.
121  */
122 static int
123 vlan_setmulti(struct ifnet *ifp)
124 {
125 	struct ifnet		*ifp_p;
126 	struct ifmultiaddr	*ifma, *rifma = NULL;
127 	struct ifvlan		*sc;
128 	struct vlan_mc_entry	*mc = NULL;
129 	struct sockaddr_dl	sdl;
130 	int			error;
131 
132 	/* Find the parent. */
133 	sc = ifp->if_softc;
134 	ifp_p = sc->ifv_p;
135 
136 	/*
137 	 * If we don't have a parent, just remember the membership for
138 	 * when we do.
139 	 */
140 	if (ifp_p == NULL)
141 		return(0);
142 
143 	bzero((char *)&sdl, sizeof sdl);
144 	sdl.sdl_len = sizeof sdl;
145 	sdl.sdl_family = AF_LINK;
146 	sdl.sdl_index = ifp_p->if_index;
147 	sdl.sdl_type = IFT_ETHER;
148 	sdl.sdl_alen = ETHER_ADDR_LEN;
149 
150 	/* First, remove any existing filter entries. */
151 	while(SLIST_FIRST(&sc->vlan_mc_listhead) != NULL) {
152 		mc = SLIST_FIRST(&sc->vlan_mc_listhead);
153 		bcopy((char *)&mc->mc_addr, LLADDR(&sdl), ETHER_ADDR_LEN);
154 		error = if_delmulti(ifp_p, (struct sockaddr *)&sdl);
155 		if (error)
156 			return(error);
157 		SLIST_REMOVE_HEAD(&sc->vlan_mc_listhead, mc_entries);
158 		free(mc, M_VLAN);
159 	}
160 
161 	/* Now program new ones. */
162 	LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
163 		if (ifma->ifma_addr->sa_family != AF_LINK)
164 			continue;
165 		mc = malloc(sizeof(struct vlan_mc_entry), M_VLAN, M_WAITOK);
166 		bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
167 		    (char *)&mc->mc_addr, ETHER_ADDR_LEN);
168 		SLIST_INSERT_HEAD(&sc->vlan_mc_listhead, mc, mc_entries);
169 		bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
170 		    LLADDR(&sdl), ETHER_ADDR_LEN);
171 		error = if_addmulti(ifp_p, (struct sockaddr *)&sdl, &rifma);
172 		if (error)
173 			return(error);
174 	}
175 
176 	return(0);
177 }
178 
179 static int
180 vlan_modevent(module_t mod, int type, void *data)
181 {
182 
183 	switch (type) {
184 	case MOD_LOAD:
185 		LIST_INIT(&ifv_list);
186 		vlan_input_p = vlan_input;
187 		vlan_input_tag_p = vlan_input_tag;
188 		if_clone_attach(&vlan_cloner);
189 		break;
190 	case MOD_UNLOAD:
191 		if_clone_detach(&vlan_cloner);
192 		vlan_input_p = NULL;
193 		vlan_input_tag_p = NULL;
194 		while (!LIST_EMPTY(&ifv_list))
195 			vlan_clone_destroy(&LIST_FIRST(&ifv_list)->ifv_if);
196 		break;
197 	}
198 	return 0;
199 }
200 
201 static moduledata_t vlan_mod = {
202 	"if_vlan",
203 	vlan_modevent,
204 	0
205 };
206 
207 DECLARE_MODULE(if_vlan, vlan_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
208 
209 static int
210 vlan_clone_create(struct if_clone *ifc, int unit)
211 {
212 	struct ifvlan *ifv;
213 	struct ifnet *ifp;
214 
215 	ifv = malloc(sizeof(struct ifvlan), M_VLAN, M_WAITOK | M_ZERO);
216 	ifp = &ifv->ifv_if;
217 	SLIST_INIT(&ifv->vlan_mc_listhead);
218 
219 	crit_enter();
220 	LIST_INSERT_HEAD(&ifv_list, ifv, ifv_list);
221 	crit_exit();
222 
223 	ifp->if_softc = ifv;
224 	if_initname(ifp, "vlan", unit);
225 	/* NB: flags are not set here */
226 	ifp->if_linkmib = &ifv->ifv_mib;
227 	ifp->if_linkmiblen = sizeof ifv->ifv_mib;
228 	/* NB: mtu is not set here */
229 
230 	ifp->if_init = vlan_ifinit;
231 	ifp->if_start = vlan_start;
232 	ifp->if_ioctl = vlan_ioctl;
233 	ifq_set_maxlen(&ifp->if_snd, ifqmaxlen);
234 	ifq_set_ready(&ifp->if_snd);
235 	ether_ifattach(ifp, ifv->ifv_ac.ac_enaddr);
236 	/* Now undo some of the damage... */
237 	ifp->if_data.ifi_type = IFT_L2VLAN;
238 	ifp->if_data.ifi_hdrlen = EVL_ENCAPLEN;
239 
240 	return (0);
241 }
242 
243 static void
244 vlan_clone_destroy(struct ifnet *ifp)
245 {
246 	struct ifvlan *ifv = ifp->if_softc;
247 
248 	crit_enter();
249 
250 	LIST_REMOVE(ifv, ifv_list);
251 	vlan_unconfig(ifp);
252 	ether_ifdetach(ifp);
253 
254 	crit_exit();
255 
256 	free(ifv, M_VLAN);
257 }
258 
259 static void
260 vlan_ifinit(void *foo)
261 {
262 	return;
263 }
264 
265 static void
266 vlan_start(struct ifnet *ifp)
267 {
268 	struct ifvlan *ifv;
269 	struct ifnet *p;
270 	struct ether_vlan_header *evl;
271 	struct mbuf *m;
272 	int error;
273 	struct altq_pktattr pktattr;
274 
275 	ifv = ifp->if_softc;
276 	p = ifv->ifv_p;
277 
278 	ifp->if_flags |= IFF_OACTIVE;
279 	for (;;) {
280 		m = ifq_dequeue(&ifp->if_snd);
281 		if (m == 0)
282 			break;
283 		BPF_MTAP(ifp, m);
284 
285 		/*
286 		 * Do not run parent's if_start() if the parent is not up,
287 		 * or parent's driver will cause a system crash.
288 		 */
289 		if ((p->if_flags & (IFF_UP | IFF_RUNNING)) !=
290 					(IFF_UP | IFF_RUNNING)) {
291 			m_freem(m);
292 			ifp->if_data.ifi_collisions++;
293 			continue;
294 		}
295 
296 		/*
297 		 * If ALTQ is enabled on the parent interface, do
298 		 * classification; the queueing discipline might
299 		 * not require classification, but might require
300 		 * the address family/header pointer in the pktattr.
301 		 */
302 		if (ifq_is_enabled(&p->if_snd))
303 			altq_etherclassify(&p->if_snd, m, &pktattr);
304 
305 		/*
306 		 * If the LINK0 flag is set, it means the underlying interface
307 		 * can do VLAN tag insertion itself and doesn't require us to
308 	 	 * create a special header for it. In this case, we just pass
309 		 * the packet along. However, we need some way to tell the
310 		 * interface where the packet came from so that it knows how
311 		 * to find the VLAN tag to use, so we set the rcvif in the
312 		 * mbuf header to our ifnet.
313 		 *
314 		 * Note: we also set the M_PROTO1 flag in the mbuf to let
315 		 * the parent driver know that the rcvif pointer is really
316 		 * valid. We need to do this because sometimes mbufs will
317 		 * be allocated by other parts of the system that contain
318 		 * garbage in the rcvif pointer. Using the M_PROTO1 flag
319 		 * lets the driver perform a proper sanity check and avoid
320 		 * following potentially bogus rcvif pointers off into
321 		 * never-never land.
322 		 */
323 		if (ifp->if_flags & IFF_LINK0) {
324 			m->m_pkthdr.rcvif = ifp;
325 			m->m_flags |= M_PROTO1;
326 		} else {
327 			M_PREPEND(m, EVL_ENCAPLEN, MB_DONTWAIT);
328 			if (m == NULL) {
329 				printf("%s: M_PREPEND failed", ifp->if_xname);
330 				ifp->if_ierrors++;
331 				continue;
332 			}
333 			/* M_PREPEND takes care of m_len, m_pkthdr.len for us */
334 
335 			m = m_pullup(m, ETHER_HDR_LEN + EVL_ENCAPLEN);
336 			if (m == NULL) {
337 				printf("%s: m_pullup failed", ifp->if_xname);
338 				ifp->if_ierrors++;
339 				continue;
340 			}
341 
342 			/*
343 			 * Transform the Ethernet header into an Ethernet header
344 			 * with 802.1Q encapsulation.
345 			 */
346 			bcopy(mtod(m, char *) + EVL_ENCAPLEN, mtod(m, char *),
347 			      sizeof(struct ether_header));
348 			evl = mtod(m, struct ether_vlan_header *);
349 			evl->evl_proto = evl->evl_encap_proto;
350 			evl->evl_encap_proto = htons(ETHERTYPE_VLAN);
351 			evl->evl_tag = htons(ifv->ifv_tag);
352 #ifdef DEBUG
353 			printf("vlan_start: %*D\n", sizeof *evl,
354 			    (unsigned char *)evl, ":");
355 #endif
356 		}
357 
358 		/*
359 		 * Send it, precisely as ether_output() would have.
360 		 * We are already running at splimp.
361 		 */
362 		error = ifq_handoff(p, m, &pktattr);
363 		if (error)
364 			ifp->if_oerrors++;
365 		else
366 			ifp->if_opackets++;
367 	}
368 	ifp->if_flags &= ~IFF_OACTIVE;
369 
370 	return;
371 }
372 
373 static int
374 vlan_input_tag( struct mbuf *m, uint16_t t)
375 {
376 	struct bpf_if *bif;
377 	struct ifvlan *ifv;
378 	struct ether_header *eh = mtod(m, struct ether_header *);
379 
380 	m_adj(m, ETHER_HDR_LEN);
381 
382 	/*
383 	 * Fake up a header and send the packet to the physical interface's
384 	 * bpf tap if active.
385 	 */
386 	if ((bif = m->m_pkthdr.rcvif->if_bpf) != NULL) {
387 		struct ether_vlan_header evh;
388 
389 		bcopy(eh, &evh, 2*ETHER_ADDR_LEN);
390 		evh.evl_encap_proto = htons(ETHERTYPE_VLAN);
391 		evh.evl_tag = htons(t);
392 		evh.evl_proto = eh->ether_type;
393 
394 		bpf_ptap(bif, m, &evh, ETHER_HDR_LEN + EVL_ENCAPLEN);
395 	}
396 
397 	for (ifv = LIST_FIRST(&ifv_list); ifv != NULL;
398 	    ifv = LIST_NEXT(ifv, ifv_list)) {
399 		if (m->m_pkthdr.rcvif == ifv->ifv_p
400 		    && ifv->ifv_tag == t)
401 			break;
402 	}
403 
404 	if (ifv == NULL || (ifv->ifv_if.if_flags & IFF_UP) == 0) {
405 		m_freem(m);
406 		return -1;	/* So the parent can take note */
407 	}
408 
409 	/*
410 	 * Having found a valid vlan interface corresponding to
411 	 * the given source interface and vlan tag, run the
412 	 * the real packet through ether_input().
413 	 */
414 	m->m_pkthdr.rcvif = &ifv->ifv_if;
415 
416 	ifv->ifv_if.if_ipackets++;
417 	ether_input(&ifv->ifv_if, eh, m);
418 	return 0;
419 }
420 
421 static int
422 vlan_input(struct ether_header *eh, struct mbuf *m)
423 {
424 	struct ifvlan *ifv;
425 
426 	for (ifv = LIST_FIRST(&ifv_list); ifv != NULL;
427 	    ifv = LIST_NEXT(ifv, ifv_list)) {
428 		if (m->m_pkthdr.rcvif == ifv->ifv_p
429 		    && (EVL_VLANOFTAG(ntohs(*mtod(m, u_int16_t *)))
430 			== ifv->ifv_tag))
431 			break;
432 	}
433 
434 	if (ifv == NULL || (ifv->ifv_if.if_flags & IFF_UP) == 0) {
435 		m->m_pkthdr.rcvif->if_noproto++;
436 		m_freem(m);
437 		return -1;	/* so ether_input can take note */
438 	}
439 
440 	/*
441 	 * Having found a valid vlan interface corresponding to
442 	 * the given source interface and vlan tag, remove the
443 	 * encapsulation, and run the real packet through
444 	 * ether_input() a second time (it had better be
445 	 * reentrant!).
446 	 */
447 	m->m_pkthdr.rcvif = &ifv->ifv_if;
448 	eh->ether_type = mtod(m, u_int16_t *)[1];
449 	m->m_data += EVL_ENCAPLEN;
450 	m->m_len -= EVL_ENCAPLEN;
451 	m->m_pkthdr.len -= EVL_ENCAPLEN;
452 
453 	ifv->ifv_if.if_ipackets++;
454 	ether_input(&ifv->ifv_if, eh, m);
455 	return 0;
456 }
457 
458 static int
459 vlan_config(struct ifvlan *ifv, struct ifnet *p)
460 {
461 	struct sockaddr_dl *sdl1, *sdl2;
462 
463 	if (p->if_data.ifi_type != IFT_ETHER)
464 		return EPROTONOSUPPORT;
465 	if (ifv->ifv_p)
466 		return EBUSY;
467 	ifv->ifv_p = p;
468 	if (p->if_data.ifi_hdrlen == sizeof(struct ether_vlan_header))
469 		ifv->ifv_if.if_mtu = p->if_mtu;
470 	else
471 		ifv->ifv_if.if_mtu = p->if_data.ifi_mtu - EVL_ENCAPLEN;
472 
473 	/*
474 	 * Copy only a selected subset of flags from the parent.
475 	 * Other flags are none of our business.
476 	 */
477 	ifv->ifv_if.if_flags = (p->if_flags &
478 	    (IFF_BROADCAST | IFF_MULTICAST | IFF_SIMPLEX | IFF_POINTOPOINT));
479 
480 	/*
481 	 * Set up our ``Ethernet address'' to reflect the underlying
482 	 * physical interface's.
483 	 */
484 	sdl1 = IF_LLSOCKADDR(&ifv->ifv_if);
485 	sdl2 = IF_LLSOCKADDR(p);
486 	sdl1->sdl_type = IFT_ETHER;
487 	sdl1->sdl_alen = ETHER_ADDR_LEN;
488 	bcopy(LLADDR(sdl2), LLADDR(sdl1), ETHER_ADDR_LEN);
489 	bcopy(LLADDR(sdl2), ifv->ifv_ac.ac_enaddr, ETHER_ADDR_LEN);
490 
491 	/*
492 	 * Configure multicast addresses that may already be
493 	 * joined on the vlan device.
494 	 */
495 	(void)vlan_setmulti(&ifv->ifv_if);
496 
497 	return 0;
498 }
499 
500 static int
501 vlan_unconfig(struct ifnet *ifp)
502 {
503 	struct sockaddr_dl *sdl;
504 	struct vlan_mc_entry *mc;
505 	struct ifvlan *ifv;
506 	struct ifnet *p;
507 	int error;
508 
509 	ifv = ifp->if_softc;
510 	p = ifv->ifv_p;
511 
512 	if (p) {
513 		struct sockaddr_dl sdl;
514 
515 		/*
516 		 * Since the interface is being unconfigured, we need to
517 		 * empty the list of multicast groups that we may have joined
518 		 * while we were alive from the parent's list.
519 		 */
520 		bzero((char *)&sdl, sizeof sdl);
521 		sdl.sdl_len = sizeof sdl;
522 		sdl.sdl_family = AF_LINK;
523 		sdl.sdl_index = p->if_index;
524 		sdl.sdl_type = IFT_ETHER;
525 		sdl.sdl_alen = ETHER_ADDR_LEN;
526 
527 		while(SLIST_FIRST(&ifv->vlan_mc_listhead) != NULL) {
528 			mc = SLIST_FIRST(&ifv->vlan_mc_listhead);
529 			bcopy((char *)&mc->mc_addr, LLADDR(&sdl), ETHER_ADDR_LEN);
530 			error = if_delmulti(p, (struct sockaddr *)&sdl);
531 			if (error)
532 				return(error);
533 			SLIST_REMOVE_HEAD(&ifv->vlan_mc_listhead, mc_entries);
534 			free(mc, M_VLAN);
535 		}
536 	}
537 
538 	/* Disconnect from parent. */
539 	ifv->ifv_p = NULL;
540 	ifv->ifv_if.if_mtu = ETHERMTU;
541 
542 	/* Clear our MAC address. */
543 	sdl = IF_LLSOCKADDR(&ifv->ifv_if);
544 	sdl->sdl_type = IFT_ETHER;
545 	sdl->sdl_alen = ETHER_ADDR_LEN;
546 	bzero(LLADDR(sdl), ETHER_ADDR_LEN);
547 	bzero(ifv->ifv_ac.ac_enaddr, ETHER_ADDR_LEN);
548 
549 	return 0;
550 }
551 
552 static int
553 vlan_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
554 {
555 	struct ifaddr *ifa;
556 	struct ifnet *p;
557 	struct ifreq *ifr;
558 	struct ifvlan *ifv;
559 	struct vlanreq vlr;
560 	int error = 0;
561 
562 	ifr = (struct ifreq *)data;
563 	ifa = (struct ifaddr *)data;
564 	ifv = ifp->if_softc;
565 
566 	crit_enter();
567 
568 	switch (cmd) {
569 	case SIOCSIFADDR:
570 		ifp->if_flags |= IFF_UP;
571 
572 		switch (ifa->ifa_addr->sa_family) {
573 #ifdef INET
574 		case AF_INET:
575 			arp_ifinit(&ifv->ifv_if, ifa);
576 			break;
577 #endif
578 		default:
579 			break;
580 		}
581 		break;
582 
583 	case SIOCGIFADDR:
584 		{
585 			struct sockaddr *sa;
586 
587 			sa = (struct sockaddr *) &ifr->ifr_data;
588 			bcopy(((struct arpcom *)ifp->if_softc)->ac_enaddr,
589 			      (caddr_t) sa->sa_data, ETHER_ADDR_LEN);
590 		}
591 		break;
592 
593 	case SIOCGIFMEDIA:
594 		if (ifv->ifv_p != NULL) {
595 			error = (ifv->ifv_p->if_ioctl)(ifv->ifv_p,
596 						       SIOCGIFMEDIA, data, cr);
597 			/* Limit the result to the parent's current config. */
598 			if (error == 0) {
599 				struct ifmediareq *ifmr;
600 
601 				ifmr = (struct ifmediareq *) data;
602 				if (ifmr->ifm_count >= 1 && ifmr->ifm_ulist) {
603 					ifmr->ifm_count = 1;
604 					error = copyout(&ifmr->ifm_current,
605 						ifmr->ifm_ulist,
606 						sizeof(int));
607 				}
608 			}
609 		} else
610 			error = EINVAL;
611 		break;
612 
613 	case SIOCSIFMEDIA:
614 		error = EINVAL;
615 		break;
616 
617 	case SIOCSIFMTU:
618 		/*
619 		 * Set the interface MTU.
620 		 * This is bogus. The underlying interface might support
621 	 	 * jumbo frames.
622 		 */
623 		if (ifr->ifr_mtu > ETHERMTU) {
624 			error = EINVAL;
625 		} else {
626 			ifp->if_mtu = ifr->ifr_mtu;
627 		}
628 		break;
629 
630 	case SIOCSETVLAN:
631 		error = copyin(ifr->ifr_data, &vlr, sizeof vlr);
632 		if (error)
633 			break;
634 		if (vlr.vlr_parent[0] == '\0') {
635 			vlan_unconfig(ifp);
636 			if (ifp->if_flags & IFF_UP)
637 				if_down(ifp);
638 			ifp->if_flags &= ~IFF_RUNNING;
639 			break;
640 		}
641 		p = ifunit(vlr.vlr_parent);
642 		if (p == 0) {
643 			error = ENOENT;
644 			break;
645 		}
646 		error = vlan_config(ifv, p);
647 		if (error)
648 			break;
649 		ifv->ifv_tag = vlr.vlr_tag;
650 		ifp->if_flags |= IFF_RUNNING;
651 		break;
652 
653 	case SIOCGETVLAN:
654 		bzero(&vlr, sizeof vlr);
655 		if (ifv->ifv_p) {
656 			strlcpy(vlr.vlr_parent, ifv->ifv_p->if_xname,
657 			    sizeof(vlr.vlr_parent));
658 			vlr.vlr_tag = ifv->ifv_tag;
659 		}
660 		error = copyout(&vlr, ifr->ifr_data, sizeof vlr);
661 		break;
662 
663 	case SIOCSIFFLAGS:
664 		/*
665 		 * We don't support promiscuous mode
666 		 * right now because it would require help from the
667 		 * underlying drivers, which hasn't been implemented.
668 		 */
669 		if (ifr->ifr_flags & (IFF_PROMISC)) {
670 			ifp->if_flags &= ~(IFF_PROMISC);
671 			error = EINVAL;
672 		}
673 		break;
674 	case SIOCADDMULTI:
675 	case SIOCDELMULTI:
676 		error = vlan_setmulti(ifp);
677 		break;
678 	default:
679 		error = EINVAL;
680 	}
681 
682 	crit_exit();
683 
684 	return error;
685 }
686