2 * Copyright (C) 2006-2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "ike_reauth.h"
19 #include <sa/ikev2/tasks/ike_delete.h>
22 typedef struct private_ike_reauth_t private_ike_reauth_t
;
25 * Private members of a ike_reauth_t task.
27 struct private_ike_reauth_t
{
30 * Public methods and task_t interface.
40 * reused ike_delete task
42 ike_delete_t
*ike_delete
;
45 METHOD(task_t
, build_i
, status_t
,
46 private_ike_reauth_t
*this, message_t
*message
)
48 return this->ike_delete
->task
.build(&this->ike_delete
->task
, message
);
51 METHOD(task_t
, process_i
, status_t
,
52 private_ike_reauth_t
*this, message_t
*message
)
56 enumerator_t
*enumerator
;
57 ike_version_t version
;
61 /* process delete response first */
62 this->ike_delete
->task
.process(&this->ike_delete
->task
, message
);
64 peer_cfg
= this->ike_sa
->get_peer_cfg(this->ike_sa
);
66 /* reauthenticate only if we have children */
67 if (this->ike_sa
->get_child_count(this->ike_sa
) == 0
69 /* we allow peers to reauth mediation connections (without children) */
70 && !peer_cfg
->is_mediation(peer_cfg
)
74 DBG1(DBG_IKE
, "unable to reauthenticate IKE_SA, no CHILD_SA to recreate");
78 version
= this->ike_sa
->get_version(this->ike_sa
);
79 new = charon
->ike_sa_manager
->checkout_new(charon
->ike_sa_manager
, version
,
82 new->set_peer_cfg(new, peer_cfg
);
83 host
= this->ike_sa
->get_other_host(this->ike_sa
);
84 new->set_other_host(new, host
->clone(host
));
85 host
= this->ike_sa
->get_my_host(this->ike_sa
);
86 new->set_my_host(new, host
->clone(host
));
87 /* if we already have a virtual IP, we reuse it */
88 host
= this->ike_sa
->get_virtual_ip(this->ike_sa
, TRUE
);
91 new->set_virtual_ip(new, TRUE
, host
);
95 /* we initiate the new IKE_SA of the mediation connection without CHILD_SA */
96 if (peer_cfg
->is_mediation(peer_cfg
))
98 if (new->initiate(new, NULL
, 0, NULL
, NULL
) == DESTROY_ME
)
100 charon
->ike_sa_manager
->checkin_and_destroy(
101 charon
->ike_sa_manager
, new);
102 /* set threads active IKE_SA after checkin */
103 charon
->bus
->set_sa(charon
->bus
, this->ike_sa
);
104 DBG1(DBG_IKE
, "reauthenticating IKE_SA failed");
110 enumerator
= this->ike_sa
->create_child_sa_enumerator(this->ike_sa
);
111 while (enumerator
->enumerate(enumerator
, (void**)&child_sa
))
113 switch (child_sa
->get_state(child_sa
))
117 /* move routed child directly */
118 this->ike_sa
->remove_child_sa(this->ike_sa
, enumerator
);
119 new->add_child_sa(new, child_sa
);
124 /* initiate/queue all child SAs */
125 child_cfg_t
*child_cfg
= child_sa
->get_config(child_sa
);
126 child_cfg
->get_ref(child_cfg
);
127 if (new->initiate(new, child_cfg
, 0, NULL
, NULL
) == DESTROY_ME
)
129 enumerator
->destroy(enumerator
);
130 charon
->ike_sa_manager
->checkin_and_destroy(
131 charon
->ike_sa_manager
, new);
132 /* set threads active IKE_SA after checkin */
133 charon
->bus
->set_sa(charon
->bus
, this->ike_sa
);
134 DBG1(DBG_IKE
, "reauthenticating IKE_SA failed");
141 enumerator
->destroy(enumerator
);
142 charon
->ike_sa_manager
->checkin(charon
->ike_sa_manager
, new);
143 /* set threads active IKE_SA after checkin */
144 charon
->bus
->set_sa(charon
->bus
, this->ike_sa
);
146 /* we always destroy the obsolete IKE_SA */
150 METHOD(task_t
, get_type
, task_type_t
,
151 private_ike_reauth_t
*this)
153 return TASK_IKE_REAUTH
;
156 METHOD(task_t
, migrate
, void,
157 private_ike_reauth_t
*this, ike_sa_t
*ike_sa
)
159 this->ike_delete
->task
.migrate(&this->ike_delete
->task
, ike_sa
);
160 this->ike_sa
= ike_sa
;
163 METHOD(task_t
, destroy
, void,
164 private_ike_reauth_t
*this)
166 this->ike_delete
->task
.destroy(&this->ike_delete
->task
);
171 * Described in header.
173 ike_reauth_t
*ike_reauth_create(ike_sa_t
*ike_sa
)
175 private_ike_reauth_t
*this;
180 .get_type
= _get_type
,
183 .process
= _process_i
,
188 .ike_delete
= ike_delete_create(ike_sa
, TRUE
),
191 return &this->public;