mirror of https://gitee.com/openkylin/libvirt.git
conf: use disk source accessors in security/
Part of a series of cleanups to use new accessor methods. * src/security/security_dac.c (virSecurityDACSetSecurityImageLabel) (virSecurityDACRestoreSecurityImageLabelInt) (virSecurityDACSetSecurityAllLabel): Use accessors. * src/security/security_selinux.c (virSecuritySELinuxRestoreSecurityImageLabelInt) (virSecuritySELinuxSetSecurityImageLabel) (virSecuritySELinuxSetSecurityAllLabel): Likewise. Signed-off-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
cd01d2ad51
commit
2aad0ebe2d
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2010-2013 Red Hat, Inc.
|
||||
* Copyright (C) 2010-2014 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
|
||||
|
@ -355,7 +355,7 @@ virSecurityDACSetSecurityImageLabel(virSecurityManagerPtr mgr,
|
|||
if (!priv->dynamicOwnership)
|
||||
return 0;
|
||||
|
||||
if (disk->type == VIR_DOMAIN_DISK_TYPE_NETWORK)
|
||||
if (virDomainDiskGetType(disk) == VIR_DOMAIN_DISK_TYPE_NETWORK)
|
||||
return 0;
|
||||
|
||||
params[0] = mgr;
|
||||
|
@ -374,11 +374,12 @@ virSecurityDACRestoreSecurityImageLabelInt(virSecurityManagerPtr mgr,
|
|||
int migrated)
|
||||
{
|
||||
virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
|
||||
const char *src = virDomainDiskGetSource(disk);
|
||||
|
||||
if (!priv->dynamicOwnership)
|
||||
return 0;
|
||||
|
||||
if (disk->type == VIR_DOMAIN_DISK_TYPE_NETWORK)
|
||||
if (virDomainDiskGetType(disk) == VIR_DOMAIN_DISK_TYPE_NETWORK)
|
||||
return 0;
|
||||
|
||||
/* Don't restore labels on readoly/shared disks, because
|
||||
|
@ -392,7 +393,7 @@ virSecurityDACRestoreSecurityImageLabelInt(virSecurityManagerPtr mgr,
|
|||
if (disk->readonly || disk->shared)
|
||||
return 0;
|
||||
|
||||
if (!disk->src)
|
||||
if (!src)
|
||||
return 0;
|
||||
|
||||
/* If we have a shared FS & doing migrated, we must not
|
||||
|
@ -401,17 +402,17 @@ virSecurityDACRestoreSecurityImageLabelInt(virSecurityManagerPtr mgr,
|
|||
* VM's I/O attempts :-)
|
||||
*/
|
||||
if (migrated) {
|
||||
int rc = virStorageFileIsSharedFS(disk->src);
|
||||
int rc = virStorageFileIsSharedFS(src);
|
||||
if (rc < 0)
|
||||
return -1;
|
||||
if (rc == 1) {
|
||||
VIR_DEBUG("Skipping image label restore on %s because FS is shared",
|
||||
disk->src);
|
||||
src);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
return virSecurityDACRestoreSecurityFileLabel(disk->src);
|
||||
return virSecurityDACRestoreSecurityFileLabel(src);
|
||||
}
|
||||
|
||||
|
||||
|
@ -904,7 +905,7 @@ virSecurityDACSetSecurityAllLabel(virSecurityManagerPtr mgr,
|
|||
|
||||
for (i = 0; i < def->ndisks; i++) {
|
||||
/* XXX fixme - we need to recursively label the entire tree :-( */
|
||||
if (def->disks[i]->type == VIR_DOMAIN_DISK_TYPE_DIR)
|
||||
if (virDomainDiskGetType(def->disks[i]) == VIR_DOMAIN_DISK_TYPE_DIR)
|
||||
continue;
|
||||
if (virSecurityDACSetSecurityImageLabel(mgr,
|
||||
def,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2008-2013 Red Hat, Inc.
|
||||
* Copyright (C) 2008-2014 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
|
||||
|
@ -1133,6 +1133,7 @@ virSecuritySELinuxRestoreSecurityImageLabelInt(virSecurityManagerPtr mgr,
|
|||
{
|
||||
virSecurityLabelDefPtr seclabel;
|
||||
virSecurityDeviceLabelDefPtr disk_seclabel;
|
||||
const char *src = virDomainDiskGetSource(disk);
|
||||
|
||||
seclabel = virDomainDefGetSecurityLabelDef(def, SECURITY_SELINUX_NAME);
|
||||
if (seclabel == NULL)
|
||||
|
@ -1162,7 +1163,7 @@ virSecuritySELinuxRestoreSecurityImageLabelInt(virSecurityManagerPtr mgr,
|
|||
if (disk->readonly || disk->shared)
|
||||
return 0;
|
||||
|
||||
if (!disk->src || disk->type == VIR_DOMAIN_DISK_TYPE_NETWORK)
|
||||
if (!src || virDomainDiskGetType(disk) == VIR_DOMAIN_DISK_TYPE_NETWORK)
|
||||
return 0;
|
||||
|
||||
/* If we have a shared FS & doing migrated, we must not
|
||||
|
@ -1171,17 +1172,17 @@ virSecuritySELinuxRestoreSecurityImageLabelInt(virSecurityManagerPtr mgr,
|
|||
* VM's I/O attempts :-)
|
||||
*/
|
||||
if (migrated) {
|
||||
int rc = virStorageFileIsSharedFS(disk->src);
|
||||
int rc = virStorageFileIsSharedFS(src);
|
||||
if (rc < 0)
|
||||
return -1;
|
||||
if (rc == 1) {
|
||||
VIR_DEBUG("Skipping image label restore on %s because FS is shared",
|
||||
disk->src);
|
||||
src);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
return virSecuritySELinuxRestoreSecurityFileLabel(mgr, disk->src);
|
||||
return virSecuritySELinuxRestoreSecurityFileLabel(mgr, src);
|
||||
}
|
||||
|
||||
|
||||
|
@ -1262,7 +1263,7 @@ virSecuritySELinuxSetSecurityImageLabel(virSecurityManagerPtr mgr,
|
|||
if (cbdata.secdef->norelabel)
|
||||
return 0;
|
||||
|
||||
if (disk->type == VIR_DOMAIN_DISK_TYPE_NETWORK)
|
||||
if (virDomainDiskGetType(disk) == VIR_DOMAIN_DISK_TYPE_NETWORK)
|
||||
return 0;
|
||||
|
||||
return virDomainDiskDefForeachPath(disk,
|
||||
|
@ -2271,9 +2272,10 @@ virSecuritySELinuxSetSecurityAllLabel(virSecurityManagerPtr mgr,
|
|||
|
||||
for (i = 0; i < def->ndisks; i++) {
|
||||
/* XXX fixme - we need to recursively label the entire tree :-( */
|
||||
if (def->disks[i]->type == VIR_DOMAIN_DISK_TYPE_DIR) {
|
||||
if (virDomainDiskGetType(def->disks[i]) == VIR_DOMAIN_DISK_TYPE_DIR) {
|
||||
VIR_WARN("Unable to relabel directory tree %s for disk %s",
|
||||
def->disks[i]->src, def->disks[i]->dst);
|
||||
virDomainDiskGetSource(def->disks[i]),
|
||||
def->disks[i]->dst);
|
||||
continue;
|
||||
}
|
||||
if (virSecuritySELinuxSetSecurityImageLabel(mgr,
|
||||
|
|
Loading…
Reference in New Issue