2008-04-29 00:22:51 +04:00
|
|
|
/* $NetBSD: svr4_filio.c,v 1.21 2008/04/28 20:23:45 martin Exp $ */
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1998-09-04 23:54:37 +04:00
|
|
|
/*-
|
2008-03-22 00:54:58 +03:00
|
|
|
* Copyright (c) 1994, 2008 The NetBSD Foundation, Inc.
|
1994-11-14 09:13:11 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
1998-09-04 23:54:37 +04:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Christos Zoulas.
|
|
|
|
*
|
1994-11-14 09:13:11 +03:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
1998-09-04 23:54:37 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
1994-11-14 09:13:11 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-13 05:07:52 +03:00
|
|
|
#include <sys/cdefs.h>
|
2008-04-29 00:22:51 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: svr4_filio.c,v 1.21 2008/04/28 20:23:45 martin Exp $");
|
2001-11-13 05:07:52 +03:00
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/filedesc.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/termios.h>
|
|
|
|
#include <sys/tty.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
|
|
|
|
#include <sys/syscallargs.h>
|
|
|
|
|
|
|
|
#include <compat/svr4/svr4_types.h>
|
|
|
|
#include <compat/svr4/svr4_util.h>
|
1994-11-18 05:53:37 +03:00
|
|
|
#include <compat/svr4/svr4_signal.h>
|
1999-09-07 22:20:18 +04:00
|
|
|
#include <compat/svr4/svr4_lwp.h>
|
|
|
|
#include <compat/svr4/svr4_ucontext.h>
|
1994-11-14 09:13:11 +03:00
|
|
|
#include <compat/svr4/svr4_syscallargs.h>
|
|
|
|
#include <compat/svr4/svr4_stropts.h>
|
|
|
|
#include <compat/svr4/svr4_ioctl.h>
|
|
|
|
#include <compat/svr4/svr4_filio.h>
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2008-03-22 00:54:58 +03:00
|
|
|
svr4_fil_ioctl(file_t *fp, struct lwp *l, register_t *retval, int fd, u_long cmd, void *data)
|
1994-11-14 09:13:11 +03:00
|
|
|
{
|
2003-01-18 11:44:26 +03:00
|
|
|
struct proc *p = l->l_proc;
|
1994-11-14 09:13:11 +03:00
|
|
|
int error;
|
|
|
|
int num;
|
2008-03-22 00:54:58 +03:00
|
|
|
filedesc_t *fdp = p->p_fd;
|
|
|
|
fdfile_t *ff;
|
|
|
|
int (*ctl)(file_t *, u_long, void *) = fp->f_ops->fo_ioctl;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
*retval = 0;
|
2008-03-22 00:54:58 +03:00
|
|
|
error = 0;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
2008-03-22 00:54:58 +03:00
|
|
|
if ((fp = fd_getfile(fd)) == NULL)
|
2004-10-27 23:29:57 +04:00
|
|
|
return EBADF;
|
2008-03-22 00:54:58 +03:00
|
|
|
ff = fdp->fd_ofiles[fd];
|
1994-11-14 09:13:11 +03:00
|
|
|
switch (cmd) {
|
|
|
|
case SVR4_FIOCLEX:
|
2008-03-22 00:54:58 +03:00
|
|
|
ff->ff_exclose = 1;
|
|
|
|
fdp->fd_exclose = 1;
|
|
|
|
break;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
case SVR4_FIONCLEX:
|
2008-03-22 00:54:58 +03:00
|
|
|
ff->ff_exclose = 0;
|
|
|
|
break;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
case SVR4_FIOGETOWN:
|
|
|
|
case SVR4_FIOSETOWN:
|
|
|
|
case SVR4_FIOASYNC:
|
|
|
|
case SVR4_FIONBIO:
|
|
|
|
case SVR4_FIONREAD:
|
2008-03-22 00:54:58 +03:00
|
|
|
if ((error = copyin(data, &num, sizeof(num))) != 0)
|
|
|
|
break;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case SVR4_FIOGETOWN: cmd = FIOGETOWN; break;
|
|
|
|
case SVR4_FIOSETOWN: cmd = FIOSETOWN; break;
|
|
|
|
case SVR4_FIOASYNC: cmd = FIOASYNC; break;
|
|
|
|
case SVR4_FIONBIO: cmd = FIONBIO; break;
|
|
|
|
case SVR4_FIONREAD: cmd = FIONREAD; break;
|
|
|
|
}
|
|
|
|
|
2008-03-22 00:54:58 +03:00
|
|
|
error = (*ctl)(fp, cmd, &num);
|
|
|
|
if (error == 0)
|
|
|
|
error = copyout(&num, data, sizeof(num));
|
|
|
|
break;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
default:
|
1996-03-31 01:37:52 +03:00
|
|
|
DPRINTF(("Unknown svr4 filio %lx\n", cmd));
|
2008-03-22 00:54:58 +03:00
|
|
|
break;
|
1994-11-14 09:13:11 +03:00
|
|
|
}
|
2008-03-22 00:54:58 +03:00
|
|
|
fd_putfile(fd);
|
|
|
|
return error;
|
1994-11-14 09:13:11 +03:00
|
|
|
}
|