pass identity to release_address(), allows providers to do a lookup by id

This commit is contained in:
Martin Willi
2008-12-05 09:40:50 +00:00
parent c333bb4678
commit 876d5c63a3
7 changed files with 13 additions and 11 deletions
@@ -74,7 +74,7 @@ static host_t* acquire_address(private_attribute_manager_t *this,
* Implementation of attribute_manager_t.release_address. * Implementation of attribute_manager_t.release_address.
*/ */
static void release_address(private_attribute_manager_t *this, static void release_address(private_attribute_manager_t *this,
char *pool, host_t *address) char *pool, host_t *address, identification_t *id)
{ {
enumerator_t *enumerator; enumerator_t *enumerator;
attribute_provider_t *current; attribute_provider_t *current;
@@ -83,7 +83,7 @@ static void release_address(private_attribute_manager_t *this,
enumerator = this->providers->create_enumerator(this->providers); enumerator = this->providers->create_enumerator(this->providers);
while (enumerator->enumerate(enumerator, &current)) while (enumerator->enumerate(enumerator, &current))
{ {
if (current->release_address(current, pool, address)) if (current->release_address(current, pool, address, id))
{ {
break; break;
} }
@@ -132,7 +132,7 @@ attribute_manager_t *attribute_manager_create()
private_attribute_manager_t *this = malloc_thing(private_attribute_manager_t); private_attribute_manager_t *this = malloc_thing(private_attribute_manager_t);
this->public.acquire_address = (host_t*(*)(attribute_manager_t*, char*, identification_t*,auth_info_t*,host_t*))acquire_address; this->public.acquire_address = (host_t*(*)(attribute_manager_t*, char*, identification_t*,auth_info_t*,host_t*))acquire_address;
this->public.release_address = (void(*)(attribute_manager_t*, char *, host_t*))release_address; this->public.release_address = (void(*)(attribute_manager_t*, char *, host_t*, identification_t*))release_address;
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.destroy = (void(*)(attribute_manager_t*))destroy; this->public.destroy = (void(*)(attribute_manager_t*))destroy;
@@ -50,9 +50,10 @@ struct attribute_manager_t {
* *
* @param pool pool name from which the address was acquired * @param pool pool name from which the address was acquired
* @param address address to release * @param address address to release
* @param id peer identity to get address for
*/ */
void (*release_address)(attribute_manager_t *this, void (*release_address)(attribute_manager_t *this,
char *pool, host_t *address); char *pool, host_t *address, identification_t *id);
/** /**
* Register an attribute provider to the manager. * Register an attribute provider to the manager.
@@ -51,10 +51,11 @@ struct attribute_provider_t {
* *
* @param pool name of the pool this address was acquired from * @param pool name of the pool this address was acquired from
* @param address address to release * @param address address to release
* @param id peer ID
* @return TRUE if the address has been released by the provider * @return TRUE if the address has been released by the provider
*/ */
bool (*release_address)(attribute_provider_t *this, bool (*release_address)(attribute_provider_t *this,
char *pool, host_t *address); char *pool, host_t *address, identification_t *id);
}; };
#endif /* ATTRIBUTE_PROVIDER_H_ @}*/ #endif /* ATTRIBUTE_PROVIDER_H_ @}*/
+2 -2
View File
@@ -210,7 +210,7 @@ static host_t* acquire_address(private_sql_attribute_t *this,
* Implementation of attribute_provider_t.release_address * Implementation of attribute_provider_t.release_address
*/ */
static bool release_address(private_sql_attribute_t *this, static bool release_address(private_sql_attribute_t *this,
char *name, host_t *address) char *name, host_t *address, identification_t *id)
{ {
enumerator_t *enumerator; enumerator_t *enumerator;
bool found = FALSE; bool found = FALSE;
@@ -264,7 +264,7 @@ sql_attribute_t *sql_attribute_create(database_t *db)
time_t now = time(NULL); time_t now = time(NULL);
this->public.provider.acquire_address = (host_t*(*)(attribute_provider_t *this, char*, identification_t *,auth_info_t *, host_t *))acquire_address; this->public.provider.acquire_address = (host_t*(*)(attribute_provider_t *this, char*, identification_t *,auth_info_t *, host_t *))acquire_address;
this->public.provider.release_address = (bool(*)(attribute_provider_t *this, char*,host_t *))release_address; this->public.provider.release_address = (bool(*)(attribute_provider_t *this, char*,host_t *, identification_t*))release_address;
this->public.destroy = (void(*)(sql_attribute_t*))destroy; this->public.destroy = (void(*)(sql_attribute_t*))destroy;
this->db = db; this->db = db;
+2 -2
View File
@@ -203,7 +203,7 @@ static host_t* acquire_address(private_stroke_attribute_t *this,
* Implementation of attribute_provider_t.release_address * Implementation of attribute_provider_t.release_address
*/ */
static bool release_address(private_stroke_attribute_t *this, static bool release_address(private_stroke_attribute_t *this,
char *name, host_t *address) char *name, host_t *address, identification_t *id)
{ {
pool_t *pool; pool_t *pool;
bool found = FALSE; bool found = FALSE;
@@ -327,7 +327,7 @@ stroke_attribute_t *stroke_attribute_create()
private_stroke_attribute_t *this = malloc_thing(private_stroke_attribute_t); private_stroke_attribute_t *this = malloc_thing(private_stroke_attribute_t);
this->public.provider.acquire_address = (host_t*(*)(attribute_provider_t *this, char*, identification_t *,auth_info_t *, host_t *))acquire_address; this->public.provider.acquire_address = (host_t*(*)(attribute_provider_t *this, char*, identification_t *,auth_info_t *, host_t *))acquire_address;
this->public.provider.release_address = (bool(*)(attribute_provider_t *this, char*,host_t *))release_address; this->public.provider.release_address = (bool(*)(attribute_provider_t *this, char*,host_t *, identification_t*))release_address;
this->public.add_pool = (void(*)(stroke_attribute_t*, stroke_msg_t *msg))add_pool; this->public.add_pool = (void(*)(stroke_attribute_t*, stroke_msg_t *msg))add_pool;
this->public.del_pool = (void(*)(stroke_attribute_t*, stroke_msg_t *msg))del_pool; this->public.del_pool = (void(*)(stroke_attribute_t*, stroke_msg_t *msg))del_pool;
this->public.destroy = (void(*)(stroke_attribute_t*))destroy; this->public.destroy = (void(*)(stroke_attribute_t*))destroy;
@@ -60,7 +60,7 @@ static void* testing(void *thread)
/* release addresses */ /* release addresses */
for (i = 0; i < ALLOCS; i++) for (i = 0; i < ALLOCS; i++)
{ {
charon->attributes->release_address(charon->attributes, "test", addr[i]); charon->attributes->release_address(charon->attributes, "test", addr[i], id[i]);
} }
/* cleanup */ /* cleanup */
+1 -1
View File
@@ -2261,7 +2261,7 @@ static void destroy(private_ike_sa_t *this)
{ {
charon->attributes->release_address(charon->attributes, charon->attributes->release_address(charon->attributes,
this->peer_cfg->get_pool(this->peer_cfg), this->peer_cfg->get_pool(this->peer_cfg),
this->other_virtual_ip); this->other_virtual_ip, this->other_id);
} }
this->other_virtual_ip->destroy(this->other_virtual_ip); this->other_virtual_ip->destroy(this->other_virtual_ip);
} }