Page MenuHomeFreeBSD

solisten: separate listening sockets from data flow sockets
AbandonedPublic

Authored by glebius on Jan 27 2017, 12:46 AM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 23 2024, 12:39 AM
Unknown Object (File)
Mar 23 2024, 12:01 AM
Unknown Object (File)
Feb 21 2024, 12:07 PM
Unknown Object (File)
Feb 21 2024, 11:09 AM
Unknown Object (File)
Feb 20 2024, 11:23 PM
Unknown Object (File)
Jan 18 2024, 1:28 PM
Unknown Object (File)
Jan 18 2024, 4:30 AM
Unknown Object (File)
Jan 5 2024, 10:43 PM
Subscribers

Details

Reviewers
rwatson
Group Reviewers
network
manpages
transport
Summary

If we look into current struct socket, we see that some functional fields
belong to normal data flow sockets, and other belong to listening socket.
They are never used simultaneously. Now, if we look at socket API, we see
that once a socket underwent transformation to a listening socket, only 3
regular syscalls now may be called: listen(2), accept(2) and close(2) and
a subset of ioctl() and setsockopt() parameters is accepted. A listening
socket cannot be closed from the protocol side, only from user side. So,
listening socket is so different from a dataflow socket, that separating
them looks architecturally right thing to do.

The benefits are:

  1. Nicer code (I hope).
  2. Smaller 'struct socket'.
  3. Having two different locks for socket and solisten, we can try to get rid of ACCEPT_LOCK global lock.

The patch is in a very pre-alpha state. It has been run only in my bhyve VM.

It passes regression tests from tools/regression/sockets and tests/sys,
including the race tests.

For TCP it passes basic functionality testing, but could be there are still
races remaining after ACCEPT_LOCK removal.

For SCTP the patch is unfinished yet. The tricky thing with SCTP is that it
can un-listen a listening socket back to normal socket, doing listen(fd, 0)
on it. My patch has API for that I started working on SCTP, but temporarily
put this problem aside. It looks solvable, but I don't know yet how to test
it. Better first see results with TCP.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 7160
Build 7330: arc lint + arc unit

Event Timeline

glebius retitled this revision from to solisten: separate listening sockets from data flow sockets.
glebius updated this object.
glebius edited the test plan for this revision. (Show Details)
glebius added a reviewer: network.
bz added a subscriber: bz.

Just on principle. Too bad Sam 's not here.

glebius edited edge metadata.

Just a few updates.

Patch radically changed and development moved to https://github.com/glebius/FreeBSD (branch solisten).