mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-27 13:30:41 +00:00 
			
		
		
		
	 f91f9f254b
			
		
	
	
		f91f9f254b
		
	
	
	
	
		
			
			Several architectures have mechanisms which are designed to protect guest memory from interference or eavesdropping by a compromised hypervisor. AMD SEV does this with in-chip memory encryption and Intel's TDX can do similar things. POWER's Protected Execution Framework (PEF) accomplishes a similar goal using an ultravisor and new memory protection features, instead of encryption. To (partially) unify handling for these, this introduces a new ConfidentialGuestSupport QOM base class. "Confidential" is kind of vague, but "confidential computing" seems to be the buzzword about these schemes, and "secure" or "protected" are often used in connection to unrelated things (such as hypervisor-from-guest or guest-from-guest security). The "support" in the name is significant because in at least some of the cases it requires the guest to take specific actions in order to protect itself from hypervisor eavesdropping. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
		
			
				
	
	
		
			21 lines
		
	
	
		
			779 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			779 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
| softmmu_ss.add([files(
 | |
|   'cryptodev-builtin.c',
 | |
|   'cryptodev.c',
 | |
|   'hostmem-ram.c',
 | |
|   'hostmem.c',
 | |
|   'rng-builtin.c',
 | |
|   'rng-egd.c',
 | |
|   'rng.c',
 | |
|   'confidential-guest-support.c',
 | |
| ), numa])
 | |
| 
 | |
| softmmu_ss.add(when: 'CONFIG_POSIX', if_true: files('rng-random.c'))
 | |
| softmmu_ss.add(when: 'CONFIG_POSIX', if_true: files('hostmem-file.c'))
 | |
| softmmu_ss.add(when: 'CONFIG_LINUX', if_true: files('hostmem-memfd.c'))
 | |
| softmmu_ss.add(when: ['CONFIG_VHOST_USER', 'CONFIG_VIRTIO'], if_true: files('vhost-user.c'))
 | |
| softmmu_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: files('cryptodev-vhost.c'))
 | |
| softmmu_ss.add(when: ['CONFIG_VIRTIO_CRYPTO', 'CONFIG_VHOST_CRYPTO'], if_true: files('cryptodev-vhost-user.c'))
 | |
| softmmu_ss.add(when: 'CONFIG_GIO', if_true: [files('dbus-vmstate.c'), gio])
 | |
| 
 | |
| subdir('tpm')
 |