Home | History | Annotate | Line # | Download | only in common
linux_socketcall.c revision 1.17
      1 /*	$NetBSD: linux_socketcall.c,v 1.17 1998/10/03 20:17:43 christos Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Eric Haszlakiewicz.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	This product includes software developed by the NetBSD
     21  *	Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 /*
     40  * Copyright (c) 1995 Frank van der Linden
     41  * All rights reserved.
     42  *
     43  * Redistribution and use in source and binary forms, with or without
     44  * modification, are permitted provided that the following conditions
     45  * are met:
     46  * 1. Redistributions of source code must retain the above copyright
     47  *    notice, this list of conditions and the following disclaimer.
     48  * 2. Redistributions in binary form must reproduce the above copyright
     49  *    notice, this list of conditions and the following disclaimer in the
     50  *    documentation and/or other materials provided with the distribution.
     51  * 3. All advertising materials mentioning features or use of this software
     52  *    must display the following acknowledgement:
     53  *      This product includes software developed for the NetBSD Project
     54  *      by Frank van der Linden
     55  * 4. The name of the author may not be used to endorse or promote products
     56  *    derived from this software without specific prior written permission
     57  *
     58  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     59  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     60  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     61  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     62  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     63  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     64  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     65  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     66  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     67  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     68  */
     69 
     70 #include <sys/param.h>
     71 #include <sys/kernel.h>
     72 #include <sys/systm.h>
     73 #include <sys/buf.h>
     74 #include <sys/malloc.h>
     75 #include <sys/ioctl.h>
     76 #include <sys/tty.h>
     77 #include <sys/file.h>
     78 #include <sys/filedesc.h>
     79 #include <sys/select.h>
     80 #include <sys/socket.h>
     81 #include <sys/socketvar.h>
     82 #include <net/if.h>
     83 #include <netinet/in.h>
     84 #include <netinet/tcp.h>
     85 #include <sys/mount.h>
     86 #include <sys/proc.h>
     87 #include <sys/vnode.h>
     88 #include <sys/device.h>
     89 
     90 #include <sys/syscallargs.h>
     91 
     92 #include <compat/linux/common/linux_types.h>
     93 #include <compat/linux/common/linux_util.h>
     94 #include <compat/linux/common/linux_signal.h>
     95 #include <compat/linux/common/linux_ioctl.h>
     96 #include <compat/linux/common/linux_socket.h>
     97 #include <compat/linux/common/linux_socketcall.h>
     98 #include <compat/linux/common/linux_sockio.h>
     99 
    100 #include <compat/linux/linux_syscallargs.h>
    101 
    102 /* Used on: arm, i386, m68k, mips, ppc, sparc, sparc64 */
    103 /* Not used on: alpha */
    104 
    105 /*
    106  * This file contains the linux_socketcall() multiplexer.  Arguments
    107  * for the various socket calls are on the user stack. A pointer
    108  * to them is the only thing that is passed.  We copyin the arguments
    109  * here so the individual functions can assume they are normal syscalls.
    110  */
    111 
    112 /* The sizes of the arguments.  Used for copyin. */
    113 int linux_socketcall_argsize[] = {
    114 	-1,
    115 	sizeof(struct linux_sys_socket_args),		/* 1 */
    116 	sizeof(struct linux_sys_bind_args),
    117 	sizeof(struct linux_sys_connect_args),
    118 	sizeof(struct linux_sys_listen_args),
    119 	sizeof(struct linux_sys_accept_args),		/* 5 */
    120 	sizeof(struct linux_sys_getsockname_args),
    121 	sizeof(struct linux_sys_getpeername_args),
    122 	sizeof(struct linux_sys_socketpair_args),
    123 	sizeof(struct linux_sys_send_args),
    124 	sizeof(struct linux_sys_recv_args),		/* 10 */
    125 	sizeof(struct linux_sys_sendto_args),
    126 	sizeof(struct linux_sys_recvfrom_args),
    127 	sizeof(struct linux_sys_shutdown_args),
    128 	sizeof(struct linux_sys_setsockopt_args),
    129 	sizeof(struct linux_sys_getsockopt_args),	/* 15 */
    130 	sizeof(struct linux_sys_sendmsg_args),
    131 	sizeof(struct linux_sys_recvmsg_args),		/* 17 */
    132 };
    133 
    134 /*
    135  * Entry point to all Linux socket calls. Just check which call to
    136  * make and take appropriate action.
    137  */
    138 int
    139 linux_sys_socketcall(p, v, retval)
    140 	struct proc *p;
    141 	void *v;
    142 	register_t *retval;
    143 {
    144 	struct linux_sys_socketcall_args /* {
    145 		syscallarg(int) what;
    146 		syscallarg(void *) args;
    147 	} */ *uap = v;
    148 	struct linux_socketcall_dummy_args lda;
    149 	int error;
    150 
    151 	if (SCARG(uap, what) > LINUX_MAX_SOCKETCALL)
    152 		return ENOSYS;
    153 
    154 	if ((error = copyin((caddr_t) SCARG(uap, args), (caddr_t) &lda,
    155 	    linux_socketcall_argsize[SCARG(uap, what)])))
    156 		return error;
    157 
    158 	switch (SCARG(uap, what)) {
    159 	case LINUX_SYS_socket:
    160 		return linux_sys_socket(p, (void *)&lda, retval);
    161 	case LINUX_SYS_bind:
    162 		return sys_bind(p, (void *)&lda, retval);
    163 	case LINUX_SYS_connect:
    164 		return sys_connect(p, (void *)&lda, retval);
    165 	case LINUX_SYS_listen:
    166 		return sys_listen(p, (void *)&lda, retval);
    167 	case LINUX_SYS_accept:
    168 		return compat_43_sys_accept(p, (void *)&lda, retval);
    169 	case LINUX_SYS_getsockname:
    170 		return compat_43_sys_getsockname(p, (void *)&lda, retval);
    171 	case LINUX_SYS_getpeername:
    172 		return compat_43_sys_getpeername(p, (void *)&lda, retval);
    173 	case LINUX_SYS_socketpair:
    174 		return linux_sys_socketpair(p, (void *)&lda, retval);
    175 	case LINUX_SYS_send:
    176 		return compat_43_sys_send(p, (void *)&lda, retval);
    177 	case LINUX_SYS_recv:
    178 		return compat_43_sys_recv(p, (void *)&lda, retval);
    179 	case LINUX_SYS_sendto:
    180 		return linux_sys_sendto(p, (void *)&lda, retval);
    181 	case LINUX_SYS_recvfrom:
    182 		return linux_sys_recvfrom(p, (void *)&lda, retval);
    183 	case LINUX_SYS_shutdown:
    184 		return sys_shutdown(p, (void *)&lda, retval);
    185 	case LINUX_SYS_setsockopt:
    186 		return linux_sys_setsockopt(p, (void *)&lda, retval);
    187 	case LINUX_SYS_getsockopt:
    188 		return linux_sys_getsockopt(p, (void *)&lda, retval);
    189 	case LINUX_SYS_sendmsg:
    190 		return sys_sendmsg(p, (void *)&lda, retval);
    191 	case LINUX_SYS_recvmsg:
    192 		return sys_recvmsg(p, (void *)&lda, retval);
    193 	default:
    194 		return ENOSYS;
    195 	}
    196 }
    197