amd-memory-encryption.txt 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. Secure Encrypted Virtualization (SEV) is a feature found on AMD processors.
  2. SEV is an extension to the AMD-V architecture which supports running encrypted
  3. virtual machine (VMs) under the control of KVM. Encrypted VMs have their pages
  4. (code and data) secured such that only the guest itself has access to the
  5. unencrypted version. Each encrypted VM is associated with a unique encryption
  6. key; if its data is accessed to a different entity using a different key the
  7. encrypted guests data will be incorrectly decrypted, leading to unintelligible
  8. data.
  9. The key management of this feature is handled by separate processor known as
  10. AMD secure processor (AMD-SP) which is present in AMD SOCs. Firmware running
  11. inside the AMD-SP provide commands to support common VM lifecycle. This
  12. includes commands for launching, snapshotting, migrating and debugging the
  13. encrypted guest. Those SEV command can be issued via KVM_MEMORY_ENCRYPT_OP
  14. ioctls.
  15. Launching
  16. ---------
  17. Boot images (such as bios) must be encrypted before guest can be booted.
  18. MEMORY_ENCRYPT_OP ioctl provides commands to encrypt the images :LAUNCH_START,
  19. LAUNCH_UPDATE_DATA, LAUNCH_MEASURE and LAUNCH_FINISH. These four commands
  20. together generate a fresh memory encryption key for the VM, encrypt the boot
  21. images and provide a measurement than can be used as an attestation of the
  22. successful launch.
  23. LAUNCH_START is called first to create a cryptographic launch context within
  24. the firmware. To create this context, guest owner must provides guest policy,
  25. its public Diffie-Hellman key (PDH) and session parameters. These inputs
  26. should be treated as binary blob and must be passed as-is to the SEV firmware.
  27. The guest policy is passed as plaintext and hypervisor may able to read it
  28. but should not modify it (any modification of the policy bits will result
  29. in bad measurement). The guest policy is a 4-byte data structure containing
  30. several flags that restricts what can be done on running SEV guest.
  31. See KM Spec section 3 and 6.2 for more details.
  32. The guest policy can be provided via the 'policy' property (see below)
  33. # ${QEMU} \
  34. sev-guest,id=sev0,policy=0x1...\
  35. Guest owners provided DH certificate and session parameters will be used to
  36. establish a cryptographic session with the guest owner to negotiate keys used
  37. for the attestation.
  38. The DH certificate and session blob can be provided via 'dh-cert-file' and
  39. 'session-file' property (see below
  40. # ${QEMU} \
  41. sev-guest,id=sev0,dh-cert-file=<file1>,session-file=<file2>
  42. LAUNCH_UPDATE_DATA encrypts the memory region using the cryptographic context
  43. created via LAUNCH_START command. If required, this command can be called
  44. multiple times to encrypt different memory regions. The command also calculates
  45. the measurement of the memory contents as it encrypts.
  46. LAUNCH_MEASURE command can be used to retrieve the measurement of encrypted
  47. memory. This measurement is a signature of the memory contents that can be
  48. sent to the guest owner as an attestation that the memory was encrypted
  49. correctly by the firmware. The guest owner may wait to provide the guest
  50. confidential information until it can verify the attestation measurement.
  51. Since the guest owner knows the initial contents of the guest at boot, the
  52. attestation measurement can be verified by comparing it to what the guest owner
  53. expects.
  54. LAUNCH_FINISH command finalizes the guest launch and destroy's the cryptographic
  55. context.
  56. See SEV KM API Spec [1] 'Launching a guest' usage flow (Appendix A) for the
  57. complete flow chart.
  58. To launch a SEV guest
  59. # ${QEMU} \
  60. -machine ...,memory-encryption=sev0 \
  61. -object sev-guest,id=sev0,cbitpos=47,reduced-phys-bits=1
  62. Debugging
  63. -----------
  64. Since memory contents of SEV guest is encrypted hence hypervisor access to the
  65. guest memory will get a cipher text. If guest policy allows debugging, then
  66. hypervisor can use DEBUG_DECRYPT and DEBUG_ENCRYPT commands access the guest
  67. memory region for debug purposes. This is not supported in QEMU yet.
  68. Snapshot/Restore
  69. -----------------
  70. TODO
  71. Live Migration
  72. ----------------
  73. TODO
  74. References
  75. -----------------
  76. AMD Memory Encryption whitepaper:
  77. http://amd-dev.wpengine.netdna-cdn.com/wordpress/media/2013/12/AMD_Memory_Encryption_Whitepaper_v7-Public.pdf
  78. Secure Encrypted Virtualization Key Management:
  79. [1] http://support.amd.com/TechDocs/55766_SEV-KM API_Specification.pdf
  80. KVM Forum slides:
  81. http://www.linux-kvm.org/images/7/74/02x08A-Thomas_Lendacky-AMDs_Virtualizatoin_Memory_Encryption_Technology.pdf
  82. AMD64 Architecture Programmer's Manual:
  83. http://support.amd.com/TechDocs/24593.pdf
  84. SME is section 7.10
  85. SEV is section 15.34