FsRtlMdlReadDev function (ntifs.h)

The FsRtlMdlReadDev routine returns a memory descriptor list (MDL) that points directly to the specified byte range in the file cache.

Syntax

BOOLEAN FsRtlMdlReadDev(
  [in]             PFILE_OBJECT     FileObject,
  [in]             PLARGE_INTEGER   FileOffset,
  [in]             ULONG            Length,
  [in]             ULONG            LockKey,
  [out]            PMDL             *MdlChain,
  [out]            PIO_STATUS_BLOCK IoStatus,
  [ in, optional ] PDEVICE_OBJECT   DeviceObject
);

Parameters

[in] FileObject

A pointer to a file object for the cached file.

[in] FileOffset

A pointer to a variable that specifies the starting byte offset within the cached file that holds the data.

[in] Length

The length in bytes of the data to read from the cache.

[in] LockKey

A value that is associated with the byte range to lock. If the range to lock overlaps another range that is already locked with a nonexclusive lock, or if the range to read is a subrange of another range that is already locked non-exclusively, the value in this parameter must be the key for that nonexclusive lock The lock must be held by the parent process of the calling thread. Otherwise, this parameter has no effect.

[out] MdlChain

On output, a pointer to a linked list of memory descriptor lists (MDLs).

[out] IoStatus

A pointer to an IO_STATUS_BLOCK structure that, on output, contains the status of the transfer. If the operation succeeds, IoStatus.Status is set to STATUS_SUCCESS. Otherwise, it is set to an appropriate NTSTATUS error code. IoStatus.Information is set to the actual number of bytes that the routine successfully locked.

[ in, optional ] DeviceObject

A pointer to a device object on which the file is opened.

Return value

The FsRtlMdlReadDev routine returns TRUE if the operation succeeds and FALSE if the operation fails.

Remarks

The FsRtlMdlReadDev routine bypasses the usual IRP mechanism and returns a linked list of memory descriptor lists (MDL) that the caller can use to directly access the cached file data. This operation does not copy or buffer data and therefore is much faster than a normal read.

The routine is similar to CcMdlRead and FltFastIoMdlRead. FltFastIoMdlRead, CcMdlRead, and FsRtlMdlReadDev lock the pages that contain the cached file data to prevent the system from swapping these pages to the page file. The pages remain locked in memory until the caller invokes the FsRtlMdlReadCompleteDev routine.

Requirements

Requirement Value
Target Platform Universal
Header ntifs.h (include Ntifs.h)
Library NtosKrnl.lib
DLL NtosKrnl.exe
IRQL <= APC_LEVEL

See also

CcMdlRead

FsRtlMdlReadCompleteDev

FsRtlMdlReadEx