Support multiple virtual IPs on peer_cfg and ike_sa classes
This commit is contained in:
@@ -141,9 +141,9 @@ struct private_peer_cfg_t {
|
||||
u_int32_t dpd_timeout;
|
||||
|
||||
/**
|
||||
* virtual IP to use locally
|
||||
* List of virtual IPs (host_t*) to request
|
||||
*/
|
||||
host_t *virtual_ip;
|
||||
linked_list_t *vips;
|
||||
|
||||
/**
|
||||
* pool to acquire configuration attributes from
|
||||
@@ -409,10 +409,16 @@ METHOD(peer_cfg_t, get_dpd_timeout, u_int32_t,
|
||||
return this->dpd_timeout;
|
||||
}
|
||||
|
||||
METHOD(peer_cfg_t, get_virtual_ip, host_t*,
|
||||
METHOD(peer_cfg_t, add_virtual_ip, void,
|
||||
private_peer_cfg_t *this, host_t *vip)
|
||||
{
|
||||
this->vips->insert_last(this->vips, vip);
|
||||
}
|
||||
|
||||
METHOD(peer_cfg_t, create_virtual_ip_enumerator, enumerator_t*,
|
||||
private_peer_cfg_t *this)
|
||||
{
|
||||
return this->virtual_ip;
|
||||
return this->vips->create_enumerator(this->vips);
|
||||
}
|
||||
|
||||
METHOD(peer_cfg_t, get_pool, char*,
|
||||
@@ -521,6 +527,9 @@ static bool auth_cfg_equal(private_peer_cfg_t *this, private_peer_cfg_t *other)
|
||||
METHOD(peer_cfg_t, equals, bool,
|
||||
private_peer_cfg_t *this, private_peer_cfg_t *other)
|
||||
{
|
||||
enumerator_t *e1, *e2;
|
||||
host_t *vip1, *vip2;
|
||||
|
||||
if (this == other)
|
||||
{
|
||||
return TRUE;
|
||||
@@ -530,6 +539,24 @@ METHOD(peer_cfg_t, equals, bool,
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (this->vips->get_count(this->vips) != other->vips->get_count(other->vips))
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
e1 = create_virtual_ip_enumerator(this);
|
||||
e2 = create_virtual_ip_enumerator(other);
|
||||
if (e1->enumerate(e1, &vip1) && e2->enumerate(e2, &vip2))
|
||||
{
|
||||
if (!vip1->ip_equals(vip1, vip2))
|
||||
{
|
||||
e1->destroy(e1);
|
||||
e2->destroy(e2);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
e1->destroy(e1);
|
||||
e2->destroy(e2);
|
||||
|
||||
return (
|
||||
this->ike_version == other->ike_version &&
|
||||
this->cert_policy == other->cert_policy &&
|
||||
@@ -541,9 +568,6 @@ METHOD(peer_cfg_t, equals, bool,
|
||||
this->jitter_time == other->jitter_time &&
|
||||
this->over_time == other->over_time &&
|
||||
this->dpd == other->dpd &&
|
||||
(this->virtual_ip == other->virtual_ip ||
|
||||
(this->virtual_ip && other->virtual_ip &&
|
||||
this->virtual_ip->equals(this->virtual_ip, other->virtual_ip))) &&
|
||||
(this->pool == other->pool ||
|
||||
(this->pool && other->pool && streq(this->pool, other->pool))) &&
|
||||
auth_cfg_equal(this, other)
|
||||
@@ -572,11 +596,11 @@ METHOD(peer_cfg_t, destroy, void,
|
||||
this->ike_cfg->destroy(this->ike_cfg);
|
||||
this->child_cfgs->destroy_offset(this->child_cfgs,
|
||||
offsetof(child_cfg_t, destroy));
|
||||
DESTROY_IF(this->virtual_ip);
|
||||
this->local_auth->destroy_offset(this->local_auth,
|
||||
offsetof(auth_cfg_t, destroy));
|
||||
this->remote_auth->destroy_offset(this->remote_auth,
|
||||
offsetof(auth_cfg_t, destroy));
|
||||
this->vips->destroy_offset(this->vips, offsetof(host_t, destroy));
|
||||
#ifdef ME
|
||||
DESTROY_IF(this->mediated_by);
|
||||
DESTROY_IF(this->peer_id);
|
||||
@@ -597,8 +621,8 @@ peer_cfg_t *peer_cfg_create(char *name, ike_version_t ike_version,
|
||||
u_int32_t rekey_time, u_int32_t reauth_time,
|
||||
u_int32_t jitter_time, u_int32_t over_time,
|
||||
bool mobike, bool aggressive, u_int32_t dpd,
|
||||
u_int32_t dpd_timeout, host_t *virtual_ip,
|
||||
char *pool, bool mediation, peer_cfg_t *mediated_by,
|
||||
u_int32_t dpd_timeout, char *pool,
|
||||
bool mediation, peer_cfg_t *mediated_by,
|
||||
identification_t *peer_id)
|
||||
{
|
||||
private_peer_cfg_t *this;
|
||||
@@ -631,7 +655,8 @@ peer_cfg_t *peer_cfg_create(char *name, ike_version_t ike_version,
|
||||
.use_aggressive = _use_aggressive,
|
||||
.get_dpd = _get_dpd,
|
||||
.get_dpd_timeout = _get_dpd_timeout,
|
||||
.get_virtual_ip = _get_virtual_ip,
|
||||
.add_virtual_ip = _add_virtual_ip,
|
||||
.create_virtual_ip_enumerator = _create_virtual_ip_enumerator,
|
||||
.get_pool = _get_pool,
|
||||
.add_auth_cfg = _add_auth_cfg,
|
||||
.create_auth_cfg_enumerator = _create_auth_cfg_enumerator,
|
||||
@@ -660,7 +685,7 @@ peer_cfg_t *peer_cfg_create(char *name, ike_version_t ike_version,
|
||||
.aggressive = aggressive,
|
||||
.dpd = dpd,
|
||||
.dpd_timeout = dpd_timeout,
|
||||
.virtual_ip = virtual_ip,
|
||||
.vips = linked_list_create(),
|
||||
.pool = strdupnull(pool),
|
||||
.local_auth = linked_list_create(),
|
||||
.remote_auth = linked_list_create(),
|
||||
|
||||
@@ -278,16 +278,20 @@ struct peer_cfg_t {
|
||||
u_int32_t (*get_dpd_timeout) (peer_cfg_t *this);
|
||||
|
||||
/**
|
||||
* Get a virtual IP for the local peer.
|
||||
* Add a virtual IP to request as initiator.
|
||||
*
|
||||
* If no virtual IP should be used, NULL is returned. %any means to request
|
||||
* a virtual IP using configuration payloads. A specific address is also
|
||||
* used for a request and may be changed by the server.
|
||||
*
|
||||
* @param suggestion NULL, %any or specific
|
||||
* @return virtual IP, %any or NULL
|
||||
* @param vip virtual IP to request, may be %any or %any6
|
||||
*/
|
||||
host_t* (*get_virtual_ip) (peer_cfg_t *this);
|
||||
void (*add_virtual_ip)(peer_cfg_t *this, host_t *vip);
|
||||
|
||||
/**
|
||||
* Create an enumerator over virtual IPs to request.
|
||||
*
|
||||
* The returned enumerator enumerates over IPs added with add_virtual_ip().
|
||||
*
|
||||
* @return enumerator over host_t*
|
||||
*/
|
||||
enumerator_t* (*create_virtual_ip_enumerator)(peer_cfg_t *this);
|
||||
|
||||
/**
|
||||
* Get the name of the pool to acquire configuration attributes from.
|
||||
@@ -374,7 +378,6 @@ struct peer_cfg_t {
|
||||
* @param aggressive use/accept aggressive mode with IKEv1
|
||||
* @param dpd DPD check interval, 0 to disable
|
||||
* @param dpd_timeout DPD timeout interval (IKEv1 only), if 0 default applies
|
||||
* @param virtual_ip virtual IP for local host, or NULL
|
||||
* @param pool pool name to get configuration attributes from, or NULL
|
||||
* @param mediation TRUE if this is a mediation connection
|
||||
* @param mediated_by peer_cfg_t of the mediation connection to mediate through
|
||||
@@ -387,8 +390,8 @@ peer_cfg_t *peer_cfg_create(char *name, ike_version_t ike_version,
|
||||
u_int32_t rekey_time, u_int32_t reauth_time,
|
||||
u_int32_t jitter_time, u_int32_t over_time,
|
||||
bool mobike, bool aggressive, u_int32_t dpd,
|
||||
u_int32_t dpd_timeout, host_t *virtual_ip,
|
||||
char *pool, bool mediation, peer_cfg_t *mediated_by,
|
||||
u_int32_t dpd_timeout, char *pool,
|
||||
bool mediation, peer_cfg_t *mediated_by,
|
||||
identification_t *peer_id);
|
||||
|
||||
#endif /** PEER_CFG_H_ @}*/
|
||||
|
||||
Reference in New Issue
Block a user