Home | History | Annotate | Line # | Download | only in netinet6
ip6_forward.c revision 1.74.2.6
      1  1.74.2.6     skrll /*	$NetBSD: ip6_forward.c,v 1.74.2.6 2017/08/28 17:53:12 skrll Exp $	*/
      2      1.32    itojun /*	$KAME: ip6_forward.c,v 1.109 2002/09/11 08:10:17 sakane Exp $	*/
      3       1.3   thorpej 
      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.10    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.10    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.26     lukem 
     33      1.26     lukem #include <sys/cdefs.h>
     34  1.74.2.6     skrll __KERNEL_RCSID(0, "$NetBSD: ip6_forward.c,v 1.74.2.6 2017/08/28 17:53:12 skrll Exp $");
     35       1.2    itojun 
     36  1.74.2.2     skrll #ifdef _KERNEL_OPT
     37      1.68     joerg #include "opt_gateway.h"
     38      1.15    itojun #include "opt_ipsec.h"
     39  1.74.2.2     skrll #endif
     40      1.15    itojun 
     41       1.2    itojun #include <sys/param.h>
     42       1.2    itojun #include <sys/systm.h>
     43       1.2    itojun #include <sys/mbuf.h>
     44       1.2    itojun #include <sys/errno.h>
     45       1.2    itojun #include <sys/time.h>
     46       1.2    itojun #include <sys/kernel.h>
     47       1.2    itojun #include <sys/syslog.h>
     48  1.74.2.4     skrll #include <sys/percpu.h>
     49       1.2    itojun 
     50       1.2    itojun #include <net/if.h>
     51       1.2    itojun #include <net/route.h>
     52      1.72     rmind #include <net/pfil.h>
     53       1.2    itojun 
     54       1.2    itojun #include <netinet/in.h>
     55       1.2    itojun #include <netinet/in_var.h>
     56       1.7    itojun #include <netinet/ip_var.h>
     57       1.8    itojun #include <netinet/ip6.h>
     58       1.2    itojun #include <netinet6/ip6_var.h>
     59      1.64   thorpej #include <netinet6/ip6_private.h>
     60      1.47    rpaulo #include <netinet6/scope6_var.h>
     61       1.8    itojun #include <netinet/icmp6.h>
     62       1.5    itojun #include <netinet6/nd6.h>
     63       1.5    itojun 
     64      1.71  christos #ifdef IPSEC
     65      1.54  degroote #include <netipsec/ipsec.h>
     66      1.54  degroote #include <netipsec/ipsec6.h>
     67      1.54  degroote #include <netipsec/key.h>
     68      1.54  degroote #include <netipsec/xform.h>
     69      1.71  christos #endif /* IPSEC */
     70      1.54  degroote 
     71       1.5    itojun #include <net/net_osdep.h>
     72       1.2    itojun 
     73  1.74.2.4     skrll extern percpu_t *ip6_forward_rt_percpu;
     74       1.2    itojun 
     75      1.72     rmind extern pfil_head_t *inet6_pfil_hook;	/* XXX */
     76      1.20    itojun 
     77  1.74.2.1     skrll static void __printflike(4, 5)
     78  1.74.2.1     skrll ip6_cantforward(const struct ip6_hdr *ip6, const struct ifnet *srcifp,
     79  1.74.2.1     skrll     const struct ifnet *dstifp, const char *fmt, ...)
     80  1.74.2.1     skrll {
     81  1.74.2.1     skrll 	char sbuf[INET6_ADDRSTRLEN], dbuf[INET6_ADDRSTRLEN];
     82  1.74.2.1     skrll 	char reason[256];
     83  1.74.2.1     skrll 	va_list ap;
     84  1.74.2.1     skrll 	uint64_t *ip6s;
     85  1.74.2.1     skrll 
     86  1.74.2.1     skrll 	/* update statistics */
     87  1.74.2.1     skrll 	ip6s = IP6_STAT_GETREF();
     88  1.74.2.1     skrll 	ip6s[IP6_STAT_CANTFORWARD]++;
     89  1.74.2.1     skrll 	if (dstifp)
     90  1.74.2.1     skrll 		ip6s[IP6_STAT_BADSCOPE]++;
     91  1.74.2.1     skrll 	IP6_STAT_PUTREF();
     92  1.74.2.1     skrll 
     93  1.74.2.1     skrll 	if (dstifp)
     94  1.74.2.1     skrll 		in6_ifstat_inc(dstifp, ifs6_in_discard);
     95  1.74.2.1     skrll 
     96  1.74.2.2     skrll 	if (ip6_log_time + ip6_log_interval >= time_uptime)
     97  1.74.2.1     skrll 		return;
     98  1.74.2.2     skrll 	ip6_log_time = time_uptime;
     99  1.74.2.1     skrll 
    100  1.74.2.1     skrll 	va_start(ap, fmt);
    101  1.74.2.1     skrll 	vsnprintf(reason, sizeof(reason), fmt, ap);
    102  1.74.2.1     skrll 	va_end(ap);
    103  1.74.2.1     skrll 
    104  1.74.2.1     skrll 	log(LOG_DEBUG, "Cannot forward from %s@%s to %s@%s nxt %d (%s)\n",
    105  1.74.2.1     skrll 	    IN6_PRINT(sbuf, &ip6->ip6_src), srcifp ? if_name(srcifp) : "?",
    106  1.74.2.1     skrll 	    IN6_PRINT(dbuf, &ip6->ip6_dst), dstifp ? if_name(dstifp) : "?",
    107  1.74.2.1     skrll 	    ip6->ip6_nxt, reason);
    108  1.74.2.1     skrll }
    109  1.74.2.1     skrll 
    110       1.2    itojun /*
    111       1.2    itojun  * Forward a packet.  If some error occurs return the sender
    112       1.2    itojun  * an icmp packet.  Note we can't always generate a meaningful
    113       1.2    itojun  * icmp message because icmp doesn't have a large enough repertoire
    114       1.2    itojun  * of codes and types.
    115       1.2    itojun  *
    116       1.2    itojun  * If not forwarding, just drop the packet.  This could be confusing
    117       1.2    itojun  * if ipforwarding was zero but some routing protocol was advancing
    118       1.2    itojun  * us as a gateway to somewhere.  However, we must let the routing
    119       1.2    itojun  * protocol deal with that.
    120       1.2    itojun  *
    121       1.2    itojun  */
    122       1.2    itojun 
    123       1.2    itojun void
    124      1.58  christos ip6_forward(struct mbuf *m, int srcrt)
    125       1.2    itojun {
    126       1.5    itojun 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
    127      1.57    dyoung 	const struct sockaddr_in6 *dst;
    128  1.74.2.5     skrll 	struct rtentry *rt = NULL;
    129      1.42    itojun 	int error = 0, type = 0, code = 0;
    130       1.5    itojun 	struct mbuf *mcopy = NULL;
    131      1.10    itojun 	struct ifnet *origifp;	/* maybe unnecessary */
    132  1.74.2.1     skrll 	uint32_t inzone, outzone;
    133      1.47    rpaulo 	struct in6_addr src_in6, dst_in6;
    134  1.74.2.3     skrll 	struct ifnet *rcvif = NULL;
    135  1.74.2.3     skrll 	struct psref psref;
    136  1.74.2.5     skrll 	struct route *ro = NULL;
    137      1.71  christos #ifdef IPSEC
    138      1.73  christos 	int needipsec = 0;
    139      1.71  christos 	struct secpolicy *sp = NULL;
    140      1.54  degroote #endif
    141      1.54  degroote 
    142      1.67     joerg 	/*
    143      1.67     joerg 	 * Clear any in-bound checksum flags for this packet.
    144      1.67     joerg 	 */
    145      1.67     joerg 	m->m_pkthdr.csum_flags = 0;
    146       1.5    itojun 
    147  1.74.2.3     skrll 	rcvif = m_get_rcvif_psref(m, &psref);
    148  1.74.2.3     skrll 	if (__predict_false(rcvif == NULL))
    149  1.74.2.3     skrll 		goto drop;
    150  1.74.2.3     skrll 
    151      1.16    itojun 	/*
    152      1.16    itojun 	 * Do not forward packets to multicast destination (should be handled
    153      1.16    itojun 	 * by ip6_mforward().
    154      1.16    itojun 	 * Do not forward packets with unspecified source.  It was discussed
    155      1.16    itojun 	 * in July 2000, on ipngwg mailing list.
    156      1.16    itojun 	 */
    157       1.9    itojun 	if ((m->m_flags & (M_BCAST|M_MCAST)) != 0 ||
    158      1.16    itojun 	    IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
    159      1.16    itojun 	    IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
    160  1.74.2.3     skrll 		ip6_cantforward(ip6, rcvif, NULL,
    161  1.74.2.1     skrll 		    ((m->m_flags & (M_BCAST|M_MCAST)) != 0) ? "bcast/mcast" :
    162  1.74.2.1     skrll 		    IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ? "mcast/dst" :
    163  1.74.2.1     skrll 		    "unspec/src");
    164  1.74.2.3     skrll 		goto drop;
    165       1.2    itojun 	}
    166       1.2    itojun 
    167       1.2    itojun 	if (ip6->ip6_hlim <= IPV6_HLIMDEC) {
    168       1.5    itojun 		/* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_discard) */
    169       1.2    itojun 		icmp6_error(m, ICMP6_TIME_EXCEEDED,
    170       1.2    itojun 				ICMP6_TIME_EXCEED_TRANSIT, 0);
    171  1.74.2.3     skrll 		goto out;
    172       1.2    itojun 	}
    173       1.2    itojun 	ip6->ip6_hlim -= IPV6_HLIMDEC;
    174       1.2    itojun 
    175       1.5    itojun 	/*
    176       1.5    itojun 	 * Save at most ICMPV6_PLD_MAXLEN (= the min IPv6 MTU -
    177       1.5    itojun 	 * size of IPv6 + ICMPv6 headers) bytes of the packet in case
    178       1.5    itojun 	 * we need to generate an ICMP6 message to the src.
    179       1.5    itojun 	 * Thanks to M_EXT, in most cases copy will not occur.
    180       1.5    itojun 	 *
    181       1.5    itojun 	 * It is important to save it before IPsec processing as IPsec
    182       1.5    itojun 	 * processing may modify the mbuf.
    183       1.5    itojun 	 */
    184       1.5    itojun 	mcopy = m_copy(m, 0, imin(m->m_pkthdr.len, ICMPV6_PLD_MAXLEN));
    185       1.5    itojun 
    186      1.71  christos #ifdef IPSEC
    187      1.73  christos 	if (ipsec_used) {
    188      1.73  christos 		/* Check the security policy (SP) for the packet */
    189      1.54  degroote 
    190      1.73  christos 		sp = ipsec6_check_policy(m, NULL, 0, &needipsec, &error);
    191      1.73  christos 		if (error != 0) {
    192      1.73  christos 			/*
    193      1.73  christos 			 * Hack: -EINVAL is used to signal that a packet
    194      1.73  christos 			 * should be silently discarded.  This is typically
    195      1.73  christos 			 * because we asked key management for an SA and
    196      1.73  christos 			 * it was delayed (e.g. kicked up to IKE).
    197      1.73  christos 			 */
    198      1.73  christos 			if (error == -EINVAL)
    199      1.73  christos 				error = 0;
    200      1.73  christos 			goto freecopy;
    201      1.73  christos 		}
    202      1.54  degroote 	}
    203      1.71  christos #endif /* IPSEC */
    204      1.54  degroote 
    205  1.74.2.4     skrll 	ro = percpu_getref(ip6_forward_rt_percpu);
    206      1.61    dyoung 	if (srcrt) {
    207      1.57    dyoung 		union {
    208      1.57    dyoung 			struct sockaddr		dst;
    209      1.57    dyoung 			struct sockaddr_in6	dst6;
    210      1.57    dyoung 		} u;
    211      1.57    dyoung 
    212      1.57    dyoung 		sockaddr_in6_init(&u.dst6, &ip6->ip6_dst, 0, 0, 0);
    213  1.74.2.5     skrll 		rt = rtcache_lookup(ro, &u.dst);
    214  1.74.2.5     skrll 		if (rt == NULL) {
    215      1.64   thorpej 			IP6_STATINC(IP6_STAT_NOROUTE);
    216       1.5    itojun 			/* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_noroute) */
    217       1.5    itojun 			if (mcopy) {
    218       1.5    itojun 				icmp6_error(mcopy, ICMP6_DST_UNREACH,
    219       1.5    itojun 					    ICMP6_DST_UNREACH_NOROUTE, 0);
    220       1.5    itojun 			}
    221  1.74.2.3     skrll 			goto drop;
    222       1.2    itojun 		}
    223  1.74.2.4     skrll 	} else if ((rt = rtcache_validate(ro)) == NULL &&
    224  1.74.2.4     skrll 	           (rt = rtcache_update(ro, 1)) == NULL) {
    225      1.61    dyoung 		/*
    226      1.61    dyoung 		 * rtcache_getdst(ip6_forward_rt)->sin6_addr was equal to
    227      1.61    dyoung 		 * ip6->ip6_dst
    228      1.61    dyoung 		 */
    229      1.64   thorpej 		IP6_STATINC(IP6_STAT_NOROUTE);
    230      1.61    dyoung 		/* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_noroute) */
    231      1.61    dyoung 		if (mcopy) {
    232      1.61    dyoung 			icmp6_error(mcopy, ICMP6_DST_UNREACH,
    233      1.61    dyoung 			    ICMP6_DST_UNREACH_NOROUTE, 0);
    234      1.61    dyoung 		}
    235  1.74.2.3     skrll 		goto drop;
    236       1.2    itojun 	}
    237  1.74.2.4     skrll 	dst = satocsin6(rtcache_getdst(ro));
    238       1.9    itojun 
    239       1.9    itojun 	/*
    240      1.47    rpaulo 	 * Source scope check: if a packet can't be delivered to its
    241      1.47    rpaulo 	 * destination for the reason that the destination is beyond the scope
    242      1.47    rpaulo 	 * of the source address, discard the packet and return an icmp6
    243      1.47    rpaulo 	 * destination unreachable error with Code 2 (beyond scope of source
    244      1.47    rpaulo 	 * address).  We use a local copy of ip6_src, since in6_setscope()
    245      1.47    rpaulo 	 * will possibly modify its first argument.
    246      1.47    rpaulo 	 * [draft-ietf-ipngwg-icmp-v3-07, Section 3.1]
    247      1.47    rpaulo 	 */
    248      1.47    rpaulo 	src_in6 = ip6->ip6_src;
    249  1.74.2.1     skrll 	inzone = outzone = ~0;
    250  1.74.2.1     skrll 	if (in6_setscope(&src_in6, rt->rt_ifp, &outzone) != 0 ||
    251  1.74.2.3     skrll 	    in6_setscope(&src_in6, rcvif, &inzone) != 0 ||
    252  1.74.2.1     skrll 	    inzone != outzone) {
    253  1.74.2.3     skrll 		ip6_cantforward(ip6, rcvif, rt->rt_ifp,
    254  1.74.2.4     skrll 		    "src[%s] inzone %d outzone %d",
    255  1.74.2.1     skrll 		    in6_getscopename(&ip6->ip6_src), inzone, outzone);
    256       1.9    itojun 		if (mcopy)
    257       1.9    itojun 			icmp6_error(mcopy, ICMP6_DST_UNREACH,
    258       1.9    itojun 				    ICMP6_DST_UNREACH_BEYONDSCOPE, 0);
    259  1.74.2.3     skrll 		goto drop;
    260       1.9    itojun 	}
    261  1.74.2.1     skrll 
    262      1.71  christos #ifdef IPSEC
    263      1.71  christos 	/*
    264      1.71  christos 	 * If we need to encapsulate the packet, do it here
    265  1.74.2.2     skrll 	 * ipsec6_proces_packet will send the packet using ip6_output
    266      1.71  christos 	 */
    267      1.54  degroote 	if (needipsec) {
    268      1.73  christos 		int s = splsoftnet();
    269      1.73  christos 		error = ipsec6_process_packet(m, sp->req);
    270      1.54  degroote 		splx(s);
    271      1.54  degroote 		if (mcopy)
    272      1.54  degroote 			goto freecopy;
    273      1.71  christos 	}
    274  1.74.2.2     skrll #endif
    275      1.54  degroote 
    276      1.47    rpaulo 	/*
    277      1.47    rpaulo 	 * Destination scope check: if a packet is going to break the scope
    278      1.47    rpaulo 	 * zone of packet's destination address, discard it.  This case should
    279      1.47    rpaulo 	 * usually be prevented by appropriately-configured routing table, but
    280      1.47    rpaulo 	 * we need an explicit check because we may mistakenly forward the
    281      1.47    rpaulo 	 * packet to a different zone by (e.g.) a default route.
    282      1.47    rpaulo 	 */
    283      1.47    rpaulo 	dst_in6 = ip6->ip6_dst;
    284  1.74.2.1     skrll 	inzone = outzone = ~0;
    285  1.74.2.3     skrll 	if (in6_setscope(&dst_in6, rcvif, &inzone) != 0 ||
    286      1.47    rpaulo 	    in6_setscope(&dst_in6, rt->rt_ifp, &outzone) != 0 ||
    287      1.47    rpaulo 	    inzone != outzone) {
    288  1.74.2.3     skrll 		ip6_cantforward(ip6, rcvif, rt->rt_ifp,
    289  1.74.2.1     skrll 		    "dst[%s] inzone %d outzone %d",
    290  1.74.2.1     skrll 		    in6_getscopename(&ip6->ip6_dst), inzone, outzone);
    291  1.74.2.1     skrll 		if (mcopy)
    292  1.74.2.1     skrll 			icmp6_error(mcopy, ICMP6_DST_UNREACH,
    293  1.74.2.1     skrll 				    ICMP6_DST_UNREACH_BEYONDSCOPE, 0);
    294  1.74.2.3     skrll 		goto drop;
    295      1.47    rpaulo 	}
    296      1.47    rpaulo 
    297      1.28    itojun 	if (m->m_pkthdr.len > IN6_LINKMTU(rt->rt_ifp)) {
    298       1.5    itojun 		in6_ifstat_inc(rt->rt_ifp, ifs6_in_toobig);
    299       1.5    itojun 		if (mcopy) {
    300       1.5    itojun 			u_long mtu;
    301       1.5    itojun 
    302      1.28    itojun 			mtu = IN6_LINKMTU(rt->rt_ifp);
    303       1.5    itojun 			icmp6_error(mcopy, ICMP6_PACKET_TOO_BIG, 0, mtu);
    304       1.5    itojun 		}
    305  1.74.2.3     skrll 		goto drop;
    306      1.31    itojun 	}
    307       1.2    itojun 
    308       1.2    itojun 	if (rt->rt_flags & RTF_GATEWAY)
    309       1.2    itojun 		dst = (struct sockaddr_in6 *)rt->rt_gateway;
    310       1.2    itojun 
    311       1.2    itojun 	/*
    312       1.2    itojun 	 * If we are to forward the packet using the same interface
    313       1.2    itojun 	 * as one we got the packet from, perhaps we should send a redirect
    314       1.2    itojun 	 * to sender to shortcut a hop.
    315       1.2    itojun 	 * Only send redirect if source is sending directly to us,
    316       1.2    itojun 	 * and if packet was not source routed (or has any options).
    317       1.2    itojun 	 * Also, don't send redirect if forwarding using a route
    318       1.2    itojun 	 * modified by a redirect.
    319       1.2    itojun 	 */
    320  1.74.2.3     skrll 	if (rt->rt_ifp == rcvif && !srcrt && ip6_sendredirects &&
    321      1.22    itojun 	    (rt->rt_flags & (RTF_DYNAMIC|RTF_MODIFIED)) == 0) {
    322      1.23    itojun 		if ((rt->rt_ifp->if_flags & IFF_POINTOPOINT) &&
    323  1.74.2.4     skrll 		    nd6_is_addr_neighbor(satocsin6(rtcache_getdst(ro)),
    324  1.74.2.4     skrll 		                         rt->rt_ifp)) {
    325      1.22    itojun 			/*
    326      1.22    itojun 			 * If the incoming interface is equal to the outgoing
    327      1.23    itojun 			 * one, the link attached to the interface is
    328      1.23    itojun 			 * point-to-point, and the IPv6 destination is
    329      1.23    itojun 			 * regarded as on-link on the link, then it will be
    330      1.23    itojun 			 * highly probable that the destination address does
    331      1.23    itojun 			 * not exist on the link and that the packet is going
    332      1.23    itojun 			 * to loop.  Thus, we immediately drop the packet and
    333      1.23    itojun 			 * send an ICMPv6 error message.
    334      1.23    itojun 			 * For other routing loops, we dare to let the packet
    335      1.23    itojun 			 * go to the loop, so that a remote diagnosing host
    336      1.23    itojun 			 * can detect the loop by traceroute.
    337      1.22    itojun 			 * type/code is based on suggestion by Rich Draves.
    338      1.22    itojun 			 * not sure if it is the best pick.
    339      1.22    itojun 			 */
    340      1.22    itojun 			icmp6_error(mcopy, ICMP6_DST_UNREACH,
    341      1.22    itojun 				    ICMP6_DST_UNREACH_ADDR, 0);
    342  1.74.2.3     skrll 			goto drop;
    343      1.22    itojun 		}
    344       1.2    itojun 		type = ND_REDIRECT;
    345      1.22    itojun 	}
    346       1.2    itojun 
    347      1.10    itojun 	/*
    348      1.10    itojun 	 * Fake scoped addresses. Note that even link-local source or
    349      1.10    itojun 	 * destinaion can appear, if the originating node just sends the
    350      1.10    itojun 	 * packet to us (without address resolution for the destination).
    351      1.10    itojun 	 * Since both icmp6_error and icmp6_redirect_output fill the embedded
    352      1.18    itojun 	 * link identifiers, we can do this stuff after making a copy for
    353      1.18    itojun 	 * returning an error.
    354      1.10    itojun 	 */
    355      1.10    itojun 	if ((rt->rt_ifp->if_flags & IFF_LOOPBACK) != 0) {
    356      1.10    itojun 		/*
    357      1.10    itojun 		 * See corresponding comments in ip6_output.
    358      1.10    itojun 		 * XXX: but is it possible that ip6_forward() sends a packet
    359      1.10    itojun 		 *      to a loopback interface? I don't think so, and thus
    360      1.10    itojun 		 *      I bark here. (jinmei (at) kame.net)
    361      1.12    itojun 		 * XXX: it is common to route invalid packets to loopback.
    362      1.13    itojun 		 *	also, the codepath will be visited on use of ::1 in
    363      1.13    itojun 		 *	rthdr. (itojun)
    364      1.10    itojun 		 */
    365      1.13    itojun #if 1
    366      1.13    itojun 		if (0)
    367      1.13    itojun #else
    368      1.13    itojun 		if ((rt->rt_flags & (RTF_BLACKHOLE|RTF_REJECT)) == 0)
    369      1.13    itojun #endif
    370      1.13    itojun 		{
    371  1.74.2.5     skrll 			char ip6bufs[INET6_ADDRSTRLEN];
    372  1.74.2.5     skrll 			char ip6bufd[INET6_ADDRSTRLEN];
    373  1.74.2.5     skrll 
    374      1.12    itojun 			printf("ip6_forward: outgoing interface is loopback. "
    375      1.12    itojun 			       "src %s, dst %s, nxt %d, rcvif %s, outif %s\n",
    376  1.74.2.5     skrll 			       IN6_PRINT(ip6bufs, &ip6->ip6_src),
    377  1.74.2.5     skrll 			       IN6_PRINT(ip6bufd, &ip6->ip6_dst),
    378  1.74.2.3     skrll 			       ip6->ip6_nxt, if_name(rcvif),
    379      1.12    itojun 			       if_name(rt->rt_ifp));
    380      1.12    itojun 		}
    381      1.13    itojun 
    382      1.19    itojun 		/* we can just use rcvif in forwarding. */
    383  1.74.2.3     skrll 		origifp = rcvif;
    384      1.10    itojun 	}
    385      1.10    itojun 	else
    386      1.10    itojun 		origifp = rt->rt_ifp;
    387      1.47    rpaulo 	/*
    388      1.47    rpaulo 	 * clear embedded scope identifiers if necessary.
    389      1.47    rpaulo 	 * in6_clearscope will touch the addresses only when necessary.
    390      1.47    rpaulo 	 */
    391      1.47    rpaulo 	in6_clearscope(&ip6->ip6_src);
    392      1.47    rpaulo 	in6_clearscope(&ip6->ip6_dst);
    393      1.10    itojun 
    394      1.20    itojun 	/*
    395      1.20    itojun 	 * Run through list of hooks for output packets.
    396      1.20    itojun 	 */
    397      1.72     rmind 	if ((error = pfil_run_hooks(inet6_pfil_hook, &m, rt->rt_ifp,
    398      1.34    itojun 	    PFIL_OUT)) != 0)
    399      1.20    itojun 		goto senderr;
    400      1.20    itojun 	if (m == NULL)
    401      1.20    itojun 		goto freecopy;
    402      1.20    itojun 	ip6 = mtod(m, struct ip6_hdr *);
    403      1.20    itojun 
    404  1.74.2.6     skrll 	error = ip6_if_output(rt->rt_ifp, origifp, m, dst, rt);
    405       1.5    itojun 	if (error) {
    406       1.5    itojun 		in6_ifstat_inc(rt->rt_ifp, ifs6_out_discard);
    407      1.64   thorpej 		IP6_STATINC(IP6_STAT_CANTFORWARD);
    408       1.5    itojun 	} else {
    409      1.64   thorpej 		IP6_STATINC(IP6_STAT_FORWARD);
    410       1.5    itojun 		in6_ifstat_inc(rt->rt_ifp, ifs6_out_forward);
    411       1.2    itojun 		if (type)
    412      1.64   thorpej 			IP6_STATINC(IP6_STAT_REDIRECTSENT);
    413       1.2    itojun 		else {
    414      1.56  liamjfoy #ifdef GATEWAY
    415  1.74.2.5     skrll 			/* Need to release rt here */
    416  1.74.2.5     skrll 			rtcache_unref(rt, ro);
    417  1.74.2.5     skrll 			rt = NULL;
    418      1.56  liamjfoy 			if (m->m_flags & M_CANFASTFWD)
    419  1.74.2.4     skrll 				ip6flow_create(ro, m);
    420      1.56  liamjfoy #endif
    421       1.2    itojun 			if (mcopy)
    422       1.2    itojun 				goto freecopy;
    423       1.2    itojun 		}
    424       1.2    itojun 	}
    425      1.20    itojun 
    426      1.20    itojun  senderr:
    427       1.2    itojun 	if (mcopy == NULL)
    428  1.74.2.3     skrll 		goto out;
    429       1.2    itojun 	switch (error) {
    430       1.2    itojun 	case 0:
    431       1.2    itojun 		if (type == ND_REDIRECT) {
    432       1.2    itojun 			icmp6_redirect_output(mcopy, rt);
    433  1.74.2.3     skrll 			goto out;
    434       1.2    itojun 		}
    435       1.2    itojun 		goto freecopy;
    436       1.2    itojun 
    437       1.2    itojun 	case EMSGSIZE:
    438       1.2    itojun 		/* xxx MTU is constant in PPP? */
    439       1.2    itojun 		goto freecopy;
    440       1.2    itojun 
    441       1.2    itojun 	case ENOBUFS:
    442       1.2    itojun 		/* Tell source to slow down like source quench in IP? */
    443       1.2    itojun 		goto freecopy;
    444       1.2    itojun 
    445       1.2    itojun 	case ENETUNREACH:	/* shouldn't happen, checked above */
    446       1.2    itojun 	case EHOSTUNREACH:
    447       1.2    itojun 	case ENETDOWN:
    448       1.2    itojun 	case EHOSTDOWN:
    449       1.2    itojun 	default:
    450       1.2    itojun 		type = ICMP6_DST_UNREACH;
    451       1.2    itojun 		code = ICMP6_DST_UNREACH_ADDR;
    452       1.2    itojun 		break;
    453       1.2    itojun 	}
    454       1.2    itojun 	icmp6_error(mcopy, type, code, 0);
    455  1.74.2.3     skrll 	goto out;
    456       1.2    itojun 
    457       1.2    itojun  freecopy:
    458       1.2    itojun 	m_freem(mcopy);
    459  1.74.2.3     skrll 	goto out;
    460  1.74.2.3     skrll  drop:
    461  1.74.2.3     skrll  	m_freem(m);
    462  1.74.2.3     skrll  out:
    463  1.74.2.6     skrll #ifdef IPSEC
    464  1.74.2.6     skrll 	if (sp != NULL)
    465  1.74.2.6     skrll 		KEY_SP_UNREF(&sp);
    466  1.74.2.6     skrll #endif
    467  1.74.2.5     skrll 	rtcache_unref(rt, ro);
    468  1.74.2.5     skrll 	if (ro != NULL)
    469  1.74.2.5     skrll 		percpu_putref(ip6_forward_rt_percpu);
    470  1.74.2.3     skrll 	if (rcvif != NULL)
    471  1.74.2.3     skrll 		m_put_rcvif_psref(rcvif, &psref);
    472       1.5    itojun 	return;
    473       1.2    itojun }
    474