*** Summary ***
When a link-layer address changes (e.g., ifconfig ex0 link
02:de:ad:be:ef:02 active), send a gratuitous ARP and/or a Neighbor
Advertisement to update the network-/link-layer address bindings
on our LAN peers.
Refuse a change of ethernet address to the address 00:00:00:00:00:00
or to any multicast/broadcast address. (Thanks matt@.)
Reorder ifnet ioctl operations so that driver ioctls may inherit
the functions of their "class"---ether_ioctl(), fddi_ioctl(), et
cetera---and the class ioctls may inherit from the generic ioctl,
ifioctl_common(), but both driver- and class-ioctls may override
the generic behavior. Make network drivers share more code.
Distinguish a "factory" link-layer address from others for the
purposes of both protecting that address from deletion and computing
EUI64.
Return consistent, appropriate error codes from network drivers.
Improve readability. KNF.
*** Details ***
In if_attach(), always initialize the interface ioctl routine,
ifnet->if_ioctl, if the driver has not already initialized it.
Delete if_ioctl == NULL tests everywhere else, because it cannot
happen.
In the ioctl routines of network interfaces, inherit common ioctl
behaviors by calling either ifioctl_common() or whichever ioctl
routine is appropriate for the class of interface---e.g., ether_ioctl()
for ethernets.
Stop (ab)using SIOCSIFADDR and start to use SIOCINITIFADDR. In
the user->kernel interface, SIOCSIFADDR's argument was an ifreq,
but on the protocol->ifnet interface, SIOCSIFADDR's argument was
an ifaddr. That was confusing, and it would work against me as I
make it possible for a network interface to overload most ioctls.
On the protocol->ifnet interface, replace SIOCSIFADDR with
SIOCINITIFADDR. In ifioctl(), return EPERM if userland tries to
invoke SIOCINITIFADDR.
In ifioctl(), give the interface the first shot at handling most
interface ioctls, and give the protocol the second shot, instead
of the other way around. Finally, let compatibility code (COMPAT_OSOCK)
take a shot.
Pull device initialization out of switch statements under
SIOCINITIFADDR. For example, pull ..._init() out of any switch
statement that looks like this:
switch (...->sa_family) {
case ...:
..._init();
...
break;
...
default:
..._init();
...
break;
}
Rewrite many if-else clauses that handle all permutations of IFF_UP
and IFF_RUNNING to use a switch statement,
switch (x & (IFF_UP|IFF_RUNNING)) {
case 0:
...
break;
case IFF_RUNNING:
...
break;
case IFF_UP:
...
break;
case IFF_UP|IFF_RUNNING:
...
break;
}
unifdef lots of code containing #ifdef FreeBSD, #ifdef NetBSD, and
#ifdef SIOCSIFMTU, especially in fwip(4) and in ndis(4).
In ipw(4), remove an if_set_sadl() call that is out of place.
In nfe(4), reuse the jumbo MTU logic in ether_ioctl().
Let ethernets register a callback for setting h/w state such as
promiscuous mode and the multicast filter in accord with a change
in the if_flags: ether_set_ifflags_cb() registers a callback that
returns ENETRESET if the caller should reset the ethernet by calling
if_init(), 0 on success, != 0 on failure. Pull common code from
ex(4), gem(4), nfe(4), sip(4), tlp(4), vge(4) into ether_ioctl(),
and register if_flags callbacks for those drivers.
Return ENOTTY instead of EINVAL for inappropriate ioctls. In
zyd(4), use ENXIO instead of ENOTTY to indicate that the device is
not any longer attached.
Add to if_set_sadl() a boolean 'factory' argument that indicates
whether a link-layer address was assigned by the factory or some
other source. In a comment, recommend using the factory address
for generating an EUI64, and update in6_get_hw_ifid() to prefer a
factory address to any other link-layer address.
Add a routing message, RTM_LLINFO_UPD, that tells protocols to
update the binding of network-layer addresses to link-layer addresses.
Implement this message in IPv4 and IPv6 by sending a gratuitous
ARP or a neighbor advertisement, respectively. Generate RTM_LLINFO_UPD
messages on a change of an interface's link-layer address.
In ether_ioctl(), do not let SIOCALIFADDR set a link-layer address
that is broadcast/multicast or equal to 00:00:00:00:00:00.
Make ether_ioctl() call ifioctl_common() to handle ioctls that it
does not understand.
In gif(4), initialize if_softc and use it, instead of assuming that
the gif_softc and ifp overlap.
Let ifioctl_common() handle SIOCGIFADDR.
Sprinkle rtcache_invariants(), which checks on DIAGNOSTIC kernels
that certain invariants on a struct route are satisfied.
In agr(4), rewrite agr_ioctl_filter() to be a bit more explicit
about the ioctls that we do not allow on an agr(4) member interface.
bzero -> memset. Delete unnecessary casts to void *. Use
sockaddr_in_init() and sockaddr_in6_init(). Compare pointers with
NULL instead of "testing truth". Replace some instances of (type
*)0 with NULL. Change some K&R prototypes to ANSI C, and join
lines.
2008-11-07 03:20:01 +03:00
|
|
|
/* $NetBSD: if_tun.c,v 1.108 2008/11/07 00:20:13 dyoung Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1993-12-13 08:06:33 +03:00
|
|
|
* Copyright (c) 1988, Julian Onions <jpo@cs.nott.ac.uk>
|
|
|
|
* Nottingham University 1987.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* This source may be freely distributed, however I would be interested
|
|
|
|
* in any changes that are made.
|
|
|
|
*
|
|
|
|
* This driver takes packets off the IP i/f and hands them up to a
|
1996-02-05 20:39:25 +03:00
|
|
|
* user process to have its wicked way with. This driver has its
|
1993-03-21 12:45:37 +03:00
|
|
|
* roots in a similar driver written by Phil Cockcroft (formerly) at
|
1996-09-07 16:40:22 +04:00
|
|
|
* UCL. This driver is based much more on read/write/poll mode of
|
1993-03-21 12:45:37 +03:00
|
|
|
* operation though.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 02:49:33 +03:00
|
|
|
#include <sys/cdefs.h>
|
*** Summary ***
When a link-layer address changes (e.g., ifconfig ex0 link
02:de:ad:be:ef:02 active), send a gratuitous ARP and/or a Neighbor
Advertisement to update the network-/link-layer address bindings
on our LAN peers.
Refuse a change of ethernet address to the address 00:00:00:00:00:00
or to any multicast/broadcast address. (Thanks matt@.)
Reorder ifnet ioctl operations so that driver ioctls may inherit
the functions of their "class"---ether_ioctl(), fddi_ioctl(), et
cetera---and the class ioctls may inherit from the generic ioctl,
ifioctl_common(), but both driver- and class-ioctls may override
the generic behavior. Make network drivers share more code.
Distinguish a "factory" link-layer address from others for the
purposes of both protecting that address from deletion and computing
EUI64.
Return consistent, appropriate error codes from network drivers.
Improve readability. KNF.
*** Details ***
In if_attach(), always initialize the interface ioctl routine,
ifnet->if_ioctl, if the driver has not already initialized it.
Delete if_ioctl == NULL tests everywhere else, because it cannot
happen.
In the ioctl routines of network interfaces, inherit common ioctl
behaviors by calling either ifioctl_common() or whichever ioctl
routine is appropriate for the class of interface---e.g., ether_ioctl()
for ethernets.
Stop (ab)using SIOCSIFADDR and start to use SIOCINITIFADDR. In
the user->kernel interface, SIOCSIFADDR's argument was an ifreq,
but on the protocol->ifnet interface, SIOCSIFADDR's argument was
an ifaddr. That was confusing, and it would work against me as I
make it possible for a network interface to overload most ioctls.
On the protocol->ifnet interface, replace SIOCSIFADDR with
SIOCINITIFADDR. In ifioctl(), return EPERM if userland tries to
invoke SIOCINITIFADDR.
In ifioctl(), give the interface the first shot at handling most
interface ioctls, and give the protocol the second shot, instead
of the other way around. Finally, let compatibility code (COMPAT_OSOCK)
take a shot.
Pull device initialization out of switch statements under
SIOCINITIFADDR. For example, pull ..._init() out of any switch
statement that looks like this:
switch (...->sa_family) {
case ...:
..._init();
...
break;
...
default:
..._init();
...
break;
}
Rewrite many if-else clauses that handle all permutations of IFF_UP
and IFF_RUNNING to use a switch statement,
switch (x & (IFF_UP|IFF_RUNNING)) {
case 0:
...
break;
case IFF_RUNNING:
...
break;
case IFF_UP:
...
break;
case IFF_UP|IFF_RUNNING:
...
break;
}
unifdef lots of code containing #ifdef FreeBSD, #ifdef NetBSD, and
#ifdef SIOCSIFMTU, especially in fwip(4) and in ndis(4).
In ipw(4), remove an if_set_sadl() call that is out of place.
In nfe(4), reuse the jumbo MTU logic in ether_ioctl().
Let ethernets register a callback for setting h/w state such as
promiscuous mode and the multicast filter in accord with a change
in the if_flags: ether_set_ifflags_cb() registers a callback that
returns ENETRESET if the caller should reset the ethernet by calling
if_init(), 0 on success, != 0 on failure. Pull common code from
ex(4), gem(4), nfe(4), sip(4), tlp(4), vge(4) into ether_ioctl(),
and register if_flags callbacks for those drivers.
Return ENOTTY instead of EINVAL for inappropriate ioctls. In
zyd(4), use ENXIO instead of ENOTTY to indicate that the device is
not any longer attached.
Add to if_set_sadl() a boolean 'factory' argument that indicates
whether a link-layer address was assigned by the factory or some
other source. In a comment, recommend using the factory address
for generating an EUI64, and update in6_get_hw_ifid() to prefer a
factory address to any other link-layer address.
Add a routing message, RTM_LLINFO_UPD, that tells protocols to
update the binding of network-layer addresses to link-layer addresses.
Implement this message in IPv4 and IPv6 by sending a gratuitous
ARP or a neighbor advertisement, respectively. Generate RTM_LLINFO_UPD
messages on a change of an interface's link-layer address.
In ether_ioctl(), do not let SIOCALIFADDR set a link-layer address
that is broadcast/multicast or equal to 00:00:00:00:00:00.
Make ether_ioctl() call ifioctl_common() to handle ioctls that it
does not understand.
In gif(4), initialize if_softc and use it, instead of assuming that
the gif_softc and ifp overlap.
Let ifioctl_common() handle SIOCGIFADDR.
Sprinkle rtcache_invariants(), which checks on DIAGNOSTIC kernels
that certain invariants on a struct route are satisfied.
In agr(4), rewrite agr_ioctl_filter() to be a bit more explicit
about the ioctls that we do not allow on an agr(4) member interface.
bzero -> memset. Delete unnecessary casts to void *. Use
sockaddr_in_init() and sockaddr_in6_init(). Compare pointers with
NULL instead of "testing truth". Replace some instances of (type
*)0 with NULL. Change some K&R prototypes to ANSI C, and join
lines.
2008-11-07 03:20:01 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.108 2008/11/07 00:20:13 dyoung Exp $");
|
1993-12-13 08:06:33 +03:00
|
|
|
|
1998-07-05 04:51:04 +04:00
|
|
|
#include "opt_inet.h"
|
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
#include <sys/param.h>
|
1993-12-13 08:06:33 +03:00
|
|
|
#include <sys/proc.h>
|
1993-11-14 23:07:20 +03:00
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/syslog.h>
|
|
|
|
#include <sys/select.h>
|
1996-09-07 16:40:22 +04:00
|
|
|
#include <sys/poll.h>
|
1993-12-13 08:06:33 +03:00
|
|
|
#include <sys/file.h>
|
1996-02-14 00:59:53 +03:00
|
|
|
#include <sys/signalvar.h>
|
1996-03-31 00:57:30 +03:00
|
|
|
#include <sys/conf.h>
|
2006-05-15 01:19:33 +04:00
|
|
|
#include <sys/kauth.h>
|
2008-01-05 00:17:40 +03:00
|
|
|
#include <sys/simplelock.h>
|
2007-10-19 15:59:34 +04:00
|
|
|
#include <sys/cpu.h>
|
1993-12-24 06:20:59 +03:00
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
#include <net/if.h>
|
2004-05-13 15:31:09 +04:00
|
|
|
#include <net/if_types.h>
|
1993-11-14 23:07:20 +03:00
|
|
|
#include <net/netisr.h>
|
|
|
|
#include <net/route.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-03-15 21:09:08 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef INET
|
1993-11-14 23:07:20 +03:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/in_var.h>
|
|
|
|
#include <netinet/ip.h>
|
1997-03-15 21:09:08 +03:00
|
|
|
#include <netinet/if_inarp.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1993-12-13 08:06:33 +03:00
|
|
|
#include "bpfilter.h"
|
|
|
|
#if NBPFILTER > 0
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <net/bpf.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <net/if_tun.h>
|
|
|
|
|
1996-10-13 06:10:01 +04:00
|
|
|
#define TUNDEBUG if (tundebug) printf
|
1993-11-14 23:07:20 +03:00
|
|
|
int tundebug = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
extern int ifqmaxlen;
|
2005-12-12 02:05:24 +03:00
|
|
|
void tunattach(int);
|
|
|
|
|
|
|
|
static LIST_HEAD(, tun_softc) tun_softc_list;
|
|
|
|
static LIST_HEAD(, tun_softc) tunz_softc_list;
|
2001-10-31 23:08:17 +03:00
|
|
|
static struct simplelock tun_softc_lock;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2007-03-04 08:59:00 +03:00
|
|
|
static int tun_ioctl(struct ifnet *, u_long, void *);
|
KNF: de-__P, bzero -> memset, bcmp -> memcmp. Remove extraneous
parentheses in return statements.
Cosmetic: don't open-code TAILQ_FOREACH().
Cosmetic: change types of variables to avoid oodles of casts: in
in6_src.c, avoid casts by changing several route_in6 pointers
to struct route pointers. Remove unnecessary casts to caddr_t
elsewhere.
Pave the way for eliminating address family-specific route caches:
soon, struct route will not embed a sockaddr, but it will hold
a reference to an external sockaddr, instead. We will set the
destination sockaddr using rtcache_setdst(). (I created a stub
for it, but it isn't used anywhere, yet.) rtcache_free() will
free the sockaddr. I have extracted from rtcache_free() a helper
subroutine, rtcache_clear(). rtcache_clear() will "forget" a
cached route, but it will not forget the destination by releasing
the sockaddr. I use rtcache_clear() instead of rtcache_free()
in rtcache_update(), because rtcache_update() is not supposed
to forget the destination.
Constify:
1 Introduce const accessor for route->ro_dst, rtcache_getdst().
2 Constify the 'dst' argument to ifnet->if_output(). This
led me to constify a lot of code called by output routines.
3 Constify the sockaddr argument to protosw->pr_ctlinput. This
led me to constify a lot of code called by ctlinput routines.
4 Introduce const macros for converting from a generic sockaddr
to family-specific sockaddrs, e.g., sockaddr_in: satocsin6,
satocsin, et cetera.
2007-02-18 01:34:07 +03:00
|
|
|
static int tun_output(struct ifnet *, struct mbuf *,
|
|
|
|
const struct sockaddr *, struct rtentry *rt);
|
2005-12-12 02:05:24 +03:00
|
|
|
static int tun_clone_create(struct if_clone *, int);
|
|
|
|
static int tun_clone_destroy(struct ifnet *);
|
1996-02-14 00:59:53 +03:00
|
|
|
|
2005-12-12 02:05:24 +03:00
|
|
|
static struct if_clone tun_cloner =
|
2001-10-31 23:08:17 +03:00
|
|
|
IF_CLONE_INITIALIZER("tun", tun_clone_create, tun_clone_destroy);
|
|
|
|
|
2005-12-12 02:05:24 +03:00
|
|
|
static void tunattach0(struct tun_softc *);
|
|
|
|
static void tuninit(struct tun_softc *);
|
2008-04-24 19:35:27 +04:00
|
|
|
static void tun_i_softintr(void *);
|
|
|
|
static void tun_o_softintr(void *);
|
2002-03-05 07:12:57 +03:00
|
|
|
#ifdef ALTQ
|
2005-12-12 02:05:24 +03:00
|
|
|
static void tunstart(struct ifnet *);
|
2002-03-05 07:12:57 +03:00
|
|
|
#endif
|
2005-12-12 02:05:24 +03:00
|
|
|
static struct tun_softc *tun_find_unit(dev_t);
|
|
|
|
static struct tun_softc *tun_find_zunit(int);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2005-12-12 02:05:24 +03:00
|
|
|
static dev_type_open(tunopen);
|
|
|
|
static dev_type_close(tunclose);
|
|
|
|
static dev_type_read(tunread);
|
|
|
|
static dev_type_write(tunwrite);
|
|
|
|
static dev_type_ioctl(tunioctl);
|
|
|
|
static dev_type_poll(tunpoll);
|
|
|
|
static dev_type_kqfilter(tunkqfilter);
|
2002-09-06 17:18:43 +04:00
|
|
|
|
|
|
|
const struct cdevsw tun_cdevsw = {
|
|
|
|
tunopen, tunclose, tunread, tunwrite, tunioctl,
|
2006-08-30 21:00:15 +04:00
|
|
|
nostop, notty, tunpoll, nommap, tunkqfilter, D_OTHER,
|
2002-09-06 17:18:43 +04:00
|
|
|
};
|
|
|
|
|
1993-12-13 08:06:33 +03:00
|
|
|
void
|
2006-11-16 04:32:37 +03:00
|
|
|
tunattach(int unused)
|
1993-12-13 08:06:33 +03:00
|
|
|
{
|
|
|
|
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_lock_init(&tun_softc_lock);
|
|
|
|
LIST_INIT(&tun_softc_list);
|
2004-05-14 17:23:12 +04:00
|
|
|
LIST_INIT(&tunz_softc_list);
|
2001-10-31 23:08:17 +03:00
|
|
|
if_clone_attach(&tun_cloner);
|
|
|
|
}
|
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
/*
|
|
|
|
* Find driver instance from dev_t.
|
|
|
|
* Call at splnet().
|
|
|
|
* Returns with tp locked (if found).
|
|
|
|
*/
|
|
|
|
static struct tun_softc *
|
2005-12-12 02:05:24 +03:00
|
|
|
tun_find_unit(dev_t dev)
|
2004-05-14 17:23:12 +04:00
|
|
|
{
|
|
|
|
struct tun_softc *tp;
|
|
|
|
int unit = minor(dev);
|
|
|
|
|
|
|
|
simple_lock(&tun_softc_lock);
|
|
|
|
LIST_FOREACH(tp, &tun_softc_list, tun_list)
|
|
|
|
if (unit == tp->tun_unit)
|
|
|
|
break;
|
|
|
|
if (tp)
|
|
|
|
simple_lock(&tp->tun_lock);
|
|
|
|
simple_unlock(&tun_softc_lock);
|
|
|
|
|
|
|
|
return (tp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find zombie driver instance by unit number.
|
|
|
|
* Call at splnet().
|
|
|
|
* Remove tp from list and return it unlocked (if found).
|
|
|
|
*/
|
|
|
|
static struct tun_softc *
|
2005-12-12 02:05:24 +03:00
|
|
|
tun_find_zunit(int unit)
|
2004-05-14 17:23:12 +04:00
|
|
|
{
|
|
|
|
struct tun_softc *tp;
|
|
|
|
|
|
|
|
simple_lock(&tun_softc_lock);
|
|
|
|
LIST_FOREACH(tp, &tunz_softc_list, tun_list)
|
|
|
|
if (unit == tp->tun_unit)
|
|
|
|
break;
|
|
|
|
if (tp)
|
|
|
|
LIST_REMOVE(tp, tun_list);
|
|
|
|
simple_unlock(&tun_softc_lock);
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (tp != NULL && (tp->tun_flags & (TUN_INITED|TUN_OPEN)) != TUN_OPEN)
|
|
|
|
printf("tun%d: inconsistent flags: %x\n", unit, tp->tun_flags);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return (tp);
|
|
|
|
}
|
|
|
|
|
2005-12-12 02:05:24 +03:00
|
|
|
static int
|
|
|
|
tun_clone_create(struct if_clone *ifc, int unit)
|
2001-10-31 23:08:17 +03:00
|
|
|
{
|
2004-05-14 17:23:12 +04:00
|
|
|
struct tun_softc *tp;
|
2001-10-31 23:08:17 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
if ((tp = tun_find_zunit(unit)) == NULL) {
|
|
|
|
/* Allocate a new instance */
|
2008-06-15 20:37:21 +04:00
|
|
|
tp = malloc(sizeof(*tp), M_DEVBUF, M_WAITOK|M_ZERO);
|
2001-10-31 23:08:17 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
tp->tun_unit = unit;
|
|
|
|
simple_lock_init(&tp->tun_lock);
|
2008-03-01 17:16:49 +03:00
|
|
|
selinit(&tp->tun_rsel);
|
|
|
|
selinit(&tp->tun_wsel);
|
2004-05-14 17:23:12 +04:00
|
|
|
} else {
|
|
|
|
/* Revive tunnel instance; clear ifp part */
|
|
|
|
(void)memset(&tp->tun_if, 0, sizeof(struct ifnet));
|
|
|
|
}
|
2001-10-31 23:08:17 +03:00
|
|
|
|
2008-06-15 20:37:21 +04:00
|
|
|
if_initname(&tp->tun_if, ifc->ifc_name, unit);
|
2004-05-14 17:23:12 +04:00
|
|
|
tunattach0(tp);
|
|
|
|
tp->tun_flags |= TUN_INITED;
|
2008-04-24 19:35:27 +04:00
|
|
|
tp->tun_osih = softint_establish(SOFTINT_CLOCK, tun_o_softintr, tp);
|
|
|
|
tp->tun_isih = softint_establish(SOFTINT_CLOCK, tun_i_softintr, tp);
|
2001-10-31 23:08:17 +03:00
|
|
|
|
|
|
|
simple_lock(&tun_softc_lock);
|
2004-05-14 17:23:12 +04:00
|
|
|
LIST_INSERT_HEAD(&tun_softc_list, tp, tun_list);
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_unlock(&tun_softc_lock);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2005-12-12 02:05:24 +03:00
|
|
|
static void
|
|
|
|
tunattach0(struct tun_softc *tp)
|
2001-10-31 23:08:17 +03:00
|
|
|
{
|
2004-05-14 17:23:12 +04:00
|
|
|
struct ifnet *ifp;
|
2001-10-31 23:08:17 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
ifp = &tp->tun_if;
|
|
|
|
ifp->if_softc = tp;
|
2001-10-31 23:08:17 +03:00
|
|
|
ifp->if_mtu = TUNMTU;
|
|
|
|
ifp->if_ioctl = tun_ioctl;
|
|
|
|
ifp->if_output = tun_output;
|
2002-03-05 07:12:57 +03:00
|
|
|
#ifdef ALTQ
|
|
|
|
ifp->if_start = tunstart;
|
|
|
|
#endif
|
2001-10-31 23:08:17 +03:00
|
|
|
ifp->if_flags = IFF_POINTOPOINT;
|
2004-05-13 15:31:09 +04:00
|
|
|
ifp->if_type = IFT_TUNNEL;
|
2001-10-31 23:08:17 +03:00
|
|
|
ifp->if_snd.ifq_maxlen = ifqmaxlen;
|
|
|
|
ifp->if_collisions = 0;
|
|
|
|
ifp->if_ierrors = 0;
|
|
|
|
ifp->if_oerrors = 0;
|
|
|
|
ifp->if_ipackets = 0;
|
|
|
|
ifp->if_opackets = 0;
|
2002-12-25 11:40:20 +03:00
|
|
|
ifp->if_ibytes = 0;
|
|
|
|
ifp->if_obytes = 0;
|
2001-10-31 23:08:17 +03:00
|
|
|
ifp->if_dlt = DLT_NULL;
|
2002-03-05 07:12:57 +03:00
|
|
|
IFQ_SET_READY(&ifp->if_snd);
|
2001-10-31 23:08:17 +03:00
|
|
|
if_attach(ifp);
|
|
|
|
if_alloc_sadl(ifp);
|
1993-12-13 08:06:33 +03:00
|
|
|
#if NBPFILTER > 0
|
2008-02-20 20:05:52 +03:00
|
|
|
bpfattach(ifp, DLT_NULL, sizeof(uint32_t));
|
1993-12-13 08:06:33 +03:00
|
|
|
#endif
|
2001-10-31 23:08:17 +03:00
|
|
|
}
|
|
|
|
|
2005-12-12 02:05:24 +03:00
|
|
|
static int
|
|
|
|
tun_clone_destroy(struct ifnet *ifp)
|
2001-10-31 23:08:17 +03:00
|
|
|
{
|
|
|
|
struct tun_softc *tp = (void *)ifp;
|
2004-05-14 17:23:12 +04:00
|
|
|
int s, zombie = 0;
|
2001-10-31 23:08:17 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
s = splnet();
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_lock(&tun_softc_lock);
|
|
|
|
simple_lock(&tp->tun_lock);
|
|
|
|
LIST_REMOVE(tp, tun_list);
|
2004-05-14 17:23:12 +04:00
|
|
|
if (tp->tun_flags & TUN_OPEN) {
|
|
|
|
/* Hang on to storage until last close */
|
|
|
|
zombie = 1;
|
|
|
|
tp->tun_flags &= ~TUN_INITED;
|
|
|
|
LIST_INSERT_HEAD(&tunz_softc_list, tp, tun_list);
|
|
|
|
}
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_unlock(&tun_softc_lock);
|
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
IF_PURGE(&ifp->if_snd);
|
|
|
|
ifp->if_flags &= ~IFF_RUNNING;
|
|
|
|
|
2001-10-31 23:08:17 +03:00
|
|
|
if (tp->tun_flags & TUN_RWAIT) {
|
|
|
|
tp->tun_flags &= ~TUN_RWAIT;
|
2007-03-04 08:59:00 +03:00
|
|
|
wakeup((void *)tp);
|
2001-10-31 23:08:17 +03:00
|
|
|
}
|
2008-03-01 17:16:49 +03:00
|
|
|
selnotify(&tp->tun_rsel, 0, 0);
|
2001-10-31 23:08:17 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
simple_unlock(&tp->tun_lock);
|
|
|
|
splx(s);
|
|
|
|
|
2008-04-24 19:35:27 +04:00
|
|
|
if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
|
|
|
|
fownsignal(tp->tun_pgid, SIGIO, POLL_HUP, 0, NULL);
|
|
|
|
|
2001-10-31 23:08:17 +03:00
|
|
|
#if NBPFILTER > 0
|
|
|
|
bpfdetach(ifp);
|
|
|
|
#endif
|
|
|
|
if_detach(ifp);
|
|
|
|
|
2008-03-01 17:16:49 +03:00
|
|
|
if (!zombie) {
|
|
|
|
seldestroy(&tp->tun_rsel);
|
|
|
|
seldestroy(&tp->tun_wsel);
|
2008-04-24 19:35:27 +04:00
|
|
|
softint_disestablish(tp->tun_osih);
|
|
|
|
softint_disestablish(tp->tun_isih);
|
2004-05-14 17:23:12 +04:00
|
|
|
free(tp, M_DEVBUF);
|
2008-03-01 17:16:49 +03:00
|
|
|
}
|
2004-12-04 21:31:43 +03:00
|
|
|
|
|
|
|
return (0);
|
1993-12-13 08:06:33 +03:00
|
|
|
}
|
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
/*
|
|
|
|
* tunnel open - must be superuser & the device must be
|
|
|
|
* configured in
|
|
|
|
*/
|
2005-12-12 02:05:24 +03:00
|
|
|
static int
|
2006-11-16 04:32:37 +03:00
|
|
|
tunopen(dev_t dev, int flag, int mode, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-11-14 23:07:20 +03:00
|
|
|
struct ifnet *ifp;
|
1993-12-13 08:06:33 +03:00
|
|
|
struct tun_softc *tp;
|
2004-05-14 17:23:12 +04:00
|
|
|
int s, error;
|
1993-08-09 05:19:38 +04:00
|
|
|
|
2006-07-24 02:06:03 +04:00
|
|
|
if ((error = kauth_authorize_generic(l->l_cred, KAUTH_GENERIC_ISSUSER,
|
2007-01-04 22:07:03 +03:00
|
|
|
NULL)) != 0)
|
1993-08-09 05:19:38 +04:00
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
s = splnet();
|
2001-10-31 23:08:17 +03:00
|
|
|
tp = tun_find_unit(dev);
|
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
if (tp == NULL) {
|
2002-07-29 20:53:30 +04:00
|
|
|
(void)tun_clone_create(&tun_cloner, minor(dev));
|
|
|
|
tp = tun_find_unit(dev);
|
2004-05-14 17:23:12 +04:00
|
|
|
if (tp == NULL) {
|
|
|
|
error = ENXIO;
|
|
|
|
goto out_nolock;
|
|
|
|
}
|
2002-07-29 20:53:30 +04:00
|
|
|
}
|
|
|
|
|
2001-10-31 23:08:17 +03:00
|
|
|
if (tp->tun_flags & TUN_OPEN) {
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EBUSY;
|
|
|
|
goto out;
|
2001-10-31 23:08:17 +03:00
|
|
|
}
|
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
ifp = &tp->tun_if;
|
|
|
|
tp->tun_flags |= TUN_OPEN;
|
1996-05-07 06:40:22 +04:00
|
|
|
TUNDEBUG("%s: open\n", ifp->if_xname);
|
2004-05-14 17:23:12 +04:00
|
|
|
out:
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_unlock(&tp->tun_lock);
|
2004-05-14 17:23:12 +04:00
|
|
|
out_nolock:
|
|
|
|
splx(s);
|
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
/*
|
|
|
|
* tunclose - close the device - mark i/f down & delete
|
|
|
|
* routing info
|
|
|
|
*/
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
tunclose(dev_t dev, int flag, int mode,
|
|
|
|
struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2001-10-31 23:08:17 +03:00
|
|
|
int s;
|
|
|
|
struct tun_softc *tp;
|
|
|
|
struct ifnet *ifp;
|
1993-11-14 23:07:20 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
s = splnet();
|
|
|
|
if ((tp = tun_find_zunit(minor(dev))) != NULL) {
|
|
|
|
/* interface was "destroyed" before the close */
|
2008-03-01 17:16:49 +03:00
|
|
|
seldestroy(&tp->tun_rsel);
|
|
|
|
seldestroy(&tp->tun_wsel);
|
2008-04-24 19:35:27 +04:00
|
|
|
softint_disestablish(tp->tun_osih);
|
|
|
|
softint_disestablish(tp->tun_isih);
|
2004-05-14 17:23:12 +04:00
|
|
|
free(tp, M_DEVBUF);
|
|
|
|
goto out_nolock;
|
|
|
|
}
|
2001-10-31 23:08:17 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
if ((tp = tun_find_unit(dev)) == NULL)
|
|
|
|
goto out_nolock;
|
2001-10-31 23:08:17 +03:00
|
|
|
|
|
|
|
ifp = &tp->tun_if;
|
|
|
|
|
1994-02-28 10:16:10 +03:00
|
|
|
tp->tun_flags &= ~TUN_OPEN;
|
1993-11-14 23:07:20 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* junk all pending output
|
|
|
|
*/
|
2002-03-05 07:12:57 +03:00
|
|
|
IFQ_PURGE(&ifp->if_snd);
|
1993-11-14 23:07:20 +03:00
|
|
|
|
|
|
|
if (ifp->if_flags & IFF_UP) {
|
|
|
|
if_down(ifp);
|
1993-12-13 08:06:33 +03:00
|
|
|
if (ifp->if_flags & IFF_RUNNING) {
|
1995-06-12 05:09:20 +04:00
|
|
|
/* find internet addresses and delete routes */
|
2000-03-30 13:45:33 +04:00
|
|
|
struct ifaddr *ifa;
|
2005-01-25 00:25:09 +03:00
|
|
|
IFADDR_FOREACH(ifa, ifp) {
|
2006-02-28 03:38:35 +03:00
|
|
|
#if defined(INET) || defined(INET6)
|
|
|
|
if (ifa->ifa_addr->sa_family == AF_INET ||
|
|
|
|
ifa->ifa_addr->sa_family == AF_INET6) {
|
1995-06-13 09:52:42 +04:00
|
|
|
rtinit(ifa, (int)RTM_DELETE,
|
1996-06-26 02:15:13 +04:00
|
|
|
tp->tun_flags & TUN_DSTADDR
|
|
|
|
? RTF_HOST
|
|
|
|
: 0);
|
1995-06-13 09:52:42 +04:00
|
|
|
}
|
1999-07-01 12:12:45 +04:00
|
|
|
#endif
|
1994-05-04 03:02:07 +04:00
|
|
|
}
|
1993-12-13 08:06:33 +03:00
|
|
|
}
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
2003-09-21 23:16:48 +04:00
|
|
|
tp->tun_pgid = 0;
|
2008-03-01 17:16:49 +03:00
|
|
|
selnotify(&tp->tun_rsel, 0, 0);
|
2004-05-14 17:23:12 +04:00
|
|
|
|
1996-05-07 06:40:22 +04:00
|
|
|
TUNDEBUG ("%s: closed\n", ifp->if_xname);
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_unlock(&tp->tun_lock);
|
2004-05-14 17:23:12 +04:00
|
|
|
out_nolock:
|
|
|
|
splx(s);
|
1993-11-14 23:07:20 +03:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
/*
|
|
|
|
* Call at splnet() with tp locked.
|
|
|
|
*/
|
1996-06-26 02:15:13 +04:00
|
|
|
static void
|
2005-12-12 02:05:24 +03:00
|
|
|
tuninit(struct tun_softc *tp)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-11-14 23:07:20 +03:00
|
|
|
struct ifnet *ifp = &tp->tun_if;
|
2001-10-31 23:08:17 +03:00
|
|
|
struct ifaddr *ifa;
|
1993-11-14 23:07:20 +03:00
|
|
|
|
1996-05-07 06:40:22 +04:00
|
|
|
TUNDEBUG("%s: tuninit\n", ifp->if_xname);
|
1993-12-13 08:06:33 +03:00
|
|
|
|
|
|
|
ifp->if_flags |= IFF_UP | IFF_RUNNING;
|
|
|
|
|
1996-06-26 02:15:13 +04:00
|
|
|
tp->tun_flags &= ~(TUN_IASET|TUN_DSTADDR);
|
2005-01-25 00:25:09 +03:00
|
|
|
IFADDR_FOREACH(ifa, ifp) {
|
1999-07-01 12:12:45 +04:00
|
|
|
#ifdef INET
|
1994-05-04 03:02:07 +04:00
|
|
|
if (ifa->ifa_addr->sa_family == AF_INET) {
|
1995-06-12 05:09:20 +04:00
|
|
|
struct sockaddr_in *sin;
|
1993-12-13 08:06:33 +03:00
|
|
|
|
1995-06-12 05:09:20 +04:00
|
|
|
sin = satosin(ifa->ifa_addr);
|
|
|
|
if (sin && sin->sin_addr.s_addr)
|
|
|
|
tp->tun_flags |= TUN_IASET;
|
1993-12-13 08:06:33 +03:00
|
|
|
|
1996-06-26 02:15:13 +04:00
|
|
|
if (ifp->if_flags & IFF_POINTOPOINT) {
|
|
|
|
sin = satosin(ifa->ifa_dstaddr);
|
|
|
|
if (sin && sin->sin_addr.s_addr)
|
|
|
|
tp->tun_flags |= TUN_DSTADDR;
|
|
|
|
}
|
1994-05-04 03:02:07 +04:00
|
|
|
}
|
1999-07-01 12:12:45 +04:00
|
|
|
#endif
|
2006-02-28 03:38:35 +03:00
|
|
|
#ifdef INET6
|
|
|
|
if (ifa->ifa_addr->sa_family == AF_INET6) {
|
|
|
|
struct sockaddr_in6 *sin;
|
|
|
|
|
|
|
|
sin = (struct sockaddr_in6 *)ifa->ifa_addr;
|
|
|
|
if (!IN6_IS_ADDR_UNSPECIFIED(&sin->sin6_addr))
|
|
|
|
tp->tun_flags |= TUN_IASET;
|
|
|
|
|
|
|
|
if (ifp->if_flags & IFF_POINTOPOINT) {
|
|
|
|
sin = (struct sockaddr_in6 *)ifa->ifa_dstaddr;
|
|
|
|
if (sin &&
|
|
|
|
!IN6_IS_ADDR_UNSPECIFIED(&sin->sin6_addr))
|
|
|
|
tp->tun_flags |= TUN_DSTADDR;
|
|
|
|
} else
|
|
|
|
tp->tun_flags &= ~TUN_DSTADDR;
|
|
|
|
}
|
|
|
|
#endif /* INET6 */
|
1995-06-13 09:52:42 +04:00
|
|
|
}
|
1993-12-13 08:06:33 +03:00
|
|
|
|
1996-06-26 02:15:13 +04:00
|
|
|
return;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process an ioctl request.
|
|
|
|
*/
|
2005-12-12 02:05:24 +03:00
|
|
|
static int
|
2007-03-04 08:59:00 +03:00
|
|
|
tun_ioctl(struct ifnet *ifp, u_long cmd, void *data)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-11-14 23:07:20 +03:00
|
|
|
int error = 0, s;
|
2001-10-31 23:08:17 +03:00
|
|
|
struct tun_softc *tp = (struct tun_softc *)(ifp->if_softc);
|
2008-02-07 04:21:52 +03:00
|
|
|
struct ifreq *ifr = data;
|
2001-10-31 23:08:17 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
s = splnet();
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_lock(&tp->tun_lock);
|
1993-11-14 23:07:20 +03:00
|
|
|
|
2003-05-02 07:15:23 +04:00
|
|
|
switch (cmd) {
|
*** Summary ***
When a link-layer address changes (e.g., ifconfig ex0 link
02:de:ad:be:ef:02 active), send a gratuitous ARP and/or a Neighbor
Advertisement to update the network-/link-layer address bindings
on our LAN peers.
Refuse a change of ethernet address to the address 00:00:00:00:00:00
or to any multicast/broadcast address. (Thanks matt@.)
Reorder ifnet ioctl operations so that driver ioctls may inherit
the functions of their "class"---ether_ioctl(), fddi_ioctl(), et
cetera---and the class ioctls may inherit from the generic ioctl,
ifioctl_common(), but both driver- and class-ioctls may override
the generic behavior. Make network drivers share more code.
Distinguish a "factory" link-layer address from others for the
purposes of both protecting that address from deletion and computing
EUI64.
Return consistent, appropriate error codes from network drivers.
Improve readability. KNF.
*** Details ***
In if_attach(), always initialize the interface ioctl routine,
ifnet->if_ioctl, if the driver has not already initialized it.
Delete if_ioctl == NULL tests everywhere else, because it cannot
happen.
In the ioctl routines of network interfaces, inherit common ioctl
behaviors by calling either ifioctl_common() or whichever ioctl
routine is appropriate for the class of interface---e.g., ether_ioctl()
for ethernets.
Stop (ab)using SIOCSIFADDR and start to use SIOCINITIFADDR. In
the user->kernel interface, SIOCSIFADDR's argument was an ifreq,
but on the protocol->ifnet interface, SIOCSIFADDR's argument was
an ifaddr. That was confusing, and it would work against me as I
make it possible for a network interface to overload most ioctls.
On the protocol->ifnet interface, replace SIOCSIFADDR with
SIOCINITIFADDR. In ifioctl(), return EPERM if userland tries to
invoke SIOCINITIFADDR.
In ifioctl(), give the interface the first shot at handling most
interface ioctls, and give the protocol the second shot, instead
of the other way around. Finally, let compatibility code (COMPAT_OSOCK)
take a shot.
Pull device initialization out of switch statements under
SIOCINITIFADDR. For example, pull ..._init() out of any switch
statement that looks like this:
switch (...->sa_family) {
case ...:
..._init();
...
break;
...
default:
..._init();
...
break;
}
Rewrite many if-else clauses that handle all permutations of IFF_UP
and IFF_RUNNING to use a switch statement,
switch (x & (IFF_UP|IFF_RUNNING)) {
case 0:
...
break;
case IFF_RUNNING:
...
break;
case IFF_UP:
...
break;
case IFF_UP|IFF_RUNNING:
...
break;
}
unifdef lots of code containing #ifdef FreeBSD, #ifdef NetBSD, and
#ifdef SIOCSIFMTU, especially in fwip(4) and in ndis(4).
In ipw(4), remove an if_set_sadl() call that is out of place.
In nfe(4), reuse the jumbo MTU logic in ether_ioctl().
Let ethernets register a callback for setting h/w state such as
promiscuous mode and the multicast filter in accord with a change
in the if_flags: ether_set_ifflags_cb() registers a callback that
returns ENETRESET if the caller should reset the ethernet by calling
if_init(), 0 on success, != 0 on failure. Pull common code from
ex(4), gem(4), nfe(4), sip(4), tlp(4), vge(4) into ether_ioctl(),
and register if_flags callbacks for those drivers.
Return ENOTTY instead of EINVAL for inappropriate ioctls. In
zyd(4), use ENXIO instead of ENOTTY to indicate that the device is
not any longer attached.
Add to if_set_sadl() a boolean 'factory' argument that indicates
whether a link-layer address was assigned by the factory or some
other source. In a comment, recommend using the factory address
for generating an EUI64, and update in6_get_hw_ifid() to prefer a
factory address to any other link-layer address.
Add a routing message, RTM_LLINFO_UPD, that tells protocols to
update the binding of network-layer addresses to link-layer addresses.
Implement this message in IPv4 and IPv6 by sending a gratuitous
ARP or a neighbor advertisement, respectively. Generate RTM_LLINFO_UPD
messages on a change of an interface's link-layer address.
In ether_ioctl(), do not let SIOCALIFADDR set a link-layer address
that is broadcast/multicast or equal to 00:00:00:00:00:00.
Make ether_ioctl() call ifioctl_common() to handle ioctls that it
does not understand.
In gif(4), initialize if_softc and use it, instead of assuming that
the gif_softc and ifp overlap.
Let ifioctl_common() handle SIOCGIFADDR.
Sprinkle rtcache_invariants(), which checks on DIAGNOSTIC kernels
that certain invariants on a struct route are satisfied.
In agr(4), rewrite agr_ioctl_filter() to be a bit more explicit
about the ioctls that we do not allow on an agr(4) member interface.
bzero -> memset. Delete unnecessary casts to void *. Use
sockaddr_in_init() and sockaddr_in6_init(). Compare pointers with
NULL instead of "testing truth". Replace some instances of (type
*)0 with NULL. Change some K&R prototypes to ANSI C, and join
lines.
2008-11-07 03:20:01 +03:00
|
|
|
case SIOCINITIFADDR:
|
2004-05-14 17:23:12 +04:00
|
|
|
tuninit(tp);
|
1996-05-07 06:40:22 +04:00
|
|
|
TUNDEBUG("%s: address set\n", ifp->if_xname);
|
1993-11-14 23:07:20 +03:00
|
|
|
break;
|
|
|
|
case SIOCSIFDSTADDR:
|
2004-05-14 17:23:12 +04:00
|
|
|
tuninit(tp);
|
1996-05-07 06:40:22 +04:00
|
|
|
TUNDEBUG("%s: destination address set\n", ifp->if_xname);
|
1993-11-14 23:07:20 +03:00
|
|
|
break;
|
1996-06-26 02:15:13 +04:00
|
|
|
case SIOCSIFBRDADDR:
|
|
|
|
TUNDEBUG("%s: broadcast address set\n", ifp->if_xname);
|
|
|
|
break;
|
2008-02-07 04:21:52 +03:00
|
|
|
case SIOCSIFMTU:
|
1997-09-24 23:45:11 +04:00
|
|
|
if (ifr->ifr_mtu > TUNMTU || ifr->ifr_mtu < 576) {
|
2008-02-07 04:21:52 +03:00
|
|
|
error = EINVAL;
|
|
|
|
break;
|
1997-09-24 23:45:11 +04:00
|
|
|
}
|
|
|
|
TUNDEBUG("%s: interface mtu set\n", ifp->if_xname);
|
2008-02-07 04:21:52 +03:00
|
|
|
if ((error = ifioctl_common(ifp, cmd, data)) == ENETRESET)
|
|
|
|
error = 0;
|
1997-09-24 23:45:11 +04:00
|
|
|
break;
|
1997-09-25 17:11:58 +04:00
|
|
|
case SIOCADDMULTI:
|
2008-02-07 04:21:52 +03:00
|
|
|
case SIOCDELMULTI:
|
|
|
|
if (ifr == NULL) {
|
1997-09-25 17:11:58 +04:00
|
|
|
error = EAFNOSUPPORT; /* XXX */
|
|
|
|
break;
|
|
|
|
}
|
2007-09-01 08:32:50 +04:00
|
|
|
switch (ifreq_getaddr(cmd, ifr)->sa_family) {
|
1997-09-25 17:11:58 +04:00
|
|
|
#ifdef INET
|
|
|
|
case AF_INET:
|
|
|
|
break;
|
2006-02-28 03:38:35 +03:00
|
|
|
#endif
|
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
break;
|
1997-09-25 17:11:58 +04:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
error = EAFNOSUPPORT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
1993-11-14 23:07:20 +03:00
|
|
|
default:
|
*** Summary ***
When a link-layer address changes (e.g., ifconfig ex0 link
02:de:ad:be:ef:02 active), send a gratuitous ARP and/or a Neighbor
Advertisement to update the network-/link-layer address bindings
on our LAN peers.
Refuse a change of ethernet address to the address 00:00:00:00:00:00
or to any multicast/broadcast address. (Thanks matt@.)
Reorder ifnet ioctl operations so that driver ioctls may inherit
the functions of their "class"---ether_ioctl(), fddi_ioctl(), et
cetera---and the class ioctls may inherit from the generic ioctl,
ifioctl_common(), but both driver- and class-ioctls may override
the generic behavior. Make network drivers share more code.
Distinguish a "factory" link-layer address from others for the
purposes of both protecting that address from deletion and computing
EUI64.
Return consistent, appropriate error codes from network drivers.
Improve readability. KNF.
*** Details ***
In if_attach(), always initialize the interface ioctl routine,
ifnet->if_ioctl, if the driver has not already initialized it.
Delete if_ioctl == NULL tests everywhere else, because it cannot
happen.
In the ioctl routines of network interfaces, inherit common ioctl
behaviors by calling either ifioctl_common() or whichever ioctl
routine is appropriate for the class of interface---e.g., ether_ioctl()
for ethernets.
Stop (ab)using SIOCSIFADDR and start to use SIOCINITIFADDR. In
the user->kernel interface, SIOCSIFADDR's argument was an ifreq,
but on the protocol->ifnet interface, SIOCSIFADDR's argument was
an ifaddr. That was confusing, and it would work against me as I
make it possible for a network interface to overload most ioctls.
On the protocol->ifnet interface, replace SIOCSIFADDR with
SIOCINITIFADDR. In ifioctl(), return EPERM if userland tries to
invoke SIOCINITIFADDR.
In ifioctl(), give the interface the first shot at handling most
interface ioctls, and give the protocol the second shot, instead
of the other way around. Finally, let compatibility code (COMPAT_OSOCK)
take a shot.
Pull device initialization out of switch statements under
SIOCINITIFADDR. For example, pull ..._init() out of any switch
statement that looks like this:
switch (...->sa_family) {
case ...:
..._init();
...
break;
...
default:
..._init();
...
break;
}
Rewrite many if-else clauses that handle all permutations of IFF_UP
and IFF_RUNNING to use a switch statement,
switch (x & (IFF_UP|IFF_RUNNING)) {
case 0:
...
break;
case IFF_RUNNING:
...
break;
case IFF_UP:
...
break;
case IFF_UP|IFF_RUNNING:
...
break;
}
unifdef lots of code containing #ifdef FreeBSD, #ifdef NetBSD, and
#ifdef SIOCSIFMTU, especially in fwip(4) and in ndis(4).
In ipw(4), remove an if_set_sadl() call that is out of place.
In nfe(4), reuse the jumbo MTU logic in ether_ioctl().
Let ethernets register a callback for setting h/w state such as
promiscuous mode and the multicast filter in accord with a change
in the if_flags: ether_set_ifflags_cb() registers a callback that
returns ENETRESET if the caller should reset the ethernet by calling
if_init(), 0 on success, != 0 on failure. Pull common code from
ex(4), gem(4), nfe(4), sip(4), tlp(4), vge(4) into ether_ioctl(),
and register if_flags callbacks for those drivers.
Return ENOTTY instead of EINVAL for inappropriate ioctls. In
zyd(4), use ENXIO instead of ENOTTY to indicate that the device is
not any longer attached.
Add to if_set_sadl() a boolean 'factory' argument that indicates
whether a link-layer address was assigned by the factory or some
other source. In a comment, recommend using the factory address
for generating an EUI64, and update in6_get_hw_ifid() to prefer a
factory address to any other link-layer address.
Add a routing message, RTM_LLINFO_UPD, that tells protocols to
update the binding of network-layer addresses to link-layer addresses.
Implement this message in IPv4 and IPv6 by sending a gratuitous
ARP or a neighbor advertisement, respectively. Generate RTM_LLINFO_UPD
messages on a change of an interface's link-layer address.
In ether_ioctl(), do not let SIOCALIFADDR set a link-layer address
that is broadcast/multicast or equal to 00:00:00:00:00:00.
Make ether_ioctl() call ifioctl_common() to handle ioctls that it
does not understand.
In gif(4), initialize if_softc and use it, instead of assuming that
the gif_softc and ifp overlap.
Let ifioctl_common() handle SIOCGIFADDR.
Sprinkle rtcache_invariants(), which checks on DIAGNOSTIC kernels
that certain invariants on a struct route are satisfied.
In agr(4), rewrite agr_ioctl_filter() to be a bit more explicit
about the ioctls that we do not allow on an agr(4) member interface.
bzero -> memset. Delete unnecessary casts to void *. Use
sockaddr_in_init() and sockaddr_in6_init(). Compare pointers with
NULL instead of "testing truth". Replace some instances of (type
*)0 with NULL. Change some K&R prototypes to ANSI C, and join
lines.
2008-11-07 03:20:01 +03:00
|
|
|
error = ifioctl_common(ifp, cmd, data);
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
2004-05-14 17:23:12 +04:00
|
|
|
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_unlock(&tp->tun_lock);
|
2004-05-14 17:23:12 +04:00
|
|
|
splx(s);
|
1993-11-14 23:07:20 +03:00
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1996-02-14 00:59:53 +03:00
|
|
|
* tun_output - queue packets from higher level ready to put out.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
2005-12-12 02:05:24 +03:00
|
|
|
static int
|
KNF: de-__P, bzero -> memset, bcmp -> memcmp. Remove extraneous
parentheses in return statements.
Cosmetic: don't open-code TAILQ_FOREACH().
Cosmetic: change types of variables to avoid oodles of casts: in
in6_src.c, avoid casts by changing several route_in6 pointers
to struct route pointers. Remove unnecessary casts to caddr_t
elsewhere.
Pave the way for eliminating address family-specific route caches:
soon, struct route will not embed a sockaddr, but it will hold
a reference to an external sockaddr, instead. We will set the
destination sockaddr using rtcache_setdst(). (I created a stub
for it, but it isn't used anywhere, yet.) rtcache_free() will
free the sockaddr. I have extracted from rtcache_free() a helper
subroutine, rtcache_clear(). rtcache_clear() will "forget" a
cached route, but it will not forget the destination by releasing
the sockaddr. I use rtcache_clear() instead of rtcache_free()
in rtcache_update(), because rtcache_update() is not supposed
to forget the destination.
Constify:
1 Introduce const accessor for route->ro_dst, rtcache_getdst().
2 Constify the 'dst' argument to ifnet->if_output(). This
led me to constify a lot of code called by output routines.
3 Constify the sockaddr argument to protosw->pr_ctlinput. This
led me to constify a lot of code called by ctlinput routines.
4 Introduce const macros for converting from a generic sockaddr
to family-specific sockaddrs, e.g., sockaddr_in: satocsin6,
satocsin, et cetera.
2007-02-18 01:34:07 +03:00
|
|
|
tun_output(struct ifnet *ifp, struct mbuf *m0, const struct sockaddr *dst,
|
2006-11-16 04:32:37 +03:00
|
|
|
struct rtentry *rt)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1996-05-07 06:40:22 +04:00
|
|
|
struct tun_softc *tp = ifp->if_softc;
|
1993-11-14 23:07:20 +03:00
|
|
|
int s;
|
2002-03-05 07:12:57 +03:00
|
|
|
int error;
|
2006-02-28 03:38:35 +03:00
|
|
|
#if defined(INET) || defined(INET6)
|
2002-12-25 11:40:20 +03:00
|
|
|
int mlen;
|
2006-02-28 03:38:35 +03:00
|
|
|
uint32_t *af;
|
2004-12-06 05:59:23 +03:00
|
|
|
#endif
|
2002-03-05 07:12:57 +03:00
|
|
|
ALTQ_DECL(struct altq_pktattr pktattr;)
|
1993-11-14 23:07:20 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
s = splnet();
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_lock(&tp->tun_lock);
|
1996-05-07 06:40:22 +04:00
|
|
|
TUNDEBUG ("%s: tun_output\n", ifp->if_xname);
|
1993-11-14 23:07:20 +03:00
|
|
|
|
1993-12-13 08:06:33 +03:00
|
|
|
if ((tp->tun_flags & TUN_READY) != TUN_READY) {
|
1996-05-07 06:40:22 +04:00
|
|
|
TUNDEBUG ("%s: not ready 0%o\n", ifp->if_xname,
|
|
|
|
tp->tun_flags);
|
1993-12-13 08:06:33 +03:00
|
|
|
m_freem (m0);
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EHOSTDOWN;
|
|
|
|
goto out;
|
1993-12-13 08:06:33 +03:00
|
|
|
}
|
|
|
|
|
2002-03-05 07:12:57 +03:00
|
|
|
/*
|
|
|
|
* if the queueing discipline needs packet classification,
|
|
|
|
* do it before prepending link headers.
|
|
|
|
*/
|
|
|
|
IFQ_CLASSIFY(&ifp->if_snd, m0, dst->sa_family, &pktattr);
|
2004-05-14 17:23:12 +04:00
|
|
|
|
1993-12-13 08:06:33 +03:00
|
|
|
#if NBPFILTER > 0
|
2004-08-20 00:58:23 +04:00
|
|
|
if (ifp->if_bpf)
|
|
|
|
bpf_mtap_af(ifp->if_bpf, dst->sa_family, m0);
|
1993-12-13 08:06:33 +03:00
|
|
|
#endif
|
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
switch(dst->sa_family) {
|
2006-02-05 19:44:55 +03:00
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef INET
|
1993-11-14 23:07:20 +03:00
|
|
|
case AF_INET:
|
2006-02-05 19:44:55 +03:00
|
|
|
#endif
|
|
|
|
#if defined(INET) || defined(INET6)
|
1996-06-26 02:15:13 +04:00
|
|
|
if (tp->tun_flags & TUN_PREPADDR) {
|
|
|
|
/* Simple link-layer header */
|
|
|
|
M_PREPEND(m0, dst->sa_len, M_DONTWAIT);
|
|
|
|
if (m0 == NULL) {
|
|
|
|
IF_DROP(&ifp->if_snd);
|
2004-05-14 17:23:12 +04:00
|
|
|
error = ENOBUFS;
|
|
|
|
goto out;
|
1996-06-26 02:15:13 +04:00
|
|
|
}
|
|
|
|
bcopy(dst, mtod(m0, char *), dst->sa_len);
|
2006-04-04 15:33:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (tp->tun_flags & TUN_IFHEAD) {
|
2006-03-03 22:46:35 +03:00
|
|
|
/* Prepend the address family */
|
2006-03-03 22:57:37 +03:00
|
|
|
M_PREPEND(m0, sizeof(*af), M_DONTWAIT);
|
2006-02-28 03:38:35 +03:00
|
|
|
if (m0 == NULL) {
|
|
|
|
IF_DROP(&ifp->if_snd);
|
|
|
|
error = ENOBUFS;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
af = mtod(m0,uint32_t *);
|
|
|
|
*af = htonl(dst->sa_family);
|
2006-04-04 19:43:23 +04:00
|
|
|
} else {
|
|
|
|
#ifdef INET
|
|
|
|
if (dst->sa_family != AF_INET)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
m_freem(m0);
|
|
|
|
error = EAFNOSUPPORT;
|
|
|
|
goto out;
|
|
|
|
}
|
1996-06-26 02:15:13 +04:00
|
|
|
}
|
1998-12-01 00:43:11 +03:00
|
|
|
/* FALLTHROUGH */
|
|
|
|
case AF_UNSPEC:
|
2002-03-05 07:12:57 +03:00
|
|
|
IFQ_ENQUEUE(&ifp->if_snd, m0, &pktattr, error);
|
|
|
|
if (error) {
|
1993-11-14 23:07:20 +03:00
|
|
|
ifp->if_collisions++;
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EAFNOSUPPORT;
|
|
|
|
goto out;
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
2002-12-25 11:40:20 +03:00
|
|
|
mlen = m0->m_pkthdr.len;
|
1993-11-14 23:07:20 +03:00
|
|
|
ifp->if_opackets++;
|
2002-12-25 11:40:20 +03:00
|
|
|
ifp->if_obytes += mlen;
|
1993-11-14 23:07:20 +03:00
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
1993-11-14 23:07:20 +03:00
|
|
|
default:
|
|
|
|
m_freem(m0);
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EAFNOSUPPORT;
|
|
|
|
goto out;
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (tp->tun_flags & TUN_RWAIT) {
|
|
|
|
tp->tun_flags &= ~TUN_RWAIT;
|
2007-03-04 08:59:00 +03:00
|
|
|
wakeup((void *)tp);
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
2003-09-21 23:16:48 +04:00
|
|
|
if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
|
2008-04-24 19:35:27 +04:00
|
|
|
softint_schedule(tp->tun_isih);
|
2003-09-21 23:16:48 +04:00
|
|
|
|
2008-03-01 17:16:49 +03:00
|
|
|
selnotify(&tp->tun_rsel, 0, 0);
|
2004-05-14 17:23:12 +04:00
|
|
|
out:
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_unlock(&tp->tun_lock);
|
2004-05-14 17:23:12 +04:00
|
|
|
splx(s);
|
1996-06-26 02:15:13 +04:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2008-04-24 19:35:27 +04:00
|
|
|
static void
|
|
|
|
tun_i_softintr(void *cookie)
|
|
|
|
{
|
|
|
|
struct tun_softc *tp = cookie;
|
|
|
|
|
|
|
|
if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
|
|
|
|
fownsignal(tp->tun_pgid, SIGIO, POLL_IN, POLLIN|POLLRDNORM,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tun_o_softintr(void *cookie)
|
|
|
|
{
|
|
|
|
struct tun_softc *tp = cookie;
|
|
|
|
|
|
|
|
if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
|
|
|
|
fownsignal(tp->tun_pgid, SIGIO, POLL_OUT, POLLOUT|POLLWRNORM,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* the cdevsw interface is now pretty minimal.
|
|
|
|
*/
|
1993-11-14 23:07:20 +03:00
|
|
|
int
|
2007-03-04 08:59:00 +03:00
|
|
|
tunioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2001-10-31 23:08:17 +03:00
|
|
|
struct tun_softc *tp;
|
2004-05-14 17:23:12 +04:00
|
|
|
int s, error = 0;
|
2001-10-31 23:08:17 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
s = splnet();
|
2001-10-31 23:08:17 +03:00
|
|
|
tp = tun_find_unit(dev);
|
|
|
|
|
|
|
|
/* interface was "destroyed" already */
|
2004-05-14 17:23:12 +04:00
|
|
|
if (tp == NULL) {
|
|
|
|
error = ENXIO;
|
|
|
|
goto out_nolock;
|
|
|
|
}
|
1993-11-14 23:07:20 +03:00
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case TUNSDEBUG:
|
|
|
|
tundebug = *(int *)data;
|
|
|
|
break;
|
1996-06-26 02:15:13 +04:00
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
case TUNGDEBUG:
|
|
|
|
*(int *)data = tundebug;
|
|
|
|
break;
|
1996-06-26 02:15:13 +04:00
|
|
|
|
|
|
|
case TUNSIFMODE:
|
1997-09-24 23:45:11 +04:00
|
|
|
switch (*(int *)data & (IFF_POINTOPOINT|IFF_BROADCAST)) {
|
1996-06-26 02:15:13 +04:00
|
|
|
case IFF_POINTOPOINT:
|
|
|
|
case IFF_BROADCAST:
|
|
|
|
if (tp->tun_if.if_flags & IFF_UP) {
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EBUSY;
|
|
|
|
goto out;
|
1996-06-26 02:15:13 +04:00
|
|
|
}
|
|
|
|
tp->tun_if.if_flags &=
|
1997-09-24 23:45:11 +04:00
|
|
|
~(IFF_BROADCAST|IFF_POINTOPOINT|IFF_MULTICAST);
|
1996-06-26 02:15:13 +04:00
|
|
|
tp->tun_if.if_flags |= *(int *)data;
|
|
|
|
break;
|
|
|
|
default:
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
1996-06-26 02:15:13 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TUNSLMODE:
|
2006-04-08 16:14:42 +04:00
|
|
|
if (*(int *)data) {
|
1996-06-26 02:15:13 +04:00
|
|
|
tp->tun_flags |= TUN_PREPADDR;
|
2006-04-08 16:14:42 +04:00
|
|
|
tp->tun_flags &= ~TUN_IFHEAD;
|
|
|
|
} else
|
1996-06-26 02:15:13 +04:00
|
|
|
tp->tun_flags &= ~TUN_PREPADDR;
|
|
|
|
break;
|
|
|
|
|
2006-04-04 03:29:39 +04:00
|
|
|
case TUNSIFHEAD:
|
2006-04-08 16:14:42 +04:00
|
|
|
if (*(int *)data) {
|
2006-04-04 03:29:39 +04:00
|
|
|
tp->tun_flags |= TUN_IFHEAD;
|
2006-04-18 23:30:49 +04:00
|
|
|
tp->tun_flags &= ~TUN_PREPADDR;
|
2006-04-08 16:14:42 +04:00
|
|
|
} else
|
2006-04-04 03:29:39 +04:00
|
|
|
tp->tun_flags &= ~TUN_IFHEAD;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TUNGIFHEAD:
|
|
|
|
*(int *)data = (tp->tun_flags & TUN_IFHEAD);
|
|
|
|
break;
|
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
case FIONBIO:
|
|
|
|
if (*(int *)data)
|
|
|
|
tp->tun_flags |= TUN_NBIO;
|
|
|
|
else
|
|
|
|
tp->tun_flags &= ~TUN_NBIO;
|
|
|
|
break;
|
1996-06-26 02:15:13 +04:00
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
case FIOASYNC:
|
|
|
|
if (*(int *)data)
|
|
|
|
tp->tun_flags |= TUN_ASYNC;
|
|
|
|
else
|
|
|
|
tp->tun_flags &= ~TUN_ASYNC;
|
|
|
|
break;
|
1996-06-26 02:15:13 +04:00
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
case FIONREAD:
|
|
|
|
if (tp->tun_if.if_snd.ifq_head)
|
1995-12-14 02:47:40 +03:00
|
|
|
*(int *)data = tp->tun_if.if_snd.ifq_head->m_pkthdr.len;
|
2004-05-14 17:23:12 +04:00
|
|
|
else
|
1993-11-14 23:07:20 +03:00
|
|
|
*(int *)data = 0;
|
|
|
|
break;
|
1996-06-26 02:15:13 +04:00
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
case TIOCSPGRP:
|
2003-09-21 23:16:48 +04:00
|
|
|
case FIOSETOWN:
|
2008-03-22 00:54:58 +03:00
|
|
|
error = fsetown(&tp->tun_pgid, cmd, data);
|
1993-11-14 23:07:20 +03:00
|
|
|
break;
|
1996-06-26 02:15:13 +04:00
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
case TIOCGPGRP:
|
2003-09-21 23:16:48 +04:00
|
|
|
case FIOGETOWN:
|
2008-03-22 00:54:58 +03:00
|
|
|
error = fgetown(tp->tun_pgid, cmd, data);
|
1993-11-14 23:07:20 +03:00
|
|
|
break;
|
1996-06-26 02:15:13 +04:00
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
default:
|
2004-05-14 17:23:12 +04:00
|
|
|
error = ENOTTY;
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
2004-05-14 17:23:12 +04:00
|
|
|
|
|
|
|
out:
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_unlock(&tp->tun_lock);
|
2004-05-14 17:23:12 +04:00
|
|
|
out_nolock:
|
|
|
|
splx(s);
|
2003-09-21 23:16:48 +04:00
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1993-11-14 23:07:20 +03:00
|
|
|
* The cdevsw read interface - reads a packet at a time, or at
|
|
|
|
* least as much of a packet as can be read.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-11-14 23:07:20 +03:00
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
tunread(dev_t dev, struct uio *uio, int ioflag)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2001-10-31 23:08:17 +03:00
|
|
|
struct tun_softc *tp;
|
|
|
|
struct ifnet *ifp;
|
1993-11-14 23:07:20 +03:00
|
|
|
struct mbuf *m, *m0;
|
2004-05-14 17:23:12 +04:00
|
|
|
int error = 0, len, s, index;
|
2001-10-31 23:08:17 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
s = splnet();
|
2001-10-31 23:08:17 +03:00
|
|
|
tp = tun_find_unit(dev);
|
|
|
|
|
|
|
|
/* interface was "destroyed" already */
|
2004-05-14 17:23:12 +04:00
|
|
|
if (tp == NULL) {
|
|
|
|
error = ENXIO;
|
|
|
|
goto out_nolock;
|
|
|
|
}
|
2001-10-31 23:08:17 +03:00
|
|
|
|
|
|
|
index = tp->tun_if.if_index;
|
|
|
|
ifp = &tp->tun_if;
|
1993-11-14 23:07:20 +03:00
|
|
|
|
1996-05-07 06:40:22 +04:00
|
|
|
TUNDEBUG ("%s: read\n", ifp->if_xname);
|
1993-12-13 08:06:33 +03:00
|
|
|
if ((tp->tun_flags & TUN_READY) != TUN_READY) {
|
1996-06-26 02:15:13 +04:00
|
|
|
TUNDEBUG ("%s: not ready 0%o\n", ifp->if_xname, tp->tun_flags);
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EHOSTDOWN;
|
|
|
|
goto out;
|
1993-12-13 08:06:33 +03:00
|
|
|
}
|
|
|
|
|
1993-11-14 23:07:20 +03:00
|
|
|
tp->tun_flags &= ~TUN_RWAIT;
|
|
|
|
|
|
|
|
do {
|
2002-03-05 07:12:57 +03:00
|
|
|
IFQ_DEQUEUE(&ifp->if_snd, m0);
|
1993-11-14 23:07:20 +03:00
|
|
|
if (m0 == 0) {
|
|
|
|
if (tp->tun_flags & TUN_NBIO) {
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EWOULDBLOCK;
|
|
|
|
goto out;
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
|
|
|
tp->tun_flags |= TUN_RWAIT;
|
2007-03-04 08:59:00 +03:00
|
|
|
if (ltsleep((void *)tp, PZERO|PCATCH|PNORELOCK,
|
2004-05-14 17:23:12 +04:00
|
|
|
"tunread", 0, &tp->tun_lock) != 0) {
|
|
|
|
error = EINTR;
|
|
|
|
goto out_nolock;
|
2001-10-31 23:08:17 +03:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Maybe the interface was destroyed while
|
|
|
|
* we were sleeping, so let's ensure that
|
|
|
|
* we're looking at the same (valid) tun
|
|
|
|
* interface before looping.
|
|
|
|
*/
|
|
|
|
tp = tun_find_unit(dev);
|
2004-05-14 17:23:12 +04:00
|
|
|
if (tp == NULL) {
|
|
|
|
error = ENXIO;
|
|
|
|
goto out_nolock;
|
|
|
|
}
|
|
|
|
if (tp->tun_if.if_index != index) {
|
|
|
|
error = ENXIO;
|
|
|
|
goto out;
|
2001-10-31 23:08:17 +03:00
|
|
|
}
|
1996-06-26 02:15:13 +04:00
|
|
|
}
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
|
|
|
} while (m0 == 0);
|
2004-05-14 17:23:12 +04:00
|
|
|
|
|
|
|
simple_unlock(&tp->tun_lock);
|
1993-11-14 23:07:20 +03:00
|
|
|
splx(s);
|
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
/* Copy the mbuf chain */
|
1993-11-14 23:07:20 +03:00
|
|
|
while (m0 && uio->uio_resid > 0 && error == 0) {
|
1994-05-26 04:47:19 +04:00
|
|
|
len = min(uio->uio_resid, m0->m_len);
|
2001-08-04 01:11:57 +04:00
|
|
|
if (len != 0)
|
2007-03-04 08:59:00 +03:00
|
|
|
error = uiomove(mtod(m0, void *), len, uio);
|
1993-11-14 23:07:20 +03:00
|
|
|
MFREE(m0, m);
|
|
|
|
m0 = m;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m0) {
|
|
|
|
TUNDEBUG("Dropping mbuf\n");
|
|
|
|
m_freem(m0);
|
|
|
|
}
|
1995-12-14 02:47:40 +03:00
|
|
|
if (error)
|
|
|
|
ifp->if_ierrors++;
|
2004-05-14 17:23:12 +04:00
|
|
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
out:
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_unlock(&tp->tun_lock);
|
2004-05-14 17:23:12 +04:00
|
|
|
out_nolock:
|
|
|
|
splx(s);
|
1996-06-26 02:15:13 +04:00
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the cdevsw write interface - an atomic write is a packet - or else!
|
|
|
|
*/
|
1993-11-14 23:07:20 +03:00
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
tunwrite(dev_t dev, struct uio *uio, int ioflag)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2001-10-31 23:08:17 +03:00
|
|
|
struct tun_softc *tp;
|
|
|
|
struct ifnet *ifp;
|
1993-11-14 23:07:20 +03:00
|
|
|
struct mbuf *top, **mp, *m;
|
1996-06-26 02:15:13 +04:00
|
|
|
struct ifqueue *ifq;
|
|
|
|
struct sockaddr dst;
|
2004-05-14 17:23:12 +04:00
|
|
|
int isr, error = 0, s, tlen, mlen;
|
2006-02-28 03:38:35 +03:00
|
|
|
uint32_t family;
|
1993-11-14 23:07:20 +03:00
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
s = splnet();
|
2001-10-31 23:08:17 +03:00
|
|
|
tp = tun_find_unit(dev);
|
|
|
|
|
|
|
|
/* interface was "destroyed" already */
|
2004-05-14 17:23:12 +04:00
|
|
|
if (tp == NULL) {
|
|
|
|
error = ENXIO;
|
|
|
|
goto out_nolock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unlock until we've got the data */
|
|
|
|
simple_unlock(&tp->tun_lock);
|
|
|
|
splx(s);
|
2001-10-31 23:08:17 +03:00
|
|
|
|
|
|
|
ifp = &tp->tun_if;
|
|
|
|
|
1996-05-07 06:40:22 +04:00
|
|
|
TUNDEBUG("%s: tunwrite\n", ifp->if_xname);
|
1993-11-14 23:07:20 +03:00
|
|
|
|
1996-06-26 02:15:13 +04:00
|
|
|
if (tp->tun_flags & TUN_PREPADDR) {
|
2001-10-31 23:08:17 +03:00
|
|
|
if (uio->uio_resid < sizeof(dst)) {
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EIO;
|
|
|
|
goto out0;
|
2001-10-31 23:08:17 +03:00
|
|
|
}
|
2007-03-04 08:59:00 +03:00
|
|
|
error = uiomove((void *)&dst, sizeof(dst), uio);
|
1996-06-26 02:15:13 +04:00
|
|
|
if (dst.sa_len > sizeof(dst)) {
|
|
|
|
/* Duh.. */
|
|
|
|
char discard;
|
|
|
|
int n = dst.sa_len - sizeof(dst);
|
|
|
|
while (n--)
|
2001-10-31 23:08:17 +03:00
|
|
|
if ((error = uiomove(&discard, 1, uio)) != 0) {
|
2004-05-14 17:23:12 +04:00
|
|
|
goto out0;
|
2001-10-31 23:08:17 +03:00
|
|
|
}
|
1996-06-26 02:15:13 +04:00
|
|
|
}
|
2006-04-04 15:33:15 +04:00
|
|
|
} else if (tp->tun_flags & TUN_IFHEAD) {
|
2006-02-28 03:38:35 +03:00
|
|
|
if (uio->uio_resid < sizeof(family)){
|
|
|
|
error = EIO;
|
|
|
|
goto out0;
|
|
|
|
}
|
2007-03-04 08:59:00 +03:00
|
|
|
error = uiomove((void *)&family, sizeof(family), uio);
|
2006-02-28 03:38:35 +03:00
|
|
|
dst.sa_family = ntohl(family);
|
2006-04-04 15:33:15 +04:00
|
|
|
} else {
|
|
|
|
#ifdef INET
|
|
|
|
dst.sa_family = AF_INET;
|
|
|
|
#endif
|
1996-06-26 02:15:13 +04:00
|
|
|
}
|
|
|
|
|
2002-09-23 08:26:17 +04:00
|
|
|
if (uio->uio_resid > TUNMTU) {
|
1999-03-04 05:38:31 +03:00
|
|
|
TUNDEBUG("%s: len=%lu!\n", ifp->if_xname,
|
|
|
|
(unsigned long)uio->uio_resid);
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EIO;
|
|
|
|
goto out0;
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
1996-06-26 02:15:13 +04:00
|
|
|
|
|
|
|
switch (dst.sa_family) {
|
|
|
|
#ifdef INET
|
|
|
|
case AF_INET:
|
|
|
|
ifq = &ipintrq;
|
|
|
|
isr = NETISR_IP;
|
|
|
|
break;
|
2006-02-05 19:44:55 +03:00
|
|
|
#endif
|
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
ifq = &ip6intrq;
|
|
|
|
isr = NETISR_IPV6;
|
2006-03-29 23:29:00 +04:00
|
|
|
break;
|
1996-06-26 02:15:13 +04:00
|
|
|
#endif
|
|
|
|
default:
|
2004-05-14 17:23:12 +04:00
|
|
|
error = EAFNOSUPPORT;
|
|
|
|
goto out0;
|
1996-06-26 02:15:13 +04:00
|
|
|
}
|
|
|
|
|
1993-12-13 08:06:33 +03:00
|
|
|
tlen = uio->uio_resid;
|
|
|
|
|
|
|
|
/* get a header mbuf */
|
|
|
|
MGETHDR(m, M_DONTWAIT, MT_DATA);
|
2001-10-31 23:08:17 +03:00
|
|
|
if (m == NULL) {
|
2004-05-14 17:23:12 +04:00
|
|
|
error = ENOBUFS;
|
|
|
|
goto out0;
|
2001-10-31 23:08:17 +03:00
|
|
|
}
|
1993-12-13 08:06:33 +03:00
|
|
|
mlen = MHLEN;
|
|
|
|
|
2004-03-01 16:54:02 +03:00
|
|
|
top = NULL;
|
1993-11-14 23:07:20 +03:00
|
|
|
mp = ⊤
|
|
|
|
while (error == 0 && uio->uio_resid > 0) {
|
1994-05-26 04:47:19 +04:00
|
|
|
m->m_len = min(mlen, uio->uio_resid);
|
2007-03-04 08:59:00 +03:00
|
|
|
error = uiomove(mtod(m, void *), m->m_len, uio);
|
1993-11-14 23:07:20 +03:00
|
|
|
*mp = m;
|
|
|
|
mp = &m->m_next;
|
2004-03-01 16:54:02 +03:00
|
|
|
if (error == 0 && uio->uio_resid > 0) {
|
|
|
|
MGET(m, M_DONTWAIT, MT_DATA);
|
|
|
|
if (m == NULL) {
|
1993-12-13 08:06:33 +03:00
|
|
|
error = ENOBUFS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mlen = MLEN;
|
|
|
|
}
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
|
|
|
if (error) {
|
2004-03-01 16:54:02 +03:00
|
|
|
if (top != NULL)
|
1993-12-13 08:06:33 +03:00
|
|
|
m_freem (top);
|
1995-12-14 02:47:40 +03:00
|
|
|
ifp->if_ierrors++;
|
2004-05-14 17:23:12 +04:00
|
|
|
goto out0;
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
|
|
|
|
1993-12-13 08:06:33 +03:00
|
|
|
top->m_pkthdr.len = tlen;
|
|
|
|
top->m_pkthdr.rcvif = ifp;
|
|
|
|
|
|
|
|
#if NBPFILTER > 0
|
2004-08-20 00:58:23 +04:00
|
|
|
if (ifp->if_bpf)
|
2006-02-28 03:38:35 +03:00
|
|
|
bpf_mtap_af(ifp->if_bpf, dst.sa_family, top);
|
1993-12-13 08:06:33 +03:00
|
|
|
#endif
|
1993-11-14 23:07:20 +03:00
|
|
|
|
2001-04-14 03:29:55 +04:00
|
|
|
s = splnet();
|
2004-05-14 17:23:12 +04:00
|
|
|
simple_lock(&tp->tun_lock);
|
|
|
|
if ((tp->tun_flags & TUN_INITED) == 0) {
|
|
|
|
/* Interface was destroyed */
|
|
|
|
error = ENXIO;
|
|
|
|
goto out;
|
|
|
|
}
|
1996-06-26 02:15:13 +04:00
|
|
|
if (IF_QFULL(ifq)) {
|
|
|
|
IF_DROP(ifq);
|
1993-11-14 23:07:20 +03:00
|
|
|
ifp->if_collisions++;
|
|
|
|
m_freem(top);
|
2004-05-14 17:23:12 +04:00
|
|
|
error = ENOBUFS;
|
|
|
|
goto out;
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
2004-05-14 17:23:12 +04:00
|
|
|
|
1996-06-26 02:15:13 +04:00
|
|
|
IF_ENQUEUE(ifq, top);
|
1993-11-14 23:07:20 +03:00
|
|
|
ifp->if_ipackets++;
|
2002-12-25 11:40:20 +03:00
|
|
|
ifp->if_ibytes += tlen;
|
1996-06-26 02:15:13 +04:00
|
|
|
schednetisr(isr);
|
2004-05-14 17:23:12 +04:00
|
|
|
out:
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_unlock(&tp->tun_lock);
|
2004-05-14 17:23:12 +04:00
|
|
|
out_nolock:
|
|
|
|
splx(s);
|
|
|
|
out0:
|
1996-06-26 02:15:13 +04:00
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2002-03-05 07:12:57 +03:00
|
|
|
#ifdef ALTQ
|
|
|
|
/*
|
|
|
|
* Start packet transmission on the interface.
|
|
|
|
* when the interface queue is rate-limited by ALTQ or TBR,
|
|
|
|
* if_start is needed to drain packets from the queue in order
|
|
|
|
* to notify readers when outgoing packets become ready.
|
2004-05-14 17:23:12 +04:00
|
|
|
*
|
|
|
|
* Should be called at splnet.
|
2002-03-05 07:12:57 +03:00
|
|
|
*/
|
|
|
|
static void
|
2005-12-12 02:05:24 +03:00
|
|
|
tunstart(struct ifnet *ifp)
|
2002-03-05 07:12:57 +03:00
|
|
|
{
|
|
|
|
struct tun_softc *tp = ifp->if_softc;
|
|
|
|
|
|
|
|
if (!ALTQ_IS_ENABLED(&ifp->if_snd) && !TBR_IS_ENABLED(&ifp->if_snd))
|
|
|
|
return;
|
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
simple_lock(&tp->tun_lock);
|
|
|
|
if (!IF_IS_EMPTY(&ifp->if_snd)) {
|
2002-03-05 07:12:57 +03:00
|
|
|
if (tp->tun_flags & TUN_RWAIT) {
|
|
|
|
tp->tun_flags &= ~TUN_RWAIT;
|
2007-03-04 08:59:00 +03:00
|
|
|
wakeup((void *)tp);
|
2002-03-05 07:12:57 +03:00
|
|
|
}
|
2003-09-21 23:16:48 +04:00
|
|
|
if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
|
2008-04-24 19:35:27 +04:00
|
|
|
softint_schedule(tp->tun_osih);
|
2004-05-14 17:23:12 +04:00
|
|
|
|
2008-03-01 17:16:49 +03:00
|
|
|
selnotify(&tp->tun_rsel, 0, 0);
|
2002-03-05 07:12:57 +03:00
|
|
|
}
|
2004-05-14 17:23:12 +04:00
|
|
|
simple_unlock(&tp->tun_lock);
|
2002-03-05 07:12:57 +03:00
|
|
|
}
|
|
|
|
#endif /* ALTQ */
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1996-09-07 16:40:22 +04:00
|
|
|
* tunpoll - the poll interface, this is only useful on reads
|
1993-11-14 23:07:20 +03:00
|
|
|
* really. The write detect always returns true, write never blocks
|
|
|
|
* anyway, it either accepts the packet or drops it.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-11-14 23:07:20 +03:00
|
|
|
int
|
2005-12-12 02:05:24 +03:00
|
|
|
tunpoll(dev_t dev, int events, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2001-10-31 23:08:17 +03:00
|
|
|
struct tun_softc *tp;
|
|
|
|
struct ifnet *ifp;
|
|
|
|
int s, revents = 0;
|
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
s = splnet();
|
2001-10-31 23:08:17 +03:00
|
|
|
tp = tun_find_unit(dev);
|
|
|
|
|
|
|
|
/* interface was "destroyed" already */
|
|
|
|
if (tp == NULL)
|
2004-05-14 17:23:12 +04:00
|
|
|
goto out_nolock;
|
2001-10-31 23:08:17 +03:00
|
|
|
|
|
|
|
ifp = &tp->tun_if;
|
1993-11-14 23:07:20 +03:00
|
|
|
|
1996-09-07 16:40:22 +04:00
|
|
|
TUNDEBUG("%s: tunpoll\n", ifp->if_xname);
|
1993-11-14 23:07:20 +03:00
|
|
|
|
1998-08-20 23:55:06 +04:00
|
|
|
if (events & (POLLIN | POLLRDNORM)) {
|
2004-05-14 17:23:12 +04:00
|
|
|
if (!IFQ_IS_EMPTY(&ifp->if_snd)) {
|
1996-09-07 16:40:22 +04:00
|
|
|
TUNDEBUG("%s: tunpoll q=%d\n", ifp->if_xname,
|
1996-05-07 06:40:22 +04:00
|
|
|
ifp->if_snd.ifq_len);
|
1996-09-07 16:40:22 +04:00
|
|
|
revents |= events & (POLLIN | POLLRDNORM);
|
|
|
|
} else {
|
|
|
|
TUNDEBUG("%s: tunpoll waiting\n", ifp->if_xname);
|
2005-12-11 15:16:03 +03:00
|
|
|
selrecord(l, &tp->tun_rsel);
|
1993-11-14 23:07:20 +03:00
|
|
|
}
|
1998-08-20 23:55:06 +04:00
|
|
|
}
|
1996-09-07 16:40:22 +04:00
|
|
|
|
|
|
|
if (events & (POLLOUT | POLLWRNORM))
|
|
|
|
revents |= events & (POLLOUT | POLLWRNORM);
|
|
|
|
|
2001-10-31 23:08:17 +03:00
|
|
|
simple_unlock(&tp->tun_lock);
|
2004-05-14 17:23:12 +04:00
|
|
|
out_nolock:
|
|
|
|
splx(s);
|
1996-09-07 16:40:22 +04:00
|
|
|
return (revents);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2002-10-23 13:10:23 +04:00
|
|
|
|
|
|
|
static void
|
|
|
|
filt_tunrdetach(struct knote *kn)
|
|
|
|
{
|
|
|
|
struct tun_softc *tp = kn->kn_hook;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
s = splnet();
|
2002-11-26 21:51:18 +03:00
|
|
|
SLIST_REMOVE(&tp->tun_rsel.sel_klist, kn, knote, kn_selnext);
|
2002-10-23 13:10:23 +04:00
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2006-11-16 04:32:37 +03:00
|
|
|
filt_tunread(struct knote *kn, long hint)
|
2002-10-23 13:10:23 +04:00
|
|
|
{
|
|
|
|
struct tun_softc *tp = kn->kn_hook;
|
|
|
|
struct ifnet *ifp = &tp->tun_if;
|
|
|
|
struct mbuf *m;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
s = splnet();
|
|
|
|
IF_POLL(&ifp->if_snd, m);
|
|
|
|
if (m == NULL) {
|
|
|
|
splx(s);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (kn->kn_data = 0; m != NULL; m = m->m_next)
|
|
|
|
kn->kn_data += m->m_len;
|
|
|
|
|
|
|
|
splx(s);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct filterops tunread_filtops =
|
|
|
|
{ 1, NULL, filt_tunrdetach, filt_tunread };
|
|
|
|
|
|
|
|
static const struct filterops tun_seltrue_filtops =
|
|
|
|
{ 1, NULL, filt_tunrdetach, filt_seltrue };
|
|
|
|
|
|
|
|
int
|
|
|
|
tunkqfilter(dev_t dev, struct knote *kn)
|
|
|
|
{
|
2004-05-14 17:23:12 +04:00
|
|
|
struct tun_softc *tp;
|
2002-10-23 13:10:23 +04:00
|
|
|
struct klist *klist;
|
2004-05-14 17:23:12 +04:00
|
|
|
int rv = 0, s;
|
|
|
|
|
|
|
|
s = splnet();
|
|
|
|
tp = tun_find_unit(dev);
|
|
|
|
if (tp == NULL)
|
|
|
|
goto out_nolock;
|
2002-10-23 13:10:23 +04:00
|
|
|
|
|
|
|
switch (kn->kn_filter) {
|
|
|
|
case EVFILT_READ:
|
2002-11-26 21:51:18 +03:00
|
|
|
klist = &tp->tun_rsel.sel_klist;
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_fop = &tunread_filtops;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EVFILT_WRITE:
|
2002-11-26 21:51:18 +03:00
|
|
|
klist = &tp->tun_rsel.sel_klist;
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_fop = &tun_seltrue_filtops;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2007-12-05 20:19:46 +03:00
|
|
|
rv = EINVAL;
|
2004-05-14 17:23:12 +04:00
|
|
|
goto out;
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
kn->kn_hook = tp;
|
|
|
|
|
|
|
|
SLIST_INSERT_HEAD(klist, kn, kn_selnext);
|
|
|
|
|
2004-05-14 17:23:12 +04:00
|
|
|
out:
|
|
|
|
simple_unlock(&tp->tun_lock);
|
|
|
|
out_nolock:
|
|
|
|
splx(s);
|
|
|
|
return (rv);
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|