2000-02-17 11:38:33 -08:00
|
|
|
/* ioctl.cc: ioctl routines.
|
|
|
|
|
2002-01-13 12:03:03 -08:00
|
|
|
Copyright 1996, 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
2000-02-17 11: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-02 09:28:18 -07:00
|
|
|
#include "winsup.h"
|
2000-02-17 11:38:33 -08:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <errno.h>
|
2000-08-21 20:58:47 -07:00
|
|
|
#include "cygerrno.h"
|
2001-07-26 12:22:24 -07:00
|
|
|
#include "security.h"
|
2000-08-21 22:10:20 -07:00
|
|
|
#include "fhandler.h"
|
2001-09-30 21:10:07 -07:00
|
|
|
#include "path.h"
|
2000-08-21 22:10:20 -07:00
|
|
|
#include "dtable.h"
|
2001-04-18 14:10:15 -07:00
|
|
|
#include "cygheap.h"
|
2002-08-27 02:24:50 -07:00
|
|
|
#include "sigproc.h"
|
2000-09-07 09:23:51 -07:00
|
|
|
#include <sys/termios.h>
|
2000-02-17 11:38:33 -08:00
|
|
|
|
2000-08-21 22:10:20 -07:00
|
|
|
extern "C" int
|
2002-01-06 01:28:13 -08:00
|
|
|
ioctl (int fd, int cmd, ...)
|
2000-02-17 11:38:33 -08:00
|
|
|
{
|
2002-08-27 02:24:50 -07:00
|
|
|
sigframe thisframe (mainthread);
|
|
|
|
|
2001-10-15 16:39:33 -07:00
|
|
|
cygheap_fdget cfd (fd);
|
|
|
|
if (cfd < 0)
|
|
|
|
return -1;
|
2000-02-17 11:38:33 -08:00
|
|
|
|
2002-01-06 01: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-29 21:35:18 -07:00
|
|
|
debug_printf ("fd %d, cmd %x", fd, cmd);
|
2002-11-13 18:15:23 -08:00
|
|
|
int res;
|
2001-10-15 16:39:33 -07:00
|
|
|
if (cfd->is_tty () && cfd->get_device () != FH_PTYM)
|
2000-02-17 11:38:33 -08:00
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case TCGETA:
|
2002-11-13 18:15:23 -08:00
|
|
|
res = tcgetattr (fd, (struct termios *) argp);
|
|
|
|
goto out;
|
2000-02-17 11:38:33 -08:00
|
|
|
case TCSETA:
|
2002-11-13 18:15:23 -08:00
|
|
|
res = tcsetattr (fd, TCSANOW, (struct termios *) argp);
|
|
|
|
goto out;
|
2000-02-17 11:38:33 -08:00
|
|
|
case TCSETAW:
|
2002-11-13 18:15:23 -08:00
|
|
|
res = tcsetattr (fd, TCSADRAIN, (struct termios *) argp);
|
|
|
|
goto out;
|
2000-02-17 11:38:33 -08:00
|
|
|
case TCSETAF:
|
2002-11-13 18:15:23 -08:00
|
|
|
res = tcsetattr (fd, TCSAFLUSH, (struct termios *) argp);
|
|
|
|
goto out;
|
2000-02-17 11:38:33 -08:00
|
|
|
}
|
|
|
|
|
2002-11-13 18:15:23 -08:00
|
|
|
res = cfd->ioctl (cmd, argp);
|
|
|
|
|
|
|
|
out:
|
2002-11-03 20:09:14 -08:00
|
|
|
debug_printf ("returning %d", res);
|
|
|
|
return res;
|
2000-02-17 11:38:33 -08:00
|
|
|
}
|