47063f00e4
operators to simplify testing for directory and attributes, throughout. * path.h (path_conv::exists): New method. (path_conv::has_attribute): Ditto. (path_conv::isdir): Ditto. (path_conv::DWORD &): New operator. (path_conv::int &): Ditto. * dir.cc (rmdir): Eliminate a goto. * dtable.cc (dtable::build_fhandler): Accept opt and suffix info for path_conv.check. Return fh == NULL on path_conv error. Pass unit to set_name as appropriate. (dtable::reset_unix_path_name): New method. * dtable.h (dtable): Declare new method. Reflect arg changes to build_fhandler. * fhandler.cc (fhandler_disk_dummy_name): Eliminate. (fhandler_base::set_name): Expect paths to be NULL. Build unix_path_name from win32_path_name when it is a device. (fhandler_base::reset_unix_path_name): New method. (fhandler_base::raw_read): Report EISDIR when ERROR_INVALID_FUNCTION or ERROR_INVALID_PARAMETER and reading a directory. (fhandler_disk_file::fstat): Don't call stat_dev since we should now never be calling fhandler_disk_file methods with devices. (fhandler_base::fhandler_base): Clear {unix,win32}_path_name. (fhandler_base::~fhandler_base): Always free {unix,win32}_path_name. (fhandler_disk_file::fhandler_disk_file): Remove set_no_free_names kludge. (fhandler_disk_file::open): Ditto. * fhandler.h (fhandler_base::no_free_names): Eliminate. (fhandler_base::set_no_free_names): Ditto. * fhandler_tty.cc (fhandler_tty_slave::fhandler_tty_slave): Don't set unix_path_name here. * path.cc (fchdir): Lock fd table throughout. Use new dtable::reset_unix_path_name method to reset path. * syscalls.cc (stat_worker): Reorganize to always call fstat method. Pass path_conv method to fhandler_*::open. (chroot): Elminate a goto.
51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
/* ioctl.cc: ioctl routines.
|
|
|
|
Copyright 1996, 1998, 1999, 2000, 2001 Red Hat, Inc.
|
|
|
|
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. */
|
|
|
|
#include "winsup.h"
|
|
#include <sys/ioctl.h>
|
|
#include <errno.h>
|
|
#include "cygerrno.h"
|
|
#include "security.h"
|
|
#include "fhandler.h"
|
|
#include "path.h"
|
|
#include "dtable.h"
|
|
#include "cygheap.h"
|
|
#include <sys/termios.h>
|
|
|
|
extern "C" int
|
|
ioctl (int fd, int cmd, void *buf)
|
|
{
|
|
if (cygheap->fdtab.not_open (fd))
|
|
{
|
|
set_errno (EBADF);
|
|
return -1;
|
|
}
|
|
|
|
debug_printf ("fd %d, cmd %x\n", fd, cmd);
|
|
fhandler_base *fh = cygheap->fdtab[fd];
|
|
if (fh->is_tty () && fh->get_device () != FH_PTYM)
|
|
switch (cmd)
|
|
{
|
|
case TCGETA:
|
|
return tcgetattr (fd, (struct termios *) buf);
|
|
case TCSETA:
|
|
return tcsetattr (fd, TCSANOW, (struct termios *) buf);
|
|
case TCSETAW:
|
|
return tcsetattr (fd, TCSADRAIN, (struct termios *) buf);
|
|
case TCSETAF:
|
|
return tcsetattr (fd, TCSAFLUSH, (struct termios *) buf);
|
|
}
|
|
|
|
return fh->ioctl (cmd, buf);
|
|
}
|