inet6: only mark autoconf addresses tentative if detached
[dragonfly.git] / sys / netinet / ip_encap.c
blob72a9aa019c9bc33eee3c988f9f2c29c0846208dc
1 /* $FreeBSD: src/sys/netinet/ip_encap.c,v 1.1.2.5 2003/01/23 21:06:45 sam Exp $ */
2 /* $KAME: ip_encap.c,v 1.41 2001/03/15 08:35:08 itojun Exp $ */
4 /*
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
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.
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.
33 * My grandfather said that there's a devil inside tunnelling technology...
35 * We have surprisingly many protocols that want packets with IP protocol
36 * #4 or #41. Here's a list of protocols that want protocol #41:
37 * RFC1933 configured tunnel
38 * RFC1933 automatic tunnel
39 * RFC2401 IPsec tunnel
40 * RFC2473 IPv6 generic packet tunnelling
41 * RFC2529 6over4 tunnel
42 * mobile-ip6 (uses RFC2473)
43 * RFC3056 6to4 tunnel
44 * isatap tunnel
45 * Here's a list of protocol that want protocol #4:
46 * RFC1853 IPv4-in-IPv4 tunnelling
47 * RFC2003 IPv4 encapsulation within IPv4
48 * RFC2344 reverse tunnelling for mobile-ip4
49 * RFC2401 IPsec tunnel
50 * Well, what can I say. They impose different en/decapsulation mechanism
51 * from each other, so they need separate protocol handler. The only one
52 * we can easily determine by protocol # is IPsec, which always has
53 * AH/ESP/IPComp header right after outer IP header.
55 * So, clearly good old protosw does not work for protocol #4 and #41.
56 * The code will let you match protocol via src/dst address pair.
59 #include "opt_inet.h"
60 #include "opt_inet6.h"
62 #include <sys/param.h>
63 #include <sys/systm.h>
64 #include <sys/socket.h>
65 #include <sys/sockio.h>
66 #include <sys/mbuf.h>
67 #include <sys/errno.h>
68 #include <sys/protosw.h>
69 #include <sys/queue.h>
71 #include <net/if.h>
72 #include <net/route.h>
74 #include <netinet/in.h>
75 #include <netinet/in_systm.h>
76 #include <netinet/ip.h>
77 #include <netinet/ip_var.h>
78 #include <netinet/ip_encap.h>
80 #ifdef INET6
81 #include <netinet/ip6.h>
82 #include <netinet6/ip6_var.h>
83 #include <netinet6/ip6protosw.h>
84 #endif
86 #include <machine/stdarg.h>
88 #include <net/net_osdep.h>
90 #include <sys/kernel.h>
91 #include <sys/malloc.h>
92 #include <sys/thread2.h>
93 MALLOC_DEFINE(M_IPENCAP, "IP Encapsulation", "IP Encapsulation");
95 static void encap_add (struct encaptab *);
96 static int mask_match (const struct encaptab *, const struct sockaddr *,
97 const struct sockaddr *);
98 static void encap_fillarg (struct mbuf *, const struct encaptab *);
100 #ifndef LIST_HEAD_INITIALIZER
101 /* rely upon BSS initialization */
102 LIST_HEAD(, encaptab) encaptab;
103 #else
104 LIST_HEAD(, encaptab) encaptab = LIST_HEAD_INITIALIZER(&encaptab);
105 #endif
107 int (*ipip_input)(struct mbuf **, int *, int); /* hook for mrouting */
109 void
110 encap_init(void)
112 static int initialized = 0;
114 if (initialized)
115 return;
116 initialized++;
117 #if 0
119 * we cannot use LIST_INIT() here, since drivers may want to call
120 * encap_attach(), on driver attach. encap_init() will be called
121 * on AF_INET{,6} initialization, which happens after driver
122 * initialization - using LIST_INIT() here can nuke encap_attach()
123 * from drivers.
125 LIST_INIT(&encaptab);
126 #endif
129 #ifdef INET
131 encap4_input(struct mbuf **mp, int *offp, int proto)
133 struct mbuf *m = *mp;
134 int off = *offp;
135 struct ip *ip;
136 struct sockaddr_in s, d;
137 const struct protosw *psw;
138 struct encaptab *ep, *match;
139 int prio, matchprio;
141 if (!IN_NETISR(0)) {
143 * NOTE:
144 * Some NICs, noticeably igb(4) and ix(4), use inner IP
145 * datagram to calculate the packet hash, which leads us
146 * here.
148 m->m_flags &= ~M_HASH;
149 m = ip_rehashm(m);
150 if (m != NULL) {
151 lwkt_port_t port = netisr_hashport(m->m_pkthdr.hash);
153 KASSERT(port != &curthread->td_msgport,
154 ("mbuf hash recursion"));
155 ip_transport_redispatch(port, m, off);
157 return (IPPROTO_DONE);
160 ip = mtod(m, struct ip *);
161 *mp = NULL;
163 bzero(&s, sizeof s);
164 s.sin_family = AF_INET;
165 s.sin_len = sizeof(struct sockaddr_in);
166 s.sin_addr = ip->ip_src;
167 bzero(&d, sizeof d);
168 d.sin_family = AF_INET;
169 d.sin_len = sizeof(struct sockaddr_in);
170 d.sin_addr = ip->ip_dst;
172 match = NULL;
173 matchprio = 0;
174 for (ep = LIST_FIRST(&encaptab); ep; ep = LIST_NEXT(ep, chain)) {
175 if (ep->af != AF_INET)
176 continue;
177 if (ep->proto >= 0 && ep->proto != proto)
178 continue;
179 if (ep->func)
180 prio = (*ep->func)(m, off, proto, ep->arg);
181 else {
183 * it's inbound traffic, we need to match in reverse
184 * order
186 prio = mask_match(ep,
187 (struct sockaddr *)&d,
188 (struct sockaddr *)&s);
192 * We prioritize the matches by using bit length of the
193 * matches. mask_match() and user-supplied matching function
194 * should return the bit length of the matches (for example,
195 * if both src/dst are matched for IPv4, 64 should be returned).
196 * 0 or negative return value means "it did not match".
198 * The question is, since we have two "mask" portion, we
199 * cannot really define total order between entries.
200 * For example, which of these should be preferred?
201 * mask_match() returns 48 (32 + 16) for both of them.
202 * src=3ffe::/16, dst=3ffe:501::/32
203 * src=3ffe:501::/32, dst=3ffe::/16
205 * We need to loop through all the possible candidates
206 * to get the best match - the search takes O(n) for
207 * n attachments (i.e. interfaces).
209 if (prio <= 0)
210 continue;
211 if (prio > matchprio) {
212 matchprio = prio;
213 match = ep;
217 if (match) {
218 /* found a match, "match" has the best one */
219 psw = match->psw;
220 if (psw && psw->pr_input) {
221 encap_fillarg(m, match);
222 *mp = m;
223 (*psw->pr_input)(mp, offp, proto);
224 } else {
225 m_freem(m);
227 return(IPPROTO_DONE);
230 /* for backward compatibility */
231 if (proto == IPPROTO_IPV4 && ipip_input) {
232 *mp = m;
233 ipip_input(mp, offp, proto);
234 return(IPPROTO_DONE);
237 /* last resort: inject to raw socket */
238 *mp = m;
239 rip_input(mp, offp, proto);
240 return(IPPROTO_DONE);
242 #endif
244 #ifdef INET6
246 encap6_input(struct mbuf **mp, int *offp, int proto)
248 struct mbuf *m = *mp;
249 struct ip6_hdr *ip6;
250 struct sockaddr_in6 s, d;
251 const struct protosw *psw;
252 struct encaptab *ep, *match;
253 int prio, matchprio;
255 ip6 = mtod(m, struct ip6_hdr *);
257 bzero(&s, sizeof s);
258 s.sin6_family = AF_INET6;
259 s.sin6_len = sizeof(struct sockaddr_in6);
260 s.sin6_addr = ip6->ip6_src;
261 bzero(&d, sizeof d);
262 d.sin6_family = AF_INET6;
263 d.sin6_len = sizeof(struct sockaddr_in6);
264 d.sin6_addr = ip6->ip6_dst;
266 match = NULL;
267 matchprio = 0;
268 for (ep = LIST_FIRST(&encaptab); ep; ep = LIST_NEXT(ep, chain)) {
269 if (ep->af != AF_INET6)
270 continue;
271 if (ep->proto >= 0 && ep->proto != proto)
272 continue;
273 if (ep->func)
274 prio = (*ep->func)(m, *offp, proto, ep->arg);
275 else {
277 * it's inbound traffic, we need to match in reverse
278 * order
280 prio = mask_match(ep, (struct sockaddr *)&d,
281 (struct sockaddr *)&s);
284 /* see encap4_input() for issues here */
285 if (prio <= 0)
286 continue;
287 if (prio > matchprio) {
288 matchprio = prio;
289 match = ep;
293 if (match) {
294 /* found a match */
295 psw = match->psw;
296 if (psw && psw->pr_input) {
297 encap_fillarg(m, match);
298 return (*psw->pr_input)(mp, offp, proto);
299 } else {
300 m_freem(m);
301 return IPPROTO_DONE;
305 /* last resort: inject to raw socket */
306 return rip6_input(mp, offp, proto);
308 #endif
310 static void
311 encap_add(struct encaptab *ep)
314 LIST_INSERT_HEAD(&encaptab, ep, chain);
318 * sp (src ptr) is always my side, and dp (dst ptr) is always remote side.
319 * length of mask (sm and dm) is assumed to be same as sp/dp.
320 * Return value will be necessary as input (cookie) for encap_detach().
322 const struct encaptab *
323 encap_attach(int af, int proto, const struct sockaddr *sp,
324 const struct sockaddr *sm, const struct sockaddr *dp,
325 const struct sockaddr *dm, const struct protosw *psw, void *arg)
327 struct encaptab *ep;
329 crit_enter();
330 /* sanity check on args */
331 if (sp->sa_len > sizeof ep->src || dp->sa_len > sizeof ep->dst)
332 goto fail;
333 if (sp->sa_len != dp->sa_len)
334 goto fail;
335 if (af != sp->sa_family || af != dp->sa_family)
336 goto fail;
338 /* check if anyone have already attached with exactly same config */
339 for (ep = LIST_FIRST(&encaptab); ep; ep = LIST_NEXT(ep, chain)) {
340 if (ep->af != af)
341 continue;
342 if (ep->proto != proto)
343 continue;
344 if (ep->src.ss_len != sp->sa_len ||
345 bcmp(&ep->src, sp, sp->sa_len) != 0 ||
346 bcmp(&ep->srcmask, sm, sp->sa_len) != 0)
347 continue;
348 if (ep->dst.ss_len != dp->sa_len ||
349 bcmp(&ep->dst, dp, dp->sa_len) != 0 ||
350 bcmp(&ep->dstmask, dm, dp->sa_len) != 0)
351 continue;
353 goto fail;
356 ep = kmalloc(sizeof *ep, M_IPENCAP, M_INTWAIT | M_ZERO | M_NULLOK);
357 if (ep == NULL)
358 goto fail;
360 ep->af = af;
361 ep->proto = proto;
362 bcopy(sp, &ep->src, sp->sa_len);
363 bcopy(sm, &ep->srcmask, sp->sa_len);
364 bcopy(dp, &ep->dst, dp->sa_len);
365 bcopy(dm, &ep->dstmask, dp->sa_len);
366 ep->psw = psw;
367 ep->arg = arg;
369 encap_add(ep);
371 crit_exit();
372 return ep;
374 fail:
375 crit_exit();
376 return NULL;
379 const struct encaptab *
380 encap_attach_func(int af, int proto,
381 int (*func)(const struct mbuf *, int, int, void *),
382 const struct protosw *psw, void *arg)
384 struct encaptab *ep;
386 crit_enter();
387 /* sanity check on args */
388 if (!func)
389 goto fail;
391 ep = kmalloc(sizeof *ep, M_IPENCAP, M_INTWAIT | M_ZERO | M_NULLOK);
392 if (ep == NULL)
393 goto fail;
395 ep->af = af;
396 ep->proto = proto;
397 ep->func = func;
398 ep->psw = psw;
399 ep->arg = arg;
401 encap_add(ep);
403 crit_exit();
404 return ep;
406 fail:
407 crit_exit();
408 return NULL;
412 encap_detach(const struct encaptab *cookie)
414 const struct encaptab *ep = cookie;
415 struct encaptab *p;
417 for (p = LIST_FIRST(&encaptab); p; p = LIST_NEXT(p, chain)) {
418 if (p == ep) {
419 LIST_REMOVE(p, chain);
420 kfree(p, M_IPENCAP); /*XXX*/
421 return 0;
425 return EINVAL;
428 static int
429 mask_match(const struct encaptab *ep, const struct sockaddr *sp,
430 const struct sockaddr *dp)
432 struct sockaddr_storage s;
433 struct sockaddr_storage d;
434 int i;
435 const u_int8_t *p, *q;
436 u_int8_t *r;
437 int matchlen;
439 if (sp->sa_len > sizeof s || dp->sa_len > sizeof d)
440 return 0;
441 if (sp->sa_family != ep->af || dp->sa_family != ep->af)
442 return 0;
443 if (sp->sa_len != ep->src.ss_len || dp->sa_len != ep->dst.ss_len)
444 return 0;
446 matchlen = 0;
448 p = (const u_int8_t *)sp;
449 q = (const u_int8_t *)&ep->srcmask;
450 r = (u_int8_t *)&s;
451 for (i = 0 ; i < sp->sa_len; i++) {
452 r[i] = p[i] & q[i];
453 /* XXX estimate */
454 matchlen += (q[i] ? 8 : 0);
457 p = (const u_int8_t *)dp;
458 q = (const u_int8_t *)&ep->dstmask;
459 r = (u_int8_t *)&d;
460 for (i = 0 ; i < dp->sa_len; i++) {
461 r[i] = p[i] & q[i];
462 /* XXX rough estimate */
463 matchlen += (q[i] ? 8 : 0);
466 /* need to overwrite len/family portion as we don't compare them */
467 s.ss_len = sp->sa_len;
468 s.ss_family = sp->sa_family;
469 d.ss_len = dp->sa_len;
470 d.ss_family = dp->sa_family;
472 if (bcmp(&s, &ep->src, ep->src.ss_len) == 0 &&
473 bcmp(&d, &ep->dst, ep->dst.ss_len) == 0) {
474 return matchlen;
475 } else
476 return 0;
479 static void
480 encap_fillarg(struct mbuf *m, const struct encaptab *ep)
482 struct m_tag *tag;
484 tag = m_tag_get(PACKET_TAG_ENCAP, sizeof(void *), M_NOWAIT);
485 if (tag != NULL) {
486 *(void **)m_tag_data(tag) = ep->arg;
487 m_tag_prepend(m, tag);
491 void *
492 encap_getarg(struct mbuf *m)
494 void *p = NULL;
495 struct m_tag *tag;
497 tag = m_tag_find(m, PACKET_TAG_ENCAP, NULL);
498 if (tag != NULL) {
499 p = *(void **)m_tag_data(tag);
500 m_tag_delete(m, tag);
502 return p;