Y
Hacker News
new
|
ask
|
show
|
jobs
by
nailer
4516 days ago
CPUID is available in /proc/cpuinfo (or whatever the /sys or modern equivalent is, my Linux is a bit rusty)
Not sure re: UD2 though.
1 comments
nenolod
4516 days ago
The point here is that the information in /proc/cpuinfo is virtualized, and therefore may not reflect reality...
link
nailer
4516 days ago
Would you have to be a kernel module to access the CPU directly?
link
aryastark
4516 days ago
No. All binary programs access the CPU directly. Only certain instructions require being in a certain "ring" (i.e. access level). The CPUID instruction is non-privileged, meaning you can access it from user space.
link