Download EaseFilter Filter Driver SDK Setup File Download EaseFilter Filter Driver SDK Zip File
FltWriteFile is used to write data to an open file, stream, or device.
NTSTATUS FLTAPI FltWriteFile( PFLT_INSTANCE InitiatingInstance, PFILE_OBJECT FileObject, PLARGE_INTEGER ByteOffset, ULONG Length, PVOID Buffer, FLT_IO_OPERATION_FLAGS Flags, PULONG BytesWritten, PFLT_COMPLETED_ASYNC_IO_CALLBACK CallbackRoutine, PVOID CallbackContext );
InitiatingInstance
Opaque instance pointer for the minifilter driver instance that is initiating the write request. This parameter is required and cannot be NULL.
FileObject
Pointer to a file object for the file that the data is to be written to. This file object must be currently open. Calling FltWriteFile when the file object is not yet open or is no longer open (for example, in a pre-create or post-cleanup callback routine) causes the system to ASSERT on a checked build. This parameter is required and cannot be NULL.
ByteOffset
Pointer to a caller-allocated variable that specifies the starting byte offset within the file where the write operation is to begin.
If this offset is supplied, or if the FLTFL_IO_OPERATION_DO_NOT_UPDATE_BYTE_OFFSET flag is specified in the Flags parameter, FltWriteFile does not update the file object's CurrentByteOffset field.
If the file object that FileObject points to was opened for synchronous I/O, the caller of FltWriteFile can specify that the current file position offset be used instead of an explicit ByteOffset value by setting this parameter to NULL. If the current file position is used, FltWriteFile updates the file object's CurrentByteOffset field by adding the number of bytes written when it completes the write operation.
If the file object that FileObject points to was opened for asynchronous I/O, this parameter is required and cannot be NULL.
Length
Size, in bytes, of the buffer that the Buffer parameter points to.
Buffer
Pointer to a buffer that contains the data to be written to the file. If the file is opened for noncached I/O, this buffer be must be aligned in accordance with the alignment requirement of the underlying storage device. Minifilter drivers can allocate such an aligned buffer by calling FltAllocatePoolAlignedWithTag.
Flags
Bitmask of flags specifying the type of write operation to be performed.
Flag | Meaning |
---|---|
FLTFL_IO_OPERATION_DO_NOT_UPDATE_BYTE_OFFSET | Minifilter drivers can set this flag to specify that FltWriteFile should not update the file object's CurrentByteOffset field. |
FLTFL_IO_OPERATION_NON_CACHED | Minifilter drivers can set this flag to specify a noncached write, even if the file object was not opened with FILE_NO_INTERMEDIATE_BUFFERING. |
FLTFL_IO_OPERATION_PAGING | Minifilter drivers can set this flag to specify a paging write. |
FLTFL_IO_OPERATION_SYNCHRONOUS_PAGING | Minifilter drivers can set this flag to specify a synchronous paging I/O write. Minifilter drivers that set this flag must also set the FLTFL_IO_OPERATION_PAGING flag.
This flag is available for Windows Vista and later versions of the Windows operating system. |
BytesWritten
Pointer to a caller-allocated variable that receives the number of bytes written to the file. If CallbackRoutine is not NULL, this parameter is ignored. Otherwise, this parameter is optional and can be NULL.
CallbackRoutine
Pointer to a PFLT_COMPLETED_ASYNC_IO_CALLBACK-typed callback routine to call when the write operation is complete. This parameter is optional and can be NULL.
CallbackContext
Context pointer to be passed to the CallbackRoutine if one is present. This parameter is optional and can be NULL. If CallbackRoutine is NULL, this parameter is ignored.
FltWriteFile returns the NTSTATUS value that was returned by the file system.
A minifilter driver calls FltWriteFile to write data to an open file.
FltWriteFile causes a write request to be sent to the minifilter driver instances attached below the initiating instance and to the file system. The specified instance and the instances attached above it do not receive the write request.
FltWriteFile performs noncached I/O if either of the following is true:
If the value of the CallbackRoutine parameter is NULL, the write operation is performed synchronously. That is, FltWriteFile waits until the write operation is complete before returning. This is true even if the file object that FileObject points to was opened for asynchronous I/O.
If multiple threads call FltWriteFile for the same file object, and the file object was opened for synchronous I/O, the Filter Manager does not attempt to serialize I/O on the file. In this respect, FltWriteFile differs from ZwWriteFile.
Target Platform | Universal |
Header | fltkernel.h (include Fltkernel.h) |
Library | FltMgr.lib |
DLL | Fltmgr.sys |
IRQL | PASSIVE_LEVEL |