4 * @brief Class ike_sa_t. An object of this type is managed by an
5 * ike_sa_manager_t object and represents an IKE_SA
10 * Copyright (C) 2005 Jan Hutter, Martin Willi
11 * Hochschule fuer Technik Rapperswil
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
28 #include "utils/allocator.h"
29 #include "utils/linked_list.h"
30 #include "utils/logger_manager.h"
31 #include "utils/randomizer.h"
32 #include "payloads/sa_payload.h"
33 #include "payloads/nonce_payload.h"
34 #include "payloads/ke_payload.h"
35 #include "payloads/transform_substructure.h"
36 #include "payloads/transform_attribute.h"
40 * States in which a IKE_SA can actually be
42 typedef enum ike_sa_state_e ike_sa_state_t
;
47 * IKE_SA is is not in a state
52 * A IKE_SA_INIT-message was sent: role initiator
54 IKE_SA_INIT_REQUESTED
= 2,
57 * A IKE_SA_INIT-message was replied: role responder
59 IKE_SA_INIT_RESPONDED
= 3,
62 * An IKE_AUTH-message was sent after a successful
63 * IKE_SA_INIT-exchange: role initiator
65 IKE_AUTH_REQUESTED
= 4,
68 * An IKE_AUTH-message was replied: role responder.
69 * In this state, all the informations for an IKE_SA
70 * and one CHILD_SA are known.
72 IKE_SA_INITIALIZED
= 5
77 * Private data of an message_t object
79 typedef struct private_ike_sa_s private_ike_sa_t
;
81 struct private_ike_sa_s
{
84 * Public part of a ike_sa_t object
88 status_t (*build_sa_payload
) (private_ike_sa_t
*this, sa_payload_t
**payload
);
89 status_t (*build_nonce_payload
) (private_ike_sa_t
*this, nonce_payload_t
**payload
);
90 status_t (*build_ke_payload
) (private_ike_sa_t
*this, ke_payload_t
**payload
);
94 * Identifier for the current IKE_SA
96 ike_sa_id_t
*ike_sa_id
;
99 * Linked List containing the child sa's of the current IKE_SA
101 linked_list_t
*child_sas
;
104 * Current state of the IKE_SA
106 ike_sa_state_t current_state
;
109 * is this IKE_SA the original initiator of this IKE_SA
111 bool original_initiator
;
114 * this SA's source for random data
116 randomizer_t
*randomizer
;
118 linked_list_t
*sent_messages
;
129 * a logger for this IKE_SA
135 * @brief implements function process_message of private_ike_sa_t
137 static status_t
process_message (private_ike_sa_t
*this, message_t
*message
)
140 /* @TODO Add Message Processing here */
142 this->logger
->log(this->logger
, CONTROL
|MORE
, "Process message of exchange type %s",mapping_find(exchange_type_m
,message
->get_exchange_type(message
)));
145 status
= message
->parse_body(message
);
154 this->logger
->log(this->logger
, ERROR
, "Error of type %s while parsing message body",mapping_find(status_m
,status
));
155 switch (this->current_state
)
160 /* create delete job for this ike_sa */
161 delete_job
= (job_t
*) delete_ike_sa_job_create(this->ike_sa_id
);
162 if (delete_job
== NULL
)
164 this->logger
->log(this->logger
, ERROR
, "Job to delete IKE SA could not be created");
167 status
= global_job_queue
->add(global_job_queue
,delete_job
);
168 if (status
!= SUCCESS
)
170 this->logger
->log(this->logger
, ERROR
, "%s Job to delete IKE SA could not be added to job queue",mapping_find(status_m
,status
));
171 delete_job
->destroy_all(delete_job
);
189 * @brief implements function process_configuration of private_ike_sa_t
191 static status_t
initialize_connection(private_ike_sa_t
*this, char *name
)
198 this->logger
->log(this->logger
, CONTROL
, "initializing connection");
200 this->original_initiator
= TRUE
;
202 status
= global_configuration_manager
->get_local_host(global_configuration_manager
, name
, &(this->me
.host
));
203 if (status
!= SUCCESS
)
208 status
= global_configuration_manager
->get_remote_host(global_configuration_manager
, name
, &(this->other
.host
));
209 if (status
!= SUCCESS
)
214 message
= message_create();
222 message
->set_source(message
, this->me
.host
);
223 message
->set_destination(message
, this->other
.host
);
225 message
->set_exchange_type(message
, IKE_SA_INIT
);
226 message
->set_original_initiator(message
, this->original_initiator
);
227 message
->set_message_id(message
, 0);
228 message
->set_ike_sa_id(message
, this->ike_sa_id
);
229 message
->set_request(message
, TRUE
);
231 status
= this->build_sa_payload(this, (sa_payload_t
**)&payload
);
232 if (status
!= SUCCESS
)
234 this->logger
->log(this->logger
, ERROR
, "Could not build SA payload");
235 message
->destroy(message
);
238 payload
->set_next_type(payload
, KEY_EXCHANGE
);
239 message
->add_payload(message
, payload
);
241 status
= this->build_ke_payload(this, (ke_payload_t
**)&payload
);
242 if (status
!= SUCCESS
)
244 this->logger
->log(this->logger
, ERROR
, "Could not build KE payload");
245 message
->destroy(message
);
248 payload
->set_next_type(payload
, NONCE
);
249 message
->add_payload(message
, payload
);
251 status
= this->build_nonce_payload(this, (nonce_payload_t
**)&payload
);
252 if (status
!= SUCCESS
)
254 this->logger
->log(this->logger
, ERROR
, "Could not build NONCE payload");
255 message
->destroy(message
);
258 payload
->set_next_type(payload
, NO_PAYLOAD
);
259 message
->add_payload(message
, payload
);
261 status
= message
->generate(message
, &packet
);
262 if (status
!= SUCCESS
)
264 this->logger
->log(this->logger
, ERROR
, "Could not generate message");
265 message
->destroy(message
);
270 global_send_queue
->add(global_send_queue
, packet
);
272 message
->destroy(message
);
274 this->current_state
= IKE_SA_INIT_REQUESTED
;
280 * @brief implements function private_ike_sa_t.get_id
282 static ike_sa_id_t
* get_id(private_ike_sa_t
*this)
284 return this->ike_sa_id
;
288 * implements private_ike_sa_t.build_sa_payload
290 static status_t
build_sa_payload(private_ike_sa_t
*this, sa_payload_t
**payload
)
292 sa_payload_t
* sa_payload
;
293 linked_list_iterator_t
*iterator
;
296 this->logger
->log(this->logger
, CONTROL
|MORE
, "building sa payload");
298 sa_payload
= sa_payload_create();
299 if (sa_payload
== NULL
)
303 status
= sa_payload
->create_proposal_substructure_iterator(sa_payload
, &iterator
, FALSE
);
304 if (status
!= SUCCESS
)
306 sa_payload
->destroy(sa_payload
);
309 status
= global_configuration_manager
->get_proposals_for_host(global_configuration_manager
, this->other
.host
, iterator
);
310 if (status
!= SUCCESS
)
312 sa_payload
->destroy(sa_payload
);
316 *payload
= sa_payload
;
322 * implements private_ike_sa_t.build_ke_payload
324 static status_t
build_ke_payload(private_ike_sa_t
*this, ke_payload_t
**payload
)
326 ke_payload_t
*ke_payload
;
330 this->logger
->log(this->logger
, CONTROL
|MORE
, "building ke payload");
332 key_data
.ptr
= "12345";
333 key_data
.len
= strlen("12345");
336 ke_payload
= ke_payload_create();
337 if (ke_payload
== NULL
)
341 ke_payload
->set_dh_group_number(ke_payload
, MODP_1024_BIT
);
342 if (ke_payload
->set_key_exchange_data(ke_payload
, key_data
) != SUCCESS
)
344 ke_payload
->destroy(ke_payload
);
347 *payload
= ke_payload
;
352 * implements private_ike_sa_t.build_nonce_payload
354 static status_t
build_nonce_payload(private_ike_sa_t
*this, nonce_payload_t
**payload
)
356 nonce_payload_t
*nonce_payload
;
359 this->logger
->log(this->logger
, CONTROL
|MORE
, "building nonce payload");
361 if (this->randomizer
->allocate_pseudo_random_bytes(this->randomizer
, 16, &nonce
) != SUCCESS
)
366 nonce_payload
= nonce_payload_create();
367 if (nonce_payload
== NULL
)
372 nonce_payload
->set_nonce(nonce_payload
, nonce
);
374 *payload
= nonce_payload
;
380 * @brief implements function destroy of private_ike_sa_t
382 static status_t
destroy (private_ike_sa_t
*this)
384 linked_list_iterator_t
*iterator
;
386 this->child_sas
->create_iterator(this->child_sas
, &iterator
, TRUE
);
387 while (iterator
->has_next(iterator
))
390 iterator
->current(iterator
, (void**)&payload
);
391 payload
->destroy(payload
);
393 iterator
->destroy(iterator
);
394 this->child_sas
->destroy(this->child_sas
);
396 this->ike_sa_id
->destroy(this->ike_sa_id
);
397 this->sent_messages
->destroy(this->sent_messages
);
398 this->randomizer
->destroy(this->randomizer
);
400 global_logger_manager
->destroy_logger(global_logger_manager
, this->logger
);
402 allocator_free(this);
408 * Described in Header
410 ike_sa_t
* ike_sa_create(ike_sa_id_t
*ike_sa_id
)
412 private_ike_sa_t
*this = allocator_alloc_thing(private_ike_sa_t
);
419 /* Public functions */
420 this->public.process_message
= (status_t(*)(ike_sa_t
*, message_t
*)) process_message
;
421 this->public.initialize_connection
= (status_t(*)(ike_sa_t
*, char*)) initialize_connection
;
422 this->public.get_id
= (ike_sa_id_t
*(*)(ike_sa_t
*)) get_id
;
423 this->public.destroy
= (status_t(*)(ike_sa_t
*))destroy
;
425 this->build_sa_payload
= build_sa_payload
;
426 this->build_ke_payload
= build_ke_payload
;
427 this->build_nonce_payload
= build_nonce_payload
;
431 /* initialize private fields */
432 if (ike_sa_id
->clone(ike_sa_id
,&(this->ike_sa_id
)) != SUCCESS
)
434 allocator_free(this);
437 this->child_sas
= linked_list_create();
438 if (this->child_sas
== NULL
)
440 this->ike_sa_id
->destroy(this->ike_sa_id
);
441 allocator_free(this);
444 this->randomizer
= randomizer_create();
445 if (this->randomizer
== NULL
)
447 this->child_sas
->destroy(this->child_sas
);
448 this->ike_sa_id
->destroy(this->ike_sa_id
);
449 allocator_free(this);
451 this->sent_messages
= linked_list_create();
452 if (this->sent_messages
== NULL
)
454 this->randomizer
->destroy(this->randomizer
);
455 this->child_sas
->destroy(this->child_sas
);
456 this->ike_sa_id
->destroy(this->ike_sa_id
);
457 allocator_free(this);
459 this->logger
= global_logger_manager
->create_logger(global_logger_manager
, IKE_SA
, NULL
);
460 if (this->logger
== NULL
)
462 this->randomizer
->destroy(this->randomizer
);
463 this->child_sas
->destroy(this->child_sas
);
464 this->ike_sa_id
->destroy(this->ike_sa_id
);
465 this->sent_messages
->destroy(this->sent_messages
);
466 allocator_free(this);
469 this->me
.host
= NULL
;
470 this->other
.host
= NULL
;
473 /* at creation time, IKE_SA isn't in a specific state */
474 this->current_state
= NO_STATE
;
476 return (&this->public);