Hi all!
I have the following issue with the FS encryption filter driver:
When starting encryption, the driver encrypts all the files in place: reads
buffer, encrypts it, and writes to the file (read/write is non-cached and
synchronized with the other paging IOs).
When the driver tries to encrypt in place the outlook pst file, it receives
STATUS_FILE_LOCK_CONFLICT error.
I can read and write the pst file by using
ZwCreateSection/ZwMapViewOfSection as described
in NTFSD FAQ, but it modifies the share date, which is used by outlook too.
Is there any way to write to range locked file bypassing the cache?
Thanks,
Dani