From 4c979edaa545c8425f7a856c06ebc0de939d4b9f Mon Sep 17 00:00:00 2001 From: Laine Stump Date: Thu, 6 Mar 2025 19:19:12 -0500 Subject: [PATCH] conf: parse interface/source/@dev for all interface types (with backend type='passt') The original implementation of the passt backend for vhost-user interfaces erroneously forgot to parse: for interface type='vhostuser', so it wasn't being added to the passt commandline, and also wasn't being saved to the domain config. Now we parse it whenever the type='passt', no matter what the interface type, and then throw an error during validation if source/@dev was specified for interface type = 'user|vhostuser' and backend type != 'passt'. Fixes: 1e9054b9c79d721a55f413c2983c5370044f8f60 Resolves: https://issues.redhat.com/browse/RHEL-82539 Signed-off-by: Laine Stump Reviewed-by: Peter Krempa --- src/conf/domain_conf.c | 8 +++++--- src/conf/domain_validate.c | 8 +++++++- .../qemuxmlconfdata/net-vhostuser-passt.x86_64-latest.xml | 2 ++ 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index b94cf99236..dedcf76511 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -9940,9 +9940,6 @@ virDomainNetDefParseXML(virDomainXMLOption *xmlopt, break; case VIR_DOMAIN_NET_TYPE_USER: - def->sourceDev = virXMLPropString(source_node, "dev"); - break; - case VIR_DOMAIN_NET_TYPE_NULL: case VIR_DOMAIN_NET_TYPE_LAST: break; @@ -10057,6 +10054,11 @@ virDomainNetDefParseXML(virDomainXMLOption *xmlopt, return NULL; } + if (def->backend.type == VIR_DOMAIN_NET_BACKEND_PASST) { + def->sourceDev = virXMLPropString(source_node, "dev"); + } + + def->linkstate = VIR_DOMAIN_NET_INTERFACE_LINK_STATE_DEFAULT; if (linkstate != NULL) { if ((def->linkstate = virDomainNetInterfaceLinkStateTypeFromString(linkstate)) <= 0) { diff --git a/src/conf/domain_validate.c b/src/conf/domain_validate.c index f2a98f143d..7b901da593 100644 --- a/src/conf/domain_validate.c +++ b/src/conf/domain_validate.c @@ -2190,12 +2190,18 @@ virDomainNetDefValidate(const virDomainNetDef *net) if (net->type != VIR_DOMAIN_NET_TYPE_USER && net->type != VIR_DOMAIN_NET_TYPE_VHOSTUSER) { if (net->backend.type == VIR_DOMAIN_NET_BACKEND_PASST) { - virReportError(VIR_ERR_INTERNAL_ERROR, "%s", + virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s", _("The 'passt' backend can only be used with interface type='user' or type='vhostuser'")); return -1; } } + if (net->sourceDev && net->backend.type != VIR_DOMAIN_NET_BACKEND_PASST) { + virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s", + _("The 'dev' attribute of the element can only be used with type='user' or type='vhostuser' if the type='passt'")); + return -1; + } + if (net->nPortForwards > 0) { size_t p; diff --git a/tests/qemuxmlconfdata/net-vhostuser-passt.x86_64-latest.xml b/tests/qemuxmlconfdata/net-vhostuser-passt.x86_64-latest.xml index a1f9366722..529aff11f8 100644 --- a/tests/qemuxmlconfdata/net-vhostuser-passt.x86_64-latest.xml +++ b/tests/qemuxmlconfdata/net-vhostuser-passt.x86_64-latest.xml @@ -33,6 +33,7 @@ + @@ -63,6 +64,7 @@ +