2020-12-02 19:48:34 +00:00
|
|
|
/*
|
|
|
|
* domain_validate.h: domain general validation functions
|
|
|
|
*
|
|
|
|
* Copyright IBM Corp, 2020
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
|
|
|
#include "domain_conf.h"
|
2020-12-10 20:36:27 +00:00
|
|
|
#include "virconftypes.h"
|
2020-12-02 19:48:34 +00:00
|
|
|
|
2020-12-08 19:45:25 +00:00
|
|
|
int virDomainVideoDefValidate(const virDomainVideoDef *video,
|
|
|
|
const virDomainDef *def);
|
2020-12-08 20:04:05 +00:00
|
|
|
int virDomainDiskDefValidate(const virDomainDef *def,
|
|
|
|
const virDomainDiskDef *disk);
|
2020-12-08 20:32:23 +00:00
|
|
|
int virDomainRedirdevDefValidate(const virDomainDef *def,
|
|
|
|
const virDomainRedirdevDef *redirdev);
|
|
|
|
int virDomainChrDefValidate(const virDomainChrDef *chr,
|
|
|
|
const virDomainDef *def);
|
|
|
|
int virDomainRNGDefValidate(const virDomainRNGDef *rng,
|
|
|
|
const virDomainDef *def);
|
|
|
|
int virDomainSmartcardDefValidate(const virDomainSmartcardDef *smartcard,
|
|
|
|
const virDomainDef *def);
|
2020-12-08 20:52:24 +00:00
|
|
|
int virDomainControllerDefValidate(const virDomainControllerDef *controller);
|
2020-12-10 18:58:44 +00:00
|
|
|
int virDomainDeviceValidateAliasForHotplug(virDomainObjPtr vm,
|
|
|
|
virDomainDeviceDefPtr dev,
|
|
|
|
unsigned int flags);
|
2020-12-10 22:12:30 +00:00
|
|
|
int virDomainDefValidate(virDomainDefPtr def,
|
|
|
|
unsigned int parseFlags,
|
|
|
|
virDomainXMLOptionPtr xmlopt,
|
|
|
|
void *parseOpaque);
|