aboutsummaryrefslogtreecommitdiff
path: root/sys/net/pfkeyv2.h
blob: 8f2cace27c1bb9d3c574c48da550d167c0ac258d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/*
 * 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.
 *
 * $FreeBSD$
 */

/* $Id: keyv2.h,v 1.1.6.1.6.4 1999/06/08 05:33:39 itojun Exp $ */

/*
 * This file has been derived rfc 2367,
 * And added some flags of SADB_KEY_FLAGS_ as SADB_X_EXT_.
 *	sakane@ydc.co.jp
 */

#ifndef _NET_PFKEYV2_H_
#define	_NET_PFKEYV2_H_

/*
This file defines structures and symbols for the PF_KEY Version 2
key management interface. It was written at the U.S. Naval Research
Laboratory. This file is in the public domain. The authors ask that
you leave this credit intact on any copies of this file.
*/
#ifndef __PFKEY_V2_H
#define	__PFKEY_V2_H 1

#define	PF_KEY_V2 2
#define	PFKEYV2_REVISION        199806L

#define	SADB_RESERVED    0
#define	SADB_GETSPI      1
#define	SADB_UPDATE      2
#define	SADB_ADD         3
#define	SADB_DELETE      4
#define	SADB_GET         5
#define	SADB_ACQUIRE     6
#define	SADB_REGISTER    7
#define	SADB_EXPIRE      8
#define	SADB_FLUSH       9
#define	SADB_DUMP        10
#define	SADB_X_PROMISC   11
#define	SADB_X_PCHANGE   12

#define	SADB_X_SPDUPDATE  13	/* not yet */
#define	SADB_X_SPDADD     14
#define	SADB_X_SPDDELETE  15
#define	SADB_X_SPDGET     16	/* not yet */
#define	SADB_X_SPDACQUIRE 17	/* not yet */
#define	SADB_X_SPDDUMP    18
#define	SADB_X_SPDFLUSH   19
#define	SADB_MAX          19

struct sadb_msg {
	u_int8_t	sadb_msg_version;
	u_int8_t	sadb_msg_type;
	u_int8_t	sadb_msg_errno;
	u_int8_t	sadb_msg_satype;
	u_int16_t	sadb_msg_len;
	u_int8_t	sadb_msg_mode;	/* XXX */
	u_int8_t	sadb_msg_reserved;
	u_int32_t	sadb_msg_seq;
	u_int32_t	sadb_msg_pid;
};

struct sadb_ext {
	u_int16_t	sadb_ext_len;
	u_int16_t	sadb_ext_type;
};

struct sadb_sa {
	u_int16_t	sadb_sa_len;
	u_int16_t	sadb_sa_exttype;
	u_int32_t	sadb_sa_spi;
	u_int8_t	sadb_sa_replay;
	u_int8_t	sadb_sa_state;
	u_int8_t	sadb_sa_auth;
	u_int8_t	sadb_sa_encrypt;
	u_int32_t	sadb_sa_flags;
};

struct sadb_lifetime {
	u_int16_t	sadb_lifetime_len;
	u_int16_t	sadb_lifetime_exttype;
	u_int32_t	sadb_lifetime_allocations;
	u_int64_t	sadb_lifetime_bytes;
	u_int64_t	sadb_lifetime_addtime;
	u_int64_t	sadb_lifetime_usetime;
};

struct sadb_address {
	u_int16_t	sadb_address_len;
	u_int16_t	sadb_address_exttype;
	u_int8_t	sadb_address_proto;
	u_int8_t	sadb_address_prefixlen;
	u_int16_t	sadb_address_reserved;
};

struct sadb_key {
	u_int16_t	sadb_key_len;
	u_int16_t	sadb_key_exttype;
	u_int16_t	sadb_key_bits;
	u_int16_t	sadb_key_reserved;
};

struct sadb_ident {
	u_int16_t	sadb_ident_len;
	u_int16_t	sadb_ident_exttype;
	u_int16_t	sadb_ident_type;
	u_int16_t	sadb_ident_reserved;
	u_int64_t	sadb_ident_id;
};
/* in order to use to divide sadb_ident.sadb_ident_id */
union sadb_x_ident_id {
	u_int64_t	sadb_x_ident_id;
	struct	_sadb_x_ident_id_addr {
		u_int16_t	prefix;
		u_int16_t	ul_proto;
		u_int32_t	reserved;
	} sadb_x_ident_id_addr;
};

