mirror of https://github.com/dynup/kpatch
fix dynrela corruption in load/unload hooks
In kpatch_create_dynamic_rela_sections() the dest field is filled in with either the function symbol or the section symbol that contains the function depending on whether or not the sym field of the base section is NULL or not (around line 2153). In the case of the hook functions, we strip the FUNC symbol to prevent it from being added to the kpatch.funcs section as a patched function. However we weren't unbundling the stripped symbol from the section. This resulted in the sym field pointing to the null symbol (index 0), corrupting the dynrelas rela section. Before: Relocation section [14] '.rela.kpatch.dynrelas' for section [13] '.kpatch.dynrelas' at offset 0x8b8 contains 6 entries: Offset Type Value Addend Name 000000000000000000 X86_64_64 000000000000000000 +9 0x0000000000000018 X86_64_64 000000000000000000 +8 .kpatch.strings 0x0000000000000020 X86_64_64 000000000000000000 +0 .kpatch.strings 0x0000000000000030 X86_64_64 000000000000000000 +9 0x0000000000000048 X86_64_64 000000000000000000 +8 .kpatch.strings 0x0000000000000050 X86_64_64 000000000000000000 +0 .kpatch.strings This commit unbundles the stripped symbol from the section so that the section symbol is used in the dynrelas rela section. After: Relocation section [14] '.rela.kpatch.dynrelas' for section [13] '.kpatch.dynrelas' at offset 0x8b8 contains 6 entries: Offset Type Value Addend Name 000000000000000000 X86_64_64 000000000000000000 +9 .text.kpatch_load_aio_max_nr 0x0000000000000018 X86_64_64 000000000000000000 +8 .kpatch.strings 0x0000000000000020 X86_64_64 000000000000000000 +0 .kpatch.strings 0x0000000000000030 X86_64_64 000000000000000000 +9 .text.kpatch_unload_aio_max_nr 0x0000000000000048 X86_64_64 000000000000000000 +8 .kpatch.strings 0x0000000000000050 X86_64_64 000000000000000000 +0 .kpatch.strings Signed-off-by: Seth Jennings <sjenning@redhat.com>
This commit is contained in:
parent
5763fcdb27
commit
7dfad2fb76
|
@ -1212,6 +1212,7 @@ int kpatch_include_hook_elements(struct kpatch_elf *kelf)
|
|||
kpatch_include_symbol(sym, 0);
|
||||
/* strip the hook symbol */
|
||||
sym->include = 0;
|
||||
sym->sec->sym = NULL;
|
||||
/* use section symbol instead */
|
||||
rela->sym = sym->sec->secsym;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue