aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Zyngier <maz@kernel.org>2020-07-16 13:08:01 +0100
committerWill Deacon <will@kernel.org>2020-07-16 13:19:41 +0100
commitc9acdae1d2e7dce7977f561c158ca795f132e017 (patch)
tree62a93e5b4c59f163445dcb6ae6fcf02db5d26290
parent351d931f496aeb2e97b8daa44c943d8b59351d07 (diff)
downloadkvmtool-c9acdae1d2e7dce7977f561c158ca795f132e017.tar.gz
arm64: Use default kernel offset when the image file can't be seeked
While introducing new code to extract the kernel offset from the image, commit fd0a05b ("arm64: Obtain text offset from kernel image") introduced a regression where something such as: ./lkvm run -c 8 -p earlycon <(zcat /boot/vmlinuz-5.8.0-rc5-00172-ga161216e31ba) now fails to load the kernel, as the file descriptor cannot be seeked. Let's assume the good old 0x80000 offset when the seek syscall fails, with a warning for a good measure. Fixes: fd0a05b ("arm64: Obtain text offset from kernel image") Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20200716120801.2996-1-maz@kernel.org Signed-off-by: Will Deacon <will@kernel.org>
-rw-r--r--arm/aarch64/kvm.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/arm/aarch64/kvm.c b/arm/aarch64/kvm.c
index a46d438d..49e1dd31 100644
--- a/arm/aarch64/kvm.c
+++ b/arm/aarch64/kvm.c
@@ -15,6 +15,7 @@ unsigned long long kvm__arch_get_kern_offset(struct kvm *kvm, int fd)
struct arm64_image_header header;
off_t cur_offset;
ssize_t size;
+ const char *warn_str;
/* the 32bit kernel offset is a well known value */
if (kvm->cfg.arch.aarch32_guest)
@@ -22,8 +23,10 @@ unsigned long long kvm__arch_get_kern_offset(struct kvm *kvm, int fd)
cur_offset = lseek(fd, 0, SEEK_CUR);
if (cur_offset == (off_t)-1 ||
- lseek(fd, 0, SEEK_SET) == (off_t)-1)
- die("Failed to seek in image file");
+ lseek(fd, 0, SEEK_SET) == (off_t)-1) {
+ warn_str = "Failed to seek in kernel image file";
+ goto fail;
+ }
size = xread(fd, &header, sizeof(header));
if (size < 0 || (size_t)size < sizeof(header))
@@ -37,7 +40,9 @@ unsigned long long kvm__arch_get_kern_offset(struct kvm *kvm, int fd)
if (le64_to_cpu(header.image_size))
return le64_to_cpu(header.text_offset);
- pr_warning("Image size is 0, assuming TEXT_OFFSET to be 0x80000");
+ warn_str = "Image size is 0";
+fail:
+ pr_warning("%s, assuming TEXT_OFFSET to be 0x80000", warn_str);
return 0x80000;
}