Page MenuHomeFreeBSD

sockets: don't call dom_dispose() on a listening socket
ClosedPublic

Authored by glebius on May 4 2022, 6:44 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Jul 29, 8:42 AM
Unknown Object (File)
Tue, Jul 15, 6:49 AM
Unknown Object (File)
Fri, Jul 11, 12:46 PM
Unknown Object (File)
Fri, Jul 11, 12:31 PM
Unknown Object (File)
Fri, Jul 11, 12:31 PM
Unknown Object (File)
Fri, Jul 11, 12:02 PM
Unknown Object (File)
Jul 1 2025, 2:24 AM
Unknown Object (File)
Jun 27 2025, 6:15 AM
Subscribers

Details

Summary

sorflush() already did the right thing, so only sofree() needed
a fix. Turn check into assertion in our only dom_dispose method.

Diff Detail

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

Event Timeline

markj added a subscriber: markj.

Does this fix a bug? It's not obvious to me if so. Setting UNPGC_IGNORE_RIGHTS on the listening socket should be harmless.

This revision is now accepted and ready to land.May 4 2022, 7:29 PM

There is no bug here. The disposal is a socket buffer operation, so better do the check one layer up. This is a preparation before merging: sorflush(), dom_dispose, pru_flush and pru_shutdown into a single pru_shutdown method.