Home | History | Annotate | Line # | Download | only in kern
uipc_syscalls.c revision 1.59
      1  1.59   thorpej /*	$NetBSD: uipc_syscalls.c,v 1.59 2001/06/14 20:32:47 thorpej Exp $	*/
      2   1.8       cgd 
      3   1.1       cgd /*
      4   1.7   mycroft  * Copyright (c) 1982, 1986, 1989, 1990, 1993
      5   1.7   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  *
     35  1.29      fvdl  *	@(#)uipc_syscalls.c	8.6 (Berkeley) 2/14/95
     36   1.1       cgd  */
     37  1.31   thorpej 
     38  1.31   thorpej #include "opt_ktrace.h"
     39  1.55  jdolecek 
     40  1.55  jdolecek /*
     41  1.55  jdolecek  * Though COMPAT_OLDSOCK is needed only for COMPAT_43, SunOS, Linux,
     42  1.55  jdolecek  * HP-UX, FreeBSD, Ultrix, OSF1, we define it unconditionally so that
     43  1.55  jdolecek  * this would be LKM-safe.
     44  1.55  jdolecek  */
     45  1.57     lukem #define COMPAT_OLDSOCK		/* used by <sys/socket.h> */
     46   1.1       cgd 
     47   1.6   mycroft #include <sys/param.h>
     48   1.9       cgd #include <sys/systm.h>
     49   1.6   mycroft #include <sys/filedesc.h>
     50   1.6   mycroft #include <sys/proc.h>
     51   1.6   mycroft #include <sys/file.h>
     52   1.6   mycroft #include <sys/buf.h>
     53   1.6   mycroft #include <sys/malloc.h>
     54   1.6   mycroft #include <sys/mbuf.h>
     55   1.6   mycroft #include <sys/protosw.h>
     56   1.6   mycroft #include <sys/socket.h>
     57   1.6   mycroft #include <sys/socketvar.h>
     58  1.18  christos #include <sys/signalvar.h>
     59  1.18  christos #include <sys/un.h>
     60   1.1       cgd #ifdef KTRACE
     61   1.6   mycroft #include <sys/ktrace.h>
     62   1.1       cgd #endif
     63   1.1       cgd 
     64   1.9       cgd #include <sys/mount.h>
     65   1.9       cgd #include <sys/syscallargs.h>
     66   1.9       cgd 
     67  1.44   darrenr #include <uvm/uvm_extern.h>
     68  1.44   darrenr 
     69   1.1       cgd /*
     70   1.1       cgd  * System call interface to the socket abstraction.
     71   1.1       cgd  */
     72   1.1       cgd extern	struct fileops socketops;
     73   1.1       cgd 
     74   1.7   mycroft int
     75  1.57     lukem sys_socket(struct proc *p, void *v, register_t *retval)
     76  1.15   thorpej {
     77  1.51  augustss 	struct sys_socket_args /* {
     78  1.57     lukem 		syscallarg(int)	domain;
     79  1.57     lukem 		syscallarg(int)	type;
     80  1.57     lukem 		syscallarg(int)	protocol;
     81  1.15   thorpej 	} */ *uap = v;
     82  1.57     lukem 	struct filedesc	*fdp;
     83  1.57     lukem 	struct socket	*so;
     84  1.57     lukem 	struct file	*fp;
     85  1.57     lukem 	int		fd, error;
     86   1.1       cgd 
     87  1.57     lukem 	fdp = p->p_fd;
     88  1.43   thorpej 	/* falloc() will use the desciptor for us */
     89  1.18  christos 	if ((error = falloc(p, &fp, &fd)) != 0)
     90   1.1       cgd 		return (error);
     91   1.1       cgd 	fp->f_flag = FREAD|FWRITE;
     92   1.1       cgd 	fp->f_type = DTYPE_SOCKET;
     93   1.1       cgd 	fp->f_ops = &socketops;
     94  1.18  christos 	error = socreate(SCARG(uap, domain), &so, SCARG(uap, type),
     95  1.18  christos 			 SCARG(uap, protocol));
     96  1.18  christos 	if (error) {
     97  1.43   thorpej 		FILE_UNUSE(fp, p);
     98  1.50   thorpej 		fdremove(fdp, fd);
     99   1.1       cgd 		ffree(fp);
    100   1.1       cgd 	} else {
    101   1.1       cgd 		fp->f_data = (caddr_t)so;
    102  1.59   thorpej 		FILE_SET_MATURE(fp);
    103  1.43   thorpej 		FILE_UNUSE(fp, p);
    104   1.1       cgd 		*retval = fd;
    105   1.1       cgd 	}
    106   1.1       cgd 	return (error);
    107   1.1       cgd }
    108   1.1       cgd 
    109   1.1       cgd /* ARGSUSED */
    110   1.7   mycroft int
    111  1.57     lukem sys_bind(struct proc *p, void *v, register_t *retval)
    112  1.15   thorpej {
    113  1.51  augustss 	struct sys_bind_args /* {
    114  1.57     lukem 		syscallarg(int)				s;
    115  1.57     lukem 		syscallarg(const struct sockaddr *)	name;
    116  1.57     lukem 		syscallarg(unsigned int)		namelen;
    117  1.15   thorpej 	} */ *uap = v;
    118  1.57     lukem 	struct file	*fp;
    119  1.57     lukem 	struct mbuf	*nam;
    120  1.57     lukem 	int		error;
    121   1.1       cgd 
    122  1.43   thorpej 	/* getsock() will use the descriptor for us */
    123  1.18  christos 	if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
    124   1.1       cgd 		return (error);
    125  1.18  christos 	error = sockargs(&nam, SCARG(uap, name), SCARG(uap, namelen),
    126  1.23       cgd 	    MT_SONAME);
    127  1.43   thorpej 	if (error) {
    128  1.43   thorpej 		FILE_UNUSE(fp, p);
    129   1.1       cgd 		return (error);
    130  1.43   thorpej 	}
    131  1.56      fvdl 	error = sobind((struct socket *)fp->f_data, nam, p);
    132   1.1       cgd 	m_freem(nam);
    133  1.43   thorpej 	FILE_UNUSE(fp, p);
    134   1.1       cgd 	return (error);
    135   1.1       cgd }
    136   1.1       cgd 
    137   1.1       cgd /* ARGSUSED */
    138   1.7   mycroft int
    139  1.57     lukem sys_listen(struct proc *p, void *v, register_t *retval)
    140  1.15   thorpej {
    141  1.51  augustss 	struct sys_listen_args /* {
    142  1.57     lukem 		syscallarg(int)	s;
    143  1.57     lukem 		syscallarg(int)	backlog;
    144  1.15   thorpej 	} */ *uap = v;
    145  1.57     lukem 	struct file	*fp;
    146  1.57     lukem 	int		error;
    147   1.1       cgd 
    148  1.43   thorpej 	/* getsock() will use the descriptor for us */
    149  1.18  christos 	if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
    150   1.1       cgd 		return (error);
    151  1.43   thorpej 	error = solisten((struct socket *)fp->f_data, SCARG(uap, backlog));
    152  1.43   thorpej 	FILE_UNUSE(fp, p);
    153  1.43   thorpej 	return (error);
    154   1.1       cgd }
    155   1.1       cgd 
    156   1.7   mycroft int
    157  1.57     lukem sys_accept(struct proc *p, void *v, register_t *retval)
    158  1.15   thorpej {
    159  1.51  augustss 	struct sys_accept_args /* {
    160  1.57     lukem 		syscallarg(int)			s;
    161  1.57     lukem 		syscallarg(struct sockaddr *)	name;
    162  1.57     lukem 		syscallarg(unsigned int *)	anamelen;
    163  1.15   thorpej 	} */ *uap = v;
    164  1.57     lukem 	struct filedesc	*fdp;
    165  1.57     lukem 	struct file	*fp;
    166  1.57     lukem 	struct mbuf	*nam;
    167  1.57     lukem 	unsigned int	namelen;
    168  1.57     lukem 	int		error, s, fd;
    169  1.57     lukem 	struct socket	*so;
    170   1.1       cgd 
    171  1.57     lukem 	fdp = p->p_fd;
    172   1.9       cgd 	if (SCARG(uap, name) && (error = copyin((caddr_t)SCARG(uap, anamelen),
    173  1.34     perry 	    (caddr_t)&namelen, sizeof(namelen))))
    174   1.1       cgd 		return (error);
    175  1.44   darrenr 	if (SCARG(uap, name) != NULL &&
    176  1.44   darrenr 	    uvm_useracc((caddr_t)SCARG(uap, name), sizeof(struct sockaddr),
    177  1.44   darrenr 	     B_WRITE) == FALSE)
    178  1.44   darrenr 		return (EFAULT);
    179  1.44   darrenr 
    180  1.43   thorpej 	/* getsock() will use the descriptor for us */
    181  1.49   mycroft 	if ((error = getsock(fdp, SCARG(uap, s), &fp)) != 0)
    182   1.1       cgd 		return (error);
    183  1.14   mycroft 	s = splsoftnet();
    184   1.1       cgd 	so = (struct socket *)fp->f_data;
    185  1.43   thorpej 	FILE_UNUSE(fp, p);
    186  1.44   darrenr 	if (!(so->so_proto->pr_flags & PR_LISTEN)) {
    187  1.44   darrenr 		splx(s);
    188  1.44   darrenr 		return (EOPNOTSUPP);
    189  1.44   darrenr 	}
    190   1.1       cgd 	if ((so->so_options & SO_ACCEPTCONN) == 0) {
    191   1.1       cgd 		splx(s);
    192   1.1       cgd 		return (EINVAL);
    193   1.1       cgd 	}
    194   1.1       cgd 	if ((so->so_state & SS_NBIO) && so->so_qlen == 0) {
    195   1.1       cgd 		splx(s);
    196   1.1       cgd 		return (EWOULDBLOCK);
    197   1.1       cgd 	}
    198   1.1       cgd 	while (so->so_qlen == 0 && so->so_error == 0) {
    199   1.1       cgd 		if (so->so_state & SS_CANTRCVMORE) {
    200   1.1       cgd 			so->so_error = ECONNABORTED;
    201   1.1       cgd 			break;
    202   1.1       cgd 		}
    203  1.18  christos 		error = tsleep((caddr_t)&so->so_timeo, PSOCK | PCATCH,
    204  1.18  christos 			       netcon, 0);
    205  1.18  christos 		if (error) {
    206   1.1       cgd 			splx(s);
    207   1.1       cgd 			return (error);
    208   1.1       cgd 		}
    209   1.1       cgd 	}
    210   1.1       cgd 	if (so->so_error) {
    211   1.1       cgd 		error = so->so_error;
    212   1.1       cgd 		so->so_error = 0;
    213   1.1       cgd 		splx(s);
    214   1.1       cgd 		return (error);
    215   1.1       cgd 	}
    216  1.43   thorpej 	/* falloc() will use the descriptor for us */
    217  1.49   mycroft 	if ((error = falloc(p, &fp, &fd)) != 0) {
    218   1.1       cgd 		splx(s);
    219   1.1       cgd 		return (error);
    220   1.1       cgd 	}
    221  1.49   mycroft 	*retval = fd;
    222  1.27   thorpej 	{ struct socket *aso = so->so_q.tqh_first;
    223   1.1       cgd 	  if (soqremque(aso, 1) == 0)
    224   1.1       cgd 		panic("accept");
    225   1.1       cgd 	  so = aso;
    226   1.1       cgd 	}
    227   1.1       cgd 	fp->f_type = DTYPE_SOCKET;
    228   1.1       cgd 	fp->f_flag = FREAD|FWRITE;
    229   1.1       cgd 	fp->f_ops = &socketops;
    230   1.1       cgd 	fp->f_data = (caddr_t)so;
    231  1.43   thorpej 	FILE_UNUSE(fp, p);
    232   1.1       cgd 	nam = m_get(M_WAIT, MT_SONAME);
    233  1.47  jdolecek 	if ((error = soaccept(so, nam)) == 0 && SCARG(uap, name)) {
    234   1.1       cgd 		if (namelen > nam->m_len)
    235   1.1       cgd 			namelen = nam->m_len;
    236   1.1       cgd 		/* SHOULD COPY OUT A CHAIN HERE */
    237   1.9       cgd 		if ((error = copyout(mtod(nam, caddr_t),
    238  1.48     enami 		    (caddr_t)SCARG(uap, name), namelen)) == 0)
    239  1.47  jdolecek 			error = copyout((caddr_t)&namelen,
    240  1.48     enami 			    (caddr_t)SCARG(uap, anamelen),
    241  1.48     enami 			    sizeof(*SCARG(uap, anamelen)));
    242   1.1       cgd 	}
    243  1.47  jdolecek 	/* if an error occured, free the file descriptor */
    244  1.49   mycroft 	if (error) {
    245  1.50   thorpej 		fdremove(fdp, fd);
    246  1.47  jdolecek 		ffree(fp);
    247  1.49   mycroft 	}
    248  1.46   darrenr 	m_freem(nam);
    249  1.46   darrenr 	splx(s);
    250  1.59   thorpej 	FILE_SET_MATURE(fp);
    251  1.46   darrenr 	return (error);
    252   1.1       cgd }
    253   1.1       cgd 
    254   1.1       cgd /* ARGSUSED */
    255   1.7   mycroft int
    256  1.57     lukem sys_connect(struct proc *p, void *v, register_t *retval)
    257  1.15   thorpej {
    258  1.51  augustss 	struct sys_connect_args /* {
    259  1.57     lukem 		syscallarg(int)				s;
    260  1.57     lukem 		syscallarg(const struct sockaddr *)	name;
    261  1.57     lukem 		syscallarg(unsigned int)		namelen;
    262  1.15   thorpej 	} */ *uap = v;
    263  1.57     lukem 	struct file	*fp;
    264  1.57     lukem 	struct socket	*so;
    265  1.57     lukem 	struct mbuf	*nam;
    266  1.57     lukem 	int		error, s;
    267   1.1       cgd 
    268  1.43   thorpej 	/* getsock() will use the descriptor for us */
    269  1.18  christos 	if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
    270   1.1       cgd 		return (error);
    271   1.1       cgd 	so = (struct socket *)fp->f_data;
    272  1.43   thorpej 	FILE_UNUSE(fp, p);
    273   1.1       cgd 	if ((so->so_state & SS_NBIO) && (so->so_state & SS_ISCONNECTING))
    274   1.1       cgd 		return (EALREADY);
    275  1.18  christos 	error = sockargs(&nam, SCARG(uap, name), SCARG(uap, namelen),
    276  1.23       cgd 	    MT_SONAME);
    277  1.18  christos 	if (error)
    278   1.1       cgd 		return (error);
    279   1.1       cgd 	error = soconnect(so, nam);
    280   1.1       cgd 	if (error)
    281   1.1       cgd 		goto bad;
    282   1.1       cgd 	if ((so->so_state & SS_NBIO) && (so->so_state & SS_ISCONNECTING)) {
    283   1.1       cgd 		m_freem(nam);
    284   1.1       cgd 		return (EINPROGRESS);
    285   1.1       cgd 	}
    286  1.14   mycroft 	s = splsoftnet();
    287  1.18  christos 	while ((so->so_state & SS_ISCONNECTING) && so->so_error == 0) {
    288  1.18  christos 		error = tsleep((caddr_t)&so->so_timeo, PSOCK | PCATCH,
    289  1.18  christos 			       netcon, 0);
    290  1.18  christos 		if (error)
    291   1.1       cgd 			break;
    292  1.18  christos 	}
    293   1.1       cgd 	if (error == 0) {
    294   1.1       cgd 		error = so->so_error;
    295   1.1       cgd 		so->so_error = 0;
    296   1.1       cgd 	}
    297   1.1       cgd 	splx(s);
    298  1.57     lukem  bad:
    299   1.1       cgd 	so->so_state &= ~SS_ISCONNECTING;
    300   1.1       cgd 	m_freem(nam);
    301   1.1       cgd 	if (error == ERESTART)
    302   1.1       cgd 		error = EINTR;
    303   1.1       cgd 	return (error);
    304   1.1       cgd }
    305   1.1       cgd 
    306   1.7   mycroft int
    307  1.57     lukem sys_socketpair(struct proc *p, void *v, register_t *retval)
    308  1.15   thorpej {
    309  1.51  augustss 	struct sys_socketpair_args /* {
    310  1.57     lukem 		syscallarg(int)		domain;
    311  1.57     lukem 		syscallarg(int)		type;
    312  1.57     lukem 		syscallarg(int)		protocol;
    313  1.57     lukem 		syscallarg(int *)	rsv;
    314  1.15   thorpej 	} */ *uap = v;
    315  1.57     lukem 	struct filedesc	*fdp;
    316  1.57     lukem 	struct file	*fp1, *fp2;
    317  1.57     lukem 	struct socket	*so1, *so2;
    318  1.57     lukem 	int		fd, error, sv[2];
    319   1.1       cgd 
    320  1.57     lukem 	fdp = p->p_fd;
    321  1.18  christos 	error = socreate(SCARG(uap, domain), &so1, SCARG(uap, type),
    322  1.18  christos 			 SCARG(uap, protocol));
    323  1.18  christos 	if (error)
    324   1.1       cgd 		return (error);
    325  1.18  christos 	error = socreate(SCARG(uap, domain), &so2, SCARG(uap, type),
    326  1.18  christos 			 SCARG(uap, protocol));
    327  1.18  christos 	if (error)
    328   1.1       cgd 		goto free1;
    329  1.43   thorpej 	/* falloc() will use the descriptor for us */
    330  1.18  christos 	if ((error = falloc(p, &fp1, &fd)) != 0)
    331   1.1       cgd 		goto free2;
    332   1.1       cgd 	sv[0] = fd;
    333   1.1       cgd 	fp1->f_flag = FREAD|FWRITE;
    334   1.1       cgd 	fp1->f_type = DTYPE_SOCKET;
    335   1.1       cgd 	fp1->f_ops = &socketops;
    336   1.1       cgd 	fp1->f_data = (caddr_t)so1;
    337  1.18  christos 	if ((error = falloc(p, &fp2, &fd)) != 0)
    338   1.1       cgd 		goto free3;
    339   1.1       cgd 	fp2->f_flag = FREAD|FWRITE;
    340   1.1       cgd 	fp2->f_type = DTYPE_SOCKET;
    341   1.1       cgd 	fp2->f_ops = &socketops;
    342   1.1       cgd 	fp2->f_data = (caddr_t)so2;
    343   1.1       cgd 	sv[1] = fd;
    344  1.18  christos 	if ((error = soconnect2(so1, so2)) != 0)
    345   1.1       cgd 		goto free4;
    346   1.9       cgd 	if (SCARG(uap, type) == SOCK_DGRAM) {
    347   1.1       cgd 		/*
    348   1.1       cgd 		 * Datagram socket connection is asymmetric.
    349   1.1       cgd 		 */
    350  1.18  christos 		 if ((error = soconnect2(so2, so1)) != 0)
    351   1.1       cgd 			goto free4;
    352   1.1       cgd 	}
    353   1.9       cgd 	error = copyout((caddr_t)sv, (caddr_t)SCARG(uap, rsv),
    354  1.34     perry 	    2 * sizeof(int));
    355  1.59   thorpej 	FILE_SET_MATURE(fp1);
    356  1.59   thorpej 	FILE_SET_MATURE(fp2);
    357  1.43   thorpej 	FILE_UNUSE(fp1, p);
    358  1.43   thorpej 	FILE_UNUSE(fp2, p);
    359   1.1       cgd 	return (error);
    360  1.57     lukem  free4:
    361  1.43   thorpej 	FILE_UNUSE(fp2, p);
    362   1.1       cgd 	ffree(fp2);
    363  1.50   thorpej 	fdremove(fdp, sv[1]);
    364  1.57     lukem  free3:
    365  1.43   thorpej 	FILE_UNUSE(fp1, p);
    366   1.1       cgd 	ffree(fp1);
    367  1.50   thorpej 	fdremove(fdp, sv[0]);
    368  1.57     lukem  free2:
    369   1.1       cgd 	(void)soclose(so2);
    370  1.57     lukem  free1:
    371   1.1       cgd 	(void)soclose(so1);
    372   1.1       cgd 	return (error);
    373   1.1       cgd }
    374   1.1       cgd 
    375   1.7   mycroft int
    376  1.57     lukem sys_sendto(struct proc *p, void *v, register_t *retval)
    377  1.15   thorpej {
    378  1.51  augustss 	struct sys_sendto_args /* {
    379  1.57     lukem 		syscallarg(int)				s;
    380  1.57     lukem 		syscallarg(const void *)		buf;
    381  1.57     lukem 		syscallarg(size_t)			len;
    382  1.57     lukem 		syscallarg(int)				flags;
    383  1.57     lukem 		syscallarg(const struct sockaddr *)	to;
    384  1.57     lukem 		syscallarg(unsigned int)		tolen;
    385  1.15   thorpej 	} */ *uap = v;
    386  1.57     lukem 	struct msghdr	msg;
    387  1.57     lukem 	struct iovec	aiov;
    388   1.1       cgd 
    389  1.23       cgd 	msg.msg_name = (caddr_t)SCARG(uap, to);		/* XXX kills const */
    390   1.9       cgd 	msg.msg_namelen = SCARG(uap, tolen);
    391   1.1       cgd 	msg.msg_iov = &aiov;
    392   1.1       cgd 	msg.msg_iovlen = 1;
    393   1.1       cgd 	msg.msg_control = 0;
    394   1.7   mycroft #ifdef COMPAT_OLDSOCK
    395   1.1       cgd 	msg.msg_flags = 0;
    396   1.1       cgd #endif
    397  1.23       cgd 	aiov.iov_base = (char *)SCARG(uap, buf);	/* XXX kills const */
    398   1.9       cgd 	aiov.iov_len = SCARG(uap, len);
    399   1.9       cgd 	return (sendit(p, SCARG(uap, s), &msg, SCARG(uap, flags), retval));
    400   1.1       cgd }
    401   1.1       cgd 
    402   1.7   mycroft int
    403  1.57     lukem sys_sendmsg(struct proc *p, void *v, register_t *retval)
    404  1.15   thorpej {
    405  1.51  augustss 	struct sys_sendmsg_args /* {
    406  1.57     lukem 		syscallarg(int)				s;
    407  1.57     lukem 		syscallarg(const struct msghdr *)	msg;
    408  1.57     lukem 		syscallarg(int)				flags;
    409  1.15   thorpej 	} */ *uap = v;
    410  1.57     lukem 	struct msghdr	msg;
    411  1.57     lukem 	struct iovec	aiov[UIO_SMALLIOV], *iov;
    412  1.57     lukem 	int		error;
    413   1.1       cgd 
    414  1.34     perry 	error = copyin(SCARG(uap, msg), (caddr_t)&msg, sizeof(msg));
    415  1.18  christos 	if (error)
    416   1.1       cgd 		return (error);
    417  1.41    kleink 	if ((unsigned int)msg.msg_iovlen > UIO_SMALLIOV) {
    418  1.41    kleink 		if ((unsigned int)msg.msg_iovlen > IOV_MAX)
    419   1.1       cgd 			return (EMSGSIZE);
    420  1.54   thorpej 		iov = malloc(sizeof(struct iovec) * msg.msg_iovlen,
    421  1.54   thorpej 		    M_IOV, M_WAITOK);
    422  1.39   mycroft 	} else
    423   1.1       cgd 		iov = aiov;
    424  1.41    kleink 	if ((unsigned int)msg.msg_iovlen > 0) {
    425  1.39   mycroft 		error = copyin((caddr_t)msg.msg_iov, (caddr_t)iov,
    426  1.39   mycroft 		    (size_t)(msg.msg_iovlen * sizeof(struct iovec)));
    427  1.39   mycroft 		if (error)
    428  1.39   mycroft 			goto done;
    429  1.39   mycroft 	}
    430   1.1       cgd 	msg.msg_iov = iov;
    431   1.7   mycroft #ifdef COMPAT_OLDSOCK
    432   1.1       cgd 	msg.msg_flags = 0;
    433   1.1       cgd #endif
    434   1.9       cgd 	error = sendit(p, SCARG(uap, s), &msg, SCARG(uap, flags), retval);
    435   1.1       cgd done:
    436   1.1       cgd 	if (iov != aiov)
    437  1.54   thorpej 		free(iov, M_IOV);
    438   1.1       cgd 	return (error);
    439   1.1       cgd }
    440   1.1       cgd 
    441   1.7   mycroft int
    442  1.57     lukem sendit(struct proc *p, int s, struct msghdr *mp, int flags, register_t *retsize)
    443   1.1       cgd {
    444  1.57     lukem 	struct file	*fp;
    445  1.57     lukem 	struct uio	auio;
    446  1.57     lukem 	struct iovec	*iov;
    447  1.57     lukem 	int		i, len, error;
    448  1.57     lukem 	struct mbuf	*to, *control;
    449  1.57     lukem 	struct socket	*so;
    450   1.1       cgd #ifdef KTRACE
    451  1.57     lukem 	struct iovec	*ktriov;
    452   1.1       cgd #endif
    453   1.1       cgd 
    454  1.57     lukem #ifdef KTRACE
    455  1.57     lukem 	ktriov = NULL;
    456  1.57     lukem #endif
    457  1.43   thorpej 	/* getsock() will use the descriptor for us */
    458  1.18  christos 	if ((error = getsock(p->p_fd, s, &fp)) != 0)
    459   1.1       cgd 		return (error);
    460   1.1       cgd 	auio.uio_iov = mp->msg_iov;
    461   1.1       cgd 	auio.uio_iovcnt = mp->msg_iovlen;
    462   1.1       cgd 	auio.uio_segflg = UIO_USERSPACE;
    463   1.1       cgd 	auio.uio_rw = UIO_WRITE;
    464   1.1       cgd 	auio.uio_procp = p;
    465   1.1       cgd 	auio.uio_offset = 0;			/* XXX */
    466   1.1       cgd 	auio.uio_resid = 0;
    467   1.1       cgd 	iov = mp->msg_iov;
    468   1.1       cgd 	for (i = 0; i < mp->msg_iovlen; i++, iov++) {
    469  1.18  christos #if 0
    470  1.18  christos 		/* cannot happen; iov_len is unsigned */
    471  1.43   thorpej 		if (iov->iov_len < 0) {
    472  1.43   thorpej 			error = EINVAL;
    473  1.43   thorpej 			goto out;
    474  1.43   thorpej 		}
    475  1.18  christos #endif
    476  1.33   thorpej 		/*
    477  1.33   thorpej 		 * Writes return ssize_t because -1 is returned on error.
    478  1.33   thorpej 		 * Therefore, we must restrict the length to SSIZE_MAX to
    479  1.33   thorpej 		 * avoid garbage return values.
    480  1.33   thorpej 		 */
    481  1.33   thorpej 		auio.uio_resid += iov->iov_len;
    482  1.43   thorpej 		if (iov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
    483  1.43   thorpej 			error = EINVAL;
    484  1.43   thorpej 			goto out;
    485  1.43   thorpej 		}
    486   1.1       cgd 	}
    487   1.1       cgd 	if (mp->msg_name) {
    488  1.18  christos 		error = sockargs(&to, mp->msg_name, mp->msg_namelen,
    489  1.18  christos 				 MT_SONAME);
    490  1.18  christos 		if (error)
    491  1.43   thorpej 			goto out;
    492   1.1       cgd 	} else
    493   1.1       cgd 		to = 0;
    494   1.1       cgd 	if (mp->msg_control) {
    495   1.1       cgd 		if (mp->msg_controllen < sizeof(struct cmsghdr)
    496   1.7   mycroft #ifdef COMPAT_OLDSOCK
    497   1.1       cgd 		    && mp->msg_flags != MSG_COMPAT
    498   1.1       cgd #endif
    499   1.1       cgd 		) {
    500   1.1       cgd 			error = EINVAL;
    501   1.1       cgd 			goto bad;
    502   1.1       cgd 		}
    503  1.18  christos 		error = sockargs(&control, mp->msg_control,
    504  1.18  christos 				 mp->msg_controllen, MT_CONTROL);
    505  1.18  christos 		if (error)
    506   1.1       cgd 			goto bad;
    507   1.7   mycroft #ifdef COMPAT_OLDSOCK
    508   1.1       cgd 		if (mp->msg_flags == MSG_COMPAT) {
    509  1.51  augustss 			struct cmsghdr *cm;
    510   1.1       cgd 
    511   1.1       cgd 			M_PREPEND(control, sizeof(*cm), M_WAIT);
    512   1.1       cgd 			if (control == 0) {
    513   1.1       cgd 				error = ENOBUFS;
    514   1.1       cgd 				goto bad;
    515   1.1       cgd 			} else {
    516   1.1       cgd 				cm = mtod(control, struct cmsghdr *);
    517   1.1       cgd 				cm->cmsg_len = control->m_len;
    518   1.1       cgd 				cm->cmsg_level = SOL_SOCKET;
    519   1.1       cgd 				cm->cmsg_type = SCM_RIGHTS;
    520   1.1       cgd 			}
    521   1.1       cgd 		}
    522   1.1       cgd #endif
    523   1.1       cgd 	} else
    524   1.1       cgd 		control = 0;
    525   1.1       cgd #ifdef KTRACE
    526   1.1       cgd 	if (KTRPOINT(p, KTR_GENIO)) {
    527  1.34     perry 		int iovlen = auio.uio_iovcnt * sizeof(struct iovec);
    528   1.1       cgd 
    529  1.54   thorpej 		ktriov = malloc(iovlen, M_TEMP, M_WAITOK);
    530  1.36     perry 		memcpy((caddr_t)ktriov, (caddr_t)auio.uio_iov, iovlen);
    531   1.1       cgd 	}
    532   1.1       cgd #endif
    533   1.1       cgd 	len = auio.uio_resid;
    534  1.30      matt 	so = (struct socket *)fp->f_data;
    535  1.30      matt 	error = (*so->so_send)(so, to, &auio, NULL, control, flags);
    536  1.18  christos 	if (error) {
    537   1.1       cgd 		if (auio.uio_resid != len && (error == ERESTART ||
    538   1.1       cgd 		    error == EINTR || error == EWOULDBLOCK))
    539   1.1       cgd 			error = 0;
    540   1.1       cgd 		if (error == EPIPE)
    541   1.1       cgd 			psignal(p, SIGPIPE);
    542   1.1       cgd 	}
    543   1.1       cgd 	if (error == 0)
    544   1.1       cgd 		*retsize = len - auio.uio_resid;
    545   1.1       cgd #ifdef KTRACE
    546   1.1       cgd 	if (ktriov != NULL) {
    547   1.1       cgd 		if (error == 0)
    548  1.52  sommerfe 			ktrgenio(p, s, UIO_WRITE, ktriov, *retsize, error);
    549  1.54   thorpej 		free(ktriov, M_TEMP);
    550   1.1       cgd 	}
    551   1.1       cgd #endif
    552  1.43   thorpej  bad:
    553   1.1       cgd 	if (to)
    554   1.1       cgd 		m_freem(to);
    555  1.43   thorpej  out:
    556  1.43   thorpej 	FILE_UNUSE(fp, p);
    557   1.1       cgd 	return (error);
    558   1.1       cgd }
    559   1.1       cgd 
    560   1.7   mycroft int
    561  1.57     lukem sys_recvfrom(struct proc *p, void *v, register_t *retval)
    562  1.15   thorpej {
    563  1.51  augustss 	struct sys_recvfrom_args /* {
    564  1.57     lukem 		syscallarg(int)			s;
    565  1.57     lukem 		syscallarg(void *)		buf;
    566  1.57     lukem 		syscallarg(size_t)		len;
    567  1.57     lukem 		syscallarg(int)			flags;
    568  1.57     lukem 		syscallarg(struct sockaddr *)	from;
    569  1.57     lukem 		syscallarg(unsigned int *)	fromlenaddr;
    570  1.15   thorpej 	} */ *uap = v;
    571  1.57     lukem 	struct msghdr	msg;
    572  1.57     lukem 	struct iovec	aiov;
    573  1.57     lukem 	int		error;
    574   1.1       cgd 
    575   1.9       cgd 	if (SCARG(uap, fromlenaddr)) {
    576  1.18  christos 		error = copyin((caddr_t)SCARG(uap, fromlenaddr),
    577  1.18  christos 			       (caddr_t)&msg.msg_namelen,
    578  1.34     perry 			       sizeof(msg.msg_namelen));
    579  1.18  christos 		if (error)
    580   1.1       cgd 			return (error);
    581   1.1       cgd 	} else
    582   1.1       cgd 		msg.msg_namelen = 0;
    583  1.23       cgd 	msg.msg_name = (caddr_t)SCARG(uap, from);
    584   1.1       cgd 	msg.msg_iov = &aiov;
    585   1.1       cgd 	msg.msg_iovlen = 1;
    586   1.9       cgd 	aiov.iov_base = SCARG(uap, buf);
    587   1.9       cgd 	aiov.iov_len = SCARG(uap, len);
    588   1.1       cgd 	msg.msg_control = 0;
    589   1.9       cgd 	msg.msg_flags = SCARG(uap, flags);
    590   1.9       cgd 	return (recvit(p, SCARG(uap, s), &msg,
    591  1.18  christos 		       (caddr_t)SCARG(uap, fromlenaddr), retval));
    592   1.1       cgd }
    593   1.1       cgd 
    594   1.7   mycroft int
    595  1.57     lukem sys_recvmsg(struct proc *p, void *v, register_t *retval)
    596  1.15   thorpej {
    597  1.51  augustss 	struct sys_recvmsg_args /* {
    598  1.57     lukem 		syscallarg(int)			s;
    599  1.57     lukem 		syscallarg(struct msghdr *)	msg;
    600  1.57     lukem 		syscallarg(int)			flags;
    601  1.15   thorpej 	} */ *uap = v;
    602  1.57     lukem 	struct msghdr	msg;
    603  1.57     lukem 	struct iovec	aiov[UIO_SMALLIOV], *uiov, *iov;
    604  1.57     lukem 	int		error;
    605   1.1       cgd 
    606  1.18  christos 	error = copyin((caddr_t)SCARG(uap, msg), (caddr_t)&msg,
    607  1.34     perry 		       sizeof(msg));
    608  1.18  christos 	if (error)
    609   1.1       cgd 		return (error);
    610  1.41    kleink 	if ((unsigned int)msg.msg_iovlen > UIO_SMALLIOV) {
    611  1.41    kleink 		if ((unsigned int)msg.msg_iovlen > IOV_MAX)
    612   1.1       cgd 			return (EMSGSIZE);
    613  1.54   thorpej 		iov = malloc(sizeof(struct iovec) * msg.msg_iovlen,
    614  1.54   thorpej 		    M_IOV, M_WAITOK);
    615  1.39   mycroft 	} else
    616   1.1       cgd 		iov = aiov;
    617  1.41    kleink 	if ((unsigned int)msg.msg_iovlen > 0) {
    618  1.39   mycroft 		error = copyin((caddr_t)msg.msg_iov, (caddr_t)iov,
    619  1.39   mycroft 		    (size_t)(msg.msg_iovlen * sizeof(struct iovec)));
    620  1.39   mycroft 		if (error)
    621  1.39   mycroft 			goto done;
    622  1.39   mycroft 	}
    623  1.39   mycroft 	uiov = msg.msg_iov;
    624  1.39   mycroft 	msg.msg_iov = iov;
    625   1.7   mycroft #ifdef COMPAT_OLDSOCK
    626   1.9       cgd 	msg.msg_flags = SCARG(uap, flags) &~ MSG_COMPAT;
    627   1.1       cgd #else
    628   1.9       cgd 	msg.msg_flags = SCARG(uap, flags);
    629   1.1       cgd #endif
    630   1.9       cgd 	if ((error = recvit(p, SCARG(uap, s), &msg, (caddr_t)0, retval)) == 0) {
    631   1.1       cgd 		msg.msg_iov = uiov;
    632   1.9       cgd 		error = copyout((caddr_t)&msg, (caddr_t)SCARG(uap, msg),
    633   1.9       cgd 		    sizeof(msg));
    634   1.1       cgd 	}
    635   1.1       cgd done:
    636   1.1       cgd 	if (iov != aiov)
    637  1.54   thorpej 		free(iov, M_IOV);
    638   1.1       cgd 	return (error);
    639   1.1       cgd }
    640   1.1       cgd 
    641   1.7   mycroft int
    642  1.57     lukem recvit(struct proc *p, int s, struct msghdr *mp, caddr_t namelenp,
    643  1.57     lukem 	register_t *retsize)
    644   1.1       cgd {
    645  1.57     lukem 	struct file	*fp;
    646  1.57     lukem 	struct uio	auio;
    647  1.57     lukem 	struct iovec	*iov;
    648  1.57     lukem 	int		i, len, error;
    649  1.57     lukem 	struct mbuf	*from, *control;
    650  1.57     lukem 	struct socket	*so;
    651  1.57     lukem #ifdef KTRACE
    652  1.57     lukem 	struct iovec	*ktriov;
    653  1.57     lukem #endif
    654  1.57     lukem 
    655  1.57     lukem 	from = 0;
    656  1.57     lukem 	control = 0;
    657   1.1       cgd #ifdef KTRACE
    658  1.57     lukem 	ktriov = NULL;
    659   1.1       cgd #endif
    660   1.1       cgd 
    661  1.43   thorpej 	/* getsock() will use the descriptor for us */
    662  1.18  christos 	if ((error = getsock(p->p_fd, s, &fp)) != 0)
    663   1.1       cgd 		return (error);
    664   1.1       cgd 	auio.uio_iov = mp->msg_iov;
    665   1.1       cgd 	auio.uio_iovcnt = mp->msg_iovlen;
    666   1.1       cgd 	auio.uio_segflg = UIO_USERSPACE;
    667   1.1       cgd 	auio.uio_rw = UIO_READ;
    668   1.1       cgd 	auio.uio_procp = p;
    669   1.1       cgd 	auio.uio_offset = 0;			/* XXX */
    670   1.1       cgd 	auio.uio_resid = 0;
    671   1.1       cgd 	iov = mp->msg_iov;
    672   1.1       cgd 	for (i = 0; i < mp->msg_iovlen; i++, iov++) {
    673  1.18  christos #if 0
    674  1.18  christos 		/* cannot happen iov_len is unsigned */
    675  1.43   thorpej 		if (iov->iov_len < 0) {
    676  1.43   thorpej 			error = EINVAL;
    677  1.43   thorpej 			goto out1;
    678  1.43   thorpej 		}
    679  1.18  christos #endif
    680  1.33   thorpej 		/*
    681  1.33   thorpej 		 * Reads return ssize_t because -1 is returned on error.
    682  1.33   thorpej 		 * Therefore we must restrict the length to SSIZE_MAX to
    683  1.33   thorpej 		 * avoid garbage return values.
    684  1.33   thorpej 		 */
    685  1.33   thorpej 		auio.uio_resid += iov->iov_len;
    686  1.43   thorpej 		if (iov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
    687  1.43   thorpej 			error = EINVAL;
    688  1.43   thorpej 			goto out1;
    689  1.43   thorpej 		}
    690   1.1       cgd 	}
    691   1.1       cgd #ifdef KTRACE
    692   1.1       cgd 	if (KTRPOINT(p, KTR_GENIO)) {
    693  1.34     perry 		int iovlen = auio.uio_iovcnt * sizeof(struct iovec);
    694   1.1       cgd 
    695  1.54   thorpej 		ktriov = malloc(iovlen, M_TEMP, M_WAITOK);
    696  1.36     perry 		memcpy((caddr_t)ktriov, (caddr_t)auio.uio_iov, iovlen);
    697   1.1       cgd 	}
    698   1.1       cgd #endif
    699   1.1       cgd 	len = auio.uio_resid;
    700  1.30      matt 	so = (struct socket *)fp->f_data;
    701  1.30      matt 	error = (*so->so_receive)(so, &from, &auio, NULL,
    702  1.30      matt 			  mp->msg_control ? &control : NULL, &mp->msg_flags);
    703  1.18  christos 	if (error) {
    704   1.1       cgd 		if (auio.uio_resid != len && (error == ERESTART ||
    705   1.1       cgd 		    error == EINTR || error == EWOULDBLOCK))
    706   1.1       cgd 			error = 0;
    707   1.1       cgd 	}
    708   1.1       cgd #ifdef KTRACE
    709   1.1       cgd 	if (ktriov != NULL) {
    710   1.1       cgd 		if (error == 0)
    711  1.52  sommerfe 			ktrgenio(p, s, UIO_READ, ktriov,
    712  1.52  sommerfe 			    len - auio.uio_resid, error);
    713  1.54   thorpej 		free(ktriov, M_TEMP);
    714   1.1       cgd 	}
    715   1.1       cgd #endif
    716   1.1       cgd 	if (error)
    717   1.1       cgd 		goto out;
    718   1.1       cgd 	*retsize = len - auio.uio_resid;
    719   1.1       cgd 	if (mp->msg_name) {
    720   1.1       cgd 		len = mp->msg_namelen;
    721   1.1       cgd 		if (len <= 0 || from == 0)
    722   1.1       cgd 			len = 0;
    723   1.1       cgd 		else {
    724   1.7   mycroft #ifdef COMPAT_OLDSOCK
    725   1.1       cgd 			if (mp->msg_flags & MSG_COMPAT)
    726   1.1       cgd 				mtod(from, struct osockaddr *)->sa_family =
    727   1.1       cgd 				    mtod(from, struct sockaddr *)->sa_family;
    728   1.1       cgd #endif
    729   1.1       cgd 			if (len > from->m_len)
    730   1.1       cgd 				len = from->m_len;
    731   1.1       cgd 			/* else if len < from->m_len ??? */
    732  1.18  christos 			error = copyout(mtod(from, caddr_t),
    733  1.18  christos 					(caddr_t)mp->msg_name, (unsigned)len);
    734  1.18  christos 			if (error)
    735   1.1       cgd 				goto out;
    736   1.1       cgd 		}
    737   1.1       cgd 		mp->msg_namelen = len;
    738   1.1       cgd 		if (namelenp &&
    739  1.34     perry 		    (error = copyout((caddr_t)&len, namelenp, sizeof(int)))) {
    740   1.7   mycroft #ifdef COMPAT_OLDSOCK
    741   1.1       cgd 			if (mp->msg_flags & MSG_COMPAT)
    742   1.1       cgd 				error = 0;	/* old recvfrom didn't check */
    743   1.1       cgd 			else
    744   1.1       cgd #endif
    745   1.1       cgd 			goto out;
    746   1.1       cgd 		}
    747   1.1       cgd 	}
    748   1.1       cgd 	if (mp->msg_control) {
    749   1.7   mycroft #ifdef COMPAT_OLDSOCK
    750   1.1       cgd 		/*
    751   1.1       cgd 		 * We assume that old recvmsg calls won't receive access
    752   1.1       cgd 		 * rights and other control info, esp. as control info
    753   1.1       cgd 		 * is always optional and those options didn't exist in 4.3.
    754   1.1       cgd 		 * If we receive rights, trim the cmsghdr; anything else
    755   1.1       cgd 		 * is tossed.
    756   1.1       cgd 		 */
    757   1.1       cgd 		if (control && mp->msg_flags & MSG_COMPAT) {
    758   1.1       cgd 			if (mtod(control, struct cmsghdr *)->cmsg_level !=
    759   1.1       cgd 			    SOL_SOCKET ||
    760   1.1       cgd 			    mtod(control, struct cmsghdr *)->cmsg_type !=
    761   1.1       cgd 			    SCM_RIGHTS) {
    762   1.1       cgd 				mp->msg_controllen = 0;
    763   1.1       cgd 				goto out;
    764   1.1       cgd 			}
    765  1.34     perry 			control->m_len -= sizeof(struct cmsghdr);
    766  1.34     perry 			control->m_data += sizeof(struct cmsghdr);
    767   1.1       cgd 		}
    768   1.1       cgd #endif
    769   1.1       cgd 		len = mp->msg_controllen;
    770   1.1       cgd 		if (len <= 0 || control == 0)
    771   1.1       cgd 			len = 0;
    772   1.1       cgd 		else {
    773  1.26   thorpej 			struct mbuf *m = control;
    774  1.26   thorpej 			caddr_t p = (caddr_t)mp->msg_control;
    775  1.26   thorpej 
    776  1.28   thorpej 			do {
    777  1.26   thorpej 				i = m->m_len;
    778  1.26   thorpej 				if (len < i) {
    779  1.26   thorpej 					mp->msg_flags |= MSG_CTRUNC;
    780  1.26   thorpej 					i = len;
    781  1.26   thorpej 				}
    782  1.26   thorpej 				error = copyout(mtod(m, caddr_t), p,
    783  1.26   thorpej 				    (unsigned)i);
    784  1.28   thorpej 				if (m->m_next)
    785  1.28   thorpej 					i = ALIGN(i);
    786  1.26   thorpej 				p += i;
    787  1.26   thorpej 				len -= i;
    788  1.26   thorpej 				if (error != 0 || len <= 0)
    789  1.26   thorpej 					break;
    790  1.28   thorpej 			} while ((m = m->m_next) != NULL);
    791  1.26   thorpej 			len = p - (caddr_t)mp->msg_control;
    792   1.1       cgd 		}
    793   1.1       cgd 		mp->msg_controllen = len;
    794   1.1       cgd 	}
    795  1.43   thorpej  out:
    796   1.1       cgd 	if (from)
    797   1.1       cgd 		m_freem(from);
    798   1.1       cgd 	if (control)
    799   1.1       cgd 		m_freem(control);
    800  1.43   thorpej  out1:
    801  1.43   thorpej 	FILE_UNUSE(fp, p);
    802   1.1       cgd 	return (error);
    803   1.1       cgd }
    804   1.1       cgd 
    805   1.1       cgd /* ARGSUSED */
    806   1.7   mycroft int
    807  1.57     lukem sys_shutdown(struct proc *p, void *v, register_t *retval)
    808  1.15   thorpej {
    809  1.51  augustss 	struct sys_shutdown_args /* {
    810  1.57     lukem 		syscallarg(int)	s;
    811  1.57     lukem 		syscallarg(int)	how;
    812  1.15   thorpej 	} */ *uap = v;
    813  1.57     lukem 	struct file	*fp;
    814  1.57     lukem 	int		error;
    815   1.1       cgd 
    816  1.43   thorpej 	/* getsock() will use the descriptor for us */
    817  1.18  christos 	if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
    818   1.1       cgd 		return (error);
    819  1.43   thorpej 	error = soshutdown((struct socket *)fp->f_data, SCARG(uap, how));
    820  1.43   thorpej 	FILE_UNUSE(fp, p);
    821  1.43   thorpej 	return (error);
    822   1.1       cgd }
    823   1.1       cgd 
    824   1.1       cgd /* ARGSUSED */
    825   1.7   mycroft int
    826  1.57     lukem sys_setsockopt(struct proc *p, void *v, register_t *retval)
    827  1.15   thorpej {
    828  1.51  augustss 	struct sys_setsockopt_args /* {
    829  1.57     lukem 		syscallarg(int)			s;
    830  1.57     lukem 		syscallarg(int)			level;
    831  1.57     lukem 		syscallarg(int)			name;
    832  1.57     lukem 		syscallarg(const void *)	val;
    833  1.57     lukem 		syscallarg(unsigned int)	valsize;
    834  1.15   thorpej 	} */ *uap = v;
    835  1.57     lukem 	struct file	*fp;
    836  1.57     lukem 	struct mbuf	*m;
    837  1.57     lukem 	int		error;
    838   1.1       cgd 
    839  1.57     lukem 	m = NULL;
    840  1.43   thorpej 	/* getsock() will use the descriptor for us */
    841  1.18  christos 	if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
    842   1.1       cgd 		return (error);
    843  1.43   thorpej 	if (SCARG(uap, valsize) > MLEN) {
    844  1.43   thorpej 		error = EINVAL;
    845  1.43   thorpej 		goto out;
    846  1.43   thorpej 	}
    847   1.9       cgd 	if (SCARG(uap, val)) {
    848   1.1       cgd 		m = m_get(M_WAIT, MT_SOOPTS);
    849  1.18  christos 		error = copyin(SCARG(uap, val), mtod(m, caddr_t),
    850  1.41    kleink 			       SCARG(uap, valsize));
    851  1.18  christos 		if (error) {
    852   1.1       cgd 			(void) m_free(m);
    853  1.43   thorpej 			goto out;
    854   1.1       cgd 		}
    855   1.9       cgd 		m->m_len = SCARG(uap, valsize);
    856   1.1       cgd 	}
    857  1.43   thorpej 	error = sosetopt((struct socket *)fp->f_data, SCARG(uap, level),
    858  1.43   thorpej 			 SCARG(uap, name), m);
    859  1.43   thorpej  out:
    860  1.43   thorpej 	FILE_UNUSE(fp, p);
    861  1.43   thorpej 	return (error);
    862   1.1       cgd }
    863   1.1       cgd 
    864   1.1       cgd /* ARGSUSED */
    865   1.7   mycroft int
    866  1.57     lukem sys_getsockopt(struct proc *p, void *v, register_t *retval)
    867  1.15   thorpej {
    868  1.51  augustss 	struct sys_getsockopt_args /* {
    869  1.57     lukem 		syscallarg(int)			s;
    870  1.57     lukem 		syscallarg(int)			level;
    871  1.57     lukem 		syscallarg(int)			name;
    872  1.57     lukem 		syscallarg(void *)		val;
    873  1.57     lukem 		syscallarg(unsigned int *)	avalsize;
    874  1.15   thorpej 	} */ *uap = v;
    875  1.57     lukem 	struct file	*fp;
    876  1.57     lukem 	struct mbuf	*m, *m0;
    877  1.57     lukem 	unsigned int	op, i, valsize;
    878  1.57     lukem 	int		error;
    879   1.1       cgd 
    880  1.57     lukem 	m = NULL;
    881  1.43   thorpej 	/* getsock() will use the descriptor for us */
    882  1.18  christos 	if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
    883   1.1       cgd 		return (error);
    884   1.9       cgd 	if (SCARG(uap, val)) {
    885  1.18  christos 		error = copyin((caddr_t)SCARG(uap, avalsize),
    886  1.34     perry 			       (caddr_t)&valsize, sizeof(valsize));
    887  1.18  christos 		if (error)
    888  1.43   thorpej 			goto out;
    889   1.1       cgd 	} else
    890   1.1       cgd 		valsize = 0;
    891   1.9       cgd 	if ((error = sogetopt((struct socket *)fp->f_data, SCARG(uap, level),
    892   1.9       cgd 	    SCARG(uap, name), &m)) == 0 && SCARG(uap, val) && valsize &&
    893   1.9       cgd 	    m != NULL) {
    894  1.45    itojun 		op = 0;
    895  1.45    itojun 		while (m && !error && op < valsize) {
    896  1.45    itojun 			i = min(m->m_len, (valsize - op));
    897  1.45    itojun 			error = copyout(mtod(m, caddr_t), SCARG(uap, val), i);
    898  1.45    itojun 			op += i;
    899  1.45    itojun 			SCARG(uap, val) = ((u_int8_t *)SCARG(uap, val)) + i;
    900  1.45    itojun 			m0 = m;
    901  1.45    itojun 			MFREE(m0, m);
    902  1.45    itojun 		}
    903  1.45    itojun 		valsize = op;
    904   1.1       cgd 		if (error == 0)
    905  1.45    itojun 			error = copyout(&valsize,
    906  1.45    itojun 					SCARG(uap, avalsize), sizeof(valsize));
    907   1.1       cgd 	}
    908   1.1       cgd 	if (m != NULL)
    909   1.1       cgd 		(void) m_free(m);
    910  1.43   thorpej  out:
    911  1.43   thorpej 	FILE_UNUSE(fp, p);
    912   1.1       cgd 	return (error);
    913   1.1       cgd }
    914   1.1       cgd 
    915   1.1       cgd /* ARGSUSED */
    916   1.7   mycroft int
    917  1.57     lukem sys_pipe(struct proc *p, void *v, register_t *retval)
    918   1.1       cgd {
    919  1.57     lukem 	struct filedesc	*fdp;
    920  1.57     lukem 	struct file	*rf, *wf;
    921  1.57     lukem 	struct socket	*rso, *wso;
    922  1.57     lukem 	int		fd, error;
    923   1.1       cgd 
    924  1.57     lukem 	fdp = p->p_fd;
    925  1.32     lukem 	if ((error = socreate(AF_LOCAL, &rso, SOCK_STREAM, 0)) != 0)
    926   1.1       cgd 		return (error);
    927  1.32     lukem 	if ((error = socreate(AF_LOCAL, &wso, SOCK_STREAM, 0)) != 0)
    928   1.1       cgd 		goto free1;
    929  1.58      manu 	/* remember this socket pair implements a pipe */
    930  1.58      manu 	wso->so_state |= SS_ISAPIPE;
    931  1.58      manu 	rso->so_state |= SS_ISAPIPE;
    932  1.43   thorpej 	/* falloc() will use the descriptor for us */
    933  1.18  christos 	if ((error = falloc(p, &rf, &fd)) != 0)
    934   1.1       cgd 		goto free2;
    935   1.1       cgd 	retval[0] = fd;
    936   1.1       cgd 	rf->f_flag = FREAD;
    937   1.1       cgd 	rf->f_type = DTYPE_SOCKET;
    938   1.1       cgd 	rf->f_ops = &socketops;
    939   1.1       cgd 	rf->f_data = (caddr_t)rso;
    940  1.18  christos 	if ((error = falloc(p, &wf, &fd)) != 0)
    941   1.1       cgd 		goto free3;
    942   1.1       cgd 	wf->f_flag = FWRITE;
    943   1.1       cgd 	wf->f_type = DTYPE_SOCKET;
    944   1.1       cgd 	wf->f_ops = &socketops;
    945   1.1       cgd 	wf->f_data = (caddr_t)wso;
    946   1.1       cgd 	retval[1] = fd;
    947  1.18  christos 	if ((error = unp_connect2(wso, rso)) != 0)
    948   1.1       cgd 		goto free4;
    949  1.59   thorpej 	FILE_SET_MATURE(rf);
    950  1.59   thorpej 	FILE_SET_MATURE(wf);
    951  1.43   thorpej 	FILE_UNUSE(rf, p);
    952  1.43   thorpej 	FILE_UNUSE(wf, p);
    953   1.1       cgd 	return (0);
    954  1.57     lukem  free4:
    955  1.43   thorpej 	FILE_UNUSE(wf, p);
    956   1.1       cgd 	ffree(wf);
    957  1.50   thorpej 	fdremove(fdp, retval[1]);
    958  1.57     lukem  free3:
    959  1.43   thorpej 	FILE_UNUSE(rf, p);
    960   1.1       cgd 	ffree(rf);
    961  1.50   thorpej 	fdremove(fdp, retval[0]);
    962  1.57     lukem  free2:
    963   1.1       cgd 	(void)soclose(wso);
    964  1.57     lukem  free1:
    965   1.1       cgd 	(void)soclose(rso);
    966   1.1       cgd 	return (error);
    967   1.1       cgd }
    968   1.1       cgd 
    969   1.1       cgd /*
    970   1.1       cgd  * Get socket name.
    971   1.1       cgd  */
    972  1.13  christos /* ARGSUSED */
    973   1.7   mycroft int
    974  1.57     lukem sys_getsockname(struct proc *p, void *v, register_t *retval)
    975  1.15   thorpej {
    976  1.51  augustss 	struct sys_getsockname_args /* {
    977  1.57     lukem 		syscallarg(int)			fdes;
    978  1.57     lukem 		syscallarg(struct sockaddr *)	asa;
    979  1.57     lukem 		syscallarg(unsigned int *)	alen;
    980  1.15   thorpej 	} */ *uap = v;
    981  1.57     lukem 	struct file	*fp;
    982  1.57     lukem 	struct socket	*so;
    983  1.57     lukem 	struct mbuf	*m;
    984  1.57     lukem 	unsigned int	len;
    985  1.57     lukem 	int		error;
    986   1.1       cgd 
    987  1.43   thorpej 	/* getsock() will use the descriptor for us */
    988  1.18  christos 	if ((error = getsock(p->p_fd, SCARG(uap, fdes), &fp)) != 0)
    989   1.1       cgd 		return (error);
    990  1.34     perry 	error = copyin((caddr_t)SCARG(uap, alen), (caddr_t)&len, sizeof(len));
    991  1.18  christos 	if (error)
    992  1.43   thorpej 		goto out;
    993   1.1       cgd 	so = (struct socket *)fp->f_data;
    994   1.1       cgd 	m = m_getclr(M_WAIT, MT_SONAME);
    995  1.21   mycroft 	error = (*so->so_proto->pr_usrreq)(so, PRU_SOCKADDR, (struct mbuf *)0,
    996  1.21   mycroft 	    m, (struct mbuf *)0, (struct proc *)0);
    997  1.18  christos 	if (error)
    998   1.1       cgd 		goto bad;
    999   1.1       cgd 	if (len > m->m_len)
   1000   1.1       cgd 		len = m->m_len;
   1001  1.41    kleink 	error = copyout(mtod(m, caddr_t), (caddr_t)SCARG(uap, asa), len);
   1002   1.1       cgd 	if (error == 0)
   1003   1.9       cgd 		error = copyout((caddr_t)&len, (caddr_t)SCARG(uap, alen),
   1004  1.34     perry 		    sizeof(len));
   1005  1.43   thorpej  bad:
   1006   1.1       cgd 	m_freem(m);
   1007  1.43   thorpej  out:
   1008  1.43   thorpej 	FILE_UNUSE(fp, p);
   1009   1.1       cgd 	return (error);
   1010   1.1       cgd }
   1011   1.1       cgd 
   1012   1.1       cgd /*
   1013   1.1       cgd  * Get name of peer for connected socket.
   1014   1.1       cgd  */
   1015  1.13  christos /* ARGSUSED */
   1016   1.7   mycroft int
   1017  1.57     lukem sys_getpeername(struct proc *p, void *v, register_t *retval)
   1018  1.15   thorpej {
   1019  1.51  augustss 	struct sys_getpeername_args /* {
   1020  1.57     lukem 		syscallarg(int)			fdes;
   1021  1.57     lukem 		syscallarg(struct sockaddr *)	asa;
   1022  1.57     lukem 		syscallarg(unsigned int *)	alen;
   1023  1.15   thorpej 	} */ *uap = v;
   1024  1.57     lukem 	struct file	*fp;
   1025  1.57     lukem 	struct socket	*so;
   1026  1.57     lukem 	struct mbuf	*m;
   1027  1.57     lukem 	unsigned int	len;
   1028  1.57     lukem 	int		error;
   1029   1.1       cgd 
   1030  1.43   thorpej 	/* getsock() will use the descriptor for us */
   1031  1.18  christos 	if ((error = getsock(p->p_fd, SCARG(uap, fdes), &fp)) != 0)
   1032   1.1       cgd 		return (error);
   1033   1.1       cgd 	so = (struct socket *)fp->f_data;
   1034  1.43   thorpej 	if ((so->so_state & (SS_ISCONNECTED|SS_ISCONFIRMING)) == 0) {
   1035  1.43   thorpej 		error = ENOTCONN;
   1036  1.43   thorpej 		goto out;
   1037  1.43   thorpej 	}
   1038  1.34     perry 	error = copyin((caddr_t)SCARG(uap, alen), (caddr_t)&len, sizeof(len));
   1039  1.18  christos 	if (error)
   1040  1.43   thorpej 		goto out;
   1041   1.1       cgd 	m = m_getclr(M_WAIT, MT_SONAME);
   1042  1.21   mycroft 	error = (*so->so_proto->pr_usrreq)(so, PRU_PEERADDR, (struct mbuf *)0,
   1043  1.21   mycroft 	    m, (struct mbuf *)0, (struct proc *)0);
   1044  1.18  christos 	if (error)
   1045   1.1       cgd 		goto bad;
   1046   1.1       cgd 	if (len > m->m_len)
   1047   1.1       cgd 		len = m->m_len;
   1048  1.41    kleink 	error = copyout(mtod(m, caddr_t), (caddr_t)SCARG(uap, asa), len);
   1049  1.18  christos 	if (error)
   1050   1.1       cgd 		goto bad;
   1051  1.34     perry 	error = copyout((caddr_t)&len, (caddr_t)SCARG(uap, alen), sizeof(len));
   1052  1.43   thorpej  bad:
   1053   1.1       cgd 	m_freem(m);
   1054  1.43   thorpej  out:
   1055  1.43   thorpej 	FILE_UNUSE(fp, p);
   1056   1.1       cgd 	return (error);
   1057   1.1       cgd }
   1058   1.1       cgd 
   1059  1.24   thorpej /*
   1060  1.24   thorpej  * XXX In a perfect world, we wouldn't pass around socket control
   1061  1.24   thorpej  * XXX arguments in mbufs, and this could go away.
   1062  1.24   thorpej  */
   1063   1.7   mycroft int
   1064  1.57     lukem sockargs(struct mbuf **mp, const void *buf, int buflen, int type)
   1065   1.1       cgd {
   1066  1.57     lukem 	struct sockaddr	*sa;
   1067  1.57     lukem 	struct mbuf	*m;
   1068  1.57     lukem 	int		error;
   1069   1.1       cgd 
   1070  1.24   thorpej 	/*
   1071  1.25   thorpej 	 * We can't allow socket names > UCHAR_MAX in length, since that
   1072  1.24   thorpej 	 * will overflow sa_len.
   1073  1.24   thorpej 	 */
   1074  1.25   thorpej 	if (type == MT_SONAME && (u_int)buflen > UCHAR_MAX)
   1075  1.24   thorpej 		return (EINVAL);
   1076  1.24   thorpej 
   1077  1.24   thorpej 	/* Allocate an mbuf to hold the arguments. */
   1078  1.24   thorpej 	m = m_get(M_WAIT, type);
   1079   1.1       cgd 	if ((u_int)buflen > MLEN) {
   1080  1.24   thorpej 		/*
   1081  1.24   thorpej 		 * Won't fit into a regular mbuf, so we allocate just
   1082  1.24   thorpej 		 * enough external storage to hold the argument.
   1083  1.24   thorpej 		 */
   1084  1.24   thorpej 		MEXTMALLOC(m, buflen, M_WAITOK);
   1085   1.1       cgd 	}
   1086   1.1       cgd 	m->m_len = buflen;
   1087   1.1       cgd 	error = copyin(buf, mtod(m, caddr_t), (u_int)buflen);
   1088   1.1       cgd 	if (error) {
   1089   1.1       cgd 		(void) m_free(m);
   1090   1.7   mycroft 		return (error);
   1091   1.1       cgd 	}
   1092   1.1       cgd 	*mp = m;
   1093   1.1       cgd 	if (type == MT_SONAME) {
   1094   1.7   mycroft 		sa = mtod(m, struct sockaddr *);
   1095   1.1       cgd 
   1096   1.7   mycroft #if defined(COMPAT_OLDSOCK) && BYTE_ORDER != BIG_ENDIAN
   1097   1.1       cgd 		if (sa->sa_family == 0 && sa->sa_len < AF_MAX)
   1098   1.1       cgd 			sa->sa_family = sa->sa_len;
   1099   1.1       cgd #endif
   1100   1.1       cgd 		sa->sa_len = buflen;
   1101   1.1       cgd 	}
   1102   1.1       cgd 	return (0);
   1103   1.1       cgd }
   1104   1.1       cgd 
   1105   1.7   mycroft int
   1106  1.57     lukem getsock(struct filedesc *fdp, int fdes, struct file **fpp)
   1107   1.1       cgd {
   1108  1.57     lukem 	struct file	*fp;
   1109   1.1       cgd 
   1110  1.59   thorpej 	if ((fp = fd_getfile(fdp, fdes)) == NULL)
   1111   1.1       cgd 		return (EBADF);
   1112  1.43   thorpej 
   1113  1.43   thorpej 	FILE_USE(fp);
   1114  1.43   thorpej 
   1115  1.43   thorpej 	if (fp->f_type != DTYPE_SOCKET) {
   1116  1.43   thorpej 		FILE_UNUSE(fp, NULL);
   1117   1.1       cgd 		return (ENOTSOCK);
   1118  1.43   thorpej 	}
   1119   1.1       cgd 	*fpp = fp;
   1120   1.1       cgd 	return (0);
   1121   1.1       cgd }
   1122