2 * Copyright (C) 2006-2008 Tobias Brunner
3 * Copyright (C) 2006-2007 Martin Willi
4 * Copyright (C) 2006 Daniel Roethlisberger
5 * Hochschule fuer Technik Rapperswil
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 * @defgroup child_sa child_sa
28 typedef enum child_sa_state_t child_sa_state_t
;
29 typedef struct child_sa_t child_sa_t
;
32 #include <crypto/prf_plus.h>
33 #include <encoding/payloads/proposal_substructure.h>
34 #include <config/proposal.h>
35 #include <config/child_cfg.h>
38 * States of a CHILD_SA
40 enum child_sa_state_t
{
43 * Just created, uninstalled CHILD_SA
48 * Installed SPD, but no SAD entries
53 * Installed an in-use CHILD_SA
58 * CHILD_SA which is rekeying
63 * CHILD_SA in progress of delete
68 * CHILD_SA object gets destroyed
74 * enum strings for child_sa_state_t.
76 extern enum_name_t
*child_sa_state_names
;
79 * Represents an IPsec SAs between two hosts.
81 * A child_sa_t contains two SAs. SAs for both
82 * directions are managed in one child_sa_t object. Both
83 * SAs and the policies have the same reqid.
85 * The procedure for child sa setup is as follows:
86 * - A gets SPIs for a proposal via child_sa_t.alloc
87 * - A send the updated proposal to B
88 * - B selects a suitable proposal
89 * - B calls child_sa_t.add to add and update the selected proposal
90 * - B sends the updated proposal to A
91 * - A calls child_sa_t.update to update the already allocated SPIs with the chosen proposal
93 * Once SAs are set up, policies can be added using add_policies.
98 * Get the name of the config this CHILD_SA uses.
102 char* (*get_name
) (child_sa_t
*this);
105 * Get the reqid of the CHILD SA.
107 * Every CHILD_SA has a reqid. The kernel uses this ID to
110 * @return reqid of the CHILD SA
112 u_int32_t (*get_reqid
)(child_sa_t
*this);
115 * Get the SPI of this CHILD_SA.
117 * Set the boolean parameter inbound to TRUE to
118 * get the SPI for which we receive packets, use
119 * FALSE to get those we use for sending packets.
121 * @param inbound TRUE to get inbound SPI, FALSE for outbound.
122 * @return SPI of the CHILD SA
124 u_int32_t (*get_spi
) (child_sa_t
*this, bool inbound
);
127 * Get the CPI of this CHILD_SA.
129 * Set the boolean parameter inbound to TRUE to
130 * get the CPI for which we receive packets, use
131 * FALSE to get those we use for sending packets.
133 * @param inbound TRUE to get inbound CPI, FALSE for outbound.
134 * @return CPI of the CHILD SA
136 u_int16_t (*get_cpi
) (child_sa_t
*this, bool inbound
);
139 * Get the protocol which this CHILD_SA uses to protect traffic.
143 protocol_id_t (*get_protocol
) (child_sa_t
*this);
146 * Get info and statistics about this CHILD_SA.
148 * @param mode mode this IKE_SA uses
149 * @param encr_algo encryption algorithm used by this CHILD_SA.
150 * @param encr_len key length of the algorithm, if any
151 * @param int_algo integrity algorithm used by this CHILD_SA
152 * @param int_len key length of the algorithm, if any
153 * @param rekey time when rekeying is scheduled
154 * @param use_in time when last traffic was seen coming in
155 * @param use_out time when last traffic was seen going out
156 * @param use_fwd time when last traffic was getting forwarded
158 void (*get_stats
)(child_sa_t
*this, ipsec_mode_t
*mode
,
159 encryption_algorithm_t
*encr
, size_t *encr_len
,
160 integrity_algorithm_t
*int_algo
, size_t *int_len
,
161 u_int32_t
*rekey
, u_int32_t
*use_in
, u_int32_t
*use_out
,
165 * Allocate SPIs for given proposals.
167 * Since the kernel manages SPIs for us, we need
168 * to allocate them. If a proposal contains more
169 * than one protocol, for each protocol an SPI is
170 * allocated. SPIs are stored internally and written
171 * back to the proposal.
173 * @param proposals list of proposals for which SPIs are allocated
175 status_t (*alloc
)(child_sa_t
*this, linked_list_t
* proposals
);
178 * Install the kernel SAs for a proposal, without previous SPI allocation.
180 * @param proposal proposal for which SPIs are allocated
181 * @param mode mode for the CHILD_SA
182 * @param prf_plus key material to use for key derivation
183 * @return SUCCESS or FAILED
185 status_t (*add
)(child_sa_t
*this, proposal_t
*proposal
, ipsec_mode_t mode
,
186 prf_plus_t
*prf_plus
);
189 * Install the kernel SAs for a proposal, after SPIs have been allocated.
191 * Updates an SA, for which SPIs are already allocated via alloc().
193 * @param proposal proposal for which SPIs are allocated
194 * @param mode mode for the CHILD_SA
195 * @param prf_plus key material to use for key derivation
196 * @return SUCCESS or FAILED
198 status_t (*update
)(child_sa_t
*this, proposal_t
*proposal
, ipsec_mode_t mode
,
199 prf_plus_t
*prf_plus
);
202 * Update the hosts in the kernel SAs and policies.
204 * The CHILD must be INSTALLED to do this update.
206 * @param me the new local host
207 * @param other the new remote host
208 * @param TRUE to use UDP encapsulation for NAT traversal
209 * @return SUCCESS or FAILED
211 status_t (*update_hosts
)(child_sa_t
*this, host_t
*me
, host_t
*other
,
215 * Install the policies using some traffic selectors.
217 * Supplied lists of traffic_selector_t's specify the policies
218 * to use for this child sa.
220 * @param my_ts traffic selectors for local site
221 * @param other_ts traffic selectors for remote site
222 * @param mode mode for the SA: tunnel/transport
223 * @param proto protocol for policy, ESP/AH
224 * @return SUCCESS or FAILED
226 status_t (*add_policies
)(child_sa_t
*this, linked_list_t
*my_ts_list
,
227 linked_list_t
*other_ts_list
, ipsec_mode_t mode
,
228 protocol_id_t proto
);
231 * Get the traffic selectors of added policies of local host.
233 * @param local TRUE for own traffic selectors, FALSE for remote
234 * @return list of traffic selectors
236 linked_list_t
* (*get_traffic_selectors
) (child_sa_t
*this, bool local
);
239 * Get the time of this child_sa_t's last use (i.e. last use of any of its policies)
241 * @param inbound query for in- or outbound usage
242 * @param use_time the time
243 * @return SUCCESS or FAILED
245 status_t (*get_use_time
) (child_sa_t
*this, bool inbound
, time_t *use_time
);
248 * Get the state of the CHILD_SA.
250 child_sa_state_t (*get_state
) (child_sa_t
*this);
253 * Set the state of the CHILD_SA.
255 * @param state state to set on CHILD_SA
257 void (*set_state
) (child_sa_t
*this, child_sa_state_t state
);
260 * Get the config used to set up this child sa.
264 child_cfg_t
* (*get_config
) (child_sa_t
*this);
267 * Set the virtual IP used received from IRAS.
269 * To allow proper setup of firewall rules, the virtual IP is required
272 * @param ip own virtual IP
274 void (*set_virtual_ip
) (child_sa_t
*this, host_t
*ip
);
277 * Activate IPComp by setting the transform ID and CPI values.
279 * @param ipcomp the IPComp transform to use
280 * @param other_cpi other Compression Parameter Index
282 void (*activate_ipcomp
) (child_sa_t
*this, ipcomp_transform_t ipcomp
,
283 u_int16_t other_cpi
);
286 * Returns the Compression Parameter Index (CPI) allocated from the kernel.
288 * @return allocated CPI
290 u_int16_t (*allocate_cpi
) (child_sa_t
*this);
293 * Destroys a child_sa.
295 void (*destroy
) (child_sa_t
*this);
299 * Constructor to create a new child_sa_t.
301 * @param me own address
302 * @param other remote address
303 * @param my_id id of own peer
304 * @param other_id id of remote peer
305 * @param config config to use for this CHILD_SA
306 * @param reqid reqid of old CHILD_SA when rekeying, 0 otherwise
307 * @param encap TRUE to enable UDP encapsulation (NAT traversal)
308 * @return child_sa_t object
310 child_sa_t
* child_sa_create(host_t
*me
, host_t
*other
,
311 identification_t
*my_id
, identification_t
* other_id
,
312 child_cfg_t
*config
, u_int32_t reqid
, bool encap
);
314 #endif /*CHILD_SA_H_ @} */