mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-04 03:55:20 +00:00
638c6e5ba5
These had been declared in conf/device_conf.h, but then used in util/virnetdev.c, meaning that we had to #include conf/device_conf.h in virnetdev.c (which we have for a long time said shouldn't be done. This caused a bigger problem when I tried to #include util/virnetdev.h in a file in src/conf (which is allowed) - for some reason the "device_conf.h: File not found" error. The solution is to move the data types and functions used in util sources from conf to util. Some names were adjusted during the move ("virInterface" --> "virNetDevIf", and "VIR_INTERFACE" --> "VIR_NETDEV_IF")
228 lines
6.6 KiB
C
228 lines
6.6 KiB
C
/*
|
|
* device_conf.c: device XML handling
|
|
*
|
|
* Copyright (C) 2006-2016 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Author: Daniel P. Berrange <berrange@redhat.com>
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include "virerror.h"
|
|
#include "datatypes.h"
|
|
#include "viralloc.h"
|
|
#include "virxml.h"
|
|
#include "viruuid.h"
|
|
#include "virbuffer.h"
|
|
#include "device_conf.h"
|
|
#include "virstring.h"
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_DEVICE
|
|
|
|
int virPCIDeviceAddressIsValid(virPCIDeviceAddressPtr addr,
|
|
bool report)
|
|
{
|
|
if (addr->domain > 0xFFFF) {
|
|
if (report)
|
|
virReportError(VIR_ERR_XML_ERROR,
|
|
_("Invalid PCI address domain='0x%x', "
|
|
"must be <= 0xFFFF"),
|
|
addr->domain);
|
|
return 0;
|
|
}
|
|
if (addr->bus > 0xFF) {
|
|
if (report)
|
|
virReportError(VIR_ERR_XML_ERROR,
|
|
_("Invalid PCI address bus='0x%x', "
|
|
"must be <= 0xFF"),
|
|
addr->bus);
|
|
return 0;
|
|
}
|
|
if (addr->slot > 0x1F) {
|
|
if (report)
|
|
virReportError(VIR_ERR_XML_ERROR,
|
|
_("Invalid PCI address slot='0x%x', "
|
|
"must be <= 0x1F"),
|
|
addr->slot);
|
|
return 0;
|
|
}
|
|
if (addr->function > 7) {
|
|
if (report)
|
|
virReportError(VIR_ERR_XML_ERROR,
|
|
_("Invalid PCI address function=0x%x, "
|
|
"must be <= 7"),
|
|
addr->function);
|
|
return 0;
|
|
}
|
|
if (virPCIDeviceAddressIsEmpty(addr)) {
|
|
if (report)
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Invalid PCI address 0000:00:00, at least "
|
|
"one of domain, bus, or slot must be > 0"));
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
|
|
int
|
|
virPCIDeviceAddressParseXML(xmlNodePtr node,
|
|
virPCIDeviceAddressPtr addr)
|
|
{
|
|
char *domain, *slot, *bus, *function, *multi;
|
|
int ret = -1;
|
|
|
|
memset(addr, 0, sizeof(*addr));
|
|
|
|
domain = virXMLPropString(node, "domain");
|
|
bus = virXMLPropString(node, "bus");
|
|
slot = virXMLPropString(node, "slot");
|
|
function = virXMLPropString(node, "function");
|
|
multi = virXMLPropString(node, "multifunction");
|
|
|
|
if (domain &&
|
|
virStrToLong_uip(domain, NULL, 0, &addr->domain) < 0) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
_("Cannot parse <address> 'domain' attribute"));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (bus &&
|
|
virStrToLong_uip(bus, NULL, 0, &addr->bus) < 0) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
_("Cannot parse <address> 'bus' attribute"));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (slot &&
|
|
virStrToLong_uip(slot, NULL, 0, &addr->slot) < 0) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
_("Cannot parse <address> 'slot' attribute"));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (function &&
|
|
virStrToLong_uip(function, NULL, 0, &addr->function) < 0) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
_("Cannot parse <address> 'function' attribute"));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (multi &&
|
|
((addr->multi = virTristateSwitchTypeFromString(multi)) <= 0)) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Unknown value '%s' for <address> 'multifunction' attribute"),
|
|
multi);
|
|
goto cleanup;
|
|
|
|
}
|
|
if (!virPCIDeviceAddressIsEmpty(addr) && !virPCIDeviceAddressIsValid(addr, true))
|
|
goto cleanup;
|
|
|
|
ret = 0;
|
|
|
|
cleanup:
|
|
VIR_FREE(domain);
|
|
VIR_FREE(bus);
|
|
VIR_FREE(slot);
|
|
VIR_FREE(function);
|
|
VIR_FREE(multi);
|
|
return ret;
|
|
}
|
|
|
|
int
|
|
virPCIDeviceAddressFormat(virBufferPtr buf,
|
|
virPCIDeviceAddress addr,
|
|
bool includeTypeInAddr)
|
|
{
|
|
virBufferAsprintf(buf, "<address %sdomain='0x%.4x' bus='0x%.2x' "
|
|
"slot='0x%.2x' function='0x%.1x'/>\n",
|
|
includeTypeInAddr ? "type='pci' " : "",
|
|
addr.domain,
|
|
addr.bus,
|
|
addr.slot,
|
|
addr.function);
|
|
return 0;
|
|
}
|
|
|
|
bool
|
|
virPCIDeviceAddressEqual(virPCIDeviceAddress *addr1,
|
|
virPCIDeviceAddress *addr2)
|
|
{
|
|
if (addr1->domain == addr2->domain &&
|
|
addr1->bus == addr2->bus &&
|
|
addr1->slot == addr2->slot &&
|
|
addr1->function == addr2->function) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
int
|
|
virInterfaceLinkParseXML(xmlNodePtr node,
|
|
virNetDevIfLinkPtr lnk)
|
|
{
|
|
int ret = -1;
|
|
char *stateStr, *speedStr;
|
|
int state;
|
|
|
|
stateStr = virXMLPropString(node, "state");
|
|
speedStr = virXMLPropString(node, "speed");
|
|
|
|
if (stateStr) {
|
|
if ((state = virNetDevIfStateTypeFromString(stateStr)) < 0) {
|
|
virReportError(VIR_ERR_XML_ERROR,
|
|
_("unknown link state: %s"),
|
|
stateStr);
|
|
goto cleanup;
|
|
}
|
|
lnk->state = state;
|
|
}
|
|
|
|
if (speedStr &&
|
|
virStrToLong_ui(speedStr, NULL, 10, &lnk->speed) < 0) {
|
|
virReportError(VIR_ERR_XML_ERROR,
|
|
_("Unable to parse link speed: %s"),
|
|
speedStr);
|
|
goto cleanup;
|
|
}
|
|
|
|
ret = 0;
|
|
cleanup:
|
|
VIR_FREE(stateStr);
|
|
VIR_FREE(speedStr);
|
|
return ret;
|
|
}
|
|
|
|
int
|
|
virInterfaceLinkFormat(virBufferPtr buf,
|
|
const virNetDevIfLink *lnk)
|
|
{
|
|
if (!lnk->speed && !lnk->state) {
|
|
/* If there's nothing to format, return early. */
|
|
return 0;
|
|
}
|
|
|
|
virBufferAddLit(buf, "<link");
|
|
if (lnk->speed)
|
|
virBufferAsprintf(buf, " speed='%u'", lnk->speed);
|
|
if (lnk->state)
|
|
virBufferAsprintf(buf, " state='%s'",
|
|
virNetDevIfStateTypeToString(lnk->state));
|
|
virBufferAddLit(buf, "/>\n");
|
|
return 0;
|
|
}
|