From 43b369ab84381903b20084412c1a75c73a258294 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roger=20Pau=20Monn=C3=A9?= Date: Fri, 24 Feb 2017 15:47:55 +0100 Subject: [PATCH] x86/libelf: pass the destination vCPU to libelf for Dom0 build MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Allow setting the destination vCPU for libelf, so that elf_load_image can take it into account when loading the kernel for Dom0. This is needed for PVHv2 Dom0 build, so that hvm_copy_to_guest_phys can be called with a Dom0 vCPU instead of current (that contains the idle vCPU at this point). Signed-off-by: Roger Pau Monné Reviewed-by: Jan Beulich --- xen/arch/x86/domain_build.c | 1 + xen/common/libelf/libelf-loader.c | 27 +++++++++++++++++++++++++-- xen/include/xen/libelf.h | 6 ++++++ 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/domain_build.c b/xen/arch/x86/domain_build.c index fc1d2784a4..37d3b78d9d 100644 --- a/xen/arch/x86/domain_build.c +++ b/xen/arch/x86/domain_build.c @@ -1467,6 +1467,7 @@ static int __init construct_dom0_pv( /* Copy the OS image and free temporary buffer. */ elf.dest_base = (void*)vkern_start; elf.dest_size = vkern_end - vkern_start; + elf_set_vcpu(&elf, v); rc = elf_load_binary(&elf); if ( rc < 0 ) { diff --git a/xen/common/libelf/libelf-loader.c b/xen/common/libelf/libelf-loader.c index 1644f16011..c8b7ec9081 100644 --- a/xen/common/libelf/libelf-loader.c +++ b/xen/common/libelf/libelf-loader.c @@ -146,6 +146,27 @@ void elf_set_verbose(struct elf_binary *elf) elf->verbose = 1; } +static elf_errorstatus elf_memcpy(struct vcpu *v, void *dst, void *src, + uint64_t size) +{ + unsigned int res; + +#ifdef CONFIG_X86 + if ( is_hvm_vcpu(v) ) + { + enum hvm_copy_result rc; + + rc = hvm_copy_to_guest_phys((paddr_t)dst, src, size, v); + return rc != HVMCOPY_okay ? -1 : 0; + } +#endif + + res = src ? raw_copy_to_guest(dst, src, size) : + raw_clear_guest(dst, size); + + return res ? -1 : 0; +} + static elf_errorstatus elf_load_image(struct elf_binary *elf, elf_ptrval dst, elf_ptrval src, uint64_t filesz, uint64_t memsz) { elf_errorstatus rc; @@ -153,10 +174,12 @@ static elf_errorstatus elf_load_image(struct elf_binary *elf, elf_ptrval dst, el return -1; /* We trust the dom0 kernel image completely, so we don't care * about overruns etc. here. */ - rc = raw_copy_to_guest(ELF_UNSAFE_PTR(dst), ELF_UNSAFE_PTR(src), filesz); + rc = elf_memcpy(elf->vcpu, ELF_UNSAFE_PTR(dst), ELF_UNSAFE_PTR(src), + filesz); if ( rc != 0 ) return -1; - rc = raw_clear_guest(ELF_UNSAFE_PTR(dst + filesz), memsz - filesz); + rc = elf_memcpy(elf->vcpu, ELF_UNSAFE_PTR(dst + filesz), NULL, + memsz - filesz); if ( rc != 0 ) return -1; return 0; diff --git a/xen/include/xen/libelf.h b/xen/include/xen/libelf.h index 1b763f318d..b73998150f 100644 --- a/xen/include/xen/libelf.h +++ b/xen/include/xen/libelf.h @@ -212,6 +212,8 @@ struct elf_binary { /* misc */ elf_log_callback *log_callback; void *log_caller_data; +#else + struct vcpu *vcpu; #endif bool verbose; const char *broken; @@ -351,6 +353,10 @@ elf_errorstatus elf_init(struct elf_binary *elf, const char *image, size_t size) */ #ifdef __XEN__ void elf_set_verbose(struct elf_binary *elf); +static inline void elf_set_vcpu(struct elf_binary *elf, struct vcpu *v) +{ + elf->vcpu = v; +} #else void elf_set_log(struct elf_binary *elf, elf_log_callback*, void *log_caller_pointer, bool verbose); -- 2.30.2