1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
11 #include <linux/list.h>
12 #include <linux/hashtable.h>
14 #ifdef LIBELF_USE_DEPRECATED
15 # define elf_getshdrnum elf_getshnum
16 # define elf_getshdrstrndx elf_getshstrndx
20 * Fallback for systems without this "read, mmaping if possible" cmd.
22 #ifndef ELF_C_READ_MMAP
23 #define ELF_C_READ_MMAP ELF_C_READ
27 struct list_head list;
29 struct list_head symbol_list;
30 DECLARE_HASHTABLE(symbol_hash, 8);
31 struct list_head rela_list;
32 DECLARE_HASHTABLE(rela_hash, 16);
33 struct section *base, *rela;
39 bool changed, text, rodata;
43 struct list_head list;
44 struct hlist_node hash;
49 unsigned char bind, type;
52 struct symbol *pfunc, *cfunc, *alias;
57 struct list_head list;
58 struct hlist_node hash;
60 struct section *rela_sec;
72 struct list_head sections;
73 DECLARE_HASHTABLE(rela_hash, 16);
77 struct elf *elf_open(const char *name, int flags);
78 struct section *find_section_by_name(struct elf *elf, const char *name);
79 struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset);
80 struct symbol *find_symbol_by_name(struct elf *elf, const char *name);
81 struct symbol *find_symbol_containing(struct section *sec, unsigned long offset);
82 struct rela *find_rela_by_dest(struct section *sec, unsigned long offset);
83 struct rela *find_rela_by_dest_range(struct section *sec, unsigned long offset,
85 struct symbol *find_containing_func(struct section *sec, unsigned long offset);
86 struct section *elf_create_section(struct elf *elf, const char *name, size_t
88 struct section *elf_create_rela_section(struct elf *elf, struct section *base);
89 int elf_rebuild_rela_section(struct section *sec);
90 int elf_write(struct elf *elf);
91 void elf_close(struct elf *elf);
93 #define for_each_sec(file, sec) \
94 list_for_each_entry(sec, &file->elf->sections, list)
96 #endif /* _OBJTOOL_ELF_H */