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