]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
39037602 | 2 | * Copyright (c) 2000-2016 Apple Inc. All rights reserved. |
5d5c5d0d | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
39037602 | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
39037602 | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
39037602 | 17 | * |
2d21ac55 A |
18 | * The Original Code and all software distributed under the License are |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
39037602 | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b | 27 | */ |
9bccf70c A |
28 | /* $FreeBSD: src/sys/netinet/ip_encap.c,v 1.1.2.2 2001/07/03 11:01:46 ume Exp $ */ |
29 | /* $KAME: ip_encap.c,v 1.41 2001/03/15 08:35:08 itojun Exp $ */ | |
1c79356b A |
30 | |
31 | /* | |
32 | * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. | |
33 | * All rights reserved. | |
34 | * | |
35 | * Redistribution and use in source and binary forms, with or without | |
36 | * modification, are permitted provided that the following conditions | |
37 | * are met: | |
38 | * 1. Redistributions of source code must retain the above copyright | |
39 | * notice, this list of conditions and the following disclaimer. | |
40 | * 2. Redistributions in binary form must reproduce the above copyright | |
41 | * notice, this list of conditions and the following disclaimer in the | |
42 | * documentation and/or other materials provided with the distribution. | |
43 | * 3. Neither the name of the project nor the names of its contributors | |
44 | * may be used to endorse or promote products derived from this software | |
45 | * without specific prior written permission. | |
46 | * | |
47 | * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND | |
48 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
49 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
50 | * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE | |
51 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
52 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
53 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
54 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
55 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
56 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
57 | * SUCH DAMAGE. | |
58 | */ | |
59 | /* | |
60 | * My grandfather said that there's a devil inside tunnelling technology... | |
61 | * | |
62 | * We have surprisingly many protocols that want packets with IP protocol | |
63 | * #4 or #41. Here's a list of protocols that want protocol #41: | |
64 | * RFC1933 configured tunnel | |
65 | * RFC1933 automatic tunnel | |
66 | * RFC2401 IPsec tunnel | |
67 | * RFC2473 IPv6 generic packet tunnelling | |
68 | * RFC2529 6over4 tunnel | |
69 | * mobile-ip6 (uses RFC2473) | |
70 | * 6to4 tunnel | |
71 | * Here's a list of protocol that want protocol #4: | |
9bccf70c A |
72 | * RFC1853 IPv4-in-IPv4 tunnelling |
73 | * RFC2003 IPv4 encapsulation within IPv4 | |
1c79356b A |
74 | * RFC2344 reverse tunnelling for mobile-ip4 |
75 | * RFC2401 IPsec tunnel | |
76 | * Well, what can I say. They impose different en/decapsulation mechanism | |
77 | * from each other, so they need separate protocol handler. The only one | |
78 | * we can easily determine by protocol # is IPsec, which always has | |
cb323159 | 79 | * AH/ESP header right after outer IP header. |
1c79356b A |
80 | * |
81 | * So, clearly good old protosw does not work for protocol #4 and #41. | |
82 | * The code will let you match protocol via src/dst address pair. | |
83 | */ | |
9bccf70c | 84 | /* XXX is M_NETADDR correct? */ |
1c79356b A |
85 | |
86 | #include <sys/param.h> | |
87 | #include <sys/systm.h> | |
88 | #include <sys/socket.h> | |
89 | #include <sys/sockio.h> | |
90 | #include <sys/mbuf.h> | |
316670eb | 91 | #include <sys/mcache.h> |
1c79356b | 92 | #include <sys/errno.h> |
39236c6e | 93 | #include <sys/domain.h> |
1c79356b | 94 | #include <sys/protosw.h> |
9bccf70c | 95 | #include <sys/queue.h> |
1c79356b A |
96 | |
97 | #include <net/if.h> | |
98 | #include <net/route.h> | |
99 | ||
100 | #include <netinet/in.h> | |
101 | #include <netinet/in_systm.h> | |
102 | #include <netinet/ip.h> | |
103 | #include <netinet/ip_var.h> | |
104 | #include <netinet/ip_encap.h> | |
1c79356b | 105 | |
1c79356b A |
106 | #include <netinet/ip6.h> |
107 | #include <netinet6/ip6_var.h> | |
108 | #include <netinet6/ip6protosw.h> | |
1c79356b A |
109 | |
110 | #include <net/net_osdep.h> | |
111 | ||
9bccf70c | 112 | #ifndef __APPLE__ |
1c79356b A |
113 | #include <sys/kernel.h> |
114 | #include <sys/malloc.h> | |
115 | MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure"); | |
116 | #endif | |
117 | ||
39236c6e | 118 | static void encap_init(struct protosw *, struct domain *); |
0a7de745 | 119 | static void encap_add_locked(struct encaptab *); |
91447636 | 120 | static int mask_match(const struct encaptab *, const struct sockaddr *, |
0a7de745 A |
121 | const struct sockaddr *); |
122 | static void encap_fillarg(struct mbuf *, void *arg); | |
1c79356b | 123 | |
9bccf70c | 124 | #ifndef LIST_HEAD_INITIALIZER |
1c79356b A |
125 | /* rely upon BSS initialization */ |
126 | LIST_HEAD(, encaptab) encaptab; | |
9bccf70c A |
127 | #else |
128 | LIST_HEAD(, encaptab) encaptab = LIST_HEAD_INITIALIZER(&encaptab); | |
129 | #endif | |
1c79356b | 130 | |
0a7de745 A |
131 | decl_lck_rw_data(static, encaptab_lock); |
132 | ||
39236c6e A |
133 | static void |
134 | encap_init(struct protosw *pp, struct domain *dp) | |
1c79356b | 135 | { |
39236c6e A |
136 | #pragma unused(dp) |
137 | static int encap_initialized = 0; | |
0a7de745 A |
138 | lck_grp_attr_t *encaptab_grp_attrib = NULL; |
139 | lck_attr_t *encaptab_lck_attrib = NULL; | |
140 | lck_grp_t *encaptab_lck_group = NULL; | |
39236c6e | 141 | |
0a7de745 | 142 | VERIFY((pp->pr_flags & (PR_INITIALIZED | PR_ATTACHED)) == PR_ATTACHED); |
9bccf70c | 143 | |
39236c6e | 144 | /* This gets called by more than one protocols, so initialize once */ |
0a7de745 | 145 | if (encap_initialized) { |
9bccf70c | 146 | return; |
0a7de745 A |
147 | } |
148 | ||
149 | encaptab_grp_attrib = lck_grp_attr_alloc_init(); | |
150 | encaptab_lck_group = lck_grp_alloc_init("encaptab lock", encaptab_grp_attrib); | |
151 | lck_grp_attr_free(encaptab_grp_attrib); | |
152 | ||
153 | encaptab_lck_attrib = lck_attr_alloc_init(); | |
154 | lck_rw_init(&encaptab_lock, encaptab_lck_group, encaptab_lck_attrib); | |
155 | ||
156 | lck_grp_free(encaptab_lck_group); | |
157 | lck_attr_free(encaptab_lck_attrib); | |
158 | ||
39236c6e | 159 | encap_initialized = 1; |
1c79356b A |
160 | #if 0 |
161 | /* | |
162 | * we cannot use LIST_INIT() here, since drivers may want to call | |
9bccf70c | 163 | * encap_attach(), on driver attach. encap_init() will be called |
1c79356b A |
164 | * on AF_INET{,6} initialization, which happens after driver |
165 | * initialization - using LIST_INIT() here can nuke encap_attach() | |
166 | * from drivers. | |
167 | */ | |
168 | LIST_INIT(&encaptab); | |
169 | #endif | |
170 | } | |
171 | ||
39236c6e A |
172 | void |
173 | encap4_init(struct protosw *pp, struct domain *dp) | |
174 | { | |
175 | encap_init(pp, dp); | |
176 | } | |
177 | ||
178 | void | |
179 | encap6_init(struct ip6protosw *pp, struct domain *dp) | |
180 | { | |
181 | encap_init((struct protosw *)pp, dp); | |
182 | } | |
183 | ||
9bccf70c | 184 | #if INET |
1c79356b | 185 | void |
39037602 | 186 | encap4_input(struct mbuf *m, int off) |
1c79356b | 187 | { |
9bccf70c | 188 | int proto; |
1c79356b A |
189 | struct ip *ip; |
190 | struct sockaddr_in s, d; | |
9bccf70c A |
191 | const struct protosw *psw; |
192 | struct encaptab *ep, *match; | |
193 | int prio, matchprio; | |
0a7de745 | 194 | void *match_arg = NULL; |
9bccf70c A |
195 | |
196 | #ifndef __APPLE__ | |
197 | va_start(ap, m); | |
198 | off = va_arg(ap, int); | |
199 | proto = va_arg(ap, int); | |
200 | va_end(ap); | |
201 | #endif | |
1c79356b | 202 | |
316670eb A |
203 | /* Expect 32-bit aligned data pointer on strict-align platforms */ |
204 | MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m); | |
205 | ||
1c79356b | 206 | ip = mtod(m, struct ip *); |
9bccf70c | 207 | #ifdef __APPLE__ |
1c79356b A |
208 | proto = ip->ip_p; |
209 | #endif | |
210 | ||
211 | bzero(&s, sizeof(s)); | |
212 | s.sin_family = AF_INET; | |
213 | s.sin_len = sizeof(struct sockaddr_in); | |
214 | s.sin_addr = ip->ip_src; | |
215 | bzero(&d, sizeof(d)); | |
216 | d.sin_family = AF_INET; | |
217 | d.sin_len = sizeof(struct sockaddr_in); | |
218 | d.sin_addr = ip->ip_dst; | |
219 | ||
9bccf70c A |
220 | match = NULL; |
221 | matchprio = 0; | |
0a7de745 A |
222 | |
223 | lck_rw_lock_shared(&encaptab_lock); | |
1c79356b | 224 | for (ep = LIST_FIRST(&encaptab); ep; ep = LIST_NEXT(ep, chain)) { |
0a7de745 | 225 | if (ep->af != AF_INET) { |
9bccf70c | 226 | continue; |
0a7de745 A |
227 | } |
228 | if (ep->proto >= 0 && ep->proto != proto) { | |
1c79356b | 229 | continue; |
0a7de745 A |
230 | } |
231 | if (ep->func) { | |
9bccf70c | 232 | prio = (*ep->func)(m, off, proto, ep->arg); |
0a7de745 | 233 | } else { |
1c79356b A |
234 | /* |
235 | * it's inbound traffic, we need to match in reverse | |
236 | * order | |
237 | */ | |
9bccf70c A |
238 | prio = mask_match(ep, (struct sockaddr *)&d, |
239 | (struct sockaddr *)&s); | |
1c79356b A |
240 | } |
241 | ||
9bccf70c A |
242 | /* |
243 | * We prioritize the matches by using bit length of the | |
244 | * matches. mask_match() and user-supplied matching function | |
245 | * should return the bit length of the matches (for example, | |
246 | * if both src/dst are matched for IPv4, 64 should be returned). | |
247 | * 0 or negative return value means "it did not match". | |
248 | * | |
249 | * The question is, since we have two "mask" portion, we | |
250 | * cannot really define total order between entries. | |
251 | * For example, which of these should be preferred? | |
252 | * mask_match() returns 48 (32 + 16) for both of them. | |
253 | * src=3ffe::/16, dst=3ffe:501::/32 | |
254 | * src=3ffe:501::/32, dst=3ffe::/16 | |
255 | * | |
256 | * We need to loop through all the possible candidates | |
257 | * to get the best match - the search takes O(n) for | |
258 | * n attachments (i.e. interfaces). | |
259 | */ | |
0a7de745 | 260 | if (prio <= 0) { |
9bccf70c | 261 | continue; |
0a7de745 | 262 | } |
9bccf70c A |
263 | if (prio > matchprio) { |
264 | matchprio = prio; | |
265 | match = ep; | |
0a7de745 A |
266 | psw = (const struct protosw *)match->psw; |
267 | match_arg = ep->arg; | |
9bccf70c A |
268 | } |
269 | } | |
0a7de745 | 270 | lck_rw_unlock_shared(&encaptab_lock); |
9bccf70c A |
271 | |
272 | if (match) { | |
273 | /* found a match, "match" has the best one */ | |
9bccf70c | 274 | if (psw && psw->pr_input) { |
0a7de745 | 275 | encap_fillarg(m, match_arg); |
9bccf70c | 276 | (*psw->pr_input)(m, off); |
0a7de745 | 277 | } else { |
1c79356b | 278 | m_freem(m); |
0a7de745 | 279 | } |
1c79356b A |
280 | return; |
281 | } | |
282 | ||
1c79356b A |
283 | /* last resort: inject to raw socket */ |
284 | rip_input(m, off); | |
285 | } | |
9bccf70c | 286 | #endif |
1c79356b | 287 | |
1c79356b | 288 | int |
6d2010ae | 289 | encap6_input(struct mbuf **mp, int *offp, int proto) |
1c79356b A |
290 | { |
291 | struct mbuf *m = *mp; | |
292 | struct ip6_hdr *ip6; | |
293 | struct sockaddr_in6 s, d; | |
9bccf70c A |
294 | const struct ip6protosw *psw; |
295 | struct encaptab *ep, *match; | |
296 | int prio, matchprio; | |
0a7de745 | 297 | void *match_arg = NULL; |
1c79356b | 298 | |
316670eb A |
299 | /* Expect 32-bit aligned data pointer on strict-align platforms */ |
300 | MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m); | |
1c79356b | 301 | |
316670eb | 302 | ip6 = mtod(m, struct ip6_hdr *); |
1c79356b A |
303 | bzero(&s, sizeof(s)); |
304 | s.sin6_family = AF_INET6; | |
305 | s.sin6_len = sizeof(struct sockaddr_in6); | |
306 | s.sin6_addr = ip6->ip6_src; | |
307 | bzero(&d, sizeof(d)); | |
308 | d.sin6_family = AF_INET6; | |
309 | d.sin6_len = sizeof(struct sockaddr_in6); | |
310 | d.sin6_addr = ip6->ip6_dst; | |
311 | ||
9bccf70c A |
312 | match = NULL; |
313 | matchprio = 0; | |
0a7de745 A |
314 | |
315 | lck_rw_lock_shared(&encaptab_lock); | |
1c79356b | 316 | for (ep = LIST_FIRST(&encaptab); ep; ep = LIST_NEXT(ep, chain)) { |
0a7de745 | 317 | if (ep->af != AF_INET6) { |
9bccf70c | 318 | continue; |
0a7de745 A |
319 | } |
320 | if (ep->proto >= 0 && ep->proto != proto) { | |
1c79356b | 321 | continue; |
0a7de745 A |
322 | } |
323 | if (ep->func) { | |
9bccf70c | 324 | prio = (*ep->func)(m, *offp, proto, ep->arg); |
0a7de745 | 325 | } else { |
1c79356b A |
326 | /* |
327 | * it's inbound traffic, we need to match in reverse | |
328 | * order | |
329 | */ | |
9bccf70c A |
330 | prio = mask_match(ep, (struct sockaddr *)&d, |
331 | (struct sockaddr *)&s); | |
332 | } | |
333 | ||
334 | /* see encap4_input() for issues here */ | |
0a7de745 | 335 | if (prio <= 0) { |
9bccf70c | 336 | continue; |
0a7de745 | 337 | } |
9bccf70c A |
338 | if (prio > matchprio) { |
339 | matchprio = prio; | |
340 | match = ep; | |
0a7de745 A |
341 | psw = (const struct ip6protosw *)match->psw; |
342 | match_arg = ep->arg; | |
1c79356b | 343 | } |
9bccf70c | 344 | } |
0a7de745 | 345 | lck_rw_unlock_shared(&encaptab_lock); |
1c79356b | 346 | |
9bccf70c | 347 | if (match) { |
1c79356b | 348 | /* found a match */ |
1c79356b | 349 | if (psw && psw->pr_input) { |
0a7de745 | 350 | encap_fillarg(m, match_arg); |
6d2010ae | 351 | return (*psw->pr_input)(mp, offp, proto); |
1c79356b A |
352 | } else { |
353 | m_freem(m); | |
354 | return IPPROTO_DONE; | |
355 | } | |
356 | } | |
357 | ||
358 | /* last resort: inject to raw socket */ | |
6d2010ae | 359 | return rip6_input(mp, offp, proto); |
1c79356b | 360 | } |
1c79356b | 361 | |
9bccf70c | 362 | static void |
0a7de745 | 363 | encap_add_locked(struct encaptab *ep) |
9bccf70c | 364 | { |
0a7de745 | 365 | LCK_RW_ASSERT(&encaptab_lock, LCK_RW_ASSERT_EXCLUSIVE); |
9bccf70c A |
366 | LIST_INSERT_HEAD(&encaptab, ep, chain); |
367 | } | |
368 | ||
1c79356b A |
369 | /* |
370 | * sp (src ptr) is always my side, and dp (dst ptr) is always remote side. | |
371 | * length of mask (sm and dm) is assumed to be same as sp/dp. | |
372 | * Return value will be necessary as input (cookie) for encap_detach(). | |
373 | */ | |
374 | const struct encaptab * | |
39037602 | 375 | encap_attach(int af, int proto, const struct sockaddr *sp, |
0a7de745 A |
376 | const struct sockaddr *sm, const struct sockaddr *dp, |
377 | const struct sockaddr *dm, const struct protosw *psw, void *arg) | |
1c79356b | 378 | { |
0a7de745 A |
379 | struct encaptab *ep = NULL; |
380 | struct encaptab *new_ep = NULL; | |
1c79356b | 381 | int error; |
1c79356b | 382 | |
1c79356b | 383 | /* sanity check on args */ |
0a7de745 | 384 | if (sp->sa_len > sizeof(new_ep->src) || dp->sa_len > sizeof(new_ep->dst)) { |
1c79356b A |
385 | error = EINVAL; |
386 | goto fail; | |
387 | } | |
388 | if (sp->sa_len != dp->sa_len) { | |
389 | error = EINVAL; | |
390 | goto fail; | |
391 | } | |
392 | if (af != sp->sa_family || af != dp->sa_family) { | |
393 | error = EINVAL; | |
394 | goto fail; | |
395 | } | |
396 | ||
0a7de745 A |
397 | new_ep = _MALLOC(sizeof(*new_ep), M_NETADDR, M_WAITOK | M_ZERO); |
398 | if (new_ep == NULL) { | |
399 | error = ENOBUFS; | |
400 | goto fail; | |
401 | } | |
402 | ||
1c79356b | 403 | /* check if anyone have already attached with exactly same config */ |
0a7de745 | 404 | lck_rw_lock_exclusive(&encaptab_lock); |
1c79356b | 405 | for (ep = LIST_FIRST(&encaptab); ep; ep = LIST_NEXT(ep, chain)) { |
0a7de745 | 406 | if (ep->af != af) { |
1c79356b | 407 | continue; |
0a7de745 A |
408 | } |
409 | if (ep->proto != proto) { | |
1c79356b | 410 | continue; |
0a7de745 | 411 | } |
1c79356b A |
412 | if (ep->src.ss_len != sp->sa_len || |
413 | bcmp(&ep->src, sp, sp->sa_len) != 0 || | |
0a7de745 | 414 | bcmp(&ep->srcmask, sm, sp->sa_len) != 0) { |
1c79356b | 415 | continue; |
0a7de745 | 416 | } |
1c79356b A |
417 | if (ep->dst.ss_len != dp->sa_len || |
418 | bcmp(&ep->dst, dp, dp->sa_len) != 0 || | |
0a7de745 | 419 | bcmp(&ep->dstmask, dm, dp->sa_len) != 0) { |
1c79356b | 420 | continue; |
0a7de745 | 421 | } |
1c79356b A |
422 | |
423 | error = EEXIST; | |
0a7de745 | 424 | goto fail_locked; |
1c79356b | 425 | } |
1c79356b | 426 | |
0a7de745 A |
427 | new_ep->af = af; |
428 | new_ep->proto = proto; | |
429 | bcopy(sp, &new_ep->src, sp->sa_len); | |
430 | bcopy(sm, &new_ep->srcmask, sp->sa_len); | |
431 | bcopy(dp, &new_ep->dst, dp->sa_len); | |
432 | bcopy(dm, &new_ep->dstmask, dp->sa_len); | |
433 | new_ep->psw = psw; | |
434 | new_ep->arg = arg; | |
1c79356b | 435 | |
0a7de745 A |
436 | encap_add_locked(new_ep); |
437 | lck_rw_unlock_exclusive(&encaptab_lock); | |
9bccf70c | 438 | |
1c79356b | 439 | error = 0; |
0a7de745 | 440 | return new_ep; |
1c79356b | 441 | |
0a7de745 A |
442 | fail_locked: |
443 | lck_rw_unlock_exclusive(&encaptab_lock); | |
444 | if (new_ep != NULL) { | |
445 | _FREE(new_ep, M_NETADDR); | |
446 | } | |
1c79356b | 447 | fail: |
1c79356b A |
448 | return NULL; |
449 | } | |
450 | ||
451 | const struct encaptab * | |
39037602 | 452 | encap_attach_func( int af, int proto, |
0a7de745 A |
453 | int (*func)(const struct mbuf *, int, int, void *), |
454 | const struct protosw *psw, void *arg) | |
1c79356b A |
455 | { |
456 | struct encaptab *ep; | |
457 | int error; | |
1c79356b | 458 | |
1c79356b A |
459 | /* sanity check on args */ |
460 | if (!func) { | |
461 | error = EINVAL; | |
462 | goto fail; | |
463 | } | |
464 | ||
3e170ce0 | 465 | ep = _MALLOC(sizeof(*ep), M_NETADDR, M_WAITOK | M_ZERO); /* XXX */ |
1c79356b A |
466 | if (ep == NULL) { |
467 | error = ENOBUFS; | |
468 | goto fail; | |
469 | } | |
1c79356b A |
470 | |
471 | ep->af = af; | |
472 | ep->proto = proto; | |
473 | ep->func = func; | |
474 | ep->psw = psw; | |
475 | ep->arg = arg; | |
476 | ||
0a7de745 A |
477 | lck_rw_lock_exclusive(&encaptab_lock); |
478 | encap_add_locked(ep); | |
479 | lck_rw_unlock_exclusive(&encaptab_lock); | |
9bccf70c | 480 | |
1c79356b | 481 | error = 0; |
1c79356b A |
482 | return ep; |
483 | ||
484 | fail: | |
1c79356b A |
485 | return NULL; |
486 | } | |
487 | ||
488 | int | |
39037602 | 489 | encap_detach(const struct encaptab *cookie) |
1c79356b A |
490 | { |
491 | const struct encaptab *ep = cookie; | |
492 | struct encaptab *p; | |
493 | ||
0a7de745 | 494 | lck_rw_lock_exclusive(&encaptab_lock); |
1c79356b A |
495 | for (p = LIST_FIRST(&encaptab); p; p = LIST_NEXT(p, chain)) { |
496 | if (p == ep) { | |
497 | LIST_REMOVE(p, chain); | |
0a7de745 A |
498 | lck_rw_unlock_exclusive(&encaptab_lock); |
499 | _FREE(p, M_NETADDR); /*XXX*/ | |
1c79356b A |
500 | return 0; |
501 | } | |
502 | } | |
0a7de745 | 503 | lck_rw_unlock_exclusive(&encaptab_lock); |
1c79356b A |
504 | |
505 | return EINVAL; | |
506 | } | |
507 | ||
508 | static int | |
39037602 | 509 | mask_match(const struct encaptab *ep, const struct sockaddr *sp, |
0a7de745 | 510 | const struct sockaddr *dp) |
1c79356b A |
511 | { |
512 | struct sockaddr_storage s; | |
513 | struct sockaddr_storage d; | |
514 | int i; | |
9bccf70c A |
515 | const u_int8_t *p, *q; |
516 | u_int8_t *r; | |
517 | int matchlen; | |
1c79356b | 518 | |
0a7de745 | 519 | if (sp->sa_len > sizeof(s) || dp->sa_len > sizeof(d)) { |
1c79356b | 520 | return 0; |
0a7de745 A |
521 | } |
522 | if (sp->sa_family != ep->af || dp->sa_family != ep->af) { | |
1c79356b | 523 | return 0; |
0a7de745 A |
524 | } |
525 | if (sp->sa_len != ep->src.ss_len || dp->sa_len != ep->dst.ss_len) { | |
1c79356b | 526 | return 0; |
0a7de745 | 527 | } |
1c79356b | 528 | |
9bccf70c A |
529 | matchlen = 0; |
530 | ||
531 | p = (const u_int8_t *)sp; | |
532 | q = (const u_int8_t *)&ep->srcmask; | |
1c79356b | 533 | r = (u_int8_t *)&s; |
0a7de745 | 534 | for (i = 0; i < sp->sa_len; i++) { |
1c79356b | 535 | r[i] = p[i] & q[i]; |
9bccf70c A |
536 | /* XXX estimate */ |
537 | matchlen += (q[i] ? 8 : 0); | |
538 | } | |
1c79356b | 539 | |
9bccf70c A |
540 | p = (const u_int8_t *)dp; |
541 | q = (const u_int8_t *)&ep->dstmask; | |
1c79356b | 542 | r = (u_int8_t *)&d; |
0a7de745 | 543 | for (i = 0; i < dp->sa_len; i++) { |
1c79356b | 544 | r[i] = p[i] & q[i]; |
9bccf70c A |
545 | /* XXX rough estimate */ |
546 | matchlen += (q[i] ? 8 : 0); | |
547 | } | |
1c79356b A |
548 | |
549 | /* need to overwrite len/family portion as we don't compare them */ | |
550 | s.ss_len = sp->sa_len; | |
551 | s.ss_family = sp->sa_family; | |
552 | d.ss_len = dp->sa_len; | |
553 | d.ss_family = dp->sa_family; | |
554 | ||
555 | if (bcmp(&s, &ep->src, ep->src.ss_len) == 0 && | |
556 | bcmp(&d, &ep->dst, ep->dst.ss_len) == 0) { | |
9bccf70c | 557 | return matchlen; |
0a7de745 | 558 | } else { |
1c79356b | 559 | return 0; |
0a7de745 | 560 | } |
1c79356b A |
561 | } |
562 | ||
2d21ac55 | 563 | struct encaptabtag { |
0a7de745 | 564 | void* *arg; |
2d21ac55 A |
565 | }; |
566 | ||
1c79356b | 567 | static void |
2d21ac55 A |
568 | encap_fillarg( |
569 | struct mbuf *m, | |
0a7de745 | 570 | void *arg) |
1c79356b | 571 | { |
0a7de745 | 572 | struct m_tag *tag; |
2d21ac55 | 573 | struct encaptabtag *et; |
0a7de745 | 574 | |
6d2010ae | 575 | tag = m_tag_create(KERNEL_MODULE_TAG_ID, KERNEL_TAG_TYPE_ENCAP, |
0a7de745 A |
576 | sizeof(struct encaptabtag), M_WAITOK, m); |
577 | ||
2d21ac55 A |
578 | if (tag != NULL) { |
579 | et = (struct encaptabtag*)(tag + 1); | |
0a7de745 | 580 | et->arg = arg; |
2d21ac55 | 581 | m_tag_prepend(m, tag); |
1c79356b | 582 | } |
1c79356b A |
583 | } |
584 | ||
585 | void * | |
39037602 | 586 | encap_getarg(struct mbuf *m) |
1c79356b | 587 | { |
0a7de745 | 588 | struct m_tag *tag; |
2d21ac55 A |
589 | struct encaptabtag *et; |
590 | void *p = NULL; | |
0a7de745 | 591 | |
2d21ac55 A |
592 | tag = m_tag_locate(m, KERNEL_MODULE_TAG_ID, KERNEL_TAG_TYPE_ENCAP, NULL); |
593 | if (tag) { | |
594 | et = (struct encaptabtag*)(tag + 1); | |
595 | p = et->arg; | |
596 | m_tag_delete(m, tag); | |
1c79356b | 597 | } |
0a7de745 | 598 | |
1c79356b | 599 | return p; |
1c79356b | 600 | } |