Obtain USB flash drive information in linux

Source: Internet
Author: User
Obtain information about USB flash drive in linux-Linux general technology-Linux programming and kernel. For more information, see the following. The traditional method for getting the information from the insert or unplug USB flash drive is to run the hotplug program at the kernel level. The relevant parameters are passed through the environment variables, and then hotplug notifies other applications concerned with hotplug. This method is somewhat less efficient. Now we use a special type of socket netlink to obtain the USB flash drive information. Netlink is used for asynchronous communication between kernel space and user space.

The following example monitors the hotplug event of the kernel. The source code is as follows:
CODE: # include
# Include
# Include
# Include
# Include
# Include
# Include
# Include
# Include
# Include

# Define UEVENT_BUFFER_SIZE 2048

Static int init_hotplug_sock (void );

Int main (int argc, char * argv [])
{
Int hotplug_sock = init_hotplug_sock ();
While (1 ){
Char buf [UEVENT_BUFFER_SIZE * 2] = {0 };
Recv (hotplug_sock, & buf, sizeof (buf), 0 );
Printf ("% s \ n", buf );

}
Return 0;
}

Static int init_hotplug_sock (void)
{
Struct sockaddr_nl snl;
Const int buffersize = 16*1024*1024;
Int retval;

Memset (& snl, 0x00, sizeof (struct sockaddr_nl ));
Snl. nl_family = AF_NETLINK;
Snl. nl_pid = getpid ();
Snl. nl_groups = 1;
Int hotplug_sock = socket (PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT );

If (hotplug_sock =-1 ){
Printf ("error getting socket: % s", strerror (errno ));
Return-1;
}

/* Set receive buffersize */
Setsockopt (hotplug_sock, SOL_SOCKET, SO_RCVBUFFORCE, & buffersize, sizeof (buffersize ));
Retval = bind (hotplug_sock, (struct sockaddr *) & snl, sizeof (struct sockaddr_nl ));

If (retval <0 ){
Printf ("bind failed: % s", strerror (errno ));
Close (hotplug_sock );
Hotplug_sock =-1;
Return-1;
}

Return hotplug_sock;
}
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.