2 * Copyright (C) 2010 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "inactivity_job.h"
21 typedef struct private_inactivity_job_t private_inactivity_job_t
;
24 * Private data of an inactivity_job_t object.
26 struct private_inactivity_job_t
{
29 * Public inactivity_job_t interface.
31 inactivity_job_t
public;
34 * Reqid of CHILD_SA to check
44 * Close IKE_SA if last remaining CHILD inactive?
49 METHOD(job_t
, destroy
, void,
50 private_inactivity_job_t
*this)
55 METHOD(job_t
, execute
, void,
56 private_inactivity_job_t
*this)
59 bool rescheduled
= FALSE
;
61 ike_sa
= charon
->ike_sa_manager
->checkout_by_id(charon
->ike_sa_manager
,
68 protocol_id_t proto
= 0;
70 status_t status
= SUCCESS
;
72 iterator
= ike_sa
->create_child_sa_iterator(ike_sa
);
73 while (iterator
->iterate(iterator
, (void**)&child_sa
))
75 if (child_sa
->get_reqid(child_sa
) == this->reqid
)
79 child_sa
->get_usestats(child_sa
, TRUE
, &in
, NULL
);
80 child_sa
->get_usestats(child_sa
, FALSE
, &out
, NULL
);
82 diff
= time_monotonic(NULL
) - max(in
, out
);
84 if (diff
>= this->timeout
)
86 delete = child_sa
->get_spi(child_sa
, TRUE
);
87 proto
= child_sa
->get_protocol(child_sa
);
91 hydra
->scheduler
->schedule_job(hydra
->scheduler
,
92 &this->public.job_interface
, this->timeout
- diff
);
98 iterator
->destroy(iterator
);
102 if (children
== 1 && this->close_ike
)
104 DBG1(DBG_JOB
, "deleting IKE_SA after %d seconds "
105 "of CHILD_SA inactivity", this->timeout
);
106 status
= ike_sa
->delete(ike_sa
);
110 DBG1(DBG_JOB
, "deleting CHILD_SA after %d seconds "
111 "of inactivity", this->timeout
);
112 status
= ike_sa
->delete_child_sa(ike_sa
, proto
, delete);
115 if (status
== DESTROY_ME
)
117 charon
->ike_sa_manager
->checkin_and_destroy(charon
->ike_sa_manager
,
122 charon
->ike_sa_manager
->checkin(charon
->ike_sa_manager
, ike_sa
);
134 inactivity_job_t
*inactivity_job_create(u_int32_t reqid
, u_int32_t timeout
,
137 private_inactivity_job_t
*this;
148 .close_ike
= close_ike
,
151 return &this->public;