Page MenuHomeFreeBSD

libthr rtld locks: do not leak URWLOCK_READ_WAITERS into child
ClosedPublic

Authored by kib on May 20 2023, 8:28 AM.
Tags
None
Referenced Files
F102987554: D40178.diff
Tue, Nov 19, 12:43 PM
Unknown Object (File)
Sun, Nov 3, 5:15 PM
Unknown Object (File)
Wed, Oct 23, 6:08 AM
Unknown Object (File)
Tue, Oct 22, 10:35 PM
Unknown Object (File)
Mon, Oct 21, 8:45 PM
Unknown Object (File)
Sun, Oct 20, 9:39 PM
Unknown Object (File)
Sun, Oct 20, 9:33 PM
Unknown Object (File)
Sun, Oct 20, 9:33 PM
Subscribers

Details

Summary
Since there is only the current thread in the child, no pending readers
exist.  Clear the bit, since it confuses future attempts to acquire
write ownership of the rtld locks, due to URWLOCK_PREFER_READERS flag.

PR:     271490

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

kib requested review of this revision.May 20 2023, 8:28 AM
kib added a reviewer: markj.

To be future-proof, clear all state about pending writers and readers.

It would be nice to turn the test case from PR 271490 into a regression test case, either in the base system or in stress2.

lib/libthr/thread/thr_rtld.c
161

Perhaps use __predict_false here.

This revision is now accepted and ready to land.May 22 2023, 1:32 PM