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)
Wed, Sep 9, 5:21 PM
Unknown Object (File)
Mon, Sep 7, 11:43 PM
Unknown Object (File)
Fri, Sep 4, 9:05 PM
Unknown Object (File)
Sat, Aug 29, 6:16 AM
Unknown Object (File)
Sun, Aug 23, 3:56 PM
Unknown Object (File)
Sat, Aug 22, 10:31 PM
Unknown Object (File)
Sun, Aug 16, 8:36 PM
Unknown Object (File)
Sat, Aug 15, 9:10 PM
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
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 45469
Build 42357: arc lint + arc unit

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.