Page MenuHomeFreeBSD

Don't read if_counters with if_addr_lock held
ClosedPublic

Authored by rstone on Nov 11 2016, 5:41 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Feb 6, 8:33 AM
Unknown Object (File)
Mon, Jan 27, 1:05 AM
Unknown Object (File)
Mon, Jan 27, 12:43 AM
Unknown Object (File)
Sun, Jan 19, 5:28 PM
Unknown Object (File)
Jan 11 2025, 6:52 PM
Unknown Object (File)
Dec 2 2024, 3:58 AM
Unknown Object (File)
Dec 2 2024, 3:58 AM
Unknown Object (File)
Dec 2 2024, 3:38 AM
Subscribers
None

Details

Summary

Calling into an ifnet implementation with the if_addr_lock already
held can cause a LOR and potentially a deadlock, as ifnet
implementations typically can take the if_addr_lock after their
own locks during configuration. Refactor a sysctl handler that
was violating this to read if_counter data in a temporary buffer
before the if_addr_lock is taken, and then copying the data
in its final location later, when the if_addr_lock is held.

PR: 194109
Reported by: Jean-Sebastien Pedron
MFC after: 2 weeks

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

rstone retitled this revision from to Don't read if_counters with if_addr_lock held.
rstone updated this object.
rstone edited the test plan for this revision. (Show Details)
This revision is now accepted and ready to land.Nov 12 2016, 5:38 PM
This revision was automatically updated to reflect the committed changes.