2 * Copyright (C) 2005-2008 Martin Willi
3 * Copyright (C) 2005 Jan Hutter
4 * Hochschule fuer Technik Rapperswil
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 #include "ike_rekey.h"
20 #include <encoding/payloads/notify_payload.h>
21 #include <sa/ikev2/tasks/ike_init.h>
22 #include <sa/ikev2/tasks/ike_delete.h>
23 #include <processing/jobs/delete_ike_sa_job.h>
24 #include <processing/jobs/rekey_ike_sa_job.h>
27 typedef struct private_ike_rekey_t private_ike_rekey_t
;
30 * Private members of a ike_rekey_t task.
32 struct private_ike_rekey_t
{
35 * Public methods and task_t interface.
45 * New IKE_SA which replaces the current one
50 * Are we the initiator?
55 * the TASK_IKE_INIT task which is reused to simplify rekeying
60 * IKE_DELETE task to delete the old IKE_SA after rekeying was successful
62 ike_delete_t
*ike_delete
;
65 * colliding task detected by the task manager
71 * Establish the new replacement IKE_SA
73 static void establish_new(private_ike_rekey_t
*this)
77 this->new_sa
->set_state(this->new_sa
, IKE_ESTABLISHED
);
78 DBG0(DBG_IKE
, "IKE_SA %s[%d] rekeyed between %H[%Y]...%H[%Y]",
79 this->new_sa
->get_name(this->new_sa
),
80 this->new_sa
->get_unique_id(this->new_sa
),
81 this->ike_sa
->get_my_host(this->ike_sa
),
82 this->ike_sa
->get_my_id(this->ike_sa
),
83 this->ike_sa
->get_other_host(this->ike_sa
),
84 this->ike_sa
->get_other_id(this->ike_sa
));
86 this->new_sa
->inherit(this->new_sa
, this->ike_sa
);
87 charon
->bus
->ike_rekey(charon
->bus
, this->ike_sa
, this->new_sa
);
88 charon
->ike_sa_manager
->checkin(charon
->ike_sa_manager
, this->new_sa
);
90 /* set threads active IKE_SA after checkin */
91 charon
->bus
->set_sa(charon
->bus
, this->ike_sa
);
95 METHOD(task_t
, process_r_delete
, status_t
,
96 private_ike_rekey_t
*this, message_t
*message
)
99 return this->ike_delete
->task
.process(&this->ike_delete
->task
, message
);
102 METHOD(task_t
, build_r_delete
, status_t
,
103 private_ike_rekey_t
*this, message_t
*message
)
105 return this->ike_delete
->task
.build(&this->ike_delete
->task
, message
);
108 METHOD(task_t
, build_i_delete
, status_t
,
109 private_ike_rekey_t
*this, message_t
*message
)
111 /* update exchange type to INFORMATIONAL for the delete */
112 message
->set_exchange_type(message
, INFORMATIONAL
);
114 return this->ike_delete
->task
.build(&this->ike_delete
->task
, message
);
117 METHOD(task_t
, process_i_delete
, status_t
,
118 private_ike_rekey_t
*this, message_t
*message
)
120 return this->ike_delete
->task
.process(&this->ike_delete
->task
, message
);
123 METHOD(task_t
, build_i
, status_t
,
124 private_ike_rekey_t
*this, message_t
*message
)
126 peer_cfg_t
*peer_cfg
;
129 /* create new SA only on first try */
130 if (this->new_sa
== NULL
)
132 ike_version_t version
= this->ike_sa
->get_version(this->ike_sa
);
133 this->new_sa
= charon
->ike_sa_manager
->checkout_new(
134 charon
->ike_sa_manager
, version
, TRUE
);
136 peer_cfg
= this->ike_sa
->get_peer_cfg(this->ike_sa
);
137 other_host
= this->ike_sa
->get_other_host(this->ike_sa
);
138 this->new_sa
->set_peer_cfg(this->new_sa
, peer_cfg
);
139 this->new_sa
->set_other_host(this->new_sa
, other_host
->clone(other_host
));
140 this->ike_init
= ike_init_create(this->new_sa
, TRUE
, this->ike_sa
);
141 this->ike_sa
->set_state(this->ike_sa
, IKE_REKEYING
);
143 this->ike_init
->task
.build(&this->ike_init
->task
, message
);
148 METHOD(task_t
, process_r
, status_t
,
149 private_ike_rekey_t
*this, message_t
*message
)
151 enumerator_t
*enumerator
;
152 ike_version_t version
;
153 peer_cfg_t
*peer_cfg
;
154 child_sa_t
*child_sa
;
156 if (this->ike_sa
->get_state(this->ike_sa
) == IKE_DELETING
)
158 DBG1(DBG_IKE
, "peer initiated rekeying, but we are deleting");
162 enumerator
= this->ike_sa
->create_child_sa_enumerator(this->ike_sa
);
163 while (enumerator
->enumerate(enumerator
, (void**)&child_sa
))
165 switch (child_sa
->get_state(child_sa
))
170 /* we do not allow rekeying while we have children in-progress */
171 DBG1(DBG_IKE
, "peer initiated rekeying, but a child is half-open");
172 enumerator
->destroy(enumerator
);
178 enumerator
->destroy(enumerator
);
180 version
= this->ike_sa
->get_version(this->ike_sa
);
181 this->new_sa
= charon
->ike_sa_manager
->checkout_new(charon
->ike_sa_manager
,
184 peer_cfg
= this->ike_sa
->get_peer_cfg(this->ike_sa
);
185 this->new_sa
->set_peer_cfg(this->new_sa
, peer_cfg
);
186 this->ike_init
= ike_init_create(this->new_sa
, FALSE
, this->ike_sa
);
187 this->ike_init
->task
.process(&this->ike_init
->task
, message
);
192 METHOD(task_t
, build_r
, status_t
,
193 private_ike_rekey_t
*this, message_t
*message
)
195 if (this->new_sa
== NULL
)
197 /* IKE_SA/a CHILD_SA is in an inacceptable state, deny rekeying */
198 message
->add_notify(message
, TRUE
, NO_PROPOSAL_CHOSEN
, chunk_empty
);
202 if (this->ike_init
->task
.build(&this->ike_init
->task
, message
) == FAILED
)
207 this->ike_sa
->set_state(this->ike_sa
, IKE_REKEYING
);
209 /* rekeying successful, delete the IKE_SA using a subtask */
210 this->ike_delete
= ike_delete_create(this->ike_sa
, FALSE
);
211 this->public.task
.build
= _build_r_delete
;
212 this->public.task
.process
= _process_r_delete
;
217 METHOD(task_t
, process_i
, status_t
,
218 private_ike_rekey_t
*this, message_t
*message
)
220 if (message
->get_notify(message
, NO_ADDITIONAL_SAS
))
222 DBG1(DBG_IKE
, "peer seems to not support IKE rekeying, "
223 "starting reauthentication");
224 this->ike_sa
->set_state(this->ike_sa
, IKE_ESTABLISHED
);
225 lib
->processor
->queue_job(lib
->processor
,
226 (job_t
*)rekey_ike_sa_job_create(
227 this->ike_sa
->get_id(this->ike_sa
), TRUE
));
231 switch (this->ike_init
->task
.process(&this->ike_init
->task
, message
))
234 /* rekeying failed, fallback to old SA */
235 if (!(this->collision
&& (
236 this->collision
->get_type(this->collision
) == TASK_IKE_DELETE
||
237 this->collision
->get_type(this->collision
) == TASK_IKE_REAUTH
)))
240 u_int32_t retry
= RETRY_INTERVAL
- (random() % RETRY_JITTER
);
241 job
= (job_t
*)rekey_ike_sa_job_create(
242 this->ike_sa
->get_id(this->ike_sa
), FALSE
);
243 DBG1(DBG_IKE
, "IKE_SA rekeying failed, "
244 "trying again in %d seconds", retry
);
245 this->ike_sa
->set_state(this->ike_sa
, IKE_ESTABLISHED
);
246 lib
->scheduler
->schedule_job(lib
->scheduler
, job
, retry
);
250 /* bad dh group, try again */
251 this->ike_init
->task
.migrate(&this->ike_init
->task
, this->new_sa
);
257 /* check for collisions */
258 if (this->collision
&&
259 this->collision
->get_type(this->collision
) == TASK_IKE_REKEY
)
261 private_ike_rekey_t
*other
= (private_ike_rekey_t
*)this->collision
;
263 /* ike_init can be NULL, if child_sa is half-open */
267 chunk_t this_nonce
, other_nonce
;
269 this_nonce
= this->ike_init
->get_lower_nonce(this->ike_init
);
270 other_nonce
= other
->ike_init
->get_lower_nonce(other
->ike_init
);
272 /* if we have the lower nonce, delete rekeyed SA. If not, delete
274 if (memcmp(this_nonce
.ptr
, other_nonce
.ptr
,
275 min(this_nonce
.len
, other_nonce
.len
)) > 0)
277 /* peer should delete this SA. Add a timeout just in case. */
278 job_t
*job
= (job_t
*)delete_ike_sa_job_create(
279 other
->new_sa
->get_id(other
->new_sa
), TRUE
);
280 lib
->scheduler
->schedule_job(lib
->scheduler
, job
, 10);
281 DBG1(DBG_IKE
, "IKE_SA rekey collision won, waiting for delete");
282 charon
->ike_sa_manager
->checkin(charon
->ike_sa_manager
, other
->new_sa
);
283 other
->new_sa
= NULL
;
287 DBG1(DBG_IKE
, "IKE_SA rekey collision lost, "
288 "deleting redundant IKE_SA");
289 /* apply host for a proper delete */
290 host
= this->ike_sa
->get_my_host(this->ike_sa
);
291 this->new_sa
->set_my_host(this->new_sa
, host
->clone(host
));
292 host
= this->ike_sa
->get_other_host(this->ike_sa
);
293 this->new_sa
->set_other_host(this->new_sa
, host
->clone(host
));
294 this->ike_sa
->set_state(this->ike_sa
, IKE_ESTABLISHED
);
295 this->new_sa
->set_state(this->new_sa
, IKE_REKEYING
);
296 if (this->new_sa
->delete(this->new_sa
) == DESTROY_ME
)
298 this->new_sa
->destroy(this->new_sa
);
302 charon
->ike_sa_manager
->checkin(
303 charon
->ike_sa_manager
, this->new_sa
);
304 /* set threads active IKE_SA after checkin */
305 charon
->bus
->set_sa(charon
->bus
, this->ike_sa
);
308 establish_new(other
);
312 /* set threads active IKE_SA after checkin */
313 charon
->bus
->set_sa(charon
->bus
, this->ike_sa
);
318 /* rekeying successful, delete the IKE_SA using a subtask */
319 this->ike_delete
= ike_delete_create(this->ike_sa
, TRUE
);
320 this->public.task
.build
= _build_i_delete
;
321 this->public.task
.process
= _process_i_delete
;
326 METHOD(task_t
, get_type
, task_type_t
,
327 private_ike_rekey_t
*this)
329 return TASK_IKE_REKEY
;
332 METHOD(ike_rekey_t
, collide
, void,
333 private_ike_rekey_t
* this, task_t
*other
)
335 DBG1(DBG_IKE
, "detected %N collision with %N", task_type_names
,
336 TASK_IKE_REKEY
, task_type_names
, other
->get_type(other
));
337 DESTROY_IF(this->collision
);
338 this->collision
= other
;
341 METHOD(task_t
, migrate
, void,
342 private_ike_rekey_t
*this, ike_sa_t
*ike_sa
)
346 this->ike_init
->task
.destroy(&this->ike_init
->task
);
348 if (this->ike_delete
)
350 this->ike_delete
->task
.destroy(&this->ike_delete
->task
);
352 DESTROY_IF(this->new_sa
);
353 DESTROY_IF(this->collision
);
355 this->collision
= NULL
;
356 this->ike_sa
= ike_sa
;
358 this->ike_init
= NULL
;
359 this->ike_delete
= NULL
;
362 METHOD(task_t
, destroy
, void,
363 private_ike_rekey_t
*this)
367 this->ike_init
->task
.destroy(&this->ike_init
->task
);
369 if (this->ike_delete
)
371 this->ike_delete
->task
.destroy(&this->ike_delete
->task
);
373 DESTROY_IF(this->new_sa
);
374 DESTROY_IF(this->collision
);
379 * Described in header.
381 ike_rekey_t
*ike_rekey_create(ike_sa_t
*ike_sa
, bool initiator
)
383 private_ike_rekey_t
*this;
388 .get_type
= _get_type
,
390 .process
= _process_r
,
397 .initiator
= initiator
,
401 this->public.task
.build
= _build_i
;
402 this->public.task
.process
= _process_i
;
405 return &this->public;