43f65cdd7d
* devices.h (enum fh_devices): Add FH_PROCSYS. * devices.in (dev_procsys_storage): New device. * devices.cc: Regenerate. * dtable.cc (build_fh_pc): Add code to allocate fhandler_procsys. * fhandler.h (proc_len): Convert to size_t. (procsys): Declare. (procsys_len): Declare. (enum virtual_ftype_t): Move here from fhandler_virtual.h. Add members supported by fhandler_procsys. (fhandler_virtual::exists): Return virtual_ftype_t. Change in all derived classes. (class fhandler_procsys): New class. (fhandler_union): Add fhandler_procnet and fhandler_procsys members. * fhandler_disk_file.cc (__DIR_mounts::check_missing_mount): Use ro_u_proc. (fhandler_base::fstat_by_handle): Don't copy attributes if file is an NT device. (fhandler_base::fstat_by_name): Ditto. * fhandler_netdrive.cc (fhandler_netdrive::exists): Return virtual_ftype_t. * fhandler_proc.cc (proc_tab): Sort alphabetically. Use _VN macro to store length. (proc_len): Change to size_t. (proc_tab_cmp): New static function. (virt_tab_search): New function to search entry in virt_tab_t arrays. Use throughout in /proc and sibling classes instead of loop. (fhandler_proc::exists): Return virtual_ftype_t. * fhandler_process.cc (process_tab): Sort alphabetically. Use _VN macro to store length. (fhandler_process::exists): Return virtual_ftype_t. (fhandler_process::open): Simplify code. * fhandler_procnet.cc (procnet_tab): Sort alphabetically. Use _VN macro to store length. (fhandler_procnet::exists): Return virtual_ftype_t. (fhandler_procnet::open): Simplify. * fhandler_procsys.cc: New file. * fhandler_registry.cc (fhandler_registry::exists): Return virtual_ftype_t. * fhandler_virtual.cc (fhandler_virtual::exists): Ditto. * fhandler_virtual.h (enum virtual_ftype_t): Move to fhandler.h. (virt_tab_t): Add name_len member. (_VN): New macro. (virt_tab_search): Declare. * mount.cc (mount_info::conv_to_win32_path): Fix comment. Backslashify isprocsys_dev paths. * ntdll.h (STATUS_OBJECT_TYPE_MISMATCH): Define (STATUS_INSTANCE_NOT_AVAILABLE): Define. (STATUS_PIPE_NOT_AVAILABLE): Define. (STATUS_INVALID_PIPE_STATE): Define. (STATUS_PIPE_BUSY): Define. (SYMBOLIC_LINK_QUERY): Define. (NtOpenSymbolicLinkObject): Declare. (NtQuerySymbolicLinkObject): Declare. * path.cc (path_conv::check): Accommodate fact that exists method returns virtual_ftype_t now. Add cases for new virtual_ftype_t types. (cygwin_conv_path): Add GLOBALROOT prefix to native device paths. Make sure to strip \\?\ prefix only for actual filesystem-based paths, not for all paths. * path.h (isproc_dev): Add FH_PROCSYS. (isprocsys_dev): Define.
279 lines
5.2 KiB
C++
279 lines
5.2 KiB
C++
/* fhandler_virtual.cc: base fhandler class for virtual filesystems
|
|
|
|
Copyright 2002, 2003, 2004, 2005, 2007, 2008, 2009 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);
|
|
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 ret = fhandler_base::dup (child);
|
|
|
|
if (!ret)
|
|
{
|
|
fhandler_virtual *fhproc_child = (fhandler_virtual *) child;
|
|
fhproc_child->filebuf = (char *) cmalloc_abort (HEAP_BUF, filesize);
|
|
fhproc_child->filesize = filesize;
|
|
fhproc_child->position = position;
|
|
memcpy (fhproc_child->filebuf, filebuf, filesize);
|
|
fhproc_child->set_flags (get_flags ());
|
|
}
|
|
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;
|
|
}
|