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)
Sat, Mar 7, 1:34 PM
Unknown Object (File)
Tue, Mar 3, 12:12 PM
Unknown Object (File)
Tue, Mar 3, 2:09 AM
Unknown Object (File)
Thu, Feb 12, 2:55 AM
Unknown Object (File)
Jan 28 2026, 5:26 PM
Unknown Object (File)
Dec 25 2025, 5:29 AM
Unknown Object (File)
Dec 24 2025, 2:07 AM
Unknown Object (File)
Dec 14 2025, 9:16 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.