]> Zhao Yanbai Git Server - minix.git/commit
Add libsockevent: a socket event dispatching library 24/3424/1
authorDavid van Moolenbroek <david@minix3.org>
Thu, 21 Jul 2016 20:59:26 +0000 (20:59 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Thu, 9 Mar 2017 23:39:53 +0000 (23:39 +0000)
commit4c27a83389a10199451bd7e0199715b47b95045c
tree2e2058201a506a23d93f3a223651e85b82073a94
parent85723df033e1d687d5a1c1504bdc35063a74cc78
Add libsockevent: a socket event dispatching library

This library provides an event-based abstraction model and dispatching
facility for socket drivers.  Its main goal is to eliminate any and
all need for socket drivers to keep track of pending socket calls.
Additionally, this library takes over responsibility of a number of
other tasks that would otherwise be duplicated between socket drivers,
but in such a way that individual socket drivers retain a large degree
of freedom in terms of API behavior.  The library's main features are:

- suspension, resumption, and cancellation of socket calls;
- an abstraction layer for select(2);
- state tracking of shutdown(2);
- pending (asynchronous) errors and the SO_ERROR socket option;
- listening-socket tracking and the SO_ACCEPTCONN socket option;
- generation of SIGPIPE signals; SO_NOSIGPIPE, MSG_NOSIGNAL;
- send and receive low-watermark tracking, SO_SNDLOWAT, SO_RCVLOWAT;
- send and receive timeout support and SO_SNDTIMEO, SO_RCVTIMEO;
- an abstraction layer for the SO_LINGER socket option;
- tracking of various on/off socket options as well as SO_TYPE;
- a range of pre-checks on socket calls that are required POSIX.

In order to track per-socket state, the library manages an opaque
"sock" object for each socket.  The allocation of such objects is left
entirely to the socket driver.  Each sock object has an associated
callback table for calls from libsockevent to the socket driver.  The
socket driver can raise events on the sock object in order to flag
that any previously suspended operations of a particular type should
be resumed.  The library may defer processing such raised events if
immediate processing could interfere with internal consistency.

The sockevent library is layered on top of libsockdriver, and should
be used by all socket driver implementations if at all possible.

Change-Id: I3eb2c80602a63ef13035f646473360293607ab76
distrib/sets/lists/minix-comp/mi
distrib/sets/lists/minix-debug/mi
lib/Makefile
minix/include/minix/Makefile
minix/include/minix/sockevent.h [new file with mode: 0644]
minix/lib/Makefile
minix/lib/libsockevent/Makefile [new file with mode: 0644]
minix/lib/libsockevent/sockevent.c [new file with mode: 0644]
minix/lib/libsockevent/sockevent_proc.c [new file with mode: 0644]
minix/lib/libsockevent/sockevent_proc.h [new file with mode: 0644]
share/mk/bsd.prog.mk