mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 01:18:00 +03:00
conf: Add support for external swtpm TPM emulator to domain XML
This patch adds support for an external swtpm TPM emulator. The XML for this type of TPM looks as follows: <tpm model='tpm-tis'> <backend type='emulator'/> </tpm> The XML will currently only define a TPM 1.2. Extend the documentation. Add a test case testing the XML parser and formatter. Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Reviewed-by: John Ferlan <jferlan@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
228ae70938
commit
33af0b2b7c
@ -7750,6 +7750,26 @@ qemu-kvm -net nic,model=? /dev/null
|
||||
</tpm>
|
||||
</devices>
|
||||
...
|
||||
</pre>
|
||||
|
||||
<p>
|
||||
The emulator device type gives access to a TPM emulator providing
|
||||
TPM functionality for each VM. QEMU talks to it over a Unix socket. With
|
||||
the emulator device type each guest gets its own private TPM.
|
||||
<span class="since">'emulator' since 4.5.0</span>
|
||||
</p>
|
||||
<p>
|
||||
Example: usage of the TPM Emulator
|
||||
</p>
|
||||
<pre>
|
||||
...
|
||||
<devices>
|
||||
<tpm model='tpm-tis'>
|
||||
<backend type='emulator'>
|
||||
</backend>
|
||||
</tpm>
|
||||
</devices>
|
||||
...
|
||||
</pre>
|
||||
<dl>
|
||||
<dt><code>model</code></dt>
|
||||
@ -7784,6 +7804,16 @@ qemu-kvm -net nic,model=? /dev/null
|
||||
</p>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt><code>emulator</code></dt>
|
||||
<dd>
|
||||
<p>
|
||||
For this backend type the 'swtpm' TPM Emulator must be installed on the
|
||||
host. Libvirt will automatically start an independent TPM emulator
|
||||
for each QEMU guest requesting access to it.
|
||||
</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
@ -4138,6 +4138,11 @@
|
||||
</attribute>
|
||||
<ref name="tpm-passthrough-device"/>
|
||||
</group>
|
||||
<group>
|
||||
<attribute name="type">
|
||||
<value>emulator</value>
|
||||
</attribute>
|
||||
</group>
|
||||
</choice>
|
||||
</element>
|
||||
</define>
|
||||
|
@ -595,6 +595,8 @@ virDomainAuditTPM(virDomainObjPtr vm, virDomainTPMDefPtr tpm,
|
||||
"virt=%s resrc=dev reason=%s %s uuid=%s %s",
|
||||
virt, reason, vmname, uuidstr, device);
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
default:
|
||||
break;
|
||||
|
@ -866,7 +866,8 @@ VIR_ENUM_IMPL(virDomainTPMModel, VIR_DOMAIN_TPM_MODEL_LAST,
|
||||
"tpm-crb")
|
||||
|
||||
VIR_ENUM_IMPL(virDomainTPMBackend, VIR_DOMAIN_TPM_TYPE_LAST,
|
||||
"passthrough")
|
||||
"passthrough",
|
||||
"emulator")
|
||||
|
||||
VIR_ENUM_IMPL(virDomainIOMMUModel, VIR_DOMAIN_IOMMU_MODEL_LAST,
|
||||
"intel")
|
||||
@ -2641,6 +2642,11 @@ void virDomainTPMDefFree(virDomainTPMDefPtr def)
|
||||
case VIR_DOMAIN_TPM_TYPE_PASSTHROUGH:
|
||||
VIR_FREE(def->data.passthrough.source.data.file.path);
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
virDomainChrSourceDefClear(&def->data.emulator.source);
|
||||
VIR_FREE(def->data.emulator.storagepath);
|
||||
VIR_FREE(def->data.emulator.logfile);
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
break;
|
||||
}
|
||||
@ -12757,6 +12763,11 @@ virDomainSmartcardDefParseXML(virDomainXMLOptionPtr xmlopt,
|
||||
* </backend>
|
||||
* </tpm>
|
||||
*
|
||||
* or like this:
|
||||
*
|
||||
* <tpm model='tpm-tis'>
|
||||
* <backend type='emulator'/>
|
||||
* </tpm>
|
||||
*/
|
||||
static virDomainTPMDefPtr
|
||||
virDomainTPMDefParseXML(virDomainXMLOptionPtr xmlopt,
|
||||
@ -12823,6 +12834,8 @@ virDomainTPMDefParseXML(virDomainXMLOptionPtr xmlopt,
|
||||
def->data.passthrough.source.type = VIR_DOMAIN_CHR_TYPE_DEV;
|
||||
path = NULL;
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
goto error;
|
||||
}
|
||||
@ -25223,22 +25236,25 @@ virDomainTPMDefFormat(virBufferPtr buf,
|
||||
virBufferAsprintf(buf, "<tpm model='%s'>\n",
|
||||
virDomainTPMModelTypeToString(def->model));
|
||||
virBufferAdjustIndent(buf, 2);
|
||||
virBufferAsprintf(buf, "<backend type='%s'>\n",
|
||||
virBufferAsprintf(buf, "<backend type='%s'",
|
||||
virDomainTPMBackendTypeToString(def->type));
|
||||
virBufferAdjustIndent(buf, 2);
|
||||
|
||||
switch (def->type) {
|
||||
case VIR_DOMAIN_TPM_TYPE_PASSTHROUGH:
|
||||
virBufferAddLit(buf, ">\n");
|
||||
virBufferAdjustIndent(buf, 2);
|
||||
virBufferEscapeString(buf, "<device path='%s'/>\n",
|
||||
def->data.passthrough.source.data.file.path);
|
||||
virBufferAdjustIndent(buf, -2);
|
||||
virBufferAddLit(buf, "</backend>\n");
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
virBufferAddLit(buf, "/>\n");
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
break;
|
||||
}
|
||||
|
||||
virBufferAdjustIndent(buf, -2);
|
||||
virBufferAddLit(buf, "</backend>\n");
|
||||
|
||||
virDomainDeviceInfoFormat(buf, &def->info, flags);
|
||||
|
||||
virBufferAdjustIndent(buf, -2);
|
||||
|
@ -1291,6 +1291,7 @@ typedef enum {
|
||||
|
||||
typedef enum {
|
||||
VIR_DOMAIN_TPM_TYPE_PASSTHROUGH,
|
||||
VIR_DOMAIN_TPM_TYPE_EMULATOR,
|
||||
|
||||
VIR_DOMAIN_TPM_TYPE_LAST
|
||||
} virDomainTPMBackendType;
|
||||
@ -1305,6 +1306,11 @@ struct _virDomainTPMDef {
|
||||
struct {
|
||||
virDomainChrSourceDef source;
|
||||
} passthrough;
|
||||
struct {
|
||||
virDomainChrSourceDef source;
|
||||
char *storagepath;
|
||||
char *logfile;
|
||||
} emulator;
|
||||
} data;
|
||||
};
|
||||
|
||||
|
@ -305,6 +305,7 @@ qemuSetupTPMCgroup(virDomainObjPtr vm)
|
||||
case VIR_DOMAIN_TPM_TYPE_PASSTHROUGH:
|
||||
ret = qemuSetupChrSourceCgroup(vm, &dev->data.passthrough.source);
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
break;
|
||||
}
|
||||
|
@ -9580,6 +9580,7 @@ qemuBuildTPMBackendStr(const virDomainDef *def,
|
||||
VIR_FREE(cancel_path);
|
||||
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
goto error;
|
||||
}
|
||||
|
@ -11012,6 +11012,7 @@ qemuDomainSetupTPM(virQEMUDriverConfigPtr cfg ATTRIBUTE_UNUSED,
|
||||
return -1;
|
||||
break;
|
||||
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
/* nada */
|
||||
break;
|
||||
|
@ -1372,6 +1372,7 @@ virSecurityDACSetTPMFileLabel(virSecurityManagerPtr mgr,
|
||||
&tpm->data.passthrough.source,
|
||||
false);
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
break;
|
||||
}
|
||||
@ -1393,6 +1394,7 @@ virSecurityDACRestoreTPMFileLabel(virSecurityManagerPtr mgr,
|
||||
&tpm->data.passthrough.source,
|
||||
false);
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
break;
|
||||
}
|
||||
|
@ -1472,6 +1472,7 @@ virSecuritySELinuxSetTPMFileLabel(virSecurityManagerPtr mgr,
|
||||
return -1;
|
||||
}
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
break;
|
||||
}
|
||||
@ -1505,6 +1506,7 @@ virSecuritySELinuxRestoreTPMFileLabelInt(virSecurityManagerPtr mgr,
|
||||
VIR_FREE(cancel_path);
|
||||
}
|
||||
break;
|
||||
case VIR_DOMAIN_TPM_TYPE_EMULATOR:
|
||||
case VIR_DOMAIN_TPM_TYPE_LAST:
|
||||
break;
|
||||
}
|
||||
|
30
tests/qemuxml2argvdata/tpm-emulator.xml
Normal file
30
tests/qemuxml2argvdata/tpm-emulator.xml
Normal file
@ -0,0 +1,30 @@
|
||||
<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-tis'>
|
||||
<backend type='emulator'/>
|
||||
</tpm>
|
||||
<memballoon model='virtio'/>
|
||||
</devices>
|
||||
</domain>
|
34
tests/qemuxml2xmloutdata/tpm-emulator.xml
Normal file
34
tests/qemuxml2xmloutdata/tpm-emulator.xml
Normal file
@ -0,0 +1,34 @@
|
||||
<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-tis'>
|
||||
<backend type='emulator'/>
|
||||
</tpm>
|
||||
<memballoon model='virtio'>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
|
||||
</memballoon>
|
||||
</devices>
|
||||
</domain>
|
@ -677,6 +677,7 @@ mymain(void)
|
||||
DO_TEST("disk-copy_on_read", NONE);
|
||||
DO_TEST("tpm-passthrough", NONE);
|
||||
DO_TEST("tpm-passthrough-crb", NONE);
|
||||
DO_TEST("tpm-emulator", NONE);
|
||||
|
||||
DO_TEST("metadata", NONE);
|
||||
DO_TEST("metadata-duplicate", NONE);
|
||||
|
Loading…
Reference in New Issue
Block a user