Home | History | Annotate | Line # | Download | only in netinet6
ip6_forward.c revision 1.38
      1 /*	$NetBSD: ip6_forward.c,v 1.38 2003/10/02 19:32:41 itojun Exp $	*/
      2 /*	$KAME: ip6_forward.c,v 1.109 2002/09/11 08:10:17 sakane Exp $	*/
      3 
      4 /*
      5  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      6  * All rights reserved.
      7  *
      8  * Redistribution and use in source and binary forms, with or without
      9  * modification, are permitted provided that the following conditions
     10  * are met:
     11  * 1. Redistributions of source code must retain the above copyright
     12  *    notice, this list of conditions and the following disclaimer.
     13  * 2. Redistributions in binary form must reproduce the above copyright
     14  *    notice, this list of conditions and the following disclaimer in the
     15  *    documentation and/or other materials provided with the distribution.
     16  * 3. Neither the name of the project nor the names of its contributors
     17  *    may be used to endorse or promote products derived from this software
     18  *    without specific prior written permission.
     19  *
     20  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30  * SUCH DAMAGE.
     31  */
     32 
     33 #include <sys/cdefs.h>
     34 __KERNEL_RCSID(0, "$NetBSD: ip6_forward.c,v 1.38 2003/10/02 19:32:41 itojun Exp $");
     35 
     36 #include "opt_ipsec.h"
     37 #include "opt_pfil_hooks.h"
     38 
     39 #include <sys/param.h>
     40 #include <sys/systm.h>
     41 #include <sys/malloc.h>
     42 #include <sys/mbuf.h>
     43 #include <sys/domain.h>
     44 #include <sys/protosw.h>
     45 #include <sys/socket.h>
     46 #include <sys/errno.h>
     47 #include <sys/time.h>
     48 #include <sys/kernel.h>
     49 #include <sys/syslog.h>
     50 
     51 #include <net/if.h>
     52 #include <net/route.h>
     53 
     54 #include <netinet/in.h>
     55 #include <netinet/in_var.h>
     56 #include <netinet/ip_var.h>
     57 #include <netinet/ip6.h>
     58 #include <netinet6/ip6_var.h>
     59 #include <netinet/icmp6.h>
     60 #include <netinet6/nd6.h>
     61 
     62 #ifdef IPSEC
     63 #include <netinet6/ipsec.h>
     64 #include <netkey/key.h>
     65 #endif /* IPSEC */
     66 
     67 #ifdef PFIL_HOOKS
     68 #include <net/pfil.h>
     69 #endif
     70 
     71 #include <net/net_osdep.h>
     72 
     73 struct	route_in6 ip6_forward_rt;
     74 
     75 #ifdef PFIL_HOOKS
     76 extern struct pfil_head inet6_pfil_hook;	/* XXX */
     77 #endif
     78 
     79 /*
     80  * Forward a packet.  If some error occurs return the sender
     81  * an icmp packet.  Note we can't always generate a meaningful
     82  * icmp message because icmp doesn't have a large enough repertoire
     83  * of codes and types.
     84  *
     85  * If not forwarding, just drop the packet.  This could be confusing
     86  * if ipforwarding was zero but some routing protocol was advancing
     87  * us as a gateway to somewhere.  However, we must let the routing
     88  * protocol deal with that.
     89  *
     90  */
     91 
     92 void
     93 ip6_forward(m, srcrt)
     94 	struct mbuf *m;
     95 	int srcrt;
     96 {
     97 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
     98 	struct sockaddr_in6 *dst;
     99 	struct rtentry *rt;
    100 	int error, type = 0, code = 0;
    101 	struct mbuf *mcopy = NULL;
    102 	struct ifnet *origifp;	/* maybe unnecessary */
    103 #ifdef IPSEC
    104 	struct secpolicy *sp = NULL;
    105 	int ipsecrt = 0;
    106 #endif
    107 
    108 #ifdef IPSEC
    109 	/*
    110 	 * Check AH/ESP integrity.
    111 	 */
    112 	/*
    113 	 * Don't increment ip6s_cantforward because this is the check
    114 	 * before forwarding packet actually.
    115 	 */
    116 	if (ipsec6_in_reject(m, NULL)) {
    117 		ipsec6stat.in_polvio++;
    118 		m_freem(m);
    119 		return;
    120 	}
    121 #endif /* IPSEC */
    122 
    123 	/*
    124 	 * Do not forward packets to multicast destination (should be handled
    125 	 * by ip6_mforward().
    126 	 * Do not forward packets with unspecified source.  It was discussed
    127 	 * in July 2000, on ipngwg mailing list.
    128 	 */
    129 	if ((m->m_flags & (M_BCAST|M_MCAST)) != 0 ||
    130 	    IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
    131 	    IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
    132 		ip6stat.ip6s_cantforward++;
    133 		/* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_discard) */
    134 		if (ip6_log_time + ip6_log_interval < time.tv_sec) {
    135 			ip6_log_time = time.tv_sec;
    136 			log(LOG_DEBUG,
    137 			    "cannot forward "
    138 			    "from %s to %s nxt %d received on %s\n",
    139 			    ip6_sprintf(&ip6->ip6_src),
    140 			    ip6_sprintf(&ip6->ip6_dst),
    141 			    ip6->ip6_nxt,
    142 			    if_name(m->m_pkthdr.rcvif));
    143 		}
    144 		m_freem(m);
    145 		return;
    146 	}
    147 
    148 	if (ip6->ip6_hlim <= IPV6_HLIMDEC) {
    149 		/* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_discard) */
    150 		icmp6_error(m, ICMP6_TIME_EXCEEDED,
    151 				ICMP6_TIME_EXCEED_TRANSIT, 0);
    152 		return;
    153 	}
    154 	ip6->ip6_hlim -= IPV6_HLIMDEC;
    155 
    156 	/*
    157 	 * Save at most ICMPV6_PLD_MAXLEN (= the min IPv6 MTU -
    158 	 * size of IPv6 + ICMPv6 headers) bytes of the packet in case
    159 	 * we need to generate an ICMP6 message to the src.
    160 	 * Thanks to M_EXT, in most cases copy will not occur.
    161 	 *
    162 	 * It is important to save it before IPsec processing as IPsec
    163 	 * processing may modify the mbuf.
    164 	 */
    165 	mcopy = m_copy(m, 0, imin(m->m_pkthdr.len, ICMPV6_PLD_MAXLEN));
    166 
    167 #ifdef IPSEC
    168 	/* get a security policy for this packet */
    169 	sp = ipsec6_getpolicybyaddr(m, IPSEC_DIR_OUTBOUND,
    170 	    IP_FORWARDING, &error);
    171 	if (sp == NULL) {
    172 		ipsec6stat.out_inval++;
    173 		ip6stat.ip6s_cantforward++;
    174 		if (mcopy) {
    175 #if 0
    176 			/* XXX: what icmp ? */
    177 #else
    178 			m_freem(mcopy);
    179 #endif
    180 		}
    181 		m_freem(m);
    182 		return;
    183 	}
    184 
    185 	error = 0;
    186 
    187 	/* check policy */
    188 	switch (sp->policy) {
    189 	case IPSEC_POLICY_DISCARD:
    190 		/*
    191 		 * This packet is just discarded.
    192 		 */
    193 		ipsec6stat.out_polvio++;
    194 		ip6stat.ip6s_cantforward++;
    195 		key_freesp(sp);
    196 		if (mcopy) {
    197 #if 0
    198 			/* XXX: what icmp ? */
    199 #else
    200 			m_freem(mcopy);
    201 #endif
    202 		}
    203 		m_freem(m);
    204 		return;
    205 
    206 	case IPSEC_POLICY_BYPASS:
    207 	case IPSEC_POLICY_NONE:
    208 		/* no need to do IPsec. */
    209 		key_freesp(sp);
    210 		goto skip_ipsec;
    211 
    212 	case IPSEC_POLICY_IPSEC:
    213 		if (sp->req == NULL) {
    214 			/* XXX should be panic ? */
    215 			printf("ip6_forward: No IPsec request specified.\n");
    216 			ip6stat.ip6s_cantforward++;
    217 			key_freesp(sp);
    218 			if (mcopy) {
    219 #if 0
    220 				/* XXX: what icmp ? */
    221 #else
    222 				m_freem(mcopy);
    223 #endif
    224 			}
    225 			m_freem(m);
    226 			return;
    227 		}
    228 		/* do IPsec */
    229 		break;
    230 
    231 	case IPSEC_POLICY_ENTRUST:
    232 	default:
    233 		/* should be panic ?? */
    234 		printf("ip6_forward: Invalid policy found. %d\n", sp->policy);
    235 		key_freesp(sp);
    236 		goto skip_ipsec;
    237 	}
    238 
    239     {
    240 	struct ipsecrequest *isr = NULL;
    241 	struct ipsec_output_state state;
    242 
    243 	/*
    244 	 * when the kernel forwards a packet, it is not proper to apply
    245 	 * IPsec transport mode to the packet is not proper.  this check
    246 	 * avoid from this.
    247 	 * at present, if there is even a transport mode SA request in the
    248 	 * security policy, the kernel does not apply IPsec to the packet.
    249 	 * this check is not enough because the following case is valid.
    250 	 *      ipsec esp/tunnel/xxx-xxx/require esp/transport//require;
    251 	 */
    252 	for (isr = sp->req; isr; isr = isr->next) {
    253 		if (isr->saidx.mode == IPSEC_MODE_TRANSPORT)
    254 			goto skip_ipsec;
    255 	}
    256 
    257 	/*
    258 	 * All the extension headers will become inaccessible
    259 	 * (since they can be encrypted).
    260 	 * Don't panic, we need no more updates to extension headers
    261 	 * on inner IPv6 packet (since they are now encapsulated).
    262 	 *
    263 	 * IPv6 [ESP|AH] IPv6 [extension headers] payload
    264 	 */
    265 	bzero(&state, sizeof(state));
    266 	state.m = m;
    267 	state.ro = NULL;	/* update at ipsec6_output_tunnel() */
    268 	state.dst = NULL;	/* update at ipsec6_output_tunnel() */
    269 
    270 	error = ipsec6_output_tunnel(&state, sp, 0);
    271 
    272 	m = state.m;
    273 	key_freesp(sp);
    274 
    275 	if (error) {
    276 		/* mbuf is already reclaimed in ipsec6_output_tunnel. */
    277 		switch (error) {
    278 		case EHOSTUNREACH:
    279 		case ENETUNREACH:
    280 		case EMSGSIZE:
    281 		case ENOBUFS:
    282 		case ENOMEM:
    283 			break;
    284 		default:
    285 			printf("ip6_output (ipsec): error code %d\n", error);
    286 			/* FALLTHROUGH */
    287 		case ENOENT:
    288 			/* don't show these error codes to the user */
    289 			break;
    290 		}
    291 		ip6stat.ip6s_cantforward++;
    292 		if (mcopy) {
    293 #if 0
    294 			/* XXX: what icmp ? */
    295 #else
    296 			m_freem(mcopy);
    297 #endif
    298 		}
    299 		m_freem(m);
    300 		return;
    301 	}
    302 
    303 	/* adjust pointer */
    304 	ip6 = mtod(m, struct ip6_hdr *);
    305 	rt = state.ro ? state.ro->ro_rt : NULL;
    306 	dst = (struct sockaddr_in6 *)state.dst;
    307 	if (dst != NULL && rt != NULL)
    308 		ipsecrt = 1;
    309     }
    310     skip_ipsec:
    311 
    312 	if (ipsecrt)
    313 		goto skip_routing;
    314 #endif /* IPSEC */
    315 
    316 	dst = &ip6_forward_rt.ro_dst;
    317 	if (!srcrt) {
    318 		/*
    319 		 * ip6_forward_rt.ro_dst.sin6_addr is equal to ip6->ip6_dst
    320 		 */
    321 		if (ip6_forward_rt.ro_rt == 0 ||
    322 		    (ip6_forward_rt.ro_rt->rt_flags & RTF_UP) == 0) {
    323 			if (ip6_forward_rt.ro_rt) {
    324 				RTFREE(ip6_forward_rt.ro_rt);
    325 				ip6_forward_rt.ro_rt = 0;
    326 			}
    327 			/* this probably fails but give it a try again */
    328 			rtalloc((struct route *)&ip6_forward_rt);
    329 		}
    330 
    331 		if (ip6_forward_rt.ro_rt == 0) {
    332 			ip6stat.ip6s_noroute++;
    333 			/* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_noroute) */
    334 			if (mcopy) {
    335 				icmp6_error(mcopy, ICMP6_DST_UNREACH,
    336 					    ICMP6_DST_UNREACH_NOROUTE, 0);
    337 			}
    338 			m_freem(m);
    339 			return;
    340 		}
    341 	} else if ((rt = ip6_forward_rt.ro_rt) == 0 ||
    342 		 !IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst, &dst->sin6_addr)) {
    343 		if (ip6_forward_rt.ro_rt) {
    344 			RTFREE(ip6_forward_rt.ro_rt);
    345 			ip6_forward_rt.ro_rt = 0;
    346 		}
    347 		bzero(dst, sizeof(*dst));
    348 		dst->sin6_len = sizeof(struct sockaddr_in6);
    349 		dst->sin6_family = AF_INET6;
    350 		dst->sin6_addr = ip6->ip6_dst;
    351 
    352 		rtalloc((struct route *)&ip6_forward_rt);
    353 		if (ip6_forward_rt.ro_rt == 0) {
    354 			ip6stat.ip6s_noroute++;
    355 			/* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_noroute) */
    356 			if (mcopy) {
    357 				icmp6_error(mcopy, ICMP6_DST_UNREACH,
    358 					    ICMP6_DST_UNREACH_NOROUTE, 0);
    359 			}
    360 			m_freem(m);
    361 			return;
    362 		}
    363 	}
    364 	rt = ip6_forward_rt.ro_rt;
    365 #ifdef IPSEC
    366     skip_routing:;
    367 #endif /* IPSEC */
    368 
    369 	/*
    370 	 * Scope check: if a packet can't be delivered to its destination
    371 	 * for the reason that the destination is beyond the scope of the
    372 	 * source address, discard the packet and return an icmp6 destination
    373 	 * unreachable error with Code 2 (beyond scope of source address).
    374 	 * [draft-ietf-ipngwg-icmp-v3-00.txt, Section 3.1]
    375 	 */
    376 	if (in6_addr2scopeid(m->m_pkthdr.rcvif, &ip6->ip6_src) !=
    377 	    in6_addr2scopeid(rt->rt_ifp, &ip6->ip6_src)) {
    378 		ip6stat.ip6s_cantforward++;
    379 		ip6stat.ip6s_badscope++;
    380 		in6_ifstat_inc(rt->rt_ifp, ifs6_in_discard);
    381 
    382 		if (ip6_log_time + ip6_log_interval < time.tv_sec) {
    383 			ip6_log_time = time.tv_sec;
    384 			log(LOG_DEBUG,
    385 			    "cannot forward "
    386 			    "src %s, dst %s, nxt %d, rcvif %s, outif %s\n",
    387 			    ip6_sprintf(&ip6->ip6_src),
    388 			    ip6_sprintf(&ip6->ip6_dst),
    389 			    ip6->ip6_nxt,
    390 			    if_name(m->m_pkthdr.rcvif), if_name(rt->rt_ifp));
    391 		}
    392 		if (mcopy)
    393 			icmp6_error(mcopy, ICMP6_DST_UNREACH,
    394 				    ICMP6_DST_UNREACH_BEYONDSCOPE, 0);
    395 		m_freem(m);
    396 		return;
    397 	}
    398 
    399 	if (m->m_pkthdr.len > IN6_LINKMTU(rt->rt_ifp)) {
    400 		in6_ifstat_inc(rt->rt_ifp, ifs6_in_toobig);
    401 		if (mcopy) {
    402 			u_long mtu;
    403 #ifdef IPSEC
    404 			struct secpolicy *sp;
    405 			int ipsecerror;
    406 			size_t ipsechdrsiz;
    407 #endif
    408 
    409 			mtu = IN6_LINKMTU(rt->rt_ifp);
    410 #ifdef IPSEC
    411 			/*
    412 			 * When we do IPsec tunnel ingress, we need to play
    413 			 * with the link value (decrement IPsec header size
    414 			 * from mtu value).  The code is much simpler than v4
    415 			 * case, as we have the outgoing interface for
    416 			 * encapsulated packet as "rt->rt_ifp".
    417 			 */
    418 			sp = ipsec6_getpolicybyaddr(mcopy, IPSEC_DIR_OUTBOUND,
    419 				IP_FORWARDING, &ipsecerror);
    420 			if (sp) {
    421 				ipsechdrsiz = ipsec6_hdrsiz(mcopy,
    422 					IPSEC_DIR_OUTBOUND, NULL);
    423 				if (ipsechdrsiz < mtu)
    424 					mtu -= ipsechdrsiz;
    425 			}
    426 
    427 			/*
    428 			 * if mtu becomes less than minimum MTU,
    429 			 * tell minimum MTU (and I'll need to fragment it).
    430 			 */
    431 			if (mtu < IPV6_MMTU)
    432 				mtu = IPV6_MMTU;
    433 #endif
    434 			icmp6_error(mcopy, ICMP6_PACKET_TOO_BIG, 0, mtu);
    435 		}
    436 		m_freem(m);
    437 		return;
    438 	}
    439 
    440 	if (rt->rt_flags & RTF_GATEWAY)
    441 		dst = (struct sockaddr_in6 *)rt->rt_gateway;
    442 
    443 	/*
    444 	 * If we are to forward the packet using the same interface
    445 	 * as one we got the packet from, perhaps we should send a redirect
    446 	 * to sender to shortcut a hop.
    447 	 * Only send redirect if source is sending directly to us,
    448 	 * and if packet was not source routed (or has any options).
    449 	 * Also, don't send redirect if forwarding using a route
    450 	 * modified by a redirect.
    451 	 */
    452 	if (rt->rt_ifp == m->m_pkthdr.rcvif && !srcrt && ip6_sendredirects &&
    453 #ifdef IPSEC
    454 	    !ipsecrt &&
    455 #endif
    456 	    (rt->rt_flags & (RTF_DYNAMIC|RTF_MODIFIED)) == 0) {
    457 		if ((rt->rt_ifp->if_flags & IFF_POINTOPOINT) &&
    458 		    nd6_is_addr_neighbor((struct sockaddr_in6 *)&ip6_forward_rt.ro_dst, rt->rt_ifp)) {
    459 			/*
    460 			 * If the incoming interface is equal to the outgoing
    461 			 * one, the link attached to the interface is
    462 			 * point-to-point, and the IPv6 destination is
    463 			 * regarded as on-link on the link, then it will be
    464 			 * highly probable that the destination address does
    465 			 * not exist on the link and that the packet is going
    466 			 * to loop.  Thus, we immediately drop the packet and
    467 			 * send an ICMPv6 error message.
    468 			 * For other routing loops, we dare to let the packet
    469 			 * go to the loop, so that a remote diagnosing host
    470 			 * can detect the loop by traceroute.
    471 			 * type/code is based on suggestion by Rich Draves.
    472 			 * not sure if it is the best pick.
    473 			 */
    474 			icmp6_error(mcopy, ICMP6_DST_UNREACH,
    475 				    ICMP6_DST_UNREACH_ADDR, 0);
    476 			m_freem(m);
    477 			return;
    478 		}
    479 		type = ND_REDIRECT;
    480 	}
    481 
    482 	/*
    483 	 * Fake scoped addresses. Note that even link-local source or
    484 	 * destinaion can appear, if the originating node just sends the
    485 	 * packet to us (without address resolution for the destination).
    486 	 * Since both icmp6_error and icmp6_redirect_output fill the embedded
    487 	 * link identifiers, we can do this stuff after making a copy for
    488 	 * returning an error.
    489 	 */
    490 	if ((rt->rt_ifp->if_flags & IFF_LOOPBACK) != 0) {
    491 		/*
    492 		 * See corresponding comments in ip6_output.
    493 		 * XXX: but is it possible that ip6_forward() sends a packet
    494 		 *      to a loopback interface? I don't think so, and thus
    495 		 *      I bark here. (jinmei (at) kame.net)
    496 		 * XXX: it is common to route invalid packets to loopback.
    497 		 *	also, the codepath will be visited on use of ::1 in
    498 		 *	rthdr. (itojun)
    499 		 */
    500 #if 1
    501 		if (0)
    502 #else
    503 		if ((rt->rt_flags & (RTF_BLACKHOLE|RTF_REJECT)) == 0)
    504 #endif
    505 		{
    506 			printf("ip6_forward: outgoing interface is loopback. "
    507 			       "src %s, dst %s, nxt %d, rcvif %s, outif %s\n",
    508 			       ip6_sprintf(&ip6->ip6_src),
    509 			       ip6_sprintf(&ip6->ip6_dst),
    510 			       ip6->ip6_nxt, if_name(m->m_pkthdr.rcvif),
    511 			       if_name(rt->rt_ifp));
    512 		}
    513 
    514 		/* we can just use rcvif in forwarding. */
    515 		origifp = m->m_pkthdr.rcvif;
    516 	}
    517 	else
    518 		origifp = rt->rt_ifp;
    519 	if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_src))
    520 		ip6->ip6_src.s6_addr16[1] = 0;
    521 	if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_dst))
    522 		ip6->ip6_dst.s6_addr16[1] = 0;
    523 
    524 #ifdef PFIL_HOOKS
    525 	/*
    526 	 * Run through list of hooks for output packets.
    527 	 */
    528 	if ((error = pfil_run_hooks(&inet6_pfil_hook, &m, rt->rt_ifp,
    529 	    PFIL_OUT)) != 0)
    530 		goto senderr;
    531 	if (m == NULL)
    532 		goto freecopy;
    533 	ip6 = mtod(m, struct ip6_hdr *);
    534 #endif /* PFIL_HOOKS */
    535 
    536 	error = nd6_output(rt->rt_ifp, origifp, m, dst, rt);
    537 	if (error) {
    538 		in6_ifstat_inc(rt->rt_ifp, ifs6_out_discard);
    539 		ip6stat.ip6s_cantforward++;
    540 	} else {
    541 		ip6stat.ip6s_forward++;
    542 		in6_ifstat_inc(rt->rt_ifp, ifs6_out_forward);
    543 		if (type)
    544 			ip6stat.ip6s_redirectsent++;
    545 		else {
    546 			if (mcopy)
    547 				goto freecopy;
    548 		}
    549 	}
    550 
    551 #ifdef PFIL_HOOKS
    552  senderr:
    553 #endif
    554 	if (mcopy == NULL)
    555 		return;
    556 	switch (error) {
    557 	case 0:
    558 		if (type == ND_REDIRECT) {
    559 			icmp6_redirect_output(mcopy, rt);
    560 			return;
    561 		}
    562 		goto freecopy;
    563 
    564 	case EMSGSIZE:
    565 		/* xxx MTU is constant in PPP? */
    566 		goto freecopy;
    567 
    568 	case ENOBUFS:
    569 		/* Tell source to slow down like source quench in IP? */
    570 		goto freecopy;
    571 
    572 	case ENETUNREACH:	/* shouldn't happen, checked above */
    573 	case EHOSTUNREACH:
    574 	case ENETDOWN:
    575 	case EHOSTDOWN:
    576 	default:
    577 		type = ICMP6_DST_UNREACH;
    578 		code = ICMP6_DST_UNREACH_ADDR;
    579 		break;
    580 	}
    581 	icmp6_error(mcopy, type, code, 0);
    582 	return;
    583 
    584  freecopy:
    585 	m_freem(mcopy);
    586 	return;
    587 }
    588