ip_encap.c revision 1.18 1 1.7 itojun /* $KAME: ip_encap.c,v 1.73 2001/10/02 08:30:58 itojun Exp $ */
2 1.1 itojun
3 1.1 itojun /*
4 1.1 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 1.1 itojun * All rights reserved.
6 1.1 itojun *
7 1.1 itojun * Redistribution and use in source and binary forms, with or without
8 1.1 itojun * modification, are permitted provided that the following conditions
9 1.1 itojun * are met:
10 1.1 itojun * 1. Redistributions of source code must retain the above copyright
11 1.1 itojun * notice, this list of conditions and the following disclaimer.
12 1.1 itojun * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 itojun * notice, this list of conditions and the following disclaimer in the
14 1.1 itojun * documentation and/or other materials provided with the distribution.
15 1.1 itojun * 3. Neither the name of the project nor the names of its contributors
16 1.1 itojun * may be used to endorse or promote products derived from this software
17 1.1 itojun * without specific prior written permission.
18 1.1 itojun *
19 1.1 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 1.1 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 1.1 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 itojun * SUCH DAMAGE.
30 1.1 itojun */
31 1.1 itojun /*
32 1.1 itojun * My grandfather said that there's a devil inside tunnelling technology...
33 1.1 itojun *
34 1.1 itojun * We have surprisingly many protocols that want packets with IP protocol
35 1.1 itojun * #4 or #41. Here's a list of protocols that want protocol #41:
36 1.1 itojun * RFC1933 configured tunnel
37 1.1 itojun * RFC1933 automatic tunnel
38 1.1 itojun * RFC2401 IPsec tunnel
39 1.1 itojun * RFC2473 IPv6 generic packet tunnelling
40 1.1 itojun * RFC2529 6over4 tunnel
41 1.7 itojun * RFC3056 6to4 tunnel
42 1.7 itojun * isatap tunnel
43 1.1 itojun * mobile-ip6 (uses RFC2473)
44 1.1 itojun * Here's a list of protocol that want protocol #4:
45 1.1 itojun * RFC1853 IPv4-in-IPv4 tunnelling
46 1.1 itojun * RFC2003 IPv4 encapsulation within IPv4
47 1.1 itojun * RFC2344 reverse tunnelling for mobile-ip4
48 1.1 itojun * RFC2401 IPsec tunnel
49 1.1 itojun * Well, what can I say. They impose different en/decapsulation mechanism
50 1.1 itojun * from each other, so they need separate protocol handler. The only one
51 1.1 itojun * we can easily determine by protocol # is IPsec, which always has
52 1.1 itojun * AH/ESP/IPComp header right after outer IP header.
53 1.1 itojun *
54 1.1 itojun * So, clearly good old protosw does not work for protocol #4 and #41.
55 1.1 itojun * The code will let you match protocol via src/dst address pair.
56 1.1 itojun */
57 1.1 itojun /* XXX is M_NETADDR correct? */
58 1.6 lukem
59 1.7 itojun /*
60 1.7 itojun * With USE_RADIX the code will use radix table for tunnel lookup, for
61 1.7 itojun * tunnels registered with encap_attach() with a addr/mask pair.
62 1.7 itojun * Faster on machines with thousands of tunnel registerations (= interfaces).
63 1.7 itojun *
64 1.7 itojun * The code assumes that radix table code can handle non-continuous netmask,
65 1.7 itojun * as it will pass radix table memory region with (src + dst) sockaddr pair.
66 1.7 itojun *
67 1.7 itojun * FreeBSD is excluded here as they make max_keylen a static variable, and
68 1.7 itojun * thus forbid definition of radix table other than proper domains.
69 1.7 itojun */
70 1.7 itojun #define USE_RADIX
71 1.7 itojun
72 1.6 lukem #include <sys/cdefs.h>
73 1.18 matt __KERNEL_RCSID(0, "$NetBSD: ip_encap.c,v 1.18 2004/04/26 01:31:56 matt Exp $");
74 1.1 itojun
75 1.4 itojun #include "opt_mrouting.h"
76 1.4 itojun #include "opt_inet.h"
77 1.1 itojun
78 1.1 itojun #include <sys/param.h>
79 1.1 itojun #include <sys/systm.h>
80 1.1 itojun #include <sys/socket.h>
81 1.1 itojun #include <sys/sockio.h>
82 1.1 itojun #include <sys/mbuf.h>
83 1.1 itojun #include <sys/errno.h>
84 1.1 itojun #include <sys/protosw.h>
85 1.4 itojun #include <sys/queue.h>
86 1.1 itojun
87 1.1 itojun #include <net/if.h>
88 1.1 itojun #include <net/route.h>
89 1.1 itojun
90 1.1 itojun #include <netinet/in.h>
91 1.1 itojun #include <netinet/in_systm.h>
92 1.1 itojun #include <netinet/ip.h>
93 1.1 itojun #include <netinet/ip_var.h>
94 1.1 itojun #include <netinet/ip_encap.h>
95 1.1 itojun #ifdef MROUTING
96 1.1 itojun #include <netinet/ip_mroute.h>
97 1.1 itojun #endif /* MROUTING */
98 1.1 itojun
99 1.1 itojun #ifdef INET6
100 1.1 itojun #include <netinet/ip6.h>
101 1.1 itojun #include <netinet6/ip6_var.h>
102 1.1 itojun #include <netinet6/ip6protosw.h>
103 1.7 itojun #include <netinet6/in6_var.h>
104 1.7 itojun #include <netinet6/in6_pcb.h>
105 1.7 itojun #include <netinet/icmp6.h>
106 1.1 itojun #endif
107 1.1 itojun
108 1.1 itojun #include <machine/stdarg.h>
109 1.1 itojun
110 1.1 itojun #include <net/net_osdep.h>
111 1.1 itojun
112 1.7 itojun /* to lookup a pair of address using radix tree */
113 1.7 itojun struct sockaddr_pack {
114 1.7 itojun u_int8_t sp_len;
115 1.7 itojun u_int8_t sp_family; /* not really used */
116 1.7 itojun /* followed by variable-length data */
117 1.10 itojun };
118 1.7 itojun
119 1.7 itojun struct pack4 {
120 1.7 itojun struct sockaddr_pack p;
121 1.7 itojun struct sockaddr_in mine;
122 1.7 itojun struct sockaddr_in yours;
123 1.10 itojun };
124 1.7 itojun struct pack6 {
125 1.7 itojun struct sockaddr_pack p;
126 1.7 itojun struct sockaddr_in6 mine;
127 1.7 itojun struct sockaddr_in6 yours;
128 1.10 itojun };
129 1.7 itojun
130 1.7 itojun enum direction { INBOUND, OUTBOUND };
131 1.7 itojun
132 1.7 itojun #ifdef INET
133 1.7 itojun static struct encaptab *encap4_lookup __P((struct mbuf *, int, int,
134 1.7 itojun enum direction));
135 1.7 itojun #endif
136 1.7 itojun #ifdef INET6
137 1.7 itojun static struct encaptab *encap6_lookup __P((struct mbuf *, int, int,
138 1.7 itojun enum direction));
139 1.7 itojun #endif
140 1.7 itojun static int encap_add __P((struct encaptab *));
141 1.7 itojun static int encap_remove __P((struct encaptab *));
142 1.7 itojun static int encap_afcheck __P((int, const struct sockaddr *, const struct sockaddr *));
143 1.7 itojun #ifdef USE_RADIX
144 1.7 itojun static struct radix_node_head *encap_rnh __P((int));
145 1.7 itojun static int mask_matchlen __P((const struct sockaddr *));
146 1.7 itojun #endif
147 1.7 itojun #ifndef USE_RADIX
148 1.1 itojun static int mask_match __P((const struct encaptab *, const struct sockaddr *,
149 1.1 itojun const struct sockaddr *));
150 1.7 itojun #endif
151 1.1 itojun static void encap_fillarg __P((struct mbuf *, const struct encaptab *));
152 1.1 itojun
153 1.2 thorpej LIST_HEAD(, encaptab) encaptab = LIST_HEAD_INITIALIZER(&encaptab);
154 1.1 itojun
155 1.7 itojun #ifdef USE_RADIX
156 1.7 itojun extern int max_keylen; /* radix.c */
157 1.7 itojun struct radix_node_head *encap_head[2]; /* 0 for AF_INET, 1 for AF_INET6 */
158 1.7 itojun #endif
159 1.7 itojun
160 1.1 itojun void
161 1.1 itojun encap_init()
162 1.1 itojun {
163 1.7 itojun static int initialized = 0;
164 1.7 itojun
165 1.7 itojun if (initialized)
166 1.7 itojun return;
167 1.7 itojun initialized++;
168 1.1 itojun #if 0
169 1.1 itojun /*
170 1.1 itojun * we cannot use LIST_INIT() here, since drivers may want to call
171 1.4 itojun * encap_attach(), on driver attach. encap_init() will be called
172 1.1 itojun * on AF_INET{,6} initialization, which happens after driver
173 1.1 itojun * initialization - using LIST_INIT() here can nuke encap_attach()
174 1.1 itojun * from drivers.
175 1.1 itojun */
176 1.1 itojun LIST_INIT(&encaptab);
177 1.1 itojun #endif
178 1.7 itojun
179 1.7 itojun #ifdef USE_RADIX
180 1.7 itojun /*
181 1.9 itojun * initialize radix lookup table.
182 1.7 itojun * max_keylen initialization should happen before the call to rn_init().
183 1.7 itojun */
184 1.11 thorpej rn_inithead((void *)&encap_head[0], sizeof(struct sockaddr_pack) << 3);
185 1.7 itojun if (sizeof(struct pack4) > max_keylen)
186 1.7 itojun max_keylen = sizeof(struct pack4);
187 1.7 itojun #ifdef INET6
188 1.11 thorpej rn_inithead((void *)&encap_head[1], sizeof(struct sockaddr_pack) << 3);
189 1.7 itojun if (sizeof(struct pack6) > max_keylen)
190 1.7 itojun max_keylen = sizeof(struct pack6);
191 1.7 itojun #endif
192 1.7 itojun #endif
193 1.1 itojun }
194 1.1 itojun
195 1.4 itojun #ifdef INET
196 1.7 itojun static struct encaptab *
197 1.7 itojun encap4_lookup(m, off, proto, dir)
198 1.1 itojun struct mbuf *m;
199 1.7 itojun int off;
200 1.7 itojun int proto;
201 1.7 itojun enum direction dir;
202 1.1 itojun {
203 1.1 itojun struct ip *ip;
204 1.7 itojun struct pack4 pack;
205 1.1 itojun struct encaptab *ep, *match;
206 1.1 itojun int prio, matchprio;
207 1.7 itojun #ifdef USE_RADIX
208 1.7 itojun struct radix_node_head *rnh = encap_rnh(AF_INET);
209 1.7 itojun struct radix_node *rn;
210 1.7 itojun #endif
211 1.1 itojun
212 1.7 itojun #ifdef DIAGNOSTIC
213 1.7 itojun if (m->m_len < sizeof(*ip))
214 1.7 itojun panic("encap4_lookup");
215 1.7 itojun #endif
216 1.1 itojun ip = mtod(m, struct ip *);
217 1.1 itojun
218 1.7 itojun bzero(&pack, sizeof(pack));
219 1.7 itojun pack.p.sp_len = sizeof(pack);
220 1.7 itojun pack.mine.sin_family = pack.yours.sin_family = AF_INET;
221 1.7 itojun pack.mine.sin_len = pack.yours.sin_len = sizeof(struct sockaddr_in);
222 1.7 itojun if (dir == INBOUND) {
223 1.7 itojun pack.mine.sin_addr = ip->ip_dst;
224 1.7 itojun pack.yours.sin_addr = ip->ip_src;
225 1.7 itojun } else {
226 1.7 itojun pack.mine.sin_addr = ip->ip_src;
227 1.7 itojun pack.yours.sin_addr = ip->ip_dst;
228 1.7 itojun }
229 1.1 itojun
230 1.1 itojun match = NULL;
231 1.1 itojun matchprio = 0;
232 1.7 itojun
233 1.7 itojun #ifdef USE_RADIX
234 1.7 itojun rn = rnh->rnh_matchaddr((caddr_t)&pack, rnh);
235 1.7 itojun if (rn && (rn->rn_flags & RNF_ROOT) == 0) {
236 1.7 itojun match = (struct encaptab *)rn;
237 1.7 itojun matchprio = mask_matchlen(match->srcmask) +
238 1.7 itojun mask_matchlen(match->dstmask);
239 1.7 itojun }
240 1.7 itojun #endif
241 1.7 itojun
242 1.1 itojun for (ep = LIST_FIRST(&encaptab); ep; ep = LIST_NEXT(ep, chain)) {
243 1.1 itojun if (ep->af != AF_INET)
244 1.1 itojun continue;
245 1.1 itojun if (ep->proto >= 0 && ep->proto != proto)
246 1.1 itojun continue;
247 1.1 itojun if (ep->func)
248 1.1 itojun prio = (*ep->func)(m, off, proto, ep->arg);
249 1.1 itojun else {
250 1.7 itojun #ifdef USE_RADIX
251 1.7 itojun continue;
252 1.7 itojun #else
253 1.7 itojun prio = mask_match(ep, (struct sockaddr *)&pack.mine,
254 1.7 itojun (struct sockaddr *)&pack.yours);
255 1.7 itojun #endif
256 1.1 itojun }
257 1.1 itojun
258 1.1 itojun /*
259 1.1 itojun * We prioritize the matches by using bit length of the
260 1.1 itojun * matches. mask_match() and user-supplied matching function
261 1.1 itojun * should return the bit length of the matches (for example,
262 1.1 itojun * if both src/dst are matched for IPv4, 64 should be returned).
263 1.1 itojun * 0 or negative return value means "it did not match".
264 1.1 itojun *
265 1.1 itojun * The question is, since we have two "mask" portion, we
266 1.1 itojun * cannot really define total order between entries.
267 1.1 itojun * For example, which of these should be preferred?
268 1.1 itojun * mask_match() returns 48 (32 + 16) for both of them.
269 1.1 itojun * src=3ffe::/16, dst=3ffe:501::/32
270 1.1 itojun * src=3ffe:501::/32, dst=3ffe::/16
271 1.1 itojun *
272 1.1 itojun * We need to loop through all the possible candidates
273 1.1 itojun * to get the best match - the search takes O(n) for
274 1.1 itojun * n attachments (i.e. interfaces).
275 1.7 itojun *
276 1.7 itojun * For radix-based lookup, I guess source takes precedence.
277 1.7 itojun * See rn_{refines,lexobetter} for the correct answer.
278 1.1 itojun */
279 1.1 itojun if (prio <= 0)
280 1.1 itojun continue;
281 1.1 itojun if (prio > matchprio) {
282 1.1 itojun matchprio = prio;
283 1.1 itojun match = ep;
284 1.1 itojun }
285 1.1 itojun }
286 1.1 itojun
287 1.7 itojun return match;
288 1.7 itojun #undef s
289 1.7 itojun #undef d
290 1.7 itojun }
291 1.7 itojun
292 1.7 itojun void
293 1.7 itojun encap4_input(struct mbuf *m, ...)
294 1.7 itojun {
295 1.7 itojun int off, proto;
296 1.7 itojun va_list ap;
297 1.7 itojun const struct protosw *psw;
298 1.7 itojun struct encaptab *match;
299 1.7 itojun
300 1.7 itojun va_start(ap, m);
301 1.7 itojun off = va_arg(ap, int);
302 1.7 itojun proto = va_arg(ap, int);
303 1.7 itojun va_end(ap);
304 1.7 itojun
305 1.7 itojun match = encap4_lookup(m, off, proto, INBOUND);
306 1.7 itojun
307 1.1 itojun if (match) {
308 1.1 itojun /* found a match, "match" has the best one */
309 1.4 itojun psw = match->psw;
310 1.4 itojun if (psw && psw->pr_input) {
311 1.1 itojun encap_fillarg(m, match);
312 1.4 itojun (*psw->pr_input)(m, off, proto);
313 1.1 itojun } else
314 1.1 itojun m_freem(m);
315 1.1 itojun return;
316 1.1 itojun }
317 1.1 itojun
318 1.1 itojun /* last resort: inject to raw socket */
319 1.1 itojun rip_input(m, off, proto);
320 1.1 itojun }
321 1.1 itojun #endif
322 1.1 itojun
323 1.1 itojun #ifdef INET6
324 1.7 itojun static struct encaptab *
325 1.7 itojun encap6_lookup(m, off, proto, dir)
326 1.7 itojun struct mbuf *m;
327 1.7 itojun int off;
328 1.1 itojun int proto;
329 1.7 itojun enum direction dir;
330 1.1 itojun {
331 1.1 itojun struct ip6_hdr *ip6;
332 1.7 itojun struct pack6 pack;
333 1.7 itojun int prio, matchprio;
334 1.1 itojun struct encaptab *ep, *match;
335 1.7 itojun #ifdef USE_RADIX
336 1.7 itojun struct radix_node_head *rnh = encap_rnh(AF_INET6);
337 1.7 itojun struct radix_node *rn;
338 1.7 itojun #endif
339 1.1 itojun
340 1.7 itojun #ifdef DIAGNOSTIC
341 1.7 itojun if (m->m_len < sizeof(*ip6))
342 1.7 itojun panic("encap6_lookup");
343 1.7 itojun #endif
344 1.1 itojun ip6 = mtod(m, struct ip6_hdr *);
345 1.1 itojun
346 1.7 itojun bzero(&pack, sizeof(pack));
347 1.7 itojun pack.p.sp_len = sizeof(pack);
348 1.7 itojun pack.mine.sin6_family = pack.yours.sin6_family = AF_INET6;
349 1.7 itojun pack.mine.sin6_len = pack.yours.sin6_len = sizeof(struct sockaddr_in6);
350 1.7 itojun if (dir == INBOUND) {
351 1.7 itojun pack.mine.sin6_addr = ip6->ip6_dst;
352 1.7 itojun pack.yours.sin6_addr = ip6->ip6_src;
353 1.7 itojun } else {
354 1.7 itojun pack.mine.sin6_addr = ip6->ip6_src;
355 1.7 itojun pack.yours.sin6_addr = ip6->ip6_dst;
356 1.7 itojun }
357 1.1 itojun
358 1.1 itojun match = NULL;
359 1.1 itojun matchprio = 0;
360 1.7 itojun
361 1.7 itojun #ifdef USE_RADIX
362 1.7 itojun rn = rnh->rnh_matchaddr((caddr_t)&pack, rnh);
363 1.7 itojun if (rn && (rn->rn_flags & RNF_ROOT) == 0) {
364 1.7 itojun match = (struct encaptab *)rn;
365 1.7 itojun matchprio = mask_matchlen(match->srcmask) +
366 1.7 itojun mask_matchlen(match->dstmask);
367 1.7 itojun }
368 1.7 itojun #endif
369 1.7 itojun
370 1.1 itojun for (ep = LIST_FIRST(&encaptab); ep; ep = LIST_NEXT(ep, chain)) {
371 1.1 itojun if (ep->af != AF_INET6)
372 1.1 itojun continue;
373 1.1 itojun if (ep->proto >= 0 && ep->proto != proto)
374 1.1 itojun continue;
375 1.1 itojun if (ep->func)
376 1.7 itojun prio = (*ep->func)(m, off, proto, ep->arg);
377 1.1 itojun else {
378 1.7 itojun #ifdef USE_RADIX
379 1.7 itojun continue;
380 1.7 itojun #else
381 1.7 itojun prio = mask_match(ep, (struct sockaddr *)&pack.mine,
382 1.7 itojun (struct sockaddr *)&pack.yours);
383 1.7 itojun #endif
384 1.1 itojun }
385 1.1 itojun
386 1.7 itojun /* see encap4_lookup() for issues here */
387 1.1 itojun if (prio <= 0)
388 1.1 itojun continue;
389 1.1 itojun if (prio > matchprio) {
390 1.1 itojun matchprio = prio;
391 1.1 itojun match = ep;
392 1.1 itojun }
393 1.1 itojun }
394 1.1 itojun
395 1.7 itojun return match;
396 1.7 itojun #undef s
397 1.7 itojun #undef d
398 1.7 itojun }
399 1.7 itojun
400 1.7 itojun int
401 1.7 itojun encap6_input(mp, offp, proto)
402 1.7 itojun struct mbuf **mp;
403 1.7 itojun int *offp;
404 1.7 itojun int proto;
405 1.7 itojun {
406 1.7 itojun struct mbuf *m = *mp;
407 1.7 itojun const struct ip6protosw *psw;
408 1.7 itojun struct encaptab *match;
409 1.7 itojun
410 1.7 itojun match = encap6_lookup(m, *offp, proto, INBOUND);
411 1.7 itojun
412 1.1 itojun if (match) {
413 1.1 itojun /* found a match */
414 1.4 itojun psw = (const struct ip6protosw *)match->psw;
415 1.1 itojun if (psw && psw->pr_input) {
416 1.1 itojun encap_fillarg(m, match);
417 1.1 itojun return (*psw->pr_input)(mp, offp, proto);
418 1.1 itojun } else {
419 1.1 itojun m_freem(m);
420 1.1 itojun return IPPROTO_DONE;
421 1.1 itojun }
422 1.1 itojun }
423 1.1 itojun
424 1.1 itojun /* last resort: inject to raw socket */
425 1.1 itojun return rip6_input(mp, offp, proto);
426 1.1 itojun }
427 1.1 itojun #endif
428 1.1 itojun
429 1.7 itojun static int
430 1.1 itojun encap_add(ep)
431 1.1 itojun struct encaptab *ep;
432 1.1 itojun {
433 1.7 itojun #ifdef USE_RADIX
434 1.7 itojun struct radix_node_head *rnh = encap_rnh(ep->af);
435 1.7 itojun #endif
436 1.7 itojun int error = 0;
437 1.1 itojun
438 1.1 itojun LIST_INSERT_HEAD(&encaptab, ep, chain);
439 1.7 itojun #ifdef USE_RADIX
440 1.7 itojun if (!ep->func && rnh) {
441 1.7 itojun if (!rnh->rnh_addaddr((caddr_t)ep->addrpack,
442 1.7 itojun (caddr_t)ep->maskpack, rnh, ep->nodes)) {
443 1.7 itojun error = EEXIST;
444 1.7 itojun goto fail;
445 1.7 itojun }
446 1.7 itojun }
447 1.7 itojun #endif
448 1.7 itojun return error;
449 1.7 itojun
450 1.7 itojun fail:
451 1.7 itojun LIST_REMOVE(ep, chain);
452 1.7 itojun return error;
453 1.7 itojun }
454 1.7 itojun
455 1.7 itojun static int
456 1.7 itojun encap_remove(ep)
457 1.7 itojun struct encaptab *ep;
458 1.7 itojun {
459 1.7 itojun #ifdef USE_RADIX
460 1.7 itojun struct radix_node_head *rnh = encap_rnh(ep->af);
461 1.7 itojun #endif
462 1.7 itojun int error = 0;
463 1.7 itojun
464 1.7 itojun LIST_REMOVE(ep, chain);
465 1.7 itojun #ifdef USE_RADIX
466 1.7 itojun if (!ep->func && rnh) {
467 1.7 itojun if (!rnh->rnh_deladdr((caddr_t)ep->addrpack,
468 1.7 itojun (caddr_t)ep->maskpack, rnh))
469 1.7 itojun error = ESRCH;
470 1.7 itojun }
471 1.7 itojun #endif
472 1.7 itojun return error;
473 1.7 itojun }
474 1.7 itojun
475 1.7 itojun static int
476 1.7 itojun encap_afcheck(af, sp, dp)
477 1.7 itojun int af;
478 1.7 itojun const struct sockaddr *sp;
479 1.7 itojun const struct sockaddr *dp;
480 1.7 itojun {
481 1.7 itojun if (sp && dp) {
482 1.7 itojun if (sp->sa_len != dp->sa_len)
483 1.7 itojun return EINVAL;
484 1.7 itojun if (af != sp->sa_family || af != dp->sa_family)
485 1.7 itojun return EINVAL;
486 1.7 itojun } else if (!sp && !dp)
487 1.7 itojun ;
488 1.7 itojun else
489 1.7 itojun return EINVAL;
490 1.7 itojun
491 1.7 itojun switch (af) {
492 1.7 itojun case AF_INET:
493 1.7 itojun if (sp && sp->sa_len != sizeof(struct sockaddr_in))
494 1.7 itojun return EINVAL;
495 1.7 itojun if (dp && dp->sa_len != sizeof(struct sockaddr_in))
496 1.7 itojun return EINVAL;
497 1.7 itojun break;
498 1.7 itojun #ifdef INET6
499 1.7 itojun case AF_INET6:
500 1.7 itojun if (sp && sp->sa_len != sizeof(struct sockaddr_in6))
501 1.7 itojun return EINVAL;
502 1.7 itojun if (dp && dp->sa_len != sizeof(struct sockaddr_in6))
503 1.7 itojun return EINVAL;
504 1.7 itojun break;
505 1.7 itojun #endif
506 1.7 itojun default:
507 1.7 itojun return EAFNOSUPPORT;
508 1.7 itojun }
509 1.7 itojun
510 1.7 itojun return 0;
511 1.1 itojun }
512 1.1 itojun
513 1.1 itojun /*
514 1.1 itojun * sp (src ptr) is always my side, and dp (dst ptr) is always remote side.
515 1.1 itojun * length of mask (sm and dm) is assumed to be same as sp/dp.
516 1.1 itojun * Return value will be necessary as input (cookie) for encap_detach().
517 1.1 itojun */
518 1.1 itojun const struct encaptab *
519 1.1 itojun encap_attach(af, proto, sp, sm, dp, dm, psw, arg)
520 1.1 itojun int af;
521 1.1 itojun int proto;
522 1.1 itojun const struct sockaddr *sp, *sm;
523 1.1 itojun const struct sockaddr *dp, *dm;
524 1.1 itojun const struct protosw *psw;
525 1.1 itojun void *arg;
526 1.1 itojun {
527 1.1 itojun struct encaptab *ep;
528 1.1 itojun int error;
529 1.1 itojun int s;
530 1.7 itojun size_t l;
531 1.7 itojun struct pack4 *pack4;
532 1.7 itojun #ifdef INET6
533 1.7 itojun struct pack6 *pack6;
534 1.7 itojun #endif
535 1.1 itojun
536 1.1 itojun s = splsoftnet();
537 1.1 itojun /* sanity check on args */
538 1.7 itojun error = encap_afcheck(af, sp, dp);
539 1.7 itojun if (error)
540 1.1 itojun goto fail;
541 1.1 itojun
542 1.1 itojun /* check if anyone have already attached with exactly same config */
543 1.1 itojun for (ep = LIST_FIRST(&encaptab); ep; ep = LIST_NEXT(ep, chain)) {
544 1.1 itojun if (ep->af != af)
545 1.1 itojun continue;
546 1.1 itojun if (ep->proto != proto)
547 1.1 itojun continue;
548 1.7 itojun if (ep->func)
549 1.7 itojun continue;
550 1.7 itojun #ifdef DIAGNOSTIC
551 1.7 itojun if (!ep->src || !ep->dst || !ep->srcmask || !ep->dstmask)
552 1.7 itojun panic("null pointers in encaptab");
553 1.7 itojun #endif
554 1.7 itojun if (ep->src->sa_len != sp->sa_len ||
555 1.7 itojun bcmp(ep->src, sp, sp->sa_len) != 0 ||
556 1.7 itojun bcmp(ep->srcmask, sm, sp->sa_len) != 0)
557 1.7 itojun continue;
558 1.7 itojun if (ep->dst->sa_len != dp->sa_len ||
559 1.7 itojun bcmp(ep->dst, dp, dp->sa_len) != 0 ||
560 1.7 itojun bcmp(ep->dstmask, dm, dp->sa_len) != 0)
561 1.1 itojun continue;
562 1.1 itojun
563 1.1 itojun error = EEXIST;
564 1.1 itojun goto fail;
565 1.1 itojun }
566 1.3 thorpej
567 1.7 itojun switch (af) {
568 1.7 itojun case AF_INET:
569 1.7 itojun l = sizeof(*pack4);
570 1.7 itojun break;
571 1.7 itojun #ifdef INET6
572 1.7 itojun case AF_INET6:
573 1.7 itojun l = sizeof(*pack6);
574 1.7 itojun break;
575 1.7 itojun #endif
576 1.7 itojun default:
577 1.7 itojun goto fail;
578 1.7 itojun }
579 1.7 itojun
580 1.7 itojun #ifdef DIAGNOSTIC
581 1.7 itojun /* if l exceeds the value sa_len can possibly express, it's wrong. */
582 1.7 itojun if (l > (1 << (8 * sizeof(ep->addrpack->sa_len)))) {
583 1.7 itojun error = EINVAL;
584 1.7 itojun goto fail;
585 1.7 itojun }
586 1.7 itojun #endif
587 1.1 itojun
588 1.7 itojun ep = malloc(sizeof(*ep), M_NETADDR, M_NOWAIT); /* M_NETADDR ok? */
589 1.1 itojun if (ep == NULL) {
590 1.1 itojun error = ENOBUFS;
591 1.1 itojun goto fail;
592 1.1 itojun }
593 1.1 itojun bzero(ep, sizeof(*ep));
594 1.7 itojun ep->addrpack = malloc(l, M_NETADDR, M_NOWAIT);
595 1.7 itojun if (ep->addrpack == NULL) {
596 1.7 itojun error = ENOBUFS;
597 1.7 itojun goto gc;
598 1.7 itojun }
599 1.7 itojun ep->maskpack = malloc(l, M_NETADDR, M_NOWAIT);
600 1.7 itojun if (ep->maskpack == NULL) {
601 1.7 itojun error = ENOBUFS;
602 1.7 itojun goto gc;
603 1.7 itojun }
604 1.1 itojun
605 1.1 itojun ep->af = af;
606 1.1 itojun ep->proto = proto;
607 1.7 itojun ep->addrpack->sa_len = l & 0xff;
608 1.7 itojun ep->maskpack->sa_len = l & 0xff;
609 1.7 itojun switch (af) {
610 1.7 itojun case AF_INET:
611 1.7 itojun pack4 = (struct pack4 *)ep->addrpack;
612 1.7 itojun ep->src = (struct sockaddr *)&pack4->mine;
613 1.7 itojun ep->dst = (struct sockaddr *)&pack4->yours;
614 1.7 itojun pack4 = (struct pack4 *)ep->maskpack;
615 1.7 itojun ep->srcmask = (struct sockaddr *)&pack4->mine;
616 1.7 itojun ep->dstmask = (struct sockaddr *)&pack4->yours;
617 1.7 itojun break;
618 1.7 itojun #ifdef INET6
619 1.7 itojun case AF_INET6:
620 1.7 itojun pack6 = (struct pack6 *)ep->addrpack;
621 1.7 itojun ep->src = (struct sockaddr *)&pack6->mine;
622 1.7 itojun ep->dst = (struct sockaddr *)&pack6->yours;
623 1.7 itojun pack6 = (struct pack6 *)ep->maskpack;
624 1.7 itojun ep->srcmask = (struct sockaddr *)&pack6->mine;
625 1.7 itojun ep->dstmask = (struct sockaddr *)&pack6->yours;
626 1.7 itojun break;
627 1.7 itojun #endif
628 1.7 itojun }
629 1.7 itojun
630 1.7 itojun bcopy(sp, ep->src, sp->sa_len);
631 1.7 itojun bcopy(sm, ep->srcmask, sp->sa_len);
632 1.7 itojun bcopy(dp, ep->dst, dp->sa_len);
633 1.7 itojun bcopy(dm, ep->dstmask, dp->sa_len);
634 1.1 itojun ep->psw = psw;
635 1.1 itojun ep->arg = arg;
636 1.1 itojun
637 1.7 itojun error = encap_add(ep);
638 1.7 itojun if (error)
639 1.7 itojun goto gc;
640 1.1 itojun
641 1.1 itojun error = 0;
642 1.1 itojun splx(s);
643 1.1 itojun return ep;
644 1.1 itojun
645 1.7 itojun gc:
646 1.7 itojun if (ep->addrpack)
647 1.7 itojun free(ep->addrpack, M_NETADDR);
648 1.7 itojun if (ep->maskpack)
649 1.7 itojun free(ep->maskpack, M_NETADDR);
650 1.7 itojun if (ep)
651 1.7 itojun free(ep, M_NETADDR);
652 1.1 itojun fail:
653 1.1 itojun splx(s);
654 1.1 itojun return NULL;
655 1.1 itojun }
656 1.1 itojun
657 1.1 itojun const struct encaptab *
658 1.1 itojun encap_attach_func(af, proto, func, psw, arg)
659 1.1 itojun int af;
660 1.1 itojun int proto;
661 1.1 itojun int (*func) __P((const struct mbuf *, int, int, void *));
662 1.1 itojun const struct protosw *psw;
663 1.1 itojun void *arg;
664 1.1 itojun {
665 1.1 itojun struct encaptab *ep;
666 1.1 itojun int error;
667 1.1 itojun int s;
668 1.1 itojun
669 1.1 itojun s = splsoftnet();
670 1.1 itojun /* sanity check on args */
671 1.1 itojun if (!func) {
672 1.1 itojun error = EINVAL;
673 1.1 itojun goto fail;
674 1.1 itojun }
675 1.1 itojun
676 1.7 itojun error = encap_afcheck(af, NULL, NULL);
677 1.7 itojun if (error)
678 1.7 itojun goto fail;
679 1.7 itojun
680 1.1 itojun ep = malloc(sizeof(*ep), M_NETADDR, M_NOWAIT); /*XXX*/
681 1.1 itojun if (ep == NULL) {
682 1.1 itojun error = ENOBUFS;
683 1.1 itojun goto fail;
684 1.1 itojun }
685 1.1 itojun bzero(ep, sizeof(*ep));
686 1.1 itojun
687 1.1 itojun ep->af = af;
688 1.1 itojun ep->proto = proto;
689 1.1 itojun ep->func = func;
690 1.1 itojun ep->psw = psw;
691 1.1 itojun ep->arg = arg;
692 1.1 itojun
693 1.7 itojun error = encap_add(ep);
694 1.7 itojun if (error)
695 1.7 itojun goto fail;
696 1.1 itojun
697 1.1 itojun error = 0;
698 1.1 itojun splx(s);
699 1.1 itojun return ep;
700 1.1 itojun
701 1.1 itojun fail:
702 1.1 itojun splx(s);
703 1.1 itojun return NULL;
704 1.1 itojun }
705 1.1 itojun
706 1.7 itojun /* XXX encap4_ctlinput() is necessary if we set DF=1 on outer IPv4 header */
707 1.7 itojun
708 1.7 itojun #ifdef INET6
709 1.7 itojun void
710 1.7 itojun encap6_ctlinput(cmd, sa, d0)
711 1.7 itojun int cmd;
712 1.7 itojun struct sockaddr *sa;
713 1.7 itojun void *d0;
714 1.7 itojun {
715 1.7 itojun void *d = d0;
716 1.7 itojun struct ip6_hdr *ip6;
717 1.7 itojun struct mbuf *m;
718 1.7 itojun int off;
719 1.7 itojun struct ip6ctlparam *ip6cp = NULL;
720 1.7 itojun int nxt;
721 1.7 itojun struct encaptab *ep;
722 1.7 itojun const struct ip6protosw *psw;
723 1.7 itojun
724 1.7 itojun if (sa->sa_family != AF_INET6 ||
725 1.7 itojun sa->sa_len != sizeof(struct sockaddr_in6))
726 1.7 itojun return;
727 1.7 itojun
728 1.7 itojun if ((unsigned)cmd >= PRC_NCMDS)
729 1.7 itojun return;
730 1.7 itojun if (cmd == PRC_HOSTDEAD)
731 1.7 itojun d = NULL;
732 1.7 itojun else if (cmd == PRC_MSGSIZE)
733 1.7 itojun ; /* special code is present, see below */
734 1.7 itojun else if (inet6ctlerrmap[cmd] == 0)
735 1.7 itojun return;
736 1.7 itojun
737 1.7 itojun /* if the parameter is from icmp6, decode it. */
738 1.7 itojun if (d != NULL) {
739 1.7 itojun ip6cp = (struct ip6ctlparam *)d;
740 1.7 itojun m = ip6cp->ip6c_m;
741 1.7 itojun ip6 = ip6cp->ip6c_ip6;
742 1.7 itojun off = ip6cp->ip6c_off;
743 1.7 itojun nxt = ip6cp->ip6c_nxt;
744 1.15 mycroft
745 1.15 mycroft if (ip6 && cmd == PRC_MSGSIZE) {
746 1.15 mycroft int valid = 0;
747 1.15 mycroft struct encaptab *match;
748 1.15 mycroft
749 1.15 mycroft /*
750 1.15 mycroft * Check to see if we have a valid encap configuration.
751 1.15 mycroft */
752 1.15 mycroft match = encap6_lookup(m, off, nxt, OUTBOUND);
753 1.15 mycroft if (match)
754 1.15 mycroft valid++;
755 1.15 mycroft
756 1.15 mycroft /*
757 1.15 mycroft * Depending on the value of "valid" and routing table
758 1.15 mycroft * size (mtudisc_{hi,lo}wat), we will:
759 1.15 mycroft * - recalcurate the new MTU and create the
760 1.15 mycroft * corresponding routing entry, or
761 1.15 mycroft * - ignore the MTU change notification.
762 1.15 mycroft */
763 1.15 mycroft icmp6_mtudisc_update((struct ip6ctlparam *)d, valid);
764 1.15 mycroft }
765 1.7 itojun } else {
766 1.7 itojun m = NULL;
767 1.7 itojun ip6 = NULL;
768 1.7 itojun nxt = -1;
769 1.7 itojun }
770 1.7 itojun
771 1.7 itojun /* inform all listeners */
772 1.7 itojun for (ep = LIST_FIRST(&encaptab); ep; ep = LIST_NEXT(ep, chain)) {
773 1.7 itojun if (ep->af != AF_INET6)
774 1.7 itojun continue;
775 1.7 itojun if (ep->proto >= 0 && ep->proto != nxt)
776 1.7 itojun continue;
777 1.7 itojun
778 1.7 itojun /* should optimize by looking at address pairs */
779 1.7 itojun
780 1.7 itojun /* XXX need to pass ep->arg or ep itself to listeners */
781 1.7 itojun psw = (const struct ip6protosw *)ep->psw;
782 1.7 itojun if (psw && psw->pr_ctlinput)
783 1.7 itojun (*psw->pr_ctlinput)(cmd, sa, d);
784 1.7 itojun }
785 1.7 itojun
786 1.7 itojun rip6_ctlinput(cmd, sa, d0);
787 1.7 itojun }
788 1.7 itojun #endif
789 1.7 itojun
790 1.1 itojun int
791 1.1 itojun encap_detach(cookie)
792 1.1 itojun const struct encaptab *cookie;
793 1.1 itojun {
794 1.1 itojun const struct encaptab *ep = cookie;
795 1.1 itojun struct encaptab *p;
796 1.7 itojun int error;
797 1.1 itojun
798 1.1 itojun for (p = LIST_FIRST(&encaptab); p; p = LIST_NEXT(p, chain)) {
799 1.1 itojun if (p == ep) {
800 1.7 itojun error = encap_remove(p);
801 1.7 itojun if (error)
802 1.7 itojun return error;
803 1.7 itojun if (!ep->func) {
804 1.7 itojun free(p->addrpack, M_NETADDR);
805 1.7 itojun free(p->maskpack, M_NETADDR);
806 1.7 itojun }
807 1.1 itojun free(p, M_NETADDR); /*XXX*/
808 1.1 itojun return 0;
809 1.1 itojun }
810 1.1 itojun }
811 1.1 itojun
812 1.7 itojun return ENOENT;
813 1.7 itojun }
814 1.7 itojun
815 1.7 itojun #ifdef USE_RADIX
816 1.7 itojun static struct radix_node_head *
817 1.7 itojun encap_rnh(af)
818 1.7 itojun int af;
819 1.7 itojun {
820 1.7 itojun
821 1.7 itojun switch (af) {
822 1.7 itojun case AF_INET:
823 1.7 itojun return encap_head[0];
824 1.7 itojun #ifdef INET6
825 1.7 itojun case AF_INET6:
826 1.7 itojun return encap_head[1];
827 1.7 itojun #endif
828 1.7 itojun default:
829 1.7 itojun return NULL;
830 1.7 itojun }
831 1.7 itojun }
832 1.7 itojun
833 1.7 itojun static int
834 1.7 itojun mask_matchlen(sa)
835 1.7 itojun const struct sockaddr *sa;
836 1.7 itojun {
837 1.7 itojun const char *p, *ep;
838 1.7 itojun int l;
839 1.7 itojun
840 1.7 itojun p = (const char *)sa;
841 1.7 itojun ep = p + sa->sa_len;
842 1.7 itojun p += 2; /* sa_len + sa_family */
843 1.7 itojun
844 1.7 itojun l = 0;
845 1.7 itojun while (p < ep) {
846 1.7 itojun l += (*p ? 8 : 0); /* estimate */
847 1.7 itojun p++;
848 1.7 itojun }
849 1.7 itojun return l;
850 1.1 itojun }
851 1.7 itojun #endif
852 1.1 itojun
853 1.7 itojun #ifndef USE_RADIX
854 1.1 itojun static int
855 1.1 itojun mask_match(ep, sp, dp)
856 1.1 itojun const struct encaptab *ep;
857 1.1 itojun const struct sockaddr *sp;
858 1.1 itojun const struct sockaddr *dp;
859 1.1 itojun {
860 1.1 itojun struct sockaddr_storage s;
861 1.1 itojun struct sockaddr_storage d;
862 1.1 itojun int i;
863 1.4 itojun const u_int8_t *p, *q;
864 1.4 itojun u_int8_t *r;
865 1.1 itojun int matchlen;
866 1.1 itojun
867 1.7 itojun #ifdef DIAGNOSTIC
868 1.7 itojun if (ep->func)
869 1.7 itojun panic("wrong encaptab passed to mask_match");
870 1.7 itojun #endif
871 1.1 itojun if (sp->sa_len > sizeof(s) || dp->sa_len > sizeof(d))
872 1.1 itojun return 0;
873 1.1 itojun if (sp->sa_family != ep->af || dp->sa_family != ep->af)
874 1.1 itojun return 0;
875 1.7 itojun if (sp->sa_len != ep->src->sa_len || dp->sa_len != ep->dst->sa_len)
876 1.1 itojun return 0;
877 1.1 itojun
878 1.1 itojun matchlen = 0;
879 1.1 itojun
880 1.4 itojun p = (const u_int8_t *)sp;
881 1.7 itojun q = (const u_int8_t *)ep->srcmask;
882 1.1 itojun r = (u_int8_t *)&s;
883 1.1 itojun for (i = 0 ; i < sp->sa_len; i++) {
884 1.1 itojun r[i] = p[i] & q[i];
885 1.1 itojun /* XXX estimate */
886 1.1 itojun matchlen += (q[i] ? 8 : 0);
887 1.1 itojun }
888 1.1 itojun
889 1.4 itojun p = (const u_int8_t *)dp;
890 1.7 itojun q = (const u_int8_t *)ep->dstmask;
891 1.1 itojun r = (u_int8_t *)&d;
892 1.1 itojun for (i = 0 ; i < dp->sa_len; i++) {
893 1.1 itojun r[i] = p[i] & q[i];
894 1.1 itojun /* XXX rough estimate */
895 1.1 itojun matchlen += (q[i] ? 8 : 0);
896 1.1 itojun }
897 1.1 itojun
898 1.1 itojun /* need to overwrite len/family portion as we don't compare them */
899 1.1 itojun s.ss_len = sp->sa_len;
900 1.1 itojun s.ss_family = sp->sa_family;
901 1.1 itojun d.ss_len = dp->sa_len;
902 1.1 itojun d.ss_family = dp->sa_family;
903 1.1 itojun
904 1.7 itojun if (bcmp(&s, ep->src, ep->src->sa_len) == 0 &&
905 1.7 itojun bcmp(&d, ep->dst, ep->dst->sa_len) == 0) {
906 1.1 itojun return matchlen;
907 1.1 itojun } else
908 1.1 itojun return 0;
909 1.1 itojun }
910 1.7 itojun #endif
911 1.1 itojun
912 1.1 itojun static void
913 1.1 itojun encap_fillarg(m, ep)
914 1.1 itojun struct mbuf *m;
915 1.1 itojun const struct encaptab *ep;
916 1.1 itojun {
917 1.12 itojun struct m_tag *mtag;
918 1.1 itojun
919 1.12 itojun mtag = m_tag_get(PACKET_TAG_ENCAP, sizeof(void *), M_NOWAIT);
920 1.12 itojun if (mtag) {
921 1.12 itojun *(void **)(mtag + 1) = ep->arg;
922 1.12 itojun m_tag_prepend(m, mtag);
923 1.1 itojun }
924 1.1 itojun }
925 1.1 itojun
926 1.1 itojun void *
927 1.1 itojun encap_getarg(m)
928 1.1 itojun struct mbuf *m;
929 1.1 itojun {
930 1.1 itojun void *p;
931 1.12 itojun struct m_tag *mtag;
932 1.1 itojun
933 1.1 itojun p = NULL;
934 1.12 itojun mtag = m_tag_find(m, PACKET_TAG_ENCAP, NULL);
935 1.12 itojun if (mtag != NULL) {
936 1.13 itojun p = *(void **)(mtag + 1);
937 1.12 itojun m_tag_delete(m, mtag);
938 1.1 itojun }
939 1.1 itojun return p;
940 1.1 itojun }
941