migrate_job() finds a matching child_cfg

This commit is contained in:
Andreas Steffen
2008-11-03 02:05:41 +00:00
parent bd354bee5f
commit ef6d339c09
7 changed files with 310 additions and 23 deletions
+157
View File
@@ -0,0 +1,157 @@
/*
* Copyright (C) 2006 Martin Willi
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* $Id: acquire_job.c 4535 2008-10-31 01:43:23Z andreas $
*/
#include "migrate_job.h"
#include <daemon.h>
#include <config/child_cfg.h>
typedef struct private_migrate_job_t private_migrate_job_t;
/**
* Private data of a migrate_job_t object.
*/
struct private_migrate_job_t {
/**
* Public migrate_job_t interface.
*/
migrate_job_t public;
/**
* reqid of the CHILD_SA if it already exists
*/
u_int32_t reqid;
/**
* source traffic selector
*/
traffic_selector_t *src_ts;
/**
* destination traffic selector
*/
traffic_selector_t *dst_ts;
/**
* local host address to be used
*/
host_t *local;
};
/**
* Implementation of job_t.destroy.
*/
static void destroy(private_migrate_job_t *this)
{
DESTROY_IF(this->src_ts);
DESTROY_IF(this->dst_ts);
DESTROY_IF(this->local);
free(this);
}
/**
* Implementation of job_t.execute.
*/
static void execute(private_migrate_job_t *this)
{
ike_sa_t *ike_sa = NULL;
if (this->reqid)
{
ike_sa = charon->ike_sa_manager->checkout_by_id(charon->ike_sa_manager,
this->reqid, TRUE);
}
if (ike_sa == NULL)
{
enumerator_t *enumerator, *children;
peer_cfg_t *peer_cfg;
child_cfg_t *found_cfg = NULL;
enumerator = charon->backends->create_peer_cfg_enumerator(charon->backends);
while (enumerator->enumerate(enumerator, (void**)&peer_cfg))
{
ike_cfg_t *ike_cfg;
child_cfg_t *child_cfg;
if (peer_cfg->get_ike_version(peer_cfg) != 2)
{
continue;
}
ike_cfg = peer_cfg->get_ike_cfg(peer_cfg);
children = peer_cfg->create_child_cfg_enumerator(peer_cfg);
while (children->enumerate(children, &child_cfg))
{
if (child_cfg->equal_traffic_selectors(child_cfg, TRUE, this->src_ts) &&
child_cfg->equal_traffic_selectors(child_cfg, FALSE, this->dst_ts))
{
found_cfg = child_cfg;
break;
}
}
children->destroy(children);
if (found_cfg)
{
break;
}
}
enumerator->destroy(enumerator);
if (found_cfg)
{
DBG1(DBG_JOB, "found matching child_cfg '%s'",
found_cfg->get_name(found_cfg));
}
else
{
DBG1(DBG_JOB, "no matching child_cfg found");
}
}
else
{
DBG1(DBG_JOB, "migrate job found CHILD_SA with reqid {%d}", this->reqid);
/* set my_host to local */
charon->ike_sa_manager->checkin(charon->ike_sa_manager, ike_sa);
}
destroy(this);
}
/*
* Described in header
*/
migrate_job_t *migrate_job_create(u_int32_t reqid,
traffic_selector_t *src_ts,
traffic_selector_t *dst_ts,
policy_dir_t dir,
host_t *local)
{
private_migrate_job_t *this = malloc_thing(private_migrate_job_t);
/* interface functions */
this->public.job_interface.execute = (void (*) (job_t *)) execute;
this->public.job_interface.destroy = (void (*)(job_t*)) destroy;
/* private variables */
this->reqid = reqid;
this->src_ts = (dir == POLICY_OUT) ? src_ts : dst_ts;
this->dst_ts = (dir == POLICY_OUT) ? dst_ts : src_ts;
this->local = local;
return &this->public;
}
+63
View File
@@ -0,0 +1,63 @@
/*
* Copyright (C) 2006 Martin Willi
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* $Id: acquire_job.h 4535 2008-10-31 01:43:23Z andreas $
*/
/**
* @defgroup migrate_job migrate_job
* @{ @ingroup jobs
*/
#ifndef MIGRATE_JOB_H_
#define MIGRATE_JOB_H_
typedef struct migrate_job_t migrate_job_t;
#include <library.h>
#include <utils/host.h>
#include <config/traffic_selector.h>
#include <kernel/kernel_ipsec.h>
#include <processing/jobs/job.h>
/**
* Class representing a MIGRATE Job.
*
* This job sets a routed CHILD_SA for an existing IPsec policy.
*/
struct migrate_job_t {
/**
* The job_t interface.
*/
job_t job_interface;
};
/**
* Creates a job of type MIGRATE.
*
* We use the reqid or the traffic selectors to find a matching CHILD_SA.
*
* @param reqid reqid of the CHILD_SA to acquire
* @param src_ts source traffic selector
* @param dst_ts destination traffic selector
* @param local local host address to be used in the IKE_SA
* @return migrate_job_t object
*/
migrate_job_t *migrate_job_create(u_int32_t reqid,
traffic_selector_t *src_ts,
traffic_selector_t *dst_ts,
policy_dir_t dir,
host_t *local);
#endif /* MIGRATE_JOB_H_ @} */