]> git.saurik.com Git - apple/xnu.git/blame - bsd/netinet6/route6.c
xnu-792.21.3.tar.gz
[apple/xnu.git] / bsd / netinet6 / route6.c
CommitLineData
9bccf70c
A
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 $ */
1c79356b
A
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>
9bccf70c 36#include <sys/queue.h>
1c79356b
A
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
21362eb3 47#if IP6_RTHDR0_ALLOWED
91447636
A
48static int ip6_rthdr0(struct mbuf *, struct ip6_hdr *,
49 struct ip6_rthdr0 *);
21362eb3 50#endif /* IP6_RTHDR0_ALLOWED */
1c79356b 51
1c79356b 52int
55e303ae 53route6_input(mp, offp)
1c79356b 54 struct mbuf **mp;
55e303ae 55 int *offp;
1c79356b 56{
9bccf70c
A
57 struct ip6_hdr *ip6;
58 struct mbuf *m = *mp;
59 struct ip6_rthdr *rh;
1c79356b 60 int off = *offp, rhlen;
9bccf70c
A
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 }
1c79356b
A
73
74#ifndef PULLDOWN_TEST
91447636 75 IP6_EXTHDR_CHECK(m, off, sizeof(*rh), return IPPROTO_DONE);
1c79356b
A
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
9bccf70c 87 switch (rh->ip6r_type) {
21362eb3 88#if IP6_RTHDR0_ALLOWED
9bccf70c
A
89 case IPV6_RTHDR_TYPE_0:
90 rhlen = (rh->ip6r_len + 1) << 3;
1c79356b 91#ifndef PULLDOWN_TEST
9bccf70c
A
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 */
91447636 97 IP6_EXTHDR_CHECK(m, off, rhlen, return IPPROTO_DONE);
1c79356b 98#else
9bccf70c
A
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) {
1c79356b
A
109 ip6stat.ip6s_tooshort++;
110 return IPPROTO_DONE;
9bccf70c 111 }
1c79356b 112#endif
9bccf70c
A
113 if (ip6_rthdr0(m, ip6, (struct ip6_rthdr0 *)rh))
114 return(IPPROTO_DONE);
115 break;
21362eb3 116#endif /* IP6_RTHDR0_ALLOWED */
9bccf70c
A
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
1c79356b
A
129 *offp += rhlen;
130 return(rh->ip6r_nxt);
131}
132
21362eb3 133#if IP6_RTHDR0_ALLOWED
1c79356b
A
134/*
135 * Type0 routing header processing
9bccf70c
A
136 *
137 * RFC2292 backward compatibility warning: no support for strict/loose bitmap,
138 * as it was dropped between RFC1883 and RFC2460.
1c79356b
A
139 */
140static int
141ip6_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--;
9bccf70c
A
177 /* note that ip6r0_addr does not exist in RFC2292bis */
178 nextaddr = rh0->ip6r0_addr + index;
1c79356b
A
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) ||
9bccf70c 196 IN6_IS_ADDR_V4COMPAT(&ip6->ip6_dst)) {
1c79356b
A
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))))
91447636 215 ip6_forward(m, IPV6_SRCRT_NEIGHBOR, 0);
1c79356b 216 else
91447636 217 ip6_forward(m, IPV6_SRCRT_NOTNEIGHBOR, 0);
1c79356b 218#else
91447636 219 ip6_forward(m, 1, 0);
1c79356b
A
220#endif
221
222 return(-1); /* m would be freed in ip6_forward() */
223}
21362eb3 224#endif /* IP6_RTHDR0_ALLOWED */