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'm trying to apply FltGetFileNameInformation when opening MailSlot, as a result I get STATUS_OBJECT_NAME_INVALID
Can you tell me what it may be related to?
This code works with NamedPipe
PFLT_FILE_NAME_INFORMATION NameInformation; status = FltGetFileNameInformation( Data, FLT_FILE_NAME_NORMALIZED | FLT_FILE_NAME_QUERY_DEFAULT, &NameInformation);
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 | 7 February 2022 | Live, Online |
Kernel Debugging | 21 March 2022 | Live, Online |
Developing Minifilters | 23 May 2022 | Live, Online |
Writing WDF Drivers | 12 September 2022 | Live, Online |
Comments
In user space app call
Okey, I solved wthis
MailSlots unsupport FLT_FILE_NAME_NORMALIZED
It is written about this here https://community.osr.com/discussion/71813/re-fltgetfilenameinformation-returns-invalid-device-request-for-named
PFLT_FILE_NAME_INFORMATION NameInformation;
Admin, can you close discussion?