1999-05-06 00:01:01 +04:00
|
|
|
/* $NetBSD: uipc_syscalls.c,v 1.43 1999/05/05 20:01:09 thorpej Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-05-04 14:27:20 +04: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. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
1998-06-26 01:17:15 +04:00
|
|
|
#include "opt_ktrace.h"
|
1998-12-18 16:18:42 +03:00
|
|
|
#include "opt_compat_freebsd.h"
|
|
|
|
#include "opt_compat_linux.h"
|
|
|
|
#include "opt_compat_sunos.h"
|
|
|
|
#include "opt_compat_hpux.h"
|
|
|
|
#include "opt_compat_ultrix.h"
|
|
|
|
#include "opt_compat_43.h"
|
1999-04-30 09:29:20 +04:00
|
|
|
#include "opt_compat_osf1.h"
|
1998-12-18 16:18:42 +03:00
|
|
|
#if defined(COMPAT_43) || defined(COMPAT_SUNOS) || defined(COMPAT_LINUX) || \
|
1999-04-30 09:29:20 +04:00
|
|
|
defined(COMPAT_HPUX) || defined(COMPAT_FREEBSD) || \
|
|
|
|
defined(COMPAT_ULTRIX) || defined(COMPAT_OSF1)
|
1998-12-18 16:18:42 +03:00
|
|
|
#define COMPAT_OLDSOCK /* used by <sys/socket.h> */
|
|
|
|
#endif
|
1998-06-26 01:17:15 +04:00
|
|
|
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/param.h>
|
1994-10-20 07:22:35 +03:00
|
|
|
#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>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#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-03-21 12:45:37 +03:00
|
|
|
#ifdef KTRACE
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/ktrace.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
|
1994-10-20 07:22:35 +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 struct fileops socketops;
|
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_socket(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_socket_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) domain;
|
|
|
|
syscallarg(int) type;
|
|
|
|
syscallarg(int) protocol;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct filedesc *fdp = p->p_fd;
|
|
|
|
struct socket *so;
|
|
|
|
struct file *fp;
|
|
|
|
int fd, error;
|
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* falloc() will use the desciptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = falloc(p, &fp, &fd)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
fp->f_flag = FREAD|FWRITE;
|
|
|
|
fp->f_type = DTYPE_SOCKET;
|
|
|
|
fp->f_ops = &socketops;
|
1996-02-04 05:17:43 +03:00
|
|
|
error = socreate(SCARG(uap, domain), &so, SCARG(uap, type),
|
|
|
|
SCARG(uap, protocol));
|
|
|
|
if (error) {
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
fdp->fd_ofiles[fd] = 0;
|
|
|
|
ffree(fp);
|
|
|
|
} else {
|
|
|
|
fp->f_data = (caddr_t)so;
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
*retval = fd;
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_bind(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_bind_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(const struct sockaddr *) name;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
syscallarg(unsigned int) namelen;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct file *fp;
|
|
|
|
struct mbuf *nam;
|
|
|
|
int error;
|
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1996-02-04 05:17:43 +03:00
|
|
|
error = sockargs(&nam, SCARG(uap, name), SCARG(uap, namelen),
|
1996-12-22 13:16:54 +03:00
|
|
|
MT_SONAME);
|
1999-05-06 00:01:01 +04:00
|
|
|
if (error) {
|
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1999-05-06 00:01:01 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
error = sobind((struct socket *)fp->f_data, nam);
|
|
|
|
m_freem(nam);
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_listen(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_listen_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
|
|
|
syscallarg(int) backlog;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct file *fp;
|
|
|
|
int error;
|
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1999-05-06 00:01:01 +04:00
|
|
|
error = solisten((struct socket *)fp->f_data, SCARG(uap, backlog));
|
|
|
|
FILE_UNUSE(fp, p);
|
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_accept(p, v, retval)
|
1993-07-17 19:24:33 +04:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_accept_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(struct sockaddr *) name;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
syscallarg(unsigned int *) anamelen;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct file *fp;
|
|
|
|
struct mbuf *nam;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
unsigned int namelen;
|
|
|
|
int error, s, tmpfd;
|
1993-03-21 12:45:37 +03:00
|
|
|
register struct socket *so;
|
|
|
|
|
1994-10-20 07:22:35 +03:00
|
|
|
if (SCARG(uap, name) && (error = copyin((caddr_t)SCARG(uap, anamelen),
|
1998-08-01 02:50:48 +04:00
|
|
|
(caddr_t)&namelen, sizeof(namelen))))
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1995-08-13 03:59:09 +04:00
|
|
|
s = splsoftnet();
|
1993-03-21 12:45:37 +03:00
|
|
|
so = (struct socket *)fp->f_data;
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
if ((so->so_options & SO_ACCEPTCONN) == 0) {
|
|
|
|
splx(s);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
if ((so->so_state & SS_NBIO) && so->so_qlen == 0) {
|
|
|
|
splx(s);
|
|
|
|
return (EWOULDBLOCK);
|
|
|
|
}
|
|
|
|
while (so->so_qlen == 0 && so->so_error == 0) {
|
|
|
|
if (so->so_state & SS_CANTRCVMORE) {
|
|
|
|
so->so_error = ECONNABORTED;
|
|
|
|
break;
|
|
|
|
}
|
1996-02-04 05:17:43 +03:00
|
|
|
error = tsleep((caddr_t)&so->so_timeo, PSOCK | PCATCH,
|
|
|
|
netcon, 0);
|
|
|
|
if (error) {
|
1993-03-21 12:45:37 +03:00
|
|
|
splx(s);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (so->so_error) {
|
|
|
|
error = so->so_error;
|
|
|
|
so->so_error = 0;
|
|
|
|
splx(s);
|
|
|
|
return (error);
|
|
|
|
}
|
1999-05-06 00:01:01 +04:00
|
|
|
/* falloc() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = falloc(p, &fp, &tmpfd)) != 0) {
|
1993-03-21 12:45:37 +03:00
|
|
|
splx(s);
|
|
|
|
return (error);
|
|
|
|
}
|
1994-10-20 07:22:35 +03:00
|
|
|
*retval = tmpfd;
|
1998-01-08 02:47:08 +03:00
|
|
|
{ struct socket *aso = so->so_q.tqh_first;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (soqremque(aso, 1) == 0)
|
|
|
|
panic("accept");
|
|
|
|
so = aso;
|
|
|
|
}
|
|
|
|
fp->f_type = DTYPE_SOCKET;
|
|
|
|
fp->f_flag = FREAD|FWRITE;
|
|
|
|
fp->f_ops = &socketops;
|
|
|
|
fp->f_data = (caddr_t)so;
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
nam = m_get(M_WAIT, MT_SONAME);
|
|
|
|
(void) soaccept(so, nam);
|
1994-10-20 07:22:35 +03:00
|
|
|
if (SCARG(uap, name)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (namelen > nam->m_len)
|
|
|
|
namelen = nam->m_len;
|
|
|
|
/* SHOULD COPY OUT A CHAIN HERE */
|
1994-10-20 07:22:35 +03:00
|
|
|
if ((error = copyout(mtod(nam, caddr_t),
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
(caddr_t)SCARG(uap, name), namelen)) == 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
error = copyout((caddr_t)&namelen,
|
1994-10-20 07:22:35 +03:00
|
|
|
(caddr_t)SCARG(uap, anamelen),
|
1998-08-01 02:50:48 +04:00
|
|
|
sizeof(*SCARG(uap, anamelen)));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
m_freem(nam);
|
|
|
|
splx(s);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_connect(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_connect_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(const struct sockaddr *) name;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
syscallarg(unsigned int) namelen;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct file *fp;
|
|
|
|
register struct socket *so;
|
|
|
|
struct mbuf *nam;
|
|
|
|
int error, s;
|
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
so = (struct socket *)fp->f_data;
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
if ((so->so_state & SS_NBIO) && (so->so_state & SS_ISCONNECTING))
|
|
|
|
return (EALREADY);
|
1996-02-04 05:17:43 +03:00
|
|
|
error = sockargs(&nam, SCARG(uap, name), SCARG(uap, namelen),
|
1996-12-22 13:16:54 +03:00
|
|
|
MT_SONAME);
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
error = soconnect(so, nam);
|
|
|
|
if (error)
|
|
|
|
goto bad;
|
|
|
|
if ((so->so_state & SS_NBIO) && (so->so_state & SS_ISCONNECTING)) {
|
|
|
|
m_freem(nam);
|
|
|
|
return (EINPROGRESS);
|
|
|
|
}
|
1995-08-13 03:59:09 +04:00
|
|
|
s = splsoftnet();
|
1996-02-04 05:17:43 +03:00
|
|
|
while ((so->so_state & SS_ISCONNECTING) && so->so_error == 0) {
|
|
|
|
error = tsleep((caddr_t)&so->so_timeo, PSOCK | PCATCH,
|
|
|
|
netcon, 0);
|
|
|
|
if (error)
|
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;
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
bad:
|
|
|
|
so->so_state &= ~SS_ISCONNECTING;
|
|
|
|
m_freem(nam);
|
|
|
|
if (error == ERESTART)
|
|
|
|
error = EINTR;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_socketpair(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_socketpair_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) domain;
|
|
|
|
syscallarg(int) type;
|
|
|
|
syscallarg(int) protocol;
|
|
|
|
syscallarg(int *) rsv;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
register struct filedesc *fdp = p->p_fd;
|
|
|
|
struct file *fp1, *fp2;
|
|
|
|
struct socket *so1, *so2;
|
|
|
|
int fd, error, sv[2];
|
|
|
|
|
1996-02-04 05:17:43 +03:00
|
|
|
error = socreate(SCARG(uap, domain), &so1, SCARG(uap, type),
|
|
|
|
SCARG(uap, protocol));
|
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1996-02-04 05:17:43 +03:00
|
|
|
error = socreate(SCARG(uap, domain), &so2, SCARG(uap, type),
|
|
|
|
SCARG(uap, protocol));
|
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto free1;
|
1999-05-06 00:01:01 +04:00
|
|
|
/* falloc() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = falloc(p, &fp1, &fd)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto free2;
|
|
|
|
sv[0] = fd;
|
|
|
|
fp1->f_flag = FREAD|FWRITE;
|
|
|
|
fp1->f_type = DTYPE_SOCKET;
|
|
|
|
fp1->f_ops = &socketops;
|
|
|
|
fp1->f_data = (caddr_t)so1;
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = falloc(p, &fp2, &fd)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto free3;
|
|
|
|
fp2->f_flag = FREAD|FWRITE;
|
|
|
|
fp2->f_type = DTYPE_SOCKET;
|
|
|
|
fp2->f_ops = &socketops;
|
|
|
|
fp2->f_data = (caddr_t)so2;
|
|
|
|
sv[1] = fd;
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = soconnect2(so1, so2)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto free4;
|
1994-10-20 07:22:35 +03:00
|
|
|
if (SCARG(uap, type) == SOCK_DGRAM) {
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Datagram socket connection is asymmetric.
|
|
|
|
*/
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = soconnect2(so2, so1)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto free4;
|
|
|
|
}
|
1994-10-20 07:22:35 +03:00
|
|
|
error = copyout((caddr_t)sv, (caddr_t)SCARG(uap, rsv),
|
1998-08-01 02:50:48 +04:00
|
|
|
2 * sizeof(int));
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(fp1, p);
|
|
|
|
FILE_UNUSE(fp2, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
free4:
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(fp2, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
ffree(fp2);
|
|
|
|
fdp->fd_ofiles[sv[1]] = 0;
|
|
|
|
free3:
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(fp1, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
ffree(fp1);
|
|
|
|
fdp->fd_ofiles[sv[0]] = 0;
|
|
|
|
free2:
|
|
|
|
(void)soclose(so2);
|
|
|
|
free1:
|
|
|
|
(void)soclose(so1);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_sendto(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_sendto_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(const void *) buf;
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(size_t) len;
|
|
|
|
syscallarg(int) flags;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(const struct sockaddr *) to;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
syscallarg(unsigned int) tolen;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct msghdr msg;
|
|
|
|
struct iovec aiov;
|
|
|
|
|
1996-12-22 13:16:54 +03:00
|
|
|
msg.msg_name = (caddr_t)SCARG(uap, to); /* XXX kills const */
|
1994-10-20 07:22:35 +03:00
|
|
|
msg.msg_namelen = SCARG(uap, tolen);
|
1993-03-21 12:45:37 +03:00
|
|
|
msg.msg_iov = &aiov;
|
|
|
|
msg.msg_iovlen = 1;
|
|
|
|
msg.msg_control = 0;
|
1994-05-04 14:27:20 +04:00
|
|
|
#ifdef COMPAT_OLDSOCK
|
1993-03-21 12:45:37 +03:00
|
|
|
msg.msg_flags = 0;
|
|
|
|
#endif
|
1996-12-22 13:16:54 +03:00
|
|
|
aiov.iov_base = (char *)SCARG(uap, buf); /* XXX kills const */
|
1994-10-20 07:22:35 +03:00
|
|
|
aiov.iov_len = SCARG(uap, len);
|
|
|
|
return (sendit(p, SCARG(uap, s), &msg, SCARG(uap, flags), retval));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_sendmsg(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_sendmsg_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(const struct msghdr *) msg;
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) flags;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct msghdr msg;
|
|
|
|
struct iovec aiov[UIO_SMALLIOV], *iov;
|
|
|
|
int error;
|
|
|
|
|
1998-08-01 02:50:48 +04:00
|
|
|
error = copyin(SCARG(uap, msg), (caddr_t)&msg, sizeof(msg));
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
if ((unsigned int)msg.msg_iovlen > UIO_SMALLIOV) {
|
|
|
|
if ((unsigned int)msg.msg_iovlen > IOV_MAX)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EMSGSIZE);
|
|
|
|
MALLOC(iov, struct iovec *,
|
1998-11-26 05:25:20 +03:00
|
|
|
sizeof(struct iovec) * msg.msg_iovlen, M_IOV, M_WAITOK);
|
|
|
|
} else
|
1993-03-21 12:45:37 +03:00
|
|
|
iov = aiov;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
if ((unsigned int)msg.msg_iovlen > 0) {
|
1998-11-26 05:25:20 +03:00
|
|
|
error = copyin((caddr_t)msg.msg_iov, (caddr_t)iov,
|
|
|
|
(size_t)(msg.msg_iovlen * sizeof(struct iovec)));
|
|
|
|
if (error)
|
|
|
|
goto done;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
msg.msg_iov = iov;
|
1994-05-04 14:27:20 +04:00
|
|
|
#ifdef COMPAT_OLDSOCK
|
1993-03-21 12:45:37 +03:00
|
|
|
msg.msg_flags = 0;
|
|
|
|
#endif
|
1994-10-20 07:22:35 +03:00
|
|
|
error = sendit(p, SCARG(uap, s), &msg, SCARG(uap, flags), retval);
|
1993-03-21 12:45:37 +03:00
|
|
|
done:
|
|
|
|
if (iov != aiov)
|
|
|
|
FREE(iov, M_IOV);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
sendit(p, s, mp, flags, retsize)
|
|
|
|
register struct proc *p;
|
|
|
|
int s;
|
|
|
|
register struct msghdr *mp;
|
1994-10-20 07:22:35 +03:00
|
|
|
int flags;
|
|
|
|
register_t *retsize;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
struct file *fp;
|
|
|
|
struct uio auio;
|
|
|
|
register struct iovec *iov;
|
|
|
|
register int i;
|
|
|
|
struct mbuf *to, *control;
|
|
|
|
int len, error;
|
1998-04-25 21:35:18 +04:00
|
|
|
struct socket *so;
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef KTRACE
|
|
|
|
struct iovec *ktriov = NULL;
|
|
|
|
#endif
|
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, s, &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
auio.uio_iov = mp->msg_iov;
|
|
|
|
auio.uio_iovcnt = mp->msg_iovlen;
|
|
|
|
auio.uio_segflg = UIO_USERSPACE;
|
|
|
|
auio.uio_rw = UIO_WRITE;
|
|
|
|
auio.uio_procp = p;
|
|
|
|
auio.uio_offset = 0; /* XXX */
|
|
|
|
auio.uio_resid = 0;
|
|
|
|
iov = mp->msg_iov;
|
|
|
|
for (i = 0; i < mp->msg_iovlen; i++, iov++) {
|
1996-02-04 05:17:43 +03:00
|
|
|
#if 0
|
|
|
|
/* cannot happen; iov_len is unsigned */
|
1999-05-06 00:01:01 +04:00
|
|
|
if (iov->iov_len < 0) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
1996-02-04 05:17:43 +03:00
|
|
|
#endif
|
1998-07-29 06:07:19 +04:00
|
|
|
/*
|
|
|
|
* 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 += iov->iov_len;
|
1999-05-06 00:01:01 +04:00
|
|
|
if (iov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (mp->msg_name) {
|
1996-02-04 05:17:43 +03:00
|
|
|
error = sockargs(&to, mp->msg_name, mp->msg_namelen,
|
|
|
|
MT_SONAME);
|
|
|
|
if (error)
|
1999-05-06 00:01:01 +04:00
|
|
|
goto out;
|
1993-03-21 12:45:37 +03:00
|
|
|
} else
|
|
|
|
to = 0;
|
|
|
|
if (mp->msg_control) {
|
|
|
|
if (mp->msg_controllen < sizeof(struct cmsghdr)
|
1994-05-04 14:27:20 +04:00
|
|
|
#ifdef COMPAT_OLDSOCK
|
1993-03-21 12:45:37 +03:00
|
|
|
&& mp->msg_flags != MSG_COMPAT
|
|
|
|
#endif
|
|
|
|
) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto bad;
|
|
|
|
}
|
1996-02-04 05:17:43 +03:00
|
|
|
error = sockargs(&control, mp->msg_control,
|
|
|
|
mp->msg_controllen, MT_CONTROL);
|
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto bad;
|
1994-05-04 14:27:20 +04:00
|
|
|
#ifdef COMPAT_OLDSOCK
|
1993-03-21 12:45:37 +03:00
|
|
|
if (mp->msg_flags == MSG_COMPAT) {
|
|
|
|
register struct cmsghdr *cm;
|
|
|
|
|
|
|
|
M_PREPEND(control, sizeof(*cm), M_WAIT);
|
|
|
|
if (control == 0) {
|
|
|
|
error = ENOBUFS;
|
|
|
|
goto bad;
|
|
|
|
} else {
|
|
|
|
cm = mtod(control, struct cmsghdr *);
|
|
|
|
cm->cmsg_len = control->m_len;
|
|
|
|
cm->cmsg_level = SOL_SOCKET;
|
|
|
|
cm->cmsg_type = SCM_RIGHTS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} else
|
|
|
|
control = 0;
|
|
|
|
#ifdef KTRACE
|
|
|
|
if (KTRPOINT(p, KTR_GENIO)) {
|
1998-08-01 02:50:48 +04:00
|
|
|
int iovlen = auio.uio_iovcnt * sizeof(struct iovec);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
|
Abolition of bcopy, ovbcopy, bcmp, and bzero, phase one.
bcopy(x, y, z) -> memcpy(y, x, z)
ovbcopy(x, y, z) -> memmove(y, x, z)
bcmp(x, y, z) -> memcmp(x, y, z)
bzero(x, y) -> memset(x, 0, y)
1998-08-04 08:03:10 +04:00
|
|
|
memcpy((caddr_t)ktriov, (caddr_t)auio.uio_iov, iovlen);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
len = auio.uio_resid;
|
1998-04-25 21:35:18 +04:00
|
|
|
so = (struct socket *)fp->f_data;
|
|
|
|
error = (*so->so_send)(so, to, &auio, NULL, control, flags);
|
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)
|
|
|
|
psignal(p, SIGPIPE);
|
|
|
|
}
|
|
|
|
if (error == 0)
|
|
|
|
*retsize = len - auio.uio_resid;
|
|
|
|
#ifdef KTRACE
|
|
|
|
if (ktriov != NULL) {
|
|
|
|
if (error == 0)
|
|
|
|
ktrgenio(p->p_tracep, s, UIO_WRITE,
|
|
|
|
ktriov, *retsize, error);
|
|
|
|
FREE(ktriov, M_TEMP);
|
|
|
|
}
|
|
|
|
#endif
|
1999-05-06 00:01:01 +04:00
|
|
|
bad:
|
1993-03-21 12:45:37 +03:00
|
|
|
if (to)
|
|
|
|
m_freem(to);
|
1999-05-06 00:01:01 +04:00
|
|
|
out:
|
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_recvfrom(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_recvfrom_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(void *) buf;
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(size_t) len;
|
|
|
|
syscallarg(int) flags;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(struct sockaddr *) from;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
syscallarg(unsigned int *) fromlenaddr;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct msghdr msg;
|
|
|
|
struct iovec aiov;
|
|
|
|
int error;
|
|
|
|
|
1994-10-20 07:22:35 +03:00
|
|
|
if (SCARG(uap, fromlenaddr)) {
|
1996-02-04 05:17:43 +03:00
|
|
|
error = copyin((caddr_t)SCARG(uap, fromlenaddr),
|
|
|
|
(caddr_t)&msg.msg_namelen,
|
1998-08-01 02:50:48 +04:00
|
|
|
sizeof(msg.msg_namelen));
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
} else
|
|
|
|
msg.msg_namelen = 0;
|
1996-12-22 13:16:54 +03:00
|
|
|
msg.msg_name = (caddr_t)SCARG(uap, from);
|
1993-03-21 12:45:37 +03:00
|
|
|
msg.msg_iov = &aiov;
|
|
|
|
msg.msg_iovlen = 1;
|
1994-10-20 07:22:35 +03:00
|
|
|
aiov.iov_base = SCARG(uap, buf);
|
|
|
|
aiov.iov_len = SCARG(uap, len);
|
1993-03-21 12:45:37 +03:00
|
|
|
msg.msg_control = 0;
|
1994-10-20 07:22:35 +03:00
|
|
|
msg.msg_flags = SCARG(uap, flags);
|
|
|
|
return (recvit(p, SCARG(uap, s), &msg,
|
1996-02-04 05:17:43 +03:00
|
|
|
(caddr_t)SCARG(uap, fromlenaddr), retval));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_recvmsg(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_recvmsg_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
|
|
|
syscallarg(struct msghdr *) msg;
|
|
|
|
syscallarg(int) flags;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct msghdr msg;
|
|
|
|
struct iovec aiov[UIO_SMALLIOV], *uiov, *iov;
|
|
|
|
register int error;
|
|
|
|
|
1996-02-04 05:17:43 +03:00
|
|
|
error = copyin((caddr_t)SCARG(uap, msg), (caddr_t)&msg,
|
1998-08-01 02:50:48 +04:00
|
|
|
sizeof(msg));
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
if ((unsigned int)msg.msg_iovlen > UIO_SMALLIOV) {
|
|
|
|
if ((unsigned int)msg.msg_iovlen > IOV_MAX)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EMSGSIZE);
|
|
|
|
MALLOC(iov, struct iovec *,
|
1998-11-26 05:25:20 +03:00
|
|
|
sizeof(struct iovec) * msg.msg_iovlen, M_IOV, M_WAITOK);
|
|
|
|
} else
|
1993-03-21 12:45:37 +03:00
|
|
|
iov = aiov;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
if ((unsigned int)msg.msg_iovlen > 0) {
|
1998-11-26 05:25:20 +03:00
|
|
|
error = copyin((caddr_t)msg.msg_iov, (caddr_t)iov,
|
|
|
|
(size_t)(msg.msg_iovlen * sizeof(struct iovec)));
|
|
|
|
if (error)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
uiov = msg.msg_iov;
|
|
|
|
msg.msg_iov = iov;
|
1994-05-04 14:27:20 +04:00
|
|
|
#ifdef COMPAT_OLDSOCK
|
1994-10-20 07:22:35 +03:00
|
|
|
msg.msg_flags = SCARG(uap, flags) &~ MSG_COMPAT;
|
1993-03-21 12:45:37 +03:00
|
|
|
#else
|
1994-10-20 07:22:35 +03:00
|
|
|
msg.msg_flags = SCARG(uap, flags);
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
1994-10-20 07:22:35 +03:00
|
|
|
if ((error = recvit(p, SCARG(uap, s), &msg, (caddr_t)0, retval)) == 0) {
|
1993-03-21 12:45:37 +03:00
|
|
|
msg.msg_iov = uiov;
|
1994-10-20 07:22:35 +03:00
|
|
|
error = copyout((caddr_t)&msg, (caddr_t)SCARG(uap, msg),
|
|
|
|
sizeof(msg));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
done:
|
|
|
|
if (iov != aiov)
|
|
|
|
FREE(iov, M_IOV);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
recvit(p, s, mp, namelenp, retsize)
|
|
|
|
register struct proc *p;
|
|
|
|
int s;
|
|
|
|
register struct msghdr *mp;
|
|
|
|
caddr_t namelenp;
|
1994-10-20 07:22:35 +03:00
|
|
|
register_t *retsize;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
struct file *fp;
|
|
|
|
struct uio auio;
|
|
|
|
register struct iovec *iov;
|
|
|
|
register int i;
|
|
|
|
int len, error;
|
|
|
|
struct mbuf *from = 0, *control = 0;
|
1998-04-25 21:35:18 +04:00
|
|
|
struct socket *so;
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef KTRACE
|
|
|
|
struct iovec *ktriov = NULL;
|
|
|
|
#endif
|
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, s, &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
auio.uio_iov = mp->msg_iov;
|
|
|
|
auio.uio_iovcnt = mp->msg_iovlen;
|
|
|
|
auio.uio_segflg = UIO_USERSPACE;
|
|
|
|
auio.uio_rw = UIO_READ;
|
|
|
|
auio.uio_procp = p;
|
|
|
|
auio.uio_offset = 0; /* XXX */
|
|
|
|
auio.uio_resid = 0;
|
|
|
|
iov = mp->msg_iov;
|
|
|
|
for (i = 0; i < mp->msg_iovlen; i++, iov++) {
|
1996-02-04 05:17:43 +03:00
|
|
|
#if 0
|
|
|
|
/* cannot happen iov_len is unsigned */
|
1999-05-06 00:01:01 +04:00
|
|
|
if (iov->iov_len < 0) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto out1;
|
|
|
|
}
|
1996-02-04 05:17:43 +03:00
|
|
|
#endif
|
1998-07-29 06:07:19 +04:00
|
|
|
/*
|
|
|
|
* 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 += iov->iov_len;
|
1999-05-06 00:01:01 +04:00
|
|
|
if (iov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto out1;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
#ifdef KTRACE
|
|
|
|
if (KTRPOINT(p, KTR_GENIO)) {
|
1998-08-01 02:50:48 +04:00
|
|
|
int iovlen = auio.uio_iovcnt * sizeof(struct iovec);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
|
Abolition of bcopy, ovbcopy, bcmp, and bzero, phase one.
bcopy(x, y, z) -> memcpy(y, x, z)
ovbcopy(x, y, z) -> memmove(y, x, z)
bcmp(x, y, z) -> memcmp(x, y, z)
bzero(x, y) -> memset(x, 0, y)
1998-08-04 08:03:10 +04:00
|
|
|
memcpy((caddr_t)ktriov, (caddr_t)auio.uio_iov, iovlen);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
len = auio.uio_resid;
|
1998-04-25 21:35:18 +04:00
|
|
|
so = (struct socket *)fp->f_data;
|
|
|
|
error = (*so->so_receive)(so, &from, &auio, NULL,
|
|
|
|
mp->msg_control ? &control : NULL, &mp->msg_flags);
|
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;
|
|
|
|
}
|
|
|
|
#ifdef KTRACE
|
|
|
|
if (ktriov != NULL) {
|
|
|
|
if (error == 0)
|
|
|
|
ktrgenio(p->p_tracep, s, UIO_READ,
|
|
|
|
ktriov, len - auio.uio_resid, error);
|
|
|
|
FREE(ktriov, M_TEMP);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
*retsize = len - auio.uio_resid;
|
|
|
|
if (mp->msg_name) {
|
|
|
|
len = mp->msg_namelen;
|
|
|
|
if (len <= 0 || from == 0)
|
|
|
|
len = 0;
|
|
|
|
else {
|
1994-05-04 14:27:20 +04:00
|
|
|
#ifdef COMPAT_OLDSOCK
|
1993-03-21 12:45:37 +03:00
|
|
|
if (mp->msg_flags & MSG_COMPAT)
|
|
|
|
mtod(from, struct osockaddr *)->sa_family =
|
|
|
|
mtod(from, struct sockaddr *)->sa_family;
|
|
|
|
#endif
|
|
|
|
if (len > from->m_len)
|
|
|
|
len = from->m_len;
|
|
|
|
/* else if len < from->m_len ??? */
|
1996-02-04 05:17:43 +03:00
|
|
|
error = copyout(mtod(from, caddr_t),
|
|
|
|
(caddr_t)mp->msg_name, (unsigned)len);
|
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
mp->msg_namelen = len;
|
|
|
|
if (namelenp &&
|
1998-08-01 02:50:48 +04:00
|
|
|
(error = copyout((caddr_t)&len, namelenp, sizeof(int)))) {
|
1994-05-04 14:27:20 +04:00
|
|
|
#ifdef COMPAT_OLDSOCK
|
1993-03-21 12:45:37 +03:00
|
|
|
if (mp->msg_flags & MSG_COMPAT)
|
|
|
|
error = 0; /* old recvfrom didn't check */
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mp->msg_control) {
|
1994-05-04 14:27:20 +04:00
|
|
|
#ifdef COMPAT_OLDSOCK
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* We assume that old recvmsg calls won't receive access
|
|
|
|
* rights and other control info, esp. as control info
|
|
|
|
* is always optional and those options didn't exist in 4.3.
|
|
|
|
* If we receive rights, trim the cmsghdr; anything else
|
|
|
|
* is tossed.
|
|
|
|
*/
|
|
|
|
if (control && mp->msg_flags & MSG_COMPAT) {
|
|
|
|
if (mtod(control, struct cmsghdr *)->cmsg_level !=
|
|
|
|
SOL_SOCKET ||
|
|
|
|
mtod(control, struct cmsghdr *)->cmsg_type !=
|
|
|
|
SCM_RIGHTS) {
|
|
|
|
mp->msg_controllen = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
1998-08-01 02:50:48 +04:00
|
|
|
control->m_len -= sizeof(struct cmsghdr);
|
|
|
|
control->m_data += sizeof(struct cmsghdr);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
len = mp->msg_controllen;
|
|
|
|
if (len <= 0 || control == 0)
|
|
|
|
len = 0;
|
|
|
|
else {
|
1998-01-07 08:49:25 +03:00
|
|
|
struct mbuf *m = control;
|
|
|
|
caddr_t p = (caddr_t)mp->msg_control;
|
|
|
|
|
1998-02-07 02:19:26 +03:00
|
|
|
do {
|
1998-01-07 08:49:25 +03:00
|
|
|
i = m->m_len;
|
|
|
|
if (len < i) {
|
|
|
|
mp->msg_flags |= MSG_CTRUNC;
|
|
|
|
i = len;
|
|
|
|
}
|
|
|
|
error = copyout(mtod(m, caddr_t), p,
|
|
|
|
(unsigned)i);
|
1998-02-07 02:19:26 +03:00
|
|
|
if (m->m_next)
|
|
|
|
i = ALIGN(i);
|
1998-01-07 08:49:25 +03:00
|
|
|
p += i;
|
|
|
|
len -= i;
|
|
|
|
if (error != 0 || len <= 0)
|
|
|
|
break;
|
1998-02-07 02:19:26 +03:00
|
|
|
} while ((m = m->m_next) != NULL);
|
1998-01-07 08:49:25 +03:00
|
|
|
len = p - (caddr_t)mp->msg_control;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
mp->msg_controllen = len;
|
|
|
|
}
|
1999-05-06 00:01:01 +04:00
|
|
|
out:
|
1993-03-21 12:45:37 +03:00
|
|
|
if (from)
|
|
|
|
m_freem(from);
|
|
|
|
if (control)
|
|
|
|
m_freem(control);
|
1999-05-06 00:01:01 +04:00
|
|
|
out1:
|
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_shutdown(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_shutdown_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
|
|
|
syscallarg(int) how;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct file *fp;
|
|
|
|
int error;
|
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1999-05-06 00:01:01 +04:00
|
|
|
error = soshutdown((struct socket *)fp->f_data, SCARG(uap, how));
|
|
|
|
FILE_UNUSE(fp, p);
|
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_setsockopt(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_setsockopt_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
|
|
|
syscallarg(int) level;
|
|
|
|
syscallarg(int) name;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(const void *) val;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
syscallarg(unsigned int) valsize;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct file *fp;
|
|
|
|
struct mbuf *m = NULL;
|
|
|
|
int error;
|
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1999-05-06 00:01:01 +04:00
|
|
|
if (SCARG(uap, valsize) > MLEN) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
1994-10-20 07:22:35 +03:00
|
|
|
if (SCARG(uap, val)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
m = m_get(M_WAIT, MT_SOOPTS);
|
1996-02-04 05:17:43 +03:00
|
|
|
error = copyin(SCARG(uap, val), mtod(m, caddr_t),
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
SCARG(uap, valsize));
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error) {
|
1993-03-21 12:45:37 +03:00
|
|
|
(void) m_free(m);
|
1999-05-06 00:01:01 +04:00
|
|
|
goto out;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-10-20 07:22:35 +03:00
|
|
|
m->m_len = SCARG(uap, valsize);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1999-05-06 00:01:01 +04:00
|
|
|
error = sosetopt((struct socket *)fp->f_data, SCARG(uap, level),
|
|
|
|
SCARG(uap, name), m);
|
|
|
|
out:
|
|
|
|
FILE_UNUSE(fp, p);
|
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_getsockopt(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_getsockopt_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) s;
|
|
|
|
syscallarg(int) level;
|
|
|
|
syscallarg(int) name;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(void *) val;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
syscallarg(unsigned int *) avalsize;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct file *fp;
|
|
|
|
struct mbuf *m = NULL;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
unsigned int valsize;
|
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1994-10-20 07:22:35 +03:00
|
|
|
if (SCARG(uap, val)) {
|
1996-02-04 05:17:43 +03:00
|
|
|
error = copyin((caddr_t)SCARG(uap, avalsize),
|
1998-08-01 02:50:48 +04:00
|
|
|
(caddr_t)&valsize, sizeof(valsize));
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1999-05-06 00:01:01 +04:00
|
|
|
goto out;
|
1993-03-21 12:45:37 +03:00
|
|
|
} else
|
|
|
|
valsize = 0;
|
1994-10-20 07:22:35 +03:00
|
|
|
if ((error = sogetopt((struct socket *)fp->f_data, SCARG(uap, level),
|
|
|
|
SCARG(uap, name), &m)) == 0 && SCARG(uap, val) && valsize &&
|
|
|
|
m != NULL) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (valsize > m->m_len)
|
|
|
|
valsize = m->m_len;
|
1994-10-20 07:22:35 +03:00
|
|
|
error = copyout(mtod(m, caddr_t), SCARG(uap, val),
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
valsize);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (error == 0)
|
|
|
|
error = copyout((caddr_t)&valsize,
|
1998-08-01 02:50:48 +04:00
|
|
|
(caddr_t)SCARG(uap, avalsize), sizeof(valsize));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (m != NULL)
|
|
|
|
(void) m_free(m);
|
1999-05-06 00:01:01 +04:00
|
|
|
out:
|
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_pipe(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-10-07 09:25:19 +03:00
|
|
|
void *v;
|
1994-10-20 07:22:35 +03:00
|
|
|
register_t *retval;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
register struct filedesc *fdp = p->p_fd;
|
|
|
|
struct file *rf, *wf;
|
|
|
|
struct socket *rso, *wso;
|
|
|
|
int fd, error;
|
|
|
|
|
1998-07-18 09:04:35 +04:00
|
|
|
if ((error = socreate(AF_LOCAL, &rso, SOCK_STREAM, 0)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1998-07-18 09:04:35 +04:00
|
|
|
if ((error = socreate(AF_LOCAL, &wso, SOCK_STREAM, 0)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto free1;
|
1999-05-06 00:01:01 +04:00
|
|
|
/* falloc() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = falloc(p, &rf, &fd)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto free2;
|
|
|
|
retval[0] = fd;
|
|
|
|
rf->f_flag = FREAD;
|
|
|
|
rf->f_type = DTYPE_SOCKET;
|
|
|
|
rf->f_ops = &socketops;
|
|
|
|
rf->f_data = (caddr_t)rso;
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = falloc(p, &wf, &fd)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto free3;
|
|
|
|
wf->f_flag = FWRITE;
|
|
|
|
wf->f_type = DTYPE_SOCKET;
|
|
|
|
wf->f_ops = &socketops;
|
|
|
|
wf->f_data = (caddr_t)wso;
|
|
|
|
retval[1] = fd;
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = unp_connect2(wso, rso)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto free4;
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(rf, p);
|
|
|
|
FILE_UNUSE(wf, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
free4:
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(wf, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
ffree(wf);
|
|
|
|
fdp->fd_ofiles[retval[1]] = 0;
|
|
|
|
free3:
|
1999-05-06 00:01:01 +04:00
|
|
|
FILE_UNUSE(rf, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
ffree(rf);
|
|
|
|
fdp->fd_ofiles[retval[0]] = 0;
|
|
|
|
free2:
|
|
|
|
(void)soclose(wso);
|
|
|
|
free1:
|
|
|
|
(void)soclose(rso);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get socket name.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_getsockname(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_getsockname_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) fdes;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(struct sockaddr *) asa;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
syscallarg(unsigned int *) alen;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct file *fp;
|
|
|
|
register struct socket *so;
|
|
|
|
struct mbuf *m;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
unsigned int len;
|
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, SCARG(uap, fdes), &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1998-08-01 02:50:48 +04:00
|
|
|
error = copyin((caddr_t)SCARG(uap, alen), (caddr_t)&len, sizeof(len));
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1999-05-06 00:01:01 +04:00
|
|
|
goto out;
|
1993-03-21 12:45:37 +03:00
|
|
|
so = (struct socket *)fp->f_data;
|
|
|
|
m = m_getclr(M_WAIT, MT_SONAME);
|
1996-05-22 17:54:55 +04:00
|
|
|
error = (*so->so_proto->pr_usrreq)(so, PRU_SOCKADDR, (struct mbuf *)0,
|
|
|
|
m, (struct mbuf *)0, (struct proc *)0);
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto bad;
|
|
|
|
if (len > m->m_len)
|
|
|
|
len = m->m_len;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
error = copyout(mtod(m, caddr_t), (caddr_t)SCARG(uap, asa), len);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (error == 0)
|
1994-10-20 07:22:35 +03:00
|
|
|
error = copyout((caddr_t)&len, (caddr_t)SCARG(uap, alen),
|
1998-08-01 02:50:48 +04:00
|
|
|
sizeof(len));
|
1999-05-06 00:01:01 +04:00
|
|
|
bad:
|
1993-03-21 12:45:37 +03:00
|
|
|
m_freem(m);
|
1999-05-06 00:01:01 +04:00
|
|
|
out:
|
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get name of peer for connected socket.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_getpeername(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct sys_getpeername_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) fdes;
|
1996-12-22 13:16:54 +03:00
|
|
|
syscallarg(struct sockaddr *) asa;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
syscallarg(unsigned int *) alen;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct file *fp;
|
|
|
|
register struct socket *so;
|
|
|
|
struct mbuf *m;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
unsigned int len;
|
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1999-05-06 00:01:01 +04:00
|
|
|
/* getsock() will use the descriptor for us */
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = getsock(p->p_fd, SCARG(uap, fdes), &fp)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
so = (struct socket *)fp->f_data;
|
1999-05-06 00:01:01 +04:00
|
|
|
if ((so->so_state & (SS_ISCONNECTED|SS_ISCONFIRMING)) == 0) {
|
|
|
|
error = ENOTCONN;
|
|
|
|
goto out;
|
|
|
|
}
|
1998-08-01 02:50:48 +04:00
|
|
|
error = copyin((caddr_t)SCARG(uap, alen), (caddr_t)&len, sizeof(len));
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1999-05-06 00:01:01 +04:00
|
|
|
goto out;
|
1993-03-21 12:45:37 +03:00
|
|
|
m = m_getclr(M_WAIT, MT_SONAME);
|
1996-05-22 17:54:55 +04:00
|
|
|
error = (*so->so_proto->pr_usrreq)(so, PRU_PEERADDR, (struct mbuf *)0,
|
|
|
|
m, (struct mbuf *)0, (struct proc *)0);
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto bad;
|
|
|
|
if (len > m->m_len)
|
|
|
|
len = m->m_len;
|
* Due to addition and use of socklen_t, make the socket option and address
arguments passed to accept(), bind(), connect(), getpeername(), getsockname(),
getsockopt(), recvfrom(), sendto() and sendmsg() unsigned, which also elimiates
a few casts.
* Reflect the (now) signedness of msg_iovlen, which necessiates the addition
of a few casts.
1999-02-10 21:02:28 +03:00
|
|
|
error = copyout(mtod(m, caddr_t), (caddr_t)SCARG(uap, asa), len);
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto bad;
|
1998-08-01 02:50:48 +04:00
|
|
|
error = copyout((caddr_t)&len, (caddr_t)SCARG(uap, alen), sizeof(len));
|
1999-05-06 00:01:01 +04:00
|
|
|
bad:
|
1993-03-21 12:45:37 +03:00
|
|
|
m_freem(m);
|
1999-05-06 00:01:01 +04:00
|
|
|
out:
|
|
|
|
FILE_UNUSE(fp, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1997-06-26 10:01:59 +04:00
|
|
|
/*
|
|
|
|
* XXX In a perfect world, we wouldn't pass around socket control
|
|
|
|
* XXX arguments in mbufs, and this could go away.
|
|
|
|
*/
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
sockargs(mp, buf, buflen, type)
|
|
|
|
struct mbuf **mp;
|
1996-12-22 13:16:54 +03:00
|
|
|
const void *buf;
|
1993-03-21 12:45:37 +03:00
|
|
|
int buflen, type;
|
|
|
|
{
|
1994-05-04 14:27:20 +04:00
|
|
|
register struct sockaddr *sa;
|
1993-03-21 12:45:37 +03:00
|
|
|
register struct mbuf *m;
|
|
|
|
int error;
|
|
|
|
|
1997-06-26 10:01:59 +04:00
|
|
|
/*
|
1997-06-26 10:13:36 +04:00
|
|
|
* We can't allow socket names > UCHAR_MAX in length, since that
|
1997-06-26 10:01:59 +04:00
|
|
|
* will overflow sa_len.
|
|
|
|
*/
|
1997-06-26 10:13:36 +04:00
|
|
|
if (type == MT_SONAME && (u_int)buflen > UCHAR_MAX)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EINVAL);
|
1997-06-26 10:01:59 +04:00
|
|
|
|
|
|
|
/* Allocate an mbuf to hold the arguments. */
|
1993-03-21 12:45:37 +03:00
|
|
|
m = m_get(M_WAIT, type);
|
1997-06-26 10:01:59 +04:00
|
|
|
if ((u_int)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;
|
|
|
|
error = copyin(buf, mtod(m, caddr_t), (u_int)buflen);
|
|
|
|
if (error) {
|
|
|
|
(void) m_free(m);
|
1994-05-04 14:27:20 +04:00
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
*mp = m;
|
|
|
|
if (type == MT_SONAME) {
|
1994-05-04 14:27:20 +04:00
|
|
|
sa = mtod(m, struct sockaddr *);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
#if defined(COMPAT_OLDSOCK) && BYTE_ORDER != BIG_ENDIAN
|
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);
|
|
|
|
}
|
|
|
|
|
1994-05-04 14:27:20 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
getsock(fdp, fdes, fpp)
|
|
|
|
struct filedesc *fdp;
|
|
|
|
int fdes;
|
|
|
|
struct file **fpp;
|
|
|
|
{
|
|
|
|
register struct file *fp;
|
|
|
|
|
|
|
|
if ((unsigned)fdes >= fdp->fd_nfiles ||
|
1999-05-06 00:01:01 +04:00
|
|
|
(fp = fdp->fd_ofiles[fdes]) == NULL ||
|
|
|
|
(fp->f_iflags & FIF_WANTCLOSE) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EBADF);
|
1999-05-06 00:01:01 +04:00
|
|
|
|
|
|
|
FILE_USE(fp);
|
|
|
|
|
|
|
|
if (fp->f_type != DTYPE_SOCKET) {
|
|
|
|
FILE_UNUSE(fp, NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (ENOTSOCK);
|
1999-05-06 00:01:01 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
*fpp = fp;
|
|
|
|
return (0);
|
|
|
|
}
|