2
0

amd-memory-encryption.rst 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. AMD Secure Encrypted Virtualization (SEV)
  2. =========================================
  3. Secure Encrypted Virtualization (SEV) is a feature found on AMD processors.
  4. SEV is an extension to the AMD-V architecture which supports running encrypted
  5. virtual machines (VMs) under the control of KVM. Encrypted VMs have their pages
  6. (code and data) secured such that only the guest itself has access to the
  7. unencrypted version. Each encrypted VM is associated with a unique encryption
  8. key; if its data is accessed by a different entity using a different key the
  9. encrypted guests data will be incorrectly decrypted, leading to unintelligible
  10. data.
  11. Key management for this feature is handled by a separate processor known as the
  12. AMD secure processor (AMD-SP), which is present in AMD SOCs. Firmware running
  13. inside the AMD-SP provides commands to support a common VM lifecycle. This
  14. includes commands for launching, snapshotting, migrating and debugging the
  15. encrypted guest. These SEV commands can be issued via KVM_MEMORY_ENCRYPT_OP
  16. ioctls.
  17. Secure Encrypted Virtualization - Encrypted State (SEV-ES) builds on the SEV
  18. support to additionally protect the guest register state. In order to allow a
  19. hypervisor to perform functions on behalf of a guest, there is architectural
  20. support for notifying a guest's operating system when certain types of VMEXITs
  21. are about to occur. This allows the guest to selectively share information with
  22. the hypervisor to satisfy the requested function.
  23. Launching (SEV and SEV-ES)
  24. --------------------------
  25. Boot images (such as bios) must be encrypted before a guest can be booted. The
  26. ``MEMORY_ENCRYPT_OP`` ioctl provides commands to encrypt the images: ``LAUNCH_START``,
  27. ``LAUNCH_UPDATE_DATA``, ``LAUNCH_MEASURE`` and ``LAUNCH_FINISH``. These four commands
  28. together generate a fresh memory encryption key for the VM, encrypt the boot
  29. images and provide a measurement than can be used as an attestation of a
  30. successful launch.
  31. For a SEV-ES guest, the ``LAUNCH_UPDATE_VMSA`` command is also used to encrypt the
  32. guest register state, or VM save area (VMSA), for all of the guest vCPUs.
  33. ``LAUNCH_START`` is called first to create a cryptographic launch context within
  34. the firmware. To create this context, guest owner must provide a guest policy,
  35. its public Diffie-Hellman key (PDH) and session parameters. These inputs
  36. should be treated as a binary blob and must be passed as-is to the SEV firmware.
  37. The guest policy is passed as plaintext. A hypervisor may choose to read it,
  38. but should not modify it (any modification of the policy bits will result
  39. in bad measurement). The guest policy is a 4-byte data structure containing
  40. several flags that restricts what can be done on a running SEV guest.
  41. See SEV API Spec ([SEVAPI]_) section 3 and 6.2 for more details.
  42. The guest policy can be provided via the ``policy`` property::
  43. # ${QEMU} \
  44. sev-guest,id=sev0,policy=0x1...\
  45. Setting the "SEV-ES required" policy bit (bit 2) will launch the guest as a
  46. SEV-ES guest::
  47. # ${QEMU} \
  48. sev-guest,id=sev0,policy=0x5...\
  49. The guest owner provided DH certificate and session parameters will be used to
  50. establish a cryptographic session with the guest owner to negotiate keys used
  51. for the attestation.
  52. The DH certificate and session blob can be provided via the ``dh-cert-file`` and
  53. ``session-file`` properties::
  54. # ${QEMU} \
  55. sev-guest,id=sev0,dh-cert-file=<file1>,session-file=<file2>
  56. ``LAUNCH_UPDATE_DATA`` encrypts the memory region using the cryptographic context
  57. created via the ``LAUNCH_START`` command. If required, this command can be called
  58. multiple times to encrypt different memory regions. The command also calculates
  59. the measurement of the memory contents as it encrypts.
  60. ``LAUNCH_UPDATE_VMSA`` encrypts all the vCPU VMSAs for a SEV-ES guest using the
  61. cryptographic context created via the ``LAUNCH_START`` command. The command also
  62. calculates the measurement of the VMSAs as it encrypts them.
  63. ``LAUNCH_MEASURE`` can be used to retrieve the measurement of encrypted memory and,
  64. for a SEV-ES guest, encrypted VMSAs. This measurement is a signature of the
  65. memory contents and, for a SEV-ES guest, the VMSA contents, that can be sent
  66. to the guest owner as an attestation that the memory and VMSAs were encrypted
  67. correctly by the firmware. The guest owner may wait to provide the guest
  68. confidential information until it can verify the attestation measurement.
  69. Since the guest owner knows the initial contents of the guest at boot, the
  70. attestation measurement can be verified by comparing it to what the guest owner
  71. expects.
  72. ``LAUNCH_FINISH`` finalizes the guest launch and destroys the cryptographic
  73. context.
  74. See SEV API Spec ([SEVAPI]_) 'Launching a guest' usage flow (Appendix A) for the
  75. complete flow chart.
  76. To launch a SEV guest::
  77. # ${QEMU} \
  78. -machine ...,confidential-guest-support=sev0 \
  79. -object sev-guest,id=sev0,cbitpos=47,reduced-phys-bits=1
  80. To launch a SEV-ES guest::
  81. # ${QEMU} \
  82. -machine ...,confidential-guest-support=sev0 \
  83. -object sev-guest,id=sev0,cbitpos=47,reduced-phys-bits=1,policy=0x5
  84. An SEV-ES guest has some restrictions as compared to a SEV guest. Because the
  85. guest register state is encrypted and cannot be updated by the VMM/hypervisor,
  86. a SEV-ES guest:
  87. - Does not support SMM - SMM support requires updating the guest register
  88. state.
  89. - Does not support reboot - a system reset requires updating the guest register
  90. state.
  91. - Requires in-kernel irqchip - the burden is placed on the hypervisor to
  92. manage booting APs.
  93. Calculating expected guest launch measurement
  94. ---------------------------------------------
  95. In order to verify the guest launch measurement, The Guest Owner must compute
  96. it in the exact same way as it is calculated by the AMD-SP. SEV API Spec
  97. ([SEVAPI]_) section 6.5.1 describes the AMD-SP operations:
  98. GCTX.LD is finalized, producing the hash digest of all plaintext data
  99. imported into the guest.
  100. The launch measurement is calculated as:
  101. HMAC(0x04 || API_MAJOR || API_MINOR || BUILD || GCTX.POLICY || GCTX.LD || MNONCE; GCTX.TIK)
  102. where "||" represents concatenation.
  103. The values of API_MAJOR, API_MINOR, BUILD, and GCTX.POLICY can be obtained
  104. from the ``query-sev`` qmp command.
  105. The value of MNONCE is part of the response of ``query-sev-launch-measure``: it
  106. is the last 16 bytes of the base64-decoded data field (see SEV API Spec
  107. ([SEVAPI]_) section 6.5.2 Table 52: LAUNCH_MEASURE Measurement Buffer).
  108. The value of GCTX.LD is
  109. ``SHA256(firmware_blob || kernel_hashes_blob || vmsas_blob)``, where:
  110. * ``firmware_blob`` is the content of the entire firmware flash file (for
  111. example, ``OVMF.fd``). Note that you must build a stateless firmware file
  112. which doesn't use an NVRAM store, because the NVRAM area is not measured, and
  113. therefore it is not secure to use a firmware which uses state from an NVRAM
  114. store.
  115. * if kernel is used, and ``kernel-hashes=on``, then ``kernel_hashes_blob`` is
  116. the content of PaddedSevHashTable (including the zero padding), which itself
  117. includes the hashes of kernel, initrd, and cmdline that are passed to the
  118. guest. The PaddedSevHashTable struct is defined in ``target/i386/sev.c``.
  119. * if SEV-ES is enabled (``policy & 0x4 != 0``), ``vmsas_blob`` is the
  120. concatenation of all VMSAs of the guest vcpus. Each VMSA is 4096 bytes long;
  121. its content is defined inside Linux kernel code as ``struct vmcb_save_area``,
  122. or in AMD APM Volume 2 ([APMVOL2]_) Table B-2: VMCB Layout, State Save Area.
  123. If kernel hashes are not used, or SEV-ES is disabled, use empty blobs for
  124. ``kernel_hashes_blob`` and ``vmsas_blob`` as needed.
  125. Launching (SEV-SNP)
  126. -------------------
  127. Boot images (such as bios) must be encrypted before a guest can be booted. The
  128. ``MEMORY_ENCRYPT_OP`` ioctl provides commands to encrypt the images:
  129. ``SNP_LAUNCH_START``, ``SNP_LAUNCH_UPDATE``, and ``SNP_LAUNCH_FINISH``. These
  130. three commands communicate with SEV-SNP firmware to generate a fresh memory
  131. encryption key for the VM, encrypt the boot images for a successful launch. For
  132. more details on the SEV-SNP firmware interfaces used by these commands please
  133. see the SEV-SNP Firmware ABI.
  134. ``SNP_LAUNCH_START`` is called first to create a cryptographic launch context
  135. within the firmware. To create this context, the guest owner must provide a
  136. guest policy and other parameters as described in the SEV-SNP firmware
  137. specification. The launch parameters should be specified as described in the
  138. QAPI schema for the sev-snp-guest object.
  139. The ``SNP_LAUNCH_START`` uses the following parameters, which can be configured
  140. by the corresponding parameters documented in the QAPI schema for the
  141. 'sev-snp-guest' object.
  142. +--------+-------+----------+-------------------------------------------------+
  143. | key | type | default | meaning |
  144. +---------------------------+-------------------------------------------------+
  145. | policy | hex | 0x30000 | a 64-bit guest policy |
  146. +---------------------------+-------------------------------------------------+
  147. | guest-visible-workarounds | string| 0 | 16-byte base64 encoded string|
  148. | | | | for guest OS visible |
  149. | | | | workarounds. |
  150. +---------------------------+-------------------------------------------------+
  151. ``SNP_LAUNCH_UPDATE`` encrypts the memory region using the cryptographic context
  152. created via the ``SNP_LAUNCH_START`` command. If required, this command can be
  153. called multiple times to encrypt different memory regions. The command also
  154. calculates the measurement of the memory contents as it encrypts.
  155. ``SNP_LAUNCH_FINISH`` finalizes the guest launch flow. Optionally, while
  156. finalizing the launch the firmware can perform checks on the launch digest
  157. computing through the ``SNP_LAUNCH_UPDATE``. To perform the check the user must
  158. supply the id block, authentication blob and host data that should be included
  159. in the attestation report. See the SEV-SNP spec for further details.
  160. The ``SNP_LAUNCH_FINISH`` uses the following parameters, which can be configured
  161. by the corresponding parameters documented in the QAPI schema for the
  162. 'sev-snp-guest' object.
  163. +--------------------+-------+----------+-------------------------------------+
  164. | key | type | default | meaning |
  165. +--------------------+-------+----------+-------------------------------------+
  166. | id-block | string| none | base64 encoded ID block |
  167. +--------------------+-------+----------+-------------------------------------+
  168. | id-auth | string| none | base64 encoded authentication |
  169. | | | | information |
  170. +--------------------+-------+----------+-------------------------------------+
  171. | author-key-enabled | bool | 0 | auth block contains author key |
  172. +--------------------+-------+----------+-------------------------------------+
  173. | host_data | string| none | host provided data |
  174. +--------------------+-------+----------+-------------------------------------+
  175. To launch a SEV-SNP guest (additional parameters are documented in the QAPI
  176. schema for the 'sev-snp-guest' object)::
  177. # ${QEMU} \
  178. -machine ...,confidential-guest-support=sev0 \
  179. -object sev-snp-guest,id=sev0,cbitpos=51,reduced-phys-bits=1
  180. Debugging
  181. ---------
  182. Since the memory contents of a SEV guest are encrypted, hypervisor access to
  183. the guest memory will return cipher text. If the guest policy allows debugging,
  184. then a hypervisor can use the DEBUG_DECRYPT and DEBUG_ENCRYPT commands to access
  185. the guest memory region for debug purposes. This is not supported in QEMU yet.
  186. Snapshot/Restore
  187. ----------------
  188. TODO
  189. Live Migration
  190. ---------------
  191. TODO
  192. References
  193. ----------
  194. `AMD Memory Encryption whitepaper
  195. <https://www.amd.com/content/dam/amd/en/documents/epyc-business-docs/white-papers/memory-encryption-white-paper.pdf>`_
  196. .. [SEVAPI] `Secure Encrypted Virtualization API
  197. <https://www.amd.com/system/files/TechDocs/55766_SEV-KM_API_Specification.pdf>`_
  198. .. [APMVOL2] `AMD64 Architecture Programmer's Manual Volume 2: System Programming
  199. <https://www.amd.com/content/dam/amd/en/documents/processor-tech-docs/programmer-references/24593.pdf>`_
  200. KVM Forum slides:
  201. * `AMD’s Virtualization Memory Encryption (2016)
  202. <http://www.linux-kvm.org/images/7/74/02x08A-Thomas_Lendacky-AMDs_Virtualizatoin_Memory_Encryption_Technology.pdf>`_
  203. * `Extending Secure Encrypted Virtualization With SEV-ES (2018)
  204. <https://www.linux-kvm.org/images/9/94/Extending-Secure-Encrypted-Virtualization-with-SEV-ES-Thomas-Lendacky-AMD.pdf>`_
  205. `AMD64 Architecture Programmer's Manual:
  206. <https://www.amd.com/content/dam/amd/en/documents/processor-tech-docs/programmer-references/24593.pdf>`_
  207. * SME is section 7.10
  208. * SEV is section 15.34
  209. * SEV-ES is section 15.35