struct sadb_sens {
	u_int16_t	sadb_sens_len;
	u_int16_t	sadb_sens_exttype;
	u_int32_t	sadb_sens_dpd;
	u_int8_t	sadb_sens_sens_level;
	u_int8_t	sadb_sens_sens_len;
	u_int8_t	sadb_sens_integ_level;
	u_int8_t	sadb_sens_integ_len;
	u_int32_t	sadb_sens_reserved;
};

struct sadb_prop {
	u_int16_t	sadb_prop_len;
	u_int16_t	sadb_prop_exttype;
	u_int8_t	sadb_prop_replay;
	u_int8_t	sadb_prop_reserved[3];
};

struct sadb_comb {
	u_int8_t	sadb_comb_auth;
	u_int8_t	sadb_comb_encrypt;
	u_int16_t	sadb_comb_flags;
	u_int16_t	sadb_comb_auth_minbits;
	u_int16_t	sadb_comb_auth_maxbits;
	u_int16_t	sadb_comb_encrypt_minbits;
	u_int16_t	sadb_comb_encrypt_maxbits;
	u_int32_t	sadb_comb_reserved;
	u_int32_t	sadb_comb_soft_allocations;
	u_int32_t	sadb_comb_hard_allocations;
	u_int64_t	sadb_comb_soft_bytes;
	u_int64_t	sadb_comb_hard_bytes;
	u_int64_t	sadb_comb_soft_addtime;
	u_int64_t	sadb_comb_hard_addtime;
	u_int64_t	sadb_comb_soft_usetime;
	u_int64_t	sadb_comb_hard_usetime;
};

struct sadb_supported {
	u_int16_t	sadb_supported_len;
	u_int16_t	sadb_supported_exttype;
	u_int32_t	sadb_supported_reserved;
};

struct sadb_alg {
	u_int8_t	sadb_alg_id;
	u_int8_t	sadb_alg_ivlen;
	u_int16_t	sadb_alg_minbits;
	u_int16_t	sadb_alg_maxbits;
	u_int16_t	sadb_alg_reserved;
};

struct sadb_spirange {
	u_int16_t	sadb_spirange_len;
	u_int16_t	sadb_spirange_exttype;
	u_int32_t	sadb_spirange_min;
	u_int32_t	sadb_spirange_max;
	u_int32_t	sadb_spirange_reserved;
};

struct sadb_x_kmprivate {
	u_int16_t	sadb_x_kmprivate_len;
	u_int16_t	sadb_x_kmprivate_exttype;
	u_int32_t	sadb_x_kmprivate_reserved;
};

/* XXX Policy Extension */
/* sizeof(struct sadb_x_policy) == 8 */
struct sadb_x_policy {
	u_int16_t	sadb_x_policy_len;
	u_int16_t	sadb_x_policy_exttype;
	/* See policy type of ipsec.h */
	u_int16_t	sadb_x_policy_type;
	u_int8_t	sadb_x_policy_dir;	/* direction, see ipsec.h */
	u_int8_t	sadb_x_policy_reserved;
};
/*
 * When policy_type == IPSEC, it is followed by some of
 * the ipsec policy request.
 * [total length of ipsec policy requests]
 *	= (sadb_x_policy_len * sizeof(uint64_t) - sizeof(struct sadb_x_policy))
 */

/* XXX IPsec Policy Request Extension */
/*
 * This structure is aligned 8 bytes.
 */
struct sadb_x_ipsecrequest {
	u_int16_t	sadb_x_ipsecrequest_len;
				/* structure length aligned to 8 bytes.
				 * This value is true length of bytes.
				 * Not in units of 64 bits. */
	u_int16_t	sadb_x_ipsecrequest_proto;	/* See ipsec.h */
	/* See ipsec.h. Not SADB_SATYPE_XX */
	u_int16_t	sadb_x_ipsecrequest_mode;
	u_int16_t	sadb_x_ipsecrequest_level;	/* See ipsec.h */

	/*
	 * followed by source IP address of SA, and immediately followed by
	 * destination IP address of SA.  These encoded into two of sockaddr
	 * structure without any padding.  Must set each sa_len exactly.
	 * Each of length of the sockaddr structure are not aligned to 64bits,
	 * but sum of x_request and addresses is aligned to 64bits.
	 */
};

