23771fa1f7
logs easier. Throughout, change /dev/tty* to /dev/pty*. Throughout, add flags argument to fhandler_*::dup methods. * devices.in: Rename (temporarily?) /dev/ttyN to /dev/ptyN. Add /dev/ptymN devices for pty masters. * devices.cc: Regenerate. * devices.h (MAX_CONSOLES): Set to max number supported by devices.in. (fh_devices::FH_PTMX): Rename from FH_PTYM. (device::operator int): Return by reference. * dtable.cc (fh_alloc): Take pc as an argument rather than just the device. This makes debugging easier since more information is available. Actually implement handling for already-allocated pty master devices. Make different decisions when generating fhandler for not-opened devices. Add kludge to deal with opening /dev/tty. (cnew_no_ctor): New macro. (build_fh_pc): Make debugging output more verbose. Use new clone() fhandler interface to duplicate archetypes. Reset last term opened. (dtable::dup_worker): Use Use new clone() fhandler interface to duplicate archetypes. Pass flags to child dup handler. (dtable::dup3): Set O_NOCTTY flag if newfd is not stdin/stdout/stderr. * fhandler.cc (fhandler_base::reset): Rename from operator =() and reduce functionality and sense of copy direction. (fhandler_base::open_with_arch): Use published interface to query io_handle(). Use new copyto() fhandler method to copy from/to found archetype. * fhandler.h: Throughout, delete size(), add copyout, clone, and fhandler_* (void *) methods. (fhandler_base::reset): Rename from operator =(). (fhandler_termios::is_dev_tty): Delete. (fhandler_termios): change "protected" region to "private". (fhandler_termios::is_dev_tty): Delete. (fhandler_termios): Rearrange protected/public. (fhandler_termios::fhandler_termios): Remember last fhandler_termios "opened". (fhandler_termios::~fhandler_termios): Forget last fhandler_termios opened. (ioctl): Rename from ioctl_termios. Take a void * argument. Reflect argument change in pinfo::set_ctty. (fhandler_console::dup): Declare new function. Set ctty here if appropriate. (fhandler_pty_master::from_master): Privatize. (fhandler_pty_master::to_master): Ditto. (fhandler_pty_master::dwProcessId): Ditto. (fhandler_pty_master::fhandler_pty_master): Add an `int' argument. (fhandler_pty_master::open_setup): Declare new function. (fhandler_pty_master::~fhandler_pty_master): Declare new method. (fhandler_nodevice): Remove commented out function declaration. * fhandler_console.cc: Use get_ttyp() instead of tc() throughout. (fhandler_console::dup): Define new function to set controlling ctty on dup, as appropriate. (fhandler_console::ioctl): Reflect ioctl_termios name change. (fhandler_console::setup): Rename from get_tty_stuff. (fhandler_console::open_setup): Reflect argument change in pinfo::set_ctty. (fhandler_console::fhandler_console): Set _tc here. * fhandler_termios.cc (handler_termios::ioctl): Rename. Take a void * arg like other ioctl functions. * fhandler_tty.cc (fhandler_pty_slave::dup): Call myself->set_ctty to potentially reset the controlling terminal. (fhandler_pty_slave::ioctl): Reflect name/arg change for ioctl_termios. (fhandler_pty_slave::fhandler_pty_slave): Take a "unit" argument. Call setup() here so that we will know the unit number of this fhandler as soon as possible. Set the unit as appropriate. (handler_pty_master::open): Move most stuff to constructor and open_setup. (handler_pty_slave::open_setup): Reflect argument change in pinfo::set_ctty. (handler_pty_master::open_setup): Define new function. (fhandler_pty_master::cleanup): Clear handles as a flag that the destructor does not have to do "close" operations. (fhandler_pty_master::close): Ditto. (fhandler_pty_master::~fhandler_pty_master): Define new method. (fhandler_pty_master::ioctl): Reflect name/arg change for ioctl_termios. (fhandler_pty_master::setup): Allocate tty here. Rely on handles being returned from allocated test rather than opening them here. Avoid setting _need_nl here since it is already zeroed in the constructor. Set up device information with DEV_TTYM_MAJOR. * path.h (path_conv &operator =): Take a const argument. (path_conv::dup): Ditto. (pathconv_arg::PC_OPEN): New enum. (pathconv_arg::PC_CTTY): Ditto. (path_types::PATH_CTTY): Ditto. (path_types::PATH_OPEN): Ditto. (path_conv::isopen): New method. (path_conv::isctty_capable): Ditto. * path.cc (path_conv::check): Set PATH_OPEN and PATH_CTTY as appropriate. * pipe.cc (fhandler_pipe::open): Use copyto to copy pipe handle. * syscall.cc (open): Reinstate fd > 2 check to disallow resetting ctty on non-std* handles. * tty.cc (tty_list::allocate): Pass out handles for allocated tty. use `not_allocated' to find unallocated ttys. Avoid keeping the lock since the allocation of the tty should be sufficient to prevent multiple access. (tty::not_allocated): Clarify comment. Rename. Return handles when an unused tty is found. Simply test for existing tty. (tty::exists): Rewrite to use `not_allocated'. * tty.h (NTTYS): Reset down to actual number supported by devices.in. (tty::not_allocated): Declare new function. (tty_list::allocate): Pass out read/write tty handles. Zero them when not found. * fhandler_proc.cc: Reflect name change from FH_PTYM -> FH_PTMX. * pinfo.h (pinfo::set_ctty): Reduce/reorder arguments passed in. * pinfo.cc (pinfo::set_ctty): Ditto. Just use tc() built into the passed-in fhandler_termios pointer. Return true if ctty is assigned. * syscalls.cc (open): Call build_fh_pc with PC_OPEN flag. Set PC_CTTY if appropriate. (stat_worker): Remove is_dev_tty () stuff.
277 lines
5.2 KiB
C++
277 lines
5.2 KiB
C++
/* fhandler_virtual.cc: base fhandler class for virtual filesystems
|
|
|
|
Copyright 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011 Red Hat, Inc.
|
|
|
|
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/acl.h>
|
|
#include <sys/statvfs.h>
|
|
#include "cygerrno.h"
|
|
#include "path.h"
|
|
#include "fhandler.h"
|
|
#include "dtable.h"
|
|
#include "cygheap.h"
|
|
|
|
#include <dirent.h>
|
|
|
|
fhandler_virtual::fhandler_virtual ():
|
|
fhandler_base (), filebuf (NULL), fileid (-1)
|
|
{
|
|
}
|
|
|
|
fhandler_virtual::~fhandler_virtual ()
|
|
{
|
|
if (filebuf)
|
|
{
|
|
cfree (filebuf);
|
|
filebuf = NULL;
|
|
}
|
|
}
|
|
|
|
void
|
|
fhandler_virtual::fixup_after_exec ()
|
|
{
|
|
}
|
|
|
|
DIR *
|
|
fhandler_virtual::opendir (int fd)
|
|
{
|
|
DIR *dir;
|
|
DIR *res = NULL;
|
|
size_t len;
|
|
|
|
if (exists () <= 0)
|
|
set_errno (ENOTDIR);
|
|
else if ((len = strlen (get_name ())) > PATH_MAX - 3)
|
|
set_errno (ENAMETOOLONG);
|
|
else if ((dir = (DIR *) malloc (sizeof (DIR))) == NULL)
|
|
set_errno (ENOMEM);
|
|
else if ((dir->__d_dirname = (char *) malloc (len + 3)) == NULL)
|
|
{
|
|
free (dir);
|
|
set_errno (ENOMEM);
|
|
}
|
|
else if ((dir->__d_dirent =
|
|
(struct dirent *) malloc (sizeof (struct dirent))) == NULL)
|
|
{
|
|
free (dir->__d_dirname);
|
|
free (dir);
|
|
set_errno (ENOMEM);
|
|
}
|
|
else
|
|
{
|
|
strcpy (dir->__d_dirname, get_name ());
|
|
dir->__d_dirent->__d_version = __DIRENT_VERSION;
|
|
dir->__d_cookie = __DIRENT_COOKIE;
|
|
dir->__handle = INVALID_HANDLE_VALUE;
|
|
dir->__d_position = 0;
|
|
dir->__flags = 0;
|
|
|
|
if (fd >= 0)
|
|
{
|
|
dir->__d_fd = fd;
|
|
res = dir;
|
|
dir->__fh = this;
|
|
res = dir;
|
|
}
|
|
else
|
|
{
|
|
cygheap_fdnew cfd;
|
|
if (cfd >= 0)
|
|
{
|
|
cfd = this;
|
|
cfd->nohandle (true);
|
|
dir->__d_fd = cfd;
|
|
dir->__fh = this;
|
|
res = dir;
|
|
}
|
|
}
|
|
close_on_exec (true);
|
|
}
|
|
|
|
syscall_printf ("%p = opendir (%s)", res, get_name ());
|
|
return res;
|
|
}
|
|
|
|
long
|
|
fhandler_virtual::telldir (DIR * dir)
|
|
{
|
|
return dir->__d_position;
|
|
}
|
|
|
|
void
|
|
fhandler_virtual::seekdir (DIR * dir, long loc)
|
|
{
|
|
dir->__flags |= dirent_saw_dot | dirent_saw_dot_dot;
|
|
dir->__d_position = loc;
|
|
}
|
|
|
|
void
|
|
fhandler_virtual::rewinddir (DIR * dir)
|
|
{
|
|
dir->__d_position = 0;
|
|
dir->__flags |= dirent_saw_dot | dirent_saw_dot_dot;
|
|
}
|
|
|
|
int
|
|
fhandler_virtual::closedir (DIR * dir)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
_off64_t
|
|
fhandler_virtual::lseek (_off64_t offset, int whence)
|
|
{
|
|
/*
|
|
* On Linux, when you lseek within a /proc file,
|
|
* the contents of the file are updated.
|
|
*/
|
|
if (!fill_filebuf ())
|
|
return (_off64_t) -1;
|
|
switch (whence)
|
|
{
|
|
case SEEK_SET:
|
|
position = offset;
|
|
break;
|
|
case SEEK_CUR:
|
|
position += offset;
|
|
break;
|
|
case SEEK_END:
|
|
position = filesize + offset;
|
|
break;
|
|
default:
|
|
set_errno (EINVAL);
|
|
return (_off64_t) -1;
|
|
}
|
|
return position;
|
|
}
|
|
|
|
int
|
|
fhandler_virtual::dup (fhandler_base * child, int flags)
|
|
{
|
|
int ret = fhandler_base::dup (child, flags);
|
|
|
|
if (!ret)
|
|
{
|
|
fhandler_virtual *fhproc_child = (fhandler_virtual *) child;
|
|
fhproc_child->filebuf = (char *) cmalloc_abort (HEAP_BUF, filesize);
|
|
memcpy (fhproc_child->filebuf, filebuf, filesize);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
int
|
|
fhandler_virtual::close ()
|
|
{
|
|
if (!hExeced)
|
|
{
|
|
if (filebuf)
|
|
{
|
|
cfree (filebuf);
|
|
filebuf = NULL;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void __stdcall
|
|
fhandler_virtual::read (void *ptr, size_t& len)
|
|
{
|
|
if (len == 0)
|
|
return;
|
|
if (openflags & O_DIROPEN)
|
|
{
|
|
set_errno (EISDIR);
|
|
len = (size_t) -1;
|
|
return;
|
|
}
|
|
if (!filebuf)
|
|
{
|
|
len = (size_t) 0;
|
|
return;
|
|
}
|
|
if ((ssize_t) len > filesize - position)
|
|
len = (size_t) (filesize - position);
|
|
if ((ssize_t) len < 0)
|
|
len = 0;
|
|
else
|
|
memcpy (ptr, filebuf + position, len);
|
|
position += len;
|
|
}
|
|
|
|
ssize_t __stdcall
|
|
fhandler_virtual::write (const void *ptr, size_t len)
|
|
{
|
|
set_errno (EACCES);
|
|
return -1;
|
|
}
|
|
|
|
/* low-level open for all proc files */
|
|
int
|
|
fhandler_virtual::open (int flags, mode_t mode)
|
|
{
|
|
rbinary (true);
|
|
wbinary (true);
|
|
|
|
set_flags ((flags & ~O_TEXT) | O_BINARY);
|
|
|
|
return 1;
|
|
}
|
|
|
|
virtual_ftype_t
|
|
fhandler_virtual::exists ()
|
|
{
|
|
return virt_none;
|
|
}
|
|
|
|
bool
|
|
fhandler_virtual::fill_filebuf ()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
int
|
|
fhandler_virtual::fchmod (mode_t mode)
|
|
{
|
|
/* Same as on Linux. */
|
|
set_errno (EPERM);
|
|
return -1;
|
|
}
|
|
|
|
int
|
|
fhandler_virtual::fchown (__uid32_t uid, __gid32_t gid)
|
|
{
|
|
/* Same as on Linux. */
|
|
set_errno (EPERM);
|
|
return -1;
|
|
}
|
|
|
|
int
|
|
fhandler_virtual::facl (int cmd, int nentries, __aclent32_t *aclbufp)
|
|
{
|
|
int res = fhandler_base::facl (cmd, nentries, aclbufp);
|
|
if (res >= 0 && cmd == GETACL)
|
|
{
|
|
aclbufp[0].a_perm = (S_IRUSR | (pc.isdir () ? S_IXUSR : 0)) >> 6;
|
|
aclbufp[1].a_perm = (S_IRGRP | (pc.isdir () ? S_IXGRP : 0)) >> 3;
|
|
aclbufp[2].a_perm = S_IROTH | (pc.isdir () ? S_IXOTH : 0);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
int __stdcall
|
|
fhandler_virtual::fstatvfs (struct statvfs *sfs)
|
|
{
|
|
/* Virtual file system. Just return an empty buffer with a few values
|
|
set to something useful. Just as on Linux. */
|
|
memset (sfs, 0, sizeof (*sfs));
|
|
sfs->f_bsize = sfs->f_frsize = 4096;
|
|
sfs->f_namemax = NAME_MAX;
|
|
return 0;
|
|
}
|