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