2 * Copyright (C) 2008-2009 Tobias Brunner
3 * Copyright (C) 2005-2007 Martin Willi
4 * Copyright (C) 2005 Jan Hutter
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
19 * @defgroup child_cfg child_cfg
26 typedef enum action_t action_t
;
27 typedef struct child_cfg_t child_cfg_t
;
30 #include <selectors/traffic_selector.h>
31 #include <config/proposal.h>
32 #include <kernel/kernel_ipsec.h>
35 * Action to take when connection is loaded, DPD is detected or
36 * connection gets closed by peer.
41 /** Route config to establish or reestablish on demand */
43 /** Start or restart config immediately */
48 * enum names for action_t.
50 extern enum_name_t
*action_names
;
53 * A child_cfg_t defines the config template for a CHILD_SA.
55 * After creation, proposals and traffic selectors may be added to the config.
56 * A child_cfg object is referenced multiple times, and is not thread save.
57 * Reading from the object is save, adding things is not allowed while other
58 * threads may access the object.
59 * A reference counter handles the number of references hold to this config.
61 * @see peer_cfg_t to get an overview over the configurations.
66 * Get the name of the child_cfg.
68 * @return child_cfg's name
70 char *(*get_name
) (child_cfg_t
*this);
73 * Add a proposal to the list.
75 * The proposals are stored by priority, first added
76 * is the most prefered.
77 * After add, proposal is owned by child_cfg.
79 * @param proposal proposal to add
81 void (*add_proposal
) (child_cfg_t
*this, proposal_t
*proposal
);
84 * Get the list of proposals for the CHILD_SA.
86 * Resulting list and all of its proposals must be freed after use.
88 * @param strip_dh TRUE strip out diffie hellman groups
89 * @return list of proposals
91 linked_list_t
* (*get_proposals
)(child_cfg_t
*this, bool strip_dh
);
94 * Select a proposal from a supplied list.
96 * Returned propsal is newly created and must be destroyed after usage.
98 * @param proposals list from from wich proposals are selected
99 * @param strip_dh TRUE strip out diffie hellman groups
100 * @param private accept algorithms from a private range
101 * @return selected proposal, or NULL if nothing matches
103 proposal_t
* (*select_proposal
)(child_cfg_t
*this, linked_list_t
*proposals
,
104 bool strip_dh
, bool private);
107 * Add a traffic selector to the config.
109 * Use the "local" parameter to add it for the local or the remote side.
110 * After add, traffic selector is owned by child_cfg.
112 * @param local TRUE for local side, FALSE for remote
113 * @param ts traffic_selector to add
115 void (*add_traffic_selector
)(child_cfg_t
*this, bool local
,
116 traffic_selector_t
*ts
);
119 * Get a list of traffic selectors to use for the CHILD_SA.
121 * The config contains two set of traffic selectors, one for the local
122 * side, one for the remote side.
123 * If a list with traffic selectors is supplied, these are used to narrow
124 * down the traffic selector list to the greatest common divisor.
125 * Some traffic selector may be "dymamic", meaning they are narrowed down
126 * to a specific address (host-to-host or virtual-IP setups). Use
127 * the "host" parameter to narrow such traffic selectors to that address.
128 * Resulted list and its traffic selectors must be destroyed after use.
130 * @param local TRUE for TS on local side, FALSE for remote
131 * @param supplied list with TS to select from, or NULL
132 * @param host address to use for narrowing "dynamic" TS', or NULL
133 * @return list containing the traffic selectors
135 linked_list_t
*(*get_traffic_selectors
)(child_cfg_t
*this, bool local
,
136 linked_list_t
*supplied
,
139 * Get the updown script to run for the CHILD_SA.
141 * @return path to updown script
143 char* (*get_updown
)(child_cfg_t
*this);
146 * Should we allow access to the local host (gateway)?
148 * @return value of hostaccess flag
150 bool (*get_hostaccess
) (child_cfg_t
*this);
153 * Get the lifetime configuration of a CHILD_SA.
155 * The rekey limits automatically contain a jitter to avoid simultaneous
156 * rekeying. These values will change with each call to this function.
158 * @return lifetime_cfg_t (has to be freed)
160 lifetime_cfg_t
* (*get_lifetime
) (child_cfg_t
*this);
163 * Get the mode to use for the CHILD_SA.
165 * The mode is either tunnel, transport or BEET. The peer must agree
166 * on the method, fallback is tunnel mode.
170 ipsec_mode_t (*get_mode
) (child_cfg_t
*this);
173 * Action to take to start CHILD_SA.
175 * @return start action
177 action_t (*get_start_action
) (child_cfg_t
*this);
180 * Action to take on DPD.
184 action_t (*get_dpd_action
) (child_cfg_t
*this);
187 * Action to take if CHILD_SA gets closed.
189 * @return close action
191 action_t (*get_close_action
) (child_cfg_t
*this);
194 * Get the DH group to use for CHILD_SA setup.
196 * @return dh group to use
198 diffie_hellman_group_t (*get_dh_group
)(child_cfg_t
*this);
201 * Check whether IPComp should be used, if the other peer supports it.
203 * @return TRUE, if IPComp should be used
206 bool (*use_ipcomp
)(child_cfg_t
*this);
209 * Get the inactivity timeout value.
211 * @return inactivity timeout in s
213 u_int32_t (*get_inactivity
)(child_cfg_t
*this);
216 * Specific reqid to use for CHILD_SA
220 u_int32_t (*get_reqid
)(child_cfg_t
*this);
223 * Optional mark for CHILD_SA
225 * @param inbound TRUE for inbound, FALSE for outbound
228 mark_t (*get_mark
)(child_cfg_t
*this, bool inbound
);
231 * Sets two options needed for Mobile IPv6 interoperability
233 * @param proxy_mode use IPsec transport proxy mode (default FALSE)
234 * @param install_policy install IPsec kernel policies (default TRUE)
236 void (*set_mipv6_options
)(child_cfg_t
*this, bool proxy_mode
,
237 bool install_policy
);
240 * Check whether IPsec transport SA should be set up in proxy mode
242 * @return TRUE, if proxy mode should be used
245 bool (*use_proxy_mode
)(child_cfg_t
*this);
248 * Check whether IPsec policies should be installed in the kernel
250 * @return TRUE, if IPsec kernel policies should be installed
253 bool (*install_policy
)(child_cfg_t
*this);
256 * Increase the reference count.
258 * @return reference to this
260 child_cfg_t
* (*get_ref
) (child_cfg_t
*this);
263 * Destroys the child_cfg object.
265 * Decrements the internal reference counter and
266 * destroys the child_cfg when it reaches zero.
268 void (*destroy
) (child_cfg_t
*this);
272 * Create a configuration template for CHILD_SA setup.
274 * The "name" string gets cloned.
276 * The lifetime_cfg_t object gets cloned.
277 * To prevent two peers to start rekeying at the same time, a jitter may be
278 * specified. Rekeying of an SA starts at (x.rekey - random(0, x.jitter)).
280 * After a call to create, a reference is obtained (refcount = 1).
282 * @param name name of the child_cfg
283 * @param lifetime lifetime_cfg_t for this child_cfg
284 * @param updown updown script to execute on up/down event
285 * @param hostaccess TRUE to allow access to the local host
286 * @param mode mode to propose for CHILD_SA, transport, tunnel or BEET
287 * @param start_action start action
288 * @param dpd_action DPD action
289 * @param close_action close action
290 * @param ipcomp use IPComp, if peer supports it
291 * @param inactivity inactivity timeout in s before closing a CHILD_SA
292 * @param reqid specific reqid to use for CHILD_SA, 0 for auto assign
293 * @param mark_in optional inbound mark (can be NULL)
294 * @param mark_out optional outbound mark (can be NULL)
295 * @return child_cfg_t object
297 child_cfg_t
*child_cfg_create(char *name
, lifetime_cfg_t
*lifetime
,
298 char *updown
, bool hostaccess
,
299 ipsec_mode_t mode
, action_t start_action
,
300 action_t dpd_action
, action_t close_action
,
301 bool ipcomp
, u_int32_t inactivity
, u_int32_t reqid
,
302 mark_t
*mark_in
, mark_t
*mark_out
);
304 #endif /** CHILD_CFG_H_ @}*/