summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2010-01-13 02:26:50 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2010-01-13 02:26:50 +0000
commitc170799ceb503222b1020d85d656017a45011d46 (patch)
treedba26e6195adf90149d1724dbe0233a4fcbf7dbc /sys
parentdc2b77c5c209a007b4fbb3168795820a9b050aec (diff)
maintain a global RB tree of all local addresses in the system. this
includes AF_LINK addresses (aka mac addresses in the ethernet case). for inet this also includes the broadcast addresses. depends on ifinit() called earlier so we have a chance to pool_init before autoconf assigns the AF_LINK addresses, the v6 fix, and the ifa_add/del abstraction i just committed. this is a change in semantics, it is now illegal to change the actual address in an ifaddr struct because then the RB tree becomes unbalanced. nothing using this tree yet. ok theo ryan dlg
Diffstat (limited to 'sys')
-rw-r--r--sys/net/if.c77
-rw-r--r--sys/net/if.h11
2 files changed, 86 insertions, 2 deletions
diff --git a/sys/net/if.c b/sys/net/if.c
index b06a360ea8b..2e9ab953721 100644
--- a/sys/net/if.c
+++ b/sys/net/if.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if.c,v 1.205 2010/01/13 02:13:12 henning Exp $ */
+/* $OpenBSD: if.c,v 1.206 2010/01/13 02:26:49 henning Exp $ */
/* $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $ */
/*
@@ -148,10 +148,19 @@ struct if_clone *if_clone_lookup(const char *, int *);
void if_congestion_clear(void *);
int if_group_egress_build(void);
+int ifai_cmp(struct ifaddr_item *, struct ifaddr_item *);
+void ifa_item_insert(struct sockaddr *, struct ifaddr *, struct ifnet *);
+void ifa_item_remove(struct sockaddr *, struct ifaddr *, struct ifnet *);
+RB_HEAD(ifaddr_items, ifaddr_item) ifaddr_items = RB_INITIALIZER(&ifaddr_items);
+RB_PROTOTYPE(ifaddr_items, ifaddr_item, ifai_entry, ifai_cmp);
+RB_GENERATE(ifaddr_items, ifaddr_item, ifai_entry, ifai_cmp);
+
TAILQ_HEAD(, ifg_group) ifg_head;
LIST_HEAD(, if_clone) if_cloners = LIST_HEAD_INITIALIZER(if_cloners);
int if_cloners_count;
+struct pool ifaddr_item_pl;
+
/*
* Network interface utility routines.
*
@@ -163,6 +172,9 @@ ifinit()
{
static struct timeout if_slowtim;
+ pool_init(&ifaddr_item_pl, sizeof(struct ifaddr_item), 0, 0, 0,
+ "ifaddritempool", NULL);
+
timeout_set(&if_slowtim, if_slowtimo, &if_slowtim);
if_slowtimo(&if_slowtim);
@@ -888,6 +900,7 @@ ifa_ifwithaddr(struct sockaddr *addr, u_int rdomain)
}
return (NULL);
}
+
/*
* Locate the point to point interface with a given destination address.
*/
@@ -2156,11 +2169,73 @@ ifa_add(struct ifnet *ifp, struct ifaddr *ifa)
TAILQ_INSERT_HEAD(&ifp->if_addrlist, ifa, ifa_list);
else
TAILQ_INSERT_TAIL(&ifp->if_addrlist, ifa, ifa_list);
+ ifa_item_insert(ifa->ifa_addr, ifa, ifp);
+ if (ifp->if_flags & IFF_BROADCAST && ifa->ifa_broadaddr)
+ ifa_item_insert(ifa->ifa_broadaddr, ifa, ifp);
}
void
ifa_del(struct ifnet *ifp, struct ifaddr *ifa)
{
TAILQ_REMOVE(&ifp->if_addrlist, ifa, ifa_list);
+ ifa_item_remove(ifa->ifa_addr, ifa, ifp);
+ if (ifp->if_flags & IFF_BROADCAST && ifa->ifa_broadaddr)
+ ifa_item_remove(ifa->ifa_broadaddr, ifa, ifp);
+}
+
+int
+ifai_cmp(struct ifaddr_item *a, struct ifaddr_item *b)
+{
+ if (a->ifai_rdomain != b->ifai_rdomain)
+ return (a->ifai_rdomain - b->ifai_rdomain);
+ /* safe even with a's sa_len > b's because memcmp aborts early */
+ return (memcmp(a->ifai_addr, b->ifai_addr, a->ifai_addr->sa_len));
+}
+
+void
+ifa_item_insert(struct sockaddr *sa, struct ifaddr *ifa, struct ifnet *ifp)
+{
+ struct ifaddr_item *ifai, *p;
+
+ ifai = pool_get(&ifaddr_item_pl, PR_WAITOK);
+ ifai->ifai_addr = sa;
+ ifai->ifai_ifa = ifa;
+ ifai->ifai_rdomain = ifp->if_rdomain;
+ ifai->ifai_next = NULL;
+ if ((p = RB_INSERT(ifaddr_items, &ifaddr_items, ifai)) != NULL) {
+ if (sa->sa_family == AF_LINK) {
+ RB_REMOVE(ifaddr_items, &ifaddr_items, p);
+ ifai->ifai_next = p;
+ RB_INSERT(ifaddr_items, &ifaddr_items, ifai);
+ } else {
+ while(p->ifai_next)
+ p = p->ifai_next;
+ p->ifai_next = ifai;
+ }
+ }
}
+void
+ifa_item_remove(struct sockaddr *sa, struct ifaddr *ifa, struct ifnet *ifp)
+{
+ struct ifaddr_item *ifai, *ifai_first, *ifai_last, key;
+
+ bzero(&key, sizeof(key));
+ key.ifai_addr = sa;
+ key.ifai_rdomain = ifp->if_rdomain;
+ ifai_first = RB_FIND(ifaddr_items, &ifaddr_items, &key);
+ for (ifai = ifai_first; ifai; ifai = ifai->ifai_next) {
+ if (ifai->ifai_ifa == ifa)
+ break;
+ ifai_last = ifai;
+ }
+ if (!ifai)
+ return;
+ if (ifai == ifai_first) {
+ RB_REMOVE(ifaddr_items, &ifaddr_items, ifai);
+ if (ifai->ifai_next)
+ RB_INSERT(ifaddr_items, &ifaddr_items, ifai->ifai_next);
+ } else
+ ifai_last->ifai_next = ifai->ifai_next;
+ pool_put(&ifaddr_item_pl, ifai);
+}
diff --git a/sys/net/if.h b/sys/net/if.h
index 9b4fa10d4ed..8425dc0fd80 100644
--- a/sys/net/if.h
+++ b/sys/net/if.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if.h,v 1.112 2010/01/13 02:13:12 henning Exp $ */
+/* $OpenBSD: if.h,v 1.113 2010/01/13 02:26:49 henning Exp $ */
/* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */
/*
@@ -36,6 +36,7 @@
#define _NET_IF_H_
#include <sys/queue.h>
+#include <sys/tree.h>
/*
* Always include ALTQ glue here -- we use the ALTQ interface queue
@@ -451,6 +452,14 @@ struct ifaddr {
};
#define IFA_ROUTE RTF_UP /* route installed */
+struct ifaddr_item {
+ RB_ENTRY(ifaddr_item) ifai_entry;
+ struct sockaddr *ifai_addr;
+ struct ifaddr *ifai_ifa;
+ struct ifaddr_item *ifai_next;
+ u_int ifai_rdomain;
+};
+
/*
* Message format for use in obtaining information about interfaces
* from sysctl and the routing socket.