Merge branch 'unity-fixes'
Improves compatibility with the Cisco and Shrew clients. Fixes #445.
This commit is contained in:
@@ -97,9 +97,9 @@ static void narrow_initiator(private_unity_narrow_t *this, ike_sa_t *ike_sa,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* As initiator, bump up TS to 0.0.0.0/0 for on-the-wire bits
|
* As initiator and responder, bump up TS to 0.0.0.0/0 for on-the-wire bits
|
||||||
*/
|
*/
|
||||||
static void narrow_initiator_pre(linked_list_t *list)
|
static void narrow_pre(linked_list_t *list, char *side)
|
||||||
{
|
{
|
||||||
traffic_selector_t *ts;
|
traffic_selector_t *ts;
|
||||||
|
|
||||||
@@ -112,7 +112,7 @@ static void narrow_initiator_pre(linked_list_t *list)
|
|||||||
"255.255.255.255", 65535);
|
"255.255.255.255", 65535);
|
||||||
if (ts)
|
if (ts)
|
||||||
{
|
{
|
||||||
DBG2(DBG_CFG, "changing proposed traffic selectors for other:");
|
DBG2(DBG_CFG, "changing proposed traffic selectors for %s:", side);
|
||||||
DBG2(DBG_CFG, " %R", ts);
|
DBG2(DBG_CFG, " %R", ts);
|
||||||
list->insert_last(list, ts);
|
list->insert_last(list, ts);
|
||||||
}
|
}
|
||||||
@@ -149,12 +149,15 @@ METHOD(listener_t, narrow, bool,
|
|||||||
switch (type)
|
switch (type)
|
||||||
{
|
{
|
||||||
case NARROW_INITIATOR_PRE_AUTH:
|
case NARROW_INITIATOR_PRE_AUTH:
|
||||||
narrow_initiator_pre(remote);
|
narrow_pre(remote, "other");
|
||||||
break;
|
break;
|
||||||
case NARROW_INITIATOR_POST_AUTH:
|
case NARROW_INITIATOR_POST_AUTH:
|
||||||
narrow_initiator(this, ike_sa,
|
narrow_initiator(this, ike_sa,
|
||||||
child_sa->get_config(child_sa), remote);
|
child_sa->get_config(child_sa), remote);
|
||||||
break;
|
break;
|
||||||
|
case NARROW_RESPONDER:
|
||||||
|
narrow_pre(local, "us");
|
||||||
|
break;
|
||||||
case NARROW_RESPONDER_POST:
|
case NARROW_RESPONDER_POST:
|
||||||
narrow_responder_post(child_sa->get_config(child_sa), local);
|
narrow_responder_post(child_sa->get_config(child_sa), local);
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
|
* Copyright (C) 2013 Tobias Brunner
|
||||||
|
* Hochschule fuer Technik Rapperswil
|
||||||
|
*
|
||||||
* Copyright (C) 2012 Martin Willi
|
* Copyright (C) 2012 Martin Willi
|
||||||
* Copyright (C) 2012 revosec AG
|
* Copyright (C) 2012 revosec AG
|
||||||
*
|
*
|
||||||
@@ -16,6 +19,7 @@
|
|||||||
#include "unity_provider.h"
|
#include "unity_provider.h"
|
||||||
|
|
||||||
#include <daemon.h>
|
#include <daemon.h>
|
||||||
|
#include <bio/bio_writer.h>
|
||||||
|
|
||||||
typedef struct private_unity_provider_t private_unity_provider_t;
|
typedef struct private_unity_provider_t private_unity_provider_t;
|
||||||
|
|
||||||
@@ -31,58 +35,70 @@ struct private_unity_provider_t {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attribute enumerator for traffic selector list
|
* Attribute enumerator for UNITY_SPLIT_INCLUDE attribute
|
||||||
*/
|
*/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
/** Implements enumerator_t */
|
/** Implements enumerator_t */
|
||||||
enumerator_t public;
|
enumerator_t public;
|
||||||
/** list of traffic selectors to enumerate */
|
/** list of traffic selectors to enumerate */
|
||||||
linked_list_t *list;
|
linked_list_t *list;
|
||||||
/** currently enumerating subnet */
|
/** attribute value */
|
||||||
u_char subnet[4];
|
chunk_t attr;
|
||||||
/** currently enumerating subnet mask */
|
|
||||||
u_char mask[4];
|
|
||||||
} attribute_enumerator_t;
|
} attribute_enumerator_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append data from the given traffic selector to the attribute data
|
||||||
|
*/
|
||||||
|
static void append_ts(bio_writer_t *writer, traffic_selector_t *ts)
|
||||||
|
{
|
||||||
|
host_t *net, *mask;
|
||||||
|
chunk_t padding;
|
||||||
|
u_int8_t bits;
|
||||||
|
|
||||||
|
if (!ts->to_subnet(ts, &net, &bits))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
mask = host_create_netmask(AF_INET, bits);
|
||||||
|
if (!mask)
|
||||||
|
{
|
||||||
|
net->destroy(net);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
writer->write_data(writer, net->get_address(net));
|
||||||
|
writer->write_data(writer, mask->get_address(mask));
|
||||||
|
/* the Cisco client parses the "padding" as protocol, src and dst port, the
|
||||||
|
* first two in network order the last in host order - no other clients seem
|
||||||
|
* to support these fields so we don't use them either */
|
||||||
|
padding = writer->skip(writer, 6);
|
||||||
|
memset(padding.ptr, 0, padding.len);
|
||||||
|
mask->destroy(mask);
|
||||||
|
net->destroy(net);
|
||||||
|
}
|
||||||
|
|
||||||
METHOD(enumerator_t, attribute_enumerate, bool,
|
METHOD(enumerator_t, attribute_enumerate, bool,
|
||||||
attribute_enumerator_t *this, configuration_attribute_type_t *type,
|
attribute_enumerator_t *this, configuration_attribute_type_t *type,
|
||||||
chunk_t *attr)
|
chunk_t *attr)
|
||||||
{
|
{
|
||||||
traffic_selector_t *ts;
|
traffic_selector_t *ts;
|
||||||
u_int8_t i, mask;
|
bio_writer_t *writer;
|
||||||
host_t *net;
|
|
||||||
|
|
||||||
while (TRUE)
|
if (this->list->get_count(this->list) == 0)
|
||||||
{
|
{
|
||||||
if (this->list->remove_first(this->list, (void**)&ts) != SUCCESS)
|
return FALSE;
|
||||||
{
|
}
|
||||||
return FALSE;
|
|
||||||
}
|
writer = bio_writer_create(14);
|
||||||
if (ts->to_subnet(ts, &net, &mask))
|
while (this->list->remove_first(this->list, (void**)&ts) == SUCCESS)
|
||||||
{
|
{
|
||||||
ts->destroy(ts);
|
append_ts(writer, ts);
|
||||||
break;
|
|
||||||
}
|
|
||||||
ts->destroy(ts);
|
ts->destroy(ts);
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(this->mask, 0, sizeof(this->mask));
|
|
||||||
for (i = 0; i < sizeof(this->mask); i++)
|
|
||||||
{
|
|
||||||
if (mask < 8)
|
|
||||||
{
|
|
||||||
this->mask[i] = 0xFF << (8 - mask);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this->mask[i] = 0xFF;
|
|
||||||
mask -= 8;
|
|
||||||
}
|
|
||||||
memcpy(this->subnet, net->get_address(net).ptr, sizeof(this->subnet));
|
|
||||||
net->destroy(net);
|
|
||||||
|
|
||||||
*type = UNITY_SPLIT_INCLUDE;
|
*type = UNITY_SPLIT_INCLUDE;
|
||||||
*attr = chunk_create(this->subnet, sizeof(this->subnet) + sizeof(this->mask));
|
*attr = this->attr = writer->extract_buf(writer);
|
||||||
|
|
||||||
|
writer->destroy(writer);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -90,6 +106,7 @@ METHOD(enumerator_t, attribute_destroy, void,
|
|||||||
attribute_enumerator_t *this)
|
attribute_enumerator_t *this)
|
||||||
{
|
{
|
||||||
this->list->destroy_offset(this->list, offsetof(traffic_selector_t, destroy));
|
this->list->destroy_offset(this->list, offsetof(traffic_selector_t, destroy));
|
||||||
|
chunk_free(&this->attr);
|
||||||
free(this);
|
free(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user