http://msdn.microsoft.com/en-us/library/windows/hardware/hh439665(v=vs.85).aspx

 

Write a very small KMDF driver

9 out of 15 rated this helpful - Rate this topic

To create and test a Kernel-Mode Driver Framework (KMDF) driver, you need the Windows Driver Kit (WDK), which is integrated with Microsoft Visual Studio 2012, and Debugging Tools for Windows. You can use a Microsoft Visual Studio template as a starting point.

To set up the integrated development environment, first install Visual Studio and then install the WDK. You can find information about how to get Visual Studio and the WDK here.

Debugging Tools for Windows is included when you install the WDK. For more information, see Download and Install Debugging Tools for Windows.

Creating and building a driver package

To create and build a small KMDF driver, follow these steps:

  1. Open Microsoft Visual Studio. On the File menu, choose New > Project. The New Project dialog box opens, as shown in the following screen shot.
  2. In the New Project dialog box, in the left pane, locate and select WDF.
  3. In the middle pane, select Kernel Mode Driver, Empty (KMDF).
  4. In the Name field, enter "KmdfSmall" for the project name.
  5. In the Location field, enter the directory where you want to create the new project.
  6. Check Create directory for solution. Click OK.

     

     

    Visual Studio creates two projects and a solution. You can see the solution, the two projects, and the files that belong to each project in the Solution Explorer window, shown in the following screen shot. (If the Solution Explorer window is not visible, choose Solution Explorer from the View menu.) The solution contains a driver project named KmdfSmall and a driver package project named KmdfSmall Package.

  7. In the Solution Explorer window, right-click KmdfSmall and choose Add > New Item.
  8. In the Add New Item dialog box, select C++ File. For Name, enter "Driver.c".

    Note The file name extension is .c, not .cpp.

    Click Add. The Driver.c file is added under Source Files, as shown in the following screen shot.

  9. Open Driver.c, and enter this code:

    C++
    #include <ntddk.h>
    #include <wdf.h>
    DRIVER_INITIALIZE DriverEntry;
    EVT_WDF_DRIVER_DEVICE_ADD KmdfSmallEvtDeviceAdd;
    
    NTSTATUS DriverEntry(_In_ PDRIVER_OBJECT  DriverObject, _In_ PUNICODE_STRING RegistryPath)
    {
        NTSTATUS status;
        WDF_DRIVER_CONFIG config;
     
        KdPrintEx(( DPFLTR_IHVDRIVER_ID, DPFLTR_INFO_LEVEL, "KmdfSmall: DriverEntry\n" ));
        WDF_DRIVER_CONFIG_INIT(&config, KmdfSmallEvtDeviceAdd);
        status = WdfDriverCreate(DriverObject, RegistryPath, WDF_NO_OBJECT_ATTRIBUTES, &config, WDF_NO_HANDLE);
        return status;
    }
    
    NTSTATUS KmdfSmallEvtDeviceAdd(_In_ WDFDRIVER Driver, _Inout_ PWDFDEVICE_INIT DeviceInit)
    {
        NTSTATUS status;
        WDFDEVICE hDevice;
        UNREFERENCED_PARAMETER(Driver);
    
        KdPrintEx(( DPFLTR_IHVDRIVER_ID, DPFLTR_INFO_LEVEL, "KmdfSmall: KmdfSmallEvtDeviceAdd\n" ));
        status = WdfDeviceCreate(&DeviceInit, WDF_NO_OBJECT_ATTRIBUTES, &hDevice);
        return status;
    }
    
    
  10. Save Driver.c.
  11. In the Solution Explorer window, right-click Solution 'KmdfSmall' (2 projects) and choose Configuration Manager. Choose a configuration and platform for both the driver project and the package project. For this exercise, we choose Win7 Debug and x64, as shown in the following screen shot.

  12. In the Solution Explorer window, right-click KmdfSmall and choose Properties. In Wpp Tracing > All Options, set Run Wpp tracing to No. Click OK.
  13. To build your driver and create a driver package, choose Build Solution from the Build menu. Visual Studio displays the build progress in the Output window, as shown in the following screen shot. (If the Output window is not visible, choose Output from the View menu.)

    When you have verified that the solution built successfully, you can close Visual Studio.

  14. To see the built driver package, navigate in Windows Explorer to your KmdfSmall folder, and then to x64\Win7Debug\KmdfSmall Package. The driver package contains several files: KmdfSmall.sys is the kernel-mode driver file, KmdfSmall.inf is an information file that Windows uses when you install the driver, and KmdfSmall.cat is a catalog file that the installer uses to verify the test signature for the driver package. The other file is a co-installer for the Windows Driver Frameworks (WDF). These files are shown in the following screen shot.

Deploying and installing the driver

Typically when you test and debug a driver, the debugger and the driver run on separate computers. The computer that runs the debugger is called the host computer, and the computer that runs the driver is called the target computer. The target computer is also called the test computer.

So far in this exercise, you've used Visual Studio on the host computer to build a driver. Next you need to configure a target computer. To configure a target computer, follow the instructions in Configuring a Computer for Testing and Debugging. After you have configured a target computer, you can deploy, install, load, and debug your driver by following these steps:

  1. On the host computer, open your solution in Visual Studio. One way to do this is to double-click the solution file, KmdfSmall.sln, in your KmdfSmall folder.
  2. In the Solution Explorer window, right-click KmdfSmall Package, and choose Properties.
  3. In the KmdfSmall Package Property Pages window, in the left pane, navigate to Configuration Properties > Driver Install > Deployment, as shown in the following screen shot.
  4. Check Enable deployment, and check Remove previous driver versions before deployment.
  5. For Remote Computer Name, select the name of the computer that you configured for testing and debugging. In this exercise, we use a computer named MyTestComputer.
  6. Select Hardware ID Driver Update, and enter the hardware ID for your driver. For this exercise, the hardware ID is Root\KmdfSmall. Click OK.

    Note

    In this exercise, the hardware ID does not identify a real piece of hardware. It identifies an imaginary device that will be given a place in the device tree as a child of the root node. For real hardware, do not select Hardware ID Driver Update; instead, select Install and Verify.

    You'll see the hardware ID in your driver's information (INF) file. In the Solution Explorer window, navigate to KmdfSmall > Driver Files, and double-click KmdfSmall.inf. The hardware ID is located under [Standard.NT$ARCH$].

    C++
    [Standard.NT$ARCH$]
    %KmdfSmall.DeviceDesc%=KmdfSmall_Device, Root\KmdfSmall
    
    
  7. On the Debug menu, choose Start Debugging, or press F5 on the keyboard.
  8. Visual Studio first displays progress in the Output window. Then it opens the Debugger Immediate window and continues to display progress, as shown in the following screen shot.

    Wait until your driver has been deployed, installed, and loaded on the target computer. This might take a minute or two.

  9. On the Debug menu, choose Break All. The debugger on the host computer will break into the target computer. In the Debugger Immediate window, you can see the kernel debugging command prompt: kd>.

  10. On the Debug menu, choose Windows > Modules. Verify that KmdfSmall.sys is in the list of modules that are loaded on the target computer, as shown in the following screen shot.

  11. At this point, you can experiment with the debugger by entering commands at the kd> prompt. For example, you could try these commands:

  12. To let the target computer run again, choose Continue from the Debug menu.
  13. To stop the debugging session, choose Stop Debugging from the Debug menu.

Related topics

Developing, Testing, and Deploying Drivers
Windows Debugging
Write a UMDF driver based on a template
Write a KMDF driver based on a template
Writing your first driver

Send comments about this topic to Microsoft

Build date: 6/11/2013

Posted by wakira
,