Home | History | Annotate | Line # | Download | only in net
if_tun.c revision 1.83
      1  1.83    rpaulo /*	$NetBSD: if_tun.c,v 1.83 2006/03/29 19:29:00 rpaulo Exp $	*/
      2  1.14       cgd 
      3   1.1       cgd /*
      4   1.8   deraadt  * Copyright (c) 1988, Julian Onions <jpo (at) cs.nott.ac.uk>
      5   1.8   deraadt  * Nottingham University 1987.
      6   1.1       cgd  *
      7   1.1       cgd  * This source may be freely distributed, however I would be interested
      8   1.1       cgd  * in any changes that are made.
      9   1.6   deraadt  *
     10   1.1       cgd  * This driver takes packets off the IP i/f and hands them up to a
     11  1.21    scottr  * user process to have its wicked way with. This driver has its
     12   1.1       cgd  * roots in a similar driver written by Phil Cockcroft (formerly) at
     13  1.27   mycroft  * UCL. This driver is based much more on read/write/poll mode of
     14   1.1       cgd  * operation though.
     15   1.1       cgd  */
     16  1.48     lukem 
     17  1.48     lukem #include <sys/cdefs.h>
     18  1.83    rpaulo __KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.83 2006/03/29 19:29:00 rpaulo Exp $");
     19  1.33  jonathan 
     20  1.33  jonathan #include "opt_inet.h"
     21  1.34  jonathan #include "opt_ns.h"
     22   1.8   deraadt 
     23   1.6   deraadt #include <sys/param.h>
     24   1.8   deraadt #include <sys/proc.h>
     25   1.6   deraadt #include <sys/systm.h>
     26   1.6   deraadt #include <sys/mbuf.h>
     27   1.6   deraadt #include <sys/buf.h>
     28   1.6   deraadt #include <sys/protosw.h>
     29   1.6   deraadt #include <sys/socket.h>
     30   1.6   deraadt #include <sys/ioctl.h>
     31   1.6   deraadt #include <sys/errno.h>
     32   1.6   deraadt #include <sys/syslog.h>
     33   1.6   deraadt #include <sys/select.h>
     34  1.27   mycroft #include <sys/poll.h>
     35   1.8   deraadt #include <sys/file.h>
     36  1.22  christos #include <sys/signalvar.h>
     37  1.23  christos #include <sys/conf.h>
     38   1.9   deraadt 
     39   1.9   deraadt #include <machine/cpu.h>
     40   1.6   deraadt 
     41   1.6   deraadt #include <net/if.h>
     42  1.69      tron #include <net/if_types.h>
     43   1.6   deraadt #include <net/netisr.h>
     44   1.6   deraadt #include <net/route.h>
     45   1.1       cgd 
     46  1.30        is 
     47   1.1       cgd #ifdef INET
     48   1.6   deraadt #include <netinet/in.h>
     49   1.6   deraadt #include <netinet/in_systm.h>
     50   1.6   deraadt #include <netinet/in_var.h>
     51   1.6   deraadt #include <netinet/ip.h>
     52  1.30        is #include <netinet/if_inarp.h>
     53   1.1       cgd #endif
     54   1.1       cgd 
     55   1.1       cgd #ifdef NS
     56   1.6   deraadt #include <netns/ns.h>
     57   1.6   deraadt #include <netns/ns_if.h>
     58   1.1       cgd #endif
     59   1.1       cgd 
     60   1.8   deraadt #include "bpfilter.h"
     61   1.8   deraadt #if NBPFILTER > 0
     62   1.8   deraadt #include <sys/time.h>
     63   1.8   deraadt #include <net/bpf.h>
     64   1.8   deraadt #endif
     65   1.8   deraadt 
     66   1.8   deraadt #include <net/if_tun.h>
     67   1.8   deraadt 
     68  1.29  christos #define TUNDEBUG	if (tundebug) printf
     69   1.6   deraadt int	tundebug = 0;
     70   1.1       cgd 
     71   1.6   deraadt extern int ifqmaxlen;
     72  1.78   thorpej void	tunattach(int);
     73  1.78   thorpej 
     74  1.78   thorpej static LIST_HEAD(, tun_softc) tun_softc_list;
     75  1.78   thorpej static LIST_HEAD(, tun_softc) tunz_softc_list;
     76  1.46    atatat static struct simplelock tun_softc_lock;
     77   1.6   deraadt 
     78  1.78   thorpej static int	tun_ioctl(struct ifnet *, u_long, caddr_t);
     79  1.78   thorpej static int	tun_output(struct ifnet *, struct mbuf *, struct sockaddr *,
     80  1.78   thorpej 		       struct rtentry *rt);
     81  1.78   thorpej static int	tun_clone_create(struct if_clone *, int);
     82  1.78   thorpej static int	tun_clone_destroy(struct ifnet *);
     83   1.6   deraadt 
     84  1.78   thorpej static struct if_clone tun_cloner =
     85  1.46    atatat     IF_CLONE_INITIALIZER("tun", tun_clone_create, tun_clone_destroy);
     86  1.46    atatat 
     87  1.78   thorpej static void tunattach0(struct tun_softc *);
     88  1.78   thorpej static void tuninit(struct tun_softc *);
     89  1.50    itojun #ifdef ALTQ
     90  1.78   thorpej static void tunstart(struct ifnet *);
     91  1.50    itojun #endif
     92  1.78   thorpej static struct tun_softc *tun_find_unit(dev_t);
     93  1.78   thorpej static struct tun_softc *tun_find_zunit(int);
     94  1.53   gehenna 
     95  1.78   thorpej static dev_type_open(tunopen);
     96  1.78   thorpej static dev_type_close(tunclose);
     97  1.78   thorpej static dev_type_read(tunread);
     98  1.78   thorpej static dev_type_write(tunwrite);
     99  1.78   thorpej static dev_type_ioctl(tunioctl);
    100  1.78   thorpej static dev_type_poll(tunpoll);
    101  1.78   thorpej static dev_type_kqfilter(tunkqfilter);
    102  1.53   gehenna 
    103  1.53   gehenna const struct cdevsw tun_cdevsw = {
    104  1.53   gehenna 	tunopen, tunclose, tunread, tunwrite, tunioctl,
    105  1.56  jdolecek 	nostop, notty, tunpoll, nommap, tunkqfilter,
    106  1.53   gehenna };
    107   1.6   deraadt 
    108   1.8   deraadt void
    109  1.78   thorpej tunattach(int unused)
    110   1.8   deraadt {
    111  1.46    atatat 
    112  1.46    atatat 	simple_lock_init(&tun_softc_lock);
    113  1.46    atatat 	LIST_INIT(&tun_softc_list);
    114  1.70        pk 	LIST_INIT(&tunz_softc_list);
    115  1.46    atatat 	if_clone_attach(&tun_cloner);
    116  1.46    atatat }
    117  1.46    atatat 
    118  1.70        pk /*
    119  1.70        pk  * Find driver instance from dev_t.
    120  1.70        pk  * Call at splnet().
    121  1.70        pk  * Returns with tp locked (if found).
    122  1.70        pk  */
    123  1.70        pk static struct tun_softc *
    124  1.78   thorpej tun_find_unit(dev_t dev)
    125  1.70        pk {
    126  1.70        pk 	struct tun_softc *tp;
    127  1.70        pk 	int unit = minor(dev);
    128  1.70        pk 
    129  1.70        pk 	simple_lock(&tun_softc_lock);
    130  1.70        pk 	LIST_FOREACH(tp, &tun_softc_list, tun_list)
    131  1.70        pk 		if (unit == tp->tun_unit)
    132  1.70        pk 			break;
    133  1.70        pk 	if (tp)
    134  1.70        pk 		simple_lock(&tp->tun_lock);
    135  1.70        pk 	simple_unlock(&tun_softc_lock);
    136  1.70        pk 
    137  1.70        pk 	return (tp);
    138  1.70        pk }
    139  1.70        pk 
    140  1.70        pk /*
    141  1.70        pk  * Find zombie driver instance by unit number.
    142  1.70        pk  * Call at splnet().
    143  1.70        pk  * Remove tp from list and return it unlocked (if found).
    144  1.70        pk  */
    145  1.70        pk static struct tun_softc *
    146  1.78   thorpej tun_find_zunit(int unit)
    147  1.70        pk {
    148  1.70        pk 	struct tun_softc *tp;
    149  1.70        pk 
    150  1.70        pk 	simple_lock(&tun_softc_lock);
    151  1.70        pk 	LIST_FOREACH(tp, &tunz_softc_list, tun_list)
    152  1.70        pk 		if (unit == tp->tun_unit)
    153  1.70        pk 			break;
    154  1.70        pk 	if (tp)
    155  1.70        pk 		LIST_REMOVE(tp, tun_list);
    156  1.70        pk 	simple_unlock(&tun_softc_lock);
    157  1.70        pk #ifdef DIAGNOSTIC
    158  1.70        pk 	if (tp != NULL && (tp->tun_flags & (TUN_INITED|TUN_OPEN)) != TUN_OPEN)
    159  1.70        pk 		printf("tun%d: inconsistent flags: %x\n", unit, tp->tun_flags);
    160  1.70        pk #endif
    161  1.70        pk 
    162  1.70        pk 	return (tp);
    163  1.70        pk }
    164  1.70        pk 
    165  1.78   thorpej static int
    166  1.78   thorpej tun_clone_create(struct if_clone *ifc, int unit)
    167  1.46    atatat {
    168  1.70        pk 	struct tun_softc *tp;
    169  1.46    atatat 
    170  1.70        pk 	if ((tp = tun_find_zunit(unit)) == NULL) {
    171  1.70        pk 		/* Allocate a new instance */
    172  1.70        pk 		tp = malloc(sizeof(struct tun_softc), M_DEVBUF, M_WAITOK);
    173  1.70        pk 		(void)memset(tp, 0, sizeof(struct tun_softc));
    174  1.46    atatat 
    175  1.70        pk 		tp->tun_unit = unit;
    176  1.70        pk 		simple_lock_init(&tp->tun_lock);
    177  1.70        pk 	} else {
    178  1.70        pk 		/* Revive tunnel instance; clear ifp part */
    179  1.70        pk 		(void)memset(&tp->tun_if, 0, sizeof(struct ifnet));
    180  1.70        pk 	}
    181  1.46    atatat 
    182  1.70        pk 	(void)snprintf(tp->tun_if.if_xname, sizeof(tp->tun_if.if_xname),
    183  1.70        pk 			"%s%d", ifc->ifc_name, unit);
    184  1.70        pk 	tunattach0(tp);
    185  1.70        pk 	tp->tun_flags |= TUN_INITED;
    186  1.46    atatat 
    187  1.46    atatat 	simple_lock(&tun_softc_lock);
    188  1.70        pk 	LIST_INSERT_HEAD(&tun_softc_list, tp, tun_list);
    189  1.46    atatat 	simple_unlock(&tun_softc_lock);
    190  1.46    atatat 
    191  1.46    atatat 	return (0);
    192  1.46    atatat }
    193  1.46    atatat 
    194  1.78   thorpej static void
    195  1.78   thorpej tunattach0(struct tun_softc *tp)
    196  1.46    atatat {
    197  1.70        pk 	struct ifnet *ifp;
    198  1.46    atatat 
    199  1.70        pk 	ifp = &tp->tun_if;
    200  1.70        pk 	ifp->if_softc = tp;
    201  1.46    atatat 	ifp->if_mtu = TUNMTU;
    202  1.46    atatat 	ifp->if_ioctl = tun_ioctl;
    203  1.46    atatat 	ifp->if_output = tun_output;
    204  1.50    itojun #ifdef ALTQ
    205  1.50    itojun 	ifp->if_start = tunstart;
    206  1.50    itojun #endif
    207  1.46    atatat 	ifp->if_flags = IFF_POINTOPOINT;
    208  1.69      tron 	ifp->if_type = IFT_TUNNEL;
    209  1.46    atatat 	ifp->if_snd.ifq_maxlen = ifqmaxlen;
    210  1.46    atatat 	ifp->if_collisions = 0;
    211  1.46    atatat 	ifp->if_ierrors = 0;
    212  1.46    atatat 	ifp->if_oerrors = 0;
    213  1.46    atatat 	ifp->if_ipackets = 0;
    214  1.46    atatat 	ifp->if_opackets = 0;
    215  1.58  jdolecek 	ifp->if_ibytes   = 0;
    216  1.58  jdolecek 	ifp->if_obytes   = 0;
    217  1.46    atatat 	ifp->if_dlt = DLT_NULL;
    218  1.50    itojun 	IFQ_SET_READY(&ifp->if_snd);
    219  1.46    atatat 	if_attach(ifp);
    220  1.46    atatat 	if_alloc_sadl(ifp);
    221  1.46    atatat #if NBPFILTER > 0
    222  1.46    atatat 	bpfattach(ifp, DLT_NULL, sizeof(u_int32_t));
    223  1.46    atatat #endif
    224  1.46    atatat }
    225  1.46    atatat 
    226  1.78   thorpej static int
    227  1.78   thorpej tun_clone_destroy(struct ifnet *ifp)
    228  1.46    atatat {
    229  1.46    atatat 	struct tun_softc *tp = (void *)ifp;
    230  1.70        pk 	int s, zombie = 0;
    231   1.8   deraadt 
    232  1.70        pk 	s = splnet();
    233  1.46    atatat 	simple_lock(&tun_softc_lock);
    234  1.46    atatat 	simple_lock(&tp->tun_lock);
    235  1.46    atatat 	LIST_REMOVE(tp, tun_list);
    236  1.70        pk 	if (tp->tun_flags & TUN_OPEN) {
    237  1.70        pk 		/* Hang on to storage until last close */
    238  1.70        pk 		zombie = 1;
    239  1.70        pk 		tp->tun_flags &= ~TUN_INITED;
    240  1.70        pk 		LIST_INSERT_HEAD(&tunz_softc_list, tp, tun_list);
    241  1.70        pk 	}
    242  1.46    atatat 	simple_unlock(&tun_softc_lock);
    243  1.46    atatat 
    244  1.70        pk 	IF_PURGE(&ifp->if_snd);
    245  1.70        pk 	ifp->if_flags &= ~IFF_RUNNING;
    246  1.70        pk 
    247  1.46    atatat 	if (tp->tun_flags & TUN_RWAIT) {
    248  1.46    atatat 		tp->tun_flags &= ~TUN_RWAIT;
    249  1.46    atatat 		wakeup((caddr_t)tp);
    250  1.46    atatat 	}
    251  1.64  jdolecek 	if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
    252  1.66  christos 		fownsignal(tp->tun_pgid, SIGIO, POLL_HUP, 0, NULL);
    253  1.64  jdolecek 
    254  1.46    atatat 	selwakeup(&tp->tun_rsel);
    255   1.8   deraadt 
    256  1.70        pk 	simple_unlock(&tp->tun_lock);
    257  1.70        pk 	splx(s);
    258  1.70        pk 
    259   1.8   deraadt #if NBPFILTER > 0
    260  1.46    atatat 	bpfdetach(ifp);
    261   1.8   deraadt #endif
    262  1.46    atatat 	if_detach(ifp);
    263  1.46    atatat 
    264  1.70        pk 	if (!zombie)
    265  1.70        pk 		free(tp, M_DEVBUF);
    266  1.73     peter 
    267  1.73     peter 	return (0);
    268   1.8   deraadt }
    269   1.8   deraadt 
    270   1.6   deraadt /*
    271   1.6   deraadt  * tunnel open - must be superuser & the device must be
    272   1.6   deraadt  * configured in
    273   1.6   deraadt  */
    274  1.78   thorpej static int
    275  1.78   thorpej tunopen(dev_t dev, int flag, int mode, struct lwp *l)
    276   1.6   deraadt {
    277  1.77  christos 	struct proc 	*p = l->l_proc;
    278   1.6   deraadt 	struct ifnet	*ifp;
    279   1.8   deraadt 	struct tun_softc *tp;
    280  1.70        pk 	int	s, error;
    281   1.1       cgd 
    282  1.22  christos 	if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
    283   1.5   deraadt 		return (error);
    284   1.5   deraadt 
    285  1.70        pk 	s = splnet();
    286  1.46    atatat 	tp = tun_find_unit(dev);
    287  1.52    atatat 
    288  1.70        pk 	if (tp == NULL) {
    289  1.52    atatat 		(void)tun_clone_create(&tun_cloner, minor(dev));
    290  1.52    atatat 		tp = tun_find_unit(dev);
    291  1.70        pk 		if (tp == NULL) {
    292  1.70        pk 			error = ENXIO;
    293  1.70        pk 			goto out_nolock;
    294  1.70        pk 		}
    295  1.52    atatat 	}
    296  1.46    atatat 
    297  1.46    atatat 	if (tp->tun_flags & TUN_OPEN) {
    298  1.70        pk 		error = EBUSY;
    299  1.70        pk 		goto out;
    300  1.46    atatat 	}
    301  1.46    atatat 
    302   1.6   deraadt 	ifp = &tp->tun_if;
    303   1.6   deraadt 	tp->tun_flags |= TUN_OPEN;
    304  1.24   thorpej 	TUNDEBUG("%s: open\n", ifp->if_xname);
    305  1.70        pk out:
    306  1.46    atatat 	simple_unlock(&tp->tun_lock);
    307  1.70        pk out_nolock:
    308  1.70        pk 	splx(s);
    309  1.70        pk 	return (error);
    310   1.1       cgd }
    311   1.1       cgd 
    312   1.6   deraadt /*
    313   1.6   deraadt  * tunclose - close the device - mark i/f down & delete
    314   1.6   deraadt  * routing info
    315   1.6   deraadt  */
    316   1.6   deraadt int
    317  1.78   thorpej tunclose(dev_t dev, int flag, int mode, struct lwp *l)
    318   1.6   deraadt {
    319  1.46    atatat 	int	s;
    320  1.46    atatat 	struct tun_softc *tp;
    321  1.46    atatat 	struct ifnet	*ifp;
    322   1.6   deraadt 
    323  1.70        pk 	s = splnet();
    324  1.70        pk 	if ((tp = tun_find_zunit(minor(dev))) != NULL) {
    325  1.70        pk 		/* interface was "destroyed" before the close */
    326  1.70        pk 		free(tp, M_DEVBUF);
    327  1.70        pk 		goto out_nolock;
    328  1.70        pk 	}
    329  1.46    atatat 
    330  1.70        pk 	if ((tp = tun_find_unit(dev)) == NULL)
    331  1.70        pk 		goto out_nolock;
    332  1.46    atatat 
    333  1.46    atatat 	ifp = &tp->tun_if;
    334  1.46    atatat 
    335  1.10    andrew 	tp->tun_flags &= ~TUN_OPEN;
    336   1.6   deraadt 
    337   1.6   deraadt 	/*
    338   1.6   deraadt 	 * junk all pending output
    339   1.6   deraadt 	 */
    340  1.50    itojun 	IFQ_PURGE(&ifp->if_snd);
    341   1.6   deraadt 
    342   1.6   deraadt 	if (ifp->if_flags & IFF_UP) {
    343   1.6   deraadt 		if_down(ifp);
    344   1.8   deraadt 		if (ifp->if_flags & IFF_RUNNING) {
    345  1.17   mycroft 			/* find internet addresses and delete routes */
    346  1.39  augustss 			struct ifaddr *ifa;
    347  1.76      matt 			IFADDR_FOREACH(ifa, ifp) {
    348  1.80    rpaulo #if defined(INET) || defined(INET6)
    349  1.80    rpaulo 				if (ifa->ifa_addr->sa_family == AF_INET ||
    350  1.80    rpaulo 				    ifa->ifa_addr->sa_family == AF_INET6) {
    351  1.18   mycroft 					rtinit(ifa, (int)RTM_DELETE,
    352  1.26        pk 					       tp->tun_flags & TUN_DSTADDR
    353  1.26        pk 							? RTF_HOST
    354  1.26        pk 							: 0);
    355  1.18   mycroft 				}
    356  1.38    itojun #endif
    357  1.11   deraadt 			}
    358   1.8   deraadt 		}
    359   1.6   deraadt 	}
    360  1.64  jdolecek 	tp->tun_pgid = 0;
    361  1.56  jdolecek 	selnotify(&tp->tun_rsel, 0);
    362  1.70        pk 
    363  1.24   thorpej 	TUNDEBUG ("%s: closed\n", ifp->if_xname);
    364  1.46    atatat 	simple_unlock(&tp->tun_lock);
    365  1.70        pk out_nolock:
    366  1.70        pk 	splx(s);
    367   1.6   deraadt 	return (0);
    368   1.1       cgd }
    369   1.1       cgd 
    370  1.70        pk /*
    371  1.70        pk  * Call at splnet() with tp locked.
    372  1.70        pk  */
    373  1.26        pk static void
    374  1.78   thorpej tuninit(struct tun_softc *tp)
    375   1.6   deraadt {
    376   1.6   deraadt 	struct ifnet	*ifp = &tp->tun_if;
    377  1.46    atatat 	struct ifaddr	*ifa;
    378   1.8   deraadt 
    379  1.24   thorpej 	TUNDEBUG("%s: tuninit\n", ifp->if_xname);
    380   1.6   deraadt 
    381   1.6   deraadt 	ifp->if_flags |= IFF_UP | IFF_RUNNING;
    382   1.8   deraadt 
    383  1.26        pk 	tp->tun_flags &= ~(TUN_IASET|TUN_DSTADDR);
    384  1.76      matt 	IFADDR_FOREACH(ifa, ifp) {
    385  1.38    itojun #ifdef INET
    386  1.11   deraadt 		if (ifa->ifa_addr->sa_family == AF_INET) {
    387  1.17   mycroft 			struct sockaddr_in *sin;
    388  1.11   deraadt 
    389  1.17   mycroft 			sin = satosin(ifa->ifa_addr);
    390  1.17   mycroft 			if (sin && sin->sin_addr.s_addr)
    391  1.17   mycroft 				tp->tun_flags |= TUN_IASET;
    392  1.17   mycroft 
    393  1.26        pk 			if (ifp->if_flags & IFF_POINTOPOINT) {
    394  1.26        pk 				sin = satosin(ifa->ifa_dstaddr);
    395  1.26        pk 				if (sin && sin->sin_addr.s_addr)
    396  1.26        pk 					tp->tun_flags |= TUN_DSTADDR;
    397  1.26        pk 			}
    398  1.11   deraadt 		}
    399  1.38    itojun #endif
    400  1.80    rpaulo #ifdef INET6
    401  1.80    rpaulo 		if (ifa->ifa_addr->sa_family == AF_INET6) {
    402  1.80    rpaulo 			struct sockaddr_in6 *sin;
    403  1.80    rpaulo 
    404  1.80    rpaulo 			sin = (struct sockaddr_in6 *)ifa->ifa_addr;
    405  1.80    rpaulo 			if (!IN6_IS_ADDR_UNSPECIFIED(&sin->sin6_addr))
    406  1.80    rpaulo 				tp->tun_flags |= TUN_IASET;
    407  1.80    rpaulo 
    408  1.80    rpaulo 			if (ifp->if_flags & IFF_POINTOPOINT) {
    409  1.80    rpaulo 				sin = (struct sockaddr_in6 *)ifa->ifa_dstaddr;
    410  1.80    rpaulo 				if (sin &&
    411  1.80    rpaulo 				    !IN6_IS_ADDR_UNSPECIFIED(&sin->sin6_addr))
    412  1.80    rpaulo 					tp->tun_flags |= TUN_DSTADDR;
    413  1.80    rpaulo 			} else
    414  1.80    rpaulo 				tp->tun_flags &= ~TUN_DSTADDR;
    415  1.80    rpaulo 		}
    416  1.80    rpaulo #endif /* INET6 */
    417  1.18   mycroft 	}
    418   1.8   deraadt 
    419  1.26        pk 	return;
    420   1.1       cgd }
    421   1.1       cgd 
    422   1.1       cgd /*
    423   1.1       cgd  * Process an ioctl request.
    424   1.1       cgd  */
    425  1.78   thorpej static int
    426  1.78   thorpej tun_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
    427   1.6   deraadt {
    428   1.6   deraadt 	int		error = 0, s;
    429  1.46    atatat 	struct tun_softc *tp = (struct tun_softc *)(ifp->if_softc);
    430  1.46    atatat 
    431  1.70        pk 	s = splnet();
    432  1.46    atatat 	simple_lock(&tp->tun_lock);
    433   1.6   deraadt 
    434  1.61    itojun 	switch (cmd) {
    435   1.6   deraadt 	case SIOCSIFADDR:
    436  1.70        pk 		tuninit(tp);
    437  1.24   thorpej 		TUNDEBUG("%s: address set\n", ifp->if_xname);
    438   1.6   deraadt 		break;
    439   1.6   deraadt 	case SIOCSIFDSTADDR:
    440  1.70        pk 		tuninit(tp);
    441  1.24   thorpej 		TUNDEBUG("%s: destination address set\n", ifp->if_xname);
    442   1.6   deraadt 		break;
    443  1.26        pk 	case SIOCSIFBRDADDR:
    444  1.26        pk 		TUNDEBUG("%s: broadcast address set\n", ifp->if_xname);
    445  1.26        pk 		break;
    446  1.31      matt 	case SIOCSIFMTU: {
    447  1.31      matt 		struct ifreq *ifr = (struct ifreq *) data;
    448  1.31      matt 		if (ifr->ifr_mtu > TUNMTU || ifr->ifr_mtu < 576) {
    449  1.31      matt 		    error = EINVAL;
    450  1.31      matt 		    break;
    451  1.31      matt 		}
    452  1.31      matt 		TUNDEBUG("%s: interface mtu set\n", ifp->if_xname);
    453  1.31      matt 		ifp->if_mtu = ifr->ifr_mtu;
    454  1.32      matt 		break;
    455  1.32      matt 	}
    456  1.32      matt 	case SIOCADDMULTI:
    457  1.32      matt 	case SIOCDELMULTI: {
    458  1.32      matt 		struct ifreq *ifr = (struct ifreq *) data;
    459  1.32      matt 		if (ifr == 0) {
    460  1.32      matt 	        	error = EAFNOSUPPORT;           /* XXX */
    461  1.32      matt 			break;
    462  1.32      matt 		}
    463  1.32      matt 		switch (ifr->ifr_addr.sa_family) {
    464  1.32      matt #ifdef INET
    465  1.32      matt 		case AF_INET:
    466  1.32      matt 			break;
    467  1.32      matt #endif
    468  1.80    rpaulo #ifdef INET6
    469  1.80    rpaulo 		case AF_INET6:
    470  1.80    rpaulo 			break;
    471  1.80    rpaulo #endif
    472  1.32      matt 		default:
    473  1.32      matt 			error = EAFNOSUPPORT;
    474  1.32      matt 			break;
    475  1.32      matt 		}
    476  1.31      matt 		break;
    477  1.31      matt 	}
    478  1.38    itojun 	case SIOCSIFFLAGS:
    479  1.38    itojun 		break;
    480   1.6   deraadt 	default:
    481   1.6   deraadt 		error = EINVAL;
    482   1.6   deraadt 	}
    483  1.70        pk 
    484  1.70        pk 	simple_unlock(&tp->tun_lock);
    485   1.6   deraadt 	splx(s);
    486   1.6   deraadt 	return (error);
    487   1.1       cgd }
    488   1.1       cgd 
    489   1.1       cgd /*
    490  1.22  christos  * tun_output - queue packets from higher level ready to put out.
    491   1.1       cgd  */
    492  1.78   thorpej static int
    493  1.78   thorpej tun_output(struct ifnet *ifp, struct mbuf *m0, struct sockaddr *dst,
    494  1.78   thorpej     struct rtentry *rt)
    495   1.6   deraadt {
    496  1.24   thorpej 	struct tun_softc *tp = ifp->if_softc;
    497   1.6   deraadt 	int		s;
    498  1.51    itojun 	int		error;
    499  1.80    rpaulo #if defined(INET) || defined(INET6)
    500  1.75  christos 	int		mlen;
    501  1.80    rpaulo 	uint32_t	*af;
    502  1.38    itojun #endif
    503  1.50    itojun 	ALTQ_DECL(struct altq_pktattr pktattr;)
    504   1.6   deraadt 
    505  1.70        pk 	s = splnet();
    506  1.46    atatat 	simple_lock(&tp->tun_lock);
    507  1.24   thorpej 	TUNDEBUG ("%s: tun_output\n", ifp->if_xname);
    508   1.1       cgd 
    509   1.8   deraadt 	if ((tp->tun_flags & TUN_READY) != TUN_READY) {
    510  1.24   thorpej 		TUNDEBUG ("%s: not ready 0%o\n", ifp->if_xname,
    511  1.24   thorpej 			  tp->tun_flags);
    512   1.8   deraadt 		m_freem (m0);
    513  1.70        pk 		error = EHOSTDOWN;
    514  1.70        pk 		goto out;
    515   1.8   deraadt 	}
    516   1.8   deraadt 
    517  1.50    itojun 	/*
    518  1.50    itojun 	 * if the queueing discipline needs packet classification,
    519  1.50    itojun 	 * do it before prepending link headers.
    520  1.50    itojun 	 */
    521  1.50    itojun 	IFQ_CLASSIFY(&ifp->if_snd, m0, dst->sa_family, &pktattr);
    522  1.70        pk 
    523   1.8   deraadt #if NBPFILTER > 0
    524  1.72  christos 	if (ifp->if_bpf)
    525  1.72  christos 		bpf_mtap_af(ifp->if_bpf, dst->sa_family, m0);
    526   1.8   deraadt #endif
    527   1.8   deraadt 
    528   1.6   deraadt 	switch(dst->sa_family) {
    529  1.79    rpaulo #ifdef INET6
    530  1.79    rpaulo 	case AF_INET6:
    531  1.79    rpaulo #endif
    532   1.1       cgd #ifdef INET
    533   1.6   deraadt 	case AF_INET:
    534  1.79    rpaulo #endif
    535  1.79    rpaulo #if defined(INET) || defined(INET6)
    536  1.26        pk 		if (tp->tun_flags & TUN_PREPADDR) {
    537  1.26        pk 			/* Simple link-layer header */
    538  1.26        pk 			M_PREPEND(m0, dst->sa_len, M_DONTWAIT);
    539  1.26        pk 			if (m0 == NULL) {
    540  1.26        pk 				IF_DROP(&ifp->if_snd);
    541  1.70        pk 				error = ENOBUFS;
    542  1.70        pk 				goto out;
    543  1.26        pk 			}
    544  1.26        pk 			bcopy(dst, mtod(m0, char *), dst->sa_len);
    545  1.80    rpaulo 		} else {
    546  1.81    rpaulo 			/* Prepend the address family */
    547  1.82    rpaulo 			M_PREPEND(m0, sizeof(*af), M_DONTWAIT);
    548  1.80    rpaulo 			if (m0 == NULL) {
    549  1.80    rpaulo 				IF_DROP(&ifp->if_snd);
    550  1.80    rpaulo 				error = ENOBUFS;
    551  1.80    rpaulo 				goto out;
    552  1.80    rpaulo 			}
    553  1.80    rpaulo 			af = mtod(m0,uint32_t *);
    554  1.80    rpaulo 			*af = htonl(dst->sa_family);
    555  1.26        pk 		}
    556  1.36  sommerfe 		/* FALLTHROUGH */
    557  1.36  sommerfe 	case AF_UNSPEC:
    558  1.50    itojun 		IFQ_ENQUEUE(&ifp->if_snd, m0, &pktattr, error);
    559  1.50    itojun 		if (error) {
    560   1.6   deraadt 			ifp->if_collisions++;
    561  1.70        pk 			error = EAFNOSUPPORT;
    562  1.70        pk 			goto out;
    563   1.6   deraadt 		}
    564  1.58  jdolecek 		mlen = m0->m_pkthdr.len;
    565   1.6   deraadt 		ifp->if_opackets++;
    566  1.58  jdolecek 		ifp->if_obytes += mlen;
    567   1.6   deraadt 		break;
    568   1.1       cgd #endif
    569   1.6   deraadt 	default:
    570   1.6   deraadt 		m_freem(m0);
    571  1.70        pk 		error = EAFNOSUPPORT;
    572  1.70        pk 		goto out;
    573   1.6   deraadt 	}
    574   1.6   deraadt 
    575   1.6   deraadt 	if (tp->tun_flags & TUN_RWAIT) {
    576   1.6   deraadt 		tp->tun_flags &= ~TUN_RWAIT;
    577   1.6   deraadt 		wakeup((caddr_t)tp);
    578   1.6   deraadt 	}
    579  1.64  jdolecek 	if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
    580  1.66  christos 		fownsignal(tp->tun_pgid, SIGIO, POLL_IN, POLLIN|POLLRDNORM,
    581  1.66  christos 		    NULL);
    582  1.64  jdolecek 
    583  1.56  jdolecek 	selnotify(&tp->tun_rsel, 0);
    584  1.70        pk out:
    585  1.46    atatat 	simple_unlock(&tp->tun_lock);
    586  1.70        pk 	splx(s);
    587  1.26        pk 	return (0);
    588   1.1       cgd }
    589   1.1       cgd 
    590   1.1       cgd /*
    591   1.1       cgd  * the cdevsw interface is now pretty minimal.
    592   1.1       cgd  */
    593   1.6   deraadt int
    594  1.78   thorpej tunioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct lwp *l)
    595   1.6   deraadt {
    596  1.46    atatat 	struct tun_softc *tp;
    597  1.70        pk 	int s, error = 0;
    598  1.46    atatat 
    599  1.70        pk 	s = splnet();
    600  1.46    atatat 	tp = tun_find_unit(dev);
    601  1.46    atatat 
    602  1.46    atatat 	/* interface was "destroyed" already */
    603  1.70        pk 	if (tp == NULL) {
    604  1.70        pk 		error = ENXIO;
    605  1.70        pk 		goto out_nolock;
    606  1.70        pk 	}
    607   1.6   deraadt 
    608   1.6   deraadt 	switch (cmd) {
    609   1.6   deraadt 	case TUNSDEBUG:
    610   1.6   deraadt 		tundebug = *(int *)data;
    611   1.6   deraadt 		break;
    612  1.26        pk 
    613   1.6   deraadt 	case TUNGDEBUG:
    614   1.6   deraadt 		*(int *)data = tundebug;
    615   1.6   deraadt 		break;
    616  1.26        pk 
    617  1.26        pk 	case TUNSIFMODE:
    618  1.31      matt 		switch (*(int *)data & (IFF_POINTOPOINT|IFF_BROADCAST)) {
    619  1.26        pk 		case IFF_POINTOPOINT:
    620  1.26        pk 		case IFF_BROADCAST:
    621  1.26        pk 			if (tp->tun_if.if_flags & IFF_UP) {
    622  1.70        pk 				error = EBUSY;
    623  1.70        pk 				goto out;
    624  1.26        pk 			}
    625  1.26        pk 			tp->tun_if.if_flags &=
    626  1.31      matt 				~(IFF_BROADCAST|IFF_POINTOPOINT|IFF_MULTICAST);
    627  1.26        pk 			tp->tun_if.if_flags |= *(int *)data;
    628  1.26        pk 			break;
    629  1.26        pk 		default:
    630  1.70        pk 			error = EINVAL;
    631  1.70        pk 			goto out;
    632  1.26        pk 		}
    633  1.26        pk 		break;
    634  1.26        pk 
    635  1.26        pk 	case TUNSLMODE:
    636  1.26        pk 		if (*(int *)data)
    637  1.26        pk 			tp->tun_flags |= TUN_PREPADDR;
    638  1.26        pk 		else
    639  1.26        pk 			tp->tun_flags &= ~TUN_PREPADDR;
    640  1.26        pk 		break;
    641  1.26        pk 
    642   1.6   deraadt 	case FIONBIO:
    643   1.6   deraadt 		if (*(int *)data)
    644   1.6   deraadt 			tp->tun_flags |= TUN_NBIO;
    645   1.6   deraadt 		else
    646   1.6   deraadt 			tp->tun_flags &= ~TUN_NBIO;
    647   1.6   deraadt 		break;
    648  1.26        pk 
    649   1.6   deraadt 	case FIOASYNC:
    650   1.6   deraadt 		if (*(int *)data)
    651   1.6   deraadt 			tp->tun_flags |= TUN_ASYNC;
    652   1.6   deraadt 		else
    653   1.6   deraadt 			tp->tun_flags &= ~TUN_ASYNC;
    654   1.6   deraadt 		break;
    655  1.26        pk 
    656   1.6   deraadt 	case FIONREAD:
    657   1.6   deraadt 		if (tp->tun_if.if_snd.ifq_head)
    658  1.19        pk 			*(int *)data = tp->tun_if.if_snd.ifq_head->m_pkthdr.len;
    659  1.70        pk 		else
    660   1.6   deraadt 			*(int *)data = 0;
    661   1.6   deraadt 		break;
    662  1.26        pk 
    663   1.6   deraadt 	case TIOCSPGRP:
    664  1.64  jdolecek 	case FIOSETOWN:
    665  1.77  christos 		error = fsetown(l->l_proc, &tp->tun_pgid, cmd, data);
    666   1.6   deraadt 		break;
    667  1.26        pk 
    668   1.6   deraadt 	case TIOCGPGRP:
    669  1.64  jdolecek 	case FIOGETOWN:
    670  1.77  christos 		error = fgetown(l->l_proc, tp->tun_pgid, cmd, data);
    671   1.6   deraadt 		break;
    672  1.26        pk 
    673   1.6   deraadt 	default:
    674  1.70        pk 		error = ENOTTY;
    675   1.6   deraadt 	}
    676  1.70        pk 
    677  1.70        pk out:
    678  1.46    atatat 	simple_unlock(&tp->tun_lock);
    679  1.70        pk out_nolock:
    680  1.70        pk 	splx(s);
    681  1.64  jdolecek 	return (error);
    682   1.1       cgd }
    683   1.1       cgd 
    684   1.1       cgd /*
    685   1.6   deraadt  * The cdevsw read interface - reads a packet at a time, or at
    686   1.6   deraadt  * least as much of a packet as can be read.
    687   1.1       cgd  */
    688   1.6   deraadt int
    689  1.78   thorpej tunread(dev_t dev, struct uio *uio, int ioflag)
    690   1.6   deraadt {
    691  1.46    atatat 	struct tun_softc *tp;
    692  1.46    atatat 	struct ifnet	*ifp;
    693   1.6   deraadt 	struct mbuf	*m, *m0;
    694  1.70        pk 	int		error = 0, len, s, index;
    695  1.46    atatat 
    696  1.70        pk 	s = splnet();
    697  1.46    atatat 	tp = tun_find_unit(dev);
    698  1.46    atatat 
    699  1.46    atatat 	/* interface was "destroyed" already */
    700  1.70        pk 	if (tp == NULL) {
    701  1.70        pk 		error = ENXIO;
    702  1.70        pk 		goto out_nolock;
    703  1.70        pk 	}
    704  1.46    atatat 
    705  1.46    atatat 	index = tp->tun_if.if_index;
    706  1.46    atatat 	ifp = &tp->tun_if;
    707   1.6   deraadt 
    708  1.24   thorpej 	TUNDEBUG ("%s: read\n", ifp->if_xname);
    709   1.8   deraadt 	if ((tp->tun_flags & TUN_READY) != TUN_READY) {
    710  1.26        pk 		TUNDEBUG ("%s: not ready 0%o\n", ifp->if_xname, tp->tun_flags);
    711  1.70        pk 		error = EHOSTDOWN;
    712  1.70        pk 		goto out;
    713   1.8   deraadt 	}
    714   1.8   deraadt 
    715   1.6   deraadt 	tp->tun_flags &= ~TUN_RWAIT;
    716   1.6   deraadt 
    717   1.6   deraadt 	do {
    718  1.50    itojun 		IFQ_DEQUEUE(&ifp->if_snd, m0);
    719   1.6   deraadt 		if (m0 == 0) {
    720   1.6   deraadt 			if (tp->tun_flags & TUN_NBIO) {
    721  1.70        pk 				error = EWOULDBLOCK;
    722  1.70        pk 				goto out;
    723   1.6   deraadt 			}
    724   1.6   deraadt 			tp->tun_flags |= TUN_RWAIT;
    725  1.70        pk 			if (ltsleep((caddr_t)tp, PZERO|PCATCH|PNORELOCK,
    726  1.70        pk 					"tunread", 0, &tp->tun_lock) != 0) {
    727  1.70        pk 				error = EINTR;
    728  1.70        pk 				goto out_nolock;
    729  1.46    atatat 			} else {
    730  1.46    atatat 				/*
    731  1.46    atatat 				 * Maybe the interface was destroyed while
    732  1.46    atatat 				 * we were sleeping, so let's ensure that
    733  1.46    atatat 				 * we're looking at the same (valid) tun
    734  1.46    atatat 				 * interface before looping.
    735  1.46    atatat 				 */
    736  1.46    atatat 				tp = tun_find_unit(dev);
    737  1.70        pk 				if (tp == NULL) {
    738  1.70        pk 					error = ENXIO;
    739  1.70        pk 					goto out_nolock;
    740  1.70        pk 				}
    741  1.70        pk 				if (tp->tun_if.if_index != index) {
    742  1.70        pk 					error = ENXIO;
    743  1.70        pk 					goto out;
    744  1.46    atatat 				}
    745  1.26        pk 			}
    746   1.6   deraadt 		}
    747   1.6   deraadt 	} while (m0 == 0);
    748  1.70        pk 
    749  1.70        pk 	simple_unlock(&tp->tun_lock);
    750   1.6   deraadt 	splx(s);
    751   1.6   deraadt 
    752  1.70        pk 	/* Copy the mbuf chain */
    753   1.6   deraadt 	while (m0 && uio->uio_resid > 0 && error == 0) {
    754  1.13   deraadt 		len = min(uio->uio_resid, m0->m_len);
    755  1.45    itojun 		if (len != 0)
    756  1.45    itojun 			error = uiomove(mtod(m0, caddr_t), len, uio);
    757   1.6   deraadt 		MFREE(m0, m);
    758   1.6   deraadt 		m0 = m;
    759   1.6   deraadt 	}
    760   1.6   deraadt 
    761   1.6   deraadt 	if (m0) {
    762   1.6   deraadt 		TUNDEBUG("Dropping mbuf\n");
    763   1.6   deraadt 		m_freem(m0);
    764   1.6   deraadt 	}
    765  1.19        pk 	if (error)
    766  1.19        pk 		ifp->if_ierrors++;
    767  1.70        pk 
    768  1.70        pk 	return (error);
    769  1.70        pk 
    770  1.70        pk out:
    771  1.46    atatat 	simple_unlock(&tp->tun_lock);
    772  1.70        pk out_nolock:
    773  1.70        pk 	splx(s);
    774  1.26        pk 	return (error);
    775   1.1       cgd }
    776   1.1       cgd 
    777   1.1       cgd /*
    778   1.1       cgd  * the cdevsw write interface - an atomic write is a packet - or else!
    779   1.1       cgd  */
    780   1.6   deraadt int
    781  1.78   thorpej tunwrite(dev_t dev, struct uio *uio, int ioflag)
    782   1.6   deraadt {
    783  1.46    atatat 	struct tun_softc *tp;
    784  1.46    atatat 	struct ifnet	*ifp;
    785   1.6   deraadt 	struct mbuf	*top, **mp, *m;
    786  1.26        pk 	struct ifqueue	*ifq;
    787  1.26        pk 	struct sockaddr	dst;
    788  1.70        pk 	int		isr, error = 0, s, tlen, mlen;
    789  1.80    rpaulo 	uint32_t	family;
    790   1.6   deraadt 
    791  1.70        pk 	s = splnet();
    792  1.46    atatat 	tp = tun_find_unit(dev);
    793  1.46    atatat 
    794  1.46    atatat 	/* interface was "destroyed" already */
    795  1.70        pk 	if (tp == NULL) {
    796  1.70        pk 		error = ENXIO;
    797  1.70        pk 		goto out_nolock;
    798  1.70        pk 	}
    799  1.70        pk 
    800  1.70        pk 	/* Unlock until we've got the data */
    801  1.70        pk 	simple_unlock(&tp->tun_lock);
    802  1.70        pk 	splx(s);
    803  1.46    atatat 
    804  1.46    atatat 	ifp = &tp->tun_if;
    805  1.46    atatat 
    806  1.24   thorpej 	TUNDEBUG("%s: tunwrite\n", ifp->if_xname);
    807   1.6   deraadt 
    808  1.26        pk 	if (tp->tun_flags & TUN_PREPADDR) {
    809  1.46    atatat 		if (uio->uio_resid < sizeof(dst)) {
    810  1.70        pk 			error = EIO;
    811  1.70        pk 			goto out0;
    812  1.46    atatat 		}
    813  1.26        pk 		error = uiomove((caddr_t)&dst, sizeof(dst), uio);
    814  1.26        pk 		if (dst.sa_len > sizeof(dst)) {
    815  1.26        pk 			/* Duh.. */
    816  1.26        pk 			char discard;
    817  1.26        pk 			int n = dst.sa_len - sizeof(dst);
    818  1.26        pk 			while (n--)
    819  1.46    atatat 				if ((error = uiomove(&discard, 1, uio)) != 0) {
    820  1.70        pk 					goto out0;
    821  1.46    atatat 				}
    822  1.26        pk 		}
    823  1.26        pk 	} else {
    824  1.80    rpaulo 		if (uio->uio_resid < sizeof(family)){
    825  1.80    rpaulo 			error = EIO;
    826  1.80    rpaulo 			goto out0;
    827  1.80    rpaulo 		}
    828  1.82    rpaulo 		error = uiomove((caddr_t)&family, sizeof(family), uio);
    829  1.80    rpaulo 		dst.sa_family = ntohl(family);
    830  1.26        pk 	}
    831  1.26        pk 
    832  1.54    simonb 	if (uio->uio_resid > TUNMTU) {
    833  1.37    mjacob 		TUNDEBUG("%s: len=%lu!\n", ifp->if_xname,
    834  1.37    mjacob 		    (unsigned long)uio->uio_resid);
    835  1.70        pk 		error = EIO;
    836  1.70        pk 		goto out0;
    837   1.6   deraadt 	}
    838  1.26        pk 
    839  1.26        pk 	switch (dst.sa_family) {
    840  1.26        pk #ifdef INET
    841  1.26        pk 	case AF_INET:
    842  1.26        pk 		ifq = &ipintrq;
    843  1.26        pk 		isr = NETISR_IP;
    844  1.26        pk 		break;
    845  1.26        pk #endif
    846  1.79    rpaulo #ifdef INET6
    847  1.79    rpaulo 	case AF_INET6:
    848  1.79    rpaulo 		ifq = &ip6intrq;
    849  1.79    rpaulo 		isr = NETISR_IPV6;
    850  1.83    rpaulo 		break;
    851  1.79    rpaulo #endif
    852  1.26        pk 	default:
    853  1.70        pk 		error = EAFNOSUPPORT;
    854  1.70        pk 		goto out0;
    855  1.26        pk 	}
    856  1.26        pk 
    857   1.8   deraadt 	tlen = uio->uio_resid;
    858   1.8   deraadt 
    859   1.8   deraadt 	/* get a header mbuf */
    860   1.8   deraadt 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    861  1.46    atatat 	if (m == NULL) {
    862  1.70        pk 		error = ENOBUFS;
    863  1.70        pk 		goto out0;
    864  1.46    atatat 	}
    865   1.8   deraadt 	mlen = MHLEN;
    866   1.8   deraadt 
    867  1.68      tron 	top = NULL;
    868   1.6   deraadt 	mp = &top;
    869   1.6   deraadt 	while (error == 0 && uio->uio_resid > 0) {
    870  1.13   deraadt 		m->m_len = min(mlen, uio->uio_resid);
    871  1.68      tron 		error = uiomove(mtod(m, caddr_t), m->m_len, uio);
    872   1.6   deraadt 		*mp = m;
    873   1.6   deraadt 		mp = &m->m_next;
    874  1.68      tron 		if (error == 0 && uio->uio_resid > 0) {
    875  1.68      tron 			MGET(m, M_DONTWAIT, MT_DATA);
    876  1.68      tron 			if (m == NULL) {
    877   1.8   deraadt 				error = ENOBUFS;
    878   1.8   deraadt 				break;
    879   1.8   deraadt 			}
    880   1.8   deraadt 			mlen = MLEN;
    881   1.8   deraadt 		}
    882   1.6   deraadt 	}
    883   1.6   deraadt 	if (error) {
    884  1.68      tron 		if (top != NULL)
    885   1.8   deraadt 			m_freem (top);
    886  1.19        pk 		ifp->if_ierrors++;
    887  1.70        pk 		goto out0;
    888   1.6   deraadt 	}
    889   1.6   deraadt 
    890   1.8   deraadt 	top->m_pkthdr.len = tlen;
    891   1.8   deraadt 	top->m_pkthdr.rcvif = ifp;
    892   1.8   deraadt 
    893   1.8   deraadt #if NBPFILTER > 0
    894  1.72  christos 	if (ifp->if_bpf)
    895  1.80    rpaulo 		bpf_mtap_af(ifp->if_bpf, dst.sa_family, top);
    896   1.8   deraadt #endif
    897   1.6   deraadt 
    898  1.43   thorpej 	s = splnet();
    899  1.70        pk 	simple_lock(&tp->tun_lock);
    900  1.70        pk 	if ((tp->tun_flags & TUN_INITED) == 0) {
    901  1.70        pk 		/* Interface was destroyed */
    902  1.70        pk 		error = ENXIO;
    903  1.70        pk 		goto out;
    904  1.70        pk 	}
    905  1.26        pk 	if (IF_QFULL(ifq)) {
    906  1.26        pk 		IF_DROP(ifq);
    907   1.6   deraadt 		ifp->if_collisions++;
    908   1.6   deraadt 		m_freem(top);
    909  1.70        pk 		error = ENOBUFS;
    910  1.70        pk 		goto out;
    911   1.6   deraadt 	}
    912  1.70        pk 
    913  1.26        pk 	IF_ENQUEUE(ifq, top);
    914   1.6   deraadt 	ifp->if_ipackets++;
    915  1.58  jdolecek 	ifp->if_ibytes += tlen;
    916  1.26        pk 	schednetisr(isr);
    917  1.70        pk out:
    918  1.46    atatat 	simple_unlock(&tp->tun_lock);
    919  1.70        pk out_nolock:
    920  1.70        pk 	splx(s);
    921  1.70        pk out0:
    922  1.26        pk 	return (error);
    923   1.1       cgd }
    924   1.1       cgd 
    925  1.50    itojun #ifdef ALTQ
    926  1.50    itojun /*
    927  1.50    itojun  * Start packet transmission on the interface.
    928  1.50    itojun  * when the interface queue is rate-limited by ALTQ or TBR,
    929  1.50    itojun  * if_start is needed to drain packets from the queue in order
    930  1.50    itojun  * to notify readers when outgoing packets become ready.
    931  1.70        pk  *
    932  1.70        pk  * Should be called at splnet.
    933  1.50    itojun  */
    934  1.50    itojun static void
    935  1.78   thorpej tunstart(struct ifnet *ifp)
    936  1.50    itojun {
    937  1.50    itojun 	struct tun_softc *tp = ifp->if_softc;
    938  1.50    itojun 
    939  1.50    itojun 	if (!ALTQ_IS_ENABLED(&ifp->if_snd) && !TBR_IS_ENABLED(&ifp->if_snd))
    940  1.50    itojun 		return;
    941  1.50    itojun 
    942  1.70        pk 	simple_lock(&tp->tun_lock);
    943  1.70        pk 	if (!IF_IS_EMPTY(&ifp->if_snd)) {
    944  1.50    itojun 		if (tp->tun_flags & TUN_RWAIT) {
    945  1.50    itojun 			tp->tun_flags &= ~TUN_RWAIT;
    946  1.50    itojun 			wakeup((caddr_t)tp);
    947  1.50    itojun 		}
    948  1.64  jdolecek 		if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
    949  1.67        cl 			fownsignal(tp->tun_pgid, SIGIO, POLL_OUT,
    950  1.67        cl 				POLLOUT|POLLWRNORM, NULL);
    951  1.70        pk 
    952  1.50    itojun 		selwakeup(&tp->tun_rsel);
    953  1.50    itojun 	}
    954  1.70        pk 	simple_unlock(&tp->tun_lock);
    955  1.50    itojun }
    956  1.50    itojun #endif /* ALTQ */
    957   1.1       cgd /*
    958  1.27   mycroft  * tunpoll - the poll interface, this is only useful on reads
    959   1.6   deraadt  * really. The write detect always returns true, write never blocks
    960   1.6   deraadt  * anyway, it either accepts the packet or drops it.
    961   1.6   deraadt  */
    962   1.6   deraadt int
    963  1.78   thorpej tunpoll(dev_t dev, int events, struct lwp *l)
    964   1.6   deraadt {
    965  1.46    atatat 	struct tun_softc *tp;
    966  1.46    atatat 	struct ifnet	*ifp;
    967  1.46    atatat 	int		s, revents = 0;
    968  1.46    atatat 
    969  1.70        pk 	s = splnet();
    970  1.46    atatat 	tp = tun_find_unit(dev);
    971  1.46    atatat 
    972  1.46    atatat 	/* interface was "destroyed" already */
    973  1.46    atatat 	if (tp == NULL)
    974  1.70        pk 		goto out_nolock;
    975  1.46    atatat 
    976  1.46    atatat 	ifp = &tp->tun_if;
    977   1.6   deraadt 
    978  1.27   mycroft 	TUNDEBUG("%s: tunpoll\n", ifp->if_xname);
    979   1.6   deraadt 
    980  1.35     veego 	if (events & (POLLIN | POLLRDNORM)) {
    981  1.70        pk 		if (!IFQ_IS_EMPTY(&ifp->if_snd)) {
    982  1.27   mycroft 			TUNDEBUG("%s: tunpoll q=%d\n", ifp->if_xname,
    983  1.24   thorpej 			    ifp->if_snd.ifq_len);
    984  1.27   mycroft 			revents |= events & (POLLIN | POLLRDNORM);
    985  1.27   mycroft 		} else {
    986  1.27   mycroft 			TUNDEBUG("%s: tunpoll waiting\n", ifp->if_xname);
    987  1.77  christos 			selrecord(l, &tp->tun_rsel);
    988   1.6   deraadt 		}
    989  1.35     veego 	}
    990  1.27   mycroft 
    991  1.27   mycroft 	if (events & (POLLOUT | POLLWRNORM))
    992  1.27   mycroft 		revents |= events & (POLLOUT | POLLWRNORM);
    993  1.27   mycroft 
    994  1.70        pk 	simple_unlock(&tp->tun_lock);
    995  1.70        pk out_nolock:
    996   1.6   deraadt 	splx(s);
    997  1.27   mycroft 	return (revents);
    998  1.56  jdolecek }
    999  1.56  jdolecek 
   1000  1.56  jdolecek static void
   1001  1.56  jdolecek filt_tunrdetach(struct knote *kn)
   1002  1.56  jdolecek {
   1003  1.56  jdolecek 	struct tun_softc *tp = kn->kn_hook;
   1004  1.56  jdolecek 	int s;
   1005  1.56  jdolecek 
   1006  1.56  jdolecek 	s = splnet();
   1007  1.57  christos 	SLIST_REMOVE(&tp->tun_rsel.sel_klist, kn, knote, kn_selnext);
   1008  1.56  jdolecek 	splx(s);
   1009  1.56  jdolecek }
   1010  1.56  jdolecek 
   1011  1.56  jdolecek static int
   1012  1.56  jdolecek filt_tunread(struct knote *kn, long hint)
   1013  1.56  jdolecek {
   1014  1.56  jdolecek 	struct tun_softc *tp = kn->kn_hook;
   1015  1.56  jdolecek 	struct ifnet *ifp = &tp->tun_if;
   1016  1.56  jdolecek 	struct mbuf *m;
   1017  1.56  jdolecek 	int s;
   1018  1.56  jdolecek 
   1019  1.56  jdolecek 	s = splnet();
   1020  1.56  jdolecek 	IF_POLL(&ifp->if_snd, m);
   1021  1.56  jdolecek 	if (m == NULL) {
   1022  1.56  jdolecek 		splx(s);
   1023  1.56  jdolecek 		return (0);
   1024  1.56  jdolecek 	}
   1025  1.56  jdolecek 
   1026  1.56  jdolecek 	for (kn->kn_data = 0; m != NULL; m = m->m_next)
   1027  1.56  jdolecek 		kn->kn_data += m->m_len;
   1028  1.56  jdolecek 
   1029  1.56  jdolecek 	splx(s);
   1030  1.56  jdolecek 	return (1);
   1031  1.56  jdolecek }
   1032  1.56  jdolecek 
   1033  1.56  jdolecek static const struct filterops tunread_filtops =
   1034  1.56  jdolecek 	{ 1, NULL, filt_tunrdetach, filt_tunread };
   1035  1.56  jdolecek 
   1036  1.56  jdolecek static const struct filterops tun_seltrue_filtops =
   1037  1.56  jdolecek 	{ 1, NULL, filt_tunrdetach, filt_seltrue };
   1038  1.56  jdolecek 
   1039  1.56  jdolecek int
   1040  1.56  jdolecek tunkqfilter(dev_t dev, struct knote *kn)
   1041  1.56  jdolecek {
   1042  1.70        pk 	struct tun_softc *tp;
   1043  1.56  jdolecek 	struct klist *klist;
   1044  1.70        pk 	int rv = 0, s;
   1045  1.70        pk 
   1046  1.70        pk 	s = splnet();
   1047  1.70        pk 	tp = tun_find_unit(dev);
   1048  1.70        pk 	if (tp == NULL)
   1049  1.70        pk 		goto out_nolock;
   1050  1.56  jdolecek 
   1051  1.56  jdolecek 	switch (kn->kn_filter) {
   1052  1.56  jdolecek 	case EVFILT_READ:
   1053  1.57  christos 		klist = &tp->tun_rsel.sel_klist;
   1054  1.56  jdolecek 		kn->kn_fop = &tunread_filtops;
   1055  1.56  jdolecek 		break;
   1056  1.56  jdolecek 
   1057  1.56  jdolecek 	case EVFILT_WRITE:
   1058  1.57  christos 		klist = &tp->tun_rsel.sel_klist;
   1059  1.56  jdolecek 		kn->kn_fop = &tun_seltrue_filtops;
   1060  1.56  jdolecek 		break;
   1061  1.56  jdolecek 
   1062  1.56  jdolecek 	default:
   1063  1.70        pk 		rv = 1;
   1064  1.70        pk 		goto out;
   1065  1.56  jdolecek 	}
   1066  1.56  jdolecek 
   1067  1.56  jdolecek 	kn->kn_hook = tp;
   1068  1.56  jdolecek 
   1069  1.56  jdolecek 	SLIST_INSERT_HEAD(klist, kn, kn_selnext);
   1070  1.70        pk 
   1071  1.70        pk out:
   1072  1.70        pk 	simple_unlock(&tp->tun_lock);
   1073  1.70        pk out_nolock:
   1074  1.56  jdolecek 	splx(s);
   1075  1.70        pk 	return (rv);
   1076   1.1       cgd }
   1077