mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-25 15:15:25 +00:00
Remove isValidIfname.
We shouldn't be checking validity in domain_conf, since it can be used by multiple different hosts and hypervisors. Remove the check completely. Signed-off-by: Chris Lalancette <clalance@redhat.com>
This commit is contained in:
parent
66823690e4
commit
8583b947b1
@ -1807,12 +1807,6 @@ cleanup:
|
||||
}
|
||||
|
||||
|
||||
static bool
|
||||
isValidIfname(const char *ifname) {
|
||||
return ifname[strspn(ifname, VALID_IFNAME_CHARS)] == 0;
|
||||
}
|
||||
|
||||
|
||||
/* Parse the XML definition for a network interface
|
||||
* @param node XML nodeset to parse for net definition
|
||||
* @return 0 on success, -1 on failure
|
||||
@ -1895,11 +1889,9 @@ virDomainNetDefParseXML(virCapsPtr caps,
|
||||
xmlStrEqual(cur->name, BAD_CAST "target")) {
|
||||
ifname = virXMLPropString(cur, "dev");
|
||||
if ((ifname != NULL) &&
|
||||
(((flags & VIR_DOMAIN_XML_INACTIVE) &&
|
||||
(STRPREFIX((const char*)ifname, "vnet"))) ||
|
||||
(!isValidIfname(ifname)))) {
|
||||
((flags & VIR_DOMAIN_XML_INACTIVE) &&
|
||||
(STRPREFIX((const char*)ifname, "vnet")))) {
|
||||
/* An auto-generated target name, blank it out */
|
||||
/* blank out invalid interface names */
|
||||
VIR_FREE(ifname);
|
||||
}
|
||||
} else if ((script == NULL) &&
|
||||
|
@ -298,9 +298,6 @@ struct _virDomainNetDef {
|
||||
virNWFilterHashTablePtr filterparams;
|
||||
};
|
||||
|
||||
# define VALID_IFNAME_CHARS \
|
||||
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_/"
|
||||
|
||||
enum virDomainChrTargetType {
|
||||
VIR_DOMAIN_CHR_TARGET_TYPE_NULL = 0,
|
||||
VIR_DOMAIN_CHR_TARGET_TYPE_MONITOR,
|
||||
|
Loading…
Reference in New Issue
Block a user