~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/security/secrets/coco.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/security/secrets/coco.rst (Version linux-6.12-rc7) and /Documentation/security/secrets/coco.rst (Version linux-3.10.108)


  1 .. SPDX-License-Identifier: GPL-2.0               
  2                                                   
  3 ==============================                    
  4 Confidential Computing secrets                    
  5 ==============================                    
  6                                                   
  7 This document describes how Confidential Compu    
  8 from the firmware to the operating system, in     
  9 kernel module.                                    
 10                                                   
 11                                                   
 12 Introduction                                      
 13 ============                                      
 14                                                   
 15 Confidential Computing (coco) hardware such as    
 16 Virtualization) allows guest owners to inject     
 17 memory without the host/hypervisor being able     
 18 secret injection is performed early in the VM     
 19 guest starts running.                             
 20                                                   
 21 The efi_secret kernel module allows userspace     
 22 secrets via securityfs.                           
 23                                                   
 24                                                   
 25 Secret data flow                                  
 26 ================                                  
 27                                                   
 28 The guest firmware may reserve a designated me    
 29 and publish its location (base GPA and length)    
 30 under a ``LINUX_EFI_COCO_SECRET_AREA_GUID`` en    
 31 (``adf956ad-e98c-484c-ae11-b51c7d336447``).  T    
 32 by the firmware as ``EFI_RESERVED_TYPE``, and     
 33 be use it for its own purposes.                   
 34                                                   
 35 During the VM's launch, the virtual machine ma    
 36 area.  In AMD SEV and SEV-ES this is performed    
 37 ``KVM_SEV_LAUNCH_SECRET`` command (see [sev]_)    
 38 Guest Owner secret data should be a GUIDed tab    
 39 format is described in ``drivers/virt/coco/efi    
 40 "Structure of the EFI secret area".               
 41                                                   
 42 On kernel start, the kernel's EFI driver saves    
 43 (taken from the EFI configuration table) in th    
 44 Later it checks if the secret area is populate    
 45 whether its content begins with ``EFI_SECRET_T    
 46 (``1e74f542-71dd-4d66-963e-ef4287ff173b``).  I    
 47 the EFI driver will autoload the efi_secret ke    
 48 secrets to userspace applications via security    
 49 efi_secret filesystem interface are in [secret    
 50                                                   
 51                                                   
 52 Application usage example                         
 53 =========================                         
 54                                                   
 55 Consider a guest performing computations on en    
 56 provides the decryption key (= secret) using t    
 57 The guest application reads the secret from th    
 58 proceeds to decrypt the files into memory and     
 59 computations on the content.                      
 60                                                   
 61 In this example, the host can't read the files    
 62 because they are encrypted.  Host can't read t    
 63 it is passed using the secret injection mechan    
 64 Host can't read the decrypted content from mem    
 65 confidential (memory-encrypted) guest.            
 66                                                   
 67 Here is a simple example for usage of the efi_    
 68 to which an EFI secret area with 4 secrets was    
 69                                                   
 70         # ls -la /sys/kernel/security/secrets/    
 71         total 0                                   
 72         drwxr-xr-x 2 root root 0 Jun 28 11:54     
 73         drwxr-xr-x 3 root root 0 Jun 28 11:54     
 74         -r--r----- 1 root root 0 Jun 28 11:54     
 75         -r--r----- 1 root root 0 Jun 28 11:54     
 76         -r--r----- 1 root root 0 Jun 28 11:54     
 77         -r--r----- 1 root root 0 Jun 28 11:54     
 78                                                   
 79         # hd /sys/kernel/security/secrets/coco    
 80         00000000  74 68 65 73 65 2d 61 72  65     
 81         00000010  74 61 2d 73 65 63 72 65  74     
 82         00000020  06 07                           
 83         00000022                                  
 84                                                   
 85         # rm /sys/kernel/security/secrets/coco    
 86                                                   
 87         # ls -la /sys/kernel/security/secrets/    
 88         total 0                                   
 89         drwxr-xr-x 2 root root 0 Jun 28 11:55     
 90         drwxr-xr-x 3 root root 0 Jun 28 11:54     
 91         -r--r----- 1 root root 0 Jun 28 11:54     
 92         -r--r----- 1 root root 0 Jun 28 11:54     
 93         -r--r----- 1 root root 0 Jun 28 11:54     
 94                                                   
 95                                                   
 96 References                                        
 97 ==========                                        
 98                                                   
 99 See [sev-api-spec]_ for more info regarding SE    
100                                                   
101 .. [sev] Documentation/virt/kvm/x86/amd-memory    
102 .. [secrets-coco-abi] Documentation/ABI/testin    
103 .. [sev-api-spec] https://www.amd.com/system/f    
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php