QEMU
QEMU is a free and open-source emulator and virtualizer that can perform hardware virtualization.
QEMU is a hosted virtual machine monitor: it emulates the machine's processor through dynamic binary translation and provides a set of different hardware and device models for the machine, enabling it to run a variety of guest operating systems. It also can be used with KVM to run virtual machines at near-native speed. QEMU can also do emulation for user-level processes, allowing applications compiled for one architecture to run on another.
Licensing
QEMU was written by Fabrice Bellard and is free software, mainly licensed under the GNU General Public License. Various parts are released under the BSD license, GNU Lesser General Public License or other GPL-compatible licenses.Operating modes
QEMU has multiple operating modes:;User-mode emulation: In this mode QEMU runs single Linux or Darwin/macOS programs that were compiled for a different instruction set. System calls are thunked for endianness and for 32/64 bit mismatches. Fast cross-compilation and cross-debugging are the main targets for user-mode emulation.
;System emulation: In this mode QEMU emulates a full computer system, including peripherals. It can be used to provide virtual hosting of several virtual computers on a single computer. QEMU can boot many guest operating systems, including Linux, Solaris, Microsoft Windows, DOS, and BSD; it supports emulating several instruction sets, including x86, MIPS, 32-bit ARMv7, ARMv8, PowerPC, SPARC, ETRAX CRIS and MicroBlaze.
;KVM Hosting: Here QEMU deals with the setting up and migration of KVM images. It is still involved in the emulation of hardware, but the execution of the guest is done by KVM as requested by QEMU.
;Xen Hosting: QEMU is involved only in the emulation of hardware; the execution of the guest is done within Xen and is totally hidden from QEMU.
Features
QEMU can save and restore the state of the virtual machine with all programs running. Guest operating systems do not need patching in order to run inside QEMU.QEMU supports the emulation of various architectures, including:
- IA-32 PCs
- x86-64 PCs
- MIPS64 Release 6 and earlier variants
- Sun's SPARC sun4m
- Sun's SPARC sun4u
- ARM development boards
- SH4 SHIX board
- PowerPC
- ETRAX CRIS
- MicroBlaze
- RISC-V
Virtual disk images can be stored in a special format that only takes up as much disk space as the guest OS actually uses. This way, an emulated 120 GB disk may occupy only a few hundred megabytes on the host. The QCOW2 format also allows the creation of overlay images that record the difference from another base image file. This provides the possibility for reverting the emulated disk's contents to an earlier state. For example, a base image could hold a fresh install of an operating system that is known to work, and the overlay images are used. Should the guest system become unusable, the user can delete the overlay and use an earlier emulated disk image.
QEMU can emulate network cards which share the host system's connectivity by doing network address translation, effectively allowing the guest to use the same network as the host. The virtual network cards can also connect to network cards of other instances of QEMU or to local TAP interfaces. Network connectivity can also be achieved by bridging a TUN/TAP interface used by QEMU with a non-virtual Ethernet interface on the host OS using the host OS's bridging features.
QEMU integrates several services to allow the host and guest systems to communicate; for example, an integrated SMB server and network-port redirection. It can also boot Linux kernels without a bootloader.
QEMU does not depend on the presence of graphical output methods on the host system. Instead, it can allow one to access the screen of the guest OS via an integrated VNC server. It can also use an emulated serial line, without any screen, with applicable operating systems.
Simulating multiple CPUs running SMP is possible.
QEMU does not require administrative rights to run unless additional kernel modules for improving speed are used or certain modes of its network connectivity model are utilized.
[|Tiny Code Generator]
The Tiny Code Generator aims to remove the shortcoming of relying on a particular version of GCC or any compiler, instead incorporating the compiler into other tasks performed by QEMU at run time. The whole translation task thus consists of two parts: basic blocks of target code being rewritten in TCG ops - a kind of machine-independent intermediate notation, and subsequently this notation being compiled for the host's architecture by TCG. Optional optimisation passes are performed between them, for a just-in-time compiler mode.TCG requires dedicated code written to support every architecture it runs on, so that the JIT knows what to translate the TCG ops to. If no dedicated JIT code is available for the architecture, TCG falls back to a slow interpreter mode called TCG Interpretor. It also requires updating the target code to use TCG ops instead of the old dyngen ops.
Starting with QEMU Version 0.10.0, TCG ships with the QEMU stable release. It replaces the dyngen, which relied on GCC 3.x to work.
Accelerator
KQEMU was a Linux kernel module, also written by Fabrice Bellard, which notably sped up emulation of x86 or x86-64 guests on platforms with the same CPU architecture. This worked by running user mode code directly on the host computer's CPU, and by using processor and peripheral emulation only for kernel-mode and real-mode code. KQEMU could execute code from many guest OSes even if the host CPU did not support hardware-assisted virtualization. KQEMU was initially a closed-source product available free of charge, but starting from version 1.3.0pre10, it was relicensed under the GNU General Public License. QEMU versions starting with 0.12.0 support large memory which makes them incompatible with KQEMU. Newer releases of QEMU have completely removed support for KQEMU.QVM86 was a GNU GPLv2 licensed drop-in replacement for the then closed-source KQEMU. The developers of QVM86 ceased development in January, 2007.
Kernel-based Virtual Machine has mostly taken over as the Linux-based hardware-assisted virtualization solution for use with QEMU in the wake of the lack of support for KQEMU and QVM86. QEMU can also use KVM on other architectures like ARM and MIPS.
Intel's Hardware Accelerated Execution Manager is an open-source alternative to KVM for x86-based hardware-assisted virtualization on NetBSD, Linux, Windows and macOS using Intel VT. Intel mostly solicits its use with QEMU for Android development. Starting with version 2.9.0, the official QEMU includes support for HAXM, under the name hax.
QEMU also supports the following accelerators:
- hvf, Apple's based on Intel VT.
- whpx, Microsoft's Windows Hypervisor Platform based on Intel VT or AMD-V.
- tcg, QEMU's own Tiny Code Generator. This is the default.
Supported disk image formats
- macOS Universal Disk Image Format – Read-only
- Bochs – Read-only
- Linux cloop – Read-only
- Parallels disk image – Read-only
- QEMU copy-on-write
- VirtualBox Virtual Disk Image
- Virtual PC Virtual Hard Disk
- Virtual VFAT
- VMware Virtual Machine Disk
- Raw images that contain sector-by-sector contents of a disk
- CD/DVD images that contain sector-by-sector contents of an optical disk
Hardware-assisted emulation
Parallel emulation
Virtualization solutions that use QEMU are able to execute multiple virtual CPUs in parallel. For user-mode emulation QEMU maps emulated threads to host threads. For full system emulation QEMU is capable of running a host thread for each emulated virtual CPU. This is dependent on the guest having been updated to support parallel system emulation, currently ARM, Alpha, HP-PA, PowerPC, RISC-V, s390x, x86 and Xtensa. Otherwise a single thread is used to emulate all virtual CPUS which executes each vCPU in a round-robin manner.Integration
VirtualBox
, first released in January 2007, uses some of QEMU's virtual hardware devices, and has a built-in dynamic recompiler based on QEMU. As with KQEMU, VirtualBox runs nearly all guest code natively on the host via the VMM and uses the recompiler only as a fallback mechanism - for example, when guest code executes in real mode.In addition, VirtualBox does a lot of code analysis and patching using a built-in disassembler in order to minimize recompilation. VirtualBox is free and open-source, except for certain features.
Xen-HVM
, a virtual machine monitor, can run in HVM mode, using Intel VT-x or AMD-V hardware x86 virtualization extensions and ARM Cortex-A7 and Cortex-A15 virtualization extension. This means that instead of paravirtualized devices, a real set of virtual hardware is exposed to the domU to use real device drivers to talk to.QEMU includes several components: CPU emulators, emulated devices, generic devices, machine descriptions, user interface, and a debugger. The emulated devices and generic devices in QEMU make up its device models for I/O virtualization. They comprise a PIIX3 IDE, Cirrus Logic or plain VGA emulated video, RTL8139 or E1000 network emulation, and ACPI support. APIC support is provided by Xen.
Xen-HVM has device emulation based on the QEMU project to provide I/O virtualization to the VMs. Hardware is emulated via a QEMU "device model" daemon running as a backend in dom0. Unlike other QEMU running modes, virtual CPUs are completely managed to the hypervisor, which takes care of stopping them while QEMU is emulating memory-mapped I/O accesses.
KVM
is a FreeBSD and Linux kernel module that allows a user space program access to the hardware virtualization features of various processors, with which QEMU is able to offer virtualization for x86, PowerPC, and S/390 guests. When the target architecture is the same as the host architecture, QEMU can make use of KVM particular features, such as acceleration.Win4Lin Pro Desktop
In early 2005, Win4Lin introduced Win4Lin Pro Desktop, based on a 'tuned' version of QEMU and KQEMU and it hosts NT-versions of Windows. In June 2006, Win4Lin released Win4Lin Virtual Desktop Server based on the same code base. Win4Lin Virtual Desktop Server serves Microsoft Windows sessions to thin clients from a Linux server.In September 2006, Win4Lin announced a change of the company name to with the release of Win4BSD Pro Desktop, a port of the product to FreeBSD and PC-BSD. Solaris support followed in May 2007 with the release of Win4Solaris Pro Desktop and Win4Solaris Virtual Desktop Server.
SerialICE
SerialICE is a QEMU-based firmware debugging tool running system firmware inside of QEMU while accessing real hardware through a serial connection to a host system. This can be used as a cheap replacement for hardware in-circuit emulators.WinUAE
introduced support for the CyberStorm PPC and Blizzard 603e boards using the QEMU PPC core in version 3.0.0.Unicorn
Unicorn is a CPU emulation framework based on QEMU's "TCG" CPU emulator. Unlike QEMU, Unicorn focuses on the CPU only: no emulation of any peripherials are provided and raw binary code can be run directly. Unicorn is thread-safe and has multiple bindings and instrumentation interfaces.Emulated hardware platforms
x86
Besides the CPU, the following devices are emulated:- CD/DVD-ROM drive using an ISO image
- Floppy disk drive
- ATA controller or Serial ATA AHCI controller
- Graphics card
- Network card
- * Depending on target: i82551, i82557b, i82559er, NE2000 PCI, NE2000 ISA, PCnet, RTL8139, e1000, SMC91c111, Lance and mcf_fec.
- NVMe disk interface
- Parallel port
- PC speaker
- i440FX/PIIX3 or Q35/ICH9 chipsets
- PS/2 mouse and keyboard
- SCSI controller
- Serial interface
- Sound card
- Watchdog timer
- USB 1.x/2.x/3.x controllers
- USB devices: audio, Bluetooth dongle, HID, MTP, serial interface, CAC smartcard reader, storage, Wacom tablet
- Paravirtualized VirtIO devices: block device, network card, SCSI controller, serial interface, balloon driver, 9pfs filesystem driver
- Paravirtualized Xen devices: block device, network card, console, framebuffer and input device
PowerPC
PowerMac
QEMU emulates the following PowerMac peripherals:- UniNorth PCI bridge
- PCI-VGA-compatible graphics card which maps the VESA Bochs Extensions
- Two PMAC-IDE-Interfaces with hard disk and CD-ROM support.
- NE2000 PCI adapter
- Non-volatile RAM
- VIA-CUDA with ADB keyboard and mouse.
PREP
QEMU emulates the following PREP peripherals:- PCI bridge
- PCI VGA-compatible graphics card with VESA Bochs Extensions
- Two IDE interfaces with hard disk and CD-ROM support
- Floppy disk drive
- NE2000 network adapter
- Serial interface
- PREP non-volatile RAM
- PC-compatible keyboard and mouse
IBM System p
QEMU can emulate the paravirtual sPAPR interface with the following peripherals:- PCI bridge, for access to virtio devices, VGA-compatible graphics, USB, etc.
- Virtual I/O network adapter, SCSI controller, and serial interface
- sPAPR non-volatile RAM
ARM
QEMU emulates the ARMv7 instruction set with NEON extension. It emulates full systems like Integrator/CP board, Versatile baseboard, RealView Emulation baseboard, XScale-based PDAs, Palm Tungsten|E PDA, Nokia N800 and Nokia N810 Internet tablets etc. QEMU also powers the Android emulator which is part of the Android SDK. Starting from version 2.0.0 of their Bada SDK, Samsung has chosen QEMU to help development on emulated 'Wave' devices.In 1.5.0 and 1.6.0 Samsung Exynos 4210 and Versatile Express ARM Cortex-A9 ARM Cortex-A15 are emulated. In 1.6.0, the 32-bit instructions of the ARMv8 architecture are emulated, but 64-bit instructions are unsupported.
The Xilinx Cortex A9-based Zynq SoC is modelled, with the following elements:
- Zynq-7000 ARM Cortex-A9 CPU
- Zynq-7000 ARM Cortex-A9 MPCore
- Triple Timer Counter
- DDR Memory Controller
- DMA Controller
- Static Memory Controller
- SD/SDIO Peripheral Controller
- Zynq Gigabit Ethernet Controller
- USB Controller
- Zynq UART Controller
- SPI and QSPI Controllers
- I2C Controller
SPARC
When the firmware in the JavaStation became version 0.8.1 Proll, a PROM replacement used in version 0.8.2, was replaced with OpenBIOS.
SPARC32
QEMU emulates the following sun4m/sun4c/sun4d peripherals:- IOMMU or IO-UNITs
- TCX Frame buffer
- Lance Ethernet
- Non-volatile RAM M48T02/M48T08
- Slave I/O: timers, interrupt controllers, Zilog serial ports, keyboard and power/reset logic
- ESP SCSI controller with hard disk and CD-ROM support
- Floppy drive
- CS4231 sound device
SPARC64
- UltraSparc IIi APB PCI Bridge
- PCI VGA-compatible card with VESA Bochs Extensions
- PS/2 mouse and keyboard
- Non-volatile RAM M48T59
- PC-compatible serial ports
- 2 PCI IDE interfaces with hard disk and CD-ROM support
- Floppy disk
MicroBlaze
- MicroBlaze with/without MMU, including
- AXI Timer and Interrupt controller peripherals
- AXI External Memory Controller
- AXI DMA Controller
- Xilinx AXI Ethernet
- AXI Ethernet Lite
- AXI UART 16650 and UARTLite
- AXI SPI Controller
LatticeMico32
From the Milkymist SoC
- UART
- VGA
- Memory card
- Ethernet
- pfu
- timer
CRIS
OpenRISC
External patches
External trees exist, supporting the following targets:- Zilog Z80 emulating a Sinclair 48K ZX Spectrum
- HP PA-RISC
- RISC-V