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, Apr 16, 5:36 AM
Unknown Object (File)
Dec 20 2023, 6:51 AM
Unknown Object (File)
Dec 17 2023, 8:28 AM
Unknown Object (File)
Sep 1 2023, 9:18 PM
Unknown Object (File)
Sep 1 2023, 9:18 PM
Unknown Object (File)
Sep 1 2023, 9:17 PM
Unknown Object (File)
Sep 1 2023, 8:56 PM
Unknown Object (File)
Jul 13 2023, 3:28 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.