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, Apr 13, 10:19 PM
Unknown Object (File)
Sat, Apr 11, 10:41 AM
Unknown Object (File)
Thu, Mar 26, 1:45 PM
Unknown Object (File)
Mar 7 2026, 1:34 PM
Unknown Object (File)
Mar 3 2026, 12:12 PM
Unknown Object (File)
Mar 3 2026, 2:09 AM
Unknown Object (File)
Feb 12 2026, 2:55 AM
Unknown Object (File)
Jan 28 2026, 5:26 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.