Page MenuHomeFreeBSD

mtx: Avoid nested panics on lock class mismatch assertions
ClosedPublic

Authored by jhb on Tue, Mar 11, 1:38 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 3, 1:58 PM
Unknown Object (File)
Fri, Mar 21, 8:16 PM
Unknown Object (File)
Wed, Mar 19, 11:18 AM
Unknown Object (File)
Mon, Mar 17, 9:16 AM
Unknown Object (File)
Sun, Mar 16, 10:33 PM
Unknown Object (File)
Sat, Mar 15, 11:03 PM
Unknown Object (File)
Sat, Mar 15, 10:57 PM
Unknown Object (File)
Sat, Mar 15, 6:16 PM
Subscribers

Details

Summary

It is only (somewhat) safe to dereference lo_name if we know the mutex
has a specific lock class that is incorrect, not if just has "some"
incorrect lock clas. In particular, in the case of memory overwritten
with 0xdeadc0de, the lock class won't match either mutex type.
However, trying to dereference lo_name via a 0xdeadc0de pointer
triggers a nested panic building the panicstr which then prevents a
crash dump.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

jhb requested review of this revision.Tue, Mar 11, 1:38 AM

I ran into this in CheriBSD where a lock was filled with 0xdeadc0de due to a type confusion bug and the value of the lo_name pointer was filled with 0xdeadc0de. Possibly we could keep the assertion as-is but avoiding printing the lock name at all, just print the pointer? OTOH, we don't require matching classes for other locks. I also think the main point of these assertions is to catch cross-threading in the API, so having them narrower but give a meaningful panic string is probably useful (and why I've chosen to fix it this way). (I've long wanted to make a separate struct spinlock or some such and have mtx only be MTX_DEF and then all these assertions would go away as they would become compile errors.)

This revision is now accepted and ready to land.Tue, Mar 11, 11:34 AM

Note the 'clas' (single s) in the last word of the first sentence of the summary.