Windows Driver Foundation (WDF) is a set of Microsoft tools that aid in the creation of device drivers for Windows 2000 and later versions of Windows

learn more… | top users | synonyms

1
vote
1answer
39 views

What is the difference between a WDM driver, a KMDF driver and a UMDF driver?

When creating a Windows Driver project in Visual Studio 2012, you have many different options to choose from. There's a page on MSDN that helps you with choosing the correct driver model for your ...
4
votes
5answers
194 views

Restrict access to audio device under Windows XP-8 to specific application/user

I have written an c# 4.0 application that analyses the microphone input and records DTMF tones that represent credit card numbers entered by our clients. This all works well, but since we are working ...
0
votes
0answers
43 views

MSI-X interrupts in WDF

I'm having a lot of trouble getting MSI-X interrupts implemented in a Windows bus driver we're writing in WDF / KMDF. I've read the MSDN documentation, and there's not really a lot of helpful info ...
1
vote
1answer
36 views

When does Windows cancel an in-flight WDF request?

I am writing a Windows device driver using WDF (KMDF) for a USB3 device that transfers data in large chunks at a time. I've written a user-level application that tests this functionality, and for the ...
0
votes
1answer
107 views

WDF Coinstaller issue

I'm having problem installing my KMDF 1.9 driver on a 32-bit Vista machine running KMDF 1.5. I was hoping the coinstaller should update the Vista machine to KMDF 1.9. But it does not. What have I ...
0
votes
1answer
107 views

Generate kernel-level mouse input in Windows

I would like to have an application sending data to control the mouse system-wide, like a real mouse. Based on the information I researched this design needs a driver, which reads data written by the ...
7
votes
1answer
101 views

Is it possible to retrieve the CPU that created a WDFREQUEST?

I am trying to affinitise the completion of CompleteRequest to the CPU that originally issued the request. Is there a way to retrieve the CPU that issued the request during FdoDeviceControl or any ...
-2
votes
1answer
294 views

WIndows driver to copy from user space to kernel space [closed]

New to Windows drivers . Read some stuff. Reasoning based on thatBased on that - WIndows driver to copy from user space to kernel space (known physical memory location). 1. What type of driver should ...
0
votes
1answer
47 views

WdfRequestIsCanceled Vs WdfRequestMarkCancelable

Can anyone list the pros and cons of using below two approaches for IO cancellation in wdf? 1) mark request cancellable with WdfRequestMarkCancelable (). Provide a cancel routine and synchronize the ...
0
votes
1answer
68 views

How does a wdf driver handle device's re-power-on event?

I've taken over the maintenance job of a device driver from another guy recently. The driver works with a pci-e board. when the system starts up, the driver will allocate a 128Mb memory, and then set ...
1
vote
2answers
184 views

Why does DeviceIoControl prepend 12 bytes of information to the user-provided input buffer?

I hope this does not turn out to be a totally braindead question. I am editing a template WDF Windows USB device driver to send formatted data to one of the device's bulk out pipes; the data has to ...
0
votes
1answer
207 views

how to : do 2 way communication between user mode and kernel mode

i have written a driver .. which has extracted a value from IRP buffer . now based on this keyword i have to pass o fail the irp ..... so i need to communicate with the database which is not easy from ...
0
votes
2answers
190 views

Waiting for vertical blank in kernel mode?

I'm writing a driver that needs synchronization with vertical blank interrupt to send some data down the USB pipe. In user-mode there are Direct X functions available for this like ...
0
votes
1answer
125 views

CreateFile doesn't prevents other processes from opening my device

I'm using CreateFile to open a connection to my USB hardware. If I have two (or more) hardwares connected to the PC I would like to prevent several instances (different PIDs) of my PC-application to ...
0
votes
1answer
278 views

Driver's uninstall button is disabled

I've written my fairly simple first driver for a virtual device. It also has a .inf and I install the driver using devcon.exe. It install fine and functions properly but my problem is when I try to ...
0
votes
1answer
236 views

Creating WDF read request out of nothing?

Background: I'm writing a virtual USB to RS232 driver. But since my hardware is a USB-chip (PDIUSBD12) and not a pure UART chip the driver needs some special tweaks. A PC using something like the ...
0
votes
1answer
348 views

Multiple device driver? (KMDF/WDF)

I've just written a KMDF USB driver. Now I want to connect several (up to at least four) devices to the PC. Where do I start? I've noted that when I connect the second device to the PC it use the very ...
12
votes
1answer
1k views

I want to create a minifilter driver to transparently redirect disk i/o, but I'm having trouble getting started

A project I'm working on at the moment requires the implementation of a copy-on-w/m mechanism which will be used to redirect disk i/o in a similar manner to Deep Freeze or Sandboxie, on Windows XP. If ...
2
votes
1answer
1k views

WDF UMDF driver install problem in windows 7 32 bit

I have a simple user mode usb driver that is installing and working fine in Windows XP 32 bit and Windows 7 64 bit, but for some reason fails to install correctly in Windows 7 32 bit. Do I need 2 ...
1
vote
1answer
385 views

Windows sample driver builds properly but will not install,

I don't know if this is the right place to ask, since its technically not a programming question, but it conecerns driver development so anyway: For a school assignment I have to take a look at the ...
0
votes
1answer
111 views

UMDF- lock device in application level

I'm writing a simple USB driver for our device using UMDF over WinUsb. The driver can be used by multiple application concurrently. I need to achieve a custom locking system that the ...
1
vote
1answer
293 views

WDF EvtIoDeviceControl buffer lengths

When handling DeviceIoControl requests in a WDF driver what is the correct way to get the size of the input/output buffer. It seems to be both passed as a parameter: VOID EvtIoDeviceControl(IN ...
1
vote
1answer
271 views

Two Spinlocks on same processor?

Can two CPUs hold two "different" spin locks simultaneously at same time? So...does this mean: a sigle(uniprocessor) CPU cannot hold two "different" spinlocks at the same time? So...does this mean: ...
6
votes
1answer
1k views

Sending IOCTL from IRQL=DISPATCH_LEVEL (KbFilter/KMDF)

I am using the KbFilter example in the WDK, trying to send an IOCTL in a function that is called by KbFilter_ServiceCallback and therefore is executed at DISPATCH_LEVEL. The function just has to send ...
3
votes
2answers
3k views

Compiling an application that uses WinUsb

I am in the process of writing an application to communicate with Usb devices using WinUsb.dll. This is a user-mode library that allows communication with a device through winusb.sys installed as its ...