mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-30 09:53:10 +00:00
Update structure & XML definitions to support <hostdev caps=net>
This updates the definitions and supporting structures in the XML schema and domain configuration files. Signed-off-by: Bogdan Purcareata <bogdan.purcareata@freescale.com>
This commit is contained in:
parent
6f1b9c8d2a
commit
4aafa1ff86
@ -2341,6 +2341,15 @@
|
||||
<char>/dev/input/event3</char>
|
||||
</source>
|
||||
</hostdev>
|
||||
...
|
||||
</pre>
|
||||
|
||||
...
|
||||
<hostdev mode='capabilities' type='net'>
|
||||
<source>
|
||||
<interface>eth0</interface>
|
||||
</source>
|
||||
</hostdev>
|
||||
...
|
||||
</pre>
|
||||
|
||||
@ -2349,13 +2358,15 @@
|
||||
<dd>The <code>hostdev</code> element is the main container for describing
|
||||
host devices. For block/character device passthrough <code>mode</code> is
|
||||
always "capabilities" and <code>type</code> is "block" for a block
|
||||
device and "char" for a character device.
|
||||
device, "char" for a character device and "net" for a host network
|
||||
interface.
|
||||
</dd>
|
||||
<dt><code>source</code></dt>
|
||||
<dd>The source element describes the device as seen from the host.
|
||||
For block devices, the path to the block device in the host
|
||||
OS is provided in the nested "block" element, while for character
|
||||
devices the "char" element is used
|
||||
devices the "char" element is used. For network interfaces, the
|
||||
name of the interface is provided in the "interface" element.
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
@ -3002,6 +3002,9 @@
|
||||
<group>
|
||||
<ref name="hostdevcapsmisc"/>
|
||||
</group>
|
||||
<group>
|
||||
<ref name="hostdevcapsnet"/>
|
||||
</group>
|
||||
</choice>
|
||||
</define>
|
||||
|
||||
@ -3062,6 +3065,17 @@
|
||||
</element>
|
||||
</define>
|
||||
|
||||
<define name="hostdevcapsnet">
|
||||
<attribute name="type">
|
||||
<value>net</value>
|
||||
</attribute>
|
||||
<element name="source">
|
||||
<element name="interface">
|
||||
<ref name="deviceName"/>
|
||||
</element>
|
||||
</element>
|
||||
</define>
|
||||
|
||||
<define name="usbproduct">
|
||||
<element name="vendor">
|
||||
<attribute name="id">
|
||||
|
@ -582,7 +582,8 @@ VIR_ENUM_IMPL(virDomainHostdevSubsys, VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_LAST,
|
||||
|
||||
VIR_ENUM_IMPL(virDomainHostdevCaps, VIR_DOMAIN_HOSTDEV_CAPS_TYPE_LAST,
|
||||
"storage",
|
||||
"misc")
|
||||
"misc",
|
||||
"net")
|
||||
|
||||
VIR_ENUM_IMPL(virDomainPciRombarMode,
|
||||
VIR_DOMAIN_PCI_ROMBAR_LAST,
|
||||
@ -1611,6 +1612,9 @@ void virDomainHostdevDefClear(virDomainHostdevDefPtr def)
|
||||
case VIR_DOMAIN_HOSTDEV_CAPS_TYPE_MISC:
|
||||
VIR_FREE(def->source.caps.u.misc.chardev);
|
||||
break;
|
||||
case VIR_DOMAIN_HOSTDEV_CAPS_TYPE_NET:
|
||||
VIR_FREE(def->source.caps.u.net.iface);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -3675,6 +3679,14 @@ virDomainHostdevDefParseXMLCaps(xmlNodePtr node ATTRIBUTE_UNUSED,
|
||||
goto error;
|
||||
}
|
||||
break;
|
||||
case VIR_DOMAIN_HOSTDEV_CAPS_TYPE_NET:
|
||||
if (!(def->source.caps.u.net.iface =
|
||||
virXPathString("string(./source/interface[1])", ctxt))) {
|
||||
virReportError(VIR_ERR_XML_ERROR, "%s",
|
||||
_("Missing <interface> element in hostdev net device"));
|
||||
goto error;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||
_("address type='%s' not supported in hostdev interfaces"),
|
||||
@ -8881,6 +8893,14 @@ virDomainHostdevMatchCapsMisc(virDomainHostdevDefPtr a,
|
||||
b->source.caps.u.misc.chardev);
|
||||
}
|
||||
|
||||
static int
|
||||
virDomainHostdevMatchCapsNet(virDomainHostdevDefPtr a,
|
||||
virDomainHostdevDefPtr b)
|
||||
{
|
||||
return STREQ_NULLABLE(a->source.caps.u.net.iface,
|
||||
b->source.caps.u.net.iface);
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
virDomainHostdevMatchCaps(virDomainHostdevDefPtr a,
|
||||
@ -8894,6 +8914,8 @@ virDomainHostdevMatchCaps(virDomainHostdevDefPtr a,
|
||||
return virDomainHostdevMatchCapsStorage(a, b);
|
||||
case VIR_DOMAIN_HOSTDEV_CAPS_TYPE_MISC:
|
||||
return virDomainHostdevMatchCapsMisc(a, b);
|
||||
case VIR_DOMAIN_HOSTDEV_CAPS_TYPE_NET:
|
||||
return virDomainHostdevMatchCapsNet(a, b);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@ -13530,6 +13552,10 @@ virDomainHostdevDefFormatCaps(virBufferPtr buf,
|
||||
virBufferEscapeString(buf, "<char>%s</char>\n",
|
||||
def->source.caps.u.misc.chardev);
|
||||
break;
|
||||
case VIR_DOMAIN_HOSTDEV_CAPS_TYPE_NET:
|
||||
virBufferEscapeString(buf, "<interface>%s</interface>\n",
|
||||
def->source.caps.u.net.iface);
|
||||
break;
|
||||
default:
|
||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||
_("unexpected hostdev type %d"),
|
||||
|
@ -407,6 +407,7 @@ struct _virDomainHostdevSubsys {
|
||||
enum virDomainHostdevCapsType {
|
||||
VIR_DOMAIN_HOSTDEV_CAPS_TYPE_STORAGE,
|
||||
VIR_DOMAIN_HOSTDEV_CAPS_TYPE_MISC,
|
||||
VIR_DOMAIN_HOSTDEV_CAPS_TYPE_NET,
|
||||
|
||||
VIR_DOMAIN_HOSTDEV_CAPS_TYPE_LAST
|
||||
};
|
||||
@ -422,6 +423,9 @@ struct _virDomainHostdevCaps {
|
||||
struct {
|
||||
char *chardev;
|
||||
} misc;
|
||||
struct {
|
||||
char *iface;
|
||||
} net;
|
||||
} u;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user