mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 22:25:25 +00:00
storage: don't follow backing chain symlinks too eagerly
If you have a qcow2 file /path1/to/file pointed to by symlink
/path2/symlink, and pass qemu /path2/symlink, then qemu treats
a relative backing file in the qcow2 metadata as being relative
to /path2, not /path1/to. Yes, this means that it is possible
to create a qcow2 file where the choice of WHICH directory and
symlink you access its contents from will then determine WHICH
backing file (if any) you actually find; the results can be
rather screwy, but we have to match what qemu does.
Libvirt and qemu default to creating absolute backing file
names, so most users don't hit this. But at least VDSM uses
symlinks and relative backing names alongside the
--reuse-external flags to libvirt snapshot operations, with the
result that libvirt was failing to follow the intended chain of
backing files, and then backing files were not granted the
necessary sVirt permissions to be opened by qemu.
See https://bugzilla.redhat.com/show_bug.cgi?id=903248 for
more gory details. This fixes a regression introduced in
commit 8250783
.
I tested this patch by creating the following chain:
ls /home/eblake/Downloads/Fedora.iso # raw file for base
cd /var/lib/libvirt/images
qemu-img create -f qcow2 \
-obacking_file=/home/eblake/Downloads/Fedora.iso,backing_fmt=raw one
mkdir sub
cd sub
ln -s ../one onelink
qemu-img create -f qcow2 \
-obacking_file=../sub/onelink,backing_fmt=qcow2 two
mv two ..
ln -s ../two twolink
qemu-img create -f qcow2 \
-obacking_file=../sub/twolink,backing_fmt=qcow2 three
mv three ..
ln -s ../three threelink
then pointing my domain at /var/lib/libvirt/images/sub/threelink.
Prior to this patch, I got complaints about missing backing
files; afterwards, I was able to verify that the backing chain
(and hence DAC and SELinux relabels) of the entire chain worked.
* src/util/virstoragefile.h (_virStorageFileMetadata): Add
directory member.
* src/util/virstoragefile.c (absolutePathFromBaseFile): Drop,
replaced by...
(virFindBackingFile): ...better function.
(virStorageFileGetMetadataInternal): Add an argument.
(virStorageFileGetMetadataFromFD, virStorageFileChainLookup)
(virStorageFileGetMetadata): Update callers.
This commit is contained in:
parent
2485f92153
commit
d1333dd0fb
@ -497,44 +497,56 @@ qedGetBackingStore(char **res,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return an absolute path corresponding to PATH, which is absolute or relative
|
* Given a starting point START (either an original file name, or the
|
||||||
* to the directory containing BASE_FILE, or NULL on error
|
* directory containing the original name, depending on START_IS_DIR)
|
||||||
|
* and a possibly relative backing file NAME, compute the relative
|
||||||
|
* DIRECTORY (optional) and CANONICAL (mandatory) location of the
|
||||||
|
* backing file. Return 0 on success, negative on error.
|
||||||
*/
|
*/
|
||||||
static char *
|
static int ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(3) ATTRIBUTE_NONNULL(5)
|
||||||
absolutePathFromBaseFile(const char *base_file, const char *path)
|
virFindBackingFile(const char *start, bool start_is_dir, const char *path,
|
||||||
|
char **directory, char **canonical)
|
||||||
{
|
{
|
||||||
char *res = NULL;
|
char *combined = NULL;
|
||||||
char *tmp = NULL;
|
int ret = -1;
|
||||||
size_t d_len = dir_len(base_file);
|
|
||||||
|
|
||||||
/* If path is already absolute, or if dirname(base_file) is ".",
|
if (*path == '/') {
|
||||||
just return a copy of path. */
|
/* Safe to cast away const */
|
||||||
if (*path == '/' || d_len == 0) {
|
combined = (char *)path;
|
||||||
if (!(res = canonicalize_file_name(path)))
|
} else {
|
||||||
virReportSystemError(errno,
|
size_t d_len = start_is_dir ? strlen(start) : dir_len(start);
|
||||||
_("Can't canonicalize path '%s'"), path);
|
|
||||||
|
|
||||||
goto cleanup;
|
if (d_len > INT_MAX) {
|
||||||
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||||
|
_("name too long: '%s'"), start);
|
||||||
|
goto cleanup;
|
||||||
|
} else if (d_len == 0) {
|
||||||
|
start = ".";
|
||||||
|
d_len = 1;
|
||||||
|
}
|
||||||
|
if (virAsprintf(&combined, "%.*s/%s", (int)d_len, start, path) < 0) {
|
||||||
|
virReportOOMError();
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Ensure that the following cast-to-int is valid. */
|
if (directory && !(*directory = mdir_name(combined))) {
|
||||||
if (d_len > INT_MAX) {
|
|
||||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
||||||
_("Directory name too long: '%s'"), base_file);
|
|
||||||
goto cleanup;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (virAsprintf(&tmp, "%.*s/%s", (int) d_len, base_file, path) < 0) {
|
|
||||||
virReportOOMError();
|
virReportOOMError();
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(res = canonicalize_file_name(tmp)))
|
if (!(*canonical = canonicalize_file_name(combined))) {
|
||||||
virReportSystemError(errno, _("Can't canonicalize path '%s'"), path);
|
virReportSystemError(errno,
|
||||||
|
_("Can't canonicalize path '%s'"), path);
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = 0;
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
VIR_FREE(tmp);
|
if (combined != path)
|
||||||
return res;
|
VIR_FREE(combined);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -657,9 +669,13 @@ cleanup:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Given a file descriptor FD open on PATH, and optionally opened from
|
||||||
|
* a given DIRECTORY, return metadata about that file, assuming it has
|
||||||
|
* the given FORMAT. */
|
||||||
static virStorageFileMetadataPtr
|
static virStorageFileMetadataPtr
|
||||||
virStorageFileGetMetadataInternal(const char *path,
|
virStorageFileGetMetadataInternal(const char *path,
|
||||||
int fd,
|
int fd,
|
||||||
|
const char *directory,
|
||||||
int format)
|
int format)
|
||||||
{
|
{
|
||||||
virStorageFileMetadata *meta = NULL;
|
virStorageFileMetadata *meta = NULL;
|
||||||
@ -766,8 +782,11 @@ virStorageFileGetMetadataInternal(const char *path,
|
|||||||
if (virBackingStoreIsFile(backing)) {
|
if (virBackingStoreIsFile(backing)) {
|
||||||
meta->backingStoreIsFile = true;
|
meta->backingStoreIsFile = true;
|
||||||
meta->backingStoreRaw = meta->backingStore;
|
meta->backingStoreRaw = meta->backingStore;
|
||||||
meta->backingStore = absolutePathFromBaseFile(path, backing);
|
meta->backingStore = NULL;
|
||||||
if (meta->backingStore == NULL) {
|
if (virFindBackingFile(directory ? directory : path,
|
||||||
|
!!directory, backing,
|
||||||
|
&meta->directory,
|
||||||
|
&meta->backingStore) < 0) {
|
||||||
/* the backing file is (currently) unavailable, treat this
|
/* the backing file is (currently) unavailable, treat this
|
||||||
* file as standalone:
|
* file as standalone:
|
||||||
* backingStoreRaw is kept to mark broken image chains */
|
* backingStoreRaw is kept to mark broken image chains */
|
||||||
@ -906,13 +925,13 @@ virStorageFileGetMetadataFromFD(const char *path,
|
|||||||
int fd,
|
int fd,
|
||||||
int format)
|
int format)
|
||||||
{
|
{
|
||||||
return virStorageFileGetMetadataInternal(path, fd, format);
|
return virStorageFileGetMetadataInternal(path, fd, NULL, format);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Recursive workhorse for virStorageFileGetMetadata. */
|
/* Recursive workhorse for virStorageFileGetMetadata. */
|
||||||
static virStorageFileMetadataPtr
|
static virStorageFileMetadataPtr
|
||||||
virStorageFileGetMetadataRecurse(const char *path, int format,
|
virStorageFileGetMetadataRecurse(const char *path, const char *directory,
|
||||||
uid_t uid, gid_t gid,
|
int format, uid_t uid, gid_t gid,
|
||||||
bool allow_probe, virHashTablePtr cycle)
|
bool allow_probe, virHashTablePtr cycle)
|
||||||
{
|
{
|
||||||
int fd;
|
int fd;
|
||||||
@ -935,7 +954,7 @@ virStorageFileGetMetadataRecurse(const char *path, int format,
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = virStorageFileGetMetadataInternal(path, fd, format);
|
ret = virStorageFileGetMetadataInternal(path, fd, directory, format);
|
||||||
|
|
||||||
if (VIR_CLOSE(fd) < 0)
|
if (VIR_CLOSE(fd) < 0)
|
||||||
VIR_WARN("could not close file %s", path);
|
VIR_WARN("could not close file %s", path);
|
||||||
@ -947,6 +966,7 @@ virStorageFileGetMetadataRecurse(const char *path, int format,
|
|||||||
ret->backingStoreFormat = VIR_STORAGE_FILE_AUTO;
|
ret->backingStoreFormat = VIR_STORAGE_FILE_AUTO;
|
||||||
format = ret->backingStoreFormat;
|
format = ret->backingStoreFormat;
|
||||||
ret->backingMeta = virStorageFileGetMetadataRecurse(ret->backingStore,
|
ret->backingMeta = virStorageFileGetMetadataRecurse(ret->backingStore,
|
||||||
|
ret->directory,
|
||||||
format,
|
format,
|
||||||
uid, gid,
|
uid, gid,
|
||||||
allow_probe,
|
allow_probe,
|
||||||
@ -994,7 +1014,7 @@ virStorageFileGetMetadata(const char *path, int format,
|
|||||||
|
|
||||||
if (format <= VIR_STORAGE_FILE_NONE)
|
if (format <= VIR_STORAGE_FILE_NONE)
|
||||||
format = allow_probe ? VIR_STORAGE_FILE_AUTO : VIR_STORAGE_FILE_RAW;
|
format = allow_probe ? VIR_STORAGE_FILE_AUTO : VIR_STORAGE_FILE_RAW;
|
||||||
ret = virStorageFileGetMetadataRecurse(path, format, uid, gid,
|
ret = virStorageFileGetMetadataRecurse(path, NULL, format, uid, gid,
|
||||||
allow_probe, cycle);
|
allow_probe, cycle);
|
||||||
virHashFree(cycle);
|
virHashFree(cycle);
|
||||||
return ret;
|
return ret;
|
||||||
@ -1014,6 +1034,7 @@ virStorageFileFreeMetadata(virStorageFileMetadata *meta)
|
|||||||
virStorageFileFreeMetadata(meta->backingMeta);
|
virStorageFileFreeMetadata(meta->backingMeta);
|
||||||
VIR_FREE(meta->backingStore);
|
VIR_FREE(meta->backingStore);
|
||||||
VIR_FREE(meta->backingStoreRaw);
|
VIR_FREE(meta->backingStoreRaw);
|
||||||
|
VIR_FREE(meta->directory);
|
||||||
VIR_FREE(meta);
|
VIR_FREE(meta);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1316,7 +1337,10 @@ virStorageFileChainLookup(virStorageFileMetadataPtr chain, const char *start,
|
|||||||
STREQ(name, owner->backingStore)) {
|
STREQ(name, owner->backingStore)) {
|
||||||
break;
|
break;
|
||||||
} else if (owner->backingStoreIsFile) {
|
} else if (owner->backingStoreIsFile) {
|
||||||
char *absName = absolutePathFromBaseFile(*parent, name);
|
char *absName = NULL;
|
||||||
|
if (virFindBackingFile(owner->directory, true, name,
|
||||||
|
NULL, &absName) < 0)
|
||||||
|
goto error;
|
||||||
if (absName && STREQ(absName, owner->backingStore)) {
|
if (absName && STREQ(absName, owner->backingStore)) {
|
||||||
VIR_FREE(absName);
|
VIR_FREE(absName);
|
||||||
break;
|
break;
|
||||||
|
@ -56,6 +56,7 @@ typedef virStorageFileMetadata *virStorageFileMetadataPtr;
|
|||||||
struct _virStorageFileMetadata {
|
struct _virStorageFileMetadata {
|
||||||
char *backingStore; /* Canonical name (absolute file, or protocol) */
|
char *backingStore; /* Canonical name (absolute file, or protocol) */
|
||||||
char *backingStoreRaw; /* If file, original name, possibly relative */
|
char *backingStoreRaw; /* If file, original name, possibly relative */
|
||||||
|
char *directory; /* The directory containing basename(backingStoreRaw) */
|
||||||
int backingStoreFormat; /* enum virStorageFileFormat */
|
int backingStoreFormat; /* enum virStorageFileFormat */
|
||||||
bool backingStoreIsFile;
|
bool backingStoreIsFile;
|
||||||
virStorageFileMetadataPtr backingMeta;
|
virStorageFileMetadataPtr backingMeta;
|
||||||
|
Loading…
Reference in New Issue
Block a user