Filter ignored interfaces in kernel interfaces (for events, address enumeration, etc.)

This commit is contained in:
Tobias Brunner
2012-09-21 18:16:26 +02:00
parent 645d7a5ef3
commit 940e1b0f66
4 changed files with 134 additions and 61 deletions
+2 -1
View File
@@ -305,7 +305,8 @@ struct kernel_interface_t {
host_t* (*get_nexthop)(kernel_interface_t *this, host_t *dest, host_t *src); host_t* (*get_nexthop)(kernel_interface_t *this, host_t *dest, host_t *src);
/** /**
* Get the interface name of a local address. * Get the interface name of a local address. Interfaces that are down or
* ignored by config are not considered.
* *
* @param host address to get interface name from * @param host address to get interface name from
* @param name allocated interface name (optional) * @param name allocated interface name (optional)
+2 -1
View File
@@ -65,7 +65,8 @@ struct kernel_net_t {
host_t* (*get_nexthop)(kernel_net_t *this, host_t *dest, host_t *src); host_t* (*get_nexthop)(kernel_net_t *this, host_t *dest, host_t *src);
/** /**
* Get the interface name of a local address. * Get the interface name of a local address. Interfaces that are down or
* ignored by config are not considered.
* *
* @param host address to get interface name from * @param host address to get interface name from
* @param name allocated interface name (optional) * @param name allocated interface name (optional)
@@ -110,6 +110,9 @@ struct iface_entry_t {
/** list of addresses as host_t */ /** list of addresses as host_t */
linked_list_t *addrs; linked_list_t *addrs;
/** TRUE if usable by config */
bool usable;
}; };
/** /**
@@ -121,6 +124,22 @@ static void iface_entry_destroy(iface_entry_t *this)
free(this); free(this);
} }
/**
* find an interface entry by index
*/
static bool iface_entry_by_index(iface_entry_t *this, int *ifindex)
{
return this->ifindex == *ifindex;
}
/**
* check if an interface is up and usable
*/
static inline bool iface_entry_up_and_usable(iface_entry_t *iface)
{
return iface->usable && (iface->flags & IFF_UP) == IFF_UP;
}
typedef struct route_entry_t route_entry_t; typedef struct route_entry_t route_entry_t;
/** /**
@@ -486,6 +505,10 @@ static host_t *get_interface_address(private_kernel_netlink_net_t *this,
{ {
if (iface->ifindex == ifindex) if (iface->ifindex == ifindex)
{ {
if (!iface->usable)
{ /* ignore interfaces excluded by config */
break;
}
addrs = iface->addrs->create_enumerator(iface->addrs); addrs = iface->addrs->create_enumerator(iface->addrs);
while (addrs->enumerate(addrs, &addr)) while (addrs->enumerate(addrs, &addr))
{ {
@@ -557,6 +580,22 @@ static void fire_roam_event(private_kernel_netlink_net_t *this, bool address)
} }
} }
/**
* check if an interface with a given index is up and usable
*/
static bool is_interface_up_and_usable(private_kernel_netlink_net_t *this,
int index)
{
iface_entry_t *iface;
if (this->ifaces->find_first(this->ifaces, (void*)iface_entry_by_index,
(void**)&iface, &index) == SUCCESS)
{
return iface_entry_up_and_usable(iface);
}
return FALSE;
}
/** /**
* process RTM_NEWLINK/RTM_DELLINK from kernel * process RTM_NEWLINK/RTM_DELLINK from kernel
*/ */
@@ -606,12 +645,14 @@ static void process_link(private_kernel_netlink_net_t *this,
entry = malloc_thing(iface_entry_t); entry = malloc_thing(iface_entry_t);
entry->ifindex = msg->ifi_index; entry->ifindex = msg->ifi_index;
entry->flags = 0; entry->flags = 0;
entry->usable = hydra->kernel_interface->is_interface_usable(
hydra->kernel_interface, name);
entry->addrs = linked_list_create(); entry->addrs = linked_list_create();
this->ifaces->insert_last(this->ifaces, entry); this->ifaces->insert_last(this->ifaces, entry);
} }
strncpy(entry->ifname, name, IFNAMSIZ); strncpy(entry->ifname, name, IFNAMSIZ);
entry->ifname[IFNAMSIZ-1] = '\0'; entry->ifname[IFNAMSIZ-1] = '\0';
if (event) if (event && entry->usable)
{ {
if (!(entry->flags & IFF_UP) && (msg->ifi_flags & IFF_UP)) if (!(entry->flags & IFF_UP) && (msg->ifi_flags & IFF_UP))
{ {
@@ -634,7 +675,7 @@ static void process_link(private_kernel_netlink_net_t *this,
{ {
if (current->ifindex == msg->ifi_index) if (current->ifindex == msg->ifi_index)
{ {
if (event) if (event && current->usable)
{ {
update = TRUE; update = TRUE;
DBG1(DBG_KNL, "interface %s deleted", current->ifname); DBG1(DBG_KNL, "interface %s deleted", current->ifname);
@@ -727,7 +768,7 @@ static void process_addr(private_kernel_netlink_net_t *this,
if (hdr->nlmsg_type == RTM_DELADDR) if (hdr->nlmsg_type == RTM_DELADDR)
{ {
iface->addrs->remove_at(iface->addrs, addrs); iface->addrs->remove_at(iface->addrs, addrs);
if (!addr->virtual) if (!addr->virtual && iface->usable)
{ {
changed = TRUE; changed = TRUE;
DBG1(DBG_KNL, "%H disappeared from %s", DBG1(DBG_KNL, "%H disappeared from %s",
@@ -757,7 +798,7 @@ static void process_addr(private_kernel_netlink_net_t *this,
addr->scope = msg->ifa_scope; addr->scope = msg->ifa_scope;
iface->addrs->insert_last(iface->addrs, addr); iface->addrs->insert_last(iface->addrs, addr);
if (event) if (event && iface->usable)
{ {
DBG1(DBG_KNL, "%H appeared on %s", host, iface->ifname); DBG1(DBG_KNL, "%H appeared on %s", host, iface->ifname);
} }
@@ -767,6 +808,10 @@ static void process_addr(private_kernel_netlink_net_t *this,
{ {
update = TRUE; update = TRUE;
} }
if (!iface->usable)
{ /* ignore events for interfaces excluded by config */
update = changed = FALSE;
}
break; break;
} }
} }
@@ -830,20 +875,26 @@ static void process_route(private_kernel_netlink_net_t *this, struct nlmsghdr *h
} }
rta = RTA_NEXT(rta, rtasize); rta = RTA_NEXT(rta, rtasize);
} }
this->mutex->lock(this->mutex);
if (rta_oif && !is_interface_up_and_usable(this, rta_oif))
{ /* ignore route changes for interfaces that are ignored or down */
this->mutex->unlock(this->mutex);
DESTROY_IF(host);
return;
}
if (!host && rta_oif) if (!host && rta_oif)
{ {
host = get_interface_address(this, rta_oif, msg->rtm_family, NULL); host = get_interface_address(this, rta_oif, msg->rtm_family, NULL);
} }
if (host) if (host)
{ {
this->mutex->lock(this->mutex);
if (!get_vip_refcount(this, host)) if (!get_vip_refcount(this, host))
{ /* ignore routes added for virtual IPs */ { /* ignore routes added for virtual IPs */
fire_roam_event(this, FALSE); fire_roam_event(this, FALSE);
} }
this->mutex->unlock(this->mutex);
host->destroy(host); host->destroy(host);
} }
this->mutex->unlock(this->mutex);
} }
/** /**
@@ -970,6 +1021,10 @@ static enumerator_t *create_iface_enumerator(iface_entry_t *iface,
static bool filter_interfaces(address_enumerator_t *data, iface_entry_t** in, static bool filter_interfaces(address_enumerator_t *data, iface_entry_t** in,
iface_entry_t** out) iface_entry_t** out)
{ {
if (!(*in)->usable)
{ /* skip interfaces excluded by config */
return FALSE;
}
if (!data->include_loopback && ((*in)->flags & IFF_LOOPBACK)) if (!data->include_loopback && ((*in)->flags & IFF_LOOPBACK))
{ /* ignore loopback devices */ { /* ignore loopback devices */
return FALSE; return FALSE;
@@ -1007,7 +1062,7 @@ METHOD(kernel_net_t, get_interface_name, bool,
enumerator_t *ifaces, *addrs; enumerator_t *ifaces, *addrs;
iface_entry_t *iface; iface_entry_t *iface;
addr_entry_t *addr; addr_entry_t *addr;
bool found = FALSE; bool found = FALSE, ignored = FALSE;
if (ip->is_anyaddr(ip)) if (ip->is_anyaddr(ip))
{ {
@@ -1024,6 +1079,11 @@ METHOD(kernel_net_t, get_interface_name, bool,
if (ip->ip_equals(ip, addr->ip)) if (ip->ip_equals(ip, addr->ip))
{ {
found = TRUE; found = TRUE;
if (!iface->usable)
{
ignored = TRUE;
break;
}
if (name) if (name)
{ {
*name = strdup(iface->ifname); *name = strdup(iface->ifname);
@@ -1040,15 +1100,18 @@ METHOD(kernel_net_t, get_interface_name, bool,
ifaces->destroy(ifaces); ifaces->destroy(ifaces);
this->mutex->unlock(this->mutex); this->mutex->unlock(this->mutex);
if (!found) if (!ignored)
{ {
DBG2(DBG_KNL, "%H is not a local address", ip); if (!found)
{
DBG2(DBG_KNL, "%H is not a local address", ip);
}
else if (name)
{
DBG2(DBG_KNL, "%H is on interface %s", ip, *name);
}
} }
else if (name) return found && !ignored;
{
DBG2(DBG_KNL, "%H is on interface %s", ip, *name);
}
return found;
} }
/** /**
@@ -1082,29 +1145,6 @@ static int get_interface_index(private_kernel_netlink_net_t *this, char* name)
return ifindex; return ifindex;
} }
/**
* Check if an interface with a given index is up
*/
static bool is_interface_up(private_kernel_netlink_net_t *this, int index)
{
enumerator_t *ifaces;
iface_entry_t *iface;
/* default to TRUE for interface we do not monitor (e.g. lo) */
bool up = TRUE;
ifaces = this->ifaces->create_enumerator(this->ifaces);
while (ifaces->enumerate(ifaces, &iface))
{
if (iface->ifindex == index)
{
up = iface->flags & IFF_UP;
break;
}
}
ifaces->destroy(ifaces);
return up;
}
/** /**
* check if an address (chunk) addr is in subnet (net with net_len net bits) * check if an address (chunk) addr is in subnet (net with net_len net bits)
*/ */
@@ -1303,7 +1343,7 @@ static host_t *get_route(private_kernel_netlink_net_t *this, host_t *dest,
{ /* route is from our own ipsec routing table */ { /* route is from our own ipsec routing table */
continue; continue;
} }
if (route->oif && !is_interface_up(this, route->oif)) if (route->oif && !is_interface_up_and_usable(this, route->oif))
{ /* interface is down */ { /* interface is down */
continue; continue;
} }
@@ -1830,7 +1870,7 @@ static status_t init_address_list(private_kernel_netlink_net_t *this)
ifaces = this->ifaces->create_enumerator(this->ifaces); ifaces = this->ifaces->create_enumerator(this->ifaces);
while (ifaces->enumerate(ifaces, &iface)) while (ifaces->enumerate(ifaces, &iface))
{ {
if (iface->flags & IFF_UP) if (iface_entry_up_and_usable(iface))
{ {
DBG2(DBG_KNL, " %s", iface->ifname); DBG2(DBG_KNL, " %s", iface->ifname);
addrs = iface->addrs->create_enumerator(iface->addrs); addrs = iface->addrs->create_enumerator(iface->addrs);
@@ -85,6 +85,9 @@ struct iface_entry_t {
/** list of addresses as host_t */ /** list of addresses as host_t */
linked_list_t *addrs; linked_list_t *addrs;
/** TRUE if usable by config */
bool usable;
}; };
/** /**
@@ -96,6 +99,14 @@ static void iface_entry_destroy(iface_entry_t *this)
free(this); free(this);
} }
/**
* check if an interface is up and usable
*/
static inline bool iface_entry_up_and_usable(iface_entry_t *iface)
{
return iface->usable && (iface->flags & IFF_UP) == IFF_UP;
}
typedef struct private_kernel_pfroute_net_t private_kernel_pfroute_net_t; typedef struct private_kernel_pfroute_net_t private_kernel_pfroute_net_t;
@@ -229,7 +240,7 @@ static void process_addr(private_kernel_pfroute_net_t *this,
if (ifa->ifam_type == RTM_DELADDR) if (ifa->ifam_type == RTM_DELADDR)
{ {
iface->addrs->remove_at(iface->addrs, addrs); iface->addrs->remove_at(iface->addrs, addrs);
if (!addr->virtual) if (!addr->virtual && iface->usable)
{ {
changed = TRUE; changed = TRUE;
DBG1(DBG_KNL, "%H disappeared from %s", DBG1(DBG_KNL, "%H disappeared from %s",
@@ -253,10 +264,13 @@ static void process_addr(private_kernel_pfroute_net_t *this,
addr->virtual = FALSE; addr->virtual = FALSE;
addr->refcount = 1; addr->refcount = 1;
iface->addrs->insert_last(iface->addrs, addr); iface->addrs->insert_last(iface->addrs, addr);
DBG1(DBG_KNL, "%H appeared on %s", host, iface->ifname); if (iface->usable)
{
DBG1(DBG_KNL, "%H appeared on %s", host, iface->ifname);
}
} }
if (changed && (iface->flags & IFF_UP)) if (changed && iface_entry_up_and_usable(iface))
{ {
roam = TRUE; roam = TRUE;
} }
@@ -290,15 +304,18 @@ static void process_link(private_kernel_pfroute_net_t *this,
{ {
if (iface->ifindex == msg->ifm_index) if (iface->ifindex == msg->ifm_index)
{ {
if (!(iface->flags & IFF_UP) && (msg->ifm_flags & IFF_UP)) if (iface->usable)
{ {
roam = TRUE; if (!(iface->flags & IFF_UP) && (msg->ifm_flags & IFF_UP))
DBG1(DBG_KNL, "interface %s activated", iface->ifname); {
} roam = TRUE;
else if ((iface->flags & IFF_UP) && !(msg->ifm_flags & IFF_UP)) DBG1(DBG_KNL, "interface %s activated", iface->ifname);
{ }
roam = TRUE; else if ((iface->flags & IFF_UP) && !(msg->ifm_flags & IFF_UP))
DBG1(DBG_KNL, "interface %s deactivated", iface->ifname); {
roam = TRUE;
DBG1(DBG_KNL, "interface %s deactivated", iface->ifname);
}
} }
iface->flags = msg->ifm_flags; iface->flags = msg->ifm_flags;
break; break;
@@ -441,6 +458,10 @@ static enumerator_t *create_iface_enumerator(iface_entry_t *iface,
static bool filter_interfaces(address_enumerator_t *data, iface_entry_t** in, static bool filter_interfaces(address_enumerator_t *data, iface_entry_t** in,
iface_entry_t** out) iface_entry_t** out)
{ {
if (!(*in)->usable)
{ /* skip interfaces excluded by config */
return FALSE;
}
if (!data->include_loopback && ((*in)->flags & IFF_LOOPBACK)) if (!data->include_loopback && ((*in)->flags & IFF_LOOPBACK))
{ /* ignore loopback devices */ { /* ignore loopback devices */
return FALSE; return FALSE;
@@ -478,7 +499,7 @@ METHOD(kernel_net_t, get_interface_name, bool,
enumerator_t *ifaces, *addrs; enumerator_t *ifaces, *addrs;
iface_entry_t *iface; iface_entry_t *iface;
addr_entry_t *addr; addr_entry_t *addr;
bool found = FALSE; bool found = FALSE, ignored = FALSE;
if (ip->is_anyaddr(ip)) if (ip->is_anyaddr(ip))
{ {
@@ -495,6 +516,11 @@ METHOD(kernel_net_t, get_interface_name, bool,
if (ip->ip_equals(ip, addr->ip)) if (ip->ip_equals(ip, addr->ip))
{ {
found = TRUE; found = TRUE;
if (!iface->usable)
{
ignored = TRUE;
break;
}
if (name) if (name)
{ {
*name = strdup(iface->ifname); *name = strdup(iface->ifname);
@@ -511,15 +537,18 @@ METHOD(kernel_net_t, get_interface_name, bool,
ifaces->destroy(ifaces); ifaces->destroy(ifaces);
this->mutex->unlock(this->mutex); this->mutex->unlock(this->mutex);
if (!found) if (!ignored)
{ {
DBG2(DBG_KNL, "%H is not a local address", ip); if (!found)
{
DBG2(DBG_KNL, "%H is not a local address", ip);
}
else if (name)
{
DBG2(DBG_KNL, "%H is on interface %s", ip, *name);
}
} }
else if (name) return found && !ignored;
{
DBG2(DBG_KNL, "%H is on interface %s", ip, *name);
}
return found;
} }
METHOD(kernel_net_t, get_source_addr, host_t*, METHOD(kernel_net_t, get_source_addr, host_t*,
@@ -609,6 +638,8 @@ static status_t init_address_list(private_kernel_pfroute_net_t *this)
iface->ifindex = if_nametoindex(ifa->ifa_name); iface->ifindex = if_nametoindex(ifa->ifa_name);
iface->flags = ifa->ifa_flags; iface->flags = ifa->ifa_flags;
iface->addrs = linked_list_create(); iface->addrs = linked_list_create();
iface->usable = hydra->kernel_interface->is_interface_usable(
hydra->kernel_interface, ifa->ifa_name);
this->ifaces->insert_last(this->ifaces, iface); this->ifaces->insert_last(this->ifaces, iface);
} }
@@ -628,7 +659,7 @@ static status_t init_address_list(private_kernel_pfroute_net_t *this)
ifaces = this->ifaces->create_enumerator(this->ifaces); ifaces = this->ifaces->create_enumerator(this->ifaces);
while (ifaces->enumerate(ifaces, &iface)) while (ifaces->enumerate(ifaces, &iface))
{ {
if (iface->flags & IFF_UP) if (iface->usable && iface->flags & IFF_UP)
{ {
DBG2(DBG_KNL, " %s", iface->ifname); DBG2(DBG_KNL, " %s", iface->ifname);
addrs = iface->addrs->create_enumerator(iface->addrs); addrs = iface->addrs->create_enumerator(iface->addrs);