xref: /xnu-10002.81.5/bsd/netkey/keydb.h (revision 5e3eaea39dcf651e66cb99ba7d70e32cc4a99587)
1*5e3eaea3SApple OSS Distributions /*	$KAME: keydb.h,v 1.9 2000/02/22 14:06:41 itojun Exp $	*/
2*5e3eaea3SApple OSS Distributions 
3*5e3eaea3SApple OSS Distributions /*
4*5e3eaea3SApple OSS Distributions  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5*5e3eaea3SApple OSS Distributions  * All rights reserved.
6*5e3eaea3SApple OSS Distributions  *
7*5e3eaea3SApple OSS Distributions  * Redistribution and use in source and binary forms, with or without
8*5e3eaea3SApple OSS Distributions  * modification, are permitted provided that the following conditions
9*5e3eaea3SApple OSS Distributions  * are met:
10*5e3eaea3SApple OSS Distributions  * 1. Redistributions of source code must retain the above copyright
11*5e3eaea3SApple OSS Distributions  *    notice, this list of conditions and the following disclaimer.
12*5e3eaea3SApple OSS Distributions  * 2. Redistributions in binary form must reproduce the above copyright
13*5e3eaea3SApple OSS Distributions  *    notice, this list of conditions and the following disclaimer in the
14*5e3eaea3SApple OSS Distributions  *    documentation and/or other materials provided with the distribution.
15*5e3eaea3SApple OSS Distributions  * 3. Neither the name of the project nor the names of its contributors
16*5e3eaea3SApple OSS Distributions  *    may be used to endorse or promote products derived from this software
17*5e3eaea3SApple OSS Distributions  *    without specific prior written permission.
18*5e3eaea3SApple OSS Distributions  *
19*5e3eaea3SApple OSS Distributions  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20*5e3eaea3SApple OSS Distributions  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21*5e3eaea3SApple OSS Distributions  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22*5e3eaea3SApple OSS Distributions  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23*5e3eaea3SApple OSS Distributions  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24*5e3eaea3SApple OSS Distributions  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25*5e3eaea3SApple OSS Distributions  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26*5e3eaea3SApple OSS Distributions  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27*5e3eaea3SApple OSS Distributions  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28*5e3eaea3SApple OSS Distributions  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29*5e3eaea3SApple OSS Distributions  * SUCH DAMAGE.
30*5e3eaea3SApple OSS Distributions  */
31*5e3eaea3SApple OSS Distributions 
32*5e3eaea3SApple OSS Distributions #ifndef _NETKEY_KEYDB_H_
33*5e3eaea3SApple OSS Distributions #define _NETKEY_KEYDB_H_
34*5e3eaea3SApple OSS Distributions #include <sys/appleapiopts.h>
35*5e3eaea3SApple OSS Distributions 
36*5e3eaea3SApple OSS Distributions #ifdef BSD_KERNEL_PRIVATE
37*5e3eaea3SApple OSS Distributions 
38*5e3eaea3SApple OSS Distributions #include <netkey/key_var.h>
39*5e3eaea3SApple OSS Distributions 
40*5e3eaea3SApple OSS Distributions /* Security Association Index */
41*5e3eaea3SApple OSS Distributions /* NOTE: Ensure to be same address family */
42*5e3eaea3SApple OSS Distributions struct secasindex {
43*5e3eaea3SApple OSS Distributions 	struct sockaddr_storage src;    /* srouce address for SA */
44*5e3eaea3SApple OSS Distributions 	struct sockaddr_storage dst;    /* destination address for SA */
45*5e3eaea3SApple OSS Distributions 	u_int16_t proto;                /* IPPROTO_ESP or IPPROTO_AH */
46*5e3eaea3SApple OSS Distributions 	u_int8_t mode;                  /* mode of protocol, see ipsec.h */
47*5e3eaea3SApple OSS Distributions 	u_int32_t reqid;                /* reqid id who owned this SA */
48*5e3eaea3SApple OSS Distributions 	                                /* see IPSEC_MANUAL_REQID_MAX. */
49*5e3eaea3SApple OSS Distributions 	u_int ipsec_ifindex;
50*5e3eaea3SApple OSS Distributions };
51*5e3eaea3SApple OSS Distributions 
52*5e3eaea3SApple OSS Distributions #define SECURITY_ASSOCIATION_ANY          0x0000
53*5e3eaea3SApple OSS Distributions #define SECURITY_ASSOCIATION_PFKEY        0x0001
54*5e3eaea3SApple OSS Distributions #define SECURITY_ASSOCIATION_CUSTOM_IPSEC 0x0010
55*5e3eaea3SApple OSS Distributions 
56*5e3eaea3SApple OSS Distributions /* Security Association Data Base */
57*5e3eaea3SApple OSS Distributions struct secashead {
58*5e3eaea3SApple OSS Distributions 	LIST_ENTRY(secashead) chain;
59*5e3eaea3SApple OSS Distributions 
60*5e3eaea3SApple OSS Distributions 	struct secasindex saidx;
61*5e3eaea3SApple OSS Distributions 
62*5e3eaea3SApple OSS Distributions 	ifnet_t ipsec_if;
63*5e3eaea3SApple OSS Distributions 	u_int outgoing_if;
64*5e3eaea3SApple OSS Distributions 	u_int8_t dir;                   /* IPSEC_DIR_INBOUND or IPSEC_DIR_OUTBOUND */
65*5e3eaea3SApple OSS Distributions 	u_int8_t state;                 /* MATURE or DEAD. */
66*5e3eaea3SApple OSS Distributions 	LIST_HEAD(_satree, secasvar) savtree[SADB_SASTATE_MAX + 1];
67*5e3eaea3SApple OSS Distributions 	/* SA chain */
68*5e3eaea3SApple OSS Distributions 	/* The first of this list is newer SA */
69*5e3eaea3SApple OSS Distributions 
70*5e3eaea3SApple OSS Distributions 	struct route_in6 sa_route;              /* route cache */
71*5e3eaea3SApple OSS Distributions 
72*5e3eaea3SApple OSS Distributions 	uint16_t flags;
73*5e3eaea3SApple OSS Distributions 	u_int32_t use_count;
74*5e3eaea3SApple OSS Distributions };
75*5e3eaea3SApple OSS Distributions 
76*5e3eaea3SApple OSS Distributions #define MAX_REPLAY_WINDOWS 4
77*5e3eaea3SApple OSS Distributions #define PER_TC_REPLAY_WINDOW_RANGE ((1ULL << 32) / MAX_REPLAY_WINDOWS)
78*5e3eaea3SApple OSS Distributions #define PER_TC_REPLAY_WINDOW_SN_SHIFT 30
79*5e3eaea3SApple OSS Distributions 
80*5e3eaea3SApple OSS Distributions /* Security Association */
81*5e3eaea3SApple OSS Distributions struct secasvar {
82*5e3eaea3SApple OSS Distributions 	LIST_ENTRY(secasvar) chain;
83*5e3eaea3SApple OSS Distributions 	LIST_ENTRY(secasvar) spihash;
84*5e3eaea3SApple OSS Distributions 	int refcnt;                     /* reference count */
85*5e3eaea3SApple OSS Distributions 	u_int8_t state;                 /* Status of this Association */
86*5e3eaea3SApple OSS Distributions 
87*5e3eaea3SApple OSS Distributions 	u_int8_t alg_auth;              /* Authentication Algorithm Identifier*/
88*5e3eaea3SApple OSS Distributions 	u_int8_t alg_enc;               /* Cipher Algorithm Identifier */
89*5e3eaea3SApple OSS Distributions 	u_int32_t spi;                  /* SPI Value, network byte order */
90*5e3eaea3SApple OSS Distributions 	u_int32_t flags;                /* holder for SADB_KEY_FLAGS */
91*5e3eaea3SApple OSS Distributions 	u_int16_t flags2;               /* holder for SADB_SA2_KEY_FLAGS */
92*5e3eaea3SApple OSS Distributions 
93*5e3eaea3SApple OSS Distributions 	struct sadb_key *key_auth;      /* Key for Authentication */
94*5e3eaea3SApple OSS Distributions 	struct sadb_key *key_enc;       /* Key for Encryption */
95*5e3eaea3SApple OSS Distributions 	caddr_t iv;                     /* Initilization Vector */
96*5e3eaea3SApple OSS Distributions 	u_int ivlen;                    /* length of IV */
97*5e3eaea3SApple OSS Distributions 	void *sched;                    /* intermediate encryption key */
98*5e3eaea3SApple OSS Distributions 	size_t schedlen;
99*5e3eaea3SApple OSS Distributions 
100*5e3eaea3SApple OSS Distributions 	struct secreplay *replay[MAX_REPLAY_WINDOWS]; /* replay prevention */
101*5e3eaea3SApple OSS Distributions 
102*5e3eaea3SApple OSS Distributions 	u_int64_t created;              /* for lifetime */
103*5e3eaea3SApple OSS Distributions 
104*5e3eaea3SApple OSS Distributions 	struct sadb_lifetime *lft_c;    /* CURRENT lifetime, it's constant. */
105*5e3eaea3SApple OSS Distributions 	struct sadb_lifetime *lft_h;    /* HARD lifetime */
106*5e3eaea3SApple OSS Distributions 	struct sadb_lifetime *lft_s;    /* SOFT lifetime */
107*5e3eaea3SApple OSS Distributions 
108*5e3eaea3SApple OSS Distributions 	struct socket *so; /* Associated socket */
109*5e3eaea3SApple OSS Distributions 
110*5e3eaea3SApple OSS Distributions 	u_int32_t seq;                  /* sequence number */
111*5e3eaea3SApple OSS Distributions 	pid_t pid;                      /* message's pid */
112*5e3eaea3SApple OSS Distributions 
113*5e3eaea3SApple OSS Distributions 	struct secashead *sah;          /* back pointer to the secashead */
114*5e3eaea3SApple OSS Distributions 
115*5e3eaea3SApple OSS Distributions 	/* Nat Traversal related bits */
116*5e3eaea3SApple OSS Distributions 	u_int64_t       natt_last_activity;
117*5e3eaea3SApple OSS Distributions 	u_int16_t       remote_ike_port;
118*5e3eaea3SApple OSS Distributions 	u_int16_t       natt_encapsulated_src_port;     /* network byte order */
119*5e3eaea3SApple OSS Distributions 	u_int16_t       natt_interval; /* Interval in seconds */
120*5e3eaea3SApple OSS Distributions 	u_int16_t       natt_offload_interval; /* Hardware Offload Interval in seconds */
121*5e3eaea3SApple OSS Distributions 	/*
122*5e3eaea3SApple OSS Distributions 	 * Globally unique flow identifier for the SA.
123*5e3eaea3SApple OSS Distributions 	 * Added on outgoing packets by the IPSec driver.
124*5e3eaea3SApple OSS Distributions 	 */
125*5e3eaea3SApple OSS Distributions 	uint32_t        flowid;
126*5e3eaea3SApple OSS Distributions 
127*5e3eaea3SApple OSS Distributions 	u_int8_t        always_expire; /* Send expire/delete messages even if unused */
128*5e3eaea3SApple OSS Distributions };
129*5e3eaea3SApple OSS Distributions 
130*5e3eaea3SApple OSS Distributions /* replay prevention */
131*5e3eaea3SApple OSS Distributions struct secreplay {
132*5e3eaea3SApple OSS Distributions 	u_int8_t wsize;         /* window size */
133*5e3eaea3SApple OSS Distributions 	u_int32_t count;        /* used by sender/receiver */
134*5e3eaea3SApple OSS Distributions 	u_int32_t seq;          /* used by sender/receiver */
135*5e3eaea3SApple OSS Distributions 	u_int32_t lastseq;      /* used by sender/receiver */
136*5e3eaea3SApple OSS Distributions 	caddr_t bitmap;         /* used by receiver */
137*5e3eaea3SApple OSS Distributions 	int overflow;           /* overflow flag */
138*5e3eaea3SApple OSS Distributions };
139*5e3eaea3SApple OSS Distributions 
140*5e3eaea3SApple OSS Distributions /* socket table due to send PF_KEY messages. */
141*5e3eaea3SApple OSS Distributions struct secreg {
142*5e3eaea3SApple OSS Distributions 	LIST_ENTRY(secreg) chain;
143*5e3eaea3SApple OSS Distributions 
144*5e3eaea3SApple OSS Distributions 	struct socket *so;
145*5e3eaea3SApple OSS Distributions };
146*5e3eaea3SApple OSS Distributions 
147*5e3eaea3SApple OSS Distributions #ifndef IPSEC_NONBLOCK_ACQUIRE
148*5e3eaea3SApple OSS Distributions /* acquiring list table. */
149*5e3eaea3SApple OSS Distributions struct secacq {
150*5e3eaea3SApple OSS Distributions 	LIST_ENTRY(secacq) chain;
151*5e3eaea3SApple OSS Distributions 
152*5e3eaea3SApple OSS Distributions 	struct secasindex saidx;
153*5e3eaea3SApple OSS Distributions 
154*5e3eaea3SApple OSS Distributions 	u_int32_t seq;          /* sequence number */
155*5e3eaea3SApple OSS Distributions 	u_int64_t created;      /* for lifetime */
156*5e3eaea3SApple OSS Distributions 	int count;              /* for lifetime */
157*5e3eaea3SApple OSS Distributions };
158*5e3eaea3SApple OSS Distributions #endif
159*5e3eaea3SApple OSS Distributions 
160*5e3eaea3SApple OSS Distributions /* Sensitivity Level Specification */
161*5e3eaea3SApple OSS Distributions /* nothing */
162*5e3eaea3SApple OSS Distributions 
163*5e3eaea3SApple OSS Distributions #define SADB_KILL_INTERVAL      600     /* six seconds */
164*5e3eaea3SApple OSS Distributions 
165*5e3eaea3SApple OSS Distributions struct key_cb {
166*5e3eaea3SApple OSS Distributions 	int key_count;
167*5e3eaea3SApple OSS Distributions 	int any_count;
168*5e3eaea3SApple OSS Distributions };
169*5e3eaea3SApple OSS Distributions 
170*5e3eaea3SApple OSS Distributions /* secpolicy */
171*5e3eaea3SApple OSS Distributions extern struct secpolicy *keydb_newsecpolicy(void);
172*5e3eaea3SApple OSS Distributions extern void keydb_delsecpolicy(struct secpolicy *);
173*5e3eaea3SApple OSS Distributions /* secashead */
174*5e3eaea3SApple OSS Distributions extern struct secashead *keydb_newsecashead(void);
175*5e3eaea3SApple OSS Distributions // extern void keydb_delsecashead(struct secashead *);	// not used
176*5e3eaea3SApple OSS Distributions /* secasvar */
177*5e3eaea3SApple OSS Distributions // extern struct secasvar *keydb_newsecasvar(void);		// not used
178*5e3eaea3SApple OSS Distributions // extern void keydb_refsecasvar(struct secasvar *);	// not used
179*5e3eaea3SApple OSS Distributions // extern void keydb_freesecasvar(struct secasvar *);	// not used
180*5e3eaea3SApple OSS Distributions /* secreplay */
181*5e3eaea3SApple OSS Distributions extern struct secreplay *keydb_newsecreplay(u_int8_t);
182*5e3eaea3SApple OSS Distributions extern void keydb_delsecreplay(struct secreplay *);
183*5e3eaea3SApple OSS Distributions /* secreg */
184*5e3eaea3SApple OSS Distributions // extern struct secreg *keydb_newsecreg(void);			// not used
185*5e3eaea3SApple OSS Distributions // extern void keydb_delsecreg(struct secreg *);		// not used
186*5e3eaea3SApple OSS Distributions 
187*5e3eaea3SApple OSS Distributions #endif /* BSD_KERNEL_PRIVATE */
188*5e3eaea3SApple OSS Distributions 
189*5e3eaea3SApple OSS Distributions #endif /* _NETKEY_KEYDB_H_ */
190