aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2021-08-12 16:15:25 +0100
committerPeter Maydell <peter.maydell@linaro.org>2021-08-26 17:02:00 +0100
commit8efdb7ba1b2acce9fb63ccc2e7982e19fdf5be86 (patch)
tree190bb5a8afdc8149786992b58ce95ef9a3b0f40e
parent8f1bdb0ea136c38cf963f5fafff103e1b6fb488d (diff)
downloadqemu-8efdb7ba1b2acce9fb63ccc2e7982e19fdf5be86.zip
qemu-8efdb7ba1b2acce9fb63ccc2e7982e19fdf5be86.tar.gz
qemu-8efdb7ba1b2acce9fb63ccc2e7982e19fdf5be86.tar.bz2
softmmu/physmem.c: Check return value from realpath()
The realpath() function can return NULL on error, so we need to check for it to avoid crashing when we try to strstr() into it. This can happen if we run out of memory, or if /sys/ is not mounted, among other situations. Fixes: Coverity 1459913, 1460474 Fixes: ce317be98db0 ("exec: fetch the alignment of Linux devdax pmem character device nodes") Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Jingqi Liu <jingqi.liu@intel.com> Message-id: 20210812151525.31456-1-peter.maydell@linaro.org
-rw-r--r--softmmu/physmem.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/softmmu/physmem.c b/softmmu/physmem.c
index 31baf3a..23e77cb 100644
--- a/softmmu/physmem.c
+++ b/softmmu/physmem.c
@@ -1451,6 +1451,9 @@ static int64_t get_file_align(int fd)
path = g_strdup_printf("/sys/dev/char/%d:%d",
major(st.st_rdev), minor(st.st_rdev));
rpath = realpath(path, NULL);
+ if (!rpath) {
+ return -errno;
+ }
rc = daxctl_new(&ctx);
if (rc) {