Page MenuHomeFreeBSD

kern: dup: do not assume oldfde is valid
ClosedPublic

Authored by kevans on Nov 22 2020, 5:42 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 25, 10:54 AM
Unknown Object (File)
Tue, Mar 18, 11:32 PM
Unknown Object (File)
Mar 6 2025, 8:45 AM
Unknown Object (File)
Feb 22 2025, 2:12 PM
Unknown Object (File)
Feb 8 2025, 1:10 AM
Unknown Object (File)
Feb 1 2025, 12:12 PM
Unknown Object (File)
Jan 13 2025, 2:53 AM
Unknown Object (File)
Dec 5 2024, 7:26 PM
Subscribers

Details

Summary

oldfde may be invalidated if the table has grown due to the operation that we're performing, either via fdalloc() or a direct fdgrowtable_exp().

This was technically OK before rS367927 because the old table remained valid until the filedesc became unused, but now it may be freed immediately if it's an unshared table in a single-threaded process, so it is no longer a good assumption to make.

Diff Detail

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

Event Timeline

I can confirm this fixes the panic that I introduced in r367927.

This revision is now accepted and ready to land.Nov 22 2020, 10:38 PM
This revision was automatically updated to reflect the committed changes.