VirtualBox

Changeset 75544 in vbox for trunk/src/VBox/Runtime/r3


Ignore:
Timestamp:
Nov 17, 2018 4:19:30 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
126702
Message:

IPRT/fileio-win.cpp: Use rtPathNtQueryInfoFromHandle instead of GetFileInformationByHandle to implement RTFileQueryInfo. Should get better info and avoid a kernel call when RTFSOBJATTRADD_UNIX isn't requested.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/win/fileio-win.cpp

    r75536 r75544  
    3333# define _WIN32_WINNT 0x0500
    3434#endif
    35 #include <iprt/win/windows.h>
     35#include <iprt/nt/nt-and-windows.h>
    3636
    3737#include <iprt/file.h>
     
    837837     */
    838838    HANDLE hHandle = (HANDLE)RTFileToNative(hFile);
    839 
    840 /** @todo use GetFileInformationByHandleEx here as GetFileInformationByHandle wastes time query the volume serial number! */
     839#if 1
     840    uint64_t auBuf[168 / sizeof(uint64_t)]; /* Missing FILE_ALL_INFORMATION here. */
     841    int rc = rtPathNtQueryInfoFromHandle(hFile, auBuf, sizeof(auBuf), pObjInfo, enmAdditionalAttribs, NULL, 0);
     842    if (RT_SUCCESS(rc))
     843        return rc;
     844
     845    /*
     846     * Console I/O handles make trouble here.  On older windows versions they
     847     * end up with ERROR_INVALID_HANDLE when handed to the above API, while on
     848     * more recent ones they cause different errors to appear.
     849     *
     850     * Thus, we must ignore the latter and doubly verify invalid handle claims.
     851     * We use the undocumented VerifyConsoleIoHandle to do this, falling back on
     852     * GetFileType should it not be there.
     853     */
     854    if (rc == VERR_INVALID_HANDLE)
     855    {
     856        static PFNVERIFYCONSOLEIOHANDLE s_pfnVerifyConsoleIoHandle = NULL;
     857        static bool volatile            s_fInitialized = false;
     858        PFNVERIFYCONSOLEIOHANDLE        pfnVerifyConsoleIoHandle;
     859        if (s_fInitialized)
     860            pfnVerifyConsoleIoHandle = s_pfnVerifyConsoleIoHandle;
     861        else
     862        {
     863            pfnVerifyConsoleIoHandle = (PFNVERIFYCONSOLEIOHANDLE)RTLdrGetSystemSymbol("kernel32.dll", "VerifyConsoleIoHandle");
     864            ASMAtomicWriteBool(&s_fInitialized, true);
     865        }
     866        if (   pfnVerifyConsoleIoHandle
     867            ? !pfnVerifyConsoleIoHandle(hHandle)
     868            : GetFileType(hHandle) == FILE_TYPE_UNKNOWN && GetLastError() != NO_ERROR)
     869            return VERR_INVALID_HANDLE;
     870    }
     871    /*
     872     * On Windows 10 and (hopefully) 8.1 we get ERROR_INVALID_FUNCTION with console I/O
     873     * handles.  We must ignore these just like the above invalid handle error.
     874     */
     875    else if (rc != VERR_INVALID_FUNCTION && rc != VERR_IO_BAD_COMMAND)
     876        return rc;
     877
     878    RT_ZERO(*pObjInfo);
     879    pObjInfo->Attr.enmAdditional = enmAdditionalAttribs;
     880    pObjInfo->Attr.fMode = rtFsModeFromDos(RTFS_DOS_NT_DEVICE, "", 0, 0);
     881    return VINF_SUCCESS;
     882#else
    841883
    842884    BY_HANDLE_FILE_INFORMATION Data;
     
    941983
    942984    return VINF_SUCCESS;
     985#endif
    943986}
    944987
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette