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