Added DT_SCE_JMPREL,DT_SCE_PLTRELSZ,DT_SCE_PLTREL,DT_SCE_RELA,DT_SCE_RELASZ,DT_SCE_RELAENT

This commit is contained in:
georgemoralis 2023-06-09 11:37:18 +03:00
parent d995a0e286
commit dd4dddded3
3 changed files with 64 additions and 17 deletions

View file

@ -31,6 +31,13 @@ struct DynamicModuleInfo
u64 fini_virtual_addr = 0;
u64 pltgot_virtual_addr = 0;
elf_relocation* jmp_relocation_table = nullptr;
u64 jmp_relocation_table_size = 0;
s64 jmp_relocation_type = 0;
elf_relocation* relocation_table = nullptr;
u64 relocation_table_size = 0;
u64 relocation_table_entries_size = 0;
};
class Linker