[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 22/24] linux-user: permit RISC-V CFI dynamic entry in VDSO
From: |
Deepak Gupta |
Subject: |
[PATCH v2 22/24] linux-user: permit RISC-V CFI dynamic entry in VDSO |
Date: |
Mon, 29 Jul 2024 10:53:24 -0700 |
RISC-V CFI use new processor-specific dynamic entry in ELF. Permit it in
VDSO post-processing script.
Signed-off-by: Jim Shu <jim.shu@sifive.com>
Signed-off-by: Deepak Gupta <debug@rivosinc.com>
---
linux-user/gen-vdso-elfn.c.inc | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/linux-user/gen-vdso-elfn.c.inc b/linux-user/gen-vdso-elfn.c.inc
index 95856eb839..59c818eb11 100644
--- a/linux-user/gen-vdso-elfn.c.inc
+++ b/linux-user/gen-vdso-elfn.c.inc
@@ -273,6 +273,13 @@ static void elfN(process)(FILE *outf, void *buf, bool
need_bswap)
errors++;
break;
+ case PT_LOPROC + 2:
+ /* RISCV_ZICFILP_PLT: for RISC-V zicfilp extension */
+ if (ehdr->e_machine == EM_RISCV) {
+ break;
+ }
+ goto do_default;
+
case PT_LOPROC + 3:
if (ehdr->e_machine == EM_PPC64) {
break; /* DT_PPC64_OPT: integer bitmask */
--
2.44.0
- [PATCH v2 12/24] target/riscv: tb flag for shadow stack instructions, (continued)
- [PATCH v2 12/24] target/riscv: tb flag for shadow stack instructions, Deepak Gupta, 2024/07/29
- [PATCH v2 15/24] target/riscv: mmu changes for zicfiss shadow stack protection, Deepak Gupta, 2024/07/29
- [PATCH v2 13/24] target/riscv: implement zicfiss instructions, Deepak Gupta, 2024/07/29
- [PATCH v2 14/24] target/riscv: compressed encodings for sspush and sspopchk, Deepak Gupta, 2024/07/29
- [PATCH v2 17/24] linux-user/syscall: introduce prctl for shadow stack enable/disable, Deepak Gupta, 2024/07/29
- [PATCH v2 18/24] linux-user/riscv: setup/teardown zicfiss shadow stack for qemu-user, Deepak Gupta, 2024/07/29
- [PATCH v2 20/24] disas/riscv: enable disassembly for compressed sspush/sspopchk, Deepak Gupta, 2024/07/29
- [PATCH v2 21/24] target/riscv: add trace-hooks for each case of sw-check exception, Deepak Gupta, 2024/07/29
- [PATCH v2 19/24] disas/riscv: enable disassembly for zicfiss instructions, Deepak Gupta, 2024/07/29
- [PATCH v2 23/24] linux-user: Add RISC-V zicfilp support in VDSO, Deepak Gupta, 2024/07/29
- [PATCH v2 22/24] linux-user: permit RISC-V CFI dynamic entry in VDSO,
Deepak Gupta <=
- [PATCH v2 24/24] linux-user/riscv: Adding zicfiss/lp extension in hwprobe syscall, Deepak Gupta, 2024/07/29