I need to get a label for specific device using c/c++ (and no d-bus) in linux. The problem is that i can't just open device and read it's information (for extN it is very easy to get label from device) because reading from /dev/xxx requires root privileges.

link|improve this question
2  
A program running with root privileges is still "user space" (not "kernel space"). – David Gelhar Nov 6 '10 at 11:57
feedback

2 Answers

libblkid

link|improve this answer
Can you give me example? Seems i need blkid_evaluate_tag function, but what should i pass as it's second parameter? – ABBAPOH Nov 6 '10 at 12:12
I... don't really know. It's probably best to look at the source for blkid and see how it does things. – Ignacio Vazquez-Abrams Nov 6 '10 at 12:16
Usually this is my second step. The first is to get sure it does what he should. Anyway, thank you for this library – ABBAPOH Nov 6 '10 at 12:23
Link needs to be updated, Related Question – Joe Feb 7 at 15:04
It would still be nice to have something more than a bare link. – Michael Myers Feb 7 at 17:59
feedback

I think in most distributions now you have

/dev/disk/by-label/

which is filled with symlinks that point to the real device.

link|improve this answer
Well, it is not the best way i think... As i know, these folders requires udev in system. Maybe it's better to use libudev? However i didn't find proper functions in it's documentation. – ABBAPOH Nov 6 '10 at 12:13
If your code is not needed early in the boot process, I think this usually works. I have no experience with libudev, but I guess if you want to have access to the raw device, you'd have to have root access, no? The advantage of this directory here is that you see exactly what the system wants to export to user space. – Jens Gustedt Nov 6 '10 at 15:29
feedback

Your Answer

 
or
required, but never shown

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