]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet6/route6.c
9e01f4b168d20bd1ad846f2083a00d3aa98f65e6
1 /* $FreeBSD: src/sys/netinet6/route6.c,v 1.1.2.3 2001/07/03 11:01:55 ume Exp $ */
2 /* $KAME: route6.c,v 1.24 2001/03/14 03:07:05 itojun Exp $ */
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the project nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #include <sys/param.h>
35 #include <sys/socket.h>
36 #include <sys/queue.h>
40 #include <netinet/in.h>
41 #include <netinet6/in6_var.h>
42 #include <netinet/ip6.h>
43 #include <netinet6/ip6_var.h>
45 #include <netinet/icmp6.h>
47 static int ip6_rthdr0(struct mbuf
*, struct ip6_hdr
*,
51 route6_input(mp
, offp
)
58 int off
= *offp
, rhlen
;
63 struct ip6aux
*ip6a
= mtod(n
, struct ip6aux
*);
64 /* XXX reject home-address option before rthdr */
65 if (ip6a
->ip6a_flags
& IP6A_SWAP
) {
66 ip6stat
.ip6s_badoptions
++;
73 IP6_EXTHDR_CHECK(m
, off
, sizeof(*rh
), return IPPROTO_DONE
);
74 ip6
= mtod(m
, struct ip6_hdr
*);
75 rh
= (struct ip6_rthdr
*)((caddr_t
)ip6
+ off
);
77 ip6
= mtod(m
, struct ip6_hdr
*);
78 IP6_EXTHDR_GET(rh
, struct ip6_rthdr
*, m
, off
, sizeof(*rh
));
80 ip6stat
.ip6s_tooshort
++;
85 switch (rh
->ip6r_type
) {
86 case IPV6_RTHDR_TYPE_0
:
87 rhlen
= (rh
->ip6r_len
+ 1) << 3;
90 * note on option length:
91 * due to IP6_EXTHDR_CHECK assumption, we cannot handle
92 * very big routing header (max rhlen == 2048).
94 IP6_EXTHDR_CHECK(m
, off
, rhlen
, return IPPROTO_DONE
);
97 * note on option length:
99 * max mbuf m_pulldown can handle: MCLBYTES == usually 2048
100 * so, here we are assuming that m_pulldown can handle
101 * rhlen == 2048 case. this may not be a good thing to
102 * assume - we may want to avoid pulling it up altogether.
104 IP6_EXTHDR_GET(rh
, struct ip6_rthdr
*, m
, off
, rhlen
);
106 ip6stat
.ip6s_tooshort
++;
110 if (ip6_rthdr0(m
, ip6
, (struct ip6_rthdr0
*)rh
))
111 return(IPPROTO_DONE
);
114 /* unknown routing type */
115 if (rh
->ip6r_segleft
== 0) {
116 rhlen
= (rh
->ip6r_len
+ 1) << 3;
117 break; /* Final dst. Just ignore the header. */
119 ip6stat
.ip6s_badoptions
++;
120 icmp6_error(m
, ICMP6_PARAM_PROB
, ICMP6_PARAMPROB_HEADER
,
121 (caddr_t
)&rh
->ip6r_type
- (caddr_t
)ip6
);
122 return(IPPROTO_DONE
);
126 return(rh
->ip6r_nxt
);
130 * Type0 routing header processing
132 * RFC2292 backward compatibility warning: no support for strict/loose bitmap,
133 * as it was dropped between RFC1883 and RFC2460.
136 ip6_rthdr0(m
, ip6
, rh0
)
139 struct ip6_rthdr0
*rh0
;
142 struct in6_addr
*nextaddr
, tmpaddr
;
144 if (rh0
->ip6r0_segleft
== 0)
147 if (rh0
->ip6r0_len
% 2
149 || rh0
->ip6r0_len
> 46
153 * Type 0 routing header can't contain more than 23 addresses.
154 * RFC 2462: this limitation was removed since stict/loose
155 * bitmap field was deleted.
157 ip6stat
.ip6s_badoptions
++;
158 icmp6_error(m
, ICMP6_PARAM_PROB
, ICMP6_PARAMPROB_HEADER
,
159 (caddr_t
)&rh0
->ip6r0_len
- (caddr_t
)ip6
);
163 if ((addrs
= rh0
->ip6r0_len
/ 2) < rh0
->ip6r0_segleft
) {
164 ip6stat
.ip6s_badoptions
++;
165 icmp6_error(m
, ICMP6_PARAM_PROB
, ICMP6_PARAMPROB_HEADER
,
166 (caddr_t
)&rh0
->ip6r0_segleft
- (caddr_t
)ip6
);
170 index
= addrs
- rh0
->ip6r0_segleft
;
171 rh0
->ip6r0_segleft
--;
172 /* note that ip6r0_addr does not exist in RFC2292bis */
173 nextaddr
= rh0
->ip6r0_addr
+ index
;
176 * reject invalid addresses. be proactive about malicious use of
177 * IPv4 mapped/compat address.
178 * XXX need more checks?
180 if (IN6_IS_ADDR_MULTICAST(nextaddr
) ||
181 IN6_IS_ADDR_UNSPECIFIED(nextaddr
) ||
182 IN6_IS_ADDR_V4MAPPED(nextaddr
) ||
183 IN6_IS_ADDR_V4COMPAT(nextaddr
)) {
184 ip6stat
.ip6s_badoptions
++;
188 if (IN6_IS_ADDR_MULTICAST(&ip6
->ip6_dst
) ||
189 IN6_IS_ADDR_UNSPECIFIED(&ip6
->ip6_dst
) ||
190 IN6_IS_ADDR_V4MAPPED(&ip6
->ip6_dst
) ||
191 IN6_IS_ADDR_V4COMPAT(&ip6
->ip6_dst
)) {
192 ip6stat
.ip6s_badoptions
++;
198 * Swap the IPv6 destination address and nextaddr. Forward the packet.
201 *nextaddr
= ip6
->ip6_dst
;
202 if (IN6_IS_ADDR_LINKLOCAL(nextaddr
))
203 nextaddr
->s6_addr16
[1] = 0;
204 ip6
->ip6_dst
= tmpaddr
;
205 if (IN6_IS_ADDR_LINKLOCAL(&ip6
->ip6_dst
))
206 ip6
->ip6_dst
.s6_addr16
[1] = htons(m
->m_pkthdr
.rcvif
->if_index
);
209 if (rh0
->ip6r0_slmap
[index
/ 8] & (1 << (7 - (index
% 8))))
210 ip6_forward(m
, IPV6_SRCRT_NEIGHBOR
, 0);
212 ip6_forward(m
, IPV6_SRCRT_NOTNEIGHBOR
, 0);
214 ip6_forward(m
, 1, 0);
217 return(-1); /* m would be freed in ip6_forward() */