2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
2000-07-20 17:01:10 +00:00
|
|
|
* Copyright (C) 1999-2000 by Maksim Yevmenkin <m_evmenkin@yahoo.com>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS 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.
|
|
|
|
*
|
|
|
|
* BASED ON:
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Copyright (c) 1988, Julian Onions <jpo@cs.nott.ac.uk>
|
|
|
|
* Nottingham University 1987.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* $FreeBSD$
|
2000-07-24 15:32:26 +00:00
|
|
|
* $Id: if_tap.c,v 0.21 2000/07/23 21:46:02 max Exp $
|
2000-07-20 17:01:10 +00:00
|
|
|
*/
|
|
|
|
|
2006-09-27 19:57:02 +00:00
|
|
|
#include "opt_compat.h"
|
2000-07-20 17:01:10 +00:00
|
|
|
#include "opt_inet.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/conf.h>
|
2004-12-22 17:38:43 +00:00
|
|
|
#include <sys/fcntl.h>
|
2000-07-20 17:01:10 +00:00
|
|
|
#include <sys/filio.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mbuf.h>
|
2004-05-30 20:27:19 +00:00
|
|
|
#include <sys/module.h>
|
2000-07-20 17:01:10 +00:00
|
|
|
#include <sys/poll.h>
|
2006-11-06 13:42:10 +00:00
|
|
|
#include <sys/priv.h>
|
2000-07-20 17:01:10 +00:00
|
|
|
#include <sys/proc.h>
|
2004-12-22 17:38:43 +00:00
|
|
|
#include <sys/selinfo.h>
|
2000-07-20 17:01:10 +00:00
|
|
|
#include <sys/signalvar.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/sockio.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/ttycom.h>
|
|
|
|
#include <sys/uio.h>
|
2001-09-05 01:06:21 +00:00
|
|
|
#include <sys/queue.h>
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
#include <net/bpf.h>
|
|
|
|
#include <net/ethernet.h>
|
|
|
|
#include <net/if.h>
|
2007-02-04 16:32:46 +00:00
|
|
|
#include <net/if_clone.h>
|
2005-11-11 16:04:59 +00:00
|
|
|
#include <net/if_dl.h>
|
2000-07-20 17:01:10 +00:00
|
|
|
#include <net/route.h>
|
2005-06-10 16:49:24 +00:00
|
|
|
#include <net/if_types.h>
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
#include <net/if_tapvar.h>
|
|
|
|
#include <net/if_tap.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define CDEV_NAME "tap"
|
|
|
|
#define TAPDEBUG if (tapdebug) printf
|
|
|
|
|
|
|
|
#define TAP "tap"
|
|
|
|
#define VMNET "vmnet"
|
2001-09-05 01:06:21 +00:00
|
|
|
#define TAPMAXUNIT 0x7fff
|
2004-02-21 20:29:52 +00:00
|
|
|
#define VMNET_DEV_MASK CLONE_FLAG0
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
/* module */
|
2003-03-02 15:56:49 +00:00
|
|
|
static int tapmodevent(module_t, int, void *);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
/* device */
|
2005-08-08 19:55:32 +00:00
|
|
|
static void tapclone(void *, struct ucred *, char *, int,
|
|
|
|
struct cdev **);
|
2004-06-16 09:47:26 +00:00
|
|
|
static void tapcreate(struct cdev *);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
/* network interface */
|
2002-03-24 09:34:04 +00:00
|
|
|
static void tapifstart(struct ifnet *);
|
|
|
|
static int tapifioctl(struct ifnet *, u_long, caddr_t);
|
|
|
|
static void tapifinit(void *);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2007-02-04 16:32:46 +00:00
|
|
|
static int tap_clone_create(struct if_clone *, int, caddr_t);
|
|
|
|
static void tap_clone_destroy(struct ifnet *);
|
|
|
|
static int vmnet_clone_create(struct if_clone *, int, caddr_t);
|
|
|
|
static void vmnet_clone_destroy(struct ifnet *);
|
|
|
|
|
|
|
|
IFC_SIMPLE_DECLARE(tap, 0);
|
|
|
|
IFC_SIMPLE_DECLARE(vmnet, 0);
|
|
|
|
|
2000-07-20 17:01:10 +00:00
|
|
|
/* character device */
|
|
|
|
static d_open_t tapopen;
|
|
|
|
static d_close_t tapclose;
|
|
|
|
static d_read_t tapread;
|
|
|
|
static d_write_t tapwrite;
|
|
|
|
static d_ioctl_t tapioctl;
|
|
|
|
static d_poll_t tappoll;
|
2006-03-16 18:22:01 +00:00
|
|
|
static d_kqfilter_t tapkqfilter;
|
|
|
|
|
|
|
|
/* kqueue(2) */
|
|
|
|
static int tapkqread(struct knote *, long);
|
|
|
|
static int tapkqwrite(struct knote *, long);
|
|
|
|
static void tapkqdetach(struct knote *);
|
|
|
|
|
|
|
|
static struct filterops tap_read_filterops = {
|
|
|
|
.f_isfd = 1,
|
|
|
|
.f_attach = NULL,
|
|
|
|
.f_detach = tapkqdetach,
|
|
|
|
.f_event = tapkqread,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct filterops tap_write_filterops = {
|
|
|
|
.f_isfd = 1,
|
|
|
|
.f_attach = NULL,
|
|
|
|
.f_detach = tapkqdetach,
|
|
|
|
.f_event = tapkqwrite,
|
|
|
|
};
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
static struct cdevsw tap_cdevsw = {
|
2004-02-21 21:10:55 +00:00
|
|
|
.d_version = D_VERSION,
|
2004-02-24 04:35:44 +00:00
|
|
|
.d_flags = D_PSEUDO | D_NEEDGIANT,
|
2003-03-03 12:15:54 +00:00
|
|
|
.d_open = tapopen,
|
|
|
|
.d_close = tapclose,
|
|
|
|
.d_read = tapread,
|
|
|
|
.d_write = tapwrite,
|
|
|
|
.d_ioctl = tapioctl,
|
|
|
|
.d_poll = tappoll,
|
|
|
|
.d_name = CDEV_NAME,
|
2006-03-16 18:22:01 +00:00
|
|
|
.d_kqfilter = tapkqfilter,
|
2000-07-20 17:01:10 +00:00
|
|
|
};
|
|
|
|
|
2004-03-15 01:52:00 +00:00
|
|
|
/*
|
|
|
|
* All global variables in if_tap.c are locked with tapmtx, with the
|
|
|
|
* exception of tapdebug, which is accessed unlocked; tapclones is
|
|
|
|
* static at runtime.
|
|
|
|
*/
|
|
|
|
static struct mtx tapmtx;
|
2001-09-05 01:06:21 +00:00
|
|
|
static int tapdebug = 0; /* debug flag */
|
2007-03-19 18:17:31 +00:00
|
|
|
static int tapuopen = 0; /* allow user open() */
|
|
|
|
static int tapuponopen = 0; /* IFF_UP on open() */
|
2007-02-04 16:32:46 +00:00
|
|
|
static int tapdclone = 1; /* enable devfs cloning */
|
2001-09-05 01:06:21 +00:00
|
|
|
static SLIST_HEAD(, tap_softc) taphead; /* first device */
|
2004-02-21 20:29:52 +00:00
|
|
|
static struct clonedevs *tapclones;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
MALLOC_DECLARE(M_TAP);
|
|
|
|
MALLOC_DEFINE(M_TAP, CDEV_NAME, "Ethernet tunnel interface");
|
|
|
|
SYSCTL_INT(_debug, OID_AUTO, if_tap_debug, CTLFLAG_RW, &tapdebug, 0, "");
|
2005-04-13 00:30:19 +00:00
|
|
|
|
|
|
|
SYSCTL_DECL(_net_link);
|
|
|
|
SYSCTL_NODE(_net_link, OID_AUTO, tap, CTLFLAG_RW, 0,
|
|
|
|
"Ethernet tunnel software network interface");
|
|
|
|
SYSCTL_INT(_net_link_tap, OID_AUTO, user_open, CTLFLAG_RW, &tapuopen, 0,
|
|
|
|
"Allow user to open /dev/tap (based on node permissions)");
|
2007-03-19 18:17:31 +00:00
|
|
|
SYSCTL_INT(_net_link_tap, OID_AUTO, up_on_open, CTLFLAG_RW, &tapuponopen, 0,
|
|
|
|
"Bring interface up when /dev/tap is opened");
|
2007-02-04 16:32:46 +00:00
|
|
|
SYSCTL_INT(_net_link_tap, OID_AUTO, devfs_cloning, CTLFLAG_RW, &tapdclone, 0,
|
|
|
|
"Enably legacy devfs interface creation");
|
2005-04-13 00:30:19 +00:00
|
|
|
SYSCTL_INT(_net_link_tap, OID_AUTO, debug, CTLFLAG_RW, &tapdebug, 0, "");
|
|
|
|
|
2007-02-04 16:32:46 +00:00
|
|
|
TUNABLE_INT("net.link.tap.devfs_cloning", &tapdclone);
|
|
|
|
|
2000-07-20 17:01:10 +00:00
|
|
|
DEV_MODULE(if_tap, tapmodevent, NULL);
|
|
|
|
|
2007-02-04 16:32:46 +00:00
|
|
|
static int
|
|
|
|
tap_clone_create(struct if_clone *ifc, int unit, caddr_t params)
|
|
|
|
{
|
|
|
|
struct cdev *dev;
|
|
|
|
int i;
|
|
|
|
int extra;
|
|
|
|
|
|
|
|
if (strcmp(ifc->ifc_name, VMNET) == 0)
|
|
|
|
extra = VMNET_DEV_MASK;
|
|
|
|
else
|
|
|
|
extra = 0;
|
|
|
|
|
|
|
|
/* find any existing device, or allocate new unit number */
|
|
|
|
i = clone_create(&tapclones, &tap_cdevsw, &unit, &dev, extra);
|
|
|
|
if (i) {
|
|
|
|
dev = make_dev(&tap_cdevsw, unit2minor(unit | extra),
|
|
|
|
UID_ROOT, GID_WHEEL, 0600, "%s%d", ifc->ifc_name, unit);
|
|
|
|
if (dev != NULL) {
|
|
|
|
dev_ref(dev);
|
|
|
|
dev->si_flags |= SI_CHEAPCLONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tapcreate(dev);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vmnet devices are tap devices in disguise */
|
|
|
|
static int
|
|
|
|
vmnet_clone_create(struct if_clone *ifc, int unit, caddr_t params)
|
|
|
|
{
|
|
|
|
return tap_clone_create(ifc, unit, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tap_destroy(struct tap_softc *tp)
|
|
|
|
{
|
|
|
|
struct ifnet *ifp = tp->tap_ifp;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
/* Unlocked read. */
|
|
|
|
KASSERT(!(tp->tap_flags & TAP_OPEN),
|
|
|
|
("%s flags is out of sync", ifp->if_xname));
|
|
|
|
|
|
|
|
knlist_destroy(&tp->tap_rsel.si_note);
|
|
|
|
destroy_dev(tp->tap_dev);
|
|
|
|
s = splimp();
|
|
|
|
ether_ifdetach(ifp);
|
|
|
|
if_free_type(ifp, IFT_ETHER);
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
mtx_destroy(&tp->tap_mtx);
|
|
|
|
free(tp, M_TAP);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tap_clone_destroy(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
struct tap_softc *tp = ifp->if_softc;
|
|
|
|
|
|
|
|
mtx_lock(&tapmtx);
|
|
|
|
SLIST_REMOVE(&taphead, tp, tap_softc, tap_next);
|
|
|
|
mtx_unlock(&tapmtx);
|
|
|
|
tap_destroy(tp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vmnet devices are tap devices in disguise */
|
|
|
|
static void
|
|
|
|
vmnet_clone_destroy(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
tap_clone_destroy(ifp);
|
|
|
|
}
|
|
|
|
|
2000-07-20 17:01:10 +00:00
|
|
|
/*
|
|
|
|
* tapmodevent
|
|
|
|
*
|
|
|
|
* module event handler
|
|
|
|
*/
|
|
|
|
static int
|
2006-03-16 18:22:01 +00:00
|
|
|
tapmodevent(module_t mod, int type, void *data)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
2001-09-05 01:06:21 +00:00
|
|
|
static eventhandler_tag eh_tag = NULL;
|
|
|
|
struct tap_softc *tp = NULL;
|
|
|
|
struct ifnet *ifp = NULL;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case MOD_LOAD:
|
2001-09-05 01:06:21 +00:00
|
|
|
|
|
|
|
/* intitialize device */
|
|
|
|
|
2004-03-15 01:52:00 +00:00
|
|
|
mtx_init(&tapmtx, "tapmtx", NULL, MTX_DEF);
|
2001-09-05 01:06:21 +00:00
|
|
|
SLIST_INIT(&taphead);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2004-03-11 12:58:55 +00:00
|
|
|
clone_setup(&tapclones);
|
2001-01-24 20:59:34 +00:00
|
|
|
eh_tag = EVENTHANDLER_REGISTER(dev_clone, tapclone, 0, 1000);
|
2004-03-15 01:52:00 +00:00
|
|
|
if (eh_tag == NULL) {
|
2004-03-18 14:18:51 +00:00
|
|
|
clone_cleanup(&tapclones);
|
2004-03-15 01:52:00 +00:00
|
|
|
mtx_destroy(&tapmtx);
|
2004-02-21 20:29:52 +00:00
|
|
|
return (ENOMEM);
|
2004-03-15 01:52:00 +00:00
|
|
|
}
|
2007-02-04 16:32:46 +00:00
|
|
|
if_clone_attach(&tap_cloner);
|
|
|
|
if_clone_attach(&vmnet_cloner);
|
2001-09-05 01:06:21 +00:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
case MOD_UNLOAD:
|
2004-03-15 01:52:00 +00:00
|
|
|
/*
|
|
|
|
* The EBUSY algorithm here can't quite atomically
|
|
|
|
* guarantee that this is race-free since we have to
|
|
|
|
* release the tap mtx to deregister the clone handler.
|
|
|
|
*/
|
|
|
|
mtx_lock(&tapmtx);
|
|
|
|
SLIST_FOREACH(tp, &taphead, tap_next) {
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2004-03-15 01:52:00 +00:00
|
|
|
if (tp->tap_flags & TAP_OPEN) {
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2004-03-15 01:52:00 +00:00
|
|
|
mtx_unlock(&tapmtx);
|
2001-09-05 01:06:21 +00:00
|
|
|
return (EBUSY);
|
2004-03-15 01:52:00 +00:00
|
|
|
}
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2004-03-15 01:52:00 +00:00
|
|
|
}
|
|
|
|
mtx_unlock(&tapmtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2001-01-24 20:59:34 +00:00
|
|
|
EVENTHANDLER_DEREGISTER(dev_clone, eh_tag);
|
2007-02-04 16:32:46 +00:00
|
|
|
if_clone_detach(&tap_cloner);
|
|
|
|
if_clone_detach(&vmnet_cloner);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2004-03-15 01:52:00 +00:00
|
|
|
mtx_lock(&tapmtx);
|
2001-09-05 01:06:21 +00:00
|
|
|
while ((tp = SLIST_FIRST(&taphead)) != NULL) {
|
|
|
|
SLIST_REMOVE_HEAD(&taphead, tap_next);
|
2004-03-15 01:52:00 +00:00
|
|
|
mtx_unlock(&tapmtx);
|
2001-09-05 01:06:21 +00:00
|
|
|
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = tp->tap_ifp;
|
2001-09-05 01:06:21 +00:00
|
|
|
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("detaching %s\n", ifp->if_xname);
|
2001-09-05 01:06:21 +00:00
|
|
|
|
2007-02-04 16:32:46 +00:00
|
|
|
tap_destroy(tp);
|
2004-03-15 01:52:00 +00:00
|
|
|
mtx_lock(&tapmtx);
|
2001-09-05 01:06:21 +00:00
|
|
|
}
|
2004-03-15 01:52:00 +00:00
|
|
|
mtx_unlock(&tapmtx);
|
2004-02-21 20:29:52 +00:00
|
|
|
clone_cleanup(&tapclones);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2004-09-17 03:55:50 +00:00
|
|
|
mtx_destroy(&tapmtx);
|
|
|
|
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
} /* tapmodevent */
|
|
|
|
|
|
|
|
|
2001-01-24 20:59:34 +00:00
|
|
|
/*
|
|
|
|
* DEVFS handler
|
|
|
|
*
|
|
|
|
* We need to support two kind of devices - tap and vmnet
|
|
|
|
*/
|
|
|
|
static void
|
2006-03-16 18:22:01 +00:00
|
|
|
tapclone(void *arg, struct ucred *cred, char *name, int namelen, struct cdev **dev)
|
2001-01-24 20:59:34 +00:00
|
|
|
{
|
2007-02-04 16:32:46 +00:00
|
|
|
char devname[SPECNAMELEN + 1];
|
|
|
|
int i, unit, append_unit;
|
2007-02-02 22:27:45 +00:00
|
|
|
int extra;
|
2001-01-24 20:59:34 +00:00
|
|
|
|
2004-06-17 17:16:53 +00:00
|
|
|
if (*dev != NULL)
|
2001-01-24 20:59:34 +00:00
|
|
|
return;
|
|
|
|
|
2007-02-05 11:29:08 +00:00
|
|
|
if (!tapdclone ||
|
|
|
|
(!tapuopen && priv_check_cred(cred, PRIV_NET_IFCREATE, 0) != 0))
|
2007-02-04 16:32:46 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
unit = 0;
|
|
|
|
append_unit = 0;
|
2004-02-21 20:29:52 +00:00
|
|
|
extra = 0;
|
2007-02-04 16:32:46 +00:00
|
|
|
|
|
|
|
/* We're interested in only tap/vmnet devices. */
|
2004-02-21 20:29:52 +00:00
|
|
|
if (strcmp(name, TAP) == 0) {
|
|
|
|
unit = -1;
|
|
|
|
} else if (strcmp(name, VMNET) == 0) {
|
|
|
|
unit = -1;
|
|
|
|
extra = VMNET_DEV_MASK;
|
2007-02-04 16:32:46 +00:00
|
|
|
} else if (dev_stdclone(name, NULL, TAP, &unit) != 1) {
|
|
|
|
if (dev_stdclone(name, NULL, VMNET, &unit) != 1) {
|
2004-02-21 20:29:52 +00:00
|
|
|
return;
|
2007-02-04 16:32:46 +00:00
|
|
|
} else {
|
|
|
|
extra = VMNET_DEV_MASK;
|
|
|
|
}
|
2001-01-24 20:59:34 +00:00
|
|
|
}
|
2001-09-05 01:06:21 +00:00
|
|
|
|
2007-02-04 16:32:46 +00:00
|
|
|
if (unit == -1)
|
|
|
|
append_unit = 1;
|
|
|
|
|
2004-02-21 20:29:52 +00:00
|
|
|
/* find any existing device, or allocate new unit number */
|
|
|
|
i = clone_create(&tapclones, &tap_cdevsw, &unit, dev, extra);
|
|
|
|
if (i) {
|
2007-02-04 16:32:46 +00:00
|
|
|
if (append_unit) {
|
|
|
|
/*
|
|
|
|
* We were passed 'tun' or 'tap', with no unit specified
|
|
|
|
* so we'll need to append it now.
|
|
|
|
*/
|
|
|
|
namelen = snprintf(devname, sizeof(devname), "%s%d", name,
|
|
|
|
unit);
|
|
|
|
name = devname;
|
|
|
|
}
|
|
|
|
|
2004-03-10 08:02:29 +00:00
|
|
|
*dev = make_dev(&tap_cdevsw, unit2minor(unit | extra),
|
2007-02-04 16:32:46 +00:00
|
|
|
UID_ROOT, GID_WHEEL, 0600, "%s", name);
|
2005-03-31 12:19:44 +00:00
|
|
|
if (*dev != NULL) {
|
|
|
|
dev_ref(*dev);
|
2004-02-21 20:29:52 +00:00
|
|
|
(*dev)->si_flags |= SI_CHEAPCLONE;
|
2005-03-31 12:19:44 +00:00
|
|
|
}
|
2001-09-05 01:06:21 +00:00
|
|
|
}
|
2007-02-04 16:32:46 +00:00
|
|
|
|
|
|
|
if_clone_create(name, namelen, NULL);
|
2001-01-24 20:59:34 +00:00
|
|
|
} /* tapclone */
|
|
|
|
|
|
|
|
|
2000-07-20 17:01:10 +00:00
|
|
|
/*
|
|
|
|
* tapcreate
|
|
|
|
*
|
|
|
|
* to create interface
|
|
|
|
*/
|
|
|
|
static void
|
2006-03-16 18:22:01 +00:00
|
|
|
tapcreate(struct cdev *dev)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
|
|
|
struct ifnet *ifp = NULL;
|
|
|
|
struct tap_softc *tp = NULL;
|
|
|
|
unsigned short macaddr_hi;
|
2000-07-24 15:32:26 +00:00
|
|
|
int unit, s;
|
2000-07-20 17:01:10 +00:00
|
|
|
char *name = NULL;
|
2005-06-10 16:49:24 +00:00
|
|
|
u_char eaddr[6];
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2004-02-21 20:29:52 +00:00
|
|
|
dev->si_flags &= ~SI_CHEAPCLONE;
|
|
|
|
|
2000-07-20 17:01:10 +00:00
|
|
|
/* allocate driver storage and create device */
|
2003-02-19 05:47:46 +00:00
|
|
|
MALLOC(tp, struct tap_softc *, sizeof(*tp), M_TAP, M_WAITOK | M_ZERO);
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_init(&tp->tap_mtx, "tap_mtx", NULL, MTX_DEF);
|
2004-03-15 01:52:00 +00:00
|
|
|
mtx_lock(&tapmtx);
|
2001-09-05 01:06:21 +00:00
|
|
|
SLIST_INSERT_HEAD(&taphead, tp, tap_next);
|
2004-03-15 01:52:00 +00:00
|
|
|
mtx_unlock(&tapmtx);
|
2001-09-05 01:06:21 +00:00
|
|
|
|
2004-03-10 08:02:29 +00:00
|
|
|
unit = dev2unit(dev);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
/* select device: tap or vmnet */
|
2004-03-10 08:02:29 +00:00
|
|
|
if (unit & VMNET_DEV_MASK) {
|
2000-07-20 17:01:10 +00:00
|
|
|
name = VMNET;
|
2000-07-24 15:32:26 +00:00
|
|
|
tp->tap_flags |= TAP_VMNET;
|
2001-09-05 01:06:21 +00:00
|
|
|
} else
|
2000-07-20 17:01:10 +00:00
|
|
|
name = TAP;
|
|
|
|
|
2004-03-10 08:02:29 +00:00
|
|
|
unit &= TAPMAXUNIT;
|
2001-09-05 01:06:21 +00:00
|
|
|
|
2004-03-10 08:02:29 +00:00
|
|
|
TAPDEBUG("tapcreate(%s%d). minor = %#x\n", name, unit, minor(dev));
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
/* generate fake MAC address: 00 bd xx xx xx unit_no */
|
|
|
|
macaddr_hi = htons(0x00bd);
|
2005-06-10 16:49:24 +00:00
|
|
|
bcopy(&macaddr_hi, eaddr, sizeof(short));
|
|
|
|
bcopy(&ticks, &eaddr[2], sizeof(long));
|
|
|
|
eaddr[5] = (u_char)unit;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2003-03-02 15:56:49 +00:00
|
|
|
/* fill the rest and attach interface */
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = tp->tap_ifp = if_alloc(IFT_ETHER);
|
|
|
|
if (ifp == NULL)
|
|
|
|
panic("%s%d: can not if_alloc()", name, unit);
|
2000-07-20 17:01:10 +00:00
|
|
|
ifp->if_softc = tp;
|
2003-10-31 18:32:15 +00:00
|
|
|
if_initname(ifp, name, unit);
|
2000-07-20 17:01:10 +00:00
|
|
|
ifp->if_init = tapifinit;
|
|
|
|
ifp->if_start = tapifstart;
|
|
|
|
ifp->if_ioctl = tapifioctl;
|
|
|
|
ifp->if_mtu = ETHERMTU;
|
|
|
|
ifp->if_flags = (IFF_BROADCAST|IFF_SIMPLEX|IFF_MULTICAST);
|
|
|
|
ifp->if_snd.ifq_maxlen = ifqmaxlen;
|
|
|
|
|
2001-09-05 01:06:21 +00:00
|
|
|
dev->si_drv1 = tp;
|
2004-02-21 20:29:52 +00:00
|
|
|
tp->tap_dev = dev;
|
2001-09-05 01:06:21 +00:00
|
|
|
|
2000-07-24 15:32:26 +00:00
|
|
|
s = splimp();
|
2005-06-10 16:49:24 +00:00
|
|
|
ether_ifattach(ifp, eaddr);
|
2000-07-24 15:32:26 +00:00
|
|
|
splx(s);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2000-07-24 15:32:26 +00:00
|
|
|
tp->tap_flags |= TAP_INITED;
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2000-07-24 15:32:26 +00:00
|
|
|
|
2006-05-17 17:05:02 +00:00
|
|
|
knlist_init(&tp->tap_rsel.si_note, NULL, NULL, NULL, NULL);
|
|
|
|
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("interface %s is created. minor = %#x\n",
|
|
|
|
ifp->if_xname, minor(dev));
|
2000-07-20 17:01:10 +00:00
|
|
|
} /* tapcreate */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2003-03-02 15:56:49 +00:00
|
|
|
* tapopen
|
2000-07-20 17:01:10 +00:00
|
|
|
*
|
|
|
|
* to open tunnel. must be superuser
|
|
|
|
*/
|
|
|
|
static int
|
2006-03-16 18:22:01 +00:00
|
|
|
tapopen(struct cdev *dev, int flag, int mode, struct thread *td)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
|
|
|
struct tap_softc *tp = NULL;
|
2004-08-11 00:12:27 +00:00
|
|
|
struct ifnet *ifp = NULL;
|
2006-11-06 13:42:10 +00:00
|
|
|
int error, s;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2006-11-06 13:42:10 +00:00
|
|
|
if (tapuopen == 0) {
|
|
|
|
error = priv_check(td, PRIV_NET_TAP);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2004-03-10 08:02:29 +00:00
|
|
|
if ((dev2unit(dev) & CLONE_UNITMASK) > TAPMAXUNIT)
|
|
|
|
return (ENXIO);
|
2001-09-05 01:06:21 +00:00
|
|
|
|
2000-07-20 17:01:10 +00:00
|
|
|
tp = dev->si_drv1;
|
|
|
|
|
2004-03-18 09:55:11 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
|
|
|
if (tp->tap_flags & TAP_OPEN) {
|
|
|
|
mtx_unlock(&tp->tap_mtx);
|
|
|
|
return (EBUSY);
|
|
|
|
}
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2005-11-11 16:04:59 +00:00
|
|
|
bcopy(IF_LLADDR(tp->tap_ifp), tp->ether_addr, sizeof(tp->ether_addr));
|
2001-09-12 08:38:13 +00:00
|
|
|
tp->tap_pid = td->td_proc->p_pid;
|
2000-07-20 17:01:10 +00:00
|
|
|
tp->tap_flags |= TAP_OPEN;
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = tp->tap_ifp;
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2004-08-11 00:12:27 +00:00
|
|
|
s = splimp();
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags |= IFF_DRV_RUNNING;
|
|
|
|
ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
|
2007-03-19 18:17:31 +00:00
|
|
|
if (tapuponopen)
|
|
|
|
ifp->if_flags |= IFF_UP;
|
2004-08-11 00:12:27 +00:00
|
|
|
splx(s);
|
|
|
|
|
|
|
|
TAPDEBUG("%s is open. minor = %#x\n", ifp->if_xname, minor(dev));
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
} /* tapopen */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tapclose
|
|
|
|
*
|
|
|
|
* close the device - mark i/f down & delete routing info
|
|
|
|
*/
|
|
|
|
static int
|
2006-03-16 18:22:01 +00:00
|
|
|
tapclose(struct cdev *dev, int foo, int bar, struct thread *td)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
2006-03-16 18:22:01 +00:00
|
|
|
struct ifaddr *ifa;
|
2000-07-20 17:01:10 +00:00
|
|
|
struct tap_softc *tp = dev->si_drv1;
|
2005-06-10 16:49:24 +00:00
|
|
|
struct ifnet *ifp = tp->tap_ifp;
|
2004-02-21 20:29:52 +00:00
|
|
|
int s;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2001-09-05 01:06:21 +00:00
|
|
|
/* junk all pending output */
|
|
|
|
IF_DRAIN(&ifp->if_snd);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2000-07-24 15:32:26 +00:00
|
|
|
/*
|
|
|
|
* do not bring the interface down, and do not anything with
|
|
|
|
* interface, if we are in VMnet mode. just close the device.
|
|
|
|
*/
|
|
|
|
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2000-07-24 15:32:26 +00:00
|
|
|
if (((tp->tap_flags & TAP_VMNET) == 0) && (ifp->if_flags & IFF_UP)) {
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
s = splimp();
|
|
|
|
if_down(ifp);
|
2005-08-09 10:20:02 +00:00
|
|
|
if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
|
2000-07-24 15:32:26 +00:00
|
|
|
TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
|
2005-05-25 13:52:03 +00:00
|
|
|
rtinit(ifa, (int)RTM_DELETE, 0);
|
2000-07-20 17:01:10 +00:00
|
|
|
}
|
2005-05-25 13:52:03 +00:00
|
|
|
if_purgeaddrs(ifp);
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
|
2000-07-20 17:01:10 +00:00
|
|
|
}
|
|
|
|
splx(s);
|
2004-03-17 01:09:59 +00:00
|
|
|
} else
|
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2002-05-06 19:31:28 +00:00
|
|
|
funsetown(&tp->tap_sigio);
|
2003-11-09 09:17:26 +00:00
|
|
|
selwakeuppri(&tp->tap_rsel, PZERO+1);
|
2006-03-16 18:22:01 +00:00
|
|
|
KNOTE_UNLOCKED(&tp->tap_rsel.si_note, 0);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
tp->tap_flags &= ~TAP_OPEN;
|
|
|
|
tp->tap_pid = 0;
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s is closed. minor = %#x\n",
|
|
|
|
ifp->if_xname, minor(dev));
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
} /* tapclose */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tapifinit
|
|
|
|
*
|
|
|
|
* network interface initialization function
|
|
|
|
*/
|
|
|
|
static void
|
2006-03-16 18:22:01 +00:00
|
|
|
tapifinit(void *xtp)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
|
|
|
struct tap_softc *tp = (struct tap_softc *)xtp;
|
2005-06-10 16:49:24 +00:00
|
|
|
struct ifnet *ifp = tp->tap_ifp;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("initializing %s\n", ifp->if_xname);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags |= IFF_DRV_RUNNING;
|
|
|
|
ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
/* attempt to start output */
|
|
|
|
tapifstart(ifp);
|
|
|
|
} /* tapifinit */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tapifioctl
|
|
|
|
*
|
|
|
|
* Process an ioctl request on network interface
|
|
|
|
*/
|
2002-10-16 10:45:53 +00:00
|
|
|
static int
|
2006-03-16 18:22:01 +00:00
|
|
|
tapifioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
2006-07-15 02:13:05 +00:00
|
|
|
struct tap_softc *tp = ifp->if_softc;
|
2000-07-20 17:01:10 +00:00
|
|
|
struct ifstat *ifs = NULL;
|
|
|
|
int s, dummy;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case SIOCSIFFLAGS: /* XXX -- just like vmnet does */
|
|
|
|
case SIOCADDMULTI:
|
|
|
|
case SIOCDELMULTI:
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
case SIOCGIFSTATUS:
|
|
|
|
s = splimp();
|
|
|
|
ifs = (struct ifstat *)data;
|
|
|
|
dummy = strlen(ifs->ascii);
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
if (tp->tap_pid != 0 && dummy < sizeof(ifs->ascii))
|
|
|
|
snprintf(ifs->ascii + dummy,
|
|
|
|
sizeof(ifs->ascii) - dummy,
|
|
|
|
"\tOpened by PID %d\n", tp->tap_pid);
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
splx(s);
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
default:
|
2002-11-15 00:00:15 +00:00
|
|
|
s = splimp();
|
|
|
|
dummy = ether_ioctl(ifp, cmd, data);
|
|
|
|
splx(s);
|
|
|
|
return (dummy);
|
2006-03-16 18:22:01 +00:00
|
|
|
/* NOT REACHED */
|
2000-07-20 17:01:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
} /* tapifioctl */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2003-03-02 15:56:49 +00:00
|
|
|
* tapifstart
|
|
|
|
*
|
2000-07-20 17:01:10 +00:00
|
|
|
* queue packets from higher level ready to put out
|
|
|
|
*/
|
|
|
|
static void
|
2006-03-16 18:22:01 +00:00
|
|
|
tapifstart(struct ifnet *ifp)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
|
|
|
struct tap_softc *tp = ifp->if_softc;
|
|
|
|
int s;
|
|
|
|
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s starting\n", ifp->if_xname);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2000-07-24 15:32:26 +00:00
|
|
|
/*
|
|
|
|
* do not junk pending output if we are in VMnet mode.
|
|
|
|
* XXX: can this do any harm because of queue overflow?
|
|
|
|
*/
|
|
|
|
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2003-03-02 15:56:49 +00:00
|
|
|
if (((tp->tap_flags & TAP_VMNET) == 0) &&
|
2000-07-24 15:32:26 +00:00
|
|
|
((tp->tap_flags & TAP_READY) != TAP_READY)) {
|
2000-07-20 17:01:10 +00:00
|
|
|
struct mbuf *m = NULL;
|
|
|
|
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
|
|
|
|
|
|
|
/* Unlocked read. */
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s not ready, tap_flags = 0x%x\n", ifp->if_xname,
|
|
|
|
tp->tap_flags);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
s = splimp();
|
|
|
|
do {
|
|
|
|
IF_DEQUEUE(&ifp->if_snd, m);
|
|
|
|
if (m != NULL)
|
|
|
|
m_freem(m);
|
|
|
|
ifp->if_oerrors ++;
|
|
|
|
} while (m != NULL);
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
s = splimp();
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags |= IFF_DRV_OACTIVE;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
if (ifp->if_snd.ifq_len != 0) {
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
if (tp->tap_flags & TAP_RWAIT) {
|
|
|
|
tp->tap_flags &= ~TAP_RWAIT;
|
2003-03-02 16:54:40 +00:00
|
|
|
wakeup(tp);
|
2000-07-20 17:01:10 +00:00
|
|
|
}
|
|
|
|
|
2004-03-17 01:09:59 +00:00
|
|
|
if ((tp->tap_flags & TAP_ASYNC) && (tp->tap_sigio != NULL)) {
|
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2002-05-01 20:44:46 +00:00
|
|
|
pgsigio(&tp->tap_sigio, SIGIO, 0);
|
2004-03-17 01:09:59 +00:00
|
|
|
} else
|
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2003-11-09 09:17:26 +00:00
|
|
|
selwakeuppri(&tp->tap_rsel, PZERO+1);
|
2006-03-16 18:22:01 +00:00
|
|
|
KNOTE_UNLOCKED(&tp->tap_rsel.si_note, 0);
|
2000-07-20 17:01:10 +00:00
|
|
|
ifp->if_opackets ++; /* obytes are counted in ether_output */
|
|
|
|
}
|
|
|
|
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
|
2000-07-20 17:01:10 +00:00
|
|
|
splx(s);
|
|
|
|
} /* tapifstart */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tapioctl
|
|
|
|
*
|
|
|
|
* the cdevsw interface is now pretty minimal
|
|
|
|
*/
|
|
|
|
static int
|
2006-03-16 18:22:01 +00:00
|
|
|
tapioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
|
|
|
struct tap_softc *tp = dev->si_drv1;
|
2005-06-10 16:49:24 +00:00
|
|
|
struct ifnet *ifp = tp->tap_ifp;
|
2003-03-02 15:56:49 +00:00
|
|
|
struct tapinfo *tapp = NULL;
|
2000-07-20 17:01:10 +00:00
|
|
|
int s;
|
2002-08-18 07:05:00 +00:00
|
|
|
int f;
|
2006-09-27 19:57:02 +00:00
|
|
|
#if defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD5) || \
|
|
|
|
defined(COMPAT_FREEBSD4)
|
|
|
|
int ival;
|
|
|
|
#endif
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
switch (cmd) {
|
2003-03-02 15:56:49 +00:00
|
|
|
case TAPSIFINFO:
|
2000-07-20 17:01:10 +00:00
|
|
|
s = splimp();
|
2003-03-02 15:56:49 +00:00
|
|
|
tapp = (struct tapinfo *)data;
|
|
|
|
ifp->if_mtu = tapp->mtu;
|
|
|
|
ifp->if_type = tapp->type;
|
|
|
|
ifp->if_baudrate = tapp->baudrate;
|
2000-07-20 17:01:10 +00:00
|
|
|
splx(s);
|
2003-03-02 15:56:49 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2003-03-02 15:56:49 +00:00
|
|
|
case TAPGIFINFO:
|
|
|
|
tapp = (struct tapinfo *)data;
|
|
|
|
tapp->mtu = ifp->if_mtu;
|
|
|
|
tapp->type = ifp->if_type;
|
|
|
|
tapp->baudrate = ifp->if_baudrate;
|
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
case TAPSDEBUG:
|
2006-05-30 20:08:12 +00:00
|
|
|
tapdebug = *(int *)data;
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
case TAPGDEBUG:
|
2006-05-30 20:08:12 +00:00
|
|
|
*(int *)data = tapdebug;
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
case FIONBIO:
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
case FIOASYNC:
|
2000-07-24 15:32:26 +00:00
|
|
|
s = splimp();
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2006-05-30 20:08:12 +00:00
|
|
|
if (*(int *)data)
|
2000-07-20 17:01:10 +00:00
|
|
|
tp->tap_flags |= TAP_ASYNC;
|
|
|
|
else
|
|
|
|
tp->tap_flags &= ~TAP_ASYNC;
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2000-07-24 15:32:26 +00:00
|
|
|
splx(s);
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
case FIONREAD:
|
|
|
|
s = splimp();
|
|
|
|
if (ifp->if_snd.ifq_head) {
|
|
|
|
struct mbuf *mb = ifp->if_snd.ifq_head;
|
|
|
|
|
2006-05-30 20:08:12 +00:00
|
|
|
for(*(int *)data = 0;mb != NULL;mb = mb->m_next)
|
|
|
|
*(int *)data += mb->m_len;
|
2001-09-05 01:06:21 +00:00
|
|
|
} else
|
2006-05-30 20:08:12 +00:00
|
|
|
*(int *)data = 0;
|
2000-07-20 17:01:10 +00:00
|
|
|
splx(s);
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
case FIOSETOWN:
|
2006-05-30 20:08:12 +00:00
|
|
|
return (fsetown(*(int *)data, &tp->tap_sigio));
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
case FIOGETOWN:
|
2006-05-30 20:08:12 +00:00
|
|
|
*(int *)data = fgetown(&tp->tap_sigio);
|
2000-07-20 17:01:10 +00:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
/* this is deprecated, FIOSETOWN should be used instead */
|
|
|
|
case TIOCSPGRP:
|
2006-05-30 20:08:12 +00:00
|
|
|
return (fsetown(-(*(int *)data), &tp->tap_sigio));
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
/* this is deprecated, FIOGETOWN should be used instead */
|
|
|
|
case TIOCGPGRP:
|
2006-05-30 20:08:12 +00:00
|
|
|
*(int *)data = -fgetown(&tp->tap_sigio);
|
2000-07-20 17:01:10 +00:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
/* VMware/VMnet port ioctl's */
|
|
|
|
|
|
|
|
case SIOCGIFFLAGS: /* get ifnet flags */
|
|
|
|
bcopy(&ifp->if_flags, data, sizeof(ifp->if_flags));
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2006-09-27 19:57:02 +00:00
|
|
|
#if defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD5) || \
|
|
|
|
defined(COMPAT_FREEBSD4)
|
|
|
|
case _IO('V', 0):
|
|
|
|
ival = IOCPARM_IVAL(data);
|
|
|
|
data = (caddr_t)&ival;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
#endif
|
2001-09-05 01:06:21 +00:00
|
|
|
case VMIO_SIOCSIFFLAGS: /* VMware/VMnet SIOCSIFFLAGS */
|
2006-09-27 19:57:02 +00:00
|
|
|
f = *(int *)data;
|
2000-07-20 17:01:10 +00:00
|
|
|
f &= 0x0fff;
|
|
|
|
f &= ~IFF_CANTCHANGE;
|
|
|
|
f |= IFF_UP;
|
|
|
|
|
|
|
|
s = splimp();
|
|
|
|
ifp->if_flags = f | (ifp->if_flags & IFF_CANTCHANGE);
|
|
|
|
splx(s);
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2000-07-25 23:50:30 +00:00
|
|
|
case OSIOCGIFADDR: /* get MAC address of the remote side */
|
2000-07-20 17:01:10 +00:00
|
|
|
case SIOCGIFADDR:
|
2004-03-18 09:55:11 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2000-07-25 23:50:30 +00:00
|
|
|
bcopy(tp->ether_addr, data, sizeof(tp->ether_addr));
|
2004-03-18 09:55:11 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2000-07-25 23:50:30 +00:00
|
|
|
case SIOCSIFADDR: /* set MAC address of the remote side */
|
2004-03-18 09:55:11 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2000-07-25 23:50:30 +00:00
|
|
|
bcopy(data, tp->ether_addr, sizeof(tp->ether_addr));
|
2004-03-18 09:55:11 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2001-09-05 01:06:21 +00:00
|
|
|
break;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
return (ENOTTY);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
} /* tapioctl */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tapread
|
|
|
|
*
|
|
|
|
* the cdevsw read interface - reads a packet at a time, or at
|
|
|
|
* least as much of a packet as can be read
|
|
|
|
*/
|
|
|
|
static int
|
2006-03-16 18:22:01 +00:00
|
|
|
tapread(struct cdev *dev, struct uio *uio, int flag)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
|
|
|
struct tap_softc *tp = dev->si_drv1;
|
2005-06-10 16:49:24 +00:00
|
|
|
struct ifnet *ifp = tp->tap_ifp;
|
2002-02-05 02:00:56 +00:00
|
|
|
struct mbuf *m = NULL;
|
2000-07-20 17:01:10 +00:00
|
|
|
int error = 0, len, s;
|
|
|
|
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s reading, minor = %#x\n", ifp->if_xname, minor(dev));
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
if ((tp->tap_flags & TAP_READY) != TAP_READY) {
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
|
|
|
|
|
|
|
/* Unlocked read. */
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s not ready. minor = %#x, tap_flags = 0x%x\n",
|
|
|
|
ifp->if_xname, minor(dev), tp->tap_flags);
|
2000-07-24 15:32:26 +00:00
|
|
|
|
2000-07-20 17:01:10 +00:00
|
|
|
return (EHOSTDOWN);
|
|
|
|
}
|
|
|
|
|
|
|
|
tp->tap_flags &= ~TAP_RWAIT;
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
/* sleep until we get a packet */
|
|
|
|
do {
|
|
|
|
s = splimp();
|
2002-02-05 02:00:56 +00:00
|
|
|
IF_DEQUEUE(&ifp->if_snd, m);
|
2000-07-20 17:01:10 +00:00
|
|
|
splx(s);
|
|
|
|
|
2002-02-05 02:00:56 +00:00
|
|
|
if (m == NULL) {
|
2004-12-22 17:38:43 +00:00
|
|
|
if (flag & O_NONBLOCK)
|
2000-07-20 17:01:10 +00:00
|
|
|
return (EWOULDBLOCK);
|
2003-03-02 15:56:49 +00:00
|
|
|
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_lock(&tp->tap_mtx);
|
2000-07-20 17:01:10 +00:00
|
|
|
tp->tap_flags |= TAP_RWAIT;
|
2004-03-17 01:09:59 +00:00
|
|
|
mtx_unlock(&tp->tap_mtx);
|
2003-03-02 16:54:40 +00:00
|
|
|
error = tsleep(tp,PCATCH|(PZERO+1),"taprd",0);
|
2000-07-20 17:01:10 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
2002-02-05 02:00:56 +00:00
|
|
|
} while (m == NULL);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
/* feed packet to bpf */
|
2002-11-15 00:00:15 +00:00
|
|
|
BPF_MTAP(ifp, m);
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
/* xfer packet to user space */
|
2002-02-05 02:00:56 +00:00
|
|
|
while ((m != NULL) && (uio->uio_resid > 0) && (error == 0)) {
|
|
|
|
len = min(uio->uio_resid, m->m_len);
|
2000-07-20 17:01:10 +00:00
|
|
|
if (len == 0)
|
|
|
|
break;
|
|
|
|
|
2003-03-02 15:50:23 +00:00
|
|
|
error = uiomove(mtod(m, void *), len, uio);
|
2002-02-05 02:00:56 +00:00
|
|
|
m = m_free(m);
|
2000-07-20 17:01:10 +00:00
|
|
|
}
|
|
|
|
|
2002-02-05 02:00:56 +00:00
|
|
|
if (m != NULL) {
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s dropping mbuf, minor = %#x\n", ifp->if_xname,
|
|
|
|
minor(dev));
|
2002-02-05 02:00:56 +00:00
|
|
|
m_freem(m);
|
2000-07-20 17:01:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
} /* tapread */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tapwrite
|
|
|
|
*
|
|
|
|
* the cdevsw write interface - an atomic write is a packet - or else!
|
|
|
|
*/
|
|
|
|
static int
|
2006-03-16 18:22:01 +00:00
|
|
|
tapwrite(struct cdev *dev, struct uio *uio, int flag)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
2007-02-03 02:57:45 +00:00
|
|
|
struct ether_header *eh;
|
2000-07-20 17:01:10 +00:00
|
|
|
struct tap_softc *tp = dev->si_drv1;
|
2005-06-10 16:49:24 +00:00
|
|
|
struct ifnet *ifp = tp->tap_ifp;
|
2004-10-31 17:39:46 +00:00
|
|
|
struct mbuf *m;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s writting, minor = %#x\n",
|
|
|
|
ifp->if_xname, minor(dev));
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
if (uio->uio_resid == 0)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
if ((uio->uio_resid < 0) || (uio->uio_resid > TAPMRU)) {
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s invalid packet len = %d, minor = %#x\n",
|
|
|
|
ifp->if_xname, uio->uio_resid, minor(dev));
|
2000-07-24 15:32:26 +00:00
|
|
|
|
2000-07-20 17:01:10 +00:00
|
|
|
return (EIO);
|
|
|
|
}
|
2004-10-31 17:39:46 +00:00
|
|
|
|
2006-11-02 17:37:22 +00:00
|
|
|
if ((m = m_uiotombuf(uio, M_DONTWAIT, 0, ETHER_ALIGN,
|
|
|
|
M_PKTHDR)) == NULL) {
|
2000-07-20 17:01:10 +00:00
|
|
|
ifp->if_ierrors ++;
|
2006-11-04 20:54:37 +00:00
|
|
|
return (ENOBUFS);
|
2000-07-20 17:01:10 +00:00
|
|
|
}
|
|
|
|
|
2004-10-31 17:39:46 +00:00
|
|
|
m->m_pkthdr.rcvif = ifp;
|
2003-03-02 15:56:49 +00:00
|
|
|
|
2007-02-03 02:57:45 +00:00
|
|
|
/*
|
|
|
|
* Only pass a unicast frame to ether_input(), if it would actually
|
|
|
|
* have been received by non-virtual hardware.
|
|
|
|
*/
|
|
|
|
if (m->m_len < sizeof(struct ether_header)) {
|
|
|
|
m_freem(m);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
eh = mtod(m, struct ether_header *);
|
|
|
|
|
|
|
|
if (eh && (ifp->if_flags & IFF_PROMISC) == 0 &&
|
|
|
|
!ETHER_IS_MULTICAST(eh->ether_dhost) &&
|
|
|
|
bcmp(eh->ether_dhost, IF_LLADDR(ifp), ETHER_ADDR_LEN) != 0) {
|
|
|
|
m_freem(m);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2002-11-15 00:00:15 +00:00
|
|
|
/* Pass packet up to parent. */
|
2004-10-31 17:39:46 +00:00
|
|
|
(*ifp->if_input)(ifp, m);
|
2002-11-15 00:00:15 +00:00
|
|
|
ifp->if_ipackets ++; /* ibytes are counted in parent */
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
} /* tapwrite */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tappoll
|
|
|
|
*
|
|
|
|
* the poll interface, this is only useful on reads
|
|
|
|
* really. the write detect always returns true, write never blocks
|
|
|
|
* anyway, it either accepts the packet or drops it
|
|
|
|
*/
|
|
|
|
static int
|
2006-03-16 18:22:01 +00:00
|
|
|
tappoll(struct cdev *dev, int events, struct thread *td)
|
2000-07-20 17:01:10 +00:00
|
|
|
{
|
|
|
|
struct tap_softc *tp = dev->si_drv1;
|
2005-06-10 16:49:24 +00:00
|
|
|
struct ifnet *ifp = tp->tap_ifp;
|
2003-03-02 15:56:49 +00:00
|
|
|
int s, revents = 0;
|
2000-07-20 17:01:10 +00:00
|
|
|
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s polling, minor = %#x\n",
|
|
|
|
ifp->if_xname, minor(dev));
|
2000-07-20 17:01:10 +00:00
|
|
|
|
|
|
|
s = splimp();
|
|
|
|
if (events & (POLLIN | POLLRDNORM)) {
|
|
|
|
if (ifp->if_snd.ifq_len > 0) {
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s have data in queue. len = %d, " \
|
|
|
|
"minor = %#x\n", ifp->if_xname,
|
2001-09-05 01:06:21 +00:00
|
|
|
ifp->if_snd.ifq_len, minor(dev));
|
2000-07-24 15:32:26 +00:00
|
|
|
|
2000-07-20 17:01:10 +00:00
|
|
|
revents |= (events & (POLLIN | POLLRDNORM));
|
2001-09-05 01:06:21 +00:00
|
|
|
} else {
|
2003-10-31 18:32:15 +00:00
|
|
|
TAPDEBUG("%s waiting for data, minor = %#x\n",
|
|
|
|
ifp->if_xname, minor(dev));
|
2000-07-24 15:32:26 +00:00
|
|
|
|
2001-09-21 22:46:54 +00:00
|
|
|
selrecord(td, &tp->tap_rsel);
|
2000-07-20 17:01:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (events & (POLLOUT | POLLWRNORM))
|
|
|
|
revents |= (events & (POLLOUT | POLLWRNORM));
|
|
|
|
|
|
|
|
splx(s);
|
|
|
|
return (revents);
|
|
|
|
} /* tappoll */
|
2006-03-16 18:22:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tap_kqfilter
|
|
|
|
*
|
|
|
|
* support for kevent() system call
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
tapkqfilter(struct cdev *dev, struct knote *kn)
|
|
|
|
{
|
|
|
|
int s;
|
|
|
|
struct tap_softc *tp = dev->si_drv1;
|
|
|
|
struct ifnet *ifp = tp->tap_ifp;
|
|
|
|
|
|
|
|
s = splimp();
|
|
|
|
switch (kn->kn_filter) {
|
|
|
|
case EVFILT_READ:
|
|
|
|
TAPDEBUG("%s kqfilter: EVFILT_READ, minor = %#x\n",
|
|
|
|
ifp->if_xname, minor(dev));
|
|
|
|
kn->kn_fop = &tap_read_filterops;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EVFILT_WRITE:
|
|
|
|
TAPDEBUG("%s kqfilter: EVFILT_WRITE, minor = %#x\n",
|
|
|
|
ifp->if_xname, minor(dev));
|
|
|
|
kn->kn_fop = &tap_write_filterops;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
TAPDEBUG("%s kqfilter: invalid filter, minor = %#x\n",
|
|
|
|
ifp->if_xname, minor(dev));
|
|
|
|
splx(s);
|
|
|
|
return (EINVAL);
|
|
|
|
/* NOT REACHED */
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
kn->kn_hook = (caddr_t) dev;
|
|
|
|
knlist_add(&tp->tap_rsel.si_note, kn, 0);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
} /* tapkqfilter */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tap_kqread
|
|
|
|
*
|
|
|
|
* Return true if there is data in the interface queue
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
tapkqread(struct knote *kn, long hint)
|
|
|
|
{
|
|
|
|
int ret, s;
|
|
|
|
struct cdev *dev = (struct cdev *)(kn->kn_hook);
|
|
|
|
struct tap_softc *tp = dev->si_drv1;
|
|
|
|
struct ifnet *ifp = tp->tap_ifp;
|
|
|
|
|
|
|
|
s = splimp();
|
|
|
|
if ((kn->kn_data = ifp->if_snd.ifq_len) > 0) {
|
|
|
|
TAPDEBUG("%s have data in queue. len = %d, minor = %#x\n",
|
|
|
|
ifp->if_xname, ifp->if_snd.ifq_len, minor(dev));
|
|
|
|
ret = 1;
|
|
|
|
} else {
|
|
|
|
TAPDEBUG("%s waiting for data, minor = %#x\n",
|
|
|
|
ifp->if_xname, minor(dev));
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
} /* tapkqread */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tap_kqwrite
|
|
|
|
*
|
|
|
|
* Always can write. Return the MTU in kn->data
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
tapkqwrite(struct knote *kn, long hint)
|
|
|
|
{
|
|
|
|
int s;
|
|
|
|
struct tap_softc *tp = ((struct cdev *) kn->kn_hook)->si_drv1;
|
|
|
|
struct ifnet *ifp = tp->tap_ifp;
|
|
|
|
|
|
|
|
s = splimp();
|
|
|
|
kn->kn_data = ifp->if_mtu;
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
} /* tapkqwrite */
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
tapkqdetach(struct knote *kn)
|
|
|
|
{
|
|
|
|
struct tap_softc *tp = ((struct cdev *) kn->kn_hook)->si_drv1;
|
|
|
|
|
|
|
|
knlist_remove(&tp->tap_rsel.si_note, kn, 0);
|
|
|
|
} /* tapkqdetach */
|
|
|
|
|