xref: /dragonfly/sys/netinet6/route6.c (revision 1d1731fa)
1 /*	$FreeBSD: src/sys/netinet6/route6.c,v 1.1.2.5 2003/01/23 21:06:47 sam Exp $	*/
2 /*	$DragonFly: src/sys/netinet6/route6.c,v 1.3 2003/08/23 11:02:46 rob Exp $	*/
3 /*	$KAME: route6.c,v 1.24 2001/03/14 03:07:05 itojun Exp $	*/
4 
5 /*
6  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. Neither the name of the project nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33 
34 #include "opt_inet.h"
35 #include "opt_inet6.h"
36 
37 #include <sys/param.h>
38 #include <sys/mbuf.h>
39 #include <sys/socket.h>
40 #include <sys/systm.h>
41 #include <sys/queue.h>
42 
43 #include <net/if.h>
44 
45 #include <netinet/in.h>
46 #include <netinet6/in6_var.h>
47 #include <netinet/ip6.h>
48 #include <netinet6/ip6_var.h>
49 
50 #include <netinet/icmp6.h>
51 
52 static int ip6_rthdr0 (struct mbuf *, struct ip6_hdr *,
53     struct ip6_rthdr0 *);
54 
55 int
56 route6_input(mp, offp, proto)
57 	struct mbuf **mp;
58 	int *offp, proto;	/* proto is unused */
59 {
60 	struct ip6_hdr *ip6;
61 	struct mbuf *m = *mp;
62 	struct ip6_rthdr *rh;
63 	int off = *offp, rhlen;
64 	struct ip6aux *ip6a;
65 
66 	ip6a = ip6_findaux(m);
67 	if (ip6a) {
68 		/* XXX reject home-address option before rthdr */
69 		if (ip6a->ip6a_flags & IP6A_SWAP) {
70 			ip6stat.ip6s_badoptions++;
71 			m_freem(m);
72 			return IPPROTO_DONE;
73 		}
74 	}
75 
76 #ifndef PULLDOWN_TEST
77 	IP6_EXTHDR_CHECK(m, off, sizeof(*rh), IPPROTO_DONE);
78 	ip6 = mtod(m, struct ip6_hdr *);
79 	rh = (struct ip6_rthdr *)((caddr_t)ip6 + off);
80 #else
81 	ip6 = mtod(m, struct ip6_hdr *);
82 	IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, sizeof(*rh));
83 	if (rh == NULL) {
84 		ip6stat.ip6s_tooshort++;
85 		return IPPROTO_DONE;
86 	}
87 #endif
88 
89 	switch (rh->ip6r_type) {
90 	case IPV6_RTHDR_TYPE_0:
91 		rhlen = (rh->ip6r_len + 1) << 3;
92 #ifndef PULLDOWN_TEST
93 		/*
94 		 * note on option length:
95 		 * due to IP6_EXTHDR_CHECK assumption, we cannot handle
96 		 * very big routing header (max rhlen == 2048).
97 		 */
98 		IP6_EXTHDR_CHECK(m, off, rhlen, IPPROTO_DONE);
99 #else
100 		/*
101 		 * note on option length:
102 		 * maximum rhlen: 2048
103 		 * max mbuf m_pulldown can handle: MCLBYTES == usually 2048
104 		 * so, here we are assuming that m_pulldown can handle
105 		 * rhlen == 2048 case.  this may not be a good thing to
106 		 * assume - we may want to avoid pulling it up altogether.
107 		 */
108 		IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, rhlen);
109 		if (rh == NULL) {
110 			ip6stat.ip6s_tooshort++;
111 			return IPPROTO_DONE;
112 		}
113 #endif
114 		if (ip6_rthdr0(m, ip6, (struct ip6_rthdr0 *)rh))
115 			return(IPPROTO_DONE);
116 		break;
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 /*
134  * Type0 routing header processing
135  *
136  * RFC2292 backward compatibility warning: no support for strict/loose bitmap,
137  * as it was dropped between RFC1883 and RFC2460.
138  */
139 static int
140 ip6_rthdr0(m, ip6, rh0)
141 	struct mbuf *m;
142 	struct ip6_hdr *ip6;
143 	struct ip6_rthdr0 *rh0;
144 {
145 	int addrs, index;
146 	struct in6_addr *nextaddr, tmpaddr;
147 
148 	if (rh0->ip6r0_segleft == 0)
149 		return(0);
150 
151 	if (rh0->ip6r0_len % 2
152 #ifdef COMPAT_RFC1883
153 	    || rh0->ip6r0_len > 46
154 #endif
155 		) {
156 		/*
157 		 * Type 0 routing header can't contain more than 23 addresses.
158 		 * RFC 2462: this limitation was removed since strict/loose
159 		 * bitmap field was deleted.
160 		 */
161 		ip6stat.ip6s_badoptions++;
162 		icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
163 			    (caddr_t)&rh0->ip6r0_len - (caddr_t)ip6);
164 		return(-1);
165 	}
166 
167 	if ((addrs = rh0->ip6r0_len / 2) < rh0->ip6r0_segleft) {
168 		ip6stat.ip6s_badoptions++;
169 		icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
170 			    (caddr_t)&rh0->ip6r0_segleft - (caddr_t)ip6);
171 		return(-1);
172 	}
173 
174 	index = addrs - rh0->ip6r0_segleft;
175 	rh0->ip6r0_segleft--;
176 	/* note that ip6r0_addr does not exist in RFC2292bis */
177 	nextaddr = rh0->ip6r0_addr + index;
178 
179 	/*
180 	 * reject invalid addresses.  be proactive about malicious use of
181 	 * IPv4 mapped/compat address.
182 	 * XXX need more checks?
183 	 */
184 	if (IN6_IS_ADDR_MULTICAST(nextaddr) ||
185 	    IN6_IS_ADDR_UNSPECIFIED(nextaddr) ||
186 	    IN6_IS_ADDR_V4MAPPED(nextaddr) ||
187 	    IN6_IS_ADDR_V4COMPAT(nextaddr)) {
188 		ip6stat.ip6s_badoptions++;
189 		m_freem(m);
190 		return(-1);
191 	}
192 	if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
193 	    IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_dst) ||
194 	    IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst) ||
195 	    IN6_IS_ADDR_V4COMPAT(&ip6->ip6_dst)) {
196 		ip6stat.ip6s_badoptions++;
197 		m_freem(m);
198 		return(-1);
199 	}
200 
201 	/*
202 	 * Swap the IPv6 destination address and nextaddr. Forward the packet.
203 	 */
204 	tmpaddr = *nextaddr;
205 	*nextaddr = ip6->ip6_dst;
206 	if (IN6_IS_ADDR_LINKLOCAL(nextaddr))
207 		nextaddr->s6_addr16[1] = 0;
208 	ip6->ip6_dst = tmpaddr;
209 	if (IN6_IS_ADDR_LINKLOCAL(&ip6->ip6_dst))
210 		ip6->ip6_dst.s6_addr16[1] = htons(m->m_pkthdr.rcvif->if_index);
211 
212 #ifdef COMPAT_RFC1883
213 	if (rh0->ip6r0_slmap[index / 8] & (1 << (7 - (index % 8))))
214 		ip6_forward(m, IPV6_SRCRT_NEIGHBOR);
215 	else
216 		ip6_forward(m, IPV6_SRCRT_NOTNEIGHBOR);
217 #else
218 	ip6_forward(m, 1);
219 #endif
220 
221 	return(-1);			/* m would be freed in ip6_forward() */
222 }
223