lkml.org 
[lkml]   [2024]   [Mar]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v9 05/14] x86/msr-index: Add MSRs for Key Locker wrapping key
    Date
    The wrapping key resides in the same power domain as the CPU cache.
    Consequently, any sleep state that invalidates the cache, such as S3,
    also affects the wrapping key's state.

    However, as the wrapping key's state is inaccessible to software, a
    specialized mechanism is necessary to save and restore the key during
    deep sleep.

    A set of new MSRs is provided as an abstract interface for saving,
    restoring, and checking the wrapping key's status. The wrapping key
    is securely saved in a platform-scoped state using non-volatile media.
    Both the backup storage and its path from the CPU are encrypted and
    integrity-protected to ensure security.

    Define those MSRs for saving and restoring the key during S3/4 sleep
    states.

    Note that the non-volatility of the backup storage is not architecturally
    guaranteed across off-states such as S5 and G3. In such cases, the kernel
    may generate a new key during the next boot.

    Signed-off-by: Chang S. Bae <chang.seok.bae@intel.com>
    Reviewed-by: Dan Williams <dan.j.williams@intel.com>
    ---
    Changes from v8:
    * Tweak the changelog.

    Changes from v6:
    * Tweak the changelog -- put the last for those about other sleep states

    Changes from RFC v2:
    * Update the changelog. (Dan Williams)
    * Rename the MSRs. (Dan Williams)
    ---
    arch/x86/include/asm/msr-index.h | 6 ++++++
    1 file changed, 6 insertions(+)

    diff --git a/arch/x86/include/asm/msr-index.h b/arch/x86/include/asm/msr-index.h
    index 05956bd8bacf..a451fa1e2cd9 100644
    --- a/arch/x86/include/asm/msr-index.h
    +++ b/arch/x86/include/asm/msr-index.h
    @@ -1192,4 +1192,10 @@
    * a #GP
    */

    +/* MSRs for managing a CPU-internal wrapping key for Key Locker. */
    +#define MSR_IA32_IWKEY_COPY_STATUS 0x00000990
    +#define MSR_IA32_IWKEY_BACKUP_STATUS 0x00000991
    +#define MSR_IA32_BACKUP_IWKEY_TO_PLATFORM 0x00000d91
    +#define MSR_IA32_COPY_IWKEY_TO_LOCAL 0x00000d92
    +
    #endif /* _ASM_X86_MSR_INDEX_H */
    --
    2.34.1

    \
     
     \ /
      Last update: 2024-03-29 03:11    [W:6.681 / U:0.012 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site