Home | History | Annotate | Line # | Download | only in net
if_gif.c revision 1.114
      1  1.114  knakahar /*	$NetBSD: if_gif.c,v 1.114 2016/07/04 04:14:47 knakahara Exp $	*/
      2   1.34    itojun /*	$KAME: if_gif.c,v 1.76 2001/08/20 02:01:02 kjc Exp $	*/
      3    1.3    itojun 
      4    1.2    itojun /*
      5    1.2    itojun  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      6    1.2    itojun  * All rights reserved.
      7    1.9    itojun  *
      8    1.2    itojun  * Redistribution and use in source and binary forms, with or without
      9    1.2    itojun  * modification, are permitted provided that the following conditions
     10    1.2    itojun  * are met:
     11    1.2    itojun  * 1. Redistributions of source code must retain the above copyright
     12    1.2    itojun  *    notice, this list of conditions and the following disclaimer.
     13    1.2    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     14    1.2    itojun  *    notice, this list of conditions and the following disclaimer in the
     15    1.2    itojun  *    documentation and/or other materials provided with the distribution.
     16    1.2    itojun  * 3. Neither the name of the project nor the names of its contributors
     17    1.2    itojun  *    may be used to endorse or promote products derived from this software
     18    1.2    itojun  *    without specific prior written permission.
     19    1.9    itojun  *
     20    1.2    itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     21    1.2    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22    1.2    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23    1.2    itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     24    1.2    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25    1.2    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26    1.2    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27    1.2    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28    1.2    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29    1.2    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30    1.2    itojun  * SUCH DAMAGE.
     31    1.2    itojun  */
     32   1.36     lukem 
     33   1.36     lukem #include <sys/cdefs.h>
     34  1.114  knakahar __KERNEL_RCSID(0, "$NetBSD: if_gif.c,v 1.114 2016/07/04 04:14:47 knakahara Exp $");
     35    1.2    itojun 
     36   1.88     pooka #ifdef _KERNEL_OPT
     37    1.2    itojun #include "opt_inet.h"
     38   1.88     pooka #endif
     39    1.2    itojun 
     40    1.2    itojun #include <sys/param.h>
     41    1.2    itojun #include <sys/systm.h>
     42    1.2    itojun #include <sys/kernel.h>
     43    1.2    itojun #include <sys/mbuf.h>
     44    1.2    itojun #include <sys/socket.h>
     45    1.2    itojun #include <sys/sockio.h>
     46    1.2    itojun #include <sys/errno.h>
     47    1.2    itojun #include <sys/ioctl.h>
     48    1.2    itojun #include <sys/time.h>
     49   1.86    martin #include <sys/socketvar.h>
     50    1.2    itojun #include <sys/syslog.h>
     51   1.17    martin #include <sys/proc.h>
     52   1.72        ad #include <sys/cpu.h>
     53   1.72        ad #include <sys/intr.h>
     54   1.98  knakahar #include <sys/kmem.h>
     55  1.104  knakahar #include <sys/sysctl.h>
     56  1.114  knakahar #include <sys/xcall.h>
     57    1.2    itojun 
     58    1.2    itojun #include <net/if.h>
     59    1.2    itojun #include <net/if_types.h>
     60    1.2    itojun #include <net/netisr.h>
     61    1.2    itojun #include <net/route.h>
     62    1.2    itojun #include <net/bpf.h>
     63    1.2    itojun 
     64    1.2    itojun #include <netinet/in.h>
     65    1.2    itojun #include <netinet/in_systm.h>
     66   1.15    itojun #include <netinet/ip.h>
     67   1.15    itojun #ifdef	INET
     68    1.2    itojun #include <netinet/in_var.h>
     69   1.57  christos #endif	/* INET */
     70    1.2    itojun #include <netinet/in_gif.h>
     71    1.2    itojun 
     72    1.2    itojun #ifdef INET6
     73    1.2    itojun #ifndef INET
     74    1.2    itojun #include <netinet/in.h>
     75    1.2    itojun #endif
     76    1.2    itojun #include <netinet6/in6_var.h>
     77    1.2    itojun #include <netinet/ip6.h>
     78    1.2    itojun #include <netinet6/ip6_var.h>
     79    1.2    itojun #include <netinet6/in6_gif.h>
     80    1.2    itojun #endif /* INET6 */
     81    1.2    itojun 
     82    1.9    itojun #include <netinet/ip_encap.h>
     83    1.2    itojun #include <net/if_gif.h>
     84    1.2    itojun 
     85   1.87  christos #include <net/net_osdep.h>
     86    1.2    itojun 
     87   1.87  christos #include "ioconf.h"
     88    1.4    itojun 
     89    1.2    itojun /*
     90    1.2    itojun  * gif global variable definitions
     91    1.2    itojun  */
     92  1.106  knakahar static LIST_HEAD(, gif_softc) gif_softc_list;
     93   1.12   thorpej 
     94  1.109  knakahar static void	gifattach0(struct gif_softc *);
     95  1.109  knakahar static int	gif_output(struct ifnet *, struct mbuf *,
     96  1.109  knakahar 			   const struct sockaddr *, const struct rtentry *);
     97  1.111  knakahar static void	gif_start(struct ifnet *);
     98  1.109  knakahar static int	gif_ioctl(struct ifnet *, u_long, void *);
     99  1.109  knakahar static int	gif_set_tunnel(struct ifnet *, struct sockaddr *,
    100  1.109  knakahar 			       struct sockaddr *);
    101  1.109  knakahar static void	gif_delete_tunnel(struct ifnet *);
    102  1.109  knakahar 
    103  1.104  knakahar static void	gif_sysctl_setup(struct sysctllog **);
    104  1.104  knakahar 
    105   1.56   thorpej static int	gif_clone_create(struct if_clone *, int);
    106   1.56   thorpej static int	gif_clone_destroy(struct ifnet *);
    107   1.95  knakahar static int	gif_check_nesting(struct ifnet *, struct mbuf *);
    108   1.12   thorpej 
    109   1.97  knakahar static int	gif_encap_attach(struct gif_softc *);
    110   1.97  knakahar static int	gif_encap_detach(struct gif_softc *);
    111  1.114  knakahar static void	gif_encap_pause(struct gif_softc *);
    112  1.114  knakahar 
    113  1.114  knakahar static void	gif_list_lock_enter(void);
    114  1.114  knakahar static void	gif_list_lock_exit(void);
    115   1.97  knakahar 
    116   1.56   thorpej static struct if_clone gif_cloner =
    117   1.12   thorpej     IF_CLONE_INITIALIZER("gif", gif_clone_create, gif_clone_destroy);
    118   1.12   thorpej 
    119    1.9    itojun #ifndef MAX_GIF_NEST
    120    1.9    itojun /*
    121    1.9    itojun  * This macro controls the upper limitation on nesting of gif tunnels.
    122    1.9    itojun  * Since, setting a large value to this macro with a careless configuration
    123    1.9    itojun  * may introduce system crash, we don't allow any nestings by default.
    124    1.9    itojun  * If you need to configure nested gif tunnels, you can define this macro
    125   1.31    itojun  * in your kernel configuration file.  However, if you do so, please be
    126    1.9    itojun  * careful to configure the tunnels so that it won't make a loop.
    127    1.9    itojun  */
    128    1.9    itojun #define MAX_GIF_NEST 1
    129    1.9    itojun #endif
    130    1.9    itojun static int max_gif_nesting = MAX_GIF_NEST;
    131    1.2    itojun 
    132  1.104  knakahar static void
    133  1.104  knakahar gif_sysctl_setup(struct sysctllog **clog)
    134  1.104  knakahar {
    135  1.104  knakahar 
    136  1.104  knakahar #ifdef INET
    137  1.104  knakahar 	sysctl_createv(clog, 0, NULL, NULL,
    138  1.104  knakahar 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    139  1.104  knakahar 		       CTLTYPE_INT, "gifttl",
    140  1.104  knakahar 		       SYSCTL_DESCR("Default TTL for a gif tunnel datagram"),
    141  1.104  knakahar 		       NULL, 0, &ip_gif_ttl, 0,
    142  1.104  knakahar 		       CTL_NET, PF_INET, IPPROTO_IP,
    143  1.104  knakahar 		       IPCTL_GIF_TTL, CTL_EOL);
    144  1.104  knakahar #endif
    145  1.104  knakahar #ifdef INET6
    146  1.104  knakahar 	sysctl_createv(clog, 0, NULL, NULL,
    147  1.104  knakahar 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    148  1.104  knakahar 		       CTLTYPE_INT, "gifhlim",
    149  1.104  knakahar 		       SYSCTL_DESCR("Default hop limit for a gif tunnel datagram"),
    150  1.104  knakahar 		       NULL, 0, &ip6_gif_hlim, 0,
    151  1.104  knakahar 		       CTL_NET, PF_INET6, IPPROTO_IPV6,
    152  1.104  knakahar 		       IPV6CTL_GIF_HLIM, CTL_EOL);
    153  1.104  knakahar #endif
    154  1.104  knakahar }
    155  1.104  knakahar 
    156   1.12   thorpej /* ARGSUSED */
    157    1.2    itojun void
    158   1.63  christos gifattach(int count)
    159   1.12   thorpej {
    160   1.12   thorpej 
    161   1.12   thorpej 	LIST_INIT(&gif_softc_list);
    162   1.12   thorpej 	if_clone_attach(&gif_cloner);
    163  1.104  knakahar 
    164  1.104  knakahar 	gif_sysctl_setup(NULL);
    165   1.12   thorpej }
    166   1.12   thorpej 
    167   1.56   thorpej static int
    168   1.56   thorpej gif_clone_create(struct if_clone *ifc, int unit)
    169    1.2    itojun {
    170   1.12   thorpej 	struct gif_softc *sc;
    171   1.12   thorpej 
    172   1.98  knakahar 	sc = kmem_zalloc(sizeof(struct gif_softc), KM_SLEEP);
    173  1.101  knakahar 	if (sc == NULL)
    174  1.101  knakahar 		return ENOMEM;
    175    1.2    itojun 
    176   1.75  christos 	if_initname(&sc->gif_if, ifc->ifc_name, unit);
    177    1.9    itojun 
    178   1.31    itojun 	gifattach0(sc);
    179   1.31    itojun 
    180   1.31    itojun 	LIST_INSERT_HEAD(&gif_softc_list, sc, gif_list);
    181   1.31    itojun 	return (0);
    182   1.31    itojun }
    183   1.31    itojun 
    184  1.109  knakahar static void
    185   1.56   thorpej gifattach0(struct gif_softc *sc)
    186   1.31    itojun {
    187   1.31    itojun 
    188   1.12   thorpej 	sc->encap_cookie4 = sc->encap_cookie6 = NULL;
    189    1.9    itojun 
    190   1.31    itojun 	sc->gif_if.if_addrlen = 0;
    191   1.12   thorpej 	sc->gif_if.if_mtu    = GIF_MTU;
    192   1.12   thorpej 	sc->gif_if.if_flags  = IFF_POINTOPOINT | IFF_MULTICAST;
    193  1.113  knakahar 	sc->gif_if.if_extflags  = IFEF_NO_LINK_STATE_CHANGE;
    194   1.12   thorpej 	sc->gif_if.if_ioctl  = gif_ioctl;
    195   1.12   thorpej 	sc->gif_if.if_output = gif_output;
    196   1.12   thorpej 	sc->gif_if.if_type   = IFT_GIF;
    197   1.19   thorpej 	sc->gif_if.if_dlt    = DLT_NULL;
    198   1.76    dyoung 	sc->gif_if.if_softc  = sc;
    199   1.34    itojun 	IFQ_SET_READY(&sc->gif_if.if_snd);
    200  1.112  knakahar 	if_initialize(&sc->gif_if);
    201  1.112  knakahar 	if_register(&sc->gif_if);
    202   1.20   thorpej 	if_alloc_sadl(&sc->gif_if);
    203   1.78     joerg 	bpf_attach(&sc->gif_if, DLT_NULL, sizeof(u_int));
    204   1.12   thorpej }
    205   1.12   thorpej 
    206   1.56   thorpej static int
    207   1.56   thorpej gif_clone_destroy(struct ifnet *ifp)
    208   1.12   thorpej {
    209   1.12   thorpej 	struct gif_softc *sc = (void *) ifp;
    210   1.12   thorpej 
    211   1.12   thorpej 	LIST_REMOVE(sc, gif_list);
    212   1.12   thorpej 
    213   1.94  knakahar 	gif_delete_tunnel(&sc->gif_if);
    214   1.78     joerg 	bpf_detach(ifp);
    215   1.69    dyoung 	if_detach(ifp);
    216   1.66    dyoung 	rtcache_free(&sc->gif_ro);
    217   1.12   thorpej 
    218   1.98  knakahar 	kmem_free(sc, sizeof(struct gif_softc));
    219   1.47     peter 
    220   1.47     peter 	return (0);
    221    1.9    itojun }
    222    1.9    itojun 
    223   1.42    itojun #ifdef GIF_ENCAPCHECK
    224   1.31    itojun int
    225   1.56   thorpej gif_encapcheck(struct mbuf *m, int off, int proto, void *arg)
    226    1.9    itojun {
    227    1.9    itojun 	struct ip ip;
    228    1.9    itojun 	struct gif_softc *sc;
    229    1.9    itojun 
    230   1.76    dyoung 	sc = arg;
    231    1.9    itojun 	if (sc == NULL)
    232    1.9    itojun 		return 0;
    233    1.9    itojun 
    234  1.114  knakahar 	if ((sc->gif_if.if_flags & (IFF_UP|IFF_RUNNING))
    235  1.114  knakahar 	    != (IFF_UP|IFF_RUNNING))
    236    1.9    itojun 		return 0;
    237    1.9    itojun 
    238    1.9    itojun 	/* no physical address */
    239    1.9    itojun 	if (!sc->gif_psrc || !sc->gif_pdst)
    240    1.9    itojun 		return 0;
    241    1.9    itojun 
    242    1.9    itojun 	switch (proto) {
    243    1.9    itojun #ifdef INET
    244    1.9    itojun 	case IPPROTO_IPV4:
    245    1.9    itojun 		break;
    246    1.9    itojun #endif
    247    1.9    itojun #ifdef INET6
    248    1.9    itojun 	case IPPROTO_IPV6:
    249    1.9    itojun 		break;
    250    1.9    itojun #endif
    251    1.9    itojun 	default:
    252    1.9    itojun 		return 0;
    253    1.9    itojun 	}
    254   1.40  christos 
    255   1.40  christos 	/* Bail on short packets */
    256   1.40  christos 	KASSERT(m->m_flags & M_PKTHDR);
    257   1.40  christos 	if (m->m_pkthdr.len < sizeof(ip))
    258   1.40  christos 		return 0;
    259    1.9    itojun 
    260   1.76    dyoung 	m_copydata(m, 0, sizeof(ip), &ip);
    261    1.9    itojun 
    262    1.9    itojun 	switch (ip.ip_v) {
    263    1.9    itojun #ifdef INET
    264    1.9    itojun 	case 4:
    265    1.9    itojun 		if (sc->gif_psrc->sa_family != AF_INET ||
    266    1.9    itojun 		    sc->gif_pdst->sa_family != AF_INET)
    267    1.9    itojun 			return 0;
    268    1.9    itojun 		return gif_encapcheck4(m, off, proto, arg);
    269    1.9    itojun #endif
    270    1.9    itojun #ifdef INET6
    271    1.9    itojun 	case 6:
    272   1.41    itojun 		if (m->m_pkthdr.len < sizeof(struct ip6_hdr))
    273   1.41    itojun 			return 0;
    274    1.9    itojun 		if (sc->gif_psrc->sa_family != AF_INET6 ||
    275    1.9    itojun 		    sc->gif_pdst->sa_family != AF_INET6)
    276    1.9    itojun 			return 0;
    277    1.9    itojun 		return gif_encapcheck6(m, off, proto, arg);
    278    1.9    itojun #endif
    279    1.9    itojun 	default:
    280    1.9    itojun 		return 0;
    281    1.2    itojun 	}
    282    1.2    itojun }
    283   1.42    itojun #endif
    284    1.2    itojun 
    285   1.95  knakahar /*
    286   1.95  knakahar  * gif may cause infinite recursion calls when misconfigured.
    287   1.95  knakahar  * We'll prevent this by introducing upper limit.
    288   1.95  knakahar  */
    289   1.95  knakahar static int
    290   1.95  knakahar gif_check_nesting(struct ifnet *ifp, struct mbuf *m)
    291   1.95  knakahar {
    292   1.95  knakahar 	struct m_tag *mtag;
    293   1.95  knakahar 	int *count;
    294   1.95  knakahar 
    295   1.95  knakahar 	mtag = m_tag_find(m, PACKET_TAG_TUNNEL_INFO, NULL);
    296   1.95  knakahar 	if (mtag != NULL) {
    297   1.95  knakahar 		count = (int *)(mtag + 1);
    298   1.95  knakahar 		if (++(*count) > max_gif_nesting) {
    299   1.95  knakahar 			log(LOG_NOTICE,
    300   1.95  knakahar 			    "%s: recursively called too many times(%d)\n",
    301   1.95  knakahar 			    if_name(ifp),
    302   1.95  knakahar 			    *count);
    303   1.95  knakahar 			return EIO;
    304   1.95  knakahar 		}
    305   1.95  knakahar 	} else {
    306   1.95  knakahar 		mtag = m_tag_get(PACKET_TAG_TUNNEL_INFO, sizeof(*count),
    307   1.95  knakahar 		    M_NOWAIT);
    308   1.95  knakahar 		if (mtag != NULL) {
    309   1.95  knakahar 			m_tag_prepend(m, mtag);
    310   1.95  knakahar 			count = (int *)(mtag + 1);
    311   1.95  knakahar 			*count = 0;
    312   1.95  knakahar 		} else {
    313   1.95  knakahar 			log(LOG_DEBUG,
    314   1.95  knakahar 			    "%s: m_tag_get() failed, recursion calls are not prevented.\n",
    315   1.95  knakahar 			    if_name(ifp));
    316   1.95  knakahar 		}
    317   1.95  knakahar 	}
    318   1.95  knakahar 
    319   1.95  knakahar 	return 0;
    320   1.95  knakahar }
    321   1.95  knakahar 
    322  1.109  knakahar static int
    323   1.65    dyoung gif_output(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst,
    324  1.108     ozaki     const struct rtentry *rt)
    325    1.2    itojun {
    326   1.76    dyoung 	struct gif_softc *sc = ifp->if_softc;
    327    1.2    itojun 	int error = 0;
    328   1.33    itojun 	int s;
    329   1.33    itojun 
    330  1.107  knakahar 	IFQ_CLASSIFY(&ifp->if_snd, m, dst->sa_family);
    331    1.2    itojun 
    332   1.95  knakahar 	if ((error = gif_check_nesting(ifp, m)) != 0) {
    333   1.95  knakahar 		m_free(m);
    334    1.2    itojun 		goto end;
    335    1.2    itojun 	}
    336    1.2    itojun 
    337    1.2    itojun 	m->m_flags &= ~(M_BCAST|M_MCAST);
    338  1.114  knakahar 	if (((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING)) ||
    339  1.111  knakahar 	    sc->gif_psrc == NULL || sc->gif_pdst == NULL) {
    340    1.2    itojun 		m_freem(m);
    341    1.2    itojun 		error = ENETDOWN;
    342    1.2    itojun 		goto end;
    343    1.2    itojun 	}
    344    1.2    itojun 
    345    1.9    itojun 	/* XXX should we check if our outer source is legal? */
    346    1.2    itojun 
    347   1.33    itojun 	/* use DLT_NULL encapsulation here to pass inner af type */
    348   1.33    itojun 	M_PREPEND(m, sizeof(int), M_DONTWAIT);
    349   1.33    itojun 	if (!m) {
    350   1.33    itojun 		error = ENOBUFS;
    351   1.33    itojun 		goto end;
    352   1.33    itojun 	}
    353   1.33    itojun 	*mtod(m, int *) = dst->sa_family;
    354   1.33    itojun 
    355   1.79    dyoung 	/* Clear checksum-offload flags. */
    356   1.79    dyoung 	m->m_pkthdr.csum_flags = 0;
    357   1.79    dyoung 	m->m_pkthdr.csum_data = 0;
    358   1.79    dyoung 
    359   1.33    itojun 	s = splnet();
    360  1.107  knakahar 	IFQ_ENQUEUE(&ifp->if_snd, m, error);
    361   1.33    itojun 	if (error) {
    362   1.33    itojun 		splx(s);
    363   1.31    itojun 		goto end;
    364    1.2    itojun 	}
    365  1.111  knakahar 	splx(s);
    366  1.102  knakahar 
    367  1.111  knakahar 	gif_start(ifp);
    368   1.33    itojun 
    369   1.33    itojun 	error = 0;
    370    1.2    itojun 
    371    1.2    itojun   end:
    372   1.31    itojun 	if (error)
    373   1.31    itojun 		ifp->if_oerrors++;
    374    1.2    itojun 	return error;
    375    1.2    itojun }
    376    1.2    itojun 
    377   1.56   thorpej static void
    378  1.111  knakahar gif_start(struct ifnet *ifp)
    379   1.33    itojun {
    380   1.33    itojun 	struct gif_softc *sc;
    381   1.33    itojun 	struct mbuf *m;
    382   1.33    itojun 	int family;
    383   1.33    itojun 	int len;
    384   1.33    itojun 	int s;
    385   1.33    itojun 	int error;
    386   1.33    itojun 
    387  1.111  knakahar 	sc = ifp->if_softc;
    388  1.102  knakahar 
    389   1.33    itojun 	/* output processing */
    390   1.33    itojun 	while (1) {
    391   1.33    itojun 		s = splnet();
    392   1.34    itojun 		IFQ_DEQUEUE(&sc->gif_if.if_snd, m);
    393   1.33    itojun 		splx(s);
    394   1.33    itojun 		if (m == NULL)
    395   1.33    itojun 			break;
    396   1.33    itojun 
    397   1.33    itojun 		/* grab and chop off inner af type */
    398   1.33    itojun 		if (sizeof(int) > m->m_len) {
    399   1.33    itojun 			m = m_pullup(m, sizeof(int));
    400   1.33    itojun 			if (!m) {
    401   1.33    itojun 				ifp->if_oerrors++;
    402   1.33    itojun 				continue;
    403   1.33    itojun 			}
    404   1.33    itojun 		}
    405   1.33    itojun 		family = *mtod(m, int *);
    406   1.78     joerg 		bpf_mtap(ifp, m);
    407   1.33    itojun 		m_adj(m, sizeof(int));
    408   1.33    itojun 
    409   1.33    itojun 		len = m->m_pkthdr.len;
    410   1.33    itojun 
    411   1.33    itojun 		/* dispatch to output logic based on outer AF */
    412   1.33    itojun 		switch (sc->gif_psrc->sa_family) {
    413   1.33    itojun #ifdef INET
    414   1.33    itojun 		case AF_INET:
    415  1.111  knakahar 			/* XXX
    416  1.111  knakahar 			 * To add mutex_enter(softnet_lock) or
    417  1.111  knakahar 			 * KASSERT(mutex_owned(softnet_lock)) here, we shold
    418  1.111  knakahar 			 * coordinate softnet_lock between in6_if_up() and
    419  1.111  knakahar 			 * in6_purgeif().
    420  1.111  knakahar 			 */
    421   1.33    itojun 			error = in_gif_output(ifp, family, m);
    422   1.33    itojun 			break;
    423   1.33    itojun #endif
    424   1.33    itojun #ifdef INET6
    425   1.33    itojun 		case AF_INET6:
    426  1.111  knakahar 			/* XXX
    427  1.111  knakahar 			 * the same as in_gif_output()
    428  1.111  knakahar 			 */
    429   1.33    itojun 			error = in6_gif_output(ifp, family, m);
    430   1.33    itojun 			break;
    431   1.33    itojun #endif
    432   1.33    itojun 		default:
    433   1.50     perry 			m_freem(m);
    434   1.33    itojun 			error = ENETDOWN;
    435   1.33    itojun 			break;
    436   1.33    itojun 		}
    437   1.33    itojun 
    438   1.33    itojun 		if (error)
    439   1.33    itojun 			ifp->if_oerrors++;
    440   1.33    itojun 		else {
    441   1.50     perry 			ifp->if_opackets++;
    442   1.33    itojun 			ifp->if_obytes += len;
    443   1.33    itojun 		}
    444   1.33    itojun 	}
    445   1.33    itojun }
    446   1.33    itojun 
    447   1.33    itojun void
    448   1.56   thorpej gif_input(struct mbuf *m, int af, struct ifnet *ifp)
    449    1.2    itojun {
    450   1.83     rmind 	pktqueue_t *pktq;
    451   1.83     rmind 	size_t pktlen;
    452   1.83     rmind 	int s;
    453    1.2    itojun 
    454   1.33    itojun 	if (ifp == NULL) {
    455    1.2    itojun 		/* just in case */
    456    1.2    itojun 		m_freem(m);
    457    1.2    itojun 		return;
    458    1.2    itojun 	}
    459    1.2    itojun 
    460  1.110     ozaki 	m_set_rcvif(m, ifp);
    461   1.83     rmind 	pktlen = m->m_pkthdr.len;
    462   1.50     perry 
    463   1.78     joerg 	bpf_mtap_af(ifp, af, m);
    464    1.2    itojun 
    465    1.2    itojun 	/*
    466    1.2    itojun 	 * Put the packet to the network layer input queue according to the
    467   1.83     rmind 	 * specified address family.  Note: we avoid direct call to the
    468   1.83     rmind 	 * input function of the network layer in order to avoid recursion.
    469   1.83     rmind 	 * This may be revisited in the future.
    470    1.2    itojun 	 */
    471    1.2    itojun 	switch (af) {
    472    1.2    itojun #ifdef INET
    473    1.2    itojun 	case AF_INET:
    474   1.83     rmind 		pktq = ip_pktq;
    475    1.2    itojun 		break;
    476    1.2    itojun #endif
    477    1.2    itojun #ifdef INET6
    478    1.2    itojun 	case AF_INET6:
    479   1.83     rmind 		pktq = ip6_pktq;
    480    1.2    itojun 		break;
    481    1.2    itojun #endif
    482    1.2    itojun 	default:
    483    1.2    itojun 		m_freem(m);
    484    1.2    itojun 		return;
    485    1.2    itojun 	}
    486    1.2    itojun 
    487   1.27   thorpej 	s = splnet();
    488   1.83     rmind 	if (__predict_true(pktq_enqueue(pktq, m, 0))) {
    489   1.83     rmind 		ifp->if_ibytes += pktlen;
    490   1.83     rmind 		ifp->if_ipackets++;
    491   1.83     rmind 	} else {
    492    1.2    itojun 		m_freem(m);
    493    1.2    itojun 	}
    494    1.2    itojun 	splx(s);
    495    1.2    itojun }
    496    1.2    itojun 
    497    1.9    itojun /* XXX how should we handle IPv6 scope on SIOC[GS]IFPHYADDR? */
    498  1.109  knakahar static int
    499   1.67  christos gif_ioctl(struct ifnet *ifp, u_long cmd, void *data)
    500    1.2    itojun {
    501   1.76    dyoung 	struct gif_softc *sc  = ifp->if_softc;
    502    1.2    itojun 	struct ifreq     *ifr = (struct ifreq*)data;
    503   1.84       roy 	struct ifaddr    *ifa = (struct ifaddr*)data;
    504    1.2    itojun 	int error = 0, size;
    505    1.9    itojun 	struct sockaddr *dst, *src;
    506   1.31    itojun 
    507    1.2    itojun 	switch (cmd) {
    508   1.76    dyoung 	case SIOCINITIFADDR:
    509   1.32    itojun 		ifp->if_flags |= IFF_UP;
    510   1.84       roy 		ifa->ifa_rtrequest = p2p_rtrequest;
    511    1.2    itojun 		break;
    512   1.50     perry 
    513    1.2    itojun 	case SIOCADDMULTI:
    514    1.2    itojun 	case SIOCDELMULTI:
    515    1.2    itojun 		switch (ifr->ifr_addr.sa_family) {
    516    1.2    itojun #ifdef INET
    517    1.2    itojun 		case AF_INET:	/* IP supports Multicast */
    518    1.2    itojun 			break;
    519    1.2    itojun #endif /* INET */
    520    1.2    itojun #ifdef INET6
    521    1.2    itojun 		case AF_INET6:	/* IP6 supports Multicast */
    522    1.2    itojun 			break;
    523    1.2    itojun #endif /* INET6 */
    524    1.2    itojun 		default:  /* Other protocols doesn't support Multicast */
    525    1.2    itojun 			error = EAFNOSUPPORT;
    526    1.2    itojun 			break;
    527    1.2    itojun 		}
    528    1.2    itojun 		break;
    529    1.2    itojun 
    530    1.2    itojun 	case SIOCSIFMTU:
    531   1.73    dyoung 		if (ifr->ifr_mtu < GIF_MTU_MIN || ifr->ifr_mtu > GIF_MTU_MAX)
    532   1.73    dyoung 			return EINVAL;
    533   1.73    dyoung 		else if ((error = ifioctl_common(ifp, cmd, data)) == ENETRESET)
    534   1.73    dyoung 			error = 0;
    535    1.2    itojun 		break;
    536    1.2    itojun 
    537   1.31    itojun #ifdef INET
    538    1.2    itojun 	case SIOCSIFPHYADDR:
    539   1.31    itojun #endif
    540    1.2    itojun #ifdef INET6
    541    1.2    itojun 	case SIOCSIFPHYADDR_IN6:
    542    1.2    itojun #endif /* INET6 */
    543   1.25    itojun 	case SIOCSLIFPHYADDR:
    544   1.11    itojun 		switch (cmd) {
    545   1.15    itojun #ifdef INET
    546   1.11    itojun 		case SIOCSIFPHYADDR:
    547   1.11    itojun 			src = (struct sockaddr *)
    548   1.11    itojun 				&(((struct in_aliasreq *)data)->ifra_addr);
    549   1.11    itojun 			dst = (struct sockaddr *)
    550   1.11    itojun 				&(((struct in_aliasreq *)data)->ifra_dstaddr);
    551   1.11    itojun 			break;
    552   1.15    itojun #endif
    553   1.11    itojun #ifdef INET6
    554   1.11    itojun 		case SIOCSIFPHYADDR_IN6:
    555   1.11    itojun 			src = (struct sockaddr *)
    556   1.11    itojun 				&(((struct in6_aliasreq *)data)->ifra_addr);
    557   1.11    itojun 			dst = (struct sockaddr *)
    558   1.11    itojun 				&(((struct in6_aliasreq *)data)->ifra_dstaddr);
    559   1.25    itojun 			break;
    560   1.25    itojun #endif
    561   1.25    itojun 		case SIOCSLIFPHYADDR:
    562   1.25    itojun 			src = (struct sockaddr *)
    563   1.25    itojun 				&(((struct if_laddrreq *)data)->addr);
    564   1.25    itojun 			dst = (struct sockaddr *)
    565   1.25    itojun 				&(((struct if_laddrreq *)data)->dstaddr);
    566   1.31    itojun 			break;
    567   1.31    itojun 		default:
    568   1.31    itojun 			return EINVAL;
    569   1.25    itojun 		}
    570   1.25    itojun 
    571   1.25    itojun 		/* sa_family must be equal */
    572   1.25    itojun 		if (src->sa_family != dst->sa_family)
    573   1.25    itojun 			return EINVAL;
    574   1.25    itojun 
    575   1.25    itojun 		/* validate sa_len */
    576   1.25    itojun 		switch (src->sa_family) {
    577   1.25    itojun #ifdef INET
    578   1.25    itojun 		case AF_INET:
    579   1.25    itojun 			if (src->sa_len != sizeof(struct sockaddr_in))
    580   1.16    itojun 				return EINVAL;
    581   1.11    itojun 			break;
    582   1.11    itojun #endif
    583   1.25    itojun #ifdef INET6
    584   1.25    itojun 		case AF_INET6:
    585   1.25    itojun 			if (src->sa_len != sizeof(struct sockaddr_in6))
    586   1.25    itojun 				return EINVAL;
    587   1.25    itojun 			break;
    588   1.25    itojun #endif
    589   1.25    itojun 		default:
    590   1.25    itojun 			return EAFNOSUPPORT;
    591   1.25    itojun 		}
    592   1.25    itojun 		switch (dst->sa_family) {
    593   1.25    itojun #ifdef INET
    594   1.25    itojun 		case AF_INET:
    595   1.25    itojun 			if (dst->sa_len != sizeof(struct sockaddr_in))
    596   1.25    itojun 				return EINVAL;
    597   1.25    itojun 			break;
    598   1.25    itojun #endif
    599   1.25    itojun #ifdef INET6
    600   1.25    itojun 		case AF_INET6:
    601   1.25    itojun 			if (dst->sa_len != sizeof(struct sockaddr_in6))
    602   1.25    itojun 				return EINVAL;
    603   1.25    itojun 			break;
    604   1.25    itojun #endif
    605   1.25    itojun 		default:
    606   1.25    itojun 			return EAFNOSUPPORT;
    607   1.25    itojun 		}
    608   1.25    itojun 
    609   1.25    itojun 		/* check sa_family looks sane for the cmd */
    610   1.25    itojun 		switch (cmd) {
    611   1.25    itojun 		case SIOCSIFPHYADDR:
    612   1.25    itojun 			if (src->sa_family == AF_INET)
    613   1.25    itojun 				break;
    614   1.25    itojun 			return EAFNOSUPPORT;
    615   1.25    itojun #ifdef INET6
    616   1.25    itojun 		case SIOCSIFPHYADDR_IN6:
    617   1.25    itojun 			if (src->sa_family == AF_INET6)
    618   1.25    itojun 				break;
    619   1.25    itojun 			return EAFNOSUPPORT;
    620   1.25    itojun #endif /* INET6 */
    621   1.25    itojun 		case SIOCSLIFPHYADDR:
    622   1.25    itojun 			/* checks done in the above */
    623   1.25    itojun 			break;
    624   1.11    itojun 		}
    625   1.11    itojun 
    626   1.31    itojun 		error = gif_set_tunnel(&sc->gif_if, src, dst);
    627    1.9    itojun 		break;
    628    1.9    itojun 
    629    1.9    itojun #ifdef SIOCDIFPHYADDR
    630    1.9    itojun 	case SIOCDIFPHYADDR:
    631   1.31    itojun 		gif_delete_tunnel(&sc->gif_if);
    632    1.2    itojun 		break;
    633    1.9    itojun #endif
    634   1.50     perry 
    635    1.2    itojun 	case SIOCGIFPSRCADDR:
    636    1.2    itojun #ifdef INET6
    637    1.2    itojun 	case SIOCGIFPSRCADDR_IN6:
    638    1.2    itojun #endif /* INET6 */
    639    1.2    itojun 		if (sc->gif_psrc == NULL) {
    640    1.2    itojun 			error = EADDRNOTAVAIL;
    641    1.2    itojun 			goto bad;
    642    1.2    itojun 		}
    643    1.2    itojun 		src = sc->gif_psrc;
    644   1.16    itojun 		switch (cmd) {
    645    1.2    itojun #ifdef INET
    646   1.16    itojun 		case SIOCGIFPSRCADDR:
    647    1.2    itojun 			dst = &ifr->ifr_addr;
    648   1.16    itojun 			size = sizeof(ifr->ifr_addr);
    649    1.2    itojun 			break;
    650    1.2    itojun #endif /* INET */
    651    1.2    itojun #ifdef INET6
    652   1.16    itojun 		case SIOCGIFPSRCADDR_IN6:
    653    1.2    itojun 			dst = (struct sockaddr *)
    654    1.2    itojun 				&(((struct in6_ifreq *)data)->ifr_addr);
    655   1.16    itojun 			size = sizeof(((struct in6_ifreq *)data)->ifr_addr);
    656    1.2    itojun 			break;
    657    1.2    itojun #endif /* INET6 */
    658    1.2    itojun 		default:
    659    1.2    itojun 			error = EADDRNOTAVAIL;
    660    1.2    itojun 			goto bad;
    661    1.2    itojun 		}
    662   1.16    itojun 		if (src->sa_len > size)
    663   1.16    itojun 			return EINVAL;
    664   1.68    dyoung 		memcpy(dst, src, src->sa_len);
    665    1.2    itojun 		break;
    666   1.50     perry 
    667    1.2    itojun 	case SIOCGIFPDSTADDR:
    668    1.2    itojun #ifdef INET6
    669    1.2    itojun 	case SIOCGIFPDSTADDR_IN6:
    670    1.2    itojun #endif /* INET6 */
    671    1.2    itojun 		if (sc->gif_pdst == NULL) {
    672    1.2    itojun 			error = EADDRNOTAVAIL;
    673    1.2    itojun 			goto bad;
    674    1.2    itojun 		}
    675    1.2    itojun 		src = sc->gif_pdst;
    676   1.16    itojun 		switch (cmd) {
    677    1.2    itojun #ifdef INET
    678   1.16    itojun 		case SIOCGIFPDSTADDR:
    679    1.2    itojun 			dst = &ifr->ifr_addr;
    680   1.16    itojun 			size = sizeof(ifr->ifr_addr);
    681    1.2    itojun 			break;
    682    1.2    itojun #endif /* INET */
    683    1.2    itojun #ifdef INET6
    684   1.16    itojun 		case SIOCGIFPDSTADDR_IN6:
    685    1.2    itojun 			dst = (struct sockaddr *)
    686    1.2    itojun 				&(((struct in6_ifreq *)data)->ifr_addr);
    687   1.16    itojun 			size = sizeof(((struct in6_ifreq *)data)->ifr_addr);
    688    1.2    itojun 			break;
    689    1.2    itojun #endif /* INET6 */
    690    1.2    itojun 		default:
    691    1.2    itojun 			error = EADDRNOTAVAIL;
    692    1.2    itojun 			goto bad;
    693    1.2    itojun 		}
    694   1.25    itojun 		if (src->sa_len > size)
    695   1.25    itojun 			return EINVAL;
    696   1.68    dyoung 		memcpy(dst, src, src->sa_len);
    697   1.25    itojun 		break;
    698   1.25    itojun 
    699   1.25    itojun 	case SIOCGLIFPHYADDR:
    700   1.25    itojun 		if (sc->gif_psrc == NULL || sc->gif_pdst == NULL) {
    701   1.25    itojun 			error = EADDRNOTAVAIL;
    702   1.25    itojun 			goto bad;
    703   1.25    itojun 		}
    704   1.25    itojun 
    705   1.25    itojun 		/* copy src */
    706   1.25    itojun 		src = sc->gif_psrc;
    707   1.25    itojun 		dst = (struct sockaddr *)
    708   1.25    itojun 			&(((struct if_laddrreq *)data)->addr);
    709   1.25    itojun 		size = sizeof(((struct if_laddrreq *)data)->addr);
    710   1.25    itojun 		if (src->sa_len > size)
    711   1.25    itojun 			return EINVAL;
    712   1.68    dyoung 		memcpy(dst, src, src->sa_len);
    713   1.25    itojun 
    714   1.25    itojun 		/* copy dst */
    715   1.25    itojun 		src = sc->gif_pdst;
    716   1.25    itojun 		dst = (struct sockaddr *)
    717   1.25    itojun 			&(((struct if_laddrreq *)data)->dstaddr);
    718   1.25    itojun 		size = sizeof(((struct if_laddrreq *)data)->dstaddr);
    719   1.16    itojun 		if (src->sa_len > size)
    720   1.16    itojun 			return EINVAL;
    721   1.68    dyoung 		memcpy(dst, src, src->sa_len);
    722    1.2    itojun 		break;
    723    1.2    itojun 
    724    1.2    itojun 	default:
    725   1.76    dyoung 		return ifioctl_common(ifp, cmd, data);
    726    1.2    itojun 	}
    727    1.2    itojun  bad:
    728    1.2    itojun 	return error;
    729   1.12   thorpej }
    730   1.12   thorpej 
    731   1.97  knakahar static int
    732   1.97  knakahar gif_encap_attach(struct gif_softc *sc)
    733   1.97  knakahar {
    734   1.97  knakahar 	int error;
    735   1.97  knakahar 
    736   1.97  knakahar 	if (sc == NULL || sc->gif_psrc == NULL)
    737   1.97  knakahar 		return EINVAL;
    738   1.97  knakahar 
    739   1.97  knakahar 	switch (sc->gif_psrc->sa_family) {
    740   1.97  knakahar #ifdef INET
    741   1.97  knakahar 	case AF_INET:
    742   1.97  knakahar 		error = in_gif_attach(sc);
    743   1.97  knakahar 		break;
    744   1.97  knakahar #endif
    745   1.97  knakahar #ifdef INET6
    746   1.97  knakahar 	case AF_INET6:
    747   1.97  knakahar 		error = in6_gif_attach(sc);
    748   1.97  knakahar 		break;
    749   1.97  knakahar #endif
    750   1.97  knakahar 	default:
    751   1.97  knakahar 		error = EINVAL;
    752   1.97  knakahar 		break;
    753   1.97  knakahar 	}
    754   1.97  knakahar 
    755   1.97  knakahar 	return error;
    756   1.97  knakahar }
    757   1.97  knakahar 
    758   1.97  knakahar static int
    759   1.97  knakahar gif_encap_detach(struct gif_softc *sc)
    760   1.97  knakahar {
    761   1.97  knakahar 	int error;
    762   1.97  knakahar 
    763   1.97  knakahar 	if (sc == NULL || sc->gif_psrc == NULL)
    764   1.97  knakahar 		return EINVAL;
    765   1.97  knakahar 
    766   1.97  knakahar 	switch (sc->gif_psrc->sa_family) {
    767   1.97  knakahar #ifdef INET
    768   1.97  knakahar 	case AF_INET:
    769   1.97  knakahar 		error = in_gif_detach(sc);
    770   1.97  knakahar 		break;
    771   1.97  knakahar #endif
    772   1.97  knakahar #ifdef INET6
    773   1.97  knakahar 	case AF_INET6:
    774   1.97  knakahar 		error = in6_gif_detach(sc);
    775   1.97  knakahar 		break;
    776   1.97  knakahar #endif
    777   1.97  knakahar 	default:
    778   1.97  knakahar 		error = EINVAL;
    779   1.97  knakahar 		break;
    780   1.97  knakahar 	}
    781   1.97  knakahar 
    782   1.97  knakahar 	return error;
    783   1.97  knakahar }
    784   1.97  knakahar 
    785  1.114  knakahar static void
    786  1.114  knakahar gif_encap_pause(struct gif_softc *sc)
    787  1.114  knakahar {
    788  1.114  knakahar 	struct ifnet *ifp = &sc->gif_if;
    789  1.114  knakahar 	uint64_t where;
    790  1.114  knakahar 
    791  1.114  knakahar 	ifp->if_flags &= ~IFF_RUNNING;
    792  1.114  knakahar 	/* membar_sync() is done in xc_broadcast(). */
    793  1.114  knakahar 
    794  1.114  knakahar 	/*
    795  1.114  knakahar 	 * Wait for softint_execute()(ipintr() or ip6intr())
    796  1.114  knakahar 	 * completion done by other CPUs which already run over if_flags
    797  1.114  knakahar 	 * check in in_gif_input() or in6_gif_input().
    798  1.114  knakahar 	 * Furthermore, wait for gif_output() completion too.
    799  1.114  knakahar 	 */
    800  1.114  knakahar 	where = xc_broadcast(0, (xcfunc_t)nullop, NULL, NULL);
    801  1.114  knakahar 	xc_wait(where);
    802  1.114  knakahar }
    803  1.114  knakahar 
    804  1.109  knakahar static int
    805   1.56   thorpej gif_set_tunnel(struct ifnet *ifp, struct sockaddr *src, struct sockaddr *dst)
    806   1.31    itojun {
    807   1.76    dyoung 	struct gif_softc *sc = ifp->if_softc;
    808   1.31    itojun 	struct gif_softc *sc2;
    809   1.71    dyoung 	struct sockaddr *osrc, *odst;
    810   1.96  knakahar 	struct sockaddr *nsrc, *ndst;
    811   1.31    itojun 	int s;
    812   1.31    itojun 	int error;
    813   1.31    itojun 
    814   1.31    itojun 	s = splsoftnet();
    815  1.114  knakahar 	gif_list_lock_enter();
    816   1.31    itojun 
    817   1.68    dyoung 	LIST_FOREACH(sc2, &gif_softc_list, gif_list) {
    818   1.31    itojun 		if (sc2 == sc)
    819   1.31    itojun 			continue;
    820   1.31    itojun 		if (!sc2->gif_pdst || !sc2->gif_psrc)
    821   1.31    itojun 			continue;
    822   1.31    itojun 		/* can't configure same pair of address onto two gifs */
    823   1.71    dyoung 		if (sockaddr_cmp(sc2->gif_pdst, dst) == 0 &&
    824   1.71    dyoung 		    sockaddr_cmp(sc2->gif_psrc, src) == 0) {
    825   1.91  knakahar 			/* continue to use the old configureation. */
    826  1.114  knakahar 			gif_list_lock_exit();
    827   1.96  knakahar 			splx(s);
    828   1.96  knakahar 			return EADDRNOTAVAIL;
    829   1.31    itojun 		}
    830   1.31    itojun 
    831   1.31    itojun 		/* XXX both end must be valid? (I mean, not 0.0.0.0) */
    832   1.31    itojun 	}
    833   1.31    itojun 
    834   1.96  knakahar 	if ((nsrc = sockaddr_dup(src, M_WAITOK)) == NULL) {
    835  1.114  knakahar 		gif_list_lock_exit();
    836   1.96  knakahar 		splx(s);
    837   1.96  knakahar 		return ENOMEM;
    838   1.96  knakahar 	}
    839   1.96  knakahar 	if ((ndst = sockaddr_dup(dst, M_WAITOK)) == NULL) {
    840   1.96  knakahar 		sockaddr_free(nsrc);
    841  1.114  knakahar 		gif_list_lock_exit();
    842   1.96  knakahar 		splx(s);
    843   1.96  knakahar 		return ENOMEM;
    844   1.96  knakahar 	}
    845   1.96  knakahar 
    846  1.114  knakahar 	gif_encap_pause(sc);
    847  1.114  knakahar 
    848   1.96  knakahar 	/* Firstly, clear old configurations. */
    849   1.31    itojun 	/* XXX we can detach from both, but be polite just in case */
    850   1.31    itojun 	if (sc->gif_psrc)
    851   1.97  knakahar 		(void)gif_encap_detach(sc);
    852   1.31    itojun 
    853   1.96  knakahar 	/*
    854   1.96  knakahar 	 * Secondly, try to set new configurations.
    855   1.96  knakahar 	 * If the setup failed, rollback to old configurations.
    856   1.96  knakahar 	 */
    857   1.96  knakahar 	do {
    858   1.96  knakahar 		osrc = sc->gif_psrc;
    859   1.96  knakahar 		odst = sc->gif_pdst;
    860   1.96  knakahar 		sc->gif_psrc = nsrc;
    861   1.96  knakahar 		sc->gif_pdst = ndst;
    862   1.33    itojun 
    863   1.97  knakahar 		error = gif_encap_attach(sc);
    864   1.96  knakahar 		if (error) {
    865   1.96  knakahar 			/* rollback to the last configuration. */
    866   1.96  knakahar 			nsrc = osrc;
    867   1.96  knakahar 			ndst = odst;
    868   1.96  knakahar 			osrc = sc->gif_psrc;
    869   1.96  knakahar 			odst = sc->gif_pdst;
    870   1.31    itojun 
    871   1.96  knakahar 			continue;
    872   1.96  knakahar 		}
    873   1.96  knakahar 	} while (error != 0 && (nsrc != NULL && ndst != NULL));
    874   1.96  knakahar 	/* Thirdly, even rollback failed, clear configurations. */
    875   1.96  knakahar 	if (error) {
    876   1.96  knakahar 		osrc = sc->gif_psrc;
    877   1.96  knakahar 		odst = sc->gif_pdst;
    878   1.96  knakahar 		sc->gif_psrc = NULL;
    879   1.96  knakahar 		sc->gif_pdst = NULL;
    880   1.31    itojun 	}
    881   1.31    itojun 
    882   1.31    itojun 	if (osrc)
    883   1.71    dyoung 		sockaddr_free(osrc);
    884   1.31    itojun 	if (odst)
    885   1.71    dyoung 		sockaddr_free(odst);
    886   1.31    itojun 
    887   1.31    itojun 	if (sc->gif_psrc && sc->gif_pdst)
    888   1.31    itojun 		ifp->if_flags |= IFF_RUNNING;
    889   1.31    itojun 	else
    890   1.31    itojun 		ifp->if_flags &= ~IFF_RUNNING;
    891   1.92  knakahar 
    892  1.114  knakahar 	gif_list_lock_exit();
    893   1.31    itojun 	splx(s);
    894   1.31    itojun 	return error;
    895   1.31    itojun }
    896   1.31    itojun 
    897  1.109  knakahar static void
    898   1.56   thorpej gif_delete_tunnel(struct ifnet *ifp)
    899   1.12   thorpej {
    900   1.76    dyoung 	struct gif_softc *sc = ifp->if_softc;
    901   1.12   thorpej 	int s;
    902   1.12   thorpej 
    903   1.12   thorpej 	s = splsoftnet();
    904  1.114  knakahar 	gif_list_lock_enter();
    905   1.12   thorpej 
    906  1.114  knakahar 	gif_encap_pause(sc);
    907   1.12   thorpej 	if (sc->gif_psrc) {
    908   1.71    dyoung 		sockaddr_free(sc->gif_psrc);
    909   1.12   thorpej 		sc->gif_psrc = NULL;
    910   1.12   thorpej 	}
    911   1.12   thorpej 	if (sc->gif_pdst) {
    912   1.71    dyoung 		sockaddr_free(sc->gif_pdst);
    913   1.12   thorpej 		sc->gif_pdst = NULL;
    914   1.12   thorpej 	}
    915   1.31    itojun 	/* it is safe to detach from both */
    916   1.31    itojun #ifdef INET
    917   1.31    itojun 	(void)in_gif_detach(sc);
    918   1.31    itojun #endif
    919   1.31    itojun #ifdef INET6
    920   1.31    itojun 	(void)in6_gif_detach(sc);
    921   1.31    itojun #endif
    922   1.12   thorpej 
    923   1.31    itojun 	if (sc->gif_psrc && sc->gif_pdst)
    924   1.31    itojun 		ifp->if_flags |= IFF_RUNNING;
    925   1.31    itojun 	else
    926   1.31    itojun 		ifp->if_flags &= ~IFF_RUNNING;
    927  1.114  knakahar 
    928  1.114  knakahar 	gif_list_lock_exit();
    929   1.12   thorpej 	splx(s);
    930    1.2    itojun }
    931  1.114  knakahar 
    932  1.114  knakahar static void
    933  1.114  knakahar gif_list_lock_enter(void)
    934  1.114  knakahar {
    935  1.114  knakahar 
    936  1.114  knakahar 	/* XXX future work
    937  1.114  knakahar 	 * should change interruptable lock.
    938  1.114  knakahar 	 */
    939  1.114  knakahar 	KERNEL_LOCK(1, NULL);
    940  1.114  knakahar }
    941  1.114  knakahar 
    942  1.114  knakahar static void
    943  1.114  knakahar gif_list_lock_exit(void)
    944  1.114  knakahar {
    945  1.114  knakahar 
    946  1.114  knakahar 	/* XXX future work
    947  1.114  knakahar 	 * should change interruptable lock.
    948  1.114  knakahar 	 */
    949  1.114  knakahar 	KERNEL_UNLOCK_ONE(NULL);
    950  1.114  knakahar }
    951