2000-07-04 16:35:15 +00:00
|
|
|
/* $FreeBSD$ */
|
2001-06-11 12:39:29 +00:00
|
|
|
/* $KAME: keydb.h,v 1.14 2000/08/02 17:58:26 sakane Exp $ */
|
2000-07-04 16:35:15 +00:00
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the project nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETKEY_KEYDB_H_
|
2000-07-04 16:35:15 +00:00
|
|
|
#define _NETKEY_KEYDB_H_
|
1999-11-22 02:45:11 +00:00
|
|
|
|
1999-12-29 04:46:21 +00:00
|
|
|
#ifdef _KERNEL
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
#include <netkey/key_var.h>
|
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
/* Security Assocciation Index */
|
2000-07-04 16:35:15 +00:00
|
|
|
/* NOTE: Ensure to be same address family */
|
1999-11-22 02:45:11 +00:00
|
|
|
struct secasindex {
|
2000-07-04 16:35:15 +00:00
|
|
|
struct sockaddr_storage src; /* srouce address for SA */
|
|
|
|
struct sockaddr_storage dst; /* destination address for SA */
|
|
|
|
u_int16_t proto; /* IPPROTO_ESP or IPPROTO_AH */
|
|
|
|
u_int8_t mode; /* mode of protocol, see ipsec.h */
|
|
|
|
u_int32_t reqid; /* reqid id who owned this SA */
|
|
|
|
/* see IPSEC_MANUAL_REQID_MAX. */
|
1999-11-22 02:45:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Security Association Data Base */
|
|
|
|
struct secashead {
|
2000-05-26 02:09:24 +00:00
|
|
|
LIST_ENTRY(secashead) chain;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
struct secasindex saidx;
|
|
|
|
|
|
|
|
struct sadb_ident *idents; /* source identity */
|
|
|
|
struct sadb_ident *identd; /* destination identity */
|
|
|
|
/* XXX I don't know how to use them. */
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
u_int8_t state; /* MATURE or DEAD. */
|
2000-05-26 02:09:24 +00:00
|
|
|
LIST_HEAD(_satree, secasvar) savtree[SADB_SASTATE_MAX+1];
|
1999-11-22 02:45:11 +00:00
|
|
|
/* SA chain */
|
|
|
|
/* The first of this list is newer SA */
|
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
struct route sa_route; /* route cache */
|
1999-11-22 02:45:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Security Association */
|
|
|
|
struct secasvar {
|
2000-05-26 02:09:24 +00:00
|
|
|
LIST_ENTRY(secasvar) chain;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
int refcnt; /* reference count */
|
|
|
|
u_int8_t state; /* Status of this Association */
|
|
|
|
|
|
|
|
u_int8_t alg_auth; /* Authentication Algorithm Identifier*/
|
|
|
|
u_int8_t alg_enc; /* Cipher Algorithm Identifier */
|
|
|
|
u_int32_t spi; /* SPI Value, network byte order */
|
|
|
|
u_int32_t flags; /* holder for SADB_KEY_FLAGS */
|
|
|
|
|
|
|
|
struct sadb_key *key_auth; /* Key for Authentication */
|
|
|
|
struct sadb_key *key_enc; /* Key for Encryption */
|
|
|
|
caddr_t iv; /* Initilization Vector */
|
|
|
|
u_int ivlen; /* length of IV */
|
2001-06-11 12:39:29 +00:00
|
|
|
void *sched; /* intermediate encryption key */
|
|
|
|
size_t schedlen;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
struct secreplay *replay; /* replay prevention */
|
2001-06-11 12:39:29 +00:00
|
|
|
long created; /* for lifetime */
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
struct sadb_lifetime *lft_c; /* CURRENT lifetime, it's constant. */
|
|
|
|
struct sadb_lifetime *lft_h; /* HARD lifetime */
|
|
|
|
struct sadb_lifetime *lft_s; /* SOFT lifetime */
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
u_int32_t seq; /* sequence number */
|
|
|
|
pid_t pid; /* message's pid */
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
struct secashead *sah; /* back pointer to the secashead */
|
1999-11-22 02:45:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* replay prevention */
|
|
|
|
struct secreplay {
|
2000-07-04 16:35:15 +00:00
|
|
|
u_int32_t count;
|
|
|
|
u_int wsize; /* window size, i.g. 4 bytes */
|
|
|
|
u_int32_t seq; /* used by sender */
|
|
|
|
u_int32_t lastseq; /* used by receiver */
|
|
|
|
caddr_t bitmap; /* used by receiver */
|
|
|
|
int overflow; /* overflow flag */
|
1999-11-22 02:45:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* socket table due to send PF_KEY messages. */
|
|
|
|
struct secreg {
|
2000-05-26 02:09:24 +00:00
|
|
|
LIST_ENTRY(secreg) chain;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
struct socket *so;
|
1999-11-22 02:45:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef IPSEC_NONBLOCK_ACQUIRE
|
|
|
|
/* acquiring list table. */
|
|
|
|
struct secacq {
|
2000-05-26 02:09:24 +00:00
|
|
|
LIST_ENTRY(secacq) chain;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
struct secasindex saidx;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
u_int32_t seq; /* sequence number */
|
2001-06-11 12:39:29 +00:00
|
|
|
long created; /* for lifetime */
|
2000-07-04 16:35:15 +00:00
|
|
|
int count; /* for lifetime */
|
1999-11-22 02:45:11 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Sensitivity Level Specification */
|
|
|
|
/* nothing */
|
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
#define SADB_KILL_INTERVAL 600 /* six seconds */
|
1999-11-22 02:45:11 +00:00
|
|
|
|
|
|
|
struct key_cb {
|
|
|
|
int key_count;
|
|
|
|
int any_count;
|
|
|
|
};
|
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
/* secpolicy */
|
2002-03-20 02:39:27 +00:00
|
|
|
extern struct secpolicy *keydb_newsecpolicy(void);
|
|
|
|
extern void keydb_delsecpolicy(struct secpolicy *);
|
2000-07-04 16:35:15 +00:00
|
|
|
/* secashead */
|
2002-03-20 02:39:27 +00:00
|
|
|
extern struct secashead *keydb_newsecashead(void);
|
|
|
|
extern void keydb_delsecashead(struct secashead *);
|
2000-07-04 16:35:15 +00:00
|
|
|
/* secasvar */
|
2002-03-20 02:39:27 +00:00
|
|
|
extern struct secasvar *keydb_newsecasvar(void);
|
|
|
|
extern void keydb_refsecasvar(struct secasvar *);
|
|
|
|
extern void keydb_freesecasvar(struct secasvar *);
|
2000-07-04 16:35:15 +00:00
|
|
|
/* secreplay */
|
2002-03-20 02:39:27 +00:00
|
|
|
extern struct secreplay *keydb_newsecreplay(size_t);
|
|
|
|
extern void keydb_delsecreplay(struct secreplay *);
|
2000-07-04 16:35:15 +00:00
|
|
|
/* secreg */
|
2002-03-20 02:39:27 +00:00
|
|
|
extern struct secreg *keydb_newsecreg(void);
|
|
|
|
extern void keydb_delsecreg(struct secreg *);
|
2000-07-04 16:35:15 +00:00
|
|
|
|
1999-12-29 04:46:21 +00:00
|
|
|
#endif /* _KERNEL */
|
1999-11-22 02:45:11 +00:00
|
|
|
|
|
|
|
#endif /* _NETKEY_KEYDB_H_ */
|