]> git.saurik.com Git - apple/xnu.git/blame - bsd/netinet6/ipsec.h
xnu-6153.141.1.tar.gz
[apple/xnu.git] / bsd / netinet6 / ipsec.h
CommitLineData
9bccf70c
A
1/* $FreeBSD: src/sys/netinet6/ipsec.h,v 1.4.2.2 2001/07/03 11:01:54 ume Exp $ */
2/* $KAME: ipsec.h,v 1.44 2001/03/23 08:08:47 itojun Exp $ */
1c79356b
A
3
4/*
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
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.
19 *
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
30 * SUCH DAMAGE.
31 */
32
33/*
34 * IPsec controller part.
35 */
36
37#ifndef _NETINET6_IPSEC_H_
38#define _NETINET6_IPSEC_H_
b0d623f7 39#include <sys/cdefs.h>
9bccf70c 40#include <sys/appleapiopts.h>
1c79356b
A
41
42#include <net/pfkeyv2.h>
cb323159 43#include <uuid/uuid.h>
39236c6e 44#ifdef BSD_KERNEL_PRIVATE
1c79356b 45#include <netkey/keydb.h>
39236c6e 46#include <netinet/ip_var.h>
1c79356b 47
94ff46dc
A
48#include <os/log.h>
49
cb323159 50/* lock for IPsec stats */
b0d623f7
A
51extern lck_grp_t *sadb_stat_mutex_grp;
52extern lck_grp_attr_t *sadb_stat_mutex_grp_attr;
53extern lck_attr_t *sadb_stat_mutex_attr;
54extern lck_mtx_t *sadb_stat_mutex;
2d21ac55
A
55
56
0a7de745 57#define IPSEC_STAT_INCREMENT(x) \
3e170ce0 58 OSIncrementAtomic64((SInt64 *)&x)
2d21ac55 59
39236c6e 60struct secpolicyaddrrange {
0a7de745
A
61 struct sockaddr_storage start; /* Start (low values) of address range */
62 struct sockaddr_storage end; /* End (high values) of address range */
39236c6e 63};
2d21ac55 64
1c79356b
A
65/*
66 * Security Policy Index
55e303ae
A
67 * Ensure that both address families in the "src" and "dst" are same.
68 * When the value of the ul_proto is ICMPv6, the port field in "src"
69 * specifies ICMPv6 type, and the port field in "dst" specifies ICMPv6 code.
1c79356b
A
70 */
71struct secpolicyindex {
cb323159 72 u_int8_t dir; /* direction of packet flow, see below */
0a7de745
A
73 struct sockaddr_storage src; /* IP src address for SP */
74 struct sockaddr_storage dst; /* IP dst address for SP */
75 u_int8_t prefs; /* prefix length in bits for src */
76 u_int8_t prefd; /* prefix length in bits for dst */
77 u_int16_t ul_proto; /* upper layer Protocol */
39236c6e 78 ifnet_t internal_if; /* Interface a matching packet is bound to */
0a7de745
A
79 struct secpolicyaddrrange src_range; /* IP src address range for SP */
80 struct secpolicyaddrrange dst_range; /* IP dst address range for SP */
1c79356b
A
81#ifdef notyet
82 uid_t uids;
83 uid_t uidd;
84 gid_t gids;
85 gid_t gidd;
86#endif
87};
88
89/* Security Policy Data Base */
90struct secpolicy {
91 LIST_ENTRY(secpolicy) chain;
92
0a7de745
A
93 int refcnt; /* reference count */
94 struct secpolicyindex spidx; /* selector */
95 u_int32_t id; /* It's unique number on the system. */
96 u_int state; /* 0: dead, others: alive */
97#define IPSEC_SPSTATE_DEAD 0
98#define IPSEC_SPSTATE_ALIVE 1
1c79356b 99
0a7de745 100 u_int policy; /* DISCARD, NONE or IPSEC, see keyv2.h */
1c79356b 101 struct ipsecrequest *req;
0a7de745
A
102 /* pointer to the ipsec request tree, */
103 /* if policy == IPSEC else this value == NULL.*/
9bccf70c 104
cb323159 105 ifnet_t ipsec_if; /* IPsec interface to use */
39236c6e 106 ifnet_t outgoing_if; /* Outgoing interface for encrypted traffic */
0a7de745 107
39236c6e 108 char disabled; /* Set to ignore policy */
0a7de745 109
9bccf70c
A
110 /*
111 * lifetime handler.
112 * the policy can be used without limitiation if both lifetime and
113 * validtime are zero.
114 * "lifetime" is passed by sadb_lifetime.sadb_lifetime_addtime.
115 * "validtime" is passed by sadb_lifetime.sadb_lifetime_usetime.
116 */
0a7de745
A
117 long created; /* time created the policy */
118 long lastused; /* updated every when kernel sends a packet */
119 long lifetime; /* duration of the lifetime of this policy */
120 long validtime; /* duration this policy is valid without use */
1c79356b
A
121};
122
123/* Request for IPsec */
124struct ipsecrequest {
125 struct ipsecrequest *next;
0a7de745
A
126 /* pointer to next structure */
127 /* If NULL, it means the end of chain. */
1c79356b 128 struct secasindex saidx;/* hint for search proper SA */
0a7de745
A
129 /* if __ss_len == 0 then no address specified.*/
130 u_int level; /* IPsec level defined below. */
1c79356b 131
0a7de745 132 struct secpolicy *sp; /* back pointer to SP */
1c79356b
A
133};
134
135/* security policy in PCB */
136struct inpcbpolicy {
137 struct secpolicy *sp_in;
138 struct secpolicy *sp_out;
0a7de745 139 int priv; /* privileged socket ? */
1c79356b
A
140};
141
142/* SP acquiring list table. */
143struct secspacq {
144 LIST_ENTRY(secspacq) chain;
145
146 struct secpolicyindex spidx;
147
0a7de745
A
148 long created; /* for lifetime */
149 int count; /* for lifetime */
1c79356b
A
150 /* XXX: here is mbuf place holder to be sent ? */
151};
39236c6e 152#endif /* BSD_KERNEL_PRIVATE */
1c79356b
A
153
154/* according to IANA assignment, port 0x0000 and proto 0xff are reserved. */
0a7de745
A
155#define IPSEC_PORT_ANY 0
156#define IPSEC_ULPROTO_ANY 255
157#define IPSEC_PROTO_ANY 255
1c79356b
A
158
159/* mode of security protocol */
160/* NOTE: DON'T use IPSEC_MODE_ANY at SPD. It's only use in SAD */
0a7de745
A
161#define IPSEC_MODE_ANY 0 /* i.e. wildcard. */
162#define IPSEC_MODE_TRANSPORT 1
163#define IPSEC_MODE_TUNNEL 2
1c79356b
A
164
165/*
166 * Direction of security policy.
167 * NOTE: Since INVALID is used just as flag.
168 * The other are used for loop counter too.
169 */
0a7de745
A
170#define IPSEC_DIR_ANY 0
171#define IPSEC_DIR_INBOUND 1
172#define IPSEC_DIR_OUTBOUND 2
173#define IPSEC_DIR_MAX 3
174#define IPSEC_DIR_INVALID 4
1c79356b
A
175
176/* Policy level */
177/*
9bccf70c
A
178 * IPSEC, ENTRUST and BYPASS are allowed for setsockopt() in PCB,
179 * DISCARD, IPSEC and NONE are allowed for setkey() in SPD.
180 * DISCARD and NONE are allowed for system default.
1c79356b 181 */
0a7de745
A
182#define IPSEC_POLICY_DISCARD 0 /* discarding packet */
183#define IPSEC_POLICY_NONE 1 /* through IPsec engine */
184#define IPSEC_POLICY_IPSEC 2 /* do IPsec */
185#define IPSEC_POLICY_ENTRUST 3 /* consulting SPD if present. */
186#define IPSEC_POLICY_BYPASS 4 /* only for privileged socket. */
2d21ac55 187#define IPSEC_POLICY_GENERATE 5 /* same as discard - IKE daemon can override with generated policy */
1c79356b
A
188
189/* Security protocol level */
0a7de745
A
190#define IPSEC_LEVEL_DEFAULT 0 /* reference to system default */
191#define IPSEC_LEVEL_USE 1 /* use SA if present. */
192#define IPSEC_LEVEL_REQUIRE 2 /* require SA. */
193#define IPSEC_LEVEL_UNIQUE 3 /* unique SA. */
194
195#define IPSEC_MANUAL_REQID_MAX 0x3fff
196/*
197 * if security policy level == unique, this id
198 * indicate to a relative SA for use, else is
199 * zero.
200 * 1 - 0x3fff are reserved for manual keying.
201 * 0 are reserved for above reason. Others is
202 * for kernel use.
203 * Note that this id doesn't identify SA
204 * by only itself.
205 */
1c79356b
A
206#define IPSEC_REPLAYWSIZE 32
207
208/* statistics for ipsec processing */
209struct ipsecstat {
0a7de745
A
210 u_quad_t in_success __attribute__ ((aligned(8))); /* succeeded inbound process */
211 u_quad_t in_polvio __attribute__ ((aligned(8)));
212 /* security policy violation for inbound process */
213 u_quad_t in_nosa __attribute__ ((aligned(8))); /* inbound SA is unavailable */
214 u_quad_t in_inval __attribute__ ((aligned(8))); /* inbound processing failed due to EINVAL */
215 u_quad_t in_nomem __attribute__ ((aligned(8))); /* inbound processing failed due to ENOBUFS */
216 u_quad_t in_badspi __attribute__ ((aligned(8))); /* failed getting a SPI */
217 u_quad_t in_ahreplay __attribute__ ((aligned(8))); /* AH replay check failed */
218 u_quad_t in_espreplay __attribute__ ((aligned(8))); /* ESP replay check failed */
219 u_quad_t in_ahauthsucc __attribute__ ((aligned(8))); /* AH authentication success */
220 u_quad_t in_ahauthfail __attribute__ ((aligned(8))); /* AH authentication failure */
221 u_quad_t in_espauthsucc __attribute__ ((aligned(8))); /* ESP authentication success */
222 u_quad_t in_espauthfail __attribute__ ((aligned(8))); /* ESP authentication failure */
223 u_quad_t in_esphist[256] __attribute__ ((aligned(8)));
224 u_quad_t in_ahhist[256] __attribute__ ((aligned(8)));
225 u_quad_t in_comphist[256] __attribute__ ((aligned(8)));
226 u_quad_t out_success __attribute__ ((aligned(8))); /* succeeded outbound process */
227 u_quad_t out_polvio __attribute__ ((aligned(8)));
228 /* security policy violation for outbound process */
229 u_quad_t out_nosa __attribute__ ((aligned(8))); /* outbound SA is unavailable */
230 u_quad_t out_inval __attribute__ ((aligned(8))); /* outbound process failed due to EINVAL */
231 u_quad_t out_nomem __attribute__ ((aligned(8))); /* inbound processing failed due to ENOBUFS */
232 u_quad_t out_noroute __attribute__ ((aligned(8))); /* there is no route */
233 u_quad_t out_esphist[256] __attribute__ ((aligned(8)));
234 u_quad_t out_ahhist[256] __attribute__ ((aligned(8)));
235 u_quad_t out_comphist[256] __attribute__ ((aligned(8)));
1c79356b
A
236};
237
cb323159
A
238#define IPSEC_MAX_WAKE_PKT_LEN 100
239struct ipsec_wake_pkt_info {
240 u_int8_t wake_pkt[IPSEC_MAX_WAKE_PKT_LEN];
241 uuid_string_t wake_uuid;
242 u_int32_t wake_pkt_spi;
243 u_int32_t wake_pkt_seq;
244 u_int16_t wake_pkt_len;
245};
246
39236c6e 247#ifdef BSD_KERNEL_PRIVATE
1c79356b
A
248/*
249 * Definitions for IPsec & Key sysctl operations.
250 */
251/*
252 * Names for IPsec & Key sysctl objects
253 */
0a7de745
A
254#define IPSECCTL_STATS 1 /* stats */
255#define IPSECCTL_DEF_POLICY 2
256#define IPSECCTL_DEF_ESP_TRANSLEV 3 /* int; ESP transport mode */
257#define IPSECCTL_DEF_ESP_NETLEV 4 /* int; ESP tunnel mode */
258#define IPSECCTL_DEF_AH_TRANSLEV 5 /* int; AH transport mode */
259#define IPSECCTL_DEF_AH_NETLEV 6 /* int; AH tunnel mode */
260#if 0 /* obsolete, do not reuse */
261#define IPSECCTL_INBOUND_CALL_IKE 7
9bccf70c 262#endif
0a7de745
A
263#define IPSECCTL_AH_CLEARTOS 8
264#define IPSECCTL_AH_OFFSETMASK 9
265#define IPSECCTL_DFBIT 10
266#define IPSECCTL_ECN 11
267#define IPSECCTL_DEBUG 12
268#define IPSECCTL_ESP_RANDPAD 13
269#define IPSECCTL_MAXID 14
1c79356b
A
270
271#define IPSECCTL_NAMES { \
272 { 0, 0 }, \
273 { 0, 0 }, \
274 { "def_policy", CTLTYPE_INT }, \
275 { "esp_trans_deflev", CTLTYPE_INT }, \
276 { "esp_net_deflev", CTLTYPE_INT }, \
277 { "ah_trans_deflev", CTLTYPE_INT }, \
278 { "ah_net_deflev", CTLTYPE_INT }, \
9bccf70c 279 { 0, 0 }, \
1c79356b
A
280 { "ah_cleartos", CTLTYPE_INT }, \
281 { "ah_offsetmask", CTLTYPE_INT }, \
282 { "dfbit", CTLTYPE_INT }, \
283 { "ecn", CTLTYPE_INT }, \
284 { "debug", CTLTYPE_INT }, \
9bccf70c 285 { "esp_randpad", CTLTYPE_INT }, \
1c79356b
A
286}
287
288#define IPSEC6CTL_NAMES { \
289 { 0, 0 }, \
290 { 0, 0 }, \
291 { "def_policy", CTLTYPE_INT }, \
292 { "esp_trans_deflev", CTLTYPE_INT }, \
293 { "esp_net_deflev", CTLTYPE_INT }, \
294 { "ah_trans_deflev", CTLTYPE_INT }, \
295 { "ah_net_deflev", CTLTYPE_INT }, \
9bccf70c 296 { 0, 0 }, \
1c79356b
A
297 { 0, 0 }, \
298 { 0, 0 }, \
299 { 0, 0 }, \
300 { "ecn", CTLTYPE_INT }, \
301 { "debug", CTLTYPE_INT }, \
9bccf70c 302 { "esp_randpad", CTLTYPE_INT }, \
1c79356b
A
303}
304
5ba3f43e
A
305#if defined(__ARM__)
306#define IPSEC_IS_P2ALIGNED(p) IS_P2ALIGNED(p, sizeof (u_int32_t))
307#define IPSEC_GET_P2UNALIGNED_OFS(p) (sizeof(u_int32_t) - (((uintptr_t)(p)) & ((uintptr_t)(sizeof(u_int32_t)) - 1)))
308#else
316670eb
A
309#define IPSEC_IS_P2ALIGNED(p) 1
310#define IPSEC_GET_P2UNALIGNED_OFS(p) 0
5ba3f43e 311#endif
316670eb 312
1c79356b 313struct ipsec_output_state {
fe8ab488 314 int tunneled;
1c79356b 315 struct mbuf *m;
5c9f4661 316 struct route_in6 ro;
1c79356b 317 struct sockaddr *dst;
fe8ab488 318 u_int outgoing_if;
1c79356b
A
319};
320
9bccf70c
A
321struct ipsec_history {
322 int ih_proto;
323 u_int32_t ih_spi;
324};
325
1c79356b
A
326extern int ipsec_debug;
327
1c79356b
A
328extern struct ipsecstat ipsecstat;
329extern struct secpolicy ip4_def_policy;
330extern int ip4_esp_trans_deflev;
331extern int ip4_esp_net_deflev;
332extern int ip4_ah_trans_deflev;
333extern int ip4_ah_net_deflev;
1c79356b
A
334extern int ip4_ah_cleartos;
335extern int ip4_ah_offsetmask;
336extern int ip4_ipsec_dfbit;
337extern int ip4_ipsec_ecn;
9bccf70c 338extern int ip4_esp_randpad;
1c79356b 339
cb323159
A
340extern bool ipsec_save_wake_pkt;
341
94ff46dc
A
342#define _ipsec_log(level, fmt, ...) do { \
343 os_log_type_t type; \
344 switch (level) { \
345 default: \
346 type = OS_LOG_TYPE_DEFAULT; \
347 break; \
348 case LOG_INFO: \
349 type = OS_LOG_TYPE_INFO; \
350 break; \
351 case LOG_DEBUG: \
352 type = OS_LOG_TYPE_DEBUG; \
353 break; \
354 case LOG_ERR: \
355 type = OS_LOG_TYPE_ERROR; \
356 break; \
357 } \
358 os_log_with_type(OS_LOG_DEFAULT, type, fmt, ##__VA_ARGS__); \
359} while (0)
360
361#define ipseclog(x) do { if (ipsec_debug != 0) _ipsec_log x; } while (0)
1c79356b 362
91447636 363extern struct secpolicy *ipsec4_getpolicybysock(struct mbuf *, u_int,
0a7de745 364 struct socket *, int *);
91447636 365extern struct secpolicy *ipsec4_getpolicybyaddr(struct mbuf *, u_int, int,
0a7de745 366 int *);
39236c6e 367extern int ipsec4_getpolicybyinterface(struct mbuf *, u_int, int *,
0a7de745 368 struct ip_out_args *, struct secpolicy **);
1c79356b 369
fe8ab488
A
370extern u_int ipsec_get_reqlevel(struct ipsecrequest *);
371
1c79356b 372struct inpcb;
91447636
A
373extern int ipsec_init_policy(struct socket *so, struct inpcbpolicy **);
374extern int ipsec_copy_policy(struct inpcbpolicy *, struct inpcbpolicy *);
375extern u_int ipsec_get_reqlevel(struct ipsecrequest *);
376
377extern int ipsec4_set_policy(struct inpcb *inp, int optname,
0a7de745 378 caddr_t request, size_t len, int priv);
91447636
A
379extern int ipsec4_delete_pcbpolicy(struct inpcb *);
380extern int ipsec4_in_reject_so(struct mbuf *, struct socket *);
381extern int ipsec4_in_reject(struct mbuf *, struct inpcb *);
1c79356b 382
1c79356b
A
383struct secas;
384struct tcpcb;
cb323159
A
385extern int ipsec_chkreplay(u_int32_t, struct secasvar *, u_int8_t);
386extern int ipsec_updatereplay(u_int32_t, struct secasvar *, u_int8_t);
1c79356b 387
91447636
A
388extern size_t ipsec4_hdrsiz(struct mbuf *, u_int, struct inpcb *);
389extern size_t ipsec_hdrsiz_tcp(struct tcpcb *);
2d21ac55 390extern size_t ipsec_hdrsiz(struct secpolicy *);
1c79356b
A
391
392struct ip;
91447636
A
393extern const char *ipsec4_logpacketstr(struct ip *, u_int32_t);
394extern const char *ipsec_logsastr(struct secasvar *);
395
396extern void ipsec_dumpmbuf(struct mbuf *);
397
fe8ab488 398extern int ipsec4_interface_output(struct ipsec_output_state *state, ifnet_t interface);
91447636 399extern int ipsec4_output(struct ipsec_output_state *, struct secpolicy *, int);
316670eb
A
400#if INET
401extern struct mbuf * ipsec4_splithdr(struct mbuf *);
402extern int ipsec4_encapsulate(struct mbuf *, struct secasvar *);
316670eb
A
403#endif
404#if INET6
405extern struct mbuf * ipsec6_splithdr(struct mbuf *);
406extern int ipsec6_encapsulate(struct mbuf *, struct secasvar *);
316670eb 407#endif
2d21ac55 408extern int ipsec4_tunnel_validate(struct mbuf *, int, u_int, struct secasvar *, sa_family_t *);
91447636
A
409extern struct mbuf *ipsec_copypkt(struct mbuf *);
410extern void ipsec_delaux(struct mbuf *);
411extern int ipsec_setsocket(struct mbuf *, struct socket *);
412extern struct socket *ipsec_getsocket(struct mbuf *);
0a7de745 413extern int ipsec_addhist(struct mbuf *, int, u_int32_t);
91447636
A
414extern struct ipsec_history *ipsec_gethist(struct mbuf *, int *);
415extern void ipsec_clearhist(struct mbuf *);
cb323159
A
416extern void ipsec_monitor_sleep_wake(void);
417extern void ipsec_save_wake_packet(struct mbuf *, u_int32_t, u_int32_t);
39236c6e 418#endif /* BSD_KERNEL_PRIVATE */
1c79356b
A
419
420#ifndef KERNEL
b0d623f7 421__BEGIN_DECLS
91447636
A
422extern caddr_t ipsec_set_policy(char *, int);
423extern int ipsec_get_policylen(caddr_t);
424extern char *ipsec_dump_policy(caddr_t, char *);
1c79356b 425
91447636 426extern const char *ipsec_strerror(void);
b0d623f7
A
427__END_DECLS
428#endif /* KERNEL */
1c79356b 429
0c530ab8 430#endif /* _NETINET6_IPSEC_H_ */