1 /* $NetBSD: keydb.h,v 1.28 2007/05/02 20:40:29 dyoung Exp $ */
2 /* $KAME: keydb.h,v 1.23 2003/09/07 05:25:20 itojun Exp $ */
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the project nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #ifndef _NETKEY_KEYDB_H_
34 #define _NETKEY_KEYDB_H_
38 #if defined(_KERNEL_OPT)
39 #include "opt_ipsec.h"
42 #include <sys/mallocvar.h>
43 #include <netkey/key_var.h>
45 MALLOC_DECLARE(M_SECA
);
47 /* Security Assocciation Index */
48 /* NOTE: Ensure to be same address family */
50 struct sockaddr_storage src
; /* srouce address for SA */
51 struct sockaddr_storage dst
; /* destination address for SA */
52 u_int16_t proto
; /* IPPROTO_ESP or IPPROTO_AH */
53 u_int8_t mode
; /* mode of protocol, see ipsec.h */
54 u_int16_t reqid
; /* reqid id who owned this SA */
55 /* see IPSEC_MANUAL_REQID_MAX. */
58 /* Security Association Data Base */
60 LIST_ENTRY(secashead
) chain
;
62 struct secasindex saidx
;
64 struct sadb_ident
*idents
; /* source identity */
65 struct sadb_ident
*identd
; /* destination identity */
66 /* XXX I don't know how to use them. */
68 u_int8_t state
; /* MATURE or DEAD. */
69 LIST_HEAD(_satree
, secasvar
) savtree
[SADB_SASTATE_MAX
+1];
71 /* The first of this list is newer SA */
73 struct route sa_route
;
76 /* Security Association */
78 TAILQ_ENTRY(secasvar
) tailq
;
79 LIST_ENTRY(secasvar
) chain
;
80 LIST_ENTRY(secasvar
) spihash
;
82 int refcnt
; /* reference count */
83 u_int8_t state
; /* Status of this Association */
85 u_int8_t alg_auth
; /* Authentication Algorithm Identifier*/
86 u_int8_t alg_enc
; /* Cipher Algorithm Identifier */
87 u_int32_t spi
; /* SPI Value, network byte order */
88 u_int32_t flags
; /* holder for SADB_KEY_FLAGS */
90 struct sadb_key
*key_auth
; /* Key for Authentication */
91 struct sadb_key
*key_enc
; /* Key for Encryption */
92 void *iv
; /* Initilization Vector */
93 u_int ivlen
; /* length of IV */
94 void *sched
; /* intermediate encryption key */
97 struct secreplay
*replay
; /* replay prevention */
98 long created
; /* for lifetime */
100 struct sadb_lifetime
*lft_c
; /* CURRENT lifetime, it's constant. */
101 struct sadb_lifetime
*lft_h
; /* HARD lifetime */
102 struct sadb_lifetime
*lft_s
; /* SOFT lifetime */
104 u_int64_t seq
; /* sequence number */
105 pid_t pid
; /* message's pid */
107 struct secashead
*sah
; /* back pointer to the secashead */
109 u_int32_t id
; /* SA id */
110 /* Nat-Traversal state */
117 /* replay prevention */
120 u_int wsize
; /* window size, i.g. 4 bytes */
121 u_int64_t seq
; /* used by sender */
122 u_int64_t lastseq
; /* used by receiver */
123 u_int8_t
*bitmap
; /* used by receiver */
124 int overflow
; /* what round does the counter take. */
127 /* socket table due to send PF_KEY messages. */
129 LIST_ENTRY(secreg
) chain
;
134 #ifndef IPSEC_NONBLOCK_ACQUIRE
135 /* acquiring list table. */
137 LIST_ENTRY(secacq
) chain
;
139 struct secasindex saidx
;
141 u_int32_t seq
; /* sequence number */
142 long created
; /* for lifetime */
143 int count
; /* for lifetime */
147 /* Sensitivity Level Specification */
150 #define SADB_KILL_INTERVAL 600 /* six seconds */
159 struct secpolicyindex
;
160 extern struct secpolicy
*keydb_newsecpolicy(void);
161 extern u_int32_t
keydb_newspid(void);
162 extern void keydb_delsecpolicy(struct secpolicy
*);
163 extern int keydb_setsecpolicyindex
164 (struct secpolicy
*, struct secpolicyindex
*);
166 extern struct secashead
*keydb_newsecashead(void);
167 extern void keydb_delsecashead(struct secashead
*);
169 extern struct secasvar
*keydb_newsecasvar(void);
170 extern void keydb_delsecasvar(struct secasvar
*);
172 extern struct secreplay
*keydb_newsecreplay(size_t);
173 extern void keydb_delsecreplay(struct secreplay
*);
175 extern struct secreg
*keydb_newsecreg(void);
176 extern void keydb_delsecreg(struct secreg
*);
180 #endif /* !_NETKEY_KEYDB_H_ */