Home | History | Annotate | Line # | Download | only in net
if_stf.c revision 1.98
      1  1.98  christos /*	$NetBSD: if_stf.c,v 1.98 2016/08/07 17:38:34 christos Exp $	*/
      2  1.59        ad /*	$KAME: if_stf.c,v 1.62 2001/06/07 22:32:16 itojun Exp $ */
      3   1.1    itojun 
      4   1.1    itojun /*
      5   1.1    itojun  * Copyright (C) 2000 WIDE Project.
      6   1.1    itojun  * All rights reserved.
      7   1.1    itojun  *
      8   1.1    itojun  * Redistribution and use in source and binary forms, with or without
      9   1.1    itojun  * modification, are permitted provided that the following conditions
     10   1.1    itojun  * are met:
     11   1.1    itojun  * 1. Redistributions of source code must retain the above copyright
     12   1.1    itojun  *    notice, this list of conditions and the following disclaimer.
     13   1.1    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1    itojun  *    notice, this list of conditions and the following disclaimer in the
     15   1.1    itojun  *    documentation and/or other materials provided with the distribution.
     16   1.1    itojun  * 3. Neither the name of the project nor the names of its contributors
     17   1.1    itojun  *    may be used to endorse or promote products derived from this software
     18   1.1    itojun  *    without specific prior written permission.
     19   1.1    itojun  *
     20   1.1    itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     21   1.1    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22   1.1    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23   1.1    itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     24   1.1    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25   1.1    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26   1.1    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27   1.1    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28   1.1    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29   1.1    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30   1.1    itojun  * SUCH DAMAGE.
     31   1.1    itojun  */
     32   1.1    itojun 
     33   1.1    itojun /*
     34  1.11    itojun  * 6to4 interface, based on RFC3056.
     35   1.1    itojun  *
     36   1.1    itojun  * 6to4 interface is NOT capable of link-layer (I mean, IPv4) multicasting.
     37   1.1    itojun  * There is no address mapping defined from IPv6 multicast address to IPv4
     38   1.1    itojun  * address.  Therefore, we do not have IFF_MULTICAST on the interface.
     39   1.1    itojun  *
     40   1.1    itojun  * Due to the lack of address mapping for link-local addresses, we cannot
     41   1.1    itojun  * throw packets toward link-local addresses (fe80::x).  Also, we cannot throw
     42   1.1    itojun  * packets to link-local multicast addresses (ff02::x).
     43   1.1    itojun  *
     44   1.1    itojun  * Here are interesting symptoms due to the lack of link-local address:
     45   1.1    itojun  *
     46   1.1    itojun  * Unicast routing exchange:
     47   1.2    itojun  * - RIPng: Impossible.  Uses link-local multicast packet toward ff02::9,
     48   1.1    itojun  *   and link-local addresses as nexthop.
     49   1.1    itojun  * - OSPFv6: Impossible.  OSPFv6 assumes that there's link-local address
     50   1.1    itojun  *   assigned to the link, and makes use of them.  Also, HELLO packets use
     51   1.1    itojun  *   link-local multicast addresses (ff02::5 and ff02::6).
     52   1.1    itojun  * - BGP4+: Maybe.  You can only use global address as nexthop, and global
     53   1.1    itojun  *   address as TCP endpoint address.
     54   1.1    itojun  *
     55   1.1    itojun  * Multicast routing protocols:
     56   1.1    itojun  * - PIM: Hello packet cannot be used to discover adjacent PIM routers.
     57   1.1    itojun  *   Adjacent PIM routers must be configured manually (is it really spec-wise
     58   1.1    itojun  *   correct thing to do?).
     59   1.1    itojun  *
     60   1.1    itojun  * ICMPv6:
     61   1.1    itojun  * - Redirects cannot be used due to the lack of link-local address.
     62   1.1    itojun  *
     63  1.45     perry  * stf interface does not have, and will not need, a link-local address.
     64  1.11    itojun  * It seems to have no real benefit and does not help the above symptoms much.
     65  1.11    itojun  * Even if we assign link-locals to interface, we cannot really
     66  1.11    itojun  * use link-local unicast/multicast on top of 6to4 cloud (since there's no
     67  1.11    itojun  * encapsulation defined for link-local address), and the above analysis does
     68  1.11    itojun  * not change.  RFC3056 does not mandate the assignment of link-local address
     69  1.11    itojun  * either.
     70   1.1    itojun  *
     71   1.1    itojun  * 6to4 interface has security issues.  Refer to
     72   1.1    itojun  * http://playground.iijlab.net/i-d/draft-itojun-ipv6-transition-abuse-00.txt
     73   1.1    itojun  * for details.  The code tries to filter out some of malicious packets.
     74   1.1    itojun  * Note that there is no way to be 100% secure.
     75   1.1    itojun  */
     76  1.21     lukem 
     77  1.21     lukem #include <sys/cdefs.h>
     78  1.98  christos __KERNEL_RCSID(0, "$NetBSD: if_stf.c,v 1.98 2016/08/07 17:38:34 christos Exp $");
     79   1.1    itojun 
     80  1.82     pooka #ifdef _KERNEL_OPT
     81   1.3    itojun #include "opt_inet.h"
     82  1.98  christos #include "stf.h"
     83  1.98  christos #include "gif.h"	/*XXX*/
     84  1.82     pooka #endif
     85  1.82     pooka 
     86  1.80  christos #ifndef INET6
     87  1.80  christos 	#error "pseudo-device stf requires options INET6"
     88  1.80  christos #endif
     89   1.1    itojun 
     90   1.1    itojun #include <sys/param.h>
     91   1.1    itojun #include <sys/systm.h>
     92   1.1    itojun #include <sys/socket.h>
     93   1.1    itojun #include <sys/sockio.h>
     94   1.1    itojun #include <sys/mbuf.h>
     95   1.1    itojun #include <sys/errno.h>
     96   1.1    itojun #include <sys/ioctl.h>
     97  1.46      tron #include <sys/proc.h>
     98   1.5   thorpej #include <sys/queue.h>
     99  1.10    itojun #include <sys/syslog.h>
    100  1.98  christos #include <sys/device.h>
    101  1.98  christos #include <sys/module.h>
    102  1.51      elad 
    103  1.62        ad #include <sys/cpu.h>
    104   1.1    itojun 
    105   1.1    itojun #include <net/if.h>
    106   1.1    itojun #include <net/route.h>
    107   1.1    itojun #include <net/netisr.h>
    108   1.1    itojun #include <net/if_types.h>
    109   1.1    itojun #include <net/if_stf.h>
    110   1.1    itojun 
    111   1.1    itojun #include <netinet/in.h>
    112   1.1    itojun #include <netinet/in_systm.h>
    113   1.1    itojun #include <netinet/ip.h>
    114   1.1    itojun #include <netinet/ip_var.h>
    115   1.1    itojun #include <netinet/in_var.h>
    116   1.1    itojun 
    117   1.1    itojun #include <netinet/ip6.h>
    118   1.1    itojun #include <netinet6/ip6_var.h>
    119   1.1    itojun #include <netinet6/in6_gif.h>
    120   1.1    itojun #include <netinet6/in6_var.h>
    121   1.1    itojun #include <netinet/ip_ecn.h>
    122   1.1    itojun 
    123   1.1    itojun #include <netinet/ip_encap.h>
    124   1.1    itojun 
    125   1.1    itojun #include <net/net_osdep.h>
    126   1.1    itojun 
    127   1.1    itojun #include <net/bpf.h>
    128   1.1    itojun 
    129   1.1    itojun #if NGIF > 0
    130   1.1    itojun #include <net/if_gif.h>
    131   1.1    itojun #endif
    132   1.1    itojun 
    133  1.81  christos #include "ioconf.h"
    134  1.81  christos 
    135   1.1    itojun #define IN6_IS_ADDR_6TO4(x)	(ntohs((x)->s6_addr16[0]) == 0x2002)
    136  1.57    dyoung #define GET_V4(x)	((const struct in_addr *)(&(x)->s6_addr16[1]))
    137   1.1    itojun 
    138   1.1    itojun struct stf_softc {
    139   1.1    itojun 	struct ifnet	sc_if;	   /* common area */
    140  1.60    dyoung 	struct route	sc_ro;
    141   1.1    itojun 	const struct encaptab *encap_cookie;
    142   1.5   thorpej 	LIST_ENTRY(stf_softc) sc_list;
    143   1.1    itojun };
    144   1.1    itojun 
    145  1.50   thorpej static LIST_HEAD(, stf_softc) stf_softc_list;
    146   1.5   thorpej 
    147  1.50   thorpej static int	stf_clone_create(struct if_clone *, int);
    148  1.50   thorpej static int	stf_clone_destroy(struct ifnet *);
    149   1.5   thorpej 
    150   1.5   thorpej struct if_clone stf_cloner =
    151   1.5   thorpej     IF_CLONE_INITIALIZER("stf", stf_clone_create, stf_clone_destroy);
    152   1.1    itojun 
    153   1.1    itojun #if NGIF > 0
    154   1.1    itojun extern int ip_gif_ttl;	/*XXX*/
    155   1.1    itojun #else
    156   1.1    itojun static int ip_gif_ttl = 40;	/*XXX*/
    157   1.1    itojun #endif
    158   1.1    itojun 
    159  1.85  riastrad extern struct domain inetdomain;
    160  1.85  riastrad 
    161  1.86  knakahar static const struct encapsw in_stf_encapsw =
    162  1.85  riastrad {
    163  1.87  knakahar 	.encapsw4 = {
    164  1.86  knakahar 		.pr_input	= in_stf_input,
    165  1.86  knakahar 		.pr_ctlinput	= NULL,
    166  1.86  knakahar 	}
    167  1.23    itojun };
    168   1.1    itojun 
    169  1.50   thorpej static int stf_encapcheck(struct mbuf *, int, int, void *);
    170  1.50   thorpej static struct in6_ifaddr *stf_getsrcifa6(struct ifnet *);
    171  1.57    dyoung static int stf_output(struct ifnet *, struct mbuf *, const struct sockaddr *,
    172  1.88     ozaki 	const struct rtentry *);
    173  1.57    dyoung static int isrfc1918addr(const struct in_addr *);
    174  1.57    dyoung static int stf_checkaddr4(struct stf_softc *, const struct in_addr *,
    175  1.50   thorpej 	struct ifnet *);
    176  1.57    dyoung static int stf_checkaddr6(struct stf_softc *, const struct in6_addr *,
    177  1.50   thorpej 	struct ifnet *);
    178  1.67    dyoung static void stf_rtrequest(int, struct rtentry *, const struct rt_addrinfo *);
    179  1.58  christos static int stf_ioctl(struct ifnet *, u_long, void *);
    180   1.1    itojun 
    181   1.5   thorpej /* ARGSUSED */
    182   1.1    itojun void
    183  1.54  christos stfattach(int count)
    184   1.5   thorpej {
    185   1.5   thorpej 
    186  1.98  christos 	/*
    187  1.98  christos 	 * Nothing to do here, initialization is handled by the
    188  1.98  christos 	 * module initialization code in stfinit() below).
    189  1.98  christos 	 */
    190  1.98  christos }
    191  1.98  christos 
    192  1.98  christos static void
    193  1.98  christos stfinit(void)
    194  1.98  christos {
    195  1.98  christos 
    196   1.5   thorpej 	LIST_INIT(&stf_softc_list);
    197   1.5   thorpej 	if_clone_attach(&stf_cloner);
    198   1.5   thorpej }
    199   1.5   thorpej 
    200  1.50   thorpej static int
    201  1.98  christos stfdetach(void)
    202  1.98  christos {
    203  1.98  christos 	int error = 0;
    204  1.98  christos 
    205  1.98  christos 	if (!LIST_EMPTY(&stf_softc_list))
    206  1.98  christos 		error = EBUSY;
    207  1.98  christos 
    208  1.98  christos 	if (error == 0)
    209  1.98  christos 		if_clone_detach(&stf_cloner);
    210  1.98  christos 
    211  1.98  christos 	return error;
    212  1.98  christos }
    213  1.98  christos 
    214  1.98  christos static int
    215  1.50   thorpej stf_clone_create(struct if_clone *ifc, int unit)
    216   1.1    itojun {
    217   1.1    itojun 	struct stf_softc *sc;
    218  1.93  knakahar 	int error;
    219   1.1    itojun 
    220  1.92  knakahar 	sc = malloc(sizeof(struct stf_softc), M_DEVBUF, M_WAIT|M_ZERO);
    221  1.92  knakahar 	if_initname(&sc->sc_if, ifc->ifc_name, unit);
    222  1.92  knakahar 
    223  1.93  knakahar 	error = encap_lock_enter();
    224  1.93  knakahar 	if (error) {
    225  1.93  knakahar 		free(sc, M_DEVBUF);
    226  1.93  knakahar 		return error;
    227  1.93  knakahar 	}
    228  1.93  knakahar 
    229   1.5   thorpej 	if (LIST_FIRST(&stf_softc_list) != NULL) {
    230   1.5   thorpej 		/* Only one stf interface is allowed. */
    231  1.92  knakahar 		encap_lock_exit();
    232  1.92  knakahar 		free(sc, M_DEVBUF);
    233   1.5   thorpej 		return (EEXIST);
    234   1.5   thorpej 	}
    235   1.5   thorpej 
    236   1.5   thorpej 	sc->encap_cookie = encap_attach_func(AF_INET, IPPROTO_IPV6,
    237  1.86  knakahar 	    stf_encapcheck, &in_stf_encapsw, sc);
    238  1.92  knakahar 	encap_lock_exit();
    239   1.5   thorpej 	if (sc->encap_cookie == NULL) {
    240   1.5   thorpej 		printf("%s: unable to attach encap\n", if_name(&sc->sc_if));
    241   1.5   thorpej 		free(sc, M_DEVBUF);
    242   1.5   thorpej 		return (EIO);	/* XXX */
    243   1.5   thorpej 	}
    244   1.5   thorpej 
    245  1.46      tron 	sc->sc_if.if_mtu    = STF_MTU;
    246   1.5   thorpej 	sc->sc_if.if_flags  = 0;
    247   1.5   thorpej 	sc->sc_if.if_ioctl  = stf_ioctl;
    248   1.5   thorpej 	sc->sc_if.if_output = stf_output;
    249   1.5   thorpej 	sc->sc_if.if_type   = IFT_STF;
    250   1.7   thorpej 	sc->sc_if.if_dlt    = DLT_NULL;
    251   1.5   thorpej 	if_attach(&sc->sc_if);
    252   1.8   thorpej 	if_alloc_sadl(&sc->sc_if);
    253  1.75     joerg 	bpf_attach(&sc->sc_if, DLT_NULL, sizeof(u_int));
    254   1.5   thorpej 	LIST_INSERT_HEAD(&stf_softc_list, sc, sc_list);
    255   1.5   thorpej 	return (0);
    256   1.5   thorpej }
    257   1.5   thorpej 
    258  1.50   thorpej static int
    259  1.50   thorpej stf_clone_destroy(struct ifnet *ifp)
    260   1.5   thorpej {
    261   1.5   thorpej 	struct stf_softc *sc = (void *) ifp;
    262   1.5   thorpej 
    263  1.92  knakahar 	encap_lock_enter();
    264   1.5   thorpej 	LIST_REMOVE(sc, sc_list);
    265   1.5   thorpej 	encap_detach(sc->encap_cookie);
    266  1.92  knakahar 	encap_lock_exit();
    267  1.75     joerg 	bpf_detach(ifp);
    268   1.5   thorpej 	if_detach(ifp);
    269  1.60    dyoung 	rtcache_free(&sc->sc_ro);
    270   1.5   thorpej 	free(sc, M_DEVBUF);
    271  1.41     peter 
    272  1.41     peter 	return (0);
    273   1.1    itojun }
    274   1.1    itojun 
    275   1.1    itojun static int
    276  1.54  christos stf_encapcheck(struct mbuf *m, int off, int proto, void *arg)
    277   1.1    itojun {
    278   1.1    itojun 	struct ip ip;
    279   1.1    itojun 	struct in6_ifaddr *ia6;
    280   1.1    itojun 	struct stf_softc *sc;
    281   1.1    itojun 	struct in_addr a, b;
    282   1.1    itojun 
    283   1.1    itojun 	sc = (struct stf_softc *)arg;
    284   1.1    itojun 	if (sc == NULL)
    285   1.1    itojun 		return 0;
    286   1.1    itojun 
    287   1.1    itojun 	if ((sc->sc_if.if_flags & IFF_UP) == 0)
    288   1.1    itojun 		return 0;
    289   1.1    itojun 
    290  1.14    itojun 	/* IFF_LINK0 means "no decapsulation" */
    291  1.14    itojun 	if ((sc->sc_if.if_flags & IFF_LINK0) != 0)
    292  1.14    itojun 		return 0;
    293  1.14    itojun 
    294   1.1    itojun 	if (proto != IPPROTO_IPV6)
    295   1.1    itojun 		return 0;
    296   1.1    itojun 
    297  1.58  christos 	m_copydata(m, 0, sizeof(ip), (void *)&ip);
    298   1.1    itojun 
    299   1.1    itojun 	if (ip.ip_v != 4)
    300   1.1    itojun 		return 0;
    301   1.1    itojun 
    302   1.1    itojun 	ia6 = stf_getsrcifa6(&sc->sc_if);
    303   1.1    itojun 	if (ia6 == NULL)
    304   1.1    itojun 		return 0;
    305   1.1    itojun 
    306   1.1    itojun 	/*
    307   1.1    itojun 	 * check if IPv4 dst matches the IPv4 address derived from the
    308   1.1    itojun 	 * local 6to4 address.
    309   1.1    itojun 	 * success on: dst = 10.1.1.1, ia6->ia_addr = 2002:0a01:0101:...
    310   1.1    itojun 	 */
    311  1.69    cegger 	if (memcmp(GET_V4(&ia6->ia_addr.sin6_addr), &ip.ip_dst,
    312   1.1    itojun 	    sizeof(ip.ip_dst)) != 0)
    313   1.1    itojun 		return 0;
    314   1.1    itojun 
    315   1.1    itojun 	/*
    316   1.1    itojun 	 * check if IPv4 src matches the IPv4 address derived from the
    317   1.1    itojun 	 * local 6to4 address masked by prefixmask.
    318   1.1    itojun 	 * success on: src = 10.1.1.1, ia6->ia_addr = 2002:0a00:.../24
    319   1.1    itojun 	 * fail on: src = 10.1.1.1, ia6->ia_addr = 2002:0b00:.../24
    320   1.1    itojun 	 */
    321  1.17   thorpej 	memset(&a, 0, sizeof(a));
    322   1.1    itojun 	a.s_addr = GET_V4(&ia6->ia_addr.sin6_addr)->s_addr;
    323   1.1    itojun 	a.s_addr &= GET_V4(&ia6->ia_prefixmask.sin6_addr)->s_addr;
    324   1.1    itojun 	b = ip.ip_src;
    325   1.1    itojun 	b.s_addr &= GET_V4(&ia6->ia_prefixmask.sin6_addr)->s_addr;
    326   1.1    itojun 	if (a.s_addr != b.s_addr)
    327   1.1    itojun 		return 0;
    328   1.1    itojun 
    329   1.1    itojun 	/* stf interface makes single side match only */
    330   1.1    itojun 	return 32;
    331   1.1    itojun }
    332   1.1    itojun 
    333   1.1    itojun static struct in6_ifaddr *
    334  1.50   thorpej stf_getsrcifa6(struct ifnet *ifp)
    335   1.1    itojun {
    336  1.44      matt 	struct ifaddr *ifa;
    337   1.1    itojun 	struct in_ifaddr *ia4;
    338   1.1    itojun 	struct sockaddr_in6 *sin6;
    339   1.1    itojun 	struct in_addr in;
    340  1.97     ozaki 	int s;
    341   1.1    itojun 
    342  1.97     ozaki 	s = pserialize_read_enter();
    343  1.97     ozaki 	IFADDR_READER_FOREACH(ifa, ifp) {
    344  1.44      matt 		if (ifa->ifa_addr->sa_family != AF_INET6)
    345   1.1    itojun 			continue;
    346  1.44      matt 		sin6 = (struct sockaddr_in6 *)ifa->ifa_addr;
    347   1.1    itojun 		if (!IN6_IS_ADDR_6TO4(&sin6->sin6_addr))
    348   1.1    itojun 			continue;
    349   1.1    itojun 
    350  1.72   tsutsui 		memcpy(&in, GET_V4(&sin6->sin6_addr), sizeof(in));
    351  1.96     ozaki 		ia4 = in_get_ia(in);
    352   1.1    itojun 		if (ia4 == NULL)
    353   1.1    itojun 			continue;
    354   1.1    itojun 
    355  1.97     ozaki 		pserialize_read_exit(s);
    356  1.97     ozaki 		/* TODO NOMPSAFE */
    357  1.44      matt 		return (struct in6_ifaddr *)ifa;
    358   1.1    itojun 	}
    359  1.97     ozaki 	pserialize_read_exit(s);
    360   1.1    itojun 
    361   1.1    itojun 	return NULL;
    362   1.1    itojun }
    363   1.1    itojun 
    364   1.1    itojun static int
    365  1.57    dyoung stf_output(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst,
    366  1.88     ozaki     const struct rtentry *rt0)
    367   1.1    itojun {
    368  1.63    dyoung 	struct rtentry *rt;
    369   1.1    itojun 	struct stf_softc *sc;
    370  1.57    dyoung 	const struct sockaddr_in6 *dst6;
    371  1.57    dyoung 	const struct in_addr *in4;
    372  1.65      matt 	uint8_t tos;
    373   1.1    itojun 	struct ip *ip;
    374   1.1    itojun 	struct ip6_hdr *ip6;
    375   1.1    itojun 	struct in6_ifaddr *ia6;
    376  1.60    dyoung 	union {
    377  1.60    dyoung 		struct sockaddr		dst;
    378  1.60    dyoung 		struct sockaddr_in	dst4;
    379  1.60    dyoung 	} u;
    380   1.1    itojun 
    381   1.1    itojun 	sc = (struct stf_softc*)ifp;
    382  1.57    dyoung 	dst6 = (const struct sockaddr_in6 *)dst;
    383   1.1    itojun 
    384   1.1    itojun 	/* just in case */
    385   1.1    itojun 	if ((ifp->if_flags & IFF_UP) == 0) {
    386   1.1    itojun 		m_freem(m);
    387   1.1    itojun 		return ENETDOWN;
    388   1.1    itojun 	}
    389   1.1    itojun 
    390   1.1    itojun 	/*
    391   1.1    itojun 	 * If we don't have an ip4 address that match my inner ip6 address,
    392   1.1    itojun 	 * we shouldn't generate output.  Without this check, we'll end up
    393   1.1    itojun 	 * using wrong IPv4 source.
    394   1.1    itojun 	 */
    395   1.1    itojun 	ia6 = stf_getsrcifa6(ifp);
    396   1.1    itojun 	if (ia6 == NULL) {
    397   1.1    itojun 		m_freem(m);
    398  1.26      tron 		ifp->if_oerrors++;
    399   1.1    itojun 		return ENETDOWN;
    400   1.1    itojun 	}
    401   1.1    itojun 
    402   1.1    itojun 	if (m->m_len < sizeof(*ip6)) {
    403   1.1    itojun 		m = m_pullup(m, sizeof(*ip6));
    404  1.26      tron 		if (m == NULL) {
    405  1.26      tron 			ifp->if_oerrors++;
    406   1.1    itojun 			return ENOBUFS;
    407  1.26      tron 		}
    408   1.1    itojun 	}
    409   1.1    itojun 	ip6 = mtod(m, struct ip6_hdr *);
    410   1.1    itojun 	tos = (ntohl(ip6->ip6_flow) >> 20) & 0xff;
    411   1.1    itojun 
    412  1.14    itojun 	/*
    413  1.14    itojun 	 * Pickup the right outer dst addr from the list of candidates.
    414  1.14    itojun 	 * ip6_dst has priority as it may be able to give us shorter IPv4 hops.
    415  1.14    itojun 	 */
    416  1.14    itojun 	if (IN6_IS_ADDR_6TO4(&ip6->ip6_dst))
    417  1.14    itojun 		in4 = GET_V4(&ip6->ip6_dst);
    418  1.14    itojun 	else if (IN6_IS_ADDR_6TO4(&dst6->sin6_addr))
    419  1.14    itojun 		in4 = GET_V4(&dst6->sin6_addr);
    420  1.14    itojun 	else {
    421  1.14    itojun 		m_freem(m);
    422  1.26      tron 		ifp->if_oerrors++;
    423  1.14    itojun 		return ENETUNREACH;
    424  1.14    itojun 	}
    425  1.16    itojun 
    426  1.75     joerg 	bpf_mtap_af(ifp, AF_INET6, m);
    427  1.14    itojun 
    428   1.1    itojun 	M_PREPEND(m, sizeof(struct ip), M_DONTWAIT);
    429   1.1    itojun 	if (m && m->m_len < sizeof(struct ip))
    430   1.1    itojun 		m = m_pullup(m, sizeof(struct ip));
    431  1.26      tron 	if (m == NULL) {
    432  1.26      tron 		ifp->if_oerrors++;
    433   1.1    itojun 		return ENOBUFS;
    434  1.26      tron 	}
    435   1.1    itojun 	ip = mtod(m, struct ip *);
    436   1.1    itojun 
    437  1.17   thorpej 	memset(ip, 0, sizeof(*ip));
    438   1.1    itojun 
    439   1.1    itojun 	bcopy(GET_V4(&((struct sockaddr_in6 *)&ia6->ia_addr)->sin6_addr),
    440   1.1    itojun 	    &ip->ip_src, sizeof(ip->ip_src));
    441  1.72   tsutsui 	memcpy(&ip->ip_dst, in4, sizeof(ip->ip_dst));
    442   1.1    itojun 	ip->ip_p = IPPROTO_IPV6;
    443   1.1    itojun 	ip->ip_ttl = ip_gif_ttl;	/*XXX*/
    444  1.29    itojun 	ip->ip_len = htons(m->m_pkthdr.len);
    445   1.1    itojun 	if (ifp->if_flags & IFF_LINK1)
    446   1.1    itojun 		ip_ecn_ingress(ECN_ALLOWED, &ip->ip_tos, &tos);
    447  1.15    itojun 	else
    448  1.15    itojun 		ip_ecn_ingress(ECN_NOCARE, &ip->ip_tos, &tos);
    449   1.1    itojun 
    450  1.60    dyoung 	sockaddr_in_init(&u.dst4, &ip->ip_dst, 0);
    451  1.63    dyoung 	if ((rt = rtcache_lookup(&sc->sc_ro, &u.dst)) == NULL) {
    452  1.60    dyoung 		m_freem(m);
    453  1.60    dyoung 		ifp->if_oerrors++;
    454  1.60    dyoung 		return ENETUNREACH;
    455   1.1    itojun 	}
    456   1.1    itojun 
    457  1.56     joerg 	/* If the route constitutes infinite encapsulation, punt. */
    458  1.63    dyoung 	if (rt->rt_ifp == ifp) {
    459  1.56     joerg 		rtcache_free(&sc->sc_ro);
    460  1.56     joerg 		m_freem(m);
    461  1.56     joerg 		ifp->if_oerrors++;
    462  1.56     joerg 		return ENETUNREACH;
    463  1.56     joerg 	}
    464  1.56     joerg 
    465  1.25      tron 	ifp->if_opackets++;
    466  1.73  christos 	ifp->if_obytes += m->m_pkthdr.len - sizeof(struct ip);
    467  1.60    dyoung 	return ip_output(m, NULL, &sc->sc_ro, 0, NULL, NULL);
    468   1.1    itojun }
    469   1.1    itojun 
    470   1.1    itojun static int
    471  1.57    dyoung isrfc1918addr(const struct in_addr *in)
    472  1.30    itojun {
    473  1.30    itojun 	/*
    474  1.30    itojun 	 * returns 1 if private address range:
    475  1.30    itojun 	 * 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16
    476  1.30    itojun 	 */
    477  1.30    itojun 	if ((ntohl(in->s_addr) & 0xff000000) >> 24 == 10 ||
    478  1.30    itojun 	    (ntohl(in->s_addr) & 0xfff00000) >> 16 == 172 * 256 + 16 ||
    479  1.30    itojun 	    (ntohl(in->s_addr) & 0xffff0000) >> 16 == 192 * 256 + 168)
    480  1.30    itojun 		return 1;
    481  1.30    itojun 
    482  1.30    itojun 	return 0;
    483  1.30    itojun }
    484  1.30    itojun 
    485  1.30    itojun static int
    486  1.57    dyoung stf_checkaddr4(struct stf_softc *sc, const struct in_addr *in,
    487  1.50   thorpej     struct ifnet *inifp /*incoming interface*/)
    488   1.1    itojun {
    489   1.1    itojun 	struct in_ifaddr *ia4;
    490   1.1    itojun 
    491   1.1    itojun 	/*
    492   1.1    itojun 	 * reject packets with the following address:
    493   1.3    itojun 	 * 224.0.0.0/4 0.0.0.0/8 127.0.0.0/8 255.0.0.0/8
    494   1.1    itojun 	 */
    495   1.3    itojun 	if (IN_MULTICAST(in->s_addr))
    496   1.3    itojun 		return -1;
    497   1.3    itojun 	switch ((ntohl(in->s_addr) & 0xff000000) >> 24) {
    498   1.3    itojun 	case 0: case 127: case 255:
    499   1.1    itojun 		return -1;
    500   1.1    itojun 	}
    501  1.24    itojun 
    502  1.24    itojun 	/*
    503  1.30    itojun 	 * reject packets with private address range.
    504  1.30    itojun 	 * (requirement from RFC3056 section 2 1st paragraph)
    505  1.24    itojun 	 */
    506  1.30    itojun 	if (isrfc1918addr(in))
    507  1.24    itojun 		return -1;
    508   1.1    itojun 
    509   1.1    itojun 	/*
    510  1.32    itojun 	 * reject packet with IPv4 link-local (169.254.0.0/16),
    511  1.32    itojun 	 * as suggested in draft-savola-v6ops-6to4-security-00.txt
    512  1.32    itojun 	 */
    513  1.32    itojun 	if (((ntohl(in->s_addr) & 0xff000000) >> 24) == 169 &&
    514  1.32    itojun 	    ((ntohl(in->s_addr) & 0x00ff0000) >> 16) == 254)
    515  1.32    itojun 		return -1;
    516  1.32    itojun 
    517  1.32    itojun 	/*
    518   1.1    itojun 	 * reject packets with broadcast
    519   1.1    itojun 	 */
    520  1.94     ozaki 	IN_ADDRLIST_READER_FOREACH(ia4) {
    521   1.1    itojun 		if ((ia4->ia_ifa.ifa_ifp->if_flags & IFF_BROADCAST) == 0)
    522   1.1    itojun 			continue;
    523   1.1    itojun 		if (in->s_addr == ia4->ia_broadaddr.sin_addr.s_addr)
    524   1.1    itojun 			return -1;
    525   1.1    itojun 	}
    526   1.1    itojun 
    527   1.1    itojun 	/*
    528   1.1    itojun 	 * perform ingress filter
    529   1.1    itojun 	 */
    530  1.10    itojun 	if (sc && (sc->sc_if.if_flags & IFF_LINK2) == 0 && inifp) {
    531   1.1    itojun 		struct sockaddr_in sin;
    532   1.1    itojun 		struct rtentry *rt;
    533   1.1    itojun 
    534  1.17   thorpej 		memset(&sin, 0, sizeof(sin));
    535   1.1    itojun 		sin.sin_family = AF_INET;
    536   1.1    itojun 		sin.sin_len = sizeof(struct sockaddr_in);
    537   1.1    itojun 		sin.sin_addr = *in;
    538   1.1    itojun 		rt = rtalloc1((struct sockaddr *)&sin, 0);
    539  1.10    itojun 		if (!rt || rt->rt_ifp != inifp) {
    540  1.10    itojun #if 0
    541  1.10    itojun 			log(LOG_WARNING, "%s: packet from 0x%x dropped "
    542  1.10    itojun 			    "due to ingress filter\n", if_name(&sc->sc_if),
    543  1.65      matt 			    (uint32_t)ntohl(sin.sin_addr.s_addr));
    544  1.10    itojun #endif
    545  1.10    itojun 			if (rt)
    546  1.10    itojun 				rtfree(rt);
    547   1.1    itojun 			return -1;
    548   1.1    itojun 		}
    549   1.1    itojun 		rtfree(rt);
    550   1.1    itojun 	}
    551   1.1    itojun 
    552   1.1    itojun 	return 0;
    553   1.1    itojun }
    554   1.1    itojun 
    555   1.1    itojun static int
    556  1.57    dyoung stf_checkaddr6(struct stf_softc *sc, const struct in6_addr *in6,
    557  1.50   thorpej     struct ifnet *inifp /*incoming interface*/)
    558   1.1    itojun {
    559  1.32    itojun 
    560   1.1    itojun 	/*
    561   1.1    itojun 	 * check 6to4 addresses
    562   1.1    itojun 	 */
    563   1.1    itojun 	if (IN6_IS_ADDR_6TO4(in6))
    564  1.10    itojun 		return stf_checkaddr4(sc, GET_V4(in6), inifp);
    565   1.1    itojun 
    566   1.1    itojun 	/*
    567   1.1    itojun 	 * reject anything that look suspicious.  the test is implemented
    568   1.1    itojun 	 * in ip6_input too, but we check here as well to
    569   1.1    itojun 	 * (1) reject bad packets earlier, and
    570   1.1    itojun 	 * (2) to be safe against future ip6_input change.
    571   1.1    itojun 	 */
    572   1.1    itojun 	if (IN6_IS_ADDR_V4COMPAT(in6) || IN6_IS_ADDR_V4MAPPED(in6))
    573  1.32    itojun 		return -1;
    574  1.32    itojun 
    575  1.32    itojun 	/*
    576  1.32    itojun 	 * reject link-local and site-local unicast
    577  1.32    itojun 	 * as suggested in draft-savola-v6ops-6to4-security-00.txt
    578  1.32    itojun 	 */
    579  1.32    itojun 	if (IN6_IS_ADDR_LINKLOCAL(in6) || IN6_IS_ADDR_SITELOCAL(in6))
    580  1.32    itojun 		return -1;
    581  1.32    itojun 
    582  1.32    itojun 	/*
    583  1.32    itojun 	 * reject node-local and link-local multicast
    584  1.32    itojun 	 * as suggested in draft-savola-v6ops-6to4-security-00.txt
    585  1.32    itojun 	 */
    586  1.32    itojun 	if (IN6_IS_ADDR_MC_NODELOCAL(in6) || IN6_IS_ADDR_MC_LINKLOCAL(in6))
    587   1.1    itojun 		return -1;
    588   1.1    itojun 
    589   1.1    itojun 	return 0;
    590   1.1    itojun }
    591   1.1    itojun 
    592  1.87  knakahar void
    593  1.87  knakahar in_stf_input(struct mbuf *m, int off, int proto)
    594   1.1    itojun {
    595  1.86  knakahar 	int s;
    596   1.1    itojun 	struct stf_softc *sc;
    597   1.1    itojun 	struct ip *ip;
    598   1.1    itojun 	struct ip6_hdr *ip6;
    599  1.65      matt 	uint8_t otos, itos;
    600   1.1    itojun 	struct ifnet *ifp;
    601  1.79     rmind 	size_t pktlen;
    602   1.1    itojun 
    603   1.1    itojun 	if (proto != IPPROTO_IPV6) {
    604   1.1    itojun 		m_freem(m);
    605  1.87  knakahar 		return;
    606   1.1    itojun 	}
    607   1.1    itojun 
    608   1.1    itojun 	ip = mtod(m, struct ip *);
    609   1.1    itojun 
    610   1.1    itojun 	sc = (struct stf_softc *)encap_getarg(m);
    611   1.1    itojun 
    612   1.1    itojun 	if (sc == NULL || (sc->sc_if.if_flags & IFF_UP) == 0) {
    613   1.1    itojun 		m_freem(m);
    614  1.87  knakahar 		return;
    615   1.1    itojun 	}
    616   1.1    itojun 
    617   1.1    itojun 	ifp = &sc->sc_if;
    618   1.1    itojun 
    619   1.1    itojun 	/*
    620   1.1    itojun 	 * perform sanity check against outer src/dst.
    621   1.1    itojun 	 * for source, perform ingress filter as well.
    622   1.1    itojun 	 */
    623  1.10    itojun 	if (stf_checkaddr4(sc, &ip->ip_dst, NULL) < 0 ||
    624  1.90     ozaki 	    stf_checkaddr4(sc, &ip->ip_src, m_get_rcvif_NOMPSAFE(m)) < 0) {
    625   1.1    itojun 		m_freem(m);
    626  1.87  knakahar 		return;
    627   1.1    itojun 	}
    628   1.1    itojun 
    629   1.1    itojun 	otos = ip->ip_tos;
    630   1.1    itojun 	m_adj(m, off);
    631   1.1    itojun 
    632   1.1    itojun 	if (m->m_len < sizeof(*ip6)) {
    633   1.1    itojun 		m = m_pullup(m, sizeof(*ip6));
    634   1.1    itojun 		if (!m)
    635  1.87  knakahar 			return;
    636   1.1    itojun 	}
    637   1.1    itojun 	ip6 = mtod(m, struct ip6_hdr *);
    638   1.1    itojun 
    639   1.1    itojun 	/*
    640   1.1    itojun 	 * perform sanity check against inner src/dst.
    641   1.1    itojun 	 * for source, perform ingress filter as well.
    642   1.1    itojun 	 */
    643  1.10    itojun 	if (stf_checkaddr6(sc, &ip6->ip6_dst, NULL) < 0 ||
    644  1.90     ozaki 	    stf_checkaddr6(sc, &ip6->ip6_src, m_get_rcvif_NOMPSAFE(m)) < 0) {
    645   1.1    itojun 		m_freem(m);
    646  1.87  knakahar 		return;
    647   1.1    itojun 	}
    648   1.1    itojun 
    649   1.1    itojun 	itos = (ntohl(ip6->ip6_flow) >> 20) & 0xff;
    650   1.1    itojun 	if ((ifp->if_flags & IFF_LINK1) != 0)
    651   1.1    itojun 		ip_ecn_egress(ECN_ALLOWED, &otos, &itos);
    652  1.15    itojun 	else
    653  1.15    itojun 		ip_ecn_egress(ECN_NOCARE, &otos, &itos);
    654   1.1    itojun 	ip6->ip6_flow &= ~htonl(0xff << 20);
    655  1.65      matt 	ip6->ip6_flow |= htonl((uint32_t)itos << 20);
    656   1.1    itojun 
    657  1.79     rmind 	pktlen = m->m_pkthdr.len;
    658  1.89     ozaki 	m_set_rcvif(m, ifp);
    659  1.45     perry 
    660  1.75     joerg 	bpf_mtap_af(ifp, AF_INET6, m);
    661   1.1    itojun 
    662   1.1    itojun 	/*
    663   1.1    itojun 	 * Put the packet to the network layer input queue according to the
    664   1.1    itojun 	 * specified address family.
    665   1.1    itojun 	 * See net/if_gif.c for possible issues with packet processing
    666   1.1    itojun 	 * reorder due to extra queueing.
    667   1.1    itojun 	 */
    668   1.1    itojun 
    669  1.13   thorpej 	s = splnet();
    670  1.79     rmind 	if (__predict_true(pktq_enqueue(ip6_pktq, m, 0))) {
    671  1.79     rmind 		ifp->if_ipackets++;
    672  1.79     rmind 		ifp->if_ibytes += pktlen;
    673  1.79     rmind 	} else {
    674   1.1    itojun 		m_freem(m);
    675   1.1    itojun 	}
    676   1.1    itojun 	splx(s);
    677  1.86  knakahar 
    678  1.87  knakahar 	return;
    679   1.1    itojun }
    680   1.1    itojun 
    681   1.1    itojun /* ARGSUSED */
    682   1.1    itojun static void
    683  1.54  christos stf_rtrequest(int cmd, struct rtentry *rt,
    684  1.67    dyoung     const struct rt_addrinfo *info)
    685   1.1    itojun {
    686  1.46      tron 	if (rt != NULL) {
    687  1.46      tron 		struct stf_softc *sc;
    688   1.1    itojun 
    689  1.46      tron 		sc = LIST_FIRST(&stf_softc_list);
    690  1.46      tron 		rt->rt_rmx.rmx_mtu = (sc != NULL) ? sc->sc_if.if_mtu : STF_MTU;
    691  1.46      tron 	}
    692   1.1    itojun }
    693   1.1    itojun 
    694   1.1    itojun static int
    695  1.58  christos stf_ioctl(struct ifnet *ifp, u_long cmd, void *data)
    696   1.1    itojun {
    697  1.46      tron 	struct ifaddr		*ifa;
    698  1.64    dyoung 	struct ifreq		*ifr = data;
    699  1.46      tron 	struct sockaddr_in6	*sin6;
    700  1.46      tron 	int			error;
    701   1.1    itojun 
    702   1.1    itojun 	error = 0;
    703   1.1    itojun 	switch (cmd) {
    704  1.68    dyoung 	case SIOCINITIFADDR:
    705   1.1    itojun 		ifa = (struct ifaddr *)data;
    706   1.1    itojun 		if (ifa == NULL || ifa->ifa_addr->sa_family != AF_INET6) {
    707   1.1    itojun 			error = EAFNOSUPPORT;
    708   1.1    itojun 			break;
    709   1.1    itojun 		}
    710   1.1    itojun 		sin6 = (struct sockaddr_in6 *)ifa->ifa_addr;
    711  1.30    itojun 		if (IN6_IS_ADDR_6TO4(&sin6->sin6_addr) &&
    712  1.30    itojun 		    !isrfc1918addr(GET_V4(&sin6->sin6_addr))) {
    713   1.1    itojun 			ifa->ifa_rtrequest = stf_rtrequest;
    714   1.1    itojun 			ifp->if_flags |= IFF_UP;
    715   1.1    itojun 		} else
    716   1.1    itojun 			error = EINVAL;
    717   1.1    itojun 		break;
    718   1.1    itojun 
    719   1.1    itojun 	case SIOCADDMULTI:
    720   1.1    itojun 	case SIOCDELMULTI:
    721  1.61    dyoung 		if (ifr != NULL &&
    722  1.61    dyoung 		    ifreq_getaddr(cmd, ifr)->sa_family == AF_INET6)
    723   1.1    itojun 			;
    724   1.1    itojun 		else
    725   1.1    itojun 			error = EAFNOSUPPORT;
    726   1.1    itojun 		break;
    727   1.1    itojun 
    728  1.46      tron 	case SIOCSIFMTU:
    729  1.64    dyoung 		if (ifr->ifr_mtu < STF_MTU_MIN || ifr->ifr_mtu > STF_MTU_MAX)
    730  1.46      tron 			return EINVAL;
    731  1.64    dyoung 		else if ((error = ifioctl_common(ifp, cmd, data)) == ENETRESET)
    732  1.64    dyoung 			error = 0;
    733  1.46      tron 		break;
    734  1.46      tron 
    735   1.1    itojun 	default:
    736  1.68    dyoung 		error = ifioctl_common(ifp, cmd, data);
    737   1.1    itojun 		break;
    738   1.1    itojun 	}
    739   1.1    itojun 
    740   1.1    itojun 	return error;
    741   1.1    itojun }
    742  1.98  christos 
    743  1.98  christos /*
    744  1.98  christos  * Module infrastructure
    745  1.98  christos  */
    746  1.98  christos #include "if_module.h"
    747  1.98  christos 
    748  1.98  christos IF_MODULE(MODULE_CLASS_DRIVER, stf, "")
    749