1 /* $FreeBSD: src/sys/netkey/key.c,v 1.16.2.13 2002/07/24 18:17:40 ume Exp $ */
2 /* $DragonFly: src/sys/netproto/key/key.c,v 1.2 2003/06/17 04:28:53 dillon Exp $ */
3 /* $KAME: key.c,v 1.191 2001/06/27 10:46:49 sakane Exp $ */
6 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
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.
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
35 * This code is referd to RFC 2367
39 #include "opt_inet6.h"
40 #include "opt_ipsec.h"
42 #include <sys/types.h>
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/kernel.h>
47 #include <sys/domain.h>
48 #include <sys/protosw.h>
49 #include <sys/malloc.h>
50 #include <sys/socket.h>
51 #include <sys/socketvar.h>
52 #include <sys/sysctl.h>
53 #include <sys/errno.h>
55 #include <sys/queue.h>
56 #include <sys/syslog.h>
59 #include <net/route.h>
60 #include <net/raw_cb.h>
62 #include <netinet/in.h>
63 #include <netinet/in_systm.h>
64 #include <netinet/ip.h>
65 #include <netinet/in_var.h>
68 #include <netinet/ip6.h>
69 #include <netinet6/in6_var.h>
70 #include <netinet6/ip6_var.h>
74 #include <netinet/in_pcb.h>
77 #include <netinet6/in6_pcb.h>
80 #include <net/pfkeyv2.h>
81 #include <netkey/keydb.h>
82 #include <netkey/key.h>
83 #include <netkey/keysock.h>
84 #include <netkey/key_debug.h>
86 #include <netinet6/ipsec.h>
88 #include <netinet6/ipsec6.h>
90 #include <netinet6/ah.h>
92 #include <netinet6/ah6.h>
95 #include <netinet6/esp.h>
97 #include <netinet6/esp6.h>
100 #include <netinet6/ipcomp.h>
102 #include <netinet6/ipcomp6.h>
105 #include <machine/stdarg.h>
108 #include <sys/random.h>
110 #include <net/net_osdep.h>
113 #define satosin(s) ((struct sockaddr_in *)s)
116 #define FULLMASK 0xff
119 * Note on SA reference counting:
120 * - SAs that are not in DEAD state will have (total external reference + 1)
121 * following value in reference count field. they cannot be freed and are
122 * referenced from SA header.
123 * - SAs that are in DEAD state will have (total external reference)
124 * in reference count field. they are ready to be freed. reference from
125 * SA header will be removed in key_delsav(), when the reference count
126 * field hits 0 (= no external reference other than from SA header.
129 u_int32_t key_debug_level = 0;
130 static u_int key_spi_trycnt = 1000;
131 static u_int32_t key_spi_minval = 0x100;
132 static u_int32_t key_spi_maxval = 0x0fffffff; /* XXX */
133 static u_int32_t policy_id = 0;
134 static u_int key_int_random = 60; /*interval to initialize randseed,1(m)*/
135 static u_int key_larval_lifetime = 30; /* interval to expire acquiring, 30(s)*/
136 static int key_blockacq_count = 10; /* counter for blocking SADB_ACQUIRE.*/
137 static int key_blockacq_lifetime = 20; /* lifetime for blocking SADB_ACQUIRE.*/
138 static int key_preferred_oldsa = 1; /* preferred old sa rather than new sa.*/
140 static u_int32_t acq_seq = 0;
141 static int key_tick_init_random = 0;
143 static LIST_HEAD(_sptree, secpolicy) sptree[IPSEC_DIR_MAX]; /* SPD */
144 static LIST_HEAD(_sahtree, secashead) sahtree; /* SAD */
145 static LIST_HEAD(_regtree, secreg) regtree[SADB_SATYPE_MAX + 1];
147 #ifndef IPSEC_NONBLOCK_ACQUIRE
148 static LIST_HEAD(_acqtree, secacq) acqtree; /* acquiring list */
150 static LIST_HEAD(_spacqtree, secspacq) spacqtree; /* SP acquiring list */
152 struct key_cb key_cb;
154 /* search order for SAs */
155 static const u_int saorder_state_valid_prefer_old[] = {
156 SADB_SASTATE_DYING, SADB_SASTATE_MATURE,
158 static const u_int saorder_state_valid_prefer_new[] = {
159 SADB_SASTATE_MATURE, SADB_SASTATE_DYING,
161 static const u_int saorder_state_alive[] = {
163 SADB_SASTATE_MATURE, SADB_SASTATE_DYING, SADB_SASTATE_LARVAL
165 static const u_int saorder_state_any[] = {
166 SADB_SASTATE_MATURE, SADB_SASTATE_DYING,
167 SADB_SASTATE_LARVAL, SADB_SASTATE_DEAD
170 static const int minsize[] = {
171 sizeof(struct sadb_msg), /* SADB_EXT_RESERVED */
172 sizeof(struct sadb_sa), /* SADB_EXT_SA */
173 sizeof(struct sadb_lifetime), /* SADB_EXT_LIFETIME_CURRENT */
174 sizeof(struct sadb_lifetime), /* SADB_EXT_LIFETIME_HARD */
175 sizeof(struct sadb_lifetime), /* SADB_EXT_LIFETIME_SOFT */
176 sizeof(struct sadb_address), /* SADB_EXT_ADDRESS_SRC */
177 sizeof(struct sadb_address), /* SADB_EXT_ADDRESS_DST */
178 sizeof(struct sadb_address), /* SADB_EXT_ADDRESS_PROXY */
179 sizeof(struct sadb_key), /* SADB_EXT_KEY_AUTH */
180 sizeof(struct sadb_key), /* SADB_EXT_KEY_ENCRYPT */
181 sizeof(struct sadb_ident), /* SADB_EXT_IDENTITY_SRC */
182 sizeof(struct sadb_ident), /* SADB_EXT_IDENTITY_DST */
183 sizeof(struct sadb_sens), /* SADB_EXT_SENSITIVITY */
184 sizeof(struct sadb_prop), /* SADB_EXT_PROPOSAL */
185 sizeof(struct sadb_supported), /* SADB_EXT_SUPPORTED_AUTH */
186 sizeof(struct sadb_supported), /* SADB_EXT_SUPPORTED_ENCRYPT */
187 sizeof(struct sadb_spirange), /* SADB_EXT_SPIRANGE */
188 0, /* SADB_X_EXT_KMPRIVATE */
189 sizeof(struct sadb_x_policy), /* SADB_X_EXT_POLICY */
190 sizeof(struct sadb_x_sa2), /* SADB_X_SA2 */
192 static const int maxsize[] = {
193 sizeof(struct sadb_msg), /* SADB_EXT_RESERVED */
194 sizeof(struct sadb_sa), /* SADB_EXT_SA */
195 sizeof(struct sadb_lifetime), /* SADB_EXT_LIFETIME_CURRENT */
196 sizeof(struct sadb_lifetime), /* SADB_EXT_LIFETIME_HARD */
197 sizeof(struct sadb_lifetime), /* SADB_EXT_LIFETIME_SOFT */
198 0, /* SADB_EXT_ADDRESS_SRC */
199 0, /* SADB_EXT_ADDRESS_DST */
200 0, /* SADB_EXT_ADDRESS_PROXY */
201 0, /* SADB_EXT_KEY_AUTH */
202 0, /* SADB_EXT_KEY_ENCRYPT */
203 0, /* SADB_EXT_IDENTITY_SRC */
204 0, /* SADB_EXT_IDENTITY_DST */
205 0, /* SADB_EXT_SENSITIVITY */
206 0, /* SADB_EXT_PROPOSAL */
207 0, /* SADB_EXT_SUPPORTED_AUTH */
208 0, /* SADB_EXT_SUPPORTED_ENCRYPT */
209 sizeof(struct sadb_spirange), /* SADB_EXT_SPIRANGE */
210 0, /* SADB_X_EXT_KMPRIVATE */
211 0, /* SADB_X_EXT_POLICY */
212 sizeof(struct sadb_x_sa2), /* SADB_X_SA2 */
215 static int ipsec_esp_keymin = 256;
216 static int ipsec_esp_auth = 0;
217 static int ipsec_ah_keymin = 128;
220 SYSCTL_DECL(_net_key);
223 SYSCTL_INT(_net_key, KEYCTL_DEBUG_LEVEL, debug, CTLFLAG_RW, \
224 &key_debug_level, 0, "");
226 /* max count of trial for the decision of spi value */
227 SYSCTL_INT(_net_key, KEYCTL_SPI_TRY, spi_trycnt, CTLFLAG_RW, \
228 &key_spi_trycnt, 0, "");
230 /* minimum spi value to allocate automatically. */
231 SYSCTL_INT(_net_key, KEYCTL_SPI_MIN_VALUE, spi_minval, CTLFLAG_RW, \
232 &key_spi_minval, 0, "");
234 /* maximun spi value to allocate automatically. */
235 SYSCTL_INT(_net_key, KEYCTL_SPI_MAX_VALUE, spi_maxval, CTLFLAG_RW, \
236 &key_spi_maxval, 0, "");
238 /* interval to initialize randseed */
239 SYSCTL_INT(_net_key, KEYCTL_RANDOM_INT, int_random, CTLFLAG_RW, \
240 &key_int_random, 0, "");
242 /* lifetime for larval SA */
243 SYSCTL_INT(_net_key, KEYCTL_LARVAL_LIFETIME, larval_lifetime, CTLFLAG_RW, \
244 &key_larval_lifetime, 0, "");
246 /* counter for blocking to send SADB_ACQUIRE to IKEd */
247 SYSCTL_INT(_net_key, KEYCTL_BLOCKACQ_COUNT, blockacq_count, CTLFLAG_RW, \
248 &key_blockacq_count, 0, "");
250 /* lifetime for blocking to send SADB_ACQUIRE to IKEd */
251 SYSCTL_INT(_net_key, KEYCTL_BLOCKACQ_LIFETIME, blockacq_lifetime, CTLFLAG_RW, \
252 &key_blockacq_lifetime, 0, "");
255 SYSCTL_INT(_net_key, KEYCTL_ESP_AUTH, esp_auth, CTLFLAG_RW, \
256 &ipsec_esp_auth, 0, "");
258 /* minimum ESP key length */
259 SYSCTL_INT(_net_key, KEYCTL_ESP_KEYMIN, esp_keymin, CTLFLAG_RW, \
260 &ipsec_esp_keymin, 0, "");
262 /* minimum AH key length */
263 SYSCTL_INT(_net_key, KEYCTL_AH_KEYMIN, ah_keymin, CTLFLAG_RW, \
264 &ipsec_ah_keymin, 0, "");
266 /* perfered old SA rather than new SA */
267 SYSCTL_INT(_net_key, KEYCTL_PREFERED_OLDSA, prefered_oldsa, CTLFLAG_RW,\
268 &key_preferred_oldsa, 0, "");
271 #define LIST_FOREACH(elm, head, field) \
272 for (elm = LIST_FIRST(head); elm; elm = LIST_NEXT(elm, field))
274 #define __LIST_CHAINED(elm) \
275 (!((elm)->chain.le_next == NULL && (elm)->chain.le_prev == NULL))
276 #define LIST_INSERT_TAIL(head, elm, type, field) \
278 struct type *curelm = LIST_FIRST(head); \
279 if (curelm == NULL) {\
280 LIST_INSERT_HEAD(head, elm, field); \
282 while (LIST_NEXT(curelm, field)) \
283 curelm = LIST_NEXT(curelm, field);\
284 LIST_INSERT_AFTER(curelm, elm, field);\
288 #define KEY_CHKSASTATE(head, sav, name) \
290 if ((head) != (sav)) { \
291 ipseclog((LOG_DEBUG, "%s: state mismatched (TREE=%d SA=%d)\n", \
292 (name), (head), (sav))); \
297 #define KEY_CHKSPDIR(head, sp, name) \
299 if ((head) != (sp)) { \
300 ipseclog((LOG_DEBUG, "%s: direction mismatched (TREE=%d SP=%d), " \
301 "anyway continue.\n", \
302 (name), (head), (sp))); \
307 #define KMALLOC(p, t, n) \
308 ((p) = (t) malloc((unsigned long)(n), M_SECA, M_NOWAIT))
310 free((caddr_t)(p), M_SECA);
312 #define KMALLOC(p, t, n) \
314 ((p) = (t)malloc((unsigned long)(n), M_SECA, M_NOWAIT)); \
315 printf("%s %d: %p <- KMALLOC(%s, %d)\n", \
316 __FILE__, __LINE__, (p), #t, n); \
321 printf("%s %d: %p -> KFREE()\n", __FILE__, __LINE__, (p)); \
322 free((caddr_t)(p), M_SECA); \
327 * set parameters into secpolicyindex buffer.
328 * Must allocate secpolicyindex buffer passed to this function.
330 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, idx) \
332 bzero((idx), sizeof(struct secpolicyindex)); \
333 (idx)->dir = (_dir); \
334 (idx)->prefs = (ps); \
335 (idx)->prefd = (pd); \
336 (idx)->ul_proto = (ulp); \
337 bcopy((s), &(idx)->src, ((struct sockaddr *)(s))->sa_len); \
338 bcopy((d), &(idx)->dst, ((struct sockaddr *)(d))->sa_len); \
342 * set parameters into secasindex buffer.
343 * Must allocate secasindex buffer before calling this function.
345 #define KEY_SETSECASIDX(p, m, r, s, d, idx) \
347 bzero((idx), sizeof(struct secasindex)); \
348 (idx)->proto = (p); \
350 (idx)->reqid = (r); \
351 bcopy((s), &(idx)->src, ((struct sockaddr *)(s))->sa_len); \
352 bcopy((d), &(idx)->dst, ((struct sockaddr *)(d))->sa_len); \
357 u_long getspi_count; /* the avarage of count to try to get new SPI */
361 struct sadb_msg *msg;
362 struct sadb_ext *ext[SADB_EXT_MAX + 1];
363 int extoff[SADB_EXT_MAX + 1];
364 int extlen[SADB_EXT_MAX + 1];
367 static struct secasvar *key_allocsa_policy __P((struct secasindex *));
368 static void key_freesp_so __P((struct secpolicy **));
369 static struct secasvar *key_do_allocsa_policy __P((struct secashead *, u_int));
370 static void key_delsp __P((struct secpolicy *));
371 static struct secpolicy *key_getsp __P((struct secpolicyindex *));
372 static struct secpolicy *key_getspbyid __P((u_int32_t));
373 static u_int32_t key_newreqid __P((void));
374 static struct mbuf *key_gather_mbuf __P((struct mbuf *,
375 const struct sadb_msghdr *, int, int, ...));
376 static int key_spdadd __P((struct socket *, struct mbuf *,
377 const struct sadb_msghdr *));
378 static u_int32_t key_getnewspid __P((void));
379 static int key_spddelete __P((struct socket *, struct mbuf *,
380 const struct sadb_msghdr *));
381 static int key_spddelete2 __P((struct socket *, struct mbuf *,
382 const struct sadb_msghdr *));
383 static int key_spdget __P((struct socket *, struct mbuf *,
384 const struct sadb_msghdr *));
385 static int key_spdflush __P((struct socket *, struct mbuf *,
386 const struct sadb_msghdr *));
387 static int key_spddump __P((struct socket *, struct mbuf *,
388 const struct sadb_msghdr *));
389 static struct mbuf *key_setdumpsp __P((struct secpolicy *,
390 u_int8_t, u_int32_t, u_int32_t));
391 static u_int key_getspreqmsglen __P((struct secpolicy *));
392 static int key_spdexpire __P((struct secpolicy *));
393 static struct secashead *key_newsah __P((struct secasindex *));
394 static void key_delsah __P((struct secashead *));
395 static struct secasvar *key_newsav __P((struct mbuf *,
396 const struct sadb_msghdr *, struct secashead *, int *));
397 static void key_delsav __P((struct secasvar *));
398 static struct secashead *key_getsah __P((struct secasindex *));
399 static struct secasvar *key_checkspidup __P((struct secasindex *, u_int32_t));
400 static struct secasvar *key_getsavbyspi __P((struct secashead *, u_int32_t));
401 static int key_setsaval __P((struct secasvar *, struct mbuf *,
402 const struct sadb_msghdr *));
403 static int key_mature __P((struct secasvar *));
404 static struct mbuf *key_setdumpsa __P((struct secasvar *, u_int8_t,
405 u_int8_t, u_int32_t, u_int32_t));
406 static struct mbuf *key_setsadbmsg __P((u_int8_t, u_int16_t, u_int8_t,
407 u_int32_t, pid_t, u_int16_t));
408 static struct mbuf *key_setsadbsa __P((struct secasvar *));
409 static struct mbuf *key_setsadbaddr __P((u_int16_t,
410 struct sockaddr *, u_int8_t, u_int16_t));
412 static struct mbuf *key_setsadbident __P((u_int16_t, u_int16_t, caddr_t,
415 static struct mbuf *key_setsadbxsa2 __P((u_int8_t, u_int32_t, u_int32_t));
416 static struct mbuf *key_setsadbxpolicy __P((u_int16_t, u_int8_t,
418 static void *key_newbuf __P((const void *, u_int));
420 static int key_ismyaddr6 __P((struct sockaddr_in6 *));
423 /* flags for key_cmpsaidx() */
424 #define CMP_HEAD 1 /* protocol, addresses. */
425 #define CMP_MODE_REQID 2 /* additionally HEAD, reqid, mode. */
426 #define CMP_REQID 3 /* additionally HEAD, reaid. */
427 #define CMP_EXACTLY 4 /* all elements. */
428 static int key_cmpsaidx
429 __P((struct secasindex *, struct secasindex *, int));
431 static int key_cmpspidx_exactly
432 __P((struct secpolicyindex *, struct secpolicyindex *));
433 static int key_cmpspidx_withmask
434 __P((struct secpolicyindex *, struct secpolicyindex *));
435 static int key_sockaddrcmp __P((struct sockaddr *, struct sockaddr *, int));
436 static int key_bbcmp __P((caddr_t, caddr_t, u_int));
437 static void key_srandom __P((void));
438 static u_int16_t key_satype2proto __P((u_int8_t));
439 static u_int8_t key_proto2satype __P((u_int16_t));
441 static int key_getspi __P((struct socket *, struct mbuf *,
442 const struct sadb_msghdr *));
443 static u_int32_t key_do_getnewspi __P((struct sadb_spirange *,
444 struct secasindex *));
445 static int key_update __P((struct socket *, struct mbuf *,
446 const struct sadb_msghdr *));
447 #ifdef IPSEC_DOSEQCHECK
448 static struct secasvar *key_getsavbyseq __P((struct secashead *, u_int32_t));
450 static int key_add __P((struct socket *, struct mbuf *,
451 const struct sadb_msghdr *));
452 static int key_setident __P((struct secashead *, struct mbuf *,
453 const struct sadb_msghdr *));
454 static struct mbuf *key_getmsgbuf_x1 __P((struct mbuf *,
455 const struct sadb_msghdr *));
456 static int key_delete __P((struct socket *, struct mbuf *,
457 const struct sadb_msghdr *));
458 static int key_get __P((struct socket *, struct mbuf *,
459 const struct sadb_msghdr *));
461 static void key_getcomb_setlifetime __P((struct sadb_comb *));
463 static struct mbuf *key_getcomb_esp __P((void));
465 static struct mbuf *key_getcomb_ah __P((void));
466 static struct mbuf *key_getcomb_ipcomp __P((void));
467 static struct mbuf *key_getprop __P((const struct secasindex *));
469 static int key_acquire __P((struct secasindex *, struct secpolicy *));
470 #ifndef IPSEC_NONBLOCK_ACQUIRE
471 static struct secacq *key_newacq __P((struct secasindex *));
472 static struct secacq *key_getacq __P((struct secasindex *));
473 static struct secacq *key_getacqbyseq __P((u_int32_t));
475 static struct secspacq *key_newspacq __P((struct secpolicyindex *));
476 static struct secspacq *key_getspacq __P((struct secpolicyindex *));
477 static int key_acquire2 __P((struct socket *, struct mbuf *,
478 const struct sadb_msghdr *));
479 static int key_register __P((struct socket *, struct mbuf *,
480 const struct sadb_msghdr *));
481 static int key_expire __P((struct secasvar *));
482 static int key_flush __P((struct socket *, struct mbuf *,
483 const struct sadb_msghdr *));
484 static int key_dump __P((struct socket *, struct mbuf *,
485 const struct sadb_msghdr *));
486 static int key_promisc __P((struct socket *, struct mbuf *,
487 const struct sadb_msghdr *));
488 static int key_senderror __P((struct socket *, struct mbuf *, int));
489 static int key_validate_ext __P((const struct sadb_ext *, int));
490 static int key_align __P((struct mbuf *, struct sadb_msghdr *));
492 static const char *key_getfqdn __P((void));
493 static const char *key_getuserfqdn __P((void));
495 static void key_sa_chgstate __P((struct secasvar *, u_int8_t));
496 static struct mbuf *key_alloc_mbuf __P((int));
498 /* %%% IPsec policy management */
500 * allocating a SP for OUTBOUND or INBOUND packet.
501 * Must call key_freesp() later.
502 * OUT: NULL: not found
503 * others: found and return the pointer.
506 key_allocsp(spidx, dir)
507 struct secpolicyindex *spidx;
510 struct secpolicy *sp;
516 panic("key_allocsp: NULL pointer is passed.\n");
518 /* check direction */
520 case IPSEC_DIR_INBOUND:
521 case IPSEC_DIR_OUTBOUND:
524 panic("key_allocsp: Invalid direction is passed.\n");
528 s = splnet(); /*called from softclock()*/
529 KEYDEBUG(KEYDEBUG_IPSEC_DATA,
530 printf("*** objects\n");
531 kdebug_secpolicyindex(spidx));
533 LIST_FOREACH(sp, &sptree[dir], chain) {
534 KEYDEBUG(KEYDEBUG_IPSEC_DATA,
535 printf("*** in SPD\n");
536 kdebug_secpolicyindex(&sp->spidx));
538 if (sp->state == IPSEC_SPSTATE_DEAD)
540 if (key_cmpspidx_withmask(&sp->spidx, spidx))
549 KEY_CHKSPDIR(sp->spidx.dir, dir, "key_allocsp");
551 /* found a SPD entry */
553 sp->lastused = tv.tv_sec;
556 KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
557 printf("DP key_allocsp cause refcnt++:%d SP:%p\n",
564 * return a policy that matches this particular inbound packet.
568 key_gettunnel(osrc, odst, isrc, idst)
569 struct sockaddr *osrc, *odst, *isrc, *idst;
571 struct secpolicy *sp;
572 const int dir = IPSEC_DIR_INBOUND;
575 struct ipsecrequest *r1, *r2, *p;
576 struct sockaddr *os, *od, *is, *id;
577 struct secpolicyindex spidx;
579 if (isrc->sa_family != idst->sa_family) {
580 ipseclog((LOG_ERR, "protocol family mismatched %d != %d\n.",
581 isrc->sa_family, idst->sa_family));
585 s = splnet(); /*called from softclock()*/
586 LIST_FOREACH(sp, &sptree[dir], chain) {
587 if (sp->state == IPSEC_SPSTATE_DEAD)
591 for (p = sp->req; p; p = p->next) {
592 if (p->saidx.mode != IPSEC_MODE_TUNNEL)
599 /* here we look at address matches only */
601 if (isrc->sa_len > sizeof(spidx.src) ||
602 idst->sa_len > sizeof(spidx.dst))
604 bcopy(isrc, &spidx.src, isrc->sa_len);
605 bcopy(idst, &spidx.dst, idst->sa_len);
606 if (!key_cmpspidx_withmask(&sp->spidx, &spidx))
609 is = (struct sockaddr *)&r1->saidx.src;
610 id = (struct sockaddr *)&r1->saidx.dst;
611 if (key_sockaddrcmp(is, isrc, 0) ||
612 key_sockaddrcmp(id, idst, 0))
616 os = (struct sockaddr *)&r2->saidx.src;
617 od = (struct sockaddr *)&r2->saidx.dst;
618 if (key_sockaddrcmp(os, osrc, 0) ||
619 key_sockaddrcmp(od, odst, 0))
630 sp->lastused = tv.tv_sec;
637 * allocating an SA entry for an *OUTBOUND* packet.
638 * checking each request entries in SP, and acquire an SA if need.
639 * OUT: 0: there are valid requests.
640 * ENOENT: policy may be valid, but SA with REQUIRE is on acquiring.
643 key_checkrequest(isr, saidx)
644 struct ipsecrequest *isr;
645 struct secasindex *saidx;
651 if (isr == NULL || saidx == NULL)
652 panic("key_checkrequest: NULL pointer is passed.\n");
655 switch (saidx->mode) {
656 case IPSEC_MODE_TRANSPORT:
657 case IPSEC_MODE_TUNNEL:
661 panic("key_checkrequest: Invalid policy defined.\n");
664 /* get current level */
665 level = ipsec_get_reqlevel(isr);
669 * We do allocate new SA only if the state of SA in the holder is
670 * SADB_SASTATE_DEAD. The SA for outbound must be the oldest.
672 if (isr->sav != NULL) {
673 if (isr->sav->sah == NULL)
674 panic("key_checkrequest: sah is null.\n");
675 if (isr->sav == (struct secasvar *)LIST_FIRST(
676 &isr->sav->sah->savtree[SADB_SASTATE_DEAD])) {
677 KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
678 printf("DP checkrequest calls free SA:%p\n",
680 key_freesav(isr->sav);
686 * we free any SA stashed in the IPsec request because a different
687 * SA may be involved each time this request is checked, either
688 * because new SAs are being configured, or this request is
689 * associated with an unconnected datagram socket, or this request
690 * is associated with a system default policy.
692 * The operation may have negative impact to performance. We may
693 * want to check cached SA carefully, rather than picking new SA
696 if (isr->sav != NULL) {
697 key_freesav(isr->sav);
703 * new SA allocation if no SA found.
704 * key_allocsa_policy should allocate the oldest SA available.
705 * See key_do_allocsa_policy(), and draft-jenkins-ipsec-rekeying-03.txt.
707 if (isr->sav == NULL)
708 isr->sav = key_allocsa_policy(saidx);
710 /* When there is SA. */
711 if (isr->sav != NULL)
715 if ((error = key_acquire(saidx, isr->sp)) != 0) {
716 /* XXX What should I do ? */
717 ipseclog((LOG_DEBUG, "key_checkrequest: error %d returned "
718 "from key_acquire.\n", error));
722 return level == IPSEC_LEVEL_REQUIRE ? ENOENT : 0;
726 * allocating a SA for policy entry from SAD.
727 * NOTE: searching SAD of aliving state.
728 * OUT: NULL: not found.
729 * others: found and return the pointer.
731 static struct secasvar *
732 key_allocsa_policy(saidx)
733 struct secasindex *saidx;
735 struct secashead *sah;
736 struct secasvar *sav;
737 u_int stateidx, state;
738 const u_int *saorder_state_valid;
741 LIST_FOREACH(sah, &sahtree, chain) {
742 if (sah->state == SADB_SASTATE_DEAD)
744 if (key_cmpsaidx(&sah->saidx, saidx, CMP_MODE_REQID))
753 * search a valid state list for outbound packet.
754 * This search order is important.
756 if (key_preferred_oldsa) {
757 saorder_state_valid = saorder_state_valid_prefer_old;
758 arraysize = _ARRAYLEN(saorder_state_valid_prefer_old);
760 saorder_state_valid = saorder_state_valid_prefer_new;
761 arraysize = _ARRAYLEN(saorder_state_valid_prefer_new);
764 for (stateidx = 0; stateidx < arraysize; stateidx++) {
766 state = saorder_state_valid[stateidx];
768 sav = key_do_allocsa_policy(sah, state);
777 * searching SAD with direction, protocol, mode and state.
778 * called by key_allocsa_policy().
781 * others : found, pointer to a SA.
783 static struct secasvar *
784 key_do_allocsa_policy(sah, state)
785 struct secashead *sah;
788 struct secasvar *sav, *nextsav, *candidate, *d;
793 for (sav = LIST_FIRST(&sah->savtree[state]);
797 nextsav = LIST_NEXT(sav, chain);
800 KEY_CHKSASTATE(sav->state, state, "key_do_allocsa_policy");
803 if (candidate == NULL) {
808 /* Which SA is the better ? */
811 if (candidate->lft_c == NULL || sav->lft_c == NULL)
812 panic("key_do_allocsa_policy: "
813 "lifetime_current is NULL.\n");
815 /* What the best method is to compare ? */
816 if (key_preferred_oldsa) {
817 if (candidate->lft_c->sadb_lifetime_addtime >
818 sav->lft_c->sadb_lifetime_addtime) {
825 /* prefered new sa rather than old sa */
826 if (candidate->lft_c->sadb_lifetime_addtime <
827 sav->lft_c->sadb_lifetime_addtime) {
834 * prepared to delete the SA when there is more
835 * suitable candidate and the lifetime of the SA is not
838 if (d->lft_c->sadb_lifetime_addtime != 0) {
839 struct mbuf *m, *result;
841 key_sa_chgstate(d, SADB_SASTATE_DEAD);
843 m = key_setsadbmsg(SADB_DELETE, 0,
844 d->sah->saidx.proto, 0, 0, d->refcnt - 1);
849 /* set sadb_address for saidx's. */
850 m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
851 (struct sockaddr *)&d->sah->saidx.src,
852 d->sah->saidx.src.ss_len << 3,
858 /* set sadb_address for saidx's. */
859 m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
860 (struct sockaddr *)&d->sah->saidx.src,
861 d->sah->saidx.src.ss_len << 3,
867 /* create SA extension */
868 m = key_setsadbsa(d);
873 if (result->m_len < sizeof(struct sadb_msg)) {
874 result = m_pullup(result,
875 sizeof(struct sadb_msg));
880 result->m_pkthdr.len = 0;
881 for (m = result; m; m = m->m_next)
882 result->m_pkthdr.len += m->m_len;
883 mtod(result, struct sadb_msg *)->sadb_msg_len =
884 PFKEY_UNIT64(result->m_pkthdr.len);
886 if (key_sendup_mbuf(NULL, result,
887 KEY_SENDUP_REGISTERED))
896 KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
897 printf("DP allocsa_policy cause "
898 "refcnt++:%d SA:%p\n",
899 candidate->refcnt, candidate));
905 * allocating a SA entry for a *INBOUND* packet.
906 * Must call key_freesav() later.
907 * OUT: positive: pointer to a sav.
908 * NULL: not found, or error occured.
910 * In the comparison, source address will be ignored for RFC2401 conformance.
911 * To quote, from section 4.1:
912 * A security association is uniquely identified by a triple consisting
913 * of a Security Parameter Index (SPI), an IP Destination Address, and a
914 * security protocol (AH or ESP) identifier.
915 * Note that, however, we do need to keep source address in IPsec SA.
916 * IKE specification and PF_KEY specification do assume that we
917 * keep source address in IPsec SA. We see a tricky situation here.
920 key_allocsa(family, src, dst, proto, spi)
925 struct secashead *sah;
926 struct secasvar *sav;
927 u_int stateidx, state;
928 struct sockaddr_in sin;
929 struct sockaddr_in6 sin6;
931 const u_int *saorder_state_valid;
935 if (src == NULL || dst == NULL)
936 panic("key_allocsa: NULL pointer is passed.\n");
939 * when both systems employ similar strategy to use a SA.
940 * the search order is important even in the inbound case.
942 if (key_preferred_oldsa) {
943 saorder_state_valid = saorder_state_valid_prefer_old;
944 arraysize = _ARRAYLEN(saorder_state_valid_prefer_old);
946 saorder_state_valid = saorder_state_valid_prefer_new;
947 arraysize = _ARRAYLEN(saorder_state_valid_prefer_new);
952 * XXX: to be checked internal IP header somewhere. Also when
953 * IPsec tunnel packet is received. But ESP tunnel mode is
954 * encrypted so we can't check internal IP header.
956 s = splnet(); /*called from softclock()*/
957 LIST_FOREACH(sah, &sahtree, chain) {
959 * search a valid state list for inbound packet.
960 * the search order is not important.
962 for (stateidx = 0; stateidx < arraysize; stateidx++) {
963 state = saorder_state_valid[stateidx];
964 LIST_FOREACH(sav, &sah->savtree[state], chain) {
966 KEY_CHKSASTATE(sav->state, state, "key_allocsav");
967 if (proto != sav->sah->saidx.proto)
971 if (family != sav->sah->saidx.src.ss_family ||
972 family != sav->sah->saidx.dst.ss_family)
975 #if 0 /* don't check src */
976 /* check src address */
979 bzero(&sin, sizeof(sin));
980 sin.sin_family = AF_INET;
981 sin.sin_len = sizeof(sin);
982 bcopy(src, &sin.sin_addr,
983 sizeof(sin.sin_addr));
984 if (key_sockaddrcmp((struct sockaddr*)&sin,
985 (struct sockaddr *)&sav->sah->saidx.src, 0) != 0)
990 bzero(&sin6, sizeof(sin6));
991 sin6.sin6_family = AF_INET6;
992 sin6.sin6_len = sizeof(sin6);
993 bcopy(src, &sin6.sin6_addr,
994 sizeof(sin6.sin6_addr));
995 if (IN6_IS_SCOPE_LINKLOCAL(&sin6.sin6_addr)) {
996 /* kame fake scopeid */
998 ntohs(sin6.sin6_addr.s6_addr16[1]);
999 sin6.sin6_addr.s6_addr16[1] = 0;
1001 if (key_sockaddrcmp((struct sockaddr*)&sin6,
1002 (struct sockaddr *)&sav->sah->saidx.src, 0) != 0)
1006 ipseclog((LOG_DEBUG, "key_allocsa: "
1007 "unknown address family=%d.\n",
1013 /* check dst address */
1016 bzero(&sin, sizeof(sin));
1017 sin.sin_family = AF_INET;
1018 sin.sin_len = sizeof(sin);
1019 bcopy(dst, &sin.sin_addr,
1020 sizeof(sin.sin_addr));
1021 if (key_sockaddrcmp((struct sockaddr*)&sin,
1022 (struct sockaddr *)&sav->sah->saidx.dst, 0) != 0)
1027 bzero(&sin6, sizeof(sin6));
1028 sin6.sin6_family = AF_INET6;
1029 sin6.sin6_len = sizeof(sin6);
1030 bcopy(dst, &sin6.sin6_addr,
1031 sizeof(sin6.sin6_addr));
1032 if (IN6_IS_SCOPE_LINKLOCAL(&sin6.sin6_addr)) {
1033 /* kame fake scopeid */
1034 sin6.sin6_scope_id =
1035 ntohs(sin6.sin6_addr.s6_addr16[1]);
1036 sin6.sin6_addr.s6_addr16[1] = 0;
1038 if (key_sockaddrcmp((struct sockaddr*)&sin6,
1039 (struct sockaddr *)&sav->sah->saidx.dst, 0) != 0)
1043 ipseclog((LOG_DEBUG, "key_allocsa: "
1044 "unknown address family=%d.\n",
1061 KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1062 printf("DP allocsa cause refcnt++:%d SA:%p\n",
1068 * Must be called after calling key_allocsp().
1069 * For both the packet without socket and key_freeso().
1073 struct secpolicy *sp;
1077 panic("key_freesp: NULL pointer is passed.\n");
1080 KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1081 printf("DP freesp cause refcnt--:%d SP:%p\n",
1084 if (sp->refcnt == 0)
1091 * Must be called after calling key_allocsp().
1092 * For the packet with socket.
1100 panic("key_freeso: NULL pointer is passed.\n");
1102 switch (so->so_proto->pr_domain->dom_family) {
1106 struct inpcb *pcb = sotoinpcb(so);
1108 /* Does it have a PCB ? */
1111 key_freesp_so(&pcb->inp_sp->sp_in);
1112 key_freesp_so(&pcb->inp_sp->sp_out);
1119 #ifdef HAVE_NRL_INPCB
1120 struct inpcb *pcb = sotoinpcb(so);
1122 /* Does it have a PCB ? */
1125 key_freesp_so(&pcb->inp_sp->sp_in);
1126 key_freesp_so(&pcb->inp_sp->sp_out);
1128 struct in6pcb *pcb = sotoin6pcb(so);
1130 /* Does it have a PCB ? */
1133 key_freesp_so(&pcb->in6p_sp->sp_in);
1134 key_freesp_so(&pcb->in6p_sp->sp_out);
1140 ipseclog((LOG_DEBUG, "key_freeso: unknown address family=%d.\n",
1141 so->so_proto->pr_domain->dom_family));
1150 struct secpolicy **sp;
1153 if (sp == NULL || *sp == NULL)
1154 panic("key_freesp_so: sp == NULL\n");
1156 switch ((*sp)->policy) {
1157 case IPSEC_POLICY_IPSEC:
1158 KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1159 printf("DP freeso calls free SP:%p\n", *sp));
1163 case IPSEC_POLICY_ENTRUST:
1164 case IPSEC_POLICY_BYPASS:
1167 panic("key_freesp_so: Invalid policy found %d", (*sp)->policy);
1174 * Must be called after calling key_allocsa().
1175 * This function is called by key_freesp() to free some SA allocated
1180 struct secasvar *sav;
1184 panic("key_freesav: NULL pointer is passed.\n");
1187 KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1188 printf("DP freesav cause refcnt--:%d SA:%p SPI %u\n",
1189 sav->refcnt, sav, (u_int32_t)ntohl(sav->spi)));
1191 if (sav->refcnt == 0)
1197 /* %%% SPD management */
1199 * free security policy entry.
1203 struct secpolicy *sp;
1209 panic("key_delsp: NULL pointer is passed.\n");
1211 sp->state = IPSEC_SPSTATE_DEAD;
1214 return; /* can't free */
1216 s = splnet(); /*called from softclock()*/
1217 /* remove from SP index */
1218 if (__LIST_CHAINED(sp))
1219 LIST_REMOVE(sp, chain);
1222 struct ipsecrequest *isr = sp->req, *nextisr;
1224 while (isr != NULL) {
1225 if (isr->sav != NULL) {
1226 KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1227 printf("DP delsp calls free SA:%p\n",
1229 key_freesav(isr->sav);
1233 nextisr = isr->next;
1239 keydb_delsecpolicy(sp);
1248 * OUT: NULL : not found
1249 * others : found, pointer to a SP.
1251 static struct secpolicy *
1253 struct secpolicyindex *spidx;
1255 struct secpolicy *sp;
1259 panic("key_getsp: NULL pointer is passed.\n");
1261 LIST_FOREACH(sp, &sptree[spidx->dir], chain) {
1262 if (sp->state == IPSEC_SPSTATE_DEAD)
1264 if (key_cmpspidx_exactly(spidx, &sp->spidx)) {
1275 * OUT: NULL : not found
1276 * others : found, pointer to a SP.
1278 static struct secpolicy *
1282 struct secpolicy *sp;
1284 LIST_FOREACH(sp, &sptree[IPSEC_DIR_INBOUND], chain) {
1285 if (sp->state == IPSEC_SPSTATE_DEAD)
1293 LIST_FOREACH(sp, &sptree[IPSEC_DIR_OUTBOUND], chain) {
1294 if (sp->state == IPSEC_SPSTATE_DEAD)
1308 struct secpolicy *newsp = NULL;
1310 newsp = keydb_newsecpolicy();
1321 * create secpolicy structure from sadb_x_policy structure.
1322 * NOTE: `state', `secpolicyindex' in secpolicy structure are not set,
1323 * so must be set properly later.
1326 key_msg2sp(xpl0, len, error)
1327 struct sadb_x_policy *xpl0;
1331 struct secpolicy *newsp;
1335 panic("key_msg2sp: NULL pointer was passed.\n");
1336 if (len < sizeof(*xpl0))
1337 panic("key_msg2sp: invalid length.\n");
1338 if (len != PFKEY_EXTLEN(xpl0)) {
1339 ipseclog((LOG_DEBUG, "key_msg2sp: Invalid msg length.\n"));
1344 if ((newsp = key_newsp()) == NULL) {
1349 newsp->spidx.dir = xpl0->sadb_x_policy_dir;
1350 newsp->policy = xpl0->sadb_x_policy_type;
1353 switch (xpl0->sadb_x_policy_type) {
1354 case IPSEC_POLICY_DISCARD:
1355 case IPSEC_POLICY_NONE:
1356 case IPSEC_POLICY_ENTRUST:
1357 case IPSEC_POLICY_BYPASS:
1361 case IPSEC_POLICY_IPSEC:
1364 struct sadb_x_ipsecrequest *xisr;
1365 struct ipsecrequest **p_isr = &newsp->req;
1367 /* validity check */
1368 if (PFKEY_EXTLEN(xpl0) < sizeof(*xpl0)) {
1369 ipseclog((LOG_DEBUG,
1370 "key_msg2sp: Invalid msg length.\n"));
1376 tlen = PFKEY_EXTLEN(xpl0) - sizeof(*xpl0);
1377 xisr = (struct sadb_x_ipsecrequest *)(xpl0 + 1);
1382 if (xisr->sadb_x_ipsecrequest_len < sizeof(*xisr)) {
1383 ipseclog((LOG_DEBUG, "key_msg2sp: "
1384 "invalid ipsecrequest length.\n"));
1390 /* allocate request buffer */
1391 KMALLOC(*p_isr, struct ipsecrequest *, sizeof(**p_isr));
1392 if ((*p_isr) == NULL) {
1393 ipseclog((LOG_DEBUG,
1394 "key_msg2sp: No more memory.\n"));
1399 bzero(*p_isr, sizeof(**p_isr));
1402 (*p_isr)->next = NULL;
1404 switch (xisr->sadb_x_ipsecrequest_proto) {
1407 case IPPROTO_IPCOMP:
1410 ipseclog((LOG_DEBUG,
1411 "key_msg2sp: invalid proto type=%u\n",
1412 xisr->sadb_x_ipsecrequest_proto));
1414 *error = EPROTONOSUPPORT;
1417 (*p_isr)->saidx.proto = xisr->sadb_x_ipsecrequest_proto;
1419 switch (xisr->sadb_x_ipsecrequest_mode) {
1420 case IPSEC_MODE_TRANSPORT:
1421 case IPSEC_MODE_TUNNEL:
1423 case IPSEC_MODE_ANY:
1425 ipseclog((LOG_DEBUG,
1426 "key_msg2sp: invalid mode=%u\n",
1427 xisr->sadb_x_ipsecrequest_mode));
1432 (*p_isr)->saidx.mode = xisr->sadb_x_ipsecrequest_mode;
1434 switch (xisr->sadb_x_ipsecrequest_level) {
1435 case IPSEC_LEVEL_DEFAULT:
1436 case IPSEC_LEVEL_USE:
1437 case IPSEC_LEVEL_REQUIRE:
1439 case IPSEC_LEVEL_UNIQUE:
1440 /* validity check */
1442 * If range violation of reqid, kernel will
1443 * update it, don't refuse it.
1445 if (xisr->sadb_x_ipsecrequest_reqid
1446 > IPSEC_MANUAL_REQID_MAX) {
1447 ipseclog((LOG_DEBUG,
1448 "key_msg2sp: reqid=%d range "
1449 "violation, updated by kernel.\n",
1450 xisr->sadb_x_ipsecrequest_reqid));
1451 xisr->sadb_x_ipsecrequest_reqid = 0;
1454 /* allocate new reqid id if reqid is zero. */
1455 if (xisr->sadb_x_ipsecrequest_reqid == 0) {
1457 if ((reqid = key_newreqid()) == 0) {
1462 (*p_isr)->saidx.reqid = reqid;
1463 xisr->sadb_x_ipsecrequest_reqid = reqid;
1465 /* set it for manual keying. */
1466 (*p_isr)->saidx.reqid =
1467 xisr->sadb_x_ipsecrequest_reqid;
1472 ipseclog((LOG_DEBUG, "key_msg2sp: invalid level=%u\n",
1473 xisr->sadb_x_ipsecrequest_level));
1478 (*p_isr)->level = xisr->sadb_x_ipsecrequest_level;
1480 /* set IP addresses if there */
1481 if (xisr->sadb_x_ipsecrequest_len > sizeof(*xisr)) {
1482 struct sockaddr *paddr;
1484 paddr = (struct sockaddr *)(xisr + 1);
1486 /* validity check */
1488 > sizeof((*p_isr)->saidx.src)) {
1489 ipseclog((LOG_DEBUG, "key_msg2sp: invalid request "
1490 "address length.\n"));
1495 bcopy(paddr, &(*p_isr)->saidx.src,
1498 paddr = (struct sockaddr *)((caddr_t)paddr
1501 /* validity check */
1503 > sizeof((*p_isr)->saidx.dst)) {
1504 ipseclog((LOG_DEBUG, "key_msg2sp: invalid request "
1505 "address length.\n"));
1510 bcopy(paddr, &(*p_isr)->saidx.dst,
1514 (*p_isr)->sav = NULL;
1515 (*p_isr)->sp = newsp;
1517 /* initialization for the next. */
1518 p_isr = &(*p_isr)->next;
1519 tlen -= xisr->sadb_x_ipsecrequest_len;
1521 /* validity check */
1523 ipseclog((LOG_DEBUG, "key_msg2sp: becoming tlen < 0.\n"));
1529 xisr = (struct sadb_x_ipsecrequest *)((caddr_t)xisr
1530 + xisr->sadb_x_ipsecrequest_len);
1535 ipseclog((LOG_DEBUG, "key_msg2sp: invalid policy type.\n"));
1548 static u_int32_t auto_reqid = IPSEC_MANUAL_REQID_MAX + 1;
1550 auto_reqid = (auto_reqid == ~0
1551 ? IPSEC_MANUAL_REQID_MAX + 1 : auto_reqid + 1);
1553 /* XXX should be unique check */
1559 * copy secpolicy struct to sadb_x_policy structure indicated.
1563 struct secpolicy *sp;
1565 struct sadb_x_policy *xpl;
1572 panic("key_sp2msg: NULL pointer was passed.\n");
1574 tlen = key_getspreqmsglen(sp);
1576 m = key_alloc_mbuf(tlen);
1577 if (!m || m->m_next) { /*XXX*/
1585 xpl = mtod(m, struct sadb_x_policy *);
1588 xpl->sadb_x_policy_len = PFKEY_UNIT64(tlen);
1589 xpl->sadb_x_policy_exttype = SADB_X_EXT_POLICY;
1590 xpl->sadb_x_policy_type = sp->policy;
1591 xpl->sadb_x_policy_dir = sp->spidx.dir;
1592 xpl->sadb_x_policy_id = sp->id;
1593 p = (caddr_t)xpl + sizeof(*xpl);
1595 /* if is the policy for ipsec ? */
1596 if (sp->policy == IPSEC_POLICY_IPSEC) {
1597 struct sadb_x_ipsecrequest *xisr;
1598 struct ipsecrequest *isr;
1600 for (isr = sp->req; isr != NULL; isr = isr->next) {
1602 xisr = (struct sadb_x_ipsecrequest *)p;
1604 xisr->sadb_x_ipsecrequest_proto = isr->saidx.proto;
1605 xisr->sadb_x_ipsecrequest_mode = isr->saidx.mode;
1606 xisr->sadb_x_ipsecrequest_level = isr->level;
1607 xisr->sadb_x_ipsecrequest_reqid = isr->saidx.reqid;
1610 bcopy(&isr->saidx.src, p, isr->saidx.src.ss_len);
1611 p += isr->saidx.src.ss_len;
1612 bcopy(&isr->saidx.dst, p, isr->saidx.dst.ss_len);
1613 p += isr->saidx.src.ss_len;
1615 xisr->sadb_x_ipsecrequest_len =
1616 PFKEY_ALIGN8(sizeof(*xisr)
1617 + isr->saidx.src.ss_len
1618 + isr->saidx.dst.ss_len);
1625 /* m will not be freed nor modified */
1626 static struct mbuf *
1628 key_gather_mbuf(struct mbuf *m, const struct sadb_msghdr *mhp,
1629 int ndeep, int nitem, ...)
1631 key_gather_mbuf(m, mhp, ndeep, nitem, va_alist)
1633 const struct sadb_msghdr *mhp;
1642 struct mbuf *result = NULL, *n;
1645 if (m == NULL || mhp == NULL)
1646 panic("null pointer passed to key_gather");
1648 va_start(ap, nitem);
1649 for (i = 0; i < nitem; i++) {
1650 idx = va_arg(ap, int);
1651 if (idx < 0 || idx > SADB_EXT_MAX)
1653 /* don't attempt to pull empty extension */
1654 if (idx == SADB_EXT_RESERVED && mhp->msg == NULL)
1656 if (idx != SADB_EXT_RESERVED &&
1657 (mhp->ext[idx] == NULL || mhp->extlen[idx] == 0))
1660 if (idx == SADB_EXT_RESERVED) {
1661 len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
1664 panic("assumption failed");
1666 MGETHDR(n, M_DONTWAIT, MT_DATA);
1671 m_copydata(m, 0, sizeof(struct sadb_msg),
1673 } else if (i < ndeep) {
1674 len = mhp->extlen[idx];
1675 n = key_alloc_mbuf(len);
1676 if (!n || n->m_next) { /*XXX*/
1681 m_copydata(m, mhp->extoff[idx], mhp->extlen[idx],
1684 n = m_copym(m, mhp->extoff[idx], mhp->extlen[idx],
1697 if ((result->m_flags & M_PKTHDR) != 0) {
1698 result->m_pkthdr.len = 0;
1699 for (n = result; n; n = n->m_next)
1700 result->m_pkthdr.len += n->m_len;
1711 * SADB_X_SPDADD, SADB_X_SPDSETIDX or SADB_X_SPDUPDATE processing
1712 * add a entry to SP database, when received
1713 * <base, address(SD), (lifetime(H),) policy>
1715 * Adding to SP database,
1717 * <base, address(SD), (lifetime(H),) policy>
1718 * to the socket which was send.
1720 * SPDADD set a unique policy entry.
1721 * SPDSETIDX like SPDADD without a part of policy requests.
1722 * SPDUPDATE replace a unique policy entry.
1724 * m will always be freed.
1727 key_spdadd(so, m, mhp)
1730 const struct sadb_msghdr *mhp;
1732 struct sadb_address *src0, *dst0;
1733 struct sadb_x_policy *xpl0, *xpl;
1734 struct sadb_lifetime *lft = NULL;
1735 struct secpolicyindex spidx;
1736 struct secpolicy *newsp;
1741 if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
1742 panic("key_spdadd: NULL pointer is passed.\n");
1744 if (mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
1745 mhp->ext[SADB_EXT_ADDRESS_DST] == NULL ||
1746 mhp->ext[SADB_X_EXT_POLICY] == NULL) {
1747 ipseclog((LOG_DEBUG, "key_spdadd: invalid message is passed.\n"));
1748 return key_senderror(so, m, EINVAL);
1750 if (mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
1751 mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address) ||
1752 mhp->extlen[SADB_X_EXT_POLICY] < sizeof(struct sadb_x_policy)) {
1753 ipseclog((LOG_DEBUG, "key_spdadd: invalid message is passed.\n"));
1754 return key_senderror(so, m, EINVAL);
1756 if (mhp->ext[SADB_EXT_LIFETIME_HARD] != NULL) {
1757 if (mhp->extlen[SADB_EXT_LIFETIME_HARD]
1758 < sizeof(struct sadb_lifetime)) {
1759 ipseclog((LOG_DEBUG, "key_spdadd: invalid message is passed.\n"));
1760 return key_senderror(so, m, EINVAL);
1762 lft = (struct sadb_lifetime *)mhp->ext[SADB_EXT_LIFETIME_HARD];
1765 src0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_SRC];
1766 dst0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_DST];
1767 xpl0 = (struct sadb_x_policy *)mhp->ext[SADB_X_EXT_POLICY];
1770 /* XXX boundary check against sa_len */
1771 KEY_SETSECSPIDX(xpl0->sadb_x_policy_dir,
1774 src0->sadb_address_prefixlen,
1775 dst0->sadb_address_prefixlen,
1776 src0->sadb_address_proto,
1779 /* checking the direciton. */
1780 switch (xpl0->sadb_x_policy_dir) {
1781 case IPSEC_DIR_INBOUND:
1782 case IPSEC_DIR_OUTBOUND:
1785 ipseclog((LOG_DEBUG, "key_spdadd: Invalid SP direction.\n"));
1786 mhp->msg->sadb_msg_errno = EINVAL;
1791 /* key_spdadd() accepts DISCARD, NONE and IPSEC. */
1792 if (xpl0->sadb_x_policy_type == IPSEC_POLICY_ENTRUST
1793 || xpl0->sadb_x_policy_type == IPSEC_POLICY_BYPASS) {
1794 ipseclog((LOG_DEBUG, "key_spdadd: Invalid policy type.\n"));
1795 return key_senderror(so, m, EINVAL);
1798 /* policy requests are mandatory when action is ipsec. */
1799 if (mhp->msg->sadb_msg_type != SADB_X_SPDSETIDX
1800 && xpl0->sadb_x_policy_type == IPSEC_POLICY_IPSEC
1801 && mhp->extlen[SADB_X_EXT_POLICY] <= sizeof(*xpl0)) {
1802 ipseclog((LOG_DEBUG, "key_spdadd: some policy requests part required.\n"));
1803 return key_senderror(so, m, EINVAL);
1807 * checking there is SP already or not.
1808 * SPDUPDATE doesn't depend on whether there is a SP or not.
1809 * If the type is either SPDADD or SPDSETIDX AND a SP is found,
1812 newsp = key_getsp(&spidx);
1813 if (mhp->msg->sadb_msg_type == SADB_X_SPDUPDATE) {
1815 newsp->state = IPSEC_SPSTATE_DEAD;
1819 if (newsp != NULL) {
1821 ipseclog((LOG_DEBUG, "key_spdadd: a SP entry exists already.\n"));
1822 return key_senderror(so, m, EEXIST);
1826 /* allocation new SP entry */
1827 if ((newsp = key_msg2sp(xpl0, PFKEY_EXTLEN(xpl0), &error)) == NULL) {
1828 return key_senderror(so, m, error);
1831 if ((newsp->id = key_getnewspid()) == 0) {
1832 keydb_delsecpolicy(newsp);
1833 return key_senderror(so, m, ENOBUFS);
1836 /* XXX boundary check against sa_len */
1837 KEY_SETSECSPIDX(xpl0->sadb_x_policy_dir,
1840 src0->sadb_address_prefixlen,
1841 dst0->sadb_address_prefixlen,
1842 src0->sadb_address_proto,
1845 /* sanity check on addr pair */
1846 if (((struct sockaddr *)(src0 + 1))->sa_family !=
1847 ((struct sockaddr *)(dst0+ 1))->sa_family) {
1848 keydb_delsecpolicy(newsp);
1849 return key_senderror(so, m, EINVAL);
1851 if (((struct sockaddr *)(src0 + 1))->sa_len !=
1852 ((struct sockaddr *)(dst0+ 1))->sa_len) {
1853 keydb_delsecpolicy(newsp);
1854 return key_senderror(so, m, EINVAL);
1857 if (newsp->req && newsp->req->saidx.src.ss_family) {
1858 struct sockaddr *sa;
1859 sa = (struct sockaddr *)(src0 + 1);
1860 if (sa->sa_family != newsp->req->saidx.src.ss_family) {
1861 keydb_delsecpolicy(newsp);
1862 return key_senderror(so, m, EINVAL);
1865 if (newsp->req && newsp->req->saidx.dst.ss_family) {
1866 struct sockaddr *sa;
1867 sa = (struct sockaddr *)(dst0 + 1);
1868 if (sa->sa_family != newsp->req->saidx.dst.ss_family) {
1869 keydb_delsecpolicy(newsp);
1870 return key_senderror(so, m, EINVAL);
1876 newsp->created = tv.tv_sec;
1877 newsp->lastused = tv.tv_sec;
1878 newsp->lifetime = lft ? lft->sadb_lifetime_addtime : 0;
1879 newsp->validtime = lft ? lft->sadb_lifetime_usetime : 0;
1881 newsp->refcnt = 1; /* do not reclaim until I say I do */
1882 newsp->state = IPSEC_SPSTATE_ALIVE;
1883 LIST_INSERT_TAIL(&sptree[newsp->spidx.dir], newsp, secpolicy, chain);
1885 /* delete the entry in spacqtree */
1886 if (mhp->msg->sadb_msg_type == SADB_X_SPDUPDATE) {
1887 struct secspacq *spacq;
1888 if ((spacq = key_getspacq(&spidx)) != NULL) {
1889 /* reset counter in order to deletion by timehandler. */
1891 spacq->created = tv.tv_sec;
1897 struct mbuf *n, *mpolicy;
1898 struct sadb_msg *newmsg;
1901 /* create new sadb_msg to reply. */
1903 n = key_gather_mbuf(m, mhp, 2, 5, SADB_EXT_RESERVED,
1904 SADB_X_EXT_POLICY, SADB_EXT_LIFETIME_HARD,
1905 SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
1907 n = key_gather_mbuf(m, mhp, 2, 4, SADB_EXT_RESERVED,
1909 SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
1912 return key_senderror(so, m, ENOBUFS);
1914 if (n->m_len < sizeof(*newmsg)) {
1915 n = m_pullup(n, sizeof(*newmsg));
1917 return key_senderror(so, m, ENOBUFS);
1919 newmsg = mtod(n, struct sadb_msg *);
1920 newmsg->sadb_msg_errno = 0;
1921 newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
1924 mpolicy = m_pulldown(n, PFKEY_ALIGN8(sizeof(struct sadb_msg)),
1925 sizeof(*xpl), &off);
1926 if (mpolicy == NULL) {
1927 /* n is already freed */
1928 return key_senderror(so, m, ENOBUFS);
1930 xpl = (struct sadb_x_policy *)(mtod(mpolicy, caddr_t) + off);
1931 if (xpl->sadb_x_policy_exttype != SADB_X_EXT_POLICY) {
1933 return key_senderror(so, m, EINVAL);
1935 xpl->sadb_x_policy_id = newsp->id;
1938 return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
1943 * get new policy id.
1951 u_int32_t newid = 0;
1952 int count = key_spi_trycnt; /* XXX */
1953 struct secpolicy *sp;
1955 /* when requesting to allocate spi ranged */
1957 newid = (policy_id = (policy_id == ~0 ? 1 : policy_id + 1));
1959 if ((sp = key_getspbyid(newid)) == NULL)
1965 if (count == 0 || newid == 0) {
1966 ipseclog((LOG_DEBUG, "key_getnewspid: to allocate policy id is failed.\n"));
1974 * SADB_SPDDELETE processing
1976 * <base, address(SD), policy(*)>
1977 * from the user(?), and set SADB_SASTATE_DEAD,
1979 * <base, address(SD), policy(*)>
1981 * policy(*) including direction of policy.
1983 * m will always be freed.
1986 key_spddelete(so, m, mhp)
1989 const struct sadb_msghdr *mhp;
1991 struct sadb_address *src0, *dst0;
1992 struct sadb_x_policy *xpl0;
1993 struct secpolicyindex spidx;
1994 struct secpolicy *sp;
1997 if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
1998 panic("key_spddelete: NULL pointer is passed.\n");
2000 if (mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
2001 mhp->ext[SADB_EXT_ADDRESS_DST] == NULL ||
2002 mhp->ext[SADB_X_EXT_POLICY] == NULL) {
2003 ipseclog((LOG_DEBUG, "key_spddelete: invalid message is passed.\n"));
2004 return key_senderror(so, m, EINVAL);
2006 if (mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
2007 mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address) ||
2008 mhp->extlen[SADB_X_EXT_POLICY] < sizeof(struct sadb_x_policy)) {
2009 ipseclog((LOG_DEBUG, "key_spddelete: invalid message is passed.\n"));
2010 return key_senderror(so, m, EINVAL);
2013 src0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_SRC];
2014 dst0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_DST];
2015 xpl0 = (struct sadb_x_policy *)mhp->ext[SADB_X_EXT_POLICY];
2018 /* XXX boundary check against sa_len */
2019 KEY_SETSECSPIDX(xpl0->sadb_x_policy_dir,
2022 src0->sadb_address_prefixlen,
2023 dst0->sadb_address_prefixlen,
2024 src0->sadb_address_proto,
2027 /* checking the direciton. */
2028 switch (xpl0->sadb_x_policy_dir) {
2029 case IPSEC_DIR_INBOUND:
2030 case IPSEC_DIR_OUTBOUND:
2033 ipseclog((LOG_DEBUG, "key_spddelete: Invalid SP direction.\n"));
2034 return key_senderror(so, m, EINVAL);
2037 /* Is there SP in SPD ? */
2038 if ((sp = key_getsp(&spidx)) == NULL) {
2039 ipseclog((LOG_DEBUG, "key_spddelete: no SP found.\n"));
2040 return key_senderror(so, m, EINVAL);
2043 /* save policy id to buffer to be returned. */
2044 xpl0->sadb_x_policy_id = sp->id;
2046 sp->state = IPSEC_SPSTATE_DEAD;
2051 struct sadb_msg *newmsg;
2053 /* create new sadb_msg to reply. */
2054 n = key_gather_mbuf(m, mhp, 1, 4, SADB_EXT_RESERVED,
2055 SADB_X_EXT_POLICY, SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
2057 return key_senderror(so, m, ENOBUFS);
2059 newmsg = mtod(n, struct sadb_msg *);
2060 newmsg->sadb_msg_errno = 0;
2061 newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
2064 return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
2069 * SADB_SPDDELETE2 processing
2072 * from the user(?), and set SADB_SASTATE_DEAD,
2076 * policy(*) including direction of policy.
2078 * m will always be freed.
2081 key_spddelete2(so, m, mhp)
2084 const struct sadb_msghdr *mhp;
2087 struct secpolicy *sp;
2090 if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
2091 panic("key_spddelete2: NULL pointer is passed.\n");
2093 if (mhp->ext[SADB_X_EXT_POLICY] == NULL ||
2094 mhp->extlen[SADB_X_EXT_POLICY] < sizeof(struct sadb_x_policy)) {
2095 ipseclog((LOG_DEBUG, "key_spddelete2: invalid message is passed.\n"));
2096 key_senderror(so, m, EINVAL);
2100 id = ((struct sadb_x_policy *)mhp->ext[SADB_X_EXT_POLICY])->sadb_x_policy_id;
2102 /* Is there SP in SPD ? */
2103 if ((sp = key_getspbyid(id)) == NULL) {
2104 ipseclog((LOG_DEBUG, "key_spddelete2: no SP found id:%u.\n", id));
2105 key_senderror(so, m, EINVAL);
2108 sp->state = IPSEC_SPSTATE_DEAD;
2112 struct mbuf *n, *nn;
2113 struct sadb_msg *newmsg;
2116 /* create new sadb_msg to reply. */
2117 len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
2120 return key_senderror(so, m, ENOBUFS);
2121 MGETHDR(n, M_DONTWAIT, MT_DATA);
2122 if (n && len > MHLEN) {
2123 MCLGET(n, M_DONTWAIT);
2124 if ((n->m_flags & M_EXT) == 0) {
2130 return key_senderror(so, m, ENOBUFS);
2136 m_copydata(m, 0, sizeof(struct sadb_msg), mtod(n, caddr_t) + off);
2137 off += PFKEY_ALIGN8(sizeof(struct sadb_msg));
2141 panic("length inconsistency in key_spddelete2");
2144 n->m_next = m_copym(m, mhp->extoff[SADB_X_EXT_POLICY],
2145 mhp->extlen[SADB_X_EXT_POLICY], M_DONTWAIT);
2148 return key_senderror(so, m, ENOBUFS);
2151 n->m_pkthdr.len = 0;
2152 for (nn = n; nn; nn = nn->m_next)
2153 n->m_pkthdr.len += nn->m_len;
2155 newmsg = mtod(n, struct sadb_msg *);
2156 newmsg->sadb_msg_errno = 0;
2157 newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
2160 return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
2165 * SADB_X_GET processing
2170 * <base, address(SD), policy>
2172 * policy(*) including direction of policy.
2174 * m will always be freed.
2177 key_spdget(so, m, mhp)
2180 const struct sadb_msghdr *mhp;
2183 struct secpolicy *sp;
2187 if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
2188 panic("key_spdget: NULL pointer is passed.\n");
2190 if (mhp->ext[SADB_X_EXT_POLICY] == NULL ||
2191 mhp->extlen[SADB_X_EXT_POLICY] < sizeof(struct sadb_x_policy)) {
2192 ipseclog((LOG_DEBUG, "key_spdget: invalid message is passed.\n"));
2193 return key_senderror(so, m, EINVAL);
2196 id = ((struct sadb_x_policy *)mhp->ext[SADB_X_EXT_POLICY])->sadb_x_policy_id;
2198 /* Is there SP in SPD ? */
2199 if ((sp = key_getspbyid(id)) == NULL) {
2200 ipseclog((LOG_DEBUG, "key_spdget: no SP found id:%u.\n", id));
2201 return key_senderror(so, m, ENOENT);
2204 n = key_setdumpsp(sp, SADB_X_SPDGET, 0, mhp->msg->sadb_msg_pid);
2207 return key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
2209 return key_senderror(so, m, ENOBUFS);
2213 * SADB_X_SPDACQUIRE processing.
2214 * Acquire policy and SA(s) for a *OUTBOUND* packet.
2217 * to KMD, and expect to receive
2218 * <base> with SADB_X_SPDACQUIRE if error occured,
2221 * with SADB_X_SPDUPDATE from KMD by PF_KEY.
2222 * policy(*) is without policy requests.
2225 * others: error number
2229 struct secpolicy *sp;
2231 struct mbuf *result = NULL, *m;
2232 struct secspacq *newspacq;
2237 panic("key_spdacquire: NULL pointer is passed.\n");
2238 if (sp->req != NULL)
2239 panic("key_spdacquire: called but there is request.\n");
2240 if (sp->policy != IPSEC_POLICY_IPSEC)
2241 panic("key_spdacquire: policy mismathed. IPsec is expected.\n");
2243 /* get a entry to check whether sent message or not. */
2244 if ((newspacq = key_getspacq(&sp->spidx)) != NULL) {
2245 if (key_blockacq_count < newspacq->count) {
2246 /* reset counter and do send message. */
2247 newspacq->count = 0;
2249 /* increment counter and do nothing. */
2254 /* make new entry for blocking to send SADB_ACQUIRE. */
2255 if ((newspacq = key_newspacq(&sp->spidx)) == NULL)
2258 /* add to acqtree */
2259 LIST_INSERT_HEAD(&spacqtree, newspacq, chain);
2262 /* create new sadb_msg to reply. */
2263 m = key_setsadbmsg(SADB_X_SPDACQUIRE, 0, 0, 0, 0, 0);
2270 result->m_pkthdr.len = 0;
2271 for (m = result; m; m = m->m_next)
2272 result->m_pkthdr.len += m->m_len;
2274 mtod(result, struct sadb_msg *)->sadb_msg_len =
2275 PFKEY_UNIT64(result->m_pkthdr.len);
2277 return key_sendup_mbuf(NULL, m, KEY_SENDUP_REGISTERED);
2286 * SADB_SPDFLUSH processing
2289 * from the user, and free all entries in secpctree.
2293 * NOTE: what to do is only marking SADB_SASTATE_DEAD.
2295 * m will always be freed.
2298 key_spdflush(so, m, mhp)
2301 const struct sadb_msghdr *mhp;
2303 struct sadb_msg *newmsg;
2304 struct secpolicy *sp;
2308 if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
2309 panic("key_spdflush: NULL pointer is passed.\n");
2311 if (m->m_len != PFKEY_ALIGN8(sizeof(struct sadb_msg)))
2312 return key_senderror(so, m, EINVAL);
2314 for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
2315 LIST_FOREACH(sp, &sptree[dir], chain) {
2316 sp->state = IPSEC_SPSTATE_DEAD;
2320 if (sizeof(struct sadb_msg) > m->m_len + M_TRAILINGSPACE(m)) {
2321 ipseclog((LOG_DEBUG, "key_spdflush: No more memory.\n"));
2322 return key_senderror(so, m, ENOBUFS);
2328 m->m_pkthdr.len = m->m_len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
2329 newmsg = mtod(m, struct sadb_msg *);
2330 newmsg->sadb_msg_errno = 0;
2331 newmsg->sadb_msg_len = PFKEY_UNIT64(m->m_pkthdr.len);
2333 return key_sendup_mbuf(so, m, KEY_SENDUP_ALL);
2337 * SADB_SPDDUMP processing
2340 * from the user, and dump all SP leaves
2345 * m will always be freed.
2348 key_spddump(so, m, mhp)
2351 const struct sadb_msghdr *mhp;
2353 struct secpolicy *sp;
2359 if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
2360 panic("key_spddump: NULL pointer is passed.\n");
2362 /* search SPD entry and get buffer size. */
2364 for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
2365 LIST_FOREACH(sp, &sptree[dir], chain) {
2371 return key_senderror(so, m, ENOENT);
2373 for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
2374 LIST_FOREACH(sp, &sptree[dir], chain) {
2376 n = key_setdumpsp(sp, SADB_X_SPDDUMP, cnt,
2377 mhp->msg->sadb_msg_pid);
2380 key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
2388 static struct mbuf *
2389 key_setdumpsp(sp, type, seq, pid)
2390 struct secpolicy *sp;
2394 struct mbuf *result = NULL, *m;
2396 m = key_setsadbmsg(type, 0, SADB_SATYPE_UNSPEC, seq, pid, sp->refcnt);
2401 m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
2402 (struct sockaddr *)&sp->spidx.src, sp->spidx.prefs,
2403 sp->spidx.ul_proto);
2408 m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
2409 (struct sockaddr *)&sp->spidx.dst, sp->spidx.prefd,
2410 sp->spidx.ul_proto);
2420 if ((result->m_flags & M_PKTHDR) == 0)
2423 if (result->m_len < sizeof(struct sadb_msg)) {
2424 result = m_pullup(result, sizeof(struct sadb_msg));
2429 result->m_pkthdr.len = 0;
2430 for (m = result; m; m = m->m_next)
2431 result->m_pkthdr.len += m->m_len;
2433 mtod(result, struct sadb_msg *)->sadb_msg_len =
2434 PFKEY_UNIT64(result->m_pkthdr.len);
2444 * get PFKEY message length for security policy and request.
2447 key_getspreqmsglen(sp)
2448 struct secpolicy *sp;
2452 tlen = sizeof(struct sadb_x_policy);
2454 /* if is the policy for ipsec ? */
2455 if (sp->policy != IPSEC_POLICY_IPSEC)
2458 /* get length of ipsec requests */
2460 struct ipsecrequest *isr;
2463 for (isr = sp->req; isr != NULL; isr = isr->next) {
2464 len = sizeof(struct sadb_x_ipsecrequest)
2465 + isr->saidx.src.ss_len
2466 + isr->saidx.dst.ss_len;
2468 tlen += PFKEY_ALIGN8(len);
2476 * SADB_SPDEXPIRE processing
2478 * <base, address(SD), lifetime(CH), policy>
2482 * others : error number
2486 struct secpolicy *sp;
2489 struct mbuf *result = NULL, *m;
2492 struct sadb_lifetime *lt;
2494 /* XXX: Why do we lock ? */
2495 s = splnet(); /*called from softclock()*/
2499 panic("key_spdexpire: NULL pointer is passed.\n");
2501 /* set msg header */
2502 m = key_setsadbmsg(SADB_X_SPDEXPIRE, 0, 0, 0, 0, 0);
2509 /* create lifetime extension (current and hard) */
2510 len = PFKEY_ALIGN8(sizeof(*lt)) * 2;
2511 m = key_alloc_mbuf(len);
2512 if (!m || m->m_next) { /*XXX*/
2518 bzero(mtod(m, caddr_t), len);
2519 lt = mtod(m, struct sadb_lifetime *);
2520 lt->sadb_lifetime_len = PFKEY_UNIT64(sizeof(struct sadb_lifetime));
2521 lt->sadb_lifetime_exttype = SADB_EXT_LIFETIME_CURRENT;
2522 lt->sadb_lifetime_allocations = 0;
2523 lt->sadb_lifetime_bytes = 0;
2524 lt->sadb_lifetime_addtime = sp->created;
2525 lt->sadb_lifetime_usetime = sp->lastused;
2526 lt = (struct sadb_lifetime *)(mtod(m, caddr_t) + len / 2);
2527 lt->sadb_lifetime_len = PFKEY_UNIT64(sizeof(struct sadb_lifetime));
2528 lt->sadb_lifetime_exttype = SADB_EXT_LIFETIME_HARD;
2529 lt->sadb_lifetime_allocations = 0;
2530 lt->sadb_lifetime_bytes = 0;
2531 lt->sadb_lifetime_addtime = sp->lifetime;
2532 lt->sadb_lifetime_usetime = sp->validtime;
2535 /* set sadb_address for source */
2536 m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
2537 (struct sockaddr *)&sp->spidx.src,
2538 sp->spidx.prefs, sp->spidx.ul_proto);
2545 /* set sadb_address for destination */
2546 m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
2547 (struct sockaddr *)&sp->spidx.dst,
2548 sp->spidx.prefd, sp->spidx.ul_proto);
2563 if ((result->m_flags & M_PKTHDR) == 0) {
2568 if (result->m_len < sizeof(struct sadb_msg)) {
2569 result = m_pullup(result, sizeof(struct sadb_msg));
2570 if (result == NULL) {
2576 result->m_pkthdr.len = 0;
2577 for (m = result; m; m = m->m_next)
2578 result->m_pkthdr.len += m->m_len;
2580 mtod(result, struct sadb_msg *)->sadb_msg_len =
2581 PFKEY_UNIT64(result->m_pkthdr.len);
2583 return key_sendup_mbuf(NULL, result, KEY_SENDUP_REGISTERED);
2592 /* %%% SAD management */
2594 * allocating a memory for new SA head, and copy from the values of mhp.
2595 * OUT: NULL : failure due to the lack of memory.
2596 * others : pointer to new SA head.
2598 static struct secashead *
2600 struct secasindex *saidx;
2602 struct secashead *newsah;
2606 panic("key_newsaidx: NULL pointer is passed.\n");
2608 newsah = keydb_newsecashead();
2612 bcopy(saidx, &newsah->saidx, sizeof(newsah->saidx));
2614 /* add to saidxtree */
2615 newsah->state = SADB_SASTATE_MATURE;
2616 LIST_INSERT_HEAD(&sahtree, newsah, chain);
2622 * delete SA index and all SA registerd.
2626 struct secashead *sah;
2628 struct secasvar *sav, *nextsav;
2629 u_int stateidx, state;
2635 panic("key_delsah: NULL pointer is passed.\n");
2637 s = splnet(); /*called from softclock()*/
2639 /* searching all SA registerd in the secindex. */
2641 stateidx < _ARRAYLEN(saorder_state_any);
2644 state = saorder_state_any[stateidx];
2645 for (sav = (struct secasvar *)LIST_FIRST(&sah->savtree[state]);
2649 nextsav = LIST_NEXT(sav, chain);
2651 if (sav->refcnt > 0) {
2652 /* give up to delete this sa */
2658 KEY_CHKSASTATE(state, sav->state, "key_delsah");
2662 /* remove back pointer */
2668 /* don't delete sah only if there are savs. */
2674 if (sah->sa_route.ro_rt) {
2675 RTFREE(sah->sa_route.ro_rt);
2676 sah->sa_route.ro_rt = (struct rtentry *)NULL;
2679 /* remove from tree of SA index */
2680 if (__LIST_CHAINED(sah))
2681 LIST_REMOVE(sah, chain);
2690 * allocating a new SA with LARVAL state. key_add() and key_getspi() call,
2691 * and copy the values of mhp into new buffer.
2692 * When SAD message type is GETSPI:
2693 * to set sequence number from acq_seq++,
2694 * to set zero to SPI.
2695 * not to call key_setsava().
2697 * others : pointer to new secasvar.
2699 * does not modify mbuf. does not free mbuf on error.
2701 static struct secasvar *
2702 key_newsav(m, mhp, sah, errp)
2704 const struct sadb_msghdr *mhp;
2705 struct secashead *sah;
2708 struct secasvar *newsav;
2709 const struct sadb_sa *xsa;
2712 if (m == NULL || mhp == NULL || mhp->msg == NULL || sah == NULL)
2713 panic("key_newsa: NULL pointer is passed.\n");
2715 KMALLOC(newsav, struct secasvar *, sizeof(struct secasvar));
2716 if (newsav == NULL) {
2717 ipseclog((LOG_DEBUG, "key_newsa: No more memory.\n"));
2721 bzero((caddr_t)newsav, sizeof(struct secasvar));
2723 switch (mhp->msg->sadb_msg_type) {
2727 #ifdef IPSEC_DOSEQCHECK
2728 /* sync sequence number */
2729 if (mhp->msg->sadb_msg_seq == 0)
2731 (acq_seq = (acq_seq == ~0 ? 1 : ++acq_seq));
2734 newsav->seq = mhp->msg->sadb_msg_seq;
2739 if (mhp->ext[SADB_EXT_SA] == NULL) {
2741 ipseclog((LOG_DEBUG, "key_newsa: invalid message is passed.\n"));
2745 xsa = (const struct sadb_sa *)mhp->ext[SADB_EXT_SA];
2746 newsav->spi = xsa->sadb_sa_spi;
2747 newsav->seq = mhp->msg->sadb_msg_seq;
2755 /* copy sav values */
2756 if (mhp->msg->sadb_msg_type != SADB_GETSPI) {
2757 *errp = key_setsaval(newsav, m, mhp);
2768 newsav->created = tv.tv_sec;
2771 newsav->pid = mhp->msg->sadb_msg_pid;
2776 newsav->state = SADB_SASTATE_LARVAL;
2777 LIST_INSERT_TAIL(&sah->savtree[SADB_SASTATE_LARVAL], newsav,
2784 * free() SA variable entry.
2788 struct secasvar *sav;
2792 panic("key_delsav: NULL pointer is passed.\n");
2794 if (sav->refcnt > 0)
2795 return; /* can't free */
2797 /* remove from SA header */
2798 if (__LIST_CHAINED(sav))
2799 LIST_REMOVE(sav, chain);
2801 if (sav->key_auth != NULL) {
2802 bzero(_KEYBUF(sav->key_auth), _KEYLEN(sav->key_auth));
2803 KFREE(sav->key_auth);
2804 sav->key_auth = NULL;
2806 if (sav->key_enc != NULL) {
2807 bzero(_KEYBUF(sav->key_enc), _KEYLEN(sav->key_enc));
2808 KFREE(sav->key_enc);
2809 sav->key_enc = NULL;
2812 bzero(sav->sched, sav->schedlen);
2816 if (sav->replay != NULL) {
2817 keydb_delsecreplay(sav->replay);
2820 if (sav->lft_c != NULL) {
2824 if (sav->lft_h != NULL) {
2828 if (sav->lft_s != NULL) {
2832 if (sav->iv != NULL) {
2846 * others : found, pointer to a SA.
2848 static struct secashead *
2850 struct secasindex *saidx;
2852 struct secashead *sah;
2854 LIST_FOREACH(sah, &sahtree, chain) {
2855 if (sah->state == SADB_SASTATE_DEAD)
2857 if (key_cmpsaidx(&sah->saidx, saidx, CMP_REQID))
2865 * check not to be duplicated SPI.
2866 * NOTE: this function is too slow due to searching all SAD.
2869 * others : found, pointer to a SA.
2871 static struct secasvar *
2872 key_checkspidup(saidx, spi)
2873 struct secasindex *saidx;
2876 struct secashead *sah;
2877 struct secasvar *sav;
2879 /* check address family */
2880 if (saidx->src.ss_family != saidx->dst.ss_family) {
2881 ipseclog((LOG_DEBUG, "key_checkspidup: address family mismatched.\n"));
2886 LIST_FOREACH(sah, &sahtree, chain) {
2887 if (!key_ismyaddr((struct sockaddr *)&sah->saidx.dst))
2889 sav = key_getsavbyspi(sah, spi);
2898 * search SAD litmited alive SA, protocol, SPI.
2901 * others : found, pointer to a SA.
2903 static struct secasvar *
2904 key_getsavbyspi(sah, spi)
2905 struct secashead *sah;
2908 struct secasvar *sav;
2909 u_int stateidx, state;
2911 /* search all status */
2913 stateidx < _ARRAYLEN(saorder_state_alive);
2916 state = saorder_state_alive[stateidx];
2917 LIST_FOREACH(sav, &sah->savtree[state], chain) {
2920 if (sav->state != state) {
2921 ipseclog((LOG_DEBUG, "key_getsavbyspi: "
2922 "invalid sav->state (queue: %d SA: %d)\n",
2923 state, sav->state));
2927 if (sav->spi == spi)
2936 * copy SA values from PF_KEY message except *SPI, SEQ, PID, STATE and TYPE*.
2937 * You must update these if need.
2941 * does not modify mbuf. does not free mbuf on error.
2944 key_setsaval(sav, m, mhp)
2945 struct secasvar *sav;
2947 const struct sadb_msghdr *mhp;
2950 const struct esp_algorithm *algo;
2956 if (m == NULL || mhp == NULL || mhp->msg == NULL)
2957 panic("key_setsaval: NULL pointer is passed.\n");
2959 /* initialization */
2961 sav->key_auth = NULL;
2962 sav->key_enc = NULL;
2971 if (mhp->ext[SADB_EXT_SA] != NULL) {
2972 const struct sadb_sa *sa0;
2974 sa0 = (const struct sadb_sa *)mhp->ext[SADB_EXT_SA];
2975 if (mhp->extlen[SADB_EXT_SA] < sizeof(*sa0)) {
2980 sav->alg_auth = sa0->sadb_sa_auth;
2981 sav->alg_enc = sa0->sadb_sa_encrypt;
2982 sav->flags = sa0->sadb_sa_flags;
2985 if ((sa0->sadb_sa_flags & SADB_X_EXT_OLD) == 0) {
2986 sav->replay = keydb_newsecreplay(sa0->sadb_sa_replay);
2987 if (sav->replay == NULL) {
2988 ipseclog((LOG_DEBUG, "key_setsaval: No more memory.\n"));
2995 /* Authentication keys */
2996 if (mhp->ext[SADB_EXT_KEY_AUTH] != NULL) {
2997 const struct sadb_key *key0;
3000 key0 = (const struct sadb_key *)mhp->ext[SADB_EXT_KEY_AUTH];
3001 len = mhp->extlen[SADB_EXT_KEY_AUTH];
3004 if (len < sizeof(*key0)) {
3008 switch (mhp->msg->sadb_msg_satype) {
3009 case SADB_SATYPE_AH:
3010 case SADB_SATYPE_ESP:
3011 if (len == PFKEY_ALIGN8(sizeof(struct sadb_key)) &&
3012 sav->alg_auth != SADB_X_AALG_NULL)
3015 case SADB_X_SATYPE_IPCOMP:
3021 ipseclog((LOG_DEBUG, "key_setsaval: invalid key_auth values.\n"));
3025 sav->key_auth = (struct sadb_key *)key_newbuf(key0, len);
3026 if (sav->key_auth == NULL) {
3027 ipseclog((LOG_DEBUG, "key_setsaval: No more memory.\n"));
3033 /* Encryption key */
3034 if (mhp->ext[SADB_EXT_KEY_ENCRYPT] != NULL) {
3035 const struct sadb_key *key0;
3038 key0 = (const struct sadb_key *)mhp->ext[SADB_EXT_KEY_ENCRYPT];
3039 len = mhp->extlen[SADB_EXT_KEY_ENCRYPT];
3042 if (len < sizeof(*key0)) {
3046 switch (mhp->msg->sadb_msg_satype) {
3047 case SADB_SATYPE_ESP:
3048 if (len == PFKEY_ALIGN8(sizeof(struct sadb_key)) &&
3049 sav->alg_enc != SADB_EALG_NULL) {
3053 sav->key_enc = (struct sadb_key *)key_newbuf(key0, len);
3054 if (sav->key_enc == NULL) {
3055 ipseclog((LOG_DEBUG, "key_setsaval: No more memory.\n"));
3060 case SADB_X_SATYPE_IPCOMP:
3061 if (len != PFKEY_ALIGN8(sizeof(struct sadb_key)))
3063 sav->key_enc = NULL; /*just in case*/
3065 case SADB_SATYPE_AH:
3071 ipseclog((LOG_DEBUG, "key_setsatval: invalid key_enc value.\n"));
3079 switch (mhp->msg->sadb_msg_satype) {
3080 case SADB_SATYPE_ESP:
3082 algo = esp_algorithm_lookup(sav->alg_enc);
3083 if (algo && algo->ivlen)
3084 sav->ivlen = (*algo->ivlen)(algo, sav);
3085 if (sav->ivlen == 0)
3087 KMALLOC(sav->iv, caddr_t, sav->ivlen);
3089 ipseclog((LOG_DEBUG, "key_setsaval: No more memory.\n"));
3095 key_randomfill(sav->iv, sav->ivlen);
3098 case SADB_SATYPE_AH:
3099 case SADB_X_SATYPE_IPCOMP:
3102 ipseclog((LOG_DEBUG, "key_setsaval: invalid SA type.\n"));
3109 sav->created = tv.tv_sec;
3111 /* make lifetime for CURRENT */
3112 KMALLOC(sav->lft_c, struct sadb_lifetime *,
3113 sizeof(struct sadb_lifetime));
3114 if (sav->lft_c == NULL) {
3115 ipseclog((LOG_DEBUG, "key_setsaval: No more memory.\n"));
3122 sav->lft_c->sadb_lifetime_len =
3123 PFKEY_UNIT64(sizeof(struct sadb_lifetime));
3124 sav->lft_c->sadb_lifetime_exttype = SADB_EXT_LIFETIME_CURRENT;
3125 sav->lft_c->sadb_lifetime_allocations = 0;
3126 sav->lft_c->sadb_lifetime_bytes = 0;
3127 sav->lft_c->sadb_lifetime_addtime = tv.tv_sec;
3128 sav->lft_c->sadb_lifetime_usetime = 0;
3130 /* lifetimes for HARD and SOFT */
3132 const struct sadb_lifetime *lft0;
3134 lft0 = (struct sadb_lifetime *)mhp->ext[SADB_EXT_LIFETIME_HARD];
3136 if (mhp->extlen[SADB_EXT_LIFETIME_HARD] < sizeof(*lft0)) {
3140 sav->lft_h = (struct sadb_lifetime *)key_newbuf(lft0,
3142 if (sav->lft_h == NULL) {
3143 ipseclog((LOG_DEBUG, "key_setsaval: No more memory.\n"));
3147 /* to be initialize ? */
3150 lft0 = (struct sadb_lifetime *)mhp->ext[SADB_EXT_LIFETIME_SOFT];
3152 if (mhp->extlen[SADB_EXT_LIFETIME_SOFT] < sizeof(*lft0)) {
3156 sav->lft_s = (struct sadb_lifetime *)key_newbuf(lft0,
3158 if (sav->lft_s == NULL) {
3159 ipseclog((LOG_DEBUG, "key_setsaval: No more memory.\n"));
3163 /* to be initialize ? */
3170 /* initialization */
3171 if (sav->replay != NULL) {
3172 keydb_delsecreplay(sav->replay);
3175 if (sav->key_auth != NULL) {
3176 KFREE(sav->key_auth);
3177 sav->key_auth = NULL;
3179 if (sav->key_enc != NULL) {
3180 KFREE(sav->key_enc);
3181 sav->key_enc = NULL;
3187 if (sav->iv != NULL) {
3191 if (sav->lft_c != NULL) {
3195 if (sav->lft_h != NULL) {
3199 if (sav->lft_s != NULL) {
3208 * validation with a secasvar entry, and set SADB_SATYPE_MATURE.
3214 struct secasvar *sav;
3217 int checkmask = 0; /* 2^0: ealg 2^1: aalg 2^2: calg */
3218 int mustmask = 0; /* 2^0: ealg 2^1: aalg 2^2: calg */
3222 /* check SPI value */
3223 switch (sav->sah->saidx.proto) {
3226 if (ntohl(sav->spi) >= 0 && ntohl(sav->spi) <= 255) {
3227 ipseclog((LOG_DEBUG,
3228 "key_mature: illegal range of SPI %u.\n",
3229 (u_int32_t)ntohl(sav->spi)));
3236 switch (sav->sah->saidx.proto) {
3239 if ((sav->flags & SADB_X_EXT_OLD)
3240 && (sav->flags & SADB_X_EXT_DERIV)) {
3241 ipseclog((LOG_DEBUG, "key_mature: "
3242 "invalid flag (derived) given to old-esp.\n"));
3245 if (sav->alg_auth == SADB_AALG_NONE)
3253 if (sav->flags & SADB_X_EXT_DERIV) {
3254 ipseclog((LOG_DEBUG, "key_mature: "
3255 "invalid flag (derived) given to AH SA.\n"));
3258 if (sav->alg_enc != SADB_EALG_NONE) {
3259 ipseclog((LOG_DEBUG, "key_mature: "
3260 "protocol and algorithm mismated.\n"));
3266 case IPPROTO_IPCOMP:
3267 if (sav->alg_auth != SADB_AALG_NONE) {
3268 ipseclog((LOG_DEBUG, "key_mature: "
3269 "protocol and algorithm mismated.\n"));
3272 if ((sav->flags & SADB_X_EXT_RAWCPI) == 0
3273 && ntohl(sav->spi) >= 0x10000) {
3274 ipseclog((LOG_DEBUG, "key_mature: invalid cpi for IPComp.\n"));
3281 ipseclog((LOG_DEBUG, "key_mature: Invalid satype.\n"));
3282 return EPROTONOSUPPORT;
3285 /* check authentication algorithm */
3286 if ((checkmask & 2) != 0) {
3287 const struct ah_algorithm *algo;
3290 algo = ah_algorithm_lookup(sav->alg_auth);
3292 ipseclog((LOG_DEBUG,"key_mature: "
3293 "unknown authentication algorithm.\n"));
3297 /* algorithm-dependent check */
3299 keylen = sav->key_auth->sadb_key_bits;
3302 if (keylen < algo->keymin || algo->keymax < keylen) {
3303 ipseclog((LOG_DEBUG,
3304 "key_mature: invalid AH key length %d "
3305 "(%d-%d allowed)\n",
3306 keylen, algo->keymin, algo->keymax));
3311 if ((*algo->mature)(sav)) {
3312 /* message generated in per-algorithm function*/
3315 mature = SADB_SATYPE_AH;
3318 if ((mustmask & 2) != 0 && mature != SADB_SATYPE_AH) {
3319 ipseclog((LOG_DEBUG, "key_mature: no satisfy algorithm for AH\n"));
3324 /* check encryption algorithm */
3325 if ((checkmask & 1) != 0) {
3327 const struct esp_algorithm *algo;
3330 algo = esp_algorithm_lookup(sav->alg_enc);
3332 ipseclog((LOG_DEBUG, "key_mature: unknown encryption algorithm.\n"));
3336 /* algorithm-dependent check */
3338 keylen = sav->key_enc->sadb_key_bits;
3341 if (keylen < algo->keymin || algo->keymax < keylen) {
3342 ipseclog((LOG_DEBUG,
3343 "key_mature: invalid ESP key length %d "
3344 "(%d-%d allowed)\n",
3345 keylen, algo->keymin, algo->keymax));
3350 if ((*algo->mature)(sav)) {
3351 /* message generated in per-algorithm function*/
3354 mature = SADB_SATYPE_ESP;
3357 if ((mustmask & 1) != 0 && mature != SADB_SATYPE_ESP) {
3358 ipseclog((LOG_DEBUG, "key_mature: no satisfy algorithm for ESP\n"));
3362 ipseclog((LOG_DEBUG, "key_mature: ESP not supported in this configuration\n"));
3367 /* check compression algorithm */
3368 if ((checkmask & 4) != 0) {
3369 const struct ipcomp_algorithm *algo;
3371 /* algorithm-dependent check */
3372 algo = ipcomp_algorithm_lookup(sav->alg_enc);
3374 ipseclog((LOG_DEBUG, "key_mature: unknown compression algorithm.\n"));
3379 key_sa_chgstate(sav, SADB_SASTATE_MATURE);
3385 * subroutine for SADB_GET and SADB_DUMP.
3387 static struct mbuf *
3388 key_setdumpsa(sav, type, satype, seq, pid)
3389 struct secasvar *sav;
3390 u_int8_t type, satype;
3393 struct mbuf *result = NULL, *tres = NULL, *m;
3398 SADB_EXT_SA, SADB_X_EXT_SA2,
3399 SADB_EXT_LIFETIME_HARD, SADB_EXT_LIFETIME_SOFT,
3400 SADB_EXT_LIFETIME_CURRENT, SADB_EXT_ADDRESS_SRC,
3401 SADB_EXT_ADDRESS_DST, SADB_EXT_ADDRESS_PROXY, SADB_EXT_KEY_AUTH,
3402 SADB_EXT_KEY_ENCRYPT, SADB_EXT_IDENTITY_SRC,
3403 SADB_EXT_IDENTITY_DST, SADB_EXT_SENSITIVITY,
3406 m = key_setsadbmsg(type, 0, satype, seq, pid, sav->refcnt);
3411 for (i = sizeof(dumporder)/sizeof(dumporder[0]) - 1; i >= 0; i--) {
3414 switch (dumporder[i]) {
3416 m = key_setsadbsa(sav);
3421 case SADB_X_EXT_SA2:
3422 m = key_setsadbxsa2(sav->sah->saidx.mode,
3423 sav->replay ? sav->replay->count : 0,
3424 sav->sah->saidx.reqid);
3429 case SADB_EXT_ADDRESS_SRC:
3430 m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
3431 (struct sockaddr *)&sav->sah->saidx.src,
3432 FULLMASK, IPSEC_ULPROTO_ANY);
3437 case SADB_EXT_ADDRESS_DST:
3438 m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
3439 (struct sockaddr *)&sav->sah->saidx.dst,
3440 FULLMASK, IPSEC_ULPROTO_ANY);
3445 case SADB_EXT_KEY_AUTH:
3448 l = PFKEY_UNUNIT64(sav->key_auth->sadb_key_len);
3452 case SADB_EXT_KEY_ENCRYPT:
3455 l = PFKEY_UNUNIT64(sav->key_enc->sadb_key_len);
3459 case SADB_EXT_LIFETIME_CURRENT:
3462 l = PFKEY_UNUNIT64(((struct sadb_ext *)sav->lft_c)->sadb_ext_len);
3466 case SADB_EXT_LIFETIME_HARD:
3469 l = PFKEY_UNUNIT64(((struct sadb_ext *)sav->lft_h)->sadb_ext_len);
3473 case SADB_EXT_LIFETIME_SOFT:
3476 l = PFKEY_UNUNIT64(((struct sadb_ext *)sav->lft_s)->sadb_ext_len);
3480 case SADB_EXT_ADDRESS_PROXY:
3481 case SADB_EXT_IDENTITY_SRC:
3482 case SADB_EXT_IDENTITY_DST:
3483 /* XXX: should we brought from SPD ? */
3484 case SADB_EXT_SENSITIVITY:
3489 if ((!m && !p) || (m && p))
3492 M_PREPEND(tres, l, M_DONTWAIT);
3495 bcopy(p, mtod(tres, caddr_t), l);
3499 m = key_alloc_mbuf(l);
3502 m_copyback(m, 0, l, p);
3510 m_cat(result, tres);
3512 if (result->m_len < sizeof(struct sadb_msg)) {
3513 result = m_pullup(result, sizeof(struct sadb_msg));
3518 result->m_pkthdr.len = 0;
3519 for (m = result; m; m = m->m_next)
3520 result->m_pkthdr.len += m->m_len;
3522 mtod(result, struct sadb_msg *)->sadb_msg_len =
3523 PFKEY_UNIT64(result->m_pkthdr.len);
3534 * set data into sadb_msg.
3536 static struct mbuf *
3537 key_setsadbmsg(type, tlen, satype, seq, pid, reserved)
3538 u_int8_t type, satype;
3548 len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
3551 MGETHDR(m, M_DONTWAIT, MT_DATA);
3552 if (m && len > MHLEN) {
3553 MCLGET(m, M_DONTWAIT);
3554 if ((m->m_flags & M_EXT) == 0) {
3561 m->m_pkthdr.len = m->m_len = len;
3564 p = mtod(m, struct sadb_msg *);
3567 p->sadb_msg_version = PF_KEY_V2;
3568 p->sadb_msg_type = type;
3569 p->sadb_msg_errno = 0;
3570 p->sadb_msg_satype = satype;
3571 p->sadb_msg_len = PFKEY_UNIT64(tlen);
3572 p->sadb_msg_reserved = reserved;
3573 p->sadb_msg_seq = seq;
3574 p->sadb_msg_pid = (u_int32_t)pid;
3580 * copy secasvar data into sadb_address.
3582 static struct mbuf *
3584 struct secasvar *sav;
3590 len = PFKEY_ALIGN8(sizeof(struct sadb_sa));
3591 m = key_alloc_mbuf(len);
3592 if (!m || m->m_next) { /*XXX*/
3598 p = mtod(m, struct sadb_sa *);
3601 p->sadb_sa_len = PFKEY_UNIT64(len);
3602 p->sadb_sa_exttype = SADB_EXT_SA;
3603 p->sadb_sa_spi = sav->spi;
3604 p->sadb_sa_replay = (sav->replay != NULL ? sav->replay->wsize : 0);
3605 p->sadb_sa_state = sav->state;
3606 p->sadb_sa_auth = sav->alg_auth;
3607 p->sadb_sa_encrypt = sav->alg_enc;
3608 p->sadb_sa_flags = sav->flags;
3614 * set data into sadb_address.
3616 static struct mbuf *
3617 key_setsadbaddr(exttype, saddr, prefixlen, ul_proto)
3619 struct sockaddr *saddr;
3624 struct sadb_address *p;
3627 len = PFKEY_ALIGN8(sizeof(struct sadb_address)) +
3628 PFKEY_ALIGN8(saddr->sa_len);
3629 m = key_alloc_mbuf(len);
3630 if (!m || m->m_next) { /*XXX*/
3636 p = mtod(m, struct sadb_address *);
3639 p->sadb_address_len = PFKEY_UNIT64(len);
3640 p->sadb_address_exttype = exttype;
3641 p->sadb_address_proto = ul_proto;
3642 if (prefixlen == FULLMASK) {
3643 switch (saddr->sa_family) {
3645 prefixlen = sizeof(struct in_addr) << 3;
3648 prefixlen = sizeof(struct in6_addr) << 3;
3654 p->sadb_address_prefixlen = prefixlen;
3655 p->sadb_address_reserved = 0;
3658 mtod(m, caddr_t) + PFKEY_ALIGN8(sizeof(struct sadb_address)),
3666 * set data into sadb_ident.
3668 static struct mbuf *
3669 key_setsadbident(exttype, idtype, string, stringlen, id)
3670 u_int16_t exttype, idtype;
3676 struct sadb_ident *p;
3679 len = PFKEY_ALIGN8(sizeof(struct sadb_ident)) + PFKEY_ALIGN8(stringlen);
3680 m = key_alloc_mbuf(len);
3681 if (!m || m->m_next) { /*XXX*/
3687 p = mtod(m, struct sadb_ident *);
3690 p->sadb_ident_len = PFKEY_UNIT64(len);
3691 p->sadb_ident_exttype = exttype;
3692 p->sadb_ident_type = idtype;
3693 p->sadb_ident_reserved = 0;
3694 p->sadb_ident_id = id;
3697 mtod(m, caddr_t) + PFKEY_ALIGN8(sizeof(struct sadb_ident)),
3705 * set data into sadb_x_sa2.
3707 static struct mbuf *
3708 key_setsadbxsa2(mode, seq, reqid)
3710 u_int32_t seq, reqid;
3713 struct sadb_x_sa2 *p;
3716 len = PFKEY_ALIGN8(sizeof(struct sadb_x_sa2));
3717 m = key_alloc_mbuf(len);
3718 if (!m || m->m_next) { /*XXX*/
3724 p = mtod(m, struct sadb_x_sa2 *);
3727 p->sadb_x_sa2_len = PFKEY_UNIT64(len);
3728 p->sadb_x_sa2_exttype = SADB_X_EXT_SA2;
3729 p->sadb_x_sa2_mode = mode;
3730 p->sadb_x_sa2_reserved1 = 0;
3731 p->sadb_x_sa2_reserved2 = 0;
3732 p->sadb_x_sa2_sequence = seq;
3733 p->sadb_x_sa2_reqid = reqid;
3739 * set data into sadb_x_policy
3741 static struct mbuf *
3742 key_setsadbxpolicy(type, dir, id)
3748 struct sadb_x_policy *p;
3751 len = PFKEY_ALIGN8(sizeof(struct sadb_x_policy));
3752 m = key_alloc_mbuf(len);
3753 if (!m || m->m_next) { /*XXX*/
3759 p = mtod(m, struct sadb_x_policy *);
3762 p->sadb_x_policy_len = PFKEY_UNIT64(len);
3763 p->sadb_x_policy_exttype = SADB_X_EXT_POLICY;
3764 p->sadb_x_policy_type = type;
3765 p->sadb_x_policy_dir = dir;
3766 p->sadb_x_policy_id = id;
3773 * copy a buffer into the new buffer allocated.
3776 key_newbuf(src, len)
3782 KMALLOC(new, caddr_t, len);
3784 ipseclog((LOG_DEBUG, "key_newbuf: No more memory.\n"));
3787 bcopy(src, new, len);
3792 /* compare my own address
3793 * OUT: 1: true, i.e. my address.
3798 struct sockaddr *sa;
3801 struct sockaddr_in *sin;
3802 struct in_ifaddr *ia;
3807 panic("key_ismyaddr: NULL pointer is passed.\n");
3809 switch (sa->sa_family) {
3812 sin = (struct sockaddr_in *)sa;
3813 for (ia = in_ifaddrhead.tqh_first; ia;
3814 ia = ia->ia_link.tqe_next)
3816 if (sin->sin_family == ia->ia_addr.sin_family &&
3817 sin->sin_len == ia->ia_addr.sin_len &&
3818 sin->sin_addr.s_addr == ia->ia_addr.sin_addr.s_addr)
3827 return key_ismyaddr6((struct sockaddr_in6 *)sa);
3836 * compare my own address for IPv6.
3839 * NOTE: derived ip6_input() in KAME. This is necessary to modify more.
3841 #include <netinet6/in6_var.h>
3845 struct sockaddr_in6 *sin6;
3847 struct in6_ifaddr *ia;
3848 struct in6_multi *in6m;
3850 for (ia = in6_ifaddr; ia; ia = ia->ia_next) {
3851 if (key_sockaddrcmp((struct sockaddr *)&sin6,
3852 (struct sockaddr *)&ia->ia_addr, 0) == 0)
3857 * XXX why do we care about multlicast here while we don't care
3858 * about IPv4 multicast??
3862 IN6_LOOKUP_MULTI(sin6->sin6_addr, ia->ia_ifp, in6m);
3867 /* loopback, just for safety */
3868 if (IN6_IS_ADDR_LOOPBACK(&sin6->sin6_addr))
3876 * compare two secasindex structure.
3877 * flag can specify to compare 2 saidxes.
3878 * compare two secasindex structure without both mode and reqid.
3879 * don't compare port.
3881 * saidx0: source, it can be in SAD.
3888 key_cmpsaidx(saidx0, saidx1, flag)
3889 struct secasindex *saidx0, *saidx1;
3893 if (saidx0 == NULL && saidx1 == NULL)
3896 if (saidx0 == NULL || saidx1 == NULL)
3899 if (saidx0->proto != saidx1->proto)
3902 if (flag == CMP_EXACTLY) {
3903 if (saidx0->mode != saidx1->mode)
3905 if (saidx0->reqid != saidx1->reqid)
3907 if (bcmp(&saidx0->src, &saidx1->src, saidx0->src.ss_len) != 0 ||
3908 bcmp(&saidx0->dst, &saidx1->dst, saidx0->dst.ss_len) != 0)
3912 /* CMP_MODE_REQID, CMP_REQID, CMP_HEAD */
3913 if (flag == CMP_MODE_REQID
3914 ||flag == CMP_REQID) {
3916 * If reqid of SPD is non-zero, unique SA is required.
3917 * The result must be of same reqid in this case.
3919 if (saidx1->reqid != 0 && saidx0->reqid != saidx1->reqid)
3923 if (flag == CMP_MODE_REQID) {
3924 if (saidx0->mode != IPSEC_MODE_ANY
3925 && saidx0->mode != saidx1->mode)
3929 if (key_sockaddrcmp((struct sockaddr *)&saidx0->src,
3930 (struct sockaddr *)&saidx1->src, 0) != 0) {
3933 if (key_sockaddrcmp((struct sockaddr *)&saidx0->dst,
3934 (struct sockaddr *)&saidx1->dst, 0) != 0) {
3943 * compare two secindex structure exactly.
3945 * spidx0: source, it is often in SPD.
3946 * spidx1: object, it is often from PFKEY message.
3952 key_cmpspidx_exactly(spidx0, spidx1)
3953 struct secpolicyindex *spidx0, *spidx1;
3956 if (spidx0 == NULL && spidx1 == NULL)
3959 if (spidx0 == NULL || spidx1 == NULL)
3962 if (spidx0->prefs != spidx1->prefs
3963 || spidx0->prefd != spidx1->prefd
3964 || spidx0->ul_proto != spidx1->ul_proto)
3967 if (key_sockaddrcmp((struct sockaddr *)&spidx0->src,
3968 (struct sockaddr *)&spidx1->src, 1) != 0) {
3971 if (key_sockaddrcmp((struct sockaddr *)&spidx0->dst,
3972 (struct sockaddr *)&spidx1->dst, 1) != 0) {
3980 * compare two secindex structure with mask.
3982 * spidx0: source, it is often in SPD.
3983 * spidx1: object, it is often from IP header.
3989 key_cmpspidx_withmask(spidx0, spidx1)
3990 struct secpolicyindex *spidx0, *spidx1;
3993 if (spidx0 == NULL && spidx1 == NULL)
3996 if (spidx0 == NULL || spidx1 == NULL)
3999 if (spidx0->src.ss_family != spidx1->src.ss_family ||
4000 spidx0->dst.ss_family != spidx1->dst.ss_family ||
4001 spidx0->src.ss_len != spidx1->src.ss_len ||
4002 spidx0->dst.ss_len != spidx1->dst.ss_len)
4005 /* if spidx.ul_proto == IPSEC_ULPROTO_ANY, ignore. */
4006 if (spidx0->ul_proto != (u_int16_t)IPSEC_ULPROTO_ANY
4007 && spidx0->ul_proto != spidx1->ul_proto)
4010 switch (spidx0->src.ss_family) {
4012 if (satosin(&spidx0->src)->sin_port != IPSEC_PORT_ANY
4013 && satosin(&spidx0->src)->sin_port !=
4014 satosin(&spidx1->src)->sin_port)
4016 if (!key_bbcmp((caddr_t)&satosin(&spidx0->src)->sin_addr,
4017 (caddr_t)&satosin(&spidx1->src)->sin_addr, spidx0->prefs))
4021 if (satosin6(&spidx0->src)->sin6_port != IPSEC_PORT_ANY
4022 && satosin6(&spidx0->src)->sin6_port !=
4023 satosin6(&spidx1->src)->sin6_port)
4026 * scope_id check. if sin6_scope_id is 0, we regard it
4027 * as a wildcard scope, which matches any scope zone ID.
4029 if (satosin6(&spidx0->src)->sin6_scope_id &&
4030 satosin6(&spidx1->src)->sin6_scope_id &&
4031 satosin6(&spidx0->src)->sin6_scope_id !=
4032 satosin6(&spidx1->src)->sin6_scope_id)