* [PATCH v1] riscv/kexec_file: Fix relocation type R_RISCV_ADD16 and R_RISCV_SUB16 unknown
@ 2024-07-11 8:32 sunying
2024-07-11 12:53 ` Petr Tesařík
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: sunying @ 2024-07-11 8:32 UTC (permalink / raw)
To: ebiederm, paul.walmsley, palmer, aou
Cc: kexec, linux-riscv, linux-kernel, zhuhengbo, Ying Sun,
Petr Tesarik
From: Ying Sun <sunying@isrc.iscas.ac.cn>
Runs on the kernel with CONFIG_RISCV_ALTERNATIVE enabled:
kexec -sl vmlinux
Error:
kexec_image: Unknown rela relocation: 34
kexec_image: Error loading purgatory ret=-8
and
kexec_image: Unknown rela relocation: 38
kexec_image: Error loading purgatory ret=-8
The purgatory code uses the 16-bit addition and subtraction relocation
type, but not handled, resulting in kexec_file_load failure.
So add handle to arch_kexec_apply_relocations_add().
Tested on RISC-V64 Qemu-virt, issue fixed.
Co-developed-by: Petr Tesarik <petr@tesarici.cz>
Signed-off-by: Petr Tesarik <petr@tesarici.cz>
Signed-off-by: Ying Sun <sunying@isrc.iscas.ac.cn>
---
arch/riscv/kernel/elf_kexec.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/arch/riscv/kernel/elf_kexec.c b/arch/riscv/kernel/elf_kexec.c
index 11c0d2e0becf..3c37661801f9 100644
--- a/arch/riscv/kernel/elf_kexec.c
+++ b/arch/riscv/kernel/elf_kexec.c
@@ -451,6 +451,12 @@ int arch_kexec_apply_relocations_add(struct purgatory_info *pi,
*(u32 *)loc = CLEAN_IMM(CJTYPE, *(u32 *)loc) |
ENCODE_CJTYPE_IMM(val - addr);
break;
+ case R_RISCV_ADD16:
+ *(u16 *)loc += val;
+ break;
+ case R_RISCV_SUB16:
+ *(u16 *)loc -= val;
+ break;
case R_RISCV_ADD32:
*(u32 *)loc += val;
break;
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v1] riscv/kexec_file: Fix relocation type R_RISCV_ADD16 and R_RISCV_SUB16 unknown
2024-07-11 8:32 [PATCH v1] riscv/kexec_file: Fix relocation type R_RISCV_ADD16 and R_RISCV_SUB16 unknown sunying
@ 2024-07-11 12:53 ` Petr Tesařík
2024-07-17 13:14 ` Andrew Jones
2024-08-14 14:10 ` patchwork-bot+linux-riscv
2 siblings, 0 replies; 4+ messages in thread
From: Petr Tesařík @ 2024-07-11 12:53 UTC (permalink / raw)
To: sunying
Cc: ebiederm, paul.walmsley, palmer, aou, kexec, linux-riscv,
linux-kernel, zhuhengbo
On Thu, 11 Jul 2024 08:32:36 +0000
sunying@isrc.iscas.ac.cn wrote:
> From: Ying Sun <sunying@isrc.iscas.ac.cn>
>
> Runs on the kernel with CONFIG_RISCV_ALTERNATIVE enabled:
> kexec -sl vmlinux
>
> Error:
> kexec_image: Unknown rela relocation: 34
> kexec_image: Error loading purgatory ret=-8
> and
> kexec_image: Unknown rela relocation: 38
> kexec_image: Error loading purgatory ret=-8
>
> The purgatory code uses the 16-bit addition and subtraction relocation
> type, but not handled, resulting in kexec_file_load failure.
> So add handle to arch_kexec_apply_relocations_add().
>
> Tested on RISC-V64 Qemu-virt, issue fixed.
>
> Co-developed-by: Petr Tesarik <petr@tesarici.cz>
> Signed-off-by: Petr Tesarik <petr@tesarici.cz>
Let me confirm I have seen this, and it is correct.
Petr T
> Signed-off-by: Ying Sun <sunying@isrc.iscas.ac.cn>
> ---
> arch/riscv/kernel/elf_kexec.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/arch/riscv/kernel/elf_kexec.c b/arch/riscv/kernel/elf_kexec.c
> index 11c0d2e0becf..3c37661801f9 100644
> --- a/arch/riscv/kernel/elf_kexec.c
> +++ b/arch/riscv/kernel/elf_kexec.c
> @@ -451,6 +451,12 @@ int arch_kexec_apply_relocations_add(struct purgatory_info *pi,
> *(u32 *)loc = CLEAN_IMM(CJTYPE, *(u32 *)loc) |
> ENCODE_CJTYPE_IMM(val - addr);
> break;
> + case R_RISCV_ADD16:
> + *(u16 *)loc += val;
> + break;
> + case R_RISCV_SUB16:
> + *(u16 *)loc -= val;
> + break;
> case R_RISCV_ADD32:
> *(u32 *)loc += val;
> break;
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v1] riscv/kexec_file: Fix relocation type R_RISCV_ADD16 and R_RISCV_SUB16 unknown
2024-07-11 8:32 [PATCH v1] riscv/kexec_file: Fix relocation type R_RISCV_ADD16 and R_RISCV_SUB16 unknown sunying
2024-07-11 12:53 ` Petr Tesařík
@ 2024-07-17 13:14 ` Andrew Jones
2024-08-14 14:10 ` patchwork-bot+linux-riscv
2 siblings, 0 replies; 4+ messages in thread
From: Andrew Jones @ 2024-07-17 13:14 UTC (permalink / raw)
To: sunying
Cc: ebiederm, paul.walmsley, palmer, aou, kexec, linux-riscv,
linux-kernel, zhuhengbo, Petr Tesarik
On Thu, Jul 11, 2024 at 08:32:36AM GMT, sunying@isrc.iscas.ac.cn wrote:
> From: Ying Sun <sunying@isrc.iscas.ac.cn>
>
> Runs on the kernel with CONFIG_RISCV_ALTERNATIVE enabled:
> kexec -sl vmlinux
>
> Error:
> kexec_image: Unknown rela relocation: 34
> kexec_image: Error loading purgatory ret=-8
> and
> kexec_image: Unknown rela relocation: 38
> kexec_image: Error loading purgatory ret=-8
>
> The purgatory code uses the 16-bit addition and subtraction relocation
> type, but not handled, resulting in kexec_file_load failure.
> So add handle to arch_kexec_apply_relocations_add().
>
> Tested on RISC-V64 Qemu-virt, issue fixed.
>
> Co-developed-by: Petr Tesarik <petr@tesarici.cz>
> Signed-off-by: Petr Tesarik <petr@tesarici.cz>
> Signed-off-by: Ying Sun <sunying@isrc.iscas.ac.cn>
> ---
> arch/riscv/kernel/elf_kexec.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/arch/riscv/kernel/elf_kexec.c b/arch/riscv/kernel/elf_kexec.c
> index 11c0d2e0becf..3c37661801f9 100644
> --- a/arch/riscv/kernel/elf_kexec.c
> +++ b/arch/riscv/kernel/elf_kexec.c
> @@ -451,6 +451,12 @@ int arch_kexec_apply_relocations_add(struct purgatory_info *pi,
> *(u32 *)loc = CLEAN_IMM(CJTYPE, *(u32 *)loc) |
> ENCODE_CJTYPE_IMM(val - addr);
> break;
> + case R_RISCV_ADD16:
> + *(u16 *)loc += val;
> + break;
> + case R_RISCV_SUB16:
> + *(u16 *)loc -= val;
> + break;
> case R_RISCV_ADD32:
> *(u32 *)loc += val;
> break;
> --
> 2.34.1
>
Reviewed-by: Andrew Jones <ajones@ventanamicro.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v1] riscv/kexec_file: Fix relocation type R_RISCV_ADD16 and R_RISCV_SUB16 unknown
2024-07-11 8:32 [PATCH v1] riscv/kexec_file: Fix relocation type R_RISCV_ADD16 and R_RISCV_SUB16 unknown sunying
2024-07-11 12:53 ` Petr Tesařík
2024-07-17 13:14 ` Andrew Jones
@ 2024-08-14 14:10 ` patchwork-bot+linux-riscv
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+linux-riscv @ 2024-08-14 14:10 UTC (permalink / raw)
To: None
Cc: linux-riscv, ebiederm, paul.walmsley, palmer, aou, kexec,
linux-kernel, zhuhengbo, petr
Hello:
This patch was applied to riscv/linux.git (for-next)
by Palmer Dabbelt <palmer@rivosinc.com>:
On Thu, 11 Jul 2024 08:32:36 +0000 you wrote:
> From: Ying Sun <sunying@isrc.iscas.ac.cn>
>
> Runs on the kernel with CONFIG_RISCV_ALTERNATIVE enabled:
> kexec -sl vmlinux
>
> Error:
> kexec_image: Unknown rela relocation: 34
> kexec_image: Error loading purgatory ret=-8
> and
> kexec_image: Unknown rela relocation: 38
> kexec_image: Error loading purgatory ret=-8
>
> [...]
Here is the summary with links:
- [v1] riscv/kexec_file: Fix relocation type R_RISCV_ADD16 and R_RISCV_SUB16 unknown
https://git.kernel.org/riscv/c/2d1f51d8a4b0
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-08-14 14:10 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-11 8:32 [PATCH v1] riscv/kexec_file: Fix relocation type R_RISCV_ADD16 and R_RISCV_SUB16 unknown sunying
2024-07-11 12:53 ` Petr Tesařík
2024-07-17 13:14 ` Andrew Jones
2024-08-14 14:10 ` patchwork-bot+linux-riscv
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox