Page MenuHomeFreeBSD

Fix lock order reversal in lagg_get_counter
AbandonedPublic

Authored by asomers on Oct 20 2016, 10:04 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Aug 24, 2:59 AM
Unknown Object (File)
Tue, Aug 11, 11:22 PM
Unknown Object (File)
Mon, Aug 10, 1:41 PM
Unknown Object (File)
Sun, Aug 9, 5:16 PM
Unknown Object (File)
Fri, Aug 7, 6:53 PM
Unknown Object (File)
Wed, Aug 5, 4:18 AM
Unknown Object (File)
Tue, Aug 4, 4:33 AM
Unknown Object (File)
Jul 28 2026, 9:09 PM
Subscribers

Details

Reviewers
melifaro
glebius
Summary

r272211 introduced a LOR in lagg_get_counter by acquiring the lagg softc
lock after previously acquiring the if_addr lock in sysctl_iflist. My
solution is to opportunistically acquire the lagg softc. If it can't be
locked, then return an old copy of the counters. The user will see what
looks like a lull in traffic, but it will "catch up" the next time that
he checks.

Diff Detail

Event Timeline

asomers retitled this revision from to Fix lock order reversal in lagg_get_counter.
asomers updated this object.
asomers edited the test plan for this revision. (Show Details)
asomers added reviewers: glebius, melifaro.
asomers added a subscriber: ken.

This is not the correct fix. The bug lies in a higher layer; the stack must never call into the ifnet layer with the if_addr_lock already held. I see how to fix the upper layer, so I'll take that.

Obsolete. This bug was fixed in a better way by 308580 by @rstone.