1 /* $FreeBSD: src/sys/netipsec/ipsec.h,v 1.2.4.1 2003/01/24 05:11:35 sam Exp $ */
2 /* $DragonFly: src/sys/netproto/ipsec/ipsec.h,v 1.5 2006/12/22 23:57:54 swildner Exp $ */
3 /* $KAME: ipsec.h,v 1.53 2001/11/20 08:32:38 itojun Exp $ */
6 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the project nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * IPsec controller part.
38 #ifndef _NETIPSEC_IPSEC_H_
39 #define _NETIPSEC_IPSEC_H_
41 #if defined(_KERNEL) && !defined(_LKM) && !defined(KLD_MODULE)
43 #include "opt_ipsec.h"
46 #include <net/pfkeyv2.h>
52 * Security Policy Index
53 * Ensure that both address families in the "src" and "dst" are same.
54 * When the value of the ul_proto is ICMPv6, the port field in "src"
55 * specifies ICMPv6 type, and the port field in "dst" specifies ICMPv6 code.
57 struct secpolicyindex
{
58 u_int8_t dir
; /* direction of packet flow, see blow */
59 union sockaddr_union src
; /* IP src address for SP */
60 union sockaddr_union dst
; /* IP dst address for SP */
61 u_int8_t prefs
; /* prefix length in bits for src */
62 u_int8_t prefd
; /* prefix length in bits for dst */
63 u_int16_t ul_proto
; /* upper layer Protocol */
72 /* Security Policy Data Base */
74 LIST_ENTRY(secpolicy
) chain
;
76 u_int refcnt
; /* reference count */
77 struct secpolicyindex spidx
; /* selector */
78 u_int32_t id
; /* It's unique number on the system. */
79 u_int state
; /* 0: dead, others: alive */
80 #define IPSEC_SPSTATE_DEAD 0
81 #define IPSEC_SPSTATE_ALIVE 1
83 u_int policy
; /* DISCARD, NONE or IPSEC, see keyv2.h */
84 struct ipsecrequest
*req
;
85 /* pointer to the ipsec request tree, */
86 /* if policy == IPSEC else this value == NULL.*/
90 * the policy can be used without limitiation if both lifetime and
92 * "lifetime" is passed by sadb_lifetime.sadb_lifetime_addtime.
93 * "validtime" is passed by sadb_lifetime.sadb_lifetime_usetime.
95 long created
; /* time created the policy */
96 long lastused
; /* updated every when kernel sends a packet */
97 long lifetime
; /* duration of the lifetime of this policy */
98 long validtime
; /* duration this policy is valid without use */
101 /* Request for IPsec */
102 struct ipsecrequest
{
103 struct ipsecrequest
*next
;
104 /* pointer to next structure */
105 /* If NULL, it means the end of chain. */
106 struct secasindex saidx
;/* hint for search proper SA */
107 /* if __ss_len == 0 then no address specified.*/
108 u_int level
; /* IPsec level defined below. */
110 struct secasvar
*sav
; /* place holder of SA for use */
111 struct secpolicy
*sp
; /* back pointer to SP */
114 /* security policy in PCB */
116 struct secpolicy
*sp_in
;
117 struct secpolicy
*sp_out
;
118 int priv
; /* privileged socket ? */
121 /* SP acquiring list table. */
123 LIST_ENTRY(secspacq
) chain
;
125 struct secpolicyindex spidx
;
127 long created
; /* for lifetime */
128 int count
; /* for lifetime */
129 /* XXX: here is mbuf place holder to be sent ? */
133 /* according to IANA assignment, port 0x0000 and proto 0xff are reserved. */
134 #define IPSEC_PORT_ANY 0
135 #define IPSEC_ULPROTO_ANY 255
136 #define IPSEC_PROTO_ANY 255
138 /* mode of security protocol */
139 /* NOTE: DON'T use IPSEC_MODE_ANY at SPD. It's only use in SAD */
140 #define IPSEC_MODE_ANY 0 /* i.e. wildcard. */
141 #define IPSEC_MODE_TRANSPORT 1
142 #define IPSEC_MODE_TUNNEL 2
145 * Direction of security policy.
146 * NOTE: Since INVALID is used just as flag.
147 * The other are used for loop counter too.
149 #define IPSEC_DIR_ANY 0
150 #define IPSEC_DIR_INBOUND 1
151 #define IPSEC_DIR_OUTBOUND 2
152 #define IPSEC_DIR_MAX 3
153 #define IPSEC_DIR_INVALID 4
157 * IPSEC, ENTRUST and BYPASS are allowed for setsockopt() in PCB,
158 * DISCARD, IPSEC and NONE are allowed for setkey() in SPD.
159 * DISCARD and NONE are allowed for system default.
161 #define IPSEC_POLICY_DISCARD 0 /* discarding packet */
162 #define IPSEC_POLICY_NONE 1 /* through IPsec engine */
163 #define IPSEC_POLICY_IPSEC 2 /* do IPsec */
164 #define IPSEC_POLICY_ENTRUST 3 /* consulting SPD if present. */
165 #define IPSEC_POLICY_BYPASS 4 /* only for privileged socket. */
167 /* Security protocol level */
168 #define IPSEC_LEVEL_DEFAULT 0 /* reference to system default */
169 #define IPSEC_LEVEL_USE 1 /* use SA if present. */
170 #define IPSEC_LEVEL_REQUIRE 2 /* require SA. */
171 #define IPSEC_LEVEL_UNIQUE 3 /* unique SA. */
173 #define IPSEC_MANUAL_REQID_MAX 0x3fff
175 * if security policy level == unique, this id
176 * indicate to a relative SA for use, else is
178 * 1 - 0x3fff are reserved for manual keying.
179 * 0 are reserved for above reason. Others is
181 * Note that this id doesn't identify SA
184 #define IPSEC_REPLAYWSIZE 32
186 /* old statistics for ipsec processing */
188 u_quad_t in_success
; /* succeeded inbound process */
190 /* security policy violation for inbound process */
191 u_quad_t in_nosa
; /* inbound SA is unavailable */
192 u_quad_t in_inval
; /* inbound processing failed due to EINVAL */
193 u_quad_t in_nomem
; /* inbound processing failed due to ENOBUFS */
194 u_quad_t in_badspi
; /* failed getting a SPI */
195 u_quad_t in_ahreplay
; /* AH replay check failed */
196 u_quad_t in_espreplay
; /* ESP replay check failed */
197 u_quad_t in_ahauthsucc
; /* AH authentication success */
198 u_quad_t in_ahauthfail
; /* AH authentication failure */
199 u_quad_t in_espauthsucc
; /* ESP authentication success */
200 u_quad_t in_espauthfail
; /* ESP authentication failure */
201 u_quad_t in_esphist
[256];
202 u_quad_t in_ahhist
[256];
203 u_quad_t in_comphist
[256];
204 u_quad_t out_success
; /* succeeded outbound process */
206 /* security policy violation for outbound process */
207 u_quad_t out_nosa
; /* outbound SA is unavailable */
208 u_quad_t out_inval
; /* outbound process failed due to EINVAL */
209 u_quad_t out_nomem
; /* inbound processing failed due to ENOBUFS */
210 u_quad_t out_noroute
; /* there is no route */
211 u_quad_t out_esphist
[256];
212 u_quad_t out_ahhist
[256];
213 u_quad_t out_comphist
[256];
216 /* statistics for ipsec processing */
217 struct newipsecstat
{
218 u_int32_t ips_in_polvio
; /* input: sec policy violation */
219 u_int32_t ips_out_polvio
; /* output: sec policy violation */
220 u_int32_t ips_out_nosa
; /* output: SA unavailable */
221 u_int32_t ips_out_nomem
; /* output: no memory available */
222 u_int32_t ips_out_noroute
; /* output: no route available */
223 u_int32_t ips_out_inval
; /* output: generic error */
224 u_int32_t ips_out_bundlesa
; /* output: bundled SA processed */
225 u_int32_t ips_mbcoalesced
; /* mbufs coalesced during clone */
226 u_int32_t ips_clcoalesced
; /* clusters coalesced during clone */
227 u_int32_t ips_clcopied
; /* clusters copied during clone */
228 u_int32_t ips_mbinserted
; /* mbufs inserted during makespace */
230 * Temporary statistics for performance analysis.
232 /* See where ESP/AH/IPCOMP header land in mbuf on input */
233 u_int32_t ips_input_front
;
234 u_int32_t ips_input_middle
;
235 u_int32_t ips_input_end
;
239 * Definitions for IPsec & Key sysctl operations.
242 * Names for IPsec & Key sysctl objects
244 #define IPSECCTL_STATS 1 /* stats */
245 #define IPSECCTL_DEF_POLICY 2
246 #define IPSECCTL_DEF_ESP_TRANSLEV 3 /* int; ESP transport mode */
247 #define IPSECCTL_DEF_ESP_NETLEV 4 /* int; ESP tunnel mode */
248 #define IPSECCTL_DEF_AH_TRANSLEV 5 /* int; AH transport mode */
249 #define IPSECCTL_DEF_AH_NETLEV 6 /* int; AH tunnel mode */
250 #if 0 /* obsolete, do not reuse */
251 #define IPSECCTL_INBOUND_CALL_IKE 7
253 #define IPSECCTL_AH_CLEARTOS 8
254 #define IPSECCTL_AH_OFFSETMASK 9
255 #define IPSECCTL_DFBIT 10
256 #define IPSECCTL_ECN 11
257 #define IPSECCTL_DEBUG 12
258 #define IPSECCTL_ESP_RANDPAD 13
259 #define IPSECCTL_MAXID 14
261 #define IPSECCTL_NAMES { \
264 { "def_policy", CTLTYPE_INT }, \
265 { "esp_trans_deflev", CTLTYPE_INT }, \
266 { "esp_net_deflev", CTLTYPE_INT }, \
267 { "ah_trans_deflev", CTLTYPE_INT }, \
268 { "ah_net_deflev", CTLTYPE_INT }, \
270 { "ah_cleartos", CTLTYPE_INT }, \
271 { "ah_offsetmask", CTLTYPE_INT }, \
272 { "dfbit", CTLTYPE_INT }, \
273 { "ecn", CTLTYPE_INT }, \
274 { "debug", CTLTYPE_INT }, \
275 { "esp_randpad", CTLTYPE_INT }, \
278 #define IPSEC6CTL_NAMES { \
281 { "def_policy", CTLTYPE_INT }, \
282 { "esp_trans_deflev", CTLTYPE_INT }, \
283 { "esp_net_deflev", CTLTYPE_INT }, \
284 { "ah_trans_deflev", CTLTYPE_INT }, \
285 { "ah_net_deflev", CTLTYPE_INT }, \
290 { "ecn", CTLTYPE_INT }, \
291 { "debug", CTLTYPE_INT }, \
292 { "esp_randpad", CTLTYPE_INT }, \
296 struct ipsec_output_state
{
299 struct sockaddr
*dst
;
302 struct ipsec_history
{
307 extern int ipsec_debug
;
309 extern struct newipsecstat newipsecstat
;
310 extern struct secpolicy ip4_def_policy
;
311 extern int ip4_esp_trans_deflev
;
312 extern int ip4_esp_net_deflev
;
313 extern int ip4_ah_trans_deflev
;
314 extern int ip4_ah_net_deflev
;
315 extern int ip4_ah_cleartos
;
316 extern int ip4_ah_offsetmask
;
317 extern int ip4_ipsec_dfbit
;
318 extern int ip4_ipsec_ecn
;
319 extern int ip4_esp_randpad
;
320 extern int crypto_support
;
322 #define ipseclog(x) do { if (ipsec_debug) log x; } while (0)
323 /* for openbsd compatibility */
324 #define DPRINTF(x) do { if (ipsec_debug) kprintf x; } while (0)
327 extern struct secpolicy
*ipsec_getpolicy (struct tdb_ident
*, u_int
);
329 extern struct secpolicy
*ipsec4_checkpolicy (struct mbuf
*, u_int
, u_int
,
330 int *, struct inpcb
*);
331 extern struct secpolicy
*ipsec_getpolicybysock(struct mbuf
*, u_int
,
332 struct inpcb
*, int *);
333 extern struct secpolicy
* ipsec_getpolicybyaddr(struct mbuf
*, u_int
,
337 extern int ipsec_init_policy (struct socket
*so
, struct inpcbpolicy
**);
338 extern int ipsec_copy_policy
339 (struct inpcbpolicy
*, struct inpcbpolicy
*);
340 extern u_int
ipsec_get_reqlevel (struct ipsecrequest
*);
341 extern int ipsec_in_reject (struct secpolicy
*, struct mbuf
*);
343 extern int ipsec4_set_policy (struct inpcb
*inp
, int optname
,
344 caddr_t request
, size_t len
, int priv
);
345 extern int ipsec4_get_policy (struct inpcb
*inpcb
, caddr_t request
,
346 size_t len
, struct mbuf
**mp
);
347 extern int ipsec4_delete_pcbpolicy (struct inpcb
*);
348 extern int ipsec4_in_reject (struct mbuf
*, struct inpcb
*);
352 extern int ipsec_chkreplay (u_int32_t
, struct secasvar
*);
353 extern int ipsec_updatereplay (u_int32_t
, struct secasvar
*);
355 extern size_t ipsec4_hdrsiz (struct mbuf
*, u_int
, struct inpcb
*);
356 extern size_t ipsec_hdrsiz_tcp (struct tcpcb
*);
358 union sockaddr_union
;
359 extern char * ipsec_address(union sockaddr_union
* sa
);
360 extern const char *ipsec_logsastr (struct secasvar
*);
362 extern void ipsec_dumpmbuf (struct mbuf
*);
365 extern int ipsec4_common_input(struct mbuf
*m
, ...);
366 extern int ipsec4_common_input_cb(struct mbuf
*m
, struct secasvar
*sav
,
367 int skip
, int protoff
, struct m_tag
*mt
);
368 extern int ipsec4_process_packet (struct mbuf
*, struct ipsecrequest
*,
370 extern int ipsec_process_done (struct mbuf
*, struct ipsecrequest
*);
372 extern struct mbuf
*ipsec_copypkt (struct mbuf
*);
374 extern void m_checkalignment(const char* where
, struct mbuf
*m0
,
376 extern struct mbuf
*m_clone(struct mbuf
*m0
);
377 extern struct mbuf
*m_makespace(struct mbuf
*m0
, int skip
, int hlen
, int *off
);
378 extern caddr_t
m_pad(struct mbuf
*m
, int n
);
379 extern int m_striphdr(struct mbuf
*m
, int skip
, int hlen
);
383 extern caddr_t
ipsec_set_policy (char *, int);
384 extern int ipsec_get_policylen (caddr_t
);
385 extern char *ipsec_dump_policy (caddr_t
, char *);
387 extern const char *ipsec_strerror (void);
388 #endif /* !_KERNEL */
390 #endif /* _NETIPSEC_IPSEC_H_ */