#define	SADB_EXT_RESERVED             0
#define	SADB_EXT_SA                   1
#define	SADB_EXT_LIFETIME_CURRENT     2
#define	SADB_EXT_LIFETIME_HARD        3
#define	SADB_EXT_LIFETIME_SOFT        4
#define	SADB_EXT_ADDRESS_SRC          5
#define	SADB_EXT_ADDRESS_DST          6
#define	SADB_EXT_ADDRESS_PROXY        7
#define	SADB_EXT_KEY_AUTH             8
#define	SADB_EXT_KEY_ENCRYPT          9
#define	SADB_EXT_IDENTITY_SRC         10
#define	SADB_EXT_IDENTITY_DST         11
#define	SADB_EXT_SENSITIVITY          12
#define	SADB_EXT_PROPOSAL             13
#define	SADB_EXT_SUPPORTED_AUTH       14
#define	SADB_EXT_SUPPORTED_ENCRYPT    15
#define	SADB_EXT_SPIRANGE             16
#define	SADB_X_EXT_KMPRIVATE          17
#define	SADB_X_EXT_POLICY             18
#define	SADB_EXT_MAX                  18

#define	SADB_SATYPE_UNSPEC	0
#define	SADB_SATYPE_AH		2
#define	SADB_SATYPE_ESP		3
#define	SADB_SATYPE_RSVP	5
#define	SADB_SATYPE_OSPFV2	6
#define	SADB_SATYPE_RIPV2	7
#define	SADB_SATYPE_MIP		8
#define	SADB_X_SATYPE_IPCOMP	9
#define	SADB_SATYPE_MAX		9

#define	SADB_SASTATE_LARVAL   0
#define	SADB_SASTATE_MATURE   1
#define	SADB_SASTATE_DYING    2
#define	SADB_SASTATE_DEAD     3
#define	SADB_SASTATE_MAX      3	
#define	SADB_SAFLAGS_PFS      1

#define	SADB_AALG_NONE          0
#define	SADB_AALG_MD5HMAC       1	/* 2 */
#define	SADB_AALG_SHA1HMAC      2	/* 3 */
#define	SADB_AALG_MD5           3       /* Keyed MD5 */
#define	SADB_AALG_SHA           4       /* Keyed SHA */
#define	SADB_AALG_NULL          5       /* null authentication */
#define	SADB_AALG_MAX           6	

#define	SADB_EALG_NONE          0
#define	SADB_EALG_DESCBC        1	/* 2 */
#define	SADB_EALG_3DESCBC       2	/* 3 */
#define	SADB_EALG_NULL          3	/* 11 */
#define	SADB_EALG_BLOWFISHCBC   4
#define	SADB_EALG_CAST128CBC    5
#define	SADB_EALG_RC5CBC        6
#define	SADB_EALG_MAX           7

/*nonstandard */
#define	SADB_X_CALG_NONE	0
#define	SADB_X_CALG_OUI		1
#define	SADB_X_CALG_DEFLATE	2
#define	SADB_X_CALG_LZS		3

#define	SADB_IDENTTYPE_RESERVED   0
#define	SADB_IDENTTYPE_PREFIX     1
#define	SADB_IDENTTYPE_FQDN       2
#define	SADB_IDENTTYPE_USERFQDN   3
#define	SADB_X_IDENTTYPE_ADDR     4
#define	SADB_IDENTTYPE_MAX        4

/* `flags' in sadb_sa structure holds followings */
#define	SADB_X_EXT_NONE		0x0000	/* i.e. new format. */
#define	SADB_X_EXT_OLD		0x0001	/* old format. */

#define	SADB_X_EXT_IV4B		0x0010	/* IV length of 4 bytes in use */
#define	SADB_X_EXT_DERIV	0x0020	/* DES derived */
#define	SADB_X_EXT_CYCSEQ	0x0040	/* allowing to cyclic sequence. */

	/* three of followings are exclusive flags each them */
#define	SADB_X_EXT_PSEQ		0x0000	/* sequencial padding for ESP */
#define	SADB_X_EXT_PRAND	0x0100	/* random padding for ESP */
#define	SADB_X_EXT_PZERO	0x0200	/* zero padding for ESP */
#define	SADB_X_EXT_PMASK	0x0300	/* mask for padding flag */

#define	SADB_X_EXT_RAWCPI	0x0080	/* use well known CPI (IPComp) */

#define	SADB_KEY_FLAGS_MAX	0x0fff

/* SPI size for PF_KEYv2 */
#define	PFKEY_SPI_SIZE	sizeof(u_int32_t)

/* Identifier for menber of lifetime structure */
#define	SADB_X_LIFETIME_ALLOCATIONS	0
#define	SADB_X_LIFETIME_BYTES		1
#define	SADB_X_LIFETIME_ADDTIME		2
#define	SADB_X_LIFETIME_USETIME		3

/* The rate for SOFT lifetime against HARD one. */
#define	PFKEY_SOFT_LIFETIME_RATE	80

/* Utilities */
#define	PFKEY_ALIGN8(a) (1 + (((a) - 1) | (8 - 1)))
#define	PFKEY_EXTLEN(msg) \
	PFKEY_UNUNIT64(((struct sadb_ext *)(msg))->sadb_ext_len)
#define	PFKEY_ADDR_PREFIX(ext) \
	(((struct sadb_address *)(ext))->sadb_address_prefixlen)
#define	PFKEY_ADDR_PROTO(ext) \
	(((struct sadb_address *)(ext))->sadb_address_proto)
#define	PFKEY_ADDR_SADDR(ext) \
	((struct sockaddr *)((caddr_t)(ext) + sizeof(struct sadb_address)))

/* in 64bits */
#define	PFKEY_UNUNIT64(a)	((a) << 3)
#define	PFKEY_UNIT64(a)		((a) >> 3)

#ifndef _KERNEL
extern void	pfkey_sadump(struct sadb_msg *m);
extern void	pfkey_spdump(struct sadb_msg *m);

struct	sockaddr;
int	ipsec_check_keylen __P((u_int supported, u_int alg_id, u_int keylen));
u_int	pfkey_set_softrate __P((u_int type, u_int rate));
u_int	pfkey_get_softrate __P((u_int type));
int	pfkey_send_getspi __P((int so, u_int satype, u_int mode,
			       struct sockaddr *src, struct sockaddr *dst,
			       u_int32_t min, u_int32_t max, u_int32_t seq));
int	pfkey_send_update __P((int so, u_int satype, u_int mode,
			       struct sockaddr *src, struct sockaddr *dst,
			       u_int32_t spi, u_int wsize, caddr_t keymat,
			       u_int e_type, u_int e_keylen, u_int a_type,
			       u_int a_keylen, u_int flags, u_int32_t l_alloc,
			       u_int64_t l_bytes, u_int64_t l_addtime,
			       u_int64_t l_usetime, u_int32_t seq));
int	pfkey_send_add __P((int so, u_int satype, u_int mode,
			    struct sockaddr *src, struct sockaddr *dst,
			    u_int32_t spi, u_int wsize,	caddr_t keymat,
			    u_int e_type, u_int e_keylen, u_int a_type,
			    u_int a_keylen, u_int flags, u_int32_t l_alloc,
			    u_int64_t l_bytes, u_int64_t l_addtime,
			    u_int64_t l_usetime, u_int32_t seq));
int	pfkey_send_delete __P((int so, u_int satype, u_int mode,
			       struct sockaddr *src, struct sockaddr *dst,
			       u_int32_t spi));
int	pfkey_send_get __P((int so, u_int satype, u_int mode,
			    struct sockaddr *src, struct sockaddr *dst,
			    u_int32_t spi));
int	pfkey_send_register __P((int so, u_int satype));
int	pfkey_recv_register __P((int so));
int	pfkey_send_flush __P((int so, u_int satype));
int	pfkey_send_dump __P((int so, u_int satype));
int	pfkey_send_promisc_toggle __P((int so, int flag));
int	pfkey_send_spdadd __P((int so, struct sockaddr *src, u_int prefs,
			       struct sockaddr *dst, u_int prefd, u_int proto,
			       caddr_t policy, int policylen, u_int32_t seq));
int	pfkey_send_spddelete __P((int so, struct sockaddr *src, u_int prefs,
	struct sockaddr *dst, u_int prefd, u_int proto, u_int32_t seq));
int	pfkey_send_spdflush __P((int so));
int	pfkey_send_spddump __P((int so));

int	pfkey_open __P((void));
void	pfkey_close __P((int so));
struct	 sadb_msg *pfkey_recv __P((int so));
int	pfkey_send __P((int so, struct sadb_msg *msg, int len));
int	pfkey_align __P((struct sadb_msg *msg, caddr_t *mhp));
int	pfkey_check __P((caddr_t *mhp));

#endif /*!_KERNEL*/

#endif /* __PFKEY_V2_H */

#endif /* _NET_PFKEYV2_H_ */