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 use FltGetFileNameInformation(FLT_FILE_NAME_NORMALIZED | FLT_FILE_NAME_QUERY_DEFAULT) to get normalized path for network files on SMB shares on post-create.
Client - 10x64 21H1. Servers - another 10x64 21H1 and SMB share on my router.
I am opening files by short name and FltGetFileNameInformation returns normalized name successfully every time.
However, MSDN states that "Starting in Windows 10, you cannot query normalized file names on a remote volume because the Server Message Block (SMB) Protocol does not support queries for normalized paths."
Am I just being lucky ? Have I misunderstood MSDN ?
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! | ||
Writing WDF Drivers | 12 September 2022 | Live, Online |
Internals & Software Drivers | 23 October 2022 | Live, Online |
Kernel Debugging | 14 November 2022 | Live, Online |
Developing Minifilters | 5 December 2022 | Live, Online |
Comments
The thing is, truely from build 1709, several API can no longer open files
on some remote servers in some conditions. Those APIs are used by FltMgr to
open folders for the query, and thus name normalization will fail.
Before 1709 THESE WORKED. I can't think what prick made another FGFNI bug
and why now
Anyway, try symlinks on 1709+ and you will find FGFNI failing soon.
For renames this is even worse.
That's the simplest condition, but there are others, and yes, they do
relate to W10 only:(
Kind regards, Dejan.
https://www.alfasp.com
Thank you Dejan ! Good to know