Now I need to get the status of the NIC(up or down) in the real time. That means I have to catch the kernel interrupt when the NIC up or down in a blocked loop.

The first stupid method from mine is that check on the /sys/class/net/eth0/operstate or use ioctl to get the ifflag every 100ms in a loop. But 100ms is too long for the app to reroute the traffic and also polling kernel every 100ms is not good idea.

Once I notice the inotify function that can monitor the files in a block mode. But unfortunately, it can't monitor the /sys/class/net/eth0/operstate file since /sys is located in the RAM not in the disk.

So, is there any methods except writing a kernel module to catch the NIC interrupt(up/down) in the C program with a block mode?

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

Yes, open a netlink socket and listen to the RTMGRP_LINK (network interface create/delete/up/down events) multicast groups.

The netlink man page here has a specific example to do this.

link|improve this answer
one million thanks! – victor Aug 29 '11 at 5:55
you're welcome! it's customary to mark my answer as the correct one if you think it solved your problem (click the V to the left of the question) – gby Aug 29 '11 at 6:08
I have tried the RTMGET_LINK as the message type and got the information from kernel, the device info is constructed in a ifinfomsg struct. The process is like user->kernel and kernel->user. But what I want is to running a loop in the user space that when the NIC status changed, the kernel will communicate to the user space automatically without the user space send request. Can u present a brief e.g using RTMGRP_LINK? – victor Aug 29 '11 at 7:04
OK! I figure out! Thanks again with the 'V'!! – victor Aug 29 '11 at 7:54
feedback

Have you tried monitoring the /sys/class/net/eth0/operstate file with select or poll function? As far as I can tell sysfs files should behave the same with respect to polling as regular files: whenever a change occurs you should get a notification on the file handle that something has changed and you should be able to respond accordingly.

link|improve this answer
I have no idea whether the select or poll will notify the user space when the file's content has been modified. /sys/class/net/eth0/operstate is the result from the kernel to indicate the NIC up or down. – victor Aug 29 '11 at 5:24
Its a file handle: it should work just fine. bugzilla.redhat.com/show_bug.cgi?id=604887 is an old RHEL bug that shows use of select on a sysfs file: seems reasonable to expect it to work. – Femi Aug 29 '11 at 6:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.