2005-05-09 04:39:34 +02:00
|
|
|
/* fhandler_netdrive.cc: fhandler for // and //MACHINE handling
|
2005-05-06 06:06:17 +02:00
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Red Hat, Inc.
|
2005-05-06 06:06:17 +02:00
|
|
|
|
|
|
|
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 <stdlib.h>
|
|
|
|
#include "cygerrno.h"
|
|
|
|
#include "security.h"
|
|
|
|
#include "path.h"
|
|
|
|
#include "fhandler.h"
|
2008-07-19 14:26:09 +02:00
|
|
|
#include "dtable.h"
|
|
|
|
#include "cygheap.h"
|
2005-05-17 22:34:15 +02:00
|
|
|
#include "cygthread.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_OPENENUM = 1,
|
|
|
|
GET_RESOURCE_OPENENUMTOP = 2,
|
|
|
|
GET_RESOURCE_ENUM = 3
|
|
|
|
};
|
|
|
|
|
|
|
|
struct netdriveinf
|
|
|
|
{
|
|
|
|
int what;
|
|
|
|
int ret;
|
|
|
|
PVOID in;
|
|
|
|
PVOID out;
|
|
|
|
DWORD outsize;
|
|
|
|
HANDLE sem;
|
|
|
|
};
|
|
|
|
|
2008-07-19 14:26:09 +02:00
|
|
|
struct net_hdls
|
|
|
|
{
|
|
|
|
HANDLE net;
|
|
|
|
HANDLE dom;
|
|
|
|
};
|
|
|
|
|
2005-05-17 22:34:15 +02:00
|
|
|
static DWORD WINAPI
|
|
|
|
thread_netdrive (void *arg)
|
|
|
|
{
|
|
|
|
netdriveinf *ndi = (netdriveinf *) arg;
|
2008-07-19 14:26:09 +02:00
|
|
|
char provider[256], *dummy = NULL;
|
|
|
|
LPNETRESOURCE nro;
|
|
|
|
DWORD cnt, size;
|
|
|
|
struct net_hdls *nh;
|
2005-05-17 22:34:15 +02:00
|
|
|
|
|
|
|
ReleaseSemaphore (ndi->sem, 1, NULL);
|
|
|
|
switch (ndi->what)
|
|
|
|
{
|
|
|
|
case GET_RESOURCE_OPENENUMTOP:
|
|
|
|
nro = (LPNETRESOURCE) alloca (size = 4096);
|
2008-07-19 14:26:09 +02:00
|
|
|
nh = (struct net_hdls *) ndi->out;
|
|
|
|
ndi->ret = WNetGetProviderName (WNNC_NET_LANMAN, provider,
|
|
|
|
(size = 256, &size));
|
|
|
|
if (ndi->ret != NO_ERROR)
|
|
|
|
break;
|
|
|
|
memset (nro, 0, sizeof *nro);
|
|
|
|
nro->dwScope = RESOURCE_GLOBALNET;
|
|
|
|
nro->dwType = RESOURCETYPE_ANY;
|
|
|
|
nro->dwDisplayType = RESOURCEDISPLAYTYPE_GROUP;
|
|
|
|
nro->dwUsage = RESOURCEUSAGE_RESERVED | RESOURCEUSAGE_CONTAINER;
|
|
|
|
nro->lpRemoteName = provider;
|
|
|
|
nro->lpProvider = provider;
|
|
|
|
ndi->ret = WNetOpenEnum (RESOURCE_GLOBALNET, RESOURCETYPE_DISK,
|
|
|
|
RESOURCEUSAGE_ALL, nro, &nh->net);
|
|
|
|
if (ndi->ret != NO_ERROR)
|
|
|
|
break;
|
|
|
|
while ((ndi->ret = WNetEnumResource (nh->net, (cnt = 1, &cnt), nro,
|
|
|
|
(size = 4096, &size))) == NO_ERROR)
|
|
|
|
{
|
|
|
|
ndi->ret = WNetOpenEnum (RESOURCE_GLOBALNET, RESOURCETYPE_DISK,
|
|
|
|
RESOURCEUSAGE_ALL, nro, &nh->dom);
|
|
|
|
if (ndi->ret == NO_ERROR)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GET_RESOURCE_OPENENUM:
|
|
|
|
nro = (LPNETRESOURCE) alloca (size = 4096);
|
|
|
|
nh = (struct net_hdls *) ndi->out;
|
|
|
|
ndi->ret = WNetGetProviderName (WNNC_NET_LANMAN, provider,
|
|
|
|
(size = 256, &size));
|
|
|
|
if (ndi->ret != NO_ERROR)
|
|
|
|
break;
|
|
|
|
((LPNETRESOURCE) ndi->in)->lpProvider = provider;
|
2005-05-17 22:34:15 +02:00
|
|
|
ndi->ret = WNetGetResourceInformation ((LPNETRESOURCE) ndi->in,
|
|
|
|
nro, &size, &dummy);
|
|
|
|
if (ndi->ret != NO_ERROR)
|
2005-08-12 04:39:13 +02:00
|
|
|
break;
|
2008-07-19 14:26:09 +02:00
|
|
|
ndi->ret = WNetOpenEnum (RESOURCE_GLOBALNET, RESOURCETYPE_DISK,
|
|
|
|
RESOURCEUSAGE_ALL, nro, &nh->dom);
|
|
|
|
break;
|
|
|
|
case GET_RESOURCE_ENUM:
|
|
|
|
nh = (struct net_hdls *) ndi->in;
|
|
|
|
if (!nh->dom)
|
2008-11-26 18:21:04 +01:00
|
|
|
{
|
2008-07-19 14:26:09 +02:00
|
|
|
ndi->ret = ERROR_NO_MORE_ITEMS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while ((ndi->ret = WNetEnumResource (nh->dom, (cnt = 1, &cnt),
|
|
|
|
(LPNETRESOURCE) ndi->out,
|
|
|
|
&ndi->outsize)) != NO_ERROR
|
|
|
|
&& nh->net)
|
2005-08-12 04:39:13 +02:00
|
|
|
{
|
2008-07-19 14:26:09 +02:00
|
|
|
WNetCloseEnum (nh->dom);
|
|
|
|
nh->dom = NULL;
|
2005-05-17 22:34:15 +02:00
|
|
|
nro = (LPNETRESOURCE) alloca (size = 4096);
|
2008-07-19 14:26:09 +02:00
|
|
|
while ((ndi->ret = WNetEnumResource (nh->net, (cnt = 1, &cnt), nro,
|
|
|
|
(size = 4096, &size))) == NO_ERROR)
|
|
|
|
{
|
|
|
|
ndi->ret = WNetOpenEnum (RESOURCE_GLOBALNET, RESOURCETYPE_DISK,
|
|
|
|
RESOURCEUSAGE_ALL, nro, &nh->dom);
|
|
|
|
if (ndi->ret == NO_ERROR)
|
|
|
|
break;
|
|
|
|
}
|
2005-05-17 22:34:15 +02:00
|
|
|
if (ndi->ret != NO_ERROR)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
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) };
|
2010-09-01 20:24:11 +02:00
|
|
|
cygthread *thr = new cygthread (thread_netdrive, &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. */
|
2010-09-06 11:47:01 +02:00
|
|
|
virtual_ftype_t
|
2005-05-09 04:39:34 +02:00
|
|
|
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)
|
2010-09-06 11:47:01 +02:00
|
|
|
return virt_rootdir;
|
2005-05-13 15:23:38 +02:00
|
|
|
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';
|
|
|
|
|
2009-07-15 20:18:03 +02:00
|
|
|
struct net_hdls nh = { NULL, NULL };
|
2005-05-13 05:21:39 +02:00
|
|
|
NETRESOURCE nr = {0};
|
|
|
|
nr.dwType = RESOURCETYPE_DISK;
|
|
|
|
nr.lpRemoteName = namebuf;
|
2009-07-15 20:18:03 +02:00
|
|
|
DWORD ret = create_thread_and_wait (GET_RESOURCE_OPENENUM,
|
|
|
|
&nr, &nh, 0, "WNetOpenEnum");
|
2010-06-01 15:14:37 +02:00
|
|
|
if (nh.dom)
|
|
|
|
WNetCloseEnum (nh.dom);
|
2010-09-06 11:47:01 +02:00
|
|
|
return ret != NO_ERROR ? virt_none : virt_directory;
|
2005-05-09 04:39:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fhandler_netdrive::fhandler_netdrive ():
|
|
|
|
fhandler_virtual ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-01-21 05:34:52 +01:00
|
|
|
int __reg2
|
2013-04-23 11:44:36 +02:00
|
|
|
fhandler_netdrive::fstat (struct stat *buf)
|
2005-05-09 04:39:34 +02:00
|
|
|
{
|
|
|
|
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;
|
2008-03-31 20:03:25 +02:00
|
|
|
buf->st_ino = get_ino ();
|
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
|
|
|
{
|
|
|
|
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 ());
|
2008-07-19 14:26:09 +02:00
|
|
|
char *namebuf = NULL;
|
2005-05-17 22:34:15 +02:00
|
|
|
NETRESOURCE nr = { 0 };
|
2008-07-19 14:26:09 +02:00
|
|
|
struct net_hdls *nh;
|
2005-05-13 22:20:02 +02:00
|
|
|
|
2008-07-19 14:26:09 +02:00
|
|
|
if (len != 2) /* // */
|
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;
|
2008-07-19 14:26:09 +02:00
|
|
|
nh = (struct net_hdls *) ccalloc (HEAP_FHANDLER, 1, sizeof *nh);
|
2005-05-17 22:34:15 +02:00
|
|
|
ret = create_thread_and_wait (len == 2 ? GET_RESOURCE_OPENENUMTOP
|
|
|
|
: GET_RESOURCE_OPENENUM,
|
2008-07-19 14:26:09 +02:00
|
|
|
&nr, nh, 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
|
|
|
}
|
2008-07-19 14:26:09 +02:00
|
|
|
dir->__handle = (HANDLE) nh;
|
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);
|
2006-02-28 13:20:11 +01:00
|
|
|
if (strlen (get_name ()) == 2)
|
2008-07-19 14:26:09 +02:00
|
|
|
{
|
|
|
|
strlwr (de->d_name);
|
|
|
|
de->d_ino = hash_path_name (get_ino (), de->d_name);
|
|
|
|
}
|
2006-02-28 13:20:11 +01:00
|
|
|
else
|
2006-04-14 16:20:58 +02:00
|
|
|
{
|
2007-07-26 19:30:54 +02:00
|
|
|
de->d_ino = readdir_get_ino (nro->lpRemoteName, false);
|
2006-04-14 16:20:58 +02:00
|
|
|
/* We can't trust remote inode numbers of only 32 bit. That means,
|
|
|
|
remote NT4 NTFS, as well as shares of Samba version < 3.0. */
|
2013-04-23 11:44:36 +02:00
|
|
|
if (de->d_ino <= UINT32_MAX)
|
2006-04-14 16:20:58 +02:00
|
|
|
de->d_ino = hash_path_name (0, nro->lpRemoteName);
|
|
|
|
}
|
2010-09-01 12:30:52 +02:00
|
|
|
de->d_type = DT_DIR;
|
2006-02-27 18:46:29 +01:00
|
|
|
|
2005-08-20 08:19:55 +02:00
|
|
|
res = 0;
|
2005-05-13 22:20:02 +02:00
|
|
|
}
|
2005-08-20 08:19:55 +02:00
|
|
|
out:
|
2011-12-03 22:43:27 +01:00
|
|
|
syscall_printf ("%d = readdir(%p, %p)", res, dir, de);
|
2005-08-20 08:19:55 +02:00
|
|
|
return res;
|
2005-05-13 22:20:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-07-05 18:59:56 +02:00
|
|
|
fhandler_netdrive::seekdir (DIR *dir, long 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)
|
2010-09-01 12:30:52 +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)
|
2008-07-19 14:26:09 +02:00
|
|
|
{
|
|
|
|
struct net_hdls *nh = (struct net_hdls *) dir->__handle;
|
|
|
|
if (nh->dom)
|
|
|
|
WNetCloseEnum (nh->dom);
|
|
|
|
if (nh->net)
|
|
|
|
WNetCloseEnum (nh->net);
|
|
|
|
cfree (nh);
|
|
|
|
}
|
2005-05-17 22:34:15 +02:00
|
|
|
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:
|
2013-04-23 11:44:36 +02:00
|
|
|
syscall_printf ("%d = fhandler_netdrive::open(%y, 0%o)", res, flags, mode);
|
2005-05-09 04:39:34 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|