aboutsummaryrefslogtreecommitdiffstats
path: root/src/dumm
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2008-07-30 13:15:18 +0000
committerTobias Brunner <tobias@strongswan.org>2008-07-30 13:15:18 +0000
commiteadd460f7c62e73e8de405443c954a3dfb78c3e2 (patch)
tree335c07409bd2e424d01f843e5974df147a231abb /src/dumm
parent9901cdb4cd21d177cc4518ac9e07e8f88b4e1040 (diff)
downloadstrongswan-eadd460f7c62e73e8de405443c954a3dfb78c3e2.tar.bz2
strongswan-eadd460f7c62e73e8de405443c954a3dfb78c3e2.tar.xz
the list of addresses on the interface of a guest is not cached anymore, but queried directly from the interface
Diffstat (limited to 'src/dumm')
-rw-r--r--src/dumm/iface.c61
-rw-r--r--src/dumm/irdumm.c7
2 files changed, 36 insertions, 32 deletions
diff --git a/src/dumm/iface.c b/src/dumm/iface.c
index 20a71f4c0..350ab825c 100644
--- a/src/dumm/iface.c
+++ b/src/dumm/iface.c
@@ -44,8 +44,6 @@ struct private_iface_t {
guest_t *guest;
/** mconsole for guest */
mconsole_t *mconsole;
- /** list of interface addresses */
- linked_list_t *addresses;
};
/**
@@ -105,14 +103,28 @@ static char* get_hostif(private_iface_t *this)
*/
static bool add_address(private_iface_t *this, host_t *addr)
{
- if (this->guest->exec(this->guest, NULL, NULL, "ip addr add %H dev %s",
- addr, this->guestif) == 0)
+ return (this->guest->exec(this->guest, NULL, NULL, "ip addr add %H dev %s",
+ addr, this->guestif) == 0);
+}
+
+/**
+ * compile a list of the addresses of an interface
+ */
+static void compile_address_list(linked_list_t *list, char *address)
+{
+ host_t *host = host_create_from_string(address, 0);
+ if (host)
{
- this->addresses->insert_last(this->addresses, addr);
- return TRUE;
+ list->insert_last(list, host);
}
- addr->destroy(addr);
- return FALSE;
+}
+
+/**
+ * delete the list of addresses
+ */
+static void destroy_address_list(linked_list_t *list)
+{
+ list->destroy_offset(list, offsetof(host_t, destroy));
}
/**
@@ -120,7 +132,14 @@ static bool add_address(private_iface_t *this, host_t *addr)
*/
static enumerator_t* create_address_enumerator(private_iface_t *this)
{
- return this->addresses->create_enumerator(this->addresses);
+ linked_list_t *addresses = linked_list_create();
+ this->guest->exec_str(this->guest, (void(*)(void*,char*))compile_address_list,
+ TRUE, addresses,
+ "ip addr list dev %s scope global | "
+ "grep '^ \\+\\(inet6\\? \\)' | "
+ "awk -F '( +|/)' '{ print $3 }'", this->guestif);
+ return enumerator_create_cleaner(addresses->create_enumerator(addresses),
+ (void(*)(void*))destroy_address_list, addresses);
}
/**
@@ -128,26 +147,8 @@ static enumerator_t* create_address_enumerator(private_iface_t *this)
*/
static bool delete_address(private_iface_t *this, host_t *addr)
{
- enumerator_t *enumerator;
- bool success = FALSE;
- host_t *current;
-
- enumerator = create_address_enumerator(this);
- while (enumerator->enumerate(enumerator, &current))
- {
- if (current->ip_equals(current, addr))
- {
- if (this->guest->exec(this->guest, NULL, NULL,
- "ip addr del %H dev %s", current, this->guestif) == 0)
- {
- this->addresses->remove_at(this->addresses, enumerator);
- success = TRUE;
- }
- break;
- }
- }
- enumerator->destroy(enumerator);
- return success;
+ return (this->guest->exec(this->guest, NULL, NULL,
+ "ip addr del %H dev %s", addr, this->guestif) == 0);
}
/**
@@ -263,7 +264,6 @@ static void destroy(private_iface_t *this)
destroy_tap(this);
free(this->guestif);
free(this->hostif);
- this->addresses->destroy(this->addresses);
free(this);
}
@@ -309,7 +309,6 @@ iface_t *iface_create(char *name, guest_t *guest, mconsole_t *mconsole)
{
DBG1("bringing iface '%s' up failed: %m", this->hostif);
}
- this->addresses = linked_list_create();
return &this->public;
}
diff --git a/src/dumm/irdumm.c b/src/dumm/irdumm.c
index cd92d2b60..f468e7c79 100644
--- a/src/dumm/irdumm.c
+++ b/src/dumm/irdumm.c
@@ -443,13 +443,14 @@ static VALUE iface_add_addr(VALUE self, VALUE name)
addr = host_create_from_string(StringValuePtr(name), 0);
if (!addr)
{
- rb_raise(rb_eRuntimeError, "invalid IP address");
+ rb_raise(rb_eArgError, "invalid IP address");
}
Data_Get_Struct(self, iface_t, iface);
if (!iface->add_address(iface, addr))
{
rb_raise(rb_eRuntimeError, "adding address failed");
}
+ addr->destroy(addr);
return self;
}
@@ -481,6 +482,10 @@ static VALUE iface_del_addr(VALUE self, VALUE vaddr)
host_t *addr;
addr = host_create_from_string(StringValuePtr(vaddr), 0);
+ if (!addr)
+ {
+ rb_raise(rb_eArgError, "invalid IP address");
+ }
Data_Get_Struct(self, iface_t, iface);
if (!iface->delete_address(iface, addr))
{