NetBSD/sys/kern/uipc_syscalls.c

1589 lines
36 KiB
C
Raw Normal View History

/* $NetBSD: uipc_syscalls.c,v 1.192 2018/03/16 17:25:04 christos Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Andrew Doran.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
1993-03-21 12:45:37 +03:00
/*
* Copyright (c) 1982, 1986, 1989, 1990, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03:00
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
1998-03-01 05:20:01 +03:00
* @(#)uipc_syscalls.c 8.6 (Berkeley) 2/14/95
1993-03-21 12:45:37 +03:00
*/
2001-11-12 18:25:01 +03:00
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls.c,v 1.192 2018/03/16 17:25:04 christos Exp $");
2001-11-12 18:25:01 +03:00
2015-08-25 01:21:26 +03:00
#ifdef _KERNEL_OPT
#include "opt_pipe.h"
2015-08-25 01:21:26 +03:00
#endif
1993-12-18 07:21:37 +03:00
#include <sys/param.h>
#include <sys/systm.h>
1993-12-18 07:21:37 +03:00
#include <sys/filedesc.h>
#include <sys/proc.h>
#include <sys/file.h>
#include <sys/buf.h>
#define MBUFTYPES
1993-12-18 07:21:37 +03:00
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
1996-02-04 05:17:43 +03:00
#include <sys/signalvar.h>
#include <sys/un.h>
1993-12-18 07:21:37 +03:00
#include <sys/ktrace.h>
#include <sys/event.h>
2012-01-25 19:51:24 +04:00
#include <sys/atomic.h>
#include <sys/kauth.h>
1993-03-21 12:45:37 +03:00
#include <sys/mount.h>
#include <sys/syscallargs.h>
1993-03-21 12:45:37 +03:00
/*
* System call interface to the socket abstraction.
*/
extern const struct fileops socketops;
1993-03-21 12:45:37 +03:00
static int sockargs_sb(struct sockaddr_big *, const void *, socklen_t);
int
sys___socket30(struct lwp *l, const struct sys___socket30_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) domain;
syscallarg(int) type;
syscallarg(int) protocol;
} */
int fd, error;
1993-03-21 12:45:37 +03:00
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that tells a socket that it should both add a protocol header to tx'd datagrams and remove the header from rx'd datagrams: int onoff = 1, s = socket(...); setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff); 2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4 sockets. 3) Reorganize the protocols' pr_ctloutput implementations a bit. Consistently return ENOPROTOOPT when an option is unsupported, and EINVAL if a supported option's arguments are incorrect. Reorganize the flow of code so that it's more clear how/when options are passed down the stack until they are handled. Shorten some pr_ctloutput staircases for readability. 4) Extract common mbuf code into subroutines, add new sockaddr methods, and introduce a new subroutine, fsocreate(), for reuse later; use it first in sys_socket(): struct mbuf *m_getsombuf(struct socket *so) Create an mbuf and make its owner the socket `so'. struct mbuf *m_intopt(struct socket *so, int val) Create an mbuf, make its owner the socket `so', put the int `val' into it, and set its length to sizeof(int). int fsocreate(..., int *fd) Create a socket, a la socreate(9), put the socket into the given LWP's descriptor table, return the descriptor at `fd' on success. void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp) const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp) Extract a pointer to the address part of a sockaddr. Write the length of the address part at `slenp', if `slenp' is not NULL. socklen_t sockaddr_getlen(const struct sockaddr *sa) Return the length of a sockaddr. This just evaluates to sa->sa_len. I only add this for consistency with code that appears in a portable userland library that I am going to import. const struct sockaddr *sockaddr_any(const struct sockaddr *sa) Return the "don't care" sockaddr in the same family as `sa'. This is the address a client should sobind(9) if it does not care the source address and, if applicable, the port et cetera that it uses. const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp) Return the "don't care" sockaddr in the same family as `sa'. This is the address a client should sobind(9) if it does not care the source address and, if applicable, the port et cetera that it uses.
2007-09-19 08:33:42 +04:00
error = fsocreate(SCARG(uap, domain), NULL, SCARG(uap, type),
SCARG(uap, protocol), &fd);
if (error == 0) {
1993-03-21 12:45:37 +03:00
*retval = fd;
}
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that tells a socket that it should both add a protocol header to tx'd datagrams and remove the header from rx'd datagrams: int onoff = 1, s = socket(...); setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff); 2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4 sockets. 3) Reorganize the protocols' pr_ctloutput implementations a bit. Consistently return ENOPROTOOPT when an option is unsupported, and EINVAL if a supported option's arguments are incorrect. Reorganize the flow of code so that it's more clear how/when options are passed down the stack until they are handled. Shorten some pr_ctloutput staircases for readability. 4) Extract common mbuf code into subroutines, add new sockaddr methods, and introduce a new subroutine, fsocreate(), for reuse later; use it first in sys_socket(): struct mbuf *m_getsombuf(struct socket *so) Create an mbuf and make its owner the socket `so'. struct mbuf *m_intopt(struct socket *so, int val) Create an mbuf, make its owner the socket `so', put the int `val' into it, and set its length to sizeof(int). int fsocreate(..., int *fd) Create a socket, a la socreate(9), put the socket into the given LWP's descriptor table, return the descriptor at `fd' on success. void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp) const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp) Extract a pointer to the address part of a sockaddr. Write the length of the address part at `slenp', if `slenp' is not NULL. socklen_t sockaddr_getlen(const struct sockaddr *sa) Return the length of a sockaddr. This just evaluates to sa->sa_len. I only add this for consistency with code that appears in a portable userland library that I am going to import. const struct sockaddr *sockaddr_any(const struct sockaddr *sa) Return the "don't care" sockaddr in the same family as `sa'. This is the address a client should sobind(9) if it does not care the source address and, if applicable, the port et cetera that it uses. const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp) Return the "don't care" sockaddr in the same family as `sa'. This is the address a client should sobind(9) if it does not care the source address and, if applicable, the port et cetera that it uses.
2007-09-19 08:33:42 +04:00
return error;
1993-03-21 12:45:37 +03:00
}
int
sys_bind(struct lwp *l, const struct sys_bind_args *uap, register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) s;
syscallarg(const struct sockaddr *) name;
syscallarg(unsigned int) namelen;
} */
2001-02-27 08:19:13 +03:00
int error;
struct sockaddr_big sb;
1993-03-21 12:45:37 +03:00
error = sockargs_sb(&sb, SCARG(uap, name), SCARG(uap, namelen));
if (error)
return error;
return do_sys_bind(l, SCARG(uap, s), (struct sockaddr *)&sb);
}
int
do_sys_bind(struct lwp *l, int fd, struct sockaddr *nam)
{
struct socket *so;
int error;
if ((error = fd_getsock(fd, &so)) != 0)
return error;
error = sobind(so, nam, l);
fd_putfile(fd);
return error;
1993-03-21 12:45:37 +03:00
}
int
sys_listen(struct lwp *l, const struct sys_listen_args *uap, register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) s;
syscallarg(int) backlog;
} */
struct socket *so;
2001-02-27 08:19:13 +03:00
int error;
1993-03-21 12:45:37 +03:00
if ((error = fd_getsock(SCARG(uap, s), &so)) != 0)
1993-03-21 12:45:37 +03:00
return (error);
error = solisten(so, SCARG(uap, backlog), l);
fd_putfile(SCARG(uap, s));
return error;
1993-03-21 12:45:37 +03:00
}
int
do_sys_accept(struct lwp *l, int sock, struct sockaddr *name,
register_t *new_sock, const sigset_t *mask, int flags, int clrflags)
{
file_t *fp, *fp2;
int error, fd;
struct socket *so, *so2;
short wakeup_state = 0;
if ((fp = fd_getfile(sock)) == NULL)
return EBADF;
if (fp->f_type != DTYPE_SOCKET) {
fd_putfile(sock);
return ENOTSOCK;
}
if ((error = fd_allocfile(&fp2, &fd)) != 0) {
fd_putfile(sock);
return error;
}
*new_sock = fd;
so = fp->f_socket;
solock(so);
if (__predict_false(mask))
sigsuspendsetup(l, mask);
if (!(so->so_proto->pr_flags & PR_LISTEN)) {
error = EOPNOTSUPP;
goto bad;
}
1993-03-21 12:45:37 +03:00
if ((so->so_options & SO_ACCEPTCONN) == 0) {
error = EINVAL;
goto bad;
1993-03-21 12:45:37 +03:00
}
if ((so->so_state & SS_NBIO) && so->so_qlen == 0) {
error = EWOULDBLOCK;
goto bad;
1993-03-21 12:45:37 +03:00
}
while (so->so_qlen == 0 && so->so_error == 0) {
if (so->so_state & SS_CANTRCVMORE) {
so->so_error = ECONNABORTED;
break;
}
if (wakeup_state & SS_RESTARTSYS) {
error = ERESTART;
goto bad;
}
error = sowait(so, true, 0);
1996-02-04 05:17:43 +03:00
if (error) {
goto bad;
1993-03-21 12:45:37 +03:00
}
wakeup_state = so->so_state;
1993-03-21 12:45:37 +03:00
}
if (so->so_error) {
error = so->so_error;
so->so_error = 0;
goto bad;
1993-03-21 12:45:37 +03:00
}
/* connection has been removed from the listen queue */
KNOTE(&so->so_rcv.sb_sel.sel_klist, NOTE_SUBMIT);
so2 = TAILQ_FIRST(&so->so_q);
if (soqremque(so2, 1) == 0)
1993-03-21 12:45:37 +03:00
panic("accept");
fp2->f_type = DTYPE_SOCKET;
fp2->f_flag = (fp->f_flag & ~clrflags) |
((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0)|
((flags & SOCK_NOSIGPIPE) ? FNOSIGPIPE : 0);
fp2->f_ops = &socketops;
fp2->f_socket = so2;
if (fp2->f_flag & FNONBLOCK)
so2->so_state |= SS_NBIO;
else
so2->so_state &= ~SS_NBIO;
error = soaccept(so2, name);
so2->so_cred = kauth_cred_dup(so->so_cred);
sounlock(so);
if (error) {
/* an error occurred, free the file descriptor and mbuf */
mutex_enter(&fp2->f_lock);
fp2->f_count++;
mutex_exit(&fp2->f_lock);
closef(fp2);
fd_abort(curproc, NULL, fd);
} else {
fd_set_exclose(l, fd, (flags & SOCK_CLOEXEC) != 0);
fd_affix(curproc, fp2, fd);
}
fd_putfile(sock);
if (__predict_false(mask))
sigsuspendteardown(l);
return error;
bad:
sounlock(so);
fd_putfile(sock);
fd_abort(curproc, fp2, fd);
if (__predict_false(mask))
sigsuspendteardown(l);
return error;
1993-03-21 12:45:37 +03:00
}
int
sys_accept(struct lwp *l, const struct sys_accept_args *uap, register_t *retval)
{
/* {
syscallarg(int) s;
syscallarg(struct sockaddr *) name;
syscallarg(unsigned int *) anamelen;
} */
int error, fd;
struct sockaddr_big name;
name.sb_len = UCHAR_MAX;
error = do_sys_accept(l, SCARG(uap, s), (struct sockaddr *)&name,
retval, NULL, 0, 0);
if (error != 0)
return error;
error = copyout_sockname_sb(SCARG(uap, name), SCARG(uap, anamelen),
MSG_LENUSRSPACE, &name);
if (error != 0) {
fd = (int)*retval;
if (fd_getfile(fd) != NULL)
(void)fd_close(fd);
}
return error;
}
int
sys_paccept(struct lwp *l, const struct sys_paccept_args *uap,
register_t *retval)
{
/* {
syscallarg(int) s;
syscallarg(struct sockaddr *) name;
syscallarg(unsigned int *) anamelen;
syscallarg(const sigset_t *) mask;
syscallarg(int) flags;
} */
int error, fd;
struct sockaddr_big name;
sigset_t *mask, amask;
if (SCARG(uap, mask) != NULL) {
error = copyin(SCARG(uap, mask), &amask, sizeof(amask));
if (error)
return error;
mask = &amask;
} else
mask = NULL;
name.sb_len = UCHAR_MAX;
error = do_sys_accept(l, SCARG(uap, s), (struct sockaddr *)&name,
retval, mask, SCARG(uap, flags), FNONBLOCK);
if (error != 0)
return error;
error = copyout_sockname_sb(SCARG(uap, name), SCARG(uap, anamelen),
MSG_LENUSRSPACE, &name);
if (error != 0) {
fd = (int)*retval;
if (fd_getfile(fd) != NULL)
(void)fd_close(fd);
}
return error;
}
int
sys_connect(struct lwp *l, const struct sys_connect_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) s;
syscallarg(const struct sockaddr *) name;
syscallarg(unsigned int) namelen;
} */
int error;
struct sockaddr_big sbig;
error = sockargs_sb(&sbig, SCARG(uap, name), SCARG(uap, namelen));
if (error)
return error;
return do_sys_connect(l, SCARG(uap, s), (struct sockaddr *)&sbig);
}
int
do_sys_connect(struct lwp *l, int fd, struct sockaddr *nam)
{
2001-02-27 08:19:13 +03:00
struct socket *so;
int error;
int interrupted = 0;
1993-03-21 12:45:37 +03:00
if ((error = fd_getsock(fd, &so)) != 0) {
1993-03-21 12:45:37 +03:00
return (error);
}
solock(so);
if ((so->so_state & SS_ISCONNECTING) != 0) {
error = EALREADY;
goto out;
}
2005-12-11 15:16:03 +03:00
error = soconnect(so, nam, l);
1993-03-21 12:45:37 +03:00
if (error)
goto bad;
2011-12-21 19:26:57 +04:00
if ((so->so_state & (SS_NBIO|SS_ISCONNECTING)) ==
(SS_NBIO|SS_ISCONNECTING)) {
error = EINPROGRESS;
goto out;
1993-03-21 12:45:37 +03:00
}
while ((so->so_state & SS_ISCONNECTING) != 0 && so->so_error == 0) {
error = sowait(so, true, 0);
if (__predict_false((so->so_state & SS_ISABORTING) != 0)) {
error = EPIPE;
interrupted = 1;
break;
}
if (error) {
if (error == EINTR || error == ERESTART)
interrupted = 1;
1993-03-21 12:45:37 +03:00
break;
}
1996-02-04 05:17:43 +03:00
}
1993-03-21 12:45:37 +03:00
if (error == 0) {
error = so->so_error;
so->so_error = 0;
}
2001-02-27 08:19:13 +03:00
bad:
if (!interrupted)
so->so_state &= ~SS_ISCONNECTING;
1993-03-21 12:45:37 +03:00
if (error == ERESTART)
error = EINTR;
out:
sounlock(so);
fd_putfile(fd);
return error;
1993-03-21 12:45:37 +03:00
}
static int
makesocket(struct lwp *l, file_t **fp, int *fd, int flags, int type,
int domain, int proto, struct socket *soo)
{
struct socket *so;
int error;
if ((error = socreate(domain, &so, type, proto, l, soo)) != 0) {
return error;
}
if (flags & SOCK_NONBLOCK) {
so->so_state |= SS_NBIO;
}
if ((error = fd_allocfile(fp, fd)) != 0) {
soclose(so);
return error;
}
fd_set_exclose(l, *fd, (flags & SOCK_CLOEXEC) != 0);
(*fp)->f_flag = FREAD|FWRITE|
((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0)|
((flags & SOCK_NOSIGPIPE) ? FNOSIGPIPE : 0);
(*fp)->f_type = DTYPE_SOCKET;
(*fp)->f_ops = &socketops;
(*fp)->f_socket = so;
return 0;
}
int
sys_socketpair(struct lwp *l, const struct sys_socketpair_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) domain;
syscallarg(int) type;
syscallarg(int) protocol;
syscallarg(int *) rsv;
} */
file_t *fp1, *fp2;
2001-02-27 08:19:13 +03:00
struct socket *so1, *so2;
int fd, error, sv[2];
proc_t *p = curproc;
int flags = SCARG(uap, type) & SOCK_FLAGS_MASK;
int type = SCARG(uap, type) & ~SOCK_FLAGS_MASK;
int domain = SCARG(uap, domain);
int proto = SCARG(uap, protocol);
1993-03-21 12:45:37 +03:00
error = makesocket(l, &fp1, &fd, flags, type, domain, proto, NULL);
1996-02-04 05:17:43 +03:00
if (error)
return error;
so1 = fp1->f_socket;
1993-03-21 12:45:37 +03:00
sv[0] = fd;
error = makesocket(l, &fp2, &fd, flags, type, domain, proto, so1);
if (error)
goto out;
so2 = fp2->f_socket;
1993-03-21 12:45:37 +03:00
sv[1] = fd;
solock(so1);
error = soconnect2(so1, so2);
if (error == 0 && type == SOCK_DGRAM) {
1993-03-21 12:45:37 +03:00
/*
* Datagram socket connection is asymmetric.
*/
error = soconnect2(so2, so1);
}
sounlock(so1);
if (error == 0)
error = copyout(sv, SCARG(uap, rsv), sizeof(sv));
if (error == 0) {
fd_affix(p, fp2, sv[1]);
fd_affix(p, fp1, sv[0]);
return 0;
1993-03-21 12:45:37 +03:00
}
fd_abort(p, fp2, sv[1]);
1993-03-21 12:45:37 +03:00
(void)soclose(so2);
out:
fd_abort(p, fp1, sv[0]);
1993-03-21 12:45:37 +03:00
(void)soclose(so1);
return error;
1993-03-21 12:45:37 +03:00
}
int
sys_sendto(struct lwp *l, const struct sys_sendto_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) s;
syscallarg(const void *) buf;
syscallarg(size_t) len;
syscallarg(int) flags;
syscallarg(const struct sockaddr *) to;
syscallarg(unsigned int) tolen;
} */
2001-02-27 08:19:13 +03:00
struct msghdr msg;
struct iovec aiov;
1993-03-21 12:45:37 +03:00
msg.msg_name = __UNCONST(SCARG(uap, to)); /* XXXUNCONST kills const */
msg.msg_namelen = SCARG(uap, tolen);
1993-03-21 12:45:37 +03:00
msg.msg_iov = &aiov;
msg.msg_iovlen = 1;
2007-09-19 23:28:25 +04:00
msg.msg_control = NULL;
1993-03-21 12:45:37 +03:00
msg.msg_flags = 0;
aiov.iov_base = __UNCONST(SCARG(uap, buf)); /* XXXUNCONST kills const */
aiov.iov_len = SCARG(uap, len);
return do_sys_sendmsg(l, SCARG(uap, s), &msg, SCARG(uap, flags),
NULL, 0, retval);
1993-03-21 12:45:37 +03:00
}
int
sys_sendmsg(struct lwp *l, const struct sys_sendmsg_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) s;
syscallarg(const struct msghdr *) msg;
syscallarg(int) flags;
} */
2001-02-27 08:19:13 +03:00
struct msghdr msg;
int error;
1993-03-21 12:45:37 +03:00
error = copyin(SCARG(uap, msg), &msg, sizeof(msg));
1996-02-04 05:17:43 +03:00
if (error)
1993-03-21 12:45:37 +03:00
return (error);
msg.msg_flags = MSG_IOVUSRSPACE;
return do_sys_sendmsg(l, SCARG(uap, s), &msg, SCARG(uap, flags),
NULL, 0, retval);
1993-03-21 12:45:37 +03:00
}
2017-02-03 19:06:45 +03:00
int
2012-06-22 22:26:35 +04:00
do_sys_sendmsg_so(struct lwp *l, int s, struct socket *so, file_t *fp,
struct msghdr *mp, int flags, const void *kthdr, size_t ktsize,
register_t *retsize)
1993-03-21 12:45:37 +03:00
{
2012-06-22 22:26:35 +04:00
struct iovec aiov[UIO_SMALLIOV], *iov = aiov, *tiov, *ktriov = NULL;
struct sockaddr *sa = NULL;
2001-02-27 08:19:13 +03:00
struct mbuf *to, *control;
struct uio auio;
size_t len, iovsz;
int i, error;
2005-02-27 00:34:55 +03:00
if (__predict_false(kthdr == NULL && ktsize == 0)) {
kthdr = mp;
ktsize = sizeof(*mp);
}
if (__predict_true(kthdr != NULL))
ktrkuser("msghdr", kthdr, ktsize);
/* If the caller passed us stuff in mbufs, we must free them. */
to = (mp->msg_flags & MSG_NAMEMBUF) ? mp->msg_name : NULL;
control = (mp->msg_flags & MSG_CONTROLMBUF) ? mp->msg_control : NULL;
iovsz = mp->msg_iovlen * sizeof(struct iovec);
if (mp->msg_flags & MSG_IOVUSRSPACE) {
if ((unsigned int)mp->msg_iovlen > UIO_SMALLIOV) {
if ((unsigned int)mp->msg_iovlen > IOV_MAX) {
error = EMSGSIZE;
goto bad;
}
iov = kmem_alloc(iovsz, KM_SLEEP);
}
if (mp->msg_iovlen != 0) {
error = copyin(mp->msg_iov, iov, iovsz);
if (error)
goto bad;
}
auio.uio_iov = iov;
} else
auio.uio_iov = mp->msg_iov;
1993-03-21 12:45:37 +03:00
auio.uio_iovcnt = mp->msg_iovlen;
auio.uio_rw = UIO_WRITE;
auio.uio_offset = 0; /* XXX */
auio.uio_resid = 0;
KASSERT(l == curlwp);
auio.uio_vmspace = l->l_proc->p_vmspace;
tiov = auio.uio_iov;
for (i = 0; i < auio.uio_iovcnt; i++, tiov++) {
/*
* Writes return ssize_t because -1 is returned on error.
* Therefore, we must restrict the length to SSIZE_MAX to
* avoid garbage return values.
*/
auio.uio_resid += tiov->iov_len;
if (tiov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
error = EINVAL;
goto bad;
}
1993-03-21 12:45:37 +03:00
}
if (mp->msg_name && to == NULL) {
error = sockargs(&to, mp->msg_name, mp->msg_namelen,
UIO_USERSPACE, MT_SONAME);
if (error)
goto bad;
}
1993-03-21 12:45:37 +03:00
if (mp->msg_control) {
if (mp->msg_controllen < CMSG_ALIGN(sizeof(struct cmsghdr))) {
1993-03-21 12:45:37 +03:00
error = EINVAL;
goto bad;
}
if (control == NULL) {
error = sockargs(&control, mp->msg_control,
mp->msg_controllen, UIO_USERSPACE, MT_CONTROL);
if (error)
goto bad;
}
}
if (ktrpoint(KTR_GENIO) && iovsz > 0) {
ktriov = kmem_alloc(iovsz, KM_SLEEP);
memcpy(ktriov, auio.uio_iov, iovsz);
1993-03-21 12:45:37 +03:00
}
if (mp->msg_name)
MCLAIM(to, so->so_mowner);
if (mp->msg_control)
MCLAIM(control, so->so_mowner);
if (to) {
sa = mtod(to, struct sockaddr *);
}
1993-03-21 12:45:37 +03:00
len = auio.uio_resid;
error = (*so->so_send)(so, sa, &auio, NULL, control, flags, l);
/* Protocol is responsible for freeing 'control' */
control = NULL;
1996-02-04 05:17:43 +03:00
if (error) {
1993-03-21 12:45:37 +03:00
if (auio.uio_resid != len && (error == ERESTART ||
error == EINTR || error == EWOULDBLOCK))
error = 0;
if (error == EPIPE && (fp->f_flag & FNOSIGPIPE) == 0 &&
(flags & MSG_NOSIGNAL) == 0) {
mutex_enter(proc_lock);
psignal(l->l_proc, SIGPIPE);
mutex_exit(proc_lock);
2007-02-10 00:55:00 +03:00
}
1993-03-21 12:45:37 +03:00
}
if (error == 0)
*retsize = len - auio.uio_resid;
bad:
if (ktriov != NULL) {
ktrgeniov(s, UIO_WRITE, ktriov, *retsize, error);
kmem_free(ktriov, iovsz);
1993-03-21 12:45:37 +03:00
}
if (iov != aiov)
kmem_free(iov, iovsz);
1993-03-21 12:45:37 +03:00
if (to)
m_freem(to);
2007-09-19 23:28:25 +04:00
if (control)
m_freem(control);
return error;
1993-03-21 12:45:37 +03:00
}
2012-06-22 22:26:35 +04:00
int
do_sys_sendmsg(struct lwp *l, int s, struct msghdr *mp, int flags,
const void *kthdr, size_t ktsize, register_t *retsize)
2012-06-22 22:26:35 +04:00
{
int error;
struct socket *so;
file_t *fp;
if ((error = fd_getsock1(s, &so, &fp)) != 0) {
/* We have to free msg_name and msg_control ourselves */
if (mp->msg_flags & MSG_NAMEMBUF)
m_freem(mp->msg_name);
if (mp->msg_flags & MSG_CONTROLMBUF)
m_freem(mp->msg_control);
2012-06-22 22:26:35 +04:00
return error;
}
error = do_sys_sendmsg_so(l, s, so, fp, mp, flags, kthdr, ktsize,
retsize);
/* msg_name and msg_control freed */
2012-06-22 22:26:35 +04:00
fd_putfile(s);
return error;
}
int
sys_recvfrom(struct lwp *l, const struct sys_recvfrom_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) s;
syscallarg(void *) buf;
syscallarg(size_t) len;
syscallarg(int) flags;
syscallarg(struct sockaddr *) from;
syscallarg(unsigned int *) fromlenaddr;
} */
2001-02-27 08:19:13 +03:00
struct msghdr msg;
struct iovec aiov;
int error;
struct mbuf *from;
1993-03-21 12:45:37 +03:00
2007-09-19 23:28:25 +04:00
msg.msg_name = NULL;
1993-03-21 12:45:37 +03:00
msg.msg_iov = &aiov;
msg.msg_iovlen = 1;
aiov.iov_base = SCARG(uap, buf);
aiov.iov_len = SCARG(uap, len);
msg.msg_control = NULL;
msg.msg_flags = SCARG(uap, flags) & MSG_USERFLAGS;
error = do_sys_recvmsg(l, SCARG(uap, s), &msg, NULL, 0, &from,
NULL, retval);
if (error != 0)
return error;
error = copyout_sockname(SCARG(uap, from), SCARG(uap, fromlenaddr),
MSG_LENUSRSPACE, from);
if (from != NULL)
m_free(from);
return error;
1993-03-21 12:45:37 +03:00
}
int
sys_recvmsg(struct lwp *l, const struct sys_recvmsg_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) s;
syscallarg(struct msghdr *) msg;
syscallarg(int) flags;
} */
2005-12-11 15:16:03 +03:00
struct msghdr msg;
2001-02-27 08:19:13 +03:00
int error;
struct mbuf *from, *control;
1993-03-21 12:45:37 +03:00
error = copyin(SCARG(uap, msg), &msg, sizeof(msg));
1996-02-04 05:17:43 +03:00
if (error)
return error;
msg.msg_flags = (SCARG(uap, flags) & MSG_USERFLAGS) | MSG_IOVUSRSPACE;
error = do_sys_recvmsg(l, SCARG(uap, s), &msg, NULL, 0, &from,
msg.msg_control != NULL ? &control : NULL, retval);
if (error != 0)
return error;
if (msg.msg_control != NULL)
error = copyout_msg_control(l, &msg, control);
if (error == 0)
error = copyout_sockname(msg.msg_name, &msg.msg_namelen, 0,
from);
if (from != NULL)
m_free(from);
if (error == 0) {
ktrkuser("msghdr", &msg, sizeof msg);
error = copyout(&msg, SCARG(uap, msg), sizeof(msg));
}
return error;
1993-03-21 12:45:37 +03:00
}
2012-06-22 22:26:35 +04:00
int
sys_sendmmsg(struct lwp *l, const struct sys_sendmmsg_args *uap,
register_t *retval)
{
/* {
syscallarg(int) s;
syscallarg(struct mmsghdr *) mmsg;
syscallarg(unsigned int) vlen;
syscallarg(unsigned int) flags;
} */
struct mmsghdr mmsg;
struct socket *so;
file_t *fp;
struct msghdr *msg = &mmsg.msg_hdr;
int error, s;
unsigned int vlen, flags, dg;
s = SCARG(uap, s);
if ((error = fd_getsock1(s, &so, &fp)) != 0)
return error;
vlen = SCARG(uap, vlen);
if (vlen > 1024)
vlen = 1024;
flags = (SCARG(uap, flags) & MSG_USERFLAGS) | MSG_IOVUSRSPACE;
for (dg = 0; dg < vlen;) {
error = copyin(SCARG(uap, mmsg) + dg, &mmsg, sizeof(mmsg));
if (error)
break;
msg->msg_flags = flags;
error = do_sys_sendmsg_so(l, s, so, fp, msg, flags,
&msg, sizeof(msg), retval);
2012-06-22 22:26:35 +04:00
if (error)
break;
ktrkuser("msghdr", msg, sizeof *msg);
mmsg.msg_len = *retval;
error = copyout(&mmsg, SCARG(uap, mmsg) + dg, sizeof(mmsg));
if (error)
break;
dg++;
}
*retval = dg;
if (error)
so->so_error = error;
fd_putfile(s);
/*
* If we succeeded at least once, return 0, hopefully so->so_error
* will catch it next time.
*/
if (dg)
return 0;
return error;
}
/*
* Adjust for a truncated SCM_RIGHTS control message.
* This means closing any file descriptors that aren't present
* in the returned buffer.
* m is the mbuf holding the (already externalized) SCM_RIGHTS message.
*/
2005-09-03 23:44:20 +04:00
static void
free_rights(struct mbuf *m)
{
struct cmsghdr *cm;
int *fdv;
unsigned int nfds, i;
KASSERT(sizeof(*cm) <= m->m_len);
cm = mtod(m, struct cmsghdr *);
KASSERT(CMSG_ALIGN(sizeof(*cm)) <= cm->cmsg_len);
KASSERT(cm->cmsg_len <= m->m_len);
nfds = (cm->cmsg_len - CMSG_ALIGN(sizeof(*cm))) / sizeof(int);
fdv = (int *)CMSG_DATA(cm);
for (i = 0; i < nfds; i++)
if (fd_getfile(fdv[i]) != NULL)
(void)fd_close(fdv[i]);
}
void
free_control_mbuf(struct lwp *l, struct mbuf *control, struct mbuf *uncopied)
{
struct mbuf *next;
struct cmsghdr *cmsg;
bool do_free_rights = false;
while (control != NULL) {
cmsg = mtod(control, struct cmsghdr *);
if (control == uncopied)
do_free_rights = true;
if (do_free_rights && cmsg->cmsg_level == SOL_SOCKET
&& cmsg->cmsg_type == SCM_RIGHTS)
free_rights(control);
next = control->m_next;
m_free(control);
control = next;
}
}
/* Copy socket control/CMSG data to user buffer, frees the mbuf */
int
copyout_msg_control(struct lwp *l, struct msghdr *mp, struct mbuf *control)
{
int i, len, error = 0;
struct cmsghdr *cmsg;
struct mbuf *m;
char *q;
len = mp->msg_controllen;
if (len <= 0 || control == 0) {
mp->msg_controllen = 0;
free_control_mbuf(l, control, control);
return 0;
}
q = (char *)mp->msg_control;
for (m = control; m != NULL; ) {
cmsg = mtod(m, struct cmsghdr *);
i = m->m_len;
if (len < i) {
mp->msg_flags |= MSG_CTRUNC;
if (cmsg->cmsg_level == SOL_SOCKET
&& cmsg->cmsg_type == SCM_RIGHTS)
/* Do not truncate me ... */
break;
i = len;
}
error = copyout(mtod(m, void *), q, i);
ktrkuser("msgcontrol", mtod(m, void *), i);
if (error != 0) {
/* We must free all the SCM_RIGHTS */
m = control;
break;
}
m = m->m_next;
if (m)
i = ALIGN(i);
q += i;
len -= i;
if (len <= 0)
break;
}
free_control_mbuf(l, control, m);
mp->msg_controllen = q - (char *)mp->msg_control;
return error;
}
2017-02-03 19:06:45 +03:00
int
2012-06-22 22:26:35 +04:00
do_sys_recvmsg_so(struct lwp *l, int s, struct socket *so, struct msghdr *mp,
const void *ktrhdr, size_t ktsize, struct mbuf **from,
struct mbuf **control, register_t *retsize)
1993-03-21 12:45:37 +03:00
{
struct iovec aiov[UIO_SMALLIOV], *iov = aiov, *tiov, *ktriov = NULL;
struct uio auio;
size_t len, iovsz;
int i, error;
2001-02-27 08:19:13 +03:00
if (__predict_false(ktrhdr == NULL && ktsize == 0)) {
ktrhdr = mp;
ktsize = sizeof *mp;
}
if (__predict_true(ktrhdr != NULL))
ktrkuser("msghdr", ktrhdr, ktsize);
*from = NULL;
if (control != NULL)
*control = NULL;
2005-02-27 00:34:55 +03:00
iovsz = mp->msg_iovlen * sizeof(struct iovec);
if (mp->msg_flags & MSG_IOVUSRSPACE) {
if ((unsigned int)mp->msg_iovlen > UIO_SMALLIOV) {
if ((unsigned int)mp->msg_iovlen > IOV_MAX) {
error = EMSGSIZE;
goto out;
}
iov = kmem_alloc(iovsz, KM_SLEEP);
}
if (mp->msg_iovlen != 0) {
error = copyin(mp->msg_iov, iov, iovsz);
if (error)
goto out;
}
auio.uio_iov = iov;
} else
auio.uio_iov = mp->msg_iov;
1993-03-21 12:45:37 +03:00
auio.uio_iovcnt = mp->msg_iovlen;
auio.uio_rw = UIO_READ;
auio.uio_offset = 0; /* XXX */
auio.uio_resid = 0;
KASSERT(l == curlwp);
auio.uio_vmspace = l->l_proc->p_vmspace;
tiov = auio.uio_iov;
for (i = 0; i < auio.uio_iovcnt; i++, tiov++) {
/*
* Reads return ssize_t because -1 is returned on error.
* Therefore we must restrict the length to SSIZE_MAX to
* avoid garbage return values.
*/
auio.uio_resid += tiov->iov_len;
if (tiov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
error = EINVAL;
goto out;
}
1993-03-21 12:45:37 +03:00
}
if (ktrpoint(KTR_GENIO) && iovsz > 0) {
ktriov = kmem_alloc(iovsz, KM_SLEEP);
memcpy(ktriov, auio.uio_iov, iovsz);
1993-03-21 12:45:37 +03:00
}
1993-03-21 12:45:37 +03:00
len = auio.uio_resid;
mp->msg_flags &= MSG_USERFLAGS;
error = (*so->so_receive)(so, from, &auio, NULL, control,
&mp->msg_flags);
KASSERT(*from == NULL || (*from)->m_next == NULL);
len -= auio.uio_resid;
*retsize = len;
if (error != 0 && len != 0
&& (error == ERESTART || error == EINTR || error == EWOULDBLOCK))
/* Some data transferred */
error = 0;
if (ktriov != NULL) {
ktrgeniov(s, UIO_READ, ktriov, len, error);
kmem_free(ktriov, iovsz);
1993-03-21 12:45:37 +03:00
}
if (error != 0) {
m_freem(*from);
*from = NULL;
if (control != NULL) {
free_control_mbuf(l, *control, *control);
*control = NULL;
1993-03-21 12:45:37 +03:00
}
}
out:
if (iov != aiov)
kmem_free(iov, iovsz);
return error;
1993-03-21 12:45:37 +03:00
}
2012-06-22 22:26:35 +04:00
int
do_sys_recvmsg(struct lwp *l, int s, struct msghdr *mp,
const void *ktrhdr, size_t ktrsize,
struct mbuf **from, struct mbuf **control, register_t *retsize)
2012-06-22 22:26:35 +04:00
{
int error;
struct socket *so;
if ((error = fd_getsock(s, &so)) != 0)
return error;
error = do_sys_recvmsg_so(l, s, so, mp, ktrhdr, ktrsize, from,
control, retsize);
2012-06-22 22:26:35 +04:00
fd_putfile(s);
return error;
}
int
sys_recvmmsg(struct lwp *l, const struct sys_recvmmsg_args *uap,
register_t *retval)
{
/* {
syscallarg(int) s;
syscallarg(struct mmsghdr *) mmsg;
syscallarg(unsigned int) vlen;
syscallarg(unsigned int) flags;
syscallarg(struct timespec *) timeout;
} */
struct mmsghdr mmsg;
struct socket *so;
struct msghdr *msg = &mmsg.msg_hdr;
int error, s;
struct mbuf *from, *control;
struct timespec ts, now;
unsigned int vlen, flags, dg;
if (SCARG(uap, timeout)) {
if ((error = copyin(SCARG(uap, timeout), &ts, sizeof(ts))) != 0)
return error;
getnanotime(&now);
timespecadd(&now, &ts, &ts);
}
s = SCARG(uap, s);
if ((error = fd_getsock(s, &so)) != 0)
return error;
vlen = SCARG(uap, vlen);
if (vlen > 1024)
vlen = 1024;
from = NULL;
flags = (SCARG(uap, flags) & MSG_USERFLAGS) | MSG_IOVUSRSPACE;
for (dg = 0; dg < vlen;) {
error = copyin(SCARG(uap, mmsg) + dg, &mmsg, sizeof(mmsg));
if (error)
break;
msg->msg_flags = flags & ~MSG_WAITFORONE;
if (from != NULL) {
m_free(from);
from = NULL;
}
error = do_sys_recvmsg_so(l, s, so, msg, NULL, 0, &from,
2012-06-22 22:26:35 +04:00
msg->msg_control != NULL ? &control : NULL, retval);
if (error) {
if (error == EAGAIN && dg > 0)
error = 0;
2012-06-22 22:26:35 +04:00
break;
}
2012-06-22 22:26:35 +04:00
if (msg->msg_control != NULL)
error = copyout_msg_control(l, msg, control);
if (error)
break;
error = copyout_sockname(msg->msg_name, &msg->msg_namelen, 0,
from);
if (error)
break;
ktrkuser("msghdr", msg, sizeof *msg);
mmsg.msg_len = *retval;
error = copyout(&mmsg, SCARG(uap, mmsg) + dg, sizeof(mmsg));
if (error)
break;
dg++;
if (msg->msg_flags & MSG_OOB)
break;
if (SCARG(uap, timeout)) {
getnanotime(&now);
timespecsub(&now, &ts, &now);
if (now.tv_sec > 0)
break;
}
if (flags & MSG_WAITFORONE)
flags |= MSG_DONTWAIT;
}
if (from != NULL)
m_free(from);
*retval = dg;
if (error)
so->so_error = error;
fd_putfile(s);
/*
* If we succeeded at least once, return 0, hopefully so->so_error
* will catch it next time.
*/
if (dg)
return 0;
return error;
}
int
sys_shutdown(struct lwp *l, const struct sys_shutdown_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) s;
syscallarg(int) how;
} */
struct socket *so;
2001-02-27 08:19:13 +03:00
int error;
1993-03-21 12:45:37 +03:00
if ((error = fd_getsock(SCARG(uap, s), &so)) != 0)
return error;
solock(so);
error = soshutdown(so, SCARG(uap, how));
sounlock(so);
fd_putfile(SCARG(uap, s));
return error;
1993-03-21 12:45:37 +03:00
}
int
sys_setsockopt(struct lwp *l, const struct sys_setsockopt_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) s;
syscallarg(int) level;
syscallarg(int) name;
syscallarg(const void *) val;
syscallarg(unsigned int) valsize;
} */
struct sockopt sopt;
struct socket *so;
file_t *fp;
2001-02-27 08:19:13 +03:00
int error;
2003-01-18 13:06:22 +03:00
unsigned int len;
1993-03-21 12:45:37 +03:00
len = SCARG(uap, valsize);
if (len > 0 && SCARG(uap, val) == NULL)
return EINVAL;
if (len > MCLBYTES)
return EINVAL;
if ((error = fd_getsock1(SCARG(uap, s), &so, &fp)) != 0)
1993-03-21 12:45:37 +03:00
return (error);
sockopt_init(&sopt, SCARG(uap, level), SCARG(uap, name), len);
if (len > 0) {
error = copyin(SCARG(uap, val), sopt.sopt_data, len);
if (error)
goto out;
1993-03-21 12:45:37 +03:00
}
error = sosetopt(so, &sopt);
if (so->so_options & SO_NOSIGPIPE)
atomic_or_uint(&fp->f_flag, FNOSIGPIPE);
else
atomic_and_uint(&fp->f_flag, ~FNOSIGPIPE);
out:
sockopt_destroy(&sopt);
fd_putfile(SCARG(uap, s));
return error;
1993-03-21 12:45:37 +03:00
}
int
sys_getsockopt(struct lwp *l, const struct sys_getsockopt_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) s;
syscallarg(int) level;
syscallarg(int) name;
syscallarg(void *) val;
syscallarg(unsigned int *) avalsize;
} */
struct sockopt sopt;
struct socket *so;
file_t *fp;
unsigned int valsize, len;
2001-02-27 08:19:13 +03:00
int error;
1993-03-21 12:45:37 +03:00
if (SCARG(uap, val) != NULL) {
error = copyin(SCARG(uap, avalsize), &valsize, sizeof(valsize));
if (error)
return error;
} else
valsize = 0;
if ((error = fd_getsock1(SCARG(uap, s), &so, &fp)) != 0)
1993-03-21 12:45:37 +03:00
return (error);
if (valsize > MCLBYTES)
return EINVAL;
sockopt_init(&sopt, SCARG(uap, level), SCARG(uap, name), valsize);
if (fp->f_flag & FNOSIGPIPE)
so->so_options |= SO_NOSIGPIPE;
else
so->so_options &= ~SO_NOSIGPIPE;
error = sogetopt(so, &sopt);
if (error)
goto out;
if (valsize > 0) {
len = min(valsize, sopt.sopt_retsize);
error = copyout(sopt.sopt_data, SCARG(uap, val), len);
if (error)
goto out;
error = copyout(&len, SCARG(uap, avalsize), sizeof(len));
1996-02-04 05:17:43 +03:00
if (error)
goto out;
1993-03-21 12:45:37 +03:00
}
out:
sockopt_destroy(&sopt);
fd_putfile(SCARG(uap, s));
return error;
1993-03-21 12:45:37 +03:00
}
#ifdef PIPE_SOCKETPAIR
int
pipe1(struct lwp *l, int *fildes, int flags)
1993-03-21 12:45:37 +03:00
{
file_t *rf, *wf;
2001-02-27 08:19:13 +03:00
struct socket *rso, *wso;
int fd, error;
proc_t *p;
1993-03-21 12:45:37 +03:00
if (flags & ~(O_CLOEXEC|O_NONBLOCK|O_NOSIGPIPE))
return EINVAL;
p = curproc;
if ((error = socreate(AF_LOCAL, &rso, SOCK_STREAM, 0, l, NULL)) != 0)
return error;
if ((error = socreate(AF_LOCAL, &wso, SOCK_STREAM, 0, l, rso)) != 0)
1993-03-21 12:45:37 +03:00
goto free1;
/* remember this socket pair implements a pipe */
wso->so_state |= SS_ISAPIPE;
rso->so_state |= SS_ISAPIPE;
if ((error = fd_allocfile(&rf, &fd)) != 0)
1993-03-21 12:45:37 +03:00
goto free2;
fildes[0] = fd;
rf->f_flag = FREAD | flags;
1993-03-21 12:45:37 +03:00
rf->f_type = DTYPE_SOCKET;
rf->f_ops = &socketops;
rf->f_socket = rso;
if ((error = fd_allocfile(&wf, &fd)) != 0)
1993-03-21 12:45:37 +03:00
goto free3;
wf->f_flag = FWRITE | flags;
1993-03-21 12:45:37 +03:00
wf->f_type = DTYPE_SOCKET;
wf->f_ops = &socketops;
wf->f_socket = wso;
fildes[1] = fd;
solock(wso);
error = unp_connect2(wso, rso);
sounlock(wso);
if (error != 0)
1993-03-21 12:45:37 +03:00
goto free4;
fd_affix(p, wf, fildes[1]);
fd_affix(p, rf, fildes[0]);
1993-03-21 12:45:37 +03:00
return (0);
2001-02-27 08:19:13 +03:00
free4:
fd_abort(p, wf, fildes[1]);
2001-02-27 08:19:13 +03:00
free3:
fd_abort(p, rf, fildes[0]);
2001-02-27 08:19:13 +03:00
free2:
1993-03-21 12:45:37 +03:00
(void)soclose(wso);
2001-02-27 08:19:13 +03:00
free1:
1993-03-21 12:45:37 +03:00
(void)soclose(rso);
return error;
1993-03-21 12:45:37 +03:00
}
#endif /* PIPE_SOCKETPAIR */
1993-03-21 12:45:37 +03:00
/*
* split PRU_PEERADDR and PRU_SOCKADDR function out of pr_generic() usrreq switches and put into separate functions xxx_{peer,sock}addr(struct socket *, struct mbuf *). - KASSERT(solocked(so)) always in new functions even if request is not implemented - KASSERT(pcb != NULL) and KASSERT(nam) if the request is implemented and not for tcp. * for tcp roll #ifdef KPROF and #ifdef DEBUG code from tcp_usrreq() into easier to cut & paste functions tcp_debug_capture() and tcp_debug_trace() - functions provided by rmind - remaining use of PRU_{PEER,SOCK}ADDR #define to be removed in a future commit. * rename netbt functions to permit consistency of pru function names (as has been done with other requests already split out). - l2cap_{peer,sock}addr() -> l2cap_{peer,sock}_addr_pcb() - rfcomm_{peer,sock}addr() -> rfcomm_{peer,sock}_addr_pcb() - sco_{peer,sock}addr() -> sco_{peer,sock}_addr_pcb() * split/refactor do_sys_getsockname(lwp, fd, which, nam) into two functions do_sys_get{peer,sock}name(fd, nam). - move PRU_PEERADDR handling into do_sys_getpeername() from do_sys_getsockname() - have svr4_stream directly call do_sys_get{sock,peer}name() respectively instead of providing `which' & fix a DPRINTF string that incorrectly wrote "getpeername" when it meant "getsockname" - fix sys_getpeername() and sys_getsockname() to call do_sys_get{sock,peer}name() without `which' and `lwp' & adjust comments - bump kernel version for removal of lwp & which parameters from do_sys_getsockname() note: future cleanup to remove struct mbuf * abuse in xxx_{peer,sock}name() still to come, not done in this commit since it is easier to do post split. patch reviewed by rmind welcome to 6.99.47
2014-07-09 08:54:03 +04:00
* Get peer socket name.
1993-03-21 12:45:37 +03:00
*/
int
do_sys_getpeername(int fd, struct sockaddr *nam)
{
2001-02-27 08:19:13 +03:00
struct socket *so;
int error;
1993-03-21 12:45:37 +03:00
if ((error = fd_getsock(fd, &so)) != 0)
return error;
solock(so);
* split PRU_PEERADDR and PRU_SOCKADDR function out of pr_generic() usrreq switches and put into separate functions xxx_{peer,sock}addr(struct socket *, struct mbuf *). - KASSERT(solocked(so)) always in new functions even if request is not implemented - KASSERT(pcb != NULL) and KASSERT(nam) if the request is implemented and not for tcp. * for tcp roll #ifdef KPROF and #ifdef DEBUG code from tcp_usrreq() into easier to cut & paste functions tcp_debug_capture() and tcp_debug_trace() - functions provided by rmind - remaining use of PRU_{PEER,SOCK}ADDR #define to be removed in a future commit. * rename netbt functions to permit consistency of pru function names (as has been done with other requests already split out). - l2cap_{peer,sock}addr() -> l2cap_{peer,sock}_addr_pcb() - rfcomm_{peer,sock}addr() -> rfcomm_{peer,sock}_addr_pcb() - sco_{peer,sock}addr() -> sco_{peer,sock}_addr_pcb() * split/refactor do_sys_getsockname(lwp, fd, which, nam) into two functions do_sys_get{peer,sock}name(fd, nam). - move PRU_PEERADDR handling into do_sys_getpeername() from do_sys_getsockname() - have svr4_stream directly call do_sys_get{sock,peer}name() respectively instead of providing `which' & fix a DPRINTF string that incorrectly wrote "getpeername" when it meant "getsockname" - fix sys_getpeername() and sys_getsockname() to call do_sys_get{sock,peer}name() without `which' and `lwp' & adjust comments - bump kernel version for removal of lwp & which parameters from do_sys_getsockname() note: future cleanup to remove struct mbuf * abuse in xxx_{peer,sock}name() still to come, not done in this commit since it is easier to do post split. patch reviewed by rmind welcome to 6.99.47
2014-07-09 08:54:03 +04:00
if ((so->so_state & SS_ISCONNECTED) == 0)
error = ENOTCONN;
* split PRU_PEERADDR and PRU_SOCKADDR function out of pr_generic() usrreq switches and put into separate functions xxx_{peer,sock}addr(struct socket *, struct mbuf *). - KASSERT(solocked(so)) always in new functions even if request is not implemented - KASSERT(pcb != NULL) and KASSERT(nam) if the request is implemented and not for tcp. * for tcp roll #ifdef KPROF and #ifdef DEBUG code from tcp_usrreq() into easier to cut & paste functions tcp_debug_capture() and tcp_debug_trace() - functions provided by rmind - remaining use of PRU_{PEER,SOCK}ADDR #define to be removed in a future commit. * rename netbt functions to permit consistency of pru function names (as has been done with other requests already split out). - l2cap_{peer,sock}addr() -> l2cap_{peer,sock}_addr_pcb() - rfcomm_{peer,sock}addr() -> rfcomm_{peer,sock}_addr_pcb() - sco_{peer,sock}addr() -> sco_{peer,sock}_addr_pcb() * split/refactor do_sys_getsockname(lwp, fd, which, nam) into two functions do_sys_get{peer,sock}name(fd, nam). - move PRU_PEERADDR handling into do_sys_getpeername() from do_sys_getsockname() - have svr4_stream directly call do_sys_get{sock,peer}name() respectively instead of providing `which' & fix a DPRINTF string that incorrectly wrote "getpeername" when it meant "getsockname" - fix sys_getpeername() and sys_getsockname() to call do_sys_get{sock,peer}name() without `which' and `lwp' & adjust comments - bump kernel version for removal of lwp & which parameters from do_sys_getsockname() note: future cleanup to remove struct mbuf * abuse in xxx_{peer,sock}name() still to come, not done in this commit since it is easier to do post split. patch reviewed by rmind welcome to 6.99.47
2014-07-09 08:54:03 +04:00
else {
error = (*so->so_proto->pr_usrreqs->pr_peeraddr)(so, nam);
}
sounlock(so);
fd_putfile(fd);
return error;
}
* split PRU_PEERADDR and PRU_SOCKADDR function out of pr_generic() usrreq switches and put into separate functions xxx_{peer,sock}addr(struct socket *, struct mbuf *). - KASSERT(solocked(so)) always in new functions even if request is not implemented - KASSERT(pcb != NULL) and KASSERT(nam) if the request is implemented and not for tcp. * for tcp roll #ifdef KPROF and #ifdef DEBUG code from tcp_usrreq() into easier to cut & paste functions tcp_debug_capture() and tcp_debug_trace() - functions provided by rmind - remaining use of PRU_{PEER,SOCK}ADDR #define to be removed in a future commit. * rename netbt functions to permit consistency of pru function names (as has been done with other requests already split out). - l2cap_{peer,sock}addr() -> l2cap_{peer,sock}_addr_pcb() - rfcomm_{peer,sock}addr() -> rfcomm_{peer,sock}_addr_pcb() - sco_{peer,sock}addr() -> sco_{peer,sock}_addr_pcb() * split/refactor do_sys_getsockname(lwp, fd, which, nam) into two functions do_sys_get{peer,sock}name(fd, nam). - move PRU_PEERADDR handling into do_sys_getpeername() from do_sys_getsockname() - have svr4_stream directly call do_sys_get{sock,peer}name() respectively instead of providing `which' & fix a DPRINTF string that incorrectly wrote "getpeername" when it meant "getsockname" - fix sys_getpeername() and sys_getsockname() to call do_sys_get{sock,peer}name() without `which' and `lwp' & adjust comments - bump kernel version for removal of lwp & which parameters from do_sys_getsockname() note: future cleanup to remove struct mbuf * abuse in xxx_{peer,sock}name() still to come, not done in this commit since it is easier to do post split. patch reviewed by rmind welcome to 6.99.47
2014-07-09 08:54:03 +04:00
/*
* Get local socket name.
*/
int
do_sys_getsockname(int fd, struct sockaddr *nam)
* split PRU_PEERADDR and PRU_SOCKADDR function out of pr_generic() usrreq switches and put into separate functions xxx_{peer,sock}addr(struct socket *, struct mbuf *). - KASSERT(solocked(so)) always in new functions even if request is not implemented - KASSERT(pcb != NULL) and KASSERT(nam) if the request is implemented and not for tcp. * for tcp roll #ifdef KPROF and #ifdef DEBUG code from tcp_usrreq() into easier to cut & paste functions tcp_debug_capture() and tcp_debug_trace() - functions provided by rmind - remaining use of PRU_{PEER,SOCK}ADDR #define to be removed in a future commit. * rename netbt functions to permit consistency of pru function names (as has been done with other requests already split out). - l2cap_{peer,sock}addr() -> l2cap_{peer,sock}_addr_pcb() - rfcomm_{peer,sock}addr() -> rfcomm_{peer,sock}_addr_pcb() - sco_{peer,sock}addr() -> sco_{peer,sock}_addr_pcb() * split/refactor do_sys_getsockname(lwp, fd, which, nam) into two functions do_sys_get{peer,sock}name(fd, nam). - move PRU_PEERADDR handling into do_sys_getpeername() from do_sys_getsockname() - have svr4_stream directly call do_sys_get{sock,peer}name() respectively instead of providing `which' & fix a DPRINTF string that incorrectly wrote "getpeername" when it meant "getsockname" - fix sys_getpeername() and sys_getsockname() to call do_sys_get{sock,peer}name() without `which' and `lwp' & adjust comments - bump kernel version for removal of lwp & which parameters from do_sys_getsockname() note: future cleanup to remove struct mbuf * abuse in xxx_{peer,sock}name() still to come, not done in this commit since it is easier to do post split. patch reviewed by rmind welcome to 6.99.47
2014-07-09 08:54:03 +04:00
{
struct socket *so;
int error;
if ((error = fd_getsock(fd, &so)) != 0)
return error;
solock(so);
error = (*so->so_proto->pr_usrreqs->pr_sockaddr)(so, nam);
* split PRU_PEERADDR and PRU_SOCKADDR function out of pr_generic() usrreq switches and put into separate functions xxx_{peer,sock}addr(struct socket *, struct mbuf *). - KASSERT(solocked(so)) always in new functions even if request is not implemented - KASSERT(pcb != NULL) and KASSERT(nam) if the request is implemented and not for tcp. * for tcp roll #ifdef KPROF and #ifdef DEBUG code from tcp_usrreq() into easier to cut & paste functions tcp_debug_capture() and tcp_debug_trace() - functions provided by rmind - remaining use of PRU_{PEER,SOCK}ADDR #define to be removed in a future commit. * rename netbt functions to permit consistency of pru function names (as has been done with other requests already split out). - l2cap_{peer,sock}addr() -> l2cap_{peer,sock}_addr_pcb() - rfcomm_{peer,sock}addr() -> rfcomm_{peer,sock}_addr_pcb() - sco_{peer,sock}addr() -> sco_{peer,sock}_addr_pcb() * split/refactor do_sys_getsockname(lwp, fd, which, nam) into two functions do_sys_get{peer,sock}name(fd, nam). - move PRU_PEERADDR handling into do_sys_getpeername() from do_sys_getsockname() - have svr4_stream directly call do_sys_get{sock,peer}name() respectively instead of providing `which' & fix a DPRINTF string that incorrectly wrote "getpeername" when it meant "getsockname" - fix sys_getpeername() and sys_getsockname() to call do_sys_get{sock,peer}name() without `which' and `lwp' & adjust comments - bump kernel version for removal of lwp & which parameters from do_sys_getsockname() note: future cleanup to remove struct mbuf * abuse in xxx_{peer,sock}name() still to come, not done in this commit since it is easier to do post split. patch reviewed by rmind welcome to 6.99.47
2014-07-09 08:54:03 +04:00
sounlock(so);
fd_putfile(fd);
return error;
}
int
copyout_sockname_sb(struct sockaddr *asa, unsigned int *alen, int flags,
struct sockaddr_big *addr)
{
unsigned int len;
int error;
if (asa == NULL)
/* Assume application not interested */
return 0;
if (flags & MSG_LENUSRSPACE) {
error = copyin(alen, &len, sizeof(len));
if (error)
return error;
} else
len = *alen;
if (addr == NULL) {
len = 0;
error = 0;
} else {
if (len > addr->sb_len)
len = addr->sb_len;
/* XXX addr isn't an mbuf... */
ktrkuser(mbuftypes[MT_SONAME], addr, len);
error = copyout(addr, asa, len);
}
if (error == 0) {
if (flags & MSG_LENUSRSPACE)
error = copyout(&len, alen, sizeof(len));
else
*alen = len;
}
return error;
}
int
copyout_sockname(struct sockaddr *asa, unsigned int *alen, int flags,
struct mbuf *addr)
{
int len;
int error;
if (asa == NULL)
/* Assume application not interested */
return 0;
if (flags & MSG_LENUSRSPACE) {
error = copyin(alen, &len, sizeof(len));
if (error)
return error;
} else
len = *alen;
if (len < 0)
return EINVAL;
if (addr == NULL) {
len = 0;
error = 0;
} else {
if (len > addr->m_len)
len = addr->m_len;
/* Maybe this ought to copy a chain ? */
ktrkuser(mbuftypes[MT_SONAME], mtod(addr, void *), len);
error = copyout(mtod(addr, void *), asa, len);
}
if (error == 0) {
if (flags & MSG_LENUSRSPACE)
error = copyout(&len, alen, sizeof(len));
else
*alen = len;
}
return error;
}
/*
* Get socket name.
*/
int
sys_getsockname(struct lwp *l, const struct sys_getsockname_args *uap,
register_t *retval)
{
/* {
syscallarg(int) fdes;
syscallarg(struct sockaddr *) asa;
syscallarg(unsigned int *) alen;
} */
struct sockaddr_big sbig;
int error;
sbig.sb_len = UCHAR_MAX;
error = do_sys_getsockname(SCARG(uap, fdes), (struct sockaddr *)&sbig);
if (error != 0)
return error;
error = copyout_sockname_sb(SCARG(uap, asa), SCARG(uap, alen),
MSG_LENUSRSPACE, &sbig);
return error;
1993-03-21 12:45:37 +03:00
}
/*
* Get name of peer for connected socket.
*/
int
sys_getpeername(struct lwp *l, const struct sys_getpeername_args *uap,
register_t *retval)
{
/* {
2001-02-27 08:19:13 +03:00
syscallarg(int) fdes;
syscallarg(struct sockaddr *) asa;
syscallarg(unsigned int *) alen;
} */
struct sockaddr_big sbig;
int error;
1993-03-21 12:45:37 +03:00
sbig.sb_len = UCHAR_MAX;
error = do_sys_getpeername(SCARG(uap, fdes), (struct sockaddr *)&sbig);
if (error != 0)
return error;
error = copyout_sockname_sb(SCARG(uap, asa), SCARG(uap, alen),
MSG_LENUSRSPACE, &sbig);
return error;
1993-03-21 12:45:37 +03:00
}
static int
sockargs_sb(struct sockaddr_big *sb, const void *name, socklen_t buflen)
{
int error;
/*
* We can't allow socket names > UCHAR_MAX in length, since that
* will overflow sb_len. Further no reasonable buflen is <=
* offsetof(sockaddr_big, sb_data) since it shall be at least
* the size of the preamble sb_len and sb_family members.
*/
if (buflen > UCHAR_MAX ||
buflen <= offsetof(struct sockaddr_big, sb_data))
return EINVAL;
error = copyin(name, (void *)sb, buflen);
if (error)
return error;
2016-12-04 01:28:16 +03:00
ktrkuser(mbuftypes[MT_SONAME], sb, buflen);
#if BYTE_ORDER != BIG_ENDIAN
/*
* 4.3BSD compat thing - need to stay, since bind(2),
* connect(2), sendto(2) were not versioned for COMPAT_43.
*/
if (sb->sb_family == 0 && sb->sb_len < AF_MAX)
sb->sb_family = sb->sb_len;
#endif
sb->sb_len = buflen;
return 0;
}
/*
* XXX In a perfect world, we wouldn't pass around socket control
* XXX arguments in mbufs, and this could go away.
*/
int
sockargs(struct mbuf **mp, const void *bf, size_t buflen, enum uio_seg seg,
int type)
1993-03-21 12:45:37 +03:00
{
2001-02-27 08:19:13 +03:00
struct sockaddr *sa;
struct mbuf *m;
int error;
1993-03-21 12:45:37 +03:00
/*
* We can't allow socket names > UCHAR_MAX in length, since that
* will overflow sa_len. Control data more than a page size in
* length is just too much.
*/
if (buflen > (type == MT_SONAME ? UCHAR_MAX : PAGE_SIZE))
return EINVAL;
/*
* length must greater than sizeof(sa_family) + sizeof(sa_len)
*/
if (type == MT_SONAME && buflen <= 2)
return EINVAL;
/* Allocate an mbuf to hold the arguments. */
1993-03-21 12:45:37 +03:00
m = m_get(M_WAIT, type);
/* can't claim. don't who to assign it to. */
if (buflen > MLEN) {
/*
* Won't fit into a regular mbuf, so we allocate just
* enough external storage to hold the argument.
*/
MEXTMALLOC(m, buflen, M_WAITOK);
}
1993-03-21 12:45:37 +03:00
m->m_len = buflen;
if (seg == UIO_USERSPACE) {
error = copyin(bf, mtod(m, void *), buflen);
if (error) {
(void)m_free(m);
return error;
}
ktrkuser(mbuftypes[type], mtod(m, void *), buflen);
} else {
memcpy(mtod(m, void *), bf, buflen);
1993-03-21 12:45:37 +03:00
}
*mp = m;
if (type == MT_SONAME) {
sa = mtod(m, struct sockaddr *);
#if BYTE_ORDER != BIG_ENDIAN
/*
* 4.3BSD compat thing - need to stay, since bind(2),
* connect(2), sendto(2) were not versioned for COMPAT_43.
*/
1993-03-21 12:45:37 +03:00
if (sa->sa_family == 0 && sa->sa_len < AF_MAX)
sa->sa_family = sa->sa_len;
#endif
sa->sa_len = buflen;
}
return 0;
1993-03-21 12:45:37 +03:00
}