moved attribute_manager to libstrongswan

This commit is contained in:
Andreas Steffen
2009-10-13 13:46:27 +02:00
parent a2b50c5d60
commit 930443afff
31 changed files with 181 additions and 125 deletions
-3
View File
@@ -12,9 +12,6 @@ config/peer_cfg.c config/peer_cfg.h \
config/proposal.c config/proposal.h \ config/proposal.c config/proposal.h \
config/auth_cfg.c config/auth_cfg.h \ config/auth_cfg.c config/auth_cfg.h \
config/traffic_selector.c config/traffic_selector.h \ config/traffic_selector.c config/traffic_selector.h \
config/attributes/attribute_provider.h \
config/attributes/attribute_handler.h \
config/attributes/attribute_manager.c config/attributes/attribute_manager.h \
control/controller.c control/controller.h \ control/controller.c control/controller.h \
daemon.c daemon.h \ daemon.c daemon.h \
encoding/generator.c encoding/generator.h \ encoding/generator.c encoding/generator.h \
-3
View File
@@ -195,7 +195,6 @@ static void destroy(private_daemon_t *this)
DESTROY_IF(this->public.mediation_manager); DESTROY_IF(this->public.mediation_manager);
#endif /* ME */ #endif /* ME */
DESTROY_IF(this->public.backends); DESTROY_IF(this->public.backends);
DESTROY_IF(this->public.attributes);
DESTROY_IF(this->public.credentials); DESTROY_IF(this->public.credentials);
DESTROY_IF(this->public.sender); DESTROY_IF(this->public.sender);
DESTROY_IF(this->public.receiver); DESTROY_IF(this->public.receiver);
@@ -487,7 +486,6 @@ static bool initialize(private_daemon_t *this, bool syslog, level_t levels[])
this->public.eap = eap_manager_create(); this->public.eap = eap_manager_create();
this->public.sim = sim_manager_create(); this->public.sim = sim_manager_create();
this->public.backends = backend_manager_create(); this->public.backends = backend_manager_create();
this->public.attributes = attribute_manager_create();
this->public.kernel_interface = kernel_interface_create(); this->public.kernel_interface = kernel_interface_create();
this->public.socket = socket_create(); this->public.socket = socket_create();
this->public.traps = trap_manager_create(); this->public.traps = trap_manager_create();
@@ -559,7 +557,6 @@ private_daemon_t *daemon_create(void)
this->public.traps = NULL; this->public.traps = NULL;
this->public.credentials = NULL; this->public.credentials = NULL;
this->public.backends = NULL; this->public.backends = NULL;
this->public.attributes = NULL;
this->public.sender= NULL; this->public.sender= NULL;
this->public.receiver = NULL; this->public.receiver = NULL;
this->public.scheduler = NULL; this->public.scheduler = NULL;
-6
View File
@@ -159,7 +159,6 @@ typedef struct daemon_t daemon_t;
#include <sa/ike_sa_manager.h> #include <sa/ike_sa_manager.h>
#include <sa/trap_manager.h> #include <sa/trap_manager.h>
#include <config/backend_manager.h> #include <config/backend_manager.h>
#include <config/attributes/attribute_manager.h>
#include <credentials/credential_manager.h> #include <credentials/credential_manager.h>
#include <sa/authenticators/eap/eap_manager.h> #include <sa/authenticators/eap/eap_manager.h>
#include <sa/authenticators/eap/sim_manager.h> #include <sa/authenticators/eap/sim_manager.h>
@@ -220,11 +219,6 @@ struct daemon_t {
*/ */
backend_manager_t *backends; backend_manager_t *backends;
/**
* Manager for IKEv2 cfg payload attributes
*/
attribute_manager_t *attributes;
/** /**
* Manager for the credential backends * Manager for the credential backends
*/ */
@@ -51,27 +51,6 @@ struct private_configuration_attribute_t {
chunk_t attribute_value; chunk_t attribute_value;
}; };
ENUM_BEGIN(configuration_attribute_type_names, INTERNAL_IP4_ADDRESS, INTERNAL_IP6_SUBNET,
"INTERNAL_IP4_ADDRESS",
"INTERNAL_IP4_NETMASK",
"INTERNAL_IP4_DNS",
"INTERNAL_IP4_NBNS",
"INTERNAL_ADDRESS_EXPIRY",
"INTERNAL_IP4_DHCP",
"APPLICATION_VERSION",
"INTERNAL_IP6_ADDRESS",
"INTERNAL_IP6_NETMASK",
"INTERNAL_IP6_DNS",
"INTERNAL_IP6_NBNS",
"INTERNAL_IP6_DHCP",
"INTERNAL_IP4_SUBNET",
"SUPPORTED_ATTRIBUTES",
"INTERNAL_IP6_SUBNET");
ENUM_NEXT(configuration_attribute_type_names, INTERNAL_IP4_SERVER, INTERNAL_IP6_SERVER, INTERNAL_IP6_SUBNET,
"INTERNAL_IP4_SERVER",
"INTERNAL_IP6_SERVER");
ENUM_END(configuration_attribute_type_names, INTERNAL_IP6_SERVER);
/** /**
* Encoding rules to parse or generate a configuration attribute. * Encoding rules to parse or generate a configuration attribute.
* *
@@ -22,10 +22,10 @@
#ifndef CONFIGURATION_ATTRIBUTE_H_ #ifndef CONFIGURATION_ATTRIBUTE_H_
#define CONFIGURATION_ATTRIBUTE_H_ #define CONFIGURATION_ATTRIBUTE_H_
typedef enum configuration_attribute_type_t configuration_attribute_type_t;
typedef struct configuration_attribute_t configuration_attribute_t; typedef struct configuration_attribute_t configuration_attribute_t;
#include <library.h> #include <library.h>
#include <attributes/attributes.h>
#include <encoding/payloads/payload.h> #include <encoding/payloads/payload.h>
@@ -34,35 +34,6 @@ typedef struct configuration_attribute_t configuration_attribute_t;
*/ */
#define CONFIGURATION_ATTRIBUTE_HEADER_LENGTH 4 #define CONFIGURATION_ATTRIBUTE_HEADER_LENGTH 4
/**
* Type of the attribute, as in IKEv2 RFC 3.15.1.
*/
enum configuration_attribute_type_t {
INTERNAL_IP4_ADDRESS = 1,
INTERNAL_IP4_NETMASK = 2,
INTERNAL_IP4_DNS = 3,
INTERNAL_IP4_NBNS = 4,
INTERNAL_ADDRESS_EXPIRY = 5,
INTERNAL_IP4_DHCP = 6,
APPLICATION_VERSION = 7,
INTERNAL_IP6_ADDRESS = 8,
INTERNAL_IP6_NETMASK = 9,
INTERNAL_IP6_DNS = 10,
INTERNAL_IP6_NBNS = 11,
INTERNAL_IP6_DHCP = 12,
INTERNAL_IP4_SUBNET = 13,
SUPPORTED_ATTRIBUTES = 14,
INTERNAL_IP6_SUBNET = 15,
/* proprietary Microsoft attributes */
INTERNAL_IP4_SERVER = 23456,
INTERNAL_IP6_SERVER = 23457
};
/**
* enum names for configuration_attribute_type_t.
*/
extern enum_name_t *configuration_attribute_type_names;
/** /**
* Class representing an IKEv2-CONFIGURATION Attribute. * Class representing an IKEv2-CONFIGURATION Attribute.
* *
+2 -2
View File
@@ -41,7 +41,7 @@ struct private_attr_plugin_t {
*/ */
static void destroy(private_attr_plugin_t *this) static void destroy(private_attr_plugin_t *this)
{ {
charon->attributes->remove_provider(charon->attributes, &this->provider->provider); lib->attributes->remove_provider(lib->attributes, &this->provider->provider);
this->provider->destroy(this->provider); this->provider->destroy(this->provider);
free(this); free(this);
} }
@@ -56,7 +56,7 @@ plugin_t *plugin_create()
this->public.plugin.destroy = (void(*)(plugin_t*))destroy; this->public.plugin.destroy = (void(*)(plugin_t*))destroy;
this->provider = attr_provider_create(); this->provider = attr_provider_create();
charon->attributes->add_provider(charon->attributes, &this->provider->provider); lib->attributes->add_provider(lib->attributes, &this->provider->provider);
return &this->public.plugin; return &this->public.plugin;
} }
+1 -1
View File
@@ -21,7 +21,7 @@
#ifndef ATTR_PROVIDER_H_ #ifndef ATTR_PROVIDER_H_
#define ATTR_PROVIDER_H_ #define ATTR_PROVIDER_H_
#include <config/attributes/attribute_provider.h> #include <attributes/attribute_provider.h>
typedef struct attr_provider_t attr_provider_t; typedef struct attr_provider_t attr_provider_t;
+3 -3
View File
@@ -43,7 +43,7 @@ struct private_nm_handler_t {
/** /**
* Implementation of attribute_handler_t.handle * Implementation of attribute_handler_t.handle
*/ */
static bool handle(private_nm_handler_t *this, ike_sa_t *ike_sa, static bool handle(private_nm_handler_t *this, identification_t *server,
configuration_attribute_type_t type, chunk_t data) configuration_attribute_type_t type, chunk_t data)
{ {
linked_list_t *list; linked_list_t *list;
@@ -134,8 +134,8 @@ nm_handler_t *nm_handler_create()
{ {
private_nm_handler_t *this = malloc_thing(private_nm_handler_t); private_nm_handler_t *this = malloc_thing(private_nm_handler_t);
this->public.handler.handle = (bool(*)(attribute_handler_t*, ike_sa_t*, configuration_attribute_type_t, chunk_t))handle; this->public.handler.handle = (bool(*)(attribute_handler_t*, identification_t*, configuration_attribute_type_t, chunk_t))handle;
this->public.handler.release = (void(*)(attribute_handler_t*, ike_sa_t*, configuration_attribute_type_t, chunk_t))nop; this->public.handler.release = (void(*)(attribute_handler_t*, identification_t*, configuration_attribute_type_t, chunk_t))nop;
this->public.create_enumerator = (enumerator_t*(*)(nm_handler_t*, configuration_attribute_type_t type))create_enumerator; this->public.create_enumerator = (enumerator_t*(*)(nm_handler_t*, configuration_attribute_type_t type))create_enumerator;
this->public.reset = (void(*)(nm_handler_t*))reset; this->public.reset = (void(*)(nm_handler_t*))reset;
this->public.destroy = (void(*)(nm_handler_t*))destroy; this->public.destroy = (void(*)(nm_handler_t*))destroy;
+1 -1
View File
@@ -21,7 +21,7 @@
#ifndef NM_HANDLER_H_ #ifndef NM_HANDLER_H_
#define NM_HANDLER_H_ #define NM_HANDLER_H_
#include <config/attributes/attribute_handler.h> #include <attributes/attribute_handler.h>
typedef struct nm_handler_t nm_handler_t; typedef struct nm_handler_t nm_handler_t;
+2 -2
View File
@@ -84,8 +84,8 @@ static void destroy(private_nm_plugin_t *this)
g_object_unref(this->plugin); g_object_unref(this->plugin);
} }
charon->credentials->remove_set(charon->credentials, &this->creds->set); charon->credentials->remove_set(charon->credentials, &this->creds->set);
lib->attributes->remove_handler(lib->attributes, &this->handler->handler);
this->creds->destroy(this->creds); this->creds->destroy(this->creds);
charon->attributes->remove_handler(charon->attributes, &this->handler->handler);
this->handler->destroy(this->handler); this->handler->destroy(this->handler);
free(this); free(this);
} }
@@ -108,8 +108,8 @@ plugin_t *plugin_create()
this->creds = nm_creds_create(); this->creds = nm_creds_create();
this->handler = nm_handler_create(); this->handler = nm_handler_create();
lib->attributes->add_handler(lib->attributes, &this->handler->handler);
charon->credentials->add_set(charon->credentials, &this->creds->set); charon->credentials->add_set(charon->credentials, &this->creds->set);
charon->attributes->add_handler(charon->attributes, &this->handler->handler);
this->plugin = nm_strongswan_plugin_new(this->creds, this->handler); this->plugin = nm_strongswan_plugin_new(this->creds, this->handler);
if (!this->plugin) if (!this->plugin)
{ {
+6 -6
View File
@@ -46,7 +46,7 @@ struct private_resolve_handler_t {
/** /**
* Implementation of attribute_handler_t.handle * Implementation of attribute_handler_t.handle
*/ */
static bool handle(private_resolve_handler_t *this, ike_sa_t *ike_sa, static bool handle(private_resolve_handler_t *this, identification_t *server,
configuration_attribute_type_t type, chunk_t data) configuration_attribute_type_t type, chunk_t data)
{ {
FILE *in, *out; FILE *in, *out;
@@ -78,7 +78,7 @@ static bool handle(private_resolve_handler_t *this, ike_sa_t *ike_sa,
{ {
addr = host_create_from_chunk(family, data, 0); addr = host_create_from_chunk(family, data, 0);
fprintf(out, "nameserver %H # by strongSwan, from %Y\n", fprintf(out, "nameserver %H # by strongSwan, from %Y\n",
addr, ike_sa->get_other_id(ike_sa)); addr, server);
DBG1(DBG_IKE, "installing DNS server %H to %s", addr, this->file); DBG1(DBG_IKE, "installing DNS server %H to %s", addr, this->file);
addr->destroy(addr); addr->destroy(addr);
handled = TRUE; handled = TRUE;
@@ -106,7 +106,7 @@ static bool handle(private_resolve_handler_t *this, ike_sa_t *ike_sa,
/** /**
* Implementation of attribute_handler_t.release * Implementation of attribute_handler_t.release
*/ */
static void release(private_resolve_handler_t *this, ike_sa_t *ike_sa, static void release(private_resolve_handler_t *this, identification_t *server,
configuration_attribute_type_t type, chunk_t data) configuration_attribute_type_t type, chunk_t data)
{ {
FILE *in, *out; FILE *in, *out;
@@ -139,7 +139,7 @@ static void release(private_resolve_handler_t *this, ike_sa_t *ike_sa,
addr = host_create_from_chunk(family, data, 0); addr = host_create_from_chunk(family, data, 0);
snprintf(matcher, sizeof(matcher), snprintf(matcher, sizeof(matcher),
"nameserver %H # by strongSwan, from %Y\n", "nameserver %H # by strongSwan, from %Y\n",
addr, ike_sa->get_other_id(ike_sa)); addr, server);
/* copy all, but matching line */ /* copy all, but matching line */
while ((pos = fgets(line, sizeof(line), in))) while ((pos = fgets(line, sizeof(line), in)))
@@ -179,8 +179,8 @@ resolve_handler_t *resolve_handler_create()
{ {
private_resolve_handler_t *this = malloc_thing(private_resolve_handler_t); private_resolve_handler_t *this = malloc_thing(private_resolve_handler_t);
this->public.handler.handle = (bool(*)(attribute_handler_t*, ike_sa_t*, configuration_attribute_type_t, chunk_t))handle; this->public.handler.handle = (bool(*)(attribute_handler_t*, identification_t*, configuration_attribute_type_t, chunk_t))handle;
this->public.handler.release = (void(*)(attribute_handler_t*, ike_sa_t*, configuration_attribute_type_t, chunk_t))release; this->public.handler.release = (void(*)(attribute_handler_t*, identification_t*, configuration_attribute_type_t, chunk_t))release;
this->public.destroy = (void(*)(resolve_handler_t*))destroy; this->public.destroy = (void(*)(resolve_handler_t*))destroy;
this->mutex = mutex_create(MUTEX_TYPE_DEFAULT); this->mutex = mutex_create(MUTEX_TYPE_DEFAULT);
+1 -1
View File
@@ -21,7 +21,7 @@
#ifndef RESOLVE_HANDLER_H_ #ifndef RESOLVE_HANDLER_H_
#define RESOLVE_HANDLER_H_ #define RESOLVE_HANDLER_H_
#include <config/attributes/attribute_handler.h> #include <attributes/attribute_handler.h>
typedef struct resolve_handler_t resolve_handler_t; typedef struct resolve_handler_t resolve_handler_t;
+2 -3
View File
@@ -41,8 +41,7 @@ struct private_resolve_plugin_t {
*/ */
static void destroy(private_resolve_plugin_t *this) static void destroy(private_resolve_plugin_t *this)
{ {
charon->attributes->remove_handler(charon->attributes, lib->attributes->remove_handler(lib->attributes, &this->handler->handler);
&this->handler->handler);
this->handler->destroy(this->handler); this->handler->destroy(this->handler);
free(this); free(this);
} }
@@ -56,7 +55,7 @@ plugin_t *plugin_create()
this->public.plugin.destroy = (void(*)(plugin_t*))destroy; this->public.plugin.destroy = (void(*)(plugin_t*))destroy;
this->handler = resolve_handler_create(); this->handler = resolve_handler_create();
charon->attributes->add_handler(charon->attributes, &this->handler->handler); lib->attributes->add_handler(lib->attributes, &this->handler->handler);
return &this->public.plugin; return &this->public.plugin;
} }
+2 -1
View File
@@ -21,7 +21,8 @@
#ifndef SQL_ATTRIBUTE_H_ #ifndef SQL_ATTRIBUTE_H_
#define SQL_ATTRIBUTE_H_ #define SQL_ATTRIBUTE_H_
#include <config/attributes/attribute_provider.h> #include <attributes/attribute_provider.h>
#include <database/database.h>
typedef struct sql_attribute_t sql_attribute_t; typedef struct sql_attribute_t sql_attribute_t;
+2 -2
View File
@@ -66,8 +66,8 @@ static void destroy(private_sql_plugin_t *this)
{ {
charon->backends->remove_backend(charon->backends, &this->config->backend); charon->backends->remove_backend(charon->backends, &this->config->backend);
charon->credentials->remove_set(charon->credentials, &this->cred->set); charon->credentials->remove_set(charon->credentials, &this->cred->set);
charon->attributes->remove_provider(charon->attributes, &this->attribute->provider);
charon->bus->remove_listener(charon->bus, &this->logger->listener); charon->bus->remove_listener(charon->bus, &this->logger->listener);
lib->attributes->remove_provider(lib->attributes, &this->attribute->provider);
this->config->destroy(this->config); this->config->destroy(this->config);
this->cred->destroy(this->cred); this->cred->destroy(this->cred);
this->attribute->destroy(this->attribute); this->attribute->destroy(this->attribute);
@@ -107,9 +107,9 @@ plugin_t *plugin_create()
this->attribute = sql_attribute_create(this->db); this->attribute = sql_attribute_create(this->db);
this->logger = sql_logger_create(this->db); this->logger = sql_logger_create(this->db);
lib->attributes->add_provider(lib->attributes, &this->attribute->provider);
charon->backends->add_backend(charon->backends, &this->config->backend); charon->backends->add_backend(charon->backends, &this->config->backend);
charon->credentials->add_set(charon->credentials, &this->cred->set); charon->credentials->add_set(charon->credentials, &this->cred->set);
charon->attributes->add_provider(charon->attributes, &this->attribute->provider);
charon->bus->add_listener(charon->bus, &this->logger->listener); charon->bus->add_listener(charon->bus, &this->logger->listener);
return &this->public.plugin; return &this->public.plugin;
+1 -1
View File
@@ -22,7 +22,7 @@
#define STROKE_ATTRIBUTE_H_ #define STROKE_ATTRIBUTE_H_
#include <stroke_msg.h> #include <stroke_msg.h>
#include <config/attributes/attribute_provider.h> #include <attributes/attribute_provider.h>
typedef struct stroke_attribute_t stroke_attribute_t; typedef struct stroke_attribute_t stroke_attribute_t;
+2 -2
View File
@@ -625,7 +625,7 @@ static void destroy(private_stroke_socket_t *this)
charon->credentials->remove_set(charon->credentials, &this->ca->set); charon->credentials->remove_set(charon->credentials, &this->ca->set);
charon->credentials->remove_set(charon->credentials, &this->cred->set); charon->credentials->remove_set(charon->credentials, &this->cred->set);
charon->backends->remove_backend(charon->backends, &this->config->backend); charon->backends->remove_backend(charon->backends, &this->config->backend);
charon->attributes->remove_provider(charon->attributes, &this->attribute->provider); lib->attributes->remove_provider(lib->attributes, &this->attribute->provider);
this->cred->destroy(this->cred); this->cred->destroy(this->cred);
this->ca->destroy(this->ca); this->ca->destroy(this->ca);
this->config->destroy(this->config); this->config->destroy(this->config);
@@ -660,7 +660,7 @@ stroke_socket_t *stroke_socket_create()
charon->credentials->add_set(charon->credentials, &this->ca->set); charon->credentials->add_set(charon->credentials, &this->ca->set);
charon->credentials->add_set(charon->credentials, &this->cred->set); charon->credentials->add_set(charon->credentials, &this->cred->set);
charon->backends->add_backend(charon->backends, &this->config->backend); charon->backends->add_backend(charon->backends, &this->config->backend);
charon->attributes->add_provider(charon->attributes, &this->attribute->provider); lib->attributes->add_provider(lib->attributes, &this->attribute->provider);
this->job = callback_job_create((callback_job_cb_t)receive, this->job = callback_job_create((callback_job_cb_t)receive,
this, NULL, NULL); this, NULL, NULL);
+5 -5
View File
@@ -1848,8 +1848,8 @@ static void add_configuration_attribute(private_ike_sa_t *this,
attribute_entry_t *entry; attribute_entry_t *entry;
attribute_handler_t *handler; attribute_handler_t *handler;
handler = charon->attributes->handle(charon->attributes, handler = lib->attributes->handle(lib->attributes, this->other_id,
&this->public, type, data); type, data);
if (handler) if (handler)
{ {
entry = malloc_thing(attribute_entry_t); entry = malloc_thing(attribute_entry_t);
@@ -1962,8 +1962,8 @@ static void destroy(private_ike_sa_t *this)
while (this->attributes->remove_last(this->attributes, while (this->attributes->remove_last(this->attributes,
(void**)&entry) == SUCCESS) (void**)&entry) == SUCCESS)
{ {
charon->attributes->release(charon->attributes, entry->handler, lib->attributes->release(lib->attributes, entry->handler,
&this->public, entry->type, entry->data); this->other_id, entry->type, entry->data);
free(entry->data.ptr); free(entry->data.ptr);
free(entry); free(entry);
} }
@@ -1987,7 +1987,7 @@ static void destroy(private_ike_sa_t *this)
{ {
if (this->peer_cfg && this->peer_cfg->get_pool(this->peer_cfg)) if (this->peer_cfg && this->peer_cfg->get_pool(this->peer_cfg))
{ {
charon->attributes->release_address(charon->attributes, lib->attributes->release_address(lib->attributes,
this->peer_cfg->get_pool(this->peer_cfg), this->peer_cfg->get_pool(this->peer_cfg),
this->other_virtual_ip, this->other_id); this->other_virtual_ip, this->other_id);
} }
+3 -3
View File
@@ -258,7 +258,7 @@ static status_t build_r(private_ike_config_t *this, message_t *message)
DBG1(DBG_IKE, "peer requested virtual IP %H", this->virtual_ip); DBG1(DBG_IKE, "peer requested virtual IP %H", this->virtual_ip);
if (config->get_pool(config)) if (config->get_pool(config))
{ {
vip = charon->attributes->acquire_address(charon->attributes, vip = lib->attributes->acquire_address(lib->attributes,
config->get_pool(config), config->get_pool(config),
this->ike_sa->get_other_id(this->ike_sa), this->ike_sa->get_other_id(this->ike_sa),
this->virtual_ip); this->virtual_ip);
@@ -281,8 +281,8 @@ static status_t build_r(private_ike_config_t *this, message_t *message)
vip->destroy(vip); vip->destroy(vip);
/* if we add an IP, we also look for other attributes */ /* if we add an IP, we also look for other attributes */
enumerator = charon->attributes->create_attribute_enumerator( enumerator = lib->attributes->create_attribute_enumerator(
charon->attributes, this->ike_sa->get_other_id(this->ike_sa)); lib->attributes, this->ike_sa->get_other_id(this->ike_sa));
while (enumerator->enumerate(enumerator, &type, &value)) while (enumerator->enumerate(enumerator, &type, &value))
{ {
ca = configuration_attribute_create(); ca = configuration_attribute_create();
+3
View File
@@ -10,6 +10,9 @@ printf_hook.c printf_hook.h \
asn1/asn1.c asn1/asn1.h \ asn1/asn1.c asn1/asn1.h \
asn1/asn1_parser.c asn1/asn1_parser.h \ asn1/asn1_parser.c asn1/asn1_parser.h \
asn1/oid.c asn1/oid.h \ asn1/oid.c asn1/oid.h \
attributes/attributes.c attributes/attributes.h \
attributes/attribute_provider.h attributes/attribute_handler.h \
attributes/attribute_manager.c attributes/attribute_manager.h \
crypto/crypters/crypter.c crypto/crypters/crypter.h \ crypto/crypters/crypter.c crypto/crypters/crypter.h \
crypto/hashers/hasher.h crypto/hashers/hasher.c \ crypto/hashers/hasher.h crypto/hashers/hasher.c \
crypto/pkcs9.c crypto/pkcs9.h \ crypto/pkcs9.c crypto/pkcs9.h \
@@ -21,8 +21,10 @@
#ifndef ATTRIBUTE_HANDLER_H_ #ifndef ATTRIBUTE_HANDLER_H_
#define ATTRIBUTE_HANDLER_H_ #define ATTRIBUTE_HANDLER_H_
#include <sa/ike_sa.h> #include <chunk.h>
#include <encoding/payloads/configuration_attribute.h> #include <utils/identification.h>
#include "attributes.h"
typedef struct attribute_handler_t attribute_handler_t; typedef struct attribute_handler_t attribute_handler_t;
@@ -37,21 +39,22 @@ struct attribute_handler_t {
* After receiving a configuration attriubte, it is passed to each * After receiving a configuration attriubte, it is passed to each
* attribute handler until it is handled. * attribute handler until it is handled.
* *
* @param server server from which the attribute was received
* @param type type of configuration attribute to handle * @param type type of configuration attribute to handle
* @param data associated attribute data * @param data associated attribute data
* @return TRUE if attribute handled * @return TRUE if attribute handled
*/ */
bool (*handle)(attribute_handler_t *this, ike_sa_t *ike_sa, bool (*handle)(attribute_handler_t *this, identification_t *server,
configuration_attribute_type_t type, chunk_t data); configuration_attribute_type_t type, chunk_t data);
/** /**
* Release an attribute handled during handle(). * Release an attribute handled during handle().
* *
* A handler that handle()d an attribute gets a call to release() when the * A handler that handle()d an attribute gets a call to release() when the
* IKE_SA gets closed. Depending on the implementation, this is required * connection gets closed. Depending on the implementation, this is required
* to remove the attribute. * to remove the attribute.
*/ */
void (*release)(attribute_handler_t *this, ike_sa_t *ike_sa, void (*release)(attribute_handler_t *this, identification_t *server,
configuration_attribute_type_t type, chunk_t data); configuration_attribute_type_t type, chunk_t data);
}; };
@@ -15,7 +15,7 @@
#include "attribute_manager.h" #include "attribute_manager.h"
#include <daemon.h> #include <debug.h>
#include <utils/linked_list.h> #include <utils/linked_list.h>
#include <utils/mutex.h> #include <utils/mutex.h>
@@ -73,7 +73,7 @@ static host_t* acquire_address(private_attribute_manager_t *this,
if (!host) if (!host)
{ {
DBG1(DBG_CFG, "acquiring address from pool '%s' failed", pool); DBG1("acquiring address from pool '%s' failed", pool);
} }
return host; return host;
} }
@@ -103,7 +103,7 @@ static void release_address(private_attribute_manager_t *this,
if (!found) if (!found)
{ {
DBG1(DBG_CFG, "releasing address to pool '%s' failed", pool); DBG1("releasing address to pool '%s' failed", pool);
} }
} }
@@ -156,8 +156,9 @@ static void remove_provider(private_attribute_manager_t *this,
* Implementation of attribute_manager_t.handle * Implementation of attribute_manager_t.handle
*/ */
static attribute_handler_t* handle(private_attribute_manager_t *this, static attribute_handler_t* handle(private_attribute_manager_t *this,
ike_sa_t *ike_sa, configuration_attribute_type_t type, identification_t *server,
chunk_t data) configuration_attribute_type_t type,
chunk_t data)
{ {
enumerator_t *enumerator; enumerator_t *enumerator;
attribute_handler_t *current, *handled = NULL; attribute_handler_t *current, *handled = NULL;
@@ -166,7 +167,7 @@ static attribute_handler_t* handle(private_attribute_manager_t *this,
enumerator = this->handlers->create_enumerator(this->handlers); enumerator = this->handlers->create_enumerator(this->handlers);
while (enumerator->enumerate(enumerator, &current)) while (enumerator->enumerate(enumerator, &current))
{ {
if (current->handle(current, ike_sa, type, data)) if (current->handle(current, server, type, data))
{ {
handled = current; handled = current;
break; break;
@@ -177,7 +178,7 @@ static attribute_handler_t* handle(private_attribute_manager_t *this,
if (!handled) if (!handled)
{ {
DBG1(DBG_CFG, "handling %N attribute failed", DBG1("handling %N attribute failed",
configuration_attribute_type_names, type); configuration_attribute_type_names, type);
} }
return handled; return handled;
@@ -187,8 +188,9 @@ static attribute_handler_t* handle(private_attribute_manager_t *this,
* Implementation of attribute_manager_t.release * Implementation of attribute_manager_t.release
*/ */
static void release(private_attribute_manager_t *this, static void release(private_attribute_manager_t *this,
attribute_handler_t *handler, ike_sa_t *ike_sa, attribute_handler_t *handler,
configuration_attribute_type_t type, chunk_t data) identification_t *server,
configuration_attribute_type_t type, chunk_t data)
{ {
enumerator_t *enumerator; enumerator_t *enumerator;
attribute_handler_t *current; attribute_handler_t *current;
@@ -199,7 +201,7 @@ static void release(private_attribute_manager_t *this,
{ {
if (current == handler) if (current == handler)
{ {
current->release(current, ike_sa, type, data); current->release(current, server, type, data);
break; break;
} }
} }
@@ -249,13 +251,13 @@ attribute_manager_t *attribute_manager_create()
this->public.acquire_address = (host_t*(*)(attribute_manager_t*, char*, identification_t*,host_t*))acquire_address; this->public.acquire_address = (host_t*(*)(attribute_manager_t*, char*, identification_t*,host_t*))acquire_address;
this->public.release_address = (void(*)(attribute_manager_t*, char *, host_t*, identification_t*))release_address; this->public.release_address = (void(*)(attribute_manager_t*, char *, host_t*, identification_t*))release_address;
this->public.create_attribute_enumerator = (enumerator_t*(*)(attribute_manager_t*, identification_t *id))create_attribute_enumerator; this->public.create_attribute_enumerator = (enumerator_t*(*)(attribute_manager_t*, identification_t*))create_attribute_enumerator;
this->public.add_provider = (void(*)(attribute_manager_t*, attribute_provider_t *provider))add_provider; this->public.add_provider = (void(*)(attribute_manager_t*, attribute_provider_t *provider))add_provider;
this->public.remove_provider = (void(*)(attribute_manager_t*, attribute_provider_t *provider))remove_provider; this->public.remove_provider = (void(*)(attribute_manager_t*, attribute_provider_t *provider))remove_provider;
this->public.handle = (attribute_handler_t*(*)(attribute_manager_t*, ike_sa_t *ike_sa, configuration_attribute_type_t type, chunk_t data))handle; this->public.handle = (attribute_handler_t*(*)(attribute_manager_t*, identification_t*, configuration_attribute_type_t, chunk_t))handle;
this->public.release = (void(*)(attribute_manager_t*, attribute_handler_t *handler, ike_sa_t *ike_sa, configuration_attribute_type_t type, chunk_t data))release; this->public.release = (void(*)(attribute_manager_t*, attribute_handler_t*, identification_t*, configuration_attribute_type_t, chunk_t))release;
this->public.add_handler = (void(*)(attribute_manager_t*, attribute_handler_t *handler))add_handler; this->public.add_handler = (void(*)(attribute_manager_t*, attribute_handler_t*))add_handler;
this->public.remove_handler = (void(*)(attribute_manager_t*, attribute_handler_t *handler))remove_handler; this->public.remove_handler = (void(*)(attribute_manager_t*, attribute_handler_t*))remove_handler;
this->public.destroy = (void(*)(attribute_manager_t*))destroy; this->public.destroy = (void(*)(attribute_manager_t*))destroy;
this->providers = linked_list_create(); this->providers = linked_list_create();
@@ -21,8 +21,8 @@
#ifndef ATTRIBUTE_MANAGER_H_ #ifndef ATTRIBUTE_MANAGER_H_
#define ATTRIBUTE_MANAGER_H_ #define ATTRIBUTE_MANAGER_H_
#include <config/attributes/attribute_provider.h> #include "attribute_provider.h"
#include <config/attributes/attribute_handler.h> #include "attribute_handler.h"
typedef struct attribute_manager_t attribute_manager_t; typedef struct attribute_manager_t attribute_manager_t;
@@ -85,24 +85,26 @@ struct attribute_manager_t {
/** /**
* Handle a configuration attribute by passing them to the handlers. * Handle a configuration attribute by passing them to the handlers.
* *
* @param ike_sa IKE_SA where attribute was received * @param server server from which the attribute was received
* @param type type of configuration attribute * @param type type of configuration attribute
* @param data associated attribute data * @param data associated attribute data
* @return handler which handled this attribute, NULL if none * @return handler which handled this attribute, NULL if none
*/ */
attribute_handler_t* (*handle)(attribute_manager_t *this, ike_sa_t *ike_sa, attribute_handler_t* (*handle)(attribute_manager_t *this,
identification_t *server,
configuration_attribute_type_t type, chunk_t data); configuration_attribute_type_t type, chunk_t data);
/** /**
* Release an attribute previously handle()d by a handler. * Release an attribute previously handle()d by a handler.
* *
* @param handler handler returned by handle() for this attribute * @param handler handler returned by handle() for this attribute
* @param ike_sa IKE_SA owning the attribute * @param server server from which the attribute was received
* @param type type of attribute to release * @param type type of attribute to release
* @param data associated attribute data * @param data associated attribute data
*/ */
void (*release)(attribute_manager_t *this, attribute_handler_t *handler, void (*release)(attribute_manager_t *this, attribute_handler_t *handler,
ike_sa_t *ike_sa, configuration_attribute_type_t type, identification_t *server,
configuration_attribute_type_t type,
chunk_t data); chunk_t data);
/** /**
@@ -21,7 +21,6 @@
#ifndef ATTRIBUTE_PROVIDER_H_ #ifndef ATTRIBUTE_PROVIDER_H_
#define ATTRIBUTE_PROVIDER_H_ #define ATTRIBUTE_PROVIDER_H_
#include <library.h>
#include <utils/host.h> #include <utils/host.h>
#include <utils/identification.h> #include <utils/identification.h>
+40
View File
@@ -0,0 +1,40 @@
/*
* Copyright (C) 2005-2006 Martin Willi
* Copyright (C) 2005 Jan Hutter
* 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.
*/
#include "attributes.h"
ENUM_BEGIN(configuration_attribute_type_names, INTERNAL_IP4_ADDRESS, INTERNAL_IP6_SUBNET,
"INTERNAL_IP4_ADDRESS",
"INTERNAL_IP4_NETMASK",
"INTERNAL_IP4_DNS",
"INTERNAL_IP4_NBNS",
"INTERNAL_ADDRESS_EXPIRY",
"INTERNAL_IP4_DHCP",
"APPLICATION_VERSION",
"INTERNAL_IP6_ADDRESS",
"INTERNAL_IP6_NETMASK",
"INTERNAL_IP6_DNS",
"INTERNAL_IP6_NBNS",
"INTERNAL_IP6_DHCP",
"INTERNAL_IP4_SUBNET",
"SUPPORTED_ATTRIBUTES",
"INTERNAL_IP6_SUBNET");
ENUM_NEXT(configuration_attribute_type_names, INTERNAL_IP4_SERVER, INTERNAL_IP6_SERVER, INTERNAL_IP6_SUBNET,
"INTERNAL_IP4_SERVER",
"INTERNAL_IP6_SERVER");
ENUM_END(configuration_attribute_type_names, INTERNAL_IP6_SERVER);
+59
View File
@@ -0,0 +1,59 @@
/*
* Copyright (C) 2005-2006 Martin Willi
* Copyright (C) 2005 Jan Hutter
* 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.
*/
/**
* @defgroup attributes attributes
* @{ @ingroup attributes
*/
#ifndef ATTRIBUTES_H_
#define ATTRIBUTES_H_
typedef enum configuration_attribute_type_t configuration_attribute_type_t;
#include <enum.h>
/**
* Type of the attribute, as in IKEv2 RFC 3.15.1 or IKEv1 ModeConfig.
*/
enum configuration_attribute_type_t {
INTERNAL_IP4_ADDRESS = 1,
INTERNAL_IP4_NETMASK = 2,
INTERNAL_IP4_DNS = 3,
INTERNAL_IP4_NBNS = 4,
INTERNAL_ADDRESS_EXPIRY = 5,
INTERNAL_IP4_DHCP = 6,
APPLICATION_VERSION = 7,
INTERNAL_IP6_ADDRESS = 8,
INTERNAL_IP6_NETMASK = 9,
INTERNAL_IP6_DNS = 10,
INTERNAL_IP6_NBNS = 11,
INTERNAL_IP6_DHCP = 12,
INTERNAL_IP4_SUBNET = 13,
SUPPORTED_ATTRIBUTES = 14,
INTERNAL_IP6_SUBNET = 15,
/* proprietary Microsoft attributes */
INTERNAL_IP4_SERVER = 23456,
INTERNAL_IP6_SERVER = 23457
};
/**
* enum names for configuration_attribute_type_t.
*/
extern enum_name_t *configuration_attribute_type_names;
#endif /** ATTRIBUTES_H_ @}*/
+2
View File
@@ -67,6 +67,7 @@ void library_deinit()
this->public.encoding->destroy(this->public.encoding); this->public.encoding->destroy(this->public.encoding);
this->public.crypto->destroy(this->public.crypto); this->public.crypto->destroy(this->public.crypto);
this->public.fetcher->destroy(this->public.fetcher); this->public.fetcher->destroy(this->public.fetcher);
this->public.attributes->destroy(this->public.attributes);
this->public.db->destroy(this->public.db); this->public.db->destroy(this->public.db);
this->public.printf_hook->destroy(this->public.printf_hook); this->public.printf_hook->destroy(this->public.printf_hook);
if (this->public.integrity) if (this->public.integrity)
@@ -126,6 +127,7 @@ bool library_init(char *settings)
this->public.creds = credential_factory_create(); this->public.creds = credential_factory_create();
this->public.encoding = key_encoding_create(); this->public.encoding = key_encoding_create();
this->public.fetcher = fetcher_manager_create(); this->public.fetcher = fetcher_manager_create();
this->public.attributes = attribute_manager_create();
this->public.db = database_factory_create(); this->public.db = database_factory_create();
this->public.plugins = plugin_loader_create(); this->public.plugins = plugin_loader_create();
this->public.integrity = NULL; this->public.integrity = NULL;
+6
View File
@@ -60,6 +60,7 @@
#include <plugins/plugin_loader.h> #include <plugins/plugin_loader.h>
#include <crypto/crypto_factory.h> #include <crypto/crypto_factory.h>
#include <fetcher/fetcher_manager.h> #include <fetcher/fetcher_manager.h>
#include <attributes/attribute_manager.h>
#include <database/database_factory.h> #include <database/database_factory.h>
#include <credentials/credential_factory.h> #include <credentials/credential_factory.h>
#include <credentials/keys/key_encoding.h> #include <credentials/keys/key_encoding.h>
@@ -96,6 +97,11 @@ struct library_t {
*/ */
fetcher_manager_t *fetcher; fetcher_manager_t *fetcher;
/**
* manager for payload attributes
*/
attribute_manager_t *attributes;
/** /**
* database construction factory * database construction factory
*/ */
+1 -1
View File
@@ -34,7 +34,7 @@ typedef struct host_t host_t;
#include <netinet/in.h> #include <netinet/in.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <library.h> #include <chunk.h>
/** /**
* Differences between two hosts. They differ in * Differences between two hosts. They differ in
+1
View File
@@ -26,6 +26,7 @@
#include <asn1/oid.h> #include <asn1/oid.h>
#include <asn1/asn1.h> #include <asn1/asn1.h>
#include <crypto/hashers/hasher.h>
ENUM_BEGIN(id_match_names, ID_MATCH_NONE, ID_MATCH_MAX_WILDCARDS, ENUM_BEGIN(id_match_names, ID_MATCH_NONE, ID_MATCH_MAX_WILDCARDS,
"MATCH_NONE", "MATCH_NONE",
+2 -1
View File
@@ -29,7 +29,8 @@ typedef struct identification_t identification_t;
typedef enum id_match_t id_match_t; typedef enum id_match_t id_match_t;
typedef enum id_part_t id_part_t; typedef enum id_part_t id_part_t;
#include <library.h> #include <chunk.h>
#include <utils/enumerator.h>
/** /**
* Matches returned from identification_t.match * Matches returned from identification_t.match