Home | History | Annotate | Line # | Download | only in net
if_tun.c revision 1.169
      1  1.169  riastrad /*	$NetBSD: if_tun.c,v 1.169 2022/03/13 21:32:35 riastradh 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.136     skrll /*
     18  1.136     skrll  * tun - tunnel software network interface.
     19  1.136     skrll  */
     20  1.136     skrll 
     21   1.48     lukem #include <sys/cdefs.h>
     22  1.169  riastrad __KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.169 2022/03/13 21:32:35 riastradh Exp $");
     23   1.33  jonathan 
     24  1.123     pooka #ifdef _KERNEL_OPT
     25   1.33  jonathan #include "opt_inet.h"
     26  1.123     pooka #endif
     27    1.8   deraadt 
     28    1.6   deraadt #include <sys/param.h>
     29  1.136     skrll 
     30    1.6   deraadt #include <sys/buf.h>
     31  1.135     skrll #include <sys/conf.h>
     32  1.135     skrll #include <sys/cpu.h>
     33  1.135     skrll #include <sys/device.h>
     34    1.8   deraadt #include <sys/file.h>
     35  1.135     skrll #include <sys/ioctl.h>
     36   1.89      elad #include <sys/kauth.h>
     37  1.136     skrll #include <sys/kmem.h>
     38  1.136     skrll #include <sys/lwp.h>
     39  1.135     skrll #include <sys/mbuf.h>
     40  1.135     skrll #include <sys/module.h>
     41  1.115     rmind #include <sys/mutex.h>
     42  1.135     skrll #include <sys/poll.h>
     43  1.135     skrll #include <sys/select.h>
     44  1.135     skrll #include <sys/signalvar.h>
     45  1.135     skrll #include <sys/socket.h>
     46    1.6   deraadt 
     47  1.135     skrll #include <net/bpf.h>
     48    1.6   deraadt #include <net/if.h>
     49   1.69      tron #include <net/if_types.h>
     50    1.6   deraadt #include <net/route.h>
     51    1.1       cgd 
     52    1.1       cgd #ifdef INET
     53    1.6   deraadt #include <netinet/in.h>
     54    1.6   deraadt #include <netinet/in_systm.h>
     55    1.6   deraadt #include <netinet/in_var.h>
     56    1.6   deraadt #include <netinet/ip.h>
     57   1.30        is #include <netinet/if_inarp.h>
     58    1.1       cgd #endif
     59    1.1       cgd 
     60    1.8   deraadt #include <net/if_tun.h>
     61    1.8   deraadt 
     62  1.122  christos #include "ioconf.h"
     63  1.122  christos 
     64   1.29  christos #define TUNDEBUG	if (tundebug) printf
     65    1.6   deraadt int	tundebug = 0;
     66    1.1       cgd 
     67    1.6   deraadt extern int ifqmaxlen;
     68   1.78   thorpej 
     69   1.78   thorpej static LIST_HEAD(, tun_softc) tun_softc_list;
     70   1.78   thorpej static LIST_HEAD(, tun_softc) tunz_softc_list;
     71  1.117     skrll static kmutex_t tun_softc_lock;
     72    1.6   deraadt 
     73   1.97  christos static int	tun_ioctl(struct ifnet *, u_long, void *);
     74   1.96    dyoung static int	tun_output(struct ifnet *, struct mbuf *,
     75  1.125     ozaki 			const struct sockaddr *, const struct rtentry *rt);
     76   1.78   thorpej static int	tun_clone_create(struct if_clone *, int);
     77   1.78   thorpej static int	tun_clone_destroy(struct ifnet *);
     78    1.6   deraadt 
     79   1.78   thorpej static struct if_clone tun_cloner =
     80   1.46    atatat     IF_CLONE_INITIALIZER("tun", tun_clone_create, tun_clone_destroy);
     81   1.46    atatat 
     82   1.78   thorpej static void tunattach0(struct tun_softc *);
     83  1.132     ozaki static void tun_enable(struct tun_softc *, const struct ifaddr *);
     84  1.106        ad static void tun_i_softintr(void *);
     85  1.106        ad static void tun_o_softintr(void *);
     86   1.50    itojun #ifdef ALTQ
     87   1.78   thorpej static void tunstart(struct ifnet *);
     88   1.50    itojun #endif
     89   1.78   thorpej static struct tun_softc *tun_find_unit(dev_t);
     90   1.78   thorpej static struct tun_softc *tun_find_zunit(int);
     91   1.53   gehenna 
     92   1.78   thorpej static dev_type_open(tunopen);
     93   1.78   thorpej static dev_type_close(tunclose);
     94   1.78   thorpej static dev_type_read(tunread);
     95   1.78   thorpej static dev_type_write(tunwrite);
     96   1.78   thorpej static dev_type_ioctl(tunioctl);
     97   1.78   thorpej static dev_type_poll(tunpoll);
     98   1.78   thorpej static dev_type_kqfilter(tunkqfilter);
     99   1.53   gehenna 
    100   1.53   gehenna const struct cdevsw tun_cdevsw = {
    101  1.116  dholland 	.d_open = tunopen,
    102  1.116  dholland 	.d_close = tunclose,
    103  1.116  dholland 	.d_read = tunread,
    104  1.116  dholland 	.d_write = tunwrite,
    105  1.116  dholland 	.d_ioctl = tunioctl,
    106  1.116  dholland 	.d_stop = nostop,
    107  1.116  dholland 	.d_tty = notty,
    108  1.116  dholland 	.d_poll = tunpoll,
    109  1.116  dholland 	.d_mmap = nommap,
    110  1.116  dholland 	.d_kqfilter = tunkqfilter,
    111  1.120  dholland 	.d_discard = nodiscard,
    112  1.136     skrll 	.d_flag = D_OTHER | D_MPSAFE
    113   1.53   gehenna };
    114    1.6   deraadt 
    115  1.130     ozaki #ifdef _MODULE
    116  1.130     ozaki devmajor_t tun_bmajor = -1, tun_cmajor = -1;
    117  1.130     ozaki #endif
    118  1.130     ozaki 
    119    1.8   deraadt void
    120   1.94  christos tunattach(int unused)
    121    1.8   deraadt {
    122   1.46    atatat 
    123  1.128  christos 	/*
    124  1.128  christos 	 * Nothing to do here, initialization is handled by the
    125  1.129     ozaki 	 * module initialization code in tuninit() below).
    126  1.128  christos 	 */
    127  1.128  christos }
    128  1.128  christos 
    129  1.128  christos static void
    130  1.128  christos tuninit(void)
    131  1.128  christos {
    132  1.128  christos 
    133  1.167  riastrad 	mutex_init(&tun_softc_lock, MUTEX_DEFAULT, IPL_NONE);
    134   1.46    atatat 	LIST_INIT(&tun_softc_list);
    135   1.70        pk 	LIST_INIT(&tunz_softc_list);
    136   1.46    atatat 	if_clone_attach(&tun_cloner);
    137  1.130     ozaki #ifdef _MODULE
    138  1.130     ozaki 	devsw_attach("tun", NULL, &tun_bmajor, &tun_cdevsw, &tun_cmajor);
    139  1.130     ozaki #endif
    140   1.46    atatat }
    141   1.46    atatat 
    142  1.128  christos static int
    143  1.128  christos tundetach(void)
    144  1.128  christos {
    145  1.155  pgoyette #ifdef _MODULE
    146  1.155  pgoyette 	int error;
    147  1.155  pgoyette #endif
    148  1.128  christos 
    149  1.154  pgoyette 	if_clone_detach(&tun_cloner);
    150  1.154  pgoyette #ifdef _MODULE
    151  1.154  pgoyette 	error = devsw_detach(NULL, &tun_cdevsw);
    152  1.154  pgoyette 	if (error != 0) {
    153  1.154  pgoyette 		if_clone_attach(&tun_cloner);
    154  1.154  pgoyette 		return error;
    155  1.154  pgoyette 	}
    156  1.154  pgoyette #endif
    157  1.128  christos 
    158  1.154  pgoyette 	if (!LIST_EMPTY(&tun_softc_list) || !LIST_EMPTY(&tunz_softc_list)) {
    159  1.130     ozaki #ifdef _MODULE
    160  1.154  pgoyette 		devsw_attach("tun", NULL, &tun_bmajor, &tun_cdevsw, &tun_cmajor);
    161  1.130     ozaki #endif
    162  1.154  pgoyette 		if_clone_attach(&tun_cloner);
    163  1.154  pgoyette 		return EBUSY;
    164  1.154  pgoyette }
    165  1.154  pgoyette 
    166  1.154  pgoyette 	mutex_destroy(&tun_softc_lock);
    167  1.128  christos 
    168  1.154  pgoyette 	return 0;
    169  1.128  christos }
    170  1.128  christos 
    171   1.70        pk /*
    172   1.70        pk  * Find driver instance from dev_t.
    173   1.70        pk  * Returns with tp locked (if found).
    174   1.70        pk  */
    175   1.70        pk static struct tun_softc *
    176   1.78   thorpej tun_find_unit(dev_t dev)
    177   1.70        pk {
    178   1.70        pk 	struct tun_softc *tp;
    179   1.70        pk 	int unit = minor(dev);
    180   1.70        pk 
    181  1.117     skrll 	mutex_enter(&tun_softc_lock);
    182   1.70        pk 	LIST_FOREACH(tp, &tun_softc_list, tun_list)
    183   1.70        pk 		if (unit == tp->tun_unit)
    184   1.70        pk 			break;
    185   1.70        pk 	if (tp)
    186  1.115     rmind 		mutex_enter(&tp->tun_lock);
    187  1.117     skrll 	mutex_exit(&tun_softc_lock);
    188   1.70        pk 
    189  1.135     skrll 	return tp;
    190   1.70        pk }
    191   1.70        pk 
    192   1.70        pk /*
    193   1.70        pk  * Find zombie driver instance by unit number.
    194   1.70        pk  * Remove tp from list and return it unlocked (if found).
    195   1.70        pk  */
    196   1.70        pk static struct tun_softc *
    197   1.78   thorpej tun_find_zunit(int unit)
    198   1.70        pk {
    199   1.70        pk 	struct tun_softc *tp;
    200   1.70        pk 
    201  1.117     skrll 	mutex_enter(&tun_softc_lock);
    202   1.70        pk 	LIST_FOREACH(tp, &tunz_softc_list, tun_list)
    203   1.70        pk 		if (unit == tp->tun_unit)
    204   1.70        pk 			break;
    205   1.70        pk 	if (tp)
    206  1.153   msaitoh 		LIST_REMOVE(tp, tun_list);
    207  1.117     skrll 	mutex_exit(&tun_softc_lock);
    208  1.137     skrll 	KASSERTMSG(!tp || (tp->tun_flags & (TUN_INITED|TUN_OPEN)) == TUN_OPEN,
    209  1.136     skrll 	    "tun%d: inconsistent flags: %x", unit, tp->tun_flags);
    210   1.70        pk 
    211  1.135     skrll 	return tp;
    212   1.70        pk }
    213   1.70        pk 
    214  1.166  riastrad static void
    215  1.166  riastrad tun_init(struct tun_softc *tp, int unit)
    216  1.166  riastrad {
    217  1.166  riastrad 
    218  1.166  riastrad 	tp->tun_unit = unit;
    219  1.168  riastrad 	mutex_init(&tp->tun_lock, MUTEX_DEFAULT, IPL_SOFTNET);
    220  1.166  riastrad 	cv_init(&tp->tun_cv, "tunread");
    221  1.166  riastrad 	selinit(&tp->tun_rsel);
    222  1.166  riastrad 	selinit(&tp->tun_wsel);
    223  1.166  riastrad 
    224  1.166  riastrad 	tp->tun_osih = softint_establish(SOFTINT_CLOCK, tun_o_softintr, tp);
    225  1.166  riastrad 	tp->tun_isih = softint_establish(SOFTINT_CLOCK, tun_i_softintr, tp);
    226  1.166  riastrad }
    227  1.166  riastrad 
    228  1.166  riastrad static void
    229  1.166  riastrad tun_fini(struct tun_softc *tp)
    230  1.166  riastrad {
    231  1.166  riastrad 
    232  1.166  riastrad 	softint_disestablish(tp->tun_isih);
    233  1.166  riastrad 	softint_disestablish(tp->tun_osih);
    234  1.166  riastrad 
    235  1.166  riastrad 	seldestroy(&tp->tun_wsel);
    236  1.166  riastrad 	seldestroy(&tp->tun_rsel);
    237  1.166  riastrad 	mutex_destroy(&tp->tun_lock);
    238  1.166  riastrad 	cv_destroy(&tp->tun_cv);
    239  1.166  riastrad }
    240  1.166  riastrad 
    241  1.166  riastrad static struct tun_softc *
    242  1.166  riastrad tun_alloc(int unit)
    243  1.166  riastrad {
    244  1.166  riastrad 	struct tun_softc *tp;
    245  1.166  riastrad 
    246  1.166  riastrad 	tp = kmem_zalloc(sizeof(*tp), KM_SLEEP);
    247  1.166  riastrad 	tun_init(tp, unit);
    248  1.166  riastrad 
    249  1.166  riastrad 	return tp;
    250  1.166  riastrad }
    251  1.166  riastrad 
    252  1.166  riastrad static void
    253  1.166  riastrad tun_recycle(struct tun_softc *tp)
    254  1.166  riastrad {
    255  1.166  riastrad 
    256  1.166  riastrad 	memset(&tp->tun_if, 0, sizeof(struct ifnet)); /* XXX ??? */
    257  1.166  riastrad }
    258  1.166  riastrad 
    259  1.166  riastrad static void
    260  1.166  riastrad tun_free(struct tun_softc *tp)
    261  1.166  riastrad {
    262  1.166  riastrad 
    263  1.166  riastrad 	tun_fini(tp);
    264  1.166  riastrad 	kmem_free(tp, sizeof(*tp));
    265  1.166  riastrad }
    266  1.166  riastrad 
    267   1.78   thorpej static int
    268   1.78   thorpej tun_clone_create(struct if_clone *ifc, int unit)
    269   1.46    atatat {
    270   1.70        pk 	struct tun_softc *tp;
    271   1.46    atatat 
    272   1.70        pk 	if ((tp = tun_find_zunit(unit)) == NULL) {
    273  1.166  riastrad 		tp = tun_alloc(unit);
    274   1.70        pk 	} else {
    275  1.166  riastrad 		tun_recycle(tp);
    276   1.70        pk 	}
    277   1.46    atatat 
    278  1.107  christos 	if_initname(&tp->tun_if, ifc->ifc_name, unit);
    279   1.70        pk 	tunattach0(tp);
    280   1.70        pk 	tp->tun_flags |= TUN_INITED;
    281   1.46    atatat 
    282  1.117     skrll 	mutex_enter(&tun_softc_lock);
    283   1.70        pk 	LIST_INSERT_HEAD(&tun_softc_list, tp, tun_list);
    284  1.117     skrll 	mutex_exit(&tun_softc_lock);
    285   1.46    atatat 
    286  1.135     skrll 	return 0;
    287   1.46    atatat }
    288   1.46    atatat 
    289   1.78   thorpej static void
    290   1.78   thorpej tunattach0(struct tun_softc *tp)
    291   1.46    atatat {
    292   1.70        pk 	struct ifnet *ifp;
    293   1.46    atatat 
    294   1.70        pk 	ifp = &tp->tun_if;
    295   1.70        pk 	ifp->if_softc = tp;
    296   1.46    atatat 	ifp->if_mtu = TUNMTU;
    297   1.46    atatat 	ifp->if_ioctl = tun_ioctl;
    298   1.46    atatat 	ifp->if_output = tun_output;
    299   1.50    itojun #ifdef ALTQ
    300   1.50    itojun 	ifp->if_start = tunstart;
    301   1.50    itojun #endif
    302   1.46    atatat 	ifp->if_flags = IFF_POINTOPOINT;
    303   1.69      tron 	ifp->if_type = IFT_TUNNEL;
    304   1.46    atatat 	ifp->if_snd.ifq_maxlen = ifqmaxlen;
    305   1.46    atatat 	ifp->if_dlt = DLT_NULL;
    306   1.50    itojun 	IFQ_SET_READY(&ifp->if_snd);
    307   1.46    atatat 	if_attach(ifp);
    308  1.161       roy 	ifp->if_link_state = LINK_STATE_DOWN;
    309   1.46    atatat 	if_alloc_sadl(ifp);
    310  1.113     joerg 	bpf_attach(ifp, DLT_NULL, sizeof(uint32_t));
    311   1.46    atatat }
    312   1.46    atatat 
    313   1.78   thorpej static int
    314   1.78   thorpej tun_clone_destroy(struct ifnet *ifp)
    315   1.46    atatat {
    316   1.46    atatat 	struct tun_softc *tp = (void *)ifp;
    317  1.136     skrll 	bool zombie = false;
    318    1.8   deraadt 
    319  1.115     rmind 	IF_PURGE(&ifp->if_snd);
    320  1.115     rmind 	ifp->if_flags &= ~IFF_RUNNING;
    321  1.115     rmind 
    322  1.117     skrll 	mutex_enter(&tun_softc_lock);
    323  1.115     rmind 	mutex_enter(&tp->tun_lock);
    324   1.46    atatat 	LIST_REMOVE(tp, tun_list);
    325   1.70        pk 	if (tp->tun_flags & TUN_OPEN) {
    326  1.136     skrll 		/* Hang on to storage until last close. */
    327   1.70        pk 		tp->tun_flags &= ~TUN_INITED;
    328   1.70        pk 		LIST_INSERT_HEAD(&tunz_softc_list, tp, tun_list);
    329  1.136     skrll 		zombie = true;
    330   1.70        pk 	}
    331  1.117     skrll 	mutex_exit(&tun_softc_lock);
    332   1.46    atatat 
    333   1.46    atatat 	if (tp->tun_flags & TUN_RWAIT) {
    334   1.46    atatat 		tp->tun_flags &= ~TUN_RWAIT;
    335  1.136     skrll 		cv_broadcast(&tp->tun_cv);
    336   1.46    atatat 	}
    337  1.169  riastrad 	if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
    338  1.169  riastrad 		fownsignal(tp->tun_pgid, SIGIO, POLL_HUP, 0, NULL);
    339  1.146     ozaki 	selnotify(&tp->tun_rsel, 0, NOTE_SUBMIT);
    340  1.115     rmind 	mutex_exit(&tp->tun_lock);
    341   1.70        pk 
    342  1.113     joerg 	bpf_detach(ifp);
    343   1.46    atatat 	if_detach(ifp);
    344   1.46    atatat 
    345  1.104     rmind 	if (!zombie) {
    346  1.166  riastrad 		tun_free(tp);
    347  1.104     rmind 	}
    348   1.73     peter 
    349  1.135     skrll 	return 0;
    350    1.8   deraadt }
    351    1.8   deraadt 
    352    1.6   deraadt /*
    353    1.6   deraadt  * tunnel open - must be superuser & the device must be
    354    1.6   deraadt  * configured in
    355    1.6   deraadt  */
    356   1.78   thorpej static int
    357   1.94  christos tunopen(dev_t dev, int flag, int mode, struct lwp *l)
    358    1.6   deraadt {
    359    1.6   deraadt 	struct ifnet	*ifp;
    360    1.8   deraadt 	struct tun_softc *tp;
    361  1.117     skrll 	int	error;
    362    1.1       cgd 
    363  1.111      elad 	error = kauth_authorize_network(l->l_cred, KAUTH_NETWORK_INTERFACE_TUN,
    364  1.111      elad 	    KAUTH_REQ_NETWORK_INTERFACE_TUN_ADD, NULL, NULL, NULL);
    365  1.111      elad 	if (error)
    366  1.135     skrll 		return error;
    367    1.5   deraadt 
    368   1.46    atatat 	tp = tun_find_unit(dev);
    369   1.52    atatat 
    370   1.70        pk 	if (tp == NULL) {
    371   1.52    atatat 		(void)tun_clone_create(&tun_cloner, minor(dev));
    372   1.52    atatat 		tp = tun_find_unit(dev);
    373   1.70        pk 		if (tp == NULL) {
    374  1.136     skrll 			return ENXIO;
    375   1.70        pk 		}
    376   1.52    atatat 	}
    377   1.46    atatat 
    378   1.46    atatat 	if (tp->tun_flags & TUN_OPEN) {
    379  1.136     skrll 		mutex_exit(&tp->tun_lock);
    380  1.136     skrll 		return EBUSY;
    381   1.46    atatat 	}
    382   1.46    atatat 
    383    1.6   deraadt 	ifp = &tp->tun_if;
    384    1.6   deraadt 	tp->tun_flags |= TUN_OPEN;
    385   1.24   thorpej 	TUNDEBUG("%s: open\n", ifp->if_xname);
    386  1.161       roy 	if_link_state_change(ifp, LINK_STATE_UP);
    387  1.136     skrll 
    388  1.115     rmind 	mutex_exit(&tp->tun_lock);
    389  1.136     skrll 
    390  1.135     skrll 	return error;
    391    1.1       cgd }
    392    1.1       cgd 
    393    1.6   deraadt /*
    394    1.6   deraadt  * tunclose - close the device - mark i/f down & delete
    395    1.6   deraadt  * routing info
    396    1.6   deraadt  */
    397    1.6   deraadt int
    398   1.94  christos tunclose(dev_t dev, int flag, int mode,
    399   1.94  christos     struct lwp *l)
    400    1.6   deraadt {
    401   1.46    atatat 	struct tun_softc *tp;
    402   1.46    atatat 	struct ifnet	*ifp;
    403    1.6   deraadt 
    404   1.70        pk 	if ((tp = tun_find_zunit(minor(dev))) != NULL) {
    405   1.70        pk 		/* interface was "destroyed" before the close */
    406  1.166  riastrad 		tun_free(tp);
    407  1.136     skrll 		return 0;
    408   1.70        pk 	}
    409   1.46    atatat 
    410   1.70        pk 	if ((tp = tun_find_unit(dev)) == NULL)
    411   1.70        pk 		goto out_nolock;
    412   1.46    atatat 
    413   1.46    atatat 	ifp = &tp->tun_if;
    414   1.46    atatat 
    415   1.10    andrew 	tp->tun_flags &= ~TUN_OPEN;
    416    1.6   deraadt 
    417  1.115     rmind 	tp->tun_pgid = 0;
    418  1.146     ozaki 	selnotify(&tp->tun_rsel, 0, NOTE_SUBMIT);
    419  1.115     rmind 
    420  1.115     rmind 	TUNDEBUG ("%s: closed\n", ifp->if_xname);
    421  1.115     rmind 	mutex_exit(&tp->tun_lock);
    422  1.115     rmind 
    423    1.6   deraadt 	/*
    424    1.6   deraadt 	 * junk all pending output
    425    1.6   deraadt 	 */
    426   1.50    itojun 	IFQ_PURGE(&ifp->if_snd);
    427    1.6   deraadt 
    428    1.6   deraadt 	if (ifp->if_flags & IFF_UP) {
    429    1.6   deraadt 		if_down(ifp);
    430    1.8   deraadt 		if (ifp->if_flags & IFF_RUNNING) {
    431   1.17   mycroft 			/* find internet addresses and delete routes */
    432   1.39  augustss 			struct ifaddr *ifa;
    433  1.127     ozaki 			IFADDR_READER_FOREACH(ifa, ifp) {
    434   1.80    rpaulo #if defined(INET) || defined(INET6)
    435   1.80    rpaulo 				if (ifa->ifa_addr->sa_family == AF_INET ||
    436   1.80    rpaulo 				    ifa->ifa_addr->sa_family == AF_INET6) {
    437   1.18   mycroft 					rtinit(ifa, (int)RTM_DELETE,
    438   1.26        pk 					       tp->tun_flags & TUN_DSTADDR
    439   1.26        pk 							? RTF_HOST
    440   1.26        pk 							: 0);
    441   1.18   mycroft 				}
    442   1.38    itojun #endif
    443   1.11   deraadt 			}
    444    1.8   deraadt 		}
    445    1.6   deraadt 	}
    446  1.161       roy 
    447  1.161       roy 	if_link_state_change(ifp, LINK_STATE_DOWN);
    448  1.161       roy 
    449   1.70        pk out_nolock:
    450  1.135     skrll 	return 0;
    451    1.1       cgd }
    452    1.1       cgd 
    453   1.26        pk static void
    454  1.132     ozaki tun_enable(struct tun_softc *tp, const struct ifaddr *ifa)
    455    1.6   deraadt {
    456    1.6   deraadt 	struct ifnet	*ifp = &tp->tun_if;
    457    1.8   deraadt 
    458  1.128  christos 	TUNDEBUG("%s: %s\n", __func__, ifp->if_xname);
    459    1.6   deraadt 
    460  1.115     rmind 	mutex_enter(&tp->tun_lock);
    461   1.26        pk 	tp->tun_flags &= ~(TUN_IASET|TUN_DSTADDR);
    462  1.132     ozaki 
    463  1.132     ozaki 	switch (ifa->ifa_addr->sa_family) {
    464   1.38    itojun #ifdef INET
    465  1.132     ozaki 	case AF_INET: {
    466  1.132     ozaki 		struct sockaddr_in *sin;
    467  1.132     ozaki 
    468  1.132     ozaki 		sin = satosin(ifa->ifa_addr);
    469  1.132     ozaki 		if (sin && sin->sin_addr.s_addr)
    470  1.132     ozaki 			tp->tun_flags |= TUN_IASET;
    471   1.11   deraadt 
    472  1.132     ozaki 		if (ifp->if_flags & IFF_POINTOPOINT) {
    473  1.132     ozaki 			sin = satosin(ifa->ifa_dstaddr);
    474   1.17   mycroft 			if (sin && sin->sin_addr.s_addr)
    475  1.132     ozaki 				tp->tun_flags |= TUN_DSTADDR;
    476   1.11   deraadt 		}
    477  1.132     ozaki 		break;
    478  1.132     ozaki 	    }
    479   1.38    itojun #endif
    480   1.80    rpaulo #ifdef INET6
    481  1.132     ozaki 	case AF_INET6: {
    482  1.132     ozaki 		struct sockaddr_in6 *sin;
    483   1.80    rpaulo 
    484  1.132     ozaki 		sin = satosin6(ifa->ifa_addr);
    485  1.132     ozaki 		if (!IN6_IS_ADDR_UNSPECIFIED(&sin->sin6_addr))
    486  1.132     ozaki 			tp->tun_flags |= TUN_IASET;
    487  1.132     ozaki 
    488  1.132     ozaki 		if (ifp->if_flags & IFF_POINTOPOINT) {
    489  1.132     ozaki 			sin = satosin6(ifa->ifa_dstaddr);
    490  1.132     ozaki 			if (sin && !IN6_IS_ADDR_UNSPECIFIED(&sin->sin6_addr))
    491  1.132     ozaki 				tp->tun_flags |= TUN_DSTADDR;
    492  1.132     ozaki 		} else
    493  1.132     ozaki 			tp->tun_flags &= ~TUN_DSTADDR;
    494  1.132     ozaki 		break;
    495  1.132     ozaki 	    }
    496   1.80    rpaulo #endif /* INET6 */
    497  1.132     ozaki 	default:
    498  1.132     ozaki 		break;
    499   1.18   mycroft 	}
    500  1.142     ozaki 	ifp->if_flags |= IFF_UP | IFF_RUNNING;
    501  1.115     rmind 	mutex_exit(&tp->tun_lock);
    502    1.1       cgd }
    503    1.1       cgd 
    504    1.1       cgd /*
    505    1.1       cgd  * Process an ioctl request.
    506    1.1       cgd  */
    507   1.78   thorpej static int
    508   1.97  christos tun_ioctl(struct ifnet *ifp, u_long cmd, void *data)
    509    1.6   deraadt {
    510   1.46    atatat 	struct tun_softc *tp = (struct tun_softc *)(ifp->if_softc);
    511  1.121       roy 	struct ifreq *ifr = (struct ifreq *)data;
    512  1.121       roy 	struct ifaddr *ifa = (struct ifaddr *)data;
    513  1.136     skrll 	int error = 0;
    514    1.6   deraadt 
    515   1.61    itojun 	switch (cmd) {
    516  1.108    dyoung 	case SIOCINITIFADDR:
    517  1.132     ozaki 		tun_enable(tp, ifa);
    518  1.121       roy 		ifa->ifa_rtrequest = p2p_rtrequest;
    519   1.24   thorpej 		TUNDEBUG("%s: address set\n", ifp->if_xname);
    520    1.6   deraadt 		break;
    521   1.26        pk 	case SIOCSIFBRDADDR:
    522   1.26        pk 		TUNDEBUG("%s: broadcast address set\n", ifp->if_xname);
    523   1.26        pk 		break;
    524  1.102    dyoung 	case SIOCSIFMTU:
    525   1.31      matt 		if (ifr->ifr_mtu > TUNMTU || ifr->ifr_mtu < 576) {
    526  1.102    dyoung 			error = EINVAL;
    527  1.102    dyoung 			break;
    528   1.31      matt 		}
    529   1.31      matt 		TUNDEBUG("%s: interface mtu set\n", ifp->if_xname);
    530  1.102    dyoung 		if ((error = ifioctl_common(ifp, cmd, data)) == ENETRESET)
    531  1.102    dyoung 			error = 0;
    532   1.32      matt 		break;
    533   1.32      matt 	case SIOCADDMULTI:
    534  1.102    dyoung 	case SIOCDELMULTI:
    535  1.102    dyoung 		if (ifr == NULL) {
    536   1.32      matt 	        	error = EAFNOSUPPORT;           /* XXX */
    537   1.32      matt 			break;
    538   1.32      matt 		}
    539   1.98    dyoung 		switch (ifreq_getaddr(cmd, ifr)->sa_family) {
    540   1.32      matt #ifdef INET
    541   1.32      matt 		case AF_INET:
    542   1.32      matt 			break;
    543   1.32      matt #endif
    544   1.80    rpaulo #ifdef INET6
    545   1.80    rpaulo 		case AF_INET6:
    546   1.80    rpaulo 			break;
    547   1.80    rpaulo #endif
    548   1.32      matt 		default:
    549   1.32      matt 			error = EAFNOSUPPORT;
    550   1.32      matt 			break;
    551   1.32      matt 		}
    552   1.31      matt 		break;
    553    1.6   deraadt 	default:
    554  1.108    dyoung 		error = ifioctl_common(ifp, cmd, data);
    555    1.6   deraadt 	}
    556   1.70        pk 
    557  1.135     skrll 	return error;
    558    1.1       cgd }
    559    1.1       cgd 
    560    1.1       cgd /*
    561   1.22  christos  * tun_output - queue packets from higher level ready to put out.
    562    1.1       cgd  */
    563   1.78   thorpej static int
    564   1.96    dyoung tun_output(struct ifnet *ifp, struct mbuf *m0, const struct sockaddr *dst,
    565  1.125     ozaki     const struct rtentry *rt)
    566    1.6   deraadt {
    567   1.24   thorpej 	struct tun_softc *tp = ifp->if_softc;
    568   1.51    itojun 	int		error;
    569   1.80    rpaulo #if defined(INET) || defined(INET6)
    570   1.75  christos 	int		mlen;
    571   1.80    rpaulo 	uint32_t	*af;
    572   1.38    itojun #endif
    573    1.6   deraadt 
    574  1.115     rmind 	mutex_enter(&tp->tun_lock);
    575   1.24   thorpej 	TUNDEBUG ("%s: tun_output\n", ifp->if_xname);
    576    1.1       cgd 
    577    1.8   deraadt 	if ((tp->tun_flags & TUN_READY) != TUN_READY) {
    578   1.24   thorpej 		TUNDEBUG ("%s: not ready 0%o\n", ifp->if_xname,
    579   1.24   thorpej 			  tp->tun_flags);
    580   1.70        pk 		error = EHOSTDOWN;
    581  1.138      maya 		mutex_exit(&tp->tun_lock);
    582   1.70        pk 		goto out;
    583    1.8   deraadt 	}
    584  1.136     skrll 	// XXXrmind
    585  1.136     skrll 	mutex_exit(&tp->tun_lock);
    586    1.8   deraadt 
    587   1.50    itojun 	/*
    588   1.50    itojun 	 * if the queueing discipline needs packet classification,
    589   1.50    itojun 	 * do it before prepending link headers.
    590   1.50    itojun 	 */
    591  1.124  knakahar 	IFQ_CLASSIFY(&ifp->if_snd, m0, dst->sa_family);
    592   1.70        pk 
    593  1.144   msaitoh 	bpf_mtap_af(ifp, dst->sa_family, m0, BPF_D_OUT);
    594    1.8   deraadt 
    595  1.143       tih 	if ((error = pfil_run_hooks(ifp->if_pfil, &m0, ifp, PFIL_OUT)) != 0)
    596  1.143       tih 		goto out;
    597  1.143       tih 	if (m0 == NULL)
    598  1.143       tih 		goto out;
    599  1.143       tih 
    600    1.6   deraadt 	switch(dst->sa_family) {
    601   1.79    rpaulo #ifdef INET6
    602   1.79    rpaulo 	case AF_INET6:
    603   1.79    rpaulo #endif
    604    1.1       cgd #ifdef INET
    605    1.6   deraadt 	case AF_INET:
    606   1.79    rpaulo #endif
    607   1.79    rpaulo #if defined(INET) || defined(INET6)
    608   1.26        pk 		if (tp->tun_flags & TUN_PREPADDR) {
    609   1.26        pk 			/* Simple link-layer header */
    610   1.26        pk 			M_PREPEND(m0, dst->sa_len, M_DONTWAIT);
    611   1.26        pk 			if (m0 == NULL) {
    612   1.26        pk 				IF_DROP(&ifp->if_snd);
    613   1.70        pk 				error = ENOBUFS;
    614   1.70        pk 				goto out;
    615   1.26        pk 			}
    616  1.136     skrll 			memcpy(mtod(m0, char *), dst, dst->sa_len);
    617   1.85    rpaulo 		}
    618   1.85    rpaulo 
    619   1.85    rpaulo 		if (tp->tun_flags & TUN_IFHEAD) {
    620   1.81    rpaulo 			/* Prepend the address family */
    621   1.82    rpaulo 			M_PREPEND(m0, sizeof(*af), M_DONTWAIT);
    622   1.80    rpaulo 			if (m0 == NULL) {
    623   1.80    rpaulo 				IF_DROP(&ifp->if_snd);
    624   1.80    rpaulo 				error = ENOBUFS;
    625   1.80    rpaulo 				goto out;
    626   1.80    rpaulo 			}
    627   1.80    rpaulo 			af = mtod(m0,uint32_t *);
    628   1.80    rpaulo 			*af = htonl(dst->sa_family);
    629   1.86    rpaulo 		} else {
    630  1.115     rmind #ifdef INET
    631   1.86    rpaulo 			if (dst->sa_family != AF_INET)
    632   1.86    rpaulo #endif
    633   1.86    rpaulo 			{
    634   1.86    rpaulo 				error = EAFNOSUPPORT;
    635   1.86    rpaulo 				goto out;
    636   1.86    rpaulo 			}
    637   1.26        pk 		}
    638   1.36  sommerfe 		/* FALLTHROUGH */
    639   1.36  sommerfe 	case AF_UNSPEC:
    640  1.157      maxv 		mlen = m0->m_pkthdr.len;
    641  1.124  knakahar 		IFQ_ENQUEUE(&ifp->if_snd, m0, error);
    642   1.50    itojun 		if (error) {
    643  1.158   thorpej 			if_statinc(ifp, if_collisions);
    644   1.70        pk 			error = EAFNOSUPPORT;
    645  1.115     rmind 			m0 = NULL;
    646   1.70        pk 			goto out;
    647    1.6   deraadt 		}
    648  1.158   thorpej 		if_statadd2(ifp, if_opackets, 1, if_obytes, mlen);
    649    1.6   deraadt 		break;
    650    1.1       cgd #endif
    651    1.6   deraadt 	default:
    652   1.70        pk 		error = EAFNOSUPPORT;
    653   1.70        pk 		goto out;
    654    1.6   deraadt 	}
    655    1.6   deraadt 
    656  1.136     skrll 	mutex_enter(&tp->tun_lock);
    657    1.6   deraadt 	if (tp->tun_flags & TUN_RWAIT) {
    658    1.6   deraadt 		tp->tun_flags &= ~TUN_RWAIT;
    659  1.136     skrll 		cv_broadcast(&tp->tun_cv);
    660    1.6   deraadt 	}
    661   1.64  jdolecek 	if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
    662  1.106        ad 		softint_schedule(tp->tun_isih);
    663   1.64  jdolecek 
    664  1.146     ozaki 	selnotify(&tp->tun_rsel, 0, NOTE_SUBMIT);
    665  1.138      maya 
    666  1.138      maya 	mutex_exit(&tp->tun_lock);
    667   1.70        pk out:
    668  1.143       tih 	if (error && m0)
    669  1.115     rmind 		m_freem(m0);
    670  1.143       tih 
    671  1.143       tih 	return error;
    672    1.1       cgd }
    673    1.1       cgd 
    674  1.106        ad static void
    675  1.106        ad tun_i_softintr(void *cookie)
    676  1.106        ad {
    677  1.106        ad 	struct tun_softc *tp = cookie;
    678  1.106        ad 
    679  1.106        ad 	if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
    680  1.106        ad 		fownsignal(tp->tun_pgid, SIGIO, POLL_IN, POLLIN|POLLRDNORM,
    681  1.106        ad 		    NULL);
    682  1.106        ad }
    683  1.106        ad 
    684  1.106        ad static void
    685  1.106        ad tun_o_softintr(void *cookie)
    686  1.106        ad {
    687  1.106        ad 	struct tun_softc *tp = cookie;
    688  1.106        ad 
    689  1.106        ad 	if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
    690  1.106        ad 		fownsignal(tp->tun_pgid, SIGIO, POLL_OUT, POLLOUT|POLLWRNORM,
    691  1.106        ad 		    NULL);
    692  1.106        ad }
    693  1.106        ad 
    694    1.1       cgd /*
    695    1.1       cgd  * the cdevsw interface is now pretty minimal.
    696    1.1       cgd  */
    697    1.6   deraadt int
    698   1.97  christos tunioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    699    1.6   deraadt {
    700   1.46    atatat 	struct tun_softc *tp;
    701  1.136     skrll 	int error = 0;
    702   1.46    atatat 
    703   1.46    atatat 	tp = tun_find_unit(dev);
    704   1.46    atatat 
    705   1.46    atatat 	/* interface was "destroyed" already */
    706   1.70        pk 	if (tp == NULL) {
    707  1.136     skrll 		return ENXIO;
    708   1.70        pk 	}
    709    1.6   deraadt 
    710    1.6   deraadt 	switch (cmd) {
    711    1.6   deraadt 	case TUNSDEBUG:
    712    1.6   deraadt 		tundebug = *(int *)data;
    713    1.6   deraadt 		break;
    714   1.26        pk 
    715    1.6   deraadt 	case TUNGDEBUG:
    716    1.6   deraadt 		*(int *)data = tundebug;
    717    1.6   deraadt 		break;
    718   1.26        pk 
    719   1.26        pk 	case TUNSIFMODE:
    720   1.31      matt 		switch (*(int *)data & (IFF_POINTOPOINT|IFF_BROADCAST)) {
    721   1.26        pk 		case IFF_POINTOPOINT:
    722   1.26        pk 		case IFF_BROADCAST:
    723   1.26        pk 			if (tp->tun_if.if_flags & IFF_UP) {
    724   1.70        pk 				error = EBUSY;
    725   1.70        pk 				goto out;
    726   1.26        pk 			}
    727   1.26        pk 			tp->tun_if.if_flags &=
    728   1.31      matt 				~(IFF_BROADCAST|IFF_POINTOPOINT|IFF_MULTICAST);
    729   1.26        pk 			tp->tun_if.if_flags |= *(int *)data;
    730   1.26        pk 			break;
    731   1.26        pk 		default:
    732   1.70        pk 			error = EINVAL;
    733   1.70        pk 			goto out;
    734   1.26        pk 		}
    735   1.26        pk 		break;
    736   1.26        pk 
    737   1.26        pk 	case TUNSLMODE:
    738   1.87    rpaulo 		if (*(int *)data) {
    739   1.26        pk 			tp->tun_flags |= TUN_PREPADDR;
    740   1.87    rpaulo 			tp->tun_flags &= ~TUN_IFHEAD;
    741   1.87    rpaulo 		} else
    742   1.26        pk 			tp->tun_flags &= ~TUN_PREPADDR;
    743   1.26        pk 		break;
    744   1.26        pk 
    745   1.84    rpaulo 	case TUNSIFHEAD:
    746   1.87    rpaulo 		if (*(int *)data) {
    747   1.84    rpaulo 			tp->tun_flags |= TUN_IFHEAD;
    748   1.88    rpaulo 			tp->tun_flags &= ~TUN_PREPADDR;
    749   1.87    rpaulo 		} else
    750   1.84    rpaulo 			tp->tun_flags &= ~TUN_IFHEAD;
    751   1.84    rpaulo 		break;
    752   1.84    rpaulo 
    753   1.84    rpaulo 	case TUNGIFHEAD:
    754   1.84    rpaulo 		*(int *)data = (tp->tun_flags & TUN_IFHEAD);
    755   1.84    rpaulo 		break;
    756   1.84    rpaulo 
    757    1.6   deraadt 	case FIONBIO:
    758    1.6   deraadt 		if (*(int *)data)
    759    1.6   deraadt 			tp->tun_flags |= TUN_NBIO;
    760    1.6   deraadt 		else
    761    1.6   deraadt 			tp->tun_flags &= ~TUN_NBIO;
    762    1.6   deraadt 		break;
    763   1.26        pk 
    764    1.6   deraadt 	case FIOASYNC:
    765    1.6   deraadt 		if (*(int *)data)
    766    1.6   deraadt 			tp->tun_flags |= TUN_ASYNC;
    767    1.6   deraadt 		else
    768    1.6   deraadt 			tp->tun_flags &= ~TUN_ASYNC;
    769    1.6   deraadt 		break;
    770   1.26        pk 
    771    1.6   deraadt 	case FIONREAD:
    772    1.6   deraadt 		if (tp->tun_if.if_snd.ifq_head)
    773   1.19        pk 			*(int *)data = tp->tun_if.if_snd.ifq_head->m_pkthdr.len;
    774   1.70        pk 		else
    775    1.6   deraadt 			*(int *)data = 0;
    776    1.6   deraadt 		break;
    777   1.26        pk 
    778    1.6   deraadt 	case TIOCSPGRP:
    779   1.64  jdolecek 	case FIOSETOWN:
    780  1.105        ad 		error = fsetown(&tp->tun_pgid, cmd, data);
    781    1.6   deraadt 		break;
    782   1.26        pk 
    783    1.6   deraadt 	case TIOCGPGRP:
    784   1.64  jdolecek 	case FIOGETOWN:
    785  1.105        ad 		error = fgetown(tp->tun_pgid, cmd, data);
    786    1.6   deraadt 		break;
    787   1.26        pk 
    788    1.6   deraadt 	default:
    789   1.70        pk 		error = ENOTTY;
    790    1.6   deraadt 	}
    791   1.70        pk 
    792   1.70        pk out:
    793  1.115     rmind 	mutex_exit(&tp->tun_lock);
    794  1.136     skrll 
    795  1.135     skrll 	return error;
    796    1.1       cgd }
    797    1.1       cgd 
    798    1.1       cgd /*
    799    1.6   deraadt  * The cdevsw read interface - reads a packet at a time, or at
    800    1.6   deraadt  * least as much of a packet as can be read.
    801    1.1       cgd  */
    802    1.6   deraadt int
    803   1.94  christos tunread(dev_t dev, struct uio *uio, int ioflag)
    804    1.6   deraadt {
    805   1.46    atatat 	struct tun_softc *tp;
    806   1.46    atatat 	struct ifnet	*ifp;
    807    1.6   deraadt 	struct mbuf	*m, *m0;
    808  1.136     skrll 	int		error = 0, len;
    809   1.46    atatat 
    810   1.46    atatat 	tp = tun_find_unit(dev);
    811   1.46    atatat 
    812   1.46    atatat 	/* interface was "destroyed" already */
    813   1.70        pk 	if (tp == NULL) {
    814  1.136     skrll 		return ENXIO;
    815   1.70        pk 	}
    816   1.46    atatat 
    817   1.46    atatat 	ifp = &tp->tun_if;
    818    1.6   deraadt 
    819   1.24   thorpej 	TUNDEBUG ("%s: read\n", ifp->if_xname);
    820    1.8   deraadt 	if ((tp->tun_flags & TUN_READY) != TUN_READY) {
    821   1.26        pk 		TUNDEBUG ("%s: not ready 0%o\n", ifp->if_xname, tp->tun_flags);
    822   1.70        pk 		error = EHOSTDOWN;
    823   1.70        pk 		goto out;
    824    1.8   deraadt 	}
    825    1.8   deraadt 
    826    1.6   deraadt 	tp->tun_flags &= ~TUN_RWAIT;
    827    1.6   deraadt 
    828    1.6   deraadt 	do {
    829   1.50    itojun 		IFQ_DEQUEUE(&ifp->if_snd, m0);
    830    1.6   deraadt 		if (m0 == 0) {
    831    1.6   deraadt 			if (tp->tun_flags & TUN_NBIO) {
    832   1.70        pk 				error = EWOULDBLOCK;
    833   1.70        pk 				goto out;
    834    1.6   deraadt 			}
    835    1.6   deraadt 			tp->tun_flags |= TUN_RWAIT;
    836  1.136     skrll 			if (cv_wait_sig(&tp->tun_cv, &tp->tun_lock)) {
    837   1.70        pk 				error = EINTR;
    838  1.136     skrll 				goto out;
    839   1.26        pk 			}
    840    1.6   deraadt 		}
    841    1.6   deraadt 	} while (m0 == 0);
    842   1.70        pk 
    843  1.115     rmind 	mutex_exit(&tp->tun_lock);
    844    1.6   deraadt 
    845   1.70        pk 	/* Copy the mbuf chain */
    846    1.6   deraadt 	while (m0 && uio->uio_resid > 0 && error == 0) {
    847  1.147  riastrad 		len = uimin(uio->uio_resid, m0->m_len);
    848   1.45    itojun 		if (len != 0)
    849   1.97  christos 			error = uiomove(mtod(m0, void *), len, uio);
    850  1.133  christos 		m0 = m = m_free(m0);
    851    1.6   deraadt 	}
    852    1.6   deraadt 
    853    1.6   deraadt 	if (m0) {
    854    1.6   deraadt 		TUNDEBUG("Dropping mbuf\n");
    855    1.6   deraadt 		m_freem(m0);
    856    1.6   deraadt 	}
    857   1.19        pk 	if (error)
    858  1.158   thorpej 		if_statinc(ifp, if_ierrors);
    859   1.70        pk 
    860  1.135     skrll 	return error;
    861   1.70        pk 
    862   1.70        pk out:
    863  1.115     rmind 	mutex_exit(&tp->tun_lock);
    864  1.136     skrll 
    865  1.135     skrll 	return error;
    866    1.1       cgd }
    867    1.1       cgd 
    868    1.1       cgd /*
    869    1.1       cgd  * the cdevsw write interface - an atomic write is a packet - or else!
    870    1.1       cgd  */
    871    1.6   deraadt int
    872   1.94  christos tunwrite(dev_t dev, struct uio *uio, int ioflag)
    873    1.6   deraadt {
    874   1.46    atatat 	struct tun_softc *tp;
    875   1.46    atatat 	struct ifnet	*ifp;
    876    1.6   deraadt 	struct mbuf	*top, **mp, *m;
    877  1.118     rmind 	pktqueue_t	*pktq;
    878   1.26        pk 	struct sockaddr	dst;
    879  1.136     skrll 	int		error = 0, tlen, mlen;
    880   1.80    rpaulo 	uint32_t	family;
    881    1.6   deraadt 
    882   1.46    atatat 	tp = tun_find_unit(dev);
    883   1.70        pk 	if (tp == NULL) {
    884  1.136     skrll 		/* Interface was "destroyed" already. */
    885  1.136     skrll 		return ENXIO;
    886   1.70        pk 	}
    887   1.70        pk 
    888   1.70        pk 	/* Unlock until we've got the data */
    889  1.115     rmind 	mutex_exit(&tp->tun_lock);
    890   1.46    atatat 
    891   1.46    atatat 	ifp = &tp->tun_if;
    892   1.46    atatat 
    893   1.24   thorpej 	TUNDEBUG("%s: tunwrite\n", ifp->if_xname);
    894    1.6   deraadt 
    895   1.26        pk 	if (tp->tun_flags & TUN_PREPADDR) {
    896   1.46    atatat 		if (uio->uio_resid < sizeof(dst)) {
    897   1.70        pk 			error = EIO;
    898   1.70        pk 			goto out0;
    899   1.46    atatat 		}
    900   1.97  christos 		error = uiomove((void *)&dst, sizeof(dst), uio);
    901   1.26        pk 		if (dst.sa_len > sizeof(dst)) {
    902   1.26        pk 			/* Duh.. */
    903   1.26        pk 			int n = dst.sa_len - sizeof(dst);
    904  1.136     skrll 			while (n--) {
    905  1.136     skrll 				char discard;
    906  1.136     skrll 				error = uiomove(&discard, 1, uio);
    907  1.136     skrll 				if (error) {
    908   1.70        pk 					goto out0;
    909   1.46    atatat 				}
    910  1.136     skrll 			}
    911   1.26        pk 		}
    912   1.85    rpaulo 	} else if (tp->tun_flags & TUN_IFHEAD) {
    913   1.80    rpaulo 		if (uio->uio_resid < sizeof(family)){
    914   1.80    rpaulo 			error = EIO;
    915   1.80    rpaulo 			goto out0;
    916   1.80    rpaulo 		}
    917   1.97  christos 		error = uiomove((void *)&family, sizeof(family), uio);
    918   1.80    rpaulo 		dst.sa_family = ntohl(family);
    919   1.85    rpaulo 	} else {
    920   1.85    rpaulo #ifdef INET
    921   1.85    rpaulo 		dst.sa_family = AF_INET;
    922   1.85    rpaulo #endif
    923   1.26        pk 	}
    924   1.26        pk 
    925  1.160      maxv 	if (uio->uio_resid == 0 || uio->uio_resid > TUNMTU) {
    926   1.37    mjacob 		TUNDEBUG("%s: len=%lu!\n", ifp->if_xname,
    927   1.37    mjacob 		    (unsigned long)uio->uio_resid);
    928   1.70        pk 		error = EIO;
    929   1.70        pk 		goto out0;
    930    1.6   deraadt 	}
    931   1.26        pk 
    932   1.26        pk 	switch (dst.sa_family) {
    933   1.26        pk #ifdef INET
    934   1.26        pk 	case AF_INET:
    935  1.118     rmind 		pktq = ip_pktq;
    936   1.26        pk 		break;
    937   1.26        pk #endif
    938   1.79    rpaulo #ifdef INET6
    939   1.79    rpaulo 	case AF_INET6:
    940  1.118     rmind 		pktq = ip6_pktq;
    941   1.83    rpaulo 		break;
    942   1.79    rpaulo #endif
    943   1.26        pk 	default:
    944   1.70        pk 		error = EAFNOSUPPORT;
    945   1.70        pk 		goto out0;
    946   1.26        pk 	}
    947   1.26        pk 
    948    1.8   deraadt 	tlen = uio->uio_resid;
    949    1.8   deraadt 
    950    1.8   deraadt 	/* get a header mbuf */
    951    1.8   deraadt 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    952   1.46    atatat 	if (m == NULL) {
    953  1.136     skrll 		return ENOBUFS;
    954   1.46    atatat 	}
    955    1.8   deraadt 	mlen = MHLEN;
    956    1.8   deraadt 
    957   1.68      tron 	top = NULL;
    958    1.6   deraadt 	mp = &top;
    959    1.6   deraadt 	while (error == 0 && uio->uio_resid > 0) {
    960  1.147  riastrad 		m->m_len = uimin(mlen, uio->uio_resid);
    961   1.97  christos 		error = uiomove(mtod(m, void *), m->m_len, uio);
    962    1.6   deraadt 		*mp = m;
    963    1.6   deraadt 		mp = &m->m_next;
    964   1.68      tron 		if (error == 0 && uio->uio_resid > 0) {
    965   1.68      tron 			MGET(m, M_DONTWAIT, MT_DATA);
    966   1.68      tron 			if (m == NULL) {
    967    1.8   deraadt 				error = ENOBUFS;
    968    1.8   deraadt 				break;
    969    1.8   deraadt 			}
    970    1.8   deraadt 			mlen = MLEN;
    971    1.8   deraadt 		}
    972    1.6   deraadt 	}
    973    1.6   deraadt 	if (error) {
    974   1.68      tron 		if (top != NULL)
    975  1.136     skrll 			m_freem(top);
    976  1.158   thorpej 		if_statinc(ifp, if_ierrors);
    977   1.70        pk 		goto out0;
    978    1.6   deraadt 	}
    979    1.6   deraadt 
    980    1.8   deraadt 	top->m_pkthdr.len = tlen;
    981  1.126     ozaki 	m_set_rcvif(top, ifp);
    982    1.8   deraadt 
    983  1.144   msaitoh 	bpf_mtap_af(ifp, dst.sa_family, top, BPF_D_IN);
    984    1.6   deraadt 
    985  1.143       tih 	if ((error = pfil_run_hooks(ifp->if_pfil, &top, ifp, PFIL_IN)) != 0)
    986  1.143       tih 		goto out0;
    987  1.143       tih 	if (top == NULL)
    988  1.143       tih 		goto out0;
    989  1.143       tih 
    990  1.115     rmind 	mutex_enter(&tp->tun_lock);
    991   1.70        pk 	if ((tp->tun_flags & TUN_INITED) == 0) {
    992   1.70        pk 		/* Interface was destroyed */
    993   1.70        pk 		error = ENXIO;
    994   1.70        pk 		goto out;
    995   1.70        pk 	}
    996  1.119        ws 	if (__predict_false(!pktq_enqueue(pktq, top, 0))) {
    997  1.158   thorpej 		if_statinc(ifp, if_collisions);
    998  1.115     rmind 		mutex_exit(&tp->tun_lock);
    999   1.70        pk 		error = ENOBUFS;
   1000  1.119        ws 		m_freem(top);
   1001  1.136     skrll 		goto out0;
   1002    1.6   deraadt 	}
   1003  1.158   thorpej 	if_statadd2(ifp, if_ipackets, 1, if_ibytes, tlen);
   1004   1.70        pk out:
   1005  1.115     rmind 	mutex_exit(&tp->tun_lock);
   1006   1.70        pk out0:
   1007  1.135     skrll 	return error;
   1008    1.1       cgd }
   1009    1.1       cgd 
   1010   1.50    itojun #ifdef ALTQ
   1011   1.50    itojun /*
   1012   1.50    itojun  * Start packet transmission on the interface.
   1013   1.50    itojun  * when the interface queue is rate-limited by ALTQ or TBR,
   1014   1.50    itojun  * if_start is needed to drain packets from the queue in order
   1015   1.50    itojun  * to notify readers when outgoing packets become ready.
   1016   1.50    itojun  */
   1017   1.50    itojun static void
   1018   1.78   thorpej tunstart(struct ifnet *ifp)
   1019   1.50    itojun {
   1020   1.50    itojun 	struct tun_softc *tp = ifp->if_softc;
   1021   1.50    itojun 
   1022   1.50    itojun 	if (!ALTQ_IS_ENABLED(&ifp->if_snd) && !TBR_IS_ENABLED(&ifp->if_snd))
   1023   1.50    itojun 		return;
   1024   1.50    itojun 
   1025  1.115     rmind 	mutex_enter(&tp->tun_lock);
   1026   1.70        pk 	if (!IF_IS_EMPTY(&ifp->if_snd)) {
   1027   1.50    itojun 		if (tp->tun_flags & TUN_RWAIT) {
   1028   1.50    itojun 			tp->tun_flags &= ~TUN_RWAIT;
   1029  1.136     skrll 			cv_broadcast(&tp->tun_cv);
   1030   1.50    itojun 		}
   1031   1.64  jdolecek 		if (tp->tun_flags & TUN_ASYNC && tp->tun_pgid)
   1032  1.106        ad 			softint_schedule(tp->tun_osih);
   1033   1.70        pk 
   1034  1.146     ozaki 		selnotify(&tp->tun_rsel, 0, NOTE_SUBMIT);
   1035   1.50    itojun 	}
   1036  1.115     rmind 	mutex_exit(&tp->tun_lock);
   1037   1.50    itojun }
   1038   1.50    itojun #endif /* ALTQ */
   1039    1.1       cgd /*
   1040   1.27   mycroft  * tunpoll - the poll interface, this is only useful on reads
   1041    1.6   deraadt  * really. The write detect always returns true, write never blocks
   1042    1.6   deraadt  * anyway, it either accepts the packet or drops it.
   1043    1.6   deraadt  */
   1044    1.6   deraadt int
   1045   1.78   thorpej tunpoll(dev_t dev, int events, struct lwp *l)
   1046    1.6   deraadt {
   1047   1.46    atatat 	struct tun_softc *tp;
   1048   1.46    atatat 	struct ifnet	*ifp;
   1049  1.136     skrll 	int revents = 0;
   1050   1.46    atatat 
   1051   1.46    atatat 	tp = tun_find_unit(dev);
   1052  1.136     skrll 	if (tp == NULL) {
   1053  1.136     skrll 		/* Interface was "destroyed" already. */
   1054  1.136     skrll 		return 0;
   1055  1.136     skrll 	}
   1056   1.46    atatat 	ifp = &tp->tun_if;
   1057    1.6   deraadt 
   1058   1.27   mycroft 	TUNDEBUG("%s: tunpoll\n", ifp->if_xname);
   1059    1.6   deraadt 
   1060   1.35     veego 	if (events & (POLLIN | POLLRDNORM)) {
   1061   1.70        pk 		if (!IFQ_IS_EMPTY(&ifp->if_snd)) {
   1062   1.27   mycroft 			TUNDEBUG("%s: tunpoll q=%d\n", ifp->if_xname,
   1063   1.24   thorpej 			    ifp->if_snd.ifq_len);
   1064   1.27   mycroft 			revents |= events & (POLLIN | POLLRDNORM);
   1065   1.27   mycroft 		} else {
   1066   1.27   mycroft 			TUNDEBUG("%s: tunpoll waiting\n", ifp->if_xname);
   1067   1.77  christos 			selrecord(l, &tp->tun_rsel);
   1068    1.6   deraadt 		}
   1069   1.35     veego 	}
   1070   1.27   mycroft 
   1071   1.27   mycroft 	if (events & (POLLOUT | POLLWRNORM))
   1072   1.27   mycroft 		revents |= events & (POLLOUT | POLLWRNORM);
   1073   1.27   mycroft 
   1074  1.115     rmind 	mutex_exit(&tp->tun_lock);
   1075  1.136     skrll 
   1076  1.135     skrll 	return revents;
   1077   1.56  jdolecek }
   1078   1.56  jdolecek 
   1079   1.56  jdolecek static void
   1080   1.56  jdolecek filt_tunrdetach(struct knote *kn)
   1081   1.56  jdolecek {
   1082   1.56  jdolecek 	struct tun_softc *tp = kn->kn_hook;
   1083   1.56  jdolecek 
   1084  1.136     skrll 	mutex_enter(&tp->tun_lock);
   1085  1.162   thorpej 	selremove_knote(&tp->tun_rsel, kn);
   1086  1.136     skrll 	mutex_exit(&tp->tun_lock);
   1087   1.56  jdolecek }
   1088   1.56  jdolecek 
   1089   1.56  jdolecek static int
   1090   1.94  christos filt_tunread(struct knote *kn, long hint)
   1091   1.56  jdolecek {
   1092   1.56  jdolecek 	struct tun_softc *tp = kn->kn_hook;
   1093   1.56  jdolecek 	struct ifnet *ifp = &tp->tun_if;
   1094   1.56  jdolecek 	struct mbuf *m;
   1095  1.146     ozaki 	int ready;
   1096   1.56  jdolecek 
   1097  1.146     ozaki 	if (hint & NOTE_SUBMIT)
   1098  1.146     ozaki 		KASSERT(mutex_owned(&tp->tun_lock));
   1099  1.146     ozaki 	else
   1100  1.146     ozaki 		mutex_enter(&tp->tun_lock);
   1101  1.145     ozaki 
   1102   1.56  jdolecek 	IF_POLL(&ifp->if_snd, m);
   1103  1.146     ozaki 	ready = (m != NULL);
   1104   1.56  jdolecek 	for (kn->kn_data = 0; m != NULL; m = m->m_next)
   1105   1.56  jdolecek 		kn->kn_data += m->m_len;
   1106   1.56  jdolecek 
   1107  1.146     ozaki 	if (hint & NOTE_SUBMIT)
   1108  1.146     ozaki 		KASSERT(mutex_owned(&tp->tun_lock));
   1109  1.146     ozaki 	else
   1110  1.146     ozaki 		mutex_exit(&tp->tun_lock);
   1111  1.146     ozaki 
   1112  1.146     ozaki 	return ready;
   1113   1.56  jdolecek }
   1114   1.56  jdolecek 
   1115  1.140      maya static const struct filterops tunread_filtops = {
   1116  1.163   thorpej 	.f_flags = FILTEROP_ISFD,
   1117  1.140      maya 	.f_attach = NULL,
   1118  1.140      maya 	.f_detach = filt_tunrdetach,
   1119  1.140      maya 	.f_event = filt_tunread,
   1120  1.140      maya };
   1121   1.56  jdolecek 
   1122   1.56  jdolecek int
   1123   1.56  jdolecek tunkqfilter(dev_t dev, struct knote *kn)
   1124   1.56  jdolecek {
   1125   1.70        pk 	struct tun_softc *tp;
   1126  1.136     skrll 	int rv = 0;
   1127   1.70        pk 
   1128   1.70        pk 	tp = tun_find_unit(dev);
   1129   1.70        pk 	if (tp == NULL)
   1130   1.70        pk 		goto out_nolock;
   1131   1.56  jdolecek 
   1132   1.56  jdolecek 	switch (kn->kn_filter) {
   1133   1.56  jdolecek 	case EVFILT_READ:
   1134   1.56  jdolecek 		kn->kn_fop = &tunread_filtops;
   1135  1.164   thorpej 		kn->kn_hook = tp;
   1136  1.164   thorpej 		selrecord_knote(&tp->tun_rsel, kn);
   1137   1.56  jdolecek 		break;
   1138   1.56  jdolecek 
   1139   1.56  jdolecek 	case EVFILT_WRITE:
   1140  1.164   thorpej 		kn->kn_fop = &seltrue_filtops;
   1141   1.56  jdolecek 		break;
   1142   1.56  jdolecek 
   1143   1.56  jdolecek 	default:
   1144  1.100     pooka 		rv = EINVAL;
   1145   1.70        pk 		goto out;
   1146   1.56  jdolecek 	}
   1147   1.56  jdolecek 
   1148   1.70        pk out:
   1149  1.115     rmind 	mutex_exit(&tp->tun_lock);
   1150   1.70        pk out_nolock:
   1151  1.135     skrll 	return rv;
   1152    1.1       cgd }
   1153  1.128  christos 
   1154  1.128  christos /*
   1155  1.128  christos  * Module infrastructure
   1156  1.128  christos  */
   1157  1.128  christos #include "if_module.h"
   1158  1.128  christos 
   1159  1.156  pgoyette IF_MODULE(MODULE_CLASS_DRIVER, tun, NULL)
   1160