vote up 2 vote down star
1

In VMs OS-provided real-time scheduling tends not to be reliable. For my application I'd like to be able to detect whether I am running on a VM or not (Linux-only).

So I am looking for a nice way to detect (in C) whether I am in a virtualized environment. Depending on the VM used there seem to be various DMI and CPUID strings in use. I am primarily interested in a generic way though.

Anyone got any ideas?

flag
1  
Only heuristics exist. Accept it and move on. – ephemient Nov 4 at 22:52

5 Answers

vote up 3 vote down

facter and imvirt will both detect some virtualizations

link|flag
and there seems to be at least a third tool for this: virt-what take a look at how those project do it – ptman Nov 4 at 21:54
And neither of those are really nice to use from C – unknown (google) Nov 4 at 22:05
True, that's why I added "take a look at how those project do it" – ptman Nov 5 at 8:14
vote up 2 vote down

It seems that the real question you want answered is "Is real-time scheduling working unreliably?". So why not write a test that checks for that?

link|flag
vote up 1 vote down

I think you're going to have to do this heuristically. Part of the goal of virtualization products is to make the vm instance believe it's running on real hardware. Each virtualization product is going to simulate specific hardware, so my solution would be to make a library that you can ask "am I on a vm" and just maintain under the hood some search for evidence of vm presence. This way you still remain relatively isolated from the nitty gritty of detecting the vm.

link|flag
vote up 0 vote down

Look for specific devices that only show up while you're in a VM. For instance, a display device marked "Parallels" or "VMWare" might be a good indication that you're in a VM.

Of course this only works for VMs that you know about and thus isn't very generic.

link|flag
DMI and CPUID are more useful for that kind of stuff. But those commands already suck necause they are a heuristic. – unknown (google) Nov 4 at 22:06
vote up 0 vote down

Here is a code example: http://www.codeproject.com/KB/system/VmDetect.aspx , http://mark.michaelis.net/Blog/HowToDetectVirtualMachineExecution.aspx (but this is from year 2005)

And in some magazine I've read that virtual machine can be detected with the hardware set because VM use the limited set of emulated hardware.

link|flag

Your Answer

Get an OpenID
or

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