Home | History | Annotate | Line # | Download | only in net
if_gre.c revision 1.88.2.5
      1  1.88.2.5        ad /*	$NetBSD: if_gre.c,v 1.88.2.5 2007/06/08 14:17:35 ad Exp $ */
      2       1.4   thorpej 
      3       1.1       hwr /*
      4       1.4   thorpej  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5       1.1       hwr  * All rights reserved.
      6       1.1       hwr  *
      7       1.1       hwr  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1       hwr  * by Heiko W.Rupp <hwr (at) pilhuhn.de>
      9       1.1       hwr  *
     10      1.56        is  * IPv6-over-GRE contributed by Gert Doering <gert (at) greenie.muc.de>
     11      1.56        is  *
     12       1.1       hwr  * Redistribution and use in source and binary forms, with or without
     13       1.1       hwr  * modification, are permitted provided that the following conditions
     14       1.1       hwr  * are met:
     15       1.1       hwr  * 1. Redistributions of source code must retain the above copyright
     16       1.1       hwr  *    notice, this list of conditions and the following disclaimer.
     17       1.1       hwr  * 2. Redistributions in binary form must reproduce the above copyright
     18       1.1       hwr  *    notice, this list of conditions and the following disclaimer in the
     19       1.1       hwr  *    documentation and/or other materials provided with the distribution.
     20       1.1       hwr  * 3. All advertising materials mentioning features or use of this software
     21       1.1       hwr  *    must display the following acknowledgement:
     22       1.1       hwr  *        This product includes software developed by the NetBSD
     23       1.1       hwr  *        Foundation, Inc. and its contributors.
     24       1.1       hwr  * 4. Neither the name of The NetBSD Foundation nor the names of its
     25       1.1       hwr  *    contributors may be used to endorse or promote products derived
     26       1.1       hwr  *    from this software without specific prior written permission.
     27       1.1       hwr  *
     28       1.1       hwr  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     29       1.1       hwr  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     30       1.1       hwr  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     31       1.1       hwr  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     32       1.1       hwr  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     33       1.1       hwr  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     34       1.1       hwr  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     35       1.1       hwr  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     36       1.1       hwr  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     37       1.1       hwr  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     38       1.1       hwr  * POSSIBILITY OF SUCH DAMAGE.
     39       1.1       hwr  */
     40       1.1       hwr 
     41       1.1       hwr /*
     42       1.1       hwr  * Encapsulate L3 protocols into IP
     43       1.1       hwr  * See RFC 1701 and 1702 for more details.
     44       1.1       hwr  * If_gre is compatible with Cisco GRE tunnels, so you can
     45       1.1       hwr  * have a NetBSD box as the other end of a tunnel interface of a Cisco
     46       1.1       hwr  * router. See gre(4) for more details.
     47       1.6       hwr  * Also supported:  IP in IP encaps (proto 55) as of RFC 2004
     48       1.1       hwr  */
     49      1.22     lukem 
     50      1.22     lukem #include <sys/cdefs.h>
     51  1.88.2.5        ad __KERNEL_RCSID(0, "$NetBSD: if_gre.c,v 1.88.2.5 2007/06/08 14:17:35 ad Exp $");
     52       1.1       hwr 
     53      1.62    dyoung #include "opt_gre.h"
     54       1.1       hwr #include "opt_inet.h"
     55       1.1       hwr #include "bpfilter.h"
     56       1.1       hwr 
     57      1.54  christos #ifdef INET
     58       1.1       hwr #include <sys/param.h>
     59      1.62    dyoung #include <sys/file.h>
     60      1.62    dyoung #include <sys/filedesc.h>
     61       1.1       hwr #include <sys/malloc.h>
     62       1.1       hwr #include <sys/mbuf.h>
     63      1.13    martin #include <sys/proc.h>
     64       1.1       hwr #include <sys/protosw.h>
     65       1.1       hwr #include <sys/socket.h>
     66      1.62    dyoung #include <sys/socketvar.h>
     67       1.1       hwr #include <sys/ioctl.h>
     68      1.10   thorpej #include <sys/queue.h>
     69       1.1       hwr #if __NetBSD__
     70       1.1       hwr #include <sys/systm.h>
     71      1.62    dyoung #include <sys/sysctl.h>
     72      1.60      elad #include <sys/kauth.h>
     73       1.1       hwr #endif
     74       1.1       hwr 
     75  1.88.2.5        ad #include <sys/kernel.h>
     76  1.88.2.5        ad #include <sys/mutex.h>
     77  1.88.2.5        ad #include <sys/condvar.h>
     78      1.62    dyoung #include <sys/kthread.h>
     79      1.62    dyoung 
     80       1.1       hwr #include <machine/cpu.h>
     81       1.1       hwr 
     82       1.1       hwr #include <net/ethertypes.h>
     83       1.1       hwr #include <net/if.h>
     84       1.1       hwr #include <net/if_types.h>
     85       1.1       hwr #include <net/netisr.h>
     86       1.1       hwr #include <net/route.h>
     87       1.1       hwr 
     88       1.1       hwr #ifdef INET
     89       1.1       hwr #include <netinet/in.h>
     90       1.1       hwr #include <netinet/in_systm.h>
     91       1.1       hwr #include <netinet/in_var.h>
     92       1.1       hwr #include <netinet/ip.h>
     93       1.1       hwr #include <netinet/ip_var.h>
     94       1.1       hwr #else
     95       1.4   thorpej #error "Huh? if_gre without inet?"
     96       1.1       hwr #endif
     97       1.1       hwr 
     98       1.1       hwr 
     99       1.1       hwr #ifdef NETATALK
    100       1.1       hwr #include <netatalk/at.h>
    101       1.1       hwr #include <netatalk/at_var.h>
    102       1.1       hwr #include <netatalk/at_extern.h>
    103       1.1       hwr #endif
    104       1.1       hwr 
    105       1.1       hwr #if NBPFILTER > 0
    106       1.1       hwr #include <sys/time.h>
    107       1.1       hwr #include <net/bpf.h>
    108       1.1       hwr #endif
    109       1.1       hwr 
    110       1.1       hwr #include <net/if_gre.h>
    111       1.1       hwr 
    112      1.20    itojun /*
    113      1.27    martin  * It is not easy to calculate the right value for a GRE MTU.
    114      1.27    martin  * We leave this task to the admin and use the same default that
    115      1.27    martin  * other vendors use.
    116      1.20    itojun  */
    117      1.27    martin #define GREMTU 1476
    118       1.1       hwr 
    119      1.62    dyoung #ifdef GRE_DEBUG
    120      1.62    dyoung #define	GRE_DPRINTF(__sc, __fmt, ...)				\
    121      1.62    dyoung 	do {							\
    122      1.62    dyoung 		if (((__sc)->sc_if.if_flags & IFF_DEBUG) != 0)	\
    123      1.62    dyoung 			printf(__fmt, __VA_ARGS__);		\
    124      1.62    dyoung 	} while (/*CONSTCOND*/0)
    125      1.62    dyoung #else
    126      1.62    dyoung #define	GRE_DPRINTF(__sc, __fmt, ...)	do { } while (/*CONSTCOND*/0)
    127      1.62    dyoung #endif /* GRE_DEBUG */
    128      1.62    dyoung 
    129      1.11   thorpej struct gre_softc_head gre_softc_list;
    130      1.26    martin int ip_gre_ttl = GRE_TTL;
    131       1.1       hwr 
    132      1.59   thorpej static int	gre_clone_create(struct if_clone *, int);
    133      1.59   thorpej static int	gre_clone_destroy(struct ifnet *);
    134      1.10   thorpej 
    135      1.59   thorpej static struct if_clone gre_cloner =
    136      1.10   thorpej     IF_CLONE_INITIALIZER("gre", gre_clone_create, gre_clone_destroy);
    137       1.1       hwr 
    138      1.84    dyoung static int	gre_output(struct ifnet *, struct mbuf *,
    139      1.84    dyoung 			   const struct sockaddr *, struct rtentry *);
    140      1.88  christos static int	gre_ioctl(struct ifnet *, u_long, void *);
    141       1.1       hwr 
    142      1.59   thorpej static int	gre_compute_route(struct gre_softc *sc);
    143      1.59   thorpej 
    144  1.88.2.5        ad static void gre_closef(struct file **, struct lwp *);
    145      1.62    dyoung static int gre_getsockname(struct socket *, struct mbuf *, struct lwp *);
    146      1.62    dyoung static int gre_getpeername(struct socket *, struct mbuf *, struct lwp *);
    147      1.62    dyoung static int gre_getnames(struct socket *, struct lwp *, struct sockaddr_in *,
    148      1.62    dyoung     struct sockaddr_in *);
    149      1.62    dyoung 
    150  1.88.2.5        ad /* Calling thread must hold sc->sc_mtx. */
    151      1.62    dyoung static void
    152  1.88.2.5        ad gre_stop(struct gre_softc *sc)
    153      1.62    dyoung {
    154  1.88.2.5        ad 	sc->sc_running = 0;
    155  1.88.2.5        ad 	cv_signal(&sc->sc_join_cv);
    156      1.62    dyoung }
    157      1.62    dyoung 
    158  1.88.2.5        ad /* Calling thread must hold sc->sc_mtx. */
    159      1.62    dyoung static void
    160  1.88.2.5        ad gre_join(struct gre_softc *sc)
    161      1.62    dyoung {
    162  1.88.2.5        ad 	while (sc->sc_running != 0)
    163  1.88.2.5        ad 		cv_wait(&sc->sc_join_cv, &sc->sc_mtx);
    164      1.62    dyoung }
    165      1.62    dyoung 
    166  1.88.2.5        ad /* Calling thread must hold sc->sc_mtx. */
    167      1.62    dyoung static void
    168      1.62    dyoung gre_wakeup(struct gre_softc *sc)
    169      1.62    dyoung {
    170      1.62    dyoung 	GRE_DPRINTF(sc, "%s: enter\n", __func__);
    171  1.88.2.5        ad 	sc->sc_haswork = 1;
    172  1.88.2.5        ad 	cv_signal(&sc->sc_work_cv);
    173      1.62    dyoung }
    174      1.62    dyoung 
    175      1.59   thorpej static int
    176      1.59   thorpej gre_clone_create(struct if_clone *ifc, int unit)
    177       1.1       hwr {
    178       1.8  explorer 	struct gre_softc *sc;
    179       1.1       hwr 
    180      1.10   thorpej 	sc = malloc(sizeof(struct gre_softc), M_DEVBUF, M_WAITOK);
    181      1.10   thorpej 	memset(sc, 0, sizeof(struct gre_softc));
    182  1.88.2.5        ad 	mutex_init(&sc->sc_mtx, MUTEX_DRIVER, IPL_NET);
    183  1.88.2.5        ad 	cv_init(&sc->sc_work_cv, "gre work");
    184  1.88.2.5        ad 	cv_init(&sc->sc_join_cv, "gre join");
    185  1.88.2.5        ad 	cv_init(&sc->sc_soparm_cv, "gre soparm");
    186      1.10   thorpej 
    187      1.50    itojun 	snprintf(sc->sc_if.if_xname, sizeof(sc->sc_if.if_xname), "%s%d",
    188      1.50    itojun 	    ifc->ifc_name, unit);
    189      1.10   thorpej 	sc->sc_if.if_softc = sc;
    190      1.51      tron 	sc->sc_if.if_type = IFT_TUNNEL;
    191      1.34    itojun 	sc->sc_if.if_addrlen = 0;
    192      1.10   thorpej 	sc->sc_if.if_hdrlen = 24; /* IP + GRE */
    193      1.15   thorpej 	sc->sc_if.if_dlt = DLT_NULL;
    194      1.20    itojun 	sc->sc_if.if_mtu = GREMTU;
    195      1.10   thorpej 	sc->sc_if.if_flags = IFF_POINTOPOINT|IFF_MULTICAST;
    196      1.10   thorpej 	sc->sc_if.if_output = gre_output;
    197      1.10   thorpej 	sc->sc_if.if_ioctl = gre_ioctl;
    198      1.10   thorpej 	sc->g_dst.s_addr = sc->g_src.s_addr = INADDR_ANY;
    199      1.62    dyoung 	sc->g_dstport = sc->g_srcport = 0;
    200      1.75    dyoung 	sc->sc_proto = IPPROTO_GRE;
    201      1.64    dyoung 	sc->sc_snd.ifq_maxlen = 256;
    202      1.35    itojun 	sc->sc_if.if_flags |= IFF_LINK0;
    203      1.10   thorpej 	if_attach(&sc->sc_if);
    204      1.16   thorpej 	if_alloc_sadl(&sc->sc_if);
    205       1.1       hwr #if NBPFILTER > 0
    206      1.14   thorpej 	bpfattach(&sc->sc_if, DLT_NULL, sizeof(u_int32_t));
    207       1.1       hwr #endif
    208      1.10   thorpej 	LIST_INSERT_HEAD(&gre_softc_list, sc, sc_list);
    209      1.87    dyoung 	return 0;
    210      1.10   thorpej }
    211       1.1       hwr 
    212      1.59   thorpej static int
    213      1.59   thorpej gre_clone_destroy(struct ifnet *ifp)
    214      1.10   thorpej {
    215      1.10   thorpej 	struct gre_softc *sc = ifp->if_softc;
    216      1.10   thorpej 
    217      1.10   thorpej 	LIST_REMOVE(sc, sc_list);
    218      1.10   thorpej #if NBPFILTER > 0
    219      1.10   thorpej 	bpfdetach(ifp);
    220      1.10   thorpej #endif
    221  1.88.2.5        ad 	if_detach(ifp);
    222  1.88.2.5        ad 	mutex_enter(&sc->sc_mtx);
    223      1.62    dyoung 	gre_wakeup(sc);
    224  1.88.2.5        ad 	gre_join(sc);
    225  1.88.2.5        ad 	mutex_exit(&sc->sc_mtx);
    226      1.85    dyoung 	rtcache_free(&sc->route);
    227  1.88.2.5        ad 
    228  1.88.2.5        ad 	cv_destroy(&sc->sc_soparm_cv);
    229  1.88.2.5        ad 	cv_destroy(&sc->sc_join_cv);
    230  1.88.2.5        ad 	cv_destroy(&sc->sc_work_cv);
    231  1.88.2.5        ad 	mutex_destroy(&sc->sc_mtx);
    232      1.10   thorpej 	free(sc, M_DEVBUF);
    233      1.53     peter 
    234      1.87    dyoung 	return 0;
    235       1.1       hwr }
    236       1.1       hwr 
    237      1.62    dyoung static void
    238      1.88  christos gre_receive(struct socket *so, void *arg, int waitflag)
    239      1.62    dyoung {
    240      1.62    dyoung 	struct gre_softc *sc = (struct gre_softc *)arg;
    241      1.62    dyoung 
    242      1.62    dyoung 	GRE_DPRINTF(sc, "%s: enter\n", __func__);
    243      1.62    dyoung 
    244      1.62    dyoung 	gre_wakeup(sc);
    245      1.62    dyoung }
    246      1.62    dyoung 
    247      1.62    dyoung static void
    248      1.88  christos gre_upcall_add(struct socket *so, void *arg)
    249      1.62    dyoung {
    250      1.62    dyoung 	/* XXX What if the kernel already set an upcall? */
    251      1.62    dyoung 	so->so_upcallarg = arg;
    252      1.62    dyoung 	so->so_upcall = gre_receive;
    253      1.62    dyoung 	so->so_rcv.sb_flags |= SB_UPCALL;
    254      1.62    dyoung }
    255      1.62    dyoung 
    256      1.62    dyoung static void
    257      1.62    dyoung gre_upcall_remove(struct socket *so)
    258      1.62    dyoung {
    259      1.62    dyoung 	/* XXX What if the kernel already set an upcall? */
    260      1.62    dyoung 	so->so_rcv.sb_flags &= ~SB_UPCALL;
    261      1.62    dyoung 	so->so_upcallarg = NULL;
    262      1.62    dyoung 	so->so_upcall = NULL;
    263      1.62    dyoung }
    264      1.62    dyoung 
    265      1.62    dyoung static void
    266      1.62    dyoung gre_sodestroy(struct socket **sop)
    267      1.62    dyoung {
    268      1.62    dyoung 	gre_upcall_remove(*sop);
    269      1.62    dyoung 	soshutdown(*sop, SHUT_RDWR);
    270      1.62    dyoung 	soclose(*sop);
    271      1.62    dyoung 	*sop = NULL;
    272      1.62    dyoung }
    273      1.62    dyoung 
    274      1.62    dyoung static struct mbuf *
    275      1.74  christos gre_getsockmbuf(struct socket *so)
    276      1.62    dyoung {
    277      1.62    dyoung 	struct mbuf *m;
    278      1.62    dyoung 
    279      1.62    dyoung 	m = m_get(M_WAIT, MT_SONAME);
    280      1.62    dyoung 	if (m != NULL)
    281      1.62    dyoung 		MCLAIM(m, so->so_mowner);
    282      1.62    dyoung 	return m;
    283      1.62    dyoung }
    284      1.62    dyoung 
    285      1.62    dyoung static int
    286      1.62    dyoung gre_socreate1(struct gre_softc *sc, struct lwp *l, struct gre_soparm *sp,
    287      1.62    dyoung     struct socket **sop)
    288      1.62    dyoung {
    289      1.62    dyoung 	int rc;
    290      1.62    dyoung 	struct mbuf *m;
    291      1.62    dyoung 	struct sockaddr_in *sin;
    292      1.62    dyoung 	struct socket *so;
    293      1.62    dyoung 
    294      1.62    dyoung 	GRE_DPRINTF(sc, "%s: enter\n", __func__);
    295      1.62    dyoung 	rc = socreate(AF_INET, sop, SOCK_DGRAM, IPPROTO_UDP, l);
    296      1.62    dyoung 	if (rc != 0) {
    297      1.62    dyoung 		GRE_DPRINTF(sc, "%s: socreate failed\n", __func__);
    298      1.62    dyoung 		return rc;
    299      1.62    dyoung 	}
    300      1.62    dyoung 
    301      1.62    dyoung 	so = *sop;
    302      1.62    dyoung 
    303  1.88.2.3        ad 	gre_upcall_add(so, sc);
    304      1.62    dyoung 	if ((m = gre_getsockmbuf(so)) == NULL) {
    305      1.62    dyoung 		rc = ENOBUFS;
    306      1.62    dyoung 		goto out;
    307      1.62    dyoung 	}
    308      1.62    dyoung 	sin = mtod(m, struct sockaddr_in *);
    309      1.62    dyoung 	sin->sin_len = m->m_len = sizeof(struct sockaddr_in);
    310      1.62    dyoung 	sin->sin_family = AF_INET;
    311      1.62    dyoung 	sin->sin_addr = sc->g_src;
    312      1.62    dyoung 	sin->sin_port = sc->g_srcport;
    313      1.62    dyoung 
    314      1.62    dyoung 	GRE_DPRINTF(sc, "%s: bind 0x%08" PRIx32 " port %d\n", __func__,
    315      1.62    dyoung 	    sin->sin_addr.s_addr, ntohs(sin->sin_port));
    316      1.62    dyoung 	if ((rc = sobind(so, m, l)) != 0) {
    317      1.62    dyoung 		GRE_DPRINTF(sc, "%s: sobind failed\n", __func__);
    318      1.62    dyoung 		goto out;
    319      1.62    dyoung 	}
    320      1.62    dyoung 
    321      1.62    dyoung 	if (sc->g_srcport == 0) {
    322      1.69    dyoung 		if ((rc = gre_getsockname(so, m, l)) != 0) {
    323      1.62    dyoung 			GRE_DPRINTF(sc, "%s: gre_getsockname failed\n",
    324      1.62    dyoung 			    __func__);
    325      1.62    dyoung 			goto out;
    326      1.62    dyoung 		}
    327      1.62    dyoung 		sc->g_srcport = sin->sin_port;
    328      1.62    dyoung 	}
    329      1.62    dyoung 
    330      1.62    dyoung 	sin->sin_addr = sc->g_dst;
    331      1.62    dyoung 	sin->sin_port = sc->g_dstport;
    332      1.62    dyoung 
    333      1.68    dyoung 	if ((rc = soconnect(so, m, l)) != 0) {
    334      1.62    dyoung 		GRE_DPRINTF(sc, "%s: soconnect failed\n", __func__);
    335      1.62    dyoung 		goto out;
    336      1.62    dyoung 	}
    337      1.62    dyoung 
    338      1.62    dyoung 	*mtod(m, int *) = ip_gre_ttl;
    339      1.76    dyoung 	m->m_len = sizeof(int);
    340      1.62    dyoung 	rc = (*so->so_proto->pr_ctloutput)(PRCO_SETOPT, so, IPPROTO_IP, IP_TTL,
    341      1.62    dyoung 	    &m);
    342      1.62    dyoung 	m = NULL;
    343      1.62    dyoung 	if (rc != 0) {
    344      1.62    dyoung 		printf("%s: setopt ttl failed\n", __func__);
    345      1.62    dyoung 		rc = 0;
    346      1.62    dyoung 	}
    347      1.62    dyoung out:
    348      1.62    dyoung 	m_freem(m);
    349      1.62    dyoung 
    350      1.62    dyoung 	if (rc != 0)
    351      1.62    dyoung 		gre_sodestroy(sop);
    352      1.62    dyoung 	else
    353      1.63    dyoung 		*sp = sc->sc_soparm;
    354      1.62    dyoung 
    355      1.62    dyoung 	return rc;
    356      1.62    dyoung }
    357      1.62    dyoung 
    358      1.62    dyoung static void
    359      1.62    dyoung gre_thread1(struct gre_softc *sc, struct lwp *l)
    360      1.62    dyoung {
    361  1.88.2.5        ad 	int flags, rc;
    362      1.62    dyoung 	const struct gre_h *gh;
    363      1.62    dyoung 	struct ifnet *ifp = &sc->sc_if;
    364      1.62    dyoung 	struct mbuf *m;
    365      1.62    dyoung 	struct socket *so = NULL;
    366      1.62    dyoung 	struct uio uio;
    367      1.62    dyoung 	struct gre_soparm sp;
    368  1.88.2.5        ad 	struct file *fp = NULL;
    369      1.62    dyoung 
    370      1.62    dyoung 	GRE_DPRINTF(sc, "%s: enter\n", __func__);
    371  1.88.2.5        ad 	mutex_enter(&sc->sc_mtx);
    372      1.62    dyoung 
    373  1.88.2.5        ad 	sc->sc_haswork = 1;
    374      1.62    dyoung 
    375      1.62    dyoung 	memset(&sp, 0, sizeof(sp));
    376      1.62    dyoung 	memset(&uio, 0, sizeof(uio));
    377      1.62    dyoung 
    378      1.62    dyoung 	ifp->if_flags |= IFF_RUNNING;
    379      1.62    dyoung 
    380      1.62    dyoung 	for (;;) {
    381  1.88.2.5        ad 		while (sc->sc_haswork == 0) {
    382      1.62    dyoung 			GRE_DPRINTF(sc, "%s: sleeping\n", __func__);
    383  1.88.2.5        ad 			cv_wait(&sc->sc_work_cv, &sc->sc_mtx);
    384      1.62    dyoung 		}
    385  1.88.2.5        ad 		sc->sc_haswork = 0;
    386      1.62    dyoung 		GRE_DPRINTF(sc, "%s: awake\n", __func__);
    387      1.62    dyoung 		if ((ifp->if_flags & IFF_UP) != IFF_UP) {
    388      1.62    dyoung 			GRE_DPRINTF(sc, "%s: not up & running; exiting\n",
    389      1.62    dyoung 			    __func__);
    390      1.62    dyoung 			break;
    391      1.62    dyoung 		}
    392      1.75    dyoung 		if (sc->sc_proto != IPPROTO_UDP) {
    393      1.62    dyoung 			GRE_DPRINTF(sc, "%s: not udp; exiting\n", __func__);
    394      1.62    dyoung 			break;
    395      1.62    dyoung 		}
    396      1.62    dyoung 		/* XXX optimize */
    397  1.88.2.5        ad 		if (so == NULL || sc->sc_fp != NULL ||
    398  1.88.2.5        ad 		    memcmp(&sp, &sc->sc_soparm, sizeof(sp)) != 0) {
    399      1.62    dyoung 			GRE_DPRINTF(sc, "%s: parameters changed\n", __func__);
    400      1.62    dyoung 
    401  1.88.2.5        ad 			if (fp != NULL) {
    402  1.88.2.5        ad 				gre_closef(&fp, curlwp);
    403      1.62    dyoung 				so = NULL;
    404      1.62    dyoung 			} else if (so != NULL)
    405      1.62    dyoung 				gre_sodestroy(&so);
    406      1.62    dyoung 
    407      1.62    dyoung 			if (sc->sc_fp != NULL) {
    408  1.88.2.5        ad 				fp = sc->sc_fp;
    409  1.88.2.5        ad 				sc->sc_fp = NULL;
    410  1.88.2.5        ad 				so = (struct socket *)fp->f_data;
    411  1.88.2.3        ad 				gre_upcall_add(so, sc);
    412      1.63    dyoung 				sp = sc->sc_soparm;
    413      1.62    dyoung 			} else if (gre_socreate1(sc, l, &sp, &so) != 0)
    414      1.62    dyoung 				goto out;
    415      1.62    dyoung 		}
    416  1.88.2.5        ad 		cv_signal(&sc->sc_soparm_cv);
    417      1.62    dyoung 		for (;;) {
    418      1.62    dyoung 			flags = MSG_DONTWAIT;
    419      1.62    dyoung 			uio.uio_resid = 1000000;
    420      1.62    dyoung 			rc = (*so->so_receive)(so, NULL, &uio, &m, NULL,
    421      1.62    dyoung 			    &flags);
    422      1.62    dyoung 			/* TBD Back off if ECONNREFUSED (indicates
    423      1.62    dyoung 			 * ICMP Port Unreachable)?
    424      1.62    dyoung 			 */
    425      1.62    dyoung 			if (rc == EWOULDBLOCK) {
    426      1.62    dyoung 				GRE_DPRINTF(sc, "%s: so_receive EWOULDBLOCK\n",
    427      1.62    dyoung 				    __func__);
    428      1.62    dyoung 				break;
    429      1.62    dyoung 			} else if (rc != 0 || m == NULL) {
    430      1.62    dyoung 				GRE_DPRINTF(sc, "%s: rc %d m %p\n",
    431      1.62    dyoung 				    ifp->if_xname, rc, (void *)m);
    432      1.62    dyoung 				continue;
    433      1.62    dyoung 			} else
    434      1.62    dyoung 				GRE_DPRINTF(sc, "%s: so_receive ok\n",
    435      1.62    dyoung 				    __func__);
    436      1.62    dyoung 			if (m->m_len < sizeof(*gh) &&
    437      1.62    dyoung 			    (m = m_pullup(m, sizeof(*gh))) == NULL) {
    438      1.62    dyoung 				GRE_DPRINTF(sc, "%s: m_pullup failed\n",
    439      1.62    dyoung 				    __func__);
    440      1.62    dyoung 				continue;
    441      1.62    dyoung 			}
    442      1.62    dyoung 			gh = mtod(m, const struct gre_h *);
    443      1.62    dyoung 
    444  1.88.2.5        ad 			if (gre_input3(sc, m, 0, gh, 1) == 0) {
    445      1.62    dyoung 				GRE_DPRINTF(sc, "%s: dropping unsupported\n",
    446      1.62    dyoung 				    __func__);
    447      1.62    dyoung 				m_freem(m);
    448      1.62    dyoung 			}
    449      1.62    dyoung 		}
    450      1.62    dyoung 		for (;;) {
    451      1.62    dyoung 			IF_DEQUEUE(&sc->sc_snd, m);
    452      1.62    dyoung 			if (m == NULL)
    453      1.62    dyoung 				break;
    454      1.62    dyoung 			GRE_DPRINTF(sc, "%s: dequeue\n", __func__);
    455      1.62    dyoung 			if ((so->so_state & SS_ISCONNECTED) == 0) {
    456      1.62    dyoung 				GRE_DPRINTF(sc, "%s: not connected\n",
    457      1.62    dyoung 				    __func__);
    458      1.62    dyoung 				m_freem(m);
    459      1.62    dyoung 				continue;
    460      1.62    dyoung 			}
    461      1.62    dyoung 			rc = (*so->so_send)(so, NULL, NULL, m, NULL, 0, l);
    462      1.62    dyoung 			/* XXX handle ENOBUFS? */
    463      1.62    dyoung 			if (rc != 0)
    464      1.62    dyoung 				GRE_DPRINTF(sc, "%s: so_send failed\n",
    465      1.62    dyoung 				    __func__);
    466      1.62    dyoung 		}
    467      1.62    dyoung 	}
    468  1.88.2.5        ad 	if (fp != NULL) {
    469      1.62    dyoung 		GRE_DPRINTF(sc, "%s: removing upcall\n", __func__);
    470      1.62    dyoung 		gre_upcall_remove(so);
    471      1.66    dyoung 	} else if (so != NULL)
    472      1.62    dyoung 		gre_sodestroy(&so);
    473      1.62    dyoung out:
    474      1.62    dyoung 	GRE_DPRINTF(sc, "%s: stopping\n", __func__);
    475  1.88.2.5        ad 	if (fp != NULL)
    476  1.88.2.5        ad 		gre_closef(&fp, curlwp);
    477      1.75    dyoung 	if (sc->sc_proto == IPPROTO_UDP)
    478      1.62    dyoung 		ifp->if_flags &= ~IFF_RUNNING;
    479      1.64    dyoung 	while (!IF_IS_EMPTY(&sc->sc_snd)) {
    480      1.64    dyoung 		IF_DEQUEUE(&sc->sc_snd, m);
    481      1.64    dyoung 		m_freem(m);
    482      1.64    dyoung 	}
    483  1.88.2.5        ad 	gre_stop(sc);
    484      1.62    dyoung 	/* must not touch sc after this! */
    485      1.62    dyoung 	GRE_DPRINTF(sc, "%s: restore ipl\n", __func__);
    486  1.88.2.5        ad 	mutex_exit(&sc->sc_mtx);
    487      1.62    dyoung }
    488      1.62    dyoung 
    489      1.62    dyoung static void
    490      1.62    dyoung gre_thread(void *arg)
    491      1.62    dyoung {
    492      1.62    dyoung 	struct gre_softc *sc = (struct gre_softc *)arg;
    493      1.62    dyoung 
    494      1.62    dyoung 	gre_thread1(sc, curlwp);
    495      1.62    dyoung 	/* must not touch sc after this! */
    496      1.62    dyoung 	kthread_exit(0);
    497      1.62    dyoung }
    498      1.62    dyoung 
    499  1.88.2.5        ad /* Calling thread must hold sc->sc_mtx. */
    500      1.62    dyoung int
    501  1.88.2.3        ad gre_input3(struct gre_softc *sc, struct mbuf *m, int hlen,
    502  1.88.2.5        ad     const struct gre_h *gh, int mtx_held)
    503      1.62    dyoung {
    504      1.62    dyoung 	u_int16_t flags;
    505      1.62    dyoung #if NBPFILTER > 0
    506      1.62    dyoung 	u_int32_t af = AF_INET;		/* af passed to BPF tap */
    507      1.62    dyoung #endif
    508  1.88.2.5        ad 	int isr;
    509      1.62    dyoung 	struct ifqueue *ifq;
    510      1.62    dyoung 
    511      1.62    dyoung 	sc->sc_if.if_ipackets++;
    512      1.62    dyoung 	sc->sc_if.if_ibytes += m->m_pkthdr.len;
    513      1.62    dyoung 
    514  1.88.2.3        ad 	hlen += sizeof(struct gre_h);
    515      1.62    dyoung 
    516  1.88.2.3        ad 	/* process GRE flags as packet can be of variable len */
    517  1.88.2.3        ad 	flags = ntohs(gh->flags);
    518      1.62    dyoung 
    519  1.88.2.3        ad 	/* Checksum & Offset are present */
    520  1.88.2.3        ad 	if ((flags & GRE_CP) | (flags & GRE_RP))
    521  1.88.2.3        ad 		hlen += 4;
    522  1.88.2.3        ad 	/* We don't support routing fields (variable length) */
    523  1.88.2.3        ad 	if (flags & GRE_RP) {
    524  1.88.2.3        ad 		sc->sc_if.if_ierrors++;
    525  1.88.2.3        ad 		return 0;
    526  1.88.2.3        ad 	}
    527  1.88.2.3        ad 	if (flags & GRE_KP)
    528  1.88.2.3        ad 		hlen += 4;
    529  1.88.2.3        ad 	if (flags & GRE_SP)
    530  1.88.2.3        ad 		hlen += 4;
    531  1.88.2.3        ad 
    532  1.88.2.3        ad 	switch (ntohs(gh->ptype)) { /* ethertypes */
    533  1.88.2.3        ad 	case ETHERTYPE_IP: /* shouldn't need a schednetisr(), as */
    534  1.88.2.3        ad 		ifq = &ipintrq;          /* we are in ip_input */
    535  1.88.2.3        ad 		isr = NETISR_IP;
    536  1.88.2.3        ad 		break;
    537      1.62    dyoung #ifdef NETATALK
    538  1.88.2.3        ad 	case ETHERTYPE_ATALK:
    539  1.88.2.3        ad 		ifq = &atintrq1;
    540  1.88.2.3        ad 		isr = NETISR_ATALK;
    541      1.62    dyoung #if NBPFILTER > 0
    542  1.88.2.3        ad 		af = AF_APPLETALK;
    543      1.62    dyoung #endif
    544  1.88.2.3        ad 		break;
    545      1.62    dyoung #endif
    546      1.62    dyoung #ifdef INET6
    547  1.88.2.3        ad 	case ETHERTYPE_IPV6:
    548  1.88.2.3        ad 		GRE_DPRINTF(sc, "%s: IPv6 packet\n", __func__);
    549  1.88.2.3        ad 		ifq = &ip6intrq;
    550  1.88.2.3        ad 		isr = NETISR_IPV6;
    551      1.62    dyoung #if NBPFILTER > 0
    552  1.88.2.3        ad 		af = AF_INET6;
    553      1.62    dyoung #endif
    554      1.62    dyoung 		break;
    555  1.88.2.3        ad #endif
    556  1.88.2.3        ad 	default:	   /* others not yet supported */
    557  1.88.2.3        ad 		GRE_DPRINTF(sc, "%s: unhandled ethertype 0x%04x\n", __func__,
    558  1.88.2.3        ad 		    ntohs(gh->ptype));
    559  1.88.2.3        ad 		sc->sc_if.if_noproto++;
    560      1.87    dyoung 		return 0;
    561      1.62    dyoung 	}
    562      1.62    dyoung 
    563      1.62    dyoung 	if (hlen > m->m_pkthdr.len) {
    564      1.62    dyoung 		m_freem(m);
    565      1.62    dyoung 		sc->sc_if.if_ierrors++;
    566      1.87    dyoung 		return EINVAL;
    567      1.62    dyoung 	}
    568      1.62    dyoung 	m_adj(m, hlen);
    569      1.62    dyoung 
    570      1.62    dyoung #if NBPFILTER > 0
    571      1.62    dyoung 	if (sc->sc_if.if_bpf != NULL)
    572      1.62    dyoung 		bpf_mtap_af(sc->sc_if.if_bpf, af, m);
    573      1.62    dyoung #endif /*NBPFILTER > 0*/
    574      1.62    dyoung 
    575      1.62    dyoung 	m->m_pkthdr.rcvif = &sc->sc_if;
    576      1.62    dyoung 
    577  1.88.2.5        ad 	if (!mtx_held)
    578  1.88.2.5        ad 		mutex_enter(&sc->sc_mtx);
    579      1.62    dyoung 	if (IF_QFULL(ifq)) {
    580      1.62    dyoung 		IF_DROP(ifq);
    581      1.62    dyoung 		m_freem(m);
    582      1.62    dyoung 	} else {
    583      1.62    dyoung 		IF_ENQUEUE(ifq, m);
    584      1.62    dyoung 	}
    585      1.62    dyoung 	/* we need schednetisr since the address family may change */
    586      1.62    dyoung 	schednetisr(isr);
    587  1.88.2.5        ad 	if (!mtx_held)
    588  1.88.2.5        ad 		mutex_exit(&sc->sc_mtx);
    589      1.62    dyoung 
    590      1.87    dyoung 	return 1;	/* packet is done, no further processing needed */
    591      1.62    dyoung }
    592      1.62    dyoung 
    593      1.20    itojun /*
    594       1.1       hwr  * The output routine. Takes a packet and encapsulates it in the protocol
    595      1.75    dyoung  * given by sc->sc_proto. See also RFC 1701 and RFC 2004
    596       1.1       hwr  */
    597      1.59   thorpej static int
    598      1.84    dyoung gre_output(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst,
    599      1.74  christos 	   struct rtentry *rt)
    600       1.1       hwr {
    601  1.88.2.3        ad 	int error = 0, hlen, msiz;
    602      1.10   thorpej 	struct gre_softc *sc = ifp->if_softc;
    603      1.62    dyoung 	struct greip *gi;
    604      1.62    dyoung 	struct gre_h *gh;
    605      1.62    dyoung 	struct ip *eip, *ip;
    606      1.56        is 	u_int8_t ip_tos = 0;
    607      1.48    itojun 	u_int16_t etype = 0;
    608      1.20    itojun 	struct mobile_h mob_h;
    609      1.24    martin 
    610      1.39    itojun 	if ((ifp->if_flags & (IFF_UP | IFF_RUNNING)) == 0 ||
    611      1.37    itojun 	    sc->g_src.s_addr == INADDR_ANY || sc->g_dst.s_addr == INADDR_ANY) {
    612      1.37    itojun 		m_freem(m);
    613      1.38    itojun 		error = ENETDOWN;
    614      1.38    itojun 		goto end;
    615      1.37    itojun 	}
    616       1.1       hwr 
    617      1.62    dyoung 	gi = NULL;
    618      1.41    itojun 	ip = NULL;
    619       1.1       hwr 
    620       1.1       hwr #if NBPFILTER >0
    621      1.52  christos 	if (ifp->if_bpf)
    622      1.52  christos 		bpf_mtap_af(ifp->if_bpf, dst->sa_family, m);
    623       1.1       hwr #endif
    624       1.1       hwr 
    625      1.26    martin 	m->m_flags &= ~(M_BCAST|M_MCAST);
    626       1.1       hwr 
    627      1.75    dyoung 	switch (sc->sc_proto) {
    628      1.62    dyoung 	case IPPROTO_MOBILE:
    629  1.88.2.3        ad 		if (dst->sa_family != AF_INET) {
    630       1.3       hwr 			IF_DROP(&ifp->if_snd);
    631       1.3       hwr 			m_freem(m);
    632      1.38    itojun 			error = EINVAL;
    633      1.38    itojun 			goto end;
    634       1.3       hwr 		}
    635  1.88.2.3        ad 
    636  1.88.2.3        ad 		if (M_UNWRITABLE(m, sizeof(*ip)) &&
    637  1.88.2.3        ad 		    (m = m_pullup(m, sizeof(*ip))) == NULL) {
    638  1.88.2.3        ad 			error = ENOBUFS;
    639  1.88.2.3        ad 			goto end;
    640  1.88.2.3        ad 		}
    641  1.88.2.3        ad 		ip = mtod(m, struct ip *);
    642  1.88.2.3        ad 
    643  1.88.2.3        ad 		memset(&mob_h, 0, MOB_H_SIZ_L);
    644  1.88.2.3        ad 		mob_h.proto = (ip->ip_p) << 8;
    645  1.88.2.3        ad 		mob_h.odst = ip->ip_dst.s_addr;
    646  1.88.2.3        ad 		ip->ip_dst.s_addr = sc->g_dst.s_addr;
    647  1.88.2.3        ad 
    648  1.88.2.3        ad 		/*
    649  1.88.2.3        ad 		 * If the packet comes from our host, we only change
    650  1.88.2.3        ad 		 * the destination address in the IP header.
    651  1.88.2.3        ad 		 * Else we also need to save and change the source
    652  1.88.2.3        ad 		 */
    653  1.88.2.3        ad 		if (in_hosteq(ip->ip_src, sc->g_src)) {
    654  1.88.2.3        ad 			msiz = MOB_H_SIZ_S;
    655  1.88.2.3        ad 		} else {
    656  1.88.2.3        ad 			mob_h.proto |= MOB_H_SBIT;
    657  1.88.2.3        ad 			mob_h.osrc = ip->ip_src.s_addr;
    658  1.88.2.3        ad 			ip->ip_src.s_addr = sc->g_src.s_addr;
    659  1.88.2.3        ad 			msiz = MOB_H_SIZ_L;
    660  1.88.2.3        ad 		}
    661  1.88.2.3        ad 		HTONS(mob_h.proto);
    662  1.88.2.3        ad 		mob_h.hcrc = gre_in_cksum((u_int16_t *)&mob_h, msiz);
    663  1.88.2.3        ad 
    664  1.88.2.3        ad 		M_PREPEND(m, msiz, M_DONTWAIT);
    665  1.88.2.3        ad 		if (m == NULL) {
    666  1.88.2.3        ad 			error = ENOBUFS;
    667  1.88.2.3        ad 			goto end;
    668  1.88.2.3        ad 		}
    669  1.88.2.3        ad 		/* XXX Assuming that ip does not dangle after
    670  1.88.2.3        ad 		 * M_PREPEND.  In practice, that's true, but
    671  1.88.2.3        ad 		 * that's not in M_PREPEND's contract.
    672  1.88.2.3        ad 		 */
    673  1.88.2.3        ad 		memmove(mtod(m, void *), ip, sizeof(*ip));
    674  1.88.2.3        ad 		ip = mtod(m, struct ip *);
    675  1.88.2.3        ad 		memcpy(ip + 1, &mob_h, (size_t)msiz);
    676  1.88.2.3        ad 		ip->ip_len = htons(ntohs(ip->ip_len) + msiz);
    677      1.62    dyoung 		break;
    678      1.62    dyoung 	case IPPROTO_UDP:
    679      1.62    dyoung 	case IPPROTO_GRE:
    680      1.62    dyoung 		GRE_DPRINTF(sc, "%s: dst->sa_family=%d\n", __func__,
    681      1.62    dyoung 		    dst->sa_family);
    682      1.20    itojun 		switch (dst->sa_family) {
    683       1.1       hwr 		case AF_INET:
    684      1.41    itojun 			ip = mtod(m, struct ip *);
    685      1.56        is 			ip_tos = ip->ip_tos;
    686       1.8  explorer 			etype = ETHERTYPE_IP;
    687       1.1       hwr 			break;
    688       1.1       hwr #ifdef NETATALK
    689       1.1       hwr 		case AF_APPLETALK:
    690       1.8  explorer 			etype = ETHERTYPE_ATALK;
    691       1.1       hwr 			break;
    692       1.1       hwr #endif
    693      1.56        is #ifdef INET6
    694      1.56        is 		case AF_INET6:
    695      1.56        is 			etype = ETHERTYPE_IPV6;
    696      1.56        is 			break;
    697      1.56        is #endif
    698       1.1       hwr 		default:
    699       1.1       hwr 			IF_DROP(&ifp->if_snd);
    700       1.1       hwr 			m_freem(m);
    701      1.38    itojun 			error = EAFNOSUPPORT;
    702      1.38    itojun 			goto end;
    703       1.1       hwr 		}
    704      1.62    dyoung 		break;
    705      1.62    dyoung 	default:
    706       1.1       hwr 		IF_DROP(&ifp->if_snd);
    707       1.1       hwr 		m_freem(m);
    708      1.38    itojun 		error = EINVAL;
    709      1.38    itojun 		goto end;
    710       1.1       hwr 	}
    711       1.1       hwr 
    712      1.75    dyoung 	switch (sc->sc_proto) {
    713      1.62    dyoung 	case IPPROTO_GRE:
    714      1.62    dyoung 		hlen = sizeof(struct greip);
    715      1.62    dyoung 		break;
    716      1.62    dyoung 	case IPPROTO_UDP:
    717      1.62    dyoung 		hlen = sizeof(struct gre_h);
    718      1.62    dyoung 		break;
    719      1.62    dyoung 	default:
    720      1.62    dyoung 		hlen = 0;
    721      1.62    dyoung 		break;
    722      1.62    dyoung 	}
    723      1.62    dyoung 
    724      1.62    dyoung 	M_PREPEND(m, hlen, M_DONTWAIT);
    725      1.62    dyoung 
    726      1.62    dyoung 	if (m == NULL) {
    727       1.1       hwr 		IF_DROP(&ifp->if_snd);
    728      1.38    itojun 		error = ENOBUFS;
    729      1.38    itojun 		goto end;
    730       1.1       hwr 	}
    731       1.1       hwr 
    732      1.75    dyoung 	switch (sc->sc_proto) {
    733      1.62    dyoung 	case IPPROTO_UDP:
    734      1.62    dyoung 		gh = mtod(m, struct gre_h *);
    735      1.62    dyoung 		memset(gh, 0, sizeof(*gh));
    736      1.62    dyoung 		gh->ptype = htons(etype);
    737      1.62    dyoung 		/* XXX Need to handle IP ToS.  Look at how I handle IP TTL. */
    738      1.62    dyoung 		break;
    739      1.62    dyoung 	case IPPROTO_GRE:
    740      1.62    dyoung 		gi = mtod(m, struct greip *);
    741      1.62    dyoung 		gh = &gi->gi_g;
    742      1.62    dyoung 		eip = &gi->gi_i;
    743       1.1       hwr 		/* we don't have any GRE flags for now */
    744      1.62    dyoung 		memset(gh, 0, sizeof(*gh));
    745      1.62    dyoung 		gh->ptype = htons(etype);
    746      1.62    dyoung 		eip->ip_src = sc->g_src;
    747      1.62    dyoung 		eip->ip_dst = sc->g_dst;
    748      1.62    dyoung 		eip->ip_hl = (sizeof(struct ip)) >> 2;
    749      1.62    dyoung 		eip->ip_ttl = ip_gre_ttl;
    750      1.62    dyoung 		eip->ip_tos = ip_tos;
    751      1.62    dyoung 		eip->ip_len = htons(m->m_pkthdr.len);
    752      1.75    dyoung 		eip->ip_p = sc->sc_proto;
    753      1.62    dyoung 		break;
    754      1.62    dyoung 	case IPPROTO_MOBILE:
    755      1.62    dyoung 		eip = mtod(m, struct ip *);
    756      1.75    dyoung 		eip->ip_p = sc->sc_proto;
    757      1.62    dyoung 		break;
    758      1.62    dyoung 	default:
    759      1.62    dyoung 		error = EPROTONOSUPPORT;
    760      1.62    dyoung 		m_freem(m);
    761      1.62    dyoung 		goto end;
    762       1.3       hwr 	}
    763       1.1       hwr 
    764       1.1       hwr 	ifp->if_opackets++;
    765       1.8  explorer 	ifp->if_obytes += m->m_pkthdr.len;
    766      1.62    dyoung 
    767       1.1       hwr 	/* send it off */
    768      1.75    dyoung 	if (sc->sc_proto == IPPROTO_UDP) {
    769      1.62    dyoung 		if (IF_QFULL(&sc->sc_snd)) {
    770      1.62    dyoung 			IF_DROP(&sc->sc_snd);
    771      1.62    dyoung 			error = ENOBUFS;
    772      1.62    dyoung 			m_freem(m);
    773      1.62    dyoung 		} else {
    774      1.62    dyoung 			IF_ENQUEUE(&sc->sc_snd, m);
    775      1.62    dyoung 			gre_wakeup(sc);
    776      1.62    dyoung 			error = 0;
    777      1.62    dyoung 		}
    778      1.81     joerg 		goto end;
    779      1.81     joerg 	}
    780      1.86    dyoung 	if (sc->route.ro_rt == NULL)
    781      1.86    dyoung 		rtcache_init(&sc->route);
    782      1.86    dyoung 	else
    783      1.86    dyoung 		rtcache_check(&sc->route);
    784  1.88.2.5        ad 	if (sc->route.ro_rt == NULL) {
    785  1.88.2.5        ad 		m_freem(m);
    786      1.81     joerg 		goto end;
    787  1.88.2.5        ad 	}
    788  1.88.2.5        ad 	if (sc->route.ro_rt->rt_ifp->if_softc == sc) {
    789  1.88.2.5        ad 		rtcache_clear(&sc->route);
    790  1.88.2.5        ad 		m_freem(m);
    791  1.88.2.5        ad 	} else
    792  1.88.2.5        ad 		error = ip_output(m, NULL, &sc->route, 0, NULL, NULL);
    793      1.38    itojun   end:
    794       1.8  explorer 	if (error)
    795       1.1       hwr 		ifp->if_oerrors++;
    796      1.87    dyoung 	return error;
    797       1.1       hwr }
    798       1.1       hwr 
    799  1.88.2.5        ad /* Calling thread must hold sc->sc_mtx. */
    800      1.62    dyoung static int
    801      1.62    dyoung gre_kick(struct gre_softc *sc)
    802      1.62    dyoung {
    803      1.62    dyoung 	int rc;
    804      1.62    dyoung 	struct ifnet *ifp = &sc->sc_if;
    805      1.62    dyoung 
    806      1.75    dyoung 	if (sc->sc_proto == IPPROTO_UDP && (ifp->if_flags & IFF_UP) == IFF_UP &&
    807  1.88.2.5        ad 	    !sc->sc_running) {
    808  1.88.2.5        ad 		sc->sc_running = 1;
    809  1.88.2.5        ad 		rc = kthread_create(PRI_NONE, 0, NULL, gre_thread, sc,
    810  1.88.2.1        ad 		    NULL, ifp->if_xname);
    811      1.62    dyoung 		if (rc != 0)
    812  1.88.2.5        ad 			gre_stop(sc);
    813      1.62    dyoung 		return rc;
    814      1.62    dyoung 	} else {
    815      1.62    dyoung 		gre_wakeup(sc);
    816      1.62    dyoung 		return 0;
    817      1.62    dyoung 	}
    818      1.62    dyoung }
    819      1.62    dyoung 
    820  1.88.2.5        ad /* Calling thread must hold sc->sc_mtx. */
    821      1.62    dyoung static int
    822      1.62    dyoung gre_getname(struct socket *so, int req, struct mbuf *nam, struct lwp *l)
    823      1.62    dyoung {
    824  1.88.2.5        ad 	return (*so->so_proto->pr_usrreq)(so, req, NULL, nam, NULL, l);
    825      1.62    dyoung }
    826      1.62    dyoung 
    827  1.88.2.5        ad /* Calling thread must hold sc->sc_mtx. */
    828      1.62    dyoung static int
    829      1.62    dyoung gre_getsockname(struct socket *so, struct mbuf *nam, struct lwp *l)
    830      1.62    dyoung {
    831      1.62    dyoung 	return gre_getname(so, PRU_SOCKADDR, nam, l);
    832      1.62    dyoung }
    833      1.62    dyoung 
    834  1.88.2.5        ad /* Calling thread must hold sc->sc_mtx. */
    835      1.62    dyoung static int
    836      1.62    dyoung gre_getpeername(struct socket *so, struct mbuf *nam, struct lwp *l)
    837      1.62    dyoung {
    838      1.62    dyoung 	return gre_getname(so, PRU_PEERADDR, nam, l);
    839      1.62    dyoung }
    840      1.62    dyoung 
    841  1.88.2.5        ad /* Calling thread must hold sc->sc_mtx. */
    842      1.62    dyoung static int
    843      1.62    dyoung gre_getnames(struct socket *so, struct lwp *l, struct sockaddr_in *src,
    844      1.62    dyoung     struct sockaddr_in *dst)
    845      1.62    dyoung {
    846      1.62    dyoung 	struct mbuf *m;
    847      1.62    dyoung 	struct sockaddr_in *sin;
    848      1.62    dyoung 	int rc;
    849      1.62    dyoung 
    850      1.62    dyoung 	if ((m = gre_getsockmbuf(so)) == NULL)
    851      1.62    dyoung 		return ENOBUFS;
    852      1.62    dyoung 
    853      1.62    dyoung 	sin = mtod(m, struct sockaddr_in *);
    854      1.62    dyoung 
    855      1.62    dyoung 	if ((rc = gre_getsockname(so, m, l)) != 0)
    856      1.62    dyoung 		goto out;
    857      1.62    dyoung 	if (sin->sin_family != AF_INET) {
    858      1.62    dyoung 		rc = EAFNOSUPPORT;
    859      1.62    dyoung 		goto out;
    860      1.62    dyoung 	}
    861      1.62    dyoung 	*src = *sin;
    862      1.62    dyoung 
    863      1.62    dyoung 	if ((rc = gre_getpeername(so, m, l)) != 0)
    864      1.62    dyoung 		goto out;
    865      1.62    dyoung 	if (sin->sin_family != AF_INET) {
    866      1.62    dyoung 		rc = EAFNOSUPPORT;
    867      1.62    dyoung 		goto out;
    868      1.62    dyoung 	}
    869      1.62    dyoung 	*dst = *sin;
    870      1.62    dyoung 
    871      1.62    dyoung out:
    872      1.62    dyoung 	m_freem(m);
    873      1.62    dyoung 	return rc;
    874      1.62    dyoung }
    875      1.62    dyoung 
    876  1.88.2.5        ad static void
    877  1.88.2.5        ad gre_closef(struct file **fpp, struct lwp *l)
    878  1.88.2.5        ad {
    879  1.88.2.5        ad 	struct file *fp = *fpp;
    880  1.88.2.5        ad 
    881  1.88.2.5        ad 	simple_lock(&fp->f_slock);
    882  1.88.2.5        ad 	FILE_USE(fp);
    883  1.88.2.5        ad 	closef(fp, l);
    884  1.88.2.5        ad 	*fpp = NULL;
    885  1.88.2.5        ad }
    886  1.88.2.5        ad 
    887      1.59   thorpej static int
    888      1.88  christos gre_ioctl(struct ifnet *ifp, u_long cmd, void *data)
    889       1.1       hwr {
    890      1.62    dyoung 	u_char oproto;
    891  1.88.2.5        ad 	struct file *fp;
    892      1.62    dyoung 	struct socket *so;
    893      1.62    dyoung 	struct sockaddr_in dst, src;
    894      1.62    dyoung 	struct proc *p = curproc;	/* XXX */
    895      1.61        ad 	struct lwp *l = curlwp;	/* XXX */
    896       1.8  explorer 	struct ifreq *ifr = (struct ifreq *)data;
    897      1.28    itojun 	struct if_laddrreq *lifr = (struct if_laddrreq *)data;
    898       1.8  explorer 	struct gre_softc *sc = ifp->if_softc;
    899       1.1       hwr 	struct sockaddr_in si;
    900       1.8  explorer 	struct sockaddr *sa = NULL;
    901      1.80  christos 	int error = 0;
    902       1.1       hwr 
    903      1.61        ad 	switch (cmd) {
    904      1.61        ad 	case SIOCSIFFLAGS:
    905      1.61        ad 	case SIOCSIFMTU:
    906      1.61        ad 	case GRESPROTO:
    907      1.61        ad 	case GRESADDRD:
    908      1.61        ad 	case GRESADDRS:
    909      1.62    dyoung 	case GRESSOCK:
    910      1.62    dyoung 	case GREDSOCK:
    911      1.61        ad 	case SIOCSLIFPHYADDR:
    912      1.61        ad 	case SIOCDIFPHYADDR:
    913      1.70      elad 		if (kauth_authorize_network(l->l_cred, KAUTH_NETWORK_INTERFACE,
    914      1.70      elad 		    KAUTH_REQ_NETWORK_INTERFACE_SETPRIV, ifp, (void *)cmd,
    915      1.70      elad 		    NULL) != 0)
    916      1.87    dyoung 			return EPERM;
    917      1.61        ad 		break;
    918      1.61        ad 	default:
    919      1.61        ad 		break;
    920      1.61        ad 	}
    921       1.1       hwr 
    922  1.88.2.5        ad 	mutex_enter(&sc->sc_mtx);
    923      1.20    itojun 	switch (cmd) {
    924      1.20    itojun 	case SIOCSIFADDR:
    925      1.36    itojun 		ifp->if_flags |= IFF_UP;
    926      1.78    dyoung 		if ((error = gre_kick(sc)) != 0)
    927      1.78    dyoung 			ifp->if_flags &= ~IFF_UP;
    928      1.36    itojun 		break;
    929      1.55     perry 	case SIOCSIFDSTADDR:
    930       1.1       hwr 		break;
    931       1.1       hwr 	case SIOCSIFFLAGS:
    932      1.75    dyoung 		oproto = sc->sc_proto;
    933      1.62    dyoung 		switch (ifr->ifr_flags & (IFF_LINK0|IFF_LINK2)) {
    934      1.62    dyoung 		case IFF_LINK0|IFF_LINK2:
    935      1.75    dyoung 			sc->sc_proto = IPPROTO_UDP;
    936      1.62    dyoung 			if (oproto != IPPROTO_UDP)
    937      1.62    dyoung 				ifp->if_flags &= ~IFF_RUNNING;
    938      1.62    dyoung 			error = gre_kick(sc);
    939      1.62    dyoung 			break;
    940      1.62    dyoung 		case IFF_LINK0:
    941      1.75    dyoung 			sc->sc_proto = IPPROTO_GRE;
    942      1.62    dyoung 			gre_wakeup(sc);
    943      1.62    dyoung 			goto recompute;
    944      1.62    dyoung 		case 0:
    945      1.75    dyoung 			sc->sc_proto = IPPROTO_MOBILE;
    946      1.62    dyoung 			gre_wakeup(sc);
    947      1.62    dyoung 			goto recompute;
    948      1.62    dyoung 		}
    949       1.1       hwr 		break;
    950      1.20    itojun 	case SIOCSIFMTU:
    951      1.27    martin 		if (ifr->ifr_mtu < 576) {
    952       1.1       hwr 			error = EINVAL;
    953       1.1       hwr 			break;
    954       1.1       hwr 		}
    955       1.1       hwr 		ifp->if_mtu = ifr->ifr_mtu;
    956       1.1       hwr 		break;
    957       1.1       hwr 	case SIOCGIFMTU:
    958       1.1       hwr 		ifr->ifr_mtu = sc->sc_if.if_mtu;
    959       1.1       hwr 		break;
    960       1.1       hwr 	case SIOCADDMULTI:
    961       1.1       hwr 	case SIOCDELMULTI:
    962       1.8  explorer 		if (ifr == 0) {
    963       1.1       hwr 			error = EAFNOSUPPORT;
    964       1.1       hwr 			break;
    965       1.1       hwr 		}
    966       1.8  explorer 		switch (ifr->ifr_addr.sa_family) {
    967       1.1       hwr #ifdef INET
    968       1.1       hwr 		case AF_INET:
    969       1.1       hwr 			break;
    970       1.1       hwr #endif
    971      1.56        is #ifdef INET6
    972      1.56        is 		case AF_INET6:
    973      1.56        is 			break;
    974      1.56        is #endif
    975       1.1       hwr 		default:
    976       1.1       hwr 			error = EAFNOSUPPORT;
    977       1.1       hwr 			break;
    978       1.1       hwr 		}
    979       1.1       hwr 		break;
    980       1.1       hwr 	case GRESPROTO:
    981      1.75    dyoung 		oproto = sc->sc_proto;
    982      1.75    dyoung 		sc->sc_proto = ifr->ifr_flags;
    983      1.75    dyoung 		switch (sc->sc_proto) {
    984      1.62    dyoung 		case IPPROTO_UDP:
    985      1.62    dyoung 			ifp->if_flags |= IFF_LINK0|IFF_LINK2;
    986      1.62    dyoung 			if (oproto != IPPROTO_UDP)
    987      1.62    dyoung 				ifp->if_flags &= ~IFF_RUNNING;
    988      1.62    dyoung 			error = gre_kick(sc);
    989      1.62    dyoung 			break;
    990      1.40    itojun 		case IPPROTO_GRE:
    991       1.3       hwr 			ifp->if_flags |= IFF_LINK0;
    992      1.62    dyoung 			ifp->if_flags &= ~IFF_LINK2;
    993      1.62    dyoung 			goto recompute;
    994      1.40    itojun 		case IPPROTO_MOBILE:
    995      1.62    dyoung 			ifp->if_flags &= ~(IFF_LINK0|IFF_LINK2);
    996      1.62    dyoung 			goto recompute;
    997       1.1       hwr 		default:
    998      1.40    itojun 			error = EPROTONOSUPPORT;
    999      1.35    itojun 			break;
   1000       1.1       hwr 		}
   1001       1.1       hwr 		break;
   1002       1.1       hwr 	case GREGPROTO:
   1003      1.75    dyoung 		ifr->ifr_flags = sc->sc_proto;
   1004       1.1       hwr 		break;
   1005       1.1       hwr 	case GRESADDRS:
   1006       1.1       hwr 	case GRESADDRD:
   1007       1.1       hwr 		/*
   1008      1.20    itojun 		 * set tunnel endpoints, compute a less specific route
   1009      1.20    itojun 		 * to the remote end and mark if as up
   1010      1.20    itojun 		 */
   1011       1.1       hwr 		sa = &ifr->ifr_addr;
   1012      1.62    dyoung 		if (cmd == GRESADDRS) {
   1013       1.1       hwr 			sc->g_src = (satosin(sa))->sin_addr;
   1014      1.62    dyoung 			sc->g_srcport = satosin(sa)->sin_port;
   1015      1.62    dyoung 		}
   1016      1.62    dyoung 		if (cmd == GRESADDRD) {
   1017      1.75    dyoung 			if (sc->sc_proto == IPPROTO_UDP &&
   1018      1.62    dyoung 			    satosin(sa)->sin_port == 0) {
   1019      1.62    dyoung 				error = EINVAL;
   1020      1.62    dyoung 				break;
   1021      1.62    dyoung 			}
   1022       1.1       hwr 			sc->g_dst = (satosin(sa))->sin_addr;
   1023      1.62    dyoung 			sc->g_dstport = satosin(sa)->sin_port;
   1024      1.62    dyoung 		}
   1025      1.30    itojun 	recompute:
   1026      1.75    dyoung 		if (sc->sc_proto == IPPROTO_UDP ||
   1027      1.62    dyoung 		    (sc->g_src.s_addr != INADDR_ANY &&
   1028      1.62    dyoung 		     sc->g_dst.s_addr != INADDR_ANY)) {
   1029      1.81     joerg 			rtcache_free(&sc->route);
   1030      1.75    dyoung 			if (sc->sc_proto == IPPROTO_UDP)
   1031      1.62    dyoung 				error = gre_kick(sc);
   1032      1.62    dyoung 			else if (gre_compute_route(sc) == 0)
   1033      1.39    itojun 				ifp->if_flags |= IFF_RUNNING;
   1034      1.39    itojun 			else
   1035      1.39    itojun 				ifp->if_flags &= ~IFF_RUNNING;
   1036       1.1       hwr 		}
   1037       1.1       hwr 		break;
   1038       1.1       hwr 	case GREGADDRS:
   1039      1.33    itojun 		memset(&si, 0, sizeof(si));
   1040      1.28    itojun 		si.sin_family = AF_INET;
   1041      1.28    itojun 		si.sin_len = sizeof(struct sockaddr_in);
   1042       1.1       hwr 		si.sin_addr.s_addr = sc->g_src.s_addr;
   1043       1.8  explorer 		sa = sintosa(&si);
   1044       1.1       hwr 		ifr->ifr_addr = *sa;
   1045       1.1       hwr 		break;
   1046       1.1       hwr 	case GREGADDRD:
   1047      1.33    itojun 		memset(&si, 0, sizeof(si));
   1048      1.28    itojun 		si.sin_family = AF_INET;
   1049      1.28    itojun 		si.sin_len = sizeof(struct sockaddr_in);
   1050       1.1       hwr 		si.sin_addr.s_addr = sc->g_dst.s_addr;
   1051       1.8  explorer 		sa = sintosa(&si);
   1052       1.1       hwr 		ifr->ifr_addr = *sa;
   1053      1.28    itojun 		break;
   1054      1.62    dyoung 	case GREDSOCK:
   1055  1.88.2.5        ad 		if (sc->sc_proto != IPPROTO_UDP) {
   1056  1.88.2.5        ad 			error = EINVAL;
   1057  1.88.2.5        ad 			break;
   1058      1.63    dyoung 		}
   1059  1.88.2.5        ad 		ifp->if_flags &= ~IFF_UP;
   1060  1.88.2.5        ad 		gre_wakeup(sc);
   1061      1.62    dyoung 		break;
   1062      1.62    dyoung 	case GRESSOCK:
   1063  1.88.2.5        ad 		if (sc->sc_proto != IPPROTO_UDP) {
   1064  1.88.2.5        ad 			error = EINVAL;
   1065  1.88.2.5        ad 			break;
   1066  1.88.2.5        ad 		}
   1067  1.88.2.5        ad 		/* getsock() will FILE_USE() and unlock the descriptor for us */
   1068      1.62    dyoung 		if ((error = getsock(p->p_fd, (int)ifr->ifr_value, &fp)) != 0)
   1069      1.62    dyoung 			break;
   1070      1.62    dyoung 		so = (struct socket *)fp->f_data;
   1071      1.62    dyoung 		if (so->so_type != SOCK_DGRAM) {
   1072      1.62    dyoung 			FILE_UNUSE(fp, NULL);
   1073      1.62    dyoung 			error = EINVAL;
   1074      1.62    dyoung 			break;
   1075      1.62    dyoung 		}
   1076      1.62    dyoung 		/* check address */
   1077      1.62    dyoung 		if ((error = gre_getnames(so, curlwp, &src, &dst)) != 0) {
   1078      1.62    dyoung 			FILE_UNUSE(fp, NULL);
   1079      1.62    dyoung 			break;
   1080      1.62    dyoung 		}
   1081      1.62    dyoung 
   1082  1.88.2.5        ad                 /* Increase reference count.  Now that our reference
   1083  1.88.2.5        ad                  * to the file descriptor is counted, this thread
   1084  1.88.2.5        ad                  * can release our "use" of the descriptor, but it
   1085  1.88.2.5        ad                  * will not be destroyed by some other thread's
   1086  1.88.2.5        ad                  * action.  This thread needs to release its use,
   1087  1.88.2.5        ad                  * too, because one and only one thread can have
   1088  1.88.2.5        ad                  * use of the descriptor at once.  The kernel thread
   1089  1.88.2.5        ad                  * will pick up the use if it needs it.
   1090  1.88.2.5        ad 		 */
   1091  1.88.2.5        ad 
   1092      1.62    dyoung 		fp->f_count++;
   1093  1.88.2.5        ad 		FILE_UNUSE(fp, NULL);
   1094  1.88.2.5        ad 
   1095  1.88.2.5        ad 		while (sc->sc_fp != NULL && error == 0) {
   1096  1.88.2.5        ad 			error = cv_timedwait_sig(&sc->sc_soparm_cv, &sc->sc_mtx,
   1097  1.88.2.5        ad 					         MAX(1, hz / 2));
   1098  1.88.2.5        ad 		}
   1099  1.88.2.5        ad 		if (error == 0) {
   1100  1.88.2.5        ad 			sc->sc_fp = fp;
   1101  1.88.2.5        ad 			ifp->if_flags |= IFF_UP;
   1102  1.88.2.5        ad 		}
   1103      1.62    dyoung 
   1104  1.88.2.5        ad 		if (error != 0 || (error = gre_kick(sc)) != 0) {
   1105  1.88.2.5        ad 			gre_closef(&fp, l);
   1106      1.62    dyoung 			break;
   1107      1.62    dyoung 		}
   1108  1.88.2.5        ad 		/* fp does not any longer belong to this thread. */
   1109      1.62    dyoung 		sc->g_src = src.sin_addr;
   1110      1.62    dyoung 		sc->g_srcport = src.sin_port;
   1111      1.62    dyoung 		sc->g_dst = dst.sin_addr;
   1112      1.62    dyoung 		sc->g_dstport = dst.sin_port;
   1113      1.62    dyoung 		break;
   1114      1.28    itojun 	case SIOCSLIFPHYADDR:
   1115      1.28    itojun 		if (lifr->addr.ss_family != AF_INET ||
   1116      1.31    itojun 		    lifr->dstaddr.ss_family != AF_INET) {
   1117      1.31    itojun 			error = EAFNOSUPPORT;
   1118      1.31    itojun 			break;
   1119      1.31    itojun 		}
   1120      1.28    itojun 		if (lifr->addr.ss_len != sizeof(si) ||
   1121      1.31    itojun 		    lifr->dstaddr.ss_len != sizeof(si)) {
   1122      1.31    itojun 			error = EINVAL;
   1123      1.31    itojun 			break;
   1124      1.31    itojun 		}
   1125      1.62    dyoung 		sc->g_src = satosin(&lifr->addr)->sin_addr;
   1126      1.62    dyoung 		sc->g_dst = satosin(&lifr->dstaddr)->sin_addr;
   1127      1.62    dyoung 		sc->g_srcport = satosin(&lifr->addr)->sin_port;
   1128      1.62    dyoung 		sc->g_dstport = satosin(&lifr->dstaddr)->sin_port;
   1129      1.30    itojun 		goto recompute;
   1130      1.28    itojun 	case SIOCDIFPHYADDR:
   1131      1.28    itojun 		sc->g_src.s_addr = INADDR_ANY;
   1132      1.28    itojun 		sc->g_dst.s_addr = INADDR_ANY;
   1133      1.62    dyoung 		sc->g_srcport = 0;
   1134      1.62    dyoung 		sc->g_dstport = 0;
   1135      1.62    dyoung 		goto recompute;
   1136      1.28    itojun 	case SIOCGLIFPHYADDR:
   1137      1.28    itojun 		if (sc->g_src.s_addr == INADDR_ANY ||
   1138      1.28    itojun 		    sc->g_dst.s_addr == INADDR_ANY) {
   1139      1.28    itojun 			error = EADDRNOTAVAIL;
   1140      1.28    itojun 			break;
   1141      1.28    itojun 		}
   1142      1.33    itojun 		memset(&si, 0, sizeof(si));
   1143      1.28    itojun 		si.sin_family = AF_INET;
   1144      1.28    itojun 		si.sin_len = sizeof(struct sockaddr_in);
   1145      1.62    dyoung 		si.sin_addr = sc->g_src;
   1146      1.75    dyoung 		if (sc->sc_proto == IPPROTO_UDP)
   1147      1.62    dyoung 			si.sin_port = sc->g_srcport;
   1148      1.33    itojun 		memcpy(&lifr->addr, &si, sizeof(si));
   1149      1.62    dyoung 		si.sin_addr = sc->g_dst;
   1150      1.75    dyoung 		if (sc->sc_proto == IPPROTO_UDP)
   1151      1.62    dyoung 			si.sin_port = sc->g_dstport;
   1152      1.33    itojun 		memcpy(&lifr->dstaddr, &si, sizeof(si));
   1153       1.1       hwr 		break;
   1154       1.1       hwr 	default:
   1155       1.1       hwr 		error = EINVAL;
   1156      1.31    itojun 		break;
   1157       1.1       hwr 	}
   1158  1.88.2.5        ad 	mutex_exit(&sc->sc_mtx);
   1159      1.87    dyoung 	return error;
   1160       1.1       hwr }
   1161       1.1       hwr 
   1162      1.20    itojun /*
   1163      1.78    dyoung  * Compute a route to our destination.
   1164       1.1       hwr  */
   1165      1.59   thorpej static int
   1166       1.8  explorer gre_compute_route(struct gre_softc *sc)
   1167       1.1       hwr {
   1168       1.1       hwr 	struct route *ro;
   1169  1.88.2.5        ad 	union {
   1170  1.88.2.5        ad 		struct sockaddr		dst;
   1171  1.88.2.5        ad 		struct sockaddr_in	dst4;
   1172  1.88.2.5        ad 	} u;
   1173       1.1       hwr 
   1174       1.8  explorer 	ro = &sc->route;
   1175      1.20    itojun 
   1176  1.88.2.5        ad 	memset(ro, 0, sizeof(*ro));
   1177  1.88.2.5        ad 	sockaddr_in_init(&u.dst4, &sc->g_dst, 0);
   1178  1.88.2.5        ad 	rtcache_setdst(ro, &u.dst);
   1179       1.8  explorer 
   1180      1.81     joerg 	rtcache_init(ro);
   1181      1.81     joerg 
   1182      1.81     joerg 	if (ro->ro_rt == NULL || ro->ro_rt->rt_ifp->if_softc == sc) {
   1183  1.88.2.3        ad 		GRE_DPRINTF(sc, "%s: route to %s %s\n", sc->sc_if.if_xname,
   1184  1.88.2.5        ad 		    inet_ntoa(u.dst4.sin_addr),
   1185  1.88.2.3        ad 		    (ro->ro_rt == NULL)
   1186  1.88.2.3        ad 		        ?  "does not exist"
   1187  1.88.2.3        ad 			: "loops back to ourself");
   1188      1.81     joerg 		rtcache_free(ro);
   1189      1.81     joerg 		return EADDRNOTAVAIL;
   1190      1.25    martin 	}
   1191      1.25    martin 
   1192      1.25    martin 	return 0;
   1193       1.1       hwr }
   1194       1.1       hwr 
   1195       1.3       hwr /*
   1196      1.20    itojun  * do a checksum of a buffer - much like in_cksum, which operates on
   1197      1.20    itojun  * mbufs.
   1198       1.3       hwr  */
   1199      1.48    itojun u_int16_t
   1200      1.48    itojun gre_in_cksum(u_int16_t *p, u_int len)
   1201       1.3       hwr {
   1202      1.48    itojun 	u_int32_t sum = 0;
   1203       1.3       hwr 	int nwords = len >> 1;
   1204      1.20    itojun 
   1205       1.3       hwr 	while (nwords-- != 0)
   1206       1.3       hwr 		sum += *p++;
   1207      1.20    itojun 
   1208      1.20    itojun 	if (len & 1) {
   1209      1.20    itojun 		union {
   1210      1.20    itojun 			u_short w;
   1211      1.20    itojun 			u_char c[2];
   1212      1.20    itojun 		} u;
   1213      1.20    itojun 		u.c[0] = *(u_char *)p;
   1214      1.20    itojun 		u.c[1] = 0;
   1215      1.20    itojun 		sum += u.w;
   1216      1.20    itojun 	}
   1217      1.20    itojun 
   1218      1.20    itojun 	/* end-around-carry */
   1219      1.20    itojun 	sum = (sum >> 16) + (sum & 0xffff);
   1220      1.20    itojun 	sum += (sum >> 16);
   1221      1.87    dyoung 	return ~sum;
   1222       1.3       hwr }
   1223      1.54  christos #endif
   1224      1.54  christos 
   1225      1.59   thorpej void	greattach(int);
   1226      1.54  christos 
   1227      1.54  christos /* ARGSUSED */
   1228      1.54  christos void
   1229      1.74  christos greattach(int count)
   1230      1.54  christos {
   1231      1.54  christos #ifdef INET
   1232      1.54  christos 	LIST_INIT(&gre_softc_list);
   1233      1.54  christos 	if_clone_attach(&gre_cloner);
   1234      1.54  christos #endif
   1235      1.54  christos }
   1236