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 <collections/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
, 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
)
746 if (hydra
->kernel_interface
->get_interface(hydra
->kernel_interface
,
747 this->my_host
, &iface
))
749 DBG1(DBG_IKE
, "installing new virtual IP %H", ip
);
750 if (hydra
->kernel_interface
->add_ip(hydra
->kernel_interface
,
751 ip
, -1, iface
) == SUCCESS
)
753 this->my_vips
->insert_last(this->my_vips
, ip
->clone(ip
));
757 DBG1(DBG_IKE
, "installing virtual IP %H failed", ip
);
763 DBG1(DBG_IKE
, "looking up interface for virtual IP %H failed", ip
);
768 this->other_vips
->insert_last(this->other_vips
, ip
->clone(ip
));
773 METHOD(ike_sa_t
, clear_virtual_ips
, void,
774 private_ike_sa_t
*this, bool local
)
776 linked_list_t
*vips
= local ?
this->my_vips
: this->other_vips
;
779 if (!local
&& vips
->get_count(vips
))
781 charon
->bus
->assign_vips(charon
->bus
, &this->public, FALSE
);
783 while (vips
->remove_first(vips
, (void**)&vip
) == SUCCESS
)
787 hydra
->kernel_interface
->del_ip(hydra
->kernel_interface
,
794 METHOD(ike_sa_t
, create_virtual_ip_enumerator
, enumerator_t
*,
795 private_ike_sa_t
*this, bool local
)
799 return this->my_vips
->create_enumerator(this->my_vips
);
801 return this->other_vips
->create_enumerator(this->other_vips
);
804 METHOD(ike_sa_t
, add_peer_address
, void,
805 private_ike_sa_t
*this, host_t
*host
)
807 this->peer_addresses
->insert_last(this->peer_addresses
, host
);
810 METHOD(ike_sa_t
, create_peer_address_enumerator
, enumerator_t
*,
811 private_ike_sa_t
*this)
813 if (this->peer_addresses
->get_count(this->peer_addresses
))
815 return this->peer_addresses
->create_enumerator(this->peer_addresses
);
817 /* in case we don't have MOBIKE */
818 return enumerator_create_single(this->other_host
, NULL
);
821 METHOD(ike_sa_t
, clear_peer_addresses
, void,
822 private_ike_sa_t
*this)
824 enumerator_t
*enumerator
;
827 enumerator
= this->peer_addresses
->create_enumerator(this->peer_addresses
);
828 while (enumerator
->enumerate(enumerator
, (void**)&host
))
830 this->peer_addresses
->remove_at(this->peer_addresses
,
834 enumerator
->destroy(enumerator
);
837 METHOD(ike_sa_t
, has_mapping_changed
, bool,
838 private_ike_sa_t
*this, chunk_t hash
)
840 if (this->nat_detection_dest
.ptr
== NULL
)
842 this->nat_detection_dest
= chunk_clone(hash
);
845 if (chunk_equals(hash
, this->nat_detection_dest
))
849 free(this->nat_detection_dest
.ptr
);
850 this->nat_detection_dest
= chunk_clone(hash
);
854 METHOD(ike_sa_t
, set_pending_updates
, void,
855 private_ike_sa_t
*this, u_int32_t updates
)
857 this->pending_updates
= updates
;
860 METHOD(ike_sa_t
, get_pending_updates
, u_int32_t
,
861 private_ike_sa_t
*this)
863 return this->pending_updates
;
866 METHOD(ike_sa_t
, float_ports
, void,
867 private_ike_sa_t
*this)
869 /* do not switch if we have a custom port from MOBIKE/NAT */
870 if (this->my_host
->get_port(this->my_host
) ==
871 charon
->socket
->get_port(charon
->socket
, FALSE
))
873 this->my_host
->set_port(this->my_host
,
874 charon
->socket
->get_port(charon
->socket
, TRUE
));
876 if (this->other_host
->get_port(this->other_host
) == IKEV2_UDP_PORT
)
878 this->other_host
->set_port(this->other_host
, IKEV2_NATT_PORT
);
882 METHOD(ike_sa_t
, update_hosts
, void,
883 private_ike_sa_t
*this, host_t
*me
, host_t
*other
, bool force
)
893 other
= this->other_host
;
896 /* apply hosts on first received message */
897 if (this->my_host
->is_anyaddr(this->my_host
) ||
898 this->other_host
->is_anyaddr(this->other_host
))
900 set_my_host(this, me
->clone(me
));
901 set_other_host(this, other
->clone(other
));
906 /* update our address in any case */
907 if (force
&& !me
->equals(me
, this->my_host
))
909 set_my_host(this, me
->clone(me
));
913 if (!other
->equals(other
, this->other_host
))
915 /* update others address if we are NOT NATed */
916 if ((has_condition(this, COND_NAT_THERE
) &&
917 !has_condition(this, COND_NAT_HERE
)) || force
)
919 set_other_host(this, other
->clone(other
));
925 /* update all associated CHILD_SAs, if required */
928 enumerator_t
*enumerator
;
929 child_sa_t
*child_sa
;
931 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
932 while (enumerator
->enumerate(enumerator
, (void**)&child_sa
))
934 if (child_sa
->update(child_sa
, this->my_host
,
935 this->other_host
, this->my_vips
,
936 has_condition(this, COND_NAT_ANY
)) == NOT_SUPPORTED
)
938 this->public.rekey_child_sa(&this->public,
939 child_sa
->get_protocol(child_sa
),
940 child_sa
->get_spi(child_sa
, TRUE
));
943 enumerator
->destroy(enumerator
);
948 * Set configured DSCP value on packet
950 static void set_dscp(private_ike_sa_t
*this, packet_t
*packet
)
954 /* prefer IKE config on peer_cfg, as its selection is more accurate
955 * then the initial IKE config */
958 ike_cfg
= this->peer_cfg
->get_ike_cfg(this->peer_cfg
);
962 ike_cfg
= this->ike_cfg
;
966 packet
->set_dscp(packet
, ike_cfg
->get_dscp(ike_cfg
));
970 METHOD(ike_sa_t
, generate_message
, status_t
,
971 private_ike_sa_t
*this, message_t
*message
, packet_t
**packet
)
975 if (message
->is_encoded(message
))
976 { /* already encoded in task, but set DSCP value */
977 *packet
= message
->get_packet(message
);
978 set_dscp(this, *packet
);
981 this->stats
[STAT_OUTBOUND
] = time_monotonic(NULL
);
982 message
->set_ike_sa_id(message
, this->ike_sa_id
);
983 charon
->bus
->message(charon
->bus
, message
, FALSE
, TRUE
);
984 status
= message
->generate(message
, this->keymat
, packet
);
985 if (status
== SUCCESS
)
987 set_dscp(this, *packet
);
988 charon
->bus
->message(charon
->bus
, message
, FALSE
, FALSE
);
993 METHOD(ike_sa_t
, set_kmaddress
, void,
994 private_ike_sa_t
*this, host_t
*local
, host_t
*remote
)
996 DESTROY_IF(this->local_host
);
997 DESTROY_IF(this->remote_host
);
998 this->local_host
= local
->clone(local
);
999 this->remote_host
= remote
->clone(remote
);
1003 METHOD(ike_sa_t
, act_as_mediation_server
, void,
1004 private_ike_sa_t
*this)
1006 charon
->mediation_manager
->update_sa_id(charon
->mediation_manager
,
1007 this->other_id
, this->ike_sa_id
);
1008 this->is_mediation_server
= TRUE
;
1011 METHOD(ike_sa_t
, get_server_reflexive_host
, host_t
*,
1012 private_ike_sa_t
*this)
1014 return this->server_reflexive_host
;
1017 METHOD(ike_sa_t
, set_server_reflexive_host
, void,
1018 private_ike_sa_t
*this, host_t
*host
)
1020 DESTROY_IF(this->server_reflexive_host
);
1021 this->server_reflexive_host
= host
;
1024 METHOD(ike_sa_t
, get_connect_id
, chunk_t
,
1025 private_ike_sa_t
*this)
1027 return this->connect_id
;
1030 METHOD(ike_sa_t
, respond
, status_t
,
1031 private_ike_sa_t
*this, identification_t
*peer_id
, chunk_t connect_id
)
1033 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
1034 task
->respond(task
, peer_id
, connect_id
);
1035 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
1036 return this->task_manager
->initiate(this->task_manager
);
1039 METHOD(ike_sa_t
, callback
, status_t
,
1040 private_ike_sa_t
*this, identification_t
*peer_id
)
1042 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
1043 task
->callback(task
, peer_id
);
1044 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
1045 return this->task_manager
->initiate(this->task_manager
);
1048 METHOD(ike_sa_t
, relay
, status_t
,
1049 private_ike_sa_t
*this, identification_t
*requester
, chunk_t connect_id
,
1050 chunk_t connect_key
, linked_list_t
*endpoints
, bool response
)
1052 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
1053 task
->relay(task
, requester
, connect_id
, connect_key
, endpoints
, response
);
1054 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
1055 return this->task_manager
->initiate(this->task_manager
);
1058 METHOD(ike_sa_t
, initiate_mediation
, status_t
,
1059 private_ike_sa_t
*this, peer_cfg_t
*mediated_cfg
)
1061 ike_me_t
*task
= ike_me_create(&this->public, TRUE
);
1062 task
->connect(task
, mediated_cfg
->get_peer_id(mediated_cfg
));
1063 this->task_manager
->queue_task(this->task_manager
, (task_t
*)task
);
1064 return this->task_manager
->initiate(this->task_manager
);
1067 METHOD(ike_sa_t
, initiate_mediated
, status_t
,
1068 private_ike_sa_t
*this, host_t
*me
, host_t
*other
, chunk_t connect_id
)
1070 set_my_host(this, me
->clone(me
));
1071 set_other_host(this, other
->clone(other
));
1072 chunk_free(&this->connect_id
);
1073 this->connect_id
= chunk_clone(connect_id
);
1074 return this->task_manager
->initiate(this->task_manager
);
1079 * Resolve DNS host in configuration
1081 static void resolve_hosts(private_ike_sa_t
*this)
1085 if (this->remote_host
)
1087 host
= this->remote_host
->clone(this->remote_host
);
1088 host
->set_port(host
, IKEV2_UDP_PORT
);
1093 u_int16_t other_port
;
1095 other_addr
= this->ike_cfg
->get_other_addr(this->ike_cfg
, NULL
);
1096 other_port
= this->ike_cfg
->get_other_port(this->ike_cfg
);
1097 host
= host_create_from_dns(other_addr
, 0, other_port
);
1101 set_other_host(this, host
);
1104 if (this->local_host
)
1106 host
= this->local_host
->clone(this->local_host
);
1107 host
->set_port(host
, charon
->socket
->get_port(charon
->socket
, FALSE
));
1115 /* use same address family as for other */
1116 if (!this->other_host
->is_anyaddr(this->other_host
))
1118 family
= this->other_host
->get_family(this->other_host
);
1120 my_addr
= this->ike_cfg
->get_my_addr(this->ike_cfg
, NULL
);
1121 my_port
= this->ike_cfg
->get_my_port(this->ike_cfg
);
1122 host
= host_create_from_dns(my_addr
, family
, my_port
);
1124 if (host
&& host
->is_anyaddr(host
) &&
1125 !this->other_host
->is_anyaddr(this->other_host
))
1127 host
->destroy(host
);
1128 host
= hydra
->kernel_interface
->get_source_addr(
1129 hydra
->kernel_interface
, this->other_host
, NULL
);
1132 host
->set_port(host
, this->ike_cfg
->get_my_port(this->ike_cfg
));
1135 { /* fallback to address family specific %any(6), if configured */
1136 host
= host_create_from_dns(my_addr
, 0, my_port
);
1142 set_my_host(this, host
);
1146 METHOD(ike_sa_t
, initiate
, status_t
,
1147 private_ike_sa_t
*this, child_cfg_t
*child_cfg
, u_int32_t reqid
,
1148 traffic_selector_t
*tsi
, traffic_selector_t
*tsr
)
1150 bool defer_initiate
= FALSE
;
1152 if (this->state
== IKE_CREATED
)
1154 if (this->my_host
->is_anyaddr(this->my_host
) ||
1155 this->other_host
->is_anyaddr(this->other_host
))
1157 resolve_hosts(this);
1160 if (this->other_host
->is_anyaddr(this->other_host
)
1162 && !this->peer_cfg
->get_mediated_by(this->peer_cfg
)
1166 char *addr
= this->ike_cfg
->get_other_addr(this->ike_cfg
, NULL
);
1167 bool is_anyaddr
= streq(addr
, "%any") || streq(addr
, "%any6");
1169 if (is_anyaddr
|| !this->retry_initiate_interval
)
1173 DBG1(DBG_IKE
, "unable to initiate to %s", addr
);
1177 DBG1(DBG_IKE
, "unable to resolve %s, initiate aborted",
1180 DESTROY_IF(child_cfg
);
1181 charon
->bus
->alert(charon
->bus
, ALERT_PEER_ADDR_FAILED
);
1184 DBG1(DBG_IKE
, "unable to resolve %s, retrying in %ds",
1185 addr
, this->retry_initiate_interval
);
1186 defer_initiate
= TRUE
;
1189 set_condition(this, COND_ORIGINAL_INITIATOR
, TRUE
);
1190 this->task_manager
->queue_ike(this->task_manager
);
1194 if (this->peer_cfg
->is_mediation(this->peer_cfg
))
1196 if (this->state
== IKE_ESTABLISHED
)
1198 /* mediation connection is already established, retrigger state
1199 * change to notify bus listeners */
1200 DBG1(DBG_IKE
, "mediation connection is already up");
1201 set_state(this, IKE_ESTABLISHED
);
1203 DESTROY_IF(child_cfg
);
1209 /* normal IKE_SA with CHILD_SA */
1210 this->task_manager
->queue_child(this->task_manager
, child_cfg
, reqid
,
1213 if (this->peer_cfg
->get_mediated_by(this->peer_cfg
))
1215 /* mediated connection, initiate mediation process */
1216 job_t
*job
= (job_t
*)initiate_mediation_job_create(this->ike_sa_id
);
1217 lib
->processor
->queue_job(lib
->processor
, job
);
1225 if (!this->retry_initiate_queued
)
1227 job_t
*job
= (job_t
*)retry_initiate_job_create(this->ike_sa_id
);
1228 lib
->scheduler
->schedule_job(lib
->scheduler
, (job_t
*)job
,
1229 this->retry_initiate_interval
);
1230 this->retry_initiate_queued
= TRUE
;
1234 this->retry_initiate_queued
= FALSE
;
1235 return this->task_manager
->initiate(this->task_manager
);
1238 METHOD(ike_sa_t
, retry_initiate
, status_t
,
1239 private_ike_sa_t
*this)
1241 if (this->retry_initiate_queued
)
1243 this->retry_initiate_queued
= FALSE
;
1244 return initiate(this, NULL
, 0, NULL
, NULL
);
1249 METHOD(ike_sa_t
, process_message
, status_t
,
1250 private_ike_sa_t
*this, message_t
*message
)
1254 if (this->state
== IKE_PASSIVE
)
1255 { /* do not handle messages in passive state */
1258 if (message
->get_major_version(message
) != this->version
)
1260 DBG1(DBG_IKE
, "ignoring %N IKEv%u exchange on %N SA",
1261 exchange_type_names
, message
->get_exchange_type(message
),
1262 message
->get_major_version(message
),
1263 ike_version_names
, this->version
);
1264 /* TODO-IKEv1: fall back to IKEv1 if we receive an IKEv1
1265 * INVALID_MAJOR_VERSION on an IKEv2 SA. */
1268 status
= this->task_manager
->process_message(this->task_manager
, message
);
1269 if (this->flush_auth_cfg
&& this->state
== IKE_ESTABLISHED
)
1271 /* authentication completed */
1272 this->flush_auth_cfg
= FALSE
;
1273 flush_auth_cfgs(this);
1278 METHOD(ike_sa_t
, get_id
, ike_sa_id_t
*,
1279 private_ike_sa_t
*this)
1281 return this->ike_sa_id
;
1284 METHOD(ike_sa_t
, get_version
, ike_version_t
,
1285 private_ike_sa_t
*this)
1287 return this->version
;
1290 METHOD(ike_sa_t
, get_my_id
, identification_t
*,
1291 private_ike_sa_t
*this)
1296 METHOD(ike_sa_t
, set_my_id
, void,
1297 private_ike_sa_t
*this, identification_t
*me
)
1299 DESTROY_IF(this->my_id
);
1303 METHOD(ike_sa_t
, get_other_id
, identification_t
*,
1304 private_ike_sa_t
*this)
1306 return this->other_id
;
1309 METHOD(ike_sa_t
, get_other_eap_id
, identification_t
*,
1310 private_ike_sa_t
*this)
1312 identification_t
*id
= NULL
, *current
;
1313 enumerator_t
*enumerator
;
1316 enumerator
= this->other_auths
->create_enumerator(this->other_auths
);
1317 while (enumerator
->enumerate(enumerator
, &cfg
))
1319 /* prefer EAP-Identity of last round */
1320 current
= cfg
->get(cfg
, AUTH_RULE_EAP_IDENTITY
);
1321 if (!current
|| current
->get_type(current
) == ID_ANY
)
1323 current
= cfg
->get(cfg
, AUTH_RULE_XAUTH_IDENTITY
);
1325 if (!current
|| current
->get_type(current
) == ID_ANY
)
1327 current
= cfg
->get(cfg
, AUTH_RULE_IDENTITY
);
1329 if (current
&& current
->get_type(current
) != ID_ANY
)
1335 enumerator
->destroy(enumerator
);
1340 return this->other_id
;
1343 METHOD(ike_sa_t
, set_other_id
, void,
1344 private_ike_sa_t
*this, identification_t
*other
)
1346 DESTROY_IF(this->other_id
);
1347 this->other_id
= other
;
1350 METHOD(ike_sa_t
, add_child_sa
, void,
1351 private_ike_sa_t
*this, child_sa_t
*child_sa
)
1353 this->child_sas
->insert_last(this->child_sas
, child_sa
);
1356 METHOD(ike_sa_t
, get_child_sa
, child_sa_t
*,
1357 private_ike_sa_t
*this, protocol_id_t protocol
, u_int32_t spi
, bool inbound
)
1359 enumerator_t
*enumerator
;
1360 child_sa_t
*current
, *found
= NULL
;
1362 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
1363 while (enumerator
->enumerate(enumerator
, (void**)¤t
))
1365 if (current
->get_spi(current
, inbound
) == spi
&&
1366 current
->get_protocol(current
) == protocol
)
1371 enumerator
->destroy(enumerator
);
1375 METHOD(ike_sa_t
, get_child_count
, int,
1376 private_ike_sa_t
*this)
1378 return this->child_sas
->get_count(this->child_sas
);
1381 METHOD(ike_sa_t
, create_child_sa_enumerator
, enumerator_t
*,
1382 private_ike_sa_t
*this)
1384 return this->child_sas
->create_enumerator(this->child_sas
);
1387 METHOD(ike_sa_t
, remove_child_sa
, void,
1388 private_ike_sa_t
*this, enumerator_t
*enumerator
)
1390 this->child_sas
->remove_at(this->child_sas
, enumerator
);
1393 METHOD(ike_sa_t
, rekey_child_sa
, status_t
,
1394 private_ike_sa_t
*this, protocol_id_t protocol
, u_int32_t spi
)
1396 if (this->state
== IKE_PASSIVE
)
1398 return INVALID_STATE
;
1400 this->task_manager
->queue_child_rekey(this->task_manager
, protocol
, spi
);
1401 return this->task_manager
->initiate(this->task_manager
);
1404 METHOD(ike_sa_t
, delete_child_sa
, status_t
,
1405 private_ike_sa_t
*this, protocol_id_t protocol
, u_int32_t spi
, bool expired
)
1407 if (this->state
== IKE_PASSIVE
)
1409 return INVALID_STATE
;
1411 this->task_manager
->queue_child_delete(this->task_manager
,
1412 protocol
, spi
, expired
);
1413 return this->task_manager
->initiate(this->task_manager
);
1416 METHOD(ike_sa_t
, destroy_child_sa
, status_t
,
1417 private_ike_sa_t
*this, protocol_id_t protocol
, u_int32_t spi
)
1419 enumerator_t
*enumerator
;
1420 child_sa_t
*child_sa
;
1421 status_t status
= NOT_FOUND
;
1423 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
1424 while (enumerator
->enumerate(enumerator
, (void**)&child_sa
))
1426 if (child_sa
->get_protocol(child_sa
) == protocol
&&
1427 child_sa
->get_spi(child_sa
, TRUE
) == spi
)
1429 this->child_sas
->remove_at(this->child_sas
, enumerator
);
1430 child_sa
->destroy(child_sa
);
1435 enumerator
->destroy(enumerator
);
1439 METHOD(ike_sa_t
, delete_
, status_t
,
1440 private_ike_sa_t
*this)
1442 switch (this->state
)
1445 if (this->version
== IKEV1
)
1446 { /* SA has been reauthenticated, delete */
1447 charon
->bus
->ike_updown(charon
->bus
, &this->public, FALSE
);
1451 case IKE_ESTABLISHED
:
1452 if (time_monotonic(NULL
) >= this->stats
[STAT_DELETE
])
1453 { /* IKE_SA hard lifetime hit */
1454 charon
->bus
->alert(charon
->bus
, ALERT_IKE_SA_EXPIRED
);
1456 this->task_manager
->queue_ike_delete(this->task_manager
);
1457 return this->task_manager
->initiate(this->task_manager
);
1459 DBG1(DBG_IKE
, "deleting unestablished IKE_SA");
1464 DBG1(DBG_IKE
, "destroying IKE_SA in state %N "
1465 "without notification", ike_sa_state_names
, this->state
);
1466 charon
->bus
->ike_updown(charon
->bus
, &this->public, FALSE
);
1472 METHOD(ike_sa_t
, rekey
, status_t
,
1473 private_ike_sa_t
*this)
1475 if (this->state
== IKE_PASSIVE
)
1477 return INVALID_STATE
;
1479 this->task_manager
->queue_ike_rekey(this->task_manager
);
1480 return this->task_manager
->initiate(this->task_manager
);
1483 METHOD(ike_sa_t
, reauth
, status_t
,
1484 private_ike_sa_t
*this)
1486 if (this->state
== IKE_PASSIVE
)
1488 return INVALID_STATE
;
1490 /* we can't reauthenticate as responder when we use EAP or virtual IPs.
1491 * If the peer does not support RFC4478, there is no way to keep the
1493 if (!has_condition(this, COND_ORIGINAL_INITIATOR
))
1495 DBG1(DBG_IKE
, "initiator did not reauthenticate as requested");
1496 if (this->other_vips
->get_count(this->other_vips
) != 0 ||
1497 has_condition(this, COND_XAUTH_AUTHENTICATED
) ||
1498 has_condition(this, COND_EAP_AUTHENTICATED
)
1500 /* as mediation server we too cannot reauth the IKE_SA */
1501 || this->is_mediation_server
1507 del
= this->stats
[STAT_DELETE
];
1508 now
= time_monotonic(NULL
);
1509 DBG1(DBG_IKE
, "IKE_SA %s[%d] will timeout in %V",
1510 get_name(this), this->unique_id
, &now
, &del
);
1515 DBG0(DBG_IKE
, "reauthenticating IKE_SA %s[%d] actively",
1516 get_name(this), this->unique_id
);
1521 DBG0(DBG_IKE
, "reauthenticating IKE_SA %s[%d]",
1522 get_name(this), this->unique_id
);
1524 set_condition(this, COND_REAUTHENTICATING
, TRUE
);
1525 this->task_manager
->queue_ike_reauth(this->task_manager
);
1526 return this->task_manager
->initiate(this->task_manager
);
1529 METHOD(ike_sa_t
, reestablish
, status_t
,
1530 private_ike_sa_t
*this)
1535 enumerator_t
*enumerator
;
1536 child_sa_t
*child_sa
;
1537 child_cfg_t
*child_cfg
;
1538 bool restart
= FALSE
;
1539 status_t status
= FAILED
;
1541 if (has_condition(this, COND_REAUTHENTICATING
))
1542 { /* only reauthenticate if we have children */
1543 if (this->child_sas
->get_count(this->child_sas
) == 0
1545 /* allow reauth of mediation connections without CHILD_SAs */
1546 && !this->peer_cfg
->is_mediation(this->peer_cfg
)
1550 DBG1(DBG_IKE
, "unable to reauthenticate IKE_SA, no CHILD_SA "
1559 { /* check if we have children to keep up at all */
1560 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
1561 while (enumerator
->enumerate(enumerator
, (void**)&child_sa
))
1563 if (this->state
== IKE_DELETING
)
1565 action
= child_sa
->get_close_action(child_sa
);
1569 action
= child_sa
->get_dpd_action(child_sa
);
1573 case ACTION_RESTART
:
1577 charon
->traps
->install(charon
->traps
, this->peer_cfg
,
1578 child_sa
->get_config(child_sa
),
1579 child_sa
->get_reqid(child_sa
));
1585 enumerator
->destroy(enumerator
);
1587 /* mediation connections have no children, keep them up anyway */
1588 if (this->peer_cfg
->is_mediation(this->peer_cfg
))
1599 /* check if we are able to reestablish this IKE_SA */
1600 if (!has_condition(this, COND_ORIGINAL_INITIATOR
) &&
1601 (this->other_vips
->get_count(this->other_vips
) != 0 ||
1602 has_condition(this, COND_EAP_AUTHENTICATED
)
1604 || this->is_mediation_server
1608 DBG1(DBG_IKE
, "unable to reestablish IKE_SA due to asymmetric setup");
1612 new = charon
->ike_sa_manager
->checkout_new(charon
->ike_sa_manager
,
1613 this->version
, TRUE
);
1618 new->set_peer_cfg(new, this->peer_cfg
);
1619 host
= this->other_host
;
1620 new->set_other_host(new, host
->clone(host
));
1621 host
= this->my_host
;
1622 new->set_my_host(new, host
->clone(host
));
1623 /* if we already have a virtual IP, we reuse it */
1624 enumerator
= this->my_vips
->create_enumerator(this->my_vips
);
1625 while (enumerator
->enumerate(enumerator
, &host
))
1627 new->add_virtual_ip(new, TRUE
, host
);
1629 enumerator
->destroy(enumerator
);
1632 if (this->peer_cfg
->is_mediation(this->peer_cfg
))
1634 status
= new->initiate(new, NULL
, 0, NULL
, NULL
);
1639 enumerator
= this->child_sas
->create_enumerator(this->child_sas
);
1640 while (enumerator
->enumerate(enumerator
, (void**)&child_sa
))
1642 if (has_condition(this, COND_REAUTHENTICATING
))
1644 switch (child_sa
->get_state(child_sa
))
1647 { /* move routed child directly */
1648 this->child_sas
->remove_at(this->child_sas
, enumerator
);
1649 new->add_child_sa(new, child_sa
);
1650 action
= ACTION_NONE
;
1654 { /* initiate/queue all other CHILD_SAs */
1655 action
= ACTION_RESTART
;
1661 { /* only restart CHILD_SAs that are configured accordingly */
1662 if (this->state
== IKE_DELETING
)
1664 action
= child_sa
->get_close_action(child_sa
);
1668 action
= child_sa
->get_dpd_action(child_sa
);
1673 case ACTION_RESTART
:
1674 child_cfg
= child_sa
->get_config(child_sa
);
1675 DBG1(DBG_IKE
, "restarting CHILD_SA %s",
1676 child_cfg
->get_name(child_cfg
));
1677 child_cfg
->get_ref(child_cfg
);
1678 status
= new->initiate(new, child_cfg
,
1679 child_sa
->get_reqid(child_sa
), NULL
, NULL
);
1684 if (status
== DESTROY_ME
)
1689 enumerator
->destroy(enumerator
);
1692 if (status
== DESTROY_ME
)
1694 charon
->ike_sa_manager
->checkin_and_destroy(charon
->ike_sa_manager
, new);
1699 charon
->bus
->ike_reestablish(charon
->bus
, &this->public, new);
1700 charon
->ike_sa_manager
->checkin(charon
->ike_sa_manager
, new);
1703 charon
->bus
->set_sa(charon
->bus
, &this->public);
1707 METHOD(ike_sa_t
, retransmit
, status_t
,
1708 private_ike_sa_t
*this, u_int32_t message_id
)
1710 if (this->state
== IKE_PASSIVE
)
1712 return INVALID_STATE
;
1714 this->stats
[STAT_OUTBOUND
] = time_monotonic(NULL
);
1715 if (this->task_manager
->retransmit(this->task_manager
, message_id
) != SUCCESS
)
1717 /* send a proper signal to brief interested bus listeners */
1718 switch (this->state
)
1720 case IKE_CONNECTING
:
1722 /* retry IKE_SA_INIT/Main Mode if we have multiple keyingtries */
1723 u_int32_t tries
= this->peer_cfg
->get_keyingtries(this->peer_cfg
);
1724 charon
->bus
->alert(charon
->bus
, ALERT_PEER_INIT_UNREACHABLE
,
1727 if (tries
== 0 || tries
> this->keyingtry
)
1729 DBG1(DBG_IKE
, "peer not responding, trying again (%d/%d)",
1730 this->keyingtry
+ 1, tries
);
1732 resolve_hosts(this);
1733 this->task_manager
->queue_ike(this->task_manager
);
1734 return this->task_manager
->initiate(this->task_manager
);
1736 DBG1(DBG_IKE
, "establishing IKE_SA failed, peer not responding");
1740 DBG1(DBG_IKE
, "proper IKE_SA delete failed, peer not responding");
1741 if (has_condition(this, COND_REAUTHENTICATING
))
1743 DBG1(DBG_IKE
, "delete during reauthentication failed, "
1744 "trying to reestablish IKE_SA anyway");
1749 DBG1(DBG_IKE
, "rekeying IKE_SA failed, peer not responding");
1755 if (this->state
!= IKE_CONNECTING
)
1757 charon
->bus
->ike_updown(charon
->bus
, &this->public, FALSE
);
1764 METHOD(ike_sa_t
, set_auth_lifetime
, status_t
,
1765 private_ike_sa_t
*this, u_int32_t lifetime
)
1767 u_int32_t diff
, hard
, soft
, now
;
1770 diff
= this->peer_cfg
->get_over_time(this->peer_cfg
);
1771 now
= time_monotonic(NULL
);
1772 hard
= now
+ lifetime
;
1775 /* check if we have to send an AUTH_LIFETIME to enforce the new lifetime.
1776 * We send the notify in IKE_AUTH if not yet ESTABLISHED. */
1777 send_update
= this->state
== IKE_ESTABLISHED
&& this->version
== IKEV2
&&
1778 !has_condition(this, COND_ORIGINAL_INITIATOR
) &&
1779 (this->other_vips
->get_count(this->other_vips
) != 0 ||
1780 has_condition(this, COND_EAP_AUTHENTICATED
));
1782 if (lifetime
< diff
)
1784 this->stats
[STAT_REAUTH
] = now
;
1788 DBG1(DBG_IKE
, "received AUTH_LIFETIME of %ds, "
1789 "starting reauthentication", lifetime
);
1790 lib
->processor
->queue_job(lib
->processor
,
1791 (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, TRUE
));
1794 else if (this->stats
[STAT_REAUTH
] == 0 ||
1795 this->stats
[STAT_REAUTH
] > soft
)
1797 this->stats
[STAT_REAUTH
] = soft
;
1800 DBG1(DBG_IKE
, "received AUTH_LIFETIME of %ds, scheduling "
1801 "reauthentication in %ds", lifetime
, lifetime
- diff
);
1802 lib
->scheduler
->schedule_job(lib
->scheduler
,
1803 (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, TRUE
),
1809 DBG1(DBG_IKE
, "received AUTH_LIFETIME of %ds, "
1810 "reauthentication already scheduled in %ds", lifetime
,
1811 this->stats
[STAT_REAUTH
] - time_monotonic(NULL
));
1812 send_update
= FALSE
;
1814 /* give at least some seconds to reauthenticate */
1815 this->stats
[STAT_DELETE
] = max(hard
, now
+ 10);
1820 ike_auth_lifetime_t
*task
;
1822 task
= ike_auth_lifetime_create(&this->public, TRUE
);
1823 this->task_manager
->queue_task(this->task_manager
, &task
->task
);
1824 return this->task_manager
->initiate(this->task_manager
);
1831 * Check if the current combination of source and destination address is still
1834 static bool is_current_path_valid(private_ike_sa_t
*this)
1838 src
= hydra
->kernel_interface
->get_source_addr(hydra
->kernel_interface
,
1839 this->other_host
, this->my_host
);
1842 if (src
->ip_equals(src
, this->my_host
))
1852 * Check if we have any path avialable for this IKE SA.
1854 static bool is_any_path_valid(private_ike_sa_t
*this)
1857 enumerator_t
*enumerator
;
1858 host_t
*src
= NULL
, *addr
;
1860 DBG1(DBG_IKE
, "old path is not available anymore, try to find another");
1861 enumerator
= create_peer_address_enumerator(this);
1862 while (enumerator
->enumerate(enumerator
, &addr
))
1864 DBG1(DBG_IKE
, "looking for a route to %H ...", addr
);
1865 src
= hydra
->kernel_interface
->get_source_addr(
1866 hydra
->kernel_interface
, addr
, NULL
);
1872 enumerator
->destroy(enumerator
);
1881 METHOD(ike_sa_t
, roam
, status_t
,
1882 private_ike_sa_t
*this, bool address
)
1884 switch (this->state
)
1888 case IKE_DESTROYING
:
1895 /* keep existing path if possible */
1896 if (is_current_path_valid(this))
1898 DBG2(DBG_IKE
, "keeping connection path %H - %H",
1899 this->my_host
, this->other_host
);
1900 set_condition(this, COND_STALE
, FALSE
);
1902 if (supports_extension(this, EXT_MOBIKE
) && address
)
1903 { /* if any addresses changed, send an updated list */
1904 DBG1(DBG_IKE
, "sending address list update using MOBIKE");
1905 this->task_manager
->queue_mobike(this->task_manager
, FALSE
, TRUE
);
1906 return this->task_manager
->initiate(this->task_manager
);
1911 if (!is_any_path_valid(this))
1913 DBG1(DBG_IKE
, "no route found to reach %H, MOBIKE update deferred",
1915 set_condition(this, COND_STALE
, TRUE
);
1918 set_condition(this, COND_STALE
, FALSE
);
1920 /* update addresses with mobike, if supported ... */
1921 if (supports_extension(this, EXT_MOBIKE
))
1923 if (!has_condition(this, COND_ORIGINAL_INITIATOR
))
1924 { /* responder updates the peer about changed address config */
1925 DBG1(DBG_IKE
, "sending address list update using MOBIKE, "
1926 "implicitly requesting an address change");
1931 DBG1(DBG_IKE
, "requesting address change using MOBIKE");
1933 this->task_manager
->queue_mobike(this->task_manager
, TRUE
, address
);
1934 return this->task_manager
->initiate(this->task_manager
);
1937 /* ... reauth if not */
1938 if (!has_condition(this, COND_ORIGINAL_INITIATOR
))
1939 { /* responder does not reauthenticate */
1940 set_condition(this, COND_STALE
, TRUE
);
1943 DBG1(DBG_IKE
, "reauthenticating IKE_SA due to address change");
1944 /* since our previous path is not valid anymore, try and find a new one */
1945 resolve_hosts(this);
1946 return reauth(this);
1949 METHOD(ike_sa_t
, add_configuration_attribute
, void,
1950 private_ike_sa_t
*this, attribute_handler_t
*handler
,
1951 configuration_attribute_type_t type
, chunk_t data
)
1953 attribute_entry_t
*entry
= malloc_thing(attribute_entry_t
);
1955 entry
->handler
= handler
;
1957 entry
->data
= chunk_clone(data
);
1959 this->attributes
->insert_last(this->attributes
, entry
);
1962 METHOD(ike_sa_t
, create_task_enumerator
, enumerator_t
*,
1963 private_ike_sa_t
*this, task_queue_t queue
)
1965 return this->task_manager
->create_task_enumerator(this->task_manager
, queue
);
1968 METHOD(ike_sa_t
, flush_queue
, void,
1969 private_ike_sa_t
*this, task_queue_t queue
)
1971 this->task_manager
->flush_queue(this->task_manager
, queue
);
1974 METHOD(ike_sa_t
, queue_task
, void,
1975 private_ike_sa_t
*this, task_t
*task
)
1977 this->task_manager
->queue_task(this->task_manager
, task
);
1980 METHOD(ike_sa_t
, inherit
, void,
1981 private_ike_sa_t
*this, ike_sa_t
*other_public
)
1983 private_ike_sa_t
*other
= (private_ike_sa_t
*)other_public
;
1984 child_sa_t
*child_sa
;
1985 attribute_entry_t
*entry
;
1986 enumerator_t
*enumerator
;
1990 /* apply hosts and ids */
1991 this->my_host
->destroy(this->my_host
);
1992 this->other_host
->destroy(this->other_host
);
1993 this->my_id
->destroy(this->my_id
);
1994 this->other_id
->destroy(this->other_id
);
1995 this->my_host
= other
->my_host
->clone(other
->my_host
);
1996 this->other_host
= other
->other_host
->clone(other
->other_host
);
1997 this->my_id
= other
->my_id
->clone(other
->my_id
);
1998 this->other_id
= other
->other_id
->clone(other
->other_id
);
2000 /* apply assigned virtual IPs... */
2001 while (other
->my_vips
->remove_last(other
->my_vips
, (void**)&vip
) == SUCCESS
)
2003 this->my_vips
->insert_first(this->my_vips
, vip
);
2005 while (other
->other_vips
->remove_last(other
->other_vips
,
2006 (void**)&vip
) == SUCCESS
)
2008 this->other_vips
->insert_first(this->other_vips
, vip
);
2011 /* authentication information */
2012 enumerator
= other
->my_auths
->create_enumerator(other
->my_auths
);
2013 while (enumerator
->enumerate(enumerator
, &cfg
))
2015 this->my_auths
->insert_last(this->my_auths
, cfg
->clone(cfg
));
2017 enumerator
->destroy(enumerator
);
2018 enumerator
= other
->other_auths
->create_enumerator(other
->other_auths
);
2019 while (enumerator
->enumerate(enumerator
, &cfg
))
2021 this->other_auths
->insert_last(this->other_auths
, cfg
->clone(cfg
));
2023 enumerator
->destroy(enumerator
);
2025 /* ... and configuration attributes */
2026 while (other
->attributes
->remove_last(other
->attributes
,
2027 (void**)&entry
) == SUCCESS
)
2029 this->attributes
->insert_first(this->attributes
, entry
);
2032 /* inherit all conditions */
2033 this->conditions
= other
->conditions
;
2034 if (this->conditions
& COND_NAT_HERE
)
2036 send_keepalive(this);
2040 if (other
->is_mediation_server
)
2042 act_as_mediation_server(this);
2044 else if (other
->server_reflexive_host
)
2046 this->server_reflexive_host
= other
->server_reflexive_host
->clone(
2047 other
->server_reflexive_host
);
2051 /* adopt all children */
2052 while (other
->child_sas
->remove_last(other
->child_sas
,
2053 (void**)&child_sa
) == SUCCESS
)
2055 this->child_sas
->insert_first(this->child_sas
, (void*)child_sa
);
2058 /* move pending tasks to the new IKE_SA */
2059 this->task_manager
->adopt_tasks(this->task_manager
, other
->task_manager
);
2061 /* reauthentication timeout survives a rekeying */
2062 if (other
->stats
[STAT_REAUTH
])
2064 time_t reauth
, delete, now
= time_monotonic(NULL
);
2066 this->stats
[STAT_REAUTH
] = other
->stats
[STAT_REAUTH
];
2067 reauth
= this->stats
[STAT_REAUTH
] - now
;
2068 delete = reauth
+ this->peer_cfg
->get_over_time(this->peer_cfg
);
2069 this->stats
[STAT_DELETE
] = this->stats
[STAT_REAUTH
] + delete;
2070 DBG1(DBG_IKE
, "rescheduling reauthentication in %ds after rekeying, "
2071 "lifetime reduced to %ds", reauth
, delete);
2072 lib
->scheduler
->schedule_job(lib
->scheduler
,
2073 (job_t
*)rekey_ike_sa_job_create(this->ike_sa_id
, TRUE
), reauth
);
2074 lib
->scheduler
->schedule_job(lib
->scheduler
,
2075 (job_t
*)delete_ike_sa_job_create(this->ike_sa_id
, TRUE
), delete);
2079 METHOD(ike_sa_t
, destroy
, void,
2080 private_ike_sa_t
*this)
2082 attribute_entry_t
*entry
;
2085 charon
->bus
->set_sa(charon
->bus
, &this->public);
2087 set_state(this, IKE_DESTROYING
);
2088 DESTROY_IF(this->task_manager
);
2090 /* remove attributes first, as we pass the IKE_SA to the handler */
2091 while (this->attributes
->remove_last(this->attributes
,
2092 (void**)&entry
) == SUCCESS
)
2094 hydra
->attributes
->release(hydra
->attributes
, entry
->handler
,
2095 this->other_id
, entry
->type
, entry
->data
);
2096 free(entry
->data
.ptr
);
2099 while (this->my_vips
->remove_last(this->my_vips
, (void**)&vip
) == SUCCESS
)
2101 hydra
->kernel_interface
->del_ip(hydra
->kernel_interface
, vip
, -1, TRUE
);
2104 if (this->other_vips
->get_count(this->other_vips
))
2106 charon
->bus
->assign_vips(charon
->bus
, &this->public, FALSE
);
2108 while (this->other_vips
->remove_last(this->other_vips
,
2109 (void**)&vip
) == SUCCESS
)
2113 linked_list_t
*pools
;
2114 identification_t
*id
;
2116 id
= get_other_eap_id(this);
2117 pools
= linked_list_create_from_enumerator(
2118 this->peer_cfg
->create_pool_enumerator(this->peer_cfg
));
2119 hydra
->attributes
->release_address(hydra
->attributes
, pools
, vip
, id
);
2120 pools
->destroy(pools
);
2125 /* unset SA after here to avoid usage by the listeners */
2126 charon
->bus
->set_sa(charon
->bus
, NULL
);
2128 this->child_sas
->destroy_offset(this->child_sas
, offsetof(child_sa_t
, destroy
));
2129 DESTROY_IF(this->keymat
);
2130 this->attributes
->destroy(this->attributes
);
2131 this->my_vips
->destroy(this->my_vips
);
2132 this->other_vips
->destroy(this->other_vips
);
2133 this->peer_addresses
->destroy_offset(this->peer_addresses
,
2134 offsetof(host_t
, destroy
));
2136 if (this->is_mediation_server
)
2138 charon
->mediation_manager
->remove(charon
->mediation_manager
,
2141 DESTROY_IF(this->server_reflexive_host
);
2142 chunk_free(&this->connect_id
);
2144 free(this->nat_detection_dest
.ptr
);
2146 DESTROY_IF(this->my_host
);
2147 DESTROY_IF(this->other_host
);
2148 DESTROY_IF(this->my_id
);
2149 DESTROY_IF(this->other_id
);
2150 DESTROY_IF(this->local_host
);
2151 DESTROY_IF(this->remote_host
);
2153 DESTROY_IF(this->ike_cfg
);
2154 DESTROY_IF(this->peer_cfg
);
2155 DESTROY_IF(this->proposal
);
2156 this->my_auth
->destroy(this->my_auth
);
2157 this->other_auth
->destroy(this->other_auth
);
2158 this->my_auths
->destroy_offset(this->my_auths
,
2159 offsetof(auth_cfg_t
, destroy
));
2160 this->other_auths
->destroy_offset(this->other_auths
,
2161 offsetof(auth_cfg_t
, destroy
));
2163 this->ike_sa_id
->destroy(this->ike_sa_id
);
2168 * Described in header.
2170 ike_sa_t
* ike_sa_create(ike_sa_id_t
*ike_sa_id
, bool initiator
,
2171 ike_version_t version
)
2173 private_ike_sa_t
*this;
2174 static refcount_t unique_id
= 0;
2176 if (version
== IKE_ANY
)
2177 { /* prefer IKEv2 if protocol not specified */
2187 .get_version
= _get_version
,
2188 .get_state
= _get_state
,
2189 .set_state
= _set_state
,
2190 .get_name
= _get_name
,
2191 .get_statistic
= _get_statistic
,
2192 .set_statistic
= _set_statistic
,
2193 .process_message
= _process_message
,
2194 .initiate
= _initiate
,
2195 .retry_initiate
= _retry_initiate
,
2196 .get_ike_cfg
= _get_ike_cfg
,
2197 .set_ike_cfg
= _set_ike_cfg
,
2198 .get_peer_cfg
= _get_peer_cfg
,
2199 .set_peer_cfg
= _set_peer_cfg
,
2200 .get_auth_cfg
= _get_auth_cfg
,
2201 .create_auth_cfg_enumerator
= _create_auth_cfg_enumerator
,
2202 .add_auth_cfg
= _add_auth_cfg
,
2203 .get_proposal
= _get_proposal
,
2204 .set_proposal
= _set_proposal
,
2206 .get_my_host
= _get_my_host
,
2207 .set_my_host
= _set_my_host
,
2208 .get_other_host
= _get_other_host
,
2209 .set_other_host
= _set_other_host
,
2210 .set_message_id
= _set_message_id
,
2211 .float_ports
= _float_ports
,
2212 .update_hosts
= _update_hosts
,
2213 .get_my_id
= _get_my_id
,
2214 .set_my_id
= _set_my_id
,
2215 .get_other_id
= _get_other_id
,
2216 .set_other_id
= _set_other_id
,
2217 .get_other_eap_id
= _get_other_eap_id
,
2218 .enable_extension
= _enable_extension
,
2219 .supports_extension
= _supports_extension
,
2220 .set_condition
= _set_condition
,
2221 .has_condition
= _has_condition
,
2222 .set_pending_updates
= _set_pending_updates
,
2223 .get_pending_updates
= _get_pending_updates
,
2224 .create_peer_address_enumerator
= _create_peer_address_enumerator
,
2225 .add_peer_address
= _add_peer_address
,
2226 .clear_peer_addresses
= _clear_peer_addresses
,
2227 .has_mapping_changed
= _has_mapping_changed
,
2228 .retransmit
= _retransmit
,
2230 .destroy
= _destroy
,
2231 .send_dpd
= _send_dpd
,
2232 .send_keepalive
= _send_keepalive
,
2233 .get_keymat
= _get_keymat
,
2234 .add_child_sa
= _add_child_sa
,
2235 .get_child_sa
= _get_child_sa
,
2236 .get_child_count
= _get_child_count
,
2237 .create_child_sa_enumerator
= _create_child_sa_enumerator
,
2238 .remove_child_sa
= _remove_child_sa
,
2239 .rekey_child_sa
= _rekey_child_sa
,
2240 .delete_child_sa
= _delete_child_sa
,
2241 .destroy_child_sa
= _destroy_child_sa
,
2244 .reestablish
= _reestablish
,
2245 .set_auth_lifetime
= _set_auth_lifetime
,
2247 .inherit
= _inherit
,
2248 .generate_message
= _generate_message
,
2250 .get_unique_id
= _get_unique_id
,
2251 .add_virtual_ip
= _add_virtual_ip
,
2252 .clear_virtual_ips
= _clear_virtual_ips
,
2253 .create_virtual_ip_enumerator
= _create_virtual_ip_enumerator
,
2254 .add_configuration_attribute
= _add_configuration_attribute
,
2255 .set_kmaddress
= _set_kmaddress
,
2256 .create_task_enumerator
= _create_task_enumerator
,
2257 .flush_queue
= _flush_queue
,
2258 .queue_task
= _queue_task
,
2260 .act_as_mediation_server
= _act_as_mediation_server
,
2261 .get_server_reflexive_host
= _get_server_reflexive_host
,
2262 .set_server_reflexive_host
= _set_server_reflexive_host
,
2263 .get_connect_id
= _get_connect_id
,
2264 .initiate_mediation
= _initiate_mediation
,
2265 .initiate_mediated
= _initiate_mediated
,
2267 .callback
= _callback
,
2268 .respond
= _respond
,
2271 .ike_sa_id
= ike_sa_id
->clone(ike_sa_id
),
2273 .child_sas
= linked_list_create(),
2274 .my_host
= host_create_any(AF_INET
),
2275 .other_host
= host_create_any(AF_INET
),
2276 .my_id
= identification_create_from_encoding(ID_ANY
, chunk_empty
),
2277 .other_id
= identification_create_from_encoding(ID_ANY
, chunk_empty
),
2278 .keymat
= keymat_create(version
, initiator
),
2279 .state
= IKE_CREATED
,
2280 .stats
[STAT_INBOUND
] = time_monotonic(NULL
),
2281 .stats
[STAT_OUTBOUND
] = time_monotonic(NULL
),
2282 .my_auth
= auth_cfg_create(),
2283 .other_auth
= auth_cfg_create(),
2284 .my_auths
= linked_list_create(),
2285 .other_auths
= linked_list_create(),
2286 .unique_id
= ref_get(&unique_id
),
2287 .peer_addresses
= linked_list_create(),
2288 .my_vips
= linked_list_create(),
2289 .other_vips
= linked_list_create(),
2290 .attributes
= linked_list_create(),
2291 .keepalive_interval
= lib
->settings
->get_time(lib
->settings
,
2292 "%s.keep_alive", KEEPALIVE_INTERVAL
, charon
->name
),
2293 .retry_initiate_interval
= lib
->settings
->get_time(lib
->settings
,
2294 "%s.retry_initiate_interval", 0, charon
->name
),
2295 .flush_auth_cfg
= lib
->settings
->get_bool(lib
->settings
,
2296 "%s.flush_auth_cfg", FALSE
, charon
->name
),
2299 if (version
== IKEV2
)
2300 { /* always supported with IKEv2 */
2301 enable_extension(this, EXT_DPD
);
2304 this->task_manager
= task_manager_create(&this->public);
2305 this->my_host
->set_port(this->my_host
,
2306 charon
->socket
->get_port(charon
->socket
, FALSE
));
2308 if (!this->task_manager
|| !this->keymat
)
2310 DBG1(DBG_IKE
, "IKE version %d not supported", this->version
);
2314 return &this->public;