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
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
@@ -18,20 +19,50 @@
|
||||
#include <net/gen/udp.h>
|
||||
#include <net/gen/udp_io.h>
|
||||
|
||||
#define DEBUG 0
|
||||
|
||||
static int _tcp_accept(int sock, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len);
|
||||
|
||||
static int _uds_accept(int sock, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len);
|
||||
|
||||
/*
|
||||
* Accept a connection on a listening socket, creating a new socket.
|
||||
*/
|
||||
static int
|
||||
__accept(int fd, struct sockaddr * __restrict address,
|
||||
socklen_t * __restrict address_len)
|
||||
{
|
||||
message m;
|
||||
int r;
|
||||
|
||||
if (address != NULL && address_len == NULL) {
|
||||
errno = EFAULT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sockaddr.fd = fd;
|
||||
m.m_lc_vfs_sockaddr.addr = (vir_bytes)address;
|
||||
m.m_lc_vfs_sockaddr.addr_len = (address != NULL) ? *address_len : 0;
|
||||
|
||||
if ((r = _syscall(VFS_PROC_NR, VFS_ACCEPT, &m)) < 0)
|
||||
return -1;
|
||||
|
||||
if (address != NULL)
|
||||
*address_len = m.m_vfs_lc_socklen.len;
|
||||
return r;
|
||||
}
|
||||
|
||||
int accept(int sock, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len)
|
||||
{
|
||||
int r;
|
||||
nwio_udpopt_t udpopt;
|
||||
|
||||
r = __accept(sock, address, address_len);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
r= _tcp_accept(sock, address, address_len);
|
||||
if (r != -1 || errno != ENOTTY)
|
||||
return r;
|
||||
@@ -45,19 +76,14 @@ int accept(int sock, struct sockaddr *__restrict address,
|
||||
* filedescriptors that do not refer to a socket.
|
||||
*/
|
||||
r= ioctl(sock, NWIOGUDPOPT, &udpopt);
|
||||
if (r == 0)
|
||||
{
|
||||
if (r == 0 || (r == -1 && errno != ENOTTY)) {
|
||||
/* UDP socket */
|
||||
errno= EOPNOTSUPP;
|
||||
return -1;
|
||||
}
|
||||
if (errno == ENOTTY)
|
||||
{
|
||||
errno= ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
return r;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
static int _tcp_accept(int sock, struct sockaddr *__restrict address,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <unistd.h>
|
||||
#include <stdint.h>
|
||||
@@ -33,6 +34,22 @@ static int _udp_bind(int sock, const struct sockaddr *address,
|
||||
static int _uds_bind(int sock, const struct sockaddr *address,
|
||||
socklen_t address_len, struct sockaddr_un *uds_addr);
|
||||
|
||||
/*
|
||||
* Bind a socket to a local address.
|
||||
*/
|
||||
static int
|
||||
__bind(int fd, const struct sockaddr * address, socklen_t address_len)
|
||||
{
|
||||
message m;
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sockaddr.fd = fd;
|
||||
m.m_lc_vfs_sockaddr.addr = (vir_bytes)address;
|
||||
m.m_lc_vfs_sockaddr.addr_len = address_len;
|
||||
|
||||
return _syscall(VFS_PROC_NR, VFS_BIND, &m);
|
||||
}
|
||||
|
||||
int bind(int sock, const struct sockaddr *address, socklen_t address_len)
|
||||
{
|
||||
int r;
|
||||
@@ -40,6 +57,10 @@ int bind(int sock, const struct sockaddr *address, socklen_t address_len)
|
||||
nwio_udpopt_t udpopt;
|
||||
struct sockaddr_un uds_addr;
|
||||
|
||||
r = __bind(sock, address, address_len);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
r= ioctl(sock, NWIOGTCPCONF, &tcpconf);
|
||||
if (r != -1 || errno != ENOTTY)
|
||||
{
|
||||
@@ -74,10 +95,7 @@ int bind(int sock, const struct sockaddr *address, socklen_t address_len)
|
||||
return _uds_bind(sock, address, address_len, &uds_addr);
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "bind: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
errno= ENOSYS;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <minix/config.h>
|
||||
|
||||
#include <errno.h>
|
||||
@@ -31,6 +33,22 @@ static int _udp_connect(int sock, const struct sockaddr *address,
|
||||
static int _uds_connect(int sock, const struct sockaddr *address,
|
||||
socklen_t address_len);
|
||||
|
||||
/*
|
||||
* Connect a socket to a remote address.
|
||||
*/
|
||||
static int
|
||||
__connect(int fd, const struct sockaddr * address, socklen_t address_len)
|
||||
{
|
||||
message m;
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sockaddr.fd = fd;
|
||||
m.m_lc_vfs_sockaddr.addr = (vir_bytes)address;
|
||||
m.m_lc_vfs_sockaddr.addr_len = address_len;
|
||||
|
||||
return _syscall(VFS_PROC_NR, VFS_CONNECT, &m);
|
||||
}
|
||||
|
||||
int connect(int sock, const struct sockaddr *address,
|
||||
socklen_t address_len)
|
||||
{
|
||||
@@ -38,6 +56,10 @@ int connect(int sock, const struct sockaddr *address,
|
||||
nwio_tcpconf_t tcpconf;
|
||||
nwio_udpopt_t udpopt;
|
||||
|
||||
r = __connect(sock, address, address_len);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
r= ioctl(sock, NWIOGTCPCONF, &tcpconf);
|
||||
if (r != -1 || errno != ENOTTY)
|
||||
{
|
||||
@@ -72,10 +94,7 @@ int connect(int sock, const struct sockaddr *address,
|
||||
return r;
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "connect: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
errno= ENOSYS;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
@@ -15,8 +16,6 @@
|
||||
#include <net/gen/udp_io.h>
|
||||
#include <sys/un.h>
|
||||
|
||||
#define DEBUG 0
|
||||
|
||||
static int _tcp_getpeername(int sock, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len, nwio_tcpconf_t *tcpconfp);
|
||||
|
||||
@@ -26,6 +25,32 @@ static int _udp_getpeername(int sock, struct sockaddr *__restrict address,
|
||||
static int _uds_getpeername(int sock, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len, struct sockaddr_un *uds_addr);
|
||||
|
||||
/*
|
||||
* Get the remote address of a socket.
|
||||
*/
|
||||
static int
|
||||
__getpeername(int fd, struct sockaddr * __restrict address,
|
||||
socklen_t * __restrict address_len)
|
||||
{
|
||||
message m;
|
||||
|
||||
if (address_len == NULL) {
|
||||
errno = EFAULT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sockaddr.fd = fd;
|
||||
m.m_lc_vfs_sockaddr.addr = (vir_bytes)address;
|
||||
m.m_lc_vfs_sockaddr.addr_len = *address_len;
|
||||
|
||||
if (_syscall(VFS_PROC_NR, VFS_GETPEERNAME, &m) < 0)
|
||||
return -1;
|
||||
|
||||
*address_len = m.m_vfs_lc_socklen.len;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int getpeername(int sock, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len)
|
||||
{
|
||||
@@ -34,6 +59,10 @@ int getpeername(int sock, struct sockaddr *__restrict address,
|
||||
nwio_udpopt_t udpopt;
|
||||
struct sockaddr_un uds_addr;
|
||||
|
||||
r = __getpeername(sock, address, address_len);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
r= ioctl(sock, NWIOGTCPCONF, &tcpconf);
|
||||
if (r != -1 || errno != ENOTTY)
|
||||
{
|
||||
@@ -70,11 +99,7 @@ int getpeername(int sock, struct sockaddr *__restrict address,
|
||||
&uds_addr);
|
||||
}
|
||||
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "getpeername: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
errno= ENOSYS;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,13 +1,7 @@
|
||||
/*
|
||||
|
||||
getsockname()
|
||||
|
||||
from socket emulation library for Minix 2.0.x
|
||||
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
@@ -22,9 +16,7 @@
|
||||
#include <net/gen/udp_io.h>
|
||||
#include <sys/un.h>
|
||||
|
||||
/*
|
||||
#define DEBUG 0
|
||||
*/
|
||||
|
||||
static int _tcp_getsockname(int fd, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len, nwio_tcpconf_t *tcpconfp);
|
||||
@@ -35,6 +27,32 @@ static int _udp_getsockname(int fd, struct sockaddr *__restrict address,
|
||||
static int _uds_getsockname(int fd, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len, struct sockaddr_un *uds_addr);
|
||||
|
||||
/*
|
||||
* Get the local address of a socket.
|
||||
*/
|
||||
static int
|
||||
__getsockname(int fd, struct sockaddr * __restrict address,
|
||||
socklen_t * __restrict address_len)
|
||||
{
|
||||
message m;
|
||||
|
||||
if (address_len == NULL) {
|
||||
errno = EFAULT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sockaddr.fd = fd;
|
||||
m.m_lc_vfs_sockaddr.addr = (vir_bytes)address;
|
||||
m.m_lc_vfs_sockaddr.addr_len = *address_len;
|
||||
|
||||
if (_syscall(VFS_PROC_NR, VFS_GETSOCKNAME, &m) < 0)
|
||||
return -1;
|
||||
|
||||
*address_len = m.m_vfs_lc_socklen.len;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int getsockname(int fd, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len)
|
||||
{
|
||||
@@ -43,7 +61,11 @@ int getsockname(int fd, struct sockaddr *__restrict address,
|
||||
nwio_udpopt_t udpopt;
|
||||
struct sockaddr_un uds_addr;
|
||||
|
||||
#ifdef DEBUG
|
||||
r = __getsockname(fd, address, address_len);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr,"mnx_getsockname: ioctl fd %d.\n", fd);
|
||||
#endif
|
||||
|
||||
@@ -83,11 +105,7 @@ int getsockname(int fd, struct sockaddr *__restrict address,
|
||||
return _uds_getsockname(fd, address, address_len, &uds_addr);
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "getsockname: not implemented for fd %d\n", socket);
|
||||
#endif
|
||||
|
||||
errno= ENOSYS;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
@@ -30,6 +31,34 @@ static int _uds_getsockopt(int sock, int level, int option_name,
|
||||
static void getsockopt_copy(void *return_value, size_t return_len,
|
||||
void *__restrict option_value, socklen_t *__restrict option_len);
|
||||
|
||||
/*
|
||||
* Get socket options.
|
||||
*/
|
||||
static int
|
||||
__getsockopt(int fd, int level, int option_name,
|
||||
void * __restrict option_value, socklen_t * __restrict option_len)
|
||||
{
|
||||
message m;
|
||||
|
||||
if (option_len == NULL) {
|
||||
errno = EFAULT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sockopt.fd = fd;
|
||||
m.m_lc_vfs_sockopt.level = level;
|
||||
m.m_lc_vfs_sockopt.name = option_name;
|
||||
m.m_lc_vfs_sockopt.buf = (vir_bytes)option_value;
|
||||
m.m_lc_vfs_sockopt.len = *option_len;
|
||||
|
||||
if (_syscall(VFS_PROC_NR, VFS_GETSOCKOPT, &m) < 0)
|
||||
return -1;
|
||||
|
||||
*option_len = m.m_vfs_lc_socklen.len;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int getsockopt(int sock, int level, int option_name,
|
||||
void *__restrict option_value, socklen_t *__restrict option_len)
|
||||
{
|
||||
@@ -38,6 +67,10 @@ int getsockopt(int sock, int level, int option_name,
|
||||
nwio_udpopt_t udpopt;
|
||||
struct sockaddr_un uds_addr;
|
||||
|
||||
r = __getsockopt(sock, level, option_name, option_value, option_len);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
r= ioctl(sock, NWIOGTCPOPT, &tcpopt);
|
||||
if (r != -1 || errno != ENOTTY)
|
||||
{
|
||||
@@ -74,11 +107,7 @@ int getsockopt(int sock, int level, int option_name,
|
||||
option_value, option_len);
|
||||
}
|
||||
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "getsockopt: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
errno= ENOTSOCK;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
@@ -14,12 +15,29 @@
|
||||
#include <net/gen/udp.h>
|
||||
#include <net/gen/udp_io.h>
|
||||
|
||||
#define DEBUG 0
|
||||
/*
|
||||
* Put a socket in listening mode.
|
||||
*/
|
||||
static int
|
||||
__listen(int fd, int backlog)
|
||||
{
|
||||
message m;
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_listen.fd = fd;
|
||||
m.m_lc_vfs_listen.backlog = backlog;
|
||||
|
||||
return _syscall(VFS_PROC_NR, VFS_LISTEN, &m);
|
||||
}
|
||||
|
||||
int listen(int sock, int backlog)
|
||||
{
|
||||
int r;
|
||||
|
||||
r = __listen(sock, backlog);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
r= ioctl(sock, NWIOTCPLISTENQ, &backlog);
|
||||
if (r != -1 || errno != ENOTTY)
|
||||
return r;
|
||||
@@ -28,10 +46,6 @@ int listen(int sock, int backlog)
|
||||
if (r != -1 || errno != ENOTTY)
|
||||
return r;
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "listen: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
errno= ENOSYS;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
@@ -36,6 +37,38 @@ static ssize_t _uds_recvfrom_dgram(int sock, void *__restrict buffer,
|
||||
size_t length, int flags, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len);
|
||||
|
||||
/*
|
||||
* Receive a message from a socket.
|
||||
*/
|
||||
static ssize_t
|
||||
__recvfrom(int fd, void * __restrict buffer, size_t length, int flags,
|
||||
struct sockaddr * __restrict address,
|
||||
socklen_t * __restrict address_len)
|
||||
{
|
||||
message m;
|
||||
ssize_t r;
|
||||
|
||||
if (address != NULL && address_len == NULL) {
|
||||
errno = EFAULT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sendrecv.fd = fd;
|
||||
m.m_lc_vfs_sendrecv.buf = (vir_bytes)buffer;
|
||||
m.m_lc_vfs_sendrecv.len = length;
|
||||
m.m_lc_vfs_sendrecv.flags = flags;
|
||||
m.m_lc_vfs_sendrecv.addr = (vir_bytes)address;
|
||||
m.m_lc_vfs_sendrecv.addr_len = (address != NULL) ? *address_len : 0;
|
||||
|
||||
if ((r = _syscall(VFS_PROC_NR, VFS_RECVFROM, &m)) < 0)
|
||||
return -1;
|
||||
|
||||
if (address != NULL)
|
||||
*address_len = m.m_vfs_lc_socklen.len;
|
||||
return r;
|
||||
}
|
||||
|
||||
ssize_t recvfrom(int sock, void *__restrict buffer, size_t length,
|
||||
int flags, struct sockaddr *__restrict address,
|
||||
socklen_t *__restrict address_len)
|
||||
@@ -47,6 +80,10 @@ ssize_t recvfrom(int sock, void *__restrict buffer, size_t length,
|
||||
struct sockaddr_un uds_addr;
|
||||
int uds_sotype = -1;
|
||||
|
||||
r = __recvfrom(sock, buffer, length, flags, address, address_len);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "recvfrom: for fd %d\n", sock);
|
||||
#endif
|
||||
@@ -121,12 +158,10 @@ ssize_t recvfrom(int sock, void *__restrict buffer, size_t length,
|
||||
}
|
||||
|
||||
return rd;
|
||||
}
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "recvfrom: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
abort();
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
static ssize_t _tcp_recvfrom(int sock, void *__restrict buffer, size_t length,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
@@ -16,11 +17,82 @@
|
||||
static ssize_t _uds_recvmsg_conn(int sock, struct msghdr *msg, int flags);
|
||||
static ssize_t _uds_recvmsg_dgram(int sock, struct msghdr *msg, int flags);
|
||||
|
||||
/*
|
||||
* Receive a message from a socket using a message structure.
|
||||
*/
|
||||
static ssize_t
|
||||
__recvmsg(int fd, struct msghdr * msg, int flags)
|
||||
{
|
||||
struct iovec iov;
|
||||
struct msghdr msg2, *msgp;
|
||||
char *ptr;
|
||||
message m;
|
||||
ssize_t r;
|
||||
|
||||
/*
|
||||
* Currently, MINIX3 does not support vector I/O operations. Like in
|
||||
* the readv and writev implementations, we coalesce the data vector
|
||||
* into a single buffer used for I/O. For future ABI compatibility, we
|
||||
* then supply this buffer as a single vector element. This involves
|
||||
* supplying a modified copy of the message header, as well as extra
|
||||
* pre-checks. Once true vector I/O support has been added, the checks
|
||||
* and vector I/O coalescing can be removed from here, leaving just the
|
||||
* system call. Nothing will change at the system call ABI level.
|
||||
*/
|
||||
if (msg == NULL || (msg->msg_iovlen > 1 && msg->msg_iov == NULL)) {
|
||||
errno = EFAULT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (msg->msg_iovlen < 0 || msg->msg_iovlen > IOV_MAX) {
|
||||
errno = EMSGSIZE; /* different from readv/writev */
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (msg->msg_iovlen > 1) {
|
||||
if ((r = _vectorio_setup(msg->msg_iov, msg->msg_iovlen, &ptr,
|
||||
_VECTORIO_READ)) < 0)
|
||||
return -1;
|
||||
|
||||
iov.iov_base = ptr;
|
||||
iov.iov_len = r;
|
||||
|
||||
memcpy(&msg2, msg, sizeof(msg2));
|
||||
msg2.msg_iov = &iov;
|
||||
msg2.msg_iovlen = 1;
|
||||
msgp = &msg2;
|
||||
} else
|
||||
msgp = msg;
|
||||
|
||||
/* Issue the actual system call. */
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sockmsg.fd = fd;
|
||||
m.m_lc_vfs_sockmsg.msgbuf = (vir_bytes)msgp;
|
||||
m.m_lc_vfs_sockmsg.flags = flags;
|
||||
|
||||
r = _syscall(VFS_PROC_NR, VFS_RECVMSG, &m);
|
||||
|
||||
/* If we coalesced the vector, clean up and copy back the results. */
|
||||
if (msgp != msg) {
|
||||
_vectorio_cleanup(msg->msg_iov, msg->msg_iovlen, ptr, r,
|
||||
_VECTORIO_READ);
|
||||
|
||||
if (r >= 0)
|
||||
memcpy(msg, &msg2, sizeof(msg2));
|
||||
}
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
ssize_t recvmsg(int sock, struct msghdr *msg, int flags)
|
||||
{
|
||||
int r;
|
||||
int uds_sotype;
|
||||
|
||||
r = __recvmsg(sock, msg, flags);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
if (msg == NULL) {
|
||||
errno= EFAULT;
|
||||
return -1;
|
||||
@@ -39,11 +111,7 @@ ssize_t recvmsg(int sock, struct msghdr *msg, int flags)
|
||||
}
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "recvmsg: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
|
||||
errno= ENOSYS;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
@@ -17,11 +18,79 @@ static ssize_t _uds_sendmsg_conn(int sock, const struct msghdr *msg,
|
||||
static ssize_t _uds_sendmsg_dgram(int sock, const struct msghdr *msg,
|
||||
int flags);
|
||||
|
||||
/*
|
||||
* Send a message on a socket using a message structure.
|
||||
*/
|
||||
static ssize_t
|
||||
__sendmsg(int fd, const struct msghdr * msg, int flags)
|
||||
{
|
||||
struct iovec iov;
|
||||
const struct msghdr *msgp;
|
||||
struct msghdr msg2;
|
||||
char *ptr;
|
||||
message m;
|
||||
ssize_t r;
|
||||
|
||||
/*
|
||||
* Currently, MINIX3 does not support vector I/O operations. Like in
|
||||
* the readv and writev implementations, we coalesce the data vector
|
||||
* into a single buffer used for I/O. For future ABI compatibility, we
|
||||
* then supply this buffer as a single vector element. This involves
|
||||
* supplying a modified copy of the message header, as well as extra
|
||||
* pre-checks. Once true vector I/O support has been added, the checks
|
||||
* and vector I/O coalescing can be removed from here, leaving just the
|
||||
* system call. Nothing will change at the system call ABI level.
|
||||
*/
|
||||
if (msg == NULL || (msg->msg_iovlen > 1 && msg->msg_iov == NULL)) {
|
||||
errno = EFAULT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (msg->msg_iovlen < 0 || msg->msg_iovlen > IOV_MAX) {
|
||||
errno = EMSGSIZE; /* different from readv/writev */
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (msg->msg_iovlen > 1) {
|
||||
if ((r = _vectorio_setup(msg->msg_iov, msg->msg_iovlen, &ptr,
|
||||
_VECTORIO_WRITE)) < 0)
|
||||
return -1;
|
||||
|
||||
iov.iov_base = ptr;
|
||||
iov.iov_len = r;
|
||||
|
||||
memcpy(&msg2, msg, sizeof(msg2));
|
||||
msg2.msg_iov = &iov;
|
||||
msg2.msg_iovlen = 1;
|
||||
msgp = &msg2;
|
||||
} else
|
||||
msgp = msg;
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sockmsg.fd = fd;
|
||||
m.m_lc_vfs_sockmsg.msgbuf = (vir_bytes)msgp;
|
||||
m.m_lc_vfs_sockmsg.flags = flags;
|
||||
|
||||
r = _syscall(VFS_PROC_NR, VFS_SENDMSG, &m);
|
||||
|
||||
/* If we coalesced the vector, clean up. */
|
||||
if (msgp != msg) {
|
||||
_vectorio_cleanup(msg->msg_iov, msg->msg_iovlen, ptr, r,
|
||||
_VECTORIO_WRITE);
|
||||
}
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
ssize_t sendmsg(int sock, const struct msghdr *msg, int flags)
|
||||
{
|
||||
int r;
|
||||
int uds_sotype;
|
||||
|
||||
r = __sendmsg(sock, msg, flags);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
if (msg == NULL) {
|
||||
errno= EFAULT;
|
||||
return -1;
|
||||
@@ -41,11 +110,7 @@ ssize_t sendmsg(int sock, const struct msghdr *msg, int flags)
|
||||
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "sendmsg: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
|
||||
errno= ENOSYS;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
@@ -32,6 +33,26 @@ static ssize_t _uds_sendto_conn(int sock, const void *message, size_t length,
|
||||
static ssize_t _uds_sendto_dgram(int sock, const void *message, size_t length,
|
||||
int flags, const struct sockaddr *dest_addr, socklen_t dest_len);
|
||||
|
||||
/*
|
||||
* Send a message on a socket.
|
||||
*/
|
||||
static ssize_t
|
||||
__sendto(int fd, const void * buffer, size_t length, int flags,
|
||||
const struct sockaddr * dest_addr, socklen_t dest_len)
|
||||
{
|
||||
message m;
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sendrecv.fd = fd;
|
||||
m.m_lc_vfs_sendrecv.buf = (vir_bytes)buffer;
|
||||
m.m_lc_vfs_sendrecv.len = length;
|
||||
m.m_lc_vfs_sendrecv.flags = flags;
|
||||
m.m_lc_vfs_sendrecv.addr = (vir_bytes)dest_addr;
|
||||
m.m_lc_vfs_sendrecv.addr_len = dest_len;
|
||||
|
||||
return _syscall(VFS_PROC_NR, VFS_SENDTO, &m);
|
||||
}
|
||||
|
||||
ssize_t sendto(int sock, const void *message, size_t length, int flags,
|
||||
const struct sockaddr *dest_addr, socklen_t dest_len)
|
||||
{
|
||||
@@ -41,6 +62,10 @@ ssize_t sendto(int sock, const void *message, size_t length, int flags,
|
||||
nwio_ipopt_t ipopt;
|
||||
int uds_sotype = -1;
|
||||
|
||||
r = __sendto(sock, message, length, flags, dest_addr, dest_len);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
r= ioctl(sock, NWIOGTCPOPT, &tcpopt);
|
||||
if (r != -1 || errno != ENOTTY)
|
||||
{
|
||||
@@ -114,10 +139,7 @@ ssize_t sendto(int sock, const void *message, size_t length, int flags,
|
||||
return retval;
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "sendto: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
errno= ENOSYS;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
@@ -26,6 +28,25 @@ static int _udp_setsockopt(int sock, int level, int option_name,
|
||||
static int _uds_setsockopt(int sock, int level, int option_name,
|
||||
const void *option_value, socklen_t option_len);
|
||||
|
||||
/*
|
||||
* Set socket options.
|
||||
*/
|
||||
static int
|
||||
__setsockopt(int fd, int level, int option_name, const void * option_value,
|
||||
socklen_t option_len)
|
||||
{
|
||||
message m;
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_sockopt.fd = fd;
|
||||
m.m_lc_vfs_sockopt.level = level;
|
||||
m.m_lc_vfs_sockopt.name = option_name;
|
||||
m.m_lc_vfs_sockopt.buf = (vir_bytes)option_value;
|
||||
m.m_lc_vfs_sockopt.len = option_len;
|
||||
|
||||
return _syscall(VFS_PROC_NR, VFS_SETSOCKOPT, &m);
|
||||
}
|
||||
|
||||
int setsockopt(int sock, int level, int option_name,
|
||||
const void *option_value, socklen_t option_len)
|
||||
{
|
||||
@@ -34,6 +55,10 @@ int setsockopt(int sock, int level, int option_name,
|
||||
nwio_udpopt_t udpopt;
|
||||
struct sockaddr_un uds_addr;
|
||||
|
||||
r = __setsockopt(sock, level, option_name, option_value, option_len);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
r= ioctl(sock, NWIOGTCPOPT, &tcpopt);
|
||||
if (r != -1 || errno != ENOTTY)
|
||||
{
|
||||
@@ -70,11 +95,7 @@ int setsockopt(int sock, int level, int option_name,
|
||||
option_value, option_len);
|
||||
}
|
||||
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "setsockopt: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
errno= ENOTSOCK;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/ioctl.h>
|
||||
@@ -16,12 +18,31 @@
|
||||
static int _tcp_shutdown(int sock, int how);
|
||||
static int _uds_shutdown(int sock, int how);
|
||||
|
||||
/*
|
||||
* Shut down socket send and receive operations.
|
||||
*/
|
||||
static int
|
||||
__shutdown(int fd, int how)
|
||||
{
|
||||
message m;
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_shutdown.fd = fd;
|
||||
m.m_lc_vfs_shutdown.how = how;
|
||||
|
||||
return _syscall(VFS_PROC_NR, VFS_SHUTDOWN, &m);
|
||||
}
|
||||
|
||||
int shutdown(int sock, int how)
|
||||
{
|
||||
int r;
|
||||
struct sockaddr_un uds_addr;
|
||||
nwio_tcpconf_t tcpconf;
|
||||
|
||||
r = __shutdown(sock, how);
|
||||
if (r != -1 || errno != ENOTSOCK)
|
||||
return r;
|
||||
|
||||
r= ioctl(sock, NWIOGTCPCONF, &tcpconf);
|
||||
if (r != -1 || errno != ENOTTY)
|
||||
{
|
||||
@@ -44,10 +65,7 @@ int shutdown(int sock, int how)
|
||||
return _uds_shutdown(sock, how);
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "shutdown: not implemented for fd %d\n", sock);
|
||||
#endif
|
||||
errno= ENOSYS;
|
||||
errno = ENOTSOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#ifdef __weak_alias
|
||||
__weak_alias(socket, __socket30)
|
||||
@@ -38,9 +39,29 @@ static int _uds_socket(int type, int protocol);
|
||||
static int _raw_socket(int type, int protocol);
|
||||
static void _socket_flags(int type, int *result);
|
||||
|
||||
/*
|
||||
* Create a socket.
|
||||
*/
|
||||
static int
|
||||
__socket(int domain, int type, int protocol)
|
||||
{
|
||||
message m;
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_socket.domain = domain;
|
||||
m.m_lc_vfs_socket.type = type;
|
||||
m.m_lc_vfs_socket.protocol = protocol;
|
||||
|
||||
return _syscall(VFS_PROC_NR, VFS_SOCKET, &m);
|
||||
}
|
||||
|
||||
int socket(int domain, int type, int protocol)
|
||||
{
|
||||
int sock_type;
|
||||
int r, sock_type;
|
||||
|
||||
r = __socket(domain, type, protocol);
|
||||
if (r != -1 || errno != EAFNOSUPPORT)
|
||||
return r;
|
||||
|
||||
sock_type = type & ~SOCK_FLAGS_MASK;
|
||||
|
||||
@@ -48,37 +69,25 @@ int socket(int domain, int type, int protocol)
|
||||
fprintf(stderr, "socket: domain %d, type %d, protocol %d\n",
|
||||
domain, type, protocol);
|
||||
#endif
|
||||
if (domain != AF_INET && domain != AF_UNIX)
|
||||
{
|
||||
#if DEBUG
|
||||
fprintf(stderr, "socket: bad domain %d\n", domain);
|
||||
#endif
|
||||
errno= EAFNOSUPPORT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (domain == AF_UNIX && (sock_type == SOCK_STREAM ||
|
||||
sock_type == SOCK_DGRAM ||
|
||||
sock_type == SOCK_SEQPACKET))
|
||||
if (domain == AF_UNIX)
|
||||
return _uds_socket(type, protocol);
|
||||
|
||||
if (domain == AF_INET && sock_type == SOCK_STREAM)
|
||||
return _tcp_socket(type, protocol);
|
||||
if (domain == AF_INET) {
|
||||
switch (sock_type) {
|
||||
case SOCK_STREAM:
|
||||
return _tcp_socket(type, protocol);
|
||||
case SOCK_DGRAM:
|
||||
return _udp_socket(type, protocol);
|
||||
case SOCK_RAW:
|
||||
return _raw_socket(type, protocol);
|
||||
default:
|
||||
errno = EPROTOTYPE;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
if (domain == AF_INET && sock_type == SOCK_DGRAM)
|
||||
return _udp_socket(type, protocol);
|
||||
|
||||
if (domain == AF_INET && sock_type == SOCK_RAW && protocol == IPPROTO_ICMP)
|
||||
return _raw_socket(type, protocol);
|
||||
|
||||
if (domain == AF_INET && sock_type == SOCK_RAW && protocol == IPPROTO_UDP)
|
||||
return _raw_socket(type, protocol);
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "socket: nothing for domain %d, type %d, protocol %d\n",
|
||||
domain, type, protocol);
|
||||
#endif
|
||||
errno= EPROTOTYPE;
|
||||
errno = EAFNOSUPPORT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -194,6 +203,15 @@ static int _raw_socket(int type, int protocol)
|
||||
static int _uds_socket(int type, int protocol)
|
||||
{
|
||||
int fd, r, flags = O_RDWR, sock_type;
|
||||
|
||||
sock_type = type & ~SOCK_FLAGS_MASK;
|
||||
if (sock_type != SOCK_STREAM &&
|
||||
sock_type != SOCK_DGRAM &&
|
||||
sock_type != SOCK_SEQPACKET) {
|
||||
errno = EPROTOTYPE;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (protocol != 0)
|
||||
{
|
||||
#if DEBUG
|
||||
@@ -212,7 +230,6 @@ static int _uds_socket(int type, int protocol)
|
||||
/* set the type for the socket via ioctl (SOCK_DGRAM,
|
||||
* SOCK_STREAM, SOCK_SEQPACKET, etc)
|
||||
*/
|
||||
sock_type = type & ~SOCK_FLAGS_MASK;
|
||||
r= ioctl(fd, NWIOSUDSTYPE, &sock_type);
|
||||
if (r == -1) {
|
||||
int ioctl_errno;
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
#include <sys/cdefs.h>
|
||||
#include "namespace.h"
|
||||
#include <lib.h>
|
||||
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <fcntl.h>
|
||||
@@ -17,32 +19,44 @@
|
||||
static int _uds_socketpair(int type, int protocol, int sv[2]);
|
||||
|
||||
/*
|
||||
* Create a pair of connected sockets
|
||||
* Create a pair of connected sockets.
|
||||
*/
|
||||
int socketpair(int domain, int type, int protocol, int sv[2]) {
|
||||
static int
|
||||
__socketpair(int domain, int type, int protocol, int sv[2])
|
||||
{
|
||||
message m;
|
||||
|
||||
memset(&m, 0, sizeof(m));
|
||||
m.m_lc_vfs_socket.domain = domain;
|
||||
m.m_lc_vfs_socket.type = type;
|
||||
m.m_lc_vfs_socket.protocol = protocol;
|
||||
|
||||
if (_syscall(VFS_PROC_NR, VFS_SOCKETPAIR, &m) < 0)
|
||||
return -1;
|
||||
|
||||
sv[0] = m.m_vfs_lc_fdpair.fd0;
|
||||
sv[1] = m.m_vfs_lc_fdpair.fd1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
socketpair(int domain, int type, int protocol, int sv[2])
|
||||
{
|
||||
int r;
|
||||
|
||||
r = __socketpair(domain, type, protocol, sv);
|
||||
if (r != -1 || errno != EAFNOSUPPORT)
|
||||
return r;
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr, "socketpair: domain %d, type %d, protocol %d\n",
|
||||
domain, type, protocol);
|
||||
#endif
|
||||
|
||||
if (domain != AF_UNIX)
|
||||
{
|
||||
errno = EAFNOSUPPORT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (domain == AF_UNIX &&
|
||||
(type == SOCK_STREAM || type == SOCK_SEQPACKET))
|
||||
if (domain == AF_UNIX)
|
||||
return _uds_socketpair(type, protocol, sv);
|
||||
|
||||
#if DEBUG
|
||||
fprintf(stderr,
|
||||
"socketpair: nothing for domain %d, type %d, protocol %d\n",
|
||||
domain, type, protocol);
|
||||
#endif
|
||||
|
||||
errno= EPROTOTYPE;
|
||||
errno = EAFNOSUPPORT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -52,6 +66,11 @@ static int _uds_socketpair(int type, int protocol, int sv[2])
|
||||
int r, i;
|
||||
struct stat sbuf;
|
||||
|
||||
if (type != SOCK_STREAM && type != SOCK_SEQPACKET) {
|
||||
errno = EPROTOTYPE;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (protocol != 0)
|
||||
{
|
||||
#if DEBUG
|
||||
|
||||
Reference in New Issue
Block a user