============================ Launch security with AMD SEV ============================ .. contents:: Storage encryption in modern public cloud computing is a common practice. However, from the point of view of a user of these cloud workloads, a significant amount of trust needs to be put in the cloud platform security as well as integrity (was the hypervisor tampered?). For this reason there's ever rising demand for securing data in use, i.e. memory encryption. One of the solutions addressing this matter is AMD SEV. AMD Secure Encrypted Virtualization (SEV) ========================================= SEV (Secure Encrypted Virtualization) is a feature extension of AMD's SME (Secure Memory Encryption) intended for KVM virtual machines which is supported primarily on AMD's EPYC CPU line. In contrast to SME, SEV uses a unique memory encryption key for each VM. The whole encryption of memory pages is completely transparent to the hypervisor and happens inside dedicated hardware in the on-die memory controller. Each controller includes a high-performance Advanced Encryption Standard (AES) engine that encrypts data when it is written to DRAM and decrypts it when read. For more details about the technology itself, you can visit `AMD's developer portal `__. Enabling SEV on the host ======================== Before VMs can make use of the SEV feature you need to make sure your AMD CPU does support SEV. You can run ``virt-host-validate`` (libvirt >= 6.5.0) to check if your host supports secure guests or you can follow the manual checks below. You can manually check whether SEV is among the CPU flags with: :: $ grep -w sev /proc/cpuinfo ... sme ssbd sev ibpb Next step is to enable SEV in the kernel, because it is disabled by default. This is done by putting the following onto the kernel command line: :: mem_encrypt=on kvm_amd.sev=1 To make the changes persistent, append the above to the variable holding parameters of the kernel command line in ``/etc/default/grub`` to preserve SEV settings across reboots :: $ cat /etc/default/grub ... GRUB_CMDLINE_LINUX="... mem_encrypt=on kvm_amd.sev=1" $ grub2-mkconfig -o /boot/efi/EFI//grub.cfg ``mem_encrypt=on`` turns on the SME memory encryption feature on the host which protects against the physical attack on the hypervisor memory. The ``kvm_amd.sev`` parameter actually enables SEV in the kvm module. It can be set on the command line alongside ``mem_encrypt`` like shown above, or it can be put into a module config under ``/etc/modprobe.d/`` :: $ cat /etc/modprobe.d/sev.conf options kvm_amd sev=1 After rebooting the host, you should see SEV being enabled in the kernel: :: $ cat /sys/module/kvm_amd/parameters/sev 1 Checking SEV support in the virt stack ====================================== **Note: All of the commands below need to be run with root privileges.** First make sure you have the following packages in the specified versions: - libvirt >= 4.5.0 (>5.1.0 recommended due to additional SEV bugfixes) - QEMU >= 2.12.0 To confirm that the virtualization stack supports SEV, run the following: :: # virsh domcapabilities ... ... 47 1 ... Note that if libvirt (<6.5.0) was already installed and libvirtd running before enabling SEV in the kernel followed by the host reboot you need to force libvirtd to re-probe both the host and QEMU capabilities. First stop libvirtd: :: # systemctl stop libvirtd.service Now you need to clean the capabilities cache: :: # rm -f /var/cache/libvirt/qemu/capabilities/* If you now restart libvirtd, it will re-probe the capabilities and if you now run: :: # virsh domcapabilities SEV should be listed as supported. If you still see: :: it means one of two things: #. libvirt does support SEV, but either QEMU or the host does not #. you have libvirt <=5.1.0 which suffered from getting a ``'Permission denied'`` on ``/dev/sev`` because of the default permissions on the character device which prevented QEMU from opening it during capabilities probing - you can either manually tweak the permissions so that QEMU has access to it or preferably install libvirt 5.1.0 or higher VM Configuration ================ SEV is enabled in the XML by specifying the ` `__ element. However, specifying ``launchSecurity`` isn't enough to boot an SEV VM. Further configuration requirements are discussed below. Machine type ------------ Even though both Q35 and legacy PC machine types (for PC see also "virtio") can be used with SEV, usage of the legacy PC machine type is strongly discouraged, since depending on how your OVMF package was built (e.g. including features like SecureBoot or SMM) Q35 may even be required. Q35 ~~~ :: ... hvm ... ... i440fx (discouraged) ~~~~~~~~~~~~~~~~~~~~ :: ... hvm ... ... Boot loader ----------- SEV is only going to work with OVMF (UEFI), so you'll need to point libvirt to the correct OVMF binary. :: ... hvm /usr/share/edk2/ovmf/OVMF_CODE.fd ... Memory ------ Internally, SEV expects that the encrypted memory pages won't be swapped out or move around so the VM memory needs to be pinned in physical RAM which will be handled by QEMU. Apart from that, certain memory regions allocated by QEMU itself (UEFI pflash, device ROMs, video RAM, etc.) have to be encrypted as well. This causes a conflict in how libvirt tries to protect the host. By default, libvirt enforces a memory hard limit on each VM's cgroup in order to protect the host from malicious QEMU to allocate and lock all the available memory. This limit corresponds to the total memory allocation for the VM given by ```` element. However, trying to account for the additional memory regions QEMU allocates when calculating the limit in an automated manner is non-deterministic. One way to resolve this is to set the hard limit manually. Note: Figuring out the right number so that your guest boots and isn't killed is challenging, but 256MiB extra memory over the total guest RAM should suffice for most workloads and may serve as a good starting point. For example, a domain with 4GB memory with a 256MiB extra hard limit would look like this: :: # virsh edit ... 4194304 4456448 ... There's another, preferred method of taking care of the limits by using the\ ```` element along with the ```` subelement: :: ... ... What that does is that it tells libvirt not to force any hard limit (well, unlimited) upon the VM cgroup. The obvious advantage is that one doesn't need to determine the hard limit for every single SEV-enabled VM. However, there is a significant security-related drawback to this approach. Since no hard limit is applied, a malicious QEMU could perform a DoS attack by locking all of the host's available memory. The way to avoid this issue and to protect the host is to enforce a bigger hard limit on the master cgroup containing all of the VMs - on systemd this is ``machine.slice``. :: # systemctl set-property machine.slice MemoryHigh= To put even stricter measures in place which would involve the OOM killer, use :: # systemctl set-property machine.slice MemoryMax= instead. Alternatively, you can create a systemd config (don't forget to reload systemd configuration in this case): :: # cat << EOF > /etc/systemd/system.control/machine.slice.d/90-MemoryMax.conf MemoryMax= EOF The trade-off to keep in mind with the second approach is that the VMs can still perform DoS on each other. Virtio ------ In order to make virtio devices work, we need to use ```` inside the given device XML element in order to enable DMA API in the virtio driver. Starting with QEMU 6.0.0 QEMU will set this for us by default. For earlier versions though, you will need to explicitly enable this in the device XML as follows:: # virsh edit ... ... /dev/urandom ... If you for some reason want to use the legacy PC machine type, further changes to the virtio configuration is required, because SEV will not work with Virtio <1.0. In libvirt, this is handled by using the virtio-non-transitional device model (libvirt >= 5.2.0 required). Note: some devices like video devices don't support non-transitional model, which means that virtio GPU cannot be used. :: ... ... ... Virtio-net ~~~~~~~~~~ With virtio-net it's also necessary to disable the iPXE option ROM as iPXE is not aware of SEV (at the time of this writing). This translates to the following XML: :: ... ... ... Checking SEV from within the guest ================================== After making the necessary adjustments discussed in `VM Configuration`_, the VM should now boot successfully with SEV enabled. You can then verify that the guest has SEV enabled by running: :: # dmesg | grep -i sev AMD Secure Encrypted Virtualization (SEV) active Limitations =========== With older kernels (kernel <5.1) the boot disk cannot not be of type virtio-blk, instead, virtio-scsi needs to be used if virtio is desired. If you still cannot start an SEV VM, it could be because of wrong SELinux label on the ``/dev/sev`` device with selinux-policy <3.14.2.40 which prevents QEMU from touching the device. This can be resolved by upgrading the package, tuning the selinux policy rules manually to allow svirt_t to access the device (see ``audit2allow`` on how to do that) or putting SELinux into permissive mode (discouraged). Full domain XML examples ======================== Q35 machine ----------- :: sev-dummy 4194304 4194304 4 hvm /usr/share/edk2/ovmf/OVMF_CODE.fd /var/lib/libvirt/qemu/nvram/sev-dummy_VARS.fd destroy restart destroy /usr/bin/qemu-kvm 47 1 0x0003 PC-i440fx machine ----------------- :: sev-dummy-legacy 4194304 4194304 5242880 4 hvm /usr/share/edk2/ovmf/OVMF_CODE.fd /var/lib/libvirt/qemu/nvram/sev-dummy_VARS.fd destroy restart destroy /usr/bin/qemu-kvm
47 1 0x0003