]> Zhao Yanbai Git Server - minix.git/commit
Prepare for switch to native BSD socket API 00/3300/2
authorDavid van Moolenbroek <david@minix3.org>
Sun, 21 Feb 2016 17:39:34 +0000 (17:39 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Tue, 23 Feb 2016 14:34:05 +0000 (14:34 +0000)
commitc38dbb97aaadcc2cdb083dcee9aaa15eee55e1fd
tree74a2e2c370f95b4ca07b6b85850d990a977916d3
parent0df28c9fa4ef5089bb1cdfdcfea7906456fefd3e
Prepare for switch to native BSD socket API

Currently, the BSD socket API is implemented in libc, translating the
API calls to character driver operations underneath.  This approach
has several issues:

- it is inefficient, as most character driver operations are specific
  to the socket type, thus requiring that each operation start by
  bruteforcing the socket protocol family and type of the given file
  descriptor using several system calls;
- it requires that libc itself be changed every time system support
  for a new protocol is added;
- various parts of the libc implementations violate the asynchronous
  signal safety POSIX requirements.

In order to resolve all these issues at once, the plan is to turn the
BSD socket calls into system calls, thus making the BSD socket API the
"native" ABI, removing the complexity from libc and instead letting
VFS deal with the socket calls.

The overall change is going to break all networking functionality. In
order to smoothen the transition, this patch introduces the fifteen
new BSD socket system calls, and makes libc try these first before
falling back on the old behavior.  For now, the VFS implementations of
the new calls fail such that libc will always use the fallback cases.
Later on, when we introduce the actual implementation of the native
BSD socket calls, all statically linked programs will automatically
use the new ABI, thus limiting actual application breakage.

In other words: by itself, this patch does nothing, except add a bit
of transitional overhead that will disappear in the future.  The
largest part of the patch is concerned with adding full support for
the new BSD socket system calls to trace(1) - this early addition has
the advantage of making system call tracing output of several socket
calls much more readable already.

Both the system call interfaces and the trace(1) support have already
been tested using code that will be committed later on.

Change-Id: I3460812be50c78be662d857f9d3d6840f3ca917f
28 files changed:
minix/include/minix/callnr.h
minix/include/minix/ipc.h
minix/lib/libc/sys/accept.c
minix/lib/libc/sys/bind.c
minix/lib/libc/sys/connect.c
minix/lib/libc/sys/getpeername.c
minix/lib/libc/sys/getsockname.c
minix/lib/libc/sys/getsockopt.c
minix/lib/libc/sys/listen.c
minix/lib/libc/sys/recvfrom.c
minix/lib/libc/sys/recvmsg.c
minix/lib/libc/sys/sendmsg.c
minix/lib/libc/sys/sendto.c
minix/lib/libc/sys/setsockopt.c
minix/lib/libc/sys/shutdown.c
minix/lib/libc/sys/socket.c
minix/lib/libc/sys/socketpair.c
minix/servers/vfs/Makefile
minix/servers/vfs/proto.h
minix/servers/vfs/socket.c [new file with mode: 0644]
minix/servers/vfs/table.c
minix/tests/common-socket.c
minix/tests/test56.c
minix/usr.bin/trace/call.c
minix/usr.bin/trace/inc.h
minix/usr.bin/trace/ioctl/net.c
minix/usr.bin/trace/proto.h
minix/usr.bin/trace/service/vfs.c