We've got a distribution of Xen 4.4/ARMv7/ubuntu for anyone curious to try it out on a cheapo Cubieboard2 or Cubietruck over at https://github.com/mirage/xen-arm-builder (with prebuilt SDcard images at http://blobs.openmirage.org)
Xen hypervisor memory corruption due to x86 emulator flaw
31–39 of 39 posts
Re: Xen hypervisor memory corruption due to x86 emulator flaw
#32Well, guess my Linode's getting rebooted again.
If they have one spare xen host they can live migrate all guests from one host to the spare, patch the original host, reboot, then live migrate the spare's guests back to the original, and repeat. Patching them all and rebooting them all at once might be quicker though.
http://docs.vmd.citrix.com/XenServer/5.0.0/1.0/en_gb/install...
Re: Xen hypervisor memory corruption due to x86 emulator flaw
#33Re: Xen hypervisor memory corruption due to x86 emulator flaw
#34This bug's existence and its patch have already made some worried. From the Qubes OS developers: [1] Additional thoughts by Qubes Security Team =========================================== We see several problems that concern us about this vulnerability and patching process: 1) It seems really difficult to understand why would anybody design a structure like the one shown above, which uses a union to store two, RADICA…
Re: Xen hypervisor memory corruption due to x86 emulator flaw
#35I wrote a blogpost with some more details about the bug, which you can find here: http://www.insinuator.net/2015/03/xen-xsa-123/
Re: Xen hypervisor memory corruption due to x86 emulator flaw
#36Stupid question: Why does Xen need to emulate x86?
PVH fixes it so you don't need emulation in Linux, but it's a brand new feature and probably not production quality. Read this (it's not too technical) http://wiki.xen.org/wiki/Virtualization_Spectrum
As of this writing, Xen 4.4 and Linux 3.14 have experimental support for PVH DomUs and Xen 4.5 has support for PVH Dom0s. PVH allows practically native-hardware-speed guests without any emulation.
Re: Xen hypervisor memory corruption due to x86 emulator flaw
#37Earlier quoted context omitted.
> Just like any car can crash. However some cars are more dangerous than other cars, just as some programming languages are more likely to produce insecure code than other programming languages. > and the alternatives are designed from the ground up with security in mind The RMS Titanic was billed as one of the safest ships on the sea -- yet due to poorly implemented protocols and practices, negligent leadership, and…
The RMS Titanic sunk, but the engineers made it much harder to sink than ocean liners which preceded it. C/C++ starts you in a position where it is extremely easy to write insecure code. Even a competent coder can produce insecure code in either language without a great deal of effort or stupidity on their part. Other languages aren't "unsinkable" to come back to the Titanic, but they make it harder to sink, and the…
It's worth mentioning K&R, which used to be where people learn C, has a huge number of instances of very risky practices.
Re: Xen hypervisor memory corruption due to x86 emulator flaw
#38Earlier quoted context omitted.
> We still believe Xen is currently the most secure hypervisor available, mostly because of its unique architecture features, that are lacking in any other product we are aware of. Does anyone know why KVM would be considered less secure than Xen?
(from memory, there are some design docs for Qubes OS floating around that discuss this) Xen is relatively small and contained, KVM sits on top of a full Linux kernel and potentially can access all of it, making it harder to tell what is accessible/exploitable and what is not. KVM also uses Qemu running as a process on the host linux for interfacing the VM, again exposing more potential attack surface. And I think Xe…
Xen allows for creating an entire stub domU solely for running the driver, then giving a running guest access via ring buffer in a shared memory segment.
(So, yep, you're correct in your thinking)
Re: Xen hypervisor memory corruption due to x86 emulator flaw
#39Stupid question: Why does Xen need to emulate x86?
tl;dr, Windows. But also various limitations of how PV or HVM hosts work. PVH fixes it so you don't need emulation in Linux, but it's a brand new feature and probably not production quality. Read this (it's not too technical) http://wiki.xen.org/wiki/Virtualization_Spectrum As of this writing, Xen 4.4 and Linux 3.14 have experimental support for PVH DomUs and Xen 4.5 has support for PVH Dom0s. PVH allows practically…
Local APIC emulation is fully accelerated on modern processors, which is a big win for any use case that is heavy on interrupts.