* path.cc (symlink_info::check): Don't use FileNetworkOpenInformation
on Netapps. Relax condition for workaround. Always request size information via FileStandardInformation info class in workaround.
This commit is contained in:
parent
8b6fbbba10
commit
5fe7c5e01b
|
@ -1,3 +1,9 @@
|
||||||
|
2010-11-23 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* path.cc (symlink_info::check): Don't use FileNetworkOpenInformation
|
||||||
|
on Netapps. Relax condition for workaround. Always request size
|
||||||
|
information via FileStandardInformation info class in workaround.
|
||||||
|
|
||||||
2010-11-22 Corinna Vinschen <corinna@vinschen.de>
|
2010-11-22 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* mount.cc (NETAPP_IGNORE): Add FILE_PERSISTENT_ACLS.
|
* mount.cc (NETAPP_IGNORE): Add FILE_PERSISTENT_ACLS.
|
||||||
|
|
|
@ -2388,22 +2388,35 @@ restart:
|
||||||
{
|
{
|
||||||
PFILE_NETWORK_OPEN_INFORMATION pfnoi = conv_hdl.fnoi ();
|
PFILE_NETWORK_OPEN_INFORMATION pfnoi = conv_hdl.fnoi ();
|
||||||
|
|
||||||
status = NtQueryInformationFile (h, &io, pfnoi, sizeof *pfnoi,
|
/* Netapps don't implement FileNetworkOpenInformation. */
|
||||||
|
status = fs.is_netapp ()
|
||||||
|
? STATUS_INVALID_PARAMETER
|
||||||
|
: NtQueryInformationFile (h, &io, pfnoi, sizeof *pfnoi,
|
||||||
FileNetworkOpenInformation);
|
FileNetworkOpenInformation);
|
||||||
if ((status == STATUS_INVALID_PARAMETER
|
if (status == STATUS_INVALID_PARAMETER
|
||||||
|| status == STATUS_NOT_IMPLEMENTED)
|
|| status == STATUS_NOT_IMPLEMENTED)
|
||||||
&& RtlEqualUnicodePathPrefix (&upath, &ro_u_uncp, FALSE))
|
|
||||||
{
|
{
|
||||||
/* This occurs when accessing SMB share root dirs hosted on
|
/* Apart from accessing Netapps, this also occurs when
|
||||||
NT4 (STATUS_INVALID_PARAMETER), or when trying to access
|
accessing SMB share root dirs hosted on NT4
|
||||||
|
(STATUS_INVALID_PARAMETER), or when trying to access
|
||||||
SMB share root dirs from NT4 (STATUS_NOT_IMPLEMENTED). */
|
SMB share root dirs from NT4 (STATUS_NOT_IMPLEMENTED). */
|
||||||
FILE_BASIC_INFORMATION fbi;
|
FILE_BASIC_INFORMATION fbi;
|
||||||
|
FILE_STANDARD_INFORMATION fsi;
|
||||||
|
|
||||||
status = NtQueryInformationFile (h, &io, &fbi, sizeof fbi,
|
status = NtQueryInformationFile (h, &io, &fbi, sizeof fbi,
|
||||||
FileBasicInformation);
|
FileBasicInformation);
|
||||||
if (NT_SUCCESS (status))
|
if (NT_SUCCESS (status))
|
||||||
{
|
{
|
||||||
memcpy (pfnoi, &fbi, 4 * sizeof (LARGE_INTEGER));
|
memcpy (pfnoi, &fbi, 4 * sizeof (LARGE_INTEGER));
|
||||||
|
if (NT_SUCCESS (NtQueryInformationFile (h, &io, &fsi,
|
||||||
|
sizeof fsi,
|
||||||
|
FileStandardInformation)))
|
||||||
|
{
|
||||||
|
pfnoi->EndOfFile.QuadPart = fsi.EndOfFile.QuadPart;
|
||||||
|
pfnoi->AllocationSize.QuadPart
|
||||||
|
= fsi.AllocationSize.QuadPart;
|
||||||
|
}
|
||||||
|
else
|
||||||
pfnoi->EndOfFile.QuadPart
|
pfnoi->EndOfFile.QuadPart
|
||||||
= pfnoi->AllocationSize.QuadPart = 0;
|
= pfnoi->AllocationSize.QuadPart = 0;
|
||||||
pfnoi->FileAttributes = fbi.FileAttributes;
|
pfnoi->FileAttributes = fbi.FileAttributes;
|
||||||
|
|
Loading…
Reference in New Issue