2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
1998-03-18 01:40:12 +00:00
|
|
|
* Copyright 1998 Massachusetts Institute of Technology
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software and
|
|
|
|
* its documentation for any purpose and without fee is hereby
|
|
|
|
* granted, provided that both the above copyright notice and this
|
|
|
|
* permission notice appear in all copies, that both the above
|
|
|
|
* copyright notice and this permission notice appear in all
|
|
|
|
* supporting documentation, and that the name of M.I.T. not be used
|
|
|
|
* in advertising or publicity pertaining to distribution of the
|
|
|
|
* software without specific, written prior permission. M.I.T. makes
|
|
|
|
* no representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied
|
|
|
|
* warranty.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS
|
|
|
|
* ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
|
|
|
|
* SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
|
|
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1998-03-18 01:40:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if_vlan.c - pseudo-device driver for IEEE 802.1Q virtual LANs.
|
|
|
|
* Might be extended some day to also handle IEEE 802.1p priority
|
|
|
|
* tagging. This is sort of sneaky in the implementation, since
|
|
|
|
* we need to pretend to be enough of an Ethernet implementation
|
|
|
|
* to make arp work. The way we do this is by telling everyone
|
|
|
|
* that we are an Ethernet, and then catch the packets that
|
2000-03-26 15:24:53 +00:00
|
|
|
* ether_output() left on our output queue when it calls
|
1998-03-18 01:40:12 +00:00
|
|
|
* if_start(), rewrite them for use by the real outgoing interface,
|
|
|
|
* and ask it to send them.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "opt_inet.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
1999-03-15 01:17:26 +00:00
|
|
|
#include <sys/malloc.h>
|
1998-03-18 01:40:12 +00:00
|
|
|
#include <sys/mbuf.h>
|
2001-01-31 07:58:58 +00:00
|
|
|
#include <sys/module.h>
|
1999-03-15 01:17:26 +00:00
|
|
|
#include <sys/queue.h>
|
1998-03-18 01:40:12 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/sockio.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
|
|
|
|
#include <net/bpf.h>
|
|
|
|
#include <net/ethernet.h>
|
|
|
|
#include <net/if.h>
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
#include <net/if_clone.h>
|
1998-03-18 01:40:12 +00:00
|
|
|
#include <net/if_arp.h>
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <net/if_types.h>
|
|
|
|
#include <net/if_vlan_var.h>
|
|
|
|
|
|
|
|
#ifdef INET
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/if_ether.h>
|
|
|
|
#endif
|
|
|
|
|
2001-09-05 21:10:28 +00:00
|
|
|
#define VLANNAME "vlan"
|
|
|
|
|
2002-11-14 23:43:16 +00:00
|
|
|
struct vlan_mc_entry {
|
|
|
|
struct ether_addr mc_addr;
|
|
|
|
SLIST_ENTRY(vlan_mc_entry) mc_entries;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ifvlan {
|
2005-06-10 16:49:24 +00:00
|
|
|
struct ifnet *ifv_ifp;
|
2002-11-14 23:43:16 +00:00
|
|
|
struct ifnet *ifv_p; /* parent inteface of this vlan */
|
2005-10-03 02:24:21 +00:00
|
|
|
int ifv_pflags; /* special flags we have set on parent */
|
2002-11-14 23:43:16 +00:00
|
|
|
struct ifv_linkmib {
|
|
|
|
int ifvm_parent;
|
|
|
|
int ifvm_encaplen; /* encapsulation length */
|
|
|
|
int ifvm_mtufudge; /* MTU fudged by this much */
|
|
|
|
int ifvm_mintu; /* min transmission unit */
|
|
|
|
u_int16_t ifvm_proto; /* encapsulation ethertype */
|
|
|
|
u_int16_t ifvm_tag; /* tag to apply on packets leaving if */
|
|
|
|
} ifv_mib;
|
|
|
|
SLIST_HEAD(__vlan_mchead, vlan_mc_entry) vlan_mc_listhead;
|
|
|
|
LIST_ENTRY(ifvlan) ifv_list;
|
|
|
|
};
|
|
|
|
#define ifv_tag ifv_mib.ifvm_tag
|
|
|
|
#define ifv_encaplen ifv_mib.ifvm_encaplen
|
|
|
|
#define ifv_mtufudge ifv_mib.ifvm_mtufudge
|
|
|
|
#define ifv_mintu ifv_mib.ifvm_mintu
|
|
|
|
|
2005-10-03 02:24:21 +00:00
|
|
|
/* Special flags we should propagate to parent */
|
|
|
|
static struct {
|
|
|
|
int flag;
|
|
|
|
int (*func)(struct ifnet *, int);
|
|
|
|
} vlan_pflags[] = {
|
|
|
|
{IFF_PROMISC, ifpromisc},
|
|
|
|
{IFF_ALLMULTI, if_allmulti},
|
|
|
|
{0, NULL}
|
|
|
|
};
|
2002-11-14 23:43:16 +00:00
|
|
|
|
1999-04-07 23:26:43 +00:00
|
|
|
SYSCTL_DECL(_net_link);
|
2001-07-24 00:03:51 +00:00
|
|
|
SYSCTL_NODE(_net_link, IFT_L2VLAN, vlan, CTLFLAG_RW, 0, "IEEE 802.1Q VLAN");
|
1998-03-18 01:40:12 +00:00
|
|
|
SYSCTL_NODE(_net_link_vlan, PF_LINK, link, CTLFLAG_RW, 0, "for consistency");
|
|
|
|
|
2003-10-28 20:58:02 +00:00
|
|
|
static MALLOC_DEFINE(M_VLAN, VLANNAME, "802.1Q Virtual LAN Interface");
|
2001-09-05 21:10:28 +00:00
|
|
|
static LIST_HEAD(, ifvlan) ifv_list;
|
1998-03-18 01:40:12 +00:00
|
|
|
|
2003-09-05 20:58:59 +00:00
|
|
|
/*
|
|
|
|
* Locking: one lock is used to guard both the ifv_list and modification
|
|
|
|
* to vlan data structures. We are rather conservative here; probably
|
|
|
|
* more than necessary.
|
|
|
|
*/
|
|
|
|
static struct mtx ifv_mtx;
|
2003-10-28 20:58:02 +00:00
|
|
|
#define VLAN_LOCK_INIT() mtx_init(&ifv_mtx, VLANNAME, NULL, MTX_DEF)
|
2003-09-05 20:58:59 +00:00
|
|
|
#define VLAN_LOCK_DESTROY() mtx_destroy(&ifv_mtx)
|
|
|
|
#define VLAN_LOCK_ASSERT() mtx_assert(&ifv_mtx, MA_OWNED)
|
|
|
|
#define VLAN_LOCK() mtx_lock(&ifv_mtx)
|
|
|
|
#define VLAN_UNLOCK() mtx_unlock(&ifv_mtx)
|
|
|
|
|
1998-03-18 01:40:12 +00:00
|
|
|
static void vlan_start(struct ifnet *ifp);
|
|
|
|
static void vlan_ifinit(void *foo);
|
2002-11-14 23:43:16 +00:00
|
|
|
static void vlan_input(struct ifnet *ifp, struct mbuf *m);
|
1998-08-23 03:07:17 +00:00
|
|
|
static int vlan_ioctl(struct ifnet *ifp, u_long cmd, caddr_t addr);
|
2005-10-03 02:24:21 +00:00
|
|
|
static int vlan_setflag(struct ifnet *ifp, int flag, int status,
|
|
|
|
int (*func)(struct ifnet *, int));
|
|
|
|
static int vlan_setflags(struct ifnet *ifp, int status);
|
1999-03-15 01:17:26 +00:00
|
|
|
static int vlan_setmulti(struct ifnet *ifp);
|
|
|
|
static int vlan_unconfig(struct ifnet *ifp);
|
|
|
|
static int vlan_config(struct ifvlan *ifv, struct ifnet *p);
|
2004-05-03 13:48:35 +00:00
|
|
|
static void vlan_link_state(struct ifnet *ifp, int link);
|
1999-03-15 01:17:26 +00:00
|
|
|
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
static struct ifnet *vlan_clone_match_ethertag(struct if_clone *,
|
|
|
|
const char *, int *);
|
|
|
|
static int vlan_clone_match(struct if_clone *, const char *);
|
|
|
|
static int vlan_clone_create(struct if_clone *, char *, size_t);
|
|
|
|
static int vlan_clone_destroy(struct if_clone *, struct ifnet *);
|
|
|
|
|
2005-01-23 23:10:33 +00:00
|
|
|
static struct if_clone vlan_cloner = IFC_CLONE_INITIALIZER(VLANNAME, NULL,
|
|
|
|
IF_MAXUNIT, NULL, vlan_clone_match, vlan_clone_create, vlan_clone_destroy);
|
2001-09-05 21:10:28 +00:00
|
|
|
|
1999-03-15 01:17:26 +00:00
|
|
|
/*
|
|
|
|
* Program our multicast filter. What we're actually doing is
|
|
|
|
* programming the multicast filter of the parent. This has the
|
|
|
|
* side effect of causing the parent interface to receive multicast
|
|
|
|
* traffic that it doesn't really want, which ends up being discarded
|
|
|
|
* later by the upper protocol layers. Unfortunately, there's no way
|
|
|
|
* to avoid this: there really is only one physical interface.
|
2004-07-04 18:32:54 +00:00
|
|
|
*
|
|
|
|
* XXX: There is a possible race here if more than one thread is
|
|
|
|
* modifying the multicast state of the vlan interface at the same time.
|
1999-03-15 01:17:26 +00:00
|
|
|
*/
|
2001-01-31 07:58:58 +00:00
|
|
|
static int
|
|
|
|
vlan_setmulti(struct ifnet *ifp)
|
1999-03-15 01:17:26 +00:00
|
|
|
{
|
|
|
|
struct ifnet *ifp_p;
|
|
|
|
struct ifmultiaddr *ifma, *rifma = NULL;
|
|
|
|
struct ifvlan *sc;
|
|
|
|
struct vlan_mc_entry *mc = NULL;
|
|
|
|
struct sockaddr_dl sdl;
|
|
|
|
int error;
|
|
|
|
|
2004-07-04 18:32:54 +00:00
|
|
|
/*VLAN_LOCK_ASSERT();*/
|
|
|
|
|
1999-03-15 01:17:26 +00:00
|
|
|
/* Find the parent. */
|
|
|
|
sc = ifp->if_softc;
|
|
|
|
ifp_p = sc->ifv_p;
|
|
|
|
|
2001-07-24 17:14:37 +00:00
|
|
|
/*
|
|
|
|
* If we don't have a parent, just remember the membership for
|
|
|
|
* when we do.
|
|
|
|
*/
|
|
|
|
if (ifp_p == NULL)
|
2004-07-04 16:43:24 +00:00
|
|
|
return (0);
|
2001-07-24 17:14:37 +00:00
|
|
|
|
2004-07-04 16:43:24 +00:00
|
|
|
bzero((char *)&sdl, sizeof(sdl));
|
|
|
|
sdl.sdl_len = sizeof(sdl);
|
1999-03-15 01:17:26 +00:00
|
|
|
sdl.sdl_family = AF_LINK;
|
2001-05-02 16:12:58 +00:00
|
|
|
sdl.sdl_index = ifp_p->if_index;
|
|
|
|
sdl.sdl_type = IFT_ETHER;
|
2001-03-28 15:52:12 +00:00
|
|
|
sdl.sdl_alen = ETHER_ADDR_LEN;
|
1999-03-15 01:17:26 +00:00
|
|
|
|
|
|
|
/* First, remove any existing filter entries. */
|
2004-07-04 16:43:24 +00:00
|
|
|
while (SLIST_FIRST(&sc->vlan_mc_listhead) != NULL) {
|
2001-02-03 11:46:35 +00:00
|
|
|
mc = SLIST_FIRST(&sc->vlan_mc_listhead);
|
1999-03-15 01:17:26 +00:00
|
|
|
bcopy((char *)&mc->mc_addr, LLADDR(&sdl), ETHER_ADDR_LEN);
|
|
|
|
error = if_delmulti(ifp_p, (struct sockaddr *)&sdl);
|
|
|
|
if (error)
|
2004-07-04 16:43:24 +00:00
|
|
|
return (error);
|
1999-03-15 01:17:26 +00:00
|
|
|
SLIST_REMOVE_HEAD(&sc->vlan_mc_listhead, mc_entries);
|
2001-09-05 21:10:28 +00:00
|
|
|
free(mc, M_VLAN);
|
1999-03-15 01:17:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Now program new ones. */
|
2001-02-06 10:12:15 +00:00
|
|
|
TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
|
1999-03-15 01:17:26 +00:00
|
|
|
if (ifma->ifma_addr->sa_family != AF_LINK)
|
|
|
|
continue;
|
2004-07-04 18:32:54 +00:00
|
|
|
mc = malloc(sizeof(struct vlan_mc_entry), M_VLAN, M_NOWAIT);
|
|
|
|
if (mc == NULL)
|
|
|
|
return (ENOMEM);
|
1999-03-15 01:17:26 +00:00
|
|
|
bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
|
|
|
|
(char *)&mc->mc_addr, ETHER_ADDR_LEN);
|
|
|
|
SLIST_INSERT_HEAD(&sc->vlan_mc_listhead, mc, mc_entries);
|
2001-05-02 16:12:58 +00:00
|
|
|
bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
|
|
|
|
LLADDR(&sdl), ETHER_ADDR_LEN);
|
1999-03-15 01:17:26 +00:00
|
|
|
error = if_addmulti(ifp_p, (struct sockaddr *)&sdl, &rifma);
|
|
|
|
if (error)
|
2004-07-04 16:43:24 +00:00
|
|
|
return (error);
|
1999-03-15 01:17:26 +00:00
|
|
|
}
|
|
|
|
|
2004-07-04 16:43:24 +00:00
|
|
|
return (0);
|
1999-03-15 01:17:26 +00:00
|
|
|
}
|
1998-03-18 01:40:12 +00:00
|
|
|
|
2002-11-14 23:43:16 +00:00
|
|
|
/*
|
|
|
|
* VLAN support can be loaded as a module. The only place in the
|
|
|
|
* system that's intimately aware of this is ether_input. We hook
|
|
|
|
* into this code through vlan_input_p which is defined there and
|
|
|
|
* set here. Noone else in the system should be aware of this so
|
|
|
|
* we use an explicit reference here.
|
|
|
|
*
|
|
|
|
* NB: Noone should ever need to check if vlan_input_p is null or
|
|
|
|
* not. This is because interfaces have a count of the number
|
|
|
|
* of active vlans (if_nvlans) and this should never be bumped
|
|
|
|
* except by vlan_config--which is in this module so therefore
|
|
|
|
* the module must be loaded and vlan_input_p must be non-NULL.
|
|
|
|
*/
|
|
|
|
extern void (*vlan_input_p)(struct ifnet *, struct mbuf *);
|
|
|
|
|
2005-04-20 12:16:41 +00:00
|
|
|
/* For if_link_state_change() eyes only... */
|
2004-05-03 13:48:35 +00:00
|
|
|
extern void (*vlan_link_state_p)(struct ifnet *, int);
|
|
|
|
|
2001-01-31 07:58:58 +00:00
|
|
|
static int
|
2004-07-04 16:43:24 +00:00
|
|
|
vlan_modevent(module_t mod, int type, void *data)
|
|
|
|
{
|
2001-09-05 21:10:28 +00:00
|
|
|
|
2004-07-04 16:43:24 +00:00
|
|
|
switch (type) {
|
|
|
|
case MOD_LOAD:
|
2001-09-05 21:10:28 +00:00
|
|
|
LIST_INIT(&ifv_list);
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK_INIT();
|
2001-09-05 21:10:28 +00:00
|
|
|
vlan_input_p = vlan_input;
|
2004-05-03 13:48:35 +00:00
|
|
|
vlan_link_state_p = vlan_link_state;
|
2001-09-05 21:10:28 +00:00
|
|
|
if_clone_attach(&vlan_cloner);
|
2004-07-04 16:43:24 +00:00
|
|
|
break;
|
|
|
|
case MOD_UNLOAD:
|
2001-09-05 21:10:28 +00:00
|
|
|
if_clone_detach(&vlan_cloner);
|
|
|
|
vlan_input_p = NULL;
|
2004-05-03 13:48:35 +00:00
|
|
|
vlan_link_state_p = NULL;
|
2001-09-05 21:10:28 +00:00
|
|
|
while (!LIST_EMPTY(&ifv_list))
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
vlan_clone_destroy(&vlan_cloner,
|
2005-06-10 16:49:24 +00:00
|
|
|
LIST_FIRST(&ifv_list)->ifv_ifp);
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK_DESTROY();
|
2001-09-05 21:10:28 +00:00
|
|
|
break;
|
2004-07-15 08:26:07 +00:00
|
|
|
default:
|
|
|
|
return (EOPNOTSUPP);
|
2004-07-04 16:43:24 +00:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
2001-01-31 07:58:58 +00:00
|
|
|
|
2004-07-04 16:43:24 +00:00
|
|
|
static moduledata_t vlan_mod = {
|
|
|
|
"if_vlan",
|
|
|
|
vlan_modevent,
|
2001-01-31 07:58:58 +00:00
|
|
|
0
|
2004-07-04 16:43:24 +00:00
|
|
|
};
|
2001-01-31 07:58:58 +00:00
|
|
|
|
|
|
|
DECLARE_MODULE(if_vlan, vlan_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
|
2004-05-21 08:43:38 +00:00
|
|
|
MODULE_DEPEND(if_vlan, miibus, 1, 1, 1);
|
1998-03-18 01:40:12 +00:00
|
|
|
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
static struct ifnet *
|
|
|
|
vlan_clone_match_ethertag(struct if_clone *ifc, const char *name, int *tag)
|
|
|
|
{
|
|
|
|
const char *cp;
|
|
|
|
struct ifnet *ifp;
|
2004-07-04 16:43:24 +00:00
|
|
|
int t = 0;
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
|
|
|
|
/* Check for <etherif>.<vlan> style interface names. */
|
|
|
|
IFNET_RLOCK();
|
|
|
|
TAILQ_FOREACH(ifp, &ifnet, if_link) {
|
|
|
|
if (ifp->if_type != IFT_ETHER)
|
|
|
|
continue;
|
|
|
|
if (strncmp(ifp->if_xname, name, strlen(ifp->if_xname)) != 0)
|
|
|
|
continue;
|
|
|
|
cp = name + strlen(ifp->if_xname);
|
|
|
|
if (*cp != '.')
|
|
|
|
continue;
|
|
|
|
for(; *cp != '\0'; cp++) {
|
|
|
|
if (*cp < '0' || *cp > '9')
|
|
|
|
continue;
|
|
|
|
t = (t * 10) + (*cp - '0');
|
|
|
|
}
|
|
|
|
if (tag != NULL)
|
|
|
|
*tag = t;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
IFNET_RUNLOCK();
|
|
|
|
|
2004-07-04 16:43:24 +00:00
|
|
|
return (ifp);
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
}
|
|
|
|
|
2001-09-05 21:10:28 +00:00
|
|
|
static int
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
vlan_clone_match(struct if_clone *ifc, const char *name)
|
2001-09-05 21:10:28 +00:00
|
|
|
{
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
const char *cp;
|
|
|
|
|
|
|
|
if (vlan_clone_match_ethertag(ifc, name, NULL) != NULL)
|
|
|
|
return (1);
|
|
|
|
|
|
|
|
if (strncmp(VLANNAME, name, strlen(VLANNAME)) != 0)
|
|
|
|
return (0);
|
|
|
|
for (cp = name + 4; *cp != '\0'; cp++) {
|
|
|
|
if (*cp < '0' || *cp > '9')
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
vlan_clone_create(struct if_clone *ifc, char *name, size_t len)
|
|
|
|
{
|
|
|
|
char *dp;
|
|
|
|
int wildcard;
|
|
|
|
int unit;
|
|
|
|
int error;
|
|
|
|
int tag;
|
|
|
|
int ethertag;
|
2001-09-05 21:10:28 +00:00
|
|
|
struct ifvlan *ifv;
|
|
|
|
struct ifnet *ifp;
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
struct ifnet *p;
|
2005-06-10 16:49:24 +00:00
|
|
|
u_char eaddr[6] = {0,0,0,0,0,0};
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
|
|
|
|
if ((p = vlan_clone_match_ethertag(ifc, name, &tag)) != NULL) {
|
|
|
|
ethertag = 1;
|
|
|
|
unit = -1;
|
|
|
|
wildcard = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't let the caller set up a VLAN tag with
|
|
|
|
* anything except VLID bits.
|
|
|
|
*/
|
2004-07-04 16:43:24 +00:00
|
|
|
if (tag & ~EVL_VLID_MASK)
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
return (EINVAL);
|
|
|
|
} else {
|
|
|
|
ethertag = 0;
|
|
|
|
|
|
|
|
error = ifc_name2unit(name, &unit);
|
|
|
|
if (error != 0)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
wildcard = (unit < 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
error = ifc_alloc_unit(ifc, &unit);
|
|
|
|
if (error != 0)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
/* In the wildcard case, we need to update the name. */
|
|
|
|
if (wildcard) {
|
|
|
|
for (dp = name; *dp != '\0'; dp++);
|
|
|
|
if (snprintf(dp, len - (dp-name), "%d", unit) >
|
|
|
|
len - (dp-name) - 1) {
|
|
|
|
panic("%s: interface name too long", __func__);
|
|
|
|
}
|
|
|
|
}
|
2001-09-05 21:10:28 +00:00
|
|
|
|
2003-02-19 05:47:46 +00:00
|
|
|
ifv = malloc(sizeof(struct ifvlan), M_VLAN, M_WAITOK | M_ZERO);
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = ifv->ifv_ifp = if_alloc(IFT_ETHER);
|
|
|
|
if (ifp == NULL) {
|
|
|
|
ifc_free_unit(ifc, unit);
|
|
|
|
free(ifv, M_VLAN);
|
|
|
|
return (ENOSPC);
|
|
|
|
}
|
2001-09-05 21:10:28 +00:00
|
|
|
SLIST_INIT(&ifv->vlan_mc_listhead);
|
|
|
|
|
|
|
|
ifp->if_softc = ifv;
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
/*
|
2005-01-24 15:48:00 +00:00
|
|
|
* Set the name manually rather than using if_initname because
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
* we don't conform to the default naming convention for interfaces.
|
|
|
|
*/
|
|
|
|
strlcpy(ifp->if_xname, name, IFNAMSIZ);
|
|
|
|
ifp->if_dname = ifc->ifc_name;
|
|
|
|
ifp->if_dunit = unit;
|
2001-09-05 21:10:28 +00:00
|
|
|
/* NB: flags are not set here */
|
|
|
|
ifp->if_linkmib = &ifv->ifv_mib;
|
2004-07-04 16:43:24 +00:00
|
|
|
ifp->if_linkmiblen = sizeof(ifv->ifv_mib);
|
2001-09-05 21:10:28 +00:00
|
|
|
/* NB: mtu is not set here */
|
|
|
|
|
|
|
|
ifp->if_init = vlan_ifinit;
|
|
|
|
ifp->if_start = vlan_start;
|
|
|
|
ifp->if_ioctl = vlan_ioctl;
|
|
|
|
ifp->if_snd.ifq_maxlen = ifqmaxlen;
|
2005-06-10 16:49:24 +00:00
|
|
|
ether_ifattach(ifp, eaddr);
|
2001-09-05 21:10:28 +00:00
|
|
|
/* Now undo some of the damage... */
|
2001-10-15 19:21:01 +00:00
|
|
|
ifp->if_baudrate = 0;
|
2002-11-14 23:43:16 +00:00
|
|
|
ifp->if_type = IFT_L2VLAN;
|
|
|
|
ifp->if_hdrlen = ETHER_VLAN_ENCAP_LEN;
|
2001-09-05 21:10:28 +00:00
|
|
|
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK();
|
|
|
|
LIST_INSERT_HEAD(&ifv_list, ifv, ifv_list);
|
|
|
|
VLAN_UNLOCK();
|
|
|
|
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
if (ethertag) {
|
|
|
|
VLAN_LOCK();
|
|
|
|
error = vlan_config(ifv, p);
|
|
|
|
if (error != 0) {
|
|
|
|
/*
|
|
|
|
* Since we've partialy failed, we need to back
|
|
|
|
* out all the way, otherwise userland could get
|
|
|
|
* confused. Thus, we destroy the interface.
|
|
|
|
*/
|
|
|
|
LIST_REMOVE(ifv, ifv_list);
|
|
|
|
vlan_unconfig(ifp);
|
|
|
|
VLAN_UNLOCK();
|
|
|
|
ether_ifdetach(ifp);
|
2005-06-10 16:49:24 +00:00
|
|
|
if_free_type(ifp, IFT_ETHER);
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
free(ifv, M_VLAN);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
ifv->ifv_tag = tag;
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags |= IFF_DRV_RUNNING;
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
VLAN_UNLOCK();
|
|
|
|
|
2005-10-03 02:24:21 +00:00
|
|
|
/* Update flags on the parent, if necessary. */
|
|
|
|
vlan_setflags(ifp, 1);
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
}
|
|
|
|
|
2001-09-05 21:10:28 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
static int
|
|
|
|
vlan_clone_destroy(struct if_clone *ifc, struct ifnet *ifp)
|
2001-09-05 21:10:28 +00:00
|
|
|
{
|
2004-07-22 22:50:15 +00:00
|
|
|
int unit;
|
2001-09-05 21:10:28 +00:00
|
|
|
struct ifvlan *ifv = ifp->if_softc;
|
|
|
|
|
2004-07-22 22:50:15 +00:00
|
|
|
unit = ifp->if_dunit;
|
|
|
|
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK();
|
2001-09-05 21:10:28 +00:00
|
|
|
LIST_REMOVE(ifv, ifv_list);
|
|
|
|
vlan_unconfig(ifp);
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_UNLOCK();
|
2001-09-05 21:10:28 +00:00
|
|
|
|
2002-11-14 23:43:16 +00:00
|
|
|
ether_ifdetach(ifp);
|
2005-08-15 20:27:34 +00:00
|
|
|
if_free_type(ifp, IFT_ETHER);
|
2001-09-05 21:10:28 +00:00
|
|
|
|
|
|
|
free(ifv, M_VLAN);
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
|
2004-07-22 22:50:15 +00:00
|
|
|
ifc_free_unit(ifc, unit);
|
|
|
|
|
Major overhaul of pseudo-interface cloning. Highlights include:
- Split the code out into if_clone.[ch].
- Locked struct if_clone. [1]
- Add a per-cloner match function rather then simply matching names of
the form <name><unit> and <name>.
- Use the match function to allow creation of <interface>.<tag>
vlan interfaces. The old way is preserved unchanged!
- Also the match function to allow creation of stf(4) interfaces named
stf0, stf, or 6to4. This is the only major user visible change in
that "ifconfig stf" creates the interface stf rather then stf0 and
does not print "stf0" to stdout.
- Allow destroy functions to fail so they can refuse to delete
interfaces. Currently, we forbid the deletion of interfaces which
were created in the init function, particularly lo0, pflog0, and
pfsync0. In the case of lo0 this was a panic implementation so it
does not count as a user visiable change. :-)
- Since most interfaces do not need the new functionality, an family of
wrapper functions, ifc_simple_*(), were created to wrap old style
cloner functions.
- The IF_CLONE_INITIALIZER macro is replaced with a new incompatible
IFC_CLONE_INITIALIZER and ifc_simple consumers use IFC_SIMPLE_DECLARE
instead.
Submitted by: Maurycy Pawlowski-Wieronski <maurycy at fouk.org> [1]
Reviewed by: andre, mlaier
Discussed on: net
2004-06-22 20:13:25 +00:00
|
|
|
return (0);
|
2001-09-05 21:10:28 +00:00
|
|
|
}
|
|
|
|
|
2004-07-04 16:43:24 +00:00
|
|
|
/*
|
|
|
|
* The ifp->if_init entry point for vlan(4) is a no-op.
|
|
|
|
*/
|
1998-03-18 01:40:12 +00:00
|
|
|
static void
|
|
|
|
vlan_ifinit(void *foo)
|
|
|
|
{
|
2004-07-04 16:43:24 +00:00
|
|
|
|
1998-03-18 01:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vlan_start(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
struct ifvlan *ifv;
|
|
|
|
struct ifnet *p;
|
|
|
|
struct ether_vlan_header *evl;
|
2000-02-07 06:18:38 +00:00
|
|
|
struct mbuf *m;
|
2004-06-15 23:57:42 +00:00
|
|
|
int error;
|
1998-03-18 01:40:12 +00:00
|
|
|
|
|
|
|
ifv = ifp->if_softc;
|
|
|
|
p = ifv->ifv_p;
|
|
|
|
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags |= IFF_DRV_OACTIVE;
|
1998-03-18 01:40:12 +00:00
|
|
|
for (;;) {
|
|
|
|
IF_DEQUEUE(&ifp->if_snd, m);
|
|
|
|
if (m == 0)
|
|
|
|
break;
|
2002-11-14 23:43:16 +00:00
|
|
|
BPF_MTAP(ifp, m);
|
1998-03-18 01:40:12 +00:00
|
|
|
|
2001-03-28 15:52:12 +00:00
|
|
|
/*
|
|
|
|
* Do not run parent's if_start() if the parent is not up,
|
|
|
|
* or parent's driver will cause a system crash.
|
|
|
|
*/
|
2005-08-09 10:20:02 +00:00
|
|
|
if (!((p->if_flags & IFF_UP) &&
|
|
|
|
(p->if_drv_flags & IFF_DRV_RUNNING))) {
|
2001-03-28 15:52:12 +00:00
|
|
|
m_freem(m);
|
2002-11-14 23:43:16 +00:00
|
|
|
ifp->if_collisions++;
|
2001-03-28 15:52:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1998-03-18 01:40:12 +00:00
|
|
|
/*
|
2002-11-14 23:43:16 +00:00
|
|
|
* If underlying interface can do VLAN tag insertion itself,
|
|
|
|
* just pass the packet along. However, we need some way to
|
|
|
|
* tell the interface where the packet came from so that it
|
|
|
|
* knows how to find the VLAN tag to use, so we attach a
|
|
|
|
* packet tag that holds it.
|
1998-03-18 01:40:12 +00:00
|
|
|
*/
|
2004-05-23 22:32:15 +00:00
|
|
|
if (p->if_capenable & IFCAP_VLAN_HWTAGGING) {
|
2004-01-03 03:33:39 +00:00
|
|
|
struct m_tag *mtag = m_tag_alloc(MTAG_VLAN,
|
|
|
|
MTAG_VLAN_TAG,
|
2004-07-04 16:43:24 +00:00
|
|
|
sizeof(u_int),
|
2004-01-03 03:33:39 +00:00
|
|
|
M_NOWAIT);
|
2002-11-14 23:43:16 +00:00
|
|
|
if (mtag == NULL) {
|
|
|
|
ifp->if_oerrors++;
|
|
|
|
m_freem(m);
|
|
|
|
continue;
|
|
|
|
}
|
2005-08-31 11:36:50 +00:00
|
|
|
VLAN_TAG_VALUE(mtag) = ifv->ifv_tag;
|
2002-11-14 23:43:16 +00:00
|
|
|
m_tag_prepend(m, mtag);
|
2005-08-30 14:14:08 +00:00
|
|
|
m->m_flags |= M_VLANTAG;
|
1999-03-15 01:17:26 +00:00
|
|
|
} else {
|
2003-02-19 05:47:46 +00:00
|
|
|
M_PREPEND(m, ifv->ifv_encaplen, M_DONTWAIT);
|
2000-02-03 07:44:39 +00:00
|
|
|
if (m == NULL) {
|
2004-05-26 11:41:26 +00:00
|
|
|
if_printf(ifp,
|
|
|
|
"unable to prepend VLAN header\n");
|
2003-11-12 12:58:19 +00:00
|
|
|
ifp->if_oerrors++;
|
1999-03-15 01:17:26 +00:00
|
|
|
continue;
|
2000-02-03 07:44:39 +00:00
|
|
|
}
|
1999-03-15 01:17:26 +00:00
|
|
|
/* M_PREPEND takes care of m_len, m_pkthdr.len for us */
|
|
|
|
|
2002-11-14 23:43:16 +00:00
|
|
|
if (m->m_len < sizeof(*evl)) {
|
|
|
|
m = m_pullup(m, sizeof(*evl));
|
|
|
|
if (m == NULL) {
|
|
|
|
if_printf(ifp,
|
2004-05-26 11:41:26 +00:00
|
|
|
"cannot pullup VLAN header\n");
|
2003-11-12 12:58:19 +00:00
|
|
|
ifp->if_oerrors++;
|
2002-11-14 23:43:16 +00:00
|
|
|
continue;
|
|
|
|
}
|
2000-02-03 07:44:39 +00:00
|
|
|
}
|
|
|
|
|
1999-03-15 01:17:26 +00:00
|
|
|
/*
|
|
|
|
* Transform the Ethernet header into an Ethernet header
|
|
|
|
* with 802.1Q encapsulation.
|
|
|
|
*/
|
2002-11-14 23:43:16 +00:00
|
|
|
bcopy(mtod(m, char *) + ifv->ifv_encaplen,
|
2003-03-03 05:04:57 +00:00
|
|
|
mtod(m, char *), ETHER_HDR_LEN);
|
1999-03-15 01:17:26 +00:00
|
|
|
evl = mtod(m, struct ether_vlan_header *);
|
|
|
|
evl->evl_proto = evl->evl_encap_proto;
|
2001-09-05 21:10:28 +00:00
|
|
|
evl->evl_encap_proto = htons(ETHERTYPE_VLAN);
|
1999-03-15 01:17:26 +00:00
|
|
|
evl->evl_tag = htons(ifv->ifv_tag);
|
|
|
|
#ifdef DEBUG
|
2005-09-16 20:38:33 +00:00
|
|
|
printf("%s: %*D\n", __func__, (int)sizeof(*evl),
|
|
|
|
(unsigned char *)evl, ":");
|
1999-03-15 01:17:26 +00:00
|
|
|
#endif
|
|
|
|
}
|
1998-03-18 01:40:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Send it, precisely as ether_output() would have.
|
|
|
|
* We are already running at splimp.
|
|
|
|
*/
|
2004-06-15 23:57:42 +00:00
|
|
|
IFQ_HANDOFF(p, m, error);
|
|
|
|
if (!error)
|
1999-03-15 01:17:26 +00:00
|
|
|
ifp->if_opackets++;
|
Lock down the network interface queues. The queue mutex must be obtained
before adding/removing packets from the queue. Also, the if_obytes and
if_omcasts fields should only be manipulated under protection of the mutex.
IF_ENQUEUE, IF_PREPEND, and IF_DEQUEUE perform all necessary locking on
the queue. An IF_LOCK macro is provided, as well as the old (mutex-less)
versions of the macros in the form _IF_ENQUEUE, _IF_QFULL, for code which
needs them, but their use is discouraged.
Two new macros are introduced: IF_DRAIN() to drain a queue, and IF_HANDOFF,
which takes care of locking/enqueue, and also statistics updating/start
if necessary.
2000-11-25 07:35:38 +00:00
|
|
|
else
|
|
|
|
ifp->if_oerrors++;
|
1998-03-18 01:40:12 +00:00
|
|
|
}
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
|
1999-03-15 01:17:26 +00:00
|
|
|
}
|
|
|
|
|
2002-11-14 23:43:16 +00:00
|
|
|
static void
|
|
|
|
vlan_input(struct ifnet *ifp, struct mbuf *m)
|
1999-03-15 01:17:26 +00:00
|
|
|
{
|
2002-11-14 23:43:16 +00:00
|
|
|
struct ether_vlan_header *evl;
|
1999-03-15 01:17:26 +00:00
|
|
|
struct ifvlan *ifv;
|
2002-11-14 23:43:16 +00:00
|
|
|
struct m_tag *mtag;
|
|
|
|
u_int tag;
|
1999-03-15 01:17:26 +00:00
|
|
|
|
2005-09-16 11:44:43 +00:00
|
|
|
if (m->m_flags & M_VLANTAG) {
|
2002-11-14 23:43:16 +00:00
|
|
|
/*
|
2005-09-16 11:58:58 +00:00
|
|
|
* Packet is tagged, but m contains a normal
|
2002-11-14 23:43:16 +00:00
|
|
|
* Ethernet frame; the tag is stored out-of-band.
|
|
|
|
*/
|
2005-09-16 11:44:43 +00:00
|
|
|
mtag = m_tag_locate(m, MTAG_VLAN, MTAG_VLAN_TAG, NULL);
|
|
|
|
KASSERT(mtag != NULL,
|
|
|
|
("%s: M_VLANTAG without m_tag", __func__));
|
2003-11-12 12:58:19 +00:00
|
|
|
tag = EVL_VLANOFTAG(VLAN_TAG_VALUE(mtag));
|
2002-11-14 23:43:16 +00:00
|
|
|
m_tag_delete(m, mtag);
|
2005-02-18 22:31:19 +00:00
|
|
|
m->m_flags &= ~M_VLANTAG;
|
2002-11-14 23:43:16 +00:00
|
|
|
} else {
|
2005-09-16 11:58:58 +00:00
|
|
|
/*
|
|
|
|
* Packet is tagged in-band as specified by 802.1q.
|
|
|
|
*/
|
2005-09-16 11:44:43 +00:00
|
|
|
mtag = NULL;
|
2002-11-14 23:43:16 +00:00
|
|
|
switch (ifp->if_type) {
|
|
|
|
case IFT_ETHER:
|
2004-07-04 16:43:24 +00:00
|
|
|
if (m->m_len < sizeof(*evl) &&
|
|
|
|
(m = m_pullup(m, sizeof(*evl))) == NULL) {
|
2002-11-14 23:43:16 +00:00
|
|
|
if_printf(ifp, "cannot pullup VLAN header\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
evl = mtod(m, struct ether_vlan_header *);
|
|
|
|
KASSERT(ntohs(evl->evl_encap_proto) == ETHERTYPE_VLAN,
|
2005-09-16 12:24:28 +00:00
|
|
|
("%s: bad encapsulation protocol (%u)",
|
|
|
|
__func__, ntohs(evl->evl_encap_proto)));
|
2002-02-26 02:19:33 +00:00
|
|
|
|
2003-07-08 21:54:20 +00:00
|
|
|
tag = EVL_VLANOFTAG(ntohs(evl->evl_tag));
|
1999-03-15 01:17:26 +00:00
|
|
|
|
2002-11-14 23:43:16 +00:00
|
|
|
/*
|
|
|
|
* Restore the original ethertype. We'll remove
|
|
|
|
* the encapsulation after we've found the vlan
|
|
|
|
* interface corresponding to the tag.
|
|
|
|
*/
|
|
|
|
evl->evl_encap_proto = evl->evl_proto;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tag = (u_int) -1;
|
2005-09-16 12:24:28 +00:00
|
|
|
#ifdef INVARIANTS
|
|
|
|
panic("%s: unsupported if_type (%u)",
|
|
|
|
__func__, ifp->if_type);
|
2002-11-14 23:43:16 +00:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
1999-03-15 01:17:26 +00:00
|
|
|
}
|
|
|
|
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK();
|
|
|
|
LIST_FOREACH(ifv, &ifv_list, ifv_list)
|
2002-11-14 23:43:16 +00:00
|
|
|
if (ifp == ifv->ifv_p && tag == ifv->ifv_tag)
|
1998-03-18 01:40:12 +00:00
|
|
|
break;
|
|
|
|
|
2005-06-10 16:49:24 +00:00
|
|
|
if (ifv == NULL || (ifv->ifv_ifp->if_flags & IFF_UP) == 0) {
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_UNLOCK();
|
1998-03-18 01:40:12 +00:00
|
|
|
m_freem(m);
|
2002-11-14 23:43:16 +00:00
|
|
|
ifp->if_noproto++;
|
2004-06-24 12:32:41 +00:00
|
|
|
#ifdef DEBUG
|
2005-09-16 12:24:28 +00:00
|
|
|
printf("%s: tag %d, no interface\n", __func__, tag);
|
2004-06-24 12:32:41 +00:00
|
|
|
#endif
|
2004-07-04 16:43:24 +00:00
|
|
|
return;
|
1998-03-18 01:40:12 +00:00
|
|
|
}
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_UNLOCK(); /* XXX extend below? */
|
2004-06-24 12:32:41 +00:00
|
|
|
#ifdef DEBUG
|
2005-09-16 12:24:28 +00:00
|
|
|
printf("%s: tag %d, parent %s\n", __func__, tag, ifv->ifv_p->if_xname);
|
2004-06-24 12:32:41 +00:00
|
|
|
#endif
|
1998-03-18 01:40:12 +00:00
|
|
|
|
2002-11-14 23:43:16 +00:00
|
|
|
if (mtag == NULL) {
|
|
|
|
/*
|
|
|
|
* Packet had an in-line encapsulation header;
|
|
|
|
* remove it. The original header has already
|
|
|
|
* been fixed up above.
|
|
|
|
*/
|
|
|
|
bcopy(mtod(m, caddr_t),
|
|
|
|
mtod(m, caddr_t) + ETHER_VLAN_ENCAP_LEN,
|
2003-03-03 05:04:57 +00:00
|
|
|
ETHER_HDR_LEN);
|
2002-11-14 23:43:16 +00:00
|
|
|
m_adj(m, ETHER_VLAN_ENCAP_LEN);
|
|
|
|
}
|
1998-03-18 01:40:12 +00:00
|
|
|
|
2005-06-10 16:49:24 +00:00
|
|
|
m->m_pkthdr.rcvif = ifv->ifv_ifp;
|
|
|
|
ifv->ifv_ifp->if_ipackets++;
|
2002-11-14 23:43:16 +00:00
|
|
|
|
|
|
|
/* Pass it back through the parent's input routine. */
|
2005-06-10 16:49:24 +00:00
|
|
|
(*ifp->if_input)(ifv->ifv_ifp, m);
|
1998-03-18 01:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
vlan_config(struct ifvlan *ifv, struct ifnet *p)
|
|
|
|
{
|
|
|
|
struct ifaddr *ifa1, *ifa2;
|
2005-10-03 02:24:21 +00:00
|
|
|
struct ifnet *ifp;
|
1998-03-18 01:40:12 +00:00
|
|
|
struct sockaddr_dl *sdl1, *sdl2;
|
|
|
|
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK_ASSERT();
|
|
|
|
|
2005-10-03 02:24:21 +00:00
|
|
|
if (p->if_type != IFT_ETHER)
|
2004-07-04 16:43:24 +00:00
|
|
|
return (EPROTONOSUPPORT);
|
1998-03-18 01:40:12 +00:00
|
|
|
if (ifv->ifv_p)
|
2004-07-04 16:43:24 +00:00
|
|
|
return (EBUSY);
|
1998-03-18 01:40:12 +00:00
|
|
|
|
2002-11-14 23:43:16 +00:00
|
|
|
ifv->ifv_encaplen = ETHER_VLAN_ENCAP_LEN;
|
|
|
|
ifv->ifv_mintu = ETHERMIN;
|
2005-10-03 02:24:21 +00:00
|
|
|
ifv->ifv_pflags = 0;
|
2002-11-14 23:43:16 +00:00
|
|
|
|
2004-07-26 14:46:04 +00:00
|
|
|
/*
|
|
|
|
* The active VLAN counter on the parent is used
|
|
|
|
* at various places to see if there is a vlan(4)
|
|
|
|
* attached to this physical interface.
|
|
|
|
*/
|
|
|
|
p->if_nvlans++;
|
|
|
|
|
2002-11-14 23:43:16 +00:00
|
|
|
/*
|
|
|
|
* If the parent supports the VLAN_MTU capability,
|
|
|
|
* i.e. can Tx/Rx larger than ETHER_MAX_LEN frames,
|
2004-05-25 14:30:12 +00:00
|
|
|
* use it.
|
2002-11-14 23:43:16 +00:00
|
|
|
*/
|
2004-05-25 14:30:12 +00:00
|
|
|
if (p->if_capenable & IFCAP_VLAN_MTU) {
|
2002-11-14 23:43:16 +00:00
|
|
|
/*
|
2004-05-25 14:30:12 +00:00
|
|
|
* No need to fudge the MTU since the parent can
|
|
|
|
* handle extended frames.
|
2002-11-14 23:43:16 +00:00
|
|
|
*/
|
|
|
|
ifv->ifv_mtufudge = 0;
|
2004-05-25 14:30:12 +00:00
|
|
|
} else {
|
2002-11-14 23:43:16 +00:00
|
|
|
/*
|
|
|
|
* Fudge the MTU by the encapsulation size. This
|
|
|
|
* makes us incompatible with strictly compliant
|
|
|
|
* 802.1Q implementations, but allows us to use
|
|
|
|
* the feature with other NetBSD implementations,
|
|
|
|
* which might still be useful.
|
|
|
|
*/
|
|
|
|
ifv->ifv_mtufudge = ifv->ifv_encaplen;
|
|
|
|
}
|
|
|
|
|
|
|
|
ifv->ifv_p = p;
|
2005-10-03 02:24:21 +00:00
|
|
|
ifp = ifv->ifv_ifp;
|
|
|
|
ifp->if_mtu = p->if_mtu - ifv->ifv_mtufudge;
|
1998-03-18 01:40:12 +00:00
|
|
|
/*
|
2001-03-28 15:52:12 +00:00
|
|
|
* Copy only a selected subset of flags from the parent.
|
|
|
|
* Other flags are none of our business.
|
1998-03-18 01:40:12 +00:00
|
|
|
*/
|
2005-10-03 02:24:21 +00:00
|
|
|
#define VLAN_COPY_FLAGS \
|
|
|
|
(IFF_BROADCAST | IFF_MULTICAST | IFF_SIMPLEX | IFF_POINTOPOINT)
|
|
|
|
ifp->if_flags &= ~VLAN_COPY_FLAGS;
|
|
|
|
ifp->if_flags |= p->if_flags & VLAN_COPY_FLAGS;
|
|
|
|
#undef VLAN_COPY_FLAGS
|
|
|
|
|
|
|
|
ifp->if_link_state = p->if_link_state;
|
1998-03-18 01:40:12 +00:00
|
|
|
|
2004-05-23 22:32:15 +00:00
|
|
|
#if 0
|
|
|
|
/*
|
|
|
|
* Not ready yet. We need notification from the parent
|
|
|
|
* when hw checksumming flags in its if_capenable change.
|
|
|
|
* Flags set in if_capabilities only are useless.
|
|
|
|
*/
|
2002-11-14 23:43:16 +00:00
|
|
|
/*
|
|
|
|
* If the parent interface can do hardware-assisted
|
|
|
|
* VLAN encapsulation, then propagate its hardware-
|
|
|
|
* assisted checksumming flags.
|
|
|
|
*/
|
|
|
|
if (p->if_capabilities & IFCAP_VLAN_HWTAGGING)
|
2005-10-03 02:24:21 +00:00
|
|
|
ifp->if_capabilities |= p->if_capabilities & IFCAP_HWCSUM;
|
2004-05-23 22:32:15 +00:00
|
|
|
#endif
|
2002-11-14 23:43:16 +00:00
|
|
|
|
1998-03-18 01:40:12 +00:00
|
|
|
/*
|
|
|
|
* Set up our ``Ethernet address'' to reflect the underlying
|
|
|
|
* physical interface's.
|
|
|
|
*/
|
2005-10-03 02:24:21 +00:00
|
|
|
ifa1 = ifaddr_byindex(ifp->if_index);
|
2001-09-06 02:40:43 +00:00
|
|
|
ifa2 = ifaddr_byindex(p->if_index);
|
1998-03-18 01:40:12 +00:00
|
|
|
sdl1 = (struct sockaddr_dl *)ifa1->ifa_addr;
|
|
|
|
sdl2 = (struct sockaddr_dl *)ifa2->ifa_addr;
|
|
|
|
sdl1->sdl_type = IFT_ETHER;
|
|
|
|
sdl1->sdl_alen = ETHER_ADDR_LEN;
|
|
|
|
bcopy(LLADDR(sdl2), LLADDR(sdl1), ETHER_ADDR_LEN);
|
2005-10-03 02:24:21 +00:00
|
|
|
bcopy(LLADDR(sdl2), IFP2ENADDR(ifp), ETHER_ADDR_LEN);
|
2001-07-24 17:14:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Configure multicast addresses that may already be
|
|
|
|
* joined on the vlan device.
|
|
|
|
*/
|
2005-10-03 02:24:21 +00:00
|
|
|
(void)vlan_setmulti(ifp); /* XXX: VLAN lock held */
|
2001-07-24 17:14:37 +00:00
|
|
|
|
2004-07-04 16:43:24 +00:00
|
|
|
return (0);
|
1998-03-18 01:40:12 +00:00
|
|
|
}
|
|
|
|
|
1999-03-15 01:17:26 +00:00
|
|
|
static int
|
|
|
|
vlan_unconfig(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
struct ifaddr *ifa;
|
|
|
|
struct sockaddr_dl *sdl;
|
|
|
|
struct vlan_mc_entry *mc;
|
|
|
|
struct ifvlan *ifv;
|
|
|
|
struct ifnet *p;
|
|
|
|
int error;
|
|
|
|
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK_ASSERT();
|
|
|
|
|
1999-03-15 01:17:26 +00:00
|
|
|
ifv = ifp->if_softc;
|
|
|
|
p = ifv->ifv_p;
|
|
|
|
|
2001-07-24 17:14:37 +00:00
|
|
|
if (p) {
|
|
|
|
struct sockaddr_dl sdl;
|
1999-03-15 01:17:26 +00:00
|
|
|
|
2001-07-24 17:14:37 +00:00
|
|
|
/*
|
|
|
|
* Since the interface is being unconfigured, we need to
|
|
|
|
* empty the list of multicast groups that we may have joined
|
|
|
|
* while we were alive from the parent's list.
|
|
|
|
*/
|
2004-07-04 16:43:24 +00:00
|
|
|
bzero((char *)&sdl, sizeof(sdl));
|
|
|
|
sdl.sdl_len = sizeof(sdl);
|
1999-03-15 01:17:26 +00:00
|
|
|
sdl.sdl_family = AF_LINK;
|
2001-07-24 17:14:37 +00:00
|
|
|
sdl.sdl_index = p->if_index;
|
|
|
|
sdl.sdl_type = IFT_ETHER;
|
|
|
|
sdl.sdl_alen = ETHER_ADDR_LEN;
|
|
|
|
|
|
|
|
while(SLIST_FIRST(&ifv->vlan_mc_listhead) != NULL) {
|
|
|
|
mc = SLIST_FIRST(&ifv->vlan_mc_listhead);
|
2004-07-04 16:43:24 +00:00
|
|
|
bcopy((char *)&mc->mc_addr, LLADDR(&sdl),
|
|
|
|
ETHER_ADDR_LEN);
|
2001-07-24 17:14:37 +00:00
|
|
|
error = if_delmulti(p, (struct sockaddr *)&sdl);
|
|
|
|
if (error)
|
2004-07-04 16:43:24 +00:00
|
|
|
return (error);
|
2001-07-24 17:14:37 +00:00
|
|
|
SLIST_REMOVE_HEAD(&ifv->vlan_mc_listhead, mc_entries);
|
2001-09-05 21:10:28 +00:00
|
|
|
free(mc, M_VLAN);
|
2001-07-24 17:14:37 +00:00
|
|
|
}
|
2002-11-14 23:43:16 +00:00
|
|
|
|
2005-10-03 02:24:21 +00:00
|
|
|
vlan_setflags(ifp, 0); /* clear special flags on parent */
|
2002-11-14 23:43:16 +00:00
|
|
|
p->if_nvlans--;
|
1999-03-15 01:17:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Disconnect from parent. */
|
2005-10-03 02:24:21 +00:00
|
|
|
if (ifv->ifv_pflags)
|
|
|
|
if_printf(ifp, "%s: ifv_pflags unclean\n", __func__);
|
1999-03-15 01:17:26 +00:00
|
|
|
ifv->ifv_p = NULL;
|
2005-06-10 16:49:24 +00:00
|
|
|
ifv->ifv_ifp->if_mtu = ETHERMTU; /* XXX why not 0? */
|
|
|
|
ifv->ifv_ifp->if_link_state = LINK_STATE_UNKNOWN;
|
1999-03-15 01:17:26 +00:00
|
|
|
|
|
|
|
/* Clear our MAC address. */
|
2005-06-10 16:49:24 +00:00
|
|
|
ifa = ifaddr_byindex(ifv->ifv_ifp->if_index);
|
1999-03-15 01:17:26 +00:00
|
|
|
sdl = (struct sockaddr_dl *)ifa->ifa_addr;
|
|
|
|
sdl->sdl_type = IFT_ETHER;
|
|
|
|
sdl->sdl_alen = ETHER_ADDR_LEN;
|
|
|
|
bzero(LLADDR(sdl), ETHER_ADDR_LEN);
|
2005-06-10 16:49:24 +00:00
|
|
|
bzero(IFP2ENADDR(ifv->ifv_ifp), ETHER_ADDR_LEN);
|
1999-03-15 01:17:26 +00:00
|
|
|
|
2004-07-04 16:43:24 +00:00
|
|
|
return (0);
|
1999-03-15 01:17:26 +00:00
|
|
|
}
|
|
|
|
|
2005-10-03 02:24:21 +00:00
|
|
|
/* Handle a reference counted flag that should be set on the parent as well */
|
2002-11-14 23:43:16 +00:00
|
|
|
static int
|
2005-10-03 02:24:21 +00:00
|
|
|
vlan_setflag(struct ifnet *ifp, int flag, int status,
|
|
|
|
int (*func)(struct ifnet *, int))
|
2002-11-14 23:43:16 +00:00
|
|
|
{
|
2005-10-03 02:24:21 +00:00
|
|
|
struct ifvlan *ifv;
|
|
|
|
int error;
|
2002-11-14 23:43:16 +00:00
|
|
|
|
2005-10-03 02:24:21 +00:00
|
|
|
/* XXX VLAN_LOCK_ASSERT(); */
|
|
|
|
|
|
|
|
ifv = ifp->if_softc;
|
|
|
|
status = status ? (ifp->if_flags & flag) : 0;
|
|
|
|
/* Now "status" contains the flag value or 0 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* See if recorded parent's status is different from what
|
|
|
|
* we want it to be. If it is, flip it. We record parent's
|
|
|
|
* status in ifv_pflags so that we won't clear parent's flag
|
|
|
|
* we haven't set. In fact, we don't clear or set parent's
|
|
|
|
* flags directly, but get or release references to them.
|
|
|
|
* That's why we can be sure that recorded flags still are
|
|
|
|
* in accord with actual parent's flags.
|
|
|
|
*/
|
|
|
|
if (status != (ifv->ifv_pflags & flag)) {
|
|
|
|
error = (*func)(ifv->ifv_p, status);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
ifv->ifv_pflags &= ~flag;
|
|
|
|
ifv->ifv_pflags |= status;
|
2002-11-14 23:43:16 +00:00
|
|
|
}
|
2005-10-03 02:24:21 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2002-11-14 23:43:16 +00:00
|
|
|
|
2005-10-03 02:24:21 +00:00
|
|
|
/*
|
|
|
|
* Handle IFF_* flags that require certain changes on the parent:
|
|
|
|
* if "status" is true, update parent's flags respective to our if_flags;
|
|
|
|
* if "status" is false, forcedly clear the flags set on parent.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
vlan_setflags(struct ifnet *ifp, int status)
|
|
|
|
{
|
|
|
|
int error, i;
|
|
|
|
|
|
|
|
for (i = 0; vlan_pflags[i].flag; i++) {
|
|
|
|
error = vlan_setflag(ifp, vlan_pflags[i].flag,
|
|
|
|
status, vlan_pflags[i].func);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
return (0);
|
2002-11-14 23:43:16 +00:00
|
|
|
}
|
|
|
|
|
2004-05-03 13:48:35 +00:00
|
|
|
/* Inform all vlans that their parent has changed link state */
|
|
|
|
static void
|
|
|
|
vlan_link_state(struct ifnet *ifp, int link)
|
|
|
|
{
|
|
|
|
struct ifvlan *ifv;
|
|
|
|
|
|
|
|
VLAN_LOCK();
|
|
|
|
LIST_FOREACH(ifv, &ifv_list, ifv_list) {
|
2005-04-20 12:16:41 +00:00
|
|
|
if (ifv->ifv_p == ifp)
|
2005-06-10 16:49:24 +00:00
|
|
|
if_link_state_change(ifv->ifv_ifp,
|
2005-04-20 12:16:41 +00:00
|
|
|
ifv->ifv_p->if_link_state);
|
2004-05-03 13:48:35 +00:00
|
|
|
}
|
|
|
|
VLAN_UNLOCK();
|
|
|
|
}
|
|
|
|
|
1998-03-18 01:40:12 +00:00
|
|
|
static int
|
1998-08-23 03:07:17 +00:00
|
|
|
vlan_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
|
1998-03-18 01:40:12 +00:00
|
|
|
{
|
|
|
|
struct ifaddr *ifa;
|
|
|
|
struct ifnet *p;
|
|
|
|
struct ifreq *ifr;
|
|
|
|
struct ifvlan *ifv;
|
|
|
|
struct vlanreq vlr;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
ifr = (struct ifreq *)data;
|
|
|
|
ifa = (struct ifaddr *)data;
|
|
|
|
ifv = ifp->if_softc;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case SIOCSIFADDR:
|
|
|
|
ifp->if_flags |= IFF_UP;
|
|
|
|
|
|
|
|
switch (ifa->ifa_addr->sa_family) {
|
|
|
|
#ifdef INET
|
|
|
|
case AF_INET:
|
2005-06-10 16:49:24 +00:00
|
|
|
arp_ifinit(ifv->ifv_ifp, ifa);
|
1998-03-18 01:40:12 +00:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SIOCGIFADDR:
|
|
|
|
{
|
|
|
|
struct sockaddr *sa;
|
|
|
|
|
|
|
|
sa = (struct sockaddr *) &ifr->ifr_data;
|
2005-06-10 16:49:24 +00:00
|
|
|
bcopy(IFP2ENADDR(ifp), (caddr_t)sa->sa_data,
|
2004-07-04 16:43:24 +00:00
|
|
|
ETHER_ADDR_LEN);
|
1998-03-18 01:40:12 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2003-01-22 23:30:26 +00:00
|
|
|
case SIOCGIFMEDIA:
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK();
|
2003-01-22 23:30:26 +00:00
|
|
|
if (ifv->ifv_p != NULL) {
|
2003-09-05 20:58:59 +00:00
|
|
|
error = (*ifv->ifv_p->if_ioctl)(ifv->ifv_p,
|
|
|
|
SIOCGIFMEDIA, data);
|
|
|
|
VLAN_UNLOCK();
|
2003-01-22 23:30:26 +00:00
|
|
|
/* Limit the result to the parent's current config. */
|
|
|
|
if (error == 0) {
|
|
|
|
struct ifmediareq *ifmr;
|
|
|
|
|
2004-07-04 16:43:24 +00:00
|
|
|
ifmr = (struct ifmediareq *)data;
|
2003-01-22 23:30:26 +00:00
|
|
|
if (ifmr->ifm_count >= 1 && ifmr->ifm_ulist) {
|
|
|
|
ifmr->ifm_count = 1;
|
|
|
|
error = copyout(&ifmr->ifm_current,
|
2004-07-04 16:43:24 +00:00
|
|
|
ifmr->ifm_ulist,
|
2003-01-22 23:30:26 +00:00
|
|
|
sizeof(int));
|
|
|
|
}
|
|
|
|
}
|
2003-09-05 20:58:59 +00:00
|
|
|
} else {
|
|
|
|
VLAN_UNLOCK();
|
2003-01-22 23:30:26 +00:00
|
|
|
error = EINVAL;
|
2003-09-05 20:58:59 +00:00
|
|
|
}
|
2003-01-22 23:30:26 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SIOCSIFMEDIA:
|
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
|
1998-03-18 01:40:12 +00:00
|
|
|
case SIOCSIFMTU:
|
|
|
|
/*
|
|
|
|
* Set the interface MTU.
|
|
|
|
*/
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK();
|
2002-11-14 23:43:16 +00:00
|
|
|
if (ifv->ifv_p != NULL) {
|
|
|
|
if (ifr->ifr_mtu >
|
|
|
|
(ifv->ifv_p->if_mtu - ifv->ifv_mtufudge) ||
|
|
|
|
ifr->ifr_mtu <
|
|
|
|
(ifv->ifv_mintu - ifv->ifv_mtufudge))
|
|
|
|
error = EINVAL;
|
|
|
|
else
|
|
|
|
ifp->if_mtu = ifr->ifr_mtu;
|
|
|
|
} else
|
1998-03-18 01:40:12 +00:00
|
|
|
error = EINVAL;
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_UNLOCK();
|
1998-03-18 01:40:12 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SIOCSETVLAN:
|
2004-07-04 16:43:24 +00:00
|
|
|
error = copyin(ifr->ifr_data, &vlr, sizeof(vlr));
|
1998-03-18 01:40:12 +00:00
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
if (vlr.vlr_parent[0] == '\0') {
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK();
|
1999-03-15 01:17:26 +00:00
|
|
|
vlan_unconfig(ifp);
|
2003-09-05 20:58:59 +00:00
|
|
|
if (ifp->if_flags & IFF_UP)
|
2001-03-28 15:52:12 +00:00
|
|
|
if_down(ifp);
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_UNLOCK();
|
1998-03-18 01:40:12 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
p = ifunit(vlr.vlr_parent);
|
|
|
|
if (p == 0) {
|
|
|
|
error = ENOENT;
|
|
|
|
break;
|
|
|
|
}
|
2003-07-08 21:54:20 +00:00
|
|
|
/*
|
|
|
|
* Don't let the caller set up a VLAN tag with
|
|
|
|
* anything except VLID bits.
|
|
|
|
*/
|
|
|
|
if (vlr.vlr_tag & ~EVL_VLID_MASK) {
|
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK();
|
1998-03-18 01:40:12 +00:00
|
|
|
error = vlan_config(ifv, p);
|
2003-09-05 20:58:59 +00:00
|
|
|
if (error) {
|
|
|
|
VLAN_UNLOCK();
|
1998-03-18 01:40:12 +00:00
|
|
|
break;
|
2003-09-05 20:58:59 +00:00
|
|
|
}
|
1998-03-18 01:40:12 +00:00
|
|
|
ifv->ifv_tag = vlr.vlr_tag;
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags |= IFF_DRV_RUNNING;
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_UNLOCK();
|
2002-11-14 23:43:16 +00:00
|
|
|
|
2005-10-03 02:24:21 +00:00
|
|
|
/* Update flags on the parent, if necessary. */
|
|
|
|
vlan_setflags(ifp, 1);
|
1998-03-18 01:40:12 +00:00
|
|
|
break;
|
2004-07-04 16:43:24 +00:00
|
|
|
|
1998-03-18 01:40:12 +00:00
|
|
|
case SIOCGETVLAN:
|
2004-07-04 16:43:24 +00:00
|
|
|
bzero(&vlr, sizeof(vlr));
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_LOCK();
|
1998-03-18 01:40:12 +00:00
|
|
|
if (ifv->ifv_p) {
|
2003-10-31 18:32:15 +00:00
|
|
|
strlcpy(vlr.vlr_parent, ifv->ifv_p->if_xname,
|
|
|
|
sizeof(vlr.vlr_parent));
|
1998-03-18 01:40:12 +00:00
|
|
|
vlr.vlr_tag = ifv->ifv_tag;
|
|
|
|
}
|
2003-09-05 20:58:59 +00:00
|
|
|
VLAN_UNLOCK();
|
2004-07-04 16:43:24 +00:00
|
|
|
error = copyout(&vlr, ifr->ifr_data, sizeof(vlr));
|
1998-03-18 01:40:12 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SIOCSIFFLAGS:
|
|
|
|
/*
|
2005-10-03 02:24:21 +00:00
|
|
|
* We should propagate selected flags to the parent,
|
|
|
|
* e.g., promiscuous mode.
|
1998-03-18 01:40:12 +00:00
|
|
|
*/
|
2002-11-14 23:43:16 +00:00
|
|
|
if (ifv->ifv_p != NULL)
|
2005-10-03 02:24:21 +00:00
|
|
|
error = vlan_setflags(ifp, 1);
|
1998-03-18 01:40:12 +00:00
|
|
|
break;
|
2002-11-14 23:43:16 +00:00
|
|
|
|
1999-03-15 01:17:26 +00:00
|
|
|
case SIOCADDMULTI:
|
|
|
|
case SIOCDELMULTI:
|
2004-07-04 18:32:54 +00:00
|
|
|
/*VLAN_LOCK();*/
|
1999-03-15 01:17:26 +00:00
|
|
|
error = vlan_setmulti(ifp);
|
2004-07-04 18:32:54 +00:00
|
|
|
/*VLAN_UNLOCK();*/
|
1999-03-15 01:17:26 +00:00
|
|
|
break;
|
1998-03-18 01:40:12 +00:00
|
|
|
default:
|
|
|
|
error = EINVAL;
|
|
|
|
}
|
2004-07-04 16:43:24 +00:00
|
|
|
|
|
|
|
return (error);
|
1998-03-18 01:40:12 +00:00
|
|
|
}
|