Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results
The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.
Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/
Hello,
I am seeing the following problem with FltRetrieveFileInfoOnCreateCompletion() and infoclass=QoCFileStatInformation:
the file ID is incorrect, and looking at the value, it appears that the second highest order word is set to 0.
For example, the actual file ID as queried by QueryInformationFile is 119d8000000fdf, but the value received by using
FltRetrieveFileInfoOnCreateCompletion is 11000000000fdf. This appears to happen only when FSLogix is also installed on the system.
Has anyone seen something like that? Any FSLogix people here?
Upcoming OSR Seminars | ||
---|---|---|
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead! | ||
Kernel Debugging | 30 January 2023 | Live, Online |
Developing Minifilters | 20 March 2023 | Live, Online |
Internals & Software Drivers | 17 April 2023 | Live, Online |
Writing WDF Drivers | 22 May 2023 | Live, Online |
Comments
I work on FSLogix. That sounds like a path where we may not be handling the FileId correctly. (Because FSLogix is virtualizing files to appear as though they are on the system volume, we adjust the FileId to make sure there are not collisions on that volume.) We are probably propagating the ECP that does that from one request to another and not handling in appropriately. I will file a work item to prioritize and get this fixed.
Thanks, appreciate your response!