2 * @file ike_sa_manager.c
4 * @brief Implementation of ike_sa_mananger_t.
9 * Copyright (C) 2005-2006 Martin Willi
10 * Copyright (C) 2005 Jan Hutter
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
27 #include "ike_sa_manager.h"
30 #include <sa/ike_sa_id.h>
32 #include <utils/linked_list.h>
34 typedef struct entry_t entry_t
;
37 * An entry in the linked list, contains IKE_SA, locking and lookup data.
42 * Number of threads waiting for this ike_sa_t object.
47 * Condvar where threads can wait until ike_sa_t object is free for use again.
49 pthread_cond_t condvar
;
52 * Is this ike_sa currently checked out?
57 * Does this SA drives out new threads?
59 bool driveout_new_threads
;
62 * Does this SA drives out waiting threads?
64 bool driveout_waiting_threads
;
67 * Identifiaction of an IKE_SA (SPIs).
69 ike_sa_id_t
*ike_sa_id
;
72 * The contained ike_sa_t object.
77 * hash of the IKE_SA_INIT message, used to detect retransmissions
82 * message ID currently processing, if any
88 * Implementation of entry_t.destroy.
90 static status_t
entry_destroy(entry_t
*this)
92 /* also destroy IKE SA */
93 this->ike_sa
->destroy(this->ike_sa
);
94 this->ike_sa_id
->destroy(this->ike_sa_id
);
95 chunk_free(&this->init_hash
);
101 * Creates a new entry for the ike_sa_t list.
103 static entry_t
*entry_create(ike_sa_id_t
*ike_sa_id
)
105 entry_t
*this = malloc_thing(entry_t
);
107 this->waiting_threads
= 0;
108 pthread_cond_init(&this->condvar
, NULL
);
110 /* we set checkout flag when we really give it out */
111 this->checked_out
= FALSE
;
112 this->driveout_new_threads
= FALSE
;
113 this->driveout_waiting_threads
= FALSE
;
114 this->message_id
= -1;
115 this->init_hash
= chunk_empty
;
117 /* ike_sa_id is always cloned */
118 this->ike_sa_id
= ike_sa_id
->clone(ike_sa_id
);
120 /* create new ike_sa */
121 this->ike_sa
= ike_sa_create(ike_sa_id
);
127 typedef struct private_ike_sa_manager_t private_ike_sa_manager_t
;
130 * Additional private members of ike_sa_manager_t.
132 struct private_ike_sa_manager_t
{
134 * Public interface of ike_sa_manager_t.
136 ike_sa_manager_t
public;
139 * Lock for exclusivly accessing the manager.
141 pthread_mutex_t mutex
;
144 * Linked list with entries for the ike_sa_t objects.
146 linked_list_t
*ike_sa_list
;
149 * A randomizer, to get random SPIs for our side
151 randomizer_t
*randomizer
;
154 * SHA1 hasher for IKE_SA_INIT retransmit detection
160 * Implementation of private_ike_sa_manager_t.get_entry_by_id.
162 static status_t
get_entry_by_id(private_ike_sa_manager_t
*this, ike_sa_id_t
*ike_sa_id
, entry_t
**entry
)
164 linked_list_t
*list
= this->ike_sa_list
;
165 iterator_t
*iterator
;
169 /* create iterator over list of ike_sa's */
170 iterator
= list
->create_iterator(list
, TRUE
);
175 while (iterator
->iterate(iterator
, (void**)¤t
))
177 if (current
->ike_sa_id
->equals(current
->ike_sa_id
, ike_sa_id
))
179 DBG2(DBG_MGR
, "found entry by both SPIs");
184 if (ike_sa_id
->get_responder_spi(ike_sa_id
) == 0 ||
185 current
->ike_sa_id
->get_responder_spi(current
->ike_sa_id
) == 0)
187 /* seems to be a half ready ike_sa */
188 if ((current
->ike_sa_id
->get_initiator_spi(current
->ike_sa_id
) ==
189 ike_sa_id
->get_initiator_spi(ike_sa_id
)) &&
190 (current
->ike_sa_id
->is_initiator(ike_sa_id
) ==
191 ike_sa_id
->is_initiator(current
->ike_sa_id
)))
193 DBG2(DBG_MGR
, "found entry by initiator SPI");
201 iterator
->destroy(iterator
);
206 * Implementation of private_ike_sa_manager_t.get_entry_by_sa.
208 static status_t
get_entry_by_sa(private_ike_sa_manager_t
*this, ike_sa_t
*ike_sa
, entry_t
**entry
)
210 linked_list_t
*list
= this->ike_sa_list
;
211 iterator_t
*iterator
;
215 iterator
= list
->create_iterator(list
, TRUE
);
220 while (iterator
->iterate(iterator
, (void**)¤t
))
222 /* only pointers are compared */
223 if (current
->ike_sa
== ike_sa
)
225 DBG2(DBG_MGR
, "found entry by pointer");
231 iterator
->destroy(iterator
);
237 * Implementation of private_ike_sa_manager_s.delete_entry.
239 static status_t
delete_entry(private_ike_sa_manager_t
*this, entry_t
*entry
)
241 linked_list_t
*list
= this->ike_sa_list
;
242 iterator_t
*iterator
;
246 iterator
= list
->create_iterator(list
, TRUE
);
250 while (iterator
->iterate(iterator
, (void**)¤t
))
252 if (current
== entry
)
254 /* mark it, so now new threads can get this entry */
255 entry
->driveout_new_threads
= TRUE
;
256 /* wait until all workers have done their work */
257 while (entry
->waiting_threads
)
260 pthread_cond_broadcast(&(entry
->condvar
));
261 /* they will wake us again when their work is done */
262 pthread_cond_wait(&(entry
->condvar
), &(this->mutex
));
265 DBG2(DBG_MGR
, "found entry by pointer, deleting it");
266 iterator
->remove(iterator
);
267 entry_destroy(entry
);
272 iterator
->destroy(iterator
);
277 * Wait until no other thread is using an IKE_SA, return FALSE if entry not
280 static bool wait_for_entry(private_ike_sa_manager_t
*this, entry_t
*entry
)
282 if (entry
->driveout_new_threads
)
284 /* we are not allowed to get this */
287 while (entry
->checked_out
&& !entry
->driveout_waiting_threads
)
289 /* so wait until we can get it for us.
290 * we register us as waiting. */
291 entry
->waiting_threads
++;
292 pthread_cond_wait(&(entry
->condvar
), &(this->mutex
));
293 entry
->waiting_threads
--;
295 /* hm, a deletion request forbids us to get this SA, get next one */
296 if (entry
->driveout_waiting_threads
)
298 /* we must signal here, others may be waiting on it, too */
299 pthread_cond_signal(&(entry
->condvar
));
306 * Implementation of private_ike_sa_manager_t.get_next_spi.
308 static u_int64_t
get_next_spi(private_ike_sa_manager_t
*this)
312 this->randomizer
->get_pseudo_random_bytes(this->randomizer
, sizeof(spi
),
318 * Implementation of of ike_sa_manager.checkout.
320 static ike_sa_t
* checkout(private_ike_sa_manager_t
*this, ike_sa_id_t
*ike_sa_id
)
322 ike_sa_t
*ike_sa
= NULL
;
325 DBG2(DBG_MGR
, "checkout IKE_SA, %d IKE_SAs in manager",
326 this->ike_sa_list
->get_count(this->ike_sa_list
));
328 pthread_mutex_lock(&(this->mutex
));
329 if (get_entry_by_id(this, ike_sa_id
, &entry
) == SUCCESS
)
331 if (wait_for_entry(this, entry
))
333 DBG2(DBG_MGR
, "IKE_SA successfully checked out");
334 entry
->checked_out
= TRUE
;
335 ike_sa
= entry
->ike_sa
;
338 pthread_mutex_unlock(&this->mutex
);
339 charon
->bus
->set_sa(charon
->bus
, ike_sa
);
344 * Implementation of of ike_sa_manager.checkout_new.
346 static ike_sa_t
*checkout_new(private_ike_sa_manager_t
* this, bool initiator
)
353 id
= ike_sa_id_create(get_next_spi(this), 0, TRUE
);
357 id
= ike_sa_id_create(0, get_next_spi(this), FALSE
);
359 entry
= entry_create(id
);
361 pthread_mutex_lock(&this->mutex
);
362 this->ike_sa_list
->insert_last(this->ike_sa_list
, entry
);
363 entry
->checked_out
= TRUE
;
364 pthread_mutex_unlock(&this->mutex
);
365 DBG2(DBG_MGR
, "created IKE_SA, %d IKE_SAs in manager",
366 this->ike_sa_list
->get_count(this->ike_sa_list
));
367 return entry
->ike_sa
;
371 * Implementation of of ike_sa_manager.checkout_by_id.
373 static ike_sa_t
* checkout_by_message(private_ike_sa_manager_t
* this,
377 ike_sa_t
*ike_sa
= NULL
;
378 ike_sa_id_t
*id
= message
->get_ike_sa_id(message
);
380 id
->switch_initiator(id
);
382 DBG2(DBG_MGR
, "checkout IKE_SA by message, %d IKE_SAs in manager",
383 this->ike_sa_list
->get_count(this->ike_sa_list
));
385 if (message
->get_request(message
) &&
386 message
->get_exchange_type(message
) == IKE_SA_INIT
)
388 /* IKE_SA_INIT request. Check for an IKE_SA with such a message hash. */
389 iterator_t
*iterator
;
392 data
= message
->get_packet_data(message
);
393 this->hasher
->allocate_hash(this->hasher
, data
, &hash
);
396 pthread_mutex_lock(&this->mutex
);
397 iterator
= this->ike_sa_list
->create_iterator(this->ike_sa_list
, TRUE
);
398 while (iterator
->iterate(iterator
, (void**)&entry
))
400 if (chunk_equals(hash
, entry
->init_hash
))
402 if (entry
->message_id
== 0)
404 iterator
->destroy(iterator
);
405 pthread_mutex_unlock(&this->mutex
);
408 DBG1(DBG_MGR
, "ignoring IKE_SA_INIT, already processing");
411 else if (wait_for_entry(this, entry
))
413 DBG2(DBG_MGR
, "IKE_SA checked out by hash");
414 entry
->checked_out
= TRUE
;
415 entry
->message_id
= message
->get_message_id(message
);
416 ike_sa
= entry
->ike_sa
;
421 iterator
->destroy(iterator
);
422 pthread_mutex_unlock(&this->mutex
);
426 if (id
->get_responder_spi(id
) == 0 &&
427 message
->get_exchange_type(message
) == IKE_SA_INIT
)
429 /* no IKE_SA found, create a new one */
430 id
->set_responder_spi(id
, get_next_spi(this));
431 entry
= entry_create(id
);
433 pthread_mutex_lock(&this->mutex
);
434 this->ike_sa_list
->insert_last(this->ike_sa_list
, entry
);
435 entry
->checked_out
= TRUE
;
436 entry
->message_id
= message
->get_message_id(message
);
437 pthread_mutex_unlock(&this->mutex
);
438 entry
->init_hash
= hash
;
439 ike_sa
= entry
->ike_sa
;
444 DBG1(DBG_MGR
, "ignoring message, no such IKE_SA");
452 charon
->bus
->set_sa(charon
->bus
, ike_sa
);
456 pthread_mutex_lock(&(this->mutex
));
457 if (get_entry_by_id(this, id
, &entry
) == SUCCESS
)
459 /* only check out if we are not processing this request */
460 if (message
->get_request(message
) &&
461 message
->get_message_id(message
) == entry
->message_id
)
463 DBG1(DBG_MGR
, "ignoring request with ID %d, already processing",
466 else if (wait_for_entry(this, entry
))
468 ike_sa_id_t
*ike_id
= entry
->ike_sa
->get_id(entry
->ike_sa
);
469 DBG2(DBG_MGR
, "IKE_SA successfully checked out");
470 entry
->checked_out
= TRUE
;
471 entry
->message_id
= message
->get_message_id(message
);
472 if (ike_id
->get_responder_spi(ike_id
) == 0)
474 ike_id
->set_responder_spi(ike_id
, id
->get_responder_spi(id
));
476 ike_sa
= entry
->ike_sa
;
479 pthread_mutex_unlock(&this->mutex
);
481 charon
->bus
->set_sa(charon
->bus
, ike_sa
);
486 * Implementation of of ike_sa_manager.checkout_by_id.
488 static ike_sa_t
* checkout_by_peer(private_ike_sa_manager_t
*this,
489 host_t
*my_host
, host_t
*other_host
,
490 identification_t
*my_id
,
491 identification_t
*other_id
)
493 iterator_t
*iterator
;
495 ike_sa_t
*ike_sa
= NULL
;
497 pthread_mutex_lock(&(this->mutex
));
499 iterator
= this->ike_sa_list
->create_iterator(this->ike_sa_list
, TRUE
);
500 while (iterator
->iterate(iterator
, (void**)&entry
))
502 identification_t
*found_my_id
, *found_other_id
;
503 host_t
*found_my_host
, *found_other_host
;
506 if (!wait_for_entry(this, entry
))
511 if (entry
->ike_sa
->get_state(entry
->ike_sa
) == IKE_DELETING
)
513 /* skip IKE_SA which are not useable */
517 found_my_id
= entry
->ike_sa
->get_my_id(entry
->ike_sa
);
518 found_other_id
= entry
->ike_sa
->get_other_id(entry
->ike_sa
);
519 found_my_host
= entry
->ike_sa
->get_my_host(entry
->ike_sa
);
520 found_other_host
= entry
->ike_sa
->get_other_host(entry
->ike_sa
);
522 if (found_my_id
->get_type(found_my_id
) == ID_ANY
&&
523 found_other_id
->get_type(found_other_id
) == ID_ANY
)
525 /* IKE_SA has no IDs yet, so we can't use it */
529 /* compare ID and hosts. Supplied ID may contain wildcards, and IP
531 if ((found_my_host
->is_anyaddr(found_my_host
) ||
532 my_host
->ip_equals(my_host
, found_my_host
)) &&
533 (found_other_host
->is_anyaddr(found_other_host
) ||
534 other_host
->ip_equals(other_host
, found_other_host
)) &&
535 found_my_id
->matches(found_my_id
, my_id
, &wc
) &&
536 found_other_id
->matches(found_other_id
, other_id
, &wc
))
538 /* looks good, we take this one */
539 DBG2(DBG_MGR
, "found an existing IKE_SA for %H[%D]...%H[%D]",
540 my_host
, other_host
, my_id
, other_id
);
541 entry
->checked_out
= TRUE
;
542 ike_sa
= entry
->ike_sa
;
545 iterator
->destroy(iterator
);
549 u_int64_t initiator_spi
;
551 ike_sa_id_t
*new_ike_sa_id
;
553 initiator_spi
= get_next_spi(this);
554 new_ike_sa_id
= ike_sa_id_create(0, 0, TRUE
);
555 new_ike_sa_id
->set_initiator_spi(new_ike_sa_id
, initiator_spi
);
558 new_entry
= entry_create(new_ike_sa_id
);
559 DBG2(DBG_MGR
, "created IKE_SA");
560 new_ike_sa_id
->destroy(new_ike_sa_id
);
562 this->ike_sa_list
->insert_last(this->ike_sa_list
, new_entry
);
564 /* check ike_sa out */
565 DBG2(DBG_MGR
, "new IKE_SA created for IDs [%D]...[%D]", my_id
, other_id
);
566 new_entry
->checked_out
= TRUE
;
567 ike_sa
= new_entry
->ike_sa
;
569 pthread_mutex_unlock(&(this->mutex
));
570 charon
->bus
->set_sa(charon
->bus
, ike_sa
);
575 * Implementation of of ike_sa_manager.checkout_by_id.
577 static ike_sa_t
* checkout_by_id(private_ike_sa_manager_t
*this, u_int32_t id
,
580 iterator_t
*iterator
, *children
;
582 ike_sa_t
*ike_sa
= NULL
;
583 child_sa_t
*child_sa
;
585 pthread_mutex_lock(&(this->mutex
));
587 iterator
= this->ike_sa_list
->create_iterator(this->ike_sa_list
, TRUE
);
588 while (iterator
->iterate(iterator
, (void**)&entry
))
590 if (wait_for_entry(this, entry
))
592 /* look for a child with such a reqid ... */
595 children
= entry
->ike_sa
->create_child_sa_iterator(entry
->ike_sa
);
596 while (children
->iterate(children
, (void**)&child_sa
))
598 if (child_sa
->get_reqid(child_sa
) == id
)
600 ike_sa
= entry
->ike_sa
;
604 children
->destroy(children
);
606 else /* ... or for a IKE_SA with such a unique id */
608 if (entry
->ike_sa
->get_unique_id(entry
->ike_sa
) == id
)
610 ike_sa
= entry
->ike_sa
;
613 /* got one, return */
616 entry
->checked_out
= TRUE
;
621 iterator
->destroy(iterator
);
622 pthread_mutex_unlock(&(this->mutex
));
624 charon
->bus
->set_sa(charon
->bus
, ike_sa
);
629 * Implementation of of ike_sa_manager.checkout_by_name.
631 static ike_sa_t
* checkout_by_name(private_ike_sa_manager_t
*this, char *name
,
634 iterator_t
*iterator
, *children
;
636 ike_sa_t
*ike_sa
= NULL
;
637 child_sa_t
*child_sa
;
639 pthread_mutex_lock(&(this->mutex
));
641 iterator
= this->ike_sa_list
->create_iterator(this->ike_sa_list
, TRUE
);
642 while (iterator
->iterate(iterator
, (void**)&entry
))
644 if (wait_for_entry(this, entry
))
646 /* look for a child with such a policy name ... */
649 children
= entry
->ike_sa
->create_child_sa_iterator(entry
->ike_sa
);
650 while (children
->iterate(children
, (void**)&child_sa
))
652 if (streq(child_sa
->get_name(child_sa
), name
))
654 ike_sa
= entry
->ike_sa
;
658 children
->destroy(children
);
660 else /* ... or for a IKE_SA with such a connection name */
662 if (streq(entry
->ike_sa
->get_name(entry
->ike_sa
), name
))
664 ike_sa
= entry
->ike_sa
;
667 /* got one, return */
670 entry
->checked_out
= TRUE
;
675 iterator
->destroy(iterator
);
676 pthread_mutex_unlock(&(this->mutex
));
678 charon
->bus
->set_sa(charon
->bus
, ike_sa
);
683 * Iterator hook for iterate, gets ike_sas instead of entries
685 static hook_result_t
iterator_hook(private_ike_sa_manager_t
* this, entry_t
*in
,
688 /* check out entry */
689 if (wait_for_entry(this, in
))
698 * Implementation of ike_sa_manager_t.create_iterator.
700 static iterator_t
*create_iterator(private_ike_sa_manager_t
* this)
702 iterator_t
*iterator
= this->ike_sa_list
->create_iterator_locked(
703 this->ike_sa_list
, &this->mutex
);
704 /* register hook to iterator over ike_sas, not entries */
705 iterator
->set_iterator_hook(iterator
, (iterator_hook_t
*)iterator_hook
, this);
710 * Implementation of ike_sa_manager_t.checkin.
712 static status_t
checkin(private_ike_sa_manager_t
*this, ike_sa_t
*ike_sa
)
714 /* to check the SA back in, we look for the pointer of the ike_sa
716 * We can't search by SPI's since the MAY have changed (e.g. on reception
717 * of a IKE_SA_INIT response). Updating of the SPI MAY be necessary...
721 ike_sa_id_t
*ike_sa_id
;
723 ike_sa_id
= ike_sa
->get_id(ike_sa
);
725 DBG2(DBG_MGR
, "checkin IKE_SA");
727 pthread_mutex_lock(&(this->mutex
));
729 /* look for the entry */
730 if (get_entry_by_sa(this, ike_sa
, &entry
) == SUCCESS
)
732 /* ike_sa_id must be updated */
733 entry
->ike_sa_id
->replace_values(entry
->ike_sa_id
, ike_sa
->get_id(ike_sa
));
734 /* signal waiting threads */
735 entry
->checked_out
= FALSE
;
736 entry
->message_id
= -1;
737 DBG2(DBG_MGR
, "check-in of IKE_SA successful.");
738 pthread_cond_signal(&(entry
->condvar
));
743 DBG2(DBG_MGR
, "tried to check in nonexisting IKE_SA");
744 /* this SA is no more, this REALLY should not happen */
748 DBG2(DBG_MGR
, "%d IKE_SAs in manager now",
749 this->ike_sa_list
->get_count(this->ike_sa_list
));
750 pthread_mutex_unlock(&(this->mutex
));
752 charon
->bus
->set_sa(charon
->bus
, NULL
);
758 * Implementation of ike_sa_manager_t.checkin_and_destroy.
760 static status_t
checkin_and_destroy(private_ike_sa_manager_t
*this, ike_sa_t
*ike_sa
)
762 /* deletion is a bit complex, we must garant that no thread is waiting for
764 * We take this SA from the list, and start signaling while threads
765 * are in the condvar.
769 ike_sa_id_t
*ike_sa_id
;
771 ike_sa_id
= ike_sa
->get_id(ike_sa
);
772 DBG2(DBG_MGR
, "checkin and destroy IKE_SA");
774 pthread_mutex_lock(&(this->mutex
));
776 if (get_entry_by_sa(this, ike_sa
, &entry
) == SUCCESS
)
778 /* drive out waiting threads, as we are in hurry */
779 entry
->driveout_waiting_threads
= TRUE
;
781 delete_entry(this, entry
);
783 DBG2(DBG_MGR
, "check-in and destroy of IKE_SA successful");
788 DBG2(DBG_MGR
, "tried to check-in and delete nonexisting IKE_SA");
792 pthread_mutex_unlock(&(this->mutex
));
793 charon
->bus
->set_sa(charon
->bus
, ike_sa
);
798 * Implementation of ike_sa_manager_t.get_half_open_count.
800 static int get_half_open_count(private_ike_sa_manager_t
*this, host_t
*ip
)
802 iterator_t
*iterator
;
806 pthread_mutex_lock(&(this->mutex
));
807 iterator
= this->ike_sa_list
->create_iterator(this->ike_sa_list
, TRUE
);
808 while (iterator
->iterate(iterator
, (void**)&entry
))
810 /* we check if we have a responder CONNECTING IKE_SA without checkout */
811 if (!entry
->ike_sa_id
->is_initiator(entry
->ike_sa_id
) &&
812 entry
->ike_sa
->get_state(entry
->ike_sa
) == IKE_CONNECTING
)
814 /* if we have a host, we have wait until no other uses the IKE_SA */
817 if (wait_for_entry(this, entry
) && ip
->ip_equals(ip
,
818 entry
->ike_sa
->get_other_host(entry
->ike_sa
)))
829 iterator
->destroy(iterator
);
831 pthread_mutex_unlock(&(this->mutex
));
836 * Implementation of ike_sa_manager_t.destroy.
838 static void destroy(private_ike_sa_manager_t
*this)
840 /* destroy all list entries */
841 linked_list_t
*list
= this->ike_sa_list
;
842 iterator_t
*iterator
;
845 pthread_mutex_lock(&(this->mutex
));
846 DBG2(DBG_MGR
, "going to destroy IKE_SA manager and all managed IKE_SA's");
847 /* Step 1: drive out all waiting threads */
848 DBG2(DBG_MGR
, "set driveout flags for all stored IKE_SA's");
849 iterator
= list
->create_iterator(list
, TRUE
);
850 while (iterator
->iterate(iterator
, (void**)&entry
))
852 /* do not accept new threads, drive out waiting threads */
853 entry
->driveout_new_threads
= TRUE
;
854 entry
->driveout_waiting_threads
= TRUE
;
856 DBG2(DBG_MGR
, "wait for all threads to leave IKE_SA's");
857 /* Step 2: wait until all are gone */
858 iterator
->reset(iterator
);
859 while (iterator
->iterate(iterator
, (void**)&entry
))
861 while (entry
->waiting_threads
)
864 pthread_cond_broadcast(&(entry
->condvar
));
865 /* go sleeping until they are gone */
866 pthread_cond_wait(&(entry
->condvar
), &(this->mutex
));
869 DBG2(DBG_MGR
, "delete all IKE_SA's");
870 /* Step 3: initiate deletion of all IKE_SAs */
871 iterator
->reset(iterator
);
872 while (iterator
->iterate(iterator
, (void**)&entry
))
874 entry
->ike_sa
->delete(entry
->ike_sa
);
876 iterator
->destroy(iterator
);
878 DBG2(DBG_MGR
, "destroy all entries");
879 /* Step 4: destroy all entries */
880 list
->destroy_function(list
, (void*)entry_destroy
);
881 pthread_mutex_unlock(&(this->mutex
));
883 this->randomizer
->destroy(this->randomizer
);
884 this->hasher
->destroy(this->hasher
);
890 * Described in header.
892 ike_sa_manager_t
*ike_sa_manager_create()
894 private_ike_sa_manager_t
*this = malloc_thing(private_ike_sa_manager_t
);
896 /* assign public functions */
897 this->public.destroy
= (void(*)(ike_sa_manager_t
*))destroy
;
898 this->public.checkout
= (ike_sa_t
*(*)(ike_sa_manager_t
*, ike_sa_id_t
*))checkout
;
899 this->public.checkout_new
= (ike_sa_t
*(*)(ike_sa_manager_t
*,bool))checkout_new
;
900 this->public.checkout_by_message
= (ike_sa_t
*(*)(ike_sa_manager_t
*,message_t
*))checkout_by_message
;
901 this->public.checkout_by_peer
= (ike_sa_t
*(*)(ike_sa_manager_t
*,host_t
*,host_t
*,identification_t
*,identification_t
*))checkout_by_peer
;
902 this->public.checkout_by_id
= (ike_sa_t
*(*)(ike_sa_manager_t
*,u_int32_t
,bool))checkout_by_id
;
903 this->public.checkout_by_name
= (ike_sa_t
*(*)(ike_sa_manager_t
*,char*,bool))checkout_by_name
;
904 this->public.create_iterator
= (iterator_t
*(*)(ike_sa_manager_t
*))create_iterator
;
905 this->public.checkin
= (status_t(*)(ike_sa_manager_t
*,ike_sa_t
*))checkin
;
906 this->public.checkin_and_destroy
= (status_t(*)(ike_sa_manager_t
*,ike_sa_t
*))checkin_and_destroy
;
907 this->public.get_half_open_count
= (int(*)(ike_sa_manager_t
*,host_t
*))get_half_open_count
;
909 /* initialize private variables */
910 this->ike_sa_list
= linked_list_create();
911 pthread_mutex_init(&this->mutex
, NULL
);
912 this->randomizer
= randomizer_create();
913 this->hasher
= hasher_create(HASH_SHA1
);
915 return &this->public;