How to use libudev in Linux to get USB device VID and PID

How to use libudev in Linux to get USB device VID and PID

In this article, we will use the libudev library to access the hidraw device. Through the libudev library, we can query the device's vendor ID (VID), product ID (PID), serial number, and device string without opening the device. Furthermore, libudev can tell us the specific location path of the device node in the /dev directory, providing a way for applications to access devices that is robust enough and independent of the system manufacturer. To use the libudev library, you need to include the libudev.h header file and add -ludev when compiling to tell the compiler to link the udev library.

All hidraw devices currently connected to the system will be listed, and their device node path, manufacturer, serial number and other information will be output.

To obtain this information, you need to create a udev_enumerate object with the "hidraw" string as the filter condition.

libudev will return all udev_device objects that match the filter string.

The steps for this example are as follows:

1. Initialize the library and get a struct udev handle

2. Enumerate devices

3. Output the node name of the matching device found, find the starting node of the actual USB device, print out the IDs and serial numbers of the USB device, and finally dereference the device object

4. Dereferencing enumeration objects

5. Dereference udev object

The specific code is as follows:

#include <libudev.h>
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <unistd.h>

int main (void)
{
  struct udev *udev;
  struct udev_enumerate *enumerate;
  struct udev_list_entry *devices, *dev_list_entry;
  struct udev_device *dev;

  /* Create the udev object */
  udev = udev_new();
  if (!udev) {
    printf("Can't create udev\n");
    exit(1);
  }

  /* Create a list of the devices in the 'hidraw' subsystem. */
  enumerate = udev_enumerate_new(udev);
  udev_enumerate_add_match_subsystem(enumerate, "hidraw");
  udev_enumerate_scan_devices(enumerate);
  devices = udev_enumerate_get_list_entry(enumerate);
  /* For each item enumerated, print out its information.
    udev_list_entry_foreach is a macro which expands to
    a loop. The loop will be executed for each member in
    devices, setting dev_list_entry to a list entry
    which contains the device's path in /sys. */
  udev_list_entry_foreach(dev_list_entry, devices) {
    const char *path;

    /* Get the filename of the /sys entry for the device
      and create a udev_device object (dev) representing it */
    path = udev_list_entry_get_name(dev_list_entry);
    dev = udev_device_new_from_syspath(udev, path);

    /* usb_device_get_devnode() returns the path to the device node
      itself in /dev. */
    printf("Device Node Path: %s\n", udev_device_get_devnode(dev));

    /* The device pointed to by dev contains information about
      the hidraw device. In order to get information about the
      USB device, get the parent device with the
      subsystem/devtype pair of "usb"/"usb_device". This will
      be several levels up the tree, but the function will find
      it.*/
    dev = udev_device_get_parent_with_subsystem_devtype(
         dev,
         "USB",
         "usb_device");
    if (!dev) {
      printf("Unable to find parent usb device.");
      exit(1);
    }

    /* From here, we can call get_sysattr_value() for each file
      in the device's /sys entry. The strings passed into these
      functions (idProduct, idVendor, serial, etc.) correspond
      directly to the files in the directory which represents
      the USB device. Note that USB strings are Unicode, UCS2
      encoded, but the strings returned from
      udev_device_get_sysattr_value() are UTF-8 encoded. */
    printf(" VID/PID: %s %s\n",
        udev_device_get_sysattr_value(dev,"idVendor"),
        udev_device_get_sysattr_value(dev, "idProduct"));
    printf(" %s\n %s\n",
        udev_device_get_sysattr_value(dev,"manufacturer"),
        udev_device_get_sysattr_value(dev,"product"));
    printf(" serial: %s\n",
        udev_device_get_sysattr_value(dev, "serial"));
    udev_device_unref(dev);
  }
  /* Free the enumerator object */
  udev_enumerate_unref(enumerate);

  udev_unref(udev);

  return 0;
}

Compile the program:

gcc -Wall -g -o udev_example udev_example.c -ludev

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Implementing Python to monitor USB device signals under Linux
  • Detailed explanation of Linux USB host driver writing
  • arm linux uses alsa driver and uses usb audio device
  • How to use USB mobile storage in Linux
  • Using USB storage in Linux environment
  • In-depth analysis of Linux NFS mechanism through cases
  • Working principle and example analysis of Linux NFS mechanism
  • IntelliJ IDEA remote debugging Linux Java program, find the problem do not just look at the log (recommended)
  • Use of Linux bzip2 command

<<:  Optimized record of using IN data volume in Mysql

>>:  Web interview frequently asked questions: the principles and differences between reflow and repaint

Recommend

How to set an alias for a custom path in Vue

How to configure custom path aliases in Vue In ou...

Summary of important mysql log files

Author: Ding Yi Source: https://chengxuzhixin.com...

Tutorial for installing MySQL 8.0.18 under Windows (Community Edition)

This article briefly introduces how to install My...

How to effectively compress images using JS

Table of contents Preface Conversion relationship...

Web page header optimization suggestions

Logo optimization: 1.The logo image should be as ...

How to set Nginx log printing post request parameters

【Foreword】 The SMS function of our project is to ...

Vue achieves the top effect through v-show

html <div class="totop" v-show="...

Practical Optimization of MySQL Paging Limit

Preface When we use query statements, we often ne...

How to install PostgreSQL11 on CentOS7

Install PostgreSQL 11 on CentOS 7 PostgreSQL: The...

How to use JS to implement waterfall layout of web pages

Table of contents Preface: What is waterfall layo...

About Vue's 4 auxiliary functions of Vuex

Table of contents 1. Auxiliary functions 2. Examp...

vue perfectly realizes el-table column width adaptation

Table of contents background Technical Solution S...

Pure CSS code to achieve drag effect

Table of contents 1. Drag effect example 2. CSS I...