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/
Hi,
I want to retrieve the sector offset information to calculate LBA of a file from my file system filter driver. I am able to get response for FSCTL_GET_RETRIEVAL_POINTERS IOCTL, but for FSCTL_GET_RETRIEVAL_POINTER_BASE it is returning as INVALID parameter. Any thing am missing here. The file also has been opened with GENERIC_ALL_ACCESS.
RETRIEVAL_POINTER_BASE SectOffset = { 0 };
Status = FltFsControlFile(pVolumeCtx->Instance, pFileObject, FSCTL_GET_RETRIEVAL_POINTER_BASE, NULL, 0, &SectOffset, 8, NULL);
if (Status == STATUS_SUCCESS) { Trace(TRACE_LEVEL_INFORMATION, TRACE_FLAG_FILTERMISC, "SectorOffset %lld", SectOffset.FileAreaOffset.QuadPart); }
Thanks,
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! | ||
Internals & Software Drivers | 19-23 June 2023 | Live, Online |
Writing WDF Drivers | 10-14 July 2023 | Live, Online |
Kernel Debugging | 16-20 October 2023 | Live, Online |
Developing Minifilters | 13-17 November 2023 | Live, Online |
Comments
This one needs to be sent to a volume open and not a file open. You can check the FAT source for anything else it might be:
https://github.com/microsoft/Windows-driver-samples/blob/main/filesys/fastfat/fsctrl.c#L7034
-scott
OSR