1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-24 06:03:52 +03:00

utils: Use overrides in virFileIsSharedFS()

If the local admin has explicitly declared that a certain
filesystem is to be considered shared, we should treat it as
such.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
Andrea Bolognani 2024-08-02 15:23:37 +02:00
parent 6952af8b43
commit f7b9313ec7

View File

@ -3804,9 +3804,49 @@ virFileGetDefaultHugepage(virHugeTLBFS *fs,
return NULL;
}
int virFileIsSharedFS(const char *path,
char *const *overrides G_GNUC_UNUSED)
static bool
virFileIsSharedFSOverride(const char *path,
char *const *overrides)
{
g_autofree char *dirpath = NULL;
char *p = NULL;
if (!path || path[0] != '/' || !overrides)
return false;
if (g_strv_contains((const char *const *) overrides, path))
return true;
dirpath = g_strdup(path);
/* Continue until we've scanned the entire path */
while (p != dirpath) {
/* Find the last slash */
if ((p = strrchr(dirpath, '/')) == NULL)
break;
/* Truncate the path by overwriting the slash that we've just
* found with a null byte. If it is the very first slash in
* the path, we need to handle things slightly differently */
if (p == dirpath)
*(p+1) = '\0';
else
*p = '\0';
if (g_strv_contains((const char *const *) overrides, dirpath))
return true;
}
return false;
}
int virFileIsSharedFS(const char *path,
char *const *overrides)
{
if (virFileIsSharedFSOverride(path, overrides))
return 1;
return virFileIsSharedFSType(path,
VIR_FILE_SHFS_NFS |
VIR_FILE_SHFS_GFS2 |