2002-05-02 06:26:05 +02:00
|
|
|
/* fhandler_virtual.cc: base fhandler class for virtual filesystems
|
|
|
|
|
|
|
|
Copyright 2002 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 <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/cygwin.h>
|
|
|
|
#include "cygerrno.h"
|
|
|
|
#include "security.h"
|
|
|
|
#include "fhandler.h"
|
|
|
|
#include "path.h"
|
|
|
|
#include "dtable.h"
|
|
|
|
#include "shared_info.h"
|
2002-05-04 05:24:35 +02:00
|
|
|
#include "cygheap.h"
|
2002-05-02 06:26:05 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <dirent.h>
|
|
|
|
|
|
|
|
fhandler_virtual::fhandler_virtual (DWORD devtype):
|
2002-05-12 03:37:48 +02:00
|
|
|
fhandler_base (devtype), filebuf (NULL), bufalloc ((size_t) -1),
|
|
|
|
fileid (-1)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fhandler_virtual::~fhandler_virtual ()
|
|
|
|
{
|
|
|
|
if (filebuf)
|
2002-10-30 22:05:18 +01:00
|
|
|
free (filebuf);
|
2002-05-02 06:26:05 +02:00
|
|
|
filebuf = NULL;
|
|
|
|
}
|
|
|
|
|
2002-10-30 22:05:18 +01:00
|
|
|
void
|
|
|
|
fhandler_virtual::fixup_after_exec (HANDLE)
|
|
|
|
{
|
|
|
|
if (filebuf)
|
|
|
|
filebuf = NULL;
|
|
|
|
}
|
|
|
|
|
2002-05-02 06:26:05 +02:00
|
|
|
DIR *
|
|
|
|
fhandler_virtual::opendir (path_conv& pc)
|
|
|
|
{
|
|
|
|
DIR *dir;
|
|
|
|
DIR *res = NULL;
|
|
|
|
size_t len;
|
|
|
|
|
2002-05-23 00:09:58 +02:00
|
|
|
if (exists () <= 0)
|
2002-05-02 06:26:05 +02:00
|
|
|
set_errno (ENOTDIR);
|
2002-05-03 04:43:45 +02:00
|
|
|
else if ((len = strlen (get_name ())) > MAX_PATH - 3)
|
2002-05-02 06:26:05 +02:00
|
|
|
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
|
|
|
|
{
|
2002-05-03 04:43:45 +02:00
|
|
|
strcpy (dir->__d_dirname, get_name ());
|
2002-05-02 06:26:05 +02:00
|
|
|
dir->__d_dirent->d_version = __DIRENT_VERSION;
|
|
|
|
cygheap_fdnew fd;
|
2003-02-20 15:14:37 +01:00
|
|
|
if (fd >= 0)
|
2003-03-09 21:31:07 +01:00
|
|
|
{
|
2003-02-20 15:14:37 +01:00
|
|
|
fd = this;
|
|
|
|
fd->set_nohandle (true);
|
|
|
|
dir->__d_dirent->d_fd = fd;
|
2003-09-08 06:04:19 +02:00
|
|
|
dir->__fh = this;
|
2003-02-20 15:14:37 +01:00
|
|
|
dir->__d_cookie = __DIRENT_COOKIE;
|
2003-09-08 06:04:19 +02:00
|
|
|
dir->__handle = INVALID_HANDLE_VALUE;
|
2003-02-20 15:14:37 +01:00
|
|
|
dir->__d_position = 0;
|
|
|
|
dir->__d_dirhash = get_namehash ();
|
|
|
|
|
|
|
|
res = dir;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
syscall_printf ("%p = opendir (%s)", res, get_name ());
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2003-04-01 18:11:41 +02:00
|
|
|
_off64_t fhandler_virtual::telldir (DIR * dir)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
return dir->__d_position;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-04-01 18:11:41 +02:00
|
|
|
fhandler_virtual::seekdir (DIR * dir, _off64_t loc)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
dir->__d_position = loc;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fhandler_virtual::rewinddir (DIR * dir)
|
|
|
|
{
|
|
|
|
dir->__d_position = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_virtual::closedir (DIR * dir)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-04-01 18:11:41 +02:00
|
|
|
_off64_t
|
|
|
|
fhandler_virtual::lseek (_off64_t offset, int whence)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
2002-05-12 03:37:48 +02:00
|
|
|
/*
|
|
|
|
* On Linux, when you lseek within a /proc file,
|
|
|
|
* the contents of the file are updated.
|
|
|
|
*/
|
2002-07-02 03:36:15 +02:00
|
|
|
if (!fill_filebuf ())
|
2003-04-01 18:11:41 +02:00
|
|
|
return (_off64_t) -1;
|
2002-05-02 06:26:05 +02:00
|
|
|
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);
|
2003-04-01 18:11:41 +02:00
|
|
|
return (_off64_t) -1;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
return position;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_virtual::dup (fhandler_base * child)
|
|
|
|
{
|
2002-05-04 05:24:35 +02:00
|
|
|
int ret = fhandler_base::dup (child);
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
fhandler_virtual *fhproc_child = (fhandler_virtual *) child;
|
2002-10-30 22:05:18 +01:00
|
|
|
fhproc_child->filebuf = (char *) malloc (filesize);
|
2002-05-04 05:24:35 +02:00
|
|
|
fhproc_child->bufalloc = fhproc_child->filesize = filesize;
|
|
|
|
fhproc_child->position = position;
|
|
|
|
memcpy (fhproc_child->filebuf, filebuf, filesize);
|
|
|
|
fhproc_child->set_flags (get_flags ());
|
|
|
|
}
|
|
|
|
return ret;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_virtual::close ()
|
|
|
|
{
|
|
|
|
if (filebuf)
|
2002-10-30 22:05:18 +01:00
|
|
|
free (filebuf);
|
2002-05-02 06:26:05 +02:00
|
|
|
filebuf = NULL;
|
2002-05-12 03:59:53 +02:00
|
|
|
bufalloc = (size_t) -1;
|
2002-05-02 06:26:05 +02:00
|
|
|
cygwin_shared->delqueue.process_queue ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-12-14 05:01:32 +01:00
|
|
|
void
|
|
|
|
fhandler_virtual::read (void *ptr, size_t& len)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
if (len == 0)
|
2002-12-14 05:01:32 +01:00
|
|
|
return;
|
2002-05-02 06:26:05 +02:00
|
|
|
if (openflags & O_DIROPEN)
|
|
|
|
{
|
|
|
|
set_errno (EISDIR);
|
2003-09-07 04:22:58 +02:00
|
|
|
len = (size_t) -1;
|
2002-12-14 05:01:32 +01:00
|
|
|
return;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
if (!filebuf)
|
2002-12-14 05:01:32 +01:00
|
|
|
{
|
2003-09-07 04:22:58 +02:00
|
|
|
len = (size_t) 0;
|
2002-12-14 05:01:32 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((ssize_t) len > filesize - position)
|
2003-09-07 04:22:58 +02:00
|
|
|
len = (size_t) (filesize - position);
|
2002-12-14 05:01:32 +01:00
|
|
|
if ((ssize_t) len < 0)
|
2003-09-07 04:22:58 +02:00
|
|
|
len = 0;
|
2002-05-02 06:26:05 +02:00
|
|
|
else
|
2002-12-14 05:01:32 +01:00
|
|
|
memcpy (ptr, filebuf + position, len);
|
|
|
|
position += len;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_virtual::write (const void *ptr, size_t len)
|
|
|
|
{
|
2002-05-04 05:24:35 +02:00
|
|
|
set_errno (EACCES);
|
2002-05-02 06:26:05 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* low-level open for all proc files */
|
|
|
|
int
|
|
|
|
fhandler_virtual::open (path_conv *, int flags, mode_t mode)
|
|
|
|
{
|
|
|
|
set_r_binary (1);
|
|
|
|
set_w_binary (1);
|
|
|
|
|
|
|
|
set_has_acls (false);
|
|
|
|
set_isremote (false);
|
|
|
|
|
|
|
|
/* what to do about symlinks? */
|
|
|
|
set_symlink_p (false);
|
|
|
|
set_execable_p (not_executable);
|
|
|
|
set_socket_p (false);
|
|
|
|
|
2002-07-01 21:03:26 +02:00
|
|
|
set_flags ((flags & ~O_TEXT) | O_BINARY);
|
2002-05-02 06:26:05 +02:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-05-23 00:09:58 +02:00
|
|
|
fhandler_virtual::exists ()
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2002-05-12 03:37:48 +02:00
|
|
|
|
2002-07-02 03:36:15 +02:00
|
|
|
bool
|
2002-05-12 03:37:48 +02:00
|
|
|
fhandler_virtual::fill_filebuf ()
|
|
|
|
{
|
2002-07-02 03:36:15 +02:00
|
|
|
return true;
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|