]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet6/ip6_forward.c
Merge ^/head r275685 through r275714.
[FreeBSD/FreeBSD.git] / sys / netinet6 / ip6_forward.c
1 /*-
2  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the project nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *      $KAME: ip6_forward.c,v 1.69 2001/05/17 03:48:30 itojun Exp $
30  */
31
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 #include "opt_inet.h"
36 #include "opt_inet6.h"
37 #include "opt_ipfw.h"
38 #include "opt_ipsec.h"
39 #include "opt_ipstealth.h"
40
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/malloc.h>
44 #include <sys/mbuf.h>
45 #include <sys/domain.h>
46 #include <sys/protosw.h>
47 #include <sys/socket.h>
48 #include <sys/errno.h>
49 #include <sys/time.h>
50 #include <sys/kernel.h>
51 #include <sys/syslog.h>
52
53 #include <net/if.h>
54 #include <net/if_var.h>
55 #include <net/netisr.h>
56 #include <net/route.h>
57 #include <net/pfil.h>
58
59 #include <netinet/in.h>
60 #include <netinet/in_var.h>
61 #include <netinet/in_systm.h>
62 #include <netinet/ip.h>
63 #include <netinet/ip_var.h>
64 #include <netinet6/in6_var.h>
65 #include <netinet/ip6.h>
66 #include <netinet6/ip6_var.h>
67 #include <netinet6/scope6_var.h>
68 #include <netinet/icmp6.h>
69 #include <netinet6/nd6.h>
70
71 #include <netinet/in_pcb.h>
72
73 #ifdef IPSEC
74 #include <netipsec/ipsec.h>
75 #include <netipsec/ipsec6.h>
76 #include <netipsec/key.h>
77 #endif /* IPSEC */
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 void
92 ip6_forward(struct mbuf *m, int srcrt)
93 {
94         struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
95         struct sockaddr_in6 *dst = NULL;
96         struct rtentry *rt = NULL;
97         struct route_in6 rin6;
98         int error, type = 0, code = 0;
99         struct mbuf *mcopy = NULL;
100         struct ifnet *origifp;  /* maybe unnecessary */
101         u_int32_t inzone, outzone;
102         struct in6_addr src_in6, dst_in6, odst;
103 #ifdef IPSEC
104         struct secpolicy *sp = NULL;
105 #endif
106 #ifdef SCTP
107         int sw_csum;
108 #endif
109         struct m_tag *fwd_tag;
110         char ip6bufs[INET6_ADDRSTRLEN], ip6bufd[INET6_ADDRSTRLEN];
111
112 #ifdef IPSEC
113         /*
114          * Check AH/ESP integrity.
115          */
116         /*
117          * Don't increment ip6s_cantforward because this is the check
118          * before forwarding packet actually.
119          */
120         if (ipsec6_in_reject(m, NULL)) {
121                 IPSEC6STAT_INC(ips_in_polvio);
122                 m_freem(m);
123                 return;
124         }
125 #endif /* IPSEC */
126
127         /*
128          * Do not forward packets to multicast destination (should be handled
129          * by ip6_mforward().
130          * Do not forward packets with unspecified source.  It was discussed
131          * in July 2000, on the ipngwg mailing list.
132          */
133         if ((m->m_flags & (M_BCAST|M_MCAST)) != 0 ||
134             IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
135             IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
136                 IP6STAT_INC(ip6s_cantforward);
137                 /* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_discard) */
138                 if (V_ip6_log_time + V_ip6_log_interval < time_uptime) {
139                         V_ip6_log_time = time_uptime;
140                         log(LOG_DEBUG,
141                             "cannot forward "
142                             "from %s to %s nxt %d received on %s\n",
143                             ip6_sprintf(ip6bufs, &ip6->ip6_src),
144                             ip6_sprintf(ip6bufd, &ip6->ip6_dst),
145                             ip6->ip6_nxt,
146                             if_name(m->m_pkthdr.rcvif));
147                 }
148                 m_freem(m);
149                 return;
150         }
151
152 #ifdef IPSTEALTH
153         if (!V_ip6stealth) {
154 #endif
155         if (ip6->ip6_hlim <= IPV6_HLIMDEC) {
156                 /* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_discard) */
157                 icmp6_error(m, ICMP6_TIME_EXCEEDED,
158                                 ICMP6_TIME_EXCEED_TRANSIT, 0);
159                 return;
160         }
161         ip6->ip6_hlim -= IPV6_HLIMDEC;
162
163 #ifdef IPSTEALTH
164         }
165 #endif
166
167         /*
168          * Save at most ICMPV6_PLD_MAXLEN (= the min IPv6 MTU -
169          * size of IPv6 + ICMPv6 headers) bytes of the packet in case
170          * we need to generate an ICMP6 message to the src.
171          * Thanks to M_EXT, in most cases copy will not occur.
172          *
173          * It is important to save it before IPsec processing as IPsec
174          * processing may modify the mbuf.
175          */
176         mcopy = m_copy(m, 0, imin(m->m_pkthdr.len, ICMPV6_PLD_MAXLEN));
177
178 #ifdef IPSEC
179         /* get a security policy for this packet */
180         sp = ipsec_getpolicybyaddr(m, IPSEC_DIR_OUTBOUND, &error);
181         if (sp == NULL) {
182                 IPSEC6STAT_INC(ips_out_inval);
183                 IP6STAT_INC(ip6s_cantforward);
184                 if (mcopy) {
185 #if 0
186                         /* XXX: what icmp ? */
187 #else
188                         m_freem(mcopy);
189 #endif
190                 }
191                 m_freem(m);
192                 return;
193         }
194
195         error = 0;
196
197         /* check policy */
198         switch (sp->policy) {
199         case IPSEC_POLICY_DISCARD:
200                 /*
201                  * This packet is just discarded.
202                  */
203                 IPSEC6STAT_INC(ips_out_polvio);
204                 IP6STAT_INC(ip6s_cantforward);
205                 KEY_FREESP(&sp);
206                 if (mcopy) {
207 #if 0
208                         /* XXX: what icmp ? */
209 #else
210                         m_freem(mcopy);
211 #endif
212                 }
213                 m_freem(m);
214                 return;
215
216         case IPSEC_POLICY_BYPASS:
217         case IPSEC_POLICY_NONE:
218                 /* no need to do IPsec. */
219                 KEY_FREESP(&sp);
220                 goto skip_ipsec;
221
222         case IPSEC_POLICY_IPSEC:
223                 if (sp->req == NULL) {
224                         /* XXX should be panic ? */
225                         printf("ip6_forward: No IPsec request specified.\n");
226                         IP6STAT_INC(ip6s_cantforward);
227                         KEY_FREESP(&sp);
228                         if (mcopy) {
229 #if 0
230                                 /* XXX: what icmp ? */
231 #else
232                                 m_freem(mcopy);
233 #endif
234                         }
235                         m_freem(m);
236                         return;
237                 }
238                 /* do IPsec */
239                 break;
240
241         case IPSEC_POLICY_ENTRUST:
242         default:
243                 /* should be panic ?? */
244                 printf("ip6_forward: Invalid policy found. %d\n", sp->policy);
245                 KEY_FREESP(&sp);
246                 goto skip_ipsec;
247         }
248
249     {
250         struct ipsecrequest *isr = NULL;
251
252         /*
253          * when the kernel forwards a packet, it is not proper to apply
254          * IPsec transport mode to the packet is not proper.  this check
255          * avoid from this.
256          * at present, if there is even a transport mode SA request in the
257          * security policy, the kernel does not apply IPsec to the packet.
258          * this check is not enough because the following case is valid.
259          *      ipsec esp/tunnel/xxx-xxx/require esp/transport//require;
260          */
261         for (isr = sp->req; isr; isr = isr->next) {
262                 if (isr->saidx.mode == IPSEC_MODE_ANY)
263                         goto doipsectunnel;
264                 if (isr->saidx.mode == IPSEC_MODE_TUNNEL)
265                         goto doipsectunnel;
266         }
267
268         /*
269          * if there's no need for tunnel mode IPsec, skip.
270          */
271         if (!isr)
272                 goto skip_ipsec;
273
274     doipsectunnel:
275         /*
276          * All the extension headers will become inaccessible
277          * (since they can be encrypted).
278          * Don't panic, we need no more updates to extension headers
279          * on inner IPv6 packet (since they are now encapsulated).
280          *
281          * IPv6 [ESP|AH] IPv6 [extension headers] payload
282          */
283
284         /*
285          * If we need to encapsulate the packet, do it here
286          * ipsec6_proces_packet will send the packet using ip6_output
287          */
288         error = ipsec6_process_packet(m, sp->req);
289
290         KEY_FREESP(&sp);
291
292         if (error == EJUSTRETURN) {
293                 /*
294                  * We had a SP with a level of 'use' and no SA. We
295                  * will just continue to process the packet without
296                  * IPsec processing.
297                  */
298                 error = 0;
299                 goto skip_ipsec;
300         }
301
302         if (error) {
303                 /* mbuf is already reclaimed in ipsec6_process_packet. */
304                 switch (error) {
305                 case EHOSTUNREACH:
306                 case ENETUNREACH:
307                 case EMSGSIZE:
308                 case ENOBUFS:
309                 case ENOMEM:
310                         break;
311                 default:
312                         printf("ip6_output (ipsec): error code %d\n", error);
313                         /* FALLTHROUGH */
314                 case ENOENT:
315                         /* don't show these error codes to the user */
316                         break;
317                 }
318                 IP6STAT_INC(ip6s_cantforward);
319                 if (mcopy) {
320 #if 0
321                         /* XXX: what icmp ? */
322 #else
323                         m_freem(mcopy);
324 #endif
325                 }
326                 return;
327         } else {
328                 /*
329                  * In the FAST IPSec case we have already
330                  * re-injected the packet and it has been freed
331                  * by the ipsec_done() function.  So, just clean
332                  * up after ourselves.
333                  */
334                 m = NULL;
335                 goto freecopy;
336         }
337     }
338 skip_ipsec:
339 #endif
340 again:
341         bzero(&rin6, sizeof(struct route_in6));
342         dst = (struct sockaddr_in6 *)&rin6.ro_dst;
343         dst->sin6_len = sizeof(struct sockaddr_in6);
344         dst->sin6_family = AF_INET6;
345         dst->sin6_addr = ip6->ip6_dst;
346 again2:
347         rin6.ro_rt = in6_rtalloc1((struct sockaddr *)dst, 0, 0, M_GETFIB(m));
348         if (rin6.ro_rt != NULL)
349                 RT_UNLOCK(rin6.ro_rt);
350         else {
351                 IP6STAT_INC(ip6s_noroute);
352                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_noroute);
353                 if (mcopy) {
354                         icmp6_error(mcopy, ICMP6_DST_UNREACH,
355                         ICMP6_DST_UNREACH_NOROUTE, 0);
356                 }
357                 goto bad;
358         }
359         rt = rin6.ro_rt;
360
361         /*
362          * Source scope check: if a packet can't be delivered to its
363          * destination for the reason that the destination is beyond the scope
364          * of the source address, discard the packet and return an icmp6
365          * destination unreachable error with Code 2 (beyond scope of source
366          * address).  We use a local copy of ip6_src, since in6_setscope()
367          * will possibly modify its first argument.
368          * [draft-ietf-ipngwg-icmp-v3-04.txt, Section 3.1]
369          */
370         src_in6 = ip6->ip6_src;
371         if (in6_setscope(&src_in6, rt->rt_ifp, &outzone)) {
372                 /* XXX: this should not happen */
373                 IP6STAT_INC(ip6s_cantforward);
374                 IP6STAT_INC(ip6s_badscope);
375                 goto bad;
376         }
377         if (in6_setscope(&src_in6, m->m_pkthdr.rcvif, &inzone)) {
378                 IP6STAT_INC(ip6s_cantforward);
379                 IP6STAT_INC(ip6s_badscope);
380                 goto bad;
381         }
382         if (inzone != outzone) {
383                 IP6STAT_INC(ip6s_cantforward);
384                 IP6STAT_INC(ip6s_badscope);
385                 in6_ifstat_inc(rt->rt_ifp, ifs6_in_discard);
386
387                 if (V_ip6_log_time + V_ip6_log_interval < time_uptime) {
388                         V_ip6_log_time = time_uptime;
389                         log(LOG_DEBUG,
390                             "cannot forward "
391                             "src %s, dst %s, nxt %d, rcvif %s, outif %s\n",
392                             ip6_sprintf(ip6bufs, &ip6->ip6_src),
393                             ip6_sprintf(ip6bufd, &ip6->ip6_dst),
394                             ip6->ip6_nxt,
395                             if_name(m->m_pkthdr.rcvif), if_name(rt->rt_ifp));
396                 }
397                 if (mcopy)
398                         icmp6_error(mcopy, ICMP6_DST_UNREACH,
399                                     ICMP6_DST_UNREACH_BEYONDSCOPE, 0);
400                 goto bad;
401         }
402
403         /*
404          * Destination scope check: if a packet is going to break the scope
405          * zone of packet's destination address, discard it.  This case should
406          * usually be prevented by appropriately-configured routing table, but
407          * we need an explicit check because we may mistakenly forward the
408          * packet to a different zone by (e.g.) a default route.
409          */
410         dst_in6 = ip6->ip6_dst;
411         if (in6_setscope(&dst_in6, m->m_pkthdr.rcvif, &inzone) != 0 ||
412             in6_setscope(&dst_in6, rt->rt_ifp, &outzone) != 0 ||
413             inzone != outzone) {
414                 IP6STAT_INC(ip6s_cantforward);
415                 IP6STAT_INC(ip6s_badscope);
416                 goto bad;
417         }
418
419         if (m->m_pkthdr.len > IN6_LINKMTU(rt->rt_ifp)) {
420                 in6_ifstat_inc(rt->rt_ifp, ifs6_in_toobig);
421                 if (mcopy) {
422                         u_long mtu;
423 #ifdef IPSEC
424                         size_t ipsechdrsiz;
425 #endif /* IPSEC */
426
427                         mtu = IN6_LINKMTU(rt->rt_ifp);
428 #ifdef IPSEC
429                         /*
430                          * When we do IPsec tunnel ingress, we need to play
431                          * with the link value (decrement IPsec header size
432                          * from mtu value).  The code is much simpler than v4
433                          * case, as we have the outgoing interface for
434                          * encapsulated packet as "rt->rt_ifp".
435                          */
436                         ipsechdrsiz = ipsec_hdrsiz(mcopy, IPSEC_DIR_OUTBOUND,
437                             NULL);
438                         if (ipsechdrsiz < mtu)
439                                 mtu -= ipsechdrsiz;
440                         /*
441                          * if mtu becomes less than minimum MTU,
442                          * tell minimum MTU (and I'll need to fragment it).
443                          */
444                         if (mtu < IPV6_MMTU)
445                                 mtu = IPV6_MMTU;
446 #endif /* IPSEC */
447                         icmp6_error(mcopy, ICMP6_PACKET_TOO_BIG, 0, mtu);
448                 }
449                 goto bad;
450         }
451
452         if (rt->rt_flags & RTF_GATEWAY)
453                 dst = (struct sockaddr_in6 *)rt->rt_gateway;
454
455         /*
456          * If we are to forward the packet using the same interface
457          * as one we got the packet from, perhaps we should send a redirect
458          * to sender to shortcut a hop.
459          * Only send redirect if source is sending directly to us,
460          * and if packet was not source routed (or has any options).
461          * Also, don't send redirect if forwarding using a route
462          * modified by a redirect.
463          */
464         if (V_ip6_sendredirects && rt->rt_ifp == m->m_pkthdr.rcvif && !srcrt &&
465             (rt->rt_flags & (RTF_DYNAMIC|RTF_MODIFIED)) == 0) {
466                 if ((rt->rt_ifp->if_flags & IFF_POINTOPOINT) != 0) {
467                         /*
468                          * If the incoming interface is equal to the outgoing
469                          * one, and the link attached to the interface is
470                          * point-to-point, then it will be highly probable
471                          * that a routing loop occurs. Thus, we immediately
472                          * drop the packet and send an ICMPv6 error message.
473                          *
474                          * type/code is based on suggestion by Rich Draves.
475                          * not sure if it is the best pick.
476                          */
477                         icmp6_error(mcopy, ICMP6_DST_UNREACH,
478                                     ICMP6_DST_UNREACH_ADDR, 0);
479                         goto bad;
480                 }
481                 type = ND_REDIRECT;
482         }
483
484         /*
485          * Fake scoped addresses. Note that even link-local source or
486          * destinaion can appear, if the originating node just sends the
487          * packet to us (without address resolution for the destination).
488          * Since both icmp6_error and icmp6_redirect_output fill the embedded
489          * link identifiers, we can do this stuff after making a copy for
490          * returning an error.
491          */
492         if ((rt->rt_ifp->if_flags & IFF_LOOPBACK) != 0) {
493                 /*
494                  * See corresponding comments in ip6_output.
495                  * XXX: but is it possible that ip6_forward() sends a packet
496                  *      to a loopback interface? I don't think so, and thus
497                  *      I bark here. (jinmei@kame.net)
498                  * XXX: it is common to route invalid packets to loopback.
499                  *      also, the codepath will be visited on use of ::1 in
500                  *      rthdr. (itojun)
501                  */
502 #if 1
503                 if (0)
504 #else
505                 if ((rt->rt_flags & (RTF_BLACKHOLE|RTF_REJECT)) == 0)
506 #endif
507                 {
508                         printf("ip6_forward: outgoing interface is loopback. "
509                                "src %s, dst %s, nxt %d, rcvif %s, outif %s\n",
510                                ip6_sprintf(ip6bufs, &ip6->ip6_src),
511                                ip6_sprintf(ip6bufd, &ip6->ip6_dst),
512                                ip6->ip6_nxt, if_name(m->m_pkthdr.rcvif),
513                                if_name(rt->rt_ifp));
514                 }
515
516                 /* we can just use rcvif in forwarding. */
517                 origifp = m->m_pkthdr.rcvif;
518         }
519         else
520                 origifp = rt->rt_ifp;
521         /*
522          * clear embedded scope identifiers if necessary.
523          * in6_clearscope will touch the addresses only when necessary.
524          */
525         in6_clearscope(&ip6->ip6_src);
526         in6_clearscope(&ip6->ip6_dst);
527
528         /* Jump over all PFIL processing if hooks are not active. */
529         if (!PFIL_HOOKED(&V_inet6_pfil_hook))
530                 goto pass;
531
532         odst = ip6->ip6_dst;
533         /* Run through list of hooks for output packets. */
534         error = pfil_run_hooks(&V_inet6_pfil_hook, &m, rt->rt_ifp, PFIL_OUT, NULL);
535         if (error != 0 || m == NULL)
536                 goto freecopy;          /* consumed by filter */
537         ip6 = mtod(m, struct ip6_hdr *);
538
539         /* See if destination IP address was changed by packet filter. */
540         if (!IN6_ARE_ADDR_EQUAL(&odst, &ip6->ip6_dst)) {
541                 m->m_flags |= M_SKIP_FIREWALL;
542                 /* If destination is now ourself drop to ip6_input(). */
543                 if (in6_localip(&ip6->ip6_dst)) {
544                         m->m_flags |= M_FASTFWD_OURS;
545                         if (m->m_pkthdr.rcvif == NULL)
546                                 m->m_pkthdr.rcvif = V_loif;
547                         if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA_IPV6) {
548                                 m->m_pkthdr.csum_flags |=
549                                     CSUM_DATA_VALID_IPV6 | CSUM_PSEUDO_HDR;
550                                 m->m_pkthdr.csum_data = 0xffff;
551                         }
552 #ifdef SCTP
553                         if (m->m_pkthdr.csum_flags & CSUM_SCTP_IPV6)
554                                 m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
555 #endif
556                         error = netisr_queue(NETISR_IPV6, m);
557                         goto out;
558                 } else
559                         goto again;     /* Redo the routing table lookup. */
560         }
561
562         /* See if local, if yes, send it to netisr. */
563         if (m->m_flags & M_FASTFWD_OURS) {
564                 if (m->m_pkthdr.rcvif == NULL)
565                         m->m_pkthdr.rcvif = V_loif;
566                 if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA_IPV6) {
567                         m->m_pkthdr.csum_flags |=
568                             CSUM_DATA_VALID_IPV6 | CSUM_PSEUDO_HDR;
569                         m->m_pkthdr.csum_data = 0xffff;
570                 }
571 #ifdef SCTP
572                 if (m->m_pkthdr.csum_flags & CSUM_SCTP_IPV6)
573                         m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
574 #endif
575                 error = netisr_queue(NETISR_IPV6, m);
576                 goto out;
577         }
578         /* Or forward to some other address? */
579         if ((m->m_flags & M_IP6_NEXTHOP) &&
580             (fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL)) != NULL) {
581                 dst = (struct sockaddr_in6 *)&rin6.ro_dst;
582                 bcopy((fwd_tag+1), dst, sizeof(struct sockaddr_in6));
583                 m->m_flags |= M_SKIP_FIREWALL;
584                 m->m_flags &= ~M_IP6_NEXTHOP;
585                 m_tag_delete(m, fwd_tag);
586                 goto again2;
587         }
588
589 pass:
590         error = nd6_output(rt->rt_ifp, origifp, m, dst, rt);
591         if (error) {
592                 in6_ifstat_inc(rt->rt_ifp, ifs6_out_discard);
593                 IP6STAT_INC(ip6s_cantforward);
594         } else {
595                 IP6STAT_INC(ip6s_forward);
596                 in6_ifstat_inc(rt->rt_ifp, ifs6_out_forward);
597                 if (type)
598                         IP6STAT_INC(ip6s_redirectsent);
599                 else {
600                         if (mcopy)
601                                 goto freecopy;
602                 }
603         }
604
605         if (mcopy == NULL)
606                 goto out;
607         switch (error) {
608         case 0:
609                 if (type == ND_REDIRECT) {
610                         icmp6_redirect_output(mcopy, rt);
611                         goto out;
612                 }
613                 goto freecopy;
614
615         case EMSGSIZE:
616                 /* xxx MTU is constant in PPP? */
617                 goto freecopy;
618
619         case ENOBUFS:
620                 /* Tell source to slow down like source quench in IP? */
621                 goto freecopy;
622
623         case ENETUNREACH:       /* shouldn't happen, checked above */
624         case EHOSTUNREACH:
625         case ENETDOWN:
626         case EHOSTDOWN:
627         default:
628                 type = ICMP6_DST_UNREACH;
629                 code = ICMP6_DST_UNREACH_ADDR;
630                 break;
631         }
632         icmp6_error(mcopy, type, code, 0);
633         goto out;
634
635  freecopy:
636         m_freem(mcopy);
637         goto out;
638 bad:
639         m_freem(m);
640 out:
641         if (rt != NULL)
642                 RTFREE(rt);
643 }