mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 01:18:00 +03:00
conf: Enable TPM CRB interface in the domain XML
Enable the TPM CRB to be specified in the domain XML. This now allows to describe the TPM device like this: <tpm model='tpm-crb'> <backend type='passthrough'> <device path='/dev/tpm0'/> </backend> </tpm> Extend the XML schema to also allow tpm-crb. Extend the documentation. Add a test case for testing the XML parser and formatter. Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Reviewed-by: John Ferlan <jferlan@redhat.com>
This commit is contained in:
parent
054a66037d
commit
fead27f4b3
@ -7625,7 +7625,8 @@ qemu-kvm -net nic,model=? /dev/null
|
||||
|
||||
<p>
|
||||
The TPM device enables a QEMU guest to have access to TPM
|
||||
functionality.
|
||||
functionality. The TPM device may either be a TPM 1.2 or
|
||||
a TPM 2.
|
||||
</p>
|
||||
<p>
|
||||
The TPM passthrough device type provides access to the host's TPM
|
||||
@ -7655,6 +7656,9 @@ qemu-kvm -net nic,model=? /dev/null
|
||||
The <code>model</code> attribute specifies what device
|
||||
model QEMU provides to the guest. If no model name is provided,
|
||||
<code>tpm-tis</code> will automatically be chosen.
|
||||
<span class="since">Since 4.4.0</span>, another available choice
|
||||
is the <code>tpm-crb</code>, which should only be used when the
|
||||
backend device is a TPM 2.
|
||||
</p>
|
||||
</dd>
|
||||
<dt><code>backend</code></dt>
|
||||
|
@ -4115,7 +4115,10 @@
|
||||
<element name="tpm">
|
||||
<optional>
|
||||
<attribute name="model">
|
||||
<value>tpm-tis</value>
|
||||
<choice>
|
||||
<value>tpm-tis</value>
|
||||
<value>tpm-crb</value>
|
||||
</choice>
|
||||
</attribute>
|
||||
</optional>
|
||||
<ref name="tpm-backend"/>
|
||||
|
@ -860,7 +860,8 @@ VIR_ENUM_IMPL(virDomainRNGBackend,
|
||||
"egd");
|
||||
|
||||
VIR_ENUM_IMPL(virDomainTPMModel, VIR_DOMAIN_TPM_MODEL_LAST,
|
||||
"tpm-tis")
|
||||
"tpm-tis",
|
||||
"tpm-crb")
|
||||
|
||||
VIR_ENUM_IMPL(virDomainTPMBackend, VIR_DOMAIN_TPM_TYPE_LAST,
|
||||
"passthrough")
|
||||
@ -12606,8 +12607,6 @@ virDomainTPMDefParseXML(virDomainXMLOptionPtr xmlopt,
|
||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||
_("Unknown TPM frontend model '%s'"), model);
|
||||
goto error;
|
||||
} else {
|
||||
def->model = VIR_DOMAIN_TPM_MODEL_TIS;
|
||||
}
|
||||
|
||||
ctxt->node = node;
|
||||
|
@ -1279,6 +1279,7 @@ struct _virDomainHubDef {
|
||||
|
||||
typedef enum {
|
||||
VIR_DOMAIN_TPM_MODEL_TIS,
|
||||
VIR_DOMAIN_TPM_MODEL_CRB,
|
||||
|
||||
VIR_DOMAIN_TPM_MODEL_LAST
|
||||
} virDomainTPMModel;
|
||||
|
32
tests/qemuxml2argvdata/tpm-passthrough-crb.xml
Normal file
32
tests/qemuxml2argvdata/tpm-passthrough-crb.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<domain type='qemu'>
|
||||
<name>TPM-VM</name>
|
||||
<uuid>11d7cd22-da89-3094-6212-079a48a309a1</uuid>
|
||||
<memory unit='KiB'>2097152</memory>
|
||||
<currentMemory unit='KiB'>512288</currentMemory>
|
||||
<vcpu placement='static'>1</vcpu>
|
||||
<os>
|
||||
<type arch='x86_64' machine='pc-i440fx-2.12'>hvm</type>
|
||||
<boot dev='hd'/>
|
||||
<bootmenu enable='yes'/>
|
||||
</os>
|
||||
<features>
|
||||
<acpi/>
|
||||
</features>
|
||||
<clock offset='utc'/>
|
||||
<on_poweroff>destroy</on_poweroff>
|
||||
<on_reboot>restart</on_reboot>
|
||||
<on_crash>destroy</on_crash>
|
||||
<devices>
|
||||
<emulator>/usr/bin/qemu-system-x86_64</emulator>
|
||||
<controller type='usb' index='0'/>
|
||||
<controller type='pci' index='0' model='pci-root'/>
|
||||
<input type='mouse' bus='ps2'/>
|
||||
<input type='keyboard' bus='ps2'/>
|
||||
<tpm model='tpm-crb'>
|
||||
<backend type='passthrough'>
|
||||
<device path='/dev/tpm0'/>
|
||||
</backend>
|
||||
</tpm>
|
||||
<memballoon model='virtio'/>
|
||||
</devices>
|
||||
</domain>
|
36
tests/qemuxml2xmloutdata/tpm-passthrough-crb.xml
Normal file
36
tests/qemuxml2xmloutdata/tpm-passthrough-crb.xml
Normal file
@ -0,0 +1,36 @@
|
||||
<domain type='qemu'>
|
||||
<name>TPM-VM</name>
|
||||
<uuid>11d7cd22-da89-3094-6212-079a48a309a1</uuid>
|
||||
<memory unit='KiB'>2097152</memory>
|
||||
<currentMemory unit='KiB'>512288</currentMemory>
|
||||
<vcpu placement='static'>1</vcpu>
|
||||
<os>
|
||||
<type arch='x86_64' machine='pc-i440fx-2.12'>hvm</type>
|
||||
<boot dev='hd'/>
|
||||
<bootmenu enable='yes'/>
|
||||
</os>
|
||||
<features>
|
||||
<acpi/>
|
||||
</features>
|
||||
<clock offset='utc'/>
|
||||
<on_poweroff>destroy</on_poweroff>
|
||||
<on_reboot>restart</on_reboot>
|
||||
<on_crash>destroy</on_crash>
|
||||
<devices>
|
||||
<emulator>/usr/bin/qemu-system-x86_64</emulator>
|
||||
<controller type='usb' index='0'>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
|
||||
</controller>
|
||||
<controller type='pci' index='0' model='pci-root'/>
|
||||
<input type='mouse' bus='ps2'/>
|
||||
<input type='keyboard' bus='ps2'/>
|
||||
<tpm model='tpm-crb'>
|
||||
<backend type='passthrough'>
|
||||
<device path='/dev/tpm0'/>
|
||||
</backend>
|
||||
</tpm>
|
||||
<memballoon model='virtio'>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
|
||||
</memballoon>
|
||||
</devices>
|
||||
</domain>
|
@ -672,6 +672,7 @@ mymain(void)
|
||||
DO_TEST("usb-ich9-ehci-addr", NONE);
|
||||
DO_TEST("disk-copy_on_read", NONE);
|
||||
DO_TEST("tpm-passthrough", NONE);
|
||||
DO_TEST("tpm-passthrough-crb", NONE);
|
||||
|
||||
DO_TEST("metadata", NONE);
|
||||
DO_TEST("metadata-duplicate", NONE);
|
||||
|
Loading…
Reference in New Issue
Block a user