mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[NTOSKRNL] Only allow direct device open for FileFsDeviceInformation
This commit is contained in:
parent
ce6488df31
commit
d75ccd01f7
1 changed files with 8 additions and 0 deletions
|
@ -4063,6 +4063,14 @@ NtQueryVolumeInformationFile(IN HANDLE FileHandle,
|
|||
NULL);
|
||||
if (!NT_SUCCESS(Status)) return Status;
|
||||
|
||||
/* Only allow direct device open for FileFsDeviceInformation */
|
||||
if (BooleanFlagOn(FileObject->Flags, FO_DIRECT_DEVICE_OPEN) &&
|
||||
FsInformationClass != FileFsDeviceInformation)
|
||||
{
|
||||
ObDereferenceObject(FileObject);
|
||||
return STATUS_INVALID_DEVICE_REQUEST;
|
||||
}
|
||||
|
||||
/* Check if we should use Sync IO or not */
|
||||
if (FileObject->Flags & FO_SYNCHRONOUS_IO)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue