mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 10:23:09 +00:00
c8238579fb
Historically, we declared pointer type to our types: typedef struct _virXXX virXXX; typedef virXXX *virXXXPtr; But usefulness of such declaration is questionable, at best. Unfortunately, we can't drop every such declaration - we have to carry some over, because they are part of public API (e.g. virDomainPtr). But for internal types - we can do drop them and use what every other C project uses 'virXXX *'. This change was generated by a very ugly shell script that generated sed script which was then called over each file in the repository. For the shell script refer to the cover letter: https://listman.redhat.com/archives/libvir-list/2021-March/msg00537.html Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
267 lines
6.9 KiB
C
267 lines
6.9 KiB
C
/*
|
|
* virnwfilterbindingdef.c: network filter binding XML processing
|
|
*
|
|
* Copyright (C) 2018 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/>.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "viralloc.h"
|
|
#include "virerror.h"
|
|
#include "virstring.h"
|
|
#include "nwfilter_params.h"
|
|
#include "virnwfilterbindingdef.h"
|
|
#include "viruuid.h"
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NWFILTER
|
|
|
|
void
|
|
virNWFilterBindingDefFree(virNWFilterBindingDef *def)
|
|
{
|
|
if (!def)
|
|
return;
|
|
|
|
g_free(def->ownername);
|
|
g_free(def->portdevname);
|
|
g_free(def->linkdevname);
|
|
g_free(def->filter);
|
|
virHashFree(def->filterparams);
|
|
|
|
g_free(def);
|
|
}
|
|
|
|
|
|
virNWFilterBindingDef *
|
|
virNWFilterBindingDefCopy(virNWFilterBindingDef *src)
|
|
{
|
|
virNWFilterBindingDef *ret;
|
|
|
|
ret = g_new0(virNWFilterBindingDef, 1);
|
|
|
|
ret->ownername = g_strdup(src->ownername);
|
|
|
|
memcpy(ret->owneruuid, src->owneruuid, sizeof(ret->owneruuid));
|
|
|
|
ret->portdevname = g_strdup(src->portdevname);
|
|
|
|
ret->linkdevname = g_strdup(src->linkdevname);
|
|
|
|
ret->mac = src->mac;
|
|
|
|
ret->filter = g_strdup(src->filter);
|
|
|
|
if (!(ret->filterparams = virHashNew(virNWFilterVarValueHashFree)))
|
|
goto error;
|
|
|
|
if (virNWFilterHashTablePutAll(src->filterparams, ret->filterparams) < 0)
|
|
goto error;
|
|
|
|
return ret;
|
|
|
|
error:
|
|
virNWFilterBindingDefFree(ret);
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static virNWFilterBindingDef *
|
|
virNWFilterBindingDefParseXML(xmlXPathContextPtr ctxt)
|
|
{
|
|
virNWFilterBindingDef *ret;
|
|
char *uuid = NULL;
|
|
char *mac = NULL;
|
|
xmlNodePtr node;
|
|
|
|
ret = g_new0(virNWFilterBindingDef, 1);
|
|
|
|
ret->portdevname = virXPathString("string(./portdev/@name)", ctxt);
|
|
if (!ret->portdevname) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
"%s", _("filter binding has no port dev name"));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (virXPathNode("./linkdev", ctxt)) {
|
|
ret->linkdevname = virXPathString("string(./linkdev/@name)", ctxt);
|
|
if (!ret->linkdevname) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
"%s", _("filter binding has no link dev name"));
|
|
goto cleanup;
|
|
}
|
|
}
|
|
|
|
ret->ownername = virXPathString("string(./owner/name)", ctxt);
|
|
if (!ret->ownername) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
"%s", _("filter binding has no owner name"));
|
|
goto cleanup;
|
|
}
|
|
|
|
uuid = virXPathString("string(./owner/uuid)", ctxt);
|
|
if (!uuid) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
"%s", _("filter binding has no owner UUID"));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (virUUIDParse(uuid, ret->owneruuid) < 0) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Unable to parse UUID '%s'"), uuid);
|
|
VIR_FREE(uuid);
|
|
goto cleanup;
|
|
}
|
|
VIR_FREE(uuid);
|
|
|
|
mac = virXPathString("string(./mac/@address)", ctxt);
|
|
if (!mac) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
"%s", _("filter binding has no MAC address"));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (virMacAddrParse(mac, &ret->mac) < 0) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Unable to parse MAC '%s'"), mac);
|
|
VIR_FREE(mac);
|
|
goto cleanup;
|
|
}
|
|
VIR_FREE(mac);
|
|
|
|
ret->filter = virXPathString("string(./filterref/@filter)", ctxt);
|
|
if (!ret->filter) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
"%s", _("filter binding has no filter reference"));
|
|
goto cleanup;
|
|
}
|
|
|
|
node = virXPathNode("./filterref", ctxt);
|
|
if (node &&
|
|
!(ret->filterparams = virNWFilterParseParamAttributes(node)))
|
|
goto cleanup;
|
|
|
|
return ret;
|
|
|
|
cleanup:
|
|
virNWFilterBindingDefFree(ret);
|
|
return NULL;
|
|
}
|
|
|
|
|
|
virNWFilterBindingDef *
|
|
virNWFilterBindingDefParseNode(xmlDocPtr xml,
|
|
xmlNodePtr root)
|
|
{
|
|
xmlXPathContextPtr ctxt = NULL;
|
|
virNWFilterBindingDef *def = NULL;
|
|
|
|
if (STRNEQ((const char *)root->name, "filterbinding")) {
|
|
virReportError(VIR_ERR_XML_ERROR,
|
|
"%s",
|
|
_("unknown root element for nwfilter binding"));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (!(ctxt = virXMLXPathContextNew(xml)))
|
|
goto cleanup;
|
|
|
|
ctxt->node = root;
|
|
def = virNWFilterBindingDefParseXML(ctxt);
|
|
|
|
cleanup:
|
|
xmlXPathFreeContext(ctxt);
|
|
return def;
|
|
}
|
|
|
|
|
|
static virNWFilterBindingDef *
|
|
virNWFilterBindingDefParse(const char *xmlStr,
|
|
const char *filename)
|
|
{
|
|
virNWFilterBindingDef *def = NULL;
|
|
xmlDocPtr xml;
|
|
|
|
if ((xml = virXMLParse(filename, xmlStr, _("(nwfilterbinding_definition)")))) {
|
|
def = virNWFilterBindingDefParseNode(xml, xmlDocGetRootElement(xml));
|
|
xmlFreeDoc(xml);
|
|
}
|
|
|
|
return def;
|
|
}
|
|
|
|
|
|
virNWFilterBindingDef *
|
|
virNWFilterBindingDefParseString(const char *xmlStr)
|
|
{
|
|
return virNWFilterBindingDefParse(xmlStr, NULL);
|
|
}
|
|
|
|
|
|
virNWFilterBindingDef *
|
|
virNWFilterBindingDefParseFile(const char *filename)
|
|
{
|
|
return virNWFilterBindingDefParse(NULL, filename);
|
|
}
|
|
|
|
|
|
char *
|
|
virNWFilterBindingDefFormat(const virNWFilterBindingDef *def)
|
|
{
|
|
g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
if (virNWFilterBindingDefFormatBuf(&buf, def) < 0)
|
|
return NULL;
|
|
|
|
return virBufferContentAndReset(&buf);
|
|
}
|
|
|
|
|
|
int
|
|
virNWFilterBindingDefFormatBuf(virBuffer *buf,
|
|
const virNWFilterBindingDef *def)
|
|
{
|
|
char uuid[VIR_UUID_STRING_BUFLEN];
|
|
char mac[VIR_MAC_STRING_BUFLEN];
|
|
|
|
virBufferAddLit(buf, "<filterbinding>\n");
|
|
|
|
virBufferAdjustIndent(buf, 2);
|
|
|
|
virBufferAddLit(buf, "<owner>\n");
|
|
virBufferAdjustIndent(buf, 2);
|
|
virBufferEscapeString(buf, "<name>%s</name>\n", def->ownername);
|
|
virUUIDFormat(def->owneruuid, uuid);
|
|
virBufferAsprintf(buf, "<uuid>%s</uuid>\n", uuid);
|
|
virBufferAdjustIndent(buf, -2);
|
|
virBufferAddLit(buf, "</owner>\n");
|
|
|
|
virBufferEscapeString(buf, "<portdev name='%s'/>\n", def->portdevname);
|
|
if (def->linkdevname)
|
|
virBufferEscapeString(buf, "<linkdev name='%s'/>\n", def->linkdevname);
|
|
|
|
virMacAddrFormat(&def->mac, mac);
|
|
virBufferAsprintf(buf, "<mac address='%s'/>\n", mac);
|
|
|
|
if (virNWFilterFormatParamAttributes(buf, def->filterparams, def->filter) < 0)
|
|
return -1;
|
|
|
|
virBufferAdjustIndent(buf, -2);
|
|
virBufferAddLit(buf, "</filterbinding>\n");
|
|
|
|
return 0;
|
|
}
|