2005-05-09 04:39:34 +02:00
|
|
|
/* fhandler_netdrive.cc: fhandler for // and //MACHINE handling
|
2005-05-06 06:06:17 +02:00
|
|
|
|
|
|
|
Copyright 2005 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. */
|
|
|
|
|
2005-05-09 04:39:34 +02:00
|
|
|
#include "winsup.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/cygwin.h>
|
|
|
|
#include "cygerrno.h"
|
|
|
|
#include "security.h"
|
|
|
|
#include "path.h"
|
|
|
|
#include "fhandler.h"
|
|
|
|
#include "dtable.h"
|
|
|
|
#include "cygheap.h"
|
2005-05-17 22:34:15 +02:00
|
|
|
#include "sigproc.h"
|
|
|
|
#include "cygthread.h"
|
2005-05-09 04:39:34 +02:00
|
|
|
#include <assert.h>
|
2005-05-13 22:20:02 +02:00
|
|
|
#include <winnetwk.h>
|
|
|
|
|
|
|
|
#include <dirent.h>
|
2005-05-09 04:39:34 +02:00
|
|
|
|
2005-05-17 22:34:15 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
GET_RESOURCE_INFO = 0,
|
|
|
|
GET_RESOURCE_OPENENUM = 1,
|
|
|
|
GET_RESOURCE_OPENENUMTOP = 2,
|
|
|
|
GET_RESOURCE_ENUM = 3
|
|
|
|
};
|
|
|
|
|
|
|
|
struct netdriveinf
|
|
|
|
{
|
|
|
|
int what;
|
|
|
|
int ret;
|
|
|
|
PVOID in;
|
|
|
|
PVOID out;
|
|
|
|
DWORD outsize;
|
|
|
|
HANDLE sem;
|
|
|
|
};
|
|
|
|
|
|
|
|
static DWORD WINAPI
|
|
|
|
thread_netdrive (void *arg)
|
|
|
|
{
|
|
|
|
netdriveinf *ndi = (netdriveinf *) arg;
|
|
|
|
LPTSTR dummy = NULL;
|
|
|
|
LPNETRESOURCE nro, nro2;
|
|
|
|
DWORD size;
|
|
|
|
HANDLE enumhdl;
|
|
|
|
|
|
|
|
ReleaseSemaphore (ndi->sem, 1, NULL);
|
|
|
|
switch (ndi->what)
|
|
|
|
{
|
|
|
|
case GET_RESOURCE_INFO:
|
|
|
|
nro = (LPNETRESOURCE) alloca (size = 4096);
|
|
|
|
ndi->ret = WNetGetResourceInformation ((LPNETRESOURCE) ndi->in,
|
|
|
|
nro, &size, &dummy);
|
|
|
|
break;
|
|
|
|
case GET_RESOURCE_OPENENUM:
|
|
|
|
case GET_RESOURCE_OPENENUMTOP:
|
|
|
|
nro = (LPNETRESOURCE) alloca (size = 4096);
|
|
|
|
ndi->ret = WNetGetResourceInformation ((LPNETRESOURCE) ndi->in,
|
|
|
|
nro, &size, &dummy);
|
|
|
|
if (ndi->ret != NO_ERROR)
|
2005-08-12 04:39:13 +02:00
|
|
|
break;
|
2005-05-17 22:34:15 +02:00
|
|
|
if (ndi->what == GET_RESOURCE_OPENENUMTOP)
|
2005-08-12 04:39:13 +02:00
|
|
|
{
|
2005-05-17 22:34:15 +02:00
|
|
|
nro2 = nro;
|
|
|
|
nro = (LPNETRESOURCE) alloca (size = 4096);
|
|
|
|
ndi->ret = WNetGetResourceParent (nro2, nro, &size);
|
|
|
|
if (ndi->ret != NO_ERROR)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ndi->ret = WNetOpenEnum (RESOURCE_GLOBALNET, RESOURCETYPE_DISK, 0, nro,
|
|
|
|
&enumhdl);
|
|
|
|
if (ndi->ret == NO_ERROR)
|
2005-08-12 04:39:13 +02:00
|
|
|
*(HANDLE *) ndi->out = enumhdl;
|
2005-05-17 22:34:15 +02:00
|
|
|
break;
|
|
|
|
case GET_RESOURCE_ENUM:
|
|
|
|
ndi->ret = WNetEnumResource ((HANDLE) ndi->in, (size = 1, &size),
|
|
|
|
(LPNETRESOURCE) ndi->out, &ndi->outsize);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ReleaseSemaphore (ndi->sem, 1, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DWORD
|
|
|
|
create_thread_and_wait (int what, PVOID in, PVOID out, DWORD outsize,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
netdriveinf ndi = { what, 0, in, out, outsize,
|
|
|
|
CreateSemaphore (&sec_none_nih, 0, 2, NULL) };
|
2005-10-18 01:27:00 +02:00
|
|
|
cygthread *thr = new cygthread (thread_netdrive, 0, &ndi, name);
|
2005-05-17 22:34:15 +02:00
|
|
|
if (thr->detach (ndi.sem))
|
|
|
|
ndi.ret = ERROR_OPERATION_ABORTED;
|
|
|
|
CloseHandle (ndi.sem);
|
|
|
|
return ndi.ret;
|
|
|
|
}
|
|
|
|
|
2005-05-09 04:39:34 +02:00
|
|
|
/* Returns 0 if path doesn't exist, >0 if path is a directory,
|
|
|
|
-1 if path is a file, -2 if it's a symlink. */
|
|
|
|
int
|
|
|
|
fhandler_netdrive::exists ()
|
|
|
|
{
|
2005-05-13 05:21:39 +02:00
|
|
|
char *to;
|
|
|
|
const char *from;
|
2005-05-13 15:23:38 +02:00
|
|
|
size_t len = strlen (get_name ());
|
|
|
|
if (len == 2)
|
|
|
|
return 1;
|
|
|
|
char namebuf[len + 1];
|
2005-05-13 05:21:39 +02:00
|
|
|
for (to = namebuf, from = get_name (); *from; to++, from++)
|
|
|
|
*to = (*from == '/') ? '\\' : *from;
|
|
|
|
*to = '\0';
|
|
|
|
|
|
|
|
NETRESOURCE nr = {0};
|
|
|
|
nr.dwScope = RESOURCE_GLOBALNET;
|
|
|
|
nr.dwType = RESOURCETYPE_DISK;
|
|
|
|
nr.lpLocalName = NULL;
|
|
|
|
nr.lpRemoteName = namebuf;
|
2005-05-17 22:34:15 +02:00
|
|
|
DWORD ret = create_thread_and_wait (GET_RESOURCE_INFO, &nr, NULL, 0,
|
2005-06-07 20:41:31 +02:00
|
|
|
"WNetGetResourceInformation");
|
2005-05-17 22:34:15 +02:00
|
|
|
if (ret != ERROR_MORE_DATA && ret != NO_ERROR)
|
2005-05-13 05:21:39 +02:00
|
|
|
return 0;
|
2005-05-09 04:39:34 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fhandler_netdrive::fhandler_netdrive ():
|
|
|
|
fhandler_virtual ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_netdrive::fstat (struct __stat64 *buf)
|
|
|
|
{
|
|
|
|
const char *path = get_name ();
|
|
|
|
debug_printf ("fstat (%s)", path);
|
|
|
|
|
2005-07-06 22:05:03 +02:00
|
|
|
fhandler_base::fstat (buf);
|
2005-05-09 04:39:34 +02:00
|
|
|
|
2005-05-14 23:12:10 +02:00
|
|
|
buf->st_mode = S_IFDIR | STD_RBITS | STD_XBITS;
|
2005-05-09 04:39:34 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-08-20 08:19:55 +02:00
|
|
|
int
|
|
|
|
fhandler_netdrive::readdir (DIR *dir, dirent *de)
|
2005-05-13 22:20:02 +02:00
|
|
|
{
|
|
|
|
DWORD size;
|
|
|
|
NETRESOURCE *nro;
|
|
|
|
DWORD ret;
|
2005-08-20 08:19:55 +02:00
|
|
|
int res;
|
2005-05-13 22:20:02 +02:00
|
|
|
|
|
|
|
if (!dir->__d_position)
|
|
|
|
{
|
|
|
|
size_t len = strlen (get_name ());
|
2005-05-17 22:34:15 +02:00
|
|
|
char *namebuf;
|
|
|
|
NETRESOURCE nr = { 0 };
|
2005-05-13 22:20:02 +02:00
|
|
|
|
|
|
|
if (len == 2) /* // */
|
2005-08-12 04:39:13 +02:00
|
|
|
{
|
2005-05-13 22:20:02 +02:00
|
|
|
namebuf = (char *) alloca (MAX_COMPUTERNAME_LENGTH + 3);
|
|
|
|
strcpy (namebuf, "\\\\");
|
|
|
|
size = MAX_COMPUTERNAME_LENGTH + 1;
|
|
|
|
if (!GetComputerName (namebuf + 2, &size))
|
|
|
|
{
|
2005-08-20 08:19:55 +02:00
|
|
|
res = geterrno_from_win_error ();
|
|
|
|
goto out;
|
2005-05-13 22:20:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2005-08-12 04:39:13 +02:00
|
|
|
{
|
2005-05-13 22:20:02 +02:00
|
|
|
const char *from;
|
|
|
|
char *to;
|
|
|
|
namebuf = (char *) alloca (len + 1);
|
|
|
|
for (to = namebuf, from = get_name (); *from; to++, from++)
|
|
|
|
*to = (*from == '/') ? '\\' : *from;
|
|
|
|
*to = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
nr.lpRemoteName = namebuf;
|
|
|
|
nr.dwType = RESOURCETYPE_DISK;
|
2005-05-17 22:34:15 +02:00
|
|
|
nro = (NETRESOURCE *) alloca (4096);
|
|
|
|
ret = create_thread_and_wait (len == 2 ? GET_RESOURCE_OPENENUMTOP
|
|
|
|
: GET_RESOURCE_OPENENUM,
|
|
|
|
&nr, &dir->__handle, 0, "WNetOpenEnum");
|
2005-05-13 22:20:02 +02:00
|
|
|
if (ret != NO_ERROR)
|
|
|
|
{
|
|
|
|
dir->__handle = INVALID_HANDLE_VALUE;
|
2005-08-20 08:19:55 +02:00
|
|
|
res = geterrno_from_win_error (ret);
|
|
|
|
goto out;
|
2005-05-13 22:20:02 +02:00
|
|
|
}
|
|
|
|
}
|
2005-05-17 22:34:15 +02:00
|
|
|
ret = create_thread_and_wait (GET_RESOURCE_ENUM, dir->__handle,
|
2005-08-12 04:39:13 +02:00
|
|
|
nro = (LPNETRESOURCE) alloca (16384),
|
2005-05-17 22:34:15 +02:00
|
|
|
16384, "WnetEnumResource");
|
2005-05-13 22:20:02 +02:00
|
|
|
if (ret != NO_ERROR)
|
2005-08-20 08:19:55 +02:00
|
|
|
res = geterrno_from_win_error (ret);
|
|
|
|
else
|
2005-05-13 22:20:02 +02:00
|
|
|
{
|
2005-08-20 08:19:55 +02:00
|
|
|
dir->__d_position++;
|
|
|
|
char *bs = strrchr (nro->lpRemoteName, '\\');
|
|
|
|
strcpy (de->d_name, bs ? bs + 1 : nro->lpRemoteName);
|
|
|
|
res = 0;
|
2005-05-13 22:20:02 +02:00
|
|
|
}
|
2005-08-20 08:19:55 +02:00
|
|
|
out:
|
|
|
|
syscall_printf ("%d = readdir (%p, %p)", res, dir, de);
|
|
|
|
return res;
|
2005-05-13 22:20:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-05-18 12:23:40 +02:00
|
|
|
fhandler_netdrive::seekdir (DIR *dir, _off64_t pos)
|
2005-05-13 22:20:02 +02:00
|
|
|
{
|
2005-05-18 12:23:40 +02:00
|
|
|
rewinddir (dir);
|
|
|
|
if (pos < 0)
|
|
|
|
return;
|
|
|
|
while (dir->__d_position < pos)
|
2005-08-20 08:19:55 +02:00
|
|
|
if (!readdir (dir, dir->__d_dirent))
|
2005-05-18 12:23:40 +02:00
|
|
|
break;
|
2005-05-13 22:20:02 +02:00
|
|
|
}
|
|
|
|
|
2005-05-17 22:34:15 +02:00
|
|
|
void
|
|
|
|
fhandler_netdrive::rewinddir (DIR *dir)
|
|
|
|
{
|
|
|
|
if (dir->__handle != INVALID_HANDLE_VALUE)
|
|
|
|
WNetCloseEnum (dir->__handle);
|
|
|
|
dir->__handle = INVALID_HANDLE_VALUE;
|
|
|
|
return fhandler_virtual::rewinddir (dir);
|
|
|
|
}
|
|
|
|
|
2005-05-13 22:20:02 +02:00
|
|
|
int
|
|
|
|
fhandler_netdrive::closedir (DIR *dir)
|
2005-05-09 04:39:34 +02:00
|
|
|
{
|
2005-05-18 12:23:40 +02:00
|
|
|
rewinddir (dir);
|
2005-05-13 22:20:02 +02:00
|
|
|
return fhandler_virtual::closedir (dir);
|
2005-05-09 04:39:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_netdrive::open (int flags, mode_t mode)
|
|
|
|
{
|
|
|
|
int res = fhandler_virtual::open (flags, mode);
|
|
|
|
if (!res)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
nohandle (true);
|
|
|
|
|
|
|
|
if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
|
|
|
|
{
|
|
|
|
set_errno (EEXIST);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
else if (flags & O_WRONLY)
|
|
|
|
{
|
|
|
|
set_errno (EISDIR);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = 1;
|
|
|
|
set_flags ((flags & ~O_TEXT) | O_BINARY | O_DIROPEN);
|
|
|
|
set_open_status ();
|
|
|
|
out:
|
|
|
|
syscall_printf ("%d = fhandler_netdrive::open (%p, %d)", res, flags, mode);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|