Home | History | Annotate | Line # | Download | only in common
uipc_syscalls_43.c revision 1.16
      1  1.16  jdolecek /*	$NetBSD: uipc_syscalls_43.c,v 1.16 2001/07/22 13:46:51 jdolecek Exp $	*/
      2   1.1  christos 
      3   1.1  christos /*
      4   1.1  christos  * Copyright (c) 1982, 1986, 1989, 1990, 1993
      5   1.1  christos  *	The Regents of the University of California.  All rights reserved.
      6   1.1  christos  *
      7   1.1  christos  * Redistribution and use in source and binary forms, with or without
      8   1.1  christos  * modification, are permitted provided that the following conditions
      9   1.1  christos  * are met:
     10   1.1  christos  * 1. Redistributions of source code must retain the above copyright
     11   1.1  christos  *    notice, this list of conditions and the following disclaimer.
     12   1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  christos  *    documentation and/or other materials provided with the distribution.
     15   1.1  christos  * 3. All advertising materials mentioning features or use of this software
     16   1.1  christos  *    must display the following acknowledgement:
     17   1.1  christos  *	This product includes software developed by the University of
     18   1.1  christos  *	California, Berkeley and its contributors.
     19   1.1  christos  * 4. Neither the name of the University nor the names of its contributors
     20   1.1  christos  *    may be used to endorse or promote products derived from this software
     21   1.1  christos  *    without specific prior written permission.
     22   1.1  christos  *
     23   1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1  christos  * SUCH DAMAGE.
     34   1.1  christos  *
     35   1.1  christos  *	@(#)uipc_syscalls.c	8.4 (Berkeley) 2/21/94
     36   1.1  christos  */
     37   1.1  christos 
     38   1.1  christos #include <sys/param.h>
     39   1.1  christos #include <sys/systm.h>
     40   1.1  christos #include <sys/filedesc.h>
     41   1.1  christos #include <sys/kernel.h>
     42   1.1  christos #include <sys/proc.h>
     43   1.1  christos #include <sys/file.h>
     44   1.1  christos #include <sys/socket.h>
     45   1.1  christos #include <sys/socketvar.h>
     46   1.1  christos #include <sys/stat.h>
     47   1.1  christos #include <sys/ioctl.h>
     48   1.1  christos #include <sys/fcntl.h>
     49   1.1  christos #include <sys/malloc.h>
     50   1.1  christos #include <sys/syslog.h>
     51   1.1  christos #include <sys/unistd.h>
     52   1.1  christos #include <sys/resourcevar.h>
     53  1.15  jdolecek #include <sys/mbuf.h>		/* for MLEN */
     54   1.1  christos 
     55   1.1  christos #include <sys/mount.h>
     56   1.1  christos #include <sys/syscallargs.h>
     57   1.1  christos 
     58  1.15  jdolecek #include <compat/common/compat_util.h>
     59  1.15  jdolecek 
     60  1.15  jdolecek #include <uvm/uvm_extern.h>
     61  1.15  jdolecek 
     62  1.15  jdolecek /*
     63  1.15  jdolecek  * Following 4.3 syscalls were not versioned, even through they should
     64  1.15  jdolecek  * have been:
     65  1.15  jdolecek  * connect(2), bind(2), sendto(2)
     66  1.15  jdolecek  */
     67  1.15  jdolecek 
     68  1.15  jdolecek static int compat_43_sa_put(caddr_t);
     69  1.15  jdolecek 
     70   1.1  christos int
     71   1.3   mycroft compat_43_sys_accept(p, v, retval)
     72   1.1  christos 	struct proc *p;
     73   1.2   thorpej 	void *v;
     74   1.2   thorpej 	register_t *retval;
     75   1.2   thorpej {
     76  1.15  jdolecek 	struct compat_43_sys_accept_args /* {
     77   1.1  christos 		syscallarg(int) s;
     78   1.1  christos 		syscallarg(caddr_t) name;
     79   1.1  christos 		syscallarg(int *) anamelen;
     80   1.2   thorpej 	} */ *uap = v;
     81   1.1  christos 	int error;
     82   1.1  christos 
     83  1.15  jdolecek 	if ((error = sys_accept(p, v, retval)) != 0)
     84   1.1  christos 		return error;
     85   1.1  christos 
     86  1.15  jdolecek 	if (SCARG(uap, name)
     87  1.15  jdolecek 	    && (error = compat_43_sa_put(SCARG(uap, name))))
     88  1.15  jdolecek 		return (error);
     89   1.1  christos 
     90   1.1  christos 	return 0;
     91   1.1  christos }
     92   1.1  christos 
     93   1.1  christos int
     94   1.3   mycroft compat_43_sys_getpeername(p, v, retval)
     95   1.1  christos 	struct proc *p;
     96   1.2   thorpej 	void *v;
     97   1.2   thorpej 	register_t *retval;
     98   1.2   thorpej {
     99  1.15  jdolecek 	struct compat_43_sys_getpeername_args /* {
    100   1.1  christos 		syscallarg(int) fdes;
    101   1.1  christos 		syscallarg(caddr_t) asa;
    102   1.1  christos 		syscallarg(int *) alen;
    103   1.2   thorpej 	} */ *uap = v;
    104   1.1  christos 
    105   1.1  christos 	int error;
    106   1.1  christos 
    107  1.15  jdolecek 	if ((error = sys_getpeername(p, v, retval)) != 0)
    108   1.1  christos 		return error;
    109   1.1  christos 
    110  1.15  jdolecek 	if ((error = compat_43_sa_put(SCARG(uap, asa))))
    111  1.15  jdolecek 		return (error);
    112   1.1  christos 
    113   1.1  christos 	return 0;
    114   1.1  christos }
    115   1.1  christos 
    116   1.1  christos int
    117   1.3   mycroft compat_43_sys_getsockname(p, v, retval)
    118   1.1  christos 	struct proc *p;
    119   1.2   thorpej 	void *v;
    120   1.2   thorpej 	register_t *retval;
    121   1.2   thorpej {
    122  1.15  jdolecek 	struct compat_43_sys_getsockname_args /* {
    123   1.1  christos 		syscallarg(int) fdes;
    124   1.1  christos 		syscallarg(caddr_t) asa;
    125   1.1  christos 		syscallarg(int *) alen;
    126   1.2   thorpej 	} */ *uap = v;
    127   1.1  christos 	int error;
    128   1.1  christos 
    129  1.15  jdolecek 	if ((error = sys_getsockname(p, v, retval)) != 0)
    130   1.1  christos 		return error;
    131   1.1  christos 
    132  1.15  jdolecek 	if ((error = compat_43_sa_put(SCARG(uap, asa))))
    133  1.15  jdolecek 		return (error);
    134   1.1  christos 
    135   1.1  christos 	return 0;
    136   1.1  christos }
    137   1.1  christos 
    138   1.1  christos int
    139   1.3   mycroft compat_43_sys_recv(p, v, retval)
    140   1.1  christos 	struct proc *p;
    141   1.2   thorpej 	void *v;
    142   1.2   thorpej 	register_t *retval;
    143   1.2   thorpej {
    144  1.11  augustss 	struct compat_43_sys_recv_args /* {
    145   1.1  christos 		syscallarg(int) s;
    146   1.1  christos 		syscallarg(caddr_t) buf;
    147   1.1  christos 		syscallarg(int) len;
    148   1.1  christos 		syscallarg(int) flags;
    149   1.2   thorpej 	} */ *uap = v;
    150  1.14  jdolecek 	struct sys_recvfrom_args bra;
    151  1.14  jdolecek 
    152  1.14  jdolecek 	SCARG(&bra, s) = SCARG(uap, s);
    153  1.14  jdolecek 	SCARG(&bra, buf) = SCARG(uap, buf);
    154  1.14  jdolecek 	SCARG(&bra, len) = (size_t) SCARG(uap, len);
    155  1.14  jdolecek 	SCARG(&bra, flags) = SCARG(uap, flags);
    156  1.14  jdolecek 	SCARG(&bra, from) = NULL;
    157  1.14  jdolecek 	SCARG(&bra, fromlenaddr) = NULL;
    158   1.1  christos 
    159  1.14  jdolecek 	return (sys_recvfrom(p, &bra, retval));
    160   1.1  christos }
    161   1.1  christos 
    162   1.1  christos int
    163   1.3   mycroft compat_43_sys_recvfrom(p, v, retval)
    164   1.1  christos 	struct proc *p;
    165   1.2   thorpej 	void *v;
    166   1.2   thorpej 	register_t *retval;
    167   1.2   thorpej {
    168  1.15  jdolecek 	struct compat_43_sys_recvfrom_args /* {
    169   1.1  christos 		syscallarg(int) s;
    170   1.1  christos 		syscallarg(caddr_t) buf;
    171   1.1  christos 		syscallarg(size_t) len;
    172   1.1  christos 		syscallarg(int) flags;
    173   1.1  christos 		syscallarg(caddr_t) from;
    174   1.1  christos 		syscallarg(int *) fromlenaddr;
    175   1.2   thorpej 	} */ *uap = v;
    176  1.15  jdolecek 	int error;
    177  1.15  jdolecek 
    178  1.15  jdolecek 	if ((error = sys_recvfrom(p, v, retval)))
    179  1.15  jdolecek 		return (error);
    180  1.15  jdolecek 
    181  1.15  jdolecek 	if (SCARG(uap, from) && (error = compat_43_sa_put(SCARG(uap, from))))
    182  1.15  jdolecek 		return (error);
    183   1.1  christos 
    184  1.15  jdolecek 	return (0);
    185   1.1  christos }
    186   1.1  christos 
    187   1.1  christos /*
    188  1.15  jdolecek  * Old recvmsg. Arrange necessary structures, calls generic code and
    189  1.15  jdolecek  * adjusts results accordingly.
    190   1.1  christos  */
    191   1.1  christos int
    192   1.3   mycroft compat_43_sys_recvmsg(p, v, retval)
    193   1.1  christos 	struct proc *p;
    194   1.2   thorpej 	void *v;
    195   1.2   thorpej 	register_t *retval;
    196   1.2   thorpej {
    197  1.11  augustss 	struct compat_43_sys_recvmsg_args /* {
    198   1.1  christos 		syscallarg(int) s;
    199   1.1  christos 		syscallarg(struct omsghdr *) msg;
    200   1.1  christos 		syscallarg(int) flags;
    201   1.2   thorpej 	} */ *uap = v;
    202  1.15  jdolecek 	struct omsghdr omsg;
    203   1.1  christos 	struct msghdr msg;
    204   1.1  christos 	struct iovec aiov[UIO_SMALLIOV], *iov;
    205   1.1  christos 	int error;
    206   1.1  christos 
    207  1.15  jdolecek 	error = copyin((caddr_t)SCARG(uap, msg), (caddr_t)&omsg,
    208   1.5  christos 	    sizeof (struct omsghdr));
    209   1.5  christos 	if (error)
    210   1.1  christos 		return (error);
    211  1.15  jdolecek 	if ((u_int)omsg.msg_iovlen > UIO_SMALLIOV) {
    212  1.15  jdolecek 		if ((u_int)omsg.msg_iovlen > IOV_MAX)
    213   1.1  christos 			return (EMSGSIZE);
    214  1.15  jdolecek 		iov = malloc(sizeof(struct iovec) * omsg.msg_iovlen,
    215  1.15  jdolecek 		    M_IOV, M_WAITOK);
    216   1.1  christos 	} else
    217   1.1  christos 		iov = aiov;
    218  1.15  jdolecek 
    219  1.15  jdolecek 	error = copyin((caddr_t)omsg.msg_iov, (caddr_t)iov,
    220  1.15  jdolecek 	    (unsigned)(omsg.msg_iovlen * sizeof (struct iovec)));
    221   1.5  christos 	if (error)
    222   1.1  christos 		goto done;
    223  1.15  jdolecek 
    224  1.15  jdolecek 	msg.msg_name	= omsg.msg_name;
    225  1.15  jdolecek 	msg.msg_namelen = omsg.msg_namelen;
    226  1.15  jdolecek 	msg.msg_iovlen	= omsg.msg_iovlen;
    227  1.15  jdolecek 	msg.msg_iov	= iov;
    228  1.15  jdolecek 	msg.msg_flags	= SCARG(uap, flags);
    229  1.15  jdolecek 
    230  1.15  jdolecek 	/*
    231  1.15  jdolecek 	 * If caller passes accrights, arrange things for generic code to
    232  1.15  jdolecek 	 * DTRT.
    233  1.15  jdolecek 	 */
    234  1.15  jdolecek 	if (omsg.msg_accrights && omsg.msg_accrightslen) {
    235  1.15  jdolecek 		caddr_t sg = stackgap_init(p->p_emul);
    236  1.15  jdolecek 		struct cmsg *ucmsg;
    237  1.15  jdolecek 
    238  1.15  jdolecek 		/* it was this way in 4.4BSD */
    239  1.15  jdolecek 		if ((u_int) omsg.msg_accrightslen > MLEN)
    240  1.15  jdolecek 			return (EINVAL);
    241  1.15  jdolecek 
    242  1.15  jdolecek 		ucmsg = stackgap_alloc(&sg, CMSG_SPACE(omsg.msg_accrightslen));
    243  1.15  jdolecek 		if (ucmsg == NULL)
    244  1.16  jdolecek 			return (EMSGSIZE);
    245  1.15  jdolecek 
    246  1.15  jdolecek 		msg.msg_control = ucmsg;
    247  1.15  jdolecek 		msg.msg_controllen = CMSG_SPACE(omsg.msg_accrightslen);
    248  1.15  jdolecek 	} else {
    249  1.15  jdolecek 		msg.msg_control = NULL;
    250  1.15  jdolecek 		msg.msg_controllen = 0;
    251  1.15  jdolecek 	}
    252  1.15  jdolecek 
    253   1.1  christos 	error = recvit(p, SCARG(uap, s), &msg,
    254  1.13  jdolecek 	    (caddr_t)&SCARG(uap, msg)->msg_namelen, retval);
    255   1.1  christos 
    256  1.15  jdolecek 	/*
    257  1.15  jdolecek 	 * If there is any control information and it's SCM_RIGHTS,
    258  1.15  jdolecek 	 * pass it back to the program.
    259  1.15  jdolecek 	 */
    260  1.15  jdolecek 	if (!error && omsg.msg_accrights && msg.msg_controllen > 0) {
    261  1.15  jdolecek 		struct cmsghdr *cmsg;
    262  1.15  jdolecek 
    263  1.16  jdolecek 		/* safe - msg.msg_controllen set by kernel */
    264  1.15  jdolecek 		cmsg = (struct cmsghdr *) malloc(msg.msg_controllen,
    265  1.15  jdolecek 		    M_TEMP, M_WAITOK);
    266  1.15  jdolecek 
    267  1.15  jdolecek 		error = copyin(msg.msg_control, cmsg, msg.msg_controllen);
    268  1.15  jdolecek 		if (error) {
    269  1.15  jdolecek 			free(cmsg, M_TEMP);
    270  1.15  jdolecek 			return (error);
    271  1.15  jdolecek 		}
    272  1.15  jdolecek 
    273  1.15  jdolecek 		if (cmsg->cmsg_level != SOL_SOCKET
    274  1.15  jdolecek 		    || cmsg->cmsg_type != SCM_RIGHTS
    275  1.15  jdolecek 		    || copyout(CMSG_DATA(cmsg), omsg.msg_accrights,
    276  1.15  jdolecek 			    cmsg->cmsg_len)) {
    277  1.15  jdolecek 			omsg.msg_accrightslen = 0;
    278  1.15  jdolecek 		}
    279  1.15  jdolecek 
    280  1.15  jdolecek 		free(cmsg, M_TEMP);
    281  1.15  jdolecek 
    282  1.15  jdolecek 		if (!error) {
    283  1.15  jdolecek 			error = copyout(&cmsg->cmsg_len,
    284  1.15  jdolecek 			    &SCARG(uap, msg)->msg_accrightslen, sizeof(int));
    285  1.15  jdolecek 		}
    286  1.15  jdolecek 	}
    287  1.15  jdolecek 
    288  1.15  jdolecek 	if (!error && omsg.msg_name) {
    289  1.15  jdolecek 		int namelen;
    290  1.15  jdolecek 
    291  1.15  jdolecek 		if ((error = copyin(&SCARG(uap, msg)->msg_namelen, &namelen, sizeof(int)) == 0)
    292  1.15  jdolecek 		    && namelen > 0)
    293  1.15  jdolecek 			error = compat_43_sa_put(omsg.msg_name);
    294  1.15  jdolecek 	}
    295  1.15  jdolecek 
    296   1.1  christos done:
    297   1.1  christos 	if (iov != aiov)
    298  1.15  jdolecek 		free(iov, M_IOV);
    299   1.1  christos 	return (error);
    300   1.1  christos }
    301   1.1  christos 
    302   1.1  christos int
    303   1.3   mycroft compat_43_sys_send(p, v, retval)
    304   1.1  christos 	struct proc *p;
    305   1.2   thorpej 	void *v;
    306   1.2   thorpej 	register_t *retval;
    307   1.2   thorpej {
    308  1.11  augustss 	struct compat_43_sys_send_args /* {
    309   1.1  christos 		syscallarg(int) s;
    310   1.1  christos 		syscallarg(caddr_t) buf;
    311   1.1  christos 		syscallarg(int) len;
    312   1.1  christos 		syscallarg(int) flags;
    313   1.2   thorpej 	} */ *uap = v;
    314  1.14  jdolecek 	struct sys_sendto_args bsa;
    315  1.14  jdolecek 
    316  1.14  jdolecek 	SCARG(&bsa, s)		= SCARG(uap, s);
    317  1.14  jdolecek 	SCARG(&bsa, buf)	= SCARG(uap, buf);
    318  1.14  jdolecek 	SCARG(&bsa, len)	= SCARG(uap, len);
    319  1.14  jdolecek 	SCARG(&bsa, flags)	= SCARG(uap, flags);
    320  1.14  jdolecek 	SCARG(&bsa, to)		= NULL;
    321  1.14  jdolecek 	SCARG(&bsa, tolen)	= 0;
    322   1.1  christos 
    323  1.14  jdolecek 	return (sys_sendto(p, &bsa, retval));
    324   1.1  christos }
    325   1.1  christos 
    326  1.15  jdolecek /*
    327  1.15  jdolecek  * Old sendmsg. Arrange necessary structures, call generic code and
    328  1.15  jdolecek  * adjust the results accordingly for old code.
    329  1.15  jdolecek  */
    330   1.1  christos int
    331   1.3   mycroft compat_43_sys_sendmsg(p, v, retval)
    332   1.1  christos 	struct proc *p;
    333   1.2   thorpej 	void *v;
    334   1.2   thorpej 	register_t *retval;
    335   1.2   thorpej {
    336  1.11  augustss 	struct compat_43_sys_sendmsg_args /* {
    337   1.1  christos 		syscallarg(int) s;
    338   1.1  christos 		syscallarg(caddr_t) msg;
    339   1.1  christos 		syscallarg(int) flags;
    340   1.2   thorpej 	} */ *uap = v;
    341  1.15  jdolecek 	struct omsghdr omsg;
    342   1.1  christos 	struct msghdr msg;
    343   1.1  christos 	struct iovec aiov[UIO_SMALLIOV], *iov;
    344   1.1  christos 	int error;
    345  1.15  jdolecek 	caddr_t sg = stackgap_init(p->p_emul);
    346   1.1  christos 
    347  1.15  jdolecek 	error = copyin(SCARG(uap, msg), (caddr_t)&omsg,
    348   1.5  christos 	    sizeof (struct omsghdr));
    349   1.5  christos 	if (error)
    350   1.1  christos 		return (error);
    351  1.15  jdolecek 	if ((u_int)omsg.msg_iovlen > UIO_SMALLIOV) {
    352  1.15  jdolecek 		if ((u_int)omsg.msg_iovlen > IOV_MAX)
    353   1.1  christos 			return (EMSGSIZE);
    354  1.15  jdolecek 		iov = malloc(sizeof(struct iovec) * omsg.msg_iovlen,
    355  1.15  jdolecek 		    M_IOV, M_WAITOK);
    356   1.1  christos 	} else
    357   1.1  christos 		iov = aiov;
    358  1.15  jdolecek 	error = copyin((caddr_t)omsg.msg_iov, (caddr_t)iov,
    359  1.15  jdolecek 	    (unsigned)(omsg.msg_iovlen * sizeof (struct iovec)));
    360   1.5  christos 	if (error)
    361   1.1  christos 		goto done;
    362  1.15  jdolecek 
    363  1.15  jdolecek 	if (omsg.msg_name) {
    364  1.15  jdolecek 		struct osockaddr *osa;
    365  1.15  jdolecek 		struct sockaddr *sa, *usa;
    366  1.15  jdolecek 
    367  1.15  jdolecek 		if ((u_int) omsg.msg_namelen > UCHAR_MAX)
    368  1.15  jdolecek 			return (EINVAL);
    369  1.15  jdolecek 
    370  1.15  jdolecek 		osa = malloc(omsg.msg_namelen, M_TEMP, M_WAITOK);
    371  1.15  jdolecek 
    372  1.15  jdolecek 		if ((error = copyin(omsg.msg_name, osa, omsg.msg_namelen))) {
    373  1.15  jdolecek 			free(osa, M_TEMP);
    374  1.15  jdolecek 			return (error);
    375  1.15  jdolecek 		}
    376  1.15  jdolecek 
    377  1.15  jdolecek 		sa = (struct sockaddr *) osa;
    378  1.15  jdolecek 		sa->sa_family = osa->sa_family;
    379  1.15  jdolecek 		sa->sa_len = omsg.msg_namelen;
    380  1.15  jdolecek 
    381  1.15  jdolecek 		usa = stackgap_alloc(&sg, omsg.msg_namelen);
    382  1.15  jdolecek 		if (!usa) {
    383  1.15  jdolecek 			free(osa, M_TEMP);
    384  1.15  jdolecek 			return (ENOMEM);
    385  1.15  jdolecek 		}
    386  1.15  jdolecek 
    387  1.15  jdolecek 		(void) copyout(sa, usa, omsg.msg_namelen);
    388  1.15  jdolecek 		free(osa, M_TEMP);
    389  1.15  jdolecek 
    390  1.15  jdolecek 		msg.msg_name = usa;
    391  1.15  jdolecek 		msg.msg_namelen = omsg.msg_namelen;
    392  1.15  jdolecek 	} else {
    393  1.15  jdolecek 		msg.msg_name = NULL;
    394  1.15  jdolecek 		msg.msg_namelen = 0;
    395  1.15  jdolecek 	}
    396  1.15  jdolecek 	msg.msg_iovlen	= omsg.msg_iovlen;
    397  1.15  jdolecek 	msg.msg_iov	= iov;
    398  1.15  jdolecek 	msg.msg_flags	= 0;
    399  1.15  jdolecek 
    400  1.15  jdolecek 	if (omsg.msg_accrights && omsg.msg_accrightslen != 0) {
    401  1.15  jdolecek 		struct cmsghdr *cmsg, *ucmsg;
    402  1.15  jdolecek 
    403  1.15  jdolecek 		/* it was this way in 4.4BSD */
    404  1.15  jdolecek 		if ((u_int) omsg.msg_accrightslen > MLEN)
    405  1.15  jdolecek 			return (EINVAL);
    406  1.15  jdolecek 
    407  1.15  jdolecek 		cmsg = malloc(CMSG_SPACE(omsg.msg_accrightslen), M_TEMP,
    408  1.15  jdolecek 		    M_WAITOK);
    409  1.15  jdolecek 		cmsg->cmsg_len		= CMSG_SPACE(omsg.msg_accrightslen);
    410  1.15  jdolecek 		cmsg->cmsg_level	= SOL_SOCKET;
    411  1.15  jdolecek 		cmsg->cmsg_type 	= SCM_RIGHTS;
    412  1.15  jdolecek 
    413  1.15  jdolecek 		error = copyin(omsg.msg_accrights, CMSG_DATA(cmsg),
    414  1.15  jdolecek 		    omsg.msg_accrightslen);
    415  1.15  jdolecek 		if (error) {
    416  1.15  jdolecek 			free(cmsg, M_TEMP);
    417  1.15  jdolecek 			return (error);
    418  1.15  jdolecek 		}
    419  1.15  jdolecek 
    420  1.15  jdolecek 		ucmsg = stackgap_alloc(&sg, CMSG_SPACE(omsg.msg_accrightslen));
    421  1.15  jdolecek 		if (!ucmsg) {
    422  1.15  jdolecek 			free(cmsg, M_TEMP);
    423  1.16  jdolecek 			return (EMSGSIZE);
    424  1.15  jdolecek 		}
    425  1.15  jdolecek 
    426  1.15  jdolecek 		(void) copyout(cmsg, ucmsg, CMSG_SPACE(omsg.msg_accrightslen));
    427  1.15  jdolecek 		free(cmsg, M_TEMP);
    428  1.15  jdolecek 
    429  1.15  jdolecek 		msg.msg_control = ucmsg;
    430  1.15  jdolecek 		msg.msg_controllen = CMSG_SPACE(omsg.msg_accrightslen);
    431  1.15  jdolecek 	} else {
    432  1.15  jdolecek 		msg.msg_control = NULL;
    433  1.15  jdolecek 		msg.msg_controllen = 0;
    434  1.15  jdolecek 	}
    435  1.15  jdolecek 
    436  1.13  jdolecek 	error = sendit(p, SCARG(uap, s), &msg, SCARG(uap, flags), retval);
    437   1.1  christos done:
    438   1.1  christos 	if (iov != aiov)
    439   1.1  christos 		FREE(iov, M_IOV);
    440   1.1  christos 	return (error);
    441  1.15  jdolecek }
    442  1.15  jdolecek 
    443  1.15  jdolecek static int
    444  1.15  jdolecek compat_43_sa_put(from)
    445  1.15  jdolecek 	caddr_t from;
    446  1.15  jdolecek {
    447  1.15  jdolecek 	struct osockaddr *osa = (struct osockaddr *) from;
    448  1.15  jdolecek 	struct sockaddr sa;
    449  1.15  jdolecek 	struct osockaddr *kosa;
    450  1.15  jdolecek 	int error, len;
    451  1.15  jdolecek 
    452  1.15  jdolecek 	/*
    453  1.15  jdolecek 	 * Only read/write the sockaddr family and length, the rest is
    454  1.15  jdolecek 	 * not changed.
    455  1.15  jdolecek 	 */
    456  1.15  jdolecek 	len = sizeof(sa.sa_len) + sizeof(sa.sa_family);
    457  1.15  jdolecek 
    458  1.15  jdolecek 	error = copyin((caddr_t) osa, (caddr_t) &sa, len);
    459  1.15  jdolecek 	if (error)
    460  1.15  jdolecek 		return (error);
    461  1.15  jdolecek 
    462  1.15  jdolecek 	/* Note: we convert from sockaddr sa_family to osockaddr one here */
    463  1.15  jdolecek 	kosa = (struct osockaddr *) &sa;
    464  1.15  jdolecek 	kosa->sa_family = sa.sa_family;
    465  1.15  jdolecek 	error = copyout(kosa, osa, len);
    466  1.15  jdolecek 	if (error)
    467  1.15  jdolecek 		return (error);
    468  1.15  jdolecek 
    469  1.15  jdolecek 	return (0);
    470   1.1  christos }
    471