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