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/
The problem:
There are two KMDF drivers: driverA and driverB. These drivers do not belong to the same driver stack.
The driverA creates device, this device creates interface (using WdfDeviceCreateDeviceInterface()
), using specific GUID.
The driverB needs to be notified on each change of the state of this interface, even if it was created before driverB was loaded.
The driverB knows the interface GUID only.
How to do it in WDF/KMDF way?
I found a solution for WDM drivers in this article: Buddy Drivers - Methods for Driver to Driver Communication and it uses IoRegisterPlugPlayNotification()
function call for registering notification handler:
status = IoRegisterPlugPlayNotification( EventCategoryDeviceInterfaceChange, PNPNOTIFY_DEVICE_INTERFACE_INCLUDE_EXISTING_INTERFACES, (LPGUID)&GUID_DRIVERA_INTERFACE, DeviceObject->DriverObject, PlugPlayCallback, DeviceObject, &devExt->NotificationEntry);
Is there any WDF equivalent for: IoRegisterPlugPlayNotification(EventCategoryDeviceInterfaceChange, ...)
?
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 | 16-20 October 2023 | Live, Online |
Developing Minifilters | 13-17 November 2023 | Live, Online |
Internals & Software Drivers | 4-8 Dec 2023 | Live, Online |
Writing WDF Drivers | 10-14 July 2023 | Live, Online |
Comments
Why not just use the WDM call (in your WDF driver)?
Peter
Peter Viscarola
OSR
@OSRDrivers
Good question

Mainly because I see WDF as a tool that facilitates working on drivers, and I intuitively expect that everything will be easier
But more seriously, the main difficulty associated with using the IoRegisterPlugPlayNotification() function is that the callback cannot directly open a device - it is necessary to use the WorkItem mechanism. This is not a big problem, but I was hoping that WDF provides an equivalent function without such a limitation.
It's safe to open from within the callback routine as long as the target driver doesn't trigger synchronous PnP operations from within its IRP_MJ_CREATE/EvtDeviceFileCreate callback. There used to be a case where an inbox driver stack did this (HID maybe?) and the documentation turned that into a generic statement of "don't do it" (which we also perpetuated for a while)
-scott
OSR
@Scott_Noone_(OSR) - thank you for the info, it will be useful for me probably