Make modules work again part 1: linkup vfs, rename Makefile.module files,
[dragonfly.git] / sys / netproto / key / key.c
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.3 2003/08/07 21:17:37 dillon Exp $   */
3 /*      $KAME: key.c,v 1.191 2001/06/27 10:46:49 sakane Exp $   */
4
5 /*
6  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. Neither the name of the project nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 /*
35  * This code is referd to RFC 2367
36  */
37
38 #include "opt_inet.h"
39 #include "opt_inet6.h"
40 #include "opt_ipsec.h"
41
42 #include <sys/types.h>
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/kernel.h>
46 #include <sys/mbuf.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>
54 #include <sys/proc.h>
55 #include <sys/queue.h>
56 #include <sys/syslog.h>
57
58 #include <net/if.h>
59 #include <net/route.h>
60 #include <net/raw_cb.h>
61
62 #include <netinet/in.h>
63 #include <netinet/in_systm.h>
64 #include <netinet/ip.h>
65 #include <netinet/in_var.h>
66
67 #ifdef INET6
68 #include <netinet/ip6.h>
69 #include <netinet6/in6_var.h>
70 #include <netinet6/ip6_var.h>
71 #endif /* INET6 */
72
73 #ifdef INET
74 #include <netinet/in_pcb.h>
75 #endif
76 #ifdef INET6
77 #include <netinet6/in6_pcb.h>
78 #endif /* INET6 */
79
80 #include <net/pfkeyv2.h>
81 #include "keydb.h"
82 #include "key.h"
83 #include "keysock.h"
84 #include "key_debug.h"
85
86 #include <netinet6/ipsec.h>
87 #ifdef INET6
88 #include <netinet6/ipsec6.h>
89 #endif
90 #include <netinet6/ah.h>
91 #ifdef INET6
92 #include <netinet6/ah6.h>
93 #endif
94 #ifdef IPSEC_ESP
95 #include <netinet6/esp.h>
96 #ifdef INET6
97 #include <netinet6/esp6.h>
98 #endif
99 #endif
100 #include <netinet6/ipcomp.h>
101 #ifdef INET6
102 #include <netinet6/ipcomp6.h>
103 #endif
104
105 #include <machine/stdarg.h>
106
107 /* randomness */
108 #include <sys/random.h>
109
110 #include <net/net_osdep.h>
111
112 #ifndef satosin
113 #define satosin(s) ((struct sockaddr_in *)s)
114 #endif
115
116 #define FULLMASK        0xff
117
118 /*
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.
127  */
128
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.*/
139
140 static u_int32_t acq_seq = 0;
141 static int key_tick_init_random = 0;
142
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];
146                                                         /* registed list */
147 #ifndef IPSEC_NONBLOCK_ACQUIRE
148 static LIST_HEAD(_acqtree, secacq) acqtree;             /* acquiring list */
149 #endif
150 static LIST_HEAD(_spacqtree, secspacq) spacqtree;       /* SP acquiring list */
151
152 struct key_cb key_cb;
153
154 /* search order for SAs */
155 static const u_int saorder_state_valid_prefer_old[] = {
156         SADB_SASTATE_DYING, SADB_SASTATE_MATURE,
157 };
158 static const u_int saorder_state_valid_prefer_new[] = {
159         SADB_SASTATE_MATURE, SADB_SASTATE_DYING,
160 };
161 static const u_int saorder_state_alive[] = {
162         /* except DEAD */
163         SADB_SASTATE_MATURE, SADB_SASTATE_DYING, SADB_SASTATE_LARVAL
164 };
165 static const u_int saorder_state_any[] = {
166         SADB_SASTATE_MATURE, SADB_SASTATE_DYING,
167         SADB_SASTATE_LARVAL, SADB_SASTATE_DEAD
168 };
169
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 */
191 };
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 */
213 };
214
215 static int ipsec_esp_keymin = 256;
216 static int ipsec_esp_auth = 0;
217 static int ipsec_ah_keymin = 128;
218
219 #ifdef SYSCTL_DECL
220 SYSCTL_DECL(_net_key);
221 #endif
222
223 SYSCTL_INT(_net_key, KEYCTL_DEBUG_LEVEL,        debug,  CTLFLAG_RW, \
224         &key_debug_level,       0,      "");
225
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,      "");
229
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,      "");
233
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,      "");
237
238 /* interval to initialize randseed */
239 SYSCTL_INT(_net_key, KEYCTL_RANDOM_INT, int_random,     CTLFLAG_RW, \
240         &key_int_random,        0,      "");
241
242 /* lifetime for larval SA */
243 SYSCTL_INT(_net_key, KEYCTL_LARVAL_LIFETIME,    larval_lifetime, CTLFLAG_RW, \
244         &key_larval_lifetime,   0,      "");
245
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,      "");
249
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,      "");
253
254 /* ESP auth */
255 SYSCTL_INT(_net_key, KEYCTL_ESP_AUTH,   esp_auth, CTLFLAG_RW, \
256         &ipsec_esp_auth,        0,      "");
257
258 /* minimum ESP key length */
259 SYSCTL_INT(_net_key, KEYCTL_ESP_KEYMIN, esp_keymin, CTLFLAG_RW, \
260         &ipsec_esp_keymin,      0,      "");
261
262 /* minimum AH key length */
263 SYSCTL_INT(_net_key, KEYCTL_AH_KEYMIN,  ah_keymin, CTLFLAG_RW, \
264         &ipsec_ah_keymin,       0,      "");
265
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,      "");
269
270 #ifndef LIST_FOREACH
271 #define LIST_FOREACH(elm, head, field)                                     \
272         for (elm = LIST_FIRST(head); elm; elm = LIST_NEXT(elm, field))
273 #endif
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) \
277 do {\
278         struct type *curelm = LIST_FIRST(head); \
279         if (curelm == NULL) {\
280                 LIST_INSERT_HEAD(head, elm, field); \
281         } else { \
282                 while (LIST_NEXT(curelm, field)) \
283                         curelm = LIST_NEXT(curelm, field);\
284                 LIST_INSERT_AFTER(curelm, elm, field);\
285         }\
286 } while (0)
287
288 #define KEY_CHKSASTATE(head, sav, name) \
289 do { \
290         if ((head) != (sav)) {                                          \
291                 ipseclog((LOG_DEBUG, "%s: state mismatched (TREE=%d SA=%d)\n", \
292                         (name), (head), (sav)));                        \
293                 continue;                                               \
294         }                                                               \
295 } while (0)
296
297 #define KEY_CHKSPDIR(head, sp, name) \
298 do { \
299         if ((head) != (sp)) {                                           \
300                 ipseclog((LOG_DEBUG, "%s: direction mismatched (TREE=%d SP=%d), " \
301                         "anyway continue.\n",                           \
302                         (name), (head), (sp)));                         \
303         }                                                               \
304 } while (0)
305
306 #if 1
307 #define KMALLOC(p, t, n)                                                     \
308         ((p) = (t) malloc((unsigned long)(n), M_SECA, M_NOWAIT))
309 #define KFREE(p)                                                             \
310         free((caddr_t)(p), M_SECA);
311 #else
312 #define KMALLOC(p, t, n) \
313 do { \
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);                             \
317 } while (0)
318
319 #define KFREE(p)                                                             \
320         do {                                                                 \
321                 printf("%s %d: %p -> KFREE()\n", __FILE__, __LINE__, (p));   \
322                 free((caddr_t)(p), M_SECA);                                  \
323         } while (0)
324 #endif
325
326 /*
327  * set parameters into secpolicyindex buffer.
328  * Must allocate secpolicyindex buffer passed to this function.
329  */
330 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, idx) \
331 do { \
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);           \
339 } while (0)
340
341 /*
342  * set parameters into secasindex buffer.
343  * Must allocate secasindex buffer before calling this function.
344  */
345 #define KEY_SETSECASIDX(p, m, r, s, d, idx) \
346 do { \
347         bzero((idx), sizeof(struct secasindex));                             \
348         (idx)->proto = (p);                                                  \
349         (idx)->mode = (m);                                                   \
350         (idx)->reqid = (r);                                                  \
351         bcopy((s), &(idx)->src, ((struct sockaddr *)(s))->sa_len);           \
352         bcopy((d), &(idx)->dst, ((struct sockaddr *)(d))->sa_len);           \
353 } while (0)
354
355 /* key statistics */
356 struct _keystat {
357         u_long getspi_count; /* the avarage of count to try to get new SPI */
358 } keystat;
359
360 struct sadb_msghdr {
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];
365 };
366
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));
411 #if 0
412 static struct mbuf *key_setsadbident __P((u_int16_t, u_int16_t, caddr_t,
413         int, u_int64_t));
414 #endif
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,
417         u_int32_t));
418 static void *key_newbuf __P((const void *, u_int));
419 #ifdef INET6
420 static int key_ismyaddr6 __P((struct sockaddr_in6 *));
421 #endif
422
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));
430
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));
440
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));
449 #endif
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 *));
460
461 static void key_getcomb_setlifetime __P((struct sadb_comb *));
462 #ifdef IPSEC_ESP
463 static struct mbuf *key_getcomb_esp __P((void));
464 #endif
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 *));
468
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));
474 #endif
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 *));
491 #if 0
492 static const char *key_getfqdn __P((void));
493 static const char *key_getuserfqdn __P((void));
494 #endif
495 static void key_sa_chgstate __P((struct secasvar *, u_int8_t));
496 static struct mbuf *key_alloc_mbuf __P((int));
497
498 /* %%% IPsec policy management */
499 /*
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.
504  */
505 struct secpolicy *
506 key_allocsp(spidx, dir)
507         struct secpolicyindex *spidx;
508         u_int dir;
509 {
510         struct secpolicy *sp;
511         struct timeval tv;
512         int s;
513
514         /* sanity check */
515         if (spidx == NULL)
516                 panic("key_allocsp: NULL pointer is passed.\n");
517
518         /* check direction */
519         switch (dir) {
520         case IPSEC_DIR_INBOUND:
521         case IPSEC_DIR_OUTBOUND:
522                 break;
523         default:
524                 panic("key_allocsp: Invalid direction is passed.\n");
525         }
526
527         /* get a SP entry */
528         s = splnet();   /*called from softclock()*/
529         KEYDEBUG(KEYDEBUG_IPSEC_DATA,
530                 printf("*** objects\n");
531                 kdebug_secpolicyindex(spidx));
532
533         LIST_FOREACH(sp, &sptree[dir], chain) {
534                 KEYDEBUG(KEYDEBUG_IPSEC_DATA,
535                         printf("*** in SPD\n");
536                         kdebug_secpolicyindex(&sp->spidx));
537
538                 if (sp->state == IPSEC_SPSTATE_DEAD)
539                         continue;
540                 if (key_cmpspidx_withmask(&sp->spidx, spidx))
541                         goto found;
542         }
543
544         splx(s);
545         return NULL;
546
547 found:
548         /* sanity check */
549         KEY_CHKSPDIR(sp->spidx.dir, dir, "key_allocsp");
550
551         /* found a SPD entry */
552         microtime(&tv);
553         sp->lastused = tv.tv_sec;
554         sp->refcnt++;
555         splx(s);
556         KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
557                 printf("DP key_allocsp cause refcnt++:%d SP:%p\n",
558                         sp->refcnt, sp));
559
560         return sp;
561 }
562
563 /*
564  * return a policy that matches this particular inbound packet.
565  * XXX slow
566  */
567 struct secpolicy *
568 key_gettunnel(osrc, odst, isrc, idst)
569         struct sockaddr *osrc, *odst, *isrc, *idst;
570 {
571         struct secpolicy *sp;
572         const int dir = IPSEC_DIR_INBOUND;
573         struct timeval tv;
574         int s;
575         struct ipsecrequest *r1, *r2, *p;
576         struct sockaddr *os, *od, *is, *id;
577         struct secpolicyindex spidx;
578
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));
582                 return NULL;
583         }
584
585         s = splnet();   /*called from softclock()*/
586         LIST_FOREACH(sp, &sptree[dir], chain) {
587                 if (sp->state == IPSEC_SPSTATE_DEAD)
588                         continue;
589
590                 r1 = r2 = NULL;
591                 for (p = sp->req; p; p = p->next) {
592                         if (p->saidx.mode != IPSEC_MODE_TUNNEL)
593                                 continue;
594
595                         r1 = r2;
596                         r2 = p;
597
598                         if (!r1) {
599                                 /* here we look at address matches only */
600                                 spidx = sp->spidx;
601                                 if (isrc->sa_len > sizeof(spidx.src) ||
602                                     idst->sa_len > sizeof(spidx.dst))
603                                         continue;
604                                 bcopy(isrc, &spidx.src, isrc->sa_len);
605                                 bcopy(idst, &spidx.dst, idst->sa_len);
606                                 if (!key_cmpspidx_withmask(&sp->spidx, &spidx))
607                                         continue;
608                         } else {
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))
613                                         continue;
614                         }
615
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))
620                                 continue;
621
622                         goto found;
623                 }
624         }
625         splx(s);
626         return NULL;
627
628 found:
629         microtime(&tv);
630         sp->lastused = tv.tv_sec;
631         sp->refcnt++;
632         splx(s);
633         return sp;
634 }
635
636 /*
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.
641  */
642 int
643 key_checkrequest(isr, saidx)
644         struct ipsecrequest *isr;
645         struct secasindex *saidx;
646 {
647         u_int level;
648         int error;
649
650         /* sanity check */
651         if (isr == NULL || saidx == NULL)
652                 panic("key_checkrequest: NULL pointer is passed.\n");
653
654         /* check mode */
655         switch (saidx->mode) {
656         case IPSEC_MODE_TRANSPORT:
657         case IPSEC_MODE_TUNNEL:
658                 break;
659         case IPSEC_MODE_ANY:
660         default:
661                 panic("key_checkrequest: Invalid policy defined.\n");
662         }
663
664         /* get current level */
665         level = ipsec_get_reqlevel(isr);
666
667 #if 0
668         /*
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.
671          */
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",
679                                         isr->sav));
680                         key_freesav(isr->sav);
681                         isr->sav = NULL;
682                 }
683         }
684 #else
685         /*
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.
691          *
692          * The operation may have negative impact to performance.  We may
693          * want to check cached SA carefully, rather than picking new SA
694          * every time.
695          */
696         if (isr->sav != NULL) {
697                 key_freesav(isr->sav);
698                 isr->sav = NULL;
699         }
700 #endif
701
702         /*
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.
706          */
707         if (isr->sav == NULL)
708                 isr->sav = key_allocsa_policy(saidx);
709
710         /* When there is SA. */
711         if (isr->sav != NULL)
712                 return 0;
713
714         /* there is no SA */
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));
719                 return error;
720         }
721
722         return level == IPSEC_LEVEL_REQUIRE ? ENOENT : 0;
723 }
724
725 /*
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.
730  */
731 static struct secasvar *
732 key_allocsa_policy(saidx)
733         struct secasindex *saidx;
734 {
735         struct secashead *sah;
736         struct secasvar *sav;
737         u_int stateidx, state;
738         const u_int *saorder_state_valid;
739         int arraysize;
740
741         LIST_FOREACH(sah, &sahtree, chain) {
742                 if (sah->state == SADB_SASTATE_DEAD)
743                         continue;
744                 if (key_cmpsaidx(&sah->saidx, saidx, CMP_MODE_REQID))
745                         goto found;
746         }
747
748         return NULL;
749
750     found:
751
752         /*
753          * search a valid state list for outbound packet.
754          * This search order is important.
755          */
756         if (key_preferred_oldsa) {
757                 saorder_state_valid = saorder_state_valid_prefer_old;
758                 arraysize = _ARRAYLEN(saorder_state_valid_prefer_old);
759         } else {
760                 saorder_state_valid = saorder_state_valid_prefer_new;
761                 arraysize = _ARRAYLEN(saorder_state_valid_prefer_new);
762         }
763
764         for (stateidx = 0; stateidx < arraysize; stateidx++) {
765
766                 state = saorder_state_valid[stateidx];
767
768                 sav = key_do_allocsa_policy(sah, state);
769                 if (sav != NULL)
770                         return sav;
771         }
772
773         return NULL;
774 }
775
776 /*
777  * searching SAD with direction, protocol, mode and state.
778  * called by key_allocsa_policy().
779  * OUT:
780  *      NULL    : not found
781  *      others  : found, pointer to a SA.
782  */
783 static struct secasvar *
784 key_do_allocsa_policy(sah, state)
785         struct secashead *sah;
786         u_int state;
787 {
788         struct secasvar *sav, *nextsav, *candidate, *d;
789
790         /* initilize */
791         candidate = NULL;
792
793         for (sav = LIST_FIRST(&sah->savtree[state]);
794              sav != NULL;
795              sav = nextsav) {
796
797                 nextsav = LIST_NEXT(sav, chain);
798
799                 /* sanity check */
800                 KEY_CHKSASTATE(sav->state, state, "key_do_allocsa_policy");
801
802                 /* initialize */
803                 if (candidate == NULL) {
804                         candidate = sav;
805                         continue;
806                 }
807
808                 /* Which SA is the better ? */
809
810                 /* sanity check 2 */
811                 if (candidate->lft_c == NULL || sav->lft_c == NULL)
812                         panic("key_do_allocsa_policy: "
813                                 "lifetime_current is NULL.\n");
814
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) {
819                                 candidate = sav;
820                         }
821                         continue;
822                         /*NOTREACHED*/
823                 }
824
825                 /* prefered new sa rather than old sa */
826                 if (candidate->lft_c->sadb_lifetime_addtime <
827                                 sav->lft_c->sadb_lifetime_addtime) {
828                         d = candidate;
829                         candidate = sav;
830                 } else
831                         d = sav;
832
833                 /*
834                  * prepared to delete the SA when there is more
835                  * suitable candidate and the lifetime of the SA is not
836                  * permanent.
837                  */
838                 if (d->lft_c->sadb_lifetime_addtime != 0) {
839                         struct mbuf *m, *result;
840
841                         key_sa_chgstate(d, SADB_SASTATE_DEAD);
842
843                         m = key_setsadbmsg(SADB_DELETE, 0,
844                             d->sah->saidx.proto, 0, 0, d->refcnt - 1);
845                         if (!m)
846                                 goto msgfail;
847                         result = m;
848
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,
853                                 IPSEC_ULPROTO_ANY);
854                         if (!m)
855                                 goto msgfail;
856                         m_cat(result, m);
857
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,
862                                 IPSEC_ULPROTO_ANY);
863                         if (!m)
864                                 goto msgfail;
865                         m_cat(result, m);
866
867                         /* create SA extension */
868                         m = key_setsadbsa(d);
869                         if (!m)
870                                 goto msgfail;
871                         m_cat(result, m);
872
873                         if (result->m_len < sizeof(struct sadb_msg)) {
874                                 result = m_pullup(result,
875                                                 sizeof(struct sadb_msg));
876                                 if (result == NULL)
877                                         goto msgfail;
878                         }
879
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);
885
886                         if (key_sendup_mbuf(NULL, result,
887                                         KEY_SENDUP_REGISTERED))
888                                 goto msgfail;
889                  msgfail:
890                         key_freesav(d);
891                 }
892         }
893
894         if (candidate) {
895                 candidate->refcnt++;
896                 KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
897                         printf("DP allocsa_policy cause "
898                                 "refcnt++:%d SA:%p\n",
899                                 candidate->refcnt, candidate));
900         }
901         return candidate;
902 }
903
904 /*
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.
909  *
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.
918  */
919 struct secasvar *
920 key_allocsa(family, src, dst, proto, spi)
921         u_int family, proto;
922         caddr_t src, dst;
923         u_int32_t spi;
924 {
925         struct secashead *sah;
926         struct secasvar *sav;
927         u_int stateidx, state;
928         struct sockaddr_in sin;
929         struct sockaddr_in6 sin6;
930         int s;
931         const u_int *saorder_state_valid;
932         int arraysize;
933
934         /* sanity check */
935         if (src == NULL || dst == NULL)
936                 panic("key_allocsa: NULL pointer is passed.\n");
937
938         /*
939          * when both systems employ similar strategy to use a SA.
940          * the search order is important even in the inbound case.
941          */
942         if (key_preferred_oldsa) {
943                 saorder_state_valid = saorder_state_valid_prefer_old;
944                 arraysize = _ARRAYLEN(saorder_state_valid_prefer_old);
945         } else {
946                 saorder_state_valid = saorder_state_valid_prefer_new;
947                 arraysize = _ARRAYLEN(saorder_state_valid_prefer_new);
948         }
949
950         /*
951          * searching SAD.
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.
955          */
956         s = splnet();   /*called from softclock()*/
957         LIST_FOREACH(sah, &sahtree, chain) {
958                 /*
959                  * search a valid state list for inbound packet.
960                  * the search order is not important.
961                  */
962                 for (stateidx = 0; stateidx < arraysize; stateidx++) {
963                         state = saorder_state_valid[stateidx];
964                         LIST_FOREACH(sav, &sah->savtree[state], chain) {
965                                 /* sanity check */
966                                 KEY_CHKSASTATE(sav->state, state, "key_allocsav");
967                                 if (proto != sav->sah->saidx.proto)
968                                         continue;
969                                 if (spi != sav->spi)
970                                         continue;
971                                 if (family != sav->sah->saidx.src.ss_family ||
972                                     family != sav->sah->saidx.dst.ss_family)
973                                         continue;
974
975 #if 0   /* don't check src */
976                                 /* check src address */
977                                 switch (family) {
978                                 case AF_INET:
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)
986                                                 continue;
987
988                                         break;
989                                 case AF_INET6:
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 */
997                                                 sin6.sin6_scope_id =
998                                                     ntohs(sin6.sin6_addr.s6_addr16[1]);
999                                                 sin6.sin6_addr.s6_addr16[1] = 0;
1000                                         }
1001                                         if (key_sockaddrcmp((struct sockaddr*)&sin6,
1002                                             (struct sockaddr *)&sav->sah->saidx.src, 0) != 0)
1003                                                 continue;
1004                                         break;
1005                                 default:
1006                                         ipseclog((LOG_DEBUG, "key_allocsa: "
1007                                             "unknown address family=%d.\n",
1008                                             family));
1009                                         continue;
1010                                 }
1011
1012 #endif
1013                                 /* check dst address */
1014                                 switch (family) {
1015                                 case AF_INET:
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)
1023                                                 continue;
1024
1025                                         break;
1026                                 case AF_INET6:
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;
1037                                         }
1038                                         if (key_sockaddrcmp((struct sockaddr*)&sin6,
1039                                             (struct sockaddr *)&sav->sah->saidx.dst, 0) != 0)
1040                                                 continue;
1041                                         break;
1042                                 default:
1043                                         ipseclog((LOG_DEBUG, "key_allocsa: "
1044                                             "unknown address family=%d.\n",
1045                                             family));
1046                                         continue;
1047                                 }
1048
1049                                 goto found;
1050                         }
1051                 }
1052         }
1053
1054         /* not found */
1055         splx(s);
1056         return NULL;
1057
1058 found:
1059         sav->refcnt++;
1060         splx(s);
1061         KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1062                 printf("DP allocsa cause refcnt++:%d SA:%p\n",
1063                         sav->refcnt, sav));
1064         return sav;
1065 }
1066
1067 /*
1068  * Must be called after calling key_allocsp().
1069  * For both the packet without socket and key_freeso().
1070  */
1071 void
1072 key_freesp(sp)
1073         struct secpolicy *sp;
1074 {
1075         /* sanity check */
1076         if (sp == NULL)
1077                 panic("key_freesp: NULL pointer is passed.\n");
1078
1079         sp->refcnt--;
1080         KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1081                 printf("DP freesp cause refcnt--:%d SP:%p\n",
1082                         sp->refcnt, sp));
1083
1084         if (sp->refcnt == 0)
1085                 key_delsp(sp);
1086
1087         return;
1088 }
1089
1090 /*
1091  * Must be called after calling key_allocsp().
1092  * For the packet with socket.
1093  */
1094 void
1095 key_freeso(so)
1096         struct socket *so;
1097 {
1098         /* sanity check */
1099         if (so == NULL)
1100                 panic("key_freeso: NULL pointer is passed.\n");
1101
1102         switch (so->so_proto->pr_domain->dom_family) {
1103 #ifdef INET
1104         case PF_INET:
1105             {
1106                 struct inpcb *pcb = sotoinpcb(so);
1107
1108                 /* Does it have a PCB ? */
1109                 if (pcb == NULL)
1110                         return;
1111                 key_freesp_so(&pcb->inp_sp->sp_in);
1112                 key_freesp_so(&pcb->inp_sp->sp_out);
1113             }
1114                 break;
1115 #endif
1116 #ifdef INET6
1117         case PF_INET6:
1118             {
1119 #ifdef HAVE_NRL_INPCB
1120                 struct inpcb *pcb  = sotoinpcb(so);
1121
1122                 /* Does it have a PCB ? */
1123                 if (pcb == NULL)
1124                         return;
1125                 key_freesp_so(&pcb->inp_sp->sp_in);
1126                 key_freesp_so(&pcb->inp_sp->sp_out);
1127 #else
1128                 struct in6pcb *pcb  = sotoin6pcb(so);
1129
1130                 /* Does it have a PCB ? */
1131                 if (pcb == NULL)
1132                         return;
1133                 key_freesp_so(&pcb->in6p_sp->sp_in);
1134                 key_freesp_so(&pcb->in6p_sp->sp_out);
1135 #endif
1136             }
1137                 break;
1138 #endif /* INET6 */
1139         default:
1140                 ipseclog((LOG_DEBUG, "key_freeso: unknown address family=%d.\n",
1141                     so->so_proto->pr_domain->dom_family));
1142                 return;
1143         }
1144
1145         return;
1146 }
1147
1148 static void
1149 key_freesp_so(sp)
1150         struct secpolicy **sp;
1151 {
1152         /* sanity check */
1153         if (sp == NULL || *sp == NULL)
1154                 panic("key_freesp_so: sp == NULL\n");
1155
1156         switch ((*sp)->policy) {
1157         case IPSEC_POLICY_IPSEC:
1158                 KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1159                         printf("DP freeso calls free SP:%p\n", *sp));
1160                 key_freesp(*sp);
1161                 *sp = NULL;
1162                 break;
1163         case IPSEC_POLICY_ENTRUST:
1164         case IPSEC_POLICY_BYPASS:
1165                 return;
1166         default:
1167                 panic("key_freesp_so: Invalid policy found %d", (*sp)->policy);
1168         }
1169
1170         return;
1171 }
1172
1173 /*
1174  * Must be called after calling key_allocsa().
1175  * This function is called by key_freesp() to free some SA allocated
1176  * for a policy.
1177  */
1178 void
1179 key_freesav(sav)
1180         struct secasvar *sav;
1181 {
1182         /* sanity check */
1183         if (sav == NULL)
1184                 panic("key_freesav: NULL pointer is passed.\n");
1185
1186         sav->refcnt--;
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)));
1190
1191         if (sav->refcnt == 0)
1192                 key_delsav(sav);
1193
1194         return;
1195 }
1196
1197 /* %%% SPD management */
1198 /*
1199  * free security policy entry.
1200  */
1201 static void
1202 key_delsp(sp)
1203         struct secpolicy *sp;
1204 {
1205         int s;
1206
1207         /* sanity check */
1208         if (sp == NULL)
1209                 panic("key_delsp: NULL pointer is passed.\n");
1210
1211         sp->state = IPSEC_SPSTATE_DEAD;
1212
1213         if (sp->refcnt > 0)
1214                 return; /* can't free */
1215
1216         s = splnet();   /*called from softclock()*/
1217         /* remove from SP index */
1218         if (__LIST_CHAINED(sp))
1219                 LIST_REMOVE(sp, chain);
1220
1221     {
1222         struct ipsecrequest *isr = sp->req, *nextisr;
1223
1224         while (isr != NULL) {
1225                 if (isr->sav != NULL) {
1226                         KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1227                                 printf("DP delsp calls free SA:%p\n",
1228                                         isr->sav));
1229                         key_freesav(isr->sav);
1230                         isr->sav = NULL;
1231                 }
1232
1233                 nextisr = isr->next;
1234                 KFREE(isr);
1235                 isr = nextisr;
1236         }
1237     }
1238
1239         keydb_delsecpolicy(sp);
1240
1241         splx(s);
1242
1243         return;
1244 }
1245
1246 /*
1247  * search SPD
1248  * OUT: NULL    : not found
1249  *      others  : found, pointer to a SP.
1250  */
1251 static struct secpolicy *
1252 key_getsp(spidx)
1253         struct secpolicyindex *spidx;
1254 {
1255         struct secpolicy *sp;
1256
1257         /* sanity check */
1258         if (spidx == NULL)
1259                 panic("key_getsp: NULL pointer is passed.\n");
1260
1261         LIST_FOREACH(sp, &sptree[spidx->dir], chain) {
1262                 if (sp->state == IPSEC_SPSTATE_DEAD)
1263                         continue;
1264                 if (key_cmpspidx_exactly(spidx, &sp->spidx)) {
1265                         sp->refcnt++;
1266                         return sp;
1267                 }
1268         }
1269
1270         return NULL;
1271 }
1272
1273 /*
1274  * get SP by index.
1275  * OUT: NULL    : not found
1276  *      others  : found, pointer to a SP.
1277  */
1278 static struct secpolicy *
1279 key_getspbyid(id)
1280         u_int32_t id;
1281 {
1282         struct secpolicy *sp;
1283
1284         LIST_FOREACH(sp, &sptree[IPSEC_DIR_INBOUND], chain) {
1285                 if (sp->state == IPSEC_SPSTATE_DEAD)
1286                         continue;
1287                 if (sp->id == id) {
1288                         sp->refcnt++;
1289                         return sp;
1290                 }
1291         }
1292
1293         LIST_FOREACH(sp, &sptree[IPSEC_DIR_OUTBOUND], chain) {
1294                 if (sp->state == IPSEC_SPSTATE_DEAD)
1295                         continue;
1296                 if (sp->id == id) {
1297                         sp->refcnt++;
1298                         return sp;
1299                 }
1300         }
1301
1302         return NULL;
1303 }
1304
1305 struct secpolicy *
1306 key_newsp()
1307 {
1308         struct secpolicy *newsp = NULL;
1309
1310         newsp = keydb_newsecpolicy();
1311         if (!newsp)
1312                 return newsp;
1313
1314         newsp->refcnt = 1;
1315         newsp->req = NULL;
1316
1317         return newsp;
1318 }
1319
1320 /*
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.
1324  */
1325 struct secpolicy *
1326 key_msg2sp(xpl0, len, error)
1327         struct sadb_x_policy *xpl0;
1328         size_t len;
1329         int *error;
1330 {
1331         struct secpolicy *newsp;
1332
1333         /* sanity check */
1334         if (xpl0 == NULL)
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"));
1340                 *error = EINVAL;
1341                 return NULL;
1342         }
1343
1344         if ((newsp = key_newsp()) == NULL) {
1345                 *error = ENOBUFS;
1346                 return NULL;
1347         }
1348
1349         newsp->spidx.dir = xpl0->sadb_x_policy_dir;
1350         newsp->policy = xpl0->sadb_x_policy_type;
1351
1352         /* check policy */
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:
1358                 newsp->req = NULL;
1359                 break;
1360
1361         case IPSEC_POLICY_IPSEC:
1362             {
1363                 int tlen;
1364                 struct sadb_x_ipsecrequest *xisr;
1365                 struct ipsecrequest **p_isr = &newsp->req;
1366
1367                 /* validity check */
1368                 if (PFKEY_EXTLEN(xpl0) < sizeof(*xpl0)) {
1369                         ipseclog((LOG_DEBUG,
1370                             "key_msg2sp: Invalid msg length.\n"));
1371                         key_freesp(newsp);
1372                         *error = EINVAL;
1373                         return NULL;
1374                 }
1375
1376                 tlen = PFKEY_EXTLEN(xpl0) - sizeof(*xpl0);
1377                 xisr = (struct sadb_x_ipsecrequest *)(xpl0 + 1);
1378
1379                 while (tlen > 0) {
1380
1381                         /* length check */
1382                         if (xisr->sadb_x_ipsecrequest_len < sizeof(*xisr)) {
1383                                 ipseclog((LOG_DEBUG, "key_msg2sp: "
1384                                         "invalid ipsecrequest length.\n"));
1385                                 key_freesp(newsp);
1386                                 *error = EINVAL;
1387                                 return NULL;
1388                         }
1389
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"));
1395                                 key_freesp(newsp);
1396                                 *error = ENOBUFS;
1397                                 return NULL;
1398                         }
1399                         bzero(*p_isr, sizeof(**p_isr));
1400
1401                         /* set values */
1402                         (*p_isr)->next = NULL;
1403
1404                         switch (xisr->sadb_x_ipsecrequest_proto) {
1405                         case IPPROTO_ESP:
1406                         case IPPROTO_AH:
1407                         case IPPROTO_IPCOMP:
1408                                 break;
1409                         default:
1410                                 ipseclog((LOG_DEBUG,
1411                                     "key_msg2sp: invalid proto type=%u\n",
1412                                     xisr->sadb_x_ipsecrequest_proto));
1413                                 key_freesp(newsp);
1414                                 *error = EPROTONOSUPPORT;
1415                                 return NULL;
1416                         }
1417                         (*p_isr)->saidx.proto = xisr->sadb_x_ipsecrequest_proto;
1418
1419                         switch (xisr->sadb_x_ipsecrequest_mode) {
1420                         case IPSEC_MODE_TRANSPORT:
1421                         case IPSEC_MODE_TUNNEL:
1422                                 break;
1423                         case IPSEC_MODE_ANY:
1424                         default:
1425                                 ipseclog((LOG_DEBUG,
1426                                     "key_msg2sp: invalid mode=%u\n",
1427                                     xisr->sadb_x_ipsecrequest_mode));
1428                                 key_freesp(newsp);
1429                                 *error = EINVAL;
1430                                 return NULL;
1431                         }
1432                         (*p_isr)->saidx.mode = xisr->sadb_x_ipsecrequest_mode;
1433
1434                         switch (xisr->sadb_x_ipsecrequest_level) {
1435                         case IPSEC_LEVEL_DEFAULT:
1436                         case IPSEC_LEVEL_USE:
1437                         case IPSEC_LEVEL_REQUIRE:
1438                                 break;
1439                         case IPSEC_LEVEL_UNIQUE:
1440                                 /* validity check */
1441                                 /*
1442                                  * If range violation of reqid, kernel will
1443                                  * update it, don't refuse it.
1444                                  */
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;
1452                                 }
1453
1454                                 /* allocate new reqid id if reqid is zero. */
1455                                 if (xisr->sadb_x_ipsecrequest_reqid == 0) {
1456                                         u_int32_t reqid;
1457                                         if ((reqid = key_newreqid()) == 0) {
1458                                                 key_freesp(newsp);
1459                                                 *error = ENOBUFS;
1460                                                 return NULL;
1461                                         }
1462                                         (*p_isr)->saidx.reqid = reqid;
1463                                         xisr->sadb_x_ipsecrequest_reqid = reqid;
1464                                 } else {
1465                                 /* set it for manual keying. */
1466                                         (*p_isr)->saidx.reqid =
1467                                                 xisr->sadb_x_ipsecrequest_reqid;
1468                                 }
1469                                 break;
1470
1471                         default:
1472                                 ipseclog((LOG_DEBUG, "key_msg2sp: invalid level=%u\n",
1473                                         xisr->sadb_x_ipsecrequest_level));
1474                                 key_freesp(newsp);
1475                                 *error = EINVAL;
1476                                 return NULL;
1477                         }
1478                         (*p_isr)->level = xisr->sadb_x_ipsecrequest_level;
1479
1480                         /* set IP addresses if there */
1481                         if (xisr->sadb_x_ipsecrequest_len > sizeof(*xisr)) {
1482                                 struct sockaddr *paddr;
1483
1484                                 paddr = (struct sockaddr *)(xisr + 1);
1485
1486                                 /* validity check */
1487                                 if (paddr->sa_len
1488                                     > sizeof((*p_isr)->saidx.src)) {
1489                                         ipseclog((LOG_DEBUG, "key_msg2sp: invalid request "
1490                                                 "address length.\n"));
1491                                         key_freesp(newsp);
1492                                         *error = EINVAL;
1493                                         return NULL;
1494                                 }
1495                                 bcopy(paddr, &(*p_isr)->saidx.src,
1496                                         paddr->sa_len);
1497
1498                                 paddr = (struct sockaddr *)((caddr_t)paddr
1499                                                         + paddr->sa_len);
1500
1501                                 /* validity check */
1502                                 if (paddr->sa_len
1503                                     > sizeof((*p_isr)->saidx.dst)) {
1504                                         ipseclog((LOG_DEBUG, "key_msg2sp: invalid request "
1505                                                 "address length.\n"));
1506                                         key_freesp(newsp);
1507                                         *error = EINVAL;
1508                                         return NULL;
1509                                 }
1510                                 bcopy(paddr, &(*p_isr)->saidx.dst,
1511                                         paddr->sa_len);
1512                         }
1513
1514                         (*p_isr)->sav = NULL;
1515                         (*p_isr)->sp = newsp;
1516
1517                         /* initialization for the next. */
1518                         p_isr = &(*p_isr)->next;
1519                         tlen -= xisr->sadb_x_ipsecrequest_len;
1520
1521                         /* validity check */
1522                         if (tlen < 0) {
1523                                 ipseclog((LOG_DEBUG, "key_msg2sp: becoming tlen < 0.\n"));
1524                                 key_freesp(newsp);
1525                                 *error = EINVAL;
1526                                 return NULL;
1527                         }
1528
1529                         xisr = (struct sadb_x_ipsecrequest *)((caddr_t)xisr
1530                                          + xisr->sadb_x_ipsecrequest_len);
1531                 }
1532             }
1533                 break;
1534         default:
1535                 ipseclog((LOG_DEBUG, "key_msg2sp: invalid policy type.\n"));
1536                 key_freesp(newsp);
1537                 *error = EINVAL;
1538                 return NULL;
1539         }
1540
1541         *error = 0;
1542         return newsp;
1543 }
1544
1545 static u_int32_t
1546 key_newreqid()
1547 {
1548         static u_int32_t auto_reqid = IPSEC_MANUAL_REQID_MAX + 1;
1549
1550         auto_reqid = (auto_reqid == ~0
1551                         ? IPSEC_MANUAL_REQID_MAX + 1 : auto_reqid + 1);
1552
1553         /* XXX should be unique check */
1554
1555         return auto_reqid;
1556 }
1557
1558 /*
1559  * copy secpolicy struct to sadb_x_policy structure indicated.
1560  */
1561 struct mbuf *
1562 key_sp2msg(sp)
1563         struct secpolicy *sp;
1564 {
1565         struct sadb_x_policy *xpl;
1566         int tlen;
1567         caddr_t p;
1568         struct mbuf *m;
1569
1570         /* sanity check. */
1571         if (sp == NULL)
1572                 panic("key_sp2msg: NULL pointer was passed.\n");
1573
1574         tlen = key_getspreqmsglen(sp);
1575
1576         m = key_alloc_mbuf(tlen);
1577         if (!m || m->m_next) {  /*XXX*/
1578                 if (m)
1579                         m_freem(m);
1580                 return NULL;
1581         }
1582
1583         m->m_len = tlen;
1584         m->m_next = NULL;
1585         xpl = mtod(m, struct sadb_x_policy *);
1586         bzero(xpl, tlen);
1587
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);
1594
1595         /* if is the policy for ipsec ? */
1596         if (sp->policy == IPSEC_POLICY_IPSEC) {
1597                 struct sadb_x_ipsecrequest *xisr;
1598                 struct ipsecrequest *isr;
1599
1600                 for (isr = sp->req; isr != NULL; isr = isr->next) {
1601
1602                         xisr = (struct sadb_x_ipsecrequest *)p;
1603
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;
1608
1609                         p += sizeof(*xisr);
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;
1614
1615                         xisr->sadb_x_ipsecrequest_len =
1616                                 PFKEY_ALIGN8(sizeof(*xisr)
1617                                         + isr->saidx.src.ss_len
1618                                         + isr->saidx.dst.ss_len);
1619                 }
1620         }
1621
1622         return m;
1623 }
1624
1625 /* m will not be freed nor modified */
1626 static struct mbuf *
1627 #ifdef __STDC__
1628 key_gather_mbuf(struct mbuf *m, const struct sadb_msghdr *mhp,
1629         int ndeep, int nitem, ...)
1630 #else
1631 key_gather_mbuf(m, mhp, ndeep, nitem, va_alist)
1632         struct mbuf *m;
1633         const struct sadb_msghdr *mhp;
1634         int ndeep;
1635         int nitem;
1636         va_dcl
1637 #endif
1638 {
1639         va_list ap;
1640         int idx;
1641         int i;
1642         struct mbuf *result = NULL, *n;
1643         int len;
1644
1645         if (m == NULL || mhp == NULL)
1646                 panic("null pointer passed to key_gather");
1647
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)
1652                         goto fail;
1653                 /* don't attempt to pull empty extension */
1654                 if (idx == SADB_EXT_RESERVED && mhp->msg == NULL)
1655                         continue;
1656                 if (idx != SADB_EXT_RESERVED  &&
1657                     (mhp->ext[idx] == NULL || mhp->extlen[idx] == 0))
1658                         continue;
1659
1660                 if (idx == SADB_EXT_RESERVED) {
1661                         len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
1662 #ifdef DIAGNOSTIC
1663                         if (len > MHLEN)
1664                                 panic("assumption failed");
1665 #endif
1666                         MGETHDR(n, M_DONTWAIT, MT_DATA);
1667                         if (!n)
1668                                 goto fail;
1669                         n->m_len = len;
1670                         n->m_next = NULL;
1671                         m_copydata(m, 0, sizeof(struct sadb_msg),
1672                             mtod(n, caddr_t));
1673                 } else if (i < ndeep) {
1674                         len = mhp->extlen[idx];
1675                         n = key_alloc_mbuf(len);
1676                         if (!n || n->m_next) {  /*XXX*/
1677                                 if (n)
1678                                         m_freem(n);
1679                                 goto fail;
1680                         }
1681                         m_copydata(m, mhp->extoff[idx], mhp->extlen[idx],
1682                             mtod(n, caddr_t));
1683                 } else {
1684                         n = m_copym(m, mhp->extoff[idx], mhp->extlen[idx],
1685                             M_DONTWAIT);
1686                 }
1687                 if (n == NULL)
1688                         goto fail;
1689
1690                 if (result)
1691                         m_cat(result, n);
1692                 else
1693                         result = n;
1694         }
1695         va_end(ap);
1696
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;
1701         }
1702
1703         return result;
1704
1705 fail:
1706         m_freem(result);
1707         return NULL;
1708 }
1709
1710 /*
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>
1714  * from the user(?).
1715  * Adding to SP database,
1716  * and send
1717  *   <base, address(SD), (lifetime(H),) policy>
1718  * to the socket which was send.
1719  *
1720  * SPDADD set a unique policy entry.
1721  * SPDSETIDX like SPDADD without a part of policy requests.
1722  * SPDUPDATE replace a unique policy entry.
1723  *
1724  * m will always be freed.
1725  */
1726 static int
1727 key_spdadd(so, m, mhp)
1728         struct socket *so;
1729         struct mbuf *m;
1730         const struct sadb_msghdr *mhp;
1731 {
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;
1737         struct timeval tv;
1738         int error;
1739
1740         /* sanity check */
1741         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
1742                 panic("key_spdadd: NULL pointer is passed.\n");
1743
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);
1749         }
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);
1755         }
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);
1761                 }
1762                 lft = (struct sadb_lifetime *)mhp->ext[SADB_EXT_LIFETIME_HARD];
1763         }
1764
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];
1768
1769         /* make secindex */
1770         /* XXX boundary check against sa_len */
1771         KEY_SETSECSPIDX(xpl0->sadb_x_policy_dir,
1772                         src0 + 1,
1773                         dst0 + 1,
1774                         src0->sadb_address_prefixlen,
1775                         dst0->sadb_address_prefixlen,
1776                         src0->sadb_address_proto,
1777                         &spidx);
1778
1779         /* checking the direciton. */
1780         switch (xpl0->sadb_x_policy_dir) {
1781         case IPSEC_DIR_INBOUND:
1782         case IPSEC_DIR_OUTBOUND:
1783                 break;
1784         default:
1785                 ipseclog((LOG_DEBUG, "key_spdadd: Invalid SP direction.\n"));
1786                 mhp->msg->sadb_msg_errno = EINVAL;
1787                 return 0;
1788         }
1789
1790         /* check policy */
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);
1796         }
1797
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);
1804         }
1805
1806         /*
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,
1810          * then error.
1811          */
1812         newsp = key_getsp(&spidx);
1813         if (mhp->msg->sadb_msg_type == SADB_X_SPDUPDATE) {
1814                 if (newsp) {
1815                         newsp->state = IPSEC_SPSTATE_DEAD;
1816                         key_freesp(newsp);
1817                 }
1818         } else {
1819                 if (newsp != NULL) {
1820                         key_freesp(newsp);
1821                         ipseclog((LOG_DEBUG, "key_spdadd: a SP entry exists already.\n"));
1822                         return key_senderror(so, m, EEXIST);
1823                 }
1824         }
1825
1826         /* allocation new SP entry */
1827         if ((newsp = key_msg2sp(xpl0, PFKEY_EXTLEN(xpl0), &error)) == NULL) {
1828                 return key_senderror(so, m, error);
1829         }
1830
1831         if ((newsp->id = key_getnewspid()) == 0) {
1832                 keydb_delsecpolicy(newsp);
1833                 return key_senderror(so, m, ENOBUFS);
1834         }
1835
1836         /* XXX boundary check against sa_len */
1837         KEY_SETSECSPIDX(xpl0->sadb_x_policy_dir,
1838                         src0 + 1,
1839                         dst0 + 1,
1840                         src0->sadb_address_prefixlen,
1841                         dst0->sadb_address_prefixlen,
1842                         src0->sadb_address_proto,
1843                         &newsp->spidx);
1844
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);
1850         }
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);
1855         }
1856 #if 1
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);
1863                 }
1864         }
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);
1871                 }
1872         }
1873 #endif
1874
1875         microtime(&tv);
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;
1880
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);
1884
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. */
1890                         microtime(&tv);
1891                         spacq->created = tv.tv_sec;
1892                         spacq->count = 0;
1893                 }
1894         }
1895
1896     {
1897         struct mbuf *n, *mpolicy;
1898         struct sadb_msg *newmsg;
1899         int off;
1900
1901         /* create new sadb_msg to reply. */
1902         if (lft) {
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);
1906         } else {
1907                 n = key_gather_mbuf(m, mhp, 2, 4, SADB_EXT_RESERVED,
1908                     SADB_X_EXT_POLICY,
1909                     SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
1910         }
1911         if (!n)
1912                 return key_senderror(so, m, ENOBUFS);
1913
1914         if (n->m_len < sizeof(*newmsg)) {
1915                 n = m_pullup(n, sizeof(*newmsg));
1916                 if (!n)
1917                         return key_senderror(so, m, ENOBUFS);
1918         }
1919         newmsg = mtod(n, struct sadb_msg *);
1920         newmsg->sadb_msg_errno = 0;
1921         newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
1922
1923         off = 0;
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);
1929         }
1930         xpl = (struct sadb_x_policy *)(mtod(mpolicy, caddr_t) + off);
1931         if (xpl->sadb_x_policy_exttype != SADB_X_EXT_POLICY) {
1932                 m_freem(n);
1933                 return key_senderror(so, m, EINVAL);
1934         }
1935         xpl->sadb_x_policy_id = newsp->id;
1936
1937         m_freem(m);
1938         return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
1939     }
1940 }
1941
1942 /*
1943  * get new policy id.
1944  * OUT:
1945  *      0:      failure.
1946  *      others: success.
1947  */
1948 static u_int32_t
1949 key_getnewspid()
1950 {
1951         u_int32_t newid = 0;
1952         int count = key_spi_trycnt;     /* XXX */
1953         struct secpolicy *sp;
1954
1955         /* when requesting to allocate spi ranged */
1956         while (count--) {
1957                 newid = (policy_id = (policy_id == ~0 ? 1 : policy_id + 1));
1958
1959                 if ((sp = key_getspbyid(newid)) == NULL)
1960                         break;
1961
1962                 key_freesp(sp);
1963         }
1964
1965         if (count == 0 || newid == 0) {
1966                 ipseclog((LOG_DEBUG, "key_getnewspid: to allocate policy id is failed.\n"));
1967                 return 0;
1968         }
1969
1970         return newid;
1971 }
1972
1973 /*
1974  * SADB_SPDDELETE processing
1975  * receive
1976  *   <base, address(SD), policy(*)>
1977  * from the user(?), and set SADB_SASTATE_DEAD,
1978  * and send,
1979  *   <base, address(SD), policy(*)>
1980  * to the ikmpd.
1981  * policy(*) including direction of policy.
1982  *
1983  * m will always be freed.
1984  */
1985 static int
1986 key_spddelete(so, m, mhp)
1987         struct socket *so;
1988         struct mbuf *m;
1989         const struct sadb_msghdr *mhp;
1990 {
1991         struct sadb_address *src0, *dst0;
1992         struct sadb_x_policy *xpl0;
1993         struct secpolicyindex spidx;
1994         struct secpolicy *sp;
1995
1996         /* sanity check */
1997         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
1998                 panic("key_spddelete: NULL pointer is passed.\n");
1999
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);
2005         }
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);
2011         }
2012
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];
2016
2017         /* make secindex */
2018         /* XXX boundary check against sa_len */
2019         KEY_SETSECSPIDX(xpl0->sadb_x_policy_dir,
2020                         src0 + 1,
2021                         dst0 + 1,
2022                         src0->sadb_address_prefixlen,
2023                         dst0->sadb_address_prefixlen,
2024                         src0->sadb_address_proto,
2025                         &spidx);
2026
2027         /* checking the direciton. */
2028         switch (xpl0->sadb_x_policy_dir) {
2029         case IPSEC_DIR_INBOUND:
2030         case IPSEC_DIR_OUTBOUND:
2031                 break;
2032         default:
2033                 ipseclog((LOG_DEBUG, "key_spddelete: Invalid SP direction.\n"));
2034                 return key_senderror(so, m, EINVAL);
2035         }
2036
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);
2041         }
2042
2043         /* save policy id to buffer to be returned. */
2044         xpl0->sadb_x_policy_id = sp->id;
2045
2046         sp->state = IPSEC_SPSTATE_DEAD;
2047         key_freesp(sp);
2048
2049     {
2050         struct mbuf *n;
2051         struct sadb_msg *newmsg;
2052
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);
2056         if (!n)
2057                 return key_senderror(so, m, ENOBUFS);
2058
2059         newmsg = mtod(n, struct sadb_msg *);
2060         newmsg->sadb_msg_errno = 0;
2061         newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
2062
2063         m_freem(m);
2064         return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
2065     }
2066 }
2067
2068 /*
2069  * SADB_SPDDELETE2 processing
2070  * receive
2071  *   <base, policy(*)>
2072  * from the user(?), and set SADB_SASTATE_DEAD,
2073  * and send,
2074  *   <base, policy(*)>
2075  * to the ikmpd.
2076  * policy(*) including direction of policy.
2077  *
2078  * m will always be freed.
2079  */
2080 static int
2081 key_spddelete2(so, m, mhp)
2082         struct socket *so;
2083         struct mbuf *m;
2084         const struct sadb_msghdr *mhp;
2085 {
2086         u_int32_t id;
2087         struct secpolicy *sp;
2088
2089         /* sanity check */
2090         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
2091                 panic("key_spddelete2: NULL pointer is passed.\n");
2092
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);
2097                 return 0;
2098         }
2099
2100         id = ((struct sadb_x_policy *)mhp->ext[SADB_X_EXT_POLICY])->sadb_x_policy_id;
2101
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);
2106         }
2107
2108         sp->state = IPSEC_SPSTATE_DEAD;
2109         key_freesp(sp);
2110
2111     {
2112         struct mbuf *n, *nn;
2113         struct sadb_msg *newmsg;
2114         int off, len;
2115
2116         /* create new sadb_msg to reply. */
2117         len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
2118
2119         if (len > MCLBYTES)
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) {
2125                         m_freem(n);
2126                         n = NULL;
2127                 }
2128         }
2129         if (!n)
2130                 return key_senderror(so, m, ENOBUFS);
2131
2132         n->m_len = len;
2133         n->m_next = NULL;
2134         off = 0;
2135
2136         m_copydata(m, 0, sizeof(struct sadb_msg), mtod(n, caddr_t) + off);
2137         off += PFKEY_ALIGN8(sizeof(struct sadb_msg));
2138
2139 #ifdef DIAGNOSTIC
2140         if (off != len)
2141                 panic("length inconsistency in key_spddelete2");
2142 #endif
2143
2144         n->m_next = m_copym(m, mhp->extoff[SADB_X_EXT_POLICY],
2145             mhp->extlen[SADB_X_EXT_POLICY], M_DONTWAIT);
2146         if (!n->m_next) {
2147                 m_freem(n);
2148                 return key_senderror(so, m, ENOBUFS);
2149         }
2150
2151         n->m_pkthdr.len = 0;
2152         for (nn = n; nn; nn = nn->m_next)
2153                 n->m_pkthdr.len += nn->m_len;
2154
2155         newmsg = mtod(n, struct sadb_msg *);
2156         newmsg->sadb_msg_errno = 0;
2157         newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
2158
2159         m_freem(m);
2160         return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
2161     }
2162 }
2163
2164 /*
2165  * SADB_X_GET processing
2166  * receive
2167  *   <base, policy(*)>
2168  * from the user(?),
2169  * and send,
2170  *   <base, address(SD), policy>
2171  * to the ikmpd.
2172  * policy(*) including direction of policy.
2173  *
2174  * m will always be freed.
2175  */
2176 static int
2177 key_spdget(so, m, mhp)
2178         struct socket *so;
2179         struct mbuf *m;
2180         const struct sadb_msghdr *mhp;
2181 {
2182         u_int32_t id;
2183         struct secpolicy *sp;
2184         struct mbuf *n;
2185
2186         /* sanity check */
2187         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
2188                 panic("key_spdget: NULL pointer is passed.\n");
2189
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);
2194         }
2195
2196         id = ((struct sadb_x_policy *)mhp->ext[SADB_X_EXT_POLICY])->sadb_x_policy_id;
2197
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);
2202         }
2203
2204         n = key_setdumpsp(sp, SADB_X_SPDGET, 0, mhp->msg->sadb_msg_pid);
2205         if (n != NULL) {
2206                 m_freem(m);
2207                 return key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
2208         } else
2209                 return key_senderror(so, m, ENOBUFS);
2210 }
2211
2212 /*
2213  * SADB_X_SPDACQUIRE processing.
2214  * Acquire policy and SA(s) for a *OUTBOUND* packet.
2215  * send
2216  *   <base, policy(*)>
2217  * to KMD, and expect to receive
2218  *   <base> with SADB_X_SPDACQUIRE if error occured,
2219  * or
2220  *   <base, policy>
2221  * with SADB_X_SPDUPDATE from KMD by PF_KEY.
2222  * policy(*) is without policy requests.
2223  *
2224  *    0     : succeed
2225  *    others: error number
2226  */
2227 int
2228 key_spdacquire(sp)
2229         struct secpolicy *sp;
2230 {
2231         struct mbuf *result = NULL, *m;
2232         struct secspacq *newspacq;
2233         int error;
2234
2235         /* sanity check */
2236         if (sp == NULL)
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");
2242
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;
2248                 } else {
2249                         /* increment counter and do nothing. */
2250                         newspacq->count++;
2251                         return 0;
2252                 }
2253         } else {
2254                 /* make new entry for blocking to send SADB_ACQUIRE. */
2255                 if ((newspacq = key_newspacq(&sp->spidx)) == NULL)
2256                         return ENOBUFS;
2257
2258                 /* add to acqtree */
2259                 LIST_INSERT_HEAD(&spacqtree, newspacq, chain);
2260         }
2261
2262         /* create new sadb_msg to reply. */
2263         m = key_setsadbmsg(SADB_X_SPDACQUIRE, 0, 0, 0, 0, 0);
2264         if (!m) {
2265                 error = ENOBUFS;
2266                 goto fail;
2267         }
2268         result = m;
2269
2270         result->m_pkthdr.len = 0;
2271         for (m = result; m; m = m->m_next)
2272                 result->m_pkthdr.len += m->m_len;
2273
2274         mtod(result, struct sadb_msg *)->sadb_msg_len =
2275             PFKEY_UNIT64(result->m_pkthdr.len);
2276
2277         return key_sendup_mbuf(NULL, m, KEY_SENDUP_REGISTERED);
2278
2279 fail:
2280         if (result)
2281                 m_freem(result);
2282         return error;
2283 }
2284
2285 /*
2286  * SADB_SPDFLUSH processing
2287  * receive
2288  *   <base>
2289  * from the user, and free all entries in secpctree.
2290  * and send,
2291  *   <base>
2292  * to the user.
2293  * NOTE: what to do is only marking SADB_SASTATE_DEAD.
2294  *
2295  * m will always be freed.
2296  */
2297 static int
2298 key_spdflush(so, m, mhp)
2299         struct socket *so;
2300         struct mbuf *m;
2301         const struct sadb_msghdr *mhp;
2302 {
2303         struct sadb_msg *newmsg;
2304         struct secpolicy *sp;
2305         u_int dir;
2306
2307         /* sanity check */
2308         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
2309                 panic("key_spdflush: NULL pointer is passed.\n");
2310
2311         if (m->m_len != PFKEY_ALIGN8(sizeof(struct sadb_msg)))
2312                 return key_senderror(so, m, EINVAL);
2313
2314         for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
2315                 LIST_FOREACH(sp, &sptree[dir], chain) {
2316                         sp->state = IPSEC_SPSTATE_DEAD;
2317                 }
2318         }
2319
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);
2323         }
2324
2325         if (m->m_next)
2326                 m_freem(m->m_next);
2327         m->m_next = NULL;
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);
2332
2333         return key_sendup_mbuf(so, m, KEY_SENDUP_ALL);
2334 }
2335
2336 /*
2337  * SADB_SPDDUMP processing
2338  * receive
2339  *   <base>
2340  * from the user, and dump all SP leaves
2341  * and send,
2342  *   <base> .....
2343  * to the ikmpd.
2344  *
2345  * m will always be freed.
2346  */
2347 static int
2348 key_spddump(so, m, mhp)
2349         struct socket *so;
2350         struct mbuf *m;
2351         const struct sadb_msghdr *mhp;
2352 {
2353         struct secpolicy *sp;
2354         int cnt;
2355         u_int dir;
2356         struct mbuf *n;
2357
2358         /* sanity check */
2359         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
2360                 panic("key_spddump: NULL pointer is passed.\n");
2361
2362         /* search SPD entry and get buffer size. */
2363         cnt = 0;
2364         for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
2365                 LIST_FOREACH(sp, &sptree[dir], chain) {
2366                         cnt++;
2367                 }
2368         }
2369
2370         if (cnt == 0)
2371                 return key_senderror(so, m, ENOENT);
2372
2373         for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
2374                 LIST_FOREACH(sp, &sptree[dir], chain) {
2375                         --cnt;
2376                         n = key_setdumpsp(sp, SADB_X_SPDDUMP, cnt,
2377                             mhp->msg->sadb_msg_pid);
2378
2379                         if (n)
2380                                 key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
2381                 }
2382         }
2383
2384         m_freem(m);
2385         return 0;
2386 }
2387
2388 static struct mbuf *
2389 key_setdumpsp(sp, type, seq, pid)
2390         struct secpolicy *sp;
2391         u_int8_t type;
2392         u_int32_t seq, pid;
2393 {
2394         struct mbuf *result = NULL, *m;
2395
2396         m = key_setsadbmsg(type, 0, SADB_SATYPE_UNSPEC, seq, pid, sp->refcnt);
2397         if (!m)
2398                 goto fail;
2399         result = m;
2400
2401         m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
2402             (struct sockaddr *)&sp->spidx.src, sp->spidx.prefs,
2403             sp->spidx.ul_proto);
2404         if (!m)
2405                 goto fail;
2406         m_cat(result, m);
2407
2408         m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
2409             (struct sockaddr *)&sp->spidx.dst, sp->spidx.prefd,
2410             sp->spidx.ul_proto);
2411         if (!m)
2412                 goto fail;
2413         m_cat(result, m);
2414
2415         m = key_sp2msg(sp);
2416         if (!m)
2417                 goto fail;
2418         m_cat(result, m);
2419
2420         if ((result->m_flags & M_PKTHDR) == 0)
2421                 goto fail;
2422
2423         if (result->m_len < sizeof(struct sadb_msg)) {
2424                 result = m_pullup(result, sizeof(struct sadb_msg));
2425                 if (result == NULL)
2426                         goto fail;
2427         }
2428
2429         result->m_pkthdr.len = 0;
2430         for (m = result; m; m = m->m_next)
2431                 result->m_pkthdr.len += m->m_len;
2432
2433         mtod(result, struct sadb_msg *)->sadb_msg_len =
2434             PFKEY_UNIT64(result->m_pkthdr.len);
2435
2436         return result;
2437
2438 fail:
2439         m_freem(result);
2440         return NULL;
2441 }
2442
2443 /*
2444  * get PFKEY message length for security policy and request.
2445  */
2446 static u_int
2447 key_getspreqmsglen(sp)
2448         struct secpolicy *sp;
2449 {
2450         u_int tlen;
2451
2452         tlen = sizeof(struct sadb_x_policy);
2453
2454         /* if is the policy for ipsec ? */
2455         if (sp->policy != IPSEC_POLICY_IPSEC)
2456                 return tlen;
2457
2458         /* get length of ipsec requests */
2459     {
2460         struct ipsecrequest *isr;
2461         int len;
2462
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;
2467
2468                 tlen += PFKEY_ALIGN8(len);
2469         }
2470     }
2471
2472         return tlen;
2473 }
2474
2475 /*
2476  * SADB_SPDEXPIRE processing
2477  * send
2478  *   <base, address(SD), lifetime(CH), policy>
2479  * to KMD by PF_KEY.
2480  *
2481  * OUT: 0       : succeed
2482  *      others  : error number
2483  */
2484 static int
2485 key_spdexpire(sp)
2486         struct secpolicy *sp;
2487 {
2488         int s;
2489         struct mbuf *result = NULL, *m;
2490         int len;
2491         int error = -1;
2492         struct sadb_lifetime *lt;
2493
2494         /* XXX: Why do we lock ? */
2495         s = splnet();   /*called from softclock()*/
2496
2497         /* sanity check */
2498         if (sp == NULL)
2499                 panic("key_spdexpire: NULL pointer is passed.\n");
2500
2501         /* set msg header */
2502         m = key_setsadbmsg(SADB_X_SPDEXPIRE, 0, 0, 0, 0, 0);
2503         if (!m) {
2504                 error = ENOBUFS;
2505                 goto fail;
2506         }
2507         result = m;
2508
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*/
2513                 if (m)
2514                         m_freem(m);
2515                 error = ENOBUFS;
2516                 goto fail;
2517         }
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;
2533         m_cat(result, m);
2534
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);
2539         if (!m) {
2540                 error = ENOBUFS;
2541                 goto fail;
2542         }
2543         m_cat(result, m);
2544
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);
2549         if (!m) {
2550                 error = ENOBUFS;
2551                 goto fail;
2552         }
2553         m_cat(result, m);
2554
2555         /* set secpolicy */
2556         m = key_sp2msg(sp);
2557         if (!m) {
2558                 error = ENOBUFS;
2559                 goto fail;
2560         }
2561         m_cat(result, m);
2562
2563         if ((result->m_flags & M_PKTHDR) == 0) {
2564                 error = EINVAL;
2565                 goto fail;
2566         }
2567
2568         if (result->m_len < sizeof(struct sadb_msg)) {
2569                 result = m_pullup(result, sizeof(struct sadb_msg));
2570                 if (result == NULL) {
2571                         error = ENOBUFS;
2572                         goto fail;
2573                 }
2574         }
2575
2576         result->m_pkthdr.len = 0;
2577         for (m = result; m; m = m->m_next)
2578                 result->m_pkthdr.len += m->m_len;
2579
2580         mtod(result, struct sadb_msg *)->sadb_msg_len =
2581             PFKEY_UNIT64(result->m_pkthdr.len);
2582
2583         return key_sendup_mbuf(NULL, result, KEY_SENDUP_REGISTERED);
2584
2585  fail:
2586         if (result)
2587                 m_freem(result);
2588         splx(s);
2589         return error;
2590 }
2591
2592 /* %%% SAD management */
2593 /*
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.
2597  */
2598 static struct secashead *
2599 key_newsah(saidx)
2600         struct secasindex *saidx;
2601 {
2602         struct secashead *newsah;
2603
2604         /* sanity check */
2605         if (saidx == NULL)
2606                 panic("key_newsaidx: NULL pointer is passed.\n");
2607
2608         newsah = keydb_newsecashead();
2609         if (newsah == NULL)
2610                 return NULL;
2611
2612         bcopy(saidx, &newsah->saidx, sizeof(newsah->saidx));
2613
2614         /* add to saidxtree */
2615         newsah->state = SADB_SASTATE_MATURE;
2616         LIST_INSERT_HEAD(&sahtree, newsah, chain);
2617
2618         return(newsah);
2619 }
2620
2621 /*
2622  * delete SA index and all SA registerd.
2623  */
2624 static void
2625 key_delsah(sah)
2626         struct secashead *sah;
2627 {
2628         struct secasvar *sav, *nextsav;
2629         u_int stateidx, state;
2630         int s;
2631         int zombie = 0;
2632
2633         /* sanity check */
2634         if (sah == NULL)
2635                 panic("key_delsah: NULL pointer is passed.\n");
2636
2637         s = splnet();   /*called from softclock()*/
2638
2639         /* searching all SA registerd in the secindex. */
2640         for (stateidx = 0;
2641              stateidx < _ARRAYLEN(saorder_state_any);
2642              stateidx++) {
2643
2644                 state = saorder_state_any[stateidx];
2645                 for (sav = (struct secasvar *)LIST_FIRST(&sah->savtree[state]);
2646                      sav != NULL;
2647                      sav = nextsav) {
2648
2649                         nextsav = LIST_NEXT(sav, chain);
2650
2651                         if (sav->refcnt > 0) {
2652                                 /* give up to delete this sa */
2653                                 zombie++;
2654                                 continue;
2655                         }
2656
2657                         /* sanity check */
2658                         KEY_CHKSASTATE(state, sav->state, "key_delsah");
2659
2660                         key_freesav(sav);
2661
2662                         /* remove back pointer */
2663                         sav->sah = NULL;
2664                         sav = NULL;
2665                 }
2666         }
2667
2668         /* don't delete sah only if there are savs. */
2669         if (zombie) {
2670                 splx(s);
2671                 return;
2672         }
2673
2674         if (sah->sa_route.ro_rt) {
2675                 RTFREE(sah->sa_route.ro_rt);
2676                 sah->sa_route.ro_rt = (struct rtentry *)NULL;
2677         }
2678
2679         /* remove from tree of SA index */
2680         if (__LIST_CHAINED(sah))
2681                 LIST_REMOVE(sah, chain);
2682
2683         KFREE(sah);
2684
2685         splx(s);
2686         return;
2687 }
2688
2689 /*
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().
2696  * OUT: NULL    : fail
2697  *      others  : pointer to new secasvar.
2698  *
2699  * does not modify mbuf.  does not free mbuf on error.
2700  */
2701 static struct secasvar *
2702 key_newsav(m, mhp, sah, errp)
2703         struct mbuf *m;
2704         const struct sadb_msghdr *mhp;
2705         struct secashead *sah;
2706         int *errp;
2707 {
2708         struct secasvar *newsav;
2709         const struct sadb_sa *xsa;
2710
2711         /* sanity check */
2712         if (m == NULL || mhp == NULL || mhp->msg == NULL || sah == NULL)
2713                 panic("key_newsa: NULL pointer is passed.\n");
2714
2715         KMALLOC(newsav, struct secasvar *, sizeof(struct secasvar));
2716         if (newsav == NULL) {
2717                 ipseclog((LOG_DEBUG, "key_newsa: No more memory.\n"));
2718                 *errp = ENOBUFS;
2719                 return NULL;
2720         }
2721         bzero((caddr_t)newsav, sizeof(struct secasvar));
2722
2723         switch (mhp->msg->sadb_msg_type) {
2724         case SADB_GETSPI:
2725                 newsav->spi = 0;
2726
2727 #ifdef IPSEC_DOSEQCHECK
2728                 /* sync sequence number */
2729                 if (mhp->msg->sadb_msg_seq == 0)
2730                         newsav->seq =
2731                                 (acq_seq = (acq_seq == ~0 ? 1 : ++acq_seq));
2732                 else
2733 #endif
2734                         newsav->seq = mhp->msg->sadb_msg_seq;
2735                 break;
2736
2737         case SADB_ADD:
2738                 /* sanity check */
2739                 if (mhp->ext[SADB_EXT_SA] == NULL) {
2740                         KFREE(newsav);
2741                         ipseclog((LOG_DEBUG, "key_newsa: invalid message is passed.\n"));
2742                         *errp = EINVAL;
2743                         return NULL;
2744                 }
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;
2748                 break;
2749         default:
2750                 KFREE(newsav);
2751                 *errp = EINVAL;
2752                 return NULL;
2753         }
2754
2755         /* copy sav values */
2756         if (mhp->msg->sadb_msg_type != SADB_GETSPI) {
2757                 *errp = key_setsaval(newsav, m, mhp);
2758                 if (*errp) {
2759                         KFREE(newsav);
2760                         return NULL;
2761                 }
2762         }
2763
2764         /* reset created */
2765     {
2766         struct timeval tv;
2767         microtime(&tv);
2768         newsav->created = tv.tv_sec;
2769     }
2770
2771         newsav->pid = mhp->msg->sadb_msg_pid;
2772
2773         /* add to satree */
2774         newsav->sah = sah;
2775         newsav->refcnt = 1;
2776         newsav->state = SADB_SASTATE_LARVAL;
2777         LIST_INSERT_TAIL(&sah->savtree[SADB_SASTATE_LARVAL], newsav,
2778                         secasvar, chain);
2779
2780         return newsav;
2781 }
2782
2783 /*
2784  * free() SA variable entry.
2785  */
2786 static void
2787 key_delsav(sav)
2788         struct secasvar *sav;
2789 {
2790         /* sanity check */
2791         if (sav == NULL)
2792                 panic("key_delsav: NULL pointer is passed.\n");
2793
2794         if (sav->refcnt > 0)
2795                 return;         /* can't free */
2796
2797         /* remove from SA header */
2798         if (__LIST_CHAINED(sav))
2799                 LIST_REMOVE(sav, chain);
2800
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;
2805         }
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;
2810         }
2811         if (sav->sched) {
2812                 bzero(sav->sched, sav->schedlen);
2813                 KFREE(sav->sched);
2814                 sav->sched = NULL;
2815         }
2816         if (sav->replay != NULL) {
2817                 keydb_delsecreplay(sav->replay);
2818                 sav->replay = NULL;
2819         }
2820         if (sav->lft_c != NULL) {
2821                 KFREE(sav->lft_c);
2822                 sav->lft_c = NULL;
2823         }
2824         if (sav->lft_h != NULL) {
2825                 KFREE(sav->lft_h);
2826                 sav->lft_h = NULL;
2827         }
2828         if (sav->lft_s != NULL) {
2829                 KFREE(sav->lft_s);
2830                 sav->lft_s = NULL;
2831         }
2832         if (sav->iv != NULL) {
2833                 KFREE(sav->iv);
2834                 sav->iv = NULL;
2835         }
2836
2837         KFREE(sav);
2838
2839         return;
2840 }
2841
2842 /*
2843  * search SAD.
2844  * OUT:
2845  *      NULL    : not found
2846  *      others  : found, pointer to a SA.
2847  */
2848 static struct secashead *
2849 key_getsah(saidx)
2850         struct secasindex *saidx;
2851 {
2852         struct secashead *sah;
2853
2854         LIST_FOREACH(sah, &sahtree, chain) {
2855                 if (sah->state == SADB_SASTATE_DEAD)
2856                         continue;
2857                 if (key_cmpsaidx(&sah->saidx, saidx, CMP_REQID))
2858                         return sah;
2859         }
2860
2861         return NULL;
2862 }
2863
2864 /*
2865  * check not to be duplicated SPI.
2866  * NOTE: this function is too slow due to searching all SAD.
2867  * OUT:
2868  *      NULL    : not found
2869  *      others  : found, pointer to a SA.
2870  */
2871 static struct secasvar *
2872 key_checkspidup(saidx, spi)
2873         struct secasindex *saidx;
2874         u_int32_t spi;
2875 {
2876         struct secashead *sah;
2877         struct secasvar *sav;
2878
2879         /* check address family */
2880         if (saidx->src.ss_family != saidx->dst.ss_family) {
2881                 ipseclog((LOG_DEBUG, "key_checkspidup: address family mismatched.\n"));
2882                 return NULL;
2883         }
2884
2885         /* check all SAD */
2886         LIST_FOREACH(sah, &sahtree, chain) {
2887                 if (!key_ismyaddr((struct sockaddr *)&sah->saidx.dst))
2888                         continue;
2889                 sav = key_getsavbyspi(sah, spi);
2890                 if (sav != NULL)
2891                         return sav;
2892         }
2893
2894         return NULL;
2895 }
2896
2897 /*
2898  * search SAD litmited alive SA, protocol, SPI.
2899  * OUT:
2900  *      NULL    : not found
2901  *      others  : found, pointer to a SA.
2902  */
2903 static struct secasvar *
2904 key_getsavbyspi(sah, spi)
2905         struct secashead *sah;
2906         u_int32_t spi;
2907 {
2908         struct secasvar *sav;
2909         u_int stateidx, state;
2910
2911         /* search all status */
2912         for (stateidx = 0;
2913              stateidx < _ARRAYLEN(saorder_state_alive);
2914              stateidx++) {
2915
2916                 state = saorder_state_alive[stateidx];
2917                 LIST_FOREACH(sav, &sah->savtree[state], chain) {
2918
2919                         /* sanity check */
2920                         if (sav->state != state) {
2921                                 ipseclog((LOG_DEBUG, "key_getsavbyspi: "
2922                                     "invalid sav->state (queue: %d SA: %d)\n",
2923                                     state, sav->state));
2924                                 continue;
2925                         }
2926
2927                         if (sav->spi == spi)
2928                                 return sav;
2929                 }
2930         }
2931
2932         return NULL;
2933 }
2934
2935 /*
2936  * copy SA values from PF_KEY message except *SPI, SEQ, PID, STATE and TYPE*.
2937  * You must update these if need.
2938  * OUT: 0:      success.
2939  *      !0:     failure.
2940  *
2941  * does not modify mbuf.  does not free mbuf on error.
2942  */
2943 static int
2944 key_setsaval(sav, m, mhp)
2945         struct secasvar *sav;
2946         struct mbuf *m;
2947         const struct sadb_msghdr *mhp;
2948 {
2949 #ifdef IPSEC_ESP
2950         const struct esp_algorithm *algo;
2951 #endif
2952         int error = 0;
2953         struct timeval tv;
2954
2955         /* sanity check */
2956         if (m == NULL || mhp == NULL || mhp->msg == NULL)
2957                 panic("key_setsaval: NULL pointer is passed.\n");
2958
2959         /* initialization */
2960         sav->replay = NULL;
2961         sav->key_auth = NULL;
2962         sav->key_enc = NULL;
2963         sav->sched = NULL;
2964         sav->schedlen = 0;
2965         sav->iv = NULL;
2966         sav->lft_c = NULL;
2967         sav->lft_h = NULL;
2968         sav->lft_s = NULL;
2969
2970         /* SA */
2971         if (mhp->ext[SADB_EXT_SA] != NULL) {
2972                 const struct sadb_sa *sa0;
2973
2974                 sa0 = (const struct sadb_sa *)mhp->ext[SADB_EXT_SA];
2975                 if (mhp->extlen[SADB_EXT_SA] < sizeof(*sa0)) {
2976                         error = EINVAL;
2977                         goto fail;
2978                 }
2979
2980                 sav->alg_auth = sa0->sadb_sa_auth;
2981                 sav->alg_enc = sa0->sadb_sa_encrypt;
2982                 sav->flags = sa0->sadb_sa_flags;
2983
2984                 /* replay window */
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"));
2989                                 error = ENOBUFS;
2990                                 goto fail;
2991                         }
2992                 }
2993         }
2994
2995         /* Authentication keys */
2996         if (mhp->ext[SADB_EXT_KEY_AUTH] != NULL) {
2997                 const struct sadb_key *key0;
2998                 int len;
2999
3000                 key0 = (const struct sadb_key *)mhp->ext[SADB_EXT_KEY_AUTH];
3001                 len = mhp->extlen[SADB_EXT_KEY_AUTH];
3002
3003                 error = 0;
3004                 if (len < sizeof(*key0)) {
3005                         error = EINVAL;
3006                         goto fail;
3007                 }
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)
3013                                 error = EINVAL;
3014                         break;
3015                 case SADB_X_SATYPE_IPCOMP:
3016                 default:
3017                         error = EINVAL;
3018                         break;
3019                 }
3020                 if (error) {
3021                         ipseclog((LOG_DEBUG, "key_setsaval: invalid key_auth values.\n"));
3022                         goto fail;
3023                 }
3024
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"));
3028                         error = ENOBUFS;
3029                         goto fail;
3030                 }
3031         }
3032
3033         /* Encryption key */
3034         if (mhp->ext[SADB_EXT_KEY_ENCRYPT] != NULL) {
3035                 const struct sadb_key *key0;
3036                 int len;
3037
3038                 key0 = (const struct sadb_key *)mhp->ext[SADB_EXT_KEY_ENCRYPT];
3039                 len = mhp->extlen[SADB_EXT_KEY_ENCRYPT];
3040
3041                 error = 0;
3042                 if (len < sizeof(*key0)) {
3043                         error = EINVAL;
3044                         goto fail;
3045                 }
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) {
3050                                 error = EINVAL;
3051                                 break;
3052                         }
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"));
3056                                 error = ENOBUFS;
3057                                 goto fail;
3058                         }
3059                         break;
3060                 case SADB_X_SATYPE_IPCOMP:
3061                         if (len != PFKEY_ALIGN8(sizeof(struct sadb_key)))
3062                                 error = EINVAL;
3063                         sav->key_enc = NULL;    /*just in case*/
3064                         break;
3065                 case SADB_SATYPE_AH:
3066                 default:
3067                         error = EINVAL;
3068                         break;
3069                 }
3070                 if (error) {
3071                         ipseclog((LOG_DEBUG, "key_setsatval: invalid key_enc value.\n"));
3072                         goto fail;
3073                 }
3074         }
3075
3076         /* set iv */
3077         sav->ivlen = 0;
3078
3079         switch (mhp->msg->sadb_msg_satype) {
3080         case SADB_SATYPE_ESP:
3081 #ifdef IPSEC_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)
3086                         break;
3087                 KMALLOC(sav->iv, caddr_t, sav->ivlen);
3088                 if (sav->iv == 0) {
3089                         ipseclog((LOG_DEBUG, "key_setsaval: No more memory.\n"));
3090                         error = ENOBUFS;
3091                         goto fail;
3092                 }
3093
3094                 /* initialize */
3095                 key_randomfill(sav->iv, sav->ivlen);
3096 #endif
3097                 break;
3098         case SADB_SATYPE_AH:
3099         case SADB_X_SATYPE_IPCOMP:
3100                 break;
3101         default:
3102                 ipseclog((LOG_DEBUG, "key_setsaval: invalid SA type.\n"));
3103                 error = EINVAL;
3104                 goto fail;
3105         }
3106
3107         /* reset created */
3108         microtime(&tv);
3109         sav->created = tv.tv_sec;
3110
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"));
3116                 error = ENOBUFS;
3117                 goto fail;
3118         }
3119
3120         microtime(&tv);
3121
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;
3129
3130         /* lifetimes for HARD and SOFT */
3131     {
3132         const struct sadb_lifetime *lft0;
3133
3134         lft0 = (struct sadb_lifetime *)mhp->ext[SADB_EXT_LIFETIME_HARD];
3135         if (lft0 != NULL) {
3136                 if (mhp->extlen[SADB_EXT_LIFETIME_HARD] < sizeof(*lft0)) {
3137                         error = EINVAL;
3138                         goto fail;
3139                 }
3140                 sav->lft_h = (struct sadb_lifetime *)key_newbuf(lft0,
3141                     sizeof(*lft0));
3142                 if (sav->lft_h == NULL) {
3143                         ipseclog((LOG_DEBUG, "key_setsaval: No more memory.\n"));
3144                         error = ENOBUFS;
3145                         goto fail;
3146                 }
3147                 /* to be initialize ? */
3148         }
3149
3150         lft0 = (struct sadb_lifetime *)mhp->ext[SADB_EXT_LIFETIME_SOFT];
3151         if (lft0 != NULL) {
3152                 if (mhp->extlen[SADB_EXT_LIFETIME_SOFT] < sizeof(*lft0)) {
3153                         error = EINVAL;
3154                         goto fail;
3155                 }
3156                 sav->lft_s = (struct sadb_lifetime *)key_newbuf(lft0,
3157                     sizeof(*lft0));
3158                 if (sav->lft_s == NULL) {
3159                         ipseclog((LOG_DEBUG, "key_setsaval: No more memory.\n"));
3160                         error = ENOBUFS;
3161                         goto fail;
3162                 }
3163                 /* to be initialize ? */
3164         }
3165     }
3166
3167         return 0;
3168
3169  fail:
3170         /* initialization */
3171         if (sav->replay != NULL) {
3172                 keydb_delsecreplay(sav->replay);
3173                 sav->replay = NULL;
3174         }
3175         if (sav->key_auth != NULL) {
3176                 KFREE(sav->key_auth);
3177                 sav->key_auth = NULL;
3178         }
3179         if (sav->key_enc != NULL) {
3180                 KFREE(sav->key_enc);
3181                 sav->key_enc = NULL;
3182         }
3183         if (sav->sched) {
3184                 KFREE(sav->sched);
3185                 sav->sched = NULL;
3186         }
3187         if (sav->iv != NULL) {
3188                 KFREE(sav->iv);
3189                 sav->iv = NULL;
3190         }
3191         if (sav->lft_c != NULL) {
3192                 KFREE(sav->lft_c);
3193                 sav->lft_c = NULL;
3194         }
3195         if (sav->lft_h != NULL) {
3196                 KFREE(sav->lft_h);
3197                 sav->lft_h = NULL;
3198         }
3199         if (sav->lft_s != NULL) {
3200                 KFREE(sav->lft_s);
3201                 sav->lft_s = NULL;
3202         }
3203
3204         return error;
3205 }
3206
3207 /*
3208  * validation with a secasvar entry, and set SADB_SATYPE_MATURE.
3209  * OUT: 0:      valid
3210  *      other:  errno
3211  */
3212 static int
3213 key_mature(sav)
3214         struct secasvar *sav;
3215 {
3216         int mature;
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 */
3219
3220         mature = 0;
3221
3222         /* check SPI value */
3223         switch (sav->sah->saidx.proto) {
3224         case IPPROTO_ESP:
3225         case IPPROTO_AH:
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)));
3230                         return EINVAL;
3231                 }
3232                 break;
3233         }
3234
3235         /* check satype */
3236         switch (sav->sah->saidx.proto) {
3237         case IPPROTO_ESP:
3238                 /* check flags */
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"));
3243                         return EINVAL;
3244                 }
3245                 if (sav->alg_auth == SADB_AALG_NONE)
3246                         checkmask = 1;
3247                 else
3248                         checkmask = 3;
3249                 mustmask = 1;
3250                 break;
3251         case IPPROTO_AH:
3252                 /* check flags */
3253                 if (sav->flags & SADB_X_EXT_DERIV) {
3254                         ipseclog((LOG_DEBUG, "key_mature: "
3255                             "invalid flag (derived) given to AH SA.\n"));
3256                         return EINVAL;
3257                 }
3258                 if (sav->alg_enc != SADB_EALG_NONE) {
3259                         ipseclog((LOG_DEBUG, "key_mature: "
3260                             "protocol and algorithm mismated.\n"));
3261                         return(EINVAL);
3262                 }
3263                 checkmask = 2;
3264                 mustmask = 2;
3265                 break;
3266         case IPPROTO_IPCOMP:
3267                 if (sav->alg_auth != SADB_AALG_NONE) {
3268                         ipseclog((LOG_DEBUG, "key_mature: "
3269                                 "protocol and algorithm mismated.\n"));
3270                         return(EINVAL);
3271                 }
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"));
3275                         return(EINVAL);
3276                 }
3277                 checkmask = 4;
3278                 mustmask = 4;
3279                 break;
3280         default:
3281                 ipseclog((LOG_DEBUG, "key_mature: Invalid satype.\n"));
3282                 return EPROTONOSUPPORT;
3283         }
3284
3285         /* check authentication algorithm */
3286         if ((checkmask & 2) != 0) {
3287                 const struct ah_algorithm *algo;
3288                 int keylen;
3289
3290                 algo = ah_algorithm_lookup(sav->alg_auth);
3291                 if (!algo) {
3292                         ipseclog((LOG_DEBUG,"key_mature: "
3293                             "unknown authentication algorithm.\n"));
3294                         return EINVAL;
3295                 }
3296
3297                 /* algorithm-dependent check */
3298                 if (sav->key_auth)
3299                         keylen = sav->key_auth->sadb_key_bits;
3300                 else
3301                         keylen = 0;
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));
3307                         return EINVAL;
3308                 }
3309
3310                 if (algo->mature) {
3311                         if ((*algo->mature)(sav)) {
3312                                 /* message generated in per-algorithm function*/
3313                                 return EINVAL;
3314                         } else
3315                                 mature = SADB_SATYPE_AH;
3316                 }
3317
3318                 if ((mustmask & 2) != 0 &&  mature != SADB_SATYPE_AH) {
3319                         ipseclog((LOG_DEBUG, "key_mature: no satisfy algorithm for AH\n"));
3320                         return EINVAL;
3321                 }
3322         }
3323
3324         /* check encryption algorithm */
3325         if ((checkmask & 1) != 0) {
3326 #ifdef IPSEC_ESP
3327                 const struct esp_algorithm *algo;
3328                 int keylen;
3329
3330                 algo = esp_algorithm_lookup(sav->alg_enc);
3331                 if (!algo) {
3332                         ipseclog((LOG_DEBUG, "key_mature: unknown encryption algorithm.\n"));
3333                         return EINVAL;
3334                 }
3335
3336                 /* algorithm-dependent check */
3337                 if (sav->key_enc)
3338                         keylen = sav->key_enc->sadb_key_bits;
3339                 else
3340                         keylen = 0;
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));
3346                         return EINVAL;
3347                 }
3348
3349                 if (algo->mature) {
3350                         if ((*algo->mature)(sav)) {
3351                                 /* message generated in per-algorithm function*/
3352                                 return EINVAL;
3353                         } else
3354                                 mature = SADB_SATYPE_ESP;
3355                 }
3356
3357                 if ((mustmask & 1) != 0 &&  mature != SADB_SATYPE_ESP) {
3358                         ipseclog((LOG_DEBUG, "key_mature: no satisfy algorithm for ESP\n"));
3359                         return EINVAL;
3360                 }
3361 #else /*IPSEC_ESP*/
3362                 ipseclog((LOG_DEBUG, "key_mature: ESP not supported in this configuration\n"));
3363                 return EINVAL;
3364 #endif
3365         }
3366
3367         /* check compression algorithm */
3368         if ((checkmask & 4) != 0) {
3369                 const struct ipcomp_algorithm *algo;
3370
3371                 /* algorithm-dependent check */
3372                 algo = ipcomp_algorithm_lookup(sav->alg_enc);
3373                 if (!algo) {
3374                         ipseclog((LOG_DEBUG, "key_mature: unknown compression algorithm.\n"));
3375                         return EINVAL;
3376                 }
3377         }
3378
3379         key_sa_chgstate(sav, SADB_SASTATE_MATURE);
3380
3381         return 0;
3382 }
3383
3384 /*
3385  * subroutine for SADB_GET and SADB_DUMP.
3386  */
3387 static struct mbuf *
3388 key_setdumpsa(sav, type, satype, seq, pid)
3389         struct secasvar *sav;
3390         u_int8_t type, satype;
3391         u_int32_t seq, pid;
3392 {
3393         struct mbuf *result = NULL, *tres = NULL, *m;
3394         int l = 0;
3395         int i;
3396         void *p;
3397         int dumporder[] = {
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,
3404         };
3405
3406         m = key_setsadbmsg(type, 0, satype, seq, pid, sav->refcnt);
3407         if (m == NULL)
3408                 goto fail;
3409         result = m;
3410
3411         for (i = sizeof(dumporder)/sizeof(dumporder[0]) - 1; i >= 0; i--) {
3412                 m = NULL;
3413                 p = NULL;
3414                 switch (dumporder[i]) {
3415                 case SADB_EXT_SA:
3416                         m = key_setsadbsa(sav);
3417                         if (!m)
3418                                 goto fail;
3419                         break;
3420
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);
3425                         if (!m)
3426                                 goto fail;
3427                         break;
3428
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);
3433                         if (!m)
3434                                 goto fail;
3435                         break;
3436
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);
3441                         if (!m)
3442                                 goto fail;
3443                         break;
3444
3445                 case SADB_EXT_KEY_AUTH:
3446                         if (!sav->key_auth)
3447                                 continue;
3448                         l = PFKEY_UNUNIT64(sav->key_auth->sadb_key_len);
3449                         p = sav->key_auth;
3450                         break;
3451
3452                 case SADB_EXT_KEY_ENCRYPT:
3453                         if (!sav->key_enc)
3454                                 continue;
3455                         l = PFKEY_UNUNIT64(sav->key_enc->sadb_key_len);
3456                         p = sav->key_enc;
3457                         break;
3458
3459                 case SADB_EXT_LIFETIME_CURRENT:
3460                         if (!sav->lft_c)
3461                                 continue;
3462                         l = PFKEY_UNUNIT64(((struct sadb_ext *)sav->lft_c)->sadb_ext_len);
3463                         p = sav->lft_c;
3464                         break;
3465
3466                 case SADB_EXT_LIFETIME_HARD:
3467                         if (!sav->lft_h)
3468                                 continue;
3469                         l = PFKEY_UNUNIT64(((struct sadb_ext *)sav->lft_h)->sadb_ext_len);
3470                         p = sav->lft_h;
3471                         break;
3472
3473                 case SADB_EXT_LIFETIME_SOFT:
3474                         if (!sav->lft_s)
3475                                 continue;
3476                         l = PFKEY_UNUNIT64(((struct sadb_ext *)sav->lft_s)->sadb_ext_len);
3477                         p = sav->lft_s;
3478                         break;
3479
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:
3485                 default:
3486                         continue;
3487                 }
3488
3489                 if ((!m && !p) || (m && p))
3490                         goto fail;
3491                 if (p && tres) {
3492                         M_PREPEND(tres, l, M_DONTWAIT);
3493                         if (!tres)
3494                                 goto fail;
3495                         bcopy(p, mtod(tres, caddr_t), l);
3496                         continue;
3497                 }
3498                 if (p) {
3499                         m = key_alloc_mbuf(l);
3500                         if (!m)
3501                                 goto fail;
3502                         m_copyback(m, 0, l, p);
3503                 }
3504
3505                 if (tres)
3506                         m_cat(m, tres);
3507                 tres = m;
3508         }
3509
3510         m_cat(result, tres);
3511
3512         if (result->m_len < sizeof(struct sadb_msg)) {
3513                 result = m_pullup(result, sizeof(struct sadb_msg));
3514                 if (result == NULL)
3515                         goto fail;
3516         }
3517
3518         result->m_pkthdr.len = 0;
3519         for (m = result; m; m = m->m_next)
3520                 result->m_pkthdr.len += m->m_len;
3521
3522         mtod(result, struct sadb_msg *)->sadb_msg_len =
3523             PFKEY_UNIT64(result->m_pkthdr.len);
3524
3525         return result;
3526
3527 fail:
3528         m_freem(result);
3529         m_freem(tres);
3530         return NULL;
3531 }
3532
3533 /*
3534  * set data into sadb_msg.
3535  */
3536 static struct mbuf *
3537 key_setsadbmsg(type, tlen, satype, seq, pid, reserved)
3538         u_int8_t type, satype;
3539         u_int16_t tlen;
3540         u_int32_t seq;
3541         pid_t pid;
3542         u_int16_t reserved;
3543 {
3544         struct mbuf *m;
3545         struct sadb_msg *p;
3546         int len;
3547
3548         len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
3549         if (len > MCLBYTES)
3550                 return NULL;
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) {
3555                         m_freem(m);
3556                         m = NULL;
3557                 }
3558         }
3559         if (!m)
3560                 return NULL;
3561         m->m_pkthdr.len = m->m_len = len;
3562         m->m_next = NULL;
3563
3564         p = mtod(m, struct sadb_msg *);
3565
3566         bzero(p, len);
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;
3575
3576         return m;
3577 }
3578
3579 /*
3580  * copy secasvar data into sadb_address.
3581  */
3582 static struct mbuf *
3583 key_setsadbsa(sav)
3584         struct secasvar *sav;
3585 {
3586         struct mbuf *m;
3587         struct sadb_sa *p;
3588         int len;
3589
3590         len = PFKEY_ALIGN8(sizeof(struct sadb_sa));
3591         m = key_alloc_mbuf(len);
3592         if (!m || m->m_next) {  /*XXX*/
3593                 if (m)
3594                         m_freem(m);
3595                 return NULL;
3596         }
3597
3598         p = mtod(m, struct sadb_sa *);
3599
3600         bzero(p, len);
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;
3609
3610         return m;
3611 }
3612
3613 /*
3614  * set data into sadb_address.
3615  */
3616 static struct mbuf *
3617 key_setsadbaddr(exttype, saddr, prefixlen, ul_proto)
3618         u_int16_t exttype;
3619         struct sockaddr *saddr;
3620         u_int8_t prefixlen;
3621         u_int16_t ul_proto;
3622 {
3623         struct mbuf *m;
3624         struct sadb_address *p;
3625         size_t len;
3626
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*/
3631                 if (m)
3632                         m_freem(m);
3633                 return NULL;
3634         }
3635
3636         p = mtod(m, struct sadb_address *);
3637
3638         bzero(p, len);
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) {
3644                 case AF_INET:
3645                         prefixlen = sizeof(struct in_addr) << 3;
3646                         break;
3647                 case AF_INET6:
3648                         prefixlen = sizeof(struct in6_addr) << 3;
3649                         break;
3650                 default:
3651                         ; /*XXX*/
3652                 }
3653         }
3654         p->sadb_address_prefixlen = prefixlen;
3655         p->sadb_address_reserved = 0;
3656
3657         bcopy(saddr,
3658             mtod(m, caddr_t) + PFKEY_ALIGN8(sizeof(struct sadb_address)),
3659             saddr->sa_len);
3660
3661         return m;
3662 }
3663
3664 #if 0
3665 /*
3666  * set data into sadb_ident.
3667  */
3668 static struct mbuf *
3669 key_setsadbident(exttype, idtype, string, stringlen, id)
3670         u_int16_t exttype, idtype;
3671         caddr_t string;
3672         int stringlen;
3673         u_int64_t id;
3674 {
3675         struct mbuf *m;
3676         struct sadb_ident *p;
3677         size_t len;
3678
3679         len = PFKEY_ALIGN8(sizeof(struct sadb_ident)) + PFKEY_ALIGN8(stringlen);
3680         m = key_alloc_mbuf(len);
3681         if (!m || m->m_next) {  /*XXX*/
3682                 if (m)
3683                         m_freem(m);
3684                 return NULL;
3685         }
3686
3687         p = mtod(m, struct sadb_ident *);
3688
3689         bzero(p, len);
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;
3695
3696         bcopy(string,
3697             mtod(m, caddr_t) + PFKEY_ALIGN8(sizeof(struct sadb_ident)),
3698             stringlen);
3699
3700         return m;
3701 }
3702 #endif
3703
3704 /*
3705  * set data into sadb_x_sa2.
3706  */
3707 static struct mbuf *
3708 key_setsadbxsa2(mode, seq, reqid)
3709         u_int8_t mode;
3710         u_int32_t seq, reqid;
3711 {
3712         struct mbuf *m;
3713         struct sadb_x_sa2 *p;
3714         size_t len;
3715
3716         len = PFKEY_ALIGN8(sizeof(struct sadb_x_sa2));
3717         m = key_alloc_mbuf(len);
3718         if (!m || m->m_next) {  /*XXX*/
3719                 if (m)
3720                         m_freem(m);
3721                 return NULL;
3722         }
3723
3724         p = mtod(m, struct sadb_x_sa2 *);
3725
3726         bzero(p, len);
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;
3734
3735         return m;
3736 }
3737
3738 /*
3739  * set data into sadb_x_policy
3740  */
3741 static struct mbuf *
3742 key_setsadbxpolicy(type, dir, id)
3743         u_int16_t type;
3744         u_int8_t dir;
3745         u_int32_t id;
3746 {
3747         struct mbuf *m;
3748         struct sadb_x_policy *p;
3749         size_t len;
3750
3751         len = PFKEY_ALIGN8(sizeof(struct sadb_x_policy));
3752         m = key_alloc_mbuf(len);
3753         if (!m || m->m_next) {  /*XXX*/
3754                 if (m)
3755                         m_freem(m);
3756                 return NULL;
3757         }
3758
3759         p = mtod(m, struct sadb_x_policy *);
3760
3761         bzero(p, len);
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;
3767
3768         return m;
3769 }
3770
3771 /* %%% utilities */
3772 /*
3773  * copy a buffer into the new buffer allocated.
3774  */
3775 static void *
3776 key_newbuf(src, len)
3777         const void *src;
3778         u_int len;
3779 {
3780         caddr_t new;
3781
3782         KMALLOC(new, caddr_t, len);
3783         if (new == NULL) {
3784                 ipseclog((LOG_DEBUG, "key_newbuf: No more memory.\n"));
3785                 return NULL;
3786         }
3787         bcopy(src, new, len);
3788
3789         return new;
3790 }
3791
3792 /* compare my own address
3793  * OUT: 1: true, i.e. my address.
3794  *      0: false
3795  */
3796 int
3797 key_ismyaddr(sa)
3798         struct sockaddr *sa;
3799 {
3800 #ifdef INET
3801         struct sockaddr_in *sin;
3802         struct in_ifaddr *ia;
3803 #endif
3804
3805         /* sanity check */
3806         if (sa == NULL)
3807                 panic("key_ismyaddr: NULL pointer is passed.\n");
3808
3809         switch (sa->sa_family) {
3810 #ifdef INET
3811         case AF_INET:
3812                 sin = (struct sockaddr_in *)sa;
3813                 for (ia = in_ifaddrhead.tqh_first; ia;
3814                      ia = ia->ia_link.tqe_next)
3815                 {
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)
3819                         {
3820                                 return 1;
3821                         }
3822                 }
3823                 break;
3824 #endif
3825 #ifdef INET6
3826         case AF_INET6:
3827                 return key_ismyaddr6((struct sockaddr_in6 *)sa);
3828 #endif
3829         }
3830
3831         return 0;
3832 }
3833
3834 #ifdef INET6
3835 /*
3836  * compare my own address for IPv6.
3837  * 1: ours
3838  * 0: other
3839  * NOTE: derived ip6_input() in KAME. This is necessary to modify more.
3840  */
3841 #include <netinet6/in6_var.h>
3842
3843 static int
3844 key_ismyaddr6(sin6)
3845         struct sockaddr_in6 *sin6;
3846 {
3847         struct in6_ifaddr *ia;
3848         struct in6_multi *in6m;
3849
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)
3853                         return 1;
3854
3855                 /*
3856                  * XXX Multicast
3857                  * XXX why do we care about multlicast here while we don't care
3858                  * about IPv4 multicast??
3859                  * XXX scope
3860                  */
3861                 in6m = NULL;
3862                 IN6_LOOKUP_MULTI(sin6->sin6_addr, ia->ia_ifp, in6m);
3863                 if (in6m)
3864                         return 1;
3865         }
3866
3867         /* loopback, just for safety */
3868         if (IN6_IS_ADDR_LOOPBACK(&sin6->sin6_addr))
3869                 return 1;
3870
3871         return 0;
3872 }
3873 #endif /*INET6*/
3874
3875 /*
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.
3880  * IN:  
3881  *      saidx0: source, it can be in SAD.
3882  *      saidx1: object.
3883  * OUT: 
3884  *      1 : equal
3885  *      0 : not equal
3886  */
3887 static int
3888 key_cmpsaidx(saidx0, saidx1, flag)
3889         struct secasindex *saidx0, *saidx1;
3890         int flag;
3891 {
3892         /* sanity */
3893         if (saidx0 == NULL && saidx1 == NULL)
3894                 return 1;
3895
3896         if (saidx0 == NULL || saidx1 == NULL)
3897                 return 0;
3898
3899         if (saidx0->proto != saidx1->proto)
3900                 return 0;
3901
3902         if (flag == CMP_EXACTLY) {
3903                 if (saidx0->mode != saidx1->mode)
3904                         return 0;
3905                 if (saidx0->reqid != saidx1->reqid)
3906                         return 0;
3907                 if (bcmp(&saidx0->src, &saidx1->src, saidx0->src.ss_len) != 0 ||
3908                     bcmp(&saidx0->dst, &saidx1->dst, saidx0->dst.ss_len) != 0)
3909                         return 0;
3910         } else {
3911
3912                 /* CMP_MODE_REQID, CMP_REQID, CMP_HEAD */
3913                 if (flag == CMP_MODE_REQID
3914                   ||flag == CMP_REQID) {
3915                         /*
3916                          * If reqid of SPD is non-zero, unique SA is required.
3917                          * The result must be of same reqid in this case.
3918                          */
3919                         if (saidx1->reqid != 0 && saidx0->reqid != saidx1->reqid)
3920                                 return 0;
3921                 }
3922
3923                 if (flag == CMP_MODE_REQID) {
3924                         if (saidx0->mode != IPSEC_MODE_ANY
3925                          && saidx0->mode != saidx1->mode)
3926                                 return 0;
3927                 }
3928
3929                 if (key_sockaddrcmp((struct sockaddr *)&saidx0->src,
3930                                 (struct sockaddr *)&saidx1->src, 0) != 0) {
3931                         return 0;
3932                 }
3933                 if (key_sockaddrcmp((struct sockaddr *)&saidx0->dst,
3934                                 (struct sockaddr *)&saidx1->dst, 0) != 0) {
3935                         return 0;
3936                 }
3937         }
3938
3939         return 1;
3940 }
3941
3942 /*
3943  * compare two secindex structure exactly.
3944  * IN:
3945  *      spidx0: source, it is often in SPD.
3946  *      spidx1: object, it is often from PFKEY message.
3947  * OUT:
3948  *      1 : equal
3949  *      0 : not equal
3950  */
3951 static int
3952 key_cmpspidx_exactly(spidx0, spidx1)
3953         struct secpolicyindex *spidx0, *spidx1;
3954 {
3955         /* sanity */
3956         if (spidx0 == NULL && spidx1 == NULL)
3957                 return 1;
3958
3959         if (spidx0 == NULL || spidx1 == NULL)
3960                 return 0;
3961
3962         if (spidx0->prefs != spidx1->prefs
3963          || spidx0->prefd != spidx1->prefd
3964          || spidx0->ul_proto != spidx1->ul_proto)
3965                 return 0;
3966
3967         if (key_sockaddrcmp((struct sockaddr *)&spidx0->src,
3968             (struct sockaddr *)&spidx1->src, 1) != 0) {
3969                 return 0;
3970         }
3971         if (key_sockaddrcmp((struct sockaddr *)&spidx0->dst,
3972             (struct sockaddr *)&spidx1->dst, 1) != 0) {
3973                 return 0;
3974         }
3975
3976         return 1;
3977 }
3978
3979 /*
3980  * compare two secindex structure with mask.
3981  * IN:
3982  *      spidx0: source, it is often in SPD.
3983  *      spidx1: object, it is often from IP header.
3984  * OUT:
3985  *      1 : equal
3986  *      0 : not equal
3987  */
3988 static int
3989 key_cmpspidx_withmask(spidx0, spidx1)
3990         struct secpolicyindex *spidx0, *spidx1;
3991 {
3992         /* sanity */
3993         if (spidx0 == NULL && spidx1 == NULL)
3994                 return 1;
3995
3996         if (spidx0 == NULL || spidx1 == NULL)
3997                 return 0;
3998
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)
4003                 return 0;
4004
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)
4008                 return 0;
4009
4010         switch (spidx0->src.ss_family) {
4011         case AF_INET:
4012                 if (satosin(&spidx0->src)->sin_port != IPSEC_PORT_ANY
4013                  && satosin(&spidx0->src)->sin_port !=
4014                     satosin(&spidx1->src)->sin_port)
4015                         return 0;
4016                 if (!key_bbcmp((caddr_t)&satosin(&spidx0->src)->sin_addr,
4017                     (caddr_t)&satosin(&spidx1->src)->sin_addr, spidx0->prefs))
4018                         return 0;
4019                 break;
4020         case AF_INET6:
4021                 if (satosin6(&spidx0->src)->sin6_port != IPSEC_PORT_ANY
4022                  && satosin6(&spidx0->src)->sin6_port !=
4023                     satosin6(&spidx1->src)->sin6_port)
4024                         return 0;
4025                 /*
4026                  * scope_id check. if sin6_scope_id is 0, we regard it
4027                  * as a wildcard scope, which matches any scope zone ID. 
4028                  */
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)
4033                         return 0;
4034                 if (!key_bbcmp((caddr_t)&satosin6(&spidx0->src)->sin6_addr,
4035                     (caddr_t)&satosin6(&spidx1->src)->sin6_addr, spidx0->prefs))
4036                         return 0;
4037                 break;
4038         default:
4039                 /* XXX */
4040                 if (bcmp(&spidx0->src, &spidx1->src, spidx0->src.ss_len) != 0)
4041                         return 0;
4042                 break;
4043         }
4044
4045         switch (spidx0->dst.ss_family) {
4046         case AF_INET:
4047                 if (satosin(&spidx0->dst)->sin_port != IPSEC_PORT_ANY
4048                  && satosin(&spidx0->dst)->sin_port !=
4049                     satosin(&spidx1->dst)->sin_port)
4050                         return 0;
4051                 if (!key_bbcmp((caddr_t)&satosin(&spidx0->dst)->sin_addr,
4052                     (caddr_t)&satosin(&spidx1->dst)->sin_addr, spidx0->prefd))
4053                         return 0;
4054                 break;
4055         case AF_INET6:
4056                 if (satosin6(&spidx0->dst)->sin6_port != IPSEC_PORT_ANY
4057                  && satosin6(&spidx0->dst)->sin6_port !=
4058                     satosin6(&spidx1->dst)->sin6_port)
4059                         return 0;
4060                 /*
4061                  * scope_id check. if sin6_scope_id is 0, we regard it
4062                  * as a wildcard scope, which matches any scope zone ID. 
4063                  */
4064                 if (satosin6(&spidx0->src)->sin6_scope_id &&
4065                     satosin6(&spidx1->src)->sin6_scope_id &&
4066                     satosin6(&spidx0->dst)->sin6_scope_id !=
4067                     satosin6(&spidx1->dst)->sin6_scope_id)
4068                         return 0;
4069                 if (!key_bbcmp((caddr_t)&satosin6(&spidx0->dst)->sin6_addr,
4070                     (caddr_t)&satosin6(&spidx1->dst)->sin6_addr, spidx0->prefd))
4071                         return 0;
4072                 break;
4073         default:
4074                 /* XXX */
4075                 if (bcmp(&spidx0->dst, &spidx1->dst, spidx0->dst.ss_len) != 0)
4076                         return 0;
4077                 break;
4078         }
4079
4080         /* XXX Do we check other field ?  e.g. flowinfo */
4081
4082         return 1;
4083 }
4084
4085 /* returns 0 on match */
4086 static int
4087 key_sockaddrcmp(sa1, sa2, port)
4088         struct sockaddr *sa1;
4089         struct sockaddr *sa2;
4090         int port;
4091 {
4092         if (sa1->sa_family != sa2->sa_family || sa1->sa_len != sa2->sa_len)
4093                 return 1;
4094
4095         switch (sa1->sa_family) {
4096         case AF_INET:
4097                 if (sa1->sa_len != sizeof(struct sockaddr_in))
4098                         return 1;
4099                 if (satosin(sa1)->sin_addr.s_addr !=
4100                     satosin(sa2)->sin_addr.s_addr) {
4101                         return 1;
4102                 }
4103                 if (port && satosin(sa1)->sin_port != satosin(sa2)->sin_port)
4104                         return 1;
4105                 break;
4106         case AF_INET6:
4107                 if (sa1->sa_len != sizeof(struct sockaddr_in6))
4108                         return 1;       /*EINVAL*/
4109                 if (satosin6(sa1)->sin6_scope_id !=
4110                     satosin6(sa2)->sin6_scope_id) {
4111                         return 1;
4112                 }
4113                 if (!IN6_ARE_ADDR_EQUAL(&satosin6(sa1)->sin6_addr,
4114                     &satosin6(sa2)->sin6_addr)) {
4115                         return 1;
4116                 }
4117                 if (port &&
4118                     satosin6(sa1)->sin6_port != satosin6(sa2)->sin6_port) {
4119                         return 1;
4120                 }
4121         default:
4122                 if (bcmp(sa1, sa2, sa1->sa_len) != 0)
4123                         return 1;
4124                 break;
4125         }
4126
4127         return 0;
4128 }
4129
4130 /*
4131  * compare two buffers with mask.
4132  * IN:
4133  *      addr1: source
4134  *      addr2: object
4135  *      bits:  Number of bits to compare
4136  * OUT:
4137  *      1 : equal
4138  *      0 : not equal
4139  */
4140 static int
4141 key_bbcmp(p1, p2, bits)
4142         caddr_t p1, p2;
4143         u_int bits;
4144 {
4145         u_int8_t mask;
4146
4147         /* XXX: This could be considerably faster if we compare a word
4148          * at a time, but it is complicated on LSB Endian machines */
4149
4150         /* Handle null pointers */
4151         if (p1 == NULL || p2 == NULL)
4152                 return (p1 == p2);
4153
4154         while (bits >= 8) {
4155                 if (*p1++ != *p2++)
4156                         return 0;
4157                 bits -= 8;
4158         }
4159
4160         if (bits > 0) {
4161                 mask = ~((1<<(8-bits))-1);
4162                 if ((*p1 & mask) != (*p2 & mask))
4163                         return 0;
4164         }
4165         return 1;       /* Match! */
4166 }
4167
4168 /*
4169  * time handler.
4170  * scanning SPD and SAD to check status for each entries,
4171  * and do to remove or to expire.
4172  * XXX: year 2038 problem may remain.
4173  */
4174 void
4175 key_timehandler(void)
4176 {
4177         u_int dir;
4178         int s;
4179         struct timeval tv;
4180
4181         microtime(&tv);
4182
4183         s = splnet();   /*called from softclock()*/
4184
4185         /* SPD */
4186     {
4187         struct secpolicy *sp, *nextsp;
4188
4189         for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
4190                 for (sp = LIST_FIRST(&sptree[dir]);
4191                      sp != NULL;
4192                      sp = nextsp) {
4193
4194                         nextsp = LIST_NEXT(sp, chain);
4195
4196                         if (sp->state == IPSEC_SPSTATE_DEAD) {
4197                                 key_freesp(sp);
4198                                 continue;
4199                         }
4200
4201                         if (sp->lifetime == 0 && sp->validtime == 0)
4202                                 continue;
4203
4204                         /* the deletion will occur next time */
4205                         if ((sp->lifetime
4206                           && tv.tv_sec - sp->created > sp->lifetime)
4207                          || (sp->validtime
4208                           && tv.tv_sec - sp->lastused > sp->validtime)) {
4209                                 sp->state = IPSEC_SPSTATE_DEAD;
4210                                 key_spdexpire(sp);
4211                                 continue;
4212                         }
4213                 }
4214         }
4215     }
4216
4217         /* SAD */
4218     {
4219         struct secashead *sah, *nextsah;
4220         struct secasvar *sav, *nextsav;
4221
4222         for (sah = LIST_FIRST(&sahtree);
4223              sah != NULL;
4224              sah = nextsah) {
4225
4226                 nextsah = LIST_NEXT(sah, chain);
4227
4228                 /* if sah has been dead, then delete it and process next sah. */
4229                 if (sah->state == SADB_SASTATE_DEAD) {
4230                         key_delsah(sah);
4231                         continue;
4232                 }
4233
4234                 /* if LARVAL entry doesn't become MATURE, delete it. */
4235                 for (sav = LIST_FIRST(&sah->savtree[SADB_SASTATE_LARVAL]);
4236                      sav != NULL;
4237                      sav = nextsav) {
4238
4239                         nextsav = LIST_NEXT(sav, chain);
4240
4241                         if (tv.tv_sec - sav->created > key_larval_lifetime) {
4242                                 key_freesav(sav);
4243                         }
4244                 }
4245
4246                 /*
4247                  * check MATURE entry to start to send expire message
4248                  * whether or not.
4249                  */
4250                 for (sav = LIST_FIRST(&sah->savtree[SADB_SASTATE_MATURE]);
4251                      sav != NULL;
4252                      sav = nextsav) {
4253
4254                         nextsav = LIST_NEXT(sav, chain);
4255
4256                         /* we don't need to check. */
4257                         if (sav->lft_s == NULL)
4258                                 continue;
4259
4260                         /* sanity check */
4261                         if (sav->lft_c == NULL) {
4262                                 ipseclog((LOG_DEBUG,"key_timehandler: "
4263                                         "There is no CURRENT time, why?\n"));
4264                                 continue;
4265                         }
4266
4267                         /* check SOFT lifetime */
4268                         if (sav->lft_s->sadb_lifetime_addtime != 0
4269                          && tv.tv_sec - sav->created > sav->lft_s->sadb_lifetime_addtime) {
4270                                 /*
4271                                  * check the SA if it has been used.
4272                                  * when it hasn't been used, delete it.
4273                                  * i don't think such SA will be used.
4274                                  */
4275                                 if (sav->lft_c->sadb_lifetime_usetime == 0) {
4276                                         key_sa_chgstate(sav, SADB_SASTATE_DEAD);
4277                                         key_freesav(sav);
4278                                         sav = NULL;
4279                                 } else {
4280                                         key_sa_chgstate(sav, SADB_SASTATE_DYING);
4281                                         /*
4282                                          * XXX If we keep to send expire
4283                                          * message in the status of
4284                                          * DYING. Do remove below code.
4285                                          */
4286                                         key_expire(sav);
4287                                 }
4288                         }
4289
4290                         /* check SOFT lifetime by bytes */
4291                         /*
4292                          * XXX I don't know the way to delete this SA
4293                          * when new SA is installed.  Caution when it's
4294                          * installed too big lifetime by time.
4295                          */
4296                         else if (sav->lft_s->sadb_lifetime_bytes != 0
4297                               && sav->lft_s->sadb_lifetime_bytes < sav->lft_c->sadb_lifetime_bytes) {
4298
4299                                 key_sa_chgstate(sav, SADB_SASTATE_DYING);
4300                                 /*
4301                                  * XXX If we keep to send expire
4302                                  * message in the status of
4303                                  * DYING. Do remove below code.
4304                                  */
4305                                 key_expire(sav);
4306                         }
4307                 }
4308
4309                 /* check DYING entry to change status to DEAD. */
4310                 for (sav = LIST_FIRST(&sah->savtree[SADB_SASTATE_DYING]);
4311                      sav != NULL;
4312                      sav = nextsav) {
4313
4314                         nextsav = LIST_NEXT(sav, chain);
4315
4316                         /* we don't need to check. */
4317                         if (sav->lft_h == NULL)
4318                                 continue;
4319
4320                         /* sanity check */
4321                         if (sav->lft_c == NULL) {
4322                                 ipseclog((LOG_DEBUG, "key_timehandler: "
4323                                         "There is no CURRENT time, why?\n"));
4324                                 continue;
4325                         }
4326
4327                         if (sav->lft_h->sadb_lifetime_addtime != 0
4328                          && tv.tv_sec - sav->created > sav->lft_h->sadb_lifetime_addtime) {
4329                                 key_sa_chgstate(sav, SADB_SASTATE_DEAD);
4330                                 key_freesav(sav);
4331                                 sav = NULL;
4332                         }
4333 #if 0   /* XXX Should we keep to send expire message until HARD lifetime ? */
4334                         else if (sav->lft_s != NULL
4335                               && sav->lft_s->sadb_lifetime_addtime != 0
4336                               && tv.tv_sec - sav->created > sav->lft_s->sadb_lifetime_addtime) {
4337                                 /*
4338                                  * XXX: should be checked to be
4339                                  * installed the valid SA.
4340                                  */
4341
4342                                 /*
4343                                  * If there is no SA then sending
4344                                  * expire message.
4345                                  */
4346                                 key_expire(sav);
4347                         }
4348 #endif
4349                         /* check HARD lifetime by bytes */
4350                         else if (sav->lft_h->sadb_lifetime_bytes != 0
4351                               && sav->lft_h->sadb_lifetime_bytes < sav->lft_c->sadb_lifetime_bytes) {
4352                                 key_sa_chgstate(sav, SADB_SASTATE_DEAD);
4353                                 key_freesav(sav);
4354                                 sav = NULL;
4355                         }
4356                 }
4357
4358                 /* delete entry in DEAD */
4359                 for (sav = LIST_FIRST(&sah->savtree[SADB_SASTATE_DEAD]);
4360                      sav != NULL;
4361                      sav = nextsav) {
4362
4363                         nextsav = LIST_NEXT(sav, chain);
4364
4365                         /* sanity check */
4366                         if (sav->state != SADB_SASTATE_DEAD) {
4367                                 ipseclog((LOG_DEBUG, "key_timehandler: "
4368                                         "invalid sav->state "
4369                                         "(queue: %d SA: %d): "
4370                                         "kill it anyway\n",
4371                                         SADB_SASTATE_DEAD, sav->state));
4372                         }
4373
4374                         /*
4375                          * do not call key_freesav() here.
4376                          * sav should already be freed, and sav->refcnt
4377                          * shows other references to sav
4378                          * (such as from SPD).
4379                          */
4380                 }
4381         }
4382     }
4383
4384 #ifndef IPSEC_NONBLOCK_ACQUIRE
4385         /* ACQ tree */
4386     {
4387         struct secacq *acq, *nextacq;
4388
4389         for (acq = LIST_FIRST(&acqtree);
4390              acq != NULL;
4391              acq = nextacq) {
4392
4393                 nextacq = LIST_NEXT(acq, chain);
4394
4395                 if (tv.tv_sec - acq->created > key_blockacq_lifetime
4396                  && __LIST_CHAINED(acq)) {
4397                         LIST_REMOVE(acq, chain);
4398                         KFREE(acq);
4399                 }
4400         }
4401     }
4402 #endif
4403
4404         /* SP ACQ tree */
4405     {
4406         struct secspacq *acq, *nextacq;
4407
4408         for (acq = LIST_FIRST(&spacqtree);
4409              acq != NULL;
4410              acq = nextacq) {
4411
4412                 nextacq = LIST_NEXT(acq, chain);
4413
4414                 if (tv.tv_sec - acq->created > key_blockacq_lifetime
4415                  && __LIST_CHAINED(acq)) {
4416                         LIST_REMOVE(acq, chain);
4417                         KFREE(acq);
4418                 }
4419         }
4420     }
4421
4422         /* initialize random seed */
4423         if (key_tick_init_random++ > key_int_random) {
4424                 key_tick_init_random = 0;
4425                 key_srandom();
4426         }
4427
4428 #ifndef IPSEC_DEBUG2
4429         /* do exchange to tick time !! */
4430         (void)timeout((void *)key_timehandler, (void *)0, hz);
4431 #endif /* IPSEC_DEBUG2 */
4432
4433         splx(s);
4434         return;
4435 }
4436
4437 /*
4438  * to initialize a seed for random()
4439  */
4440 static void
4441 key_srandom()
4442 {
4443         struct timeval tv;
4444
4445         microtime(&tv);
4446
4447         srandom(tv.tv_usec);
4448
4449         return;
4450 }
4451
4452 u_long
4453 key_random()
4454 {
4455         u_long value;
4456
4457         key_randomfill(&value, sizeof(value));
4458         return value;
4459 }
4460
4461 void
4462 key_randomfill(p, l)
4463         void *p;
4464         size_t l;
4465 {
4466         size_t n;
4467         u_long v;
4468         static int warn = 1;
4469
4470         n = 0;
4471         n = (size_t)read_random(p, (u_int)l);
4472         /* last resort */
4473         while (n < l) {
4474                 v = random();
4475                 bcopy(&v, (u_int8_t *)p + n,
4476                     l - n < sizeof(v) ? l - n : sizeof(v));
4477                 n += sizeof(v);
4478
4479                 if (warn) {
4480                         printf("WARNING: pseudo-random number generator "
4481                             "used for IPsec processing\n");
4482                         warn = 0;
4483                 }
4484         }
4485 }
4486
4487 /*
4488  * map SADB_SATYPE_* to IPPROTO_*.
4489  * if satype == SADB_SATYPE then satype is mapped to ~0.
4490  * OUT:
4491  *      0: invalid satype.
4492  */
4493 static u_int16_t
4494 key_satype2proto(satype)
4495         u_int8_t satype;
4496 {
4497         switch (satype) {
4498         case SADB_SATYPE_UNSPEC:
4499                 return IPSEC_PROTO_ANY;
4500         case SADB_SATYPE_AH:
4501                 return IPPROTO_AH;
4502         case SADB_SATYPE_ESP:
4503                 return IPPROTO_ESP;
4504         case SADB_X_SATYPE_IPCOMP:
4505                 return IPPROTO_IPCOMP;
4506                 break;
4507         default:
4508                 return 0;
4509         }
4510         /* NOTREACHED */
4511 }
4512
4513 /*
4514  * map IPPROTO_* to SADB_SATYPE_*
4515  * OUT:
4516  *      0: invalid protocol type.
4517  */
4518 static u_int8_t
4519 key_proto2satype(proto)
4520         u_int16_t proto;
4521 {
4522         switch (proto) {
4523         case IPPROTO_AH:
4524                 return SADB_SATYPE_AH;
4525         case IPPROTO_ESP:
4526                 return SADB_SATYPE_ESP;
4527         case IPPROTO_IPCOMP:
4528                 return SADB_X_SATYPE_IPCOMP;
4529                 break;
4530         default:
4531                 return 0;
4532         }
4533         /* NOTREACHED */
4534 }
4535
4536 /* %%% PF_KEY */
4537 /*
4538  * SADB_GETSPI processing is to receive
4539  *      <base, (SA2), src address, dst address, (SPI range)>
4540  * from the IKMPd, to assign a unique spi value, to hang on the INBOUND
4541  * tree with the status of LARVAL, and send
4542  *      <base, SA(*), address(SD)>
4543  * to the IKMPd.
4544  *
4545  * IN:  mhp: pointer to the pointer to each header.
4546  * OUT: NULL if fail.
4547  *      other if success, return pointer to the message to send.
4548  */
4549 static int
4550 key_getspi(so, m, mhp)
4551         struct socket *so;
4552         struct mbuf *m;
4553         const struct sadb_msghdr *mhp;
4554 {
4555         struct sadb_address *src0, *dst0;
4556         struct secasindex saidx;
4557         struct secashead *newsah;
4558         struct secasvar *newsav;
4559         u_int8_t proto;
4560         u_int32_t spi;
4561         u_int8_t mode;
4562         u_int32_t reqid;
4563         int error;
4564
4565         /* sanity check */
4566         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
4567                 panic("key_getspi: NULL pointer is passed.\n");
4568
4569         if (mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
4570             mhp->ext[SADB_EXT_ADDRESS_DST] == NULL) {
4571                 ipseclog((LOG_DEBUG, "key_getspi: invalid message is passed.\n"));
4572                 return key_senderror(so, m, EINVAL);
4573         }
4574         if (mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
4575             mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address)) {
4576                 ipseclog((LOG_DEBUG, "key_getspi: invalid message is passed.\n"));
4577                 return key_senderror(so, m, EINVAL);
4578         }
4579         if (mhp->ext[SADB_X_EXT_SA2] != NULL) {
4580                 mode = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_mode;
4581                 reqid = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_reqid;
4582         } else {
4583                 mode = IPSEC_MODE_ANY;
4584                 reqid = 0;
4585         }
4586
4587         src0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_SRC]);
4588         dst0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_DST]);
4589
4590         /* map satype to proto */
4591         if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
4592                 ipseclog((LOG_DEBUG, "key_getspi: invalid satype is passed.\n"));
4593                 return key_senderror(so, m, EINVAL);
4594         }
4595
4596         /* make sure if port number is zero. */
4597         switch (((struct sockaddr *)(src0 + 1))->sa_family) {
4598         case AF_INET:
4599                 if (((struct sockaddr *)(src0 + 1))->sa_len !=
4600                     sizeof(struct sockaddr_in))
4601                         return key_senderror(so, m, EINVAL);
4602                 ((struct sockaddr_in *)(src0 + 1))->sin_port = 0;
4603                 break;
4604         case AF_INET6:
4605                 if (((struct sockaddr *)(src0 + 1))->sa_len !=
4606                     sizeof(struct sockaddr_in6))
4607                         return key_senderror(so, m, EINVAL);
4608                 ((struct sockaddr_in6 *)(src0 + 1))->sin6_port = 0;
4609                 break;
4610         default:
4611                 ; /*???*/
4612         }
4613         switch (((struct sockaddr *)(dst0 + 1))->sa_family) {
4614         case AF_INET:
4615                 if (((struct sockaddr *)(dst0 + 1))->sa_len !=
4616                     sizeof(struct sockaddr_in))
4617                         return key_senderror(so, m, EINVAL);
4618                 ((struct sockaddr_in *)(dst0 + 1))->sin_port = 0;
4619                 break;
4620         case AF_INET6:
4621                 if (((struct sockaddr *)(dst0 + 1))->sa_len !=
4622                     sizeof(struct sockaddr_in6))
4623                         return key_senderror(so, m, EINVAL);
4624                 ((struct sockaddr_in6 *)(dst0 + 1))->sin6_port = 0;
4625                 break;
4626         default:
4627                 ; /*???*/
4628         }
4629
4630         /* XXX boundary check against sa_len */
4631         KEY_SETSECASIDX(proto, mode, reqid, src0 + 1, dst0 + 1, &saidx);
4632
4633         /* SPI allocation */
4634         spi = key_do_getnewspi((struct sadb_spirange *)mhp->ext[SADB_EXT_SPIRANGE],
4635                                &saidx);
4636         if (spi == 0)
4637                 return key_senderror(so, m, EINVAL);
4638
4639         /* get a SA index */
4640         if ((newsah = key_getsah(&saidx)) == NULL) {
4641                 /* create a new SA index */
4642                 if ((newsah = key_newsah(&saidx)) == NULL) {
4643                         ipseclog((LOG_DEBUG, "key_getspi: No more memory.\n"));
4644                         return key_senderror(so, m, ENOBUFS);
4645                 }
4646         }
4647
4648         /* get a new SA */
4649         /* XXX rewrite */
4650         newsav = key_newsav(m, mhp, newsah, &error);
4651         if (newsav == NULL) {
4652                 /* XXX don't free new SA index allocated in above. */
4653                 return key_senderror(so, m, error);
4654         }
4655
4656         /* set spi */
4657         newsav->spi = htonl(spi);
4658
4659 #ifndef IPSEC_NONBLOCK_ACQUIRE
4660         /* delete the entry in acqtree */
4661         if (mhp->msg->sadb_msg_seq != 0) {
4662                 struct secacq *acq;
4663                 if ((acq = key_getacqbyseq(mhp->msg->sadb_msg_seq)) != NULL) {
4664                         /* reset counter in order to deletion by timehandler. */
4665                         struct timeval tv;
4666                         microtime(&tv);
4667                         acq->created = tv.tv_sec;
4668                         acq->count = 0;
4669                 }
4670         }
4671 #endif
4672
4673     {
4674         struct mbuf *n, *nn;
4675         struct sadb_sa *m_sa;
4676         struct sadb_msg *newmsg;
4677         int off, len;
4678
4679         /* create new sadb_msg to reply. */
4680         len = PFKEY_ALIGN8(sizeof(struct sadb_msg)) +
4681             PFKEY_ALIGN8(sizeof(struct sadb_sa));
4682         if (len > MCLBYTES)
4683                 return key_senderror(so, m, ENOBUFS);
4684
4685         MGETHDR(n, M_DONTWAIT, MT_DATA);
4686         if (len > MHLEN) {
4687                 MCLGET(n, M_DONTWAIT);
4688                 if ((n->m_flags & M_EXT) == 0) {
4689                         m_freem(n);
4690                         n = NULL;
4691                 }
4692         }
4693         if (!n)
4694                 return key_senderror(so, m, ENOBUFS);
4695
4696         n->m_len = len;
4697         n->m_next = NULL;
4698         off = 0;
4699
4700         m_copydata(m, 0, sizeof(struct sadb_msg), mtod(n, caddr_t) + off);
4701         off += PFKEY_ALIGN8(sizeof(struct sadb_msg));
4702
4703         m_sa = (struct sadb_sa *)(mtod(n, caddr_t) + off);
4704         m_sa->sadb_sa_len = PFKEY_UNIT64(sizeof(struct sadb_sa));
4705         m_sa->sadb_sa_exttype = SADB_EXT_SA;
4706         m_sa->sadb_sa_spi = htonl(spi);
4707         off += PFKEY_ALIGN8(sizeof(struct sadb_sa));
4708
4709 #ifdef DIAGNOSTIC
4710         if (off != len)
4711                 panic("length inconsistency in key_getspi");
4712 #endif
4713
4714         n->m_next = key_gather_mbuf(m, mhp, 0, 2, SADB_EXT_ADDRESS_SRC,
4715             SADB_EXT_ADDRESS_DST);
4716         if (!n->m_next) {
4717                 m_freem(n);
4718                 return key_senderror(so, m, ENOBUFS);
4719         }
4720
4721         if (n->m_len < sizeof(struct sadb_msg)) {
4722                 n = m_pullup(n, sizeof(struct sadb_msg));
4723                 if (n == NULL)
4724                         return key_sendup_mbuf(so, m, KEY_SENDUP_ONE);
4725         }
4726
4727         n->m_pkthdr.len = 0;
4728         for (nn = n; nn; nn = nn->m_next)
4729                 n->m_pkthdr.len += nn->m_len;
4730
4731         newmsg = mtod(n, struct sadb_msg *);
4732         newmsg->sadb_msg_seq = newsav->seq;
4733         newmsg->sadb_msg_errno = 0;
4734         newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
4735
4736         m_freem(m);
4737         return key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
4738     }
4739 }
4740
4741 /*
4742  * allocating new SPI
4743  * called by key_getspi().
4744  * OUT:
4745  *      0:      failure.
4746  *      others: success.
4747  */
4748 static u_int32_t
4749 key_do_getnewspi(spirange, saidx)
4750         struct sadb_spirange *spirange;
4751         struct secasindex *saidx;
4752 {
4753         u_int32_t newspi;
4754         u_int32_t min, max;
4755         int count = key_spi_trycnt;
4756
4757         /* set spi range to allocate */
4758         if (spirange != NULL) {
4759                 min = spirange->sadb_spirange_min;
4760                 max = spirange->sadb_spirange_max;
4761         } else {
4762                 min = key_spi_minval;
4763                 max = key_spi_maxval;
4764         }
4765         /* IPCOMP needs 2-byte SPI */
4766         if (saidx->proto == IPPROTO_IPCOMP) {
4767                 u_int32_t t;
4768                 if (min >= 0x10000)
4769                         min = 0xffff;
4770                 if (max >= 0x10000)
4771                         max = 0xffff;
4772                 if (min > max) {
4773                         t = min; min = max; max = t;
4774                 }
4775         }
4776
4777         if (min == max) {
4778                 if (key_checkspidup(saidx, min) != NULL) {
4779                         ipseclog((LOG_DEBUG, "key_do_getnewspi: SPI %u exists already.\n", min));
4780                         return 0;
4781                 }
4782
4783                 count--; /* taking one cost. */
4784                 newspi = min;
4785
4786         } else {
4787
4788                 /* init SPI */
4789                 newspi = 0;
4790
4791                 /* when requesting to allocate spi ranged */
4792                 while (count--) {
4793                         /* generate pseudo-random SPI value ranged. */
4794                         newspi = min + (key_random() % (max - min + 1));
4795
4796                         if (key_checkspidup(saidx, newspi) == NULL)
4797                                 break;
4798                 }
4799
4800                 if (count == 0 || newspi == 0) {
4801                         ipseclog((LOG_DEBUG, "key_do_getnewspi: to allocate spi is failed.\n"));
4802                         return 0;
4803                 }
4804         }
4805
4806         /* statistics */
4807         keystat.getspi_count =
4808                 (keystat.getspi_count + key_spi_trycnt - count) / 2;
4809
4810         return newspi;
4811 }
4812
4813 /*
4814  * SADB_UPDATE processing
4815  * receive
4816  *   <base, SA, (SA2), (lifetime(HSC),) address(SD), (address(P),)
4817  *       key(AE), (identity(SD),) (sensitivity)>
4818  * from the ikmpd, and update a secasvar entry whose status is SADB_SASTATE_LARVAL.
4819  * and send
4820  *   <base, SA, (SA2), (lifetime(HSC),) address(SD), (address(P),)
4821  *       (identity(SD),) (sensitivity)>
4822  * to the ikmpd.
4823  *
4824  * m will always be freed.
4825  */
4826 static int
4827 key_update(so, m, mhp)
4828         struct socket *so;
4829         struct mbuf *m;
4830         const struct sadb_msghdr *mhp;
4831 {
4832         struct sadb_sa *sa0;
4833         struct sadb_address *src0, *dst0;
4834         struct secasindex saidx;
4835         struct secashead *sah;
4836         struct secasvar *sav;
4837         u_int16_t proto;
4838         u_int8_t mode;
4839         u_int32_t reqid;
4840         int error;
4841
4842         /* sanity check */
4843         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
4844                 panic("key_update: NULL pointer is passed.\n");
4845
4846         /* map satype to proto */
4847         if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
4848                 ipseclog((LOG_DEBUG, "key_update: invalid satype is passed.\n"));
4849                 return key_senderror(so, m, EINVAL);
4850         }
4851
4852         if (mhp->ext[SADB_EXT_SA] == NULL ||
4853             mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
4854             mhp->ext[SADB_EXT_ADDRESS_DST] == NULL ||
4855             (mhp->msg->sadb_msg_satype == SADB_SATYPE_ESP &&
4856              mhp->ext[SADB_EXT_KEY_ENCRYPT] == NULL) ||
4857             (mhp->msg->sadb_msg_satype == SADB_SATYPE_AH &&
4858              mhp->ext[SADB_EXT_KEY_AUTH] == NULL) ||
4859             (mhp->ext[SADB_EXT_LIFETIME_HARD] != NULL &&
4860              mhp->ext[SADB_EXT_LIFETIME_SOFT] == NULL) ||
4861             (mhp->ext[SADB_EXT_LIFETIME_HARD] == NULL &&
4862              mhp->ext[SADB_EXT_LIFETIME_SOFT] != NULL)) {
4863                 ipseclog((LOG_DEBUG, "key_update: invalid message is passed.\n"));
4864                 return key_senderror(so, m, EINVAL);
4865         }
4866         if (mhp->extlen[SADB_EXT_SA] < sizeof(struct sadb_sa) ||
4867             mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
4868             mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address)) {
4869                 ipseclog((LOG_DEBUG, "key_update: invalid message is passed.\n"));
4870                 return key_senderror(so, m, EINVAL);
4871         }
4872         if (mhp->ext[SADB_X_EXT_SA2] != NULL) {
4873                 mode = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_mode;
4874                 reqid = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_reqid;
4875         } else {
4876                 mode = IPSEC_MODE_ANY;
4877                 reqid = 0;
4878         }
4879         /* XXX boundary checking for other extensions */
4880
4881         sa0 = (struct sadb_sa *)mhp->ext[SADB_EXT_SA];
4882         src0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_SRC]);
4883         dst0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_DST]);
4884
4885         /* XXX boundary check against sa_len */
4886         KEY_SETSECASIDX(proto, mode, reqid, src0 + 1, dst0 + 1, &saidx);
4887
4888         /* get a SA header */
4889         if ((sah = key_getsah(&saidx)) == NULL) {
4890                 ipseclog((LOG_DEBUG, "key_update: no SA index found.\n"));
4891                 return key_senderror(so, m, ENOENT);
4892         }
4893
4894         /* set spidx if there */
4895         /* XXX rewrite */
4896         error = key_setident(sah, m, mhp);
4897         if (error)
4898                 return key_senderror(so, m, error);
4899
4900         /* find a SA with sequence number. */
4901 #ifdef IPSEC_DOSEQCHECK
4902         if (mhp->msg->sadb_msg_seq != 0
4903          && (sav = key_getsavbyseq(sah, mhp->msg->sadb_msg_seq)) == NULL) {
4904                 ipseclog((LOG_DEBUG,
4905                     "key_update: no larval SA with sequence %u exists.\n",
4906                     mhp->msg->sadb_msg_seq));
4907                 return key_senderror(so, m, ENOENT);
4908         }
4909 #else
4910         if ((sav = key_getsavbyspi(sah, sa0->sadb_sa_spi)) == NULL) {
4911                 ipseclog((LOG_DEBUG,
4912                     "key_update: no such a SA found (spi:%u)\n",
4913                     (u_int32_t)ntohl(sa0->sadb_sa_spi)));
4914                 return key_senderror(so, m, EINVAL);
4915         }
4916 #endif
4917
4918         /* validity check */
4919         if (sav->sah->saidx.proto != proto) {
4920                 ipseclog((LOG_DEBUG,
4921                     "key_update: protocol mismatched (DB=%u param=%u)\n",
4922                     sav->sah->saidx.proto, proto));
4923                 return key_senderror(so, m, EINVAL);
4924         }
4925 #ifdef IPSEC_DOSEQCHECK
4926         if (sav->spi != sa0->sadb_sa_spi) {
4927                 ipseclog((LOG_DEBUG,
4928                     "key_update: SPI mismatched (DB:%u param:%u)\n",
4929                     (u_int32_t)ntohl(sav->spi),
4930                     (u_int32_t)ntohl(sa0->sadb_sa_spi)));
4931                 return key_senderror(so, m, EINVAL);
4932         }
4933 #endif
4934         if (sav->pid != mhp->msg->sadb_msg_pid) {
4935                 ipseclog((LOG_DEBUG,
4936                     "key_update: pid mismatched (DB:%u param:%u)\n",
4937                     sav->pid, mhp->msg->sadb_msg_pid));
4938                 return key_senderror(so, m, EINVAL);
4939         }
4940
4941         /* copy sav values */
4942         error = key_setsaval(sav, m, mhp);
4943         if (error) {
4944                 key_freesav(sav);
4945                 return key_senderror(so, m, error);
4946         }
4947
4948         /* check SA values to be mature. */
4949         if ((mhp->msg->sadb_msg_errno = key_mature(sav)) != 0) {
4950                 key_freesav(sav);
4951                 return key_senderror(so, m, 0);
4952         }
4953
4954     {
4955         struct mbuf *n;
4956
4957         /* set msg buf from mhp */
4958         n = key_getmsgbuf_x1(m, mhp);
4959         if (n == NULL) {
4960                 ipseclog((LOG_DEBUG, "key_update: No more memory.\n"));
4961                 return key_senderror(so, m, ENOBUFS);
4962         }
4963
4964         m_freem(m);
4965         return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
4966     }
4967 }
4968
4969 /*
4970  * search SAD with sequence for a SA which state is SADB_SASTATE_LARVAL.
4971  * only called by key_update().
4972  * OUT:
4973  *      NULL    : not found
4974  *      others  : found, pointer to a SA.
4975  */
4976 #ifdef IPSEC_DOSEQCHECK
4977 static struct secasvar *
4978 key_getsavbyseq(sah, seq)
4979         struct secashead *sah;
4980         u_int32_t seq;
4981 {
4982         struct secasvar *sav;
4983         u_int state;
4984
4985         state = SADB_SASTATE_LARVAL;
4986
4987         /* search SAD with sequence number ? */
4988         LIST_FOREACH(sav, &sah->savtree[state], chain) {
4989
4990                 KEY_CHKSASTATE(state, sav->state, "key_getsabyseq");
4991
4992                 if (sav->seq == seq) {
4993                         sav->refcnt++;
4994                         KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
4995                                 printf("DP key_getsavbyseq cause "
4996                                         "refcnt++:%d SA:%p\n",
4997                                         sav->refcnt, sav));
4998                         return sav;
4999                 }
5000         }
5001
5002         return NULL;
5003 }
5004 #endif
5005
5006 /*
5007  * SADB_ADD processing
5008  * add a entry to SA database, when received
5009  *   <base, SA, (SA2), (lifetime(HSC),) address(SD), (address(P),)
5010  *       key(AE), (identity(SD),) (sensitivity)>
5011  * from the ikmpd,
5012  * and send
5013  *   <base, SA, (SA2), (lifetime(HSC),) address(SD), (address(P),)
5014  *       (identity(SD),) (sensitivity)>
5015  * to the ikmpd.
5016  *
5017  * IGNORE identity and sensitivity messages.
5018  *
5019  * m will always be freed.
5020  */
5021 static int
5022 key_add(so, m, mhp)
5023         struct socket *so;
5024         struct mbuf *m;
5025         const struct sadb_msghdr *mhp;
5026 {
5027         struct sadb_sa *sa0;
5028         struct sadb_address *src0, *dst0;
5029         struct secasindex saidx;
5030         struct secashead *newsah;
5031         struct secasvar *newsav;
5032         u_int16_t proto;
5033         u_int8_t mode;
5034         u_int32_t reqid;
5035         int error;
5036
5037         /* sanity check */
5038         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
5039                 panic("key_add: NULL pointer is passed.\n");
5040
5041         /* map satype to proto */
5042         if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
5043                 ipseclog((LOG_DEBUG, "key_add: invalid satype is passed.\n"));
5044                 return key_senderror(so, m, EINVAL);
5045         }
5046
5047         if (mhp->ext[SADB_EXT_SA] == NULL ||
5048             mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
5049             mhp->ext[SADB_EXT_ADDRESS_DST] == NULL ||
5050             (mhp->msg->sadb_msg_satype == SADB_SATYPE_ESP &&
5051              mhp->ext[SADB_EXT_KEY_ENCRYPT] == NULL) ||
5052             (mhp->msg->sadb_msg_satype == SADB_SATYPE_AH &&
5053              mhp->ext[SADB_EXT_KEY_AUTH] == NULL) ||
5054             (mhp->ext[SADB_EXT_LIFETIME_HARD] != NULL &&
5055              mhp->ext[SADB_EXT_LIFETIME_SOFT] == NULL) ||
5056             (mhp->ext[SADB_EXT_LIFETIME_HARD] == NULL &&
5057              mhp->ext[SADB_EXT_LIFETIME_SOFT] != NULL)) {
5058                 ipseclog((LOG_DEBUG, "key_add: invalid message is passed.\n"));
5059                 return key_senderror(so, m, EINVAL);
5060         }
5061         if (mhp->extlen[SADB_EXT_SA] < sizeof(struct sadb_sa) ||
5062             mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
5063             mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address)) {
5064                 /* XXX need more */
5065                 ipseclog((LOG_DEBUG, "key_add: invalid message is passed.\n"));
5066                 return key_senderror(so, m, EINVAL);
5067         }
5068         if (mhp->ext[SADB_X_EXT_SA2] != NULL) {
5069                 mode = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_mode;
5070                 reqid = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_reqid;
5071         } else {
5072                 mode = IPSEC_MODE_ANY;
5073                 reqid = 0;
5074         }
5075
5076         sa0 = (struct sadb_sa *)mhp->ext[SADB_EXT_SA];
5077         src0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_SRC];
5078         dst0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_DST];
5079
5080         /* XXX boundary check against sa_len */
5081         KEY_SETSECASIDX(proto, mode, reqid, src0 + 1, dst0 + 1, &saidx);
5082
5083         /* get a SA header */
5084         if ((newsah = key_getsah(&saidx)) == NULL) {
5085                 /* create a new SA header */
5086                 if ((newsah = key_newsah(&saidx)) == NULL) {
5087                         ipseclog((LOG_DEBUG, "key_add: No more memory.\n"));
5088                         return key_senderror(so, m, ENOBUFS);
5089                 }
5090         }
5091
5092         /* set spidx if there */
5093         /* XXX rewrite */
5094         error = key_setident(newsah, m, mhp);
5095         if (error) {
5096                 return key_senderror(so, m, error);
5097         }
5098
5099         /* create new SA entry. */
5100         /* We can create new SA only if SPI is differenct. */
5101         if (key_getsavbyspi(newsah, sa0->sadb_sa_spi)) {
5102                 ipseclog((LOG_DEBUG, "key_add: SA already exists.\n"));
5103                 return key_senderror(so, m, EEXIST);
5104         }
5105         newsav = key_newsav(m, mhp, newsah, &error);
5106         if (newsav == NULL) {
5107                 return key_senderror(so, m, error);
5108         }
5109
5110         /* check SA values to be mature. */
5111         if ((error = key_mature(newsav)) != 0) {
5112                 key_freesav(newsav);
5113                 return key_senderror(so, m, error);
5114         }
5115
5116         /*
5117          * don't call key_freesav() here, as we would like to keep the SA
5118          * in the database on success.
5119          */
5120
5121     {
5122         struct mbuf *n;
5123
5124         /* set msg buf from mhp */
5125         n = key_getmsgbuf_x1(m, mhp);
5126         if (n == NULL) {
5127                 ipseclog((LOG_DEBUG, "key_update: No more memory.\n"));
5128                 return key_senderror(so, m, ENOBUFS);
5129         }
5130
5131         m_freem(m);
5132         return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
5133     }
5134 }
5135
5136 /* m is retained */
5137 static int
5138 key_setident(sah, m, mhp)
5139         struct secashead *sah;
5140         struct mbuf *m;
5141         const struct sadb_msghdr *mhp;
5142 {
5143         const struct sadb_ident *idsrc, *iddst;
5144         int idsrclen, iddstlen;
5145
5146         /* sanity check */
5147         if (sah == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
5148                 panic("key_setident: NULL pointer is passed.\n");
5149
5150         /* don't make buffer if not there */
5151         if (mhp->ext[SADB_EXT_IDENTITY_SRC] == NULL &&
5152             mhp->ext[SADB_EXT_IDENTITY_DST] == NULL) {
5153                 sah->idents = NULL;
5154                 sah->identd = NULL;
5155                 return 0;
5156         }
5157         
5158         if (mhp->ext[SADB_EXT_IDENTITY_SRC] == NULL ||
5159             mhp->ext[SADB_EXT_IDENTITY_DST] == NULL) {
5160                 ipseclog((LOG_DEBUG, "key_setident: invalid identity.\n"));
5161                 return EINVAL;
5162         }
5163
5164         idsrc = (const struct sadb_ident *)mhp->ext[SADB_EXT_IDENTITY_SRC];
5165         iddst = (const struct sadb_ident *)mhp->ext[SADB_EXT_IDENTITY_DST];
5166         idsrclen = mhp->extlen[SADB_EXT_IDENTITY_SRC];
5167         iddstlen = mhp->extlen[SADB_EXT_IDENTITY_DST];
5168
5169         /* validity check */
5170         if (idsrc->sadb_ident_type != iddst->sadb_ident_type) {
5171                 ipseclog((LOG_DEBUG, "key_setident: ident type mismatch.\n"));
5172                 return EINVAL;
5173         }
5174
5175         switch (idsrc->sadb_ident_type) {
5176         case SADB_IDENTTYPE_PREFIX:
5177         case SADB_IDENTTYPE_FQDN:
5178         case SADB_IDENTTYPE_USERFQDN:
5179         default:
5180                 /* XXX do nothing */
5181                 sah->idents = NULL;
5182                 sah->identd = NULL;
5183                 return 0;
5184         }
5185
5186         /* make structure */
5187         KMALLOC(sah->idents, struct sadb_ident *, idsrclen);
5188         if (sah->idents == NULL) {
5189                 ipseclog((LOG_DEBUG, "key_setident: No more memory.\n"));
5190                 return ENOBUFS;
5191         }
5192         KMALLOC(sah->identd, struct sadb_ident *, iddstlen);
5193         if (sah->identd == NULL) {
5194                 KFREE(sah->idents);
5195                 sah->idents = NULL;
5196                 ipseclog((LOG_DEBUG, "key_setident: No more memory.\n"));
5197                 return ENOBUFS;
5198         }
5199         bcopy(idsrc, sah->idents, idsrclen);
5200         bcopy(iddst, sah->identd, iddstlen);
5201
5202         return 0;
5203 }
5204
5205 /*
5206  * m will not be freed on return.
5207  * it is caller's responsibility to free the result. 
5208  */
5209 static struct mbuf *
5210 key_getmsgbuf_x1(m, mhp)
5211         struct mbuf *m;
5212         const struct sadb_msghdr *mhp;
5213 {
5214         struct mbuf *n;
5215
5216         /* sanity check */
5217         if (m == NULL || mhp == NULL || mhp->msg == NULL)
5218                 panic("key_getmsgbuf_x1: NULL pointer is passed.\n");
5219
5220         /* create new sadb_msg to reply. */
5221         n = key_gather_mbuf(m, mhp, 1, 9, SADB_EXT_RESERVED,
5222             SADB_EXT_SA, SADB_X_EXT_SA2,
5223             SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST,
5224             SADB_EXT_LIFETIME_HARD, SADB_EXT_LIFETIME_SOFT,
5225             SADB_EXT_IDENTITY_SRC, SADB_EXT_IDENTITY_DST);
5226         if (!n)
5227                 return NULL;
5228
5229         if (n->m_len < sizeof(struct sadb_msg)) {
5230                 n = m_pullup(n, sizeof(struct sadb_msg));
5231                 if (n == NULL)
5232                         return NULL;
5233         }
5234         mtod(n, struct sadb_msg *)->sadb_msg_errno = 0;
5235         mtod(n, struct sadb_msg *)->sadb_msg_len =
5236             PFKEY_UNIT64(n->m_pkthdr.len);
5237
5238         return n;
5239 }
5240
5241 static int key_delete_all __P((struct socket *, struct mbuf *,
5242         const struct sadb_msghdr *, u_int16_t));
5243
5244 /*
5245  * SADB_DELETE processing
5246  * receive
5247  *   <base, SA(*), address(SD)>
5248  * from the ikmpd, and set SADB_SASTATE_DEAD,
5249  * and send,
5250  *   <base, SA(*), address(SD)>
5251  * to the ikmpd.
5252  *
5253  * m will always be freed.
5254  */
5255 static int
5256 key_delete(so, m, mhp)
5257         struct socket *so;
5258         struct mbuf *m;
5259         const struct sadb_msghdr *mhp;
5260 {
5261         struct sadb_sa *sa0;
5262         struct sadb_address *src0, *dst0;
5263         struct secasindex saidx;
5264         struct secashead *sah;
5265         struct secasvar *sav = NULL;
5266         u_int16_t proto;
5267
5268         /* sanity check */
5269         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
5270                 panic("key_delete: NULL pointer is passed.\n");
5271
5272         /* map satype to proto */
5273         if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
5274                 ipseclog((LOG_DEBUG, "key_delete: invalid satype is passed.\n"));
5275                 return key_senderror(so, m, EINVAL);
5276         }
5277
5278         if (mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
5279             mhp->ext[SADB_EXT_ADDRESS_DST] == NULL) {
5280                 ipseclog((LOG_DEBUG, "key_delete: invalid message is passed.\n"));
5281                 return key_senderror(so, m, EINVAL);
5282         }
5283
5284         if (mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
5285             mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address)) {
5286                 ipseclog((LOG_DEBUG, "key_delete: invalid message is passed.\n"));
5287                 return key_senderror(so, m, EINVAL);
5288         }
5289
5290         if (mhp->ext[SADB_EXT_SA] == NULL) {
5291                 /*
5292                  * Caller wants us to delete all non-LARVAL SAs
5293                  * that match the src/dst.  This is used during
5294                  * IKE INITIAL-CONTACT.
5295                  */
5296                 ipseclog((LOG_DEBUG, "key_delete: doing delete all.\n"));
5297                 return key_delete_all(so, m, mhp, proto);
5298         } else if (mhp->extlen[SADB_EXT_SA] < sizeof(struct sadb_sa)) {
5299                 ipseclog((LOG_DEBUG, "key_delete: invalid message is passed.\n"));
5300                 return key_senderror(so, m, EINVAL);
5301         }
5302
5303         sa0 = (struct sadb_sa *)mhp->ext[SADB_EXT_SA];
5304         src0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_SRC]);
5305         dst0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_DST]);
5306
5307         /* XXX boundary check against sa_len */
5308         KEY_SETSECASIDX(proto, IPSEC_MODE_ANY, 0, src0 + 1, dst0 + 1, &saidx);
5309
5310         /* get a SA header */
5311         LIST_FOREACH(sah, &sahtree, chain) {
5312                 if (sah->state == SADB_SASTATE_DEAD)
5313                         continue;
5314                 if (key_cmpsaidx(&sah->saidx, &saidx, CMP_HEAD) == 0)
5315                         continue;
5316
5317                 /* get a SA with SPI. */
5318                 sav = key_getsavbyspi(sah, sa0->sadb_sa_spi);
5319                 if (sav)
5320                         break;
5321         }
5322         if (sah == NULL) {
5323                 ipseclog((LOG_DEBUG, "key_delete: no SA found.\n"));
5324                 return key_senderror(so, m, ENOENT);
5325         }
5326
5327         key_sa_chgstate(sav, SADB_SASTATE_DEAD);
5328         key_freesav(sav);
5329         sav = NULL;
5330
5331     {
5332         struct mbuf *n;
5333         struct sadb_msg *newmsg;
5334
5335         /* create new sadb_msg to reply. */
5336         n = key_gather_mbuf(m, mhp, 1, 4, SADB_EXT_RESERVED,
5337             SADB_EXT_SA, SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
5338         if (!n)
5339                 return key_senderror(so, m, ENOBUFS);
5340
5341         if (n->m_len < sizeof(struct sadb_msg)) {
5342                 n = m_pullup(n, sizeof(struct sadb_msg));
5343                 if (n == NULL)
5344                         return key_senderror(so, m, ENOBUFS);
5345         }
5346         newmsg = mtod(n, struct sadb_msg *);
5347         newmsg->sadb_msg_errno = 0;
5348         newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
5349
5350         m_freem(m);
5351         return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
5352     }
5353 }
5354
5355 /*
5356  * delete all SAs for src/dst.  Called from key_delete().
5357  */
5358 static int
5359 key_delete_all(so, m, mhp, proto)
5360         struct socket *so;
5361         struct mbuf *m;
5362         const struct sadb_msghdr *mhp;
5363         u_int16_t proto;
5364 {
5365         struct sadb_address *src0, *dst0;
5366         struct secasindex saidx;
5367         struct secashead *sah;
5368         struct secasvar *sav, *nextsav;
5369         u_int stateidx, state;
5370
5371         src0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_SRC]);
5372         dst0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_DST]);
5373
5374         /* XXX boundary check against sa_len */
5375         KEY_SETSECASIDX(proto, IPSEC_MODE_ANY, 0, src0 + 1, dst0 + 1, &saidx);
5376
5377         LIST_FOREACH(sah, &sahtree, chain) {
5378                 if (sah->state == SADB_SASTATE_DEAD)
5379                         continue;
5380                 if (key_cmpsaidx(&sah->saidx, &saidx, CMP_HEAD) == 0)
5381                         continue;
5382
5383                 /* Delete all non-LARVAL SAs. */
5384                 for (stateidx = 0;
5385                      stateidx < _ARRAYLEN(saorder_state_alive);
5386                      stateidx++) {
5387                         state = saorder_state_alive[stateidx];
5388                         if (state == SADB_SASTATE_LARVAL)
5389                                 continue;
5390                         for (sav = LIST_FIRST(&sah->savtree[state]);
5391                              sav != NULL; sav = nextsav) {
5392                                 nextsav = LIST_NEXT(sav, chain);
5393                                 /* sanity check */
5394                                 if (sav->state != state) {
5395                                         ipseclog((LOG_DEBUG, "key_delete_all: "
5396                                                "invalid sav->state "
5397                                                "(queue: %d SA: %d)\n",
5398                                                state, sav->state));
5399                                         continue;
5400                                 }
5401                                 
5402                                 key_sa_chgstate(sav, SADB_SASTATE_DEAD);
5403                                 key_freesav(sav);
5404                         }
5405                 }
5406         }
5407     {
5408         struct mbuf *n;
5409         struct sadb_msg *newmsg;
5410
5411         /* create new sadb_msg to reply. */
5412         n = key_gather_mbuf(m, mhp, 1, 3, SADB_EXT_RESERVED,
5413             SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
5414         if (!n)
5415                 return key_senderror(so, m, ENOBUFS);
5416
5417         if (n->m_len < sizeof(struct sadb_msg)) {
5418                 n = m_pullup(n, sizeof(struct sadb_msg));
5419                 if (n == NULL)
5420                         return key_senderror(so, m, ENOBUFS);
5421         }
5422         newmsg = mtod(n, struct sadb_msg *);
5423         newmsg->sadb_msg_errno = 0;
5424         newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
5425
5426         m_freem(m);
5427         return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
5428     }
5429 }
5430
5431 /*
5432  * SADB_GET processing
5433  * receive
5434  *   <base, SA(*), address(SD)>
5435  * from the ikmpd, and get a SP and a SA to respond,
5436  * and send,
5437  *   <base, SA, (lifetime(HSC),) address(SD), (address(P),) key(AE),
5438  *       (identity(SD),) (sensitivity)>
5439  * to the ikmpd.
5440  *
5441  * m will always be freed.
5442  */
5443 static int
5444 key_get(so, m, mhp)
5445         struct socket *so;
5446         struct mbuf *m;
5447         const struct sadb_msghdr *mhp;
5448 {
5449         struct sadb_sa *sa0;
5450         struct sadb_address *src0, *dst0;
5451         struct secasindex saidx;
5452         struct secashead *sah;
5453         struct secasvar *sav = NULL;
5454         u_int16_t proto;
5455
5456         /* sanity check */
5457         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
5458                 panic("key_get: NULL pointer is passed.\n");
5459
5460         /* map satype to proto */
5461         if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
5462                 ipseclog((LOG_DEBUG, "key_get: invalid satype is passed.\n"));
5463                 return key_senderror(so, m, EINVAL);
5464         }
5465
5466         if (mhp->ext[SADB_EXT_SA] == NULL ||
5467             mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
5468             mhp->ext[SADB_EXT_ADDRESS_DST] == NULL) {
5469                 ipseclog((LOG_DEBUG, "key_get: invalid message is passed.\n"));
5470                 return key_senderror(so, m, EINVAL);
5471         }
5472         if (mhp->extlen[SADB_EXT_SA] < sizeof(struct sadb_sa) ||
5473             mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
5474             mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address)) {
5475                 ipseclog((LOG_DEBUG, "key_get: invalid message is passed.\n"));
5476                 return key_senderror(so, m, EINVAL);
5477         }
5478
5479         sa0 = (struct sadb_sa *)mhp->ext[SADB_EXT_SA];
5480         src0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_SRC];
5481         dst0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_DST];
5482
5483         /* XXX boundary check against sa_len */
5484         KEY_SETSECASIDX(proto, IPSEC_MODE_ANY, 0, src0 + 1, dst0 + 1, &saidx);
5485
5486         /* get a SA header */
5487         LIST_FOREACH(sah, &sahtree, chain) {
5488                 if (sah->state == SADB_SASTATE_DEAD)
5489                         continue;
5490                 if (key_cmpsaidx(&sah->saidx, &saidx, CMP_HEAD) == 0)
5491                         continue;
5492
5493                 /* get a SA with SPI. */
5494                 sav = key_getsavbyspi(sah, sa0->sadb_sa_spi);
5495                 if (sav)
5496                         break;
5497         }
5498         if (sah == NULL) {
5499                 ipseclog((LOG_DEBUG, "key_get: no SA found.\n"));
5500                 return key_senderror(so, m, ENOENT);
5501         }
5502
5503     {
5504         struct mbuf *n;
5505         u_int8_t satype;
5506
5507         /* map proto to satype */
5508         if ((satype = key_proto2satype(sah->saidx.proto)) == 0) {
5509                 ipseclog((LOG_DEBUG, "key_get: there was invalid proto in SAD.\n"));
5510                 return key_senderror(so, m, EINVAL);
5511         }
5512
5513         /* create new sadb_msg to reply. */
5514         n = key_setdumpsa(sav, SADB_GET, satype, mhp->msg->sadb_msg_seq,
5515             mhp->msg->sadb_msg_pid);
5516         if (!n)
5517                 return key_senderror(so, m, ENOBUFS);
5518
5519         m_freem(m);
5520         return key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
5521     }
5522 }
5523
5524 /* XXX make it sysctl-configurable? */
5525 static void
5526 key_getcomb_setlifetime(comb)
5527         struct sadb_comb *comb;
5528 {
5529
5530         comb->sadb_comb_soft_allocations = 1;
5531         comb->sadb_comb_hard_allocations = 1;
5532         comb->sadb_comb_soft_bytes = 0;
5533         comb->sadb_comb_hard_bytes = 0;
5534         comb->sadb_comb_hard_addtime = 86400;   /* 1 day */
5535         comb->sadb_comb_soft_addtime = comb->sadb_comb_soft_addtime * 80 / 100;
5536         comb->sadb_comb_soft_usetime = 28800;   /* 8 hours */
5537         comb->sadb_comb_hard_usetime = comb->sadb_comb_hard_usetime * 80 / 100;
5538 }
5539
5540 #ifdef IPSEC_ESP
5541 /*
5542  * XXX reorder combinations by preference
5543  * XXX no idea if the user wants ESP authentication or not
5544  */
5545 static struct mbuf *
5546 key_getcomb_esp()
5547 {
5548         struct sadb_comb *comb;
5549         const struct esp_algorithm *algo;
5550         struct mbuf *result = NULL, *m, *n;
5551         int encmin;
5552         int i, off, o;
5553         int totlen;
5554         const int l = PFKEY_ALIGN8(sizeof(struct sadb_comb));
5555
5556         m = NULL;
5557         for (i = 1; i <= SADB_EALG_MAX; i++) {
5558                 algo = esp_algorithm_lookup(i);
5559                 if (!algo)
5560                         continue;
5561
5562                 if (algo->keymax < ipsec_esp_keymin)
5563                         continue;
5564                 if (algo->keymin < ipsec_esp_keymin)
5565                         encmin = ipsec_esp_keymin;
5566                 else
5567                         encmin = algo->keymin;
5568
5569                 if (ipsec_esp_auth)
5570                         m = key_getcomb_ah();
5571                 else {
5572 #ifdef DIAGNOSTIC
5573                         if (l > MLEN)
5574                                 panic("assumption failed in key_getcomb_esp");
5575 #endif
5576                         MGET(m, M_DONTWAIT, MT_DATA);
5577                         if (m) {
5578                                 M_ALIGN(m, l);
5579                                 m->m_len = l;
5580                                 m->m_next = NULL;
5581                                 bzero(mtod(m, caddr_t), m->m_len);
5582                         }
5583                 }
5584                 if (!m)
5585                         goto fail;
5586
5587                 totlen = 0;
5588                 for (n = m; n; n = n->m_next)
5589                         totlen += n->m_len;
5590 #ifdef DIAGNOSTIC
5591                 if (totlen % l)
5592                         panic("assumption failed in key_getcomb_esp");
5593 #endif
5594
5595                 for (off = 0; off < totlen; off += l) {
5596                         n = m_pulldown(m, off, l, &o);
5597                         if (!n) {
5598                                 /* m is already freed */
5599                                 goto fail;
5600                         }
5601                         comb = (struct sadb_comb *)(mtod(n, caddr_t) + o);
5602                         bzero(comb, sizeof(*comb));
5603                         key_getcomb_setlifetime(comb);
5604                         comb->sadb_comb_encrypt = i;
5605                         comb->sadb_comb_encrypt_minbits = encmin;
5606                         comb->sadb_comb_encrypt_maxbits = algo->keymax;
5607                 }
5608
5609                 if (!result)
5610                         result = m;
5611                 else
5612                         m_cat(result, m);
5613         }
5614
5615         return result;
5616
5617  fail:
5618         if (result)
5619                 m_freem(result);
5620         return NULL;
5621 }
5622 #endif
5623
5624 /*
5625  * XXX reorder combinations by preference
5626  */
5627 static struct mbuf *
5628 key_getcomb_ah()
5629 {
5630         struct sadb_comb *comb;
5631         const struct ah_algorithm *algo;
5632         struct mbuf *m;
5633         int min;
5634         int i;
5635         const int l = PFKEY_ALIGN8(sizeof(struct sadb_comb));
5636
5637         m = NULL;
5638         for (i = 1; i <= SADB_AALG_MAX; i++) {
5639 #if 1
5640                 /* we prefer HMAC algorithms, not old algorithms */
5641                 if (i != SADB_AALG_SHA1HMAC && i != SADB_AALG_MD5HMAC)
5642                         continue;
5643 #endif
5644                 algo = ah_algorithm_lookup(i);
5645                 if (!algo)
5646                         continue;
5647
5648                 if (algo->keymax < ipsec_ah_keymin)
5649                         continue;
5650                 if (algo->keymin < ipsec_ah_keymin)
5651                         min = ipsec_ah_keymin;
5652                 else
5653                         min = algo->keymin;
5654
5655                 if (!m) {
5656 #ifdef DIAGNOSTIC
5657                         if (l > MLEN)
5658                                 panic("assumption failed in key_getcomb_ah");
5659 #endif
5660                         MGET(m, M_DONTWAIT, MT_DATA);
5661                         if (m) {
5662                                 M_ALIGN(m, l);
5663                                 m->m_len = l;
5664                                 m->m_next = NULL;
5665                         }
5666                 } else
5667                         M_PREPEND(m, l, M_DONTWAIT);
5668                 if (!m)
5669                         return NULL;
5670
5671                 comb = mtod(m, struct sadb_comb *);
5672                 bzero(comb, sizeof(*comb));
5673                 key_getcomb_setlifetime(comb);
5674                 comb->sadb_comb_auth = i;
5675                 comb->sadb_comb_auth_minbits = min;
5676                 comb->sadb_comb_auth_maxbits = algo->keymax;
5677         }
5678
5679         return m;
5680 }
5681
5682 /*
5683  * not really an official behavior.  discussed in pf_key@inner.net in Sep2000.
5684  * XXX reorder combinations by preference
5685  */
5686 static struct mbuf *
5687 key_getcomb_ipcomp()
5688 {
5689         struct sadb_comb *comb;
5690         const struct ipcomp_algorithm *algo;
5691         struct mbuf *m;
5692         int i;
5693         const int l = PFKEY_ALIGN8(sizeof(struct sadb_comb));
5694
5695         m = NULL;
5696         for (i = 1; i <= SADB_X_CALG_MAX; i++) {
5697                 algo = ipcomp_algorithm_lookup(i);
5698                 if (!algo)
5699                         continue;
5700
5701                 if (!m) {
5702 #ifdef DIAGNOSTIC
5703                         if (l > MLEN)
5704                                 panic("assumption failed in key_getcomb_ipcomp");
5705 #endif
5706                         MGET(m, M_DONTWAIT, MT_DATA);
5707                         if (m) {
5708                                 M_ALIGN(m, l);
5709                                 m->m_len = l;
5710                                 m->m_next = NULL;
5711                         }
5712                 } else
5713                         M_PREPEND(m, l, M_DONTWAIT);
5714                 if (!m)
5715                         return NULL;
5716
5717                 comb = mtod(m, struct sadb_comb *);
5718                 bzero(comb, sizeof(*comb));
5719                 key_getcomb_setlifetime(comb);
5720                 comb->sadb_comb_encrypt = i;
5721                 /* what should we set into sadb_comb_*_{min,max}bits? */
5722         }
5723
5724         return m;
5725 }
5726
5727 /*
5728  * XXX no way to pass mode (transport/tunnel) to userland
5729  * XXX replay checking?
5730  * XXX sysctl interface to ipsec_{ah,esp}_keymin
5731  */
5732 static struct mbuf *
5733 key_getprop(saidx)
5734         const struct secasindex *saidx;
5735 {
5736         struct sadb_prop *prop;
5737         struct mbuf *m, *n;
5738         const int l = PFKEY_ALIGN8(sizeof(struct sadb_prop));
5739         int totlen;
5740
5741         switch (saidx->proto)  {
5742 #ifdef IPSEC_ESP
5743         case IPPROTO_ESP:
5744                 m = key_getcomb_esp();
5745                 break;
5746 #endif
5747         case IPPROTO_AH:
5748                 m = key_getcomb_ah();
5749                 break;
5750         case IPPROTO_IPCOMP:
5751                 m = key_getcomb_ipcomp();
5752                 break;
5753         default:
5754                 return NULL;
5755         }
5756
5757         if (!m)
5758                 return NULL;
5759         M_PREPEND(m, l, M_DONTWAIT);
5760         if (!m)
5761                 return NULL;
5762
5763         totlen = 0;
5764         for (n = m; n; n = n->m_next)
5765                 totlen += n->m_len;
5766
5767         prop = mtod(m, struct sadb_prop *);
5768         bzero(prop, sizeof(*prop));
5769         prop->sadb_prop_len = PFKEY_UNIT64(totlen);
5770         prop->sadb_prop_exttype = SADB_EXT_PROPOSAL;
5771         prop->sadb_prop_replay = 32;    /* XXX */
5772
5773         return m;
5774 }
5775
5776 /*
5777  * SADB_ACQUIRE processing called by key_checkrequest() and key_acquire2().
5778  * send
5779  *   <base, SA, address(SD), (address(P)), x_policy,
5780  *       (identity(SD),) (sensitivity,) proposal>
5781  * to KMD, and expect to receive
5782  *   <base> with SADB_ACQUIRE if error occured,
5783  * or
5784  *   <base, src address, dst address, (SPI range)> with SADB_GETSPI
5785  * from KMD by PF_KEY.
5786  *
5787  * XXX x_policy is outside of RFC2367 (KAME extension).
5788  * XXX sensitivity is not supported.
5789  * XXX for ipcomp, RFC2367 does not define how to fill in proposal.
5790  * see comment for key_getcomb_ipcomp().
5791  *
5792  * OUT:
5793  *    0     : succeed
5794  *    others: error number
5795  */
5796 static int
5797 key_acquire(saidx, sp)
5798         struct secasindex *saidx;
5799         struct secpolicy *sp;
5800 {
5801         struct mbuf *result = NULL, *m;
5802 #ifndef IPSEC_NONBLOCK_ACQUIRE
5803         struct secacq *newacq;
5804 #endif
5805         u_int8_t satype;
5806         int error = -1;
5807         u_int32_t seq;
5808
5809         /* sanity check */
5810         if (saidx == NULL)
5811                 panic("key_acquire: NULL pointer is passed.\n");
5812         if ((satype = key_proto2satype(saidx->proto)) == 0)
5813                 panic("key_acquire: invalid proto is passed.\n");
5814
5815 #ifndef IPSEC_NONBLOCK_ACQUIRE
5816         /*
5817          * We never do anything about acquirng SA.  There is anather
5818          * solution that kernel blocks to send SADB_ACQUIRE message until
5819          * getting something message from IKEd.  In later case, to be
5820          * managed with ACQUIRING list.
5821          */
5822         /* get a entry to check whether sending message or not. */
5823         if ((newacq = key_getacq(saidx)) != NULL) {
5824                 if (key_blockacq_count < newacq->count) {
5825                         /* reset counter and do send message. */
5826                         newacq->count = 0;
5827                 } else {
5828                         /* increment counter and do nothing. */
5829                         newacq->count++;
5830                         return 0;
5831                 }
5832         } else {
5833                 /* make new entry for blocking to send SADB_ACQUIRE. */
5834                 if ((newacq = key_newacq(saidx)) == NULL)
5835                         return ENOBUFS;
5836
5837                 /* add to acqtree */
5838                 LIST_INSERT_HEAD(&acqtree, newacq, chain);
5839         }
5840 #endif
5841
5842
5843 #ifndef IPSEC_NONBLOCK_ACQUIRE
5844         seq = newacq->seq;
5845 #else
5846         seq = (acq_seq = (acq_seq == ~0 ? 1 : ++acq_seq));
5847 #endif
5848         m = key_setsadbmsg(SADB_ACQUIRE, 0, satype, seq, 0, 0);
5849         if (!m) {
5850                 error = ENOBUFS;
5851                 goto fail;
5852         }
5853         result = m;
5854
5855         /* set sadb_address for saidx's. */
5856         m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
5857             (struct sockaddr *)&saidx->src, FULLMASK, IPSEC_ULPROTO_ANY);
5858         if (!m) {
5859                 error = ENOBUFS;
5860                 goto fail;
5861         }
5862         m_cat(result, m);
5863
5864         m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
5865             (struct sockaddr *)&saidx->dst, FULLMASK, IPSEC_ULPROTO_ANY);
5866         if (!m) {
5867                 error = ENOBUFS;
5868                 goto fail;
5869         }
5870         m_cat(result, m);
5871
5872         /* XXX proxy address (optional) */
5873
5874         /* set sadb_x_policy */
5875         if (sp) {
5876                 m = key_setsadbxpolicy(sp->policy, sp->spidx.dir, sp->id);
5877                 if (!m) {
5878                         error = ENOBUFS;
5879                         goto fail;
5880                 }
5881                 m_cat(result, m);
5882         }
5883
5884         /* XXX identity (optional) */
5885 #if 0
5886         if (idexttype && fqdn) {
5887                 /* create identity extension (FQDN) */
5888                 struct sadb_ident *id;
5889                 int fqdnlen;
5890
5891                 fqdnlen = strlen(fqdn) + 1;     /* +1 for terminating-NUL */
5892                 id = (struct sadb_ident *)p;
5893                 bzero(id, sizeof(*id) + PFKEY_ALIGN8(fqdnlen));
5894                 id->sadb_ident_len = PFKEY_UNIT64(sizeof(*id) + PFKEY_ALIGN8(fqdnlen));
5895                 id->sadb_ident_exttype = idexttype;
5896                 id->sadb_ident_type = SADB_IDENTTYPE_FQDN;
5897                 bcopy(fqdn, id + 1, fqdnlen);
5898                 p += sizeof(struct sadb_ident) + PFKEY_ALIGN8(fqdnlen);
5899         }
5900
5901         if (idexttype) {
5902                 /* create identity extension (USERFQDN) */
5903                 struct sadb_ident *id;
5904                 int userfqdnlen;
5905
5906                 if (userfqdn) {
5907                         /* +1 for terminating-NUL */
5908                         userfqdnlen = strlen(userfqdn) + 1;
5909                 } else
5910                         userfqdnlen = 0;
5911                 id = (struct sadb_ident *)p;
5912                 bzero(id, sizeof(*id) + PFKEY_ALIGN8(userfqdnlen));
5913                 id->sadb_ident_len = PFKEY_UNIT64(sizeof(*id) + PFKEY_ALIGN8(userfqdnlen));
5914                 id->sadb_ident_exttype = idexttype;
5915                 id->sadb_ident_type = SADB_IDENTTYPE_USERFQDN;
5916                 /* XXX is it correct? */
5917                 if (curproc && curproc->p_cred)
5918                         id->sadb_ident_id = curproc->p_cred->p_ruid;
5919                 if (userfqdn && userfqdnlen)
5920                         bcopy(userfqdn, id + 1, userfqdnlen);
5921                 p += sizeof(struct sadb_ident) + PFKEY_ALIGN8(userfqdnlen);
5922         }
5923 #endif
5924
5925         /* XXX sensitivity (optional) */
5926
5927         /* create proposal/combination extension */
5928         m = key_getprop(saidx);
5929 #if 0
5930         /*
5931          * spec conformant: always attach proposal/combination extension,
5932          * the problem is that we have no way to attach it for ipcomp,
5933          * due to the way sadb_comb is declared in RFC2367.
5934          */
5935         if (!m) {
5936                 error = ENOBUFS;
5937                 goto fail;
5938         }
5939         m_cat(result, m);
5940 #else
5941         /*
5942          * outside of spec; make proposal/combination extension optional.
5943          */
5944         if (m)
5945                 m_cat(result, m);
5946 #endif
5947
5948         if ((result->m_flags & M_PKTHDR) == 0) {
5949                 error = EINVAL;
5950                 goto fail;
5951         }
5952
5953         if (result->m_len < sizeof(struct sadb_msg)) {
5954                 result = m_pullup(result, sizeof(struct sadb_msg));
5955                 if (result == NULL) {
5956                         error = ENOBUFS;
5957                         goto fail;
5958                 }
5959         }
5960
5961         result->m_pkthdr.len = 0;
5962         for (m = result; m; m = m->m_next)
5963                 result->m_pkthdr.len += m->m_len;
5964
5965         mtod(result, struct sadb_msg *)->sadb_msg_len =
5966             PFKEY_UNIT64(result->m_pkthdr.len);
5967
5968         return key_sendup_mbuf(NULL, result, KEY_SENDUP_REGISTERED);
5969
5970  fail:
5971         if (result)
5972                 m_freem(result);
5973         return error;
5974 }
5975
5976 #ifndef IPSEC_NONBLOCK_ACQUIRE
5977 static struct secacq *
5978 key_newacq(saidx)
5979         struct secasindex *saidx;
5980 {
5981         struct secacq *newacq;
5982         struct timeval tv;
5983
5984         /* get new entry */
5985         KMALLOC(newacq, struct secacq *, sizeof(struct secacq));
5986         if (newacq == NULL) {
5987                 ipseclog((LOG_DEBUG, "key_newacq: No more memory.\n"));
5988                 return NULL;
5989         }
5990         bzero(newacq, sizeof(*newacq));
5991
5992         /* copy secindex */
5993         bcopy(saidx, &newacq->saidx, sizeof(newacq->saidx));
5994         newacq->seq = (acq_seq == ~0 ? 1 : ++acq_seq);
5995         microtime(&tv);
5996         newacq->created = tv.tv_sec;
5997         newacq->count = 0;
5998
5999         return newacq;
6000 }
6001
6002 static struct secacq *
6003 key_getacq(saidx)
6004         struct secasindex *saidx;
6005 {
6006         struct secacq *acq;
6007
6008         LIST_FOREACH(acq, &acqtree, chain) {
6009                 if (key_cmpsaidx(saidx, &acq->saidx, CMP_EXACTLY))
6010                         return acq;
6011         }
6012
6013         return NULL;
6014 }
6015
6016 static struct secacq *
6017 key_getacqbyseq(seq)
6018         u_int32_t seq;
6019 {
6020         struct secacq *acq;
6021
6022         LIST_FOREACH(acq, &acqtree, chain) {
6023                 if (acq->seq == seq)
6024                         return acq;
6025         }
6026
6027         return NULL;
6028 }
6029 #endif
6030
6031 static struct secspacq *
6032 key_newspacq(spidx)
6033         struct secpolicyindex *spidx;
6034 {
6035         struct secspacq *acq;
6036         struct timeval tv;
6037
6038         /* get new entry */
6039         KMALLOC(acq, struct secspacq *, sizeof(struct secspacq));
6040         if (acq == NULL) {
6041                 ipseclog((LOG_DEBUG, "key_newspacq: No more memory.\n"));
6042                 return NULL;
6043         }
6044         bzero(acq, sizeof(*acq));
6045
6046         /* copy secindex */
6047         bcopy(spidx, &acq->spidx, sizeof(acq->spidx));
6048         microtime(&tv);
6049         acq->created = tv.tv_sec;
6050         acq->count = 0;
6051
6052         return acq;
6053 }
6054
6055 static struct secspacq *
6056 key_getspacq(spidx)
6057         struct secpolicyindex *spidx;
6058 {
6059         struct secspacq *acq;
6060
6061         LIST_FOREACH(acq, &spacqtree, chain) {
6062                 if (key_cmpspidx_exactly(spidx, &acq->spidx))
6063                         return acq;
6064         }
6065
6066         return NULL;
6067 }
6068
6069 /*
6070  * SADB_ACQUIRE processing,
6071  * in first situation, is receiving
6072  *   <base>
6073  * from the ikmpd, and clear sequence of its secasvar entry.
6074  *
6075  * In second situation, is receiving
6076  *   <base, address(SD), (address(P),) (identity(SD),) (sensitivity,) proposal>
6077  * from a user land process, and return
6078  *   <base, address(SD), (address(P),) (identity(SD),) (sensitivity,) proposal>
6079  * to the socket.
6080  *
6081  * m will always be freed.
6082  */
6083 static int
6084 key_acquire2(so, m, mhp)
6085         struct socket *so;
6086         struct mbuf *m;
6087         const struct sadb_msghdr *mhp;
6088 {
6089         const struct sadb_address *src0, *dst0;
6090         struct secasindex saidx;
6091         struct secashead *sah;
6092         u_int16_t proto;
6093         int error;
6094
6095         /* sanity check */
6096         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
6097                 panic("key_acquire2: NULL pointer is passed.\n");
6098
6099         /*
6100          * Error message from KMd.
6101          * We assume that if error was occured in IKEd, the length of PFKEY
6102          * message is equal to the size of sadb_msg structure.
6103          * We do not raise error even if error occured in this function.
6104          */
6105         if (mhp->msg->sadb_msg_len == PFKEY_UNIT64(sizeof(struct sadb_msg))) {
6106 #ifndef IPSEC_NONBLOCK_ACQUIRE
6107                 struct secacq *acq;
6108                 struct timeval tv;
6109
6110                 /* check sequence number */
6111                 if (mhp->msg->sadb_msg_seq == 0) {
6112                         ipseclog((LOG_DEBUG, "key_acquire2: must specify sequence number.\n"));
6113                         m_freem(m);
6114                         return 0;
6115                 }
6116
6117                 if ((acq = key_getacqbyseq(mhp->msg->sadb_msg_seq)) == NULL) {
6118                         /*
6119                          * the specified larval SA is already gone, or we got
6120                          * a bogus sequence number.  we can silently ignore it.
6121                          */
6122                         m_freem(m);
6123                         return 0;
6124                 }
6125
6126                 /* reset acq counter in order to deletion by timehander. */
6127                 microtime(&tv);
6128                 acq->created = tv.tv_sec;
6129                 acq->count = 0;
6130 #endif
6131                 m_freem(m);
6132                 return 0;
6133         }
6134
6135         /*
6136          * This message is from user land.
6137          */
6138
6139         /* map satype to proto */
6140         if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
6141                 ipseclog((LOG_DEBUG, "key_acquire2: invalid satype is passed.\n"));
6142                 return key_senderror(so, m, EINVAL);
6143         }
6144
6145         if (mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
6146             mhp->ext[SADB_EXT_ADDRESS_DST] == NULL ||
6147             mhp->ext[SADB_EXT_PROPOSAL] == NULL) {
6148                 /* error */
6149                 ipseclog((LOG_DEBUG, "key_acquire2: invalid message is passed.\n"));
6150                 return key_senderror(so, m, EINVAL);
6151         }
6152         if (mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
6153             mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address) ||
6154             mhp->extlen[SADB_EXT_PROPOSAL] < sizeof(struct sadb_prop)) {
6155                 /* error */
6156                 ipseclog((LOG_DEBUG, "key_acquire2: invalid message is passed.\n"));
6157                 return key_senderror(so, m, EINVAL);
6158         }
6159
6160         src0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_SRC];
6161         dst0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_DST];
6162
6163         /* XXX boundary check against sa_len */
6164         KEY_SETSECASIDX(proto, IPSEC_MODE_ANY, 0, src0 + 1, dst0 + 1, &saidx);
6165
6166         /* get a SA index */
6167         LIST_FOREACH(sah, &sahtree, chain) {
6168                 if (sah->state == SADB_SASTATE_DEAD)
6169                         continue;
6170                 if (key_cmpsaidx(&sah->saidx, &saidx, CMP_MODE_REQID))
6171                         break;
6172         }
6173         if (sah != NULL) {
6174                 ipseclog((LOG_DEBUG, "key_acquire2: a SA exists already.\n"));
6175                 return key_senderror(so, m, EEXIST);
6176         }
6177
6178         error = key_acquire(&saidx, NULL);
6179         if (error != 0) {
6180                 ipseclog((LOG_DEBUG, "key_acquire2: error %d returned "
6181                         "from key_acquire.\n", mhp->msg->sadb_msg_errno));
6182                 return key_senderror(so, m, error);
6183         }
6184
6185         return key_sendup_mbuf(so, m, KEY_SENDUP_REGISTERED);
6186 }
6187
6188 /*
6189  * SADB_REGISTER processing.
6190  * If SATYPE_UNSPEC has been passed as satype, only return sabd_supported.
6191  * receive
6192  *   <base>
6193  * from the ikmpd, and register a socket to send PF_KEY messages,
6194  * and send
6195  *   <base, supported>
6196  * to KMD by PF_KEY.
6197  * If socket is detached, must free from regnode.
6198  *
6199  * m will always be freed.
6200  */
6201 static int
6202 key_register(so, m, mhp)
6203         struct socket *so;
6204         struct mbuf *m;
6205         const struct sadb_msghdr *mhp;
6206 {
6207         struct secreg *reg, *newreg = 0;
6208
6209         /* sanity check */
6210         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
6211                 panic("key_register: NULL pointer is passed.\n");
6212
6213         /* check for invalid register message */
6214         if (mhp->msg->sadb_msg_satype >= sizeof(regtree)/sizeof(regtree[0]))
6215                 return key_senderror(so, m, EINVAL);
6216
6217         /* When SATYPE_UNSPEC is specified, only return sabd_supported. */
6218         if (mhp->msg->sadb_msg_satype == SADB_SATYPE_UNSPEC)
6219                 goto setmsg;
6220
6221         /* check whether existing or not */
6222         LIST_FOREACH(reg, &regtree[mhp->msg->sadb_msg_satype], chain) {
6223                 if (reg->so == so) {
6224                         ipseclog((LOG_DEBUG, "key_register: socket exists already.\n"));
6225                         return key_senderror(so, m, EEXIST);
6226                 }
6227         }
6228
6229         /* create regnode */
6230         KMALLOC(newreg, struct secreg *, sizeof(*newreg));
6231         if (newreg == NULL) {
6232                 ipseclog((LOG_DEBUG, "key_register: No more memory.\n"));
6233                 return key_senderror(so, m, ENOBUFS);
6234         }
6235         bzero((caddr_t)newreg, sizeof(*newreg));
6236
6237         newreg->so = so;
6238         ((struct keycb *)sotorawcb(so))->kp_registered++;
6239
6240         /* add regnode to regtree. */
6241         LIST_INSERT_HEAD(&regtree[mhp->msg->sadb_msg_satype], newreg, chain);
6242
6243   setmsg:
6244     {
6245         struct mbuf *n;
6246         struct sadb_msg *newmsg;
6247         struct sadb_supported *sup;
6248         u_int len, alen, elen;
6249         int off;
6250         int i;
6251         struct sadb_alg *alg;
6252
6253         /* create new sadb_msg to reply. */
6254         alen = 0;
6255         for (i = 1; i <= SADB_AALG_MAX; i++) {
6256                 if (ah_algorithm_lookup(i))
6257                         alen += sizeof(struct sadb_alg);
6258         }
6259         if (alen)
6260                 alen += sizeof(struct sadb_supported);
6261         elen = 0;
6262 #ifdef IPSEC_ESP
6263         for (i = 1; i <= SADB_EALG_MAX; i++) {
6264                 if (esp_algorithm_lookup(i))
6265                         elen += sizeof(struct sadb_alg);
6266         }
6267         if (elen)
6268                 elen += sizeof(struct sadb_supported);
6269 #endif
6270
6271         len = sizeof(struct sadb_msg) + alen + elen;
6272
6273         if (len > MCLBYTES)
6274                 return key_senderror(so, m, ENOBUFS);
6275
6276         MGETHDR(n, M_DONTWAIT, MT_DATA);
6277         if (len > MHLEN) {
6278                 MCLGET(n, M_DONTWAIT);
6279                 if ((n->m_flags & M_EXT) == 0) {
6280                         m_freem(n);
6281                         n = NULL;
6282                 }
6283         }
6284         if (!n)
6285                 return key_senderror(so, m, ENOBUFS);
6286
6287         n->m_pkthdr.len = n->m_len = len;
6288         n->m_next = NULL;
6289         off = 0;
6290
6291         m_copydata(m, 0, sizeof(struct sadb_msg), mtod(n, caddr_t) + off);
6292         newmsg = mtod(n, struct sadb_msg *);
6293         newmsg->sadb_msg_errno = 0;
6294         newmsg->sadb_msg_len = PFKEY_UNIT64(len);
6295         off += PFKEY_ALIGN8(sizeof(struct sadb_msg));
6296
6297         /* for authentication algorithm */
6298         if (alen) {
6299                 sup = (struct sadb_supported *)(mtod(n, caddr_t) + off);
6300                 sup->sadb_supported_len = PFKEY_UNIT64(alen);
6301                 sup->sadb_supported_exttype = SADB_EXT_SUPPORTED_AUTH;
6302                 off += PFKEY_ALIGN8(sizeof(*sup));
6303
6304                 for (i = 1; i <= SADB_AALG_MAX; i++) {
6305                         const struct ah_algorithm *aalgo;
6306
6307                         aalgo = ah_algorithm_lookup(i);
6308                         if (!aalgo)
6309                                 continue;
6310                         alg = (struct sadb_alg *)(mtod(n, caddr_t) + off);
6311                         alg->sadb_alg_id = i;
6312                         alg->sadb_alg_ivlen = 0;
6313                         alg->sadb_alg_minbits = aalgo->keymin;
6314                         alg->sadb_alg_maxbits = aalgo->keymax;
6315                         off += PFKEY_ALIGN8(sizeof(*alg));
6316                 }
6317         }
6318
6319 #ifdef IPSEC_ESP
6320         /* for encryption algorithm */
6321         if (elen) {
6322                 sup = (struct sadb_supported *)(mtod(n, caddr_t) + off);
6323                 sup->sadb_supported_len = PFKEY_UNIT64(elen);
6324                 sup->sadb_supported_exttype = SADB_EXT_SUPPORTED_ENCRYPT;
6325                 off += PFKEY_ALIGN8(sizeof(*sup));
6326
6327                 for (i = 1; i <= SADB_EALG_MAX; i++) {
6328                         const struct esp_algorithm *ealgo;
6329
6330                         ealgo = esp_algorithm_lookup(i);
6331                         if (!ealgo)
6332                                 continue;
6333                         alg = (struct sadb_alg *)(mtod(n, caddr_t) + off);
6334                         alg->sadb_alg_id = i;
6335                         if (ealgo && ealgo->ivlen) {
6336                                 /*
6337                                  * give NULL to get the value preferred by
6338                                  * algorithm XXX SADB_X_EXT_DERIV ?
6339                                  */
6340                                 alg->sadb_alg_ivlen =
6341                                     (*ealgo->ivlen)(ealgo, NULL);
6342                         } else
6343                                 alg->sadb_alg_ivlen = 0;
6344                         alg->sadb_alg_minbits = ealgo->keymin;
6345                         alg->sadb_alg_maxbits = ealgo->keymax;
6346                         off += PFKEY_ALIGN8(sizeof(struct sadb_alg));
6347                 }
6348         }
6349 #endif
6350
6351 #ifdef DIGAGNOSTIC
6352         if (off != len)
6353                 panic("length assumption failed in key_register");
6354 #endif
6355
6356         m_freem(m);
6357         return key_sendup_mbuf(so, n, KEY_SENDUP_REGISTERED);
6358     }
6359 }
6360
6361 /*
6362  * free secreg entry registered.
6363  * XXX: I want to do free a socket marked done SADB_RESIGER to socket.
6364  */
6365 void
6366 key_freereg(so)
6367         struct socket *so;
6368 {
6369         struct secreg *reg;
6370         int i;
6371
6372         /* sanity check */
6373         if (so == NULL)
6374                 panic("key_freereg: NULL pointer is passed.\n");
6375
6376         /*
6377          * check whether existing or not.
6378          * check all type of SA, because there is a potential that
6379          * one socket is registered to multiple type of SA.
6380          */
6381         for (i = 0; i <= SADB_SATYPE_MAX; i++) {
6382                 LIST_FOREACH(reg, &regtree[i], chain) {
6383                         if (reg->so == so
6384                          && __LIST_CHAINED(reg)) {
6385                                 LIST_REMOVE(reg, chain);
6386                                 KFREE(reg);
6387                                 break;
6388                         }
6389                 }
6390         }
6391         
6392         return;
6393 }
6394
6395 /*
6396  * SADB_EXPIRE processing
6397  * send
6398  *   <base, SA, SA2, lifetime(C and one of HS), address(SD)>
6399  * to KMD by PF_KEY.
6400  * NOTE: We send only soft lifetime extension.
6401  *
6402  * OUT: 0       : succeed
6403  *      others  : error number
6404  */
6405 static int
6406 key_expire(sav)
6407         struct secasvar *sav;
6408 {
6409         int s;
6410         int satype;
6411         struct mbuf *result = NULL, *m;
6412         int len;
6413         int error = -1;
6414         struct sadb_lifetime *lt;
6415
6416         /* XXX: Why do we lock ? */
6417         s = splnet();   /*called from softclock()*/
6418
6419         /* sanity check */
6420         if (sav == NULL)
6421                 panic("key_expire: NULL pointer is passed.\n");
6422         if (sav->sah == NULL)
6423                 panic("key_expire: Why was SA index in SA NULL.\n");
6424         if ((satype = key_proto2satype(sav->sah->saidx.proto)) == 0)
6425                 panic("key_expire: invalid proto is passed.\n");
6426
6427         /* set msg header */
6428         m = key_setsadbmsg(SADB_EXPIRE, 0, satype, sav->seq, 0, sav->refcnt);
6429         if (!m) {
6430                 error = ENOBUFS;
6431                 goto fail;
6432         }
6433         result = m;
6434
6435         /* create SA extension */
6436         m = key_setsadbsa(sav);
6437         if (!m) {
6438                 error = ENOBUFS;
6439                 goto fail;
6440         }
6441         m_cat(result, m);
6442
6443         /* create SA extension */
6444         m = key_setsadbxsa2(sav->sah->saidx.mode,
6445                         sav->replay ? sav->replay->count : 0,
6446                         sav->sah->saidx.reqid);
6447         if (!m) {
6448                 error = ENOBUFS;
6449                 goto fail;
6450         }
6451         m_cat(result, m);
6452
6453         /* create lifetime extension (current and soft) */
6454         len = PFKEY_ALIGN8(sizeof(*lt)) * 2;
6455         m = key_alloc_mbuf(len);
6456         if (!m || m->m_next) {  /*XXX*/
6457                 if (m)
6458                         m_freem(m);
6459                 error = ENOBUFS;
6460                 goto fail;
6461         }
6462         bzero(mtod(m, caddr_t), len);
6463         lt = mtod(m, struct sadb_lifetime *);
6464         lt->sadb_lifetime_len = PFKEY_UNIT64(sizeof(struct sadb_lifetime));
6465         lt->sadb_lifetime_exttype = SADB_EXT_LIFETIME_CURRENT;
6466         lt->sadb_lifetime_allocations = sav->lft_c->sadb_lifetime_allocations;
6467         lt->sadb_lifetime_bytes = sav->lft_c->sadb_lifetime_bytes;
6468         lt->sadb_lifetime_addtime = sav->lft_c->sadb_lifetime_addtime;
6469         lt->sadb_lifetime_usetime = sav->lft_c->sadb_lifetime_usetime;
6470         lt = (struct sadb_lifetime *)(mtod(m, caddr_t) + len / 2);
6471         bcopy(sav->lft_s, lt, sizeof(*lt));
6472         m_cat(result, m);
6473
6474         /* set sadb_address for source */
6475         m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
6476             (struct sockaddr *)&sav->sah->saidx.src,
6477             FULLMASK, IPSEC_ULPROTO_ANY);
6478         if (!m) {
6479                 error = ENOBUFS;
6480                 goto fail;
6481         }
6482         m_cat(result, m);
6483
6484         /* set sadb_address for destination */
6485         m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
6486             (struct sockaddr *)&sav->sah->saidx.dst,
6487             FULLMASK, IPSEC_ULPROTO_ANY);
6488         if (!m) {
6489                 error = ENOBUFS;
6490                 goto fail;
6491         }
6492         m_cat(result, m);
6493
6494         if ((result->m_flags & M_PKTHDR) == 0) {
6495                 error = EINVAL;
6496                 goto fail;
6497         }
6498
6499         if (result->m_len < sizeof(struct sadb_msg)) {
6500                 result = m_pullup(result, sizeof(struct sadb_msg));
6501                 if (result == NULL) {
6502                         error = ENOBUFS;
6503                         goto fail;
6504                 }
6505         }
6506
6507         result->m_pkthdr.len = 0;
6508         for (m = result; m; m = m->m_next)
6509                 result->m_pkthdr.len += m->m_len;
6510
6511         mtod(result, struct sadb_msg *)->sadb_msg_len =
6512             PFKEY_UNIT64(result->m_pkthdr.len);
6513
6514         splx(s);
6515         return key_sendup_mbuf(NULL, result, KEY_SENDUP_REGISTERED);
6516
6517  fail:
6518         if (result)
6519                 m_freem(result);
6520         splx(s);
6521         return error;
6522 }
6523
6524 /*
6525  * SADB_FLUSH processing
6526  * receive
6527  *   <base>
6528  * from the ikmpd, and free all entries in secastree.
6529  * and send,
6530  *   <base>
6531  * to the ikmpd.
6532  * NOTE: to do is only marking SADB_SASTATE_DEAD.
6533  *
6534  * m will always be freed.
6535  */
6536 static int
6537 key_flush(so, m, mhp)
6538         struct socket *so;
6539         struct mbuf *m;
6540         const struct sadb_msghdr *mhp;
6541 {
6542         struct sadb_msg *newmsg;
6543         struct secashead *sah, *nextsah;
6544         struct secasvar *sav, *nextsav;
6545         u_int16_t proto;
6546         u_int8_t state;
6547         u_int stateidx;
6548
6549         /* sanity check */
6550         if (so == NULL || mhp == NULL || mhp->msg == NULL)
6551                 panic("key_flush: NULL pointer is passed.\n");
6552
6553         /* map satype to proto */
6554         if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
6555                 ipseclog((LOG_DEBUG, "key_flush: invalid satype is passed.\n"));
6556                 return key_senderror(so, m, EINVAL);
6557         }
6558
6559         /* no SATYPE specified, i.e. flushing all SA. */
6560         for (sah = LIST_FIRST(&sahtree);
6561              sah != NULL;
6562              sah = nextsah) {
6563                 nextsah = LIST_NEXT(sah, chain);
6564
6565                 if (mhp->msg->sadb_msg_satype != SADB_SATYPE_UNSPEC
6566                  && proto != sah->saidx.proto)
6567                         continue;
6568
6569                 for (stateidx = 0;
6570                      stateidx < _ARRAYLEN(saorder_state_alive);
6571                      stateidx++) {
6572                         state = saorder_state_any[stateidx];
6573                         for (sav = LIST_FIRST(&sah->savtree[state]);
6574                              sav != NULL;
6575                              sav = nextsav) {
6576
6577                                 nextsav = LIST_NEXT(sav, chain);
6578
6579                                 key_sa_chgstate(sav, SADB_SASTATE_DEAD);
6580                                 key_freesav(sav);
6581                         }
6582                 }
6583
6584                 sah->state = SADB_SASTATE_DEAD;
6585         }
6586
6587         if (m->m_len < sizeof(struct sadb_msg) ||
6588             sizeof(struct sadb_msg) > m->m_len + M_TRAILINGSPACE(m)) {
6589                 ipseclog((LOG_DEBUG, "key_flush: No more memory.\n"));
6590                 return key_senderror(so, m, ENOBUFS);
6591         }
6592
6593         if (m->m_next)
6594                 m_freem(m->m_next);
6595         m->m_next = NULL;
6596         m->m_pkthdr.len = m->m_len = sizeof(struct sadb_msg);
6597         newmsg = mtod(m, struct sadb_msg *);
6598         newmsg->sadb_msg_errno = 0;
6599         newmsg->sadb_msg_len = PFKEY_UNIT64(m->m_pkthdr.len);
6600
6601         return key_sendup_mbuf(so, m, KEY_SENDUP_ALL);
6602 }
6603
6604 /*
6605  * SADB_DUMP processing
6606  * dump all entries including status of DEAD in SAD.
6607  * receive
6608  *   <base>
6609  * from the ikmpd, and dump all secasvar leaves
6610  * and send,
6611  *   <base> .....
6612  * to the ikmpd.
6613  *
6614  * m will always be freed.
6615  */
6616 static int
6617 key_dump(so, m, mhp)
6618         struct socket *so;
6619         struct mbuf *m;
6620         const struct sadb_msghdr *mhp;
6621 {
6622         struct secashead *sah;
6623         struct secasvar *sav;
6624         u_int16_t proto;
6625         u_int stateidx;
6626         u_int8_t satype;
6627         u_int8_t state;
6628         int cnt;
6629         struct sadb_msg *newmsg;
6630         struct mbuf *n;
6631
6632         /* sanity check */
6633         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
6634                 panic("key_dump: NULL pointer is passed.\n");
6635
6636         /* map satype to proto */
6637         if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
6638                 ipseclog((LOG_DEBUG, "key_dump: invalid satype is passed.\n"));
6639                 return key_senderror(so, m, EINVAL);
6640         }
6641
6642         /* count sav entries to be sent to the userland. */
6643         cnt = 0;
6644         LIST_FOREACH(sah, &sahtree, chain) {
6645                 if (mhp->msg->sadb_msg_satype != SADB_SATYPE_UNSPEC
6646                  && proto != sah->saidx.proto)
6647                         continue;
6648
6649                 for (stateidx = 0;
6650                      stateidx < _ARRAYLEN(saorder_state_any);
6651                      stateidx++) {
6652                         state = saorder_state_any[stateidx];
6653                         LIST_FOREACH(sav, &sah->savtree[state], chain) {
6654                                 cnt++;
6655                         }
6656                 }
6657         }
6658
6659         if (cnt == 0)
6660                 return key_senderror(so, m, ENOENT);
6661
6662         /* send this to the userland, one at a time. */
6663         newmsg = NULL;
6664         LIST_FOREACH(sah, &sahtree, chain) {
6665                 if (mhp->msg->sadb_msg_satype != SADB_SATYPE_UNSPEC
6666                  && proto != sah->saidx.proto)
6667                         continue;
6668
6669                 /* map proto to satype */
6670                 if ((satype = key_proto2satype(sah->saidx.proto)) == 0) {
6671                         ipseclog((LOG_DEBUG, "key_dump: there was invalid proto in SAD.\n"));
6672                         return key_senderror(so, m, EINVAL);
6673                 }
6674
6675                 for (stateidx = 0;
6676                      stateidx < _ARRAYLEN(saorder_state_any);
6677                      stateidx++) {
6678                         state = saorder_state_any[stateidx];
6679                         LIST_FOREACH(sav, &sah->savtree[state], chain) {
6680                                 n = key_setdumpsa(sav, SADB_DUMP, satype,
6681                                     --cnt, mhp->msg->sadb_msg_pid);
6682                                 if (!n)
6683                                         return key_senderror(so, m, ENOBUFS);
6684
6685                                 key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
6686                         }
6687                 }
6688         }
6689
6690         m_freem(m);
6691         return 0;
6692 }
6693
6694 /*
6695  * SADB_X_PROMISC processing
6696  *
6697  * m will always be freed.
6698  */
6699 static int
6700 key_promisc(so, m, mhp)
6701         struct socket *so;
6702         struct mbuf *m;
6703         const struct sadb_msghdr *mhp;
6704 {
6705         int olen;
6706
6707         /* sanity check */
6708         if (so == NULL || m == NULL || mhp == NULL || mhp->msg == NULL)
6709                 panic("key_promisc: NULL pointer is passed.\n");
6710
6711         olen = PFKEY_UNUNIT64(mhp->msg->sadb_msg_len);
6712
6713         if (olen < sizeof(struct sadb_msg)) {
6714 #if 1
6715                 return key_senderror(so, m, EINVAL);
6716 #else
6717                 m_freem(m);
6718                 return 0;
6719 #endif
6720         } else if (olen == sizeof(struct sadb_msg)) {
6721                 /* enable/disable promisc mode */
6722                 struct keycb *kp;
6723
6724                 if ((kp = (struct keycb *)sotorawcb(so)) == NULL)
6725                         return key_senderror(so, m, EINVAL);
6726                 mhp->msg->sadb_msg_errno = 0;
6727                 switch (mhp->msg->sadb_msg_satype) {
6728                 case 0:
6729                 case 1:
6730                         kp->kp_promisc = mhp->msg->sadb_msg_satype;
6731                         break;
6732                 default:
6733                         return key_senderror(so, m, EINVAL);
6734                 }
6735
6736                 /* send the original message back to everyone */
6737                 mhp->msg->sadb_msg_errno = 0;
6738                 return key_sendup_mbuf(so, m, KEY_SENDUP_ALL);
6739         } else {
6740                 /* send packet as is */
6741
6742                 m_adj(m, PFKEY_ALIGN8(sizeof(struct sadb_msg)));
6743
6744                 /* TODO: if sadb_msg_seq is specified, send to specific pid */
6745                 return key_sendup_mbuf(so, m, KEY_SENDUP_ALL);
6746         }
6747 }
6748
6749 static int (*key_typesw[]) __P((struct socket *, struct mbuf *,
6750                 const struct sadb_msghdr *)) = {
6751         NULL,           /* SADB_RESERVED */
6752         key_getspi,     /* SADB_GETSPI */
6753         key_update,     /* SADB_UPDATE */
6754         key_add,        /* SADB_ADD */
6755         key_delete,     /* SADB_DELETE */
6756         key_get,        /* SADB_GET */
6757         key_acquire2,   /* SADB_ACQUIRE */
6758         key_register,   /* SADB_REGISTER */
6759         NULL,           /* SADB_EXPIRE */
6760         key_flush,      /* SADB_FLUSH */
6761         key_dump,       /* SADB_DUMP */
6762         key_promisc,    /* SADB_X_PROMISC */
6763         NULL,           /* SADB_X_PCHANGE */
6764         key_spdadd,     /* SADB_X_SPDUPDATE */
6765         key_spdadd,     /* SADB_X_SPDADD */
6766         key_spddelete,  /* SADB_X_SPDDELETE */
6767         key_spdget,     /* SADB_X_SPDGET */
6768         NULL,           /* SADB_X_SPDACQUIRE */
6769         key_spddump,    /* SADB_X_SPDDUMP */
6770         key_spdflush,   /* SADB_X_SPDFLUSH */
6771         key_spdadd,     /* SADB_X_SPDSETIDX */
6772         NULL,           /* SADB_X_SPDEXPIRE */
6773         key_spddelete2, /* SADB_X_SPDDELETE2 */
6774 };
6775
6776 /*
6777  * parse sadb_msg buffer to process PFKEYv2,
6778  * and create a data to response if needed.
6779  * I think to be dealed with mbuf directly.
6780  * IN:
6781  *     msgp  : pointer to pointer to a received buffer pulluped.
6782  *             This is rewrited to response.
6783  *     so    : pointer to socket.
6784  * OUT:
6785  *    length for buffer to send to user process.
6786  */
6787 int
6788 key_parse(m, so)
6789         struct mbuf *m;
6790         struct socket *so;
6791 {
6792         struct sadb_msg *msg;
6793         struct sadb_msghdr mh;
6794         u_int orglen;
6795         int error;
6796         int target;
6797
6798         /* sanity check */
6799         if (m == NULL || so == NULL)
6800                 panic("key_parse: NULL pointer is passed.\n");
6801
6802 #if 0   /*kdebug_sadb assumes msg in linear buffer*/
6803         KEYDEBUG(KEYDEBUG_KEY_DUMP,
6804                 ipseclog((LOG_DEBUG, "key_parse: passed sadb_msg\n"));
6805                 kdebug_sadb(msg));
6806 #endif
6807
6808         if (m->m_len < sizeof(struct sadb_msg)) {
6809                 m = m_pullup(m, sizeof(struct sadb_msg));
6810                 if (!m)
6811                         return ENOBUFS;
6812         }
6813         msg = mtod(m, struct sadb_msg *);
6814         orglen = PFKEY_UNUNIT64(msg->sadb_msg_len);
6815         target = KEY_SENDUP_ONE;
6816
6817         if ((m->m_flags & M_PKTHDR) == 0 ||
6818             m->m_pkthdr.len != m->m_pkthdr.len) {
6819                 ipseclog((LOG_DEBUG, "key_parse: invalid message length.\n"));
6820                 pfkeystat.out_invlen++;
6821                 error = EINVAL;
6822                 goto senderror;
6823         }
6824
6825         if (msg->sadb_msg_version != PF_KEY_V2) {
6826                 ipseclog((LOG_DEBUG,
6827                     "key_parse: PF_KEY version %u is mismatched.\n",
6828                     msg->sadb_msg_version));
6829                 pfkeystat.out_invver++;
6830                 error = EINVAL;
6831                 goto senderror;
6832         }
6833
6834         if (msg->sadb_msg_type > SADB_MAX) {
6835                 ipseclog((LOG_DEBUG, "key_parse: invalid type %u is passed.\n",
6836                     msg->sadb_msg_type));
6837                 pfkeystat.out_invmsgtype++;
6838                 error = EINVAL;
6839                 goto senderror;
6840         }
6841
6842         /* for old-fashioned code - should be nuked */
6843         if (m->m_pkthdr.len > MCLBYTES) {
6844                 m_freem(m);
6845                 return ENOBUFS;
6846         }
6847         if (m->m_next) {
6848                 struct mbuf *n;
6849
6850                 MGETHDR(n, M_DONTWAIT, MT_DATA);
6851                 if (n && m->m_pkthdr.len > MHLEN) {
6852                         MCLGET(n, M_DONTWAIT);
6853                         if ((n->m_flags & M_EXT) == 0) {
6854                                 m_free(n);
6855                                 n = NULL;
6856                         }
6857                 }
6858                 if (!n) {
6859                         m_freem(m);
6860                         return ENOBUFS;
6861                 }
6862                 m_copydata(m, 0, m->m_pkthdr.len, mtod(n, caddr_t));
6863                 n->m_pkthdr.len = n->m_len = m->m_pkthdr.len;
6864                 n->m_next = NULL;
6865                 m_freem(m);
6866                 m = n;
6867         }
6868
6869         /* align the mbuf chain so that extensions are in contiguous region. */
6870         error = key_align(m, &mh);
6871         if (error)
6872                 return error;
6873
6874         if (m->m_next) {        /*XXX*/
6875                 m_freem(m);
6876                 return ENOBUFS;
6877         }
6878
6879         msg = mh.msg;
6880
6881         /* check SA type */
6882         switch (msg->sadb_msg_satype) {
6883         case SADB_SATYPE_UNSPEC:
6884                 switch (msg->sadb_msg_type) {
6885                 case SADB_GETSPI:
6886                 case SADB_UPDATE:
6887                 case SADB_ADD:
6888                 case SADB_DELETE:
6889                 case SADB_GET:
6890                 case SADB_ACQUIRE:
6891                 case SADB_EXPIRE:
6892                         ipseclog((LOG_DEBUG, "key_parse: must specify satype "
6893                             "when msg type=%u.\n", msg->sadb_msg_type));
6894                         pfkeystat.out_invsatype++;
6895                         error = EINVAL;
6896                         goto senderror;
6897                 }
6898                 break;
6899         case SADB_SATYPE_AH:
6900         case SADB_SATYPE_ESP:
6901         case SADB_X_SATYPE_IPCOMP:
6902                 switch (msg->sadb_msg_type) {
6903                 case SADB_X_SPDADD:
6904                 case SADB_X_SPDDELETE:
6905                 case SADB_X_SPDGET:
6906                 case SADB_X_SPDDUMP:
6907                 case SADB_X_SPDFLUSH:
6908                 case SADB_X_SPDSETIDX:
6909                 case SADB_X_SPDUPDATE:
6910                 case SADB_X_SPDDELETE2:
6911                         ipseclog((LOG_DEBUG, "key_parse: illegal satype=%u\n",
6912                             msg->sadb_msg_type));
6913                         pfkeystat.out_invsatype++;
6914                         error = EINVAL;
6915                         goto senderror;
6916                 }
6917                 break;
6918         case SADB_SATYPE_RSVP:
6919         case SADB_SATYPE_OSPFV2:
6920         case SADB_SATYPE_RIPV2:
6921         case SADB_SATYPE_MIP:
6922                 ipseclog((LOG_DEBUG, "key_parse: type %u isn't supported.\n",
6923                     msg->sadb_msg_satype));
6924                 pfkeystat.out_invsatype++;
6925                 error = EOPNOTSUPP;
6926                 goto senderror;
6927         case 1: /* XXX: What does it do? */
6928                 if (msg->sadb_msg_type == SADB_X_PROMISC)
6929                         break;
6930                 /*FALLTHROUGH*/
6931         default:
6932                 ipseclog((LOG_DEBUG, "key_parse: invalid type %u is passed.\n",
6933                     msg->sadb_msg_satype));
6934                 pfkeystat.out_invsatype++;
6935                 error = EINVAL;
6936                 goto senderror;
6937         }
6938
6939         /* check field of upper layer protocol and address family */
6940         if (mh.ext[SADB_EXT_ADDRESS_SRC] != NULL
6941          && mh.ext[SADB_EXT_ADDRESS_DST] != NULL) {
6942                 struct sadb_address *src0, *dst0;
6943                 u_int plen;
6944
6945                 src0 = (struct sadb_address *)(mh.ext[SADB_EXT_ADDRESS_SRC]);
6946                 dst0 = (struct sadb_address *)(mh.ext[SADB_EXT_ADDRESS_DST]);
6947
6948                 /* check upper layer protocol */
6949                 if (src0->sadb_address_proto != dst0->sadb_address_proto) {
6950                         ipseclog((LOG_DEBUG, "key_parse: upper layer protocol mismatched.\n"));
6951                         pfkeystat.out_invaddr++;
6952                         error = EINVAL;
6953                         goto senderror;
6954                 }
6955
6956                 /* check family */
6957                 if (PFKEY_ADDR_SADDR(src0)->sa_family !=
6958                     PFKEY_ADDR_SADDR(dst0)->sa_family) {
6959                         ipseclog((LOG_DEBUG, "key_parse: address family mismatched.\n"));
6960                         pfkeystat.out_invaddr++;
6961                         error = EINVAL;
6962                         goto senderror;
6963                 }
6964                 if (PFKEY_ADDR_SADDR(src0)->sa_len !=
6965                     PFKEY_ADDR_SADDR(dst0)->sa_len) {
6966                         ipseclog((LOG_DEBUG,
6967                             "key_parse: address struct size mismatched.\n"));
6968                         pfkeystat.out_invaddr++;
6969                         error = EINVAL;
6970                         goto senderror;
6971                 }
6972
6973                 switch (PFKEY_ADDR_SADDR(src0)->sa_family) {
6974                 case AF_INET:
6975                         if (PFKEY_ADDR_SADDR(src0)->sa_len !=
6976                             sizeof(struct sockaddr_in)) {
6977                                 pfkeystat.out_invaddr++;
6978                                 error = EINVAL;
6979                                 goto senderror;
6980                         }
6981                         break;
6982                 case AF_INET6:
6983                         if (PFKEY_ADDR_SADDR(src0)->sa_len !=
6984                             sizeof(struct sockaddr_in6)) {
6985                                 pfkeystat.out_invaddr++;
6986                                 error = EINVAL;
6987                                 goto senderror;
6988                         }
6989                         break;
6990                 default:
6991                         ipseclog((LOG_DEBUG,
6992                             "key_parse: unsupported address family.\n"));
6993                         pfkeystat.out_invaddr++;
6994                         error = EAFNOSUPPORT;
6995                         goto senderror;
6996                 }
6997
6998                 switch (PFKEY_ADDR_SADDR(src0)->sa_family) {
6999                 case AF_INET:
7000                         plen = sizeof(struct in_addr) << 3;
7001                         break;
7002                 case AF_INET6:
7003                         plen = sizeof(struct in6_addr) << 3;
7004                         break;
7005                 default:
7006                         plen = 0;       /*fool gcc*/
7007                         break;
7008                 }
7009
7010                 /* check max prefix length */
7011                 if (src0->sadb_address_prefixlen > plen ||
7012                     dst0->sadb_address_prefixlen > plen) {
7013                         ipseclog((LOG_DEBUG,
7014                             "key_parse: illegal prefixlen.\n"));
7015                         pfkeystat.out_invaddr++;
7016                         error = EINVAL;
7017                         goto senderror;
7018                 }
7019
7020                 /*
7021                  * prefixlen == 0 is valid because there can be a case when
7022                  * all addresses are matched.
7023                  */
7024         }
7025
7026         if (msg->sadb_msg_type >= sizeof(key_typesw)/sizeof(key_typesw[0]) ||
7027             key_typesw[msg->sadb_msg_type] == NULL) {
7028                 pfkeystat.out_invmsgtype++;
7029                 error = EINVAL;
7030                 goto senderror;
7031         }
7032
7033         return (*key_typesw[msg->sadb_msg_type])(so, m, &mh);
7034
7035 senderror:
7036         msg->sadb_msg_errno = error;
7037         return key_sendup_mbuf(so, m, target);
7038 }
7039
7040 static int
7041 key_senderror(so, m, code)
7042         struct socket *so;
7043         struct mbuf *m;
7044         int code;
7045 {
7046         struct sadb_msg *msg;
7047
7048         if (m->m_len < sizeof(struct sadb_msg))
7049                 panic("invalid mbuf passed to key_senderror");
7050
7051         msg = mtod(m, struct sadb_msg *);
7052         msg->sadb_msg_errno = code;
7053         return key_sendup_mbuf(so, m, KEY_SENDUP_ONE);
7054 }
7055
7056 /*
7057  * set the pointer to each header into message buffer.
7058  * m will be freed on error.
7059  * XXX larger-than-MCLBYTES extension?
7060  */
7061 static int
7062 key_align(m, mhp)
7063         struct mbuf *m;
7064         struct sadb_msghdr *mhp;
7065 {
7066         struct mbuf *n;
7067         struct sadb_ext *ext;
7068         size_t off, end;
7069         int extlen;
7070         int toff;
7071
7072         /* sanity check */
7073         if (m == NULL || mhp == NULL)
7074                 panic("key_align: NULL pointer is passed.\n");
7075         if (m->m_len < sizeof(struct sadb_msg))
7076                 panic("invalid mbuf passed to key_align");
7077
7078         /* initialize */
7079         bzero(mhp, sizeof(*mhp));
7080
7081         mhp->msg = mtod(m, struct sadb_msg *);
7082         mhp->ext[0] = (struct sadb_ext *)mhp->msg;      /*XXX backward compat */
7083
7084         end = PFKEY_UNUNIT64(mhp->msg->sadb_msg_len);
7085         extlen = end;   /*just in case extlen is not updated*/
7086         for (off = sizeof(struct sadb_msg); off < end; off += extlen) {
7087                 n = m_pulldown(m, off, sizeof(struct sadb_ext), &toff);
7088                 if (!n) {
7089                         /* m is already freed */
7090                         return ENOBUFS;
7091                 }
7092                 ext = (struct sadb_ext *)(mtod(n, caddr_t) + toff);
7093
7094                 /* set pointer */
7095                 switch (ext->sadb_ext_type) {
7096                 case SADB_EXT_SA:
7097                 case SADB_EXT_ADDRESS_SRC:
7098                 case SADB_EXT_ADDRESS_DST:
7099                 case SADB_EXT_ADDRESS_PROXY:
7100                 case SADB_EXT_LIFETIME_CURRENT:
7101                 case SADB_EXT_LIFETIME_HARD:
7102                 case SADB_EXT_LIFETIME_SOFT:
7103                 case SADB_EXT_KEY_AUTH:
7104                 case SADB_EXT_KEY_ENCRYPT:
7105                 case SADB_EXT_IDENTITY_SRC:
7106                 case SADB_EXT_IDENTITY_DST:
7107                 case SADB_EXT_SENSITIVITY:
7108                 case SADB_EXT_PROPOSAL:
7109                 case SADB_EXT_SUPPORTED_AUTH:
7110                 case SADB_EXT_SUPPORTED_ENCRYPT:
7111                 case SADB_EXT_SPIRANGE:
7112                 case SADB_X_EXT_POLICY:
7113                 case SADB_X_EXT_SA2:
7114                         /* duplicate check */
7115                         /*
7116                          * XXX Are there duplication payloads of either
7117                          * KEY_AUTH or KEY_ENCRYPT ?
7118                          */
7119                         if (mhp->ext[ext->sadb_ext_type] != NULL) {
7120                                 ipseclog((LOG_DEBUG,
7121                                     "key_align: duplicate ext_type %u "
7122                                     "is passed.\n", ext->sadb_ext_type));
7123                                 m_freem(m);
7124                                 pfkeystat.out_dupext++;
7125                                 return EINVAL;
7126                         }
7127                         break;
7128                 default:
7129                         ipseclog((LOG_DEBUG,
7130                             "key_align: invalid ext_type %u is passed.\n",
7131                             ext->sadb_ext_type));
7132                         m_freem(m);
7133                         pfkeystat.out_invexttype++;
7134                         return EINVAL;
7135                 }
7136
7137                 extlen = PFKEY_UNUNIT64(ext->sadb_ext_len);
7138
7139                 if (key_validate_ext(ext, extlen)) {
7140                         m_freem(m);
7141                         pfkeystat.out_invlen++;
7142                         return EINVAL;
7143                 }
7144
7145                 n = m_pulldown(m, off, extlen, &toff);
7146                 if (!n) {
7147                         /* m is already freed */
7148                         return ENOBUFS;
7149                 }
7150                 ext = (struct sadb_ext *)(mtod(n, caddr_t) + toff);
7151
7152                 mhp->ext[ext->sadb_ext_type] = ext;
7153                 mhp->extoff[ext->sadb_ext_type] = off;
7154                 mhp->extlen[ext->sadb_ext_type] = extlen;
7155         }
7156
7157         if (off != end) {
7158                 m_freem(m);
7159                 pfkeystat.out_invlen++;
7160                 return EINVAL;
7161         }
7162
7163         return 0;
7164 }
7165
7166 static int
7167 key_validate_ext(ext, len)
7168         const struct sadb_ext *ext;
7169         int len;
7170 {
7171         struct sockaddr *sa;
7172         enum { NONE, ADDR } checktype = NONE;
7173         int baselen;
7174         const int sal = offsetof(struct sockaddr, sa_len) + sizeof(sa->sa_len);
7175
7176         if (len != PFKEY_UNUNIT64(ext->sadb_ext_len))
7177                 return EINVAL;
7178
7179         /* if it does not match minimum/maximum length, bail */
7180         if (ext->sadb_ext_type >= sizeof(minsize) / sizeof(minsize[0]) ||
7181             ext->sadb_ext_type >= sizeof(maxsize) / sizeof(maxsize[0]))
7182                 return EINVAL;
7183         if (!minsize[ext->sadb_ext_type] || len < minsize[ext->sadb_ext_type])
7184                 return EINVAL;
7185         if (maxsize[ext->sadb_ext_type] && len > maxsize[ext->sadb_ext_type])
7186                 return EINVAL;
7187
7188         /* more checks based on sadb_ext_type XXX need more */
7189         switch (ext->sadb_ext_type) {
7190         case SADB_EXT_ADDRESS_SRC:
7191         case SADB_EXT_ADDRESS_DST:
7192         case SADB_EXT_ADDRESS_PROXY:
7193                 baselen = PFKEY_ALIGN8(sizeof(struct sadb_address));
7194                 checktype = ADDR;
7195                 break;
7196         case SADB_EXT_IDENTITY_SRC:
7197         case SADB_EXT_IDENTITY_DST:
7198                 if (((struct sadb_ident *)ext)->sadb_ident_type ==
7199                     SADB_X_IDENTTYPE_ADDR) {
7200                         baselen = PFKEY_ALIGN8(sizeof(struct sadb_ident));
7201                         checktype = ADDR;
7202                 } else
7203                         checktype = NONE;
7204                 break;
7205         default:
7206                 checktype = NONE;
7207                 break;
7208         }
7209
7210         switch (checktype) {
7211         case NONE:
7212                 break;
7213         case ADDR:
7214                 sa = (struct sockaddr *)((caddr_t)ext + baselen);
7215                 if (len < baselen + sal)
7216                         return EINVAL;
7217                 if (baselen + PFKEY_ALIGN8(sa->sa_len) != len)
7218                         return EINVAL;
7219                 break;
7220         }
7221
7222         return 0;
7223 }
7224
7225 void
7226 key_init()
7227 {
7228         int i;
7229
7230         bzero((caddr_t)&key_cb, sizeof(key_cb));
7231
7232         for (i = 0; i < IPSEC_DIR_MAX; i++) {
7233                 LIST_INIT(&sptree[i]);
7234         }
7235
7236         LIST_INIT(&sahtree);
7237
7238         for (i = 0; i <= SADB_SATYPE_MAX; i++) {
7239                 LIST_INIT(&regtree[i]);
7240         }
7241
7242 #ifndef IPSEC_NONBLOCK_ACQUIRE
7243         LIST_INIT(&acqtree);
7244 #endif
7245         LIST_INIT(&spacqtree);
7246
7247         /* system default */
7248 #ifdef INET
7249         ip4_def_policy.policy = IPSEC_POLICY_NONE;
7250         ip4_def_policy.refcnt++;        /*never reclaim this*/
7251 #endif
7252 #ifdef INET6
7253         ip6_def_policy.policy = IPSEC_POLICY_NONE;
7254         ip6_def_policy.refcnt++;        /*never reclaim this*/
7255 #endif
7256
7257 #ifndef IPSEC_DEBUG2
7258         timeout((void *)key_timehandler, (void *)0, hz);
7259 #endif /*IPSEC_DEBUG2*/
7260
7261         /* initialize key statistics */
7262         keystat.getspi_count = 1;
7263
7264         printf("IPsec: Initialized Security Association Processing.\n");
7265
7266         return;
7267 }
7268
7269 /*
7270  * XXX: maybe This function is called after INBOUND IPsec processing.
7271  *
7272  * Special check for tunnel-mode packets.
7273  * We must make some checks for consistency between inner and outer IP header.
7274  *
7275  * xxx more checks to be provided
7276  */
7277 int
7278 key_checktunnelsanity(sav, family, src, dst)
7279         struct secasvar *sav;
7280         u_int family;
7281         caddr_t src;
7282         caddr_t dst;
7283 {
7284         /* sanity check */
7285         if (sav->sah == NULL)
7286                 panic("sav->sah == NULL at key_checktunnelsanity");
7287
7288         /* XXX: check inner IP header */
7289
7290         return 1;
7291 }
7292
7293 #if 0
7294 #define hostnamelen     strlen(hostname)
7295
7296 /*
7297  * Get FQDN for the host.
7298  * If the administrator configured hostname (by hostname(1)) without
7299  * domain name, returns nothing.
7300  */
7301 static const char *
7302 key_getfqdn()
7303 {
7304         int i;
7305         int hasdot;
7306         static char fqdn[MAXHOSTNAMELEN + 1];
7307
7308         if (!hostnamelen)
7309                 return NULL;
7310
7311         /* check if it comes with domain name. */
7312         hasdot = 0;
7313         for (i = 0; i < hostnamelen; i++) {
7314                 if (hostname[i] == '.')
7315                         hasdot++;
7316         }
7317         if (!hasdot)
7318                 return NULL;
7319
7320         /* NOTE: hostname may not be NUL-terminated. */
7321         bzero(fqdn, sizeof(fqdn));
7322         bcopy(hostname, fqdn, hostnamelen);
7323         fqdn[hostnamelen] = '\0';
7324         return fqdn;
7325 }
7326
7327 /*
7328  * get username@FQDN for the host/user.
7329  */
7330 static const char *
7331 key_getuserfqdn()
7332 {
7333         const char *host;
7334         static char userfqdn[MAXHOSTNAMELEN + MAXLOGNAME + 2];
7335         struct proc *p = curproc;
7336         char *q;
7337
7338         if (!p || !p->p_pgrp || !p->p_pgrp->pg_session)
7339                 return NULL;
7340         if (!(host = key_getfqdn()))
7341                 return NULL;
7342
7343         /* NOTE: s_login may not be-NUL terminated. */
7344         bzero(userfqdn, sizeof(userfqdn));
7345         bcopy(p->p_pgrp->pg_session->s_login, userfqdn, MAXLOGNAME);
7346         userfqdn[MAXLOGNAME] = '\0';    /* safeguard */
7347         q = userfqdn + strlen(userfqdn);
7348         *q++ = '@';
7349         bcopy(host, q, strlen(host));
7350         q += strlen(host);
7351         *q++ = '\0';
7352
7353         return userfqdn;
7354 }
7355 #endif
7356
7357 /* record data transfer on SA, and update timestamps */
7358 void
7359 key_sa_recordxfer(sav, m)
7360         struct secasvar *sav;
7361         struct mbuf *m;
7362 {
7363         if (!sav)
7364                 panic("key_sa_recordxfer called with sav == NULL");
7365         if (!m)
7366                 panic("key_sa_recordxfer called with m == NULL");
7367         if (!sav->lft_c)
7368                 return;
7369
7370         /*
7371          * XXX Currently, there is a difference of bytes size
7372          * between inbound and outbound processing.
7373          */
7374         sav->lft_c->sadb_lifetime_bytes += m->m_pkthdr.len;
7375         /* to check bytes lifetime is done in key_timehandler(). */
7376
7377         /*
7378          * We use the number of packets as the unit of
7379          * sadb_lifetime_allocations.  We increment the variable
7380          * whenever {esp,ah}_{in,out}put is called.
7381          */
7382         sav->lft_c->sadb_lifetime_allocations++;
7383         /* XXX check for expires? */
7384
7385         /*
7386          * NOTE: We record CURRENT sadb_lifetime_usetime by using wall clock,
7387          * in seconds.  HARD and SOFT lifetime are measured by the time
7388          * difference (again in seconds) from sadb_lifetime_usetime.
7389          *
7390          *      usetime
7391          *      v     expire   expire
7392          * -----+-----+--------+---> t
7393          *      <--------------> HARD
7394          *      <-----> SOFT
7395          */
7396     {
7397         struct timeval tv;
7398         microtime(&tv);
7399         sav->lft_c->sadb_lifetime_usetime = tv.tv_sec;
7400         /* XXX check for expires? */
7401     }
7402
7403         return;
7404 }
7405
7406 /* dumb version */
7407 void
7408 key_sa_routechange(dst)
7409         struct sockaddr *dst;
7410 {
7411         struct secashead *sah;
7412         struct route *ro;
7413
7414         LIST_FOREACH(sah, &sahtree, chain) {
7415                 ro = &sah->sa_route;
7416                 if (ro->ro_rt && dst->sa_len == ro->ro_dst.sa_len
7417                  && bcmp(dst, &ro->ro_dst, dst->sa_len) == 0) {
7418                         RTFREE(ro->ro_rt);
7419                         ro->ro_rt = (struct rtentry *)NULL;
7420                 }
7421         }
7422
7423         return;
7424 }
7425
7426 static void
7427 key_sa_chgstate(sav, state)
7428         struct secasvar *sav;
7429         u_int8_t state;
7430 {
7431         if (sav == NULL)
7432                 panic("key_sa_chgstate called with sav == NULL");
7433
7434         if (sav->state == state)
7435                 return;
7436
7437         if (__LIST_CHAINED(sav))
7438                 LIST_REMOVE(sav, chain);
7439
7440         sav->state = state;
7441         LIST_INSERT_HEAD(&sav->sah->savtree[state], sav, chain);
7442 }
7443
7444 void
7445 key_sa_stir_iv(sav)
7446         struct secasvar *sav;
7447 {
7448
7449         if (!sav->iv)
7450                 panic("key_sa_stir_iv called with sav == NULL");
7451         key_randomfill(sav->iv, sav->ivlen);
7452 }
7453
7454 /* XXX too much? */
7455 static struct mbuf *
7456 key_alloc_mbuf(l)
7457         int l;
7458 {
7459         struct mbuf *m = NULL, *n;
7460         int len, t;
7461
7462         len = l;
7463         while (len > 0) {
7464                 MGET(n, M_DONTWAIT, MT_DATA);
7465                 if (n && len > MLEN)
7466                         MCLGET(n, M_DONTWAIT);
7467                 if (!n) {
7468                         m_freem(m);
7469                         return NULL;
7470                 }
7471
7472                 n->m_next = NULL;
7473                 n->m_len = 0;
7474                 n->m_len = M_TRAILINGSPACE(n);
7475                 /* use the bottom of mbuf, hoping we can prepend afterwards */
7476                 if (n->m_len > len) {
7477                         t = (n->m_len - len) & ~(sizeof(long) - 1);
7478                         n->m_data += t;
7479                         n->m_len = len;
7480                 }
7481
7482                 len -= n->m_len;
7483
7484                 if (m)
7485                         m_cat(m, n);
7486                 else
7487                         m = n;
7488         }
7489
7490         return m;
7491 }