vote up 3 vote down star

I want to be able to inspect my Linux machine hardware in C. How do I get the information that appear in dmesg in C ? For example, for keyboard the message is input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 I want to get in my program the label, AT Translated Set 2, and the path, /devices/platform/i8042/serio0/input/input0. Any idea how to do so ?

amit

flag

0% accept rate

4 Answers

vote up 0 vote down

You would want to use libhal, and connect to the hal daemon. If HAL isn't there, look for a mounted sysfs partition. Check out /sys/devices, or work backwards through /sys/bus.

If neither HAL nor sysfs is available, reconsider your approach or restrict your scope.

link|flag
vote up 0 vote down

It is mostly open-source modules that do the hardware detection. You can look at the source of those modules and cobble together your own app.

Look in the Linux Documentation Project for more info.

Whatever modules you analize, they will all initially use the BIOS to find what hardware it detected, so you could also look for info on low-level BIOS information access.

link|flag
vote up 4 vote down

You can also look at the contents of files in /proc.

/proc/version, /proc/ioports, /proc/iomem, /proc/meminfo, and others have a lot of information in them.

The files under /proc/bus have additional information about the system's hardware devices.

I'd also recommend looking at the source code for usbutils and pciutils for example code to get the output from the lsusb and lspci commands respectively.

link|flag
vote up 0 vote down

It uses the klogctl call.

Best thing is to read the source code yourself, it can be downloaded here: util-linux

link|flag
I do not want the use dmesg. I want to do find the info without query dmesg output – amitp Sep 24 at 14:44

Your Answer

Get an OpenID
or

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