2 * Copyright (C) 2006-2012 Tobias Brunner
3 * Copyright (C) 2006 Daniel Roethlisberger
4 * Copyright (C) 2005-2009 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
29 #include <utils/linked_list.h>
30 #include <utils/lexparser.h>
31 #include <processing/jobs/retransmit_job.h>
32 #include <processing/jobs/delete_ike_sa_job.h>
33 #include <processing/jobs/send_dpd_job.h>
34 #include <processing/jobs/send_keepalive_job.h>
35 #include <processing/jobs/rekey_ike_sa_job.h>
36 #include <processing/jobs/retry_initiate_job.h>
37 #include <sa/ikev2/tasks/ike_auth_lifetime.h>
40 #include <sa/ikev2/tasks/ike_me.h>
41 #include <processing/jobs/initiate_mediation_job.h>
44 ENUM(ike_sa_state_names
, IKE_CREATED
, IKE_DESTROYING
,
54 typedef struct private_ike_sa_t private_ike_sa_t
;
55 typedef struct attribute_entry_t attribute_entry_t
;
58 * Private data of an ike_sa_t object.
60 struct private_ike_sa_t
{
68 * Identifier for the current IKE_SA.
70 ike_sa_id_t
*ike_sa_id
;
73 * IKE version of this SA.
75 ike_version_t version
;
78 * unique numerical ID for this IKE_SA.
83 * Current state of the IKE_SA
88 * IKE configuration used to set up this IKE_SA
93 * Peer and authentication information to establish IKE_SA.
98 * currently used authentication ruleset, local (as auth_cfg_t)
103 * list of completed local authentication rounds
105 linked_list_t
*my_auths
;
108 * list of completed remote authentication rounds
110 linked_list_t
*other_auths
;
113 * currently used authentication constraints, remote (as auth_cfg_t)
115 auth_cfg_t
*other_auth
;
118 * Selected IKE proposal
120 proposal_t
*proposal
;
123 * Juggles tasks to process messages
125 task_manager_t
*task_manager
;
128 * Address of local host
133 * Address of remote host
139 * Are we mediation server
141 bool is_mediation_server
;
144 * Server reflexive host
146 host_t
*server_reflexive_host
;
155 * Identification used for us
157 identification_t
*my_id
;
160 * Identification used for other
162 identification_t
*other_id
;
165 * set of extensions the peer supports
167 ike_extension_t extensions
;
170 * set of condition flags currently enabled for this IKE_SA
172 ike_condition_t conditions
;
175 * Linked List containing the child sa's of the current IKE_SA.
177 linked_list_t
*child_sas
;
180 * keymat of this IKE_SA
185 * Virtual IPs on local host
187 linked_list_t
*my_vips
;
190 * Virtual IPs on remote host
192 linked_list_t
*other_vips
;
195 * List of configuration attributes (attribute_entry_t)
197 linked_list_t
*attributes
;
200 * list of peer's addresses, additional ones transmitted via MOBIKE
202 linked_list_t
*peer_addresses
;
205 * previously value of received DESTINATION_IP hash
207 chunk_t nat_detection_dest
;
210 * number pending UPDATE_SA_ADDRESS (MOBIKE)
212 u_int32_t pending_updates
;
215 * NAT keep alive interval
217 u_int32_t keepalive_interval
;
220 * interval for retries during initiation (e.g. if DNS resolution failed),
221 * 0 to disable (default)
223 u_int32_t retry_initiate_interval
;
226 * TRUE if a retry_initiate_job has been queued
228 bool retry_initiate_queued
;
231 * Timestamps for this IKE_SA
233 u_int32_t stats
[STAT_MAX
];
236 * how many times we have retried so far (keyingtries)
241 * local host address to be used for IKE, set via MIGRATE kernel message
246 * remote host address to be used for IKE, set via MIGRATE kernel message
251 * Flush auth configs once established?
257 * Entry to maintain install configuration attributes during IKE_SA lifetime
259 struct attribute_entry_t
{
260 /** handler used to install this attribute */
261 attribute_handler_t
*handler
;
262 /** attribute type */
263 configuration_attribute_type_t type
;
264 /** attribute data */
269 * get the time of the latest traffic processed by the kernel
271 static time_t get_use_time(private_ike_sa_t
* this, bool inbound
)
273 enumerator_t
*enumerator
;
274 child_sa_t
*child_sa
;
275 time_t use_time
, current
;
279 use_time
= this->stats
[STAT_INBOUND
];
283 use_time
= this->stats
[STAT_OUTBOUND
];
285 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
286 while (enumerator
->enumerate(enumerator
, &child_sa
))
288 child_sa
->get_usestats(child_sa
, inbound
, ¤t
, NULL
);
289 use_time
= max(use_time
, current
);
291 enumerator
->destroy(enumerator
);
296 METHOD(ike_sa_t
, get_unique_id
, u_int32_t
,
297 private_ike_sa_t
*this)
299 return this->unique_id
;
302 METHOD(ike_sa_t
, get_name
, char*,
303 private_ike_sa_t
*this)
307 return this->peer_cfg
->get_name(this->peer_cfg
);
312 METHOD(ike_sa_t
, get_statistic
, u_int32_t
,
313 private_ike_sa_t
*this, statistic_t kind
)
317 return this->stats
[kind
];
322 METHOD(ike_sa_t
, set_statistic
, void,
323 private_ike_sa_t
*this, statistic_t kind
, u_int32_t value
)
327 this->stats
[kind
] = value
;
331 METHOD(ike_sa_t
, get_my_host
, host_t
*,
332 private_ike_sa_t
*this)
334 return this->my_host
;
337 METHOD(ike_sa_t
, set_my_host
, void,
338 private_ike_sa_t
*this, host_t
*me
)
340 DESTROY_IF(this->my_host
);
344 METHOD(ike_sa_t
, get_other_host
, host_t
*,
345 private_ike_sa_t
*this)
347 return this->other_host
;
350 METHOD(ike_sa_t
, set_other_host
, void,
351 private_ike_sa_t
*this, host_t
*other
)
353 DESTROY_IF(this->other_host
);
354 this->other_host
= other
;
357 METHOD(ike_sa_t
, get_peer_cfg
, peer_cfg_t
*,
358 private_ike_sa_t
*this)
360 return this->peer_cfg
;
363 METHOD(ike_sa_t
, set_peer_cfg
, void,
364 private_ike_sa_t
*this, peer_cfg_t
*peer_cfg
)
366 peer_cfg
->get_ref(peer_cfg
);
367 DESTROY_IF(this->peer_cfg
);
368 this->peer_cfg
= peer_cfg
;
370 if (this->ike_cfg
== NULL
)
372 this->ike_cfg
= peer_cfg
->get_ike_cfg(peer_cfg
);
373 this->ike_cfg
->get_ref(this->ike_cfg
);
377 METHOD(ike_sa_t
, get_auth_cfg
, auth_cfg_t
*,
378 private_ike_sa_t
*this, bool local
)
382 return this->my_auth
;
384 return this->other_auth
;
387 METHOD(ike_sa_t
, add_auth_cfg
, void,
388 private_ike_sa_t
*this, bool local
, auth_cfg_t
*cfg
)
392 this->my_auths
->insert_last(this->my_auths
, cfg
);
396 this->other_auths
->insert_last(this->other_auths
, cfg
);
400 METHOD(ike_sa_t
, create_auth_cfg_enumerator
, enumerator_t
*,
401 private_ike_sa_t
*this, bool local
)
405 return this->my_auths
->create_enumerator(this->my_auths
);
407 return this->other_auths
->create_enumerator(this->other_auths
);
411 * Flush the stored authentication round information
413 static void flush_auth_cfgs(private_ike_sa_t
*this)
417 this->my_auth
->purge(this->my_auth
, FALSE
);
418 this->other_auth
->purge(this->other_auth
, FALSE
);
420 while (this->my_auths
->remove_last(this->my_auths
,
421 (void**)&cfg
) == SUCCESS
)
425 while (this->other_auths
->remove_last(this->other_auths
,
426 (void**)&cfg
) == SUCCESS
)
432 METHOD(ike_sa_t
, get_proposal
, proposal_t
*,
433 private_ike_sa_t
*this)
435 return this->proposal
;
438 METHOD(ike_sa_t
, set_proposal
, void,
439 private_ike_sa_t
*this, proposal_t
*proposal
)
441 DESTROY_IF(this->proposal
);
442 this->proposal
= proposal
->clone(proposal
);
445 METHOD(ike_sa_t
, set_message_id
, void,
446 private_ike_sa_t
*this, bool initiate
, u_int32_t mid
)
450 this->task_manager
->reset(this->task_manager
, mid
, UINT_MAX
);
454 this->task_manager
->reset(this->task_manager
, UINT_MAX
, mid
);
458 METHOD(ike_sa_t
, send_keepalive
, void,
459 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
) || this->keepalive_interval
== 0)
465 { /* disable keep alives if we are not NATed anymore */
469 last_out
= get_use_time(this, FALSE
);
470 now
= time_monotonic(NULL
);
472 diff
= now
- last_out
;
474 if (diff
>= this->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 to %#H", this->other_host
);
487 charon
->sender
->send_no_marker(charon
->sender
, packet
);
490 job
= send_keepalive_job_create(this->ike_sa_id
);
491 lib
->scheduler
->schedule_job(lib
->scheduler
, (job_t
*)job
,
492 this->keepalive_interval
- diff
);
495 METHOD(ike_sa_t
, get_ike_cfg
, ike_cfg_t
*,
496 private_ike_sa_t
*this)
498 return this->ike_cfg
;
501 METHOD(ike_sa_t
, set_ike_cfg
, void,
502 private_ike_sa_t
*this, ike_cfg_t
*ike_cfg
)
504 ike_cfg
->get_ref(ike_cfg
);
505 this->ike_cfg
= ike_cfg
;
508 METHOD(ike_sa_t
, enable_extension
, void,
509 private_ike_sa_t
*this, ike_extension_t extension
)
511 this->extensions
|= extension
;
514 METHOD(ike_sa_t
, supports_extension
, bool,
515 private_ike_sa_t
*this, ike_extension_t extension
)
517 return (this->extensions
& extension
) != FALSE
;
520 METHOD(ike_sa_t
, has_condition
, bool,
521 private_ike_sa_t
*this, ike_condition_t condition
)
523 return (this->conditions
& condition
) != FALSE
;
526 METHOD(ike_sa_t
, set_condition
, void,
527 private_ike_sa_t
*this, ike_condition_t condition
, bool enable
)
529 if (has_condition(this, condition
) != enable
)
533 this->conditions
|= condition
;
537 DBG1(DBG_IKE
, "local host is behind NAT, sending keep alives");
538 this->conditions
|= COND_NAT_ANY
;
539 send_keepalive(this);
542 DBG1(DBG_IKE
, "remote host is behind NAT");
543 this->conditions
|= COND_NAT_ANY
;
546 DBG1(DBG_IKE
, "faking NAT situation to enforce UDP encapsulation");
547 this->conditions
|= COND_NAT_ANY
;
555 this->conditions
&= ~condition
;
561 set_condition(this, COND_NAT_ANY
,
562 has_condition(this, COND_NAT_HERE
) ||
563 has_condition(this, COND_NAT_THERE
) ||
564 has_condition(this, COND_NAT_FAKE
));
573 METHOD(ike_sa_t
, send_dpd
, status_t
,
574 private_ike_sa_t
*this)
578 bool task_queued
= FALSE
;
580 if (this->state
== IKE_PASSIVE
)
582 return INVALID_STATE
;
584 delay
= this->peer_cfg
->get_dpd(this->peer_cfg
);
585 if (this->task_manager
->busy(this->task_manager
))
587 /* an exchange is in the air, no need to start a DPD check */
592 /* check if there was any inbound traffic */
594 last_in
= get_use_time(this, TRUE
);
595 now
= time_monotonic(NULL
);
596 diff
= now
- last_in
;
597 if (!delay
|| diff
>= delay
)
599 /* too long ago, initiate dead peer detection */
600 DBG1(DBG_IKE
, "sending DPD request");
601 this->task_manager
->queue_dpd(this->task_manager
);
606 /* recheck in "interval" seconds */
609 job
= (job_t
*)send_dpd_job_create(this->ike_sa_id
);
610 lib
->scheduler
->schedule_job(lib
->scheduler
, job
, delay
- diff
);
614 return this->task_manager
->initiate(this->task_manager
);
619 METHOD(ike_sa_t
, get_state
, ike_sa_state_t
,
620 private_ike_sa_t
*this)
625 METHOD(ike_sa_t
, set_state
, void,
626 private_ike_sa_t
*this, ike_sa_state_t state
)
628 bool trigger_dpd
= FALSE
;
630 DBG2(DBG_IKE
, "IKE_SA %s[%d] state change: %N => %N",
631 get_name(this), this->unique_id
,
632 ike_sa_state_names
, this->state
,
633 ike_sa_state_names
, state
);
637 case IKE_ESTABLISHED
:
639 if (this->state
== IKE_CONNECTING
||
640 this->state
== IKE_PASSIVE
)
645 /* calculate rekey, reauth and lifetime */
646 this->stats
[STAT_ESTABLISHED
] = time_monotonic(NULL
);
648 /* schedule rekeying if we have a time which is smaller than
649 * an already scheduled rekeying */
650 t
= this->peer_cfg
->get_rekey_time(this->peer_cfg
, TRUE
);
651 if (t
&& (this->stats
[STAT_REKEY
] == 0 ||
652 (this->stats
[STAT_REKEY
] > t
+ this->stats
[STAT_ESTABLISHED
])))
654 this->stats
[STAT_REKEY
] = t
+ this->stats
[STAT_ESTABLISHED
];
655 job
= (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, FALSE
);
656 lib
->scheduler
->schedule_job(lib
->scheduler
, job
, t
);
657 DBG1(DBG_IKE
, "scheduling rekeying in %ds", t
);
659 t
= this->peer_cfg
->get_reauth_time(this->peer_cfg
, TRUE
);
660 if (t
&& (this->stats
[STAT_REAUTH
] == 0 ||
661 (this->stats
[STAT_REAUTH
] > t
+ this->stats
[STAT_ESTABLISHED
])))
663 this->stats
[STAT_REAUTH
] = t
+ this->stats
[STAT_ESTABLISHED
];
664 job
= (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, TRUE
);
665 lib
->scheduler
->schedule_job(lib
->scheduler
, job
, t
);
666 DBG1(DBG_IKE
, "scheduling reauthentication in %ds", t
);
668 t
= this->peer_cfg
->get_over_time(this->peer_cfg
);
669 if (this->stats
[STAT_REKEY
] || this->stats
[STAT_REAUTH
])
671 if (this->stats
[STAT_REAUTH
] == 0)
673 this->stats
[STAT_DELETE
] = this->stats
[STAT_REKEY
];
675 else if (this->stats
[STAT_REKEY
] == 0)
677 this->stats
[STAT_DELETE
] = this->stats
[STAT_REAUTH
];
681 this->stats
[STAT_DELETE
] = min(this->stats
[STAT_REKEY
],
682 this->stats
[STAT_REAUTH
]);
684 this->stats
[STAT_DELETE
] += t
;
685 t
= this->stats
[STAT_DELETE
] - this->stats
[STAT_ESTABLISHED
];
686 job
= (job_t
*)delete_ike_sa_job_create(this->ike_sa_id
, TRUE
);
687 lib
->scheduler
->schedule_job(lib
->scheduler
, job
, t
);
688 DBG1(DBG_IKE
, "maximum IKE_SA lifetime %ds", t
);
690 trigger_dpd
= this->peer_cfg
->get_dpd(this->peer_cfg
);
697 charon
->bus
->ike_state_change(charon
->bus
, &this->public, state
);
702 if (supports_extension(this, EXT_DPD
))
708 DBG1(DBG_IKE
, "DPD not supported by peer, disabled");
713 METHOD(ike_sa_t
, reset
, void,
714 private_ike_sa_t
*this)
716 /* the responder ID is reset, as peer may choose another one */
717 if (this->ike_sa_id
->is_initiator(this->ike_sa_id
))
719 this->ike_sa_id
->set_responder_spi(this->ike_sa_id
, 0);
722 set_state(this, IKE_CREATED
);
724 flush_auth_cfgs(this);
726 this->keymat
->destroy(this->keymat
);
727 this->keymat
= keymat_create(this->version
,
728 this->ike_sa_id
->is_initiator(this->ike_sa_id
));
730 this->task_manager
->reset(this->task_manager
, 0, 0);
733 METHOD(ike_sa_t
, get_keymat
, keymat_t
*,
734 private_ike_sa_t
*this)
739 METHOD(ike_sa_t
, add_virtual_ip
, void,
740 private_ike_sa_t
*this, bool local
, host_t
*ip
)
744 DBG1(DBG_IKE
, "installing new virtual IP %H", ip
);
745 if (hydra
->kernel_interface
->add_ip(hydra
->kernel_interface
, ip
,
746 this->my_host
) == SUCCESS
)
748 this->my_vips
->insert_last(this->my_vips
, ip
->clone(ip
));
752 DBG1(DBG_IKE
, "installing virtual IP %H failed", ip
);
757 this->other_vips
->insert_last(this->other_vips
, ip
->clone(ip
));
762 METHOD(ike_sa_t
, clear_virtual_ips
, void,
763 private_ike_sa_t
*this, bool local
)
765 linked_list_t
*vips
= local ?
this->my_vips
: this->other_vips
;
768 while (vips
->remove_first(vips
, (void**)&vip
) == SUCCESS
)
772 hydra
->kernel_interface
->del_ip(hydra
->kernel_interface
, vip
);
778 METHOD(ike_sa_t
, create_virtual_ip_enumerator
, enumerator_t
*,
779 private_ike_sa_t
*this, bool local
)
783 return this->my_vips
->create_enumerator(this->my_vips
);
785 return this->other_vips
->create_enumerator(this->other_vips
);
788 METHOD(ike_sa_t
, add_peer_address
, void,
789 private_ike_sa_t
*this, host_t
*host
)
791 this->peer_addresses
->insert_last(this->peer_addresses
, host
);
794 METHOD(ike_sa_t
, create_peer_address_enumerator
, enumerator_t
*,
795 private_ike_sa_t
*this)
797 if (this->peer_addresses
->get_count(this->peer_addresses
))
799 return this->peer_addresses
->create_enumerator(this->peer_addresses
);
801 /* in case we don't have MOBIKE */
802 return enumerator_create_single(this->other_host
, NULL
);
805 METHOD(ike_sa_t
, clear_peer_addresses
, void,
806 private_ike_sa_t
*this)
808 enumerator_t
*enumerator
;
811 enumerator
= this->peer_addresses
->create_enumerator(this->peer_addresses
);
812 while (enumerator
->enumerate(enumerator
, (void**)&host
))
814 this->peer_addresses
->remove_at(this->peer_addresses
,
818 enumerator
->destroy(enumerator
);
821 METHOD(ike_sa_t
, has_mapping_changed
, bool,
822 private_ike_sa_t
*this, chunk_t hash
)
824 if (this->nat_detection_dest
.ptr
== NULL
)
826 this->nat_detection_dest
= chunk_clone(hash
);
829 if (chunk_equals(hash
, this->nat_detection_dest
))
833 free(this->nat_detection_dest
.ptr
);
834 this->nat_detection_dest
= chunk_clone(hash
);
838 METHOD(ike_sa_t
, set_pending_updates
, void,
839 private_ike_sa_t
*this, u_int32_t updates
)
841 this->pending_updates
= updates
;
844 METHOD(ike_sa_t
, get_pending_updates
, u_int32_t
,
845 private_ike_sa_t
*this)
847 return this->pending_updates
;
850 METHOD(ike_sa_t
, float_ports
, void,
851 private_ike_sa_t
*this)
853 /* do not switch if we have a custom port from MOBIKE/NAT */
854 if (this->my_host
->get_port(this->my_host
) ==
855 charon
->socket
->get_port(charon
->socket
, FALSE
))
857 this->my_host
->set_port(this->my_host
,
858 charon
->socket
->get_port(charon
->socket
, TRUE
));
860 if (this->other_host
->get_port(this->other_host
) == IKEV2_UDP_PORT
)
862 this->other_host
->set_port(this->other_host
, IKEV2_NATT_PORT
);
866 METHOD(ike_sa_t
, update_hosts
, void,
867 private_ike_sa_t
*this, host_t
*me
, host_t
*other
, bool force
)
877 other
= this->other_host
;
880 /* apply hosts on first received message */
881 if (this->my_host
->is_anyaddr(this->my_host
) ||
882 this->other_host
->is_anyaddr(this->other_host
))
884 set_my_host(this, me
->clone(me
));
885 set_other_host(this, other
->clone(other
));
890 /* update our address in any case */
891 if (!me
->equals(me
, this->my_host
))
893 set_my_host(this, me
->clone(me
));
897 if (!other
->equals(other
, this->other_host
))
899 /* update others address if we are NOT NATed */
900 if (force
|| !has_condition(this, COND_NAT_HERE
))
902 set_other_host(this, other
->clone(other
));
908 /* update all associated CHILD_SAs, if required */
911 enumerator_t
*enumerator
;
912 child_sa_t
*child_sa
;
914 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
915 while (enumerator
->enumerate(enumerator
, (void**)&child_sa
))
917 if (child_sa
->update(child_sa
, this->my_host
,
918 this->other_host
, this->my_vips
,
919 has_condition(this, COND_NAT_ANY
)) == NOT_SUPPORTED
)
921 this->public.rekey_child_sa(&this->public,
922 child_sa
->get_protocol(child_sa
),
923 child_sa
->get_spi(child_sa
, TRUE
));
926 enumerator
->destroy(enumerator
);
930 METHOD(ike_sa_t
, generate_message
, status_t
,
931 private_ike_sa_t
*this, message_t
*message
, packet_t
**packet
)
935 if (message
->is_encoded(message
))
937 *packet
= message
->get_packet(message
);
940 this->stats
[STAT_OUTBOUND
] = time_monotonic(NULL
);
941 message
->set_ike_sa_id(message
, this->ike_sa_id
);
942 charon
->bus
->message(charon
->bus
, message
, FALSE
, TRUE
);
943 status
= message
->generate(message
, this->keymat
, packet
);
944 if (status
== SUCCESS
)
946 charon
->bus
->message(charon
->bus
, message
, FALSE
, FALSE
);
951 METHOD(ike_sa_t
, set_kmaddress
, void,
952 private_ike_sa_t
*this, host_t
*local
, host_t
*remote
)
954 DESTROY_IF(this->local_host
);
955 DESTROY_IF(this->remote_host
);
956 this->local_host
= local
->clone(local
);
957 this->remote_host
= remote
->clone(remote
);
961 METHOD(ike_sa_t
, act_as_mediation_server
, void,
962 private_ike_sa_t
*this)
964 charon
->mediation_manager
->update_sa_id(charon
->mediation_manager
,
965 this->other_id
, this->ike_sa_id
);
966 this->is_mediation_server
= TRUE
;
969 METHOD(ike_sa_t
, get_server_reflexive_host
, host_t
*,
970 private_ike_sa_t
*this)
972 return this->server_reflexive_host
;
975 METHOD(ike_sa_t
, set_server_reflexive_host
, void,
976 private_ike_sa_t
*this, host_t
*host
)
978 DESTROY_IF(this->server_reflexive_host
);
979 this->server_reflexive_host
= host
;
982 METHOD(ike_sa_t
, get_connect_id
, chunk_t
,
983 private_ike_sa_t
*this)
985 return this->connect_id
;
988 METHOD(ike_sa_t
, respond
, status_t
,
989 private_ike_sa_t
*this, identification_t
*peer_id
, chunk_t connect_id
)
991 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
992 task
->respond(task
, peer_id
, connect_id
);
993 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
994 return this->task_manager
->initiate(this->task_manager
);
997 METHOD(ike_sa_t
, callback
, status_t
,
998 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
);
1006 METHOD(ike_sa_t
, relay
, status_t
,
1007 private_ike_sa_t
*this, identification_t
*requester
, chunk_t connect_id
,
1008 chunk_t connect_key
, linked_list_t
*endpoints
, bool response
)
1010 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
1011 task
->relay(task
, requester
, connect_id
, connect_key
, endpoints
, response
);
1012 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
1013 return this->task_manager
->initiate(this->task_manager
);
1016 METHOD(ike_sa_t
, initiate_mediation
, status_t
,
1017 private_ike_sa_t
*this, peer_cfg_t
*mediated_cfg
)
1019 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
1020 task
->connect(task
, mediated_cfg
->get_peer_id(mediated_cfg
));
1021 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
1022 return this->task_manager
->initiate(this->task_manager
);
1025 METHOD(ike_sa_t
, initiate_mediated
, status_t
,
1026 private_ike_sa_t
*this, host_t
*me
, host_t
*other
, chunk_t connect_id
)
1028 set_my_host(this, me
->clone(me
));
1029 set_other_host(this, other
->clone(other
));
1030 chunk_free(&this->connect_id
);
1031 this->connect_id
= chunk_clone(connect_id
);
1032 return this->task_manager
->initiate(this->task_manager
);
1037 * Resolve DNS host in configuration
1039 static void resolve_hosts(private_ike_sa_t
*this)
1043 if (this->remote_host
)
1045 host
= this->remote_host
->clone(this->remote_host
);
1046 host
->set_port(host
, IKEV2_UDP_PORT
);
1051 u_int16_t other_port
;
1053 other_addr
= this->ike_cfg
->get_other_addr(this->ike_cfg
, NULL
);
1054 other_port
= this->ike_cfg
->get_other_port(this->ike_cfg
);
1055 host
= host_create_from_dns(other_addr
, 0, other_port
);
1059 set_other_host(this, host
);
1062 if (this->local_host
)
1064 host
= this->local_host
->clone(this->local_host
);
1065 host
->set_port(host
, charon
->socket
->get_port(charon
->socket
, FALSE
));
1073 /* use same address family as for other */
1074 if (!this->other_host
->is_anyaddr(this->other_host
))
1076 family
= this->other_host
->get_family(this->other_host
);
1078 my_addr
= this->ike_cfg
->get_my_addr(this->ike_cfg
, NULL
);
1079 my_port
= this->ike_cfg
->get_my_port(this->ike_cfg
);
1080 host
= host_create_from_dns(my_addr
, family
, my_port
);
1082 if (host
&& host
->is_anyaddr(host
) &&
1083 !this->other_host
->is_anyaddr(this->other_host
))
1085 host
->destroy(host
);
1086 host
= hydra
->kernel_interface
->get_source_addr(
1087 hydra
->kernel_interface
, this->other_host
, NULL
);
1090 host
->set_port(host
, this->ike_cfg
->get_my_port(this->ike_cfg
));
1093 { /* fallback to address family specific %any(6), if configured */
1094 host
= host_create_from_dns(my_addr
, 0, my_port
);
1100 set_my_host(this, host
);
1104 METHOD(ike_sa_t
, initiate
, status_t
,
1105 private_ike_sa_t
*this, child_cfg_t
*child_cfg
, u_int32_t reqid
,
1106 traffic_selector_t
*tsi
, traffic_selector_t
*tsr
)
1108 bool defer_initiate
= FALSE
;
1110 if (this->state
== IKE_CREATED
)
1112 if (this->my_host
->is_anyaddr(this->my_host
) ||
1113 this->other_host
->is_anyaddr(this->other_host
))
1115 resolve_hosts(this);
1118 if (this->other_host
->is_anyaddr(this->other_host
)
1120 && !this->peer_cfg
->get_mediated_by(this->peer_cfg
)
1124 char *addr
= this->ike_cfg
->get_other_addr(this->ike_cfg
, NULL
);
1125 bool is_anyaddr
= streq(addr
, "%any") || streq(addr
, "%any6");
1127 if (is_anyaddr
|| !this->retry_initiate_interval
)
1131 DBG1(DBG_IKE
, "unable to initiate to %s", addr
);
1135 DBG1(DBG_IKE
, "unable to resolve %s, initiate aborted",
1138 DESTROY_IF(child_cfg
);
1139 charon
->bus
->alert(charon
->bus
, ALERT_PEER_ADDR_FAILED
);
1142 DBG1(DBG_IKE
, "unable to resolve %s, retrying in %ds",
1143 addr
, this->retry_initiate_interval
);
1144 defer_initiate
= TRUE
;
1147 set_condition(this, COND_ORIGINAL_INITIATOR
, TRUE
);
1148 this->task_manager
->queue_ike(this->task_manager
);
1152 if (this->peer_cfg
->is_mediation(this->peer_cfg
))
1154 if (this->state
== IKE_ESTABLISHED
)
1156 /* mediation connection is already established, retrigger state
1157 * change to notify bus listeners */
1158 DBG1(DBG_IKE
, "mediation connection is already up");
1159 set_state(this, IKE_ESTABLISHED
);
1161 DESTROY_IF(child_cfg
);
1167 /* normal IKE_SA with CHILD_SA */
1168 this->task_manager
->queue_child(this->task_manager
, child_cfg
, reqid
,
1171 if (this->peer_cfg
->get_mediated_by(this->peer_cfg
))
1173 /* mediated connection, initiate mediation process */
1174 job_t
*job
= (job_t
*)initiate_mediation_job_create(this->ike_sa_id
);
1175 lib
->processor
->queue_job(lib
->processor
, job
);
1183 if (!this->retry_initiate_queued
)
1185 job_t
*job
= (job_t
*)retry_initiate_job_create(this->ike_sa_id
);
1186 lib
->scheduler
->schedule_job(lib
->scheduler
, (job_t
*)job
,
1187 this->retry_initiate_interval
);
1188 this->retry_initiate_queued
= TRUE
;
1192 this->retry_initiate_queued
= FALSE
;
1193 return this->task_manager
->initiate(this->task_manager
);
1196 METHOD(ike_sa_t
, retry_initiate
, status_t
,
1197 private_ike_sa_t
*this)
1199 if (this->retry_initiate_queued
)
1201 this->retry_initiate_queued
= FALSE
;
1202 return initiate(this, NULL
, 0, NULL
, NULL
);
1207 METHOD(ike_sa_t
, process_message
, status_t
,
1208 private_ike_sa_t
*this, message_t
*message
)
1212 if (this->state
== IKE_PASSIVE
)
1213 { /* do not handle messages in passive state */
1216 switch (message
->get_exchange_type(message
))
1222 if (this->state
!= IKE_CREATED
&&
1223 this->state
!= IKE_CONNECTING
)
1225 DBG1(DBG_IKE
, "ignoring %N in established IKE_SA state",
1226 exchange_type_names
, message
->get_exchange_type(message
));
1233 if (message
->get_major_version(message
) != this->version
)
1235 DBG1(DBG_IKE
, "ignoring %N IKEv%u exchange on %N SA",
1236 exchange_type_names
, message
->get_exchange_type(message
),
1237 message
->get_major_version(message
),
1238 ike_version_names
, this->version
);
1239 /* TODO-IKEv1: fall back to IKEv1 if we receive an IKEv1
1240 * INVALID_MAJOR_VERSION on an IKEv2 SA. */
1243 status
= this->task_manager
->process_message(this->task_manager
, message
);
1244 if (this->flush_auth_cfg
&& this->state
== IKE_ESTABLISHED
)
1246 /* authentication completed */
1247 this->flush_auth_cfg
= FALSE
;
1248 flush_auth_cfgs(this);
1253 METHOD(ike_sa_t
, get_id
, ike_sa_id_t
*,
1254 private_ike_sa_t
*this)
1256 return this->ike_sa_id
;
1259 METHOD(ike_sa_t
, get_version
, ike_version_t
,
1260 private_ike_sa_t
*this)
1262 return this->version
;
1265 METHOD(ike_sa_t
, get_my_id
, identification_t
*,
1266 private_ike_sa_t
*this)
1271 METHOD(ike_sa_t
, set_my_id
, void,
1272 private_ike_sa_t
*this, identification_t
*me
)
1274 DESTROY_IF(this->my_id
);
1278 METHOD(ike_sa_t
, get_other_id
, identification_t
*,
1279 private_ike_sa_t
*this)
1281 return this->other_id
;
1284 METHOD(ike_sa_t
, get_other_eap_id
, identification_t
*,
1285 private_ike_sa_t
*this)
1287 identification_t
*id
= NULL
, *current
;
1288 enumerator_t
*enumerator
;
1291 enumerator
= this->other_auths
->create_enumerator(this->other_auths
);
1292 while (enumerator
->enumerate(enumerator
, &cfg
))
1294 /* prefer EAP-Identity of last round */
1295 current
= cfg
->get(cfg
, AUTH_RULE_EAP_IDENTITY
);
1296 if (!current
|| current
->get_type(current
) == ID_ANY
)
1298 current
= cfg
->get(cfg
, AUTH_RULE_XAUTH_IDENTITY
);
1300 if (!current
|| current
->get_type(current
) == ID_ANY
)
1302 current
= cfg
->get(cfg
, AUTH_RULE_IDENTITY
);
1304 if (current
&& current
->get_type(current
) != ID_ANY
)
1310 enumerator
->destroy(enumerator
);
1315 return this->other_id
;
1318 METHOD(ike_sa_t
, set_other_id
, void,
1319 private_ike_sa_t
*this, identification_t
*other
)
1321 DESTROY_IF(this->other_id
);
1322 this->other_id
= other
;
1325 METHOD(ike_sa_t
, add_child_sa
, void,
1326 private_ike_sa_t
*this, child_sa_t
*child_sa
)
1328 this->child_sas
->insert_last(this->child_sas
, child_sa
);
1331 METHOD(ike_sa_t
, get_child_sa
, child_sa_t
*,
1332 private_ike_sa_t
*this, protocol_id_t protocol
, u_int32_t spi
, bool inbound
)
1334 enumerator_t
*enumerator
;
1335 child_sa_t
*current
, *found
= NULL
;
1337 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
1338 while (enumerator
->enumerate(enumerator
, (void**)¤t
))
1340 if (current
->get_spi(current
, inbound
) == spi
&&
1341 current
->get_protocol(current
) == protocol
)
1346 enumerator
->destroy(enumerator
);
1350 METHOD(ike_sa_t
, get_child_count
, int,
1351 private_ike_sa_t
*this)
1353 return this->child_sas
->get_count(this->child_sas
);
1356 METHOD(ike_sa_t
, create_child_sa_enumerator
, enumerator_t
*,
1357 private_ike_sa_t
*this)
1359 return this->child_sas
->create_enumerator(this->child_sas
);
1362 METHOD(ike_sa_t
, remove_child_sa
, void,
1363 private_ike_sa_t
*this, enumerator_t
*enumerator
)
1365 this->child_sas
->remove_at(this->child_sas
, enumerator
);
1368 METHOD(ike_sa_t
, rekey_child_sa
, status_t
,
1369 private_ike_sa_t
*this, protocol_id_t protocol
, u_int32_t spi
)
1371 if (this->state
== IKE_PASSIVE
)
1373 return INVALID_STATE
;
1375 this->task_manager
->queue_child_rekey(this->task_manager
, protocol
, spi
);
1376 return this->task_manager
->initiate(this->task_manager
);
1379 METHOD(ike_sa_t
, delete_child_sa
, status_t
,
1380 private_ike_sa_t
*this, protocol_id_t protocol
, u_int32_t spi
, bool expired
)
1382 if (this->state
== IKE_PASSIVE
)
1384 return INVALID_STATE
;
1386 this->task_manager
->queue_child_delete(this->task_manager
,
1387 protocol
, spi
, expired
);
1388 return this->task_manager
->initiate(this->task_manager
);
1391 METHOD(ike_sa_t
, destroy_child_sa
, status_t
,
1392 private_ike_sa_t
*this, protocol_id_t protocol
, u_int32_t spi
)
1394 enumerator_t
*enumerator
;
1395 child_sa_t
*child_sa
;
1396 status_t status
= NOT_FOUND
;
1398 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
1399 while (enumerator
->enumerate(enumerator
, (void**)&child_sa
))
1401 if (child_sa
->get_protocol(child_sa
) == protocol
&&
1402 child_sa
->get_spi(child_sa
, TRUE
) == spi
)
1404 this->child_sas
->remove_at(this->child_sas
, enumerator
);
1405 child_sa
->destroy(child_sa
);
1410 enumerator
->destroy(enumerator
);
1414 METHOD(ike_sa_t
, delete_
, status_t
,
1415 private_ike_sa_t
*this)
1417 switch (this->state
)
1420 if (this->version
== IKEV1
)
1421 { /* SA has been reauthenticated, delete */
1422 charon
->bus
->ike_updown(charon
->bus
, &this->public, FALSE
);
1426 case IKE_ESTABLISHED
:
1427 this->task_manager
->queue_ike_delete(this->task_manager
);
1428 return this->task_manager
->initiate(this->task_manager
);
1430 DBG1(DBG_IKE
, "deleting unestablished IKE_SA");
1435 DBG1(DBG_IKE
, "destroying IKE_SA in state %N "
1436 "without notification", ike_sa_state_names
, this->state
);
1437 charon
->bus
->ike_updown(charon
->bus
, &this->public, FALSE
);
1443 METHOD(ike_sa_t
, rekey
, status_t
,
1444 private_ike_sa_t
*this)
1446 if (this->state
== IKE_PASSIVE
)
1448 return INVALID_STATE
;
1450 this->task_manager
->queue_ike_rekey(this->task_manager
);
1451 return this->task_manager
->initiate(this->task_manager
);
1454 METHOD(ike_sa_t
, reauth
, status_t
,
1455 private_ike_sa_t
*this)
1457 if (this->state
== IKE_PASSIVE
)
1459 return INVALID_STATE
;
1461 /* we can't reauthenticate as responder when we use EAP or virtual IPs.
1462 * If the peer does not support RFC4478, there is no way to keep the
1464 if (!has_condition(this, COND_ORIGINAL_INITIATOR
))
1466 DBG1(DBG_IKE
, "initiator did not reauthenticate as requested");
1467 if (this->other_vips
->get_count(this->other_vips
) != 0 ||
1468 has_condition(this, COND_XAUTH_AUTHENTICATED
) ||
1469 has_condition(this, COND_EAP_AUTHENTICATED
)
1471 /* as mediation server we too cannot reauth the IKE_SA */
1472 || this->is_mediation_server
1478 del
= this->stats
[STAT_DELETE
];
1479 now
= time_monotonic(NULL
);
1480 DBG1(DBG_IKE
, "IKE_SA %s[%d] will timeout in %V",
1481 get_name(this), this->unique_id
, &now
, &del
);
1486 DBG0(DBG_IKE
, "reauthenticating IKE_SA %s[%d] actively",
1487 get_name(this), this->unique_id
);
1492 DBG0(DBG_IKE
, "reauthenticating IKE_SA %s[%d]",
1493 get_name(this), this->unique_id
);
1495 set_condition(this, COND_REAUTHENTICATING
, TRUE
);
1496 this->task_manager
->queue_ike_reauth(this->task_manager
);
1497 return this->task_manager
->initiate(this->task_manager
);
1500 METHOD(ike_sa_t
, reestablish
, status_t
,
1501 private_ike_sa_t
*this)
1506 enumerator_t
*enumerator
;
1507 child_sa_t
*child_sa
;
1508 child_cfg_t
*child_cfg
;
1509 bool restart
= FALSE
;
1510 status_t status
= FAILED
;
1512 if (has_condition(this, COND_REAUTHENTICATING
))
1513 { /* only reauthenticate if we have children */
1514 if (this->child_sas
->get_count(this->child_sas
) == 0
1516 /* allow reauth of mediation connections without CHILD_SAs */
1517 && !this->peer_cfg
->is_mediation(this->peer_cfg
)
1521 DBG1(DBG_IKE
, "unable to reauthenticate IKE_SA, no CHILD_SA "
1530 { /* check if we have children to keep up at all */
1531 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
1532 while (enumerator
->enumerate(enumerator
, (void**)&child_sa
))
1534 if (this->state
== IKE_DELETING
)
1536 action
= child_sa
->get_close_action(child_sa
);
1540 action
= child_sa
->get_dpd_action(child_sa
);
1544 case ACTION_RESTART
:
1548 charon
->traps
->install(charon
->traps
, this->peer_cfg
,
1549 child_sa
->get_config(child_sa
));
1555 enumerator
->destroy(enumerator
);
1557 /* mediation connections have no children, keep them up anyway */
1558 if (this->peer_cfg
->is_mediation(this->peer_cfg
))
1569 /* check if we are able to reestablish this IKE_SA */
1570 if (!has_condition(this, COND_ORIGINAL_INITIATOR
) &&
1571 (this->other_vips
->get_count(this->other_vips
) != 0 ||
1572 has_condition(this, COND_EAP_AUTHENTICATED
)
1574 || this->is_mediation_server
1578 DBG1(DBG_IKE
, "unable to reestablish IKE_SA due to asymmetric setup");
1582 new = charon
->ike_sa_manager
->checkout_new(charon
->ike_sa_manager
,
1583 this->version
, TRUE
);
1588 new->set_peer_cfg(new, this->peer_cfg
);
1589 host
= this->other_host
;
1590 new->set_other_host(new, host
->clone(host
));
1591 host
= this->my_host
;
1592 new->set_my_host(new, host
->clone(host
));
1593 /* if we already have a virtual IP, we reuse it */
1594 enumerator
= this->my_vips
->create_enumerator(this->my_vips
);
1595 while (enumerator
->enumerate(enumerator
, &host
))
1597 new->add_virtual_ip(new, TRUE
, host
);
1599 enumerator
->destroy(enumerator
);
1602 if (this->peer_cfg
->is_mediation(this->peer_cfg
))
1604 status
= new->initiate(new, NULL
, 0, NULL
, NULL
);
1609 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
1610 while (enumerator
->enumerate(enumerator
, (void**)&child_sa
))
1612 if (has_condition(this, COND_REAUTHENTICATING
))
1614 switch (child_sa
->get_state(child_sa
))
1617 { /* move routed child directly */
1618 this->child_sas
->remove_at(this->child_sas
, enumerator
);
1619 new->add_child_sa(new, child_sa
);
1620 action
= ACTION_NONE
;
1624 { /* initiate/queue all other CHILD_SAs */
1625 action
= ACTION_RESTART
;
1631 { /* only restart CHILD_SAs that are configured accordingly */
1632 if (this->state
== IKE_DELETING
)
1634 action
= child_sa
->get_close_action(child_sa
);
1638 action
= child_sa
->get_dpd_action(child_sa
);
1643 case ACTION_RESTART
:
1644 child_cfg
= child_sa
->get_config(child_sa
);
1645 DBG1(DBG_IKE
, "restarting CHILD_SA %s",
1646 child_cfg
->get_name(child_cfg
));
1647 child_cfg
->get_ref(child_cfg
);
1648 status
= new->initiate(new, child_cfg
, 0, NULL
, NULL
);
1653 if (status
== DESTROY_ME
)
1658 enumerator
->destroy(enumerator
);
1661 if (status
== DESTROY_ME
)
1663 charon
->ike_sa_manager
->checkin_and_destroy(charon
->ike_sa_manager
, new);
1668 charon
->bus
->ike_reestablish(charon
->bus
, &this->public, new);
1669 charon
->ike_sa_manager
->checkin(charon
->ike_sa_manager
, new);
1672 charon
->bus
->set_sa(charon
->bus
, &this->public);
1676 METHOD(ike_sa_t
, retransmit
, status_t
,
1677 private_ike_sa_t
*this, u_int32_t message_id
)
1679 if (this->state
== IKE_PASSIVE
)
1681 return INVALID_STATE
;
1683 this->stats
[STAT_OUTBOUND
] = time_monotonic(NULL
);
1684 if (this->task_manager
->retransmit(this->task_manager
, message_id
) != SUCCESS
)
1686 /* send a proper signal to brief interested bus listeners */
1687 switch (this->state
)
1689 case IKE_CONNECTING
:
1691 /* retry IKE_SA_INIT/Main Mode if we have multiple keyingtries */
1692 u_int32_t tries
= this->peer_cfg
->get_keyingtries(this->peer_cfg
);
1694 if (tries
== 0 || tries
> this->keyingtry
)
1696 DBG1(DBG_IKE
, "peer not responding, trying again (%d/%d)",
1697 this->keyingtry
+ 1, tries
);
1699 resolve_hosts(this);
1700 this->task_manager
->queue_ike(this->task_manager
);
1701 return this->task_manager
->initiate(this->task_manager
);
1703 DBG1(DBG_IKE
, "establishing IKE_SA failed, peer not responding");
1707 DBG1(DBG_IKE
, "proper IKE_SA delete failed, peer not responding");
1708 if (has_condition(this, COND_REAUTHENTICATING
))
1710 DBG1(DBG_IKE
, "delete during reauthentication failed, "
1711 "trying to reestablish IKE_SA anyway");
1716 DBG1(DBG_IKE
, "rekeying IKE_SA failed, peer not responding");
1722 if (this->state
!= IKE_CONNECTING
)
1724 charon
->bus
->ike_updown(charon
->bus
, &this->public, FALSE
);
1731 METHOD(ike_sa_t
, set_auth_lifetime
, status_t
,
1732 private_ike_sa_t
*this, u_int32_t lifetime
)
1734 u_int32_t diff
, hard
, soft
, now
;
1735 ike_auth_lifetime_t
*task
;
1738 diff
= this->peer_cfg
->get_over_time(this->peer_cfg
);
1739 now
= time_monotonic(NULL
);
1740 hard
= now
+ lifetime
;
1743 /* check if we have to send an AUTH_LIFETIME to enforce the new lifetime.
1744 * We send the notify in IKE_AUTH if not yet ESTABLISHED. */
1745 send_update
= this->state
== IKE_ESTABLISHED
&& this->version
== IKEV2
&&
1746 !has_condition(this, COND_ORIGINAL_INITIATOR
) &&
1747 (this->other_vips
->get_count(this->other_vips
) != 0 ||
1748 has_condition(this, COND_EAP_AUTHENTICATED
));
1750 if (lifetime
< diff
)
1752 this->stats
[STAT_REAUTH
] = now
;
1756 DBG1(DBG_IKE
, "received AUTH_LIFETIME of %ds, "
1757 "starting reauthentication", lifetime
);
1758 lib
->processor
->queue_job(lib
->processor
,
1759 (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, TRUE
));
1762 else if (this->stats
[STAT_REAUTH
] == 0 ||
1763 this->stats
[STAT_REAUTH
] > soft
)
1765 this->stats
[STAT_REAUTH
] = soft
;
1768 DBG1(DBG_IKE
, "received AUTH_LIFETIME of %ds, scheduling "
1769 "reauthentication in %ds", lifetime
, lifetime
- diff
);
1770 lib
->scheduler
->schedule_job(lib
->scheduler
,
1771 (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, TRUE
),
1777 DBG1(DBG_IKE
, "received AUTH_LIFETIME of %ds, "
1778 "reauthentication already scheduled in %ds", lifetime
,
1779 this->stats
[STAT_REAUTH
] - time_monotonic(NULL
));
1780 send_update
= FALSE
;
1782 /* give at least some seconds to reauthenticate */
1783 this->stats
[STAT_DELETE
] = max(hard
, now
+ 10);
1787 task
= ike_auth_lifetime_create(&this->public, TRUE
);
1788 this->task_manager
->queue_task(this->task_manager
, &task
->task
);
1789 return this->task_manager
->initiate(this->task_manager
);
1795 * Check if the current combination of source and destination address is still
1798 static bool is_current_path_valid(private_ike_sa_t
*this)
1802 src
= hydra
->kernel_interface
->get_source_addr(hydra
->kernel_interface
,
1803 this->other_host
, this->my_host
);
1806 if (src
->ip_equals(src
, this->my_host
))
1816 * Check if we have any path avialable for this IKE SA.
1818 static bool is_any_path_valid(private_ike_sa_t
*this)
1821 enumerator_t
*enumerator
;
1822 host_t
*src
= NULL
, *addr
;
1824 DBG1(DBG_IKE
, "old path is not available anymore, try to find another");
1825 enumerator
= create_peer_address_enumerator(this);
1826 while (enumerator
->enumerate(enumerator
, &addr
))
1828 DBG1(DBG_IKE
, "looking for a route to %H ...", addr
);
1829 src
= hydra
->kernel_interface
->get_source_addr(
1830 hydra
->kernel_interface
, addr
, NULL
);
1836 enumerator
->destroy(enumerator
);
1845 METHOD(ike_sa_t
, roam
, status_t
,
1846 private_ike_sa_t
*this, bool address
)
1848 switch (this->state
)
1852 case IKE_DESTROYING
:
1859 /* keep existing path if possible */
1860 if (is_current_path_valid(this))
1862 DBG2(DBG_IKE
, "keeping connection path %H - %H",
1863 this->my_host
, this->other_host
);
1864 set_condition(this, COND_STALE
, FALSE
);
1866 if (supports_extension(this, EXT_MOBIKE
) && address
)
1867 { /* if any addresses changed, send an updated list */
1868 DBG1(DBG_IKE
, "sending address list update using MOBIKE");
1869 this->task_manager
->queue_mobike(this->task_manager
, FALSE
, TRUE
);
1870 return this->task_manager
->initiate(this->task_manager
);
1875 if (!is_any_path_valid(this))
1877 DBG1(DBG_IKE
, "no route found to reach %H, MOBIKE update deferred",
1879 set_condition(this, COND_STALE
, TRUE
);
1882 set_condition(this, COND_STALE
, FALSE
);
1884 /* update addresses with mobike, if supported ... */
1885 if (supports_extension(this, EXT_MOBIKE
))
1887 if (!has_condition(this, COND_ORIGINAL_INITIATOR
))
1888 { /* responder updates the peer about changed address config */
1889 DBG1(DBG_IKE
, "sending address list update using MOBIKE, "
1890 "implicitly requesting an address change");
1895 DBG1(DBG_IKE
, "requesting address change using MOBIKE");
1897 this->task_manager
->queue_mobike(this->task_manager
, TRUE
, address
);
1898 return this->task_manager
->initiate(this->task_manager
);
1901 /* ... reauth if not */
1902 if (!has_condition(this, COND_ORIGINAL_INITIATOR
))
1903 { /* responder does not reauthenticate */
1904 set_condition(this, COND_STALE
, TRUE
);
1907 DBG1(DBG_IKE
, "reauthenticating IKE_SA due to address change");
1908 /* since our previous path is not valid anymore, try and find a new one */
1909 resolve_hosts(this);
1910 return reauth(this);
1913 METHOD(ike_sa_t
, add_configuration_attribute
, void,
1914 private_ike_sa_t
*this, attribute_handler_t
*handler
,
1915 configuration_attribute_type_t type
, chunk_t data
)
1917 attribute_entry_t
*entry
= malloc_thing(attribute_entry_t
);
1919 entry
->handler
= handler
;
1921 entry
->data
= chunk_clone(data
);
1923 this->attributes
->insert_last(this->attributes
, entry
);
1926 METHOD(ike_sa_t
, create_task_enumerator
, enumerator_t
*,
1927 private_ike_sa_t
*this, task_queue_t queue
)
1929 return this->task_manager
->create_task_enumerator(this->task_manager
, queue
);
1932 METHOD(ike_sa_t
, flush_queue
, void,
1933 private_ike_sa_t
*this, task_queue_t queue
)
1935 this->task_manager
->flush_queue(this->task_manager
, queue
);
1938 METHOD(ike_sa_t
, queue_task
, void,
1939 private_ike_sa_t
*this, task_t
*task
)
1941 this->task_manager
->queue_task(this->task_manager
, task
);
1944 METHOD(ike_sa_t
, inherit
, void,
1945 private_ike_sa_t
*this, ike_sa_t
*other_public
)
1947 private_ike_sa_t
*other
= (private_ike_sa_t
*)other_public
;
1948 child_sa_t
*child_sa
;
1949 attribute_entry_t
*entry
;
1950 enumerator_t
*enumerator
;
1954 /* apply hosts and ids */
1955 this->my_host
->destroy(this->my_host
);
1956 this->other_host
->destroy(this->other_host
);
1957 this->my_id
->destroy(this->my_id
);
1958 this->other_id
->destroy(this->other_id
);
1959 this->my_host
= other
->my_host
->clone(other
->my_host
);
1960 this->other_host
= other
->other_host
->clone(other
->other_host
);
1961 this->my_id
= other
->my_id
->clone(other
->my_id
);
1962 this->other_id
= other
->other_id
->clone(other
->other_id
);
1964 /* apply assigned virtual IPs... */
1965 while (this->my_vips
->remove_last(this->my_vips
, (void**)&vip
) == SUCCESS
)
1967 other
->my_vips
->insert_first(other
->my_vips
, vip
);
1969 while (this->other_vips
->remove_last(this->other_vips
,
1970 (void**)&vip
) == SUCCESS
)
1972 other
->other_vips
->insert_first(other
->other_vips
, vip
);
1975 /* authentication information */
1976 enumerator
= other
->my_auths
->create_enumerator(other
->my_auths
);
1977 while (enumerator
->enumerate(enumerator
, &cfg
))
1979 this->my_auths
->insert_last(this->my_auths
, cfg
->clone(cfg
));
1981 enumerator
->destroy(enumerator
);
1982 enumerator
= other
->other_auths
->create_enumerator(other
->other_auths
);
1983 while (enumerator
->enumerate(enumerator
, &cfg
))
1985 this->other_auths
->insert_last(this->other_auths
, cfg
->clone(cfg
));
1987 enumerator
->destroy(enumerator
);
1989 /* ... and configuration attributes */
1990 while (other
->attributes
->remove_last(other
->attributes
,
1991 (void**)&entry
) == SUCCESS
)
1993 this->attributes
->insert_first(this->attributes
, entry
);
1996 /* inherit all conditions */
1997 this->conditions
= other
->conditions
;
1998 if (this->conditions
& COND_NAT_HERE
)
2000 send_keepalive(this);
2004 if (other
->is_mediation_server
)
2006 act_as_mediation_server(this);
2008 else if (other
->server_reflexive_host
)
2010 this->server_reflexive_host
= other
->server_reflexive_host
->clone(
2011 other
->server_reflexive_host
);
2015 /* adopt all children */
2016 while (other
->child_sas
->remove_last(other
->child_sas
,
2017 (void**)&child_sa
) == SUCCESS
)
2019 this->child_sas
->insert_first(this->child_sas
, (void*)child_sa
);
2022 /* move pending tasks to the new IKE_SA */
2023 this->task_manager
->adopt_tasks(this->task_manager
, other
->task_manager
);
2025 /* reauthentication timeout survives a rekeying */
2026 if (other
->stats
[STAT_REAUTH
])
2028 time_t reauth
, delete, now
= time_monotonic(NULL
);
2030 this->stats
[STAT_REAUTH
] = other
->stats
[STAT_REAUTH
];
2031 reauth
= this->stats
[STAT_REAUTH
] - now
;
2032 delete = reauth
+ this->peer_cfg
->get_over_time(this->peer_cfg
);
2033 this->stats
[STAT_DELETE
] = this->stats
[STAT_REAUTH
] + delete;
2034 DBG1(DBG_IKE
, "rescheduling reauthentication in %ds after rekeying, "
2035 "lifetime reduced to %ds", reauth
, delete);
2036 lib
->scheduler
->schedule_job(lib
->scheduler
,
2037 (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, TRUE
), reauth
);
2038 lib
->scheduler
->schedule_job(lib
->scheduler
,
2039 (job_t
*)delete_ike_sa_job_create(this->ike_sa_id
, TRUE
), delete);
2043 METHOD(ike_sa_t
, destroy
, void,
2044 private_ike_sa_t
*this)
2046 attribute_entry_t
*entry
;
2049 charon
->bus
->set_sa(charon
->bus
, &this->public);
2051 set_state(this, IKE_DESTROYING
);
2052 DESTROY_IF(this->task_manager
);
2054 /* remove attributes first, as we pass the IKE_SA to the handler */
2055 while (this->attributes
->remove_last(this->attributes
,
2056 (void**)&entry
) == SUCCESS
)
2058 hydra
->attributes
->release(hydra
->attributes
, entry
->handler
,
2059 this->other_id
, entry
->type
, entry
->data
);
2060 free(entry
->data
.ptr
);
2063 this->attributes
->destroy(this->attributes
);
2065 this->child_sas
->destroy_offset(this->child_sas
, offsetof(child_sa_t
, destroy
));
2067 /* unset SA after here to avoid usage by the listeners */
2068 charon
->bus
->set_sa(charon
->bus
, NULL
);
2070 DESTROY_IF(this->keymat
);
2072 while (this->my_vips
->remove_last(this->my_vips
, (void**)&vip
) == SUCCESS
)
2074 hydra
->kernel_interface
->del_ip(hydra
->kernel_interface
, vip
);
2077 this->my_vips
->destroy(this->my_vips
);
2078 while (this->other_vips
->remove_last(this->other_vips
,
2079 (void**)&vip
) == SUCCESS
)
2083 linked_list_t
*pools
;
2084 identification_t
*id
;
2086 id
= get_other_eap_id(this);
2087 pools
= linked_list_create_from_enumerator(
2088 this->peer_cfg
->create_pool_enumerator(this->peer_cfg
));
2089 hydra
->attributes
->release_address(hydra
->attributes
, pools
, vip
, id
);
2090 pools
->destroy(pools
);
2094 this->other_vips
->destroy(this->other_vips
);
2095 this->peer_addresses
->destroy_offset(this->peer_addresses
,
2096 offsetof(host_t
, destroy
));
2098 if (this->is_mediation_server
)
2100 charon
->mediation_manager
->remove(charon
->mediation_manager
,
2103 DESTROY_IF(this->server_reflexive_host
);
2104 chunk_free(&this->connect_id
);
2106 free(this->nat_detection_dest
.ptr
);
2108 DESTROY_IF(this->my_host
);
2109 DESTROY_IF(this->other_host
);
2110 DESTROY_IF(this->my_id
);
2111 DESTROY_IF(this->other_id
);
2112 DESTROY_IF(this->local_host
);
2113 DESTROY_IF(this->remote_host
);
2115 DESTROY_IF(this->ike_cfg
);
2116 DESTROY_IF(this->peer_cfg
);
2117 DESTROY_IF(this->proposal
);
2118 this->my_auth
->destroy(this->my_auth
);
2119 this->other_auth
->destroy(this->other_auth
);
2120 this->my_auths
->destroy_offset(this->my_auths
,
2121 offsetof(auth_cfg_t
, destroy
));
2122 this->other_auths
->destroy_offset(this->other_auths
,
2123 offsetof(auth_cfg_t
, destroy
));
2125 this->ike_sa_id
->destroy(this->ike_sa_id
);
2130 * Described in header.
2132 ike_sa_t
* ike_sa_create(ike_sa_id_t
*ike_sa_id
, bool initiator
,
2133 ike_version_t version
)
2135 private_ike_sa_t
*this;
2136 static u_int32_t unique_id
= 0;
2138 if (version
== IKE_ANY
)
2139 { /* prefer IKEv2 if protocol not specified */
2149 .get_version
= _get_version
,
2150 .get_state
= _get_state
,
2151 .set_state
= _set_state
,
2152 .get_name
= _get_name
,
2153 .get_statistic
= _get_statistic
,
2154 .set_statistic
= _set_statistic
,
2155 .process_message
= _process_message
,
2156 .initiate
= _initiate
,
2157 .retry_initiate
= _retry_initiate
,
2158 .get_ike_cfg
= _get_ike_cfg
,
2159 .set_ike_cfg
= _set_ike_cfg
,
2160 .get_peer_cfg
= _get_peer_cfg
,
2161 .set_peer_cfg
= _set_peer_cfg
,
2162 .get_auth_cfg
= _get_auth_cfg
,
2163 .create_auth_cfg_enumerator
= _create_auth_cfg_enumerator
,
2164 .add_auth_cfg
= _add_auth_cfg
,
2165 .get_proposal
= _get_proposal
,
2166 .set_proposal
= _set_proposal
,
2168 .get_my_host
= _get_my_host
,
2169 .set_my_host
= _set_my_host
,
2170 .get_other_host
= _get_other_host
,
2171 .set_other_host
= _set_other_host
,
2172 .set_message_id
= _set_message_id
,
2173 .float_ports
= _float_ports
,
2174 .update_hosts
= _update_hosts
,
2175 .get_my_id
= _get_my_id
,
2176 .set_my_id
= _set_my_id
,
2177 .get_other_id
= _get_other_id
,
2178 .set_other_id
= _set_other_id
,
2179 .get_other_eap_id
= _get_other_eap_id
,
2180 .enable_extension
= _enable_extension
,
2181 .supports_extension
= _supports_extension
,
2182 .set_condition
= _set_condition
,
2183 .has_condition
= _has_condition
,
2184 .set_pending_updates
= _set_pending_updates
,
2185 .get_pending_updates
= _get_pending_updates
,
2186 .create_peer_address_enumerator
= _create_peer_address_enumerator
,
2187 .add_peer_address
= _add_peer_address
,
2188 .clear_peer_addresses
= _clear_peer_addresses
,
2189 .has_mapping_changed
= _has_mapping_changed
,
2190 .retransmit
= _retransmit
,
2192 .destroy
= _destroy
,
2193 .send_dpd
= _send_dpd
,
2194 .send_keepalive
= _send_keepalive
,
2195 .get_keymat
= _get_keymat
,
2196 .add_child_sa
= _add_child_sa
,
2197 .get_child_sa
= _get_child_sa
,
2198 .get_child_count
= _get_child_count
,
2199 .create_child_sa_enumerator
= _create_child_sa_enumerator
,
2200 .remove_child_sa
= _remove_child_sa
,
2201 .rekey_child_sa
= _rekey_child_sa
,
2202 .delete_child_sa
= _delete_child_sa
,
2203 .destroy_child_sa
= _destroy_child_sa
,
2206 .reestablish
= _reestablish
,
2207 .set_auth_lifetime
= _set_auth_lifetime
,
2209 .inherit
= _inherit
,
2210 .generate_message
= _generate_message
,
2212 .get_unique_id
= _get_unique_id
,
2213 .add_virtual_ip
= _add_virtual_ip
,
2214 .clear_virtual_ips
= _clear_virtual_ips
,
2215 .create_virtual_ip_enumerator
= _create_virtual_ip_enumerator
,
2216 .add_configuration_attribute
= _add_configuration_attribute
,
2217 .set_kmaddress
= _set_kmaddress
,
2218 .create_task_enumerator
= _create_task_enumerator
,
2219 .flush_queue
= _flush_queue
,
2220 .queue_task
= _queue_task
,
2222 .act_as_mediation_server
= _act_as_mediation_server
,
2223 .get_server_reflexive_host
= _get_server_reflexive_host
,
2224 .set_server_reflexive_host
= _set_server_reflexive_host
,
2225 .get_connect_id
= _get_connect_id
,
2226 .initiate_mediation
= _initiate_mediation
,
2227 .initiate_mediated
= _initiate_mediated
,
2229 .callback
= _callback
,
2230 .respond
= _respond
,
2233 .ike_sa_id
= ike_sa_id
->clone(ike_sa_id
),
2235 .child_sas
= linked_list_create(),
2236 .my_host
= host_create_any(AF_INET
),
2237 .other_host
= host_create_any(AF_INET
),
2238 .my_id
= identification_create_from_encoding(ID_ANY
, chunk_empty
),
2239 .other_id
= identification_create_from_encoding(ID_ANY
, chunk_empty
),
2240 .keymat
= keymat_create(version
, initiator
),
2241 .state
= IKE_CREATED
,
2242 .stats
[STAT_INBOUND
] = time_monotonic(NULL
),
2243 .stats
[STAT_OUTBOUND
] = time_monotonic(NULL
),
2244 .my_auth
= auth_cfg_create(),
2245 .other_auth
= auth_cfg_create(),
2246 .my_auths
= linked_list_create(),
2247 .other_auths
= linked_list_create(),
2248 .unique_id
= ++unique_id
,
2249 .peer_addresses
= linked_list_create(),
2250 .my_vips
= linked_list_create(),
2251 .other_vips
= linked_list_create(),
2252 .attributes
= linked_list_create(),
2253 .keepalive_interval
= lib
->settings
->get_time(lib
->settings
,
2254 "%s.keep_alive", KEEPALIVE_INTERVAL
, charon
->name
),
2255 .retry_initiate_interval
= lib
->settings
->get_time(lib
->settings
,
2256 "%s.retry_initiate_interval", 0, charon
->name
),
2257 .flush_auth_cfg
= lib
->settings
->get_bool(lib
->settings
,
2258 "%s.flush_auth_cfg", FALSE
, charon
->name
),
2261 if (version
== IKEV2
)
2262 { /* always supported with IKEv2 */
2263 enable_extension(this, EXT_DPD
);
2266 this->task_manager
= task_manager_create(&this->public);
2267 this->my_host
->set_port(this->my_host
,
2268 charon
->socket
->get_port(charon
->socket
, FALSE
));
2270 if (!this->task_manager
|| !this->keymat
)
2272 DBG1(DBG_IKE
, "IKE version %d not supported", this->version
);
2276 return &this->public;