The vdsocheck tool validates the object files and final .so library. It can detect if the compiler created relocations which are incompatible with the vDSO which need to be worked around.
Wire it up for the architecture. Signed-off-by: Thomas Weißschuh <thomas.weisssc...@linutronix.de> --- arch/loongarch/vdso/Makefile | 4 ++-- lib/vdso/Kconfig | 1 + lib/vdso/check/vdsocheck.rs | 23 +++++++++++++++++++++++ 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/arch/loongarch/vdso/Makefile b/arch/loongarch/vdso/Makefile index d8316f993482406c2633b49b1daa475fc415a82c..a9b1934dce7c821df96e636a9833e70f22ee1b31 100644 --- a/arch/loongarch/vdso/Makefile +++ b/arch/loongarch/vdso/Makefile @@ -43,7 +43,7 @@ ldflags-y := -Bsymbolic --no-undefined -soname=linux-vdso.so.1 \ # quiet_cmd_vdsold_and_vdso_check = LD $@ - cmd_vdsold_and_vdso_check = $(cmd_ld); $(cmd_vdso_check) + cmd_vdsold_and_vdso_check = $(cmd_ld_vdso); $(cmd_vdso_check) quiet_cmd_vdsoas_o_S = AS $@ cmd_vdsoas_o_S = $(CC) $(a_flags) -c -o $@ $< @@ -72,7 +72,7 @@ $(obj-vdso): KBUILD_AFLAGS := $(aflags-vdso) $(native-abi) $(obj)/vdso.lds: KBUILD_CPPFLAGS := $(ccflags-vdso) $(native-abi) -$(obj)/vdso.so.dbg: $(obj)/vdso.lds $(obj-vdso) FORCE +$(obj)/vdso.so.dbg: $(obj)/vdso.lds $(obj-vdso) $(vdsocheck) FORCE $(call if_changed,vdsold_and_vdso_check) $(obj)/vdso.so: OBJCOPYFLAGS := -S diff --git a/lib/vdso/Kconfig b/lib/vdso/Kconfig index 441ff03e1028f7bde5104bd01941c6a9b006e21f..0fe70b3604f9925ef8c5608bb4cac24d3a28faab 100644 --- a/lib/vdso/Kconfig +++ b/lib/vdso/Kconfig @@ -56,6 +56,7 @@ config HAVE_VDSOCHECK default y if ARM64 default y if PPC default y if RISCV + default y if LOONGARCH help Selected for architectures that are supported by the 'vdsocheck' progam. Only transitional. diff --git a/lib/vdso/check/vdsocheck.rs b/lib/vdso/check/vdsocheck.rs index d48c9da6f18270afe883d167955f73f061b9c472..93819f668d8a4f623f41403bb09b42c4aec2c8de 100644 --- a/lib/vdso/check/vdsocheck.rs +++ b/lib/vdso/check/vdsocheck.rs @@ -115,6 +115,29 @@ fn allowed_relocations_for_machine(machine: u16) -> Option<AllowedRelocations<'s bindings::R_RISCV_32_PCREL, ], }), + bindings::EM_LOONGARCH => Some(AllowedRelocations { + ignored_object_file_sections: None, + in_object_file: &[ + bindings::R_LARCH_ADD8, + bindings::R_LARCH_ADD16, + bindings::R_LARCH_ADD24, + bindings::R_LARCH_ADD32, + bindings::R_LARCH_ADD64, + bindings::R_LARCH_SUB8, + bindings::R_LARCH_SUB16, + bindings::R_LARCH_SUB24, + bindings::R_LARCH_SUB32, + bindings::R_LARCH_SUB64, + bindings::R_LARCH_B16, + bindings::R_LARCH_B21, + bindings::R_LARCH_B26, + bindings::R_LARCH_PCALA_HI20, + bindings::R_LARCH_PCALA_LO12, + bindings::R_LARCH_PCALA64_LO20, + bindings::R_LARCH_PCALA64_HI12, + bindings::R_LARCH_32_PCREL, + ], + }), _ => None, } } -- 2.50.1