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