]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netkey/keydb.c
1 /* $KAME: keydb.c,v 1.61 2000/03/25 07:24:13 sumikawa Exp $ */
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #if (defined(__FreeBSD__) && __FreeBSD__ >= 3) || defined(__NetBSD__)
35 #include "opt_ipsec.h"
39 #include <sys/types.h>
40 #include <sys/socket.h>
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/kernel.h>
44 #include <sys/malloc.h>
45 #include <sys/errno.h>
46 #include <sys/queue.h>
49 #include <net/route.h>
51 #include <netinet/in.h>
53 #include <net/pfkeyv2.h>
54 #include <netkey/keydb.h>
55 #include <netinet6/ipsec.h>
57 #include <net/net_osdep.h>
59 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
60 MALLOC_DEFINE(M_SECA
, "key mgmt", "security associations, key management");
63 static void keydb_delsecasvar
__P((struct secasvar
*));
66 * secpolicy management
73 p
= (struct secpolicy
*)_MALLOC(sizeof(*p
), M_SECA
, M_WAITOK
);
89 * secashead management
97 p
= (struct secashead
*)_MALLOC(sizeof(*p
), M_SECA
, M_WAITOK
);
100 bzero(p
, sizeof(*p
));
101 for (i
= 0; i
< sizeof(p
->savtree
)/sizeof(p
->savtree
[0]); i
++)
102 LIST_INIT(&p
->savtree
[i
]);
107 keydb_delsecashead(p
)
115 * secasvar management (reference counted)
122 p
= (struct secasvar
*)_MALLOC(sizeof(*p
), M_SECA
, M_WAITOK
);
125 bzero(p
, sizeof(*p
));
146 keydb_freesecasvar(p
)
158 keydb_delsecasvar(p
);
168 panic("keydb_delsecasvar called with refcnt != 0");
174 * secreplay management
177 keydb_newsecreplay(wsize
)
182 p
= (struct secreplay
*)_MALLOC(sizeof(*p
), M_SECA
, M_WAITOK
);
186 bzero(p
, sizeof(*p
));
188 p
->bitmap
= (caddr_t
)_MALLOC(wsize
, M_SECA
, M_WAITOK
);
193 bzero(p
->bitmap
, wsize
);
200 keydb_delsecreplay(p
)
205 _FREE(p
->bitmap
, M_SECA
);
217 p
= (struct secreg
*)_MALLOC(sizeof(*p
), M_SECA
, M_WAITOK
);
219 bzero(p
, sizeof(*p
));