summaryrefslogtreecommitdiffstats
path: root/sys/net/if.c
diff options
context:
space:
mode:
authorbms <bms@FreeBSD.org>2007-03-27 16:11:28 +0000
committerbms <bms@FreeBSD.org>2007-03-27 16:11:28 +0000
commit441b1fffcf1f60b98ed1a108c3b48647ffc35d6f (patch)
tree0c6e5b6e3d60d1ee93994ea858c1ce89495cf428 /sys/net/if.c
parenta8be3c5db775d7348bb09c2d0618af6352050826 (diff)
downloadFreeBSD-src-441b1fffcf1f60b98ed1a108c3b48647ffc35d6f.zip
FreeBSD-src-441b1fffcf1f60b98ed1a108c3b48647ffc35d6f.tar.gz
Fix a case where hardware removal of an interface caused an attempt to
announce an ll_ifma which has gone away. Add a KASSERT to catch regressions. Bug found by: Tom Uffner
Diffstat (limited to 'sys/net/if.c')
-rw-r--r--sys/net/if.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/sys/net/if.c b/sys/net/if.c
index 7e4df75..33adc50 100644
--- a/sys/net/if.c
+++ b/sys/net/if.c
@@ -2512,21 +2512,27 @@ if_delmulti_locked(struct ifnet *ifp, struct ifmultiaddr *ifma, int detaching)
/*
* If the ifnet is detaching, null out references to ifnet,
* so that upper protocol layers will notice, and not attempt
- * to obtain locks for an ifnet which no longer exists.
- * It is OK to call rt_newmaddrmsg() with a NULL ifp.
+ * to obtain locks for an ifnet which no longer exists. The
+ * routing socket announcement must happen before the ifnet
+ * instance is detached from the system.
*/
if (detaching) {
#ifdef DIAGNOSTIC
printf("%s: detaching ifnet instance %p\n", __func__, ifp);
#endif
- ifma->ifma_ifp = NULL;
+ /*
+ * ifp may already be nulled out if we are being reentered
+ * to delete the ll_ifma.
+ */
+ if (ifp != NULL) {
+ rt_newmaddrmsg(RTM_DELMADDR, ifma);
+ ifma->ifma_ifp = NULL;
+ }
}
if (--ifma->ifma_refcount > 0)
return 0;
- rt_newmaddrmsg(RTM_DELMADDR, ifma);
-
/*
* If this ifma is a network-layer ifma, a link-layer ifma may
* have been associated with it. Release it first if so.
OpenPOWER on IntegriCloud