key.c revision 170805
1105197Ssam/*	$FreeBSD: head/sys/netipsec/key.c 170805 2007-06-16 00:15:14Z bz $	*/
2105197Ssam/*	$KAME: key.c,v 1.191 2001/06/27 10:46:49 sakane Exp $	*/
3105197Ssam
4139823Simp/*-
5105197Ssam * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6105197Ssam * All rights reserved.
7105197Ssam *
8105197Ssam * Redistribution and use in source and binary forms, with or without
9105197Ssam * modification, are permitted provided that the following conditions
10105197Ssam * are met:
11105197Ssam * 1. Redistributions of source code must retain the above copyright
12105197Ssam *    notice, this list of conditions and the following disclaimer.
13105197Ssam * 2. Redistributions in binary form must reproduce the above copyright
14105197Ssam *    notice, this list of conditions and the following disclaimer in the
15105197Ssam *    documentation and/or other materials provided with the distribution.
16105197Ssam * 3. Neither the name of the project nor the names of its contributors
17105197Ssam *    may be used to endorse or promote products derived from this software
18105197Ssam *    without specific prior written permission.
19105197Ssam *
20105197Ssam * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21105197Ssam * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22105197Ssam * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23105197Ssam * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24105197Ssam * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25105197Ssam * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26105197Ssam * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27105197Ssam * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28105197Ssam * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29105197Ssam * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30105197Ssam * SUCH DAMAGE.
31105197Ssam */
32105197Ssam
33105197Ssam/*
34105197Ssam * This code is referd to RFC 2367
35105197Ssam */
36105197Ssam
37105197Ssam#include "opt_inet.h"
38105197Ssam#include "opt_inet6.h"
39105197Ssam#include "opt_ipsec.h"
40105197Ssam
41105197Ssam#include <sys/types.h>
42105197Ssam#include <sys/param.h>
43105197Ssam#include <sys/systm.h>
44105197Ssam#include <sys/kernel.h>
45119643Ssam#include <sys/lock.h>
46119643Ssam#include <sys/mutex.h>
47105197Ssam#include <sys/mbuf.h>
48105197Ssam#include <sys/domain.h>
49105197Ssam#include <sys/protosw.h>
50105197Ssam#include <sys/malloc.h>
51105197Ssam#include <sys/socket.h>
52105197Ssam#include <sys/socketvar.h>
53105197Ssam#include <sys/sysctl.h>
54105197Ssam#include <sys/errno.h>
55105197Ssam#include <sys/proc.h>
56105197Ssam#include <sys/queue.h>
57158767Spjd#include <sys/refcount.h>
58105197Ssam#include <sys/syslog.h>
59105197Ssam
60105197Ssam#include <net/if.h>
61105197Ssam#include <net/route.h>
62105197Ssam#include <net/raw_cb.h>
63105197Ssam
64105197Ssam#include <netinet/in.h>
65105197Ssam#include <netinet/in_systm.h>
66105197Ssam#include <netinet/ip.h>
67105197Ssam#include <netinet/in_var.h>
68105197Ssam
69105197Ssam#ifdef INET6
70105197Ssam#include <netinet/ip6.h>
71105197Ssam#include <netinet6/in6_var.h>
72105197Ssam#include <netinet6/ip6_var.h>
73105197Ssam#endif /* INET6 */
74105197Ssam
75105197Ssam#ifdef INET
76105197Ssam#include <netinet/in_pcb.h>
77105197Ssam#endif
78105197Ssam#ifdef INET6
79105197Ssam#include <netinet6/in6_pcb.h>
80105197Ssam#endif /* INET6 */
81105197Ssam
82105197Ssam#include <net/pfkeyv2.h>
83105197Ssam#include <netipsec/keydb.h>
84105197Ssam#include <netipsec/key.h>
85105197Ssam#include <netipsec/keysock.h>
86105197Ssam#include <netipsec/key_debug.h>
87105197Ssam
88105197Ssam#include <netipsec/ipsec.h>
89105197Ssam#ifdef INET6
90105197Ssam#include <netipsec/ipsec6.h>
91105197Ssam#endif
92105197Ssam
93105197Ssam#include <netipsec/xform.h>
94105197Ssam
95105197Ssam#include <machine/stdarg.h>
96105197Ssam
97105197Ssam/* randomness */
98105197Ssam#include <sys/random.h>
99105197Ssam
100105197Ssam#define FULLMASK	0xff
101105197Ssam#define	_BITS(bytes)	((bytes) << 3)
102105197Ssam
103105197Ssam/*
104105197Ssam * Note on SA reference counting:
105105197Ssam * - SAs that are not in DEAD state will have (total external reference + 1)
106105197Ssam *   following value in reference count field.  they cannot be freed and are
107105197Ssam *   referenced from SA header.
108105197Ssam * - SAs that are in DEAD state will have (total external reference)
109105197Ssam *   in reference count field.  they are ready to be freed.  reference from
110105197Ssam *   SA header will be removed in key_delsav(), when the reference count
111105197Ssam *   field hits 0 (= no external reference other than from SA header.
112105197Ssam */
113105197Ssam
114105197Ssamu_int32_t key_debug_level = 0;
115105197Ssamstatic u_int key_spi_trycnt = 1000;
116105197Ssamstatic u_int32_t key_spi_minval = 0x100;
117105197Ssamstatic u_int32_t key_spi_maxval = 0x0fffffff;	/* XXX */
118105197Ssamstatic u_int32_t policy_id = 0;
119105197Ssamstatic u_int key_int_random = 60;	/*interval to initialize randseed,1(m)*/
120105197Ssamstatic u_int key_larval_lifetime = 30;	/* interval to expire acquiring, 30(s)*/
121105197Ssamstatic int key_blockacq_count = 10;	/* counter for blocking SADB_ACQUIRE.*/
122105197Ssamstatic int key_blockacq_lifetime = 20;	/* lifetime for blocking SADB_ACQUIRE.*/
123125876Sguidostatic int key_preferred_oldsa = 1;	/* preferred old sa rather than new sa.*/
124105197Ssam
125105197Ssamstatic u_int32_t acq_seq = 0;
126105197Ssam
127105197Ssamstatic LIST_HEAD(_sptree, secpolicy) sptree[IPSEC_DIR_MAX];	/* SPD */
128119643Ssamstatic struct mtx sptree_lock;
129120585Ssam#define	SPTREE_LOCK_INIT() \
130120585Ssam	mtx_init(&sptree_lock, "sptree", \
131120585Ssam		"fast ipsec security policy database", MTX_DEF)
132120585Ssam#define	SPTREE_LOCK_DESTROY()	mtx_destroy(&sptree_lock)
133120585Ssam#define	SPTREE_LOCK()		mtx_lock(&sptree_lock)
134120585Ssam#define	SPTREE_UNLOCK()	mtx_unlock(&sptree_lock)
135120585Ssam#define	SPTREE_LOCK_ASSERT()	mtx_assert(&sptree_lock, MA_OWNED)
136120585Ssam
137105197Ssamstatic LIST_HEAD(_sahtree, secashead) sahtree;			/* SAD */
138119643Ssamstatic struct mtx sahtree_lock;
139120585Ssam#define	SAHTREE_LOCK_INIT() \
140120585Ssam	mtx_init(&sahtree_lock, "sahtree", \
141120585Ssam		"fast ipsec security association database", MTX_DEF)
142120585Ssam#define	SAHTREE_LOCK_DESTROY()	mtx_destroy(&sahtree_lock)
143120585Ssam#define	SAHTREE_LOCK()		mtx_lock(&sahtree_lock)
144120585Ssam#define	SAHTREE_UNLOCK()	mtx_unlock(&sahtree_lock)
145120585Ssam#define	SAHTREE_LOCK_ASSERT()	mtx_assert(&sahtree_lock, MA_OWNED)
146120585Ssam
147119643Ssam							/* registed list */
148105197Ssamstatic LIST_HEAD(_regtree, secreg) regtree[SADB_SATYPE_MAX + 1];
149119643Ssamstatic struct mtx regtree_lock;
150120585Ssam#define	REGTREE_LOCK_INIT() \
151120585Ssam	mtx_init(&regtree_lock, "regtree", "fast ipsec regtree", MTX_DEF)
152120585Ssam#define	REGTREE_LOCK_DESTROY()	mtx_destroy(&regtree_lock)
153120585Ssam#define	REGTREE_LOCK()		mtx_lock(&regtree_lock)
154120585Ssam#define	REGTREE_UNLOCK()	mtx_unlock(&regtree_lock)
155120585Ssam#define	REGTREE_LOCK_ASSERT()	mtx_assert(&regtree_lock, MA_OWNED)
156120585Ssam
157105197Ssamstatic LIST_HEAD(_acqtree, secacq) acqtree;		/* acquiring list */
158119643Ssamstatic struct mtx acq_lock;
159120585Ssam#define	ACQ_LOCK_INIT() \
160120585Ssam	mtx_init(&acq_lock, "acqtree", "fast ipsec acquire list", MTX_DEF)
161120585Ssam#define	ACQ_LOCK_DESTROY()	mtx_destroy(&acq_lock)
162120585Ssam#define	ACQ_LOCK()		mtx_lock(&acq_lock)
163120585Ssam#define	ACQ_UNLOCK()		mtx_unlock(&acq_lock)
164120585Ssam#define	ACQ_LOCK_ASSERT()	mtx_assert(&acq_lock, MA_OWNED)
165120585Ssam
166105197Ssamstatic LIST_HEAD(_spacqtree, secspacq) spacqtree;	/* SP acquiring list */
167119643Ssamstatic struct mtx spacq_lock;
168120585Ssam#define	SPACQ_LOCK_INIT() \
169120585Ssam	mtx_init(&spacq_lock, "spacqtree", \
170120585Ssam		"fast ipsec security policy acquire list", MTX_DEF)
171120585Ssam#define	SPACQ_LOCK_DESTROY()	mtx_destroy(&spacq_lock)
172120585Ssam#define	SPACQ_LOCK()		mtx_lock(&spacq_lock)
173120585Ssam#define	SPACQ_UNLOCK()		mtx_unlock(&spacq_lock)
174120585Ssam#define	SPACQ_LOCK_ASSERT()	mtx_assert(&spacq_lock, MA_OWNED)
175105197Ssam
176105197Ssam/* search order for SAs */
177128856Ssamstatic const u_int saorder_state_valid_prefer_old[] = {
178105197Ssam	SADB_SASTATE_DYING, SADB_SASTATE_MATURE,
179105197Ssam};
180128856Ssamstatic const u_int saorder_state_valid_prefer_new[] = {
181128856Ssam	SADB_SASTATE_MATURE, SADB_SASTATE_DYING,
182128856Ssam};
183105197Ssamstatic u_int saorder_state_alive[] = {
184105197Ssam	/* except DEAD */
185105197Ssam	SADB_SASTATE_MATURE, SADB_SASTATE_DYING, SADB_SASTATE_LARVAL
186105197Ssam};
187105197Ssamstatic u_int saorder_state_any[] = {
188105197Ssam	SADB_SASTATE_MATURE, SADB_SASTATE_DYING,
189105197Ssam	SADB_SASTATE_LARVAL, SADB_SASTATE_DEAD
190105197Ssam};
191105197Ssam
192105197Ssamstatic const int minsize[] = {
193105197Ssam	sizeof(struct sadb_msg),	/* SADB_EXT_RESERVED */
194105197Ssam	sizeof(struct sadb_sa),		/* SADB_EXT_SA */
195105197Ssam	sizeof(struct sadb_lifetime),	/* SADB_EXT_LIFETIME_CURRENT */
196105197Ssam	sizeof(struct sadb_lifetime),	/* SADB_EXT_LIFETIME_HARD */
197105197Ssam	sizeof(struct sadb_lifetime),	/* SADB_EXT_LIFETIME_SOFT */
198105197Ssam	sizeof(struct sadb_address),	/* SADB_EXT_ADDRESS_SRC */
199105197Ssam	sizeof(struct sadb_address),	/* SADB_EXT_ADDRESS_DST */
200105197Ssam	sizeof(struct sadb_address),	/* SADB_EXT_ADDRESS_PROXY */
201105197Ssam	sizeof(struct sadb_key),	/* SADB_EXT_KEY_AUTH */
202105197Ssam	sizeof(struct sadb_key),	/* SADB_EXT_KEY_ENCRYPT */
203105197Ssam	sizeof(struct sadb_ident),	/* SADB_EXT_IDENTITY_SRC */
204105197Ssam	sizeof(struct sadb_ident),	/* SADB_EXT_IDENTITY_DST */
205105197Ssam	sizeof(struct sadb_sens),	/* SADB_EXT_SENSITIVITY */
206105197Ssam	sizeof(struct sadb_prop),	/* SADB_EXT_PROPOSAL */
207105197Ssam	sizeof(struct sadb_supported),	/* SADB_EXT_SUPPORTED_AUTH */
208105197Ssam	sizeof(struct sadb_supported),	/* SADB_EXT_SUPPORTED_ENCRYPT */
209105197Ssam	sizeof(struct sadb_spirange),	/* SADB_EXT_SPIRANGE */
210105197Ssam	0,				/* SADB_X_EXT_KMPRIVATE */
211105197Ssam	sizeof(struct sadb_x_policy),	/* SADB_X_EXT_POLICY */
212105197Ssam	sizeof(struct sadb_x_sa2),	/* SADB_X_SA2 */
213105197Ssam};
214105197Ssamstatic const int maxsize[] = {
215105197Ssam	sizeof(struct sadb_msg),	/* SADB_EXT_RESERVED */
216105197Ssam	sizeof(struct sadb_sa),		/* SADB_EXT_SA */
217105197Ssam	sizeof(struct sadb_lifetime),	/* SADB_EXT_LIFETIME_CURRENT */
218105197Ssam	sizeof(struct sadb_lifetime),	/* SADB_EXT_LIFETIME_HARD */
219105197Ssam	sizeof(struct sadb_lifetime),	/* SADB_EXT_LIFETIME_SOFT */
220105197Ssam	0,				/* SADB_EXT_ADDRESS_SRC */
221105197Ssam	0,				/* SADB_EXT_ADDRESS_DST */
222105197Ssam	0,				/* SADB_EXT_ADDRESS_PROXY */
223105197Ssam	0,				/* SADB_EXT_KEY_AUTH */
224105197Ssam	0,				/* SADB_EXT_KEY_ENCRYPT */
225105197Ssam	0,				/* SADB_EXT_IDENTITY_SRC */
226105197Ssam	0,				/* SADB_EXT_IDENTITY_DST */
227105197Ssam	0,				/* SADB_EXT_SENSITIVITY */
228105197Ssam	0,				/* SADB_EXT_PROPOSAL */
229105197Ssam	0,				/* SADB_EXT_SUPPORTED_AUTH */
230105197Ssam	0,				/* SADB_EXT_SUPPORTED_ENCRYPT */
231105197Ssam	sizeof(struct sadb_spirange),	/* SADB_EXT_SPIRANGE */
232105197Ssam	0,				/* SADB_X_EXT_KMPRIVATE */
233105197Ssam	0,				/* SADB_X_EXT_POLICY */
234105197Ssam	sizeof(struct sadb_x_sa2),	/* SADB_X_SA2 */
235105197Ssam};
236105197Ssam
237105197Ssamstatic int ipsec_esp_keymin = 256;
238105197Ssamstatic int ipsec_esp_auth = 0;
239105197Ssamstatic int ipsec_ah_keymin = 128;
240105197Ssam
241105197Ssam#ifdef SYSCTL_DECL
242105197SsamSYSCTL_DECL(_net_key);
243105197Ssam#endif
244105197Ssam
245105197SsamSYSCTL_INT(_net_key, KEYCTL_DEBUG_LEVEL,	debug,	CTLFLAG_RW, \
246105197Ssam	&key_debug_level,	0,	"");
247105197Ssam
248105197Ssam/* max count of trial for the decision of spi value */
249105197SsamSYSCTL_INT(_net_key, KEYCTL_SPI_TRY,		spi_trycnt,	CTLFLAG_RW, \
250105197Ssam	&key_spi_trycnt,	0,	"");
251105197Ssam
252105197Ssam/* minimum spi value to allocate automatically. */
253105197SsamSYSCTL_INT(_net_key, KEYCTL_SPI_MIN_VALUE,	spi_minval,	CTLFLAG_RW, \
254105197Ssam	&key_spi_minval,	0,	"");
255105197Ssam
256105197Ssam/* maximun spi value to allocate automatically. */
257105197SsamSYSCTL_INT(_net_key, KEYCTL_SPI_MAX_VALUE,	spi_maxval,	CTLFLAG_RW, \
258105197Ssam	&key_spi_maxval,	0,	"");
259105197Ssam
260105197Ssam/* interval to initialize randseed */
261105197SsamSYSCTL_INT(_net_key, KEYCTL_RANDOM_INT,	int_random,	CTLFLAG_RW, \
262105197Ssam	&key_int_random,	0,	"");
263105197Ssam
264105197Ssam/* lifetime for larval SA */
265105197SsamSYSCTL_INT(_net_key, KEYCTL_LARVAL_LIFETIME,	larval_lifetime, CTLFLAG_RW, \
266105197Ssam	&key_larval_lifetime,	0,	"");
267105197Ssam
268105197Ssam/* counter for blocking to send SADB_ACQUIRE to IKEd */
269105197SsamSYSCTL_INT(_net_key, KEYCTL_BLOCKACQ_COUNT,	blockacq_count,	CTLFLAG_RW, \
270105197Ssam	&key_blockacq_count,	0,	"");
271105197Ssam
272105197Ssam/* lifetime for blocking to send SADB_ACQUIRE to IKEd */
273105197SsamSYSCTL_INT(_net_key, KEYCTL_BLOCKACQ_LIFETIME,	blockacq_lifetime, CTLFLAG_RW, \
274105197Ssam	&key_blockacq_lifetime,	0,	"");
275105197Ssam
276105197Ssam/* ESP auth */
277105197SsamSYSCTL_INT(_net_key, KEYCTL_ESP_AUTH,	esp_auth, CTLFLAG_RW, \
278105197Ssam	&ipsec_esp_auth,	0,	"");
279105197Ssam
280105197Ssam/* minimum ESP key length */
281105197SsamSYSCTL_INT(_net_key, KEYCTL_ESP_KEYMIN,	esp_keymin, CTLFLAG_RW, \
282105197Ssam	&ipsec_esp_keymin,	0,	"");
283105197Ssam
284105197Ssam/* minimum AH key length */
285105197SsamSYSCTL_INT(_net_key, KEYCTL_AH_KEYMIN,	ah_keymin, CTLFLAG_RW, \
286105197Ssam	&ipsec_ah_keymin,	0,	"");
287105197Ssam
288105197Ssam/* perfered old SA rather than new SA */
289125876SguidoSYSCTL_INT(_net_key, KEYCTL_PREFERED_OLDSA,	preferred_oldsa, CTLFLAG_RW,\
290125876Sguido	&key_preferred_oldsa,	0,	"");
291105197Ssam
292105197Ssam#define __LIST_CHAINED(elm) \
293105197Ssam	(!((elm)->chain.le_next == NULL && (elm)->chain.le_prev == NULL))
294105197Ssam#define LIST_INSERT_TAIL(head, elm, type, field) \
295105197Ssamdo {\
296105197Ssam	struct type *curelm = LIST_FIRST(head); \
297105197Ssam	if (curelm == NULL) {\
298105197Ssam		LIST_INSERT_HEAD(head, elm, field); \
299105197Ssam	} else { \
300105197Ssam		while (LIST_NEXT(curelm, field)) \
301105197Ssam			curelm = LIST_NEXT(curelm, field);\
302105197Ssam		LIST_INSERT_AFTER(curelm, elm, field);\
303105197Ssam	}\
304105197Ssam} while (0)
305105197Ssam
306105197Ssam#define KEY_CHKSASTATE(head, sav, name) \
307105197Ssamdo { \
308105197Ssam	if ((head) != (sav)) {						\
309105197Ssam		ipseclog((LOG_DEBUG, "%s: state mismatched (TREE=%d SA=%d)\n", \
310105197Ssam			(name), (head), (sav)));			\
311105197Ssam		continue;						\
312105197Ssam	}								\
313105197Ssam} while (0)
314105197Ssam
315105197Ssam#define KEY_CHKSPDIR(head, sp, name) \
316105197Ssamdo { \
317105197Ssam	if ((head) != (sp)) {						\
318105197Ssam		ipseclog((LOG_DEBUG, "%s: direction mismatched (TREE=%d SP=%d), " \
319105197Ssam			"anyway continue.\n",				\
320105197Ssam			(name), (head), (sp)));				\
321105197Ssam	}								\
322105197Ssam} while (0)
323105197Ssam
324119643SsamMALLOC_DEFINE(M_IPSEC_SA, "secasvar", "ipsec security association");
325119643SsamMALLOC_DEFINE(M_IPSEC_SAH, "sahead", "ipsec sa head");
326119643SsamMALLOC_DEFINE(M_IPSEC_SP, "ipsecpolicy", "ipsec security policy");
327119643SsamMALLOC_DEFINE(M_IPSEC_SR, "ipsecrequest", "ipsec security request");
328119643SsamMALLOC_DEFINE(M_IPSEC_MISC, "ipsec-misc", "ipsec miscellaneous");
329119643SsamMALLOC_DEFINE(M_IPSEC_SAQ, "ipsec-saq", "ipsec sa acquire");
330119643SsamMALLOC_DEFINE(M_IPSEC_SAR, "ipsec-reg", "ipsec sa acquire");
331105197Ssam
332105197Ssam/*
333105197Ssam * set parameters into secpolicyindex buffer.
334105197Ssam * Must allocate secpolicyindex buffer passed to this function.
335105197Ssam */
336105197Ssam#define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, idx) \
337105197Ssamdo { \
338105197Ssam	bzero((idx), sizeof(struct secpolicyindex));                         \
339105197Ssam	(idx)->dir = (_dir);                                                 \
340105197Ssam	(idx)->prefs = (ps);                                                 \
341105197Ssam	(idx)->prefd = (pd);                                                 \
342105197Ssam	(idx)->ul_proto = (ulp);                                             \
343105197Ssam	bcopy((s), &(idx)->src, ((const struct sockaddr *)(s))->sa_len);     \
344105197Ssam	bcopy((d), &(idx)->dst, ((const struct sockaddr *)(d))->sa_len);     \
345105197Ssam} while (0)
346105197Ssam
347105197Ssam/*
348105197Ssam * set parameters into secasindex buffer.
349105197Ssam * Must allocate secasindex buffer before calling this function.
350105197Ssam */
351105197Ssam#define KEY_SETSECASIDX(p, m, r, s, d, idx) \
352105197Ssamdo { \
353105197Ssam	bzero((idx), sizeof(struct secasindex));                             \
354105197Ssam	(idx)->proto = (p);                                                  \
355105197Ssam	(idx)->mode = (m);                                                   \
356105197Ssam	(idx)->reqid = (r);                                                  \
357105197Ssam	bcopy((s), &(idx)->src, ((const struct sockaddr *)(s))->sa_len);     \
358105197Ssam	bcopy((d), &(idx)->dst, ((const struct sockaddr *)(d))->sa_len);     \
359105197Ssam} while (0)
360105197Ssam
361105197Ssam/* key statistics */
362105197Ssamstruct _keystat {
363105197Ssam	u_long getspi_count; /* the avarage of count to try to get new SPI */
364105197Ssam} keystat;
365105197Ssam
366105197Ssamstruct sadb_msghdr {
367105197Ssam	struct sadb_msg *msg;
368105197Ssam	struct sadb_ext *ext[SADB_EXT_MAX + 1];
369105197Ssam	int extoff[SADB_EXT_MAX + 1];
370105197Ssam	int extlen[SADB_EXT_MAX + 1];
371105197Ssam};
372105197Ssam
373105197Ssamstatic struct secasvar *key_allocsa_policy __P((const struct secasindex *));
374105197Ssamstatic void key_freesp_so __P((struct secpolicy **));
375105197Ssamstatic struct secasvar *key_do_allocsa_policy __P((struct secashead *, u_int));
376105197Ssamstatic void key_delsp __P((struct secpolicy *));
377105197Ssamstatic struct secpolicy *key_getsp __P((struct secpolicyindex *));
378119643Ssamstatic void _key_delsp(struct secpolicy *sp);
379105197Ssamstatic struct secpolicy *key_getspbyid __P((u_int32_t));
380105197Ssamstatic u_int32_t key_newreqid __P((void));
381105197Ssamstatic struct mbuf *key_gather_mbuf __P((struct mbuf *,
382105197Ssam	const struct sadb_msghdr *, int, int, ...));
383105197Ssamstatic int key_spdadd __P((struct socket *, struct mbuf *,
384105197Ssam	const struct sadb_msghdr *));
385105197Ssamstatic u_int32_t key_getnewspid __P((void));
386105197Ssamstatic int key_spddelete __P((struct socket *, struct mbuf *,
387105197Ssam	const struct sadb_msghdr *));
388105197Ssamstatic int key_spddelete2 __P((struct socket *, struct mbuf *,
389105197Ssam	const struct sadb_msghdr *));
390105197Ssamstatic int key_spdget __P((struct socket *, struct mbuf *,
391105197Ssam	const struct sadb_msghdr *));
392105197Ssamstatic int key_spdflush __P((struct socket *, struct mbuf *,
393105197Ssam	const struct sadb_msghdr *));
394105197Ssamstatic int key_spddump __P((struct socket *, struct mbuf *,
395105197Ssam	const struct sadb_msghdr *));
396105197Ssamstatic struct mbuf *key_setdumpsp __P((struct secpolicy *,
397105197Ssam	u_int8_t, u_int32_t, u_int32_t));
398105197Ssamstatic u_int key_getspreqmsglen __P((struct secpolicy *));
399105197Ssamstatic int key_spdexpire __P((struct secpolicy *));
400105197Ssamstatic struct secashead *key_newsah __P((struct secasindex *));
401105197Ssamstatic void key_delsah __P((struct secashead *));
402105197Ssamstatic struct secasvar *key_newsav __P((struct mbuf *,
403105197Ssam	const struct sadb_msghdr *, struct secashead *, int *,
404105197Ssam	const char*, int));
405105197Ssam#define	KEY_NEWSAV(m, sadb, sah, e)				\
406105197Ssam	key_newsav(m, sadb, sah, e, __FILE__, __LINE__)
407105197Ssamstatic void key_delsav __P((struct secasvar *));
408105197Ssamstatic struct secashead *key_getsah __P((struct secasindex *));
409105197Ssamstatic struct secasvar *key_checkspidup __P((struct secasindex *, u_int32_t));
410105197Ssamstatic struct secasvar *key_getsavbyspi __P((struct secashead *, u_int32_t));
411105197Ssamstatic int key_setsaval __P((struct secasvar *, struct mbuf *,
412105197Ssam	const struct sadb_msghdr *));
413105197Ssamstatic int key_mature __P((struct secasvar *));
414105197Ssamstatic struct mbuf *key_setdumpsa __P((struct secasvar *, u_int8_t,
415105197Ssam	u_int8_t, u_int32_t, u_int32_t));
416105197Ssamstatic struct mbuf *key_setsadbmsg __P((u_int8_t, u_int16_t, u_int8_t,
417105197Ssam	u_int32_t, pid_t, u_int16_t));
418105197Ssamstatic struct mbuf *key_setsadbsa __P((struct secasvar *));
419105197Ssamstatic struct mbuf *key_setsadbaddr __P((u_int16_t,
420105197Ssam	const struct sockaddr *, u_int8_t, u_int16_t));
421105197Ssamstatic struct mbuf *key_setsadbxsa2 __P((u_int8_t, u_int32_t, u_int32_t));
422105197Ssamstatic struct mbuf *key_setsadbxpolicy __P((u_int16_t, u_int8_t,
423105197Ssam	u_int32_t));
424157123Sgnnstatic struct seckey *key_dup_keymsg(const struct sadb_key *, u_int,
425157123Sgnn				     struct malloc_type *);
426157123Sgnnstatic struct seclifetime *key_dup_lifemsg(const struct sadb_lifetime *src,
427157123Sgnn					    struct malloc_type *type);
428105197Ssam#ifdef INET6
429105197Ssamstatic int key_ismyaddr6 __P((struct sockaddr_in6 *));
430105197Ssam#endif
431105197Ssam
432105197Ssam/* flags for key_cmpsaidx() */
433105197Ssam#define CMP_HEAD	1	/* protocol, addresses. */
434105197Ssam#define CMP_MODE_REQID	2	/* additionally HEAD, reqid, mode. */
435105197Ssam#define CMP_REQID	3	/* additionally HEAD, reaid. */
436105197Ssam#define CMP_EXACTLY	4	/* all elements. */
437105197Ssamstatic int key_cmpsaidx
438105197Ssam	__P((const struct secasindex *, const struct secasindex *, int));
439105197Ssam
440105197Ssamstatic int key_cmpspidx_exactly
441105197Ssam	__P((struct secpolicyindex *, struct secpolicyindex *));
442105197Ssamstatic int key_cmpspidx_withmask
443105197Ssam	__P((struct secpolicyindex *, struct secpolicyindex *));
444105197Ssamstatic int key_sockaddrcmp __P((const struct sockaddr *, const struct sockaddr *, int));
445105197Ssamstatic int key_bbcmp __P((const void *, const void *, u_int));
446105197Ssamstatic u_int16_t key_satype2proto __P((u_int8_t));
447105197Ssamstatic u_int8_t key_proto2satype __P((u_int16_t));
448105197Ssam
449105197Ssamstatic int key_getspi __P((struct socket *, struct mbuf *,
450105197Ssam	const struct sadb_msghdr *));
451105197Ssamstatic u_int32_t key_do_getnewspi __P((struct sadb_spirange *,
452105197Ssam					struct secasindex *));
453105197Ssamstatic int key_update __P((struct socket *, struct mbuf *,
454105197Ssam	const struct sadb_msghdr *));
455105197Ssam#ifdef IPSEC_DOSEQCHECK
456105197Ssamstatic struct secasvar *key_getsavbyseq __P((struct secashead *, u_int32_t));
457105197Ssam#endif
458105197Ssamstatic int key_add __P((struct socket *, struct mbuf *,
459105197Ssam	const struct sadb_msghdr *));
460105197Ssamstatic int key_setident __P((struct secashead *, struct mbuf *,
461105197Ssam	const struct sadb_msghdr *));
462105197Ssamstatic struct mbuf *key_getmsgbuf_x1 __P((struct mbuf *,
463105197Ssam	const struct sadb_msghdr *));
464105197Ssamstatic int key_delete __P((struct socket *, struct mbuf *,
465105197Ssam	const struct sadb_msghdr *));
466105197Ssamstatic int key_get __P((struct socket *, struct mbuf *,
467105197Ssam	const struct sadb_msghdr *));
468105197Ssam
469105197Ssamstatic void key_getcomb_setlifetime __P((struct sadb_comb *));
470105197Ssamstatic struct mbuf *key_getcomb_esp __P((void));
471105197Ssamstatic struct mbuf *key_getcomb_ah __P((void));
472105197Ssamstatic struct mbuf *key_getcomb_ipcomp __P((void));
473105197Ssamstatic struct mbuf *key_getprop __P((const struct secasindex *));
474105197Ssam
475105197Ssamstatic int key_acquire __P((const struct secasindex *, struct secpolicy *));
476105197Ssamstatic struct secacq *key_newacq __P((const struct secasindex *));
477105197Ssamstatic struct secacq *key_getacq __P((const struct secasindex *));
478105197Ssamstatic struct secacq *key_getacqbyseq __P((u_int32_t));
479105197Ssamstatic struct secspacq *key_newspacq __P((struct secpolicyindex *));
480105197Ssamstatic struct secspacq *key_getspacq __P((struct secpolicyindex *));
481105197Ssamstatic int key_acquire2 __P((struct socket *, struct mbuf *,
482105197Ssam	const struct sadb_msghdr *));
483105197Ssamstatic int key_register __P((struct socket *, struct mbuf *,
484105197Ssam	const struct sadb_msghdr *));
485105197Ssamstatic int key_expire __P((struct secasvar *));
486105197Ssamstatic int key_flush __P((struct socket *, struct mbuf *,
487105197Ssam	const struct sadb_msghdr *));
488105197Ssamstatic int key_dump __P((struct socket *, struct mbuf *,
489105197Ssam	const struct sadb_msghdr *));
490105197Ssamstatic int key_promisc __P((struct socket *, struct mbuf *,
491105197Ssam	const struct sadb_msghdr *));
492105197Ssamstatic int key_senderror __P((struct socket *, struct mbuf *, int));
493105197Ssamstatic int key_validate_ext __P((const struct sadb_ext *, int));
494105197Ssamstatic int key_align __P((struct mbuf *, struct sadb_msghdr *));
495157123Sgnnstatic struct mbuf *key_setlifetime(struct seclifetime *src,
496157123Sgnn				     u_int16_t exttype);
497157123Sgnnstatic struct mbuf *key_setkey(struct seckey *src, u_int16_t exttype);
498157123Sgnn
499105197Ssam#if 0
500105197Ssamstatic const char *key_getfqdn __P((void));
501105197Ssamstatic const char *key_getuserfqdn __P((void));
502105197Ssam#endif
503105197Ssamstatic void key_sa_chgstate __P((struct secasvar *, u_int8_t));
504105197Ssamstatic struct mbuf *key_alloc_mbuf __P((int));
505105197Ssam
506158767Spjdstatic __inline void
507158767Spjdsa_initref(struct secasvar *sav)
508158767Spjd{
509105197Ssam
510158767Spjd	refcount_init(&sav->refcnt, 1);
511158767Spjd}
512158767Spjdstatic __inline void
513158767Spjdsa_addref(struct secasvar *sav)
514158767Spjd{
515158767Spjd
516158767Spjd	refcount_acquire(&sav->refcnt);
517158767Spjd	IPSEC_ASSERT(sav->refcnt != 0, ("SA refcnt overflow"));
518158767Spjd}
519158767Spjdstatic __inline int
520158767Spjdsa_delref(struct secasvar *sav)
521158767Spjd{
522158767Spjd
523158767Spjd	IPSEC_ASSERT(sav->refcnt > 0, ("SA refcnt underflow"));
524158767Spjd	return (refcount_release(&sav->refcnt));
525158767Spjd}
526158767Spjd
527105197Ssam#define	SP_ADDREF(p) do {						\
528105197Ssam	(p)->refcnt++;							\
529120585Ssam	IPSEC_ASSERT((p)->refcnt != 0, ("SP refcnt overflow"));		\
530105197Ssam} while (0)
531105197Ssam#define	SP_DELREF(p) do {						\
532120585Ssam	IPSEC_ASSERT((p)->refcnt > 0, ("SP refcnt underflow"));		\
533105197Ssam	(p)->refcnt--;							\
534105197Ssam} while (0)
535135947Ssam
536105197Ssam
537105197Ssam/*
538135947Ssam * Update the refcnt while holding the SPTREE lock.
539135947Ssam */
540135947Ssamvoid
541135947Ssamkey_addref(struct secpolicy *sp)
542135947Ssam{
543135947Ssam	SPTREE_LOCK();
544135947Ssam	SP_ADDREF(sp);
545135947Ssam	SPTREE_UNLOCK();
546135947Ssam}
547135947Ssam
548135947Ssam/*
549105197Ssam * Return 0 when there are known to be no SP's for the specified
550105197Ssam * direction.  Otherwise return 1.  This is used by IPsec code
551105197Ssam * to optimize performance.
552105197Ssam */
553105197Ssamint
554105197Ssamkey_havesp(u_int dir)
555105197Ssam{
556105197Ssam	return (dir == IPSEC_DIR_INBOUND || dir == IPSEC_DIR_OUTBOUND ?
557105197Ssam		LIST_FIRST(&sptree[dir]) != NULL : 1);
558105197Ssam}
559105197Ssam
560105197Ssam/* %%% IPsec policy management */
561105197Ssam/*
562105197Ssam * allocating a SP for OUTBOUND or INBOUND packet.
563105197Ssam * Must call key_freesp() later.
564105197Ssam * OUT:	NULL:	not found
565105197Ssam *	others:	found and return the pointer.
566105197Ssam */
567105197Ssamstruct secpolicy *
568105197Ssamkey_allocsp(struct secpolicyindex *spidx, u_int dir, const char* where, int tag)
569105197Ssam{
570105197Ssam	struct secpolicy *sp;
571105197Ssam
572120585Ssam	IPSEC_ASSERT(spidx != NULL, ("null spidx"));
573120585Ssam	IPSEC_ASSERT(dir == IPSEC_DIR_INBOUND || dir == IPSEC_DIR_OUTBOUND,
574120585Ssam		("invalid direction %u", dir));
575105197Ssam
576105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
577120585Ssam		printf("DP %s from %s:%u\n", __func__, where, tag));
578105197Ssam
579105197Ssam	/* get a SP entry */
580105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_DATA,
581105197Ssam		printf("*** objects\n");
582105197Ssam		kdebug_secpolicyindex(spidx));
583105197Ssam
584120585Ssam	SPTREE_LOCK();
585105197Ssam	LIST_FOREACH(sp, &sptree[dir], chain) {
586105197Ssam		KEYDEBUG(KEYDEBUG_IPSEC_DATA,
587105197Ssam			printf("*** in SPD\n");
588105197Ssam			kdebug_secpolicyindex(&sp->spidx));
589105197Ssam
590105197Ssam		if (sp->state == IPSEC_SPSTATE_DEAD)
591105197Ssam			continue;
592105197Ssam		if (key_cmpspidx_withmask(&sp->spidx, spidx))
593105197Ssam			goto found;
594105197Ssam	}
595105197Ssam	sp = NULL;
596105197Ssamfound:
597105197Ssam	if (sp) {
598105197Ssam		/* sanity check */
599120585Ssam		KEY_CHKSPDIR(sp->spidx.dir, dir, __func__);
600105197Ssam
601105197Ssam		/* found a SPD entry */
602105197Ssam		sp->lastused = time_second;
603105197Ssam		SP_ADDREF(sp);
604105197Ssam	}
605120585Ssam	SPTREE_UNLOCK();
606105197Ssam
607105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
608120585Ssam		printf("DP %s return SP:%p (ID=%u) refcnt %u\n", __func__,
609105197Ssam			sp, sp ? sp->id : 0, sp ? sp->refcnt : 0));
610105197Ssam	return sp;
611105197Ssam}
612105197Ssam
613105197Ssam/*
614105197Ssam * allocating a SP for OUTBOUND or INBOUND packet.
615105197Ssam * Must call key_freesp() later.
616105197Ssam * OUT:	NULL:	not found
617105197Ssam *	others:	found and return the pointer.
618105197Ssam */
619105197Ssamstruct secpolicy *
620105197Ssamkey_allocsp2(u_int32_t spi,
621105197Ssam	     union sockaddr_union *dst,
622105197Ssam	     u_int8_t proto,
623105197Ssam	     u_int dir,
624105197Ssam	     const char* where, int tag)
625105197Ssam{
626105197Ssam	struct secpolicy *sp;
627105197Ssam
628120585Ssam	IPSEC_ASSERT(dst != NULL, ("null dst"));
629120585Ssam	IPSEC_ASSERT(dir == IPSEC_DIR_INBOUND || dir == IPSEC_DIR_OUTBOUND,
630120585Ssam		("invalid direction %u", dir));
631105197Ssam
632105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
633120585Ssam		printf("DP %s from %s:%u\n", __func__, where, tag));
634105197Ssam
635105197Ssam	/* get a SP entry */
636105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_DATA,
637105197Ssam		printf("*** objects\n");
638105197Ssam		printf("spi %u proto %u dir %u\n", spi, proto, dir);
639105197Ssam		kdebug_sockaddr(&dst->sa));
640105197Ssam
641120585Ssam	SPTREE_LOCK();
642105197Ssam	LIST_FOREACH(sp, &sptree[dir], chain) {
643105197Ssam		KEYDEBUG(KEYDEBUG_IPSEC_DATA,
644105197Ssam			printf("*** in SPD\n");
645105197Ssam			kdebug_secpolicyindex(&sp->spidx));
646105197Ssam
647105197Ssam		if (sp->state == IPSEC_SPSTATE_DEAD)
648105197Ssam			continue;
649105197Ssam		/* compare simple values, then dst address */
650105197Ssam		if (sp->spidx.ul_proto != proto)
651105197Ssam			continue;
652105197Ssam		/* NB: spi's must exist and match */
653105197Ssam		if (!sp->req || !sp->req->sav || sp->req->sav->spi != spi)
654105197Ssam			continue;
655105197Ssam		if (key_sockaddrcmp(&sp->spidx.dst.sa, &dst->sa, 1) == 0)
656105197Ssam			goto found;
657105197Ssam	}
658105197Ssam	sp = NULL;
659105197Ssamfound:
660105197Ssam	if (sp) {
661105197Ssam		/* sanity check */
662120585Ssam		KEY_CHKSPDIR(sp->spidx.dir, dir, __func__);
663105197Ssam
664105197Ssam		/* found a SPD entry */
665105197Ssam		sp->lastused = time_second;
666105197Ssam		SP_ADDREF(sp);
667105197Ssam	}
668120585Ssam	SPTREE_UNLOCK();
669105197Ssam
670105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
671120585Ssam		printf("DP %s return SP:%p (ID=%u) refcnt %u\n", __func__,
672105197Ssam			sp, sp ? sp->id : 0, sp ? sp->refcnt : 0));
673105197Ssam	return sp;
674105197Ssam}
675105197Ssam
676105197Ssam/*
677105197Ssam * return a policy that matches this particular inbound packet.
678105197Ssam * XXX slow
679105197Ssam */
680105197Ssamstruct secpolicy *
681105197Ssamkey_gettunnel(const struct sockaddr *osrc,
682105197Ssam	      const struct sockaddr *odst,
683105197Ssam	      const struct sockaddr *isrc,
684105197Ssam	      const struct sockaddr *idst,
685105197Ssam	      const char* where, int tag)
686105197Ssam{
687105197Ssam	struct secpolicy *sp;
688105197Ssam	const int dir = IPSEC_DIR_INBOUND;
689105197Ssam	struct ipsecrequest *r1, *r2, *p;
690105197Ssam	struct secpolicyindex spidx;
691105197Ssam
692105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
693120585Ssam		printf("DP %s from %s:%u\n", __func__, where, tag));
694105197Ssam
695105197Ssam	if (isrc->sa_family != idst->sa_family) {
696120585Ssam		ipseclog((LOG_ERR, "%s: protocol family mismatched %d != %d\n.",
697120585Ssam			__func__, isrc->sa_family, idst->sa_family));
698105197Ssam		sp = NULL;
699105197Ssam		goto done;
700105197Ssam	}
701105197Ssam
702120585Ssam	SPTREE_LOCK();
703105197Ssam	LIST_FOREACH(sp, &sptree[dir], chain) {
704105197Ssam		if (sp->state == IPSEC_SPSTATE_DEAD)
705105197Ssam			continue;
706105197Ssam
707105197Ssam		r1 = r2 = NULL;
708105197Ssam		for (p = sp->req; p; p = p->next) {
709105197Ssam			if (p->saidx.mode != IPSEC_MODE_TUNNEL)
710105197Ssam				continue;
711105197Ssam
712105197Ssam			r1 = r2;
713105197Ssam			r2 = p;
714105197Ssam
715105197Ssam			if (!r1) {
716105197Ssam				/* here we look at address matches only */
717105197Ssam				spidx = sp->spidx;
718105197Ssam				if (isrc->sa_len > sizeof(spidx.src) ||
719105197Ssam				    idst->sa_len > sizeof(spidx.dst))
720105197Ssam					continue;
721105197Ssam				bcopy(isrc, &spidx.src, isrc->sa_len);
722105197Ssam				bcopy(idst, &spidx.dst, idst->sa_len);
723105197Ssam				if (!key_cmpspidx_withmask(&sp->spidx, &spidx))
724105197Ssam					continue;
725105197Ssam			} else {
726105197Ssam				if (key_sockaddrcmp(&r1->saidx.src.sa, isrc, 0) ||
727105197Ssam				    key_sockaddrcmp(&r1->saidx.dst.sa, idst, 0))
728105197Ssam					continue;
729105197Ssam			}
730105197Ssam
731105197Ssam			if (key_sockaddrcmp(&r2->saidx.src.sa, osrc, 0) ||
732105197Ssam			    key_sockaddrcmp(&r2->saidx.dst.sa, odst, 0))
733105197Ssam				continue;
734105197Ssam
735105197Ssam			goto found;
736105197Ssam		}
737105197Ssam	}
738105197Ssam	sp = NULL;
739105197Ssamfound:
740105197Ssam	if (sp) {
741105197Ssam		sp->lastused = time_second;
742105197Ssam		SP_ADDREF(sp);
743105197Ssam	}
744120585Ssam	SPTREE_UNLOCK();
745105197Ssamdone:
746105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
747120585Ssam		printf("DP %s return SP:%p (ID=%u) refcnt %u\n", __func__,
748105197Ssam			sp, sp ? sp->id : 0, sp ? sp->refcnt : 0));
749105197Ssam	return sp;
750105197Ssam}
751105197Ssam
752105197Ssam/*
753105197Ssam * allocating an SA entry for an *OUTBOUND* packet.
754105197Ssam * checking each request entries in SP, and acquire an SA if need.
755105197Ssam * OUT:	0: there are valid requests.
756105197Ssam *	ENOENT: policy may be valid, but SA with REQUIRE is on acquiring.
757105197Ssam */
758105197Ssamint
759105197Ssamkey_checkrequest(struct ipsecrequest *isr, const struct secasindex *saidx)
760105197Ssam{
761105197Ssam	u_int level;
762105197Ssam	int error;
763105197Ssam
764120585Ssam	IPSEC_ASSERT(isr != NULL, ("null isr"));
765120585Ssam	IPSEC_ASSERT(saidx != NULL, ("null saidx"));
766120585Ssam	IPSEC_ASSERT(saidx->mode == IPSEC_MODE_TRANSPORT ||
767105197Ssam		saidx->mode == IPSEC_MODE_TUNNEL,
768120585Ssam		("unexpected policy %u", saidx->mode));
769105197Ssam
770105197Ssam	/*
771105197Ssam	 * XXX guard against protocol callbacks from the crypto
772105197Ssam	 * thread as they reference ipsecrequest.sav which we
773105197Ssam	 * temporarily null out below.  Need to rethink how we
774105197Ssam	 * handle bundled SA's in the callback thread.
775105197Ssam	 */
776120585Ssam	IPSECREQUEST_LOCK_ASSERT(isr);
777119643Ssam
778119643Ssam	/* get current level */
779119643Ssam	level = ipsec_get_reqlevel(isr);
780105197Ssam#if 0
781105197Ssam	/*
782105197Ssam	 * We do allocate new SA only if the state of SA in the holder is
783105197Ssam	 * SADB_SASTATE_DEAD.  The SA for outbound must be the oldest.
784105197Ssam	 */
785105197Ssam	if (isr->sav != NULL) {
786105197Ssam		if (isr->sav->sah == NULL)
787120585Ssam			panic("%s: sah is null.\n", __func__);
788105197Ssam		if (isr->sav == (struct secasvar *)LIST_FIRST(
789105197Ssam			    &isr->sav->sah->savtree[SADB_SASTATE_DEAD])) {
790105197Ssam			KEY_FREESAV(&isr->sav);
791105197Ssam			isr->sav = NULL;
792105197Ssam		}
793105197Ssam	}
794105197Ssam#else
795105197Ssam	/*
796105197Ssam	 * we free any SA stashed in the IPsec request because a different
797105197Ssam	 * SA may be involved each time this request is checked, either
798105197Ssam	 * because new SAs are being configured, or this request is
799105197Ssam	 * associated with an unconnected datagram socket, or this request
800105197Ssam	 * is associated with a system default policy.
801105197Ssam	 *
802105197Ssam	 * The operation may have negative impact to performance.  We may
803105197Ssam	 * want to check cached SA carefully, rather than picking new SA
804105197Ssam	 * every time.
805105197Ssam	 */
806105197Ssam	if (isr->sav != NULL) {
807105197Ssam		KEY_FREESAV(&isr->sav);
808105197Ssam		isr->sav = NULL;
809105197Ssam	}
810105197Ssam#endif
811105197Ssam
812105197Ssam	/*
813105197Ssam	 * new SA allocation if no SA found.
814105197Ssam	 * key_allocsa_policy should allocate the oldest SA available.
815105197Ssam	 * See key_do_allocsa_policy(), and draft-jenkins-ipsec-rekeying-03.txt.
816105197Ssam	 */
817105197Ssam	if (isr->sav == NULL)
818105197Ssam		isr->sav = key_allocsa_policy(saidx);
819105197Ssam
820105197Ssam	/* When there is SA. */
821105197Ssam	if (isr->sav != NULL) {
822105197Ssam		if (isr->sav->state != SADB_SASTATE_MATURE &&
823105197Ssam		    isr->sav->state != SADB_SASTATE_DYING)
824105197Ssam			return EINVAL;
825105197Ssam		return 0;
826105197Ssam	}
827105197Ssam
828105197Ssam	/* there is no SA */
829105197Ssam	error = key_acquire(saidx, isr->sp);
830105197Ssam	if (error != 0) {
831105197Ssam		/* XXX What should I do ? */
832120585Ssam		ipseclog((LOG_DEBUG, "%s: error %d returned from key_acquire\n",
833120585Ssam			__func__, error));
834105197Ssam		return error;
835105197Ssam	}
836105197Ssam
837105197Ssam	if (level != IPSEC_LEVEL_REQUIRE) {
838105197Ssam		/* XXX sigh, the interface to this routine is botched */
839120585Ssam		IPSEC_ASSERT(isr->sav == NULL, ("unexpected SA"));
840105197Ssam		return 0;
841105197Ssam	} else {
842105197Ssam		return ENOENT;
843105197Ssam	}
844105197Ssam}
845105197Ssam
846105197Ssam/*
847105197Ssam * allocating a SA for policy entry from SAD.
848105197Ssam * NOTE: searching SAD of aliving state.
849105197Ssam * OUT:	NULL:	not found.
850105197Ssam *	others:	found and return the pointer.
851105197Ssam */
852105197Ssamstatic struct secasvar *
853105197Ssamkey_allocsa_policy(const struct secasindex *saidx)
854105197Ssam{
855128856Ssam#define	N(a)	_ARRAYLEN(a)
856105197Ssam	struct secashead *sah;
857105197Ssam	struct secasvar *sav;
858128856Ssam	u_int stateidx, arraysize;
859128856Ssam	const u_int *state_valid;
860105197Ssam
861120585Ssam	SAHTREE_LOCK();
862105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
863105197Ssam		if (sah->state == SADB_SASTATE_DEAD)
864105197Ssam			continue;
865119643Ssam		if (key_cmpsaidx(&sah->saidx, saidx, CMP_MODE_REQID)) {
866128856Ssam			if (key_preferred_oldsa) {
867128856Ssam				state_valid = saorder_state_valid_prefer_old;
868128856Ssam				arraysize = N(saorder_state_valid_prefer_old);
869128856Ssam			} else {
870128856Ssam				state_valid = saorder_state_valid_prefer_new;
871128856Ssam				arraysize = N(saorder_state_valid_prefer_new);
872128856Ssam			}
873120585Ssam			SAHTREE_UNLOCK();
874105197Ssam			goto found;
875119643Ssam		}
876105197Ssam	}
877120585Ssam	SAHTREE_UNLOCK();
878105197Ssam
879105197Ssam	return NULL;
880105197Ssam
881105197Ssam    found:
882105197Ssam	/* search valid state */
883128856Ssam	for (stateidx = 0; stateidx < arraysize; stateidx++) {
884128856Ssam		sav = key_do_allocsa_policy(sah, state_valid[stateidx]);
885105197Ssam		if (sav != NULL)
886105197Ssam			return sav;
887105197Ssam	}
888105197Ssam
889105197Ssam	return NULL;
890128856Ssam#undef N
891105197Ssam}
892105197Ssam
893105197Ssam/*
894105197Ssam * searching SAD with direction, protocol, mode and state.
895105197Ssam * called by key_allocsa_policy().
896105197Ssam * OUT:
897105197Ssam *	NULL	: not found
898105197Ssam *	others	: found, pointer to a SA.
899105197Ssam */
900105197Ssamstatic struct secasvar *
901105197Ssamkey_do_allocsa_policy(struct secashead *sah, u_int state)
902105197Ssam{
903105197Ssam	struct secasvar *sav, *nextsav, *candidate, *d;
904105197Ssam
905105197Ssam	/* initilize */
906105197Ssam	candidate = NULL;
907105197Ssam
908120585Ssam	SAHTREE_LOCK();
909105197Ssam	for (sav = LIST_FIRST(&sah->savtree[state]);
910105197Ssam	     sav != NULL;
911105197Ssam	     sav = nextsav) {
912105197Ssam
913105197Ssam		nextsav = LIST_NEXT(sav, chain);
914105197Ssam
915105197Ssam		/* sanity check */
916120585Ssam		KEY_CHKSASTATE(sav->state, state, __func__);
917105197Ssam
918105197Ssam		/* initialize */
919105197Ssam		if (candidate == NULL) {
920105197Ssam			candidate = sav;
921105197Ssam			continue;
922105197Ssam		}
923105197Ssam
924105197Ssam		/* Which SA is the better ? */
925105197Ssam
926120585Ssam		IPSEC_ASSERT(candidate->lft_c != NULL,
927120585Ssam			("null candidate lifetime"));
928120585Ssam		IPSEC_ASSERT(sav->lft_c != NULL, ("null sav lifetime"));
929105197Ssam
930105197Ssam		/* What the best method is to compare ? */
931125876Sguido		if (key_preferred_oldsa) {
932157123Sgnn			if (candidate->lft_c->addtime >
933157123Sgnn					sav->lft_c->addtime) {
934105197Ssam				candidate = sav;
935105197Ssam			}
936105197Ssam			continue;
937105197Ssam			/*NOTREACHED*/
938105197Ssam		}
939105197Ssam
940125876Sguido		/* preferred new sa rather than old sa */
941157123Sgnn		if (candidate->lft_c->addtime <
942157123Sgnn				sav->lft_c->addtime) {
943105197Ssam			d = candidate;
944105197Ssam			candidate = sav;
945105197Ssam		} else
946105197Ssam			d = sav;
947105197Ssam
948105197Ssam		/*
949105197Ssam		 * prepared to delete the SA when there is more
950105197Ssam		 * suitable candidate and the lifetime of the SA is not
951105197Ssam		 * permanent.
952105197Ssam		 */
953157123Sgnn		if (d->lft_c->addtime != 0) {
954105197Ssam			struct mbuf *m, *result;
955125508Ssam			u_int8_t satype;
956105197Ssam
957105197Ssam			key_sa_chgstate(d, SADB_SASTATE_DEAD);
958105197Ssam
959120585Ssam			IPSEC_ASSERT(d->refcnt > 0, ("bogus ref count"));
960125508Ssam
961125508Ssam			satype = key_proto2satype(d->sah->saidx.proto);
962125508Ssam			if (satype == 0)
963125508Ssam				goto msgfail;
964125508Ssam
965105197Ssam			m = key_setsadbmsg(SADB_DELETE, 0,
966125508Ssam			    satype, 0, 0, d->refcnt - 1);
967105197Ssam			if (!m)
968105197Ssam				goto msgfail;
969105197Ssam			result = m;
970105197Ssam
971105197Ssam			/* set sadb_address for saidx's. */
972105197Ssam			m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
973105197Ssam				&d->sah->saidx.src.sa,
974105197Ssam				d->sah->saidx.src.sa.sa_len << 3,
975105197Ssam				IPSEC_ULPROTO_ANY);
976105197Ssam			if (!m)
977105197Ssam				goto msgfail;
978105197Ssam			m_cat(result, m);
979105197Ssam
980105197Ssam			/* set sadb_address for saidx's. */
981105197Ssam			m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
982128860Ssam				&d->sah->saidx.dst.sa,
983128860Ssam				d->sah->saidx.dst.sa.sa_len << 3,
984105197Ssam				IPSEC_ULPROTO_ANY);
985105197Ssam			if (!m)
986105197Ssam				goto msgfail;
987105197Ssam			m_cat(result, m);
988105197Ssam
989105197Ssam			/* create SA extension */
990105197Ssam			m = key_setsadbsa(d);
991105197Ssam			if (!m)
992105197Ssam				goto msgfail;
993105197Ssam			m_cat(result, m);
994105197Ssam
995105197Ssam			if (result->m_len < sizeof(struct sadb_msg)) {
996105197Ssam				result = m_pullup(result,
997105197Ssam						sizeof(struct sadb_msg));
998105197Ssam				if (result == NULL)
999105197Ssam					goto msgfail;
1000105197Ssam			}
1001105197Ssam
1002105197Ssam			result->m_pkthdr.len = 0;
1003105197Ssam			for (m = result; m; m = m->m_next)
1004105197Ssam				result->m_pkthdr.len += m->m_len;
1005105197Ssam			mtod(result, struct sadb_msg *)->sadb_msg_len =
1006105197Ssam				PFKEY_UNIT64(result->m_pkthdr.len);
1007105197Ssam
1008105197Ssam			if (key_sendup_mbuf(NULL, result,
1009105197Ssam					KEY_SENDUP_REGISTERED))
1010105197Ssam				goto msgfail;
1011105197Ssam		 msgfail:
1012105197Ssam			KEY_FREESAV(&d);
1013105197Ssam		}
1014105197Ssam	}
1015105197Ssam	if (candidate) {
1016158767Spjd		sa_addref(candidate);
1017105197Ssam		KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1018120585Ssam			printf("DP %s cause refcnt++:%d SA:%p\n",
1019120585Ssam				__func__, candidate->refcnt, candidate));
1020105197Ssam	}
1021120585Ssam	SAHTREE_UNLOCK();
1022119643Ssam
1023105197Ssam	return candidate;
1024105197Ssam}
1025105197Ssam
1026105197Ssam/*
1027105197Ssam * allocating a usable SA entry for a *INBOUND* packet.
1028105197Ssam * Must call key_freesav() later.
1029105197Ssam * OUT: positive:	pointer to a usable sav (i.e. MATURE or DYING state).
1030105197Ssam *	NULL:		not found, or error occured.
1031105197Ssam *
1032105197Ssam * In the comparison, no source address is used--for RFC2401 conformance.
1033105197Ssam * To quote, from section 4.1:
1034105197Ssam *	A security association is uniquely identified by a triple consisting
1035105197Ssam *	of a Security Parameter Index (SPI), an IP Destination Address, and a
1036105197Ssam *	security protocol (AH or ESP) identifier.
1037105197Ssam * Note that, however, we do need to keep source address in IPsec SA.
1038105197Ssam * IKE specification and PF_KEY specification do assume that we
1039105197Ssam * keep source address in IPsec SA.  We see a tricky situation here.
1040105197Ssam */
1041105197Ssamstruct secasvar *
1042105197Ssamkey_allocsa(
1043105197Ssam	union sockaddr_union *dst,
1044105197Ssam	u_int proto,
1045105197Ssam	u_int32_t spi,
1046105197Ssam	const char* where, int tag)
1047105197Ssam{
1048105197Ssam	struct secashead *sah;
1049105197Ssam	struct secasvar *sav;
1050128856Ssam	u_int stateidx, arraysize, state;
1051128856Ssam	const u_int *saorder_state_valid;
1052105197Ssam
1053120585Ssam	IPSEC_ASSERT(dst != NULL, ("null dst address"));
1054105197Ssam
1055105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1056120585Ssam		printf("DP %s from %s:%u\n", __func__, where, tag));
1057105197Ssam
1058105197Ssam	/*
1059105197Ssam	 * searching SAD.
1060105197Ssam	 * XXX: to be checked internal IP header somewhere.  Also when
1061105197Ssam	 * IPsec tunnel packet is received.  But ESP tunnel mode is
1062105197Ssam	 * encrypted so we can't check internal IP header.
1063105197Ssam	 */
1064120585Ssam	SAHTREE_LOCK();
1065128856Ssam	if (key_preferred_oldsa) {
1066128856Ssam		saorder_state_valid = saorder_state_valid_prefer_old;
1067128856Ssam		arraysize = _ARRAYLEN(saorder_state_valid_prefer_old);
1068128856Ssam	} else {
1069128856Ssam		saorder_state_valid = saorder_state_valid_prefer_new;
1070128856Ssam		arraysize = _ARRAYLEN(saorder_state_valid_prefer_new);
1071128856Ssam	}
1072105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
1073105197Ssam		/* search valid state */
1074128856Ssam		for (stateidx = 0; stateidx < arraysize; stateidx++) {
1075105197Ssam			state = saorder_state_valid[stateidx];
1076105197Ssam			LIST_FOREACH(sav, &sah->savtree[state], chain) {
1077105197Ssam				/* sanity check */
1078120585Ssam				KEY_CHKSASTATE(sav->state, state, __func__);
1079105197Ssam				/* do not return entries w/ unusable state */
1080105197Ssam				if (sav->state != SADB_SASTATE_MATURE &&
1081105197Ssam				    sav->state != SADB_SASTATE_DYING)
1082105197Ssam					continue;
1083105197Ssam				if (proto != sav->sah->saidx.proto)
1084105197Ssam					continue;
1085105197Ssam				if (spi != sav->spi)
1086105197Ssam					continue;
1087105197Ssam#if 0	/* don't check src */
1088105197Ssam				/* check src address */
1089105197Ssam				if (key_sockaddrcmp(&src->sa, &sav->sah->saidx.src.sa, 0) != 0)
1090105197Ssam					continue;
1091105197Ssam#endif
1092105197Ssam				/* check dst address */
1093105197Ssam				if (key_sockaddrcmp(&dst->sa, &sav->sah->saidx.dst.sa, 0) != 0)
1094105197Ssam					continue;
1095158767Spjd				sa_addref(sav);
1096105197Ssam				goto done;
1097105197Ssam			}
1098105197Ssam		}
1099105197Ssam	}
1100105197Ssam	sav = NULL;
1101105197Ssamdone:
1102120585Ssam	SAHTREE_UNLOCK();
1103105197Ssam
1104105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1105120585Ssam		printf("DP %s return SA:%p; refcnt %u\n", __func__,
1106105197Ssam			sav, sav ? sav->refcnt : 0));
1107105197Ssam	return sav;
1108105197Ssam}
1109105197Ssam
1110105197Ssam/*
1111105197Ssam * Must be called after calling key_allocsp().
1112105197Ssam * For both the packet without socket and key_freeso().
1113105197Ssam */
1114105197Ssamvoid
1115105197Ssam_key_freesp(struct secpolicy **spp, const char* where, int tag)
1116105197Ssam{
1117105197Ssam	struct secpolicy *sp = *spp;
1118105197Ssam
1119120585Ssam	IPSEC_ASSERT(sp != NULL, ("null sp"));
1120105197Ssam
1121120585Ssam	SPTREE_LOCK();
1122105197Ssam	SP_DELREF(sp);
1123105197Ssam
1124105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1125120585Ssam		printf("DP %s SP:%p (ID=%u) from %s:%u; refcnt now %u\n",
1126120585Ssam			__func__, sp, sp->id, where, tag, sp->refcnt));
1127105197Ssam
1128105197Ssam	if (sp->refcnt == 0) {
1129105197Ssam		*spp = NULL;
1130105197Ssam		key_delsp(sp);
1131105197Ssam	}
1132120585Ssam	SPTREE_UNLOCK();
1133105197Ssam}
1134105197Ssam
1135105197Ssam/*
1136105197Ssam * Must be called after calling key_allocsp().
1137105197Ssam * For the packet with socket.
1138105197Ssam */
1139105197Ssamvoid
1140105197Ssamkey_freeso(struct socket *so)
1141105197Ssam{
1142120585Ssam	IPSEC_ASSERT(so != NULL, ("null so"));
1143105197Ssam
1144105197Ssam	switch (so->so_proto->pr_domain->dom_family) {
1145105197Ssam#ifdef INET
1146105197Ssam	case PF_INET:
1147105197Ssam	    {
1148105197Ssam		struct inpcb *pcb = sotoinpcb(so);
1149105197Ssam
1150105197Ssam		/* Does it have a PCB ? */
1151105197Ssam		if (pcb == NULL)
1152105197Ssam			return;
1153105197Ssam		key_freesp_so(&pcb->inp_sp->sp_in);
1154105197Ssam		key_freesp_so(&pcb->inp_sp->sp_out);
1155105197Ssam	    }
1156105197Ssam		break;
1157105197Ssam#endif
1158105197Ssam#ifdef INET6
1159105197Ssam	case PF_INET6:
1160105197Ssam	    {
1161105197Ssam#ifdef HAVE_NRL_INPCB
1162105197Ssam		struct inpcb *pcb  = sotoinpcb(so);
1163105197Ssam
1164105197Ssam		/* Does it have a PCB ? */
1165105197Ssam		if (pcb == NULL)
1166105197Ssam			return;
1167105197Ssam		key_freesp_so(&pcb->inp_sp->sp_in);
1168105197Ssam		key_freesp_so(&pcb->inp_sp->sp_out);
1169105197Ssam#else
1170105197Ssam		struct in6pcb *pcb  = sotoin6pcb(so);
1171105197Ssam
1172105197Ssam		/* Does it have a PCB ? */
1173105197Ssam		if (pcb == NULL)
1174105197Ssam			return;
1175105197Ssam		key_freesp_so(&pcb->in6p_sp->sp_in);
1176105197Ssam		key_freesp_so(&pcb->in6p_sp->sp_out);
1177105197Ssam#endif
1178105197Ssam	    }
1179105197Ssam		break;
1180105197Ssam#endif /* INET6 */
1181105197Ssam	default:
1182120585Ssam		ipseclog((LOG_DEBUG, "%s: unknown address family=%d.\n",
1183120585Ssam		    __func__, so->so_proto->pr_domain->dom_family));
1184105197Ssam		return;
1185105197Ssam	}
1186105197Ssam}
1187105197Ssam
1188105197Ssamstatic void
1189105197Ssamkey_freesp_so(struct secpolicy **sp)
1190105197Ssam{
1191120585Ssam	IPSEC_ASSERT(sp != NULL && *sp != NULL, ("null sp"));
1192105197Ssam
1193105197Ssam	if ((*sp)->policy == IPSEC_POLICY_ENTRUST ||
1194105197Ssam	    (*sp)->policy == IPSEC_POLICY_BYPASS)
1195105197Ssam		return;
1196105197Ssam
1197120585Ssam	IPSEC_ASSERT((*sp)->policy == IPSEC_POLICY_IPSEC,
1198120585Ssam		("invalid policy %u", (*sp)->policy));
1199105197Ssam	KEY_FREESP(sp);
1200105197Ssam}
1201105197Ssam
1202105197Ssam/*
1203105197Ssam * Must be called after calling key_allocsa().
1204105197Ssam * This function is called by key_freesp() to free some SA allocated
1205105197Ssam * for a policy.
1206105197Ssam */
1207105197Ssamvoid
1208105197Ssamkey_freesav(struct secasvar **psav, const char* where, int tag)
1209105197Ssam{
1210105197Ssam	struct secasvar *sav = *psav;
1211105197Ssam
1212120585Ssam	IPSEC_ASSERT(sav != NULL, ("null sav"));
1213105197Ssam
1214158767Spjd	if (sa_delref(sav)) {
1215158767Spjd		KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1216158767Spjd			printf("DP %s SA:%p (SPI %u) from %s:%u; refcnt now %u\n",
1217158767Spjd				__func__, sav, ntohl(sav->spi), where, tag, sav->refcnt));
1218105197Ssam		*psav = NULL;
1219105197Ssam		key_delsav(sav);
1220158767Spjd	} else {
1221158767Spjd		KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1222158767Spjd			printf("DP %s SA:%p (SPI %u) from %s:%u; refcnt now %u\n",
1223158767Spjd				__func__, sav, ntohl(sav->spi), where, tag, sav->refcnt));
1224105197Ssam	}
1225105197Ssam}
1226105197Ssam
1227105197Ssam/* %%% SPD management */
1228105197Ssam/*
1229105197Ssam * free security policy entry.
1230105197Ssam */
1231105197Ssamstatic void
1232105197Ssamkey_delsp(struct secpolicy *sp)
1233105197Ssam{
1234119643Ssam	struct ipsecrequest *isr, *nextisr;
1235105197Ssam
1236120585Ssam	IPSEC_ASSERT(sp != NULL, ("null sp"));
1237120585Ssam	SPTREE_LOCK_ASSERT();
1238105197Ssam
1239105197Ssam	sp->state = IPSEC_SPSTATE_DEAD;
1240105197Ssam
1241120585Ssam	IPSEC_ASSERT(sp->refcnt == 0,
1242120585Ssam		("SP with references deleted (refcnt %u)", sp->refcnt));
1243105197Ssam
1244105197Ssam	/* remove from SP index */
1245105197Ssam	if (__LIST_CHAINED(sp))
1246105197Ssam		LIST_REMOVE(sp, chain);
1247105197Ssam
1248119643Ssam	for (isr = sp->req; isr != NULL; isr = nextisr) {
1249105197Ssam		if (isr->sav != NULL) {
1250105197Ssam			KEY_FREESAV(&isr->sav);
1251105197Ssam			isr->sav = NULL;
1252105197Ssam		}
1253105197Ssam
1254105197Ssam		nextisr = isr->next;
1255119643Ssam		ipsec_delisr(isr);
1256105197Ssam	}
1257119643Ssam	_key_delsp(sp);
1258105197Ssam}
1259105197Ssam
1260105197Ssam/*
1261105197Ssam * search SPD
1262105197Ssam * OUT:	NULL	: not found
1263105197Ssam *	others	: found, pointer to a SP.
1264105197Ssam */
1265105197Ssamstatic struct secpolicy *
1266105197Ssamkey_getsp(struct secpolicyindex *spidx)
1267105197Ssam{
1268105197Ssam	struct secpolicy *sp;
1269105197Ssam
1270120585Ssam	IPSEC_ASSERT(spidx != NULL, ("null spidx"));
1271105197Ssam
1272120585Ssam	SPTREE_LOCK();
1273105197Ssam	LIST_FOREACH(sp, &sptree[spidx->dir], chain) {
1274105197Ssam		if (sp->state == IPSEC_SPSTATE_DEAD)
1275105197Ssam			continue;
1276105197Ssam		if (key_cmpspidx_exactly(spidx, &sp->spidx)) {
1277105197Ssam			SP_ADDREF(sp);
1278119643Ssam			break;
1279105197Ssam		}
1280105197Ssam	}
1281120585Ssam	SPTREE_UNLOCK();
1282105197Ssam
1283119643Ssam	return sp;
1284105197Ssam}
1285105197Ssam
1286105197Ssam/*
1287105197Ssam * get SP by index.
1288105197Ssam * OUT:	NULL	: not found
1289105197Ssam *	others	: found, pointer to a SP.
1290105197Ssam */
1291105197Ssamstatic struct secpolicy *
1292105197Ssamkey_getspbyid(u_int32_t id)
1293105197Ssam{
1294105197Ssam	struct secpolicy *sp;
1295105197Ssam
1296120585Ssam	SPTREE_LOCK();
1297105197Ssam	LIST_FOREACH(sp, &sptree[IPSEC_DIR_INBOUND], chain) {
1298105197Ssam		if (sp->state == IPSEC_SPSTATE_DEAD)
1299105197Ssam			continue;
1300105197Ssam		if (sp->id == id) {
1301105197Ssam			SP_ADDREF(sp);
1302119643Ssam			goto done;
1303105197Ssam		}
1304105197Ssam	}
1305105197Ssam
1306105197Ssam	LIST_FOREACH(sp, &sptree[IPSEC_DIR_OUTBOUND], chain) {
1307105197Ssam		if (sp->state == IPSEC_SPSTATE_DEAD)
1308105197Ssam			continue;
1309105197Ssam		if (sp->id == id) {
1310105197Ssam			SP_ADDREF(sp);
1311119643Ssam			goto done;
1312105197Ssam		}
1313105197Ssam	}
1314119643Ssamdone:
1315120585Ssam	SPTREE_UNLOCK();
1316105197Ssam
1317119643Ssam	return sp;
1318105197Ssam}
1319105197Ssam
1320105197Ssamstruct secpolicy *
1321105197Ssamkey_newsp(const char* where, int tag)
1322105197Ssam{
1323105197Ssam	struct secpolicy *newsp = NULL;
1324105197Ssam
1325105197Ssam	newsp = (struct secpolicy *)
1326119643Ssam		malloc(sizeof(struct secpolicy), M_IPSEC_SP, M_NOWAIT|M_ZERO);
1327105197Ssam	if (newsp) {
1328120585Ssam		SECPOLICY_LOCK_INIT(newsp);
1329105197Ssam		newsp->refcnt = 1;
1330105197Ssam		newsp->req = NULL;
1331105197Ssam	}
1332105197Ssam
1333105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
1334120585Ssam		printf("DP %s from %s:%u return SP:%p\n", __func__,
1335105197Ssam			where, tag, newsp));
1336105197Ssam	return newsp;
1337105197Ssam}
1338105197Ssam
1339119643Ssamstatic void
1340119643Ssam_key_delsp(struct secpolicy *sp)
1341119643Ssam{
1342120585Ssam	SECPOLICY_LOCK_DESTROY(sp);
1343119643Ssam	free(sp, M_IPSEC_SP);
1344119643Ssam}
1345119643Ssam
1346105197Ssam/*
1347105197Ssam * create secpolicy structure from sadb_x_policy structure.
1348105197Ssam * NOTE: `state', `secpolicyindex' in secpolicy structure are not set,
1349105197Ssam * so must be set properly later.
1350105197Ssam */
1351105197Ssamstruct secpolicy *
1352105197Ssamkey_msg2sp(xpl0, len, error)
1353105197Ssam	struct sadb_x_policy *xpl0;
1354105197Ssam	size_t len;
1355105197Ssam	int *error;
1356105197Ssam{
1357105197Ssam	struct secpolicy *newsp;
1358105197Ssam
1359120585Ssam	IPSEC_ASSERT(xpl0 != NULL, ("null xpl0"));
1360127972Spjd	IPSEC_ASSERT(len >= sizeof(*xpl0), ("policy too short: %zu", len));
1361120585Ssam
1362105197Ssam	if (len != PFKEY_EXTLEN(xpl0)) {
1363120585Ssam		ipseclog((LOG_DEBUG, "%s: Invalid msg length.\n", __func__));
1364105197Ssam		*error = EINVAL;
1365105197Ssam		return NULL;
1366105197Ssam	}
1367105197Ssam
1368105197Ssam	if ((newsp = KEY_NEWSP()) == NULL) {
1369105197Ssam		*error = ENOBUFS;
1370105197Ssam		return NULL;
1371105197Ssam	}
1372105197Ssam
1373105197Ssam	newsp->spidx.dir = xpl0->sadb_x_policy_dir;
1374105197Ssam	newsp->policy = xpl0->sadb_x_policy_type;
1375105197Ssam
1376105197Ssam	/* check policy */
1377105197Ssam	switch (xpl0->sadb_x_policy_type) {
1378105197Ssam	case IPSEC_POLICY_DISCARD:
1379105197Ssam	case IPSEC_POLICY_NONE:
1380105197Ssam	case IPSEC_POLICY_ENTRUST:
1381105197Ssam	case IPSEC_POLICY_BYPASS:
1382105197Ssam		newsp->req = NULL;
1383105197Ssam		break;
1384105197Ssam
1385105197Ssam	case IPSEC_POLICY_IPSEC:
1386105197Ssam	    {
1387105197Ssam		int tlen;
1388105197Ssam		struct sadb_x_ipsecrequest *xisr;
1389105197Ssam		struct ipsecrequest **p_isr = &newsp->req;
1390105197Ssam
1391105197Ssam		/* validity check */
1392105197Ssam		if (PFKEY_EXTLEN(xpl0) < sizeof(*xpl0)) {
1393120585Ssam			ipseclog((LOG_DEBUG, "%s: Invalid msg length.\n",
1394120585Ssam				__func__));
1395105197Ssam			KEY_FREESP(&newsp);
1396105197Ssam			*error = EINVAL;
1397105197Ssam			return NULL;
1398105197Ssam		}
1399105197Ssam
1400105197Ssam		tlen = PFKEY_EXTLEN(xpl0) - sizeof(*xpl0);
1401105197Ssam		xisr = (struct sadb_x_ipsecrequest *)(xpl0 + 1);
1402105197Ssam
1403105197Ssam		while (tlen > 0) {
1404105197Ssam			/* length check */
1405105197Ssam			if (xisr->sadb_x_ipsecrequest_len < sizeof(*xisr)) {
1406120585Ssam				ipseclog((LOG_DEBUG, "%s: invalid ipsecrequest "
1407120585Ssam					"length.\n", __func__));
1408105197Ssam				KEY_FREESP(&newsp);
1409105197Ssam				*error = EINVAL;
1410105197Ssam				return NULL;
1411105197Ssam			}
1412105197Ssam
1413105197Ssam			/* allocate request buffer */
1414119643Ssam			/* NB: data structure is zero'd */
1415119643Ssam			*p_isr = ipsec_newisr();
1416105197Ssam			if ((*p_isr) == NULL) {
1417105197Ssam				ipseclog((LOG_DEBUG,
1418120585Ssam				    "%s: No more memory.\n", __func__));
1419105197Ssam				KEY_FREESP(&newsp);
1420105197Ssam				*error = ENOBUFS;
1421105197Ssam				return NULL;
1422105197Ssam			}
1423105197Ssam
1424105197Ssam			/* set values */
1425105197Ssam			switch (xisr->sadb_x_ipsecrequest_proto) {
1426105197Ssam			case IPPROTO_ESP:
1427105197Ssam			case IPPROTO_AH:
1428105197Ssam			case IPPROTO_IPCOMP:
1429105197Ssam				break;
1430105197Ssam			default:
1431105197Ssam				ipseclog((LOG_DEBUG,
1432120585Ssam				    "%s: invalid proto type=%u\n", __func__,
1433105197Ssam				    xisr->sadb_x_ipsecrequest_proto));
1434105197Ssam				KEY_FREESP(&newsp);
1435105197Ssam				*error = EPROTONOSUPPORT;
1436105197Ssam				return NULL;
1437105197Ssam			}
1438105197Ssam			(*p_isr)->saidx.proto = xisr->sadb_x_ipsecrequest_proto;
1439105197Ssam
1440105197Ssam			switch (xisr->sadb_x_ipsecrequest_mode) {
1441105197Ssam			case IPSEC_MODE_TRANSPORT:
1442105197Ssam			case IPSEC_MODE_TUNNEL:
1443105197Ssam				break;
1444105197Ssam			case IPSEC_MODE_ANY:
1445105197Ssam			default:
1446105197Ssam				ipseclog((LOG_DEBUG,
1447120585Ssam				    "%s: invalid mode=%u\n", __func__,
1448105197Ssam				    xisr->sadb_x_ipsecrequest_mode));
1449105197Ssam				KEY_FREESP(&newsp);
1450105197Ssam				*error = EINVAL;
1451105197Ssam				return NULL;
1452105197Ssam			}
1453105197Ssam			(*p_isr)->saidx.mode = xisr->sadb_x_ipsecrequest_mode;
1454105197Ssam
1455105197Ssam			switch (xisr->sadb_x_ipsecrequest_level) {
1456105197Ssam			case IPSEC_LEVEL_DEFAULT:
1457105197Ssam			case IPSEC_LEVEL_USE:
1458105197Ssam			case IPSEC_LEVEL_REQUIRE:
1459105197Ssam				break;
1460105197Ssam			case IPSEC_LEVEL_UNIQUE:
1461105197Ssam				/* validity check */
1462105197Ssam				/*
1463105197Ssam				 * If range violation of reqid, kernel will
1464105197Ssam				 * update it, don't refuse it.
1465105197Ssam				 */
1466105197Ssam				if (xisr->sadb_x_ipsecrequest_reqid
1467105197Ssam						> IPSEC_MANUAL_REQID_MAX) {
1468105197Ssam					ipseclog((LOG_DEBUG,
1469120585Ssam					    "%s: reqid=%d range "
1470105197Ssam					    "violation, updated by kernel.\n",
1471120585Ssam					    __func__,
1472105197Ssam					    xisr->sadb_x_ipsecrequest_reqid));
1473105197Ssam					xisr->sadb_x_ipsecrequest_reqid = 0;
1474105197Ssam				}
1475105197Ssam
1476105197Ssam				/* allocate new reqid id if reqid is zero. */
1477105197Ssam				if (xisr->sadb_x_ipsecrequest_reqid == 0) {
1478105197Ssam					u_int32_t reqid;
1479105197Ssam					if ((reqid = key_newreqid()) == 0) {
1480105197Ssam						KEY_FREESP(&newsp);
1481105197Ssam						*error = ENOBUFS;
1482105197Ssam						return NULL;
1483105197Ssam					}
1484105197Ssam					(*p_isr)->saidx.reqid = reqid;
1485105197Ssam					xisr->sadb_x_ipsecrequest_reqid = reqid;
1486105197Ssam				} else {
1487105197Ssam				/* set it for manual keying. */
1488105197Ssam					(*p_isr)->saidx.reqid =
1489105197Ssam						xisr->sadb_x_ipsecrequest_reqid;
1490105197Ssam				}
1491105197Ssam				break;
1492105197Ssam
1493105197Ssam			default:
1494120585Ssam				ipseclog((LOG_DEBUG, "%s: invalid level=%u\n",
1495120585Ssam					__func__,
1496105197Ssam					xisr->sadb_x_ipsecrequest_level));
1497105197Ssam				KEY_FREESP(&newsp);
1498105197Ssam				*error = EINVAL;
1499105197Ssam				return NULL;
1500105197Ssam			}
1501105197Ssam			(*p_isr)->level = xisr->sadb_x_ipsecrequest_level;
1502105197Ssam
1503105197Ssam			/* set IP addresses if there */
1504105197Ssam			if (xisr->sadb_x_ipsecrequest_len > sizeof(*xisr)) {
1505105197Ssam				struct sockaddr *paddr;
1506105197Ssam
1507105197Ssam				paddr = (struct sockaddr *)(xisr + 1);
1508105197Ssam
1509105197Ssam				/* validity check */
1510105197Ssam				if (paddr->sa_len
1511105197Ssam				    > sizeof((*p_isr)->saidx.src)) {
1512120585Ssam					ipseclog((LOG_DEBUG, "%s: invalid "
1513120585Ssam						"request address length.\n",
1514120585Ssam						__func__));
1515105197Ssam					KEY_FREESP(&newsp);
1516105197Ssam					*error = EINVAL;
1517105197Ssam					return NULL;
1518105197Ssam				}
1519105197Ssam				bcopy(paddr, &(*p_isr)->saidx.src,
1520105197Ssam					paddr->sa_len);
1521105197Ssam
1522105197Ssam				paddr = (struct sockaddr *)((caddr_t)paddr
1523105197Ssam							+ paddr->sa_len);
1524105197Ssam
1525105197Ssam				/* validity check */
1526105197Ssam				if (paddr->sa_len
1527105197Ssam				    > sizeof((*p_isr)->saidx.dst)) {
1528120585Ssam					ipseclog((LOG_DEBUG, "%s: invalid "
1529120585Ssam						"request address length.\n",
1530120585Ssam						__func__));
1531105197Ssam					KEY_FREESP(&newsp);
1532105197Ssam					*error = EINVAL;
1533105197Ssam					return NULL;
1534105197Ssam				}
1535105197Ssam				bcopy(paddr, &(*p_isr)->saidx.dst,
1536105197Ssam					paddr->sa_len);
1537105197Ssam			}
1538105197Ssam
1539105197Ssam			(*p_isr)->sp = newsp;
1540105197Ssam
1541105197Ssam			/* initialization for the next. */
1542105197Ssam			p_isr = &(*p_isr)->next;
1543105197Ssam			tlen -= xisr->sadb_x_ipsecrequest_len;
1544105197Ssam
1545105197Ssam			/* validity check */
1546105197Ssam			if (tlen < 0) {
1547120585Ssam				ipseclog((LOG_DEBUG, "%s: becoming tlen < 0.\n",
1548120585Ssam					__func__));
1549105197Ssam				KEY_FREESP(&newsp);
1550105197Ssam				*error = EINVAL;
1551105197Ssam				return NULL;
1552105197Ssam			}
1553105197Ssam
1554105197Ssam			xisr = (struct sadb_x_ipsecrequest *)((caddr_t)xisr
1555105197Ssam			                 + xisr->sadb_x_ipsecrequest_len);
1556105197Ssam		}
1557105197Ssam	    }
1558105197Ssam		break;
1559105197Ssam	default:
1560120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid policy type.\n", __func__));
1561105197Ssam		KEY_FREESP(&newsp);
1562105197Ssam		*error = EINVAL;
1563105197Ssam		return NULL;
1564105197Ssam	}
1565105197Ssam
1566105197Ssam	*error = 0;
1567105197Ssam	return newsp;
1568105197Ssam}
1569105197Ssam
1570105197Ssamstatic u_int32_t
1571105197Ssamkey_newreqid()
1572105197Ssam{
1573105197Ssam	static u_int32_t auto_reqid = IPSEC_MANUAL_REQID_MAX + 1;
1574105197Ssam
1575105197Ssam	auto_reqid = (auto_reqid == ~0
1576105197Ssam			? IPSEC_MANUAL_REQID_MAX + 1 : auto_reqid + 1);
1577105197Ssam
1578105197Ssam	/* XXX should be unique check */
1579105197Ssam
1580105197Ssam	return auto_reqid;
1581105197Ssam}
1582105197Ssam
1583105197Ssam/*
1584105197Ssam * copy secpolicy struct to sadb_x_policy structure indicated.
1585105197Ssam */
1586105197Ssamstruct mbuf *
1587105197Ssamkey_sp2msg(sp)
1588105197Ssam	struct secpolicy *sp;
1589105197Ssam{
1590105197Ssam	struct sadb_x_policy *xpl;
1591105197Ssam	int tlen;
1592105197Ssam	caddr_t p;
1593105197Ssam	struct mbuf *m;
1594105197Ssam
1595120585Ssam	IPSEC_ASSERT(sp != NULL, ("null policy"));
1596105197Ssam
1597105197Ssam	tlen = key_getspreqmsglen(sp);
1598105197Ssam
1599105197Ssam	m = key_alloc_mbuf(tlen);
1600105197Ssam	if (!m || m->m_next) {	/*XXX*/
1601105197Ssam		if (m)
1602105197Ssam			m_freem(m);
1603105197Ssam		return NULL;
1604105197Ssam	}
1605105197Ssam
1606105197Ssam	m->m_len = tlen;
1607105197Ssam	m->m_next = NULL;
1608105197Ssam	xpl = mtod(m, struct sadb_x_policy *);
1609105197Ssam	bzero(xpl, tlen);
1610105197Ssam
1611105197Ssam	xpl->sadb_x_policy_len = PFKEY_UNIT64(tlen);
1612105197Ssam	xpl->sadb_x_policy_exttype = SADB_X_EXT_POLICY;
1613105197Ssam	xpl->sadb_x_policy_type = sp->policy;
1614105197Ssam	xpl->sadb_x_policy_dir = sp->spidx.dir;
1615105197Ssam	xpl->sadb_x_policy_id = sp->id;
1616105197Ssam	p = (caddr_t)xpl + sizeof(*xpl);
1617105197Ssam
1618105197Ssam	/* if is the policy for ipsec ? */
1619105197Ssam	if (sp->policy == IPSEC_POLICY_IPSEC) {
1620105197Ssam		struct sadb_x_ipsecrequest *xisr;
1621105197Ssam		struct ipsecrequest *isr;
1622105197Ssam
1623105197Ssam		for (isr = sp->req; isr != NULL; isr = isr->next) {
1624105197Ssam
1625105197Ssam			xisr = (struct sadb_x_ipsecrequest *)p;
1626105197Ssam
1627105197Ssam			xisr->sadb_x_ipsecrequest_proto = isr->saidx.proto;
1628105197Ssam			xisr->sadb_x_ipsecrequest_mode = isr->saidx.mode;
1629105197Ssam			xisr->sadb_x_ipsecrequest_level = isr->level;
1630105197Ssam			xisr->sadb_x_ipsecrequest_reqid = isr->saidx.reqid;
1631105197Ssam
1632105197Ssam			p += sizeof(*xisr);
1633105197Ssam			bcopy(&isr->saidx.src, p, isr->saidx.src.sa.sa_len);
1634105197Ssam			p += isr->saidx.src.sa.sa_len;
1635105197Ssam			bcopy(&isr->saidx.dst, p, isr->saidx.dst.sa.sa_len);
1636105197Ssam			p += isr->saidx.src.sa.sa_len;
1637105197Ssam
1638105197Ssam			xisr->sadb_x_ipsecrequest_len =
1639105197Ssam				PFKEY_ALIGN8(sizeof(*xisr)
1640105197Ssam					+ isr->saidx.src.sa.sa_len
1641105197Ssam					+ isr->saidx.dst.sa.sa_len);
1642105197Ssam		}
1643105197Ssam	}
1644105197Ssam
1645105197Ssam	return m;
1646105197Ssam}
1647105197Ssam
1648105197Ssam/* m will not be freed nor modified */
1649105197Ssamstatic struct mbuf *
1650105197Ssam#ifdef __STDC__
1651105197Ssamkey_gather_mbuf(struct mbuf *m, const struct sadb_msghdr *mhp,
1652105197Ssam	int ndeep, int nitem, ...)
1653105197Ssam#else
1654105197Ssamkey_gather_mbuf(m, mhp, ndeep, nitem, va_alist)
1655105197Ssam	struct mbuf *m;
1656105197Ssam	const struct sadb_msghdr *mhp;
1657105197Ssam	int ndeep;
1658105197Ssam	int nitem;
1659105197Ssam	va_dcl
1660105197Ssam#endif
1661105197Ssam{
1662105197Ssam	va_list ap;
1663105197Ssam	int idx;
1664105197Ssam	int i;
1665105197Ssam	struct mbuf *result = NULL, *n;
1666105197Ssam	int len;
1667105197Ssam
1668120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
1669120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
1670105197Ssam
1671105197Ssam	va_start(ap, nitem);
1672105197Ssam	for (i = 0; i < nitem; i++) {
1673105197Ssam		idx = va_arg(ap, int);
1674105197Ssam		if (idx < 0 || idx > SADB_EXT_MAX)
1675105197Ssam			goto fail;
1676105197Ssam		/* don't attempt to pull empty extension */
1677105197Ssam		if (idx == SADB_EXT_RESERVED && mhp->msg == NULL)
1678105197Ssam			continue;
1679105197Ssam		if (idx != SADB_EXT_RESERVED  &&
1680105197Ssam		    (mhp->ext[idx] == NULL || mhp->extlen[idx] == 0))
1681105197Ssam			continue;
1682105197Ssam
1683105197Ssam		if (idx == SADB_EXT_RESERVED) {
1684105197Ssam			len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
1685120585Ssam
1686120585Ssam			IPSEC_ASSERT(len <= MHLEN, ("header too big %u", len));
1687120585Ssam
1688111119Simp			MGETHDR(n, M_DONTWAIT, MT_DATA);
1689105197Ssam			if (!n)
1690105197Ssam				goto fail;
1691105197Ssam			n->m_len = len;
1692105197Ssam			n->m_next = NULL;
1693105197Ssam			m_copydata(m, 0, sizeof(struct sadb_msg),
1694105197Ssam			    mtod(n, caddr_t));
1695105197Ssam		} else if (i < ndeep) {
1696105197Ssam			len = mhp->extlen[idx];
1697105197Ssam			n = key_alloc_mbuf(len);
1698105197Ssam			if (!n || n->m_next) {	/*XXX*/
1699105197Ssam				if (n)
1700105197Ssam					m_freem(n);
1701105197Ssam				goto fail;
1702105197Ssam			}
1703105197Ssam			m_copydata(m, mhp->extoff[idx], mhp->extlen[idx],
1704105197Ssam			    mtod(n, caddr_t));
1705105197Ssam		} else {
1706105197Ssam			n = m_copym(m, mhp->extoff[idx], mhp->extlen[idx],
1707111119Simp			    M_DONTWAIT);
1708105197Ssam		}
1709105197Ssam		if (n == NULL)
1710105197Ssam			goto fail;
1711105197Ssam
1712105197Ssam		if (result)
1713105197Ssam			m_cat(result, n);
1714105197Ssam		else
1715105197Ssam			result = n;
1716105197Ssam	}
1717105197Ssam	va_end(ap);
1718105197Ssam
1719105197Ssam	if ((result->m_flags & M_PKTHDR) != 0) {
1720105197Ssam		result->m_pkthdr.len = 0;
1721105197Ssam		for (n = result; n; n = n->m_next)
1722105197Ssam			result->m_pkthdr.len += n->m_len;
1723105197Ssam	}
1724105197Ssam
1725105197Ssam	return result;
1726105197Ssam
1727105197Ssamfail:
1728105197Ssam	m_freem(result);
1729105197Ssam	return NULL;
1730105197Ssam}
1731105197Ssam
1732105197Ssam/*
1733105197Ssam * SADB_X_SPDADD, SADB_X_SPDSETIDX or SADB_X_SPDUPDATE processing
1734108533Sschweikh * add an entry to SP database, when received
1735105197Ssam *   <base, address(SD), (lifetime(H),) policy>
1736105197Ssam * from the user(?).
1737105197Ssam * Adding to SP database,
1738105197Ssam * and send
1739105197Ssam *   <base, address(SD), (lifetime(H),) policy>
1740105197Ssam * to the socket which was send.
1741105197Ssam *
1742105197Ssam * SPDADD set a unique policy entry.
1743105197Ssam * SPDSETIDX like SPDADD without a part of policy requests.
1744105197Ssam * SPDUPDATE replace a unique policy entry.
1745105197Ssam *
1746105197Ssam * m will always be freed.
1747105197Ssam */
1748105197Ssamstatic int
1749105197Ssamkey_spdadd(so, m, mhp)
1750105197Ssam	struct socket *so;
1751105197Ssam	struct mbuf *m;
1752105197Ssam	const struct sadb_msghdr *mhp;
1753105197Ssam{
1754105197Ssam	struct sadb_address *src0, *dst0;
1755105197Ssam	struct sadb_x_policy *xpl0, *xpl;
1756105197Ssam	struct sadb_lifetime *lft = NULL;
1757105197Ssam	struct secpolicyindex spidx;
1758105197Ssam	struct secpolicy *newsp;
1759105197Ssam	int error;
1760105197Ssam
1761120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
1762120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
1763120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
1764120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
1765105197Ssam
1766105197Ssam	if (mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
1767105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_DST] == NULL ||
1768105197Ssam	    mhp->ext[SADB_X_EXT_POLICY] == NULL) {
1769105197Ssam		ipseclog((LOG_DEBUG, "key_spdadd: invalid message is passed.\n"));
1770105197Ssam		return key_senderror(so, m, EINVAL);
1771105197Ssam	}
1772105197Ssam	if (mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
1773105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address) ||
1774105197Ssam	    mhp->extlen[SADB_X_EXT_POLICY] < sizeof(struct sadb_x_policy)) {
1775120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
1776120585Ssam			__func__));
1777105197Ssam		return key_senderror(so, m, EINVAL);
1778105197Ssam	}
1779105197Ssam	if (mhp->ext[SADB_EXT_LIFETIME_HARD] != NULL) {
1780105197Ssam		if (mhp->extlen[SADB_EXT_LIFETIME_HARD]
1781105197Ssam			< sizeof(struct sadb_lifetime)) {
1782120585Ssam			ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
1783120585Ssam				__func__));
1784105197Ssam			return key_senderror(so, m, EINVAL);
1785105197Ssam		}
1786105197Ssam		lft = (struct sadb_lifetime *)mhp->ext[SADB_EXT_LIFETIME_HARD];
1787105197Ssam	}
1788105197Ssam
1789105197Ssam	src0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_SRC];
1790105197Ssam	dst0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_DST];
1791105197Ssam	xpl0 = (struct sadb_x_policy *)mhp->ext[SADB_X_EXT_POLICY];
1792105197Ssam
1793105197Ssam	/* make secindex */
1794105197Ssam	/* XXX boundary check against sa_len */
1795105197Ssam	KEY_SETSECSPIDX(xpl0->sadb_x_policy_dir,
1796105197Ssam	                src0 + 1,
1797105197Ssam	                dst0 + 1,
1798105197Ssam	                src0->sadb_address_prefixlen,
1799105197Ssam	                dst0->sadb_address_prefixlen,
1800105197Ssam	                src0->sadb_address_proto,
1801105197Ssam	                &spidx);
1802105197Ssam
1803105197Ssam	/* checking the direciton. */
1804105197Ssam	switch (xpl0->sadb_x_policy_dir) {
1805105197Ssam	case IPSEC_DIR_INBOUND:
1806105197Ssam	case IPSEC_DIR_OUTBOUND:
1807105197Ssam		break;
1808105197Ssam	default:
1809120585Ssam		ipseclog((LOG_DEBUG, "%s: Invalid SP direction.\n", __func__));
1810105197Ssam		mhp->msg->sadb_msg_errno = EINVAL;
1811105197Ssam		return 0;
1812105197Ssam	}
1813105197Ssam
1814105197Ssam	/* check policy */
1815105197Ssam	/* key_spdadd() accepts DISCARD, NONE and IPSEC. */
1816105197Ssam	if (xpl0->sadb_x_policy_type == IPSEC_POLICY_ENTRUST
1817105197Ssam	 || xpl0->sadb_x_policy_type == IPSEC_POLICY_BYPASS) {
1818120585Ssam		ipseclog((LOG_DEBUG, "%s: Invalid policy type.\n", __func__));
1819105197Ssam		return key_senderror(so, m, EINVAL);
1820105197Ssam	}
1821105197Ssam
1822105197Ssam	/* policy requests are mandatory when action is ipsec. */
1823105197Ssam        if (mhp->msg->sadb_msg_type != SADB_X_SPDSETIDX
1824105197Ssam	 && xpl0->sadb_x_policy_type == IPSEC_POLICY_IPSEC
1825105197Ssam	 && mhp->extlen[SADB_X_EXT_POLICY] <= sizeof(*xpl0)) {
1826120585Ssam		ipseclog((LOG_DEBUG, "%s: some policy requests part required\n",
1827120585Ssam			__func__));
1828105197Ssam		return key_senderror(so, m, EINVAL);
1829105197Ssam	}
1830105197Ssam
1831105197Ssam	/*
1832105197Ssam	 * checking there is SP already or not.
1833105197Ssam	 * SPDUPDATE doesn't depend on whether there is a SP or not.
1834105197Ssam	 * If the type is either SPDADD or SPDSETIDX AND a SP is found,
1835105197Ssam	 * then error.
1836105197Ssam	 */
1837105197Ssam	newsp = key_getsp(&spidx);
1838105197Ssam	if (mhp->msg->sadb_msg_type == SADB_X_SPDUPDATE) {
1839105197Ssam		if (newsp) {
1840105197Ssam			newsp->state = IPSEC_SPSTATE_DEAD;
1841105197Ssam			KEY_FREESP(&newsp);
1842105197Ssam		}
1843105197Ssam	} else {
1844105197Ssam		if (newsp != NULL) {
1845105197Ssam			KEY_FREESP(&newsp);
1846120585Ssam			ipseclog((LOG_DEBUG, "%s: a SP entry exists already.\n",
1847120585Ssam				__func__));
1848105197Ssam			return key_senderror(so, m, EEXIST);
1849105197Ssam		}
1850105197Ssam	}
1851105197Ssam
1852105197Ssam	/* allocation new SP entry */
1853105197Ssam	if ((newsp = key_msg2sp(xpl0, PFKEY_EXTLEN(xpl0), &error)) == NULL) {
1854105197Ssam		return key_senderror(so, m, error);
1855105197Ssam	}
1856105197Ssam
1857105197Ssam	if ((newsp->id = key_getnewspid()) == 0) {
1858119643Ssam		_key_delsp(newsp);
1859105197Ssam		return key_senderror(so, m, ENOBUFS);
1860105197Ssam	}
1861105197Ssam
1862105197Ssam	/* XXX boundary check against sa_len */
1863105197Ssam	KEY_SETSECSPIDX(xpl0->sadb_x_policy_dir,
1864105197Ssam	                src0 + 1,
1865105197Ssam	                dst0 + 1,
1866105197Ssam	                src0->sadb_address_prefixlen,
1867105197Ssam	                dst0->sadb_address_prefixlen,
1868105197Ssam	                src0->sadb_address_proto,
1869105197Ssam	                &newsp->spidx);
1870105197Ssam
1871105197Ssam	/* sanity check on addr pair */
1872105197Ssam	if (((struct sockaddr *)(src0 + 1))->sa_family !=
1873105197Ssam			((struct sockaddr *)(dst0+ 1))->sa_family) {
1874119643Ssam		_key_delsp(newsp);
1875105197Ssam		return key_senderror(so, m, EINVAL);
1876105197Ssam	}
1877105197Ssam	if (((struct sockaddr *)(src0 + 1))->sa_len !=
1878105197Ssam			((struct sockaddr *)(dst0+ 1))->sa_len) {
1879119643Ssam		_key_delsp(newsp);
1880105197Ssam		return key_senderror(so, m, EINVAL);
1881105197Ssam	}
1882105197Ssam#if 1
1883105197Ssam	if (newsp->req && newsp->req->saidx.src.sa.sa_family) {
1884105197Ssam		struct sockaddr *sa;
1885105197Ssam		sa = (struct sockaddr *)(src0 + 1);
1886105197Ssam		if (sa->sa_family != newsp->req->saidx.src.sa.sa_family) {
1887119643Ssam			_key_delsp(newsp);
1888105197Ssam			return key_senderror(so, m, EINVAL);
1889105197Ssam		}
1890105197Ssam	}
1891105197Ssam	if (newsp->req && newsp->req->saidx.dst.sa.sa_family) {
1892105197Ssam		struct sockaddr *sa;
1893105197Ssam		sa = (struct sockaddr *)(dst0 + 1);
1894105197Ssam		if (sa->sa_family != newsp->req->saidx.dst.sa.sa_family) {
1895119643Ssam			_key_delsp(newsp);
1896105197Ssam			return key_senderror(so, m, EINVAL);
1897105197Ssam		}
1898105197Ssam	}
1899105197Ssam#endif
1900105197Ssam
1901105197Ssam	newsp->created = time_second;
1902105197Ssam	newsp->lastused = newsp->created;
1903105197Ssam	newsp->lifetime = lft ? lft->sadb_lifetime_addtime : 0;
1904105197Ssam	newsp->validtime = lft ? lft->sadb_lifetime_usetime : 0;
1905105197Ssam
1906105197Ssam	newsp->refcnt = 1;	/* do not reclaim until I say I do */
1907105197Ssam	newsp->state = IPSEC_SPSTATE_ALIVE;
1908105197Ssam	LIST_INSERT_TAIL(&sptree[newsp->spidx.dir], newsp, secpolicy, chain);
1909105197Ssam
1910105197Ssam	/* delete the entry in spacqtree */
1911105197Ssam	if (mhp->msg->sadb_msg_type == SADB_X_SPDUPDATE) {
1912119643Ssam		struct secspacq *spacq = key_getspacq(&spidx);
1913119643Ssam		if (spacq != NULL) {
1914105197Ssam			/* reset counter in order to deletion by timehandler. */
1915105197Ssam			spacq->created = time_second;
1916105197Ssam			spacq->count = 0;
1917120585Ssam			SPACQ_UNLOCK();
1918105197Ssam		}
1919105197Ssam    	}
1920105197Ssam
1921105197Ssam    {
1922105197Ssam	struct mbuf *n, *mpolicy;
1923105197Ssam	struct sadb_msg *newmsg;
1924105197Ssam	int off;
1925105197Ssam
1926105197Ssam	/* create new sadb_msg to reply. */
1927105197Ssam	if (lft) {
1928105197Ssam		n = key_gather_mbuf(m, mhp, 2, 5, SADB_EXT_RESERVED,
1929105197Ssam		    SADB_X_EXT_POLICY, SADB_EXT_LIFETIME_HARD,
1930105197Ssam		    SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
1931105197Ssam	} else {
1932105197Ssam		n = key_gather_mbuf(m, mhp, 2, 4, SADB_EXT_RESERVED,
1933105197Ssam		    SADB_X_EXT_POLICY,
1934105197Ssam		    SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
1935105197Ssam	}
1936105197Ssam	if (!n)
1937105197Ssam		return key_senderror(so, m, ENOBUFS);
1938105197Ssam
1939105197Ssam	if (n->m_len < sizeof(*newmsg)) {
1940105197Ssam		n = m_pullup(n, sizeof(*newmsg));
1941105197Ssam		if (!n)
1942105197Ssam			return key_senderror(so, m, ENOBUFS);
1943105197Ssam	}
1944105197Ssam	newmsg = mtod(n, struct sadb_msg *);
1945105197Ssam	newmsg->sadb_msg_errno = 0;
1946105197Ssam	newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
1947105197Ssam
1948105197Ssam	off = 0;
1949105197Ssam	mpolicy = m_pulldown(n, PFKEY_ALIGN8(sizeof(struct sadb_msg)),
1950105197Ssam	    sizeof(*xpl), &off);
1951105197Ssam	if (mpolicy == NULL) {
1952105197Ssam		/* n is already freed */
1953105197Ssam		return key_senderror(so, m, ENOBUFS);
1954105197Ssam	}
1955105197Ssam	xpl = (struct sadb_x_policy *)(mtod(mpolicy, caddr_t) + off);
1956105197Ssam	if (xpl->sadb_x_policy_exttype != SADB_X_EXT_POLICY) {
1957105197Ssam		m_freem(n);
1958105197Ssam		return key_senderror(so, m, EINVAL);
1959105197Ssam	}
1960105197Ssam	xpl->sadb_x_policy_id = newsp->id;
1961105197Ssam
1962105197Ssam	m_freem(m);
1963105197Ssam	return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
1964105197Ssam    }
1965105197Ssam}
1966105197Ssam
1967105197Ssam/*
1968105197Ssam * get new policy id.
1969105197Ssam * OUT:
1970105197Ssam *	0:	failure.
1971105197Ssam *	others: success.
1972105197Ssam */
1973105197Ssamstatic u_int32_t
1974105197Ssamkey_getnewspid()
1975105197Ssam{
1976105197Ssam	u_int32_t newid = 0;
1977105197Ssam	int count = key_spi_trycnt;	/* XXX */
1978105197Ssam	struct secpolicy *sp;
1979105197Ssam
1980105197Ssam	/* when requesting to allocate spi ranged */
1981105197Ssam	while (count--) {
1982105197Ssam		newid = (policy_id = (policy_id == ~0 ? 1 : policy_id + 1));
1983105197Ssam
1984105197Ssam		if ((sp = key_getspbyid(newid)) == NULL)
1985105197Ssam			break;
1986105197Ssam
1987105197Ssam		KEY_FREESP(&sp);
1988105197Ssam	}
1989105197Ssam
1990105197Ssam	if (count == 0 || newid == 0) {
1991120585Ssam		ipseclog((LOG_DEBUG, "%s: to allocate policy id is failed.\n",
1992120585Ssam			__func__));
1993105197Ssam		return 0;
1994105197Ssam	}
1995105197Ssam
1996105197Ssam	return newid;
1997105197Ssam}
1998105197Ssam
1999105197Ssam/*
2000105197Ssam * SADB_SPDDELETE processing
2001105197Ssam * receive
2002105197Ssam *   <base, address(SD), policy(*)>
2003105197Ssam * from the user(?), and set SADB_SASTATE_DEAD,
2004105197Ssam * and send,
2005105197Ssam *   <base, address(SD), policy(*)>
2006105197Ssam * to the ikmpd.
2007105197Ssam * policy(*) including direction of policy.
2008105197Ssam *
2009105197Ssam * m will always be freed.
2010105197Ssam */
2011105197Ssamstatic int
2012105197Ssamkey_spddelete(so, m, mhp)
2013105197Ssam	struct socket *so;
2014105197Ssam	struct mbuf *m;
2015105197Ssam	const struct sadb_msghdr *mhp;
2016105197Ssam{
2017105197Ssam	struct sadb_address *src0, *dst0;
2018105197Ssam	struct sadb_x_policy *xpl0;
2019105197Ssam	struct secpolicyindex spidx;
2020105197Ssam	struct secpolicy *sp;
2021105197Ssam
2022120585Ssam	IPSEC_ASSERT(so != NULL, ("null so"));
2023120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
2024120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
2025120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
2026105197Ssam
2027105197Ssam	if (mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
2028105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_DST] == NULL ||
2029105197Ssam	    mhp->ext[SADB_X_EXT_POLICY] == NULL) {
2030120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
2031120585Ssam			__func__));
2032105197Ssam		return key_senderror(so, m, EINVAL);
2033105197Ssam	}
2034105197Ssam	if (mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
2035105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address) ||
2036105197Ssam	    mhp->extlen[SADB_X_EXT_POLICY] < sizeof(struct sadb_x_policy)) {
2037120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
2038120585Ssam			__func__));
2039105197Ssam		return key_senderror(so, m, EINVAL);
2040105197Ssam	}
2041105197Ssam
2042105197Ssam	src0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_SRC];
2043105197Ssam	dst0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_DST];
2044105197Ssam	xpl0 = (struct sadb_x_policy *)mhp->ext[SADB_X_EXT_POLICY];
2045105197Ssam
2046105197Ssam	/* make secindex */
2047105197Ssam	/* XXX boundary check against sa_len */
2048105197Ssam	KEY_SETSECSPIDX(xpl0->sadb_x_policy_dir,
2049105197Ssam	                src0 + 1,
2050105197Ssam	                dst0 + 1,
2051105197Ssam	                src0->sadb_address_prefixlen,
2052105197Ssam	                dst0->sadb_address_prefixlen,
2053105197Ssam	                src0->sadb_address_proto,
2054105197Ssam	                &spidx);
2055105197Ssam
2056105197Ssam	/* checking the direciton. */
2057105197Ssam	switch (xpl0->sadb_x_policy_dir) {
2058105197Ssam	case IPSEC_DIR_INBOUND:
2059105197Ssam	case IPSEC_DIR_OUTBOUND:
2060105197Ssam		break;
2061105197Ssam	default:
2062120585Ssam		ipseclog((LOG_DEBUG, "%s: Invalid SP direction.\n", __func__));
2063105197Ssam		return key_senderror(so, m, EINVAL);
2064105197Ssam	}
2065105197Ssam
2066105197Ssam	/* Is there SP in SPD ? */
2067105197Ssam	if ((sp = key_getsp(&spidx)) == NULL) {
2068120585Ssam		ipseclog((LOG_DEBUG, "%s: no SP found.\n", __func__));
2069105197Ssam		return key_senderror(so, m, EINVAL);
2070105197Ssam	}
2071105197Ssam
2072105197Ssam	/* save policy id to buffer to be returned. */
2073105197Ssam	xpl0->sadb_x_policy_id = sp->id;
2074105197Ssam
2075105197Ssam	sp->state = IPSEC_SPSTATE_DEAD;
2076105197Ssam	KEY_FREESP(&sp);
2077105197Ssam
2078105197Ssam    {
2079105197Ssam	struct mbuf *n;
2080105197Ssam	struct sadb_msg *newmsg;
2081105197Ssam
2082105197Ssam	/* create new sadb_msg to reply. */
2083105197Ssam	n = key_gather_mbuf(m, mhp, 1, 4, SADB_EXT_RESERVED,
2084105197Ssam	    SADB_X_EXT_POLICY, SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
2085105197Ssam	if (!n)
2086105197Ssam		return key_senderror(so, m, ENOBUFS);
2087105197Ssam
2088105197Ssam	newmsg = mtod(n, struct sadb_msg *);
2089105197Ssam	newmsg->sadb_msg_errno = 0;
2090105197Ssam	newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
2091105197Ssam
2092105197Ssam	m_freem(m);
2093105197Ssam	return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
2094105197Ssam    }
2095105197Ssam}
2096105197Ssam
2097105197Ssam/*
2098105197Ssam * SADB_SPDDELETE2 processing
2099105197Ssam * receive
2100105197Ssam *   <base, policy(*)>
2101105197Ssam * from the user(?), and set SADB_SASTATE_DEAD,
2102105197Ssam * and send,
2103105197Ssam *   <base, policy(*)>
2104105197Ssam * to the ikmpd.
2105105197Ssam * policy(*) including direction of policy.
2106105197Ssam *
2107105197Ssam * m will always be freed.
2108105197Ssam */
2109105197Ssamstatic int
2110105197Ssamkey_spddelete2(so, m, mhp)
2111105197Ssam	struct socket *so;
2112105197Ssam	struct mbuf *m;
2113105197Ssam	const struct sadb_msghdr *mhp;
2114105197Ssam{
2115105197Ssam	u_int32_t id;
2116105197Ssam	struct secpolicy *sp;
2117105197Ssam
2118120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
2119120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
2120120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
2121120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
2122105197Ssam
2123105197Ssam	if (mhp->ext[SADB_X_EXT_POLICY] == NULL ||
2124105197Ssam	    mhp->extlen[SADB_X_EXT_POLICY] < sizeof(struct sadb_x_policy)) {
2125120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n", __func__));
2126170803Sbz		return key_senderror(so, m, EINVAL);
2127105197Ssam	}
2128105197Ssam
2129105197Ssam	id = ((struct sadb_x_policy *)mhp->ext[SADB_X_EXT_POLICY])->sadb_x_policy_id;
2130105197Ssam
2131105197Ssam	/* Is there SP in SPD ? */
2132105197Ssam	if ((sp = key_getspbyid(id)) == NULL) {
2133120585Ssam		ipseclog((LOG_DEBUG, "%s: no SP found id:%u.\n", __func__, id));
2134170803Sbz		return key_senderror(so, m, EINVAL);
2135105197Ssam	}
2136105197Ssam
2137105197Ssam	sp->state = IPSEC_SPSTATE_DEAD;
2138105197Ssam	KEY_FREESP(&sp);
2139105197Ssam
2140105197Ssam    {
2141105197Ssam	struct mbuf *n, *nn;
2142105197Ssam	struct sadb_msg *newmsg;
2143105197Ssam	int off, len;
2144105197Ssam
2145105197Ssam	/* create new sadb_msg to reply. */
2146105197Ssam	len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
2147105197Ssam
2148105197Ssam	if (len > MCLBYTES)
2149105197Ssam		return key_senderror(so, m, ENOBUFS);
2150111119Simp	MGETHDR(n, M_DONTWAIT, MT_DATA);
2151105197Ssam	if (n && len > MHLEN) {
2152111119Simp		MCLGET(n, M_DONTWAIT);
2153105197Ssam		if ((n->m_flags & M_EXT) == 0) {
2154105197Ssam			m_freem(n);
2155105197Ssam			n = NULL;
2156105197Ssam		}
2157105197Ssam	}
2158105197Ssam	if (!n)
2159105197Ssam		return key_senderror(so, m, ENOBUFS);
2160105197Ssam
2161105197Ssam	n->m_len = len;
2162105197Ssam	n->m_next = NULL;
2163105197Ssam	off = 0;
2164105197Ssam
2165105197Ssam	m_copydata(m, 0, sizeof(struct sadb_msg), mtod(n, caddr_t) + off);
2166105197Ssam	off += PFKEY_ALIGN8(sizeof(struct sadb_msg));
2167105197Ssam
2168120585Ssam	IPSEC_ASSERT(off == len, ("length inconsistency (off %u len %u)",
2169120585Ssam		off, len));
2170105197Ssam
2171105197Ssam	n->m_next = m_copym(m, mhp->extoff[SADB_X_EXT_POLICY],
2172111119Simp	    mhp->extlen[SADB_X_EXT_POLICY], M_DONTWAIT);
2173105197Ssam	if (!n->m_next) {
2174105197Ssam		m_freem(n);
2175105197Ssam		return key_senderror(so, m, ENOBUFS);
2176105197Ssam	}
2177105197Ssam
2178105197Ssam	n->m_pkthdr.len = 0;
2179105197Ssam	for (nn = n; nn; nn = nn->m_next)
2180105197Ssam		n->m_pkthdr.len += nn->m_len;
2181105197Ssam
2182105197Ssam	newmsg = mtod(n, struct sadb_msg *);
2183105197Ssam	newmsg->sadb_msg_errno = 0;
2184105197Ssam	newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
2185105197Ssam
2186105197Ssam	m_freem(m);
2187105197Ssam	return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
2188105197Ssam    }
2189105197Ssam}
2190105197Ssam
2191105197Ssam/*
2192105197Ssam * SADB_X_GET processing
2193105197Ssam * receive
2194105197Ssam *   <base, policy(*)>
2195105197Ssam * from the user(?),
2196105197Ssam * and send,
2197105197Ssam *   <base, address(SD), policy>
2198105197Ssam * to the ikmpd.
2199105197Ssam * policy(*) including direction of policy.
2200105197Ssam *
2201105197Ssam * m will always be freed.
2202105197Ssam */
2203105197Ssamstatic int
2204105197Ssamkey_spdget(so, m, mhp)
2205105197Ssam	struct socket *so;
2206105197Ssam	struct mbuf *m;
2207105197Ssam	const struct sadb_msghdr *mhp;
2208105197Ssam{
2209105197Ssam	u_int32_t id;
2210105197Ssam	struct secpolicy *sp;
2211105197Ssam	struct mbuf *n;
2212105197Ssam
2213120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
2214120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
2215120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
2216120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
2217105197Ssam
2218105197Ssam	if (mhp->ext[SADB_X_EXT_POLICY] == NULL ||
2219105197Ssam	    mhp->extlen[SADB_X_EXT_POLICY] < sizeof(struct sadb_x_policy)) {
2220120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
2221120585Ssam			__func__));
2222105197Ssam		return key_senderror(so, m, EINVAL);
2223105197Ssam	}
2224105197Ssam
2225105197Ssam	id = ((struct sadb_x_policy *)mhp->ext[SADB_X_EXT_POLICY])->sadb_x_policy_id;
2226105197Ssam
2227105197Ssam	/* Is there SP in SPD ? */
2228105197Ssam	if ((sp = key_getspbyid(id)) == NULL) {
2229120585Ssam		ipseclog((LOG_DEBUG, "%s: no SP found id:%u.\n", __func__, id));
2230105197Ssam		return key_senderror(so, m, ENOENT);
2231105197Ssam	}
2232105197Ssam
2233105197Ssam	n = key_setdumpsp(sp, SADB_X_SPDGET, 0, mhp->msg->sadb_msg_pid);
2234105197Ssam	if (n != NULL) {
2235105197Ssam		m_freem(m);
2236105197Ssam		return key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
2237105197Ssam	} else
2238105197Ssam		return key_senderror(so, m, ENOBUFS);
2239105197Ssam}
2240105197Ssam
2241105197Ssam/*
2242105197Ssam * SADB_X_SPDACQUIRE processing.
2243105197Ssam * Acquire policy and SA(s) for a *OUTBOUND* packet.
2244105197Ssam * send
2245105197Ssam *   <base, policy(*)>
2246105197Ssam * to KMD, and expect to receive
2247105197Ssam *   <base> with SADB_X_SPDACQUIRE if error occured,
2248105197Ssam * or
2249105197Ssam *   <base, policy>
2250105197Ssam * with SADB_X_SPDUPDATE from KMD by PF_KEY.
2251105197Ssam * policy(*) is without policy requests.
2252105197Ssam *
2253105197Ssam *    0     : succeed
2254105197Ssam *    others: error number
2255105197Ssam */
2256105197Ssamint
2257105197Ssamkey_spdacquire(sp)
2258105197Ssam	struct secpolicy *sp;
2259105197Ssam{
2260105197Ssam	struct mbuf *result = NULL, *m;
2261105197Ssam	struct secspacq *newspacq;
2262105197Ssam
2263120585Ssam	IPSEC_ASSERT(sp != NULL, ("null secpolicy"));
2264120585Ssam	IPSEC_ASSERT(sp->req == NULL, ("policy exists"));
2265120585Ssam	IPSEC_ASSERT(sp->policy == IPSEC_POLICY_IPSEC,
2266120585Ssam		("policy not IPSEC %u", sp->policy));
2267105197Ssam
2268108533Sschweikh	/* Get an entry to check whether sent message or not. */
2269119643Ssam	newspacq = key_getspacq(&sp->spidx);
2270119643Ssam	if (newspacq != NULL) {
2271105197Ssam		if (key_blockacq_count < newspacq->count) {
2272105197Ssam			/* reset counter and do send message. */
2273105197Ssam			newspacq->count = 0;
2274105197Ssam		} else {
2275105197Ssam			/* increment counter and do nothing. */
2276105197Ssam			newspacq->count++;
2277105197Ssam			return 0;
2278105197Ssam		}
2279120585Ssam		SPACQ_UNLOCK();
2280105197Ssam	} else {
2281105197Ssam		/* make new entry for blocking to send SADB_ACQUIRE. */
2282119643Ssam		newspacq = key_newspacq(&sp->spidx);
2283119643Ssam		if (newspacq == NULL)
2284105197Ssam			return ENOBUFS;
2285105197Ssam	}
2286105197Ssam
2287105197Ssam	/* create new sadb_msg to reply. */
2288105197Ssam	m = key_setsadbmsg(SADB_X_SPDACQUIRE, 0, 0, 0, 0, 0);
2289170805Sbz	if (!m)
2290170805Sbz		return ENOBUFS;
2291170805Sbz
2292105197Ssam	result = m;
2293105197Ssam
2294105197Ssam	result->m_pkthdr.len = 0;
2295105197Ssam	for (m = result; m; m = m->m_next)
2296105197Ssam		result->m_pkthdr.len += m->m_len;
2297105197Ssam
2298105197Ssam	mtod(result, struct sadb_msg *)->sadb_msg_len =
2299105197Ssam	    PFKEY_UNIT64(result->m_pkthdr.len);
2300105197Ssam
2301105197Ssam	return key_sendup_mbuf(NULL, m, KEY_SENDUP_REGISTERED);
2302105197Ssam}
2303105197Ssam
2304105197Ssam/*
2305105197Ssam * SADB_SPDFLUSH processing
2306105197Ssam * receive
2307105197Ssam *   <base>
2308105197Ssam * from the user, and free all entries in secpctree.
2309105197Ssam * and send,
2310105197Ssam *   <base>
2311105197Ssam * to the user.
2312105197Ssam * NOTE: what to do is only marking SADB_SASTATE_DEAD.
2313105197Ssam *
2314105197Ssam * m will always be freed.
2315105197Ssam */
2316105197Ssamstatic int
2317105197Ssamkey_spdflush(so, m, mhp)
2318105197Ssam	struct socket *so;
2319105197Ssam	struct mbuf *m;
2320105197Ssam	const struct sadb_msghdr *mhp;
2321105197Ssam{
2322105197Ssam	struct sadb_msg *newmsg;
2323105197Ssam	struct secpolicy *sp;
2324105197Ssam	u_int dir;
2325105197Ssam
2326120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
2327120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
2328120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
2329120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
2330105197Ssam
2331105197Ssam	if (m->m_len != PFKEY_ALIGN8(sizeof(struct sadb_msg)))
2332105197Ssam		return key_senderror(so, m, EINVAL);
2333105197Ssam
2334105197Ssam	for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
2335120585Ssam		SPTREE_LOCK();
2336120585Ssam		LIST_FOREACH(sp, &sptree[dir], chain)
2337105197Ssam			sp->state = IPSEC_SPSTATE_DEAD;
2338120585Ssam		SPTREE_UNLOCK();
2339105197Ssam	}
2340105197Ssam
2341105197Ssam	if (sizeof(struct sadb_msg) > m->m_len + M_TRAILINGSPACE(m)) {
2342120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
2343105197Ssam		return key_senderror(so, m, ENOBUFS);
2344105197Ssam	}
2345105197Ssam
2346105197Ssam	if (m->m_next)
2347105197Ssam		m_freem(m->m_next);
2348105197Ssam	m->m_next = NULL;
2349105197Ssam	m->m_pkthdr.len = m->m_len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
2350105197Ssam	newmsg = mtod(m, struct sadb_msg *);
2351105197Ssam	newmsg->sadb_msg_errno = 0;
2352105197Ssam	newmsg->sadb_msg_len = PFKEY_UNIT64(m->m_pkthdr.len);
2353105197Ssam
2354105197Ssam	return key_sendup_mbuf(so, m, KEY_SENDUP_ALL);
2355105197Ssam}
2356105197Ssam
2357105197Ssam/*
2358105197Ssam * SADB_SPDDUMP processing
2359105197Ssam * receive
2360105197Ssam *   <base>
2361105197Ssam * from the user, and dump all SP leaves
2362105197Ssam * and send,
2363105197Ssam *   <base> .....
2364105197Ssam * to the ikmpd.
2365105197Ssam *
2366105197Ssam * m will always be freed.
2367105197Ssam */
2368105197Ssamstatic int
2369105197Ssamkey_spddump(so, m, mhp)
2370105197Ssam	struct socket *so;
2371105197Ssam	struct mbuf *m;
2372105197Ssam	const struct sadb_msghdr *mhp;
2373105197Ssam{
2374105197Ssam	struct secpolicy *sp;
2375105197Ssam	int cnt;
2376105197Ssam	u_int dir;
2377105197Ssam	struct mbuf *n;
2378105197Ssam
2379120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
2380120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
2381120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
2382120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
2383105197Ssam
2384105197Ssam	/* search SPD entry and get buffer size. */
2385105197Ssam	cnt = 0;
2386105197Ssam	for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
2387105197Ssam		LIST_FOREACH(sp, &sptree[dir], chain) {
2388105197Ssam			cnt++;
2389105197Ssam		}
2390105197Ssam	}
2391105197Ssam
2392105197Ssam	if (cnt == 0)
2393105197Ssam		return key_senderror(so, m, ENOENT);
2394105197Ssam
2395105197Ssam	for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
2396105197Ssam		LIST_FOREACH(sp, &sptree[dir], chain) {
2397105197Ssam			--cnt;
2398105197Ssam			n = key_setdumpsp(sp, SADB_X_SPDDUMP, cnt,
2399105197Ssam			    mhp->msg->sadb_msg_pid);
2400105197Ssam
2401105197Ssam			if (n)
2402105197Ssam				key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
2403105197Ssam		}
2404105197Ssam	}
2405105197Ssam
2406105197Ssam	m_freem(m);
2407105197Ssam	return 0;
2408105197Ssam}
2409105197Ssam
2410105197Ssamstatic struct mbuf *
2411105197Ssamkey_setdumpsp(sp, type, seq, pid)
2412105197Ssam	struct secpolicy *sp;
2413105197Ssam	u_int8_t type;
2414105197Ssam	u_int32_t seq, pid;
2415105197Ssam{
2416105197Ssam	struct mbuf *result = NULL, *m;
2417105197Ssam
2418105197Ssam	m = key_setsadbmsg(type, 0, SADB_SATYPE_UNSPEC, seq, pid, sp->refcnt);
2419105197Ssam	if (!m)
2420105197Ssam		goto fail;
2421105197Ssam	result = m;
2422105197Ssam
2423105197Ssam	m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
2424105197Ssam	    &sp->spidx.src.sa, sp->spidx.prefs,
2425105197Ssam	    sp->spidx.ul_proto);
2426105197Ssam	if (!m)
2427105197Ssam		goto fail;
2428105197Ssam	m_cat(result, m);
2429105197Ssam
2430105197Ssam	m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
2431105197Ssam	    &sp->spidx.dst.sa, sp->spidx.prefd,
2432105197Ssam	    sp->spidx.ul_proto);
2433105197Ssam	if (!m)
2434105197Ssam		goto fail;
2435105197Ssam	m_cat(result, m);
2436105197Ssam
2437105197Ssam	m = key_sp2msg(sp);
2438105197Ssam	if (!m)
2439105197Ssam		goto fail;
2440105197Ssam	m_cat(result, m);
2441105197Ssam
2442105197Ssam	if ((result->m_flags & M_PKTHDR) == 0)
2443105197Ssam		goto fail;
2444105197Ssam
2445105197Ssam	if (result->m_len < sizeof(struct sadb_msg)) {
2446105197Ssam		result = m_pullup(result, sizeof(struct sadb_msg));
2447105197Ssam		if (result == NULL)
2448105197Ssam			goto fail;
2449105197Ssam	}
2450105197Ssam
2451105197Ssam	result->m_pkthdr.len = 0;
2452105197Ssam	for (m = result; m; m = m->m_next)
2453105197Ssam		result->m_pkthdr.len += m->m_len;
2454105197Ssam
2455105197Ssam	mtod(result, struct sadb_msg *)->sadb_msg_len =
2456105197Ssam	    PFKEY_UNIT64(result->m_pkthdr.len);
2457105197Ssam
2458105197Ssam	return result;
2459105197Ssam
2460105197Ssamfail:
2461105197Ssam	m_freem(result);
2462105197Ssam	return NULL;
2463105197Ssam}
2464105197Ssam
2465105197Ssam/*
2466105197Ssam * get PFKEY message length for security policy and request.
2467105197Ssam */
2468105197Ssamstatic u_int
2469105197Ssamkey_getspreqmsglen(sp)
2470105197Ssam	struct secpolicy *sp;
2471105197Ssam{
2472105197Ssam	u_int tlen;
2473105197Ssam
2474105197Ssam	tlen = sizeof(struct sadb_x_policy);
2475105197Ssam
2476105197Ssam	/* if is the policy for ipsec ? */
2477105197Ssam	if (sp->policy != IPSEC_POLICY_IPSEC)
2478105197Ssam		return tlen;
2479105197Ssam
2480105197Ssam	/* get length of ipsec requests */
2481105197Ssam    {
2482105197Ssam	struct ipsecrequest *isr;
2483105197Ssam	int len;
2484105197Ssam
2485105197Ssam	for (isr = sp->req; isr != NULL; isr = isr->next) {
2486105197Ssam		len = sizeof(struct sadb_x_ipsecrequest)
2487105197Ssam			+ isr->saidx.src.sa.sa_len
2488105197Ssam			+ isr->saidx.dst.sa.sa_len;
2489105197Ssam
2490105197Ssam		tlen += PFKEY_ALIGN8(len);
2491105197Ssam	}
2492105197Ssam    }
2493105197Ssam
2494105197Ssam	return tlen;
2495105197Ssam}
2496105197Ssam
2497105197Ssam/*
2498105197Ssam * SADB_SPDEXPIRE processing
2499105197Ssam * send
2500105197Ssam *   <base, address(SD), lifetime(CH), policy>
2501105197Ssam * to KMD by PF_KEY.
2502105197Ssam *
2503105197Ssam * OUT:	0	: succeed
2504105197Ssam *	others	: error number
2505105197Ssam */
2506105197Ssamstatic int
2507105197Ssamkey_spdexpire(sp)
2508105197Ssam	struct secpolicy *sp;
2509105197Ssam{
2510105197Ssam	struct mbuf *result = NULL, *m;
2511105197Ssam	int len;
2512105197Ssam	int error = -1;
2513105197Ssam	struct sadb_lifetime *lt;
2514105197Ssam
2515105197Ssam	/* XXX: Why do we lock ? */
2516105197Ssam
2517120585Ssam	IPSEC_ASSERT(sp != NULL, ("null secpolicy"));
2518105197Ssam
2519105197Ssam	/* set msg header */
2520105197Ssam	m = key_setsadbmsg(SADB_X_SPDEXPIRE, 0, 0, 0, 0, 0);
2521105197Ssam	if (!m) {
2522105197Ssam		error = ENOBUFS;
2523105197Ssam		goto fail;
2524105197Ssam	}
2525105197Ssam	result = m;
2526105197Ssam
2527105197Ssam	/* create lifetime extension (current and hard) */
2528105197Ssam	len = PFKEY_ALIGN8(sizeof(*lt)) * 2;
2529105197Ssam	m = key_alloc_mbuf(len);
2530105197Ssam	if (!m || m->m_next) {	/*XXX*/
2531105197Ssam		if (m)
2532105197Ssam			m_freem(m);
2533105197Ssam		error = ENOBUFS;
2534105197Ssam		goto fail;
2535105197Ssam	}
2536105197Ssam	bzero(mtod(m, caddr_t), len);
2537105197Ssam	lt = mtod(m, struct sadb_lifetime *);
2538105197Ssam	lt->sadb_lifetime_len = PFKEY_UNIT64(sizeof(struct sadb_lifetime));
2539105197Ssam	lt->sadb_lifetime_exttype = SADB_EXT_LIFETIME_CURRENT;
2540105197Ssam	lt->sadb_lifetime_allocations = 0;
2541105197Ssam	lt->sadb_lifetime_bytes = 0;
2542105197Ssam	lt->sadb_lifetime_addtime = sp->created;
2543105197Ssam	lt->sadb_lifetime_usetime = sp->lastused;
2544105197Ssam	lt = (struct sadb_lifetime *)(mtod(m, caddr_t) + len / 2);
2545105197Ssam	lt->sadb_lifetime_len = PFKEY_UNIT64(sizeof(struct sadb_lifetime));
2546105197Ssam	lt->sadb_lifetime_exttype = SADB_EXT_LIFETIME_HARD;
2547105197Ssam	lt->sadb_lifetime_allocations = 0;
2548105197Ssam	lt->sadb_lifetime_bytes = 0;
2549105197Ssam	lt->sadb_lifetime_addtime = sp->lifetime;
2550105197Ssam	lt->sadb_lifetime_usetime = sp->validtime;
2551105197Ssam	m_cat(result, m);
2552105197Ssam
2553105197Ssam	/* set sadb_address for source */
2554105197Ssam	m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
2555105197Ssam	    &sp->spidx.src.sa,
2556105197Ssam	    sp->spidx.prefs, sp->spidx.ul_proto);
2557105197Ssam	if (!m) {
2558105197Ssam		error = ENOBUFS;
2559105197Ssam		goto fail;
2560105197Ssam	}
2561105197Ssam	m_cat(result, m);
2562105197Ssam
2563105197Ssam	/* set sadb_address for destination */
2564105197Ssam	m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
2565105197Ssam	    &sp->spidx.dst.sa,
2566105197Ssam	    sp->spidx.prefd, sp->spidx.ul_proto);
2567105197Ssam	if (!m) {
2568105197Ssam		error = ENOBUFS;
2569105197Ssam		goto fail;
2570105197Ssam	}
2571105197Ssam	m_cat(result, m);
2572105197Ssam
2573105197Ssam	/* set secpolicy */
2574105197Ssam	m = key_sp2msg(sp);
2575105197Ssam	if (!m) {
2576105197Ssam		error = ENOBUFS;
2577105197Ssam		goto fail;
2578105197Ssam	}
2579105197Ssam	m_cat(result, m);
2580105197Ssam
2581105197Ssam	if ((result->m_flags & M_PKTHDR) == 0) {
2582105197Ssam		error = EINVAL;
2583105197Ssam		goto fail;
2584105197Ssam	}
2585105197Ssam
2586105197Ssam	if (result->m_len < sizeof(struct sadb_msg)) {
2587105197Ssam		result = m_pullup(result, sizeof(struct sadb_msg));
2588105197Ssam		if (result == NULL) {
2589105197Ssam			error = ENOBUFS;
2590105197Ssam			goto fail;
2591105197Ssam		}
2592105197Ssam	}
2593105197Ssam
2594105197Ssam	result->m_pkthdr.len = 0;
2595105197Ssam	for (m = result; m; m = m->m_next)
2596105197Ssam		result->m_pkthdr.len += m->m_len;
2597105197Ssam
2598105197Ssam	mtod(result, struct sadb_msg *)->sadb_msg_len =
2599105197Ssam	    PFKEY_UNIT64(result->m_pkthdr.len);
2600105197Ssam
2601105197Ssam	return key_sendup_mbuf(NULL, result, KEY_SENDUP_REGISTERED);
2602105197Ssam
2603105197Ssam fail:
2604105197Ssam	if (result)
2605105197Ssam		m_freem(result);
2606105197Ssam	return error;
2607105197Ssam}
2608105197Ssam
2609105197Ssam/* %%% SAD management */
2610105197Ssam/*
2611105197Ssam * allocating a memory for new SA head, and copy from the values of mhp.
2612105197Ssam * OUT:	NULL	: failure due to the lack of memory.
2613105197Ssam *	others	: pointer to new SA head.
2614105197Ssam */
2615105197Ssamstatic struct secashead *
2616105197Ssamkey_newsah(saidx)
2617105197Ssam	struct secasindex *saidx;
2618105197Ssam{
2619105197Ssam	struct secashead *newsah;
2620105197Ssam
2621120585Ssam	IPSEC_ASSERT(saidx != NULL, ("null saidx"));
2622105197Ssam
2623119643Ssam	newsah = malloc(sizeof(struct secashead), M_IPSEC_SAH, M_NOWAIT|M_ZERO);
2624105197Ssam	if (newsah != NULL) {
2625105197Ssam		int i;
2626105197Ssam		for (i = 0; i < sizeof(newsah->savtree)/sizeof(newsah->savtree[0]); i++)
2627105197Ssam			LIST_INIT(&newsah->savtree[i]);
2628105197Ssam		newsah->saidx = *saidx;
2629105197Ssam
2630105197Ssam		/* add to saidxtree */
2631105197Ssam		newsah->state = SADB_SASTATE_MATURE;
2632119643Ssam
2633120585Ssam		SAHTREE_LOCK();
2634105197Ssam		LIST_INSERT_HEAD(&sahtree, newsah, chain);
2635120585Ssam		SAHTREE_UNLOCK();
2636105197Ssam	}
2637105197Ssam	return(newsah);
2638105197Ssam}
2639105197Ssam
2640105197Ssam/*
2641105197Ssam * delete SA index and all SA registerd.
2642105197Ssam */
2643105197Ssamstatic void
2644105197Ssamkey_delsah(sah)
2645105197Ssam	struct secashead *sah;
2646105197Ssam{
2647105197Ssam	struct secasvar *sav, *nextsav;
2648120585Ssam	u_int stateidx;
2649105197Ssam	int zombie = 0;
2650105197Ssam
2651120585Ssam	IPSEC_ASSERT(sah != NULL, ("NULL sah"));
2652120585Ssam	SAHTREE_LOCK_ASSERT();
2653105197Ssam
2654105197Ssam	/* searching all SA registerd in the secindex. */
2655105197Ssam	for (stateidx = 0;
2656105197Ssam	     stateidx < _ARRAYLEN(saorder_state_any);
2657105197Ssam	     stateidx++) {
2658120585Ssam		u_int state = saorder_state_any[stateidx];
2659120585Ssam		LIST_FOREACH_SAFE(sav, &sah->savtree[state], chain, nextsav) {
2660105197Ssam			if (sav->refcnt == 0) {
2661105197Ssam				/* sanity check */
2662120585Ssam				KEY_CHKSASTATE(state, sav->state, __func__);
2663105197Ssam				KEY_FREESAV(&sav);
2664105197Ssam			} else {
2665105197Ssam				/* give up to delete this sa */
2666105197Ssam				zombie++;
2667105197Ssam			}
2668105197Ssam		}
2669105197Ssam	}
2670120585Ssam	if (!zombie) {		/* delete only if there are savs */
2671120585Ssam		/* remove from tree of SA index */
2672120585Ssam		if (__LIST_CHAINED(sah))
2673120585Ssam			LIST_REMOVE(sah, chain);
2674120585Ssam		if (sah->sa_route.ro_rt) {
2675120585Ssam			RTFREE(sah->sa_route.ro_rt);
2676120585Ssam			sah->sa_route.ro_rt = (struct rtentry *)NULL;
2677120585Ssam		}
2678120585Ssam		free(sah, M_IPSEC_SAH);
2679105197Ssam	}
2680105197Ssam}
2681105197Ssam
2682105197Ssam/*
2683105197Ssam * allocating a new SA with LARVAL state.  key_add() and key_getspi() call,
2684105197Ssam * and copy the values of mhp into new buffer.
2685105197Ssam * When SAD message type is GETSPI:
2686105197Ssam *	to set sequence number from acq_seq++,
2687105197Ssam *	to set zero to SPI.
2688105197Ssam *	not to call key_setsava().
2689105197Ssam * OUT:	NULL	: fail
2690105197Ssam *	others	: pointer to new secasvar.
2691105197Ssam *
2692105197Ssam * does not modify mbuf.  does not free mbuf on error.
2693105197Ssam */
2694105197Ssamstatic struct secasvar *
2695105197Ssamkey_newsav(m, mhp, sah, errp, where, tag)
2696105197Ssam	struct mbuf *m;
2697105197Ssam	const struct sadb_msghdr *mhp;
2698105197Ssam	struct secashead *sah;
2699105197Ssam	int *errp;
2700105197Ssam	const char* where;
2701105197Ssam	int tag;
2702105197Ssam{
2703105197Ssam	struct secasvar *newsav;
2704105197Ssam	const struct sadb_sa *xsa;
2705105197Ssam
2706120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
2707120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
2708120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
2709120585Ssam	IPSEC_ASSERT(sah != NULL, ("null secashead"));
2710105197Ssam
2711119643Ssam	newsav = malloc(sizeof(struct secasvar), M_IPSEC_SA, M_NOWAIT|M_ZERO);
2712105197Ssam	if (newsav == NULL) {
2713120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
2714105197Ssam		*errp = ENOBUFS;
2715105197Ssam		goto done;
2716105197Ssam	}
2717105197Ssam
2718105197Ssam	switch (mhp->msg->sadb_msg_type) {
2719105197Ssam	case SADB_GETSPI:
2720105197Ssam		newsav->spi = 0;
2721105197Ssam
2722105197Ssam#ifdef IPSEC_DOSEQCHECK
2723105197Ssam		/* sync sequence number */
2724105197Ssam		if (mhp->msg->sadb_msg_seq == 0)
2725105197Ssam			newsav->seq =
2726105197Ssam				(acq_seq = (acq_seq == ~0 ? 1 : ++acq_seq));
2727105197Ssam		else
2728105197Ssam#endif
2729105197Ssam			newsav->seq = mhp->msg->sadb_msg_seq;
2730105197Ssam		break;
2731105197Ssam
2732105197Ssam	case SADB_ADD:
2733105197Ssam		/* sanity check */
2734105197Ssam		if (mhp->ext[SADB_EXT_SA] == NULL) {
2735119643Ssam			free(newsav, M_IPSEC_SA);
2736119643Ssam			newsav = NULL;
2737120585Ssam			ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
2738120585Ssam				__func__));
2739105197Ssam			*errp = EINVAL;
2740105197Ssam			goto done;
2741105197Ssam		}
2742105197Ssam		xsa = (const struct sadb_sa *)mhp->ext[SADB_EXT_SA];
2743105197Ssam		newsav->spi = xsa->sadb_sa_spi;
2744105197Ssam		newsav->seq = mhp->msg->sadb_msg_seq;
2745105197Ssam		break;
2746105197Ssam	default:
2747119643Ssam		free(newsav, M_IPSEC_SA);
2748119643Ssam		newsav = NULL;
2749105197Ssam		*errp = EINVAL;
2750105197Ssam		goto done;
2751105197Ssam	}
2752105197Ssam
2753119643Ssam
2754105197Ssam	/* copy sav values */
2755105197Ssam	if (mhp->msg->sadb_msg_type != SADB_GETSPI) {
2756105197Ssam		*errp = key_setsaval(newsav, m, mhp);
2757105197Ssam		if (*errp) {
2758119643Ssam			free(newsav, M_IPSEC_SA);
2759119643Ssam			newsav = NULL;
2760105197Ssam			goto done;
2761105197Ssam		}
2762105197Ssam	}
2763105197Ssam
2764120585Ssam	SECASVAR_LOCK_INIT(newsav);
2765119643Ssam
2766105197Ssam	/* reset created */
2767105197Ssam	newsav->created = time_second;
2768105197Ssam	newsav->pid = mhp->msg->sadb_msg_pid;
2769105197Ssam
2770105197Ssam	/* add to satree */
2771105197Ssam	newsav->sah = sah;
2772158767Spjd	sa_initref(newsav);
2773105197Ssam	newsav->state = SADB_SASTATE_LARVAL;
2774119643Ssam
2775119643Ssam	/* XXX locking??? */
2776105197Ssam	LIST_INSERT_TAIL(&sah->savtree[SADB_SASTATE_LARVAL], newsav,
2777105197Ssam			secasvar, chain);
2778105197Ssamdone:
2779105197Ssam	KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
2780120585Ssam		printf("DP %s from %s:%u return SP:%p\n", __func__,
2781105197Ssam			where, tag, newsav));
2782105197Ssam
2783105197Ssam	return newsav;
2784105197Ssam}
2785105197Ssam
2786105197Ssam/*
2787105197Ssam * free() SA variable entry.
2788105197Ssam */
2789105197Ssamstatic void
2790119643Ssamkey_cleansav(struct secasvar *sav)
2791105197Ssam{
2792117051Ssam	/*
2793117051Ssam	 * Cleanup xform state.  Note that zeroize'ing causes the
2794117051Ssam	 * keys to be cleared; otherwise we must do it ourself.
2795117051Ssam	 */
2796117051Ssam	if (sav->tdb_xform != NULL) {
2797117051Ssam		sav->tdb_xform->xf_zeroize(sav);
2798117051Ssam		sav->tdb_xform = NULL;
2799117051Ssam	} else {
2800120585Ssam		KASSERT(sav->iv == NULL, ("iv but no xform"));
2801117051Ssam		if (sav->key_auth != NULL)
2802157123Sgnn			bzero(sav->key_auth->key_data, _KEYLEN(sav->key_auth));
2803117051Ssam		if (sav->key_enc != NULL)
2804157123Sgnn			bzero(sav->key_enc->key_data, _KEYLEN(sav->key_enc));
2805117051Ssam	}
2806105197Ssam	if (sav->key_auth != NULL) {
2807157123Sgnn		if (sav->key_auth->key_data != NULL)
2808157123Sgnn			free(sav->key_auth->key_data, M_IPSEC_MISC);
2809119643Ssam		free(sav->key_auth, M_IPSEC_MISC);
2810105197Ssam		sav->key_auth = NULL;
2811105197Ssam	}
2812105197Ssam	if (sav->key_enc != NULL) {
2813157123Sgnn		if (sav->key_enc->key_data != NULL)
2814157123Sgnn			free(sav->key_enc->key_data, M_IPSEC_MISC);
2815119643Ssam		free(sav->key_enc, M_IPSEC_MISC);
2816105197Ssam		sav->key_enc = NULL;
2817105197Ssam	}
2818105197Ssam	if (sav->sched) {
2819105197Ssam		bzero(sav->sched, sav->schedlen);
2820119643Ssam		free(sav->sched, M_IPSEC_MISC);
2821105197Ssam		sav->sched = NULL;
2822105197Ssam	}
2823105197Ssam	if (sav->replay != NULL) {
2824119643Ssam		free(sav->replay, M_IPSEC_MISC);
2825105197Ssam		sav->replay = NULL;
2826105197Ssam	}
2827105197Ssam	if (sav->lft_c != NULL) {
2828119643Ssam		free(sav->lft_c, M_IPSEC_MISC);
2829105197Ssam		sav->lft_c = NULL;
2830105197Ssam	}
2831105197Ssam	if (sav->lft_h != NULL) {
2832119643Ssam		free(sav->lft_h, M_IPSEC_MISC);
2833105197Ssam		sav->lft_h = NULL;
2834105197Ssam	}
2835105197Ssam	if (sav->lft_s != NULL) {
2836119643Ssam		free(sav->lft_s, M_IPSEC_MISC);
2837105197Ssam		sav->lft_s = NULL;
2838105197Ssam	}
2839119643Ssam}
2840105197Ssam
2841119643Ssam/*
2842119643Ssam * free() SA variable entry.
2843119643Ssam */
2844119643Ssamstatic void
2845119643Ssamkey_delsav(sav)
2846119643Ssam	struct secasvar *sav;
2847119643Ssam{
2848120585Ssam	IPSEC_ASSERT(sav != NULL, ("null sav"));
2849120585Ssam	IPSEC_ASSERT(sav->refcnt == 0, ("reference count %u > 0", sav->refcnt));
2850105197Ssam
2851119643Ssam	/* remove from SA header */
2852119643Ssam	if (__LIST_CHAINED(sav))
2853119643Ssam		LIST_REMOVE(sav, chain);
2854119643Ssam	key_cleansav(sav);
2855120585Ssam	SECASVAR_LOCK_DESTROY(sav);
2856119643Ssam	free(sav, M_IPSEC_SA);
2857105197Ssam}
2858105197Ssam
2859105197Ssam/*
2860105197Ssam * search SAD.
2861105197Ssam * OUT:
2862105197Ssam *	NULL	: not found
2863105197Ssam *	others	: found, pointer to a SA.
2864105197Ssam */
2865105197Ssamstatic struct secashead *
2866105197Ssamkey_getsah(saidx)
2867105197Ssam	struct secasindex *saidx;
2868105197Ssam{
2869105197Ssam	struct secashead *sah;
2870105197Ssam
2871120585Ssam	SAHTREE_LOCK();
2872105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
2873105197Ssam		if (sah->state == SADB_SASTATE_DEAD)
2874105197Ssam			continue;
2875105197Ssam		if (key_cmpsaidx(&sah->saidx, saidx, CMP_REQID))
2876119643Ssam			break;
2877105197Ssam	}
2878120585Ssam	SAHTREE_UNLOCK();
2879105197Ssam
2880119643Ssam	return sah;
2881105197Ssam}
2882105197Ssam
2883105197Ssam/*
2884105197Ssam * check not to be duplicated SPI.
2885105197Ssam * NOTE: this function is too slow due to searching all SAD.
2886105197Ssam * OUT:
2887105197Ssam *	NULL	: not found
2888105197Ssam *	others	: found, pointer to a SA.
2889105197Ssam */
2890105197Ssamstatic struct secasvar *
2891105197Ssamkey_checkspidup(saidx, spi)
2892105197Ssam	struct secasindex *saidx;
2893105197Ssam	u_int32_t spi;
2894105197Ssam{
2895105197Ssam	struct secashead *sah;
2896105197Ssam	struct secasvar *sav;
2897105197Ssam
2898105197Ssam	/* check address family */
2899105197Ssam	if (saidx->src.sa.sa_family != saidx->dst.sa.sa_family) {
2900120585Ssam		ipseclog((LOG_DEBUG, "%s: address family mismatched.\n",
2901120585Ssam			__func__));
2902105197Ssam		return NULL;
2903105197Ssam	}
2904105197Ssam
2905119643Ssam	sav = NULL;
2906105197Ssam	/* check all SAD */
2907120585Ssam	SAHTREE_LOCK();
2908105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
2909105197Ssam		if (!key_ismyaddr((struct sockaddr *)&sah->saidx.dst))
2910105197Ssam			continue;
2911105197Ssam		sav = key_getsavbyspi(sah, spi);
2912105197Ssam		if (sav != NULL)
2913119643Ssam			break;
2914105197Ssam	}
2915120585Ssam	SAHTREE_UNLOCK();
2916105197Ssam
2917119643Ssam	return sav;
2918105197Ssam}
2919105197Ssam
2920105197Ssam/*
2921105197Ssam * search SAD litmited alive SA, protocol, SPI.
2922105197Ssam * OUT:
2923105197Ssam *	NULL	: not found
2924105197Ssam *	others	: found, pointer to a SA.
2925105197Ssam */
2926105197Ssamstatic struct secasvar *
2927105197Ssamkey_getsavbyspi(sah, spi)
2928105197Ssam	struct secashead *sah;
2929105197Ssam	u_int32_t spi;
2930105197Ssam{
2931105197Ssam	struct secasvar *sav;
2932105197Ssam	u_int stateidx, state;
2933105197Ssam
2934119643Ssam	sav = NULL;
2935120585Ssam	SAHTREE_LOCK_ASSERT();
2936105197Ssam	/* search all status */
2937105197Ssam	for (stateidx = 0;
2938105197Ssam	     stateidx < _ARRAYLEN(saorder_state_alive);
2939105197Ssam	     stateidx++) {
2940105197Ssam
2941105197Ssam		state = saorder_state_alive[stateidx];
2942105197Ssam		LIST_FOREACH(sav, &sah->savtree[state], chain) {
2943105197Ssam
2944105197Ssam			/* sanity check */
2945105197Ssam			if (sav->state != state) {
2946120585Ssam				ipseclog((LOG_DEBUG, "%s: "
2947105197Ssam				    "invalid sav->state (queue: %d SA: %d)\n",
2948120585Ssam				    __func__, state, sav->state));
2949105197Ssam				continue;
2950105197Ssam			}
2951105197Ssam
2952105197Ssam			if (sav->spi == spi)
2953128859Ssam				return sav;
2954105197Ssam		}
2955105197Ssam	}
2956105197Ssam
2957128859Ssam	return NULL;
2958105197Ssam}
2959105197Ssam
2960105197Ssam/*
2961105197Ssam * copy SA values from PF_KEY message except *SPI, SEQ, PID, STATE and TYPE*.
2962105197Ssam * You must update these if need.
2963105197Ssam * OUT:	0:	success.
2964105197Ssam *	!0:	failure.
2965105197Ssam *
2966105197Ssam * does not modify mbuf.  does not free mbuf on error.
2967105197Ssam */
2968105197Ssamstatic int
2969105197Ssamkey_setsaval(sav, m, mhp)
2970105197Ssam	struct secasvar *sav;
2971105197Ssam	struct mbuf *m;
2972105197Ssam	const struct sadb_msghdr *mhp;
2973105197Ssam{
2974105197Ssam	int error = 0;
2975105197Ssam
2976120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
2977120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
2978120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
2979105197Ssam
2980105197Ssam	/* initialization */
2981105197Ssam	sav->replay = NULL;
2982105197Ssam	sav->key_auth = NULL;
2983105197Ssam	sav->key_enc = NULL;
2984105197Ssam	sav->sched = NULL;
2985105197Ssam	sav->schedlen = 0;
2986105197Ssam	sav->iv = NULL;
2987105197Ssam	sav->lft_c = NULL;
2988105197Ssam	sav->lft_h = NULL;
2989105197Ssam	sav->lft_s = NULL;
2990105197Ssam	sav->tdb_xform = NULL;		/* transform */
2991105197Ssam	sav->tdb_encalgxform = NULL;	/* encoding algorithm */
2992105197Ssam	sav->tdb_authalgxform = NULL;	/* authentication algorithm */
2993105197Ssam	sav->tdb_compalgxform = NULL;	/* compression algorithm */
2994105197Ssam
2995105197Ssam	/* SA */
2996105197Ssam	if (mhp->ext[SADB_EXT_SA] != NULL) {
2997105197Ssam		const struct sadb_sa *sa0;
2998105197Ssam
2999105197Ssam		sa0 = (const struct sadb_sa *)mhp->ext[SADB_EXT_SA];
3000105197Ssam		if (mhp->extlen[SADB_EXT_SA] < sizeof(*sa0)) {
3001105197Ssam			error = EINVAL;
3002105197Ssam			goto fail;
3003105197Ssam		}
3004105197Ssam
3005105197Ssam		sav->alg_auth = sa0->sadb_sa_auth;
3006105197Ssam		sav->alg_enc = sa0->sadb_sa_encrypt;
3007105197Ssam		sav->flags = sa0->sadb_sa_flags;
3008105197Ssam
3009105197Ssam		/* replay window */
3010105197Ssam		if ((sa0->sadb_sa_flags & SADB_X_EXT_OLD) == 0) {
3011105197Ssam			sav->replay = (struct secreplay *)
3012119643Ssam				malloc(sizeof(struct secreplay)+sa0->sadb_sa_replay, M_IPSEC_MISC, M_NOWAIT|M_ZERO);
3013105197Ssam			if (sav->replay == NULL) {
3014120585Ssam				ipseclog((LOG_DEBUG, "%s: No more memory.\n",
3015120585Ssam					__func__));
3016105197Ssam				error = ENOBUFS;
3017105197Ssam				goto fail;
3018105197Ssam			}
3019105197Ssam			if (sa0->sadb_sa_replay != 0)
3020105197Ssam				sav->replay->bitmap = (caddr_t)(sav->replay+1);
3021105197Ssam			sav->replay->wsize = sa0->sadb_sa_replay;
3022105197Ssam		}
3023105197Ssam	}
3024105197Ssam
3025105197Ssam	/* Authentication keys */
3026105197Ssam	if (mhp->ext[SADB_EXT_KEY_AUTH] != NULL) {
3027105197Ssam		const struct sadb_key *key0;
3028105197Ssam		int len;
3029105197Ssam
3030105197Ssam		key0 = (const struct sadb_key *)mhp->ext[SADB_EXT_KEY_AUTH];
3031105197Ssam		len = mhp->extlen[SADB_EXT_KEY_AUTH];
3032105197Ssam
3033105197Ssam		error = 0;
3034105197Ssam		if (len < sizeof(*key0)) {
3035105197Ssam			error = EINVAL;
3036105197Ssam			goto fail;
3037105197Ssam		}
3038105197Ssam		switch (mhp->msg->sadb_msg_satype) {
3039105197Ssam		case SADB_SATYPE_AH:
3040105197Ssam		case SADB_SATYPE_ESP:
3041125680Sbms		case SADB_X_SATYPE_TCPSIGNATURE:
3042105197Ssam			if (len == PFKEY_ALIGN8(sizeof(struct sadb_key)) &&
3043105197Ssam			    sav->alg_auth != SADB_X_AALG_NULL)
3044105197Ssam				error = EINVAL;
3045105197Ssam			break;
3046105197Ssam		case SADB_X_SATYPE_IPCOMP:
3047105197Ssam		default:
3048105197Ssam			error = EINVAL;
3049105197Ssam			break;
3050105197Ssam		}
3051105197Ssam		if (error) {
3052120585Ssam			ipseclog((LOG_DEBUG, "%s: invalid key_auth values.\n",
3053120585Ssam				__func__));
3054105197Ssam			goto fail;
3055105197Ssam		}
3056105197Ssam
3057157123Sgnn		sav->key_auth = (struct seckey *)key_dup_keymsg(key0, len,
3058157123Sgnn								M_IPSEC_MISC);
3059157123Sgnn		if (sav->key_auth == NULL ) {
3060157123Sgnn			ipseclog((LOG_DEBUG, "%s: No more memory.\n",
3061157123Sgnn				  __func__));
3062105197Ssam			error = ENOBUFS;
3063105197Ssam			goto fail;
3064105197Ssam		}
3065105197Ssam	}
3066105197Ssam
3067105197Ssam	/* Encryption key */
3068105197Ssam	if (mhp->ext[SADB_EXT_KEY_ENCRYPT] != NULL) {
3069105197Ssam		const struct sadb_key *key0;
3070105197Ssam		int len;
3071105197Ssam
3072105197Ssam		key0 = (const struct sadb_key *)mhp->ext[SADB_EXT_KEY_ENCRYPT];
3073105197Ssam		len = mhp->extlen[SADB_EXT_KEY_ENCRYPT];
3074105197Ssam
3075105197Ssam		error = 0;
3076105197Ssam		if (len < sizeof(*key0)) {
3077105197Ssam			error = EINVAL;
3078105197Ssam			goto fail;
3079105197Ssam		}
3080105197Ssam		switch (mhp->msg->sadb_msg_satype) {
3081105197Ssam		case SADB_SATYPE_ESP:
3082105197Ssam			if (len == PFKEY_ALIGN8(sizeof(struct sadb_key)) &&
3083105197Ssam			    sav->alg_enc != SADB_EALG_NULL) {
3084105197Ssam				error = EINVAL;
3085105197Ssam				break;
3086105197Ssam			}
3087157123Sgnn			sav->key_enc = (struct seckey *)key_dup_keymsg(key0,
3088157123Sgnn								       len,
3089157123Sgnn								       M_IPSEC_MISC);
3090105197Ssam			if (sav->key_enc == NULL) {
3091120585Ssam				ipseclog((LOG_DEBUG, "%s: No more memory.\n",
3092120585Ssam					__func__));
3093105197Ssam				error = ENOBUFS;
3094105197Ssam				goto fail;
3095105197Ssam			}
3096105197Ssam			break;
3097105197Ssam		case SADB_X_SATYPE_IPCOMP:
3098105197Ssam			if (len != PFKEY_ALIGN8(sizeof(struct sadb_key)))
3099105197Ssam				error = EINVAL;
3100105197Ssam			sav->key_enc = NULL;	/*just in case*/
3101105197Ssam			break;
3102105197Ssam		case SADB_SATYPE_AH:
3103125680Sbms		case SADB_X_SATYPE_TCPSIGNATURE:
3104105197Ssam		default:
3105105197Ssam			error = EINVAL;
3106105197Ssam			break;
3107105197Ssam		}
3108105197Ssam		if (error) {
3109120585Ssam			ipseclog((LOG_DEBUG, "%s: invalid key_enc value.\n",
3110120585Ssam				__func__));
3111105197Ssam			goto fail;
3112105197Ssam		}
3113105197Ssam	}
3114105197Ssam
3115105197Ssam	/* set iv */
3116105197Ssam	sav->ivlen = 0;
3117105197Ssam
3118105197Ssam	switch (mhp->msg->sadb_msg_satype) {
3119105197Ssam	case SADB_SATYPE_AH:
3120105197Ssam		error = xform_init(sav, XF_AH);
3121105197Ssam		break;
3122105197Ssam	case SADB_SATYPE_ESP:
3123105197Ssam		error = xform_init(sav, XF_ESP);
3124105197Ssam		break;
3125105197Ssam	case SADB_X_SATYPE_IPCOMP:
3126105197Ssam		error = xform_init(sav, XF_IPCOMP);
3127105197Ssam		break;
3128125680Sbms	case SADB_X_SATYPE_TCPSIGNATURE:
3129125680Sbms		error = xform_init(sav, XF_TCPSIGNATURE);
3130125680Sbms		break;
3131105197Ssam	}
3132105197Ssam	if (error) {
3133120585Ssam		ipseclog((LOG_DEBUG, "%s: unable to initialize SA type %u.\n",
3134120585Ssam		        __func__, mhp->msg->sadb_msg_satype));
3135105197Ssam		goto fail;
3136105197Ssam	}
3137105197Ssam
3138105197Ssam	/* reset created */
3139105197Ssam	sav->created = time_second;
3140105197Ssam
3141105197Ssam	/* make lifetime for CURRENT */
3142119643Ssam	sav->lft_c = malloc(sizeof(struct sadb_lifetime), M_IPSEC_MISC, M_NOWAIT);
3143105197Ssam	if (sav->lft_c == NULL) {
3144120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
3145105197Ssam		error = ENOBUFS;
3146105197Ssam		goto fail;
3147105197Ssam	}
3148105197Ssam
3149157123Sgnn	sav->lft_c->allocations = 0;
3150157123Sgnn	sav->lft_c->bytes = 0;
3151157123Sgnn	sav->lft_c->addtime = time_second;
3152157123Sgnn	sav->lft_c->usetime = 0;
3153105197Ssam
3154105197Ssam	/* lifetimes for HARD and SOFT */
3155105197Ssam    {
3156105197Ssam	const struct sadb_lifetime *lft0;
3157105197Ssam
3158105197Ssam	lft0 = (struct sadb_lifetime *)mhp->ext[SADB_EXT_LIFETIME_HARD];
3159105197Ssam	if (lft0 != NULL) {
3160105197Ssam		if (mhp->extlen[SADB_EXT_LIFETIME_HARD] < sizeof(*lft0)) {
3161105197Ssam			error = EINVAL;
3162105197Ssam			goto fail;
3163105197Ssam		}
3164157123Sgnn		sav->lft_h = key_dup_lifemsg(lft0, M_IPSEC_MISC);
3165105197Ssam		if (sav->lft_h == NULL) {
3166120585Ssam			ipseclog((LOG_DEBUG, "%s: No more memory.\n",__func__));
3167105197Ssam			error = ENOBUFS;
3168105197Ssam			goto fail;
3169105197Ssam		}
3170105197Ssam		/* to be initialize ? */
3171105197Ssam	}
3172105197Ssam
3173105197Ssam	lft0 = (struct sadb_lifetime *)mhp->ext[SADB_EXT_LIFETIME_SOFT];
3174105197Ssam	if (lft0 != NULL) {
3175105197Ssam		if (mhp->extlen[SADB_EXT_LIFETIME_SOFT] < sizeof(*lft0)) {
3176105197Ssam			error = EINVAL;
3177105197Ssam			goto fail;
3178105197Ssam		}
3179157123Sgnn		sav->lft_s = key_dup_lifemsg(lft0, M_IPSEC_MISC);
3180105197Ssam		if (sav->lft_s == NULL) {
3181120585Ssam			ipseclog((LOG_DEBUG, "%s: No more memory.\n",__func__));
3182105197Ssam			error = ENOBUFS;
3183105197Ssam			goto fail;
3184105197Ssam		}
3185105197Ssam		/* to be initialize ? */
3186105197Ssam	}
3187105197Ssam    }
3188105197Ssam
3189105197Ssam	return 0;
3190105197Ssam
3191105197Ssam fail:
3192105197Ssam	/* initialization */
3193119643Ssam	key_cleansav(sav);
3194105197Ssam
3195105197Ssam	return error;
3196105197Ssam}
3197105197Ssam
3198105197Ssam/*
3199105197Ssam * validation with a secasvar entry, and set SADB_SATYPE_MATURE.
3200105197Ssam * OUT:	0:	valid
3201105197Ssam *	other:	errno
3202105197Ssam */
3203105197Ssamstatic int
3204119643Ssamkey_mature(struct secasvar *sav)
3205105197Ssam{
3206105197Ssam	int error;
3207105197Ssam
3208105197Ssam	/* check SPI value */
3209105197Ssam	switch (sav->sah->saidx.proto) {
3210105197Ssam	case IPPROTO_ESP:
3211105197Ssam	case IPPROTO_AH:
3212105197Ssam		if (ntohl(sav->spi) >= 0 && ntohl(sav->spi) <= 255) {
3213120585Ssam			ipseclog((LOG_DEBUG, "%s: illegal range of SPI %u.\n",
3214120585Ssam			    __func__, (u_int32_t)ntohl(sav->spi)));
3215105197Ssam			return EINVAL;
3216105197Ssam		}
3217105197Ssam		break;
3218105197Ssam	}
3219105197Ssam
3220105197Ssam	/* check satype */
3221105197Ssam	switch (sav->sah->saidx.proto) {
3222105197Ssam	case IPPROTO_ESP:
3223105197Ssam		/* check flags */
3224105197Ssam		if ((sav->flags & (SADB_X_EXT_OLD|SADB_X_EXT_DERIV)) ==
3225105197Ssam		    (SADB_X_EXT_OLD|SADB_X_EXT_DERIV)) {
3226120585Ssam			ipseclog((LOG_DEBUG, "%s: invalid flag (derived) "
3227120585Ssam				"given to old-esp.\n", __func__));
3228105197Ssam			return EINVAL;
3229105197Ssam		}
3230105197Ssam		error = xform_init(sav, XF_ESP);
3231105197Ssam		break;
3232105197Ssam	case IPPROTO_AH:
3233105197Ssam		/* check flags */
3234105197Ssam		if (sav->flags & SADB_X_EXT_DERIV) {
3235120585Ssam			ipseclog((LOG_DEBUG, "%s: invalid flag (derived) "
3236120585Ssam				"given to AH SA.\n", __func__));
3237105197Ssam			return EINVAL;
3238105197Ssam		}
3239105197Ssam		if (sav->alg_enc != SADB_EALG_NONE) {
3240120585Ssam			ipseclog((LOG_DEBUG, "%s: protocol and algorithm "
3241120585Ssam				"mismated.\n", __func__));
3242105197Ssam			return(EINVAL);
3243105197Ssam		}
3244105197Ssam		error = xform_init(sav, XF_AH);
3245105197Ssam		break;
3246105197Ssam	case IPPROTO_IPCOMP:
3247105197Ssam		if (sav->alg_auth != SADB_AALG_NONE) {
3248120585Ssam			ipseclog((LOG_DEBUG, "%s: protocol and algorithm "
3249120585Ssam				"mismated.\n", __func__));
3250105197Ssam			return(EINVAL);
3251105197Ssam		}
3252105197Ssam		if ((sav->flags & SADB_X_EXT_RAWCPI) == 0
3253105197Ssam		 && ntohl(sav->spi) >= 0x10000) {
3254120585Ssam			ipseclog((LOG_DEBUG, "%s: invalid cpi for IPComp.\n",
3255120585Ssam				__func__));
3256105197Ssam			return(EINVAL);
3257105197Ssam		}
3258105197Ssam		error = xform_init(sav, XF_IPCOMP);
3259105197Ssam		break;
3260125680Sbms	case IPPROTO_TCP:
3261125680Sbms		if (sav->alg_enc != SADB_EALG_NONE) {
3262125680Sbms			ipseclog((LOG_DEBUG, "%s: protocol and algorithm "
3263125680Sbms				"mismated.\n", __func__));
3264125680Sbms			return(EINVAL);
3265125680Sbms		}
3266125680Sbms		error = xform_init(sav, XF_TCPSIGNATURE);
3267125680Sbms		break;
3268105197Ssam	default:
3269120585Ssam		ipseclog((LOG_DEBUG, "%s: Invalid satype.\n", __func__));
3270105197Ssam		error = EPROTONOSUPPORT;
3271105197Ssam		break;
3272105197Ssam	}
3273119643Ssam	if (error == 0) {
3274120585Ssam		SAHTREE_LOCK();
3275105197Ssam		key_sa_chgstate(sav, SADB_SASTATE_MATURE);
3276120585Ssam		SAHTREE_UNLOCK();
3277119643Ssam	}
3278105197Ssam	return (error);
3279105197Ssam}
3280105197Ssam
3281105197Ssam/*
3282105197Ssam * subroutine for SADB_GET and SADB_DUMP.
3283105197Ssam */
3284105197Ssamstatic struct mbuf *
3285105197Ssamkey_setdumpsa(sav, type, satype, seq, pid)
3286105197Ssam	struct secasvar *sav;
3287105197Ssam	u_int8_t type, satype;
3288105197Ssam	u_int32_t seq, pid;
3289105197Ssam{
3290105197Ssam	struct mbuf *result = NULL, *tres = NULL, *m;
3291105197Ssam	int i;
3292105197Ssam	int dumporder[] = {
3293105197Ssam		SADB_EXT_SA, SADB_X_EXT_SA2,
3294105197Ssam		SADB_EXT_LIFETIME_HARD, SADB_EXT_LIFETIME_SOFT,
3295105197Ssam		SADB_EXT_LIFETIME_CURRENT, SADB_EXT_ADDRESS_SRC,
3296105197Ssam		SADB_EXT_ADDRESS_DST, SADB_EXT_ADDRESS_PROXY, SADB_EXT_KEY_AUTH,
3297105197Ssam		SADB_EXT_KEY_ENCRYPT, SADB_EXT_IDENTITY_SRC,
3298105197Ssam		SADB_EXT_IDENTITY_DST, SADB_EXT_SENSITIVITY,
3299105197Ssam	};
3300105197Ssam
3301105197Ssam	m = key_setsadbmsg(type, 0, satype, seq, pid, sav->refcnt);
3302105197Ssam	if (m == NULL)
3303105197Ssam		goto fail;
3304105197Ssam	result = m;
3305105197Ssam
3306105197Ssam	for (i = sizeof(dumporder)/sizeof(dumporder[0]) - 1; i >= 0; i--) {
3307105197Ssam		m = NULL;
3308105197Ssam		switch (dumporder[i]) {
3309105197Ssam		case SADB_EXT_SA:
3310105197Ssam			m = key_setsadbsa(sav);
3311105197Ssam			if (!m)
3312105197Ssam				goto fail;
3313105197Ssam			break;
3314105197Ssam
3315105197Ssam		case SADB_X_EXT_SA2:
3316105197Ssam			m = key_setsadbxsa2(sav->sah->saidx.mode,
3317105197Ssam					sav->replay ? sav->replay->count : 0,
3318105197Ssam					sav->sah->saidx.reqid);
3319105197Ssam			if (!m)
3320105197Ssam				goto fail;
3321105197Ssam			break;
3322105197Ssam
3323105197Ssam		case SADB_EXT_ADDRESS_SRC:
3324105197Ssam			m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
3325105197Ssam			    &sav->sah->saidx.src.sa,
3326105197Ssam			    FULLMASK, IPSEC_ULPROTO_ANY);
3327105197Ssam			if (!m)
3328105197Ssam				goto fail;
3329105197Ssam			break;
3330105197Ssam
3331105197Ssam		case SADB_EXT_ADDRESS_DST:
3332105197Ssam			m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
3333105197Ssam			    &sav->sah->saidx.dst.sa,
3334105197Ssam			    FULLMASK, IPSEC_ULPROTO_ANY);
3335105197Ssam			if (!m)
3336105197Ssam				goto fail;
3337105197Ssam			break;
3338105197Ssam
3339105197Ssam		case SADB_EXT_KEY_AUTH:
3340105197Ssam			if (!sav->key_auth)
3341105197Ssam				continue;
3342157123Sgnn			m = key_setkey(sav->key_auth, SADB_EXT_KEY_AUTH);
3343157123Sgnn			if (!m)
3344157123Sgnn				goto fail;
3345105197Ssam			break;
3346105197Ssam
3347105197Ssam		case SADB_EXT_KEY_ENCRYPT:
3348105197Ssam			if (!sav->key_enc)
3349105197Ssam				continue;
3350157123Sgnn			m = key_setkey(sav->key_enc, SADB_EXT_KEY_ENCRYPT);
3351157123Sgnn			if (!m)
3352157123Sgnn				goto fail;
3353105197Ssam			break;
3354105197Ssam
3355105197Ssam		case SADB_EXT_LIFETIME_CURRENT:
3356105197Ssam			if (!sav->lft_c)
3357105197Ssam				continue;
3358157123Sgnn			m = key_setlifetime(sav->lft_c,
3359157123Sgnn					    SADB_EXT_LIFETIME_CURRENT);
3360157123Sgnn			if (!m)
3361157123Sgnn				goto fail;
3362105197Ssam			break;
3363105197Ssam
3364105197Ssam		case SADB_EXT_LIFETIME_HARD:
3365105197Ssam			if (!sav->lft_h)
3366105197Ssam				continue;
3367157123Sgnn			m = key_setlifetime(sav->lft_h,
3368157123Sgnn					    SADB_EXT_LIFETIME_HARD);
3369157123Sgnn			if (!m)
3370157123Sgnn				goto fail;
3371105197Ssam			break;
3372105197Ssam
3373105197Ssam		case SADB_EXT_LIFETIME_SOFT:
3374105197Ssam			if (!sav->lft_s)
3375105197Ssam				continue;
3376157123Sgnn			m = key_setlifetime(sav->lft_h,
3377157123Sgnn					    SADB_EXT_LIFETIME_SOFT);
3378157123Sgnn
3379157123Sgnn			if (!m)
3380157123Sgnn				goto fail;
3381105197Ssam			break;
3382105197Ssam
3383105197Ssam		case SADB_EXT_ADDRESS_PROXY:
3384105197Ssam		case SADB_EXT_IDENTITY_SRC:
3385105197Ssam		case SADB_EXT_IDENTITY_DST:
3386105197Ssam			/* XXX: should we brought from SPD ? */
3387105197Ssam		case SADB_EXT_SENSITIVITY:
3388105197Ssam		default:
3389105197Ssam			continue;
3390105197Ssam		}
3391105197Ssam
3392157123Sgnn		if (!m)
3393105197Ssam			goto fail;
3394105197Ssam		if (tres)
3395105197Ssam			m_cat(m, tres);
3396105197Ssam		tres = m;
3397157123Sgnn
3398105197Ssam	}
3399105197Ssam
3400105197Ssam	m_cat(result, tres);
3401105197Ssam	if (result->m_len < sizeof(struct sadb_msg)) {
3402105197Ssam		result = m_pullup(result, sizeof(struct sadb_msg));
3403105197Ssam		if (result == NULL)
3404105197Ssam			goto fail;
3405105197Ssam	}
3406105197Ssam
3407105197Ssam	result->m_pkthdr.len = 0;
3408105197Ssam	for (m = result; m; m = m->m_next)
3409105197Ssam		result->m_pkthdr.len += m->m_len;
3410105197Ssam
3411105197Ssam	mtod(result, struct sadb_msg *)->sadb_msg_len =
3412105197Ssam	    PFKEY_UNIT64(result->m_pkthdr.len);
3413105197Ssam
3414105197Ssam	return result;
3415105197Ssam
3416105197Ssamfail:
3417105197Ssam	m_freem(result);
3418105197Ssam	m_freem(tres);
3419105197Ssam	return NULL;
3420105197Ssam}
3421105197Ssam
3422105197Ssam/*
3423105197Ssam * set data into sadb_msg.
3424105197Ssam */
3425105197Ssamstatic struct mbuf *
3426105197Ssamkey_setsadbmsg(type, tlen, satype, seq, pid, reserved)
3427105197Ssam	u_int8_t type, satype;
3428105197Ssam	u_int16_t tlen;
3429105197Ssam	u_int32_t seq;
3430105197Ssam	pid_t pid;
3431105197Ssam	u_int16_t reserved;
3432105197Ssam{
3433105197Ssam	struct mbuf *m;
3434105197Ssam	struct sadb_msg *p;
3435105197Ssam	int len;
3436105197Ssam
3437105197Ssam	len = PFKEY_ALIGN8(sizeof(struct sadb_msg));
3438105197Ssam	if (len > MCLBYTES)
3439105197Ssam		return NULL;
3440111119Simp	MGETHDR(m, M_DONTWAIT, MT_DATA);
3441105197Ssam	if (m && len > MHLEN) {
3442111119Simp		MCLGET(m, M_DONTWAIT);
3443105197Ssam		if ((m->m_flags & M_EXT) == 0) {
3444105197Ssam			m_freem(m);
3445105197Ssam			m = NULL;
3446105197Ssam		}
3447105197Ssam	}
3448105197Ssam	if (!m)
3449105197Ssam		return NULL;
3450105197Ssam	m->m_pkthdr.len = m->m_len = len;
3451105197Ssam	m->m_next = NULL;
3452105197Ssam
3453105197Ssam	p = mtod(m, struct sadb_msg *);
3454105197Ssam
3455105197Ssam	bzero(p, len);
3456105197Ssam	p->sadb_msg_version = PF_KEY_V2;
3457105197Ssam	p->sadb_msg_type = type;
3458105197Ssam	p->sadb_msg_errno = 0;
3459105197Ssam	p->sadb_msg_satype = satype;
3460105197Ssam	p->sadb_msg_len = PFKEY_UNIT64(tlen);
3461105197Ssam	p->sadb_msg_reserved = reserved;
3462105197Ssam	p->sadb_msg_seq = seq;
3463105197Ssam	p->sadb_msg_pid = (u_int32_t)pid;
3464105197Ssam
3465105197Ssam	return m;
3466105197Ssam}
3467105197Ssam
3468105197Ssam/*
3469105197Ssam * copy secasvar data into sadb_address.
3470105197Ssam */
3471105197Ssamstatic struct mbuf *
3472105197Ssamkey_setsadbsa(sav)
3473105197Ssam	struct secasvar *sav;
3474105197Ssam{
3475105197Ssam	struct mbuf *m;
3476105197Ssam	struct sadb_sa *p;
3477105197Ssam	int len;
3478105197Ssam
3479105197Ssam	len = PFKEY_ALIGN8(sizeof(struct sadb_sa));
3480105197Ssam	m = key_alloc_mbuf(len);
3481105197Ssam	if (!m || m->m_next) {	/*XXX*/
3482105197Ssam		if (m)
3483105197Ssam			m_freem(m);
3484105197Ssam		return NULL;
3485105197Ssam	}
3486105197Ssam
3487105197Ssam	p = mtod(m, struct sadb_sa *);
3488105197Ssam
3489105197Ssam	bzero(p, len);
3490105197Ssam	p->sadb_sa_len = PFKEY_UNIT64(len);
3491105197Ssam	p->sadb_sa_exttype = SADB_EXT_SA;
3492105197Ssam	p->sadb_sa_spi = sav->spi;
3493105197Ssam	p->sadb_sa_replay = (sav->replay != NULL ? sav->replay->wsize : 0);
3494105197Ssam	p->sadb_sa_state = sav->state;
3495105197Ssam	p->sadb_sa_auth = sav->alg_auth;
3496105197Ssam	p->sadb_sa_encrypt = sav->alg_enc;
3497105197Ssam	p->sadb_sa_flags = sav->flags;
3498105197Ssam
3499105197Ssam	return m;
3500105197Ssam}
3501105197Ssam
3502105197Ssam/*
3503105197Ssam * set data into sadb_address.
3504105197Ssam */
3505105197Ssamstatic struct mbuf *
3506105197Ssamkey_setsadbaddr(exttype, saddr, prefixlen, ul_proto)
3507105197Ssam	u_int16_t exttype;
3508105197Ssam	const struct sockaddr *saddr;
3509105197Ssam	u_int8_t prefixlen;
3510105197Ssam	u_int16_t ul_proto;
3511105197Ssam{
3512105197Ssam	struct mbuf *m;
3513105197Ssam	struct sadb_address *p;
3514105197Ssam	size_t len;
3515105197Ssam
3516105197Ssam	len = PFKEY_ALIGN8(sizeof(struct sadb_address)) +
3517105197Ssam	    PFKEY_ALIGN8(saddr->sa_len);
3518105197Ssam	m = key_alloc_mbuf(len);
3519105197Ssam	if (!m || m->m_next) {	/*XXX*/
3520105197Ssam		if (m)
3521105197Ssam			m_freem(m);
3522105197Ssam		return NULL;
3523105197Ssam	}
3524105197Ssam
3525105197Ssam	p = mtod(m, struct sadb_address *);
3526105197Ssam
3527105197Ssam	bzero(p, len);
3528105197Ssam	p->sadb_address_len = PFKEY_UNIT64(len);
3529105197Ssam	p->sadb_address_exttype = exttype;
3530105197Ssam	p->sadb_address_proto = ul_proto;
3531105197Ssam	if (prefixlen == FULLMASK) {
3532105197Ssam		switch (saddr->sa_family) {
3533105197Ssam		case AF_INET:
3534105197Ssam			prefixlen = sizeof(struct in_addr) << 3;
3535105197Ssam			break;
3536105197Ssam		case AF_INET6:
3537105197Ssam			prefixlen = sizeof(struct in6_addr) << 3;
3538105197Ssam			break;
3539105197Ssam		default:
3540105197Ssam			; /*XXX*/
3541105197Ssam		}
3542105197Ssam	}
3543105197Ssam	p->sadb_address_prefixlen = prefixlen;
3544105197Ssam	p->sadb_address_reserved = 0;
3545105197Ssam
3546105197Ssam	bcopy(saddr,
3547105197Ssam	    mtod(m, caddr_t) + PFKEY_ALIGN8(sizeof(struct sadb_address)),
3548105197Ssam	    saddr->sa_len);
3549105197Ssam
3550105197Ssam	return m;
3551105197Ssam}
3552105197Ssam
3553105197Ssam/*
3554105197Ssam * set data into sadb_x_sa2.
3555105197Ssam */
3556105197Ssamstatic struct mbuf *
3557105197Ssamkey_setsadbxsa2(mode, seq, reqid)
3558105197Ssam	u_int8_t mode;
3559105197Ssam	u_int32_t seq, reqid;
3560105197Ssam{
3561105197Ssam	struct mbuf *m;
3562105197Ssam	struct sadb_x_sa2 *p;
3563105197Ssam	size_t len;
3564105197Ssam
3565105197Ssam	len = PFKEY_ALIGN8(sizeof(struct sadb_x_sa2));
3566105197Ssam	m = key_alloc_mbuf(len);
3567105197Ssam	if (!m || m->m_next) {	/*XXX*/
3568105197Ssam		if (m)
3569105197Ssam			m_freem(m);
3570105197Ssam		return NULL;
3571105197Ssam	}
3572105197Ssam
3573105197Ssam	p = mtod(m, struct sadb_x_sa2 *);
3574105197Ssam
3575105197Ssam	bzero(p, len);
3576105197Ssam	p->sadb_x_sa2_len = PFKEY_UNIT64(len);
3577105197Ssam	p->sadb_x_sa2_exttype = SADB_X_EXT_SA2;
3578105197Ssam	p->sadb_x_sa2_mode = mode;
3579105197Ssam	p->sadb_x_sa2_reserved1 = 0;
3580105197Ssam	p->sadb_x_sa2_reserved2 = 0;
3581105197Ssam	p->sadb_x_sa2_sequence = seq;
3582105197Ssam	p->sadb_x_sa2_reqid = reqid;
3583105197Ssam
3584105197Ssam	return m;
3585105197Ssam}
3586105197Ssam
3587105197Ssam/*
3588105197Ssam * set data into sadb_x_policy
3589105197Ssam */
3590105197Ssamstatic struct mbuf *
3591105197Ssamkey_setsadbxpolicy(type, dir, id)
3592105197Ssam	u_int16_t type;
3593105197Ssam	u_int8_t dir;
3594105197Ssam	u_int32_t id;
3595105197Ssam{
3596105197Ssam	struct mbuf *m;
3597105197Ssam	struct sadb_x_policy *p;
3598105197Ssam	size_t len;
3599105197Ssam
3600105197Ssam	len = PFKEY_ALIGN8(sizeof(struct sadb_x_policy));
3601105197Ssam	m = key_alloc_mbuf(len);
3602105197Ssam	if (!m || m->m_next) {	/*XXX*/
3603105197Ssam		if (m)
3604105197Ssam			m_freem(m);
3605105197Ssam		return NULL;
3606105197Ssam	}
3607105197Ssam
3608105197Ssam	p = mtod(m, struct sadb_x_policy *);
3609105197Ssam
3610105197Ssam	bzero(p, len);
3611105197Ssam	p->sadb_x_policy_len = PFKEY_UNIT64(len);
3612105197Ssam	p->sadb_x_policy_exttype = SADB_X_EXT_POLICY;
3613105197Ssam	p->sadb_x_policy_type = type;
3614105197Ssam	p->sadb_x_policy_dir = dir;
3615105197Ssam	p->sadb_x_policy_id = id;
3616105197Ssam
3617105197Ssam	return m;
3618105197Ssam}
3619105197Ssam
3620105197Ssam/* %%% utilities */
3621157123Sgnn/* Take a key message (sadb_key) from the socket and turn it into one
3622157123Sgnn * of the kernel's key structures (seckey).
3623157123Sgnn *
3624157123Sgnn * IN: pointer to the src
3625157123Sgnn * OUT: NULL no more memory
3626105197Ssam */
3627157123Sgnnstruct seckey *
3628157123Sgnnkey_dup_keymsg(const struct sadb_key *src, u_int len,
3629157123Sgnn	       struct malloc_type *type)
3630105197Ssam{
3631157123Sgnn	struct seckey *dst;
3632157123Sgnn	dst = (struct seckey *)malloc(sizeof(struct seckey), type, M_NOWAIT);
3633157123Sgnn	if (dst != NULL) {
3634157123Sgnn		dst->bits = src->sadb_key_bits;
3635157123Sgnn		dst->key_data = (char *)malloc(len, type, M_NOWAIT);
3636157123Sgnn		if (dst->key_data != NULL) {
3637157123Sgnn			bcopy((const char *)src + sizeof(struct sadb_key),
3638157123Sgnn			      dst->key_data, len);
3639157123Sgnn		} else {
3640157123Sgnn			ipseclog((LOG_DEBUG, "%s: No more memory.\n",
3641157123Sgnn				  __func__));
3642157123Sgnn			free(dst, type);
3643157123Sgnn			dst = NULL;
3644157123Sgnn		}
3645157123Sgnn	} else {
3646157123Sgnn		ipseclog((LOG_DEBUG, "%s: No more memory.\n",
3647157123Sgnn			  __func__));
3648105197Ssam
3649157123Sgnn	}
3650157123Sgnn	return dst;
3651157123Sgnn}
3652157123Sgnn
3653157123Sgnn/* Take a lifetime message (sadb_lifetime) passed in on a socket and
3654157123Sgnn * turn it into one of the kernel's lifetime structures (seclifetime).
3655157123Sgnn *
3656157123Sgnn * IN: pointer to the destination, source and malloc type
3657157123Sgnn * OUT: NULL, no more memory
3658157123Sgnn */
3659157123Sgnn
3660157123Sgnnstatic struct seclifetime *
3661157123Sgnnkey_dup_lifemsg(const struct sadb_lifetime *src,
3662157123Sgnn		 struct malloc_type *type)
3663157123Sgnn{
3664157123Sgnn	struct seclifetime *dst = NULL;
3665157123Sgnn
3666157123Sgnn	dst = (struct seclifetime *)malloc(sizeof(struct seclifetime),
3667157123Sgnn					   type, M_NOWAIT);
3668157123Sgnn	if (dst == NULL) {
3669119643Ssam		/* XXX counter */
3670120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
3671157123Sgnn	} else {
3672157123Sgnn		dst->allocations = src->sadb_lifetime_allocations;
3673157123Sgnn		dst->bytes = src->sadb_lifetime_bytes;
3674157123Sgnn		dst->addtime = src->sadb_lifetime_addtime;
3675157123Sgnn		dst->usetime = src->sadb_lifetime_usetime;
3676157123Sgnn	}
3677157123Sgnn	return dst;
3678105197Ssam}
3679105197Ssam
3680105197Ssam/* compare my own address
3681105197Ssam * OUT:	1: true, i.e. my address.
3682105197Ssam *	0: false
3683105197Ssam */
3684105197Ssamint
3685105197Ssamkey_ismyaddr(sa)
3686105197Ssam	struct sockaddr *sa;
3687105197Ssam{
3688105197Ssam#ifdef INET
3689105197Ssam	struct sockaddr_in *sin;
3690105197Ssam	struct in_ifaddr *ia;
3691105197Ssam#endif
3692105197Ssam
3693120585Ssam	IPSEC_ASSERT(sa != NULL, ("null sockaddr"));
3694105197Ssam
3695105197Ssam	switch (sa->sa_family) {
3696105197Ssam#ifdef INET
3697105197Ssam	case AF_INET:
3698105197Ssam		sin = (struct sockaddr_in *)sa;
3699105197Ssam		for (ia = in_ifaddrhead.tqh_first; ia;
3700105197Ssam		     ia = ia->ia_link.tqe_next)
3701105197Ssam		{
3702105197Ssam			if (sin->sin_family == ia->ia_addr.sin_family &&
3703105197Ssam			    sin->sin_len == ia->ia_addr.sin_len &&
3704105197Ssam			    sin->sin_addr.s_addr == ia->ia_addr.sin_addr.s_addr)
3705105197Ssam			{
3706105197Ssam				return 1;
3707105197Ssam			}
3708105197Ssam		}
3709105197Ssam		break;
3710105197Ssam#endif
3711105197Ssam#ifdef INET6
3712105197Ssam	case AF_INET6:
3713105197Ssam		return key_ismyaddr6((struct sockaddr_in6 *)sa);
3714105197Ssam#endif
3715105197Ssam	}
3716105197Ssam
3717105197Ssam	return 0;
3718105197Ssam}
3719105197Ssam
3720105197Ssam#ifdef INET6
3721105197Ssam/*
3722105197Ssam * compare my own address for IPv6.
3723105197Ssam * 1: ours
3724105197Ssam * 0: other
3725105197Ssam * NOTE: derived ip6_input() in KAME. This is necessary to modify more.
3726105197Ssam */
3727105197Ssam#include <netinet6/in6_var.h>
3728105197Ssam
3729105197Ssamstatic int
3730105197Ssamkey_ismyaddr6(sin6)
3731105197Ssam	struct sockaddr_in6 *sin6;
3732105197Ssam{
3733105197Ssam	struct in6_ifaddr *ia;
3734105197Ssam	struct in6_multi *in6m;
3735105197Ssam
3736105197Ssam	for (ia = in6_ifaddr; ia; ia = ia->ia_next) {
3737105197Ssam		if (key_sockaddrcmp((struct sockaddr *)&sin6,
3738105197Ssam		    (struct sockaddr *)&ia->ia_addr, 0) == 0)
3739105197Ssam			return 1;
3740105197Ssam
3741105197Ssam		/*
3742105197Ssam		 * XXX Multicast
3743105197Ssam		 * XXX why do we care about multlicast here while we don't care
3744105197Ssam		 * about IPv4 multicast??
3745105197Ssam		 * XXX scope
3746105197Ssam		 */
3747105197Ssam		in6m = NULL;
3748105197Ssam		IN6_LOOKUP_MULTI(sin6->sin6_addr, ia->ia_ifp, in6m);
3749105197Ssam		if (in6m)
3750105197Ssam			return 1;
3751105197Ssam	}
3752105197Ssam
3753105197Ssam	/* loopback, just for safety */
3754105197Ssam	if (IN6_IS_ADDR_LOOPBACK(&sin6->sin6_addr))
3755105197Ssam		return 1;
3756105197Ssam
3757105197Ssam	return 0;
3758105197Ssam}
3759105197Ssam#endif /*INET6*/
3760105197Ssam
3761105197Ssam/*
3762105197Ssam * compare two secasindex structure.
3763105197Ssam * flag can specify to compare 2 saidxes.
3764105197Ssam * compare two secasindex structure without both mode and reqid.
3765105197Ssam * don't compare port.
3766105197Ssam * IN:
3767105197Ssam *      saidx0: source, it can be in SAD.
3768105197Ssam *      saidx1: object.
3769105197Ssam * OUT:
3770105197Ssam *      1 : equal
3771105197Ssam *      0 : not equal
3772105197Ssam */
3773105197Ssamstatic int
3774105197Ssamkey_cmpsaidx(
3775105197Ssam	const struct secasindex *saidx0,
3776105197Ssam	const struct secasindex *saidx1,
3777105197Ssam	int flag)
3778105197Ssam{
3779105197Ssam	/* sanity */
3780105197Ssam	if (saidx0 == NULL && saidx1 == NULL)
3781105197Ssam		return 1;
3782105197Ssam
3783105197Ssam	if (saidx0 == NULL || saidx1 == NULL)
3784105197Ssam		return 0;
3785105197Ssam
3786105197Ssam	if (saidx0->proto != saidx1->proto)
3787105197Ssam		return 0;
3788105197Ssam
3789105197Ssam	if (flag == CMP_EXACTLY) {
3790105197Ssam		if (saidx0->mode != saidx1->mode)
3791105197Ssam			return 0;
3792105197Ssam		if (saidx0->reqid != saidx1->reqid)
3793105197Ssam			return 0;
3794105197Ssam		if (bcmp(&saidx0->src, &saidx1->src, saidx0->src.sa.sa_len) != 0 ||
3795105197Ssam		    bcmp(&saidx0->dst, &saidx1->dst, saidx0->dst.sa.sa_len) != 0)
3796105197Ssam			return 0;
3797105197Ssam	} else {
3798105197Ssam
3799105197Ssam		/* CMP_MODE_REQID, CMP_REQID, CMP_HEAD */
3800105197Ssam		if (flag == CMP_MODE_REQID
3801105197Ssam		  ||flag == CMP_REQID) {
3802105197Ssam			/*
3803105197Ssam			 * If reqid of SPD is non-zero, unique SA is required.
3804105197Ssam			 * The result must be of same reqid in this case.
3805105197Ssam			 */
3806105197Ssam			if (saidx1->reqid != 0 && saidx0->reqid != saidx1->reqid)
3807105197Ssam				return 0;
3808105197Ssam		}
3809105197Ssam
3810105197Ssam		if (flag == CMP_MODE_REQID) {
3811105197Ssam			if (saidx0->mode != IPSEC_MODE_ANY
3812105197Ssam			 && saidx0->mode != saidx1->mode)
3813105197Ssam				return 0;
3814105197Ssam		}
3815105197Ssam
3816105197Ssam		if (key_sockaddrcmp(&saidx0->src.sa, &saidx1->src.sa, 0) != 0) {
3817105197Ssam			return 0;
3818105197Ssam		}
3819105197Ssam		if (key_sockaddrcmp(&saidx0->dst.sa, &saidx1->dst.sa, 0) != 0) {
3820105197Ssam			return 0;
3821105197Ssam		}
3822105197Ssam	}
3823105197Ssam
3824105197Ssam	return 1;
3825105197Ssam}
3826105197Ssam
3827105197Ssam/*
3828105197Ssam * compare two secindex structure exactly.
3829105197Ssam * IN:
3830105197Ssam *	spidx0: source, it is often in SPD.
3831105197Ssam *	spidx1: object, it is often from PFKEY message.
3832105197Ssam * OUT:
3833105197Ssam *	1 : equal
3834105197Ssam *	0 : not equal
3835105197Ssam */
3836105197Ssamstatic int
3837105197Ssamkey_cmpspidx_exactly(
3838105197Ssam	struct secpolicyindex *spidx0,
3839105197Ssam	struct secpolicyindex *spidx1)
3840105197Ssam{
3841105197Ssam	/* sanity */
3842105197Ssam	if (spidx0 == NULL && spidx1 == NULL)
3843105197Ssam		return 1;
3844105197Ssam
3845105197Ssam	if (spidx0 == NULL || spidx1 == NULL)
3846105197Ssam		return 0;
3847105197Ssam
3848105197Ssam	if (spidx0->prefs != spidx1->prefs
3849105197Ssam	 || spidx0->prefd != spidx1->prefd
3850105197Ssam	 || spidx0->ul_proto != spidx1->ul_proto)
3851105197Ssam		return 0;
3852105197Ssam
3853105197Ssam	return key_sockaddrcmp(&spidx0->src.sa, &spidx1->src.sa, 1) == 0 &&
3854105197Ssam	       key_sockaddrcmp(&spidx0->dst.sa, &spidx1->dst.sa, 1) == 0;
3855105197Ssam}
3856105197Ssam
3857105197Ssam/*
3858105197Ssam * compare two secindex structure with mask.
3859105197Ssam * IN:
3860105197Ssam *	spidx0: source, it is often in SPD.
3861105197Ssam *	spidx1: object, it is often from IP header.
3862105197Ssam * OUT:
3863105197Ssam *	1 : equal
3864105197Ssam *	0 : not equal
3865105197Ssam */
3866105197Ssamstatic int
3867105197Ssamkey_cmpspidx_withmask(
3868105197Ssam	struct secpolicyindex *spidx0,
3869105197Ssam	struct secpolicyindex *spidx1)
3870105197Ssam{
3871105197Ssam	/* sanity */
3872105197Ssam	if (spidx0 == NULL && spidx1 == NULL)
3873105197Ssam		return 1;
3874105197Ssam
3875105197Ssam	if (spidx0 == NULL || spidx1 == NULL)
3876105197Ssam		return 0;
3877105197Ssam
3878105197Ssam	if (spidx0->src.sa.sa_family != spidx1->src.sa.sa_family ||
3879105197Ssam	    spidx0->dst.sa.sa_family != spidx1->dst.sa.sa_family ||
3880105197Ssam	    spidx0->src.sa.sa_len != spidx1->src.sa.sa_len ||
3881105197Ssam	    spidx0->dst.sa.sa_len != spidx1->dst.sa.sa_len)
3882105197Ssam		return 0;
3883105197Ssam
3884105197Ssam	/* if spidx.ul_proto == IPSEC_ULPROTO_ANY, ignore. */
3885105197Ssam	if (spidx0->ul_proto != (u_int16_t)IPSEC_ULPROTO_ANY
3886105197Ssam	 && spidx0->ul_proto != spidx1->ul_proto)
3887105197Ssam		return 0;
3888105197Ssam
3889105197Ssam	switch (spidx0->src.sa.sa_family) {
3890105197Ssam	case AF_INET:
3891105197Ssam		if (spidx0->src.sin.sin_port != IPSEC_PORT_ANY
3892105197Ssam		 && spidx0->src.sin.sin_port != spidx1->src.sin.sin_port)
3893105197Ssam			return 0;
3894105197Ssam		if (!key_bbcmp(&spidx0->src.sin.sin_addr,
3895105197Ssam		    &spidx1->src.sin.sin_addr, spidx0->prefs))
3896105197Ssam			return 0;
3897105197Ssam		break;
3898105197Ssam	case AF_INET6:
3899105197Ssam		if (spidx0->src.sin6.sin6_port != IPSEC_PORT_ANY
3900105197Ssam		 && spidx0->src.sin6.sin6_port != spidx1->src.sin6.sin6_port)
3901105197Ssam			return 0;
3902105197Ssam		/*
3903105197Ssam		 * scope_id check. if sin6_scope_id is 0, we regard it
3904105197Ssam		 * as a wildcard scope, which matches any scope zone ID.
3905105197Ssam		 */
3906105197Ssam		if (spidx0->src.sin6.sin6_scope_id &&
3907105197Ssam		    spidx1->src.sin6.sin6_scope_id &&
3908105197Ssam		    spidx0->src.sin6.sin6_scope_id != spidx1->src.sin6.sin6_scope_id)
3909105197Ssam			return 0;
3910105197Ssam		if (!key_bbcmp(&spidx0->src.sin6.sin6_addr,
3911105197Ssam		    &spidx1->src.sin6.sin6_addr, spidx0->prefs))
3912105197Ssam			return 0;
3913105197Ssam		break;
3914105197Ssam	default:
3915105197Ssam		/* XXX */
3916105197Ssam		if (bcmp(&spidx0->src, &spidx1->src, spidx0->src.sa.sa_len) != 0)
3917105197Ssam			return 0;
3918105197Ssam		break;
3919105197Ssam	}
3920105197Ssam
3921105197Ssam	switch (spidx0->dst.sa.sa_family) {
3922105197Ssam	case AF_INET:
3923105197Ssam		if (spidx0->dst.sin.sin_port != IPSEC_PORT_ANY
3924105197Ssam		 && spidx0->dst.sin.sin_port != spidx1->dst.sin.sin_port)
3925105197Ssam			return 0;
3926105197Ssam		if (!key_bbcmp(&spidx0->dst.sin.sin_addr,
3927105197Ssam		    &spidx1->dst.sin.sin_addr, spidx0->prefd))
3928105197Ssam			return 0;
3929105197Ssam		break;
3930105197Ssam	case AF_INET6:
3931105197Ssam		if (spidx0->dst.sin6.sin6_port != IPSEC_PORT_ANY
3932105197Ssam		 && spidx0->dst.sin6.sin6_port != spidx1->dst.sin6.sin6_port)
3933105197Ssam			return 0;
3934105197Ssam		/*
3935105197Ssam		 * scope_id check. if sin6_scope_id is 0, we regard it
3936105197Ssam		 * as a wildcard scope, which matches any scope zone ID.
3937105197Ssam		 */
3938130928Sbms		if (spidx0->dst.sin6.sin6_scope_id &&
3939130928Sbms		    spidx1->dst.sin6.sin6_scope_id &&
3940105197Ssam		    spidx0->dst.sin6.sin6_scope_id != spidx1->dst.sin6.sin6_scope_id)
3941105197Ssam			return 0;
3942105197Ssam		if (!key_bbcmp(&spidx0->dst.sin6.sin6_addr,
3943105197Ssam		    &spidx1->dst.sin6.sin6_addr, spidx0->prefd))
3944105197Ssam			return 0;
3945105197Ssam		break;
3946105197Ssam	default:
3947105197Ssam		/* XXX */
3948105197Ssam		if (bcmp(&spidx0->dst, &spidx1->dst, spidx0->dst.sa.sa_len) != 0)
3949105197Ssam			return 0;
3950105197Ssam		break;
3951105197Ssam	}
3952105197Ssam
3953105197Ssam	/* XXX Do we check other field ?  e.g. flowinfo */
3954105197Ssam
3955105197Ssam	return 1;
3956105197Ssam}
3957105197Ssam
3958105197Ssam/* returns 0 on match */
3959105197Ssamstatic int
3960105197Ssamkey_sockaddrcmp(
3961105197Ssam	const struct sockaddr *sa1,
3962105197Ssam	const struct sockaddr *sa2,
3963105197Ssam	int port)
3964105197Ssam{
3965105197Ssam#ifdef satosin
3966105197Ssam#undef satosin
3967105197Ssam#endif
3968105197Ssam#define satosin(s) ((const struct sockaddr_in *)s)
3969105197Ssam#ifdef satosin6
3970105197Ssam#undef satosin6
3971105197Ssam#endif
3972105197Ssam#define satosin6(s) ((const struct sockaddr_in6 *)s)
3973105197Ssam	if (sa1->sa_family != sa2->sa_family || sa1->sa_len != sa2->sa_len)
3974105197Ssam		return 1;
3975105197Ssam
3976105197Ssam	switch (sa1->sa_family) {
3977105197Ssam	case AF_INET:
3978105197Ssam		if (sa1->sa_len != sizeof(struct sockaddr_in))
3979105197Ssam			return 1;
3980105197Ssam		if (satosin(sa1)->sin_addr.s_addr !=
3981105197Ssam		    satosin(sa2)->sin_addr.s_addr) {
3982105197Ssam			return 1;
3983105197Ssam		}
3984105197Ssam		if (port && satosin(sa1)->sin_port != satosin(sa2)->sin_port)
3985105197Ssam			return 1;
3986105197Ssam		break;
3987105197Ssam	case AF_INET6:
3988105197Ssam		if (sa1->sa_len != sizeof(struct sockaddr_in6))
3989105197Ssam			return 1;	/*EINVAL*/
3990105197Ssam		if (satosin6(sa1)->sin6_scope_id !=
3991105197Ssam		    satosin6(sa2)->sin6_scope_id) {
3992105197Ssam			return 1;
3993105197Ssam		}
3994105197Ssam		if (!IN6_ARE_ADDR_EQUAL(&satosin6(sa1)->sin6_addr,
3995105197Ssam		    &satosin6(sa2)->sin6_addr)) {
3996105197Ssam			return 1;
3997105197Ssam		}
3998105197Ssam		if (port &&
3999105197Ssam		    satosin6(sa1)->sin6_port != satosin6(sa2)->sin6_port) {
4000105197Ssam			return 1;
4001105197Ssam		}
4002170120Sbz		break;
4003105197Ssam	default:
4004105197Ssam		if (bcmp(sa1, sa2, sa1->sa_len) != 0)
4005105197Ssam			return 1;
4006105197Ssam		break;
4007105197Ssam	}
4008105197Ssam
4009105197Ssam	return 0;
4010105197Ssam#undef satosin
4011105197Ssam#undef satosin6
4012105197Ssam}
4013105197Ssam
4014105197Ssam/*
4015105197Ssam * compare two buffers with mask.
4016105197Ssam * IN:
4017105197Ssam *	addr1: source
4018105197Ssam *	addr2: object
4019105197Ssam *	bits:  Number of bits to compare
4020105197Ssam * OUT:
4021105197Ssam *	1 : equal
4022105197Ssam *	0 : not equal
4023105197Ssam */
4024105197Ssamstatic int
4025105197Ssamkey_bbcmp(const void *a1, const void *a2, u_int bits)
4026105197Ssam{
4027105197Ssam	const unsigned char *p1 = a1;
4028105197Ssam	const unsigned char *p2 = a2;
4029105197Ssam
4030105197Ssam	/* XXX: This could be considerably faster if we compare a word
4031105197Ssam	 * at a time, but it is complicated on LSB Endian machines */
4032105197Ssam
4033105197Ssam	/* Handle null pointers */
4034105197Ssam	if (p1 == NULL || p2 == NULL)
4035105197Ssam		return (p1 == p2);
4036105197Ssam
4037105197Ssam	while (bits >= 8) {
4038105197Ssam		if (*p1++ != *p2++)
4039105197Ssam			return 0;
4040105197Ssam		bits -= 8;
4041105197Ssam	}
4042105197Ssam
4043105197Ssam	if (bits > 0) {
4044105197Ssam		u_int8_t mask = ~((1<<(8-bits))-1);
4045105197Ssam		if ((*p1 & mask) != (*p2 & mask))
4046105197Ssam			return 0;
4047105197Ssam	}
4048105197Ssam	return 1;	/* Match! */
4049105197Ssam}
4050105197Ssam
4051119643Ssamstatic void
4052119643Ssamkey_flush_spd(time_t now)
4053105197Ssam{
4054120585Ssam	static u_int16_t sptree_scangen = 0;
4055120585Ssam	u_int16_t gen = sptree_scangen++;
4056120585Ssam	struct secpolicy *sp;
4057105197Ssam	u_int dir;
4058105197Ssam
4059105197Ssam	/* SPD */
4060105197Ssam	for (dir = 0; dir < IPSEC_DIR_MAX; dir++) {
4061120585Ssamrestart:
4062120585Ssam		SPTREE_LOCK();
4063120585Ssam		LIST_FOREACH(sp, &sptree[dir], chain) {
4064120585Ssam			if (sp->scangen == gen)		/* previously handled */
4065120585Ssam				continue;
4066120585Ssam			sp->scangen = gen;
4067105197Ssam			if (sp->state == IPSEC_SPSTATE_DEAD) {
4068120585Ssam				/* NB: clean entries created by key_spdflush */
4069120585Ssam				SPTREE_UNLOCK();
4070105197Ssam				KEY_FREESP(&sp);
4071120585Ssam				goto restart;
4072105197Ssam			}
4073105197Ssam			if (sp->lifetime == 0 && sp->validtime == 0)
4074105197Ssam				continue;
4075105197Ssam			if ((sp->lifetime && now - sp->created > sp->lifetime)
4076105197Ssam			 || (sp->validtime && now - sp->lastused > sp->validtime)) {
4077105197Ssam				sp->state = IPSEC_SPSTATE_DEAD;
4078120585Ssam				SPTREE_UNLOCK();
4079105197Ssam				key_spdexpire(sp);
4080120585Ssam				KEY_FREESP(&sp);
4081120585Ssam				goto restart;
4082105197Ssam			}
4083105197Ssam		}
4084120585Ssam		SPTREE_UNLOCK();
4085105197Ssam	}
4086119643Ssam}
4087105197Ssam
4088119643Ssamstatic void
4089119643Ssamkey_flush_sad(time_t now)
4090119643Ssam{
4091105197Ssam	struct secashead *sah, *nextsah;
4092105197Ssam	struct secasvar *sav, *nextsav;
4093105197Ssam
4094119643Ssam	/* SAD */
4095120585Ssam	SAHTREE_LOCK();
4096120585Ssam	LIST_FOREACH_SAFE(sah, &sahtree, chain, nextsah) {
4097105197Ssam		/* if sah has been dead, then delete it and process next sah. */
4098105197Ssam		if (sah->state == SADB_SASTATE_DEAD) {
4099105197Ssam			key_delsah(sah);
4100105197Ssam			continue;
4101105197Ssam		}
4102105197Ssam
4103105197Ssam		/* if LARVAL entry doesn't become MATURE, delete it. */
4104120585Ssam		LIST_FOREACH_SAFE(sav, &sah->savtree[SADB_SASTATE_LARVAL], chain, nextsav) {
4105120585Ssam			if (now - sav->created > key_larval_lifetime)
4106105197Ssam				KEY_FREESAV(&sav);
4107105197Ssam		}
4108105197Ssam
4109105197Ssam		/*
4110105197Ssam		 * check MATURE entry to start to send expire message
4111105197Ssam		 * whether or not.
4112105197Ssam		 */
4113120585Ssam		LIST_FOREACH_SAFE(sav, &sah->savtree[SADB_SASTATE_MATURE], chain, nextsav) {
4114105197Ssam			/* we don't need to check. */
4115105197Ssam			if (sav->lft_s == NULL)
4116105197Ssam				continue;
4117105197Ssam
4118105197Ssam			/* sanity check */
4119105197Ssam			if (sav->lft_c == NULL) {
4120120585Ssam				ipseclog((LOG_DEBUG,"%s: there is no CURRENT "
4121120585Ssam					"time, why?\n", __func__));
4122105197Ssam				continue;
4123105197Ssam			}
4124105197Ssam
4125105197Ssam			/* check SOFT lifetime */
4126157123Sgnn			if (sav->lft_s->addtime != 0 &&
4127157123Sgnn			    now - sav->created > sav->lft_s->addtime) {
4128105197Ssam				/*
4129105197Ssam				 * check SA to be used whether or not.
4130105197Ssam				 * when SA hasn't been used, delete it.
4131105197Ssam				 */
4132157123Sgnn				if (sav->lft_c->usetime == 0) {
4133105197Ssam					key_sa_chgstate(sav, SADB_SASTATE_DEAD);
4134105197Ssam					KEY_FREESAV(&sav);
4135105197Ssam				} else {
4136105197Ssam					key_sa_chgstate(sav, SADB_SASTATE_DYING);
4137105197Ssam					/*
4138105197Ssam					 * XXX If we keep to send expire
4139105197Ssam					 * message in the status of
4140105197Ssam					 * DYING. Do remove below code.
4141105197Ssam					 */
4142105197Ssam					key_expire(sav);
4143105197Ssam				}
4144105197Ssam			}
4145105197Ssam			/* check SOFT lifetime by bytes */
4146105197Ssam			/*
4147105197Ssam			 * XXX I don't know the way to delete this SA
4148105197Ssam			 * when new SA is installed.  Caution when it's
4149105197Ssam			 * installed too big lifetime by time.
4150105197Ssam			 */
4151157123Sgnn			else if (sav->lft_s->bytes != 0 &&
4152157123Sgnn			    sav->lft_s->bytes < sav->lft_c->bytes) {
4153105197Ssam
4154105197Ssam				key_sa_chgstate(sav, SADB_SASTATE_DYING);
4155105197Ssam				/*
4156105197Ssam				 * XXX If we keep to send expire
4157105197Ssam				 * message in the status of
4158105197Ssam				 * DYING. Do remove below code.
4159105197Ssam				 */
4160105197Ssam				key_expire(sav);
4161105197Ssam			}
4162105197Ssam		}
4163105197Ssam
4164105197Ssam		/* check DYING entry to change status to DEAD. */
4165120585Ssam		LIST_FOREACH_SAFE(sav, &sah->savtree[SADB_SASTATE_DYING], chain, nextsav) {
4166105197Ssam			/* we don't need to check. */
4167105197Ssam			if (sav->lft_h == NULL)
4168105197Ssam				continue;
4169105197Ssam
4170105197Ssam			/* sanity check */
4171105197Ssam			if (sav->lft_c == NULL) {
4172120585Ssam				ipseclog((LOG_DEBUG, "%s: there is no CURRENT "
4173120585Ssam					"time, why?\n", __func__));
4174105197Ssam				continue;
4175105197Ssam			}
4176105197Ssam
4177157123Sgnn			if (sav->lft_h->addtime != 0 &&
4178157123Sgnn			    now - sav->created > sav->lft_h->addtime) {
4179105197Ssam				key_sa_chgstate(sav, SADB_SASTATE_DEAD);
4180105197Ssam				KEY_FREESAV(&sav);
4181105197Ssam			}
4182105197Ssam#if 0	/* XXX Should we keep to send expire message until HARD lifetime ? */
4183105197Ssam			else if (sav->lft_s != NULL
4184157123Sgnn			      && sav->lft_s->addtime != 0
4185157123Sgnn			      && now - sav->created > sav->lft_s->addtime) {
4186105197Ssam				/*
4187105197Ssam				 * XXX: should be checked to be
4188105197Ssam				 * installed the valid SA.
4189105197Ssam				 */
4190105197Ssam
4191105197Ssam				/*
4192105197Ssam				 * If there is no SA then sending
4193105197Ssam				 * expire message.
4194105197Ssam				 */
4195105197Ssam				key_expire(sav);
4196105197Ssam			}
4197105197Ssam#endif
4198105197Ssam			/* check HARD lifetime by bytes */
4199157123Sgnn			else if (sav->lft_h->bytes != 0 &&
4200157123Sgnn			    sav->lft_h->bytes < sav->lft_c->bytes) {
4201105197Ssam				key_sa_chgstate(sav, SADB_SASTATE_DEAD);
4202105197Ssam				KEY_FREESAV(&sav);
4203105197Ssam			}
4204105197Ssam		}
4205105197Ssam
4206105197Ssam		/* delete entry in DEAD */
4207120585Ssam		LIST_FOREACH_SAFE(sav, &sah->savtree[SADB_SASTATE_DEAD], chain, nextsav) {
4208105197Ssam			/* sanity check */
4209105197Ssam			if (sav->state != SADB_SASTATE_DEAD) {
4210120585Ssam				ipseclog((LOG_DEBUG, "%s: invalid sav->state "
4211120585Ssam					"(queue: %d SA: %d): kill it anyway\n",
4212120585Ssam					__func__,
4213105197Ssam					SADB_SASTATE_DEAD, sav->state));
4214105197Ssam			}
4215105197Ssam			/*
4216105197Ssam			 * do not call key_freesav() here.
4217105197Ssam			 * sav should already be freed, and sav->refcnt
4218105197Ssam			 * shows other references to sav
4219105197Ssam			 * (such as from SPD).
4220105197Ssam			 */
4221105197Ssam		}
4222105197Ssam	}
4223120585Ssam	SAHTREE_UNLOCK();
4224119643Ssam}
4225105197Ssam
4226119643Ssamstatic void
4227119643Ssamkey_flush_acq(time_t now)
4228119643Ssam{
4229105197Ssam	struct secacq *acq, *nextacq;
4230105197Ssam
4231119643Ssam	/* ACQ tree */
4232120585Ssam	ACQ_LOCK();
4233119643Ssam	for (acq = LIST_FIRST(&acqtree); acq != NULL; acq = nextacq) {
4234105197Ssam		nextacq = LIST_NEXT(acq, chain);
4235105197Ssam		if (now - acq->created > key_blockacq_lifetime
4236105197Ssam		 && __LIST_CHAINED(acq)) {
4237105197Ssam			LIST_REMOVE(acq, chain);
4238119643Ssam			free(acq, M_IPSEC_SAQ);
4239105197Ssam		}
4240105197Ssam	}
4241120585Ssam	ACQ_UNLOCK();
4242119643Ssam}
4243105197Ssam
4244119643Ssamstatic void
4245119643Ssamkey_flush_spacq(time_t now)
4246119643Ssam{
4247105197Ssam	struct secspacq *acq, *nextacq;
4248105197Ssam
4249119643Ssam	/* SP ACQ tree */
4250120585Ssam	SPACQ_LOCK();
4251119643Ssam	for (acq = LIST_FIRST(&spacqtree); acq != NULL; acq = nextacq) {
4252105197Ssam		nextacq = LIST_NEXT(acq, chain);
4253105197Ssam		if (now - acq->created > key_blockacq_lifetime
4254105197Ssam		 && __LIST_CHAINED(acq)) {
4255105197Ssam			LIST_REMOVE(acq, chain);
4256119643Ssam			free(acq, M_IPSEC_SAQ);
4257105197Ssam		}
4258105197Ssam	}
4259120585Ssam	SPACQ_UNLOCK();
4260119643Ssam}
4261105197Ssam
4262119643Ssam/*
4263119643Ssam * time handler.
4264119643Ssam * scanning SPD and SAD to check status for each entries,
4265119643Ssam * and do to remove or to expire.
4266119643Ssam * XXX: year 2038 problem may remain.
4267119643Ssam */
4268119643Ssamvoid
4269119643Ssamkey_timehandler(void)
4270119643Ssam{
4271119643Ssam	time_t now = time_second;
4272105197Ssam
4273119643Ssam	key_flush_spd(now);
4274119643Ssam	key_flush_sad(now);
4275119643Ssam	key_flush_acq(now);
4276119643Ssam	key_flush_spacq(now);
4277119643Ssam
4278105197Ssam#ifndef IPSEC_DEBUG2
4279105197Ssam	/* do exchange to tick time !! */
4280105197Ssam	(void)timeout((void *)key_timehandler, (void *)0, hz);
4281105197Ssam#endif /* IPSEC_DEBUG2 */
4282105197Ssam}
4283105197Ssam
4284105197Ssamu_long
4285105197Ssamkey_random()
4286105197Ssam{
4287105197Ssam	u_long value;
4288105197Ssam
4289105197Ssam	key_randomfill(&value, sizeof(value));
4290105197Ssam	return value;
4291105197Ssam}
4292105197Ssam
4293105197Ssamvoid
4294105197Ssamkey_randomfill(p, l)
4295105197Ssam	void *p;
4296105197Ssam	size_t l;
4297105197Ssam{
4298105197Ssam	size_t n;
4299105197Ssam	u_long v;
4300105197Ssam	static int warn = 1;
4301105197Ssam
4302105197Ssam	n = 0;
4303105197Ssam	n = (size_t)read_random(p, (u_int)l);
4304105197Ssam	/* last resort */
4305105197Ssam	while (n < l) {
4306105197Ssam		v = random();
4307105197Ssam		bcopy(&v, (u_int8_t *)p + n,
4308105197Ssam		    l - n < sizeof(v) ? l - n : sizeof(v));
4309105197Ssam		n += sizeof(v);
4310105197Ssam
4311105197Ssam		if (warn) {
4312105197Ssam			printf("WARNING: pseudo-random number generator "
4313105197Ssam			    "used for IPsec processing\n");
4314105197Ssam			warn = 0;
4315105197Ssam		}
4316105197Ssam	}
4317105197Ssam}
4318105197Ssam
4319105197Ssam/*
4320105197Ssam * map SADB_SATYPE_* to IPPROTO_*.
4321105197Ssam * if satype == SADB_SATYPE then satype is mapped to ~0.
4322105197Ssam * OUT:
4323105197Ssam *	0: invalid satype.
4324105197Ssam */
4325105197Ssamstatic u_int16_t
4326105197Ssamkey_satype2proto(satype)
4327105197Ssam	u_int8_t satype;
4328105197Ssam{
4329105197Ssam	switch (satype) {
4330105197Ssam	case SADB_SATYPE_UNSPEC:
4331105197Ssam		return IPSEC_PROTO_ANY;
4332105197Ssam	case SADB_SATYPE_AH:
4333105197Ssam		return IPPROTO_AH;
4334105197Ssam	case SADB_SATYPE_ESP:
4335105197Ssam		return IPPROTO_ESP;
4336105197Ssam	case SADB_X_SATYPE_IPCOMP:
4337105197Ssam		return IPPROTO_IPCOMP;
4338125680Sbms	case SADB_X_SATYPE_TCPSIGNATURE:
4339125680Sbms		return IPPROTO_TCP;
4340105197Ssam	default:
4341105197Ssam		return 0;
4342105197Ssam	}
4343105197Ssam	/* NOTREACHED */
4344105197Ssam}
4345105197Ssam
4346105197Ssam/*
4347105197Ssam * map IPPROTO_* to SADB_SATYPE_*
4348105197Ssam * OUT:
4349105197Ssam *	0: invalid protocol type.
4350105197Ssam */
4351105197Ssamstatic u_int8_t
4352105197Ssamkey_proto2satype(proto)
4353105197Ssam	u_int16_t proto;
4354105197Ssam{
4355105197Ssam	switch (proto) {
4356105197Ssam	case IPPROTO_AH:
4357105197Ssam		return SADB_SATYPE_AH;
4358105197Ssam	case IPPROTO_ESP:
4359105197Ssam		return SADB_SATYPE_ESP;
4360105197Ssam	case IPPROTO_IPCOMP:
4361105197Ssam		return SADB_X_SATYPE_IPCOMP;
4362125680Sbms	case IPPROTO_TCP:
4363125680Sbms		return SADB_X_SATYPE_TCPSIGNATURE;
4364105197Ssam	default:
4365105197Ssam		return 0;
4366105197Ssam	}
4367105197Ssam	/* NOTREACHED */
4368105197Ssam}
4369105197Ssam
4370105197Ssam/* %%% PF_KEY */
4371105197Ssam/*
4372105197Ssam * SADB_GETSPI processing is to receive
4373105197Ssam *	<base, (SA2), src address, dst address, (SPI range)>
4374105197Ssam * from the IKMPd, to assign a unique spi value, to hang on the INBOUND
4375105197Ssam * tree with the status of LARVAL, and send
4376105197Ssam *	<base, SA(*), address(SD)>
4377105197Ssam * to the IKMPd.
4378105197Ssam *
4379105197Ssam * IN:	mhp: pointer to the pointer to each header.
4380105197Ssam * OUT:	NULL if fail.
4381105197Ssam *	other if success, return pointer to the message to send.
4382105197Ssam */
4383105197Ssamstatic int
4384105197Ssamkey_getspi(so, m, mhp)
4385105197Ssam	struct socket *so;
4386105197Ssam	struct mbuf *m;
4387105197Ssam	const struct sadb_msghdr *mhp;
4388105197Ssam{
4389105197Ssam	struct sadb_address *src0, *dst0;
4390105197Ssam	struct secasindex saidx;
4391105197Ssam	struct secashead *newsah;
4392105197Ssam	struct secasvar *newsav;
4393105197Ssam	u_int8_t proto;
4394105197Ssam	u_int32_t spi;
4395105197Ssam	u_int8_t mode;
4396105197Ssam	u_int32_t reqid;
4397105197Ssam	int error;
4398105197Ssam
4399120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
4400120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
4401120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
4402120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
4403105197Ssam
4404105197Ssam	if (mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
4405105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_DST] == NULL) {
4406120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
4407120585Ssam			__func__));
4408105197Ssam		return key_senderror(so, m, EINVAL);
4409105197Ssam	}
4410105197Ssam	if (mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
4411105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address)) {
4412120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
4413120585Ssam			__func__));
4414105197Ssam		return key_senderror(so, m, EINVAL);
4415105197Ssam	}
4416105197Ssam	if (mhp->ext[SADB_X_EXT_SA2] != NULL) {
4417105197Ssam		mode = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_mode;
4418105197Ssam		reqid = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_reqid;
4419105197Ssam	} else {
4420105197Ssam		mode = IPSEC_MODE_ANY;
4421105197Ssam		reqid = 0;
4422105197Ssam	}
4423105197Ssam
4424105197Ssam	src0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_SRC]);
4425105197Ssam	dst0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_DST]);
4426105197Ssam
4427105197Ssam	/* map satype to proto */
4428105197Ssam	if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
4429120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid satype is passed.\n",
4430120585Ssam			__func__));
4431105197Ssam		return key_senderror(so, m, EINVAL);
4432105197Ssam	}
4433105197Ssam
4434105197Ssam	/* make sure if port number is zero. */
4435105197Ssam	switch (((struct sockaddr *)(src0 + 1))->sa_family) {
4436105197Ssam	case AF_INET:
4437105197Ssam		if (((struct sockaddr *)(src0 + 1))->sa_len !=
4438105197Ssam		    sizeof(struct sockaddr_in))
4439105197Ssam			return key_senderror(so, m, EINVAL);
4440105197Ssam		((struct sockaddr_in *)(src0 + 1))->sin_port = 0;
4441105197Ssam		break;
4442105197Ssam	case AF_INET6:
4443105197Ssam		if (((struct sockaddr *)(src0 + 1))->sa_len !=
4444105197Ssam		    sizeof(struct sockaddr_in6))
4445105197Ssam			return key_senderror(so, m, EINVAL);
4446105197Ssam		((struct sockaddr_in6 *)(src0 + 1))->sin6_port = 0;
4447105197Ssam		break;
4448105197Ssam	default:
4449105197Ssam		; /*???*/
4450105197Ssam	}
4451105197Ssam	switch (((struct sockaddr *)(dst0 + 1))->sa_family) {
4452105197Ssam	case AF_INET:
4453105197Ssam		if (((struct sockaddr *)(dst0 + 1))->sa_len !=
4454105197Ssam		    sizeof(struct sockaddr_in))
4455105197Ssam			return key_senderror(so, m, EINVAL);
4456105197Ssam		((struct sockaddr_in *)(dst0 + 1))->sin_port = 0;
4457105197Ssam		break;
4458105197Ssam	case AF_INET6:
4459105197Ssam		if (((struct sockaddr *)(dst0 + 1))->sa_len !=
4460105197Ssam		    sizeof(struct sockaddr_in6))
4461105197Ssam			return key_senderror(so, m, EINVAL);
4462105197Ssam		((struct sockaddr_in6 *)(dst0 + 1))->sin6_port = 0;
4463105197Ssam		break;
4464105197Ssam	default:
4465105197Ssam		; /*???*/
4466105197Ssam	}
4467105197Ssam
4468105197Ssam	/* XXX boundary check against sa_len */
4469105197Ssam	KEY_SETSECASIDX(proto, mode, reqid, src0 + 1, dst0 + 1, &saidx);
4470105197Ssam
4471105197Ssam	/* SPI allocation */
4472105197Ssam	spi = key_do_getnewspi((struct sadb_spirange *)mhp->ext[SADB_EXT_SPIRANGE],
4473105197Ssam	                       &saidx);
4474105197Ssam	if (spi == 0)
4475105197Ssam		return key_senderror(so, m, EINVAL);
4476105197Ssam
4477105197Ssam	/* get a SA index */
4478105197Ssam	if ((newsah = key_getsah(&saidx)) == NULL) {
4479105197Ssam		/* create a new SA index */
4480105197Ssam		if ((newsah = key_newsah(&saidx)) == NULL) {
4481120585Ssam			ipseclog((LOG_DEBUG, "%s: No more memory.\n",__func__));
4482105197Ssam			return key_senderror(so, m, ENOBUFS);
4483105197Ssam		}
4484105197Ssam	}
4485105197Ssam
4486105197Ssam	/* get a new SA */
4487105197Ssam	/* XXX rewrite */
4488105197Ssam	newsav = KEY_NEWSAV(m, mhp, newsah, &error);
4489105197Ssam	if (newsav == NULL) {
4490105197Ssam		/* XXX don't free new SA index allocated in above. */
4491105197Ssam		return key_senderror(so, m, error);
4492105197Ssam	}
4493105197Ssam
4494105197Ssam	/* set spi */
4495105197Ssam	newsav->spi = htonl(spi);
4496105197Ssam
4497105197Ssam	/* delete the entry in acqtree */
4498105197Ssam	if (mhp->msg->sadb_msg_seq != 0) {
4499105197Ssam		struct secacq *acq;
4500105197Ssam		if ((acq = key_getacqbyseq(mhp->msg->sadb_msg_seq)) != NULL) {
4501105197Ssam			/* reset counter in order to deletion by timehandler. */
4502105197Ssam			acq->created = time_second;
4503105197Ssam			acq->count = 0;
4504105197Ssam		}
4505105197Ssam    	}
4506105197Ssam
4507105197Ssam    {
4508105197Ssam	struct mbuf *n, *nn;
4509105197Ssam	struct sadb_sa *m_sa;
4510105197Ssam	struct sadb_msg *newmsg;
4511105197Ssam	int off, len;
4512105197Ssam
4513105197Ssam	/* create new sadb_msg to reply. */
4514105197Ssam	len = PFKEY_ALIGN8(sizeof(struct sadb_msg)) +
4515105197Ssam	    PFKEY_ALIGN8(sizeof(struct sadb_sa));
4516105197Ssam	if (len > MCLBYTES)
4517105197Ssam		return key_senderror(so, m, ENOBUFS);
4518105197Ssam
4519111119Simp	MGETHDR(n, M_DONTWAIT, MT_DATA);
4520105197Ssam	if (len > MHLEN) {
4521111119Simp		MCLGET(n, M_DONTWAIT);
4522105197Ssam		if ((n->m_flags & M_EXT) == 0) {
4523105197Ssam			m_freem(n);
4524105197Ssam			n = NULL;
4525105197Ssam		}
4526105197Ssam	}
4527105197Ssam	if (!n)
4528105197Ssam		return key_senderror(so, m, ENOBUFS);
4529105197Ssam
4530105197Ssam	n->m_len = len;
4531105197Ssam	n->m_next = NULL;
4532105197Ssam	off = 0;
4533105197Ssam
4534105197Ssam	m_copydata(m, 0, sizeof(struct sadb_msg), mtod(n, caddr_t) + off);
4535105197Ssam	off += PFKEY_ALIGN8(sizeof(struct sadb_msg));
4536105197Ssam
4537105197Ssam	m_sa = (struct sadb_sa *)(mtod(n, caddr_t) + off);
4538105197Ssam	m_sa->sadb_sa_len = PFKEY_UNIT64(sizeof(struct sadb_sa));
4539105197Ssam	m_sa->sadb_sa_exttype = SADB_EXT_SA;
4540105197Ssam	m_sa->sadb_sa_spi = htonl(spi);
4541105197Ssam	off += PFKEY_ALIGN8(sizeof(struct sadb_sa));
4542105197Ssam
4543120585Ssam	IPSEC_ASSERT(off == len,
4544120585Ssam		("length inconsistency (off %u len %u)", off, len));
4545105197Ssam
4546105197Ssam	n->m_next = key_gather_mbuf(m, mhp, 0, 2, SADB_EXT_ADDRESS_SRC,
4547105197Ssam	    SADB_EXT_ADDRESS_DST);
4548105197Ssam	if (!n->m_next) {
4549105197Ssam		m_freem(n);
4550105197Ssam		return key_senderror(so, m, ENOBUFS);
4551105197Ssam	}
4552105197Ssam
4553105197Ssam	if (n->m_len < sizeof(struct sadb_msg)) {
4554105197Ssam		n = m_pullup(n, sizeof(struct sadb_msg));
4555105197Ssam		if (n == NULL)
4556105197Ssam			return key_sendup_mbuf(so, m, KEY_SENDUP_ONE);
4557105197Ssam	}
4558105197Ssam
4559105197Ssam	n->m_pkthdr.len = 0;
4560105197Ssam	for (nn = n; nn; nn = nn->m_next)
4561105197Ssam		n->m_pkthdr.len += nn->m_len;
4562105197Ssam
4563105197Ssam	newmsg = mtod(n, struct sadb_msg *);
4564105197Ssam	newmsg->sadb_msg_seq = newsav->seq;
4565105197Ssam	newmsg->sadb_msg_errno = 0;
4566105197Ssam	newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
4567105197Ssam
4568105197Ssam	m_freem(m);
4569105197Ssam	return key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
4570105197Ssam    }
4571105197Ssam}
4572105197Ssam
4573105197Ssam/*
4574105197Ssam * allocating new SPI
4575105197Ssam * called by key_getspi().
4576105197Ssam * OUT:
4577105197Ssam *	0:	failure.
4578105197Ssam *	others: success.
4579105197Ssam */
4580105197Ssamstatic u_int32_t
4581105197Ssamkey_do_getnewspi(spirange, saidx)
4582105197Ssam	struct sadb_spirange *spirange;
4583105197Ssam	struct secasindex *saidx;
4584105197Ssam{
4585105197Ssam	u_int32_t newspi;
4586105197Ssam	u_int32_t min, max;
4587105197Ssam	int count = key_spi_trycnt;
4588105197Ssam
4589105197Ssam	/* set spi range to allocate */
4590105197Ssam	if (spirange != NULL) {
4591105197Ssam		min = spirange->sadb_spirange_min;
4592105197Ssam		max = spirange->sadb_spirange_max;
4593105197Ssam	} else {
4594105197Ssam		min = key_spi_minval;
4595105197Ssam		max = key_spi_maxval;
4596105197Ssam	}
4597105197Ssam	/* IPCOMP needs 2-byte SPI */
4598105197Ssam	if (saidx->proto == IPPROTO_IPCOMP) {
4599105197Ssam		u_int32_t t;
4600105197Ssam		if (min >= 0x10000)
4601105197Ssam			min = 0xffff;
4602105197Ssam		if (max >= 0x10000)
4603105197Ssam			max = 0xffff;
4604105197Ssam		if (min > max) {
4605105197Ssam			t = min; min = max; max = t;
4606105197Ssam		}
4607105197Ssam	}
4608105197Ssam
4609105197Ssam	if (min == max) {
4610105197Ssam		if (key_checkspidup(saidx, min) != NULL) {
4611120585Ssam			ipseclog((LOG_DEBUG, "%s: SPI %u exists already.\n",
4612120585Ssam				__func__, min));
4613105197Ssam			return 0;
4614105197Ssam		}
4615105197Ssam
4616105197Ssam		count--; /* taking one cost. */
4617105197Ssam		newspi = min;
4618105197Ssam
4619105197Ssam	} else {
4620105197Ssam
4621105197Ssam		/* init SPI */
4622105197Ssam		newspi = 0;
4623105197Ssam
4624105197Ssam		/* when requesting to allocate spi ranged */
4625105197Ssam		while (count--) {
4626105197Ssam			/* generate pseudo-random SPI value ranged. */
4627105197Ssam			newspi = min + (key_random() % (max - min + 1));
4628105197Ssam
4629105197Ssam			if (key_checkspidup(saidx, newspi) == NULL)
4630105197Ssam				break;
4631105197Ssam		}
4632105197Ssam
4633105197Ssam		if (count == 0 || newspi == 0) {
4634120585Ssam			ipseclog((LOG_DEBUG, "%s: to allocate spi is failed.\n",
4635120585Ssam				__func__));
4636105197Ssam			return 0;
4637105197Ssam		}
4638105197Ssam	}
4639105197Ssam
4640105197Ssam	/* statistics */
4641105197Ssam	keystat.getspi_count =
4642105197Ssam		(keystat.getspi_count + key_spi_trycnt - count) / 2;
4643105197Ssam
4644105197Ssam	return newspi;
4645105197Ssam}
4646105197Ssam
4647105197Ssam/*
4648105197Ssam * SADB_UPDATE processing
4649105197Ssam * receive
4650105197Ssam *   <base, SA, (SA2), (lifetime(HSC),) address(SD), (address(P),)
4651105197Ssam *       key(AE), (identity(SD),) (sensitivity)>
4652105197Ssam * from the ikmpd, and update a secasvar entry whose status is SADB_SASTATE_LARVAL.
4653105197Ssam * and send
4654105197Ssam *   <base, SA, (SA2), (lifetime(HSC),) address(SD), (address(P),)
4655105197Ssam *       (identity(SD),) (sensitivity)>
4656105197Ssam * to the ikmpd.
4657105197Ssam *
4658105197Ssam * m will always be freed.
4659105197Ssam */
4660105197Ssamstatic int
4661105197Ssamkey_update(so, m, mhp)
4662105197Ssam	struct socket *so;
4663105197Ssam	struct mbuf *m;
4664105197Ssam	const struct sadb_msghdr *mhp;
4665105197Ssam{
4666105197Ssam	struct sadb_sa *sa0;
4667105197Ssam	struct sadb_address *src0, *dst0;
4668105197Ssam	struct secasindex saidx;
4669105197Ssam	struct secashead *sah;
4670105197Ssam	struct secasvar *sav;
4671105197Ssam	u_int16_t proto;
4672105197Ssam	u_int8_t mode;
4673105197Ssam	u_int32_t reqid;
4674105197Ssam	int error;
4675105197Ssam
4676120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
4677120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
4678120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
4679120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
4680105197Ssam
4681105197Ssam	/* map satype to proto */
4682105197Ssam	if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
4683120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid satype is passed.\n",
4684120585Ssam			__func__));
4685105197Ssam		return key_senderror(so, m, EINVAL);
4686105197Ssam	}
4687105197Ssam
4688105197Ssam	if (mhp->ext[SADB_EXT_SA] == NULL ||
4689105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
4690105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_DST] == NULL ||
4691105197Ssam	    (mhp->msg->sadb_msg_satype == SADB_SATYPE_ESP &&
4692105197Ssam	     mhp->ext[SADB_EXT_KEY_ENCRYPT] == NULL) ||
4693105197Ssam	    (mhp->msg->sadb_msg_satype == SADB_SATYPE_AH &&
4694105197Ssam	     mhp->ext[SADB_EXT_KEY_AUTH] == NULL) ||
4695105197Ssam	    (mhp->ext[SADB_EXT_LIFETIME_HARD] != NULL &&
4696105197Ssam	     mhp->ext[SADB_EXT_LIFETIME_SOFT] == NULL) ||
4697105197Ssam	    (mhp->ext[SADB_EXT_LIFETIME_HARD] == NULL &&
4698105197Ssam	     mhp->ext[SADB_EXT_LIFETIME_SOFT] != NULL)) {
4699120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
4700120585Ssam			__func__));
4701105197Ssam		return key_senderror(so, m, EINVAL);
4702105197Ssam	}
4703105197Ssam	if (mhp->extlen[SADB_EXT_SA] < sizeof(struct sadb_sa) ||
4704105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
4705105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address)) {
4706120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
4707120585Ssam			__func__));
4708105197Ssam		return key_senderror(so, m, EINVAL);
4709105197Ssam	}
4710105197Ssam	if (mhp->ext[SADB_X_EXT_SA2] != NULL) {
4711105197Ssam		mode = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_mode;
4712105197Ssam		reqid = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_reqid;
4713105197Ssam	} else {
4714105197Ssam		mode = IPSEC_MODE_ANY;
4715105197Ssam		reqid = 0;
4716105197Ssam	}
4717105197Ssam	/* XXX boundary checking for other extensions */
4718105197Ssam
4719105197Ssam	sa0 = (struct sadb_sa *)mhp->ext[SADB_EXT_SA];
4720105197Ssam	src0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_SRC]);
4721105197Ssam	dst0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_DST]);
4722105197Ssam
4723105197Ssam	/* XXX boundary check against sa_len */
4724105197Ssam	KEY_SETSECASIDX(proto, mode, reqid, src0 + 1, dst0 + 1, &saidx);
4725105197Ssam
4726105197Ssam	/* get a SA header */
4727105197Ssam	if ((sah = key_getsah(&saidx)) == NULL) {
4728120585Ssam		ipseclog((LOG_DEBUG, "%s: no SA index found.\n", __func__));
4729105197Ssam		return key_senderror(so, m, ENOENT);
4730105197Ssam	}
4731105197Ssam
4732105197Ssam	/* set spidx if there */
4733105197Ssam	/* XXX rewrite */
4734105197Ssam	error = key_setident(sah, m, mhp);
4735105197Ssam	if (error)
4736105197Ssam		return key_senderror(so, m, error);
4737105197Ssam
4738105197Ssam	/* find a SA with sequence number. */
4739105197Ssam#ifdef IPSEC_DOSEQCHECK
4740105197Ssam	if (mhp->msg->sadb_msg_seq != 0
4741105197Ssam	 && (sav = key_getsavbyseq(sah, mhp->msg->sadb_msg_seq)) == NULL) {
4742120585Ssam		ipseclog((LOG_DEBUG, "%s: no larval SA with sequence %u "
4743120585Ssam			"exists.\n", __func__, mhp->msg->sadb_msg_seq));
4744105197Ssam		return key_senderror(so, m, ENOENT);
4745105197Ssam	}
4746105197Ssam#else
4747120585Ssam	SAHTREE_LOCK();
4748120585Ssam	sav = key_getsavbyspi(sah, sa0->sadb_sa_spi);
4749120585Ssam	SAHTREE_UNLOCK();
4750120585Ssam	if (sav == NULL) {
4751120585Ssam		ipseclog((LOG_DEBUG, "%s: no such a SA found (spi:%u)\n",
4752120585Ssam			__func__, (u_int32_t)ntohl(sa0->sadb_sa_spi)));
4753105197Ssam		return key_senderror(so, m, EINVAL);
4754105197Ssam	}
4755105197Ssam#endif
4756105197Ssam
4757105197Ssam	/* validity check */
4758105197Ssam	if (sav->sah->saidx.proto != proto) {
4759120585Ssam		ipseclog((LOG_DEBUG, "%s: protocol mismatched "
4760120585Ssam			"(DB=%u param=%u)\n", __func__,
4761120585Ssam			sav->sah->saidx.proto, proto));
4762105197Ssam		return key_senderror(so, m, EINVAL);
4763105197Ssam	}
4764105197Ssam#ifdef IPSEC_DOSEQCHECK
4765105197Ssam	if (sav->spi != sa0->sadb_sa_spi) {
4766120585Ssam		ipseclog((LOG_DEBUG, "%s: SPI mismatched (DB:%u param:%u)\n",
4767120585Ssam		    __func__,
4768105197Ssam		    (u_int32_t)ntohl(sav->spi),
4769105197Ssam		    (u_int32_t)ntohl(sa0->sadb_sa_spi)));
4770105197Ssam		return key_senderror(so, m, EINVAL);
4771105197Ssam	}
4772105197Ssam#endif
4773105197Ssam	if (sav->pid != mhp->msg->sadb_msg_pid) {
4774120585Ssam		ipseclog((LOG_DEBUG, "%s: pid mismatched (DB:%u param:%u)\n",
4775120585Ssam		    __func__, sav->pid, mhp->msg->sadb_msg_pid));
4776105197Ssam		return key_senderror(so, m, EINVAL);
4777105197Ssam	}
4778105197Ssam
4779105197Ssam	/* copy sav values */
4780105197Ssam	error = key_setsaval(sav, m, mhp);
4781105197Ssam	if (error) {
4782105197Ssam		KEY_FREESAV(&sav);
4783105197Ssam		return key_senderror(so, m, error);
4784105197Ssam	}
4785105197Ssam
4786105197Ssam	/* check SA values to be mature. */
4787105197Ssam	if ((mhp->msg->sadb_msg_errno = key_mature(sav)) != 0) {
4788105197Ssam		KEY_FREESAV(&sav);
4789105197Ssam		return key_senderror(so, m, 0);
4790105197Ssam	}
4791105197Ssam
4792105197Ssam    {
4793105197Ssam	struct mbuf *n;
4794105197Ssam
4795105197Ssam	/* set msg buf from mhp */
4796105197Ssam	n = key_getmsgbuf_x1(m, mhp);
4797105197Ssam	if (n == NULL) {
4798120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
4799105197Ssam		return key_senderror(so, m, ENOBUFS);
4800105197Ssam	}
4801105197Ssam
4802105197Ssam	m_freem(m);
4803105197Ssam	return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
4804105197Ssam    }
4805105197Ssam}
4806105197Ssam
4807105197Ssam/*
4808105197Ssam * search SAD with sequence for a SA which state is SADB_SASTATE_LARVAL.
4809105197Ssam * only called by key_update().
4810105197Ssam * OUT:
4811105197Ssam *	NULL	: not found
4812105197Ssam *	others	: found, pointer to a SA.
4813105197Ssam */
4814105197Ssam#ifdef IPSEC_DOSEQCHECK
4815105197Ssamstatic struct secasvar *
4816105197Ssamkey_getsavbyseq(sah, seq)
4817105197Ssam	struct secashead *sah;
4818105197Ssam	u_int32_t seq;
4819105197Ssam{
4820105197Ssam	struct secasvar *sav;
4821105197Ssam	u_int state;
4822105197Ssam
4823105197Ssam	state = SADB_SASTATE_LARVAL;
4824105197Ssam
4825105197Ssam	/* search SAD with sequence number ? */
4826105197Ssam	LIST_FOREACH(sav, &sah->savtree[state], chain) {
4827105197Ssam
4828120585Ssam		KEY_CHKSASTATE(state, sav->state, __func__);
4829105197Ssam
4830105197Ssam		if (sav->seq == seq) {
4831158767Spjd			sa_addref(sav);
4832105197Ssam			KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
4833120585Ssam				printf("DP %s cause refcnt++:%d SA:%p\n",
4834120585Ssam					__func__, sav->refcnt, sav));
4835105197Ssam			return sav;
4836105197Ssam		}
4837105197Ssam	}
4838105197Ssam
4839105197Ssam	return NULL;
4840105197Ssam}
4841105197Ssam#endif
4842105197Ssam
4843105197Ssam/*
4844105197Ssam * SADB_ADD processing
4845108533Sschweikh * add an entry to SA database, when received
4846105197Ssam *   <base, SA, (SA2), (lifetime(HSC),) address(SD), (address(P),)
4847105197Ssam *       key(AE), (identity(SD),) (sensitivity)>
4848105197Ssam * from the ikmpd,
4849105197Ssam * and send
4850105197Ssam *   <base, SA, (SA2), (lifetime(HSC),) address(SD), (address(P),)
4851105197Ssam *       (identity(SD),) (sensitivity)>
4852105197Ssam * to the ikmpd.
4853105197Ssam *
4854105197Ssam * IGNORE identity and sensitivity messages.
4855105197Ssam *
4856105197Ssam * m will always be freed.
4857105197Ssam */
4858105197Ssamstatic int
4859105197Ssamkey_add(so, m, mhp)
4860105197Ssam	struct socket *so;
4861105197Ssam	struct mbuf *m;
4862105197Ssam	const struct sadb_msghdr *mhp;
4863105197Ssam{
4864105197Ssam	struct sadb_sa *sa0;
4865105197Ssam	struct sadb_address *src0, *dst0;
4866105197Ssam	struct secasindex saidx;
4867105197Ssam	struct secashead *newsah;
4868105197Ssam	struct secasvar *newsav;
4869105197Ssam	u_int16_t proto;
4870105197Ssam	u_int8_t mode;
4871105197Ssam	u_int32_t reqid;
4872105197Ssam	int error;
4873105197Ssam
4874120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
4875120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
4876120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
4877120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
4878105197Ssam
4879105197Ssam	/* map satype to proto */
4880105197Ssam	if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
4881120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid satype is passed.\n",
4882120585Ssam			__func__));
4883105197Ssam		return key_senderror(so, m, EINVAL);
4884105197Ssam	}
4885105197Ssam
4886105197Ssam	if (mhp->ext[SADB_EXT_SA] == NULL ||
4887105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
4888105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_DST] == NULL ||
4889105197Ssam	    (mhp->msg->sadb_msg_satype == SADB_SATYPE_ESP &&
4890105197Ssam	     mhp->ext[SADB_EXT_KEY_ENCRYPT] == NULL) ||
4891105197Ssam	    (mhp->msg->sadb_msg_satype == SADB_SATYPE_AH &&
4892105197Ssam	     mhp->ext[SADB_EXT_KEY_AUTH] == NULL) ||
4893105197Ssam	    (mhp->ext[SADB_EXT_LIFETIME_HARD] != NULL &&
4894105197Ssam	     mhp->ext[SADB_EXT_LIFETIME_SOFT] == NULL) ||
4895105197Ssam	    (mhp->ext[SADB_EXT_LIFETIME_HARD] == NULL &&
4896105197Ssam	     mhp->ext[SADB_EXT_LIFETIME_SOFT] != NULL)) {
4897120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
4898120585Ssam			__func__));
4899105197Ssam		return key_senderror(so, m, EINVAL);
4900105197Ssam	}
4901105197Ssam	if (mhp->extlen[SADB_EXT_SA] < sizeof(struct sadb_sa) ||
4902105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
4903105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address)) {
4904105197Ssam		/* XXX need more */
4905120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
4906120585Ssam			__func__));
4907105197Ssam		return key_senderror(so, m, EINVAL);
4908105197Ssam	}
4909105197Ssam	if (mhp->ext[SADB_X_EXT_SA2] != NULL) {
4910105197Ssam		mode = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_mode;
4911105197Ssam		reqid = ((struct sadb_x_sa2 *)mhp->ext[SADB_X_EXT_SA2])->sadb_x_sa2_reqid;
4912105197Ssam	} else {
4913105197Ssam		mode = IPSEC_MODE_ANY;
4914105197Ssam		reqid = 0;
4915105197Ssam	}
4916105197Ssam
4917105197Ssam	sa0 = (struct sadb_sa *)mhp->ext[SADB_EXT_SA];
4918105197Ssam	src0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_SRC];
4919105197Ssam	dst0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_DST];
4920105197Ssam
4921105197Ssam	/* XXX boundary check against sa_len */
4922105197Ssam	KEY_SETSECASIDX(proto, mode, reqid, src0 + 1, dst0 + 1, &saidx);
4923105197Ssam
4924105197Ssam	/* get a SA header */
4925105197Ssam	if ((newsah = key_getsah(&saidx)) == NULL) {
4926105197Ssam		/* create a new SA header */
4927105197Ssam		if ((newsah = key_newsah(&saidx)) == NULL) {
4928120585Ssam			ipseclog((LOG_DEBUG, "%s: No more memory.\n",__func__));
4929105197Ssam			return key_senderror(so, m, ENOBUFS);
4930105197Ssam		}
4931105197Ssam	}
4932105197Ssam
4933105197Ssam	/* set spidx if there */
4934105197Ssam	/* XXX rewrite */
4935105197Ssam	error = key_setident(newsah, m, mhp);
4936105197Ssam	if (error) {
4937105197Ssam		return key_senderror(so, m, error);
4938105197Ssam	}
4939105197Ssam
4940105197Ssam	/* create new SA entry. */
4941105197Ssam	/* We can create new SA only if SPI is differenct. */
4942120585Ssam	SAHTREE_LOCK();
4943120585Ssam	newsav = key_getsavbyspi(newsah, sa0->sadb_sa_spi);
4944120585Ssam	SAHTREE_UNLOCK();
4945120585Ssam	if (newsav != NULL) {
4946120585Ssam		ipseclog((LOG_DEBUG, "%s: SA already exists.\n", __func__));
4947105197Ssam		return key_senderror(so, m, EEXIST);
4948105197Ssam	}
4949105197Ssam	newsav = KEY_NEWSAV(m, mhp, newsah, &error);
4950105197Ssam	if (newsav == NULL) {
4951105197Ssam		return key_senderror(so, m, error);
4952105197Ssam	}
4953105197Ssam
4954105197Ssam	/* check SA values to be mature. */
4955105197Ssam	if ((error = key_mature(newsav)) != 0) {
4956105197Ssam		KEY_FREESAV(&newsav);
4957105197Ssam		return key_senderror(so, m, error);
4958105197Ssam	}
4959105197Ssam
4960105197Ssam	/*
4961105197Ssam	 * don't call key_freesav() here, as we would like to keep the SA
4962105197Ssam	 * in the database on success.
4963105197Ssam	 */
4964105197Ssam
4965105197Ssam    {
4966105197Ssam	struct mbuf *n;
4967105197Ssam
4968105197Ssam	/* set msg buf from mhp */
4969105197Ssam	n = key_getmsgbuf_x1(m, mhp);
4970105197Ssam	if (n == NULL) {
4971120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
4972105197Ssam		return key_senderror(so, m, ENOBUFS);
4973105197Ssam	}
4974105197Ssam
4975105197Ssam	m_freem(m);
4976105197Ssam	return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
4977105197Ssam    }
4978105197Ssam}
4979105197Ssam
4980105197Ssam/* m is retained */
4981105197Ssamstatic int
4982105197Ssamkey_setident(sah, m, mhp)
4983105197Ssam	struct secashead *sah;
4984105197Ssam	struct mbuf *m;
4985105197Ssam	const struct sadb_msghdr *mhp;
4986105197Ssam{
4987105197Ssam	const struct sadb_ident *idsrc, *iddst;
4988105197Ssam	int idsrclen, iddstlen;
4989105197Ssam
4990120585Ssam	IPSEC_ASSERT(sah != NULL, ("null secashead"));
4991120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
4992120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
4993120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
4994105197Ssam
4995105197Ssam	/* don't make buffer if not there */
4996105197Ssam	if (mhp->ext[SADB_EXT_IDENTITY_SRC] == NULL &&
4997105197Ssam	    mhp->ext[SADB_EXT_IDENTITY_DST] == NULL) {
4998105197Ssam		sah->idents = NULL;
4999105197Ssam		sah->identd = NULL;
5000105197Ssam		return 0;
5001105197Ssam	}
5002105197Ssam
5003105197Ssam	if (mhp->ext[SADB_EXT_IDENTITY_SRC] == NULL ||
5004105197Ssam	    mhp->ext[SADB_EXT_IDENTITY_DST] == NULL) {
5005120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid identity.\n", __func__));
5006105197Ssam		return EINVAL;
5007105197Ssam	}
5008105197Ssam
5009105197Ssam	idsrc = (const struct sadb_ident *)mhp->ext[SADB_EXT_IDENTITY_SRC];
5010105197Ssam	iddst = (const struct sadb_ident *)mhp->ext[SADB_EXT_IDENTITY_DST];
5011105197Ssam	idsrclen = mhp->extlen[SADB_EXT_IDENTITY_SRC];
5012105197Ssam	iddstlen = mhp->extlen[SADB_EXT_IDENTITY_DST];
5013105197Ssam
5014105197Ssam	/* validity check */
5015105197Ssam	if (idsrc->sadb_ident_type != iddst->sadb_ident_type) {
5016120585Ssam		ipseclog((LOG_DEBUG, "%s: ident type mismatch.\n", __func__));
5017105197Ssam		return EINVAL;
5018105197Ssam	}
5019105197Ssam
5020105197Ssam	switch (idsrc->sadb_ident_type) {
5021105197Ssam	case SADB_IDENTTYPE_PREFIX:
5022105197Ssam	case SADB_IDENTTYPE_FQDN:
5023105197Ssam	case SADB_IDENTTYPE_USERFQDN:
5024105197Ssam	default:
5025105197Ssam		/* XXX do nothing */
5026105197Ssam		sah->idents = NULL;
5027105197Ssam		sah->identd = NULL;
5028105197Ssam	 	return 0;
5029105197Ssam	}
5030105197Ssam
5031105197Ssam	/* make structure */
5032157123Sgnn	sah->idents = malloc(sizeof(struct secident), M_IPSEC_MISC, M_NOWAIT);
5033105197Ssam	if (sah->idents == NULL) {
5034120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
5035105197Ssam		return ENOBUFS;
5036105197Ssam	}
5037157123Sgnn	sah->identd = malloc(sizeof(struct secident), M_IPSEC_MISC, M_NOWAIT);
5038105197Ssam	if (sah->identd == NULL) {
5039119643Ssam		free(sah->idents, M_IPSEC_MISC);
5040105197Ssam		sah->idents = NULL;
5041120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
5042105197Ssam		return ENOBUFS;
5043105197Ssam	}
5044157123Sgnn	sah->idents->type = idsrc->sadb_ident_type;
5045157123Sgnn	sah->idents->id = idsrc->sadb_ident_id;
5046105197Ssam
5047157123Sgnn	sah->identd->type = iddst->sadb_ident_type;
5048157123Sgnn	sah->identd->id = iddst->sadb_ident_id;
5049157123Sgnn
5050105197Ssam	return 0;
5051105197Ssam}
5052105197Ssam
5053105197Ssam/*
5054105197Ssam * m will not be freed on return.
5055105197Ssam * it is caller's responsibility to free the result.
5056105197Ssam */
5057105197Ssamstatic struct mbuf *
5058105197Ssamkey_getmsgbuf_x1(m, mhp)
5059105197Ssam	struct mbuf *m;
5060105197Ssam	const struct sadb_msghdr *mhp;
5061105197Ssam{
5062105197Ssam	struct mbuf *n;
5063105197Ssam
5064120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
5065120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
5066120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
5067105197Ssam
5068105197Ssam	/* create new sadb_msg to reply. */
5069105197Ssam	n = key_gather_mbuf(m, mhp, 1, 9, SADB_EXT_RESERVED,
5070105197Ssam	    SADB_EXT_SA, SADB_X_EXT_SA2,
5071105197Ssam	    SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST,
5072105197Ssam	    SADB_EXT_LIFETIME_HARD, SADB_EXT_LIFETIME_SOFT,
5073105197Ssam	    SADB_EXT_IDENTITY_SRC, SADB_EXT_IDENTITY_DST);
5074105197Ssam	if (!n)
5075105197Ssam		return NULL;
5076105197Ssam
5077105197Ssam	if (n->m_len < sizeof(struct sadb_msg)) {
5078105197Ssam		n = m_pullup(n, sizeof(struct sadb_msg));
5079105197Ssam		if (n == NULL)
5080105197Ssam			return NULL;
5081105197Ssam	}
5082105197Ssam	mtod(n, struct sadb_msg *)->sadb_msg_errno = 0;
5083105197Ssam	mtod(n, struct sadb_msg *)->sadb_msg_len =
5084105197Ssam	    PFKEY_UNIT64(n->m_pkthdr.len);
5085105197Ssam
5086105197Ssam	return n;
5087105197Ssam}
5088105197Ssam
5089105197Ssamstatic int key_delete_all __P((struct socket *, struct mbuf *,
5090105197Ssam	const struct sadb_msghdr *, u_int16_t));
5091105197Ssam
5092105197Ssam/*
5093105197Ssam * SADB_DELETE processing
5094105197Ssam * receive
5095105197Ssam *   <base, SA(*), address(SD)>
5096105197Ssam * from the ikmpd, and set SADB_SASTATE_DEAD,
5097105197Ssam * and send,
5098105197Ssam *   <base, SA(*), address(SD)>
5099105197Ssam * to the ikmpd.
5100105197Ssam *
5101105197Ssam * m will always be freed.
5102105197Ssam */
5103105197Ssamstatic int
5104105197Ssamkey_delete(so, m, mhp)
5105105197Ssam	struct socket *so;
5106105197Ssam	struct mbuf *m;
5107105197Ssam	const struct sadb_msghdr *mhp;
5108105197Ssam{
5109105197Ssam	struct sadb_sa *sa0;
5110105197Ssam	struct sadb_address *src0, *dst0;
5111105197Ssam	struct secasindex saidx;
5112105197Ssam	struct secashead *sah;
5113105197Ssam	struct secasvar *sav = NULL;
5114105197Ssam	u_int16_t proto;
5115105197Ssam
5116120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
5117120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
5118120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
5119120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
5120105197Ssam
5121105197Ssam	/* map satype to proto */
5122105197Ssam	if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
5123120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid satype is passed.\n",
5124120585Ssam			__func__));
5125105197Ssam		return key_senderror(so, m, EINVAL);
5126105197Ssam	}
5127105197Ssam
5128105197Ssam	if (mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
5129105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_DST] == NULL) {
5130120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
5131120585Ssam			__func__));
5132105197Ssam		return key_senderror(so, m, EINVAL);
5133105197Ssam	}
5134105197Ssam
5135105197Ssam	if (mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
5136105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address)) {
5137120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
5138120585Ssam			__func__));
5139105197Ssam		return key_senderror(so, m, EINVAL);
5140105197Ssam	}
5141105197Ssam
5142105197Ssam	if (mhp->ext[SADB_EXT_SA] == NULL) {
5143105197Ssam		/*
5144105197Ssam		 * Caller wants us to delete all non-LARVAL SAs
5145105197Ssam		 * that match the src/dst.  This is used during
5146105197Ssam		 * IKE INITIAL-CONTACT.
5147105197Ssam		 */
5148120585Ssam		ipseclog((LOG_DEBUG, "%s: doing delete all.\n", __func__));
5149105197Ssam		return key_delete_all(so, m, mhp, proto);
5150105197Ssam	} else if (mhp->extlen[SADB_EXT_SA] < sizeof(struct sadb_sa)) {
5151120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
5152120585Ssam			__func__));
5153105197Ssam		return key_senderror(so, m, EINVAL);
5154105197Ssam	}
5155105197Ssam
5156105197Ssam	sa0 = (struct sadb_sa *)mhp->ext[SADB_EXT_SA];
5157105197Ssam	src0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_SRC]);
5158105197Ssam	dst0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_DST]);
5159105197Ssam
5160105197Ssam	/* XXX boundary check against sa_len */
5161105197Ssam	KEY_SETSECASIDX(proto, IPSEC_MODE_ANY, 0, src0 + 1, dst0 + 1, &saidx);
5162105197Ssam
5163105197Ssam	/* get a SA header */
5164120585Ssam	SAHTREE_LOCK();
5165105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
5166105197Ssam		if (sah->state == SADB_SASTATE_DEAD)
5167105197Ssam			continue;
5168105197Ssam		if (key_cmpsaidx(&sah->saidx, &saidx, CMP_HEAD) == 0)
5169105197Ssam			continue;
5170105197Ssam
5171105197Ssam		/* get a SA with SPI. */
5172105197Ssam		sav = key_getsavbyspi(sah, sa0->sadb_sa_spi);
5173105197Ssam		if (sav)
5174105197Ssam			break;
5175105197Ssam	}
5176105197Ssam	if (sah == NULL) {
5177120585Ssam		SAHTREE_UNLOCK();
5178120585Ssam		ipseclog((LOG_DEBUG, "%s: no SA found.\n", __func__));
5179105197Ssam		return key_senderror(so, m, ENOENT);
5180105197Ssam	}
5181105197Ssam
5182105197Ssam	key_sa_chgstate(sav, SADB_SASTATE_DEAD);
5183120585Ssam	SAHTREE_UNLOCK();
5184105197Ssam	KEY_FREESAV(&sav);
5185105197Ssam
5186105197Ssam    {
5187105197Ssam	struct mbuf *n;
5188105197Ssam	struct sadb_msg *newmsg;
5189105197Ssam
5190105197Ssam	/* create new sadb_msg to reply. */
5191105197Ssam	n = key_gather_mbuf(m, mhp, 1, 4, SADB_EXT_RESERVED,
5192105197Ssam	    SADB_EXT_SA, SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
5193105197Ssam	if (!n)
5194105197Ssam		return key_senderror(so, m, ENOBUFS);
5195105197Ssam
5196105197Ssam	if (n->m_len < sizeof(struct sadb_msg)) {
5197105197Ssam		n = m_pullup(n, sizeof(struct sadb_msg));
5198105197Ssam		if (n == NULL)
5199105197Ssam			return key_senderror(so, m, ENOBUFS);
5200105197Ssam	}
5201105197Ssam	newmsg = mtod(n, struct sadb_msg *);
5202105197Ssam	newmsg->sadb_msg_errno = 0;
5203105197Ssam	newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
5204105197Ssam
5205105197Ssam	m_freem(m);
5206105197Ssam	return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
5207105197Ssam    }
5208105197Ssam}
5209105197Ssam
5210105197Ssam/*
5211105197Ssam * delete all SAs for src/dst.  Called from key_delete().
5212105197Ssam */
5213105197Ssamstatic int
5214105197Ssamkey_delete_all(so, m, mhp, proto)
5215105197Ssam	struct socket *so;
5216105197Ssam	struct mbuf *m;
5217105197Ssam	const struct sadb_msghdr *mhp;
5218105197Ssam	u_int16_t proto;
5219105197Ssam{
5220105197Ssam	struct sadb_address *src0, *dst0;
5221105197Ssam	struct secasindex saidx;
5222105197Ssam	struct secashead *sah;
5223105197Ssam	struct secasvar *sav, *nextsav;
5224105197Ssam	u_int stateidx, state;
5225105197Ssam
5226105197Ssam	src0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_SRC]);
5227105197Ssam	dst0 = (struct sadb_address *)(mhp->ext[SADB_EXT_ADDRESS_DST]);
5228105197Ssam
5229105197Ssam	/* XXX boundary check against sa_len */
5230105197Ssam	KEY_SETSECASIDX(proto, IPSEC_MODE_ANY, 0, src0 + 1, dst0 + 1, &saidx);
5231105197Ssam
5232120585Ssam	SAHTREE_LOCK();
5233105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
5234105197Ssam		if (sah->state == SADB_SASTATE_DEAD)
5235105197Ssam			continue;
5236105197Ssam		if (key_cmpsaidx(&sah->saidx, &saidx, CMP_HEAD) == 0)
5237105197Ssam			continue;
5238105197Ssam
5239105197Ssam		/* Delete all non-LARVAL SAs. */
5240105197Ssam		for (stateidx = 0;
5241105197Ssam		     stateidx < _ARRAYLEN(saorder_state_alive);
5242105197Ssam		     stateidx++) {
5243105197Ssam			state = saorder_state_alive[stateidx];
5244105197Ssam			if (state == SADB_SASTATE_LARVAL)
5245105197Ssam				continue;
5246105197Ssam			for (sav = LIST_FIRST(&sah->savtree[state]);
5247105197Ssam			     sav != NULL; sav = nextsav) {
5248105197Ssam				nextsav = LIST_NEXT(sav, chain);
5249105197Ssam				/* sanity check */
5250105197Ssam				if (sav->state != state) {
5251120585Ssam					ipseclog((LOG_DEBUG, "%s: invalid "
5252120585Ssam						"sav->state (queue %d SA %d)\n",
5253120585Ssam						__func__, state, sav->state));
5254105197Ssam					continue;
5255105197Ssam				}
5256105197Ssam
5257105197Ssam				key_sa_chgstate(sav, SADB_SASTATE_DEAD);
5258105197Ssam				KEY_FREESAV(&sav);
5259105197Ssam			}
5260105197Ssam		}
5261105197Ssam	}
5262120585Ssam	SAHTREE_UNLOCK();
5263105197Ssam    {
5264105197Ssam	struct mbuf *n;
5265105197Ssam	struct sadb_msg *newmsg;
5266105197Ssam
5267105197Ssam	/* create new sadb_msg to reply. */
5268105197Ssam	n = key_gather_mbuf(m, mhp, 1, 3, SADB_EXT_RESERVED,
5269105197Ssam	    SADB_EXT_ADDRESS_SRC, SADB_EXT_ADDRESS_DST);
5270105197Ssam	if (!n)
5271105197Ssam		return key_senderror(so, m, ENOBUFS);
5272105197Ssam
5273105197Ssam	if (n->m_len < sizeof(struct sadb_msg)) {
5274105197Ssam		n = m_pullup(n, sizeof(struct sadb_msg));
5275105197Ssam		if (n == NULL)
5276105197Ssam			return key_senderror(so, m, ENOBUFS);
5277105197Ssam	}
5278105197Ssam	newmsg = mtod(n, struct sadb_msg *);
5279105197Ssam	newmsg->sadb_msg_errno = 0;
5280105197Ssam	newmsg->sadb_msg_len = PFKEY_UNIT64(n->m_pkthdr.len);
5281105197Ssam
5282105197Ssam	m_freem(m);
5283105197Ssam	return key_sendup_mbuf(so, n, KEY_SENDUP_ALL);
5284105197Ssam    }
5285105197Ssam}
5286105197Ssam
5287105197Ssam/*
5288105197Ssam * SADB_GET processing
5289105197Ssam * receive
5290105197Ssam *   <base, SA(*), address(SD)>
5291105197Ssam * from the ikmpd, and get a SP and a SA to respond,
5292105197Ssam * and send,
5293105197Ssam *   <base, SA, (lifetime(HSC),) address(SD), (address(P),) key(AE),
5294105197Ssam *       (identity(SD),) (sensitivity)>
5295105197Ssam * to the ikmpd.
5296105197Ssam *
5297105197Ssam * m will always be freed.
5298105197Ssam */
5299105197Ssamstatic int
5300105197Ssamkey_get(so, m, mhp)
5301105197Ssam	struct socket *so;
5302105197Ssam	struct mbuf *m;
5303105197Ssam	const struct sadb_msghdr *mhp;
5304105197Ssam{
5305105197Ssam	struct sadb_sa *sa0;
5306105197Ssam	struct sadb_address *src0, *dst0;
5307105197Ssam	struct secasindex saidx;
5308105197Ssam	struct secashead *sah;
5309105197Ssam	struct secasvar *sav = NULL;
5310105197Ssam	u_int16_t proto;
5311105197Ssam
5312120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
5313120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
5314120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
5315120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
5316105197Ssam
5317105197Ssam	/* map satype to proto */
5318105197Ssam	if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
5319120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid satype is passed.\n",
5320120585Ssam			__func__));
5321105197Ssam		return key_senderror(so, m, EINVAL);
5322105197Ssam	}
5323105197Ssam
5324105197Ssam	if (mhp->ext[SADB_EXT_SA] == NULL ||
5325105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
5326105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_DST] == NULL) {
5327120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
5328120585Ssam			__func__));
5329105197Ssam		return key_senderror(so, m, EINVAL);
5330105197Ssam	}
5331105197Ssam	if (mhp->extlen[SADB_EXT_SA] < sizeof(struct sadb_sa) ||
5332105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
5333105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address)) {
5334120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
5335120585Ssam			__func__));
5336105197Ssam		return key_senderror(so, m, EINVAL);
5337105197Ssam	}
5338105197Ssam
5339105197Ssam	sa0 = (struct sadb_sa *)mhp->ext[SADB_EXT_SA];
5340105197Ssam	src0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_SRC];
5341105197Ssam	dst0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_DST];
5342105197Ssam
5343105197Ssam	/* XXX boundary check against sa_len */
5344105197Ssam	KEY_SETSECASIDX(proto, IPSEC_MODE_ANY, 0, src0 + 1, dst0 + 1, &saidx);
5345105197Ssam
5346105197Ssam	/* get a SA header */
5347120585Ssam	SAHTREE_LOCK();
5348105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
5349105197Ssam		if (sah->state == SADB_SASTATE_DEAD)
5350105197Ssam			continue;
5351105197Ssam		if (key_cmpsaidx(&sah->saidx, &saidx, CMP_HEAD) == 0)
5352105197Ssam			continue;
5353105197Ssam
5354105197Ssam		/* get a SA with SPI. */
5355105197Ssam		sav = key_getsavbyspi(sah, sa0->sadb_sa_spi);
5356105197Ssam		if (sav)
5357105197Ssam			break;
5358105197Ssam	}
5359120585Ssam	SAHTREE_UNLOCK();
5360105197Ssam	if (sah == NULL) {
5361120585Ssam		ipseclog((LOG_DEBUG, "%s: no SA found.\n", __func__));
5362105197Ssam		return key_senderror(so, m, ENOENT);
5363105197Ssam	}
5364105197Ssam
5365105197Ssam    {
5366105197Ssam	struct mbuf *n;
5367105197Ssam	u_int8_t satype;
5368105197Ssam
5369105197Ssam	/* map proto to satype */
5370105197Ssam	if ((satype = key_proto2satype(sah->saidx.proto)) == 0) {
5371120585Ssam		ipseclog((LOG_DEBUG, "%s: there was invalid proto in SAD.\n",
5372120585Ssam			__func__));
5373105197Ssam		return key_senderror(so, m, EINVAL);
5374105197Ssam	}
5375105197Ssam
5376105197Ssam	/* create new sadb_msg to reply. */
5377105197Ssam	n = key_setdumpsa(sav, SADB_GET, satype, mhp->msg->sadb_msg_seq,
5378105197Ssam	    mhp->msg->sadb_msg_pid);
5379105197Ssam	if (!n)
5380105197Ssam		return key_senderror(so, m, ENOBUFS);
5381105197Ssam
5382105197Ssam	m_freem(m);
5383105197Ssam	return key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
5384105197Ssam    }
5385105197Ssam}
5386105197Ssam
5387105197Ssam/* XXX make it sysctl-configurable? */
5388105197Ssamstatic void
5389105197Ssamkey_getcomb_setlifetime(comb)
5390105197Ssam	struct sadb_comb *comb;
5391105197Ssam{
5392105197Ssam
5393105197Ssam	comb->sadb_comb_soft_allocations = 1;
5394105197Ssam	comb->sadb_comb_hard_allocations = 1;
5395105197Ssam	comb->sadb_comb_soft_bytes = 0;
5396105197Ssam	comb->sadb_comb_hard_bytes = 0;
5397105197Ssam	comb->sadb_comb_hard_addtime = 86400;	/* 1 day */
5398105197Ssam	comb->sadb_comb_soft_addtime = comb->sadb_comb_soft_addtime * 80 / 100;
5399105197Ssam	comb->sadb_comb_soft_usetime = 28800;	/* 8 hours */
5400105197Ssam	comb->sadb_comb_hard_usetime = comb->sadb_comb_hard_usetime * 80 / 100;
5401105197Ssam}
5402105197Ssam
5403105197Ssam/*
5404105197Ssam * XXX reorder combinations by preference
5405105197Ssam * XXX no idea if the user wants ESP authentication or not
5406105197Ssam */
5407105197Ssamstatic struct mbuf *
5408105197Ssamkey_getcomb_esp()
5409105197Ssam{
5410105197Ssam	struct sadb_comb *comb;
5411105197Ssam	struct enc_xform *algo;
5412105197Ssam	struct mbuf *result = NULL, *m, *n;
5413105197Ssam	int encmin;
5414105197Ssam	int i, off, o;
5415105197Ssam	int totlen;
5416105197Ssam	const int l = PFKEY_ALIGN8(sizeof(struct sadb_comb));
5417105197Ssam
5418105197Ssam	m = NULL;
5419105197Ssam	for (i = 1; i <= SADB_EALG_MAX; i++) {
5420105197Ssam		algo = esp_algorithm_lookup(i);
5421105197Ssam		if (algo == NULL)
5422105197Ssam			continue;
5423105197Ssam
5424105197Ssam		/* discard algorithms with key size smaller than system min */
5425105197Ssam		if (_BITS(algo->maxkey) < ipsec_esp_keymin)
5426105197Ssam			continue;
5427105197Ssam		if (_BITS(algo->minkey) < ipsec_esp_keymin)
5428105197Ssam			encmin = ipsec_esp_keymin;
5429105197Ssam		else
5430105197Ssam			encmin = _BITS(algo->minkey);
5431105197Ssam
5432105197Ssam		if (ipsec_esp_auth)
5433105197Ssam			m = key_getcomb_ah();
5434105197Ssam		else {
5435120585Ssam			IPSEC_ASSERT(l <= MLEN,
5436120585Ssam				("l=%u > MLEN=%lu", l, (u_long) MLEN));
5437111119Simp			MGET(m, M_DONTWAIT, MT_DATA);
5438105197Ssam			if (m) {
5439105197Ssam				M_ALIGN(m, l);
5440105197Ssam				m->m_len = l;
5441105197Ssam				m->m_next = NULL;
5442105197Ssam				bzero(mtod(m, caddr_t), m->m_len);
5443105197Ssam			}
5444105197Ssam		}
5445105197Ssam		if (!m)
5446105197Ssam			goto fail;
5447105197Ssam
5448105197Ssam		totlen = 0;
5449105197Ssam		for (n = m; n; n = n->m_next)
5450105197Ssam			totlen += n->m_len;
5451120585Ssam		IPSEC_ASSERT((totlen % l) == 0, ("totlen=%u, l=%u", totlen, l));
5452105197Ssam
5453105197Ssam		for (off = 0; off < totlen; off += l) {
5454105197Ssam			n = m_pulldown(m, off, l, &o);
5455105197Ssam			if (!n) {
5456105197Ssam				/* m is already freed */
5457105197Ssam				goto fail;
5458105197Ssam			}
5459105197Ssam			comb = (struct sadb_comb *)(mtod(n, caddr_t) + o);
5460105197Ssam			bzero(comb, sizeof(*comb));
5461105197Ssam			key_getcomb_setlifetime(comb);
5462105197Ssam			comb->sadb_comb_encrypt = i;
5463105197Ssam			comb->sadb_comb_encrypt_minbits = encmin;
5464105197Ssam			comb->sadb_comb_encrypt_maxbits = _BITS(algo->maxkey);
5465105197Ssam		}
5466105197Ssam
5467105197Ssam		if (!result)
5468105197Ssam			result = m;
5469105197Ssam		else
5470105197Ssam			m_cat(result, m);
5471105197Ssam	}
5472105197Ssam
5473105197Ssam	return result;
5474105197Ssam
5475105197Ssam fail:
5476105197Ssam	if (result)
5477105197Ssam		m_freem(result);
5478105197Ssam	return NULL;
5479105197Ssam}
5480105197Ssam
5481105197Ssamstatic void
5482105197Ssamkey_getsizes_ah(
5483105197Ssam	const struct auth_hash *ah,
5484105197Ssam	int alg,
5485105197Ssam	u_int16_t* min,
5486105197Ssam	u_int16_t* max)
5487105197Ssam{
5488105197Ssam	*min = *max = ah->keysize;
5489105197Ssam	if (ah->keysize == 0) {
5490105197Ssam		/*
5491105197Ssam		 * Transform takes arbitrary key size but algorithm
5492105197Ssam		 * key size is restricted.  Enforce this here.
5493105197Ssam		 */
5494105197Ssam		switch (alg) {
5495105197Ssam		case SADB_X_AALG_MD5:	*min = *max = 16; break;
5496105197Ssam		case SADB_X_AALG_SHA:	*min = *max = 20; break;
5497105197Ssam		case SADB_X_AALG_NULL:	*min = 1; *max = 256; break;
5498105197Ssam		default:
5499120585Ssam			DPRINTF(("%s: unknown AH algorithm %u\n",
5500120585Ssam				__func__, alg));
5501105197Ssam			break;
5502105197Ssam		}
5503105197Ssam	}
5504105197Ssam}
5505105197Ssam
5506105197Ssam/*
5507105197Ssam * XXX reorder combinations by preference
5508105197Ssam */
5509105197Ssamstatic struct mbuf *
5510105197Ssamkey_getcomb_ah()
5511105197Ssam{
5512105197Ssam	struct sadb_comb *comb;
5513105197Ssam	struct auth_hash *algo;
5514105197Ssam	struct mbuf *m;
5515105197Ssam	u_int16_t minkeysize, maxkeysize;
5516105197Ssam	int i;
5517105197Ssam	const int l = PFKEY_ALIGN8(sizeof(struct sadb_comb));
5518105197Ssam
5519105197Ssam	m = NULL;
5520105197Ssam	for (i = 1; i <= SADB_AALG_MAX; i++) {
5521105197Ssam#if 1
5522105197Ssam		/* we prefer HMAC algorithms, not old algorithms */
5523105197Ssam		if (i != SADB_AALG_SHA1HMAC && i != SADB_AALG_MD5HMAC)
5524105197Ssam			continue;
5525105197Ssam#endif
5526105197Ssam		algo = ah_algorithm_lookup(i);
5527105197Ssam		if (!algo)
5528105197Ssam			continue;
5529105197Ssam		key_getsizes_ah(algo, i, &minkeysize, &maxkeysize);
5530105197Ssam		/* discard algorithms with key size smaller than system min */
5531105197Ssam		if (_BITS(minkeysize) < ipsec_ah_keymin)
5532105197Ssam			continue;
5533105197Ssam
5534105197Ssam		if (!m) {
5535120585Ssam			IPSEC_ASSERT(l <= MLEN,
5536120585Ssam				("l=%u > MLEN=%lu", l, (u_long) MLEN));
5537111119Simp			MGET(m, M_DONTWAIT, MT_DATA);
5538105197Ssam			if (m) {
5539105197Ssam				M_ALIGN(m, l);
5540105197Ssam				m->m_len = l;
5541105197Ssam				m->m_next = NULL;
5542105197Ssam			}
5543105197Ssam		} else
5544111119Simp			M_PREPEND(m, l, M_DONTWAIT);
5545105197Ssam		if (!m)
5546105197Ssam			return NULL;
5547105197Ssam
5548105197Ssam		comb = mtod(m, struct sadb_comb *);
5549105197Ssam		bzero(comb, sizeof(*comb));
5550105197Ssam		key_getcomb_setlifetime(comb);
5551105197Ssam		comb->sadb_comb_auth = i;
5552105197Ssam		comb->sadb_comb_auth_minbits = _BITS(minkeysize);
5553105197Ssam		comb->sadb_comb_auth_maxbits = _BITS(maxkeysize);
5554105197Ssam	}
5555105197Ssam
5556105197Ssam	return m;
5557105197Ssam}
5558105197Ssam
5559105197Ssam/*
5560105197Ssam * not really an official behavior.  discussed in pf_key@inner.net in Sep2000.
5561105197Ssam * XXX reorder combinations by preference
5562105197Ssam */
5563105197Ssamstatic struct mbuf *
5564105197Ssamkey_getcomb_ipcomp()
5565105197Ssam{
5566105197Ssam	struct sadb_comb *comb;
5567105197Ssam	struct comp_algo *algo;
5568105197Ssam	struct mbuf *m;
5569105197Ssam	int i;
5570105197Ssam	const int l = PFKEY_ALIGN8(sizeof(struct sadb_comb));
5571105197Ssam
5572105197Ssam	m = NULL;
5573105197Ssam	for (i = 1; i <= SADB_X_CALG_MAX; i++) {
5574105197Ssam		algo = ipcomp_algorithm_lookup(i);
5575105197Ssam		if (!algo)
5576105197Ssam			continue;
5577105197Ssam
5578105197Ssam		if (!m) {
5579120585Ssam			IPSEC_ASSERT(l <= MLEN,
5580120585Ssam				("l=%u > MLEN=%lu", l, (u_long) MLEN));
5581111119Simp			MGET(m, M_DONTWAIT, MT_DATA);
5582105197Ssam			if (m) {
5583105197Ssam				M_ALIGN(m, l);
5584105197Ssam				m->m_len = l;
5585105197Ssam				m->m_next = NULL;
5586105197Ssam			}
5587105197Ssam		} else
5588111119Simp			M_PREPEND(m, l, M_DONTWAIT);
5589105197Ssam		if (!m)
5590105197Ssam			return NULL;
5591105197Ssam
5592105197Ssam		comb = mtod(m, struct sadb_comb *);
5593105197Ssam		bzero(comb, sizeof(*comb));
5594105197Ssam		key_getcomb_setlifetime(comb);
5595105197Ssam		comb->sadb_comb_encrypt = i;
5596105197Ssam		/* what should we set into sadb_comb_*_{min,max}bits? */
5597105197Ssam	}
5598105197Ssam
5599105197Ssam	return m;
5600105197Ssam}
5601105197Ssam
5602105197Ssam/*
5603105197Ssam * XXX no way to pass mode (transport/tunnel) to userland
5604105197Ssam * XXX replay checking?
5605105197Ssam * XXX sysctl interface to ipsec_{ah,esp}_keymin
5606105197Ssam */
5607105197Ssamstatic struct mbuf *
5608105197Ssamkey_getprop(saidx)
5609105197Ssam	const struct secasindex *saidx;
5610105197Ssam{
5611105197Ssam	struct sadb_prop *prop;
5612105197Ssam	struct mbuf *m, *n;
5613105197Ssam	const int l = PFKEY_ALIGN8(sizeof(struct sadb_prop));
5614105197Ssam	int totlen;
5615105197Ssam
5616105197Ssam	switch (saidx->proto)  {
5617105197Ssam	case IPPROTO_ESP:
5618105197Ssam		m = key_getcomb_esp();
5619105197Ssam		break;
5620105197Ssam	case IPPROTO_AH:
5621105197Ssam		m = key_getcomb_ah();
5622105197Ssam		break;
5623105197Ssam	case IPPROTO_IPCOMP:
5624105197Ssam		m = key_getcomb_ipcomp();
5625105197Ssam		break;
5626105197Ssam	default:
5627105197Ssam		return NULL;
5628105197Ssam	}
5629105197Ssam
5630105197Ssam	if (!m)
5631105197Ssam		return NULL;
5632111119Simp	M_PREPEND(m, l, M_DONTWAIT);
5633105197Ssam	if (!m)
5634105197Ssam		return NULL;
5635105197Ssam
5636105197Ssam	totlen = 0;
5637105197Ssam	for (n = m; n; n = n->m_next)
5638105197Ssam		totlen += n->m_len;
5639105197Ssam
5640105197Ssam	prop = mtod(m, struct sadb_prop *);
5641105197Ssam	bzero(prop, sizeof(*prop));
5642105197Ssam	prop->sadb_prop_len = PFKEY_UNIT64(totlen);
5643105197Ssam	prop->sadb_prop_exttype = SADB_EXT_PROPOSAL;
5644105197Ssam	prop->sadb_prop_replay = 32;	/* XXX */
5645105197Ssam
5646105197Ssam	return m;
5647105197Ssam}
5648105197Ssam
5649105197Ssam/*
5650105197Ssam * SADB_ACQUIRE processing called by key_checkrequest() and key_acquire2().
5651105197Ssam * send
5652105197Ssam *   <base, SA, address(SD), (address(P)), x_policy,
5653105197Ssam *       (identity(SD),) (sensitivity,) proposal>
5654105197Ssam * to KMD, and expect to receive
5655105197Ssam *   <base> with SADB_ACQUIRE if error occured,
5656105197Ssam * or
5657105197Ssam *   <base, src address, dst address, (SPI range)> with SADB_GETSPI
5658105197Ssam * from KMD by PF_KEY.
5659105197Ssam *
5660105197Ssam * XXX x_policy is outside of RFC2367 (KAME extension).
5661105197Ssam * XXX sensitivity is not supported.
5662105197Ssam * XXX for ipcomp, RFC2367 does not define how to fill in proposal.
5663105197Ssam * see comment for key_getcomb_ipcomp().
5664105197Ssam *
5665105197Ssam * OUT:
5666105197Ssam *    0     : succeed
5667105197Ssam *    others: error number
5668105197Ssam */
5669105197Ssamstatic int
5670105197Ssamkey_acquire(const struct secasindex *saidx, struct secpolicy *sp)
5671105197Ssam{
5672105197Ssam	struct mbuf *result = NULL, *m;
5673105197Ssam	struct secacq *newacq;
5674105197Ssam	u_int8_t satype;
5675105197Ssam	int error = -1;
5676105197Ssam	u_int32_t seq;
5677105197Ssam
5678120585Ssam	IPSEC_ASSERT(saidx != NULL, ("null saidx"));
5679105197Ssam	satype = key_proto2satype(saidx->proto);
5680120585Ssam	IPSEC_ASSERT(satype != 0, ("null satype, protocol %u", saidx->proto));
5681105197Ssam
5682105197Ssam	/*
5683105197Ssam	 * We never do anything about acquirng SA.  There is anather
5684105197Ssam	 * solution that kernel blocks to send SADB_ACQUIRE message until
5685105197Ssam	 * getting something message from IKEd.  In later case, to be
5686105197Ssam	 * managed with ACQUIRING list.
5687105197Ssam	 */
5688108533Sschweikh	/* Get an entry to check whether sending message or not. */
5689105197Ssam	if ((newacq = key_getacq(saidx)) != NULL) {
5690105197Ssam		if (key_blockacq_count < newacq->count) {
5691105197Ssam			/* reset counter and do send message. */
5692105197Ssam			newacq->count = 0;
5693105197Ssam		} else {
5694105197Ssam			/* increment counter and do nothing. */
5695105197Ssam			newacq->count++;
5696105197Ssam			return 0;
5697105197Ssam		}
5698105197Ssam	} else {
5699105197Ssam		/* make new entry for blocking to send SADB_ACQUIRE. */
5700105197Ssam		if ((newacq = key_newacq(saidx)) == NULL)
5701105197Ssam			return ENOBUFS;
5702105197Ssam	}
5703105197Ssam
5704105197Ssam
5705105197Ssam	seq = newacq->seq;
5706105197Ssam	m = key_setsadbmsg(SADB_ACQUIRE, 0, satype, seq, 0, 0);
5707105197Ssam	if (!m) {
5708105197Ssam		error = ENOBUFS;
5709105197Ssam		goto fail;
5710105197Ssam	}
5711105197Ssam	result = m;
5712105197Ssam
5713105197Ssam	/* set sadb_address for saidx's. */
5714105197Ssam	m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
5715105197Ssam	    &saidx->src.sa, FULLMASK, IPSEC_ULPROTO_ANY);
5716105197Ssam	if (!m) {
5717105197Ssam		error = ENOBUFS;
5718105197Ssam		goto fail;
5719105197Ssam	}
5720105197Ssam	m_cat(result, m);
5721105197Ssam
5722105197Ssam	m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
5723105197Ssam	    &saidx->dst.sa, FULLMASK, IPSEC_ULPROTO_ANY);
5724105197Ssam	if (!m) {
5725105197Ssam		error = ENOBUFS;
5726105197Ssam		goto fail;
5727105197Ssam	}
5728105197Ssam	m_cat(result, m);
5729105197Ssam
5730105197Ssam	/* XXX proxy address (optional) */
5731105197Ssam
5732105197Ssam	/* set sadb_x_policy */
5733105197Ssam	if (sp) {
5734105197Ssam		m = key_setsadbxpolicy(sp->policy, sp->spidx.dir, sp->id);
5735105197Ssam		if (!m) {
5736105197Ssam			error = ENOBUFS;
5737105197Ssam			goto fail;
5738105197Ssam		}
5739105197Ssam		m_cat(result, m);
5740105197Ssam	}
5741105197Ssam
5742105197Ssam	/* XXX identity (optional) */
5743105197Ssam#if 0
5744105197Ssam	if (idexttype && fqdn) {
5745105197Ssam		/* create identity extension (FQDN) */
5746105197Ssam		struct sadb_ident *id;
5747105197Ssam		int fqdnlen;
5748105197Ssam
5749105197Ssam		fqdnlen = strlen(fqdn) + 1;	/* +1 for terminating-NUL */
5750105197Ssam		id = (struct sadb_ident *)p;
5751105197Ssam		bzero(id, sizeof(*id) + PFKEY_ALIGN8(fqdnlen));
5752105197Ssam		id->sadb_ident_len = PFKEY_UNIT64(sizeof(*id) + PFKEY_ALIGN8(fqdnlen));
5753105197Ssam		id->sadb_ident_exttype = idexttype;
5754105197Ssam		id->sadb_ident_type = SADB_IDENTTYPE_FQDN;
5755105197Ssam		bcopy(fqdn, id + 1, fqdnlen);
5756105197Ssam		p += sizeof(struct sadb_ident) + PFKEY_ALIGN8(fqdnlen);
5757105197Ssam	}
5758105197Ssam
5759105197Ssam	if (idexttype) {
5760105197Ssam		/* create identity extension (USERFQDN) */
5761105197Ssam		struct sadb_ident *id;
5762105197Ssam		int userfqdnlen;
5763105197Ssam
5764105197Ssam		if (userfqdn) {
5765105197Ssam			/* +1 for terminating-NUL */
5766105197Ssam			userfqdnlen = strlen(userfqdn) + 1;
5767105197Ssam		} else
5768105197Ssam			userfqdnlen = 0;
5769105197Ssam		id = (struct sadb_ident *)p;
5770105197Ssam		bzero(id, sizeof(*id) + PFKEY_ALIGN8(userfqdnlen));
5771105197Ssam		id->sadb_ident_len = PFKEY_UNIT64(sizeof(*id) + PFKEY_ALIGN8(userfqdnlen));
5772105197Ssam		id->sadb_ident_exttype = idexttype;
5773105197Ssam		id->sadb_ident_type = SADB_IDENTTYPE_USERFQDN;
5774105197Ssam		/* XXX is it correct? */
5775105197Ssam		if (curproc && curproc->p_cred)
5776105197Ssam			id->sadb_ident_id = curproc->p_cred->p_ruid;
5777105197Ssam		if (userfqdn && userfqdnlen)
5778105197Ssam			bcopy(userfqdn, id + 1, userfqdnlen);
5779105197Ssam		p += sizeof(struct sadb_ident) + PFKEY_ALIGN8(userfqdnlen);
5780105197Ssam	}
5781105197Ssam#endif
5782105197Ssam
5783105197Ssam	/* XXX sensitivity (optional) */
5784105197Ssam
5785105197Ssam	/* create proposal/combination extension */
5786105197Ssam	m = key_getprop(saidx);
5787105197Ssam#if 0
5788105197Ssam	/*
5789105197Ssam	 * spec conformant: always attach proposal/combination extension,
5790105197Ssam	 * the problem is that we have no way to attach it for ipcomp,
5791105197Ssam	 * due to the way sadb_comb is declared in RFC2367.
5792105197Ssam	 */
5793105197Ssam	if (!m) {
5794105197Ssam		error = ENOBUFS;
5795105197Ssam		goto fail;
5796105197Ssam	}
5797105197Ssam	m_cat(result, m);
5798105197Ssam#else
5799105197Ssam	/*
5800105197Ssam	 * outside of spec; make proposal/combination extension optional.
5801105197Ssam	 */
5802105197Ssam	if (m)
5803105197Ssam		m_cat(result, m);
5804105197Ssam#endif
5805105197Ssam
5806105197Ssam	if ((result->m_flags & M_PKTHDR) == 0) {
5807105197Ssam		error = EINVAL;
5808105197Ssam		goto fail;
5809105197Ssam	}
5810105197Ssam
5811105197Ssam	if (result->m_len < sizeof(struct sadb_msg)) {
5812105197Ssam		result = m_pullup(result, sizeof(struct sadb_msg));
5813105197Ssam		if (result == NULL) {
5814105197Ssam			error = ENOBUFS;
5815105197Ssam			goto fail;
5816105197Ssam		}
5817105197Ssam	}
5818105197Ssam
5819105197Ssam	result->m_pkthdr.len = 0;
5820105197Ssam	for (m = result; m; m = m->m_next)
5821105197Ssam		result->m_pkthdr.len += m->m_len;
5822105197Ssam
5823105197Ssam	mtod(result, struct sadb_msg *)->sadb_msg_len =
5824105197Ssam	    PFKEY_UNIT64(result->m_pkthdr.len);
5825105197Ssam
5826105197Ssam	return key_sendup_mbuf(NULL, result, KEY_SENDUP_REGISTERED);
5827105197Ssam
5828105197Ssam fail:
5829105197Ssam	if (result)
5830105197Ssam		m_freem(result);
5831105197Ssam	return error;
5832105197Ssam}
5833105197Ssam
5834105197Ssamstatic struct secacq *
5835105197Ssamkey_newacq(const struct secasindex *saidx)
5836105197Ssam{
5837105197Ssam	struct secacq *newacq;
5838105197Ssam
5839105197Ssam	/* get new entry */
5840119643Ssam	newacq = malloc(sizeof(struct secacq), M_IPSEC_SAQ, M_NOWAIT|M_ZERO);
5841105197Ssam	if (newacq == NULL) {
5842120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
5843105197Ssam		return NULL;
5844105197Ssam	}
5845105197Ssam
5846105197Ssam	/* copy secindex */
5847105197Ssam	bcopy(saidx, &newacq->saidx, sizeof(newacq->saidx));
5848105197Ssam	newacq->seq = (acq_seq == ~0 ? 1 : ++acq_seq);
5849105197Ssam	newacq->created = time_second;
5850105197Ssam	newacq->count = 0;
5851105197Ssam
5852119643Ssam	/* add to acqtree */
5853120585Ssam	ACQ_LOCK();
5854119643Ssam	LIST_INSERT_HEAD(&acqtree, newacq, chain);
5855120585Ssam	ACQ_UNLOCK();
5856119643Ssam
5857105197Ssam	return newacq;
5858105197Ssam}
5859105197Ssam
5860105197Ssamstatic struct secacq *
5861105197Ssamkey_getacq(const struct secasindex *saidx)
5862105197Ssam{
5863105197Ssam	struct secacq *acq;
5864105197Ssam
5865120585Ssam	ACQ_LOCK();
5866105197Ssam	LIST_FOREACH(acq, &acqtree, chain) {
5867105197Ssam		if (key_cmpsaidx(saidx, &acq->saidx, CMP_EXACTLY))
5868119643Ssam			break;
5869105197Ssam	}
5870120585Ssam	ACQ_UNLOCK();
5871105197Ssam
5872119643Ssam	return acq;
5873105197Ssam}
5874105197Ssam
5875105197Ssamstatic struct secacq *
5876105197Ssamkey_getacqbyseq(seq)
5877105197Ssam	u_int32_t seq;
5878105197Ssam{
5879105197Ssam	struct secacq *acq;
5880105197Ssam
5881120585Ssam	ACQ_LOCK();
5882105197Ssam	LIST_FOREACH(acq, &acqtree, chain) {
5883105197Ssam		if (acq->seq == seq)
5884119643Ssam			break;
5885105197Ssam	}
5886120585Ssam	ACQ_UNLOCK();
5887105197Ssam
5888119643Ssam	return acq;
5889105197Ssam}
5890105197Ssam
5891105197Ssamstatic struct secspacq *
5892105197Ssamkey_newspacq(spidx)
5893105197Ssam	struct secpolicyindex *spidx;
5894105197Ssam{
5895105197Ssam	struct secspacq *acq;
5896105197Ssam
5897105197Ssam	/* get new entry */
5898119643Ssam	acq = malloc(sizeof(struct secspacq), M_IPSEC_SAQ, M_NOWAIT|M_ZERO);
5899105197Ssam	if (acq == NULL) {
5900120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
5901105197Ssam		return NULL;
5902105197Ssam	}
5903105197Ssam
5904105197Ssam	/* copy secindex */
5905105197Ssam	bcopy(spidx, &acq->spidx, sizeof(acq->spidx));
5906105197Ssam	acq->created = time_second;
5907105197Ssam	acq->count = 0;
5908105197Ssam
5909119643Ssam	/* add to spacqtree */
5910120585Ssam	SPACQ_LOCK();
5911119643Ssam	LIST_INSERT_HEAD(&spacqtree, acq, chain);
5912120585Ssam	SPACQ_UNLOCK();
5913119643Ssam
5914105197Ssam	return acq;
5915105197Ssam}
5916105197Ssam
5917105197Ssamstatic struct secspacq *
5918105197Ssamkey_getspacq(spidx)
5919105197Ssam	struct secpolicyindex *spidx;
5920105197Ssam{
5921105197Ssam	struct secspacq *acq;
5922105197Ssam
5923120585Ssam	SPACQ_LOCK();
5924105197Ssam	LIST_FOREACH(acq, &spacqtree, chain) {
5925119643Ssam		if (key_cmpspidx_exactly(spidx, &acq->spidx)) {
5926119643Ssam			/* NB: return holding spacq_lock */
5927105197Ssam			return acq;
5928119643Ssam		}
5929105197Ssam	}
5930120585Ssam	SPACQ_UNLOCK();
5931105197Ssam
5932105197Ssam	return NULL;
5933105197Ssam}
5934105197Ssam
5935105197Ssam/*
5936105197Ssam * SADB_ACQUIRE processing,
5937105197Ssam * in first situation, is receiving
5938105197Ssam *   <base>
5939105197Ssam * from the ikmpd, and clear sequence of its secasvar entry.
5940105197Ssam *
5941105197Ssam * In second situation, is receiving
5942105197Ssam *   <base, address(SD), (address(P),) (identity(SD),) (sensitivity,) proposal>
5943105197Ssam * from a user land process, and return
5944105197Ssam *   <base, address(SD), (address(P),) (identity(SD),) (sensitivity,) proposal>
5945105197Ssam * to the socket.
5946105197Ssam *
5947105197Ssam * m will always be freed.
5948105197Ssam */
5949105197Ssamstatic int
5950105197Ssamkey_acquire2(so, m, mhp)
5951105197Ssam	struct socket *so;
5952105197Ssam	struct mbuf *m;
5953105197Ssam	const struct sadb_msghdr *mhp;
5954105197Ssam{
5955105197Ssam	const struct sadb_address *src0, *dst0;
5956105197Ssam	struct secasindex saidx;
5957105197Ssam	struct secashead *sah;
5958105197Ssam	u_int16_t proto;
5959105197Ssam	int error;
5960105197Ssam
5961120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
5962120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
5963120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
5964120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
5965105197Ssam
5966105197Ssam	/*
5967105197Ssam	 * Error message from KMd.
5968105197Ssam	 * We assume that if error was occured in IKEd, the length of PFKEY
5969105197Ssam	 * message is equal to the size of sadb_msg structure.
5970105197Ssam	 * We do not raise error even if error occured in this function.
5971105197Ssam	 */
5972105197Ssam	if (mhp->msg->sadb_msg_len == PFKEY_UNIT64(sizeof(struct sadb_msg))) {
5973105197Ssam		struct secacq *acq;
5974105197Ssam
5975105197Ssam		/* check sequence number */
5976105197Ssam		if (mhp->msg->sadb_msg_seq == 0) {
5977120585Ssam			ipseclog((LOG_DEBUG, "%s: must specify sequence "
5978120585Ssam				"number.\n", __func__));
5979105197Ssam			m_freem(m);
5980105197Ssam			return 0;
5981105197Ssam		}
5982105197Ssam
5983105197Ssam		if ((acq = key_getacqbyseq(mhp->msg->sadb_msg_seq)) == NULL) {
5984105197Ssam			/*
5985105197Ssam			 * the specified larval SA is already gone, or we got
5986105197Ssam			 * a bogus sequence number.  we can silently ignore it.
5987105197Ssam			 */
5988105197Ssam			m_freem(m);
5989105197Ssam			return 0;
5990105197Ssam		}
5991105197Ssam
5992105197Ssam		/* reset acq counter in order to deletion by timehander. */
5993105197Ssam		acq->created = time_second;
5994105197Ssam		acq->count = 0;
5995105197Ssam		m_freem(m);
5996105197Ssam		return 0;
5997105197Ssam	}
5998105197Ssam
5999105197Ssam	/*
6000105197Ssam	 * This message is from user land.
6001105197Ssam	 */
6002105197Ssam
6003105197Ssam	/* map satype to proto */
6004105197Ssam	if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
6005120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid satype is passed.\n",
6006120585Ssam			__func__));
6007105197Ssam		return key_senderror(so, m, EINVAL);
6008105197Ssam	}
6009105197Ssam
6010105197Ssam	if (mhp->ext[SADB_EXT_ADDRESS_SRC] == NULL ||
6011105197Ssam	    mhp->ext[SADB_EXT_ADDRESS_DST] == NULL ||
6012105197Ssam	    mhp->ext[SADB_EXT_PROPOSAL] == NULL) {
6013105197Ssam		/* error */
6014120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
6015120585Ssam			__func__));
6016105197Ssam		return key_senderror(so, m, EINVAL);
6017105197Ssam	}
6018105197Ssam	if (mhp->extlen[SADB_EXT_ADDRESS_SRC] < sizeof(struct sadb_address) ||
6019105197Ssam	    mhp->extlen[SADB_EXT_ADDRESS_DST] < sizeof(struct sadb_address) ||
6020105197Ssam	    mhp->extlen[SADB_EXT_PROPOSAL] < sizeof(struct sadb_prop)) {
6021105197Ssam		/* error */
6022120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message is passed.\n",
6023120585Ssam			__func__));
6024105197Ssam		return key_senderror(so, m, EINVAL);
6025105197Ssam	}
6026105197Ssam
6027105197Ssam	src0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_SRC];
6028105197Ssam	dst0 = (struct sadb_address *)mhp->ext[SADB_EXT_ADDRESS_DST];
6029105197Ssam
6030105197Ssam	/* XXX boundary check against sa_len */
6031105197Ssam	KEY_SETSECASIDX(proto, IPSEC_MODE_ANY, 0, src0 + 1, dst0 + 1, &saidx);
6032105197Ssam
6033105197Ssam	/* get a SA index */
6034120585Ssam	SAHTREE_LOCK();
6035105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
6036105197Ssam		if (sah->state == SADB_SASTATE_DEAD)
6037105197Ssam			continue;
6038105197Ssam		if (key_cmpsaidx(&sah->saidx, &saidx, CMP_MODE_REQID))
6039105197Ssam			break;
6040105197Ssam	}
6041120585Ssam	SAHTREE_UNLOCK();
6042105197Ssam	if (sah != NULL) {
6043120585Ssam		ipseclog((LOG_DEBUG, "%s: a SA exists already.\n", __func__));
6044105197Ssam		return key_senderror(so, m, EEXIST);
6045105197Ssam	}
6046105197Ssam
6047105197Ssam	error = key_acquire(&saidx, NULL);
6048105197Ssam	if (error != 0) {
6049120585Ssam		ipseclog((LOG_DEBUG, "%s: error %d returned from key_acquire\n",
6050120585Ssam			__func__, mhp->msg->sadb_msg_errno));
6051105197Ssam		return key_senderror(so, m, error);
6052105197Ssam	}
6053105197Ssam
6054105197Ssam	return key_sendup_mbuf(so, m, KEY_SENDUP_REGISTERED);
6055105197Ssam}
6056105197Ssam
6057105197Ssam/*
6058105197Ssam * SADB_REGISTER processing.
6059105197Ssam * If SATYPE_UNSPEC has been passed as satype, only return sabd_supported.
6060105197Ssam * receive
6061105197Ssam *   <base>
6062105197Ssam * from the ikmpd, and register a socket to send PF_KEY messages,
6063105197Ssam * and send
6064105197Ssam *   <base, supported>
6065105197Ssam * to KMD by PF_KEY.
6066105197Ssam * If socket is detached, must free from regnode.
6067105197Ssam *
6068105197Ssam * m will always be freed.
6069105197Ssam */
6070105197Ssamstatic int
6071105197Ssamkey_register(so, m, mhp)
6072105197Ssam	struct socket *so;
6073105197Ssam	struct mbuf *m;
6074105197Ssam	const struct sadb_msghdr *mhp;
6075105197Ssam{
6076105197Ssam	struct secreg *reg, *newreg = 0;
6077105197Ssam
6078120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
6079120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
6080120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
6081120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
6082105197Ssam
6083105197Ssam	/* check for invalid register message */
6084105197Ssam	if (mhp->msg->sadb_msg_satype >= sizeof(regtree)/sizeof(regtree[0]))
6085105197Ssam		return key_senderror(so, m, EINVAL);
6086105197Ssam
6087105197Ssam	/* When SATYPE_UNSPEC is specified, only return sabd_supported. */
6088105197Ssam	if (mhp->msg->sadb_msg_satype == SADB_SATYPE_UNSPEC)
6089105197Ssam		goto setmsg;
6090105197Ssam
6091105197Ssam	/* check whether existing or not */
6092120585Ssam	REGTREE_LOCK();
6093105197Ssam	LIST_FOREACH(reg, &regtree[mhp->msg->sadb_msg_satype], chain) {
6094105197Ssam		if (reg->so == so) {
6095120585Ssam			REGTREE_UNLOCK();
6096120585Ssam			ipseclog((LOG_DEBUG, "%s: socket exists already.\n",
6097120585Ssam				__func__));
6098105197Ssam			return key_senderror(so, m, EEXIST);
6099105197Ssam		}
6100105197Ssam	}
6101105197Ssam
6102105197Ssam	/* create regnode */
6103119643Ssam	newreg =  malloc(sizeof(struct secreg), M_IPSEC_SAR, M_NOWAIT|M_ZERO);
6104105197Ssam	if (newreg == NULL) {
6105120585Ssam		REGTREE_UNLOCK();
6106120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
6107105197Ssam		return key_senderror(so, m, ENOBUFS);
6108105197Ssam	}
6109105197Ssam
6110105197Ssam	newreg->so = so;
6111105197Ssam	((struct keycb *)sotorawcb(so))->kp_registered++;
6112105197Ssam
6113105197Ssam	/* add regnode to regtree. */
6114105197Ssam	LIST_INSERT_HEAD(&regtree[mhp->msg->sadb_msg_satype], newreg, chain);
6115120585Ssam	REGTREE_UNLOCK();
6116105197Ssam
6117105197Ssam  setmsg:
6118105197Ssam    {
6119105197Ssam	struct mbuf *n;
6120105197Ssam	struct sadb_msg *newmsg;
6121105197Ssam	struct sadb_supported *sup;
6122105197Ssam	u_int len, alen, elen;
6123105197Ssam	int off;
6124105197Ssam	int i;
6125105197Ssam	struct sadb_alg *alg;
6126105197Ssam
6127105197Ssam	/* create new sadb_msg to reply. */
6128105197Ssam	alen = 0;
6129105197Ssam	for (i = 1; i <= SADB_AALG_MAX; i++) {
6130105197Ssam		if (ah_algorithm_lookup(i))
6131105197Ssam			alen += sizeof(struct sadb_alg);
6132105197Ssam	}
6133105197Ssam	if (alen)
6134105197Ssam		alen += sizeof(struct sadb_supported);
6135105197Ssam	elen = 0;
6136105197Ssam	for (i = 1; i <= SADB_EALG_MAX; i++) {
6137105197Ssam		if (esp_algorithm_lookup(i))
6138105197Ssam			elen += sizeof(struct sadb_alg);
6139105197Ssam	}
6140105197Ssam	if (elen)
6141105197Ssam		elen += sizeof(struct sadb_supported);
6142105197Ssam
6143105197Ssam	len = sizeof(struct sadb_msg) + alen + elen;
6144105197Ssam
6145105197Ssam	if (len > MCLBYTES)
6146105197Ssam		return key_senderror(so, m, ENOBUFS);
6147105197Ssam
6148111119Simp	MGETHDR(n, M_DONTWAIT, MT_DATA);
6149105197Ssam	if (len > MHLEN) {
6150111119Simp		MCLGET(n, M_DONTWAIT);
6151105197Ssam		if ((n->m_flags & M_EXT) == 0) {
6152105197Ssam			m_freem(n);
6153105197Ssam			n = NULL;
6154105197Ssam		}
6155105197Ssam	}
6156105197Ssam	if (!n)
6157105197Ssam		return key_senderror(so, m, ENOBUFS);
6158105197Ssam
6159105197Ssam	n->m_pkthdr.len = n->m_len = len;
6160105197Ssam	n->m_next = NULL;
6161105197Ssam	off = 0;
6162105197Ssam
6163105197Ssam	m_copydata(m, 0, sizeof(struct sadb_msg), mtod(n, caddr_t) + off);
6164105197Ssam	newmsg = mtod(n, struct sadb_msg *);
6165105197Ssam	newmsg->sadb_msg_errno = 0;
6166105197Ssam	newmsg->sadb_msg_len = PFKEY_UNIT64(len);
6167105197Ssam	off += PFKEY_ALIGN8(sizeof(struct sadb_msg));
6168105197Ssam
6169105197Ssam	/* for authentication algorithm */
6170105197Ssam	if (alen) {
6171105197Ssam		sup = (struct sadb_supported *)(mtod(n, caddr_t) + off);
6172105197Ssam		sup->sadb_supported_len = PFKEY_UNIT64(alen);
6173105197Ssam		sup->sadb_supported_exttype = SADB_EXT_SUPPORTED_AUTH;
6174105197Ssam		off += PFKEY_ALIGN8(sizeof(*sup));
6175105197Ssam
6176105197Ssam		for (i = 1; i <= SADB_AALG_MAX; i++) {
6177105197Ssam			struct auth_hash *aalgo;
6178105197Ssam			u_int16_t minkeysize, maxkeysize;
6179105197Ssam
6180105197Ssam			aalgo = ah_algorithm_lookup(i);
6181105197Ssam			if (!aalgo)
6182105197Ssam				continue;
6183105197Ssam			alg = (struct sadb_alg *)(mtod(n, caddr_t) + off);
6184105197Ssam			alg->sadb_alg_id = i;
6185105197Ssam			alg->sadb_alg_ivlen = 0;
6186105197Ssam			key_getsizes_ah(aalgo, i, &minkeysize, &maxkeysize);
6187105197Ssam			alg->sadb_alg_minbits = _BITS(minkeysize);
6188105197Ssam			alg->sadb_alg_maxbits = _BITS(maxkeysize);
6189105197Ssam			off += PFKEY_ALIGN8(sizeof(*alg));
6190105197Ssam		}
6191105197Ssam	}
6192105197Ssam
6193105197Ssam	/* for encryption algorithm */
6194105197Ssam	if (elen) {
6195105197Ssam		sup = (struct sadb_supported *)(mtod(n, caddr_t) + off);
6196105197Ssam		sup->sadb_supported_len = PFKEY_UNIT64(elen);
6197105197Ssam		sup->sadb_supported_exttype = SADB_EXT_SUPPORTED_ENCRYPT;
6198105197Ssam		off += PFKEY_ALIGN8(sizeof(*sup));
6199105197Ssam
6200105197Ssam		for (i = 1; i <= SADB_EALG_MAX; i++) {
6201105197Ssam			struct enc_xform *ealgo;
6202105197Ssam
6203105197Ssam			ealgo = esp_algorithm_lookup(i);
6204105197Ssam			if (!ealgo)
6205105197Ssam				continue;
6206105197Ssam			alg = (struct sadb_alg *)(mtod(n, caddr_t) + off);
6207105197Ssam			alg->sadb_alg_id = i;
6208105197Ssam			alg->sadb_alg_ivlen = ealgo->blocksize;
6209105197Ssam			alg->sadb_alg_minbits = _BITS(ealgo->minkey);
6210105197Ssam			alg->sadb_alg_maxbits = _BITS(ealgo->maxkey);
6211105197Ssam			off += PFKEY_ALIGN8(sizeof(struct sadb_alg));
6212105197Ssam		}
6213105197Ssam	}
6214105197Ssam
6215120585Ssam	IPSEC_ASSERT(off == len,
6216120585Ssam		("length assumption failed (off %u len %u)", off, len));
6217105197Ssam
6218105197Ssam	m_freem(m);
6219105197Ssam	return key_sendup_mbuf(so, n, KEY_SENDUP_REGISTERED);
6220105197Ssam    }
6221105197Ssam}
6222105197Ssam
6223105197Ssam/*
6224105197Ssam * free secreg entry registered.
6225105197Ssam * XXX: I want to do free a socket marked done SADB_RESIGER to socket.
6226105197Ssam */
6227105197Ssamvoid
6228119643Ssamkey_freereg(struct socket *so)
6229105197Ssam{
6230105197Ssam	struct secreg *reg;
6231105197Ssam	int i;
6232105197Ssam
6233120585Ssam	IPSEC_ASSERT(so != NULL, ("NULL so"));
6234105197Ssam
6235105197Ssam	/*
6236105197Ssam	 * check whether existing or not.
6237105197Ssam	 * check all type of SA, because there is a potential that
6238105197Ssam	 * one socket is registered to multiple type of SA.
6239105197Ssam	 */
6240120585Ssam	REGTREE_LOCK();
6241105197Ssam	for (i = 0; i <= SADB_SATYPE_MAX; i++) {
6242105197Ssam		LIST_FOREACH(reg, &regtree[i], chain) {
6243119643Ssam			if (reg->so == so && __LIST_CHAINED(reg)) {
6244105197Ssam				LIST_REMOVE(reg, chain);
6245119643Ssam				free(reg, M_IPSEC_SAR);
6246105197Ssam				break;
6247105197Ssam			}
6248105197Ssam		}
6249105197Ssam	}
6250120585Ssam	REGTREE_UNLOCK();
6251105197Ssam}
6252105197Ssam
6253105197Ssam/*
6254105197Ssam * SADB_EXPIRE processing
6255105197Ssam * send
6256105197Ssam *   <base, SA, SA2, lifetime(C and one of HS), address(SD)>
6257105197Ssam * to KMD by PF_KEY.
6258105197Ssam * NOTE: We send only soft lifetime extension.
6259105197Ssam *
6260105197Ssam * OUT:	0	: succeed
6261105197Ssam *	others	: error number
6262105197Ssam */
6263105197Ssamstatic int
6264119643Ssamkey_expire(struct secasvar *sav)
6265105197Ssam{
6266105197Ssam	int s;
6267105197Ssam	int satype;
6268105197Ssam	struct mbuf *result = NULL, *m;
6269105197Ssam	int len;
6270105197Ssam	int error = -1;
6271105197Ssam	struct sadb_lifetime *lt;
6272105197Ssam
6273105197Ssam	/* XXX: Why do we lock ? */
6274105197Ssam	s = splnet();	/*called from softclock()*/
6275105197Ssam
6276120585Ssam	IPSEC_ASSERT (sav != NULL, ("null sav"));
6277120585Ssam	IPSEC_ASSERT (sav->sah != NULL, ("null sa header"));
6278105197Ssam
6279105197Ssam	/* set msg header */
6280120585Ssam	satype = key_proto2satype(sav->sah->saidx.proto);
6281120585Ssam	IPSEC_ASSERT(satype != 0, ("invalid proto, satype %u", satype));
6282105197Ssam	m = key_setsadbmsg(SADB_EXPIRE, 0, satype, sav->seq, 0, sav->refcnt);
6283105197Ssam	if (!m) {
6284105197Ssam		error = ENOBUFS;
6285105197Ssam		goto fail;
6286105197Ssam	}
6287105197Ssam	result = m;
6288105197Ssam
6289105197Ssam	/* create SA extension */
6290105197Ssam	m = key_setsadbsa(sav);
6291105197Ssam	if (!m) {
6292105197Ssam		error = ENOBUFS;
6293105197Ssam		goto fail;
6294105197Ssam	}
6295105197Ssam	m_cat(result, m);
6296105197Ssam
6297105197Ssam	/* create SA extension */
6298105197Ssam	m = key_setsadbxsa2(sav->sah->saidx.mode,
6299105197Ssam			sav->replay ? sav->replay->count : 0,
6300105197Ssam			sav->sah->saidx.reqid);
6301105197Ssam	if (!m) {
6302105197Ssam		error = ENOBUFS;
6303105197Ssam		goto fail;
6304105197Ssam	}
6305105197Ssam	m_cat(result, m);
6306105197Ssam
6307105197Ssam	/* create lifetime extension (current and soft) */
6308105197Ssam	len = PFKEY_ALIGN8(sizeof(*lt)) * 2;
6309105197Ssam	m = key_alloc_mbuf(len);
6310105197Ssam	if (!m || m->m_next) {	/*XXX*/
6311105197Ssam		if (m)
6312105197Ssam			m_freem(m);
6313105197Ssam		error = ENOBUFS;
6314105197Ssam		goto fail;
6315105197Ssam	}
6316105197Ssam	bzero(mtod(m, caddr_t), len);
6317105197Ssam	lt = mtod(m, struct sadb_lifetime *);
6318105197Ssam	lt->sadb_lifetime_len = PFKEY_UNIT64(sizeof(struct sadb_lifetime));
6319105197Ssam	lt->sadb_lifetime_exttype = SADB_EXT_LIFETIME_CURRENT;
6320157123Sgnn	lt->sadb_lifetime_allocations = sav->lft_c->allocations;
6321157123Sgnn	lt->sadb_lifetime_bytes = sav->lft_c->bytes;
6322157123Sgnn	lt->sadb_lifetime_addtime = sav->lft_c->addtime;
6323157123Sgnn	lt->sadb_lifetime_usetime = sav->lft_c->usetime;
6324105197Ssam	lt = (struct sadb_lifetime *)(mtod(m, caddr_t) + len / 2);
6325105197Ssam	bcopy(sav->lft_s, lt, sizeof(*lt));
6326105197Ssam	m_cat(result, m);
6327105197Ssam
6328105197Ssam	/* set sadb_address for source */
6329105197Ssam	m = key_setsadbaddr(SADB_EXT_ADDRESS_SRC,
6330105197Ssam	    &sav->sah->saidx.src.sa,
6331105197Ssam	    FULLMASK, IPSEC_ULPROTO_ANY);
6332105197Ssam	if (!m) {
6333105197Ssam		error = ENOBUFS;
6334105197Ssam		goto fail;
6335105197Ssam	}
6336105197Ssam	m_cat(result, m);
6337105197Ssam
6338105197Ssam	/* set sadb_address for destination */
6339105197Ssam	m = key_setsadbaddr(SADB_EXT_ADDRESS_DST,
6340105197Ssam	    &sav->sah->saidx.dst.sa,
6341105197Ssam	    FULLMASK, IPSEC_ULPROTO_ANY);
6342105197Ssam	if (!m) {
6343105197Ssam		error = ENOBUFS;
6344105197Ssam		goto fail;
6345105197Ssam	}
6346105197Ssam	m_cat(result, m);
6347105197Ssam
6348105197Ssam	if ((result->m_flags & M_PKTHDR) == 0) {
6349105197Ssam		error = EINVAL;
6350105197Ssam		goto fail;
6351105197Ssam	}
6352105197Ssam
6353105197Ssam	if (result->m_len < sizeof(struct sadb_msg)) {
6354105197Ssam		result = m_pullup(result, sizeof(struct sadb_msg));
6355105197Ssam		if (result == NULL) {
6356105197Ssam			error = ENOBUFS;
6357105197Ssam			goto fail;
6358105197Ssam		}
6359105197Ssam	}
6360105197Ssam
6361105197Ssam	result->m_pkthdr.len = 0;
6362105197Ssam	for (m = result; m; m = m->m_next)
6363105197Ssam		result->m_pkthdr.len += m->m_len;
6364105197Ssam
6365105197Ssam	mtod(result, struct sadb_msg *)->sadb_msg_len =
6366105197Ssam	    PFKEY_UNIT64(result->m_pkthdr.len);
6367105197Ssam
6368105197Ssam	splx(s);
6369105197Ssam	return key_sendup_mbuf(NULL, result, KEY_SENDUP_REGISTERED);
6370105197Ssam
6371105197Ssam fail:
6372105197Ssam	if (result)
6373105197Ssam		m_freem(result);
6374105197Ssam	splx(s);
6375105197Ssam	return error;
6376105197Ssam}
6377105197Ssam
6378105197Ssam/*
6379105197Ssam * SADB_FLUSH processing
6380105197Ssam * receive
6381105197Ssam *   <base>
6382105197Ssam * from the ikmpd, and free all entries in secastree.
6383105197Ssam * and send,
6384105197Ssam *   <base>
6385105197Ssam * to the ikmpd.
6386105197Ssam * NOTE: to do is only marking SADB_SASTATE_DEAD.
6387105197Ssam *
6388105197Ssam * m will always be freed.
6389105197Ssam */
6390105197Ssamstatic int
6391105197Ssamkey_flush(so, m, mhp)
6392105197Ssam	struct socket *so;
6393105197Ssam	struct mbuf *m;
6394105197Ssam	const struct sadb_msghdr *mhp;
6395105197Ssam{
6396105197Ssam	struct sadb_msg *newmsg;
6397105197Ssam	struct secashead *sah, *nextsah;
6398105197Ssam	struct secasvar *sav, *nextsav;
6399105197Ssam	u_int16_t proto;
6400105197Ssam	u_int8_t state;
6401105197Ssam	u_int stateidx;
6402105197Ssam
6403120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
6404120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
6405120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
6406105197Ssam
6407105197Ssam	/* map satype to proto */
6408105197Ssam	if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
6409120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid satype is passed.\n",
6410120585Ssam			__func__));
6411105197Ssam		return key_senderror(so, m, EINVAL);
6412105197Ssam	}
6413105197Ssam
6414105197Ssam	/* no SATYPE specified, i.e. flushing all SA. */
6415120585Ssam	SAHTREE_LOCK();
6416105197Ssam	for (sah = LIST_FIRST(&sahtree);
6417105197Ssam	     sah != NULL;
6418105197Ssam	     sah = nextsah) {
6419105197Ssam		nextsah = LIST_NEXT(sah, chain);
6420105197Ssam
6421105197Ssam		if (mhp->msg->sadb_msg_satype != SADB_SATYPE_UNSPEC
6422105197Ssam		 && proto != sah->saidx.proto)
6423105197Ssam			continue;
6424105197Ssam
6425105197Ssam		for (stateidx = 0;
6426105197Ssam		     stateidx < _ARRAYLEN(saorder_state_alive);
6427105197Ssam		     stateidx++) {
6428105197Ssam			state = saorder_state_any[stateidx];
6429105197Ssam			for (sav = LIST_FIRST(&sah->savtree[state]);
6430105197Ssam			     sav != NULL;
6431105197Ssam			     sav = nextsav) {
6432105197Ssam
6433105197Ssam				nextsav = LIST_NEXT(sav, chain);
6434105197Ssam
6435105197Ssam				key_sa_chgstate(sav, SADB_SASTATE_DEAD);
6436105197Ssam				KEY_FREESAV(&sav);
6437105197Ssam			}
6438105197Ssam		}
6439105197Ssam
6440105197Ssam		sah->state = SADB_SASTATE_DEAD;
6441105197Ssam	}
6442120585Ssam	SAHTREE_UNLOCK();
6443105197Ssam
6444105197Ssam	if (m->m_len < sizeof(struct sadb_msg) ||
6445105197Ssam	    sizeof(struct sadb_msg) > m->m_len + M_TRAILINGSPACE(m)) {
6446120585Ssam		ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
6447105197Ssam		return key_senderror(so, m, ENOBUFS);
6448105197Ssam	}
6449105197Ssam
6450105197Ssam	if (m->m_next)
6451105197Ssam		m_freem(m->m_next);
6452105197Ssam	m->m_next = NULL;
6453105197Ssam	m->m_pkthdr.len = m->m_len = sizeof(struct sadb_msg);
6454105197Ssam	newmsg = mtod(m, struct sadb_msg *);
6455105197Ssam	newmsg->sadb_msg_errno = 0;
6456105197Ssam	newmsg->sadb_msg_len = PFKEY_UNIT64(m->m_pkthdr.len);
6457105197Ssam
6458105197Ssam	return key_sendup_mbuf(so, m, KEY_SENDUP_ALL);
6459105197Ssam}
6460105197Ssam
6461105197Ssam/*
6462105197Ssam * SADB_DUMP processing
6463105197Ssam * dump all entries including status of DEAD in SAD.
6464105197Ssam * receive
6465105197Ssam *   <base>
6466105197Ssam * from the ikmpd, and dump all secasvar leaves
6467105197Ssam * and send,
6468105197Ssam *   <base> .....
6469105197Ssam * to the ikmpd.
6470105197Ssam *
6471105197Ssam * m will always be freed.
6472105197Ssam */
6473105197Ssamstatic int
6474105197Ssamkey_dump(so, m, mhp)
6475105197Ssam	struct socket *so;
6476105197Ssam	struct mbuf *m;
6477105197Ssam	const struct sadb_msghdr *mhp;
6478105197Ssam{
6479105197Ssam	struct secashead *sah;
6480105197Ssam	struct secasvar *sav;
6481105197Ssam	u_int16_t proto;
6482105197Ssam	u_int stateidx;
6483105197Ssam	u_int8_t satype;
6484105197Ssam	u_int8_t state;
6485105197Ssam	int cnt;
6486105197Ssam	struct sadb_msg *newmsg;
6487105197Ssam	struct mbuf *n;
6488105197Ssam
6489120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
6490120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
6491120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
6492120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
6493105197Ssam
6494105197Ssam	/* map satype to proto */
6495105197Ssam	if ((proto = key_satype2proto(mhp->msg->sadb_msg_satype)) == 0) {
6496120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid satype is passed.\n",
6497120585Ssam			__func__));
6498105197Ssam		return key_senderror(so, m, EINVAL);
6499105197Ssam	}
6500105197Ssam
6501105197Ssam	/* count sav entries to be sent to the userland. */
6502105197Ssam	cnt = 0;
6503120585Ssam	SAHTREE_LOCK();
6504105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
6505105197Ssam		if (mhp->msg->sadb_msg_satype != SADB_SATYPE_UNSPEC
6506105197Ssam		 && proto != sah->saidx.proto)
6507105197Ssam			continue;
6508105197Ssam
6509105197Ssam		for (stateidx = 0;
6510105197Ssam		     stateidx < _ARRAYLEN(saorder_state_any);
6511105197Ssam		     stateidx++) {
6512105197Ssam			state = saorder_state_any[stateidx];
6513105197Ssam			LIST_FOREACH(sav, &sah->savtree[state], chain) {
6514105197Ssam				cnt++;
6515105197Ssam			}
6516105197Ssam		}
6517105197Ssam	}
6518105197Ssam
6519119643Ssam	if (cnt == 0) {
6520120585Ssam		SAHTREE_UNLOCK();
6521105197Ssam		return key_senderror(so, m, ENOENT);
6522119643Ssam	}
6523105197Ssam
6524105197Ssam	/* send this to the userland, one at a time. */
6525105197Ssam	newmsg = NULL;
6526105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
6527105197Ssam		if (mhp->msg->sadb_msg_satype != SADB_SATYPE_UNSPEC
6528105197Ssam		 && proto != sah->saidx.proto)
6529105197Ssam			continue;
6530105197Ssam
6531105197Ssam		/* map proto to satype */
6532105197Ssam		if ((satype = key_proto2satype(sah->saidx.proto)) == 0) {
6533120585Ssam			SAHTREE_UNLOCK();
6534120585Ssam			ipseclog((LOG_DEBUG, "%s: there was invalid proto in "
6535120585Ssam				"SAD.\n", __func__));
6536105197Ssam			return key_senderror(so, m, EINVAL);
6537105197Ssam		}
6538105197Ssam
6539105197Ssam		for (stateidx = 0;
6540105197Ssam		     stateidx < _ARRAYLEN(saorder_state_any);
6541105197Ssam		     stateidx++) {
6542105197Ssam			state = saorder_state_any[stateidx];
6543105197Ssam			LIST_FOREACH(sav, &sah->savtree[state], chain) {
6544105197Ssam				n = key_setdumpsa(sav, SADB_DUMP, satype,
6545105197Ssam				    --cnt, mhp->msg->sadb_msg_pid);
6546119643Ssam				if (!n) {
6547120585Ssam					SAHTREE_UNLOCK();
6548105197Ssam					return key_senderror(so, m, ENOBUFS);
6549119643Ssam				}
6550105197Ssam				key_sendup_mbuf(so, n, KEY_SENDUP_ONE);
6551105197Ssam			}
6552105197Ssam		}
6553105197Ssam	}
6554120585Ssam	SAHTREE_UNLOCK();
6555105197Ssam
6556105197Ssam	m_freem(m);
6557105197Ssam	return 0;
6558105197Ssam}
6559105197Ssam
6560105197Ssam/*
6561105197Ssam * SADB_X_PROMISC processing
6562105197Ssam *
6563105197Ssam * m will always be freed.
6564105197Ssam */
6565105197Ssamstatic int
6566105197Ssamkey_promisc(so, m, mhp)
6567105197Ssam	struct socket *so;
6568105197Ssam	struct mbuf *m;
6569105197Ssam	const struct sadb_msghdr *mhp;
6570105197Ssam{
6571105197Ssam	int olen;
6572105197Ssam
6573120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
6574120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
6575120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
6576120585Ssam	IPSEC_ASSERT(mhp->msg != NULL, ("null msg"));
6577105197Ssam
6578105197Ssam	olen = PFKEY_UNUNIT64(mhp->msg->sadb_msg_len);
6579105197Ssam
6580105197Ssam	if (olen < sizeof(struct sadb_msg)) {
6581105197Ssam#if 1
6582105197Ssam		return key_senderror(so, m, EINVAL);
6583105197Ssam#else
6584105197Ssam		m_freem(m);
6585105197Ssam		return 0;
6586105197Ssam#endif
6587105197Ssam	} else if (olen == sizeof(struct sadb_msg)) {
6588105197Ssam		/* enable/disable promisc mode */
6589105197Ssam		struct keycb *kp;
6590105197Ssam
6591105197Ssam		if ((kp = (struct keycb *)sotorawcb(so)) == NULL)
6592105197Ssam			return key_senderror(so, m, EINVAL);
6593105197Ssam		mhp->msg->sadb_msg_errno = 0;
6594105197Ssam		switch (mhp->msg->sadb_msg_satype) {
6595105197Ssam		case 0:
6596105197Ssam		case 1:
6597105197Ssam			kp->kp_promisc = mhp->msg->sadb_msg_satype;
6598105197Ssam			break;
6599105197Ssam		default:
6600105197Ssam			return key_senderror(so, m, EINVAL);
6601105197Ssam		}
6602105197Ssam
6603105197Ssam		/* send the original message back to everyone */
6604105197Ssam		mhp->msg->sadb_msg_errno = 0;
6605105197Ssam		return key_sendup_mbuf(so, m, KEY_SENDUP_ALL);
6606105197Ssam	} else {
6607105197Ssam		/* send packet as is */
6608105197Ssam
6609105197Ssam		m_adj(m, PFKEY_ALIGN8(sizeof(struct sadb_msg)));
6610105197Ssam
6611105197Ssam		/* TODO: if sadb_msg_seq is specified, send to specific pid */
6612105197Ssam		return key_sendup_mbuf(so, m, KEY_SENDUP_ALL);
6613105197Ssam	}
6614105197Ssam}
6615105197Ssam
6616105197Ssamstatic int (*key_typesw[]) __P((struct socket *, struct mbuf *,
6617105197Ssam		const struct sadb_msghdr *)) = {
6618105197Ssam	NULL,		/* SADB_RESERVED */
6619105197Ssam	key_getspi,	/* SADB_GETSPI */
6620105197Ssam	key_update,	/* SADB_UPDATE */
6621105197Ssam	key_add,	/* SADB_ADD */
6622105197Ssam	key_delete,	/* SADB_DELETE */
6623105197Ssam	key_get,	/* SADB_GET */
6624105197Ssam	key_acquire2,	/* SADB_ACQUIRE */
6625105197Ssam	key_register,	/* SADB_REGISTER */
6626105197Ssam	NULL,		/* SADB_EXPIRE */
6627105197Ssam	key_flush,	/* SADB_FLUSH */
6628105197Ssam	key_dump,	/* SADB_DUMP */
6629105197Ssam	key_promisc,	/* SADB_X_PROMISC */
6630105197Ssam	NULL,		/* SADB_X_PCHANGE */
6631105197Ssam	key_spdadd,	/* SADB_X_SPDUPDATE */
6632105197Ssam	key_spdadd,	/* SADB_X_SPDADD */
6633105197Ssam	key_spddelete,	/* SADB_X_SPDDELETE */
6634105197Ssam	key_spdget,	/* SADB_X_SPDGET */
6635105197Ssam	NULL,		/* SADB_X_SPDACQUIRE */
6636105197Ssam	key_spddump,	/* SADB_X_SPDDUMP */
6637105197Ssam	key_spdflush,	/* SADB_X_SPDFLUSH */
6638105197Ssam	key_spdadd,	/* SADB_X_SPDSETIDX */
6639105197Ssam	NULL,		/* SADB_X_SPDEXPIRE */
6640105197Ssam	key_spddelete2,	/* SADB_X_SPDDELETE2 */
6641105197Ssam};
6642105197Ssam
6643105197Ssam/*
6644105197Ssam * parse sadb_msg buffer to process PFKEYv2,
6645105197Ssam * and create a data to response if needed.
6646105197Ssam * I think to be dealed with mbuf directly.
6647105197Ssam * IN:
6648105197Ssam *     msgp  : pointer to pointer to a received buffer pulluped.
6649105197Ssam *             This is rewrited to response.
6650105197Ssam *     so    : pointer to socket.
6651105197Ssam * OUT:
6652105197Ssam *    length for buffer to send to user process.
6653105197Ssam */
6654105197Ssamint
6655105197Ssamkey_parse(m, so)
6656105197Ssam	struct mbuf *m;
6657105197Ssam	struct socket *so;
6658105197Ssam{
6659105197Ssam	struct sadb_msg *msg;
6660105197Ssam	struct sadb_msghdr mh;
6661105197Ssam	u_int orglen;
6662105197Ssam	int error;
6663105197Ssam	int target;
6664105197Ssam
6665120585Ssam	IPSEC_ASSERT(so != NULL, ("null socket"));
6666120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
6667105197Ssam
6668105197Ssam#if 0	/*kdebug_sadb assumes msg in linear buffer*/
6669105197Ssam	KEYDEBUG(KEYDEBUG_KEY_DUMP,
6670120585Ssam		ipseclog((LOG_DEBUG, "%s: passed sadb_msg\n", __func__));
6671105197Ssam		kdebug_sadb(msg));
6672105197Ssam#endif
6673105197Ssam
6674105197Ssam	if (m->m_len < sizeof(struct sadb_msg)) {
6675105197Ssam		m = m_pullup(m, sizeof(struct sadb_msg));
6676105197Ssam		if (!m)
6677105197Ssam			return ENOBUFS;
6678105197Ssam	}
6679105197Ssam	msg = mtod(m, struct sadb_msg *);
6680105197Ssam	orglen = PFKEY_UNUNIT64(msg->sadb_msg_len);
6681105197Ssam	target = KEY_SENDUP_ONE;
6682105197Ssam
6683105197Ssam	if ((m->m_flags & M_PKTHDR) == 0 ||
6684105197Ssam	    m->m_pkthdr.len != m->m_pkthdr.len) {
6685120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid message length.\n",__func__));
6686105197Ssam		pfkeystat.out_invlen++;
6687105197Ssam		error = EINVAL;
6688105197Ssam		goto senderror;
6689105197Ssam	}
6690105197Ssam
6691105197Ssam	if (msg->sadb_msg_version != PF_KEY_V2) {
6692120585Ssam		ipseclog((LOG_DEBUG, "%s: PF_KEY version %u is mismatched.\n",
6693120585Ssam		    __func__, msg->sadb_msg_version));
6694105197Ssam		pfkeystat.out_invver++;
6695105197Ssam		error = EINVAL;
6696105197Ssam		goto senderror;
6697105197Ssam	}
6698105197Ssam
6699105197Ssam	if (msg->sadb_msg_type > SADB_MAX) {
6700120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid type %u is passed.\n",
6701120585Ssam		    __func__, msg->sadb_msg_type));
6702105197Ssam		pfkeystat.out_invmsgtype++;
6703105197Ssam		error = EINVAL;
6704105197Ssam		goto senderror;
6705105197Ssam	}
6706105197Ssam
6707105197Ssam	/* for old-fashioned code - should be nuked */
6708105197Ssam	if (m->m_pkthdr.len > MCLBYTES) {
6709105197Ssam		m_freem(m);
6710105197Ssam		return ENOBUFS;
6711105197Ssam	}
6712105197Ssam	if (m->m_next) {
6713105197Ssam		struct mbuf *n;
6714105197Ssam
6715111119Simp		MGETHDR(n, M_DONTWAIT, MT_DATA);
6716105197Ssam		if (n && m->m_pkthdr.len > MHLEN) {
6717111119Simp			MCLGET(n, M_DONTWAIT);
6718105197Ssam			if ((n->m_flags & M_EXT) == 0) {
6719105197Ssam				m_free(n);
6720105197Ssam				n = NULL;
6721105197Ssam			}
6722105197Ssam		}
6723105197Ssam		if (!n) {
6724105197Ssam			m_freem(m);
6725105197Ssam			return ENOBUFS;
6726105197Ssam		}
6727105197Ssam		m_copydata(m, 0, m->m_pkthdr.len, mtod(n, caddr_t));
6728105197Ssam		n->m_pkthdr.len = n->m_len = m->m_pkthdr.len;
6729105197Ssam		n->m_next = NULL;
6730105197Ssam		m_freem(m);
6731105197Ssam		m = n;
6732105197Ssam	}
6733105197Ssam
6734105197Ssam	/* align the mbuf chain so that extensions are in contiguous region. */
6735105197Ssam	error = key_align(m, &mh);
6736105197Ssam	if (error)
6737105197Ssam		return error;
6738105197Ssam
6739105197Ssam	msg = mh.msg;
6740105197Ssam
6741105197Ssam	/* check SA type */
6742105197Ssam	switch (msg->sadb_msg_satype) {
6743105197Ssam	case SADB_SATYPE_UNSPEC:
6744105197Ssam		switch (msg->sadb_msg_type) {
6745105197Ssam		case SADB_GETSPI:
6746105197Ssam		case SADB_UPDATE:
6747105197Ssam		case SADB_ADD:
6748105197Ssam		case SADB_DELETE:
6749105197Ssam		case SADB_GET:
6750105197Ssam		case SADB_ACQUIRE:
6751105197Ssam		case SADB_EXPIRE:
6752120585Ssam			ipseclog((LOG_DEBUG, "%s: must specify satype "
6753120585Ssam			    "when msg type=%u.\n", __func__,
6754120585Ssam			    msg->sadb_msg_type));
6755105197Ssam			pfkeystat.out_invsatype++;
6756105197Ssam			error = EINVAL;
6757105197Ssam			goto senderror;
6758105197Ssam		}
6759105197Ssam		break;
6760105197Ssam	case SADB_SATYPE_AH:
6761105197Ssam	case SADB_SATYPE_ESP:
6762105197Ssam	case SADB_X_SATYPE_IPCOMP:
6763125680Sbms	case SADB_X_SATYPE_TCPSIGNATURE:
6764105197Ssam		switch (msg->sadb_msg_type) {
6765105197Ssam		case SADB_X_SPDADD:
6766105197Ssam		case SADB_X_SPDDELETE:
6767105197Ssam		case SADB_X_SPDGET:
6768105197Ssam		case SADB_X_SPDDUMP:
6769105197Ssam		case SADB_X_SPDFLUSH:
6770105197Ssam		case SADB_X_SPDSETIDX:
6771105197Ssam		case SADB_X_SPDUPDATE:
6772105197Ssam		case SADB_X_SPDDELETE2:
6773120585Ssam			ipseclog((LOG_DEBUG, "%s: illegal satype=%u\n",
6774120585Ssam				__func__, msg->sadb_msg_type));
6775105197Ssam			pfkeystat.out_invsatype++;
6776105197Ssam			error = EINVAL;
6777105197Ssam			goto senderror;
6778105197Ssam		}
6779105197Ssam		break;
6780105197Ssam	case SADB_SATYPE_RSVP:
6781105197Ssam	case SADB_SATYPE_OSPFV2:
6782105197Ssam	case SADB_SATYPE_RIPV2:
6783105197Ssam	case SADB_SATYPE_MIP:
6784120585Ssam		ipseclog((LOG_DEBUG, "%s: type %u isn't supported.\n",
6785120585Ssam			__func__, msg->sadb_msg_satype));
6786105197Ssam		pfkeystat.out_invsatype++;
6787105197Ssam		error = EOPNOTSUPP;
6788105197Ssam		goto senderror;
6789105197Ssam	case 1:	/* XXX: What does it do? */
6790105197Ssam		if (msg->sadb_msg_type == SADB_X_PROMISC)
6791105197Ssam			break;
6792105197Ssam		/*FALLTHROUGH*/
6793105197Ssam	default:
6794120585Ssam		ipseclog((LOG_DEBUG, "%s: invalid type %u is passed.\n",
6795120585Ssam			__func__, msg->sadb_msg_satype));
6796105197Ssam		pfkeystat.out_invsatype++;
6797105197Ssam		error = EINVAL;
6798105197Ssam		goto senderror;
6799105197Ssam	}
6800105197Ssam
6801105197Ssam	/* check field of upper layer protocol and address family */
6802105197Ssam	if (mh.ext[SADB_EXT_ADDRESS_SRC] != NULL
6803105197Ssam	 && mh.ext[SADB_EXT_ADDRESS_DST] != NULL) {
6804105197Ssam		struct sadb_address *src0, *dst0;
6805105197Ssam		u_int plen;
6806105197Ssam
6807105197Ssam		src0 = (struct sadb_address *)(mh.ext[SADB_EXT_ADDRESS_SRC]);
6808105197Ssam		dst0 = (struct sadb_address *)(mh.ext[SADB_EXT_ADDRESS_DST]);
6809105197Ssam
6810105197Ssam		/* check upper layer protocol */
6811105197Ssam		if (src0->sadb_address_proto != dst0->sadb_address_proto) {
6812120585Ssam			ipseclog((LOG_DEBUG, "%s: upper layer protocol "
6813120585Ssam				"mismatched.\n", __func__));
6814105197Ssam			pfkeystat.out_invaddr++;
6815105197Ssam			error = EINVAL;
6816105197Ssam			goto senderror;
6817105197Ssam		}
6818105197Ssam
6819105197Ssam		/* check family */
6820105197Ssam		if (PFKEY_ADDR_SADDR(src0)->sa_family !=
6821105197Ssam		    PFKEY_ADDR_SADDR(dst0)->sa_family) {
6822120585Ssam			ipseclog((LOG_DEBUG, "%s: address family mismatched.\n",
6823120585Ssam				__func__));
6824105197Ssam			pfkeystat.out_invaddr++;
6825105197Ssam			error = EINVAL;
6826105197Ssam			goto senderror;
6827105197Ssam		}
6828105197Ssam		if (PFKEY_ADDR_SADDR(src0)->sa_len !=
6829105197Ssam		    PFKEY_ADDR_SADDR(dst0)->sa_len) {
6830120585Ssam			ipseclog((LOG_DEBUG, "%s: address struct size "
6831120585Ssam				"mismatched.\n", __func__));
6832105197Ssam			pfkeystat.out_invaddr++;
6833105197Ssam			error = EINVAL;
6834105197Ssam			goto senderror;
6835105197Ssam		}
6836105197Ssam
6837105197Ssam		switch (PFKEY_ADDR_SADDR(src0)->sa_family) {
6838105197Ssam		case AF_INET:
6839105197Ssam			if (PFKEY_ADDR_SADDR(src0)->sa_len !=
6840105197Ssam			    sizeof(struct sockaddr_in)) {
6841105197Ssam				pfkeystat.out_invaddr++;
6842105197Ssam				error = EINVAL;
6843105197Ssam				goto senderror;
6844105197Ssam			}
6845105197Ssam			break;
6846105197Ssam		case AF_INET6:
6847105197Ssam			if (PFKEY_ADDR_SADDR(src0)->sa_len !=
6848105197Ssam			    sizeof(struct sockaddr_in6)) {
6849105197Ssam				pfkeystat.out_invaddr++;
6850105197Ssam				error = EINVAL;
6851105197Ssam				goto senderror;
6852105197Ssam			}
6853105197Ssam			break;
6854105197Ssam		default:
6855120585Ssam			ipseclog((LOG_DEBUG, "%s: unsupported address family\n",
6856120585Ssam				__func__));
6857105197Ssam			pfkeystat.out_invaddr++;
6858105197Ssam			error = EAFNOSUPPORT;
6859105197Ssam			goto senderror;
6860105197Ssam		}
6861105197Ssam
6862105197Ssam		switch (PFKEY_ADDR_SADDR(src0)->sa_family) {
6863105197Ssam		case AF_INET:
6864105197Ssam			plen = sizeof(struct in_addr) << 3;
6865105197Ssam			break;
6866105197Ssam		case AF_INET6:
6867105197Ssam			plen = sizeof(struct in6_addr) << 3;
6868105197Ssam			break;
6869105197Ssam		default:
6870105197Ssam			plen = 0;	/*fool gcc*/
6871105197Ssam			break;
6872105197Ssam		}
6873105197Ssam
6874105197Ssam		/* check max prefix length */
6875105197Ssam		if (src0->sadb_address_prefixlen > plen ||
6876105197Ssam		    dst0->sadb_address_prefixlen > plen) {
6877120585Ssam			ipseclog((LOG_DEBUG, "%s: illegal prefixlen.\n",
6878120585Ssam				__func__));
6879105197Ssam			pfkeystat.out_invaddr++;
6880105197Ssam			error = EINVAL;
6881105197Ssam			goto senderror;
6882105197Ssam		}
6883105197Ssam
6884105197Ssam		/*
6885105197Ssam		 * prefixlen == 0 is valid because there can be a case when
6886105197Ssam		 * all addresses are matched.
6887105197Ssam		 */
6888105197Ssam	}
6889105197Ssam
6890105197Ssam	if (msg->sadb_msg_type >= sizeof(key_typesw)/sizeof(key_typesw[0]) ||
6891105197Ssam	    key_typesw[msg->sadb_msg_type] == NULL) {
6892105197Ssam		pfkeystat.out_invmsgtype++;
6893105197Ssam		error = EINVAL;
6894105197Ssam		goto senderror;
6895105197Ssam	}
6896105197Ssam
6897105197Ssam	return (*key_typesw[msg->sadb_msg_type])(so, m, &mh);
6898105197Ssam
6899105197Ssamsenderror:
6900105197Ssam	msg->sadb_msg_errno = error;
6901105197Ssam	return key_sendup_mbuf(so, m, target);
6902105197Ssam}
6903105197Ssam
6904105197Ssamstatic int
6905105197Ssamkey_senderror(so, m, code)
6906105197Ssam	struct socket *so;
6907105197Ssam	struct mbuf *m;
6908105197Ssam	int code;
6909105197Ssam{
6910105197Ssam	struct sadb_msg *msg;
6911105197Ssam
6912120585Ssam	IPSEC_ASSERT(m->m_len >= sizeof(struct sadb_msg),
6913120585Ssam		("mbuf too small, len %u", m->m_len));
6914105197Ssam
6915105197Ssam	msg = mtod(m, struct sadb_msg *);
6916105197Ssam	msg->sadb_msg_errno = code;
6917105197Ssam	return key_sendup_mbuf(so, m, KEY_SENDUP_ONE);
6918105197Ssam}
6919105197Ssam
6920105197Ssam/*
6921105197Ssam * set the pointer to each header into message buffer.
6922105197Ssam * m will be freed on error.
6923105197Ssam * XXX larger-than-MCLBYTES extension?
6924105197Ssam */
6925105197Ssamstatic int
6926105197Ssamkey_align(m, mhp)
6927105197Ssam	struct mbuf *m;
6928105197Ssam	struct sadb_msghdr *mhp;
6929105197Ssam{
6930105197Ssam	struct mbuf *n;
6931105197Ssam	struct sadb_ext *ext;
6932105197Ssam	size_t off, end;
6933105197Ssam	int extlen;
6934105197Ssam	int toff;
6935105197Ssam
6936120585Ssam	IPSEC_ASSERT(m != NULL, ("null mbuf"));
6937120585Ssam	IPSEC_ASSERT(mhp != NULL, ("null msghdr"));
6938120585Ssam	IPSEC_ASSERT(m->m_len >= sizeof(struct sadb_msg),
6939120585Ssam		("mbuf too small, len %u", m->m_len));
6940105197Ssam
6941105197Ssam	/* initialize */
6942105197Ssam	bzero(mhp, sizeof(*mhp));
6943105197Ssam
6944105197Ssam	mhp->msg = mtod(m, struct sadb_msg *);
6945105197Ssam	mhp->ext[0] = (struct sadb_ext *)mhp->msg;	/*XXX backward compat */
6946105197Ssam
6947105197Ssam	end = PFKEY_UNUNIT64(mhp->msg->sadb_msg_len);
6948105197Ssam	extlen = end;	/*just in case extlen is not updated*/
6949105197Ssam	for (off = sizeof(struct sadb_msg); off < end; off += extlen) {
6950105197Ssam		n = m_pulldown(m, off, sizeof(struct sadb_ext), &toff);
6951105197Ssam		if (!n) {
6952105197Ssam			/* m is already freed */
6953105197Ssam			return ENOBUFS;
6954105197Ssam		}
6955105197Ssam		ext = (struct sadb_ext *)(mtod(n, caddr_t) + toff);
6956105197Ssam
6957105197Ssam		/* set pointer */
6958105197Ssam		switch (ext->sadb_ext_type) {
6959105197Ssam		case SADB_EXT_SA:
6960105197Ssam		case SADB_EXT_ADDRESS_SRC:
6961105197Ssam		case SADB_EXT_ADDRESS_DST:
6962105197Ssam		case SADB_EXT_ADDRESS_PROXY:
6963105197Ssam		case SADB_EXT_LIFETIME_CURRENT:
6964105197Ssam		case SADB_EXT_LIFETIME_HARD:
6965105197Ssam		case SADB_EXT_LIFETIME_SOFT:
6966105197Ssam		case SADB_EXT_KEY_AUTH:
6967105197Ssam		case SADB_EXT_KEY_ENCRYPT:
6968105197Ssam		case SADB_EXT_IDENTITY_SRC:
6969105197Ssam		case SADB_EXT_IDENTITY_DST:
6970105197Ssam		case SADB_EXT_SENSITIVITY:
6971105197Ssam		case SADB_EXT_PROPOSAL:
6972105197Ssam		case SADB_EXT_SUPPORTED_AUTH:
6973105197Ssam		case SADB_EXT_SUPPORTED_ENCRYPT:
6974105197Ssam		case SADB_EXT_SPIRANGE:
6975105197Ssam		case SADB_X_EXT_POLICY:
6976105197Ssam		case SADB_X_EXT_SA2:
6977105197Ssam			/* duplicate check */
6978105197Ssam			/*
6979105197Ssam			 * XXX Are there duplication payloads of either
6980105197Ssam			 * KEY_AUTH or KEY_ENCRYPT ?
6981105197Ssam			 */
6982105197Ssam			if (mhp->ext[ext->sadb_ext_type] != NULL) {
6983120585Ssam				ipseclog((LOG_DEBUG, "%s: duplicate ext_type "
6984120585Ssam					"%u\n", __func__, ext->sadb_ext_type));
6985105197Ssam				m_freem(m);
6986105197Ssam				pfkeystat.out_dupext++;
6987105197Ssam				return EINVAL;
6988105197Ssam			}
6989105197Ssam			break;
6990105197Ssam		default:
6991120585Ssam			ipseclog((LOG_DEBUG, "%s: invalid ext_type %u\n",
6992120585Ssam				__func__, ext->sadb_ext_type));
6993105197Ssam			m_freem(m);
6994105197Ssam			pfkeystat.out_invexttype++;
6995105197Ssam			return EINVAL;
6996105197Ssam		}
6997105197Ssam
6998105197Ssam		extlen = PFKEY_UNUNIT64(ext->sadb_ext_len);
6999105197Ssam
7000105197Ssam		if (key_validate_ext(ext, extlen)) {
7001105197Ssam			m_freem(m);
7002105197Ssam			pfkeystat.out_invlen++;
7003105197Ssam			return EINVAL;
7004105197Ssam		}
7005105197Ssam
7006105197Ssam		n = m_pulldown(m, off, extlen, &toff);
7007105197Ssam		if (!n) {
7008105197Ssam			/* m is already freed */
7009105197Ssam			return ENOBUFS;
7010105197Ssam		}
7011105197Ssam		ext = (struct sadb_ext *)(mtod(n, caddr_t) + toff);
7012105197Ssam
7013105197Ssam		mhp->ext[ext->sadb_ext_type] = ext;
7014105197Ssam		mhp->extoff[ext->sadb_ext_type] = off;
7015105197Ssam		mhp->extlen[ext->sadb_ext_type] = extlen;
7016105197Ssam	}
7017105197Ssam
7018105197Ssam	if (off != end) {
7019105197Ssam		m_freem(m);
7020105197Ssam		pfkeystat.out_invlen++;
7021105197Ssam		return EINVAL;
7022105197Ssam	}
7023105197Ssam
7024105197Ssam	return 0;
7025105197Ssam}
7026105197Ssam
7027105197Ssamstatic int
7028105197Ssamkey_validate_ext(ext, len)
7029105197Ssam	const struct sadb_ext *ext;
7030105197Ssam	int len;
7031105197Ssam{
7032105197Ssam	const struct sockaddr *sa;
7033105197Ssam	enum { NONE, ADDR } checktype = NONE;
7034105197Ssam	int baselen = 0;
7035105197Ssam	const int sal = offsetof(struct sockaddr, sa_len) + sizeof(sa->sa_len);
7036105197Ssam
7037105197Ssam	if (len != PFKEY_UNUNIT64(ext->sadb_ext_len))
7038105197Ssam		return EINVAL;
7039105197Ssam
7040105197Ssam	/* if it does not match minimum/maximum length, bail */
7041105197Ssam	if (ext->sadb_ext_type >= sizeof(minsize) / sizeof(minsize[0]) ||
7042105197Ssam	    ext->sadb_ext_type >= sizeof(maxsize) / sizeof(maxsize[0]))
7043105197Ssam		return EINVAL;
7044105197Ssam	if (!minsize[ext->sadb_ext_type] || len < minsize[ext->sadb_ext_type])
7045105197Ssam		return EINVAL;
7046105197Ssam	if (maxsize[ext->sadb_ext_type] && len > maxsize[ext->sadb_ext_type])
7047105197Ssam		return EINVAL;
7048105197Ssam
7049105197Ssam	/* more checks based on sadb_ext_type XXX need more */
7050105197Ssam	switch (ext->sadb_ext_type) {
7051105197Ssam	case SADB_EXT_ADDRESS_SRC:
7052105197Ssam	case SADB_EXT_ADDRESS_DST:
7053105197Ssam	case SADB_EXT_ADDRESS_PROXY:
7054105197Ssam		baselen = PFKEY_ALIGN8(sizeof(struct sadb_address));
7055105197Ssam		checktype = ADDR;
7056105197Ssam		break;
7057105197Ssam	case SADB_EXT_IDENTITY_SRC:
7058105197Ssam	case SADB_EXT_IDENTITY_DST:
7059105197Ssam		if (((const struct sadb_ident *)ext)->sadb_ident_type ==
7060105197Ssam		    SADB_X_IDENTTYPE_ADDR) {
7061105197Ssam			baselen = PFKEY_ALIGN8(sizeof(struct sadb_ident));
7062105197Ssam			checktype = ADDR;
7063105197Ssam		} else
7064105197Ssam			checktype = NONE;
7065105197Ssam		break;
7066105197Ssam	default:
7067105197Ssam		checktype = NONE;
7068105197Ssam		break;
7069105197Ssam	}
7070105197Ssam
7071105197Ssam	switch (checktype) {
7072105197Ssam	case NONE:
7073105197Ssam		break;
7074105197Ssam	case ADDR:
7075105197Ssam		sa = (const struct sockaddr *)(((const u_int8_t*)ext)+baselen);
7076105197Ssam		if (len < baselen + sal)
7077105197Ssam			return EINVAL;
7078105197Ssam		if (baselen + PFKEY_ALIGN8(sa->sa_len) != len)
7079105197Ssam			return EINVAL;
7080105197Ssam		break;
7081105197Ssam	}
7082105197Ssam
7083105197Ssam	return 0;
7084105197Ssam}
7085105197Ssam
7086105197Ssamvoid
7087105197Ssamkey_init()
7088105197Ssam{
7089105197Ssam	int i;
7090105197Ssam
7091120585Ssam	SPTREE_LOCK_INIT();
7092120585Ssam	REGTREE_LOCK_INIT();
7093120585Ssam	SAHTREE_LOCK_INIT();
7094120585Ssam	ACQ_LOCK_INIT();
7095120585Ssam	SPACQ_LOCK_INIT();
7096119643Ssam
7097119643Ssam	for (i = 0; i < IPSEC_DIR_MAX; i++)
7098105197Ssam		LIST_INIT(&sptree[i]);
7099105197Ssam
7100105197Ssam	LIST_INIT(&sahtree);
7101105197Ssam
7102119643Ssam	for (i = 0; i <= SADB_SATYPE_MAX; i++)
7103105197Ssam		LIST_INIT(&regtree[i]);
7104105197Ssam
7105105197Ssam	LIST_INIT(&acqtree);
7106105197Ssam	LIST_INIT(&spacqtree);
7107105197Ssam
7108105197Ssam	/* system default */
7109105197Ssam	ip4_def_policy.policy = IPSEC_POLICY_NONE;
7110105197Ssam	ip4_def_policy.refcnt++;	/*never reclaim this*/
7111105197Ssam
7112105197Ssam#ifndef IPSEC_DEBUG2
7113105197Ssam	timeout((void *)key_timehandler, (void *)0, hz);
7114105197Ssam#endif /*IPSEC_DEBUG2*/
7115105197Ssam
7116105197Ssam	/* initialize key statistics */
7117105197Ssam	keystat.getspi_count = 1;
7118105197Ssam
7119120585Ssam	printf("Fast IPsec: Initialized Security Association Processing.\n");
7120105197Ssam
7121105197Ssam	return;
7122105197Ssam}
7123105197Ssam
7124105197Ssam/*
7125105197Ssam * XXX: maybe This function is called after INBOUND IPsec processing.
7126105197Ssam *
7127105197Ssam * Special check for tunnel-mode packets.
7128105197Ssam * We must make some checks for consistency between inner and outer IP header.
7129105197Ssam *
7130105197Ssam * xxx more checks to be provided
7131105197Ssam */
7132105197Ssamint
7133105197Ssamkey_checktunnelsanity(sav, family, src, dst)
7134105197Ssam	struct secasvar *sav;
7135105197Ssam	u_int family;
7136105197Ssam	caddr_t src;
7137105197Ssam	caddr_t dst;
7138105197Ssam{
7139120585Ssam	IPSEC_ASSERT(sav->sah != NULL, ("null SA header"));
7140105197Ssam
7141105197Ssam	/* XXX: check inner IP header */
7142105197Ssam
7143105197Ssam	return 1;
7144105197Ssam}
7145105197Ssam
7146105197Ssam/* record data transfer on SA, and update timestamps */
7147105197Ssamvoid
7148105197Ssamkey_sa_recordxfer(sav, m)
7149105197Ssam	struct secasvar *sav;
7150105197Ssam	struct mbuf *m;
7151105197Ssam{
7152120585Ssam	IPSEC_ASSERT(sav != NULL, ("Null secasvar"));
7153120585Ssam	IPSEC_ASSERT(m != NULL, ("Null mbuf"));
7154105197Ssam	if (!sav->lft_c)
7155105197Ssam		return;
7156105197Ssam
7157105197Ssam	/*
7158105197Ssam	 * XXX Currently, there is a difference of bytes size
7159105197Ssam	 * between inbound and outbound processing.
7160105197Ssam	 */
7161157123Sgnn	sav->lft_c->bytes += m->m_pkthdr.len;
7162105197Ssam	/* to check bytes lifetime is done in key_timehandler(). */
7163105197Ssam
7164105197Ssam	/*
7165105197Ssam	 * We use the number of packets as the unit of
7166157123Sgnn	 * allocations.  We increment the variable
7167105197Ssam	 * whenever {esp,ah}_{in,out}put is called.
7168105197Ssam	 */
7169157123Sgnn	sav->lft_c->allocations++;
7170105197Ssam	/* XXX check for expires? */
7171105197Ssam
7172105197Ssam	/*
7173157123Sgnn	 * NOTE: We record CURRENT usetime by using wall clock,
7174105197Ssam	 * in seconds.  HARD and SOFT lifetime are measured by the time
7175157123Sgnn	 * difference (again in seconds) from usetime.
7176105197Ssam	 *
7177105197Ssam	 *	usetime
7178105197Ssam	 *	v     expire   expire
7179105197Ssam	 * -----+-----+--------+---> t
7180105197Ssam	 *	<--------------> HARD
7181105197Ssam	 *	<-----> SOFT
7182105197Ssam	 */
7183157123Sgnn	sav->lft_c->usetime = time_second;
7184105197Ssam	/* XXX check for expires? */
7185105197Ssam
7186105197Ssam	return;
7187105197Ssam}
7188105197Ssam
7189105197Ssam/* dumb version */
7190105197Ssamvoid
7191105197Ssamkey_sa_routechange(dst)
7192105197Ssam	struct sockaddr *dst;
7193105197Ssam{
7194105197Ssam	struct secashead *sah;
7195105197Ssam	struct route *ro;
7196105197Ssam
7197120585Ssam	SAHTREE_LOCK();
7198105197Ssam	LIST_FOREACH(sah, &sahtree, chain) {
7199105197Ssam		ro = &sah->sa_route;
7200105197Ssam		if (ro->ro_rt && dst->sa_len == ro->ro_dst.sa_len
7201105197Ssam		 && bcmp(dst, &ro->ro_dst, dst->sa_len) == 0) {
7202105197Ssam			RTFREE(ro->ro_rt);
7203105197Ssam			ro->ro_rt = (struct rtentry *)NULL;
7204105197Ssam		}
7205105197Ssam	}
7206120585Ssam	SAHTREE_UNLOCK();
7207105197Ssam}
7208105197Ssam
7209105197Ssamstatic void
7210105197Ssamkey_sa_chgstate(sav, state)
7211105197Ssam	struct secasvar *sav;
7212105197Ssam	u_int8_t state;
7213105197Ssam{
7214120585Ssam	IPSEC_ASSERT(sav != NULL, ("NULL sav"));
7215120585Ssam	SAHTREE_LOCK_ASSERT();
7216105197Ssam
7217119643Ssam	if (sav->state != state) {
7218119643Ssam		if (__LIST_CHAINED(sav))
7219119643Ssam			LIST_REMOVE(sav, chain);
7220119643Ssam		sav->state = state;
7221119643Ssam		LIST_INSERT_HEAD(&sav->sah->savtree[state], sav, chain);
7222119643Ssam	}
7223105197Ssam}
7224105197Ssam
7225105197Ssamvoid
7226105197Ssamkey_sa_stir_iv(sav)
7227105197Ssam	struct secasvar *sav;
7228105197Ssam{
7229105197Ssam
7230120585Ssam	IPSEC_ASSERT(sav->iv != NULL, ("null IV"));
7231105197Ssam	key_randomfill(sav->iv, sav->ivlen);
7232105197Ssam}
7233105197Ssam
7234105197Ssam/* XXX too much? */
7235105197Ssamstatic struct mbuf *
7236105197Ssamkey_alloc_mbuf(l)
7237105197Ssam	int l;
7238105197Ssam{
7239105197Ssam	struct mbuf *m = NULL, *n;
7240105197Ssam	int len, t;
7241105197Ssam
7242105197Ssam	len = l;
7243105197Ssam	while (len > 0) {
7244111119Simp		MGET(n, M_DONTWAIT, MT_DATA);
7245105197Ssam		if (n && len > MLEN)
7246111119Simp			MCLGET(n, M_DONTWAIT);
7247105197Ssam		if (!n) {
7248105197Ssam			m_freem(m);
7249105197Ssam			return NULL;
7250105197Ssam		}
7251105197Ssam
7252105197Ssam		n->m_next = NULL;
7253105197Ssam		n->m_len = 0;
7254105197Ssam		n->m_len = M_TRAILINGSPACE(n);
7255105197Ssam		/* use the bottom of mbuf, hoping we can prepend afterwards */
7256105197Ssam		if (n->m_len > len) {
7257105197Ssam			t = (n->m_len - len) & ~(sizeof(long) - 1);
7258105197Ssam			n->m_data += t;
7259105197Ssam			n->m_len = len;
7260105197Ssam		}
7261105197Ssam
7262105197Ssam		len -= n->m_len;
7263105197Ssam
7264105197Ssam		if (m)
7265105197Ssam			m_cat(m, n);
7266105197Ssam		else
7267105197Ssam			m = n;
7268105197Ssam	}
7269105197Ssam
7270105197Ssam	return m;
7271105197Ssam}
7272157123Sgnn
7273157123Sgnn/*
7274157123Sgnn * Take one of the kernel's security keys and convert it into a PF_KEY
7275157123Sgnn * structure within an mbuf, suitable for sending up to a waiting
7276157123Sgnn * application in user land.
7277157123Sgnn *
7278157123Sgnn * IN:
7279157123Sgnn *    src: A pointer to a kernel security key.
7280157123Sgnn *    exttype: Which type of key this is. Refer to the PF_KEY data structures.
7281157123Sgnn * OUT:
7282157123Sgnn *    a valid mbuf or NULL indicating an error
7283157123Sgnn *
7284157123Sgnn */
7285157123Sgnn
7286157123Sgnnstatic struct mbuf *
7287157123Sgnnkey_setkey(struct seckey *src, u_int16_t exttype)
7288157123Sgnn{
7289157123Sgnn	struct mbuf *m;
7290157123Sgnn	struct sadb_key *p;
7291170799Sbz	int len;
7292157123Sgnn
7293157123Sgnn	if (src == NULL)
7294157123Sgnn		return NULL;
7295157123Sgnn
7296170799Sbz	len = PFKEY_ALIGN8(sizeof(struct sadb_key) + _KEYLEN(src));
7297170799Sbz
7298157123Sgnn	m = key_alloc_mbuf(len);
7299157123Sgnn	if (m == NULL)
7300157123Sgnn		return NULL;
7301157123Sgnn	p = mtod(m, struct sadb_key *);
7302157123Sgnn	bzero(p, len);
7303157123Sgnn	p->sadb_key_len = PFKEY_UNIT64(len);
7304157123Sgnn	p->sadb_key_exttype = exttype;
7305157123Sgnn	p->sadb_key_bits = src->bits;
7306157123Sgnn	bcopy(src->key_data, _KEYBUF(p), _KEYLEN(src));
7307157123Sgnn
7308157123Sgnn	return m;
7309157123Sgnn}
7310157123Sgnn
7311157123Sgnn/*
7312157123Sgnn * Take one of the kernel's lifetime data structures and convert it
7313157123Sgnn * into a PF_KEY structure within an mbuf, suitable for sending up to
7314157123Sgnn * a waiting application in user land.
7315157123Sgnn *
7316157123Sgnn * IN:
7317157123Sgnn *    src: A pointer to a kernel lifetime structure.
7318157123Sgnn *    exttype: Which type of lifetime this is. Refer to the PF_KEY
7319157123Sgnn *             data structures for more information.
7320157123Sgnn * OUT:
7321157123Sgnn *    a valid mbuf or NULL indicating an error
7322157123Sgnn *
7323157123Sgnn */
7324157123Sgnn
7325157123Sgnnstatic struct mbuf *
7326157123Sgnnkey_setlifetime(struct seclifetime *src, u_int16_t exttype)
7327157123Sgnn{
7328157123Sgnn	struct mbuf *m = NULL;
7329157123Sgnn	struct sadb_lifetime *p;
7330157123Sgnn	int len = PFKEY_ALIGN8(sizeof(struct sadb_lifetime));
7331157123Sgnn
7332157123Sgnn	if (src == NULL)
7333157123Sgnn		return NULL;
7334157123Sgnn
7335157123Sgnn	m = key_alloc_mbuf(len);
7336157123Sgnn	if (m == NULL)
7337157123Sgnn		return m;
7338157123Sgnn	p = mtod(m, struct sadb_lifetime *);
7339157123Sgnn
7340157123Sgnn	bzero(p, len);
7341157123Sgnn	p->sadb_lifetime_len = PFKEY_UNIT64(len);
7342157123Sgnn	p->sadb_lifetime_exttype = exttype;
7343157123Sgnn	p->sadb_lifetime_allocations = src->allocations;
7344157123Sgnn	p->sadb_lifetime_bytes = src->bytes;
7345157123Sgnn	p->sadb_lifetime_addtime = src->addtime;
7346157123Sgnn	p->sadb_lifetime_usetime = src->usetime;
7347157123Sgnn
7348157123Sgnn	return m;
7349157123Sgnn
7350157123Sgnn}
7351