2000-02-18 03:38:33 +08:00
|
|
|
/* ioctl.cc: ioctl routines.
|
|
|
|
|
2002-01-14 04:03:03 +08:00
|
|
|
Copyright 1996, 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
Written by Doug Evans of Cygnus Support
|
|
|
|
dje@cygnus.com
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-08-03 00:28:18 +08:00
|
|
|
#include "winsup.h"
|
2000-02-18 03:38:33 +08:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <errno.h>
|
2000-08-22 11:58:47 +08:00
|
|
|
#include "cygerrno.h"
|
2001-07-27 03:22:24 +08:00
|
|
|
#include "security.h"
|
2000-08-22 13:10:20 +08:00
|
|
|
#include "fhandler.h"
|
2001-10-01 12:10:07 +08:00
|
|
|
#include "path.h"
|
2000-08-22 13:10:20 +08:00
|
|
|
#include "dtable.h"
|
2001-04-19 05:10:15 +08:00
|
|
|
#include "cygheap.h"
|
2002-08-27 17:24:50 +08:00
|
|
|
#include "sigproc.h"
|
2000-09-08 00:23:51 +08:00
|
|
|
#include <sys/termios.h>
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2000-08-22 13:10:20 +08:00
|
|
|
extern "C" int
|
2002-01-06 17:28:13 +08:00
|
|
|
ioctl (int fd, int cmd, ...)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2002-08-27 17:24:50 +08:00
|
|
|
sigframe thisframe (mainthread);
|
|
|
|
|
2001-10-16 07:39:33 +08:00
|
|
|
cygheap_fdget cfd (fd);
|
|
|
|
if (cfd < 0)
|
|
|
|
return -1;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2002-01-06 17:28:13 +08:00
|
|
|
/* check for optional mode argument */
|
|
|
|
va_list ap;
|
|
|
|
va_start (ap, cmd);
|
|
|
|
char *argp = va_arg (ap, char *);
|
|
|
|
va_end (ap);
|
|
|
|
|
2002-09-30 12:35:18 +08:00
|
|
|
debug_printf ("fd %d, cmd %x", fd, cmd);
|
2002-11-14 10:15:23 +08:00
|
|
|
int res;
|
2001-10-16 07:39:33 +08:00
|
|
|
if (cfd->is_tty () && cfd->get_device () != FH_PTYM)
|
2000-02-18 03:38:33 +08:00
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case TCGETA:
|
2002-11-14 10:15:23 +08:00
|
|
|
res = tcgetattr (fd, (struct termios *) argp);
|
|
|
|
goto out;
|
2000-02-18 03:38:33 +08:00
|
|
|
case TCSETA:
|
2002-11-14 10:15:23 +08:00
|
|
|
res = tcsetattr (fd, TCSANOW, (struct termios *) argp);
|
|
|
|
goto out;
|
2000-02-18 03:38:33 +08:00
|
|
|
case TCSETAW:
|
2002-11-14 10:15:23 +08:00
|
|
|
res = tcsetattr (fd, TCSADRAIN, (struct termios *) argp);
|
|
|
|
goto out;
|
2000-02-18 03:38:33 +08:00
|
|
|
case TCSETAF:
|
2002-11-14 10:15:23 +08:00
|
|
|
res = tcsetattr (fd, TCSAFLUSH, (struct termios *) argp);
|
|
|
|
goto out;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2002-11-14 10:15:23 +08:00
|
|
|
res = cfd->ioctl (cmd, argp);
|
|
|
|
|
|
|
|
out:
|
2002-11-04 12:09:14 +08:00
|
|
|
debug_printf ("returning %d", res);
|
|
|
|
return res;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|