ip6_forward.c revision 1.50 1 1.50 dyoung /* $NetBSD: ip6_forward.c,v 1.50 2006/12/02 18:59:17 dyoung 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.50 dyoung __KERNEL_RCSID(0, "$NetBSD: ip6_forward.c,v 1.50 2006/12/02 18:59:17 dyoung Exp $");
35 1.2 itojun
36 1.15 itojun #include "opt_ipsec.h"
37 1.20 itojun #include "opt_pfil_hooks.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.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.47 rpaulo #include <netinet6/scope6_var.h>
60 1.8 itojun #include <netinet/icmp6.h>
61 1.5 itojun #include <netinet6/nd6.h>
62 1.5 itojun
63 1.15 itojun #ifdef IPSEC
64 1.5 itojun #include <netinet6/ipsec.h>
65 1.5 itojun #include <netkey/key.h>
66 1.15 itojun #endif /* IPSEC */
67 1.5 itojun
68 1.20 itojun #ifdef PFIL_HOOKS
69 1.20 itojun #include <net/pfil.h>
70 1.20 itojun #endif
71 1.20 itojun
72 1.5 itojun #include <net/net_osdep.h>
73 1.2 itojun
74 1.2 itojun struct route_in6 ip6_forward_rt;
75 1.2 itojun
76 1.20 itojun #ifdef PFIL_HOOKS
77 1.20 itojun extern struct pfil_head inet6_pfil_hook; /* XXX */
78 1.20 itojun #endif
79 1.20 itojun
80 1.2 itojun /*
81 1.2 itojun * Forward a packet. If some error occurs return the sender
82 1.2 itojun * an icmp packet. Note we can't always generate a meaningful
83 1.2 itojun * icmp message because icmp doesn't have a large enough repertoire
84 1.2 itojun * of codes and types.
85 1.2 itojun *
86 1.2 itojun * If not forwarding, just drop the packet. This could be confusing
87 1.2 itojun * if ipforwarding was zero but some routing protocol was advancing
88 1.2 itojun * us as a gateway to somewhere. However, we must let the routing
89 1.2 itojun * protocol deal with that.
90 1.2 itojun *
91 1.2 itojun */
92 1.2 itojun
93 1.2 itojun void
94 1.2 itojun ip6_forward(m, srcrt)
95 1.2 itojun struct mbuf *m;
96 1.2 itojun int srcrt;
97 1.2 itojun {
98 1.5 itojun struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
99 1.18 itojun struct sockaddr_in6 *dst;
100 1.18 itojun struct rtentry *rt;
101 1.42 itojun int error = 0, type = 0, code = 0;
102 1.5 itojun struct mbuf *mcopy = NULL;
103 1.10 itojun struct ifnet *origifp; /* maybe unnecessary */
104 1.47 rpaulo u_int32_t inzone, outzone;
105 1.47 rpaulo struct in6_addr src_in6, dst_in6;
106 1.15 itojun #ifdef IPSEC
107 1.5 itojun struct secpolicy *sp = NULL;
108 1.37 itojun int ipsecrt = 0;
109 1.5 itojun #endif
110 1.5 itojun
111 1.15 itojun #ifdef IPSEC
112 1.5 itojun /*
113 1.5 itojun * Check AH/ESP integrity.
114 1.5 itojun */
115 1.5 itojun /*
116 1.5 itojun * Don't increment ip6s_cantforward because this is the check
117 1.5 itojun * before forwarding packet actually.
118 1.5 itojun */
119 1.5 itojun if (ipsec6_in_reject(m, NULL)) {
120 1.5 itojun ipsec6stat.in_polvio++;
121 1.5 itojun m_freem(m);
122 1.5 itojun return;
123 1.5 itojun }
124 1.25 itojun #endif /* IPSEC */
125 1.2 itojun
126 1.16 itojun /*
127 1.16 itojun * Do not forward packets to multicast destination (should be handled
128 1.16 itojun * by ip6_mforward().
129 1.16 itojun * Do not forward packets with unspecified source. It was discussed
130 1.16 itojun * in July 2000, on ipngwg mailing list.
131 1.16 itojun */
132 1.9 itojun if ((m->m_flags & (M_BCAST|M_MCAST)) != 0 ||
133 1.16 itojun IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
134 1.16 itojun IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
135 1.2 itojun ip6stat.ip6s_cantforward++;
136 1.5 itojun /* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_discard) */
137 1.48 kardel if (ip6_log_time + ip6_log_interval < time_second) {
138 1.48 kardel ip6_log_time = time_second;
139 1.2 itojun log(LOG_DEBUG,
140 1.2 itojun "cannot forward "
141 1.2 itojun "from %s to %s nxt %d received on %s\n",
142 1.9 itojun ip6_sprintf(&ip6->ip6_src),
143 1.9 itojun ip6_sprintf(&ip6->ip6_dst),
144 1.2 itojun ip6->ip6_nxt,
145 1.5 itojun if_name(m->m_pkthdr.rcvif));
146 1.2 itojun }
147 1.2 itojun m_freem(m);
148 1.2 itojun return;
149 1.2 itojun }
150 1.2 itojun
151 1.2 itojun if (ip6->ip6_hlim <= IPV6_HLIMDEC) {
152 1.5 itojun /* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_discard) */
153 1.2 itojun icmp6_error(m, ICMP6_TIME_EXCEEDED,
154 1.2 itojun ICMP6_TIME_EXCEED_TRANSIT, 0);
155 1.2 itojun return;
156 1.2 itojun }
157 1.2 itojun ip6->ip6_hlim -= IPV6_HLIMDEC;
158 1.2 itojun
159 1.5 itojun /*
160 1.5 itojun * Save at most ICMPV6_PLD_MAXLEN (= the min IPv6 MTU -
161 1.5 itojun * size of IPv6 + ICMPv6 headers) bytes of the packet in case
162 1.5 itojun * we need to generate an ICMP6 message to the src.
163 1.5 itojun * Thanks to M_EXT, in most cases copy will not occur.
164 1.5 itojun *
165 1.5 itojun * It is important to save it before IPsec processing as IPsec
166 1.5 itojun * processing may modify the mbuf.
167 1.5 itojun */
168 1.5 itojun mcopy = m_copy(m, 0, imin(m->m_pkthdr.len, ICMPV6_PLD_MAXLEN));
169 1.5 itojun
170 1.15 itojun #ifdef IPSEC
171 1.5 itojun /* get a security policy for this packet */
172 1.35 itojun sp = ipsec6_getpolicybyaddr(m, IPSEC_DIR_OUTBOUND,
173 1.35 itojun IP_FORWARDING, &error);
174 1.5 itojun if (sp == NULL) {
175 1.5 itojun ipsec6stat.out_inval++;
176 1.5 itojun ip6stat.ip6s_cantforward++;
177 1.5 itojun if (mcopy) {
178 1.5 itojun #if 0
179 1.5 itojun /* XXX: what icmp ? */
180 1.5 itojun #else
181 1.5 itojun m_freem(mcopy);
182 1.5 itojun #endif
183 1.5 itojun }
184 1.5 itojun m_freem(m);
185 1.5 itojun return;
186 1.5 itojun }
187 1.5 itojun
188 1.5 itojun error = 0;
189 1.5 itojun
190 1.5 itojun /* check policy */
191 1.5 itojun switch (sp->policy) {
192 1.5 itojun case IPSEC_POLICY_DISCARD:
193 1.5 itojun /*
194 1.5 itojun * This packet is just discarded.
195 1.5 itojun */
196 1.5 itojun ipsec6stat.out_polvio++;
197 1.5 itojun ip6stat.ip6s_cantforward++;
198 1.5 itojun key_freesp(sp);
199 1.5 itojun if (mcopy) {
200 1.5 itojun #if 0
201 1.5 itojun /* XXX: what icmp ? */
202 1.5 itojun #else
203 1.5 itojun m_freem(mcopy);
204 1.5 itojun #endif
205 1.5 itojun }
206 1.5 itojun m_freem(m);
207 1.5 itojun return;
208 1.5 itojun
209 1.5 itojun case IPSEC_POLICY_BYPASS:
210 1.5 itojun case IPSEC_POLICY_NONE:
211 1.5 itojun /* no need to do IPsec. */
212 1.5 itojun key_freesp(sp);
213 1.5 itojun goto skip_ipsec;
214 1.13 itojun
215 1.5 itojun case IPSEC_POLICY_IPSEC:
216 1.5 itojun if (sp->req == NULL) {
217 1.5 itojun /* XXX should be panic ? */
218 1.5 itojun printf("ip6_forward: No IPsec request specified.\n");
219 1.5 itojun ip6stat.ip6s_cantforward++;
220 1.5 itojun key_freesp(sp);
221 1.5 itojun if (mcopy) {
222 1.5 itojun #if 0
223 1.5 itojun /* XXX: what icmp ? */
224 1.5 itojun #else
225 1.5 itojun m_freem(mcopy);
226 1.5 itojun #endif
227 1.5 itojun }
228 1.5 itojun m_freem(m);
229 1.5 itojun return;
230 1.5 itojun }
231 1.5 itojun /* do IPsec */
232 1.5 itojun break;
233 1.5 itojun
234 1.5 itojun case IPSEC_POLICY_ENTRUST:
235 1.5 itojun default:
236 1.5 itojun /* should be panic ?? */
237 1.5 itojun printf("ip6_forward: Invalid policy found. %d\n", sp->policy);
238 1.5 itojun key_freesp(sp);
239 1.5 itojun goto skip_ipsec;
240 1.5 itojun }
241 1.5 itojun
242 1.5 itojun {
243 1.32 itojun struct ipsecrequest *isr = NULL;
244 1.5 itojun struct ipsec_output_state state;
245 1.5 itojun
246 1.32 itojun /*
247 1.32 itojun * when the kernel forwards a packet, it is not proper to apply
248 1.32 itojun * IPsec transport mode to the packet is not proper. this check
249 1.32 itojun * avoid from this.
250 1.32 itojun * at present, if there is even a transport mode SA request in the
251 1.32 itojun * security policy, the kernel does not apply IPsec to the packet.
252 1.32 itojun * this check is not enough because the following case is valid.
253 1.32 itojun * ipsec esp/tunnel/xxx-xxx/require esp/transport//require;
254 1.32 itojun */
255 1.32 itojun for (isr = sp->req; isr; isr = isr->next) {
256 1.41 itojun if (isr->saidx.mode == IPSEC_MODE_ANY)
257 1.41 itojun goto doipsectunnel;
258 1.41 itojun if (isr->saidx.mode == IPSEC_MODE_TUNNEL)
259 1.41 itojun goto doipsectunnel;
260 1.32 itojun }
261 1.41 itojun
262 1.41 itojun /*
263 1.41 itojun * if there's no need for tunnel mode IPsec, skip.
264 1.41 itojun */
265 1.41 itojun if (!isr)
266 1.41 itojun goto skip_ipsec;
267 1.44 perry
268 1.41 itojun doipsectunnel:
269 1.5 itojun /*
270 1.5 itojun * All the extension headers will become inaccessible
271 1.5 itojun * (since they can be encrypted).
272 1.5 itojun * Don't panic, we need no more updates to extension headers
273 1.5 itojun * on inner IPv6 packet (since they are now encapsulated).
274 1.5 itojun *
275 1.5 itojun * IPv6 [ESP|AH] IPv6 [extension headers] payload
276 1.5 itojun */
277 1.5 itojun bzero(&state, sizeof(state));
278 1.5 itojun state.m = m;
279 1.5 itojun state.ro = NULL; /* update at ipsec6_output_tunnel() */
280 1.5 itojun state.dst = NULL; /* update at ipsec6_output_tunnel() */
281 1.5 itojun
282 1.5 itojun error = ipsec6_output_tunnel(&state, sp, 0);
283 1.5 itojun
284 1.5 itojun m = state.m;
285 1.5 itojun key_freesp(sp);
286 1.5 itojun
287 1.5 itojun if (error) {
288 1.5 itojun /* mbuf is already reclaimed in ipsec6_output_tunnel. */
289 1.5 itojun switch (error) {
290 1.5 itojun case EHOSTUNREACH:
291 1.5 itojun case ENETUNREACH:
292 1.5 itojun case EMSGSIZE:
293 1.5 itojun case ENOBUFS:
294 1.5 itojun case ENOMEM:
295 1.5 itojun break;
296 1.5 itojun default:
297 1.49 liamjfoy printf("ip6_forward (ipsec): error code %d\n", error);
298 1.30 itojun /* FALLTHROUGH */
299 1.5 itojun case ENOENT:
300 1.5 itojun /* don't show these error codes to the user */
301 1.5 itojun break;
302 1.5 itojun }
303 1.5 itojun ip6stat.ip6s_cantforward++;
304 1.5 itojun if (mcopy) {
305 1.5 itojun #if 0
306 1.5 itojun /* XXX: what icmp ? */
307 1.5 itojun #else
308 1.5 itojun m_freem(mcopy);
309 1.5 itojun #endif
310 1.5 itojun }
311 1.5 itojun m_freem(m);
312 1.5 itojun return;
313 1.5 itojun }
314 1.37 itojun
315 1.41 itojun if (ip6 != mtod(m, struct ip6_hdr *)) {
316 1.41 itojun /*
317 1.41 itojun * now tunnel mode headers are added. we are originating
318 1.44 perry * packet instead of forwarding the packet.
319 1.41 itojun */
320 1.41 itojun ip6_output(m, NULL, NULL, IPV6_FORWARDING/*XXX*/, NULL, NULL,
321 1.41 itojun NULL);
322 1.43 itojun goto freecopy;
323 1.41 itojun }
324 1.41 itojun
325 1.37 itojun /* adjust pointer */
326 1.38 itojun rt = state.ro ? state.ro->ro_rt : NULL;
327 1.37 itojun dst = (struct sockaddr_in6 *)state.dst;
328 1.40 mycroft if (dst != NULL && rt != NULL) {
329 1.37 itojun ipsecrt = 1;
330 1.40 mycroft goto skip_routing;
331 1.40 mycroft }
332 1.5 itojun }
333 1.5 itojun skip_ipsec:
334 1.15 itojun #endif /* IPSEC */
335 1.5 itojun
336 1.2 itojun dst = &ip6_forward_rt.ro_dst;
337 1.2 itojun if (!srcrt) {
338 1.2 itojun /*
339 1.2 itojun * ip6_forward_rt.ro_dst.sin6_addr is equal to ip6->ip6_dst
340 1.2 itojun */
341 1.50 dyoung if (ip6_forward_rt.ro_rt == NULL ||
342 1.2 itojun (ip6_forward_rt.ro_rt->rt_flags & RTF_UP) == 0) {
343 1.2 itojun if (ip6_forward_rt.ro_rt) {
344 1.2 itojun RTFREE(ip6_forward_rt.ro_rt);
345 1.2 itojun ip6_forward_rt.ro_rt = 0;
346 1.2 itojun }
347 1.2 itojun /* this probably fails but give it a try again */
348 1.5 itojun rtalloc((struct route *)&ip6_forward_rt);
349 1.2 itojun }
350 1.13 itojun
351 1.50 dyoung if (ip6_forward_rt.ro_rt == NULL) {
352 1.2 itojun ip6stat.ip6s_noroute++;
353 1.5 itojun /* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_noroute) */
354 1.5 itojun if (mcopy) {
355 1.5 itojun icmp6_error(mcopy, ICMP6_DST_UNREACH,
356 1.5 itojun ICMP6_DST_UNREACH_NOROUTE, 0);
357 1.5 itojun }
358 1.5 itojun m_freem(m);
359 1.2 itojun return;
360 1.2 itojun }
361 1.50 dyoung } else if ((rt = ip6_forward_rt.ro_rt) == NULL ||
362 1.2 itojun !IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst, &dst->sin6_addr)) {
363 1.2 itojun if (ip6_forward_rt.ro_rt) {
364 1.2 itojun RTFREE(ip6_forward_rt.ro_rt);
365 1.2 itojun ip6_forward_rt.ro_rt = 0;
366 1.2 itojun }
367 1.2 itojun bzero(dst, sizeof(*dst));
368 1.2 itojun dst->sin6_len = sizeof(struct sockaddr_in6);
369 1.2 itojun dst->sin6_family = AF_INET6;
370 1.2 itojun dst->sin6_addr = ip6->ip6_dst;
371 1.2 itojun
372 1.2 itojun rtalloc((struct route *)&ip6_forward_rt);
373 1.50 dyoung if (ip6_forward_rt.ro_rt == NULL) {
374 1.2 itojun ip6stat.ip6s_noroute++;
375 1.5 itojun /* XXX in6_ifstat_inc(rt->rt_ifp, ifs6_in_noroute) */
376 1.5 itojun if (mcopy) {
377 1.5 itojun icmp6_error(mcopy, ICMP6_DST_UNREACH,
378 1.5 itojun ICMP6_DST_UNREACH_NOROUTE, 0);
379 1.5 itojun }
380 1.5 itojun m_freem(m);
381 1.2 itojun return;
382 1.2 itojun }
383 1.2 itojun }
384 1.2 itojun rt = ip6_forward_rt.ro_rt;
385 1.37 itojun #ifdef IPSEC
386 1.37 itojun skip_routing:;
387 1.37 itojun #endif /* IPSEC */
388 1.9 itojun
389 1.9 itojun /*
390 1.47 rpaulo * Source scope check: if a packet can't be delivered to its
391 1.47 rpaulo * destination for the reason that the destination is beyond the scope
392 1.47 rpaulo * of the source address, discard the packet and return an icmp6
393 1.47 rpaulo * destination unreachable error with Code 2 (beyond scope of source
394 1.47 rpaulo * address). We use a local copy of ip6_src, since in6_setscope()
395 1.47 rpaulo * will possibly modify its first argument.
396 1.47 rpaulo * [draft-ietf-ipngwg-icmp-v3-07, Section 3.1]
397 1.47 rpaulo */
398 1.47 rpaulo src_in6 = ip6->ip6_src;
399 1.47 rpaulo if (in6_setscope(&src_in6, rt->rt_ifp, &outzone)) {
400 1.47 rpaulo /* XXX: this should not happen */
401 1.47 rpaulo ip6stat.ip6s_cantforward++;
402 1.47 rpaulo ip6stat.ip6s_badscope++;
403 1.47 rpaulo m_freem(m);
404 1.47 rpaulo return;
405 1.47 rpaulo }
406 1.47 rpaulo if (in6_setscope(&src_in6, m->m_pkthdr.rcvif, &inzone)) {
407 1.47 rpaulo ip6stat.ip6s_cantforward++;
408 1.47 rpaulo ip6stat.ip6s_badscope++;
409 1.47 rpaulo m_freem(m);
410 1.47 rpaulo return;
411 1.47 rpaulo }
412 1.47 rpaulo if (inzone != outzone
413 1.39 itojun #ifdef IPSEC
414 1.39 itojun && !ipsecrt
415 1.39 itojun #endif
416 1.39 itojun ) {
417 1.9 itojun ip6stat.ip6s_cantforward++;
418 1.9 itojun ip6stat.ip6s_badscope++;
419 1.9 itojun in6_ifstat_inc(rt->rt_ifp, ifs6_in_discard);
420 1.9 itojun
421 1.48 kardel if (ip6_log_time + ip6_log_interval < time_second) {
422 1.48 kardel ip6_log_time = time_second;
423 1.9 itojun log(LOG_DEBUG,
424 1.9 itojun "cannot forward "
425 1.9 itojun "src %s, dst %s, nxt %d, rcvif %s, outif %s\n",
426 1.9 itojun ip6_sprintf(&ip6->ip6_src),
427 1.9 itojun ip6_sprintf(&ip6->ip6_dst),
428 1.9 itojun ip6->ip6_nxt,
429 1.9 itojun if_name(m->m_pkthdr.rcvif), if_name(rt->rt_ifp));
430 1.9 itojun }
431 1.9 itojun if (mcopy)
432 1.9 itojun icmp6_error(mcopy, ICMP6_DST_UNREACH,
433 1.9 itojun ICMP6_DST_UNREACH_BEYONDSCOPE, 0);
434 1.9 itojun m_freem(m);
435 1.9 itojun return;
436 1.9 itojun }
437 1.9 itojun
438 1.47 rpaulo /*
439 1.47 rpaulo * Destination scope check: if a packet is going to break the scope
440 1.47 rpaulo * zone of packet's destination address, discard it. This case should
441 1.47 rpaulo * usually be prevented by appropriately-configured routing table, but
442 1.47 rpaulo * we need an explicit check because we may mistakenly forward the
443 1.47 rpaulo * packet to a different zone by (e.g.) a default route.
444 1.47 rpaulo */
445 1.47 rpaulo dst_in6 = ip6->ip6_dst;
446 1.47 rpaulo if (in6_setscope(&dst_in6, m->m_pkthdr.rcvif, &inzone) != 0 ||
447 1.47 rpaulo in6_setscope(&dst_in6, rt->rt_ifp, &outzone) != 0 ||
448 1.47 rpaulo inzone != outzone) {
449 1.47 rpaulo ip6stat.ip6s_cantforward++;
450 1.47 rpaulo ip6stat.ip6s_badscope++;
451 1.47 rpaulo m_freem(m);
452 1.47 rpaulo return;
453 1.47 rpaulo }
454 1.47 rpaulo
455 1.28 itojun if (m->m_pkthdr.len > IN6_LINKMTU(rt->rt_ifp)) {
456 1.5 itojun in6_ifstat_inc(rt->rt_ifp, ifs6_in_toobig);
457 1.5 itojun if (mcopy) {
458 1.5 itojun u_long mtu;
459 1.15 itojun #ifdef IPSEC
460 1.45 christos struct secpolicy *xsp;
461 1.7 itojun int ipsecerror;
462 1.7 itojun size_t ipsechdrsiz;
463 1.7 itojun #endif
464 1.5 itojun
465 1.28 itojun mtu = IN6_LINKMTU(rt->rt_ifp);
466 1.15 itojun #ifdef IPSEC
467 1.7 itojun /*
468 1.7 itojun * When we do IPsec tunnel ingress, we need to play
469 1.28 itojun * with the link value (decrement IPsec header size
470 1.7 itojun * from mtu value). The code is much simpler than v4
471 1.7 itojun * case, as we have the outgoing interface for
472 1.7 itojun * encapsulated packet as "rt->rt_ifp".
473 1.7 itojun */
474 1.45 christos xsp = ipsec6_getpolicybyaddr(mcopy, IPSEC_DIR_OUTBOUND,
475 1.7 itojun IP_FORWARDING, &ipsecerror);
476 1.45 christos if (xsp) {
477 1.7 itojun ipsechdrsiz = ipsec6_hdrsiz(mcopy,
478 1.7 itojun IPSEC_DIR_OUTBOUND, NULL);
479 1.7 itojun if (ipsechdrsiz < mtu)
480 1.7 itojun mtu -= ipsechdrsiz;
481 1.7 itojun }
482 1.7 itojun
483 1.7 itojun /*
484 1.10 itojun * if mtu becomes less than minimum MTU,
485 1.7 itojun * tell minimum MTU (and I'll need to fragment it).
486 1.7 itojun */
487 1.7 itojun if (mtu < IPV6_MMTU)
488 1.7 itojun mtu = IPV6_MMTU;
489 1.7 itojun #endif
490 1.5 itojun icmp6_error(mcopy, ICMP6_PACKET_TOO_BIG, 0, mtu);
491 1.5 itojun }
492 1.5 itojun m_freem(m);
493 1.2 itojun return;
494 1.31 itojun }
495 1.2 itojun
496 1.2 itojun if (rt->rt_flags & RTF_GATEWAY)
497 1.2 itojun dst = (struct sockaddr_in6 *)rt->rt_gateway;
498 1.2 itojun
499 1.2 itojun /*
500 1.2 itojun * If we are to forward the packet using the same interface
501 1.2 itojun * as one we got the packet from, perhaps we should send a redirect
502 1.2 itojun * to sender to shortcut a hop.
503 1.2 itojun * Only send redirect if source is sending directly to us,
504 1.2 itojun * and if packet was not source routed (or has any options).
505 1.2 itojun * Also, don't send redirect if forwarding using a route
506 1.2 itojun * modified by a redirect.
507 1.2 itojun */
508 1.36 itojun if (rt->rt_ifp == m->m_pkthdr.rcvif && !srcrt && ip6_sendredirects &&
509 1.37 itojun #ifdef IPSEC
510 1.37 itojun !ipsecrt &&
511 1.37 itojun #endif
512 1.22 itojun (rt->rt_flags & (RTF_DYNAMIC|RTF_MODIFIED)) == 0) {
513 1.23 itojun if ((rt->rt_ifp->if_flags & IFF_POINTOPOINT) &&
514 1.23 itojun nd6_is_addr_neighbor((struct sockaddr_in6 *)&ip6_forward_rt.ro_dst, rt->rt_ifp)) {
515 1.22 itojun /*
516 1.22 itojun * If the incoming interface is equal to the outgoing
517 1.23 itojun * one, the link attached to the interface is
518 1.23 itojun * point-to-point, and the IPv6 destination is
519 1.23 itojun * regarded as on-link on the link, then it will be
520 1.23 itojun * highly probable that the destination address does
521 1.23 itojun * not exist on the link and that the packet is going
522 1.23 itojun * to loop. Thus, we immediately drop the packet and
523 1.23 itojun * send an ICMPv6 error message.
524 1.23 itojun * For other routing loops, we dare to let the packet
525 1.23 itojun * go to the loop, so that a remote diagnosing host
526 1.23 itojun * can detect the loop by traceroute.
527 1.22 itojun * type/code is based on suggestion by Rich Draves.
528 1.22 itojun * not sure if it is the best pick.
529 1.22 itojun */
530 1.22 itojun icmp6_error(mcopy, ICMP6_DST_UNREACH,
531 1.22 itojun ICMP6_DST_UNREACH_ADDR, 0);
532 1.22 itojun m_freem(m);
533 1.22 itojun return;
534 1.22 itojun }
535 1.2 itojun type = ND_REDIRECT;
536 1.22 itojun }
537 1.2 itojun
538 1.10 itojun /*
539 1.10 itojun * Fake scoped addresses. Note that even link-local source or
540 1.10 itojun * destinaion can appear, if the originating node just sends the
541 1.10 itojun * packet to us (without address resolution for the destination).
542 1.10 itojun * Since both icmp6_error and icmp6_redirect_output fill the embedded
543 1.18 itojun * link identifiers, we can do this stuff after making a copy for
544 1.18 itojun * returning an error.
545 1.10 itojun */
546 1.10 itojun if ((rt->rt_ifp->if_flags & IFF_LOOPBACK) != 0) {
547 1.10 itojun /*
548 1.10 itojun * See corresponding comments in ip6_output.
549 1.10 itojun * XXX: but is it possible that ip6_forward() sends a packet
550 1.10 itojun * to a loopback interface? I don't think so, and thus
551 1.10 itojun * I bark here. (jinmei (at) kame.net)
552 1.12 itojun * XXX: it is common to route invalid packets to loopback.
553 1.13 itojun * also, the codepath will be visited on use of ::1 in
554 1.13 itojun * rthdr. (itojun)
555 1.10 itojun */
556 1.13 itojun #if 1
557 1.13 itojun if (0)
558 1.13 itojun #else
559 1.13 itojun if ((rt->rt_flags & (RTF_BLACKHOLE|RTF_REJECT)) == 0)
560 1.13 itojun #endif
561 1.13 itojun {
562 1.12 itojun printf("ip6_forward: outgoing interface is loopback. "
563 1.12 itojun "src %s, dst %s, nxt %d, rcvif %s, outif %s\n",
564 1.12 itojun ip6_sprintf(&ip6->ip6_src),
565 1.12 itojun ip6_sprintf(&ip6->ip6_dst),
566 1.12 itojun ip6->ip6_nxt, if_name(m->m_pkthdr.rcvif),
567 1.12 itojun if_name(rt->rt_ifp));
568 1.12 itojun }
569 1.13 itojun
570 1.19 itojun /* we can just use rcvif in forwarding. */
571 1.19 itojun origifp = m->m_pkthdr.rcvif;
572 1.10 itojun }
573 1.10 itojun else
574 1.10 itojun origifp = rt->rt_ifp;
575 1.47 rpaulo /*
576 1.47 rpaulo * clear embedded scope identifiers if necessary.
577 1.47 rpaulo * in6_clearscope will touch the addresses only when necessary.
578 1.47 rpaulo */
579 1.47 rpaulo in6_clearscope(&ip6->ip6_src);
580 1.47 rpaulo in6_clearscope(&ip6->ip6_dst);
581 1.10 itojun
582 1.20 itojun #ifdef PFIL_HOOKS
583 1.20 itojun /*
584 1.20 itojun * Run through list of hooks for output packets.
585 1.20 itojun */
586 1.20 itojun if ((error = pfil_run_hooks(&inet6_pfil_hook, &m, rt->rt_ifp,
587 1.34 itojun PFIL_OUT)) != 0)
588 1.20 itojun goto senderr;
589 1.20 itojun if (m == NULL)
590 1.20 itojun goto freecopy;
591 1.20 itojun ip6 = mtod(m, struct ip6_hdr *);
592 1.20 itojun #endif /* PFIL_HOOKS */
593 1.20 itojun
594 1.10 itojun error = nd6_output(rt->rt_ifp, origifp, m, dst, rt);
595 1.5 itojun if (error) {
596 1.5 itojun in6_ifstat_inc(rt->rt_ifp, ifs6_out_discard);
597 1.2 itojun ip6stat.ip6s_cantforward++;
598 1.5 itojun } else {
599 1.2 itojun ip6stat.ip6s_forward++;
600 1.5 itojun in6_ifstat_inc(rt->rt_ifp, ifs6_out_forward);
601 1.2 itojun if (type)
602 1.2 itojun ip6stat.ip6s_redirectsent++;
603 1.2 itojun else {
604 1.2 itojun if (mcopy)
605 1.2 itojun goto freecopy;
606 1.2 itojun }
607 1.2 itojun }
608 1.20 itojun
609 1.21 matt #ifdef PFIL_HOOKS
610 1.20 itojun senderr:
611 1.21 matt #endif
612 1.2 itojun if (mcopy == NULL)
613 1.2 itojun return;
614 1.2 itojun switch (error) {
615 1.2 itojun case 0:
616 1.2 itojun if (type == ND_REDIRECT) {
617 1.2 itojun icmp6_redirect_output(mcopy, rt);
618 1.2 itojun return;
619 1.2 itojun }
620 1.2 itojun goto freecopy;
621 1.2 itojun
622 1.2 itojun case EMSGSIZE:
623 1.2 itojun /* xxx MTU is constant in PPP? */
624 1.2 itojun goto freecopy;
625 1.2 itojun
626 1.2 itojun case ENOBUFS:
627 1.2 itojun /* Tell source to slow down like source quench in IP? */
628 1.2 itojun goto freecopy;
629 1.2 itojun
630 1.2 itojun case ENETUNREACH: /* shouldn't happen, checked above */
631 1.2 itojun case EHOSTUNREACH:
632 1.2 itojun case ENETDOWN:
633 1.2 itojun case EHOSTDOWN:
634 1.2 itojun default:
635 1.2 itojun type = ICMP6_DST_UNREACH;
636 1.2 itojun code = ICMP6_DST_UNREACH_ADDR;
637 1.2 itojun break;
638 1.2 itojun }
639 1.2 itojun icmp6_error(mcopy, type, code, 0);
640 1.2 itojun return;
641 1.2 itojun
642 1.2 itojun freecopy:
643 1.2 itojun m_freem(mcopy);
644 1.5 itojun return;
645 1.2 itojun }
646