]> git.saurik.com Git - apple/xnu.git/blob - bsd/netinet6/route6.c
xnu-792.24.17.tar.gz
[apple/xnu.git] / bsd / netinet6 / route6.c
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 $ */
3
4 /*
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
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.
19 *
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
30 * SUCH DAMAGE.
31 */
32
33 #include <sys/param.h>
34 #include <sys/mbuf.h>
35 #include <sys/socket.h>
36 #include <sys/queue.h>
37
38 #include <net/if.h>
39
40 #include <netinet/in.h>
41 #include <netinet6/in6_var.h>
42 #include <netinet/ip6.h>
43 #include <netinet6/ip6_var.h>
44
45 #include <netinet/icmp6.h>
46
47 #if IP6_RTHDR0_ALLOWED
48 static int ip6_rthdr0(struct mbuf *, struct ip6_hdr *,
49 struct ip6_rthdr0 *);
50 #endif /* IP6_RTHDR0_ALLOWED */
51
52 int
53 route6_input(mp, offp)
54 struct mbuf **mp;
55 int *offp;
56 {
57 struct ip6_hdr *ip6;
58 struct mbuf *m = *mp;
59 struct ip6_rthdr *rh;
60 int off = *offp, rhlen;
61 struct mbuf *n;
62
63 n = ip6_findaux(m);
64 if (n) {
65 struct ip6aux *ip6a = mtod(n, struct ip6aux *);
66 /* XXX reject home-address option before rthdr */
67 if (ip6a->ip6a_flags & IP6A_SWAP) {
68 ip6stat.ip6s_badoptions++;
69 m_freem(m);
70 return IPPROTO_DONE;
71 }
72 }
73
74 #ifndef PULLDOWN_TEST
75 IP6_EXTHDR_CHECK(m, off, sizeof(*rh), return IPPROTO_DONE);
76 ip6 = mtod(m, struct ip6_hdr *);
77 rh = (struct ip6_rthdr *)((caddr_t)ip6 + off);
78 #else
79 ip6 = mtod(m, struct ip6_hdr *);
80 IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, sizeof(*rh));
81 if (rh == NULL) {
82 ip6stat.ip6s_tooshort++;
83 return IPPROTO_DONE;
84 }
85 #endif
86
87 switch (rh->ip6r_type) {
88 #if IP6_RTHDR0_ALLOWED
89 case IPV6_RTHDR_TYPE_0:
90 rhlen = (rh->ip6r_len + 1) << 3;
91 #ifndef PULLDOWN_TEST
92 /*
93 * note on option length:
94 * due to IP6_EXTHDR_CHECK assumption, we cannot handle
95 * very big routing header (max rhlen == 2048).
96 */
97 IP6_EXTHDR_CHECK(m, off, rhlen, return IPPROTO_DONE);
98 #else
99 /*
100 * note on option length:
101 * maximum rhlen: 2048
102 * max mbuf m_pulldown can handle: MCLBYTES == usually 2048
103 * so, here we are assuming that m_pulldown can handle
104 * rhlen == 2048 case. this may not be a good thing to
105 * assume - we may want to avoid pulling it up altogether.
106 */
107 IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, rhlen);
108 if (rh == NULL) {
109 ip6stat.ip6s_tooshort++;
110 return IPPROTO_DONE;
111 }
112 #endif
113 if (ip6_rthdr0(m, ip6, (struct ip6_rthdr0 *)rh))
114 return(IPPROTO_DONE);
115 break;
116 #endif /* IP6_RTHDR0_ALLOWED */
117 default:
118 /* unknown routing type */
119 if (rh->ip6r_segleft == 0) {
120 rhlen = (rh->ip6r_len + 1) << 3;
121 break; /* Final dst. Just ignore the header. */
122 }
123 ip6stat.ip6s_badoptions++;
124 icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
125 (caddr_t)&rh->ip6r_type - (caddr_t)ip6);
126 return(IPPROTO_DONE);
127 }
128
129 *offp += rhlen;
130 return(rh->ip6r_nxt);
131 }
132
133 #if IP6_RTHDR0_ALLOWED
134 /*
135 * Type0 routing header processing
136 *
137 * RFC2292 backward compatibility warning: no support for strict/loose bitmap,
138 * as it was dropped between RFC1883 and RFC2460.
139 */
140 static int
141 ip6_rthdr0(m, ip6, rh0)
142 struct mbuf *m;
143 struct ip6_hdr *ip6;
144 struct ip6_rthdr0 *rh0;
145 {
146 int addrs, index;
147 struct in6_addr *nextaddr, tmpaddr;
148
149 if (rh0->ip6r0_segleft == 0)
150 return(0);
151
152 if (rh0->ip6r0_len % 2
153 #if COMPAT_RFC1883
154 || rh0->ip6r0_len > 46
155 #endif
156 ) {
157 /*
158 * Type 0 routing header can't contain more than 23 addresses.
159 * RFC 2462: this limitation was removed since stict/loose
160 * bitmap field was deleted.
161 */
162 ip6stat.ip6s_badoptions++;
163 icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
164 (caddr_t)&rh0->ip6r0_len - (caddr_t)ip6);
165 return(-1);
166 }
167
168 if ((addrs = rh0->ip6r0_len / 2) < rh0->ip6r0_segleft) {
169 ip6stat.ip6s_badoptions++;
170 icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
171 (caddr_t)&rh0->ip6r0_segleft - (caddr_t)ip6);
172 return(-1);
173 }
174
175 index = addrs - rh0->ip6r0_segleft;
176 rh0->ip6r0_segleft--;
177 /* note that ip6r0_addr does not exist in RFC2292bis */
178 nextaddr = rh0->ip6r0_addr + index;
179
180 /*
181 * reject invalid addresses. be proactive about malicious use of
182 * IPv4 mapped/compat address.
183 * XXX need more checks?
184 */
185 if (IN6_IS_ADDR_MULTICAST(nextaddr) ||
186 IN6_IS_ADDR_UNSPECIFIED(nextaddr) ||
187 IN6_IS_ADDR_V4MAPPED(nextaddr) ||
188 IN6_IS_ADDR_V4COMPAT(nextaddr)) {
189 ip6stat.ip6s_badoptions++;
190 m_freem(m);
191 return(-1);
192 }
193 if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
194 IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_dst) ||
195 IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst) ||
196 IN6_IS_ADDR_V4COMPAT(&ip6->ip6_dst)) {
197 ip6stat.ip6s_badoptions++;
198 m_freem(m);
199 return(-1);
200 }
201
202 /*
203 * Swap the IPv6 destination address and nextaddr. Forward the packet.
204 */
205 tmpaddr = *nextaddr;
206 *nextaddr = ip6->ip6_dst;
207 if (IN6_IS_ADDR_LINKLOCAL(nextaddr))
208 nextaddr->s6_addr16[1] = 0;
209 ip6->ip6_dst = tmpaddr;
210 if (IN6_IS_ADDR_LINKLOCAL(&ip6->ip6_dst))
211 ip6->ip6_dst.s6_addr16[1] = htons(m->m_pkthdr.rcvif->if_index);
212
213 #if COMPAT_RFC1883
214 if (rh0->ip6r0_slmap[index / 8] & (1 << (7 - (index % 8))))
215 ip6_forward(m, IPV6_SRCRT_NEIGHBOR, 0);
216 else
217 ip6_forward(m, IPV6_SRCRT_NOTNEIGHBOR, 0);
218 #else
219 ip6_forward(m, 1, 0);
220 #endif
221
222 return(-1); /* m would be freed in ip6_forward() */
223 }
224 #endif /* IP6_RTHDR0_ALLOWED */