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)
Sun, Sep 22, 10:54 AM
Unknown Object (File)
Fri, Sep 6, 1:02 AM
Unknown Object (File)
Aug 21 2024, 10:23 PM
Unknown Object (File)
Aug 20 2024, 12:30 PM
Unknown Object (File)
Aug 11 2024, 11:09 PM
Unknown Object (File)
Jul 13 2024, 11:19 PM
Unknown Object (File)
Jun 14 2024, 12:32 PM
Unknown Object (File)
May 24 2024, 7:12 AM
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.