2 * Copyright (C) 2006-2008 Tobias Brunner
3 * Copyright (C) 2006 Daniel Roethlisberger
4 * Copyright (C) 2005-2006 Martin Willi
5 * Copyright (C) 2005 Jan Hutter
6 * Hochschule fuer Technik Rapperswil
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
31 #include <utils/linked_list.h>
32 #include <utils/lexparser.h>
33 #include <crypto/diffie_hellman.h>
34 #include <crypto/prf_plus.h>
35 #include <crypto/crypters/crypter.h>
36 #include <crypto/hashers/hasher.h>
37 #include <encoding/payloads/sa_payload.h>
38 #include <encoding/payloads/nonce_payload.h>
39 #include <encoding/payloads/ke_payload.h>
40 #include <encoding/payloads/delete_payload.h>
41 #include <encoding/payloads/transform_substructure.h>
42 #include <encoding/payloads/transform_attribute.h>
43 #include <encoding/payloads/ts_payload.h>
44 #include <sa/task_manager.h>
45 #include <sa/tasks/ike_init.h>
46 #include <sa/tasks/ike_natd.h>
47 #include <sa/tasks/ike_mobike.h>
48 #include <sa/tasks/ike_auth.h>
49 #include <sa/tasks/ike_auth_lifetime.h>
50 #include <sa/tasks/ike_config.h>
51 #include <sa/tasks/ike_cert_pre.h>
52 #include <sa/tasks/ike_cert_post.h>
53 #include <sa/tasks/ike_rekey.h>
54 #include <sa/tasks/ike_reauth.h>
55 #include <sa/tasks/ike_delete.h>
56 #include <sa/tasks/ike_dpd.h>
57 #include <sa/tasks/child_create.h>
58 #include <sa/tasks/child_delete.h>
59 #include <sa/tasks/child_rekey.h>
60 #include <processing/jobs/retransmit_job.h>
61 #include <processing/jobs/delete_ike_sa_job.h>
62 #include <processing/jobs/send_dpd_job.h>
63 #include <processing/jobs/send_keepalive_job.h>
64 #include <processing/jobs/rekey_ike_sa_job.h>
67 #include <sa/tasks/ike_me.h>
68 #include <processing/jobs/initiate_mediation_job.h>
72 #define RESOLV_CONF "/etc/resolv.conf"
75 ENUM(ike_sa_state_names
, IKE_CREATED
, IKE_DELETING
,
83 typedef struct private_ike_sa_t private_ike_sa_t
;
86 * Private data of an ike_sa_t object.
88 struct private_ike_sa_t
{
96 * Identifier for the current IKE_SA.
98 ike_sa_id_t
*ike_sa_id
;
101 * unique numerical ID for this IKE_SA.
106 * Current state of the IKE_SA
108 ike_sa_state_t state
;
111 * IKE configuration used to set up this IKE_SA
116 * Peer and authentication information to establish IKE_SA.
118 peer_cfg_t
*peer_cfg
;
121 * associated authentication/authorization info for local peer
123 auth_info_t
*my_auth
;
126 * associated authentication/authorization info for remote peer
128 auth_info_t
*other_auth
;
131 * Juggles tasks to process messages
133 task_manager_t
*task_manager
;
136 * Address of local host
141 * Address of remote host
147 * Are we mediation server
149 bool is_mediation_server
;
152 * Server reflexive host
154 host_t
*server_reflexive_host
;
163 * Identification used for us
165 identification_t
*my_id
;
168 * Identification used for other
170 identification_t
*other_id
;
173 * set of extensions the peer supports
175 ike_extension_t extensions
;
178 * set of condition flags currently enabled for this IKE_SA
180 ike_condition_t conditions
;
183 * Linked List containing the child sa's of the current IKE_SA.
185 linked_list_t
*child_sas
;
188 * crypter for inbound traffic
190 crypter_t
*crypter_in
;
193 * crypter for outbound traffic
195 crypter_t
*crypter_out
;
198 * Signer for inbound traffic
203 * Signer for outbound traffic
205 signer_t
*signer_out
;
208 * Multi purpose prf, set key, use it, forget it
213 * Prf function for derivating keymat child SAs
218 * Key to build outging authentication data (SKp)
223 * Key to verify incoming authentication data (SKp)
228 * Virtual IP on local host, if any
230 host_t
*my_virtual_ip
;
233 * Virtual IP on remote host, if any
235 host_t
*other_virtual_ip
;
238 * List of DNS servers installed by us
240 linked_list_t
*dns_servers
;
243 * list of peers additional addresses, transmitted via MOBIKE
245 linked_list_t
*additional_addresses
;
248 * number pending UPDATE_SA_ADDRESS (MOBIKE)
250 u_int32_t pending_updates
;
253 * Timestamps for this IKE_SA
256 /** last IKE message received */
258 /** last IKE message sent */
260 /** when IKE_SA became established */
261 u_int32_t established
;
262 /** when IKE_SA gets rekeyed */
264 /** when IKE_SA gets reauthenticated */
266 /** when IKE_SA gets deleted */
271 * how many times we have retried so far (keyingtries)
276 * are we the initiator of this IKE_SA (rekeying does not affect this flag)
282 * get the time of the latest traffic processed by the kernel
284 static time_t get_use_time(private_ike_sa_t
* this, bool inbound
)
286 iterator_t
*iterator
;
287 child_sa_t
*child_sa
;
288 time_t latest
= 0, use_time
;
290 iterator
= this->child_sas
->create_iterator(this->child_sas
, TRUE
);
291 while (iterator
->iterate(iterator
, (void**)&child_sa
))
293 if (child_sa
->get_use_time(child_sa
, inbound
, &use_time
) == SUCCESS
)
295 latest
= max(latest
, use_time
);
298 iterator
->destroy(iterator
);
302 return max(this->time
.inbound
, latest
);
306 return max(this->time
.outbound
, latest
);
311 * Implementation of ike_sa_t.get_unique_id
313 static u_int32_t
get_unique_id(private_ike_sa_t
*this)
315 return this->unique_id
;
319 * Implementation of ike_sa_t.get_name.
321 static char *get_name(private_ike_sa_t
*this)
325 return this->peer_cfg
->get_name(this->peer_cfg
);
331 * Implementation of ike_sa_t.get_statistic.
333 static u_int32_t
get_statistic(private_ike_sa_t
*this, statistic_t kind
)
335 time_t now
= time(NULL
);
339 case STAT_REKEY_TIME
:
340 if (this->time
.rekey
> now
)
342 return this->time
.rekey
- now
;
345 case STAT_REAUTH_TIME
:
346 if (this->time
.reauth
> now
)
348 return this->time
.reauth
- now
;
358 * Implementation of ike_sa_t.get_my_host.
360 static host_t
*get_my_host(private_ike_sa_t
*this)
362 return this->my_host
;
366 * Implementation of ike_sa_t.set_my_host.
368 static void set_my_host(private_ike_sa_t
*this, host_t
*me
)
370 DESTROY_IF(this->my_host
);
375 * Implementation of ike_sa_t.get_other_host.
377 static host_t
*get_other_host(private_ike_sa_t
*this)
379 return this->other_host
;
383 * Implementation of ike_sa_t.set_other_host.
385 static void set_other_host(private_ike_sa_t
*this, host_t
*other
)
387 DESTROY_IF(this->other_host
);
388 this->other_host
= other
;
392 * Implementation of ike_sa_t.get_peer_cfg
394 static peer_cfg_t
* get_peer_cfg(private_ike_sa_t
*this)
396 return this->peer_cfg
;
400 * Implementation of ike_sa_t.set_peer_cfg
402 static void set_peer_cfg(private_ike_sa_t
*this, peer_cfg_t
*peer_cfg
)
404 DESTROY_IF(this->peer_cfg
);
405 peer_cfg
->get_ref(peer_cfg
);
406 this->peer_cfg
= peer_cfg
;
408 if (this->ike_cfg
== NULL
)
410 this->ike_cfg
= peer_cfg
->get_ike_cfg(peer_cfg
);
411 this->ike_cfg
->get_ref(this->ike_cfg
);
414 /* apply values, so we are ready to initate/acquire */
415 if (this->my_host
->is_anyaddr(this->my_host
))
417 host_t
*me
= this->ike_cfg
->get_my_host(this->ike_cfg
);
418 set_my_host(this, me
->clone(me
));
420 if (this->other_host
->is_anyaddr(this->other_host
))
422 host_t
*other
= this->ike_cfg
->get_other_host(this->ike_cfg
);
423 set_other_host(this, other
->clone(other
));
425 /* apply IDs if they are not already set */
426 if (this->my_id
->contains_wildcards(this->my_id
))
428 DESTROY_IF(this->my_id
);
429 this->my_id
= this->peer_cfg
->get_my_id(this->peer_cfg
);
430 this->my_id
= this->my_id
->clone(this->my_id
);
432 if (this->other_id
->contains_wildcards(this->other_id
))
434 DESTROY_IF(this->other_id
);
435 this->other_id
= this->peer_cfg
->get_other_id(this->peer_cfg
);
436 this->other_id
= this->other_id
->clone(this->other_id
);
441 * Implementation of ike_sa_t.get_my_auth.
443 static auth_info_t
* get_my_auth(private_ike_sa_t
*this)
445 return this->my_auth
;
449 * Implementation of ike_sa_t.get_other_auth.
451 static auth_info_t
* get_other_auth(private_ike_sa_t
*this)
453 return this->other_auth
;
457 * Implementation of ike_sa_t.send_keepalive
459 static void send_keepalive(private_ike_sa_t
*this)
461 send_keepalive_job_t
*job
;
462 time_t last_out
, now
, diff
;
464 if (!(this->conditions
& COND_NAT_HERE
))
465 { /* disable keep alives if we are not NATed anymore */
469 last_out
= get_use_time(this, FALSE
);
472 diff
= now
- last_out
;
474 if (diff
>= KEEPALIVE_INTERVAL
)
479 packet
= packet_create();
480 packet
->set_source(packet
, this->my_host
->clone(this->my_host
));
481 packet
->set_destination(packet
, this->other_host
->clone(this->other_host
));
482 data
.ptr
= malloc(1);
485 packet
->set_data(packet
, data
);
486 DBG1(DBG_IKE
, "sending keep alive");
487 charon
->sender
->send(charon
->sender
, packet
);
490 job
= send_keepalive_job_create(this->ike_sa_id
);
491 charon
->scheduler
->schedule_job(charon
->scheduler
, (job_t
*)job
,
492 (KEEPALIVE_INTERVAL
- diff
) * 1000);
496 * Implementation of ike_sa_t.get_ike_cfg
498 static ike_cfg_t
*get_ike_cfg(private_ike_sa_t
*this)
500 return this->ike_cfg
;
504 * Implementation of ike_sa_t.set_ike_cfg
506 static void set_ike_cfg(private_ike_sa_t
*this, ike_cfg_t
*ike_cfg
)
508 ike_cfg
->get_ref(ike_cfg
);
509 this->ike_cfg
= ike_cfg
;
513 * Implementation of ike_sa_t.is_ike_initiator
515 static bool is_ike_initiator(private_ike_sa_t
*this)
517 return this->ike_initiator
;
521 * Implementation of ike_sa_t.enable_extension.
523 static void enable_extension(private_ike_sa_t
*this, ike_extension_t extension
)
525 this->extensions
|= extension
;
529 * Implementation of ike_sa_t.has_extension.
531 static bool supports_extension(private_ike_sa_t
*this, ike_extension_t extension
)
533 return (this->extensions
& extension
) != FALSE
;
537 * Implementation of ike_sa_t.has_condition.
539 static bool has_condition(private_ike_sa_t
*this, ike_condition_t condition
)
541 return (this->conditions
& condition
) != FALSE
;
545 * Implementation of ike_sa_t.enable_condition.
547 static void set_condition(private_ike_sa_t
*this, ike_condition_t condition
,
550 if (has_condition(this, condition
) != enable
)
554 this->conditions
|= condition
;
558 DBG1(DBG_IKE
, "local host is behind NAT, sending keep alives");
559 this->conditions
|= COND_NAT_ANY
;
560 send_keepalive(this);
563 DBG1(DBG_IKE
, "remote host is behind NAT");
564 this->conditions
|= COND_NAT_ANY
;
567 DBG1(DBG_IKE
, "faking NAT situation to enforce UDP encapsulation");
568 this->conditions
|= COND_NAT_ANY
;
576 this->conditions
&= ~condition
;
582 set_condition(this, COND_NAT_ANY
,
583 has_condition(this, COND_NAT_HERE
) ||
584 has_condition(this, COND_NAT_THERE
) ||
585 has_condition(this, COND_NAT_FAKE
));
595 * Implementation of ike_sa_t.send_dpd
597 static status_t
send_dpd(private_ike_sa_t
*this)
602 delay
= this->peer_cfg
->get_dpd(this->peer_cfg
);
610 if (this->task_manager
->busy(this->task_manager
))
612 /* an exchange is in the air, no need to start a DPD check */
617 /* check if there was any inbound traffic */
619 last_in
= get_use_time(this, TRUE
);
621 diff
= now
- last_in
;
624 /* to long ago, initiate dead peer detection */
627 task
= (task_t
*)ike_dpd_create(TRUE
);
629 DBG1(DBG_IKE
, "sending DPD request");
631 this->task_manager
->queue_task(this->task_manager
, task
);
632 this->task_manager
->initiate(this->task_manager
);
635 /* recheck in "interval" seconds */
636 job
= send_dpd_job_create(this->ike_sa_id
);
637 charon
->scheduler
->schedule_job(charon
->scheduler
, (job_t
*)job
,
638 (delay
- diff
) * 1000);
643 * Implementation of ike_sa_t.get_state.
645 static ike_sa_state_t
get_state(private_ike_sa_t
*this)
651 * Implementation of ike_sa_t.set_state.
653 static void set_state(private_ike_sa_t
*this, ike_sa_state_t state
)
655 DBG1(DBG_IKE
, "IKE_SA '%s' state change: %N => %N",
657 ike_sa_state_names
, this->state
,
658 ike_sa_state_names
, state
);
662 case IKE_ESTABLISHED
:
664 if (this->state
== IKE_CONNECTING
)
669 /* calculate rekey, reauth and lifetime */
670 this->time
.established
= time(NULL
);
672 /* schedule rekeying if we have a time which is smaller than
673 * an already scheduled rekeying */
674 t
= this->peer_cfg
->get_rekey_time(this->peer_cfg
);
675 if (t
&& (this->time
.rekey
== 0 ||
676 (this->time
.rekey
> t
+ this->time
.established
)))
678 this->time
.rekey
= t
+ this->time
.established
;
679 job
= (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, FALSE
);
680 charon
->scheduler
->schedule_job(charon
->scheduler
,
682 DBG1(DBG_IKE
, "scheduling rekeying in %ds", t
);
684 t
= this->peer_cfg
->get_reauth_time(this->peer_cfg
);
685 if (t
&& (this->time
.reauth
== 0 ||
686 (this->time
.reauth
> t
+ this->time
.established
)))
688 this->time
.reauth
= t
+ this->time
.established
;
689 job
= (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, TRUE
);
690 charon
->scheduler
->schedule_job(charon
->scheduler
,
692 DBG1(DBG_IKE
, "scheduling reauthentication in %ds", t
);
694 t
= this->peer_cfg
->get_over_time(this->peer_cfg
);
695 if (this->time
.rekey
|| this->time
.reauth
)
697 if (this->time
.reauth
== 0)
699 this->time
.delete = this->time
.rekey
;
701 else if (this->time
.rekey
== 0)
703 this->time
.delete = this->time
.reauth
;
707 this->time
.delete = min(this->time
.rekey
, this->time
.reauth
);
709 this->time
.delete += t
;
710 t
= this->time
.delete - this->time
.established
;
711 job
= (job_t
*)delete_ike_sa_job_create(this->ike_sa_id
, TRUE
);
712 charon
->scheduler
->schedule_job(charon
->scheduler
, job
,
714 DBG1(DBG_IKE
, "maximum IKE_SA lifetime %ds", t
);
717 /* start DPD checks */
724 /* delete may fail if a packet gets lost, so set a timeout */
725 job_t
*job
= (job_t
*)delete_ike_sa_job_create(this->ike_sa_id
, TRUE
);
726 charon
->scheduler
->schedule_job(charon
->scheduler
, job
,
727 HALF_OPEN_IKE_SA_TIMEOUT
);
738 * Implementation of ike_sa_t.reset
740 static void reset(private_ike_sa_t
*this)
742 /* the responder ID is reset, as peer may choose another one */
743 if (this->ike_sa_id
->is_initiator(this->ike_sa_id
))
745 this->ike_sa_id
->set_responder_spi(this->ike_sa_id
, 0);
748 set_state(this, IKE_CREATED
);
750 this->task_manager
->reset(this->task_manager
);
754 * Implementation of ike_sa_t.set_virtual_ip
756 static void set_virtual_ip(private_ike_sa_t
*this, bool local
, host_t
*ip
)
760 DBG1(DBG_IKE
, "installing new virtual IP %H", ip
);
761 if (charon
->kernel_interface
->add_ip(charon
->kernel_interface
, ip
,
762 this->my_host
) == SUCCESS
)
764 if (this->my_virtual_ip
)
766 DBG1(DBG_IKE
, "removing old virtual IP %H", this->my_virtual_ip
);
767 charon
->kernel_interface
->del_ip(charon
->kernel_interface
,
768 this->my_virtual_ip
);
770 DESTROY_IF(this->my_virtual_ip
);
771 this->my_virtual_ip
= ip
->clone(ip
);
775 DBG1(DBG_IKE
, "installing virtual IP %H failed", ip
);
776 this->my_virtual_ip
= NULL
;
781 DESTROY_IF(this->other_virtual_ip
);
782 this->other_virtual_ip
= ip
->clone(ip
);
787 * Implementation of ike_sa_t.get_virtual_ip
789 static host_t
* get_virtual_ip(private_ike_sa_t
*this, bool local
)
793 return this->my_virtual_ip
;
797 return this->other_virtual_ip
;
802 * Implementation of ike_sa_t.add_additional_address.
804 static void add_additional_address(private_ike_sa_t
*this, host_t
*host
)
806 this->additional_addresses
->insert_last(this->additional_addresses
, host
);
810 * Implementation of ike_sa_t.create_additional_address_iterator.
812 static iterator_t
* create_additional_address_iterator(private_ike_sa_t
*this)
814 return this->additional_addresses
->create_iterator(
815 this->additional_addresses
, TRUE
);
819 * Implementation of ike_sa_t.set_pending_updates.
821 static void set_pending_updates(private_ike_sa_t
*this, u_int32_t updates
)
823 this->pending_updates
= updates
;
827 * Implementation of ike_sa_t.get_pending_updates.
829 static u_int32_t
get_pending_updates(private_ike_sa_t
*this)
831 return this->pending_updates
;
835 * Update hosts, as addresses may change (NAT)
837 static void update_hosts(private_ike_sa_t
*this, host_t
*me
, host_t
*other
)
841 if (supports_extension(this, EXT_MOBIKE
))
842 { /* if peer speaks mobike, address updates are explicit only */
852 other
= this->other_host
;
855 /* apply hosts on first received message */
856 if (this->my_host
->is_anyaddr(this->my_host
) ||
857 this->other_host
->is_anyaddr(this->other_host
))
859 set_my_host(this, me
->clone(me
));
860 set_other_host(this, other
->clone(other
));
865 /* update our address in any case */
866 if (!me
->equals(me
, this->my_host
))
868 set_my_host(this, me
->clone(me
));
872 if (!other
->equals(other
, this->other_host
))
874 /* update others adress if we are NOT NATed,
875 * and allow port changes if we are NATed */
876 if (!has_condition(this, COND_NAT_HERE
) ||
877 other
->ip_equals(other
, this->other_host
))
879 set_other_host(this, other
->clone(other
));
885 /* update all associated CHILD_SAs, if required */
888 iterator_t
*iterator
;
889 child_sa_t
*child_sa
;
891 iterator
= this->child_sas
->create_iterator(this->child_sas
, TRUE
);
892 while (iterator
->iterate(iterator
, (void**)&child_sa
))
894 child_sa
->update_hosts(child_sa
, this->my_host
, this->other_host
,
895 has_condition(this, COND_NAT_ANY
));
897 iterator
->destroy(iterator
);
902 * Implementation of ike_sa_t.generate
904 static status_t
generate_message(private_ike_sa_t
*this, message_t
*message
,
907 this->time
.outbound
= time(NULL
);
908 message
->set_ike_sa_id(message
, this->ike_sa_id
);
909 return message
->generate(message
, this->crypter_out
, this->signer_out
, packet
);
913 * send a notify back to the sender
915 static void send_notify_response(private_ike_sa_t
*this, message_t
*request
,
921 response
= message_create();
922 response
->set_exchange_type(response
, request
->get_exchange_type(request
));
923 response
->set_request(response
, FALSE
);
924 response
->set_message_id(response
, request
->get_message_id(request
));
925 response
->add_notify(response
, FALSE
, type
, chunk_empty
);
926 if (this->my_host
->is_anyaddr(this->my_host
))
928 this->my_host
->destroy(this->my_host
);
929 this->my_host
= request
->get_destination(request
);
930 this->my_host
= this->my_host
->clone(this->my_host
);
932 if (this->other_host
->is_anyaddr(this->other_host
))
934 this->other_host
->destroy(this->other_host
);
935 this->other_host
= request
->get_source(request
);
936 this->other_host
= this->other_host
->clone(this->other_host
);
938 response
->set_source(response
, this->my_host
->clone(this->my_host
));
939 response
->set_destination(response
, this->other_host
->clone(this->other_host
));
940 if (generate_message(this, response
, &packet
) == SUCCESS
)
942 charon
->sender
->send(charon
->sender
, packet
);
944 response
->destroy(response
);
949 * Implementation of ike_sa_t.act_as_mediation_server.
951 static void act_as_mediation_server(private_ike_sa_t
*this)
953 charon
->mediation_manager
->update_sa_id(charon
->mediation_manager
,
954 this->other_id
, this->ike_sa_id
);
955 this->is_mediation_server
= TRUE
;
959 * Implementation of ike_sa_t.get_server_reflexive_host.
961 static host_t
*get_server_reflexive_host(private_ike_sa_t
*this)
963 return this->server_reflexive_host
;
967 * Implementation of ike_sa_t.set_server_reflexive_host.
969 static void set_server_reflexive_host(private_ike_sa_t
*this, host_t
*host
)
971 DESTROY_IF(this->server_reflexive_host
);
972 this->server_reflexive_host
= host
;
976 * Implementation of ike_sa_t.get_connect_id.
978 static chunk_t
get_connect_id(private_ike_sa_t
*this)
980 return this->connect_id
;
984 * Implementation of ike_sa_t.respond
986 static status_t
respond(private_ike_sa_t
*this, identification_t
*peer_id
,
989 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
990 task
->respond(task
, peer_id
, connect_id
);
991 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
992 return this->task_manager
->initiate(this->task_manager
);
996 * Implementation of ike_sa_t.callback
998 static status_t
callback(private_ike_sa_t
*this, identification_t
*peer_id
)
1000 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
1001 task
->callback(task
, peer_id
);
1002 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
1003 return this->task_manager
->initiate(this->task_manager
);
1007 * Implementation of ike_sa_t.relay
1009 static status_t
relay(private_ike_sa_t
*this, identification_t
*requester
,
1010 chunk_t connect_id
, chunk_t connect_key
, linked_list_t
*endpoints
, bool response
)
1012 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
1013 task
->relay(task
, requester
, connect_id
, connect_key
, endpoints
, response
);
1014 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
1015 return this->task_manager
->initiate(this->task_manager
);
1019 * Implementation of ike_sa_t.initiate_mediation
1021 static status_t
initiate_mediation(private_ike_sa_t
*this, peer_cfg_t
*mediated_cfg
)
1023 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
1024 task
->connect(task
, mediated_cfg
->get_peer_id(mediated_cfg
));
1025 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
1026 return this->task_manager
->initiate(this->task_manager
);
1030 * Implementation of ike_sa_t.initiate_mediated
1032 static status_t
initiate_mediated(private_ike_sa_t
*this, host_t
*me
, host_t
*other
,
1035 set_my_host(this, me
->clone(me
));
1036 set_other_host(this, other
->clone(other
));
1037 chunk_free(&this->connect_id
);
1038 this->connect_id
= chunk_clone(connect_id
);
1040 return this->task_manager
->initiate(this->task_manager
);
1045 * Initiates a CHILD_SA using the appropriate reqid
1047 static status_t
initiate_with_reqid(private_ike_sa_t
*this, child_cfg_t
*child_cfg
, u_int32_t reqid
)
1051 if (this->state
== IKE_CREATED
)
1053 if (this->other_host
->is_anyaddr(this->other_host
)
1055 && !this->peer_cfg
->get_mediated_by(this->peer_cfg
)
1059 child_cfg
->destroy(child_cfg
);
1060 SIG(IKE_UP_START
, "initiating IKE_SA");
1061 SIG(IKE_UP_FAILED
, "unable to initiate to %%any");
1065 this->ike_initiator
= TRUE
;
1067 task
= (task_t
*)ike_init_create(&this->public, TRUE
, NULL
);
1068 this->task_manager
->queue_task(this->task_manager
, task
);
1069 task
= (task_t
*)ike_natd_create(&this->public, TRUE
);
1070 this->task_manager
->queue_task(this->task_manager
, task
);
1071 task
= (task_t
*)ike_cert_pre_create(&this->public, TRUE
);
1072 this->task_manager
->queue_task(this->task_manager
, task
);
1073 task
= (task_t
*)ike_auth_create(&this->public, TRUE
);
1074 this->task_manager
->queue_task(this->task_manager
, task
);
1075 task
= (task_t
*)ike_cert_post_create(&this->public, TRUE
);
1076 this->task_manager
->queue_task(this->task_manager
, task
);
1077 task
= (task_t
*)ike_config_create(&this->public, TRUE
);
1078 this->task_manager
->queue_task(this->task_manager
, task
);
1079 task
= (task_t
*)ike_auth_lifetime_create(&this->public, TRUE
);
1080 this->task_manager
->queue_task(this->task_manager
, task
);
1081 if (this->peer_cfg
->use_mobike(this->peer_cfg
))
1083 task
= (task_t
*)ike_mobike_create(&this->public, TRUE
);
1084 this->task_manager
->queue_task(this->task_manager
, task
);
1087 task
= (task_t
*)ike_me_create(&this->public, TRUE
);
1088 this->task_manager
->queue_task(this->task_manager
, task
);
1093 if (this->peer_cfg
->is_mediation(this->peer_cfg
))
1095 /* mediation connection */
1096 if (this->state
== IKE_ESTABLISHED
)
1097 { /* FIXME: we should try to find a better solution to this */
1098 SIG(CHILD_UP_SUCCESS
, "mediation connection is already up and running");
1100 DESTROY_IF(child_cfg
);
1105 /* normal IKE_SA with CHILD_SA */
1106 task
= (task_t
*)child_create_create(&this->public, child_cfg
);
1107 child_cfg
->destroy(child_cfg
);
1110 child_create_t
*child_create
= (child_create_t
*)task
;
1111 child_create
->use_reqid(child_create
, reqid
);
1113 this->task_manager
->queue_task(this->task_manager
, task
);
1116 if (this->peer_cfg
->get_mediated_by(this->peer_cfg
))
1118 /* mediated connection, initiate mediation process */
1119 job_t
*job
= (job_t
*)initiate_mediation_job_create(this->ike_sa_id
);
1120 charon
->processor
->queue_job(charon
->processor
, job
);
1126 return this->task_manager
->initiate(this->task_manager
);
1130 * Implementation of ike_sa_t.initiate.
1132 static status_t
initiate(private_ike_sa_t
*this, child_cfg_t
*child_cfg
)
1134 return initiate_with_reqid(this, child_cfg
, 0);
1138 * Implementation of ike_sa_t.acquire.
1140 static status_t
acquire(private_ike_sa_t
*this, u_int32_t reqid
)
1142 child_cfg_t
*child_cfg
;
1143 iterator_t
*iterator
;
1144 child_sa_t
*current
, *child_sa
= NULL
;
1146 if (this->state
== IKE_DELETING
)
1148 SIG(CHILD_UP_START
, "acquiring CHILD_SA on kernel request");
1149 SIG(CHILD_UP_FAILED
, "acquiring CHILD_SA (reqid %d) failed: "
1150 "IKE_SA is deleting", reqid
);
1155 iterator
= this->child_sas
->create_iterator(this->child_sas
, TRUE
);
1156 while (iterator
->iterate(iterator
, (void**)¤t
))
1158 if (current
->get_reqid(current
) == reqid
)
1164 iterator
->destroy(iterator
);
1167 SIG(CHILD_UP_START
, "acquiring CHILD_SA on kernel request");
1168 SIG(CHILD_UP_FAILED
, "acquiring CHILD_SA (reqid %d) failed: "
1169 "CHILD_SA not found", reqid
);
1173 child_cfg
= child_sa
->get_config(child_sa
);
1174 child_cfg
->get_ref(child_cfg
);
1176 return initiate_with_reqid(this, child_cfg
, reqid
);
1180 * Implementation of ike_sa_t.route.
1182 static status_t
route(private_ike_sa_t
*this, child_cfg_t
*child_cfg
)
1184 child_sa_t
*child_sa
;
1185 iterator_t
*iterator
;
1186 linked_list_t
*my_ts
, *other_ts
;
1190 SIG(CHILD_ROUTE_START
, "routing CHILD_SA");
1192 /* check if not already routed*/
1193 iterator
= this->child_sas
->create_iterator(this->child_sas
, TRUE
);
1194 while (iterator
->iterate(iterator
, (void**)&child_sa
))
1196 if (child_sa
->get_state(child_sa
) == CHILD_ROUTED
&&
1197 streq(child_sa
->get_name(child_sa
), child_cfg
->get_name(child_cfg
)))
1199 iterator
->destroy(iterator
);
1200 SIG(CHILD_ROUTE_FAILED
, "CHILD_SA with such a config already routed");
1204 iterator
->destroy(iterator
);
1206 switch (this->state
)
1210 SIG(CHILD_ROUTE_FAILED
,
1211 "unable to route CHILD_SA, as its IKE_SA gets deleted");
1214 case IKE_CONNECTING
:
1215 case IKE_ESTABLISHED
:
1220 /* install kernel policies */
1221 child_sa
= child_sa_create(this->my_host
, this->other_host
, this->my_id
,
1222 this->other_id
, child_cfg
, 0, FALSE
);
1224 if (this->my_virtual_ip
)
1226 me
= this->my_virtual_ip
;
1228 other
= this->other_host
;
1229 if (this->other_virtual_ip
)
1231 other
= this->other_virtual_ip
;
1234 my_ts
= child_cfg
->get_traffic_selectors(child_cfg
, TRUE
, NULL
, me
);
1235 other_ts
= child_cfg
->get_traffic_selectors(child_cfg
, FALSE
, NULL
, other
);
1236 status
= child_sa
->add_policies(child_sa
, my_ts
, other_ts
,
1237 child_cfg
->get_mode(child_cfg
));
1238 my_ts
->destroy_offset(my_ts
, offsetof(traffic_selector_t
, destroy
));
1239 other_ts
->destroy_offset(other_ts
, offsetof(traffic_selector_t
, destroy
));
1240 if (status
== SUCCESS
)
1242 this->child_sas
->insert_last(this->child_sas
, child_sa
);
1243 SIG(CHILD_ROUTE_SUCCESS
, "CHILD_SA routed");
1247 SIG(CHILD_ROUTE_FAILED
, "routing CHILD_SA failed");
1253 * Implementation of ike_sa_t.unroute.
1255 static status_t
unroute(private_ike_sa_t
*this, u_int32_t reqid
)
1257 iterator_t
*iterator
;
1258 child_sa_t
*child_sa
;
1261 SIG(CHILD_UNROUTE_START
, "unrouting CHILD_SA");
1263 /* find CHILD_SA in ROUTED state */
1264 iterator
= this->child_sas
->create_iterator(this->child_sas
, TRUE
);
1265 while (iterator
->iterate(iterator
, (void**)&child_sa
))
1267 if (child_sa
->get_state(child_sa
) == CHILD_ROUTED
&&
1268 child_sa
->get_reqid(child_sa
) == reqid
)
1270 iterator
->remove(iterator
);
1271 SIG(CHILD_UNROUTE_SUCCESS
, "CHILD_SA unrouted");
1272 child_sa
->destroy(child_sa
);
1277 iterator
->destroy(iterator
);
1281 SIG(CHILD_UNROUTE_FAILED
, "CHILD_SA to unroute not found");
1284 /* if we are not established, and we have no more routed childs, remove whole SA */
1285 if (this->state
== IKE_CREATED
&&
1286 this->child_sas
->get_count(this->child_sas
) == 0)
1293 * Implementation of ike_sa_t.process_message.
1295 static status_t
process_message(private_ike_sa_t
*this, message_t
*message
)
1300 is_request
= message
->get_request(message
);
1302 status
= message
->parse_body(message
, this->crypter_in
, this->signer_in
);
1303 if (status
!= SUCCESS
)
1311 DBG1(DBG_IKE
, "ciritcal unknown payloads found");
1314 send_notify_response(this, message
, UNSUPPORTED_CRITICAL_PAYLOAD
);
1318 DBG1(DBG_IKE
, "message parsing failed");
1321 send_notify_response(this, message
, INVALID_SYNTAX
);
1325 DBG1(DBG_IKE
, "message verification failed");
1328 send_notify_response(this, message
, INVALID_SYNTAX
);
1332 DBG1(DBG_IKE
, "integrity check failed");
1336 DBG1(DBG_IKE
, "found encrypted message, but no keys available");
1339 send_notify_response(this, message
, INVALID_SYNTAX
);
1345 DBG1(DBG_IKE
, "%N %s with message ID %d processing failed",
1346 exchange_type_names
, message
->get_exchange_type(message
),
1347 message
->get_request(message
) ?
"request" : "response",
1348 message
->get_message_id(message
));
1354 private_ike_sa_t
*new;
1355 iterator_t
*iterator
;
1357 bool has_routed
= FALSE
;
1359 me
= message
->get_destination(message
);
1360 other
= message
->get_source(message
);
1362 /* if this IKE_SA is virgin, we check for a config */
1363 if (this->ike_cfg
== NULL
)
1366 this->ike_cfg
= charon
->backends
->get_ike_cfg(charon
->backends
,
1368 if (this->ike_cfg
== NULL
)
1370 /* no config found for these hosts, destroy */
1371 DBG1(DBG_IKE
, "no IKE config found for %H...%H, sending %N",
1372 me
, other
, notify_type_names
, NO_PROPOSAL_CHOSEN
);
1373 send_notify_response(this, message
, NO_PROPOSAL_CHOSEN
);
1376 /* add a timeout if peer does not establish it completely */
1377 job
= (job_t
*)delete_ike_sa_job_create(this->ike_sa_id
, FALSE
);
1378 charon
->scheduler
->schedule_job(charon
->scheduler
, job
,
1379 HALF_OPEN_IKE_SA_TIMEOUT
);
1382 /* check if message is trustworthy, and update host information */
1383 if (this->state
== IKE_CREATED
|| this->state
== IKE_CONNECTING
||
1384 message
->get_exchange_type(message
) != IKE_SA_INIT
)
1386 update_hosts(this, me
, other
);
1387 this->time
.inbound
= time(NULL
);
1389 status
= this->task_manager
->process_message(this->task_manager
, message
);
1390 if (status
!= DESTROY_ME
)
1394 /* if IKE_SA gets closed for any reasons, reroute routed children */
1395 iterator
= this->child_sas
->create_iterator(this->child_sas
, TRUE
);
1396 while (iterator
->iterate(iterator
, (void**)&child
))
1398 if (child
->get_state(child
) == CHILD_ROUTED
)
1404 iterator
->destroy(iterator
);
1409 /* move routed children to a new IKE_SA, apply connection info */
1410 new = (private_ike_sa_t
*)charon
->ike_sa_manager
->checkout_new(
1411 charon
->ike_sa_manager
, TRUE
);
1412 set_peer_cfg(new, this->peer_cfg
);
1413 new->other_host
->destroy(new->other_host
);
1414 new->other_host
= this->other_host
->clone(this->other_host
);
1415 if (!has_condition(this, COND_NAT_THERE
))
1417 new->other_host
->set_port(new->other_host
, IKEV2_UDP_PORT
);
1419 if (this->my_virtual_ip
)
1421 set_virtual_ip(new, TRUE
, this->my_virtual_ip
);
1423 iterator
= this->child_sas
->create_iterator(this->child_sas
, TRUE
);
1424 while (iterator
->iterate(iterator
, (void**)&child
))
1426 if (child
->get_state(child
) == CHILD_ROUTED
)
1428 route(new, child
->get_config(child
));
1431 iterator
->destroy(iterator
);
1432 charon
->ike_sa_manager
->checkin(charon
->ike_sa_manager
, &new->public);
1438 * Implementation of ike_sa_t.get_prf.
1440 static prf_t
*get_prf(private_ike_sa_t
*this)
1446 * Implementation of ike_sa_t.get_prf.
1448 static prf_t
*get_child_prf(private_ike_sa_t
*this)
1450 return this->child_prf
;
1454 * Implementation of ike_sa_t.get_skp_bild
1456 static chunk_t
get_skp_build(private_ike_sa_t
*this)
1458 return this->skp_build
;
1462 * Implementation of ike_sa_t.get_skp_verify
1464 static chunk_t
get_skp_verify(private_ike_sa_t
*this)
1466 return this->skp_verify
;
1470 * Implementation of ike_sa_t.get_id.
1472 static ike_sa_id_t
* get_id(private_ike_sa_t
*this)
1474 return this->ike_sa_id
;
1478 * Implementation of ike_sa_t.get_my_id.
1480 static identification_t
* get_my_id(private_ike_sa_t
*this)
1486 * Implementation of ike_sa_t.set_my_id.
1488 static void set_my_id(private_ike_sa_t
*this, identification_t
*me
)
1490 DESTROY_IF(this->my_id
);
1495 * Implementation of ike_sa_t.get_other_id.
1497 static identification_t
* get_other_id(private_ike_sa_t
*this)
1499 return this->other_id
;
1503 * Implementation of ike_sa_t.set_other_id.
1505 static void set_other_id(private_ike_sa_t
*this, identification_t
*other
)
1507 DESTROY_IF(this->other_id
);
1508 this->other_id
= other
;
1512 * Implementation of ike_sa_t.derive_keys.
1514 static status_t
derive_keys(private_ike_sa_t
*this,
1515 proposal_t
*proposal
, chunk_t secret
,
1516 chunk_t nonce_i
, chunk_t nonce_r
,
1517 bool initiator
, prf_t
*child_prf
, prf_t
*old_prf
)
1519 prf_plus_t
*prf_plus
;
1520 chunk_t skeyseed
, key
, full_nonce
, fixed_nonce
, prf_plus_seed
;
1521 u_int16_t alg
, key_size
;
1522 crypter_t
*crypter_i
, *crypter_r
;
1523 signer_t
*signer_i
, *signer_r
;
1524 u_int8_t spi_i_buf
[sizeof(u_int64_t
)], spi_r_buf
[sizeof(u_int64_t
)];
1525 chunk_t spi_i
= chunk_from_buf(spi_i_buf
);
1526 chunk_t spi_r
= chunk_from_buf(spi_r_buf
);
1528 /* Create SAs general purpose PRF first, we may use it here */
1529 if (!proposal
->get_algorithm(proposal
, PSEUDO_RANDOM_FUNCTION
, &alg
, NULL
))
1531 DBG1(DBG_IKE
, "no %N selected",
1532 transform_type_names
, PSEUDO_RANDOM_FUNCTION
);
1535 this->prf
= lib
->crypto
->create_prf(lib
->crypto
, alg
);
1536 if (this->prf
== NULL
)
1538 DBG1(DBG_IKE
, "%N %N not supported!",
1539 transform_type_names
, PSEUDO_RANDOM_FUNCTION
,
1540 pseudo_random_function_names
, alg
);
1543 DBG4(DBG_IKE
, "shared Diffie Hellman secret %B", &secret
);
1544 /* full nonce is used as seed for PRF+ ... */
1545 full_nonce
= chunk_cat("cc", nonce_i
, nonce_r
);
1546 /* but the PRF may need a fixed key which only uses the first bytes of
1550 case PRF_AES128_XCBC
:
1551 /* while rfc4434 defines variable keys for AES-XCBC, rfc3664 does
1552 * not and therefore fixed key semantics apply to XCBC for key
1554 nonce_i
.len
= min(nonce_i
.len
, this->prf
->get_key_size(this->prf
)/2);
1555 nonce_r
.len
= min(nonce_r
.len
, this->prf
->get_key_size(this->prf
)/2);
1558 /* all other algorithms use variable key length, full nonce */
1561 fixed_nonce
= chunk_cat("cc", nonce_i
, nonce_r
);
1562 *((u_int64_t
*)spi_i
.ptr
) = this->ike_sa_id
->get_initiator_spi(this->ike_sa_id
);
1563 *((u_int64_t
*)spi_r
.ptr
) = this->ike_sa_id
->get_responder_spi(this->ike_sa_id
);
1564 prf_plus_seed
= chunk_cat("ccc", full_nonce
, spi_i
, spi_r
);
1566 /* KEYMAT = prf+ (SKEYSEED, Ni | Nr | SPIi | SPIr)
1568 * if we are rekeying, SKEYSEED is built on another way
1570 if (child_prf
== NULL
) /* not rekeying */
1572 /* SKEYSEED = prf(Ni | Nr, g^ir) */
1573 this->prf
->set_key(this->prf
, fixed_nonce
);
1574 this->prf
->allocate_bytes(this->prf
, secret
, &skeyseed
);
1575 DBG4(DBG_IKE
, "SKEYSEED %B", &skeyseed
);
1576 this->prf
->set_key(this->prf
, skeyseed
);
1577 chunk_free(&skeyseed
);
1578 chunk_free(&secret
);
1579 prf_plus
= prf_plus_create(this->prf
, prf_plus_seed
);
1583 /* SKEYSEED = prf(SK_d (old), [g^ir (new)] | Ni | Nr)
1584 * use OLD SAs PRF functions for both prf_plus and prf */
1585 secret
= chunk_cat("mc", secret
, full_nonce
);
1586 child_prf
->allocate_bytes(child_prf
, secret
, &skeyseed
);
1587 DBG4(DBG_IKE
, "SKEYSEED %B", &skeyseed
);
1588 old_prf
->set_key(old_prf
, skeyseed
);
1589 chunk_free(&skeyseed
);
1590 chunk_free(&secret
);
1591 prf_plus
= prf_plus_create(old_prf
, prf_plus_seed
);
1593 chunk_free(&full_nonce
);
1594 chunk_free(&fixed_nonce
);
1595 chunk_free(&prf_plus_seed
);
1597 /* KEYMAT = SK_d | SK_ai | SK_ar | SK_ei | SK_er | SK_pi | SK_pr */
1599 /* SK_d is used for generating CHILD_SA key mat => child_prf */
1600 proposal
->get_algorithm(proposal
, PSEUDO_RANDOM_FUNCTION
, &alg
, NULL
);
1601 this->child_prf
= lib
->crypto
->create_prf(lib
->crypto
, alg
);
1602 key_size
= this->child_prf
->get_key_size(this->child_prf
);
1603 prf_plus
->allocate_bytes(prf_plus
, key_size
, &key
);
1604 DBG4(DBG_IKE
, "Sk_d secret %B", &key
);
1605 this->child_prf
->set_key(this->child_prf
, key
);
1608 /* SK_ai/SK_ar used for integrity protection => signer_in/signer_out */
1609 if (!proposal
->get_algorithm(proposal
, INTEGRITY_ALGORITHM
, &alg
, NULL
))
1611 DBG1(DBG_IKE
, "no %N selected",
1612 transform_type_names
, INTEGRITY_ALGORITHM
);
1615 signer_i
= lib
->crypto
->create_signer(lib
->crypto
, alg
);
1616 signer_r
= lib
->crypto
->create_signer(lib
->crypto
, alg
);
1617 if (signer_i
== NULL
|| signer_r
== NULL
)
1619 DBG1(DBG_IKE
, "%N %N not supported!",
1620 transform_type_names
, INTEGRITY_ALGORITHM
,
1621 integrity_algorithm_names
,alg
);
1622 prf_plus
->destroy(prf_plus
);
1625 key_size
= signer_i
->get_key_size(signer_i
);
1627 prf_plus
->allocate_bytes(prf_plus
, key_size
, &key
);
1628 DBG4(DBG_IKE
, "Sk_ai secret %B", &key
);
1629 signer_i
->set_key(signer_i
, key
);
1632 prf_plus
->allocate_bytes(prf_plus
, key_size
, &key
);
1633 DBG4(DBG_IKE
, "Sk_ar secret %B", &key
);
1634 signer_r
->set_key(signer_r
, key
);
1639 this->signer_in
= signer_r
;
1640 this->signer_out
= signer_i
;
1644 this->signer_in
= signer_i
;
1645 this->signer_out
= signer_r
;
1648 /* SK_ei/SK_er used for encryption => crypter_in/crypter_out */
1649 if (!proposal
->get_algorithm(proposal
, ENCRYPTION_ALGORITHM
, &alg
, &key_size
))
1651 DBG1(DBG_IKE
, "no %N selected",
1652 transform_type_names
, ENCRYPTION_ALGORITHM
);
1653 prf_plus
->destroy(prf_plus
);
1656 crypter_i
= lib
->crypto
->create_crypter(lib
->crypto
, alg
, key_size
/ 8);
1657 crypter_r
= lib
->crypto
->create_crypter(lib
->crypto
, alg
, key_size
/ 8);
1658 if (crypter_i
== NULL
|| crypter_r
== NULL
)
1660 DBG1(DBG_IKE
, "%N %N (key size %d) not supported!",
1661 transform_type_names
, ENCRYPTION_ALGORITHM
,
1662 encryption_algorithm_names
, alg
, key_size
);
1663 prf_plus
->destroy(prf_plus
);
1666 key_size
= crypter_i
->get_key_size(crypter_i
);
1668 prf_plus
->allocate_bytes(prf_plus
, key_size
, &key
);
1669 DBG4(DBG_IKE
, "Sk_ei secret %B", &key
);
1670 crypter_i
->set_key(crypter_i
, key
);
1673 prf_plus
->allocate_bytes(prf_plus
, key_size
, &key
);
1674 DBG4(DBG_IKE
, "Sk_er secret %B", &key
);
1675 crypter_r
->set_key(crypter_r
, key
);
1680 this->crypter_in
= crypter_r
;
1681 this->crypter_out
= crypter_i
;
1685 this->crypter_in
= crypter_i
;
1686 this->crypter_out
= crypter_r
;
1689 /* SK_pi/SK_pr used for authentication => stored for later */
1690 key_size
= this->prf
->get_key_size(this->prf
);
1691 prf_plus
->allocate_bytes(prf_plus
, key_size
, &key
);
1692 DBG4(DBG_IKE
, "Sk_pi secret %B", &key
);
1695 this->skp_build
= key
;
1699 this->skp_verify
= key
;
1701 prf_plus
->allocate_bytes(prf_plus
, key_size
, &key
);
1702 DBG4(DBG_IKE
, "Sk_pr secret %B", &key
);
1705 this->skp_verify
= key
;
1709 this->skp_build
= key
;
1712 /* all done, prf_plus not needed anymore */
1713 prf_plus
->destroy(prf_plus
);
1719 * Implementation of ike_sa_t.add_child_sa.
1721 static void add_child_sa(private_ike_sa_t
*this, child_sa_t
*child_sa
)
1723 this->child_sas
->insert_last(this->child_sas
, child_sa
);
1727 * Implementation of ike_sa_t.get_child_sa.
1729 static child_sa_t
* get_child_sa(private_ike_sa_t
*this, protocol_id_t protocol
,
1730 u_int32_t spi
, bool inbound
)
1732 iterator_t
*iterator
;
1733 child_sa_t
*current
, *found
= NULL
;
1735 iterator
= this->child_sas
->create_iterator(this->child_sas
, TRUE
);
1736 while (iterator
->iterate(iterator
, (void**)¤t
))
1738 if (current
->get_spi(current
, inbound
) == spi
&&
1739 current
->get_protocol(current
) == protocol
)
1744 iterator
->destroy(iterator
);
1749 * Implementation of ike_sa_t.create_child_sa_iterator.
1751 static iterator_t
* create_child_sa_iterator(private_ike_sa_t
*this)
1753 return this->child_sas
->create_iterator(this->child_sas
, TRUE
);
1757 * Implementation of ike_sa_t.rekey_child_sa.
1759 static status_t
rekey_child_sa(private_ike_sa_t
*this, protocol_id_t protocol
, u_int32_t spi
)
1761 child_sa_t
*child_sa
;
1762 child_rekey_t
*child_rekey
;
1764 child_sa
= get_child_sa(this, protocol
, spi
, TRUE
);
1767 child_rekey
= child_rekey_create(&this->public, child_sa
);
1768 this->task_manager
->queue_task(this->task_manager
, &child_rekey
->task
);
1769 return this->task_manager
->initiate(this->task_manager
);
1775 * Implementation of ike_sa_t.delete_child_sa.
1777 static status_t
delete_child_sa(private_ike_sa_t
*this, protocol_id_t protocol
, u_int32_t spi
)
1779 child_sa_t
*child_sa
;
1780 child_delete_t
*child_delete
;
1782 child_sa
= get_child_sa(this, protocol
, spi
, TRUE
);
1785 child_delete
= child_delete_create(&this->public, child_sa
);
1786 this->task_manager
->queue_task(this->task_manager
, &child_delete
->task
);
1787 return this->task_manager
->initiate(this->task_manager
);
1793 * Implementation of ike_sa_t.destroy_child_sa.
1795 static status_t
destroy_child_sa(private_ike_sa_t
*this, protocol_id_t protocol
,
1798 iterator_t
*iterator
;
1799 child_sa_t
*child_sa
;
1800 status_t status
= NOT_FOUND
;
1802 iterator
= this->child_sas
->create_iterator(this->child_sas
, TRUE
);
1803 while (iterator
->iterate(iterator
, (void**)&child_sa
))
1805 if (child_sa
->get_protocol(child_sa
) == protocol
&&
1806 child_sa
->get_spi(child_sa
, TRUE
) == spi
)
1808 child_sa
->destroy(child_sa
);
1809 iterator
->remove(iterator
);
1814 iterator
->destroy(iterator
);
1819 * Implementation of public_ike_sa_t.delete.
1821 static status_t
delete_(private_ike_sa_t
*this)
1823 ike_delete_t
*ike_delete
;
1825 switch (this->state
)
1827 case IKE_ESTABLISHED
:
1829 ike_delete
= ike_delete_create(&this->public, TRUE
);
1830 this->task_manager
->queue_task(this->task_manager
, &ike_delete
->task
);
1831 return this->task_manager
->initiate(this->task_manager
);
1833 SIG(IKE_DOWN_SUCCESS
, "deleting unestablished IKE_SA");
1836 SIG(IKE_DOWN_SUCCESS
, "destroying IKE_SA in state %N "
1837 "without notification", ike_sa_state_names
, this->state
);
1844 * Implementation of ike_sa_t.rekey.
1846 static status_t
rekey(private_ike_sa_t
*this)
1848 ike_rekey_t
*ike_rekey
;
1850 ike_rekey
= ike_rekey_create(&this->public, TRUE
);
1852 this->task_manager
->queue_task(this->task_manager
, &ike_rekey
->task
);
1853 return this->task_manager
->initiate(this->task_manager
);
1857 * Implementation of ike_sa_t.reauth
1859 static status_t
reauth(private_ike_sa_t
*this)
1863 /* we can't reauthenticate as responder when we use EAP or virtual IPs.
1864 * If the peer does not support RFC4478, there is no way to keep the
1866 if (!this->ike_initiator
)
1868 DBG1(DBG_IKE
, "initiator did not reauthenticate as requested");
1869 if (this->other_virtual_ip
!= NULL
||
1870 has_condition(this, COND_EAP_AUTHENTICATED
)
1872 /* if we are mediation server we too cannot reauth the IKE_SA */
1873 || this->is_mediation_server
1877 time_t now
= time(NULL
);
1879 DBG1(DBG_IKE
, "IKE_SA will timeout in %#V", &now
, &this->time
.delete);
1884 DBG1(DBG_IKE
, "reauthenticating actively");
1887 task
= (task_t
*)ike_reauth_create(&this->public);
1888 this->task_manager
->queue_task(this->task_manager
, task
);
1890 return this->task_manager
->initiate(this->task_manager
);
1894 * Implementation of ike_sa_t.reestablish
1896 static status_t
reestablish(private_ike_sa_t
*this)
1901 iterator_t
*iterator
;
1902 child_sa_t
*child_sa
;
1903 child_cfg_t
*child_cfg
;
1904 bool required
= FALSE
;
1905 status_t status
= FAILED
;
1907 /* check if we have children to keep up at all*/
1908 iterator
= create_child_sa_iterator(this);
1909 while (iterator
->iterate(iterator
, (void**)&child_sa
))
1911 child_cfg
= child_sa
->get_config(child_sa
);
1912 if (this->state
== IKE_DELETING
)
1914 action
= child_cfg
->get_close_action(child_cfg
);
1918 action
= child_cfg
->get_dpd_action(child_cfg
);
1922 case ACTION_RESTART
:
1929 iterator
->destroy(iterator
);
1931 /* we initiate the new IKE_SA of the mediation connection without CHILD_SA */
1932 if (this->peer_cfg
->is_mediation(this->peer_cfg
))
1942 /* check if we are able to reestablish this IKE_SA */
1943 if (!this->ike_initiator
&&
1944 (this->other_virtual_ip
!= NULL
||
1945 has_condition(this, COND_EAP_AUTHENTICATED
)
1947 || this->is_mediation_server
1951 DBG1(DBG_IKE
, "unable to reestablish IKE_SA due asymetric setup");
1955 new = charon
->ike_sa_manager
->checkout_new(charon
->ike_sa_manager
, TRUE
);
1956 new->set_peer_cfg(new, this->peer_cfg
);
1957 host
= this->other_host
;
1958 new->set_other_host(new, host
->clone(host
));
1959 host
= this->my_host
;
1960 new->set_my_host(new, host
->clone(host
));
1961 /* if we already have a virtual IP, we reuse it */
1962 host
= this->my_virtual_ip
;
1965 new->set_virtual_ip(new, TRUE
, host
);
1969 if (this->peer_cfg
->is_mediation(this->peer_cfg
))
1971 status
= new->initiate(new, NULL
);
1976 iterator
= create_child_sa_iterator(this);
1977 while (iterator
->iterate(iterator
, (void**)&child_sa
))
1979 child_cfg
= child_sa
->get_config(child_sa
);
1980 if (this->state
== IKE_DELETING
)
1982 action
= child_cfg
->get_close_action(child_cfg
);
1986 action
= child_cfg
->get_dpd_action(child_cfg
);
1990 case ACTION_RESTART
:
1991 DBG1(DBG_IKE
, "restarting CHILD_SA %s",
1992 child_cfg
->get_name(child_cfg
));
1993 child_cfg
->get_ref(child_cfg
);
1994 status
= new->initiate(new, child_cfg
);
1997 status
= new->route(new, child_cfg
);
2002 if (status
== DESTROY_ME
)
2007 iterator
->destroy(iterator
);
2010 if (status
== DESTROY_ME
)
2012 charon
->ike_sa_manager
->checkin_and_destroy(charon
->ike_sa_manager
, new);
2017 charon
->ike_sa_manager
->checkin(charon
->ike_sa_manager
, new);
2023 * Implementation of ike_sa_t.retransmit.
2025 static status_t
retransmit(private_ike_sa_t
*this, u_int32_t message_id
)
2027 this->time
.outbound
= time(NULL
);
2028 if (this->task_manager
->retransmit(this->task_manager
, message_id
) != SUCCESS
)
2030 /* send a proper signal to brief interested bus listeners */
2031 switch (this->state
)
2033 case IKE_CONNECTING
:
2035 /* retry IKE_SA_INIT if we have multiple keyingtries */
2036 u_int32_t tries
= this->peer_cfg
->get_keyingtries(this->peer_cfg
);
2038 if (tries
== 0 || tries
> this->keyingtry
)
2040 SIG(IKE_UP_FAILED
, "peer not responding, trying again "
2041 "(%d/%d) in background ", this->keyingtry
+ 1, tries
);
2043 return this->task_manager
->initiate(this->task_manager
);
2045 SIG(IKE_UP_FAILED
, "establishing IKE_SA failed, peer not responding");
2049 SIG(IKE_DOWN_FAILED
, "proper IKE_SA delete failed, peer not responding");
2052 SIG(IKE_REKEY_FAILED
, "rekeying IKE_SA failed, peer not responding");
2064 * Implementation of ike_sa_t.set_auth_lifetime.
2066 static void set_auth_lifetime(private_ike_sa_t
*this, u_int32_t lifetime
)
2069 u_int32_t reduction
= this->peer_cfg
->get_over_time(this->peer_cfg
);
2071 this->time
.reauth
= time(NULL
) + lifetime
- reduction
;
2072 job
= (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, TRUE
);
2074 if (lifetime
< reduction
)
2076 DBG1(DBG_IKE
, "received AUTH_LIFETIME of %ds, starting reauthentication",
2078 charon
->processor
->queue_job(charon
->processor
, job
);
2082 DBG1(DBG_IKE
, "received AUTH_LIFETIME of %ds, scheduling reauthentication"
2083 " in %ds", lifetime
, lifetime
- reduction
);
2084 charon
->scheduler
->schedule_job(charon
->scheduler
, job
,
2085 (lifetime
- reduction
) * 1000);
2090 * Implementation of ike_sa_t.roam.
2092 static status_t
roam(private_ike_sa_t
*this, bool address
)
2095 ike_mobike_t
*mobike
;
2097 /* responder just updates the peer about changed address config */
2098 if (!this->ike_sa_id
->is_initiator(this->ike_sa_id
))
2100 if (supports_extension(this, EXT_MOBIKE
) && address
)
2102 DBG1(DBG_IKE
, "sending address list update using MOBIKE");
2103 mobike
= ike_mobike_create(&this->public, TRUE
);
2104 this->task_manager
->queue_task(this->task_manager
, (task_t
*)mobike
);
2105 return this->task_manager
->initiate(this->task_manager
);
2110 /* get best address pair to use */
2111 other
= this->other_host
;
2112 me
= charon
->kernel_interface
->get_source_addr(charon
->kernel_interface
,
2117 if (me
->ip_equals(me
, this->my_host
) &&
2118 other
->ip_equals(other
, this->other_host
))
2120 DBG2(DBG_IKE
, "keeping connection path %H - %H", this->other_host
, me
);
2127 /* update addresses with mobike, if supported ... */
2128 if (supports_extension(this, EXT_MOBIKE
))
2130 DBG1(DBG_IKE
, "requesting address change using MOBIKE");
2131 mobike
= ike_mobike_create(&this->public, TRUE
);
2132 mobike
->roam(mobike
, address
);
2133 this->task_manager
->queue_task(this->task_manager
, (task_t
*)mobike
);
2134 return this->task_manager
->initiate(this->task_manager
);
2136 DBG1(DBG_IKE
, "reauthenticating IKE_SA due address change");
2137 /* ... reauth if not */
2138 return reauth(this);
2142 * Implementation of ike_sa_t.inherit.
2144 static status_t
inherit(private_ike_sa_t
*this, private_ike_sa_t
*other
)
2146 child_sa_t
*child_sa
;
2149 /* apply hosts and ids */
2150 this->my_host
->destroy(this->my_host
);
2151 this->other_host
->destroy(this->other_host
);
2152 this->my_id
->destroy(this->my_id
);
2153 this->other_id
->destroy(this->other_id
);
2154 this->my_host
= other
->my_host
->clone(other
->my_host
);
2155 this->other_host
= other
->other_host
->clone(other
->other_host
);
2156 this->my_id
= other
->my_id
->clone(other
->my_id
);
2157 this->other_id
= other
->other_id
->clone(other
->other_id
);
2158 this->ike_initiator
= other
->ike_initiator
;
2160 /* apply virtual assigned IPs... */
2161 if (other
->my_virtual_ip
)
2163 this->my_virtual_ip
= other
->my_virtual_ip
;
2164 other
->my_virtual_ip
= NULL
;
2166 if (other
->other_virtual_ip
)
2168 this->other_virtual_ip
= other
->other_virtual_ip
;
2169 other
->other_virtual_ip
= NULL
;
2172 /* ... and DNS servers */
2173 while (other
->dns_servers
->remove_last(other
->dns_servers
,
2174 (void**)&ip
) == SUCCESS
)
2176 this->dns_servers
->insert_first(this->dns_servers
, ip
);
2179 /* inherit NAT-T conditions */
2180 this->conditions
= other
->conditions
;
2181 if (this->conditions
& COND_NAT_HERE
)
2183 send_keepalive(this);
2187 if (other
->is_mediation_server
)
2189 act_as_mediation_server(this);
2191 else if (other
->server_reflexive_host
)
2193 this->server_reflexive_host
= other
->server_reflexive_host
->clone(
2194 other
->server_reflexive_host
);
2198 /* adopt all children */
2199 while (other
->child_sas
->remove_last(other
->child_sas
,
2200 (void**)&child_sa
) == SUCCESS
)
2202 this->child_sas
->insert_first(this->child_sas
, (void*)child_sa
);
2205 /* move pending tasks to the new IKE_SA */
2206 this->task_manager
->adopt_tasks(this->task_manager
, other
->task_manager
);
2208 /* reauthentication timeout survives a rekeying */
2209 if (other
->time
.reauth
)
2211 time_t reauth
, delete, now
= time(NULL
);
2213 this->time
.reauth
= other
->time
.reauth
;
2214 reauth
= this->time
.reauth
- now
;
2215 delete = reauth
+ this->peer_cfg
->get_over_time(this->peer_cfg
);
2216 this->time
.delete = this->time
.reauth
+ delete;
2217 DBG1(DBG_IKE
, "rescheduling reauthentication in %ds after rekeying, "
2218 "lifetime reduced to %ds", reauth
, delete);
2219 charon
->scheduler
->schedule_job(charon
->scheduler
,
2220 (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, TRUE
),
2222 charon
->scheduler
->schedule_job(charon
->scheduler
,
2223 (job_t
*)delete_ike_sa_job_create(this->ike_sa_id
, TRUE
),
2226 /* we have to initate here, there may be new tasks to handle */
2227 return this->task_manager
->initiate(this->task_manager
);
2231 * Implementation of ike_sa_t.remove_dns_server
2233 static void remove_dns_servers(private_ike_sa_t
*this)
2237 chunk_t contents
, line
, orig_line
, token
;
2238 char string
[INET6_ADDRSTRLEN
];
2240 iterator_t
*iterator
;
2242 if (this->dns_servers
->get_count(this->dns_servers
) == 0)
2244 /* don't touch anything if we have no nameservers installed */
2248 file
= fopen(RESOLV_CONF
, "r");
2249 if (file
== NULL
|| stat(RESOLV_CONF
, &stats
) != 0)
2251 DBG1(DBG_IKE
, "unable to open DNS configuration file %s: %s",
2252 RESOLV_CONF
, strerror(errno
));
2256 contents
= chunk_alloca((size_t)stats
.st_size
);
2258 if (fread(contents
.ptr
, 1, contents
.len
, file
) != contents
.len
)
2260 DBG1(DBG_IKE
, "unable to read DNS configuration file: %s", strerror(errno
));
2266 file
= fopen(RESOLV_CONF
, "w");
2269 DBG1(DBG_IKE
, "unable to open DNS configuration file %s: %s",
2270 RESOLV_CONF
, strerror(errno
));
2274 iterator
= this->dns_servers
->create_iterator(this->dns_servers
, TRUE
);
2275 while (fetchline(&contents
, &line
))
2279 if (extract_token(&token
, ' ', &line
) &&
2280 strncasecmp(token
.ptr
, "nameserver", token
.len
) == 0)
2282 if (!extract_token(&token
, ' ', &line
))
2286 iterator
->reset(iterator
);
2287 while (iterator
->iterate(iterator
, (void**)&ip
))
2289 snprintf(string
, sizeof(string
), "%H", ip
);
2290 if (strlen(string
) == token
.len
&&
2291 strncmp(token
.ptr
, string
, token
.len
) == 0)
2293 iterator
->remove(iterator
);
2303 /* write line untouched back to file */
2304 fwrite(orig_line
.ptr
, orig_line
.len
, 1, file
);
2305 fprintf(file
, "\n");
2308 iterator
->destroy(iterator
);
2313 * Implementation of ike_sa_t.add_dns_server
2315 static void add_dns_server(private_ike_sa_t
*this, host_t
*dns
)
2321 DBG1(DBG_IKE
, "installing DNS server %H", dns
);
2323 file
= fopen(RESOLV_CONF
, "a+");
2324 if (file
== NULL
|| stat(RESOLV_CONF
, &stats
) != 0)
2326 DBG1(DBG_IKE
, "unable to open DNS configuration file %s: %s",
2327 RESOLV_CONF
, strerror(errno
));
2331 contents
= chunk_alloca(stats
.st_size
);
2333 if (fread(contents
.ptr
, 1, contents
.len
, file
) != contents
.len
)
2335 DBG1(DBG_IKE
, "unable to read DNS configuration file: %s", strerror(errno
));
2341 file
= fopen(RESOLV_CONF
, "w");
2344 DBG1(DBG_IKE
, "unable to open DNS configuration file %s: %s",
2345 RESOLV_CONF
, strerror(errno
));
2349 if (fprintf(file
, "nameserver %H # added by strongSwan, assigned by %D\n",
2350 dns
, this->other_id
) < 0)
2352 DBG1(DBG_IKE
, "unable to write DNS configuration: %s", strerror(errno
));
2356 this->dns_servers
->insert_last(this->dns_servers
, dns
->clone(dns
));
2358 fwrite(contents
.ptr
, contents
.len
, 1, file
);
2364 * Implementation of ike_sa_t.destroy.
2366 static void destroy(private_ike_sa_t
*this)
2368 this->child_sas
->destroy_offset(this->child_sas
, offsetof(child_sa_t
, destroy
));
2370 DESTROY_IF(this->crypter_in
);
2371 DESTROY_IF(this->crypter_out
);
2372 DESTROY_IF(this->signer_in
);
2373 DESTROY_IF(this->signer_out
);
2374 DESTROY_IF(this->prf
);
2375 DESTROY_IF(this->child_prf
);
2376 chunk_free(&this->skp_verify
);
2377 chunk_free(&this->skp_build
);
2379 if (this->my_virtual_ip
)
2381 charon
->kernel_interface
->del_ip(charon
->kernel_interface
,
2382 this->my_virtual_ip
);
2383 this->my_virtual_ip
->destroy(this->my_virtual_ip
);
2385 if (this->other_virtual_ip
)
2387 if (this->peer_cfg
&& this->peer_cfg
->get_pool(this->peer_cfg
))
2389 charon
->attributes
->release_address(charon
->attributes
,
2390 this->peer_cfg
->get_pool(this->peer_cfg
),
2391 this->other_virtual_ip
);
2393 this->other_virtual_ip
->destroy(this->other_virtual_ip
);
2396 remove_dns_servers(this);
2397 this->dns_servers
->destroy_offset(this->dns_servers
,
2398 offsetof(host_t
, destroy
));
2399 this->additional_addresses
->destroy_offset(this->additional_addresses
,
2400 offsetof(host_t
, destroy
));
2402 if (this->is_mediation_server
)
2404 charon
->mediation_manager
->remove(charon
->mediation_manager
, this->ike_sa_id
);
2406 DESTROY_IF(this->server_reflexive_host
);
2407 chunk_free(&this->connect_id
);
2410 DESTROY_IF(this->my_host
);
2411 DESTROY_IF(this->other_host
);
2412 DESTROY_IF(this->my_id
);
2413 DESTROY_IF(this->other_id
);
2415 DESTROY_IF(this->ike_cfg
);
2416 DESTROY_IF(this->peer_cfg
);
2417 DESTROY_IF(this->my_auth
);
2418 DESTROY_IF(this->other_auth
);
2420 this->ike_sa_id
->destroy(this->ike_sa_id
);
2421 this->task_manager
->destroy(this->task_manager
);
2426 * Described in header.
2428 ike_sa_t
* ike_sa_create(ike_sa_id_t
*ike_sa_id
)
2430 private_ike_sa_t
*this = malloc_thing(private_ike_sa_t
);
2431 static u_int32_t unique_id
= 0;
2433 /* Public functions */
2434 this->public.get_state
= (ike_sa_state_t (*)(ike_sa_t
*)) get_state
;
2435 this->public.set_state
= (void (*)(ike_sa_t
*,ike_sa_state_t
)) set_state
;
2436 this->public.get_name
= (char* (*)(ike_sa_t
*))get_name
;
2437 this->public.get_statistic
= (u_int32_t(*)(ike_sa_t
*, statistic_t kind
))get_statistic
;
2438 this->public.process_message
= (status_t (*)(ike_sa_t
*, message_t
*)) process_message
;
2439 this->public.initiate
= (status_t (*)(ike_sa_t
*,child_cfg_t
*)) initiate
;
2440 this->public.route
= (status_t (*)(ike_sa_t
*,child_cfg_t
*)) route
;
2441 this->public.unroute
= (status_t (*)(ike_sa_t
*,u_int32_t
)) unroute
;
2442 this->public.acquire
= (status_t (*)(ike_sa_t
*,u_int32_t
)) acquire
;
2443 this->public.get_ike_cfg
= (ike_cfg_t
* (*)(ike_sa_t
*))get_ike_cfg
;
2444 this->public.set_ike_cfg
= (void (*)(ike_sa_t
*,ike_cfg_t
*))set_ike_cfg
;
2445 this->public.get_peer_cfg
= (peer_cfg_t
* (*)(ike_sa_t
*))get_peer_cfg
;
2446 this->public.set_peer_cfg
= (void (*)(ike_sa_t
*,peer_cfg_t
*))set_peer_cfg
;
2447 this->public.get_my_auth
= (auth_info_t
*(*)(ike_sa_t
*))get_my_auth
;
2448 this->public.get_other_auth
= (auth_info_t
*(*)(ike_sa_t
*))get_other_auth
;
2449 this->public.get_id
= (ike_sa_id_t
* (*)(ike_sa_t
*)) get_id
;
2450 this->public.get_my_host
= (host_t
* (*)(ike_sa_t
*)) get_my_host
;
2451 this->public.set_my_host
= (void (*)(ike_sa_t
*,host_t
*)) set_my_host
;
2452 this->public.get_other_host
= (host_t
* (*)(ike_sa_t
*)) get_other_host
;
2453 this->public.set_other_host
= (void (*)(ike_sa_t
*,host_t
*)) set_other_host
;
2454 this->public.update_hosts
= (void(*)(ike_sa_t
*, host_t
*me
, host_t
*other
))update_hosts
;
2455 this->public.get_my_id
= (identification_t
* (*)(ike_sa_t
*)) get_my_id
;
2456 this->public.set_my_id
= (void (*)(ike_sa_t
*,identification_t
*)) set_my_id
;
2457 this->public.get_other_id
= (identification_t
* (*)(ike_sa_t
*)) get_other_id
;
2458 this->public.set_other_id
= (void (*)(ike_sa_t
*,identification_t
*)) set_other_id
;
2459 this->public.enable_extension
= (void(*)(ike_sa_t
*, ike_extension_t extension
))enable_extension
;
2460 this->public.supports_extension
= (bool(*)(ike_sa_t
*, ike_extension_t extension
))supports_extension
;
2461 this->public.set_condition
= (void (*)(ike_sa_t
*, ike_condition_t
,bool)) set_condition
;
2462 this->public.has_condition
= (bool (*)(ike_sa_t
*,ike_condition_t
)) has_condition
;
2463 this->public.set_pending_updates
= (void(*)(ike_sa_t
*, u_int32_t updates
))set_pending_updates
;
2464 this->public.get_pending_updates
= (u_int32_t(*)(ike_sa_t
*))get_pending_updates
;
2465 this->public.is_ike_initiator
= (bool (*)(ike_sa_t
*))is_ike_initiator
;
2466 this->public.create_additional_address_iterator
= (iterator_t
*(*)(ike_sa_t
*))create_additional_address_iterator
;
2467 this->public.add_additional_address
= (void(*)(ike_sa_t
*, host_t
*host
))add_additional_address
;
2468 this->public.retransmit
= (status_t (*)(ike_sa_t
*, u_int32_t
)) retransmit
;
2469 this->public.delete = (status_t (*)(ike_sa_t
*))delete_
;
2470 this->public.destroy
= (void (*)(ike_sa_t
*))destroy
;
2471 this->public.send_dpd
= (status_t (*)(ike_sa_t
*)) send_dpd
;
2472 this->public.send_keepalive
= (void (*)(ike_sa_t
*)) send_keepalive
;
2473 this->public.get_prf
= (prf_t
* (*)(ike_sa_t
*)) get_prf
;
2474 this->public.get_child_prf
= (prf_t
* (*)(ike_sa_t
*)) get_child_prf
;
2475 this->public.get_skp_verify
= (chunk_t (*)(ike_sa_t
*)) get_skp_verify
;
2476 this->public.get_skp_build
= (chunk_t (*)(ike_sa_t
*)) get_skp_build
;
2477 this->public.derive_keys
= (status_t (*)(ike_sa_t
*,proposal_t
*,chunk_t
,chunk_t
,chunk_t
,bool,prf_t
*,prf_t
*)) derive_keys
;
2478 this->public.add_child_sa
= (void (*)(ike_sa_t
*,child_sa_t
*)) add_child_sa
;
2479 this->public.get_child_sa
= (child_sa_t
* (*)(ike_sa_t
*,protocol_id_t
,u_int32_t
,bool)) get_child_sa
;
2480 this->public.create_child_sa_iterator
= (iterator_t
* (*)(ike_sa_t
*)) create_child_sa_iterator
;
2481 this->public.rekey_child_sa
= (status_t (*)(ike_sa_t
*,protocol_id_t
,u_int32_t
)) rekey_child_sa
;
2482 this->public.delete_child_sa
= (status_t (*)(ike_sa_t
*,protocol_id_t
,u_int32_t
)) delete_child_sa
;
2483 this->public.destroy_child_sa
= (status_t (*)(ike_sa_t
*,protocol_id_t
,u_int32_t
))destroy_child_sa
;
2484 this->public.rekey
= (status_t (*)(ike_sa_t
*))rekey
;
2485 this->public.reauth
= (status_t (*)(ike_sa_t
*))reauth
;
2486 this->public.reestablish
= (status_t (*)(ike_sa_t
*))reestablish
;
2487 this->public.set_auth_lifetime
= (void(*)(ike_sa_t
*, u_int32_t lifetime
))set_auth_lifetime
;
2488 this->public.roam
= (status_t(*)(ike_sa_t
*,bool))roam
;
2489 this->public.inherit
= (status_t (*)(ike_sa_t
*,ike_sa_t
*))inherit
;
2490 this->public.generate_message
= (status_t (*)(ike_sa_t
*,message_t
*,packet_t
**))generate_message
;
2491 this->public.reset
= (void (*)(ike_sa_t
*))reset
;
2492 this->public.get_unique_id
= (u_int32_t (*)(ike_sa_t
*))get_unique_id
;
2493 this->public.set_virtual_ip
= (void (*)(ike_sa_t
*,bool,host_t
*))set_virtual_ip
;
2494 this->public.get_virtual_ip
= (host_t
* (*)(ike_sa_t
*,bool))get_virtual_ip
;
2495 this->public.add_dns_server
= (void (*)(ike_sa_t
*,host_t
*))add_dns_server
;
2497 this->public.act_as_mediation_server
= (void (*)(ike_sa_t
*)) act_as_mediation_server
;
2498 this->public.get_server_reflexive_host
= (host_t
* (*)(ike_sa_t
*)) get_server_reflexive_host
;
2499 this->public.set_server_reflexive_host
= (void (*)(ike_sa_t
*,host_t
*)) set_server_reflexive_host
;
2500 this->public.get_connect_id
= (chunk_t (*)(ike_sa_t
*)) get_connect_id
;
2501 this->public.initiate_mediation
= (status_t (*)(ike_sa_t
*,peer_cfg_t
*)) initiate_mediation
;
2502 this->public.initiate_mediated
= (status_t (*)(ike_sa_t
*,host_t
*,host_t
*,chunk_t
)) initiate_mediated
;
2503 this->public.relay
= (status_t (*)(ike_sa_t
*,identification_t
*,chunk_t
,chunk_t
,linked_list_t
*,bool)) relay
;
2504 this->public.callback
= (status_t (*)(ike_sa_t
*,identification_t
*)) callback
;
2505 this->public.respond
= (status_t (*)(ike_sa_t
*,identification_t
*,chunk_t
)) respond
;
2508 /* initialize private fields */
2509 this->ike_sa_id
= ike_sa_id
->clone(ike_sa_id
);
2510 this->child_sas
= linked_list_create();
2511 this->my_host
= host_create_any(AF_INET
);
2512 this->other_host
= host_create_any(AF_INET
);
2513 this->my_id
= identification_create_from_encoding(ID_ANY
, chunk_empty
);
2514 this->other_id
= identification_create_from_encoding(ID_ANY
, chunk_empty
);
2515 this->extensions
= 0;
2516 this->conditions
= 0;
2517 this->crypter_in
= NULL
;
2518 this->crypter_out
= NULL
;
2519 this->signer_in
= NULL
;
2520 this->signer_out
= NULL
;
2522 this->skp_verify
= chunk_empty
;
2523 this->skp_build
= chunk_empty
;
2524 this->child_prf
= NULL
;
2525 this->state
= IKE_CREATED
;
2526 this->time
.inbound
= this->time
.outbound
= time(NULL
);
2527 this->time
.established
= 0;
2528 this->time
.rekey
= 0;
2529 this->time
.reauth
= 0;
2530 this->time
.delete = 0;
2531 this->ike_cfg
= NULL
;
2532 this->peer_cfg
= NULL
;
2533 this->my_auth
= auth_info_create();
2534 this->other_auth
= auth_info_create();
2535 this->task_manager
= task_manager_create(&this->public);
2536 this->unique_id
= ++unique_id
;
2537 this->my_virtual_ip
= NULL
;
2538 this->other_virtual_ip
= NULL
;
2539 this->dns_servers
= linked_list_create();
2540 this->additional_addresses
= linked_list_create();
2541 this->pending_updates
= 0;
2542 this->keyingtry
= 0;
2543 this->ike_initiator
= FALSE
;
2545 this->is_mediation_server
= FALSE
;
2546 this->server_reflexive_host
= NULL
;
2547 this->connect_id
= chunk_empty
;
2550 return &this->public;