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
)));
144 status
= message
->parse_body(message
);
153 this->logger
->log(this->logger
, CONTROL_MORE
, "Error of type %s while parsing message body",mapping_find(status_m
,status
));
162 * @brief implements function process_configuration of private_ike_sa_t
164 static status_t
initialize_connection(private_ike_sa_t
*this, char *name
)
171 this->logger
->log(this->logger
, CONTROL
, "initializing connection");
173 this->original_initiator
= TRUE
;
175 message
= message_create();
183 message
->set_exchange_type(message
, IKE_SA_INIT
);
184 message
->set_original_initiator(message
, this->original_initiator
);
185 message
->set_message_id(message
, 0);
186 message
->set_ike_sa_id(message
, this->ike_sa_id
);
187 message
->set_request(message
, TRUE
);
189 status
= this->build_sa_payload(this, (sa_payload_t
**)&payload
);
190 if (status
!= SUCCESS
)
192 message
->destroy(message
);
195 payload
->set_next_type(payload
, KEY_EXCHANGE
);
196 message
->add_payload(message
, payload
);
198 status
= this->build_ke_payload(this, (ke_payload_t
**)&payload
);
199 if (status
!= SUCCESS
)
201 message
->destroy(message
);
204 payload
->set_next_type(payload
, NONCE
);
205 message
->add_payload(message
, payload
);
207 status
= this->build_nonce_payload(this, (nonce_payload_t
**)&payload
);
208 if (status
!= SUCCESS
)
210 message
->destroy(message
);
213 payload
->set_next_type(payload
, NO_PAYLOAD
);
214 message
->add_payload(message
, payload
);
216 status
= message
->generate(message
, &packet
);
217 if (status
!= SUCCESS
)
219 message
->destroy(message
);
223 global_send_queue
->add(global_send_queue
, packet
);
226 message
->destroy(message
);
233 * @brief implements function private_ike_sa_t.get_id
235 static ike_sa_id_t
* get_id(private_ike_sa_t
*this)
237 return this->ike_sa_id
;
241 * implements private_ike_sa_t.build_sa_payload
243 static status_t
build_sa_payload(private_ike_sa_t
*this, sa_payload_t
**payload
)
245 sa_payload_t
*sa_payload
;
246 proposal_substructure_t
*proposal
;
247 transform_substructure_t
*transform
;
248 transform_attribute_t
*attribute
;
251 this->logger
->log(this->logger
, CONTROL_MORE
, "building sa payload");
253 sa_payload
= sa_payload_create();
254 if (sa_payload
== NULL
)
260 { /* no loop, just to break */
261 proposal
= proposal_substructure_create();
262 if (proposal
== NULL
)
266 sa_payload
->add_proposal_substructure(sa_payload
, proposal
);
269 * Encryption Algorithm
271 transform
= transform_substructure_create();
272 if (transform
== NULL
)
276 proposal
->add_transform_substructure(proposal
, transform
);
277 transform
->set_is_last_transform(transform
, FALSE
);
278 transform
->set_transform_type(transform
, ENCRYPTION_ALGORITHM
);
279 transform
->set_transform_id(transform
, ENCR_AES_CBC
);
281 attribute
= transform_attribute_create();
282 if (attribute
== NULL
)
286 transform
->add_transform_attribute(transform
, attribute
);
287 attribute
->set_attribute_type(attribute
, KEY_LENGTH
);
288 attribute
->set_value(attribute
, 16);
291 * Pseudo-random Function
293 transform
= transform_substructure_create();
294 if (transform
== NULL
)
298 proposal
->add_transform_substructure(proposal
, transform
);
299 transform
->set_is_last_transform(transform
, FALSE
);
300 transform
->set_transform_type(transform
, PSEUDO_RANDOM_FUNCTION
);
301 transform
->set_transform_id(transform
, PRF_HMAC_SHA1
);
303 attribute
= transform_attribute_create();
304 if (attribute
== NULL
)
308 transform
->add_transform_attribute(transform
, attribute
);
309 attribute
->set_attribute_type(attribute
, KEY_LENGTH
);
310 attribute
->set_value(attribute
, 16);
314 * Integrity Algorithm
316 transform
= transform_substructure_create();
317 if (transform
== NULL
)
321 proposal
->add_transform_substructure(proposal
, transform
);
322 transform
->set_is_last_transform(transform
, FALSE
);
323 transform
->set_transform_type(transform
, INTEGRITIY_ALGORITHM
);
324 transform
->set_transform_id(transform
, AUTH_HMAC_SHA1_96
);
326 attribute
= transform_attribute_create();
327 if (attribute
== NULL
)
331 transform
->add_transform_attribute(transform
, attribute
);
332 attribute
->set_attribute_type(attribute
, KEY_LENGTH
);
333 attribute
->set_value(attribute
, 16);
337 * Diffie-Hellman Group
339 transform
= transform_substructure_create();
340 if (transform
== NULL
)
344 proposal
->add_transform_substructure(proposal
, transform
);
345 transform
->set_is_last_transform(transform
, FALSE
);
346 transform
->set_transform_type(transform
, DIFFIE_HELLMAN_GROUP
);
347 transform
->set_transform_id(transform
, MODP_1024_BIT
);
349 *payload
= sa_payload
;
359 * implements private_ike_sa_t.build_ke_payload
361 static status_t
build_ke_payload(private_ike_sa_t
*this, ke_payload_t
**payload
)
363 ke_payload_t
*ke_payload
;
367 this->logger
->log(this->logger
, CONTROL_MORE
, "building ke payload");
369 key_data
.ptr
= "12345";
370 key_data
.len
= strlen("12345");
373 ke_payload
= ke_payload_create();
374 if (ke_payload
== NULL
)
378 ke_payload
->set_dh_group_number(ke_payload
, MODP_1024_BIT
);
379 if (ke_payload
->set_key_exchange_data(ke_payload
, key_data
) != SUCCESS
)
381 ke_payload
->destroy(ke_payload
);
384 *payload
= ke_payload
;
389 * implements private_ike_sa_t.build_nonce_payload
391 static status_t
build_nonce_payload(private_ike_sa_t
*this, nonce_payload_t
**payload
)
393 nonce_payload_t
*nonce_payload
;
396 this->logger
->log(this->logger
, CONTROL_MORE
, "building nonce payload");
398 if (this->randomizer
->allocate_pseudo_random_bytes(this->randomizer
, 16, &nonce
) != SUCCESS
)
403 nonce_payload
= nonce_payload_create();
404 if (nonce_payload
== NULL
)
409 nonce_payload
->set_nonce(nonce_payload
, nonce
);
411 *payload
= nonce_payload
;
417 * @brief implements function destroy of private_ike_sa_t
419 static status_t
destroy (private_ike_sa_t
*this)
421 linked_list_iterator_t
*iterator
;
423 this->child_sas
->create_iterator(this->child_sas
, &iterator
, TRUE
);
424 while (iterator
->has_next(iterator
))
427 iterator
->current(iterator
, (void**)&payload
);
428 payload
->destroy(payload
);
430 iterator
->destroy(iterator
);
431 this->child_sas
->destroy(this->child_sas
);
433 this->ike_sa_id
->destroy(this->ike_sa_id
);
434 this->sent_messages
->destroy(this->sent_messages
);
435 this->randomizer
->destroy(this->randomizer
);
437 global_logger_manager
->destroy_logger(global_logger_manager
, this->logger
);
439 allocator_free(this);
445 * Described in Header
447 ike_sa_t
* ike_sa_create(ike_sa_id_t
*ike_sa_id
)
449 private_ike_sa_t
*this = allocator_alloc_thing(private_ike_sa_t
);
456 /* Public functions */
457 this->public.process_message
= (status_t(*)(ike_sa_t
*, message_t
*)) process_message
;
458 this->public.initialize_connection
= (status_t(*)(ike_sa_t
*, char*)) initialize_connection
;
459 this->public.get_id
= (ike_sa_id_t
*(*)(ike_sa_t
*)) get_id
;
460 this->public.destroy
= (status_t(*)(ike_sa_t
*))destroy
;
462 this->build_sa_payload
= build_sa_payload
;
463 this->build_ke_payload
= build_ke_payload
;
464 this->build_nonce_payload
= build_nonce_payload
;
468 /* initialize private fields */
469 if (ike_sa_id
->clone(ike_sa_id
,&(this->ike_sa_id
)) != SUCCESS
)
471 allocator_free(this);
474 this->child_sas
= linked_list_create();
475 if (this->child_sas
== NULL
)
477 this->ike_sa_id
->destroy(this->ike_sa_id
);
478 allocator_free(this);
481 this->randomizer
= randomizer_create();
482 if (this->randomizer
== NULL
)
484 this->child_sas
->destroy(this->child_sas
);
485 this->ike_sa_id
->destroy(this->ike_sa_id
);
486 allocator_free(this);
488 this->sent_messages
= linked_list_create();
489 if (this->sent_messages
== NULL
)
491 this->randomizer
->destroy(this->randomizer
);
492 this->child_sas
->destroy(this->child_sas
);
493 this->ike_sa_id
->destroy(this->ike_sa_id
);
494 allocator_free(this);
496 this->logger
= global_logger_manager
->create_logger(global_logger_manager
, IKE_SA
, NULL
);
497 if (this->logger
== NULL
)
499 this->randomizer
->destroy(this->randomizer
);
500 this->child_sas
->destroy(this->child_sas
);
501 this->ike_sa_id
->destroy(this->ike_sa_id
);
502 this->sent_messages
->destroy(this->sent_messages
);
503 allocator_free(this);
506 this->me
.host
= NULL
;
507 this->other
.host
= NULL
;
510 /* at creation time, IKE_SA isn't in a specific state */
511 this->current_state
= NO_STATE
;
513 return (&this->public);