Home | History | Annotate | Line # | Download | only in net
if_vlan.c revision 1.53.14.2
      1  1.53.14.2     joerg /*	$NetBSD: if_vlan.c,v 1.53.14.2 2007/10/02 18:29:16 joerg Exp $	*/
      2        1.1   thorpej 
      3        1.1   thorpej /*-
      4       1.31   thorpej  * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
      5        1.1   thorpej  * All rights reserved.
      6        1.1   thorpej  *
      7        1.1   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.11   thorpej  * by Andrew Doran, and by Jason R. Thorpe of Zembu Labs, Inc.
      9        1.1   thorpej  *
     10        1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     11        1.1   thorpej  * modification, are permitted provided that the following conditions
     12        1.1   thorpej  * are met:
     13        1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     14        1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     15        1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17        1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     18        1.1   thorpej  * 3. All advertising materials mentioning features or use of this software
     19        1.1   thorpej  *    must display the following acknowledgement:
     20        1.1   thorpej  *	This product includes software developed by the NetBSD
     21        1.1   thorpej  *	Foundation, Inc. and its contributors.
     22        1.1   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23        1.1   thorpej  *    contributors may be used to endorse or promote products derived
     24        1.1   thorpej  *    from this software without specific prior written permission.
     25        1.1   thorpej  *
     26        1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27        1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28        1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29        1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30        1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31        1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32        1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33        1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34        1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35        1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36        1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37        1.1   thorpej  */
     38        1.1   thorpej 
     39        1.1   thorpej /*
     40        1.1   thorpej  * Copyright 1998 Massachusetts Institute of Technology
     41        1.1   thorpej  *
     42        1.1   thorpej  * Permission to use, copy, modify, and distribute this software and
     43        1.1   thorpej  * its documentation for any purpose and without fee is hereby
     44        1.1   thorpej  * granted, provided that both the above copyright notice and this
     45        1.1   thorpej  * permission notice appear in all copies, that both the above
     46        1.1   thorpej  * copyright notice and this permission notice appear in all
     47        1.1   thorpej  * supporting documentation, and that the name of M.I.T. not be used
     48        1.1   thorpej  * in advertising or publicity pertaining to distribution of the
     49        1.1   thorpej  * software without specific, written prior permission.  M.I.T. makes
     50        1.1   thorpej  * no representations about the suitability of this software for any
     51        1.1   thorpej  * purpose.  It is provided "as is" without express or implied
     52        1.1   thorpej  * warranty.
     53       1.44     perry  *
     54        1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
     55        1.1   thorpej  * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
     56        1.1   thorpej  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     57        1.1   thorpej  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
     58        1.1   thorpej  * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     59        1.1   thorpej  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     60        1.1   thorpej  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
     61        1.1   thorpej  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
     62        1.1   thorpej  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     63        1.1   thorpej  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
     64        1.1   thorpej  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     65        1.1   thorpej  * SUCH DAMAGE.
     66        1.1   thorpej  *
     67        1.1   thorpej  * from FreeBSD: if_vlan.c,v 1.16 2000/03/26 15:21:40 charnier Exp
     68        1.1   thorpej  * via OpenBSD: if_vlan.c,v 1.4 2000/05/15 19:15:00 chris Exp
     69        1.1   thorpej  */
     70        1.1   thorpej 
     71        1.1   thorpej /*
     72        1.1   thorpej  * if_vlan.c - pseudo-device driver for IEEE 802.1Q virtual LANs.  Might be
     73        1.1   thorpej  * extended some day to also handle IEEE 802.1P priority tagging.  This is
     74        1.1   thorpej  * sort of sneaky in the implementation, since we need to pretend to be
     75        1.1   thorpej  * enough of an Ethernet implementation to make ARP work.  The way we do
     76        1.1   thorpej  * this is by telling everyone that we are an Ethernet interface, and then
     77        1.1   thorpej  * catch the packets that ether_output() left on our output queue when it
     78        1.1   thorpej  * calls if_start(), rewrite them for use by the real outgoing interface,
     79        1.1   thorpej  * and ask it to send them.
     80        1.1   thorpej  *
     81        1.1   thorpej  * TODO:
     82        1.1   thorpej  *
     83        1.1   thorpej  *	- Need some way to notify vlan interfaces when the parent
     84        1.1   thorpej  *	  interface changes MTU.
     85        1.1   thorpej  */
     86       1.33     lukem 
     87       1.33     lukem #include <sys/cdefs.h>
     88  1.53.14.2     joerg __KERNEL_RCSID(0, "$NetBSD: if_vlan.c,v 1.53.14.2 2007/10/02 18:29:16 joerg Exp $");
     89        1.1   thorpej 
     90        1.1   thorpej #include "opt_inet.h"
     91        1.1   thorpej #include "bpfilter.h"
     92        1.1   thorpej 
     93        1.1   thorpej #include <sys/param.h>
     94        1.1   thorpej #include <sys/kernel.h>
     95        1.1   thorpej #include <sys/mbuf.h>
     96        1.1   thorpej #include <sys/queue.h>
     97        1.1   thorpej #include <sys/socket.h>
     98        1.1   thorpej #include <sys/sockio.h>
     99        1.1   thorpej #include <sys/systm.h>
    100        1.1   thorpej #include <sys/proc.h>
    101       1.48      elad #include <sys/kauth.h>
    102        1.1   thorpej 
    103        1.1   thorpej #if NBPFILTER > 0
    104        1.1   thorpej #include <net/bpf.h>
    105        1.1   thorpej #endif
    106        1.1   thorpej #include <net/if.h>
    107        1.1   thorpej #include <net/if_dl.h>
    108        1.1   thorpej #include <net/if_types.h>
    109        1.1   thorpej #include <net/if_ether.h>
    110        1.1   thorpej #include <net/if_vlanvar.h>
    111        1.1   thorpej 
    112        1.1   thorpej #ifdef INET
    113        1.1   thorpej #include <netinet/in.h>
    114        1.1   thorpej #include <netinet/if_inarp.h>
    115        1.1   thorpej #endif
    116        1.1   thorpej 
    117       1.10   thorpej struct vlan_mc_entry {
    118       1.10   thorpej 	LIST_ENTRY(vlan_mc_entry)	mc_entries;
    119       1.10   thorpej 	/*
    120       1.10   thorpej 	 * A key to identify this entry.  The mc_addr below can't be
    121       1.10   thorpej 	 * used since multiple sockaddr may mapped into the same
    122       1.10   thorpej 	 * ether_multi (e.g., AF_UNSPEC).
    123       1.10   thorpej 	 */
    124       1.10   thorpej 	union {
    125       1.10   thorpej 		struct ether_multi	*mcu_enm;
    126       1.10   thorpej 	} mc_u;
    127       1.10   thorpej 	struct sockaddr_storage		mc_addr;
    128       1.10   thorpej };
    129       1.10   thorpej 
    130       1.10   thorpej #define	mc_enm		mc_u.mcu_enm
    131       1.10   thorpej 
    132       1.10   thorpej struct ifvlan {
    133       1.10   thorpej 	union {
    134       1.10   thorpej 		struct ethercom ifvu_ec;
    135       1.10   thorpej 	} ifv_u;
    136       1.10   thorpej 	struct ifnet *ifv_p;	/* parent interface of this vlan */
    137       1.10   thorpej 	struct ifv_linkmib {
    138       1.10   thorpej 		const struct vlan_multisw *ifvm_msw;
    139       1.10   thorpej 		int	ifvm_encaplen;	/* encapsulation length */
    140       1.10   thorpej 		int	ifvm_mtufudge;	/* MTU fudged by this much */
    141       1.10   thorpej 		int	ifvm_mintu;	/* min transmission unit */
    142       1.10   thorpej 		u_int16_t ifvm_proto;	/* encapsulation ethertype */
    143       1.10   thorpej 		u_int16_t ifvm_tag;	/* tag to apply on packets */
    144       1.10   thorpej 	} ifv_mib;
    145       1.10   thorpej 	LIST_HEAD(__vlan_mchead, vlan_mc_entry) ifv_mc_listhead;
    146       1.10   thorpej 	LIST_ENTRY(ifvlan) ifv_list;
    147       1.17   thorpej 	int ifv_flags;
    148       1.10   thorpej };
    149       1.10   thorpej 
    150       1.17   thorpej #define	IFVF_PROMISC	0x01		/* promiscuous mode enabled */
    151       1.17   thorpej 
    152       1.10   thorpej #define	ifv_ec		ifv_u.ifvu_ec
    153       1.10   thorpej 
    154       1.10   thorpej #define	ifv_if		ifv_ec.ec_if
    155       1.10   thorpej 
    156       1.10   thorpej #define	ifv_msw		ifv_mib.ifvm_msw
    157       1.10   thorpej #define	ifv_encaplen	ifv_mib.ifvm_encaplen
    158       1.10   thorpej #define	ifv_mtufudge	ifv_mib.ifvm_mtufudge
    159       1.10   thorpej #define	ifv_mintu	ifv_mib.ifvm_mintu
    160       1.10   thorpej #define	ifv_tag		ifv_mib.ifvm_tag
    161       1.10   thorpej 
    162       1.10   thorpej struct vlan_multisw {
    163       1.10   thorpej 	int	(*vmsw_addmulti)(struct ifvlan *, struct ifreq *);
    164       1.10   thorpej 	int	(*vmsw_delmulti)(struct ifvlan *, struct ifreq *);
    165       1.10   thorpej 	void	(*vmsw_purgemulti)(struct ifvlan *);
    166       1.10   thorpej };
    167       1.10   thorpej 
    168       1.10   thorpej static int	vlan_ether_addmulti(struct ifvlan *, struct ifreq *);
    169       1.10   thorpej static int	vlan_ether_delmulti(struct ifvlan *, struct ifreq *);
    170       1.10   thorpej static void	vlan_ether_purgemulti(struct ifvlan *);
    171       1.10   thorpej 
    172       1.10   thorpej const struct vlan_multisw vlan_ether_multisw = {
    173       1.10   thorpej 	vlan_ether_addmulti,
    174       1.10   thorpej 	vlan_ether_delmulti,
    175       1.10   thorpej 	vlan_ether_purgemulti,
    176       1.10   thorpej };
    177       1.10   thorpej 
    178        1.1   thorpej static int	vlan_clone_create(struct if_clone *, int);
    179       1.42     peter static int	vlan_clone_destroy(struct ifnet *);
    180        1.1   thorpej static int	vlan_config(struct ifvlan *, struct ifnet *);
    181       1.53  christos static int	vlan_ioctl(struct ifnet *, u_long, void *);
    182        1.1   thorpej static void	vlan_start(struct ifnet *);
    183       1.11   thorpej static void	vlan_unconfig(struct ifnet *);
    184       1.10   thorpej 
    185       1.10   thorpej void		vlanattach(int);
    186        1.1   thorpej 
    187        1.1   thorpej /* XXX This should be a hash table with the tag as the basis of the key. */
    188        1.1   thorpej static LIST_HEAD(, ifvlan) ifv_list;
    189        1.1   thorpej 
    190        1.1   thorpej struct if_clone vlan_cloner =
    191        1.1   thorpej     IF_CLONE_INITIALIZER("vlan", vlan_clone_create, vlan_clone_destroy);
    192        1.1   thorpej 
    193       1.38       scw /* Used to pad ethernet frames with < ETHER_MIN_LEN bytes */
    194       1.38       scw static char vlan_zero_pad_buff[ETHER_MIN_LEN];
    195       1.38       scw 
    196        1.1   thorpej void
    197       1.52  christos vlanattach(int n)
    198        1.1   thorpej {
    199        1.1   thorpej 
    200        1.1   thorpej 	LIST_INIT(&ifv_list);
    201        1.1   thorpej 	if_clone_attach(&vlan_cloner);
    202        1.1   thorpej }
    203        1.1   thorpej 
    204       1.30   thorpej static void
    205       1.30   thorpej vlan_reset_linkname(struct ifnet *ifp)
    206       1.30   thorpej {
    207       1.30   thorpej 
    208       1.30   thorpej 	/*
    209       1.30   thorpej 	 * We start out with a "802.1Q VLAN" type and zero-length
    210       1.30   thorpej 	 * addresses.  When we attach to a parent interface, we
    211       1.30   thorpej 	 * inherit its type, address length, address, and data link
    212       1.30   thorpej 	 * type.
    213       1.30   thorpej 	 */
    214       1.30   thorpej 
    215       1.30   thorpej 	ifp->if_type = IFT_L2VLAN;
    216       1.30   thorpej 	ifp->if_addrlen = 0;
    217       1.30   thorpej 	ifp->if_dlt = DLT_NULL;
    218       1.30   thorpej 	if_alloc_sadl(ifp);
    219       1.30   thorpej }
    220       1.30   thorpej 
    221        1.1   thorpej static int
    222        1.1   thorpej vlan_clone_create(struct if_clone *ifc, int unit)
    223        1.1   thorpej {
    224        1.1   thorpej 	struct ifvlan *ifv;
    225        1.1   thorpej 	struct ifnet *ifp;
    226       1.11   thorpej 	int s;
    227        1.1   thorpej 
    228       1.10   thorpej 	ifv = malloc(sizeof(struct ifvlan), M_DEVBUF, M_WAITOK);
    229        1.1   thorpej 	memset(ifv, 0, sizeof(struct ifvlan));
    230       1.14     enami 	ifp = &ifv->ifv_if;
    231        1.5     enami 	LIST_INIT(&ifv->ifv_mc_listhead);
    232       1.11   thorpej 
    233       1.11   thorpej 	s = splnet();
    234        1.1   thorpej 	LIST_INSERT_HEAD(&ifv_list, ifv, ifv_list);
    235       1.11   thorpej 	splx(s);
    236        1.1   thorpej 
    237       1.39    itojun 	snprintf(ifp->if_xname, sizeof(ifp->if_xname), "%s%d", ifc->ifc_name,
    238       1.39    itojun 	    unit);
    239        1.1   thorpej 	ifp->if_softc = ifv;
    240        1.1   thorpej 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
    241        1.1   thorpej 	ifp->if_start = vlan_start;
    242        1.1   thorpej 	ifp->if_ioctl = vlan_ioctl;
    243       1.31   thorpej 	IFQ_SET_READY(&ifp->if_snd);
    244        1.1   thorpej 
    245        1.1   thorpej 	if_attach(ifp);
    246       1.30   thorpej 	vlan_reset_linkname(ifp);
    247        1.1   thorpej 
    248        1.1   thorpej 	return (0);
    249        1.1   thorpej }
    250        1.1   thorpej 
    251       1.42     peter static int
    252        1.1   thorpej vlan_clone_destroy(struct ifnet *ifp)
    253        1.1   thorpej {
    254       1.11   thorpej 	struct ifvlan *ifv = ifp->if_softc;
    255        1.1   thorpej 	int s;
    256        1.1   thorpej 
    257       1.11   thorpej 	s = splnet();
    258        1.1   thorpej 	LIST_REMOVE(ifv, ifv_list);
    259        1.1   thorpej 	vlan_unconfig(ifp);
    260       1.11   thorpej 	splx(s);
    261        1.1   thorpej 
    262        1.1   thorpej 	if_detach(ifp);
    263        1.1   thorpej 	free(ifv, M_DEVBUF);
    264       1.42     peter 
    265       1.42     peter 	return (0);
    266        1.1   thorpej }
    267        1.1   thorpej 
    268       1.11   thorpej /*
    269       1.11   thorpej  * Configure a VLAN interface.  Must be called at splnet().
    270       1.11   thorpej  */
    271        1.1   thorpej static int
    272        1.1   thorpej vlan_config(struct ifvlan *ifv, struct ifnet *p)
    273        1.1   thorpej {
    274       1.10   thorpej 	struct ifnet *ifp = &ifv->ifv_if;
    275       1.10   thorpej 	int error;
    276        1.1   thorpej 
    277        1.1   thorpej 	if (ifv->ifv_p != NULL)
    278        1.1   thorpej 		return (EBUSY);
    279       1.10   thorpej 
    280       1.10   thorpej 	switch (p->if_type) {
    281       1.10   thorpej 	case IFT_ETHER:
    282       1.10   thorpej 	    {
    283       1.10   thorpej 		struct ethercom *ec = (void *) p;
    284       1.10   thorpej 
    285       1.10   thorpej 		ifv->ifv_msw = &vlan_ether_multisw;
    286       1.10   thorpej 		ifv->ifv_encaplen = ETHER_VLAN_ENCAP_LEN;
    287       1.10   thorpej 		ifv->ifv_mintu = ETHERMIN;
    288       1.10   thorpej 
    289       1.10   thorpej 		/*
    290       1.10   thorpej 		 * If the parent supports the VLAN_MTU capability,
    291       1.10   thorpej 		 * i.e. can Tx/Rx larger than ETHER_MAX_LEN frames,
    292       1.10   thorpej 		 * enable it.
    293       1.10   thorpej 		 */
    294       1.10   thorpej 		if (ec->ec_nvlans++ == 0 &&
    295       1.10   thorpej 		    (ec->ec_capabilities & ETHERCAP_VLAN_MTU) != 0) {
    296       1.10   thorpej 			/*
    297       1.10   thorpej 			 * Enable Tx/Rx of VLAN-sized frames.
    298       1.10   thorpej 			 */
    299       1.10   thorpej 			ec->ec_capenable |= ETHERCAP_VLAN_MTU;
    300       1.10   thorpej 			if (p->if_flags & IFF_UP) {
    301       1.10   thorpej 				struct ifreq ifr;
    302       1.10   thorpej 
    303       1.10   thorpej 				ifr.ifr_flags = p->if_flags;
    304       1.10   thorpej 				error = (*p->if_ioctl)(p, SIOCSIFFLAGS,
    305       1.53  christos 				    (void *) &ifr);
    306       1.10   thorpej 				if (error) {
    307       1.10   thorpej 					if (ec->ec_nvlans-- == 1)
    308       1.10   thorpej 						ec->ec_capenable &=
    309       1.10   thorpej 						    ~ETHERCAP_VLAN_MTU;
    310       1.10   thorpej 					return (error);
    311       1.10   thorpej 				}
    312       1.10   thorpej 			}
    313       1.10   thorpej 			ifv->ifv_mtufudge = 0;
    314       1.10   thorpej 		} else if ((ec->ec_capabilities & ETHERCAP_VLAN_MTU) == 0) {
    315       1.10   thorpej 			/*
    316       1.10   thorpej 			 * Fudge the MTU by the encapsulation size.  This
    317       1.10   thorpej 			 * makes us incompatible with strictly compliant
    318       1.10   thorpej 			 * 802.1Q implementations, but allows us to use
    319       1.10   thorpej 			 * the feature with other NetBSD implementations,
    320       1.10   thorpej 			 * which might still be useful.
    321       1.10   thorpej 			 */
    322       1.10   thorpej 			ifv->ifv_mtufudge = ifv->ifv_encaplen;
    323       1.10   thorpej 		}
    324       1.10   thorpej 
    325       1.10   thorpej 		/*
    326       1.32   thorpej 		 * If the parent interface can do hardware-assisted
    327       1.32   thorpej 		 * VLAN encapsulation, then propagate its hardware-
    328       1.32   thorpej 		 * assisted checksumming flags.
    329       1.32   thorpej 		 */
    330       1.32   thorpej 		if (ec->ec_capabilities & ETHERCAP_VLAN_HWTAGGING)
    331       1.32   thorpej 			ifp->if_capabilities = p->if_capabilities &
    332       1.46      yamt 			    (IFCAP_CSUM_IPv4_Tx|IFCAP_CSUM_IPv4_Rx|
    333       1.46      yamt 			     IFCAP_CSUM_TCPv4_Tx|IFCAP_CSUM_TCPv4_Rx|
    334       1.46      yamt 			     IFCAP_CSUM_UDPv4_Tx|IFCAP_CSUM_UDPv4_Rx|
    335       1.46      yamt 			     IFCAP_CSUM_TCPv6_Tx|IFCAP_CSUM_TCPv6_Rx|
    336       1.46      yamt 			     IFCAP_CSUM_UDPv6_Tx|IFCAP_CSUM_UDPv6_Rx);
    337       1.32   thorpej 
    338       1.32   thorpej 		/*
    339       1.10   thorpej 		 * We inherit the parent's Ethernet address.
    340       1.10   thorpej 		 */
    341  1.53.14.1  jmcneill 		ether_ifattach(ifp, CLLADDR(p->if_sadl));
    342       1.10   thorpej 		ifp->if_hdrlen = sizeof(struct ether_vlan_header); /* XXX? */
    343       1.10   thorpej 		break;
    344       1.10   thorpej 	    }
    345       1.10   thorpej 
    346       1.10   thorpej 	default:
    347       1.10   thorpej 		return (EPROTONOSUPPORT);
    348       1.10   thorpej 	}
    349       1.10   thorpej 
    350        1.1   thorpej 	ifv->ifv_p = p;
    351       1.10   thorpej 	ifv->ifv_if.if_mtu = p->if_mtu - ifv->ifv_mtufudge;
    352       1.21    bouyer 	ifv->ifv_if.if_flags = p->if_flags &
    353       1.23    bouyer 	    (IFF_UP | IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
    354        1.1   thorpej 
    355        1.1   thorpej 	/*
    356       1.10   thorpej 	 * Inherit the if_type from the parent.  This allows us
    357       1.10   thorpej 	 * to participate in bridges of that type.
    358        1.1   thorpej 	 */
    359       1.10   thorpej 	ifv->ifv_if.if_type = p->if_type;
    360       1.10   thorpej 
    361        1.1   thorpej 	return (0);
    362        1.1   thorpej }
    363        1.1   thorpej 
    364       1.11   thorpej /*
    365       1.11   thorpej  * Unconfigure a VLAN interface.  Must be called at splnet().
    366       1.11   thorpej  */
    367       1.11   thorpej static void
    368        1.1   thorpej vlan_unconfig(struct ifnet *ifp)
    369        1.1   thorpej {
    370       1.10   thorpej 	struct ifvlan *ifv = ifp->if_softc;
    371        1.1   thorpej 
    372        1.7     enami 	if (ifv->ifv_p == NULL)
    373       1.11   thorpej 		return;
    374        1.1   thorpej 
    375        1.1   thorpej 	/*
    376        1.1   thorpej  	 * Since the interface is being unconfigured, we need to empty the
    377        1.1   thorpej 	 * list of multicast groups that we may have joined while we were
    378        1.1   thorpej 	 * alive and remove them from the parent's list also.
    379        1.1   thorpej 	 */
    380       1.10   thorpej 	(*ifv->ifv_msw->vmsw_purgemulti)(ifv);
    381        1.1   thorpej 
    382        1.1   thorpej 	/* Disconnect from parent. */
    383       1.10   thorpej 	switch (ifv->ifv_p->if_type) {
    384       1.10   thorpej 	case IFT_ETHER:
    385       1.10   thorpej 	    {
    386       1.10   thorpej 		struct ethercom *ec = (void *) ifv->ifv_p;
    387       1.10   thorpej 
    388       1.10   thorpej 		if (ec->ec_nvlans-- == 1) {
    389       1.10   thorpej 			/*
    390       1.10   thorpej 			 * Disable Tx/Rx of VLAN-sized frames.
    391       1.10   thorpej 			 */
    392       1.10   thorpej 			ec->ec_capenable &= ~ETHERCAP_VLAN_MTU;
    393       1.10   thorpej 			if (ifv->ifv_p->if_flags & IFF_UP) {
    394       1.10   thorpej 				struct ifreq ifr;
    395       1.10   thorpej 
    396       1.10   thorpej 				ifr.ifr_flags = ifv->ifv_p->if_flags;
    397       1.10   thorpej 				(void) (*ifv->ifv_p->if_ioctl)(ifv->ifv_p,
    398       1.53  christos 				    SIOCSIFFLAGS, (void *) &ifr);
    399       1.10   thorpej 			}
    400       1.10   thorpej 		}
    401       1.10   thorpej 
    402       1.10   thorpej 		ether_ifdetach(ifp);
    403       1.30   thorpej 		vlan_reset_linkname(ifp);
    404       1.10   thorpej 		break;
    405       1.10   thorpej 	    }
    406       1.10   thorpej 
    407       1.10   thorpej #ifdef DIAGNOSTIC
    408       1.10   thorpej 	default:
    409       1.10   thorpej 		panic("vlan_unconfig: impossible");
    410       1.10   thorpej #endif
    411       1.10   thorpej 	}
    412       1.10   thorpej 
    413        1.1   thorpej 	ifv->ifv_p = NULL;
    414       1.10   thorpej 	ifv->ifv_if.if_mtu = 0;
    415       1.17   thorpej 	ifv->ifv_flags = 0;
    416        1.1   thorpej 
    417       1.11   thorpej 	if_down(ifp);
    418       1.11   thorpej 	ifp->if_flags &= ~(IFF_UP|IFF_RUNNING);
    419       1.32   thorpej 	ifp->if_capabilities = 0;
    420       1.11   thorpej }
    421       1.11   thorpej 
    422       1.11   thorpej /*
    423       1.11   thorpej  * Called when a parent interface is detaching; destroy any VLAN
    424       1.11   thorpej  * configuration for the parent interface.
    425       1.11   thorpej  */
    426       1.11   thorpej void
    427       1.11   thorpej vlan_ifdetach(struct ifnet *p)
    428       1.11   thorpej {
    429       1.11   thorpej 	struct ifvlan *ifv;
    430       1.11   thorpej 	int s;
    431       1.11   thorpej 
    432       1.11   thorpej 	s = splnet();
    433       1.11   thorpej 
    434       1.11   thorpej 	for (ifv = LIST_FIRST(&ifv_list); ifv != NULL;
    435       1.11   thorpej 	     ifv = LIST_NEXT(ifv, ifv_list)) {
    436       1.11   thorpej 		if (ifv->ifv_p == p)
    437       1.11   thorpej 			vlan_unconfig(&ifv->ifv_if);
    438       1.11   thorpej 	}
    439       1.11   thorpej 
    440        1.1   thorpej 	splx(s);
    441        1.1   thorpej }
    442        1.1   thorpej 
    443        1.1   thorpej static int
    444       1.17   thorpej vlan_set_promisc(struct ifnet *ifp)
    445       1.17   thorpej {
    446       1.17   thorpej 	struct ifvlan *ifv = ifp->if_softc;
    447       1.20     enami 	int error = 0;
    448       1.17   thorpej 
    449       1.17   thorpej 	if ((ifp->if_flags & IFF_PROMISC) != 0) {
    450       1.17   thorpej 		if ((ifv->ifv_flags & IFVF_PROMISC) == 0) {
    451       1.17   thorpej 			error = ifpromisc(ifv->ifv_p, 1);
    452       1.17   thorpej 			if (error == 0)
    453       1.17   thorpej 				ifv->ifv_flags |= IFVF_PROMISC;
    454       1.17   thorpej 		}
    455       1.17   thorpej 	} else {
    456       1.17   thorpej 		if ((ifv->ifv_flags & IFVF_PROMISC) != 0) {
    457       1.17   thorpej 			error = ifpromisc(ifv->ifv_p, 0);
    458       1.17   thorpej 			if (error == 0)
    459       1.17   thorpej 				ifv->ifv_flags &= ~IFVF_PROMISC;
    460       1.17   thorpej 		}
    461       1.17   thorpej 	}
    462       1.17   thorpej 
    463       1.17   thorpej 	return (error);
    464       1.17   thorpej }
    465       1.17   thorpej 
    466       1.17   thorpej static int
    467       1.53  christos vlan_ioctl(struct ifnet *ifp, u_long cmd, void *data)
    468        1.1   thorpej {
    469       1.49        ad 	struct lwp *l = curlwp;	/* XXX */
    470       1.11   thorpej 	struct ifvlan *ifv = ifp->if_softc;
    471       1.11   thorpej 	struct ifaddr *ifa = (struct ifaddr *) data;
    472       1.11   thorpej 	struct ifreq *ifr = (struct ifreq *) data;
    473        1.1   thorpej 	struct ifnet *pr;
    474        1.1   thorpej 	struct vlanreq vlr;
    475        1.1   thorpej 	struct sockaddr *sa;
    476       1.11   thorpej 	int s, error = 0;
    477        1.1   thorpej 
    478       1.11   thorpej 	s = splnet();
    479        1.1   thorpej 
    480        1.1   thorpej 	switch (cmd) {
    481        1.1   thorpej 	case SIOCSIFADDR:
    482       1.16    bouyer 		if (ifv->ifv_p != NULL) {
    483       1.16    bouyer 			ifp->if_flags |= IFF_UP;
    484        1.1   thorpej 
    485       1.16    bouyer 			switch (ifa->ifa_addr->sa_family) {
    486        1.1   thorpej #ifdef INET
    487       1.16    bouyer 			case AF_INET:
    488       1.16    bouyer 				arp_ifinit(ifp, ifa);
    489       1.16    bouyer 				break;
    490        1.1   thorpej #endif
    491       1.16    bouyer 			default:
    492       1.16    bouyer 				break;
    493       1.16    bouyer 			}
    494       1.16    bouyer 		} else {
    495       1.16    bouyer 			error = EINVAL;
    496        1.1   thorpej 		}
    497        1.1   thorpej 		break;
    498        1.1   thorpej 
    499        1.1   thorpej 	case SIOCGIFADDR:
    500        1.1   thorpej 		sa = (struct sockaddr *)&ifr->ifr_data;
    501  1.53.14.1  jmcneill 		memcpy(sa->sa_data, CLLADDR(ifp->if_sadl), ifp->if_addrlen);
    502        1.1   thorpej 		break;
    503        1.1   thorpej 
    504        1.1   thorpej 	case SIOCSIFMTU:
    505        1.1   thorpej 		if (ifv->ifv_p != NULL) {
    506       1.10   thorpej 			if (ifr->ifr_mtu >
    507       1.10   thorpej 			     (ifv->ifv_p->if_mtu - ifv->ifv_mtufudge) ||
    508       1.10   thorpej 			    ifr->ifr_mtu <
    509       1.10   thorpej 			     (ifv->ifv_mintu - ifv->ifv_mtufudge))
    510        1.1   thorpej 				error = EINVAL;
    511        1.1   thorpej 			else
    512        1.1   thorpej 				ifp->if_mtu = ifr->ifr_mtu;
    513        1.1   thorpej 		} else
    514        1.1   thorpej 			error = EINVAL;
    515        1.1   thorpej 		break;
    516        1.1   thorpej 
    517        1.1   thorpej 	case SIOCSETVLAN:
    518       1.51      elad 		if ((error = kauth_authorize_network(l->l_cred,
    519       1.51      elad 		    KAUTH_NETWORK_INTERFACE,
    520       1.51      elad 		    KAUTH_REQ_NETWORK_INTERFACE_SETPRIV, ifp, (void *)cmd,
    521       1.51      elad 		    NULL)) != 0)
    522        1.1   thorpej 			break;
    523        1.1   thorpej 		if ((error = copyin(ifr->ifr_data, &vlr, sizeof(vlr))) != 0)
    524        1.1   thorpej 			break;
    525        1.1   thorpej 		if (vlr.vlr_parent[0] == '\0') {
    526        1.1   thorpej 			vlan_unconfig(ifp);
    527        1.1   thorpej 			break;
    528        1.1   thorpej 		}
    529        1.1   thorpej 		if (vlr.vlr_tag != EVL_VLANOFTAG(vlr.vlr_tag)) {
    530        1.1   thorpej 			error = EINVAL;		 /* check for valid tag */
    531        1.1   thorpej 			break;
    532        1.1   thorpej 		}
    533        1.1   thorpej 		if ((pr = ifunit(vlr.vlr_parent)) == 0) {
    534        1.1   thorpej 			error = ENOENT;
    535        1.1   thorpej 			break;
    536        1.1   thorpej 		}
    537        1.1   thorpej 		if ((error = vlan_config(ifv, pr)) != 0)
    538        1.1   thorpej 			break;
    539        1.1   thorpej 		ifv->ifv_tag = vlr.vlr_tag;
    540        1.1   thorpej 		ifp->if_flags |= IFF_RUNNING;
    541       1.17   thorpej 
    542       1.17   thorpej 		/* Update promiscuous mode, if necessary. */
    543       1.17   thorpej 		vlan_set_promisc(ifp);
    544        1.1   thorpej 		break;
    545        1.1   thorpej 
    546        1.1   thorpej 	case SIOCGETVLAN:
    547        1.1   thorpej 		memset(&vlr, 0, sizeof(vlr));
    548        1.1   thorpej 		if (ifv->ifv_p != NULL) {
    549        1.1   thorpej 			snprintf(vlr.vlr_parent, sizeof(vlr.vlr_parent), "%s",
    550        1.1   thorpej 			    ifv->ifv_p->if_xname);
    551        1.1   thorpej 			vlr.vlr_tag = ifv->ifv_tag;
    552        1.1   thorpej 		}
    553        1.1   thorpej 		error = copyout(&vlr, ifr->ifr_data, sizeof(vlr));
    554        1.1   thorpej 		break;
    555        1.1   thorpej 
    556        1.1   thorpej 	case SIOCSIFFLAGS:
    557        1.1   thorpej 		/*
    558       1.17   thorpej 		 * For promiscuous mode, we enable promiscuous mode on
    559       1.17   thorpej 		 * the parent if we need promiscuous on the VLAN interface.
    560        1.1   thorpej 		 */
    561       1.17   thorpej 		if (ifv->ifv_p != NULL)
    562       1.17   thorpej 			error = vlan_set_promisc(ifp);
    563        1.1   thorpej 		break;
    564        1.1   thorpej 
    565        1.1   thorpej 	case SIOCADDMULTI:
    566       1.26   thorpej 		error = (ifv->ifv_p != NULL) ?
    567       1.26   thorpej 		    (*ifv->ifv_msw->vmsw_addmulti)(ifv, ifr) : EINVAL;
    568        1.6     enami 		break;
    569        1.6     enami 
    570        1.1   thorpej 	case SIOCDELMULTI:
    571       1.26   thorpej 		error = (ifv->ifv_p != NULL) ?
    572       1.26   thorpej 		    (*ifv->ifv_msw->vmsw_delmulti)(ifv, ifr) : EINVAL;
    573        1.1   thorpej 		break;
    574        1.1   thorpej 
    575        1.1   thorpej 	default:
    576        1.1   thorpej 		error = EINVAL;
    577        1.1   thorpej 	}
    578       1.11   thorpej 
    579       1.11   thorpej 	splx(s);
    580        1.1   thorpej 
    581        1.1   thorpej 	return (error);
    582        1.1   thorpej }
    583        1.1   thorpej 
    584        1.1   thorpej static int
    585       1.10   thorpej vlan_ether_addmulti(struct ifvlan *ifv, struct ifreq *ifr)
    586        1.1   thorpej {
    587  1.53.14.2     joerg 	const struct sockaddr *sa = ifreq_getaddr(SIOCADDMULTI, ifr);
    588        1.1   thorpej 	struct vlan_mc_entry *mc;
    589        1.5     enami 	u_int8_t addrlo[ETHER_ADDR_LEN], addrhi[ETHER_ADDR_LEN];
    590        1.1   thorpej 	int error;
    591        1.1   thorpej 
    592  1.53.14.2     joerg 	if (sa->sa_len > sizeof(struct sockaddr_storage))
    593        1.5     enami 		return (EINVAL);
    594        1.5     enami 
    595  1.53.14.2     joerg 	error = ether_addmulti(sa, &ifv->ifv_ec);
    596        1.5     enami 	if (error != ENETRESET)
    597        1.5     enami 		return (error);
    598        1.1   thorpej 
    599        1.5     enami 	/*
    600        1.5     enami 	 * This is new multicast address.  We have to tell parent
    601        1.5     enami 	 * about it.  Also, remember this multicast address so that
    602        1.5     enami 	 * we can delete them on unconfigure.
    603        1.5     enami 	 */
    604        1.5     enami 	MALLOC(mc, struct vlan_mc_entry *, sizeof(struct vlan_mc_entry),
    605        1.5     enami 	    M_DEVBUF, M_NOWAIT);
    606        1.5     enami 	if (mc == NULL) {
    607        1.5     enami 		error = ENOMEM;
    608        1.5     enami 		goto alloc_failed;
    609        1.1   thorpej 	}
    610        1.1   thorpej 
    611        1.5     enami 	/*
    612        1.5     enami 	 * As ether_addmulti() returns ENETRESET, following two
    613        1.5     enami 	 * statement shouldn't fail.
    614        1.5     enami 	 */
    615  1.53.14.2     joerg 	(void)ether_multiaddr(sa, addrlo, addrhi);
    616        1.5     enami 	ETHER_LOOKUP_MULTI(addrlo, addrhi, &ifv->ifv_ec, mc->mc_enm);
    617  1.53.14.2     joerg 	memcpy(&mc->mc_addr, sa, sa->sa_len);
    618        1.5     enami 	LIST_INSERT_HEAD(&ifv->ifv_mc_listhead, mc, mc_entries);
    619        1.5     enami 
    620        1.5     enami 	error = (*ifv->ifv_p->if_ioctl)(ifv->ifv_p, SIOCADDMULTI,
    621       1.53  christos 	    (void *)ifr);
    622        1.5     enami 	if (error != 0)
    623        1.5     enami 		goto ioctl_failed;
    624        1.5     enami 	return (error);
    625        1.5     enami 
    626        1.5     enami  ioctl_failed:
    627        1.5     enami 	LIST_REMOVE(mc, mc_entries);
    628        1.5     enami 	FREE(mc, M_DEVBUF);
    629        1.5     enami  alloc_failed:
    630  1.53.14.2     joerg 	(void)ether_delmulti(sa, &ifv->ifv_ec);
    631        1.5     enami 	return (error);
    632        1.5     enami }
    633        1.5     enami 
    634        1.5     enami static int
    635       1.10   thorpej vlan_ether_delmulti(struct ifvlan *ifv, struct ifreq *ifr)
    636        1.5     enami {
    637  1.53.14.2     joerg 	const struct sockaddr *sa = ifreq_getaddr(SIOCDELMULTI, ifr);
    638        1.5     enami 	struct ether_multi *enm;
    639        1.5     enami 	struct vlan_mc_entry *mc;
    640        1.5     enami 	u_int8_t addrlo[ETHER_ADDR_LEN], addrhi[ETHER_ADDR_LEN];
    641        1.5     enami 	int error;
    642        1.5     enami 
    643        1.5     enami 	/*
    644        1.5     enami 	 * Find a key to lookup vlan_mc_entry.  We have to do this
    645        1.5     enami 	 * before calling ether_delmulti for obvious reason.
    646        1.5     enami 	 */
    647  1.53.14.2     joerg 	if ((error = ether_multiaddr(sa, addrlo, addrhi)) != 0)
    648        1.5     enami 		return (error);
    649        1.5     enami 	ETHER_LOOKUP_MULTI(addrlo, addrhi, &ifv->ifv_ec, enm);
    650        1.5     enami 
    651  1.53.14.2     joerg 	error = ether_delmulti(sa, &ifv->ifv_ec);
    652        1.5     enami 	if (error != ENETRESET)
    653        1.5     enami 		return (error);
    654        1.5     enami 
    655        1.5     enami 	/* We no longer use this multicast address.  Tell parent so. */
    656        1.5     enami 	error = (*ifv->ifv_p->if_ioctl)(ifv->ifv_p, SIOCDELMULTI,
    657       1.53  christos 	    (void *)ifr);
    658        1.5     enami 	if (error == 0) {
    659        1.5     enami 		/* And forget about this address. */
    660        1.5     enami 		for (mc = LIST_FIRST(&ifv->ifv_mc_listhead); mc != NULL;
    661        1.5     enami 		    mc = LIST_NEXT(mc, mc_entries)) {
    662        1.5     enami 			if (mc->mc_enm == enm) {
    663        1.5     enami 				LIST_REMOVE(mc, mc_entries);
    664        1.5     enami 				FREE(mc, M_DEVBUF);
    665        1.5     enami 				break;
    666        1.5     enami 			}
    667        1.5     enami 		}
    668        1.5     enami 		KASSERT(mc != NULL);
    669        1.5     enami 	} else
    670  1.53.14.2     joerg 		(void)ether_addmulti(sa, &ifv->ifv_ec);
    671        1.5     enami 	return (error);
    672        1.5     enami }
    673        1.5     enami 
    674        1.5     enami /*
    675       1.34     pooka  * Delete any multicast address we have asked to add from parent
    676        1.5     enami  * interface.  Called when the vlan is being unconfigured.
    677        1.5     enami  */
    678        1.5     enami static void
    679       1.10   thorpej vlan_ether_purgemulti(struct ifvlan *ifv)
    680        1.5     enami {
    681        1.5     enami 	struct ifnet *ifp = ifv->ifv_p;		/* Parent. */
    682        1.5     enami 	struct vlan_mc_entry *mc;
    683        1.5     enami 	union {
    684        1.5     enami 		struct ifreq ifreq;
    685        1.5     enami 		struct {
    686        1.5     enami 			char ifr_name[IFNAMSIZ];
    687       1.18     enami 			struct sockaddr_storage ifr_ss;
    688        1.5     enami 		} ifreq_storage;
    689        1.5     enami 	} ifreq;
    690        1.5     enami 	struct ifreq *ifr = &ifreq.ifreq;
    691        1.5     enami 
    692        1.5     enami 	memcpy(ifr->ifr_name, ifp->if_xname, IFNAMSIZ);
    693        1.5     enami 	while ((mc = LIST_FIRST(&ifv->ifv_mc_listhead)) != NULL) {
    694  1.53.14.2     joerg 		ifreq_setaddr(SIOCDELMULTI, ifr,
    695  1.53.14.2     joerg 		    (const struct sockaddr *)&mc->mc_addr);
    696       1.53  christos 		(void)(*ifp->if_ioctl)(ifp, SIOCDELMULTI, (void *)ifr);
    697        1.5     enami 		LIST_REMOVE(mc, mc_entries);
    698        1.5     enami 		FREE(mc, M_DEVBUF);
    699        1.1   thorpej 	}
    700        1.1   thorpej }
    701        1.1   thorpej 
    702        1.1   thorpej static void
    703        1.1   thorpej vlan_start(struct ifnet *ifp)
    704        1.1   thorpej {
    705       1.14     enami 	struct ifvlan *ifv = ifp->if_softc;
    706       1.14     enami 	struct ifnet *p = ifv->ifv_p;
    707       1.24    bouyer 	struct ethercom *ec = (void *) ifv->ifv_p;
    708        1.1   thorpej 	struct mbuf *m;
    709       1.31   thorpej 	int error;
    710       1.31   thorpej 	ALTQ_DECL(struct altq_pktattr pktattr;)
    711        1.1   thorpej 
    712        1.1   thorpej 	ifp->if_flags |= IFF_OACTIVE;
    713        1.1   thorpej 
    714        1.1   thorpej 	for (;;) {
    715       1.31   thorpej 		IFQ_DEQUEUE(&ifp->if_snd, m);
    716        1.1   thorpej 		if (m == NULL)
    717        1.1   thorpej 			break;
    718        1.1   thorpej 
    719       1.31   thorpej #ifdef ALTQ
    720       1.31   thorpej 		/*
    721       1.31   thorpej 		 * If ALTQ is enabled on the parent interface, do
    722       1.31   thorpej 		 * classification; the queueing discipline might
    723       1.31   thorpej 		 * not require classification, but might require
    724       1.31   thorpej 		 * the address family/header pointer in the pktattr.
    725       1.31   thorpej 		 */
    726       1.31   thorpej 		if (ALTQ_IS_ENABLED(&p->if_snd)) {
    727       1.31   thorpej 			switch (p->if_type) {
    728       1.31   thorpej 			case IFT_ETHER:
    729       1.31   thorpej 				altq_etherclassify(&p->if_snd, m, &pktattr);
    730       1.31   thorpej 				break;
    731       1.31   thorpej #ifdef DIAGNOSTIC
    732       1.31   thorpej 			default:
    733       1.31   thorpej 				panic("vlan_start: impossible (altq)");
    734       1.31   thorpej #endif
    735       1.31   thorpej 			}
    736       1.31   thorpej 		}
    737       1.31   thorpej #endif /* ALTQ */
    738       1.31   thorpej 
    739        1.1   thorpej #if NBPFILTER > 0
    740        1.1   thorpej 		if (ifp->if_bpf)
    741        1.1   thorpej 			bpf_mtap(ifp->if_bpf, m);
    742        1.1   thorpej #endif
    743        1.1   thorpej 		/*
    744       1.24    bouyer 		 * If the parent can insert the tag itself, just mark
    745       1.24    bouyer 		 * the tag in the mbuf header.
    746        1.1   thorpej 		 */
    747       1.24    bouyer 		if (ec->ec_capabilities & ETHERCAP_VLAN_HWTAGGING) {
    748       1.35    itojun 			struct m_tag *mtag;
    749       1.35    itojun 
    750       1.35    itojun 			mtag = m_tag_get(PACKET_TAG_VLAN, sizeof(u_int),
    751       1.35    itojun 			    M_NOWAIT);
    752       1.35    itojun 			if (mtag == NULL) {
    753       1.24    bouyer 				ifp->if_oerrors++;
    754       1.24    bouyer 				m_freem(m);
    755       1.24    bouyer 				continue;
    756       1.24    bouyer 			}
    757       1.35    itojun 			*(u_int *)(mtag + 1) = ifv->ifv_tag;
    758       1.36  drochner 			m_tag_prepend(m, mtag);
    759       1.24    bouyer 		} else {
    760       1.24    bouyer 			/*
    761       1.34     pooka 			 * insert the tag ourselves
    762       1.24    bouyer 			 */
    763       1.24    bouyer 			M_PREPEND(m, ifv->ifv_encaplen, M_DONTWAIT);
    764       1.24    bouyer 			if (m == NULL) {
    765       1.24    bouyer 				printf("%s: unable to prepend encap header",
    766       1.10   thorpej 				    ifv->ifv_p->if_xname);
    767       1.10   thorpej 				ifp->if_oerrors++;
    768       1.10   thorpej 				continue;
    769       1.10   thorpej 			}
    770       1.10   thorpej 
    771       1.24    bouyer 			switch (p->if_type) {
    772       1.24    bouyer 			case IFT_ETHER:
    773       1.24    bouyer 			    {
    774       1.24    bouyer 				struct ether_vlan_header *evl;
    775       1.24    bouyer 
    776       1.24    bouyer 				if (m->m_len < sizeof(struct ether_vlan_header))
    777       1.24    bouyer 					m = m_pullup(m,
    778       1.24    bouyer 					    sizeof(struct ether_vlan_header));
    779       1.24    bouyer 				if (m == NULL) {
    780       1.24    bouyer 					printf("%s: unable to pullup encap "
    781       1.24    bouyer 					    "header", ifv->ifv_p->if_xname);
    782       1.24    bouyer 					ifp->if_oerrors++;
    783       1.24    bouyer 					continue;
    784       1.24    bouyer 				}
    785       1.24    bouyer 
    786       1.24    bouyer 				/*
    787       1.24    bouyer 				 * Transform the Ethernet header into an
    788       1.24    bouyer 				 * Ethernet header with 802.1Q encapsulation.
    789       1.24    bouyer 				 */
    790       1.53  christos 				memmove(mtod(m, void *),
    791       1.53  christos 				    mtod(m, char *) + ifv->ifv_encaplen,
    792       1.24    bouyer 				    sizeof(struct ether_header));
    793       1.24    bouyer 				evl = mtod(m, struct ether_vlan_header *);
    794       1.24    bouyer 				evl->evl_proto = evl->evl_encap_proto;
    795       1.24    bouyer 				evl->evl_encap_proto = htons(ETHERTYPE_VLAN);
    796       1.24    bouyer 				evl->evl_tag = htons(ifv->ifv_tag);
    797       1.38       scw 
    798       1.38       scw 				/*
    799       1.38       scw 				 * To cater for VLAN-aware layer 2 ethernet
    800       1.38       scw 				 * switches which may need to strip the tag
    801       1.38       scw 				 * before forwarding the packet, make sure
    802       1.38       scw 				 * the packet+tag is at least 68 bytes long.
    803       1.38       scw 				 * This is necessary because our parent will
    804       1.38       scw 				 * only pad to 64 bytes (ETHER_MIN_LEN) and
    805       1.38       scw 				 * some switches will not pad by themselves
    806       1.38       scw 				 * after deleting a tag.
    807       1.38       scw 				 */
    808       1.38       scw 				if (m->m_pkthdr.len <
    809       1.38       scw 				    (ETHER_MIN_LEN + ETHER_VLAN_ENCAP_LEN)) {
    810       1.38       scw 					m_copyback(m, m->m_pkthdr.len,
    811       1.38       scw 					    (ETHER_MIN_LEN +
    812       1.38       scw 					     ETHER_VLAN_ENCAP_LEN) -
    813       1.38       scw 					     m->m_pkthdr.len,
    814       1.38       scw 					    vlan_zero_pad_buff);
    815       1.38       scw 				}
    816       1.24    bouyer 				break;
    817       1.24    bouyer 			    }
    818       1.10   thorpej 
    819       1.10   thorpej #ifdef DIAGNOSTIC
    820       1.24    bouyer 			default:
    821       1.24    bouyer 				panic("vlan_start: impossible");
    822       1.10   thorpej #endif
    823       1.24    bouyer 			}
    824        1.1   thorpej 		}
    825        1.1   thorpej 
    826        1.1   thorpej 		/*
    827       1.10   thorpej 		 * Send it, precisely as the parent's output routine
    828       1.34     pooka 		 * would have.  We are already running at splnet.
    829        1.1   thorpej 		 */
    830       1.31   thorpej 		IFQ_ENQUEUE(&p->if_snd, m, &pktattr, error);
    831       1.31   thorpej 		if (error) {
    832       1.31   thorpej 			/* mbuf is already freed */
    833        1.1   thorpej 			ifp->if_oerrors++;
    834        1.1   thorpej 			continue;
    835        1.1   thorpej 		}
    836       1.31   thorpej 
    837       1.23    bouyer 		ifp->if_opackets++;
    838       1.41   mycroft 		if ((p->if_flags & (IFF_RUNNING|IFF_OACTIVE)) == IFF_RUNNING)
    839       1.14     enami 			(*p->if_start)(p);
    840        1.1   thorpej 	}
    841        1.1   thorpej 
    842        1.1   thorpej 	ifp->if_flags &= ~IFF_OACTIVE;
    843        1.1   thorpej }
    844        1.1   thorpej 
    845        1.1   thorpej /*
    846        1.1   thorpej  * Given an Ethernet frame, find a valid vlan interface corresponding to the
    847       1.44     perry  * given source interface and tag, then run the real packet through the
    848       1.40    simonb  * parent's input routine.
    849        1.1   thorpej  */
    850        1.1   thorpej void
    851        1.1   thorpej vlan_input(struct ifnet *ifp, struct mbuf *m)
    852        1.1   thorpej {
    853        1.1   thorpej 	struct ifvlan *ifv;
    854        1.1   thorpej 	u_int tag;
    855       1.35    itojun 	struct m_tag *mtag;
    856       1.24    bouyer 
    857       1.35    itojun 	mtag = m_tag_find(m, PACKET_TAG_VLAN, NULL);
    858       1.35    itojun 	if (mtag != NULL) {
    859       1.35    itojun 		/* m contains a normal ethernet frame, the tag is in mtag */
    860       1.45      yamt 		tag = EVL_VLANOFTAG(*(u_int *)(mtag + 1));
    861       1.35    itojun 		m_tag_delete(m, mtag);
    862       1.24    bouyer 	} else {
    863       1.24    bouyer 		switch (ifp->if_type) {
    864       1.24    bouyer 		case IFT_ETHER:
    865       1.24    bouyer 		    {
    866       1.24    bouyer 			struct ether_vlan_header *evl;
    867       1.24    bouyer 
    868       1.24    bouyer 			if (m->m_len < sizeof(struct ether_vlan_header) &&
    869       1.24    bouyer 			    (m = m_pullup(m,
    870       1.24    bouyer 			     sizeof(struct ether_vlan_header))) == NULL) {
    871       1.24    bouyer 				printf("%s: no memory for VLAN header, "
    872       1.24    bouyer 				    "dropping packet.\n", ifp->if_xname);
    873       1.24    bouyer 				return;
    874       1.24    bouyer 			}
    875       1.24    bouyer 			evl = mtod(m, struct ether_vlan_header *);
    876       1.24    bouyer 			KASSERT(ntohs(evl->evl_encap_proto) == ETHERTYPE_VLAN);
    877       1.24    bouyer 
    878       1.24    bouyer 			tag = EVL_VLANOFTAG(ntohs(evl->evl_tag));
    879        1.1   thorpej 
    880       1.24    bouyer 			/*
    881       1.24    bouyer 			 * Restore the original ethertype.  We'll remove
    882       1.24    bouyer 			 * the encapsulation after we've found the vlan
    883       1.24    bouyer 			 * interface corresponding to the tag.
    884       1.24    bouyer 			 */
    885       1.24    bouyer 			evl->evl_encap_proto = evl->evl_proto;
    886       1.24    bouyer 			break;
    887       1.24    bouyer 		    }
    888       1.10   thorpej 
    889       1.24    bouyer 		default:
    890       1.24    bouyer 			tag = (u_int) -1;	/* XXX GCC */
    891       1.24    bouyer #ifdef DIAGNOSTIC
    892       1.24    bouyer 			panic("vlan_input: impossible");
    893       1.24    bouyer #endif
    894       1.10   thorpej 		}
    895       1.43  christos 	}
    896       1.10   thorpej 
    897       1.43  christos 	for (ifv = LIST_FIRST(&ifv_list); ifv != NULL;
    898       1.43  christos 	    ifv = LIST_NEXT(ifv, ifv_list))
    899       1.43  christos 		if (ifp == ifv->ifv_p && tag == ifv->ifv_tag)
    900       1.43  christos 			break;
    901        1.1   thorpej 
    902       1.10   thorpej 	if (ifv == NULL ||
    903       1.10   thorpej 	    (ifv->ifv_if.if_flags & (IFF_UP|IFF_RUNNING)) !=
    904       1.10   thorpej 	     (IFF_UP|IFF_RUNNING)) {
    905       1.37    itojun 		m_freem(m);
    906       1.14     enami 		ifp->if_noproto++;
    907        1.1   thorpej 		return;
    908        1.1   thorpej 	}
    909       1.43  christos 
    910       1.43  christos 	/*
    911       1.43  christos 	 * Now, remove the encapsulation header.  The original
    912       1.43  christos 	 * header has already been fixed up above.
    913       1.43  christos 	 */
    914       1.43  christos 	if (mtag == NULL) {
    915       1.53  christos 		memmove(mtod(m, char *) + ifv->ifv_encaplen,
    916       1.53  christos 		    mtod(m, void *), sizeof(struct ether_header));
    917       1.43  christos 		m_adj(m, ifv->ifv_encaplen);
    918       1.43  christos 	}
    919       1.43  christos 
    920        1.1   thorpej 	m->m_pkthdr.rcvif = &ifv->ifv_if;
    921        1.1   thorpej 	ifv->ifv_if.if_ipackets++;
    922        1.1   thorpej 
    923        1.1   thorpej #if NBPFILTER > 0
    924        1.1   thorpej 	if (ifv->ifv_if.if_bpf)
    925        1.1   thorpej 		bpf_mtap(ifv->ifv_if.if_bpf, m);
    926        1.1   thorpej #endif
    927        1.1   thorpej 
    928        1.1   thorpej 	/* Pass it back through the parent's input routine. */
    929        1.1   thorpej 	(*ifp->if_input)(&ifv->ifv_if, m);
    930        1.1   thorpej }
    931