summaryrefslogtreecommitdiff
path: root/plugins/elf/dynamic.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-01-29 20:56:31 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-01-29 21:04:47 (GMT)
commit6c51b9eed427fd55ce1457834853386cc8d543cd (patch)
tree47b8106bdb086278386d05c838178a06cc00f805 /plugins/elf/dynamic.h
parent8a7d7b3303dee1a381893391c04acab35dec6942 (diff)
Handled properly imported/exported ELF symbols, as well as all other symbols.
Diffstat (limited to 'plugins/elf/dynamic.h')
-rw-r--r--plugins/elf/dynamic.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/elf/dynamic.h b/plugins/elf/dynamic.h
index c166712..1ca4785 100644
--- a/plugins/elf/dynamic.h
+++ b/plugins/elf/dynamic.h
@@ -36,9 +36,15 @@ bool find_elf_dynamic_program_header(const GElfFormat *, elf_phdr *);
/* Retrouve un élément donné dans la section dynamique. */
bool find_elf_dynamic_item_from_pheader(const GElfFormat *, const elf_phdr *, int64_t, elf_dyn *);
+/* Retrouve rapidement un élément dans la section dynamique. */
+bool find_elf_dynamic_item(const GElfFormat *, int64_t, elf_dyn *);
+
/* Fournit la liste des objets partagés requis. */
const char **list_elf_needed_objects(const GElfFormat *, size_t *);
+/* Retrouve l'adresse de la PLT en se basant sur la GOT. */
+bool resolve_plt_using_got(GElfFormat *, virt_t *);
+
#endif /* _PLUGINS_ELF_DYNAMIC_H */