2 * Copyright (C) 2008 Andreas Steffen
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
18 #include "migrate_job.h"
22 #include <config/child_cfg.h>
25 typedef struct private_migrate_job_t private_migrate_job_t
;
28 * Private data of a migrate_job_t object.
30 struct private_migrate_job_t
{
32 * Public migrate_job_t interface.
37 * reqid of the CHILD_SA if it already exists
42 * source traffic selector
44 traffic_selector_t
*src_ts
;
47 * destination traffic selector
49 traffic_selector_t
*dst_ts
;
52 * local host address to be used for IKE
57 * remote host address to be used for IKE
63 * Implementation of job_t.destroy.
65 static void destroy(private_migrate_job_t
*this)
67 DESTROY_IF(this->src_ts
);
68 DESTROY_IF(this->dst_ts
);
69 DESTROY_IF(this->local
);
70 DESTROY_IF(this->remote
);
75 * Implementation of job_t.execute.
77 static void execute(private_migrate_job_t
*this)
79 ike_sa_t
*ike_sa
= NULL
;
83 ike_sa
= charon
->ike_sa_manager
->checkout_by_id(charon
->ike_sa_manager
,
88 DBG2(DBG_JOB
, "found CHILD_SA with reqid {%d}", this->reqid
);
89 ike_sa
->set_kmaddress(ike_sa
, this->local
, this->remote
);
90 charon
->ike_sa_manager
->checkin(charon
->ike_sa_manager
, ike_sa
);
94 DBG1(DBG_JOB
, "no CHILD_SA found with reqid {%d}", this->reqid
);
100 * Described in header
102 migrate_job_t
*migrate_job_create(u_int32_t reqid
,
103 traffic_selector_t
*src_ts
,
104 traffic_selector_t
*dst_ts
,
106 host_t
*local
, host_t
*remote
)
108 private_migrate_job_t
*this = malloc_thing(private_migrate_job_t
);
110 /* interface functions */
111 this->public.job_interface
.execute
= (void (*) (job_t
*)) execute
;
112 this->public.job_interface
.destroy
= (void (*)(job_t
*)) destroy
;
114 /* private variables */
116 this->src_ts
= (dir
== POLICY_OUT
) ? src_ts
: dst_ts
;
117 this->dst_ts
= (dir
== POLICY_OUT
) ? dst_ts
: src_ts
;
119 this->remote
= remote
;
121 return &this->public;