Changeset 75544 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Nov 17, 2018 4:19:30 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126702
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/fileio-win.cpp
r75536 r75544 33 33 # define _WIN32_WINNT 0x0500 34 34 #endif 35 #include <iprt/ win/windows.h>35 #include <iprt/nt/nt-and-windows.h> 36 36 37 37 #include <iprt/file.h> … … 837 837 */ 838 838 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 841 883 842 884 BY_HANDLE_FILE_INFORMATION Data; … … 941 983 942 984 return VINF_SUCCESS; 985 #endif 943 986 } 944 987
Note:
See TracChangeset
for help on using the changeset viewer.