Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C#

Communication with USB Devices using HID Protocol

Rate me:
Please Sign up or sign in to vote.
4.84/5 (39 votes)
26 Sep 2023CPOL2 min read 181.1K   13.6K   143   61
This article will help you to understand how to communicate with the USB devices using WinAPI in C#
This article delves into the utilization of the HID protocol on Windows, allowing you to send and receive HID packets from any connected USB devices directly through an application, without the need for third-party DLLs

Warning

This USB sniffer, because of its user mode method access to hardware, cannot read HID packets with RID at 0, it's due to Windows protection level to prevent keyloggers/spying software.

Image 1

(Do not add 0x, else the application will crash since I haven't added 0x prefix support)

Background

This article was possible with this WDK sample:

Basically, it's just a rewrite of this sample, but in a simple form.

Using the Code

Main code:

C++
void    CheckHIDRead()
{
    HIDReadInfo.Device = new HID_DEVICE[DeviceDiscovery.FindDeviceNumber()];

    DeviceDiscovery.FindKnownHIDDevices(ref HIDReadInfo.Device);

    for (var Index = 0; Index < HIDReadInfo.Device.Length; Index++)
    {
        if (HIDReadInfo.VendorID != 0)
        {
            var Count = 0;

            if (HIDReadInfo.Device[Index].Attributes.VendorID == HIDReadInfo.VendorID)
            {
                Count++;
            }
            if (HIDReadInfo.Device[Index].Attributes.ProductID == HIDReadInfo.ProductID)
            {
                Count++;
            }

            if (Count == 2)
            {
                HIDReadInfo.iDevice = Index;
                HIDReadInfo.Active  = true;

                return;
            }
        }
    }
}
void    CheckHIDWrite()
{
    HIDWriteInfo.Device = new HID_DEVICE[DeviceDiscovery.FindDeviceNumber()];

    DeviceDiscovery.FindKnownHIDDevices(ref HIDWriteInfo.Device);

    for (var Index = 0; Index < HIDWriteInfo.Device.Length; Index++)
    {
        if (HIDWriteInfo.VendorID != 0)
        {
            var Count = 0;

            if (HIDWriteInfo.Device[Index].Attributes.VendorID == HIDWriteInfo.VendorID)
            {
                Count++;
            }
            if (HIDWriteInfo.Device[Index].Attributes.ProductID == HIDWriteInfo.ProductID)
            {
                Count++;
            }
            if (HIDWriteInfo.Device[Index].Caps.UsagePage == HIDWriteInfo.UsagePage)
            {
                Count++;
            }
            if (HIDWriteInfo.Device[Index].Caps.Usage == HIDWriteInfo.Usage)
            {
                Count++;
            }

            if (Count == 4)
            {
                HIDWriteInfo.iDevice = Index;
                HIDWriteInfo.Active  = true;

                return;
            }
        }
    }
}

CheckHIDRead() and CheckHIDWrite() are used for checking if we have press Read or Send button and if entered data (VID-PID-Usa...) correspond to a connected USB device.

This function returns the number of USB HIDs in order to scan them.

C++
Int32   FindDeviceNumber()
{
    var hidGuid        = new Guid();
    var deviceInfoData = new SP_DEVICE_INTERFACE_DATA();

    HidD_GetHidGuid(ref hidGuid);

    //
    // Open a handle to the plug and play dev node.
    //
    SetupDiDestroyDeviceInfoList(hardwareDeviceInfo);
    hardwareDeviceInfo    = SetupDiGetClassDevs(ref hidGuid, IntPtr.Zero, 
                            IntPtr.Zero, DIGCF_PRESENT | DIGCF_DEVICEINTERFACE);
    deviceInfoData.cbSize = Marshal.SizeOf(typeof(SP_DEVICE_INTERFACE_DATA));

    var Index = 0;
    while (SetupDiEnumDeviceInterfaces(hardwareDeviceInfo, IntPtr.Zero, 
                                       ref hidGuid, Index, ref deviceInfoData))
    {
        Index++;
    }

    return (Index);
}

This function returns a data structure of each USB device needed for HIDRead() and HIDWrite().

C++
static public void FindKnownHIDDevices(ref HID_DEVICE[] HID_Devices)
{
    var hidGuid                 = new Guid();
    var deviceInfoData          = new SP_DEVICE_INTERFACE_DATA();
    var functionClassDeviceData = new SP_DEVICE_INTERFACE_DETAIL_DATA();

    Hid.HidD_GetHidGuid(ref hidGuid);

    //
    // Open a handle to the plug and play dev node.
    //
    SetupDiDestroyDeviceInfoList(hardwareDeviceInfo);
    hardwareDeviceInfo    = SetupDiGetClassDevs(ref hidGuid, IntPtr.Zero, IntPtr.Zero,
                                                DIGCF_PRESENT | DIGCF_DEVICEINTERFACE);
    deviceInfoData.cbSize = Marshal.SizeOf(typeof(SP_DEVICE_INTERFACE_DATA));

    for (var iHIDD = 0; iHIDD < HID_Devices.Length; iHIDD++)
    {
        SetupDiEnumDeviceInterfaces(hardwareDeviceInfo, IntPtr.Zero, ref hidGuid, iHIDD, ref deviceInfoData);

        //
        // Allocate a function class device data structure to receive the
        // goods about this particular device.
        //
        var RequiredLength = 0;
        SetupDiGetDeviceInterfaceDetail(hardwareDeviceInfo, ref deviceInfoData,
                                        IntPtr.Zero, 0, ref RequiredLength, IntPtr.Zero);

        if (IntPtr.Size == 8)
        {
            functionClassDeviceData.cbSize = 8;
        }
        else if (IntPtr.Size == 4)
        {
            functionClassDeviceData.cbSize = 5;
        }

        //
        // Retrieve the information from Plug and Play.
        //
        SetupDiGetDeviceInterfaceDetail(hardwareDeviceInfo, ref deviceInfoData,
                                        ref functionClassDeviceData, RequiredLength,
                                        ref RequiredLength, IntPtr.Zero);

        //
        // Open device with just generic query abilities to begin with
        //
        OpenHIDDevice(functionClassDeviceData.DevicePath, ref HID_Devices, iHIDD);
    }
}

This function extend FindKnownHIDDevices().

C++
static void OpenHIDDevice(String DevicePath, ref HID_DEVICE[] HID_Device, Int32 iHIDD)
{
    //
    // RoutineDescription:
    // Given the HardwareDeviceInfo, representing a handle to the plug and
    // play information, and deviceInfoData, representing a specific hid device,
    // open that device and fill in all the relivant information in the given
    // HID_DEVICE structure.
    //
    HID_Device[iHIDD].DevicePath = DevicePath;

    //
    // The hid.dll api's do not pass the overlapped structure into deviceiocontrol
    // so to use them we must have a non overlapped device.  If the request is for
    // an overlapped device we will close the device below and get a handle to an
    // overlapped device
    //
    CloseHandle(HID_Device[iHIDD].Handle);
    HID_Device[iHIDD].Handle     = CreateFile(HID_Device[iHIDD].DevicePath,
                                              FileAccess.ReadWrite, FileShare.ReadWrite,
                                              0, FileMode.Open, FileOptions.None,
                                              IntPtr.Zero);
    HID_Device[iHIDD].Caps       = new HIDP_CAPS();
    HID_Device[iHIDD].Attributes = new HIDD_ATTRIBUTES();

    //
    // If the device was not opened as overlapped, then fill in the rest of the
    // HID_Device structure.  However, if opened as overlapped, this handle cannot
    // be used in the calls to the HidD_ exported functions since each of these
    // functions does synchronous I/O.
    //
    Hid.HidD_FreePreparsedData(ref HID_Device[iHIDD].Ppd);
    HID_Device[iHIDD].Ppd = IntPtr.Zero;

    Hid.HidD_GetPreparsedData(HID_Device[iHIDD].Handle, ref HID_Device[iHIDD].Ppd);
    Hid.HidD_GetAttributes   (HID_Device[iHIDD].Handle, ref HID_Device[iHIDD].Attributes);
    Hid.HidP_GetCaps         (HID_Device[iHIDD].Ppd   , ref HID_Device[iHIDD].Caps);

    var Buffer = Marshal.AllocHGlobal(126);
    {
        Hid.HidD_GetManufacturerString(HID_Device[iHIDD].Handle, Buffer, 126);
        HID_Device[iHIDD].Manufacturer = Marshal.PtrToStringAuto(Buffer);

        Hid.HidD_GetProductString(HID_Device[iHIDD].Handle, Buffer, 126);
        HID_Device[iHIDD].Product = Marshal.PtrToStringAuto(Buffer);

        Hid.HidD_GetSerialNumberString(HID_Device[iHIDD].Handle, Buffer, 126);
        HID_Device[iHIDD].SerialNumber = Marshal.PtrToStructure<Int32>(Buffer);
    }
    Marshal.FreeHGlobal(Buffer);
}

Then come two important functions that will make you able to read or send HID packets between a USB HID and a PC.

C++
static async public void BeginAsyncRead(object? state)
{
    //
    // Read what the USB device has sent to the PC and store the result inside HID_Report[]
    //
    if (HIDReadInfo.Active == true)
    {
        var Device       = HIDReadInfo.Device[HIDReadInfo.iDevice];
        var ReportBuffer = new Byte[Device.Caps.InputReportByteLength];

        if (ReportBuffer.Length > 0)
        {
            await Task.Run(() =>
            {
                var NumberOfBytesRead = 0U;
                Kernel32.ReadFile(Device.Handle, ReportBuffer, Device.Caps.InputReportByteLength, ref NumberOfBytesRead, IntPtr.Zero);
            });

            HIDReadInfo.ReportData = new List<Byte>(ReportBuffer);
        }
    }
}

static public void BeginSyncSend(object? state)
{
    //
    // Sent to the USB device what is stored inside WriteData[]
    //
    if (HIDWriteInfo.Done is false && HIDWriteInfo.Active is true)
    {
        var Device = HIDWriteInfo.Device[HIDWriteInfo.iDevice];
        var ReportBuffer = new Byte[Device.Caps.OutputReportByteLength];

        if (ReportBuffer.Length > 0)
        {
            //
            // Add ReportID to the first byte of HID_ReportContent
            //
            ReportBuffer[0] = HIDWriteInfo.ReportID;

            //
            // Copy ReportData into HID_ReportContent starting from index 1
            //
            Array.Copy(HIDWriteInfo.ReportData, 0, ReportBuffer, 1, ReportBuffer.Length - 1);

            var varA = 0U;
            Kernel32.WriteFile(Device.Handle, ReportBuffer, Device.Caps.OutputReportByteLength, ref varA, IntPtr.Zero);
        }

        HIDWriteInfo.Done = true;
    }
}

To be able to do that, you'd need to set the following data before:

  • VendorID
  • ProductID
  • UsagePage
  • Usage
  • ReportID

But be careful, you'd need to set the correct values for all those parameters, if one is false, you will not be able to send HID packets.

To read HID packets, you just need:

  • VendorID
  • ProductID

Also, you cannot read if the USB device cannot send data and you cannot write if the USB device cannot read data (defined inside its HID Report Descriptor).

A device is defined by its VendorID:ProductID but shrunk into several functions defined by its UsagePage, Usage and ReportID.

As an example, the first function of a mouse is to send coordinate data, so you can read data from PC and the second function is to receive mouse button customization data, so you can send data from PC.

And to set those variables, you need to read the HID Descriptor of the USB devices that you target, it can be retrieved with a USB sniffer as https://github.com/djpnewton/busdog or http://www.usblyzer.com/usb-analysis-features.htm

The HID Descriptor usually start with 0x05, 0x01.

And to learn to read HID Descriptor, use this tool: http://www.usb.org/developers/hidpage#HID Descriptor Tool and https://docs.kernel.org/hid/hidintro.html

Because this code is just a rewrite of an old C code from the 90s, it works on all Windows Versions.

History

  • 2nd October, 2019: Initial version
  • 10th September, 2023: Project upgrade from Windows Forms .NET framework to WPF .NET Core

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
France France
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
AnswerRe: what is Report ID (RID) Pin
Orphraie6-Jun-21 5:35
Orphraie6-Jun-21 5:35 
QuestionIt does not work with HID barcode reader Pin
Member 146350394-Oct-20 18:33
Member 146350394-Oct-20 18:33 
AnswerRe: It does not work with HID barcode reader Pin
Orphraie5-Oct-20 5:25
Orphraie5-Oct-20 5:25 
QuestionGreat tutorial about USB HID Pin
Potter6830-Aug-20 7:24
Potter6830-Aug-20 7:24 
QuestionControlling serial and keyboard emulated devices Pin
uzayim27-Jul-20 12:24
uzayim27-Jul-20 12:24 
AnswerRe: Controlling serial and keyboard emulated devices Pin
Orphraie27-Jul-20 22:48
Orphraie27-Jul-20 22:48 
PraiseThank you for this +5 Pin
honey the codewitch23-Jul-20 21:12
mvahoney the codewitch23-Jul-20 21:12 
QuestionI think that I'm running into "cannot read HID packets with RID at 0"... can you please elaborate...? Pin
crn1147-Jun-20 7:34
crn1147-Jun-20 7:34 
What does "cannot read HID packets with RID at 0" mean? What are HID packets with a RID of 0? What is a RID and what is a HID packet and how do I know if my device is doing this and is there a way to read the data even if this is the case? (Maybe using RAW IMPUT or a keyboard hook technoque?)
AnswerRe: I think that I'm running into "cannot read HID packets with RID at 0"... can you please elaborate...? Pin
Orphraie14-Jun-20 22:34
Orphraie14-Jun-20 22:34 
AnswerRe: I think that I'm running into "cannot read HID packets with RID at 0"... can you please elaborate...? Pin
Orphraie14-Jun-20 22:52
Orphraie14-Jun-20 22:52 
QuestionI have a VID and a PID, I enter it and hit submit to read... only see zeros in window... what am I doing wrong? Pin
crn1146-Jun-20 3:00
crn1146-Jun-20 3:00 
AnswerRe: I have a VID and a PID, I enter it and hit submit to read... only see zeros in window... what am I doing wrong? Pin
Orphraie14-Jun-20 22:29
Orphraie14-Jun-20 22:29 
QuestionComminucate with KVM Pin
vjaggi12-May-20 5:33
vjaggi12-May-20 5:33 
AnswerRe: Comminucate with KVM Pin
Orphraie14-May-20 17:36
Orphraie14-May-20 17:36 
QuestionLooks Good! Pin
glennPattonWork310-May-20 23:10
professionalglennPattonWork310-May-20 23:10 
Questionneeds to run as Administrator Pin
Member 144722843-Mar-20 7:34
Member 144722843-Mar-20 7:34 
AnswerRe: needs to run as Administrator Pin
Orphraie9-May-20 8:08
Orphraie9-May-20 8:08 
QuestionKeyboard communication Pin
Paul Effect[the real one]12-Nov-19 2:53
Paul Effect[the real one]12-Nov-19 2:53 
AnswerRe: Keyboard communication Pin
Orphraie24-Nov-19 13:05
Orphraie24-Nov-19 13:05 
GeneralRe: Keyboard communication Pin
Paul Effect[the real one]25-Nov-19 11:24
Paul Effect[the real one]25-Nov-19 11:24 
GeneralRe: Keyboard communication Pin
Orphraie25-Nov-19 11:35
Orphraie25-Nov-19 11:35 
GeneralRe: Keyboard communication Pin
Orphraie25-Nov-19 11:53
Orphraie25-Nov-19 11:53 
GeneralRe: Keyboard communication Pin
Paul Effect[the real one]10-Dec-19 12:22
Paul Effect[the real one]10-Dec-19 12:22 
QuestionAnd without using DLL, just an application is needed. Pin
Member 137679925-Oct-19 1:27
Member 137679925-Oct-19 1:27 
AnswerRe: And without using DLL, just an application is needed. Pin
Orphraie24-Nov-19 12:59
Orphraie24-Nov-19 12:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.