KVM, QEMU, and kernel project management
KVM, QEMU, and kernel project management
Posted Mar 27, 2010 2:12 UTC (Sat) by dlang (guest, #313)In reply to: KVM, QEMU, and kernel project management by rahvin
Parent article: KVM, QEMU, and kernel project management
I see it that the host does not want to trust the guest, but to a large extent the guest has no choice but to trust the host. There are just too many things that the host can do to the guest.
Remember the host has control of your cpu, your ram, and all your I/O
If the host really wants to it can search through the physical ram looking for 'interesting' data in the guest. the guest can try to keep things encrypted, but it has to store the encryption key somewhere, and wherever it is stored the host can get at it.
you can try to lock down the host to prevent it from getting at part of it's own resources (this is the type of thing that SELinux is designed for), but doing this completely is a very hard task, if it's even possible.
