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