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>
13 #include <linux/rbtree.h>
14 #include <linux/jhash.h>
16 #ifdef LIBELF_USE_DEPRECATED
17 # define elf_getshdrnum elf_getshnum
18 # define elf_getshdrstrndx elf_getshstrndx
22 * Fallback for systems without this "read, mmaping if possible" cmd.
24 #ifndef ELF_C_READ_MMAP
25 #define ELF_C_READ_MMAP ELF_C_READ
29 struct list_head list;
30 struct hlist_node hash;
31 struct hlist_node name_hash;
33 struct rb_root symbol_tree;
34 struct list_head symbol_list;
35 struct list_head reloc_list;
36 struct section *base, *reloc;
41 bool changed, text, rodata, noinstr;
45 struct list_head list;
47 struct hlist_node hash;
48 struct hlist_node name_hash;
53 unsigned char bind, type;
56 struct symbol *pfunc, *cfunc, *alias;
58 bool static_call_tramp;
62 struct list_head list;
63 struct hlist_node hash;
74 bool jump_table_start;
77 #define ELF_HASH_BITS 20
85 unsigned int text_size;
86 struct list_head sections;
91 int section_name_bits;
94 struct hlist_head *symbol_hash;
95 struct hlist_head *symbol_name_hash;
96 struct hlist_head *section_hash;
97 struct hlist_head *section_name_hash;
98 struct hlist_head *reloc_hash;
101 #define OFFSET_STRIDE_BITS 4
102 #define OFFSET_STRIDE (1UL << OFFSET_STRIDE_BITS)
103 #define OFFSET_STRIDE_MASK (~(OFFSET_STRIDE - 1))
105 #define for_offset_range(_offset, _start, _end) \
106 for (_offset = ((_start) & OFFSET_STRIDE_MASK); \
107 _offset >= ((_start) & OFFSET_STRIDE_MASK) && \
108 _offset <= ((_end) & OFFSET_STRIDE_MASK); \
109 _offset += OFFSET_STRIDE)
111 static inline u32 sec_offset_hash(struct section *sec, unsigned long offset)
113 u32 ol, oh, idx = sec->idx;
115 offset &= OFFSET_STRIDE_MASK;
118 oh = (offset >> 16) >> 16;
120 __jhash_mix(ol, oh, idx);
125 static inline u32 reloc_hash(struct reloc *reloc)
127 return sec_offset_hash(reloc->sec, reloc->offset);
130 struct elf *elf_open_read(const char *name, int flags);
131 struct section *elf_create_section(struct elf *elf, const char *name, unsigned int sh_flags, size_t entsize, int nr);
133 int elf_add_reloc(struct elf *elf, struct section *sec, unsigned long offset,
134 unsigned int type, struct symbol *sym, int addend);
135 int elf_add_reloc_to_insn(struct elf *elf, struct section *sec,
136 unsigned long offset, unsigned int type,
137 struct section *insn_sec, unsigned long insn_off);
139 int elf_write_insn(struct elf *elf, struct section *sec,
140 unsigned long offset, unsigned int len,
142 int elf_write_reloc(struct elf *elf, struct reloc *reloc);
143 struct symbol *elf_create_undef_symbol(struct elf *elf, const char *name);
144 int elf_write(struct elf *elf);
145 void elf_close(struct elf *elf);
147 struct section *find_section_by_name(const struct elf *elf, const char *name);
148 struct symbol *find_func_by_offset(struct section *sec, unsigned long offset);
149 struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset);
150 struct symbol *find_symbol_by_name(const struct elf *elf, const char *name);
151 struct symbol *find_symbol_containing(const struct section *sec, unsigned long offset);
152 struct reloc *find_reloc_by_dest(const struct elf *elf, struct section *sec, unsigned long offset);
153 struct reloc *find_reloc_by_dest_range(const struct elf *elf, struct section *sec,
154 unsigned long offset, unsigned int len);
155 struct symbol *find_func_containing(struct section *sec, unsigned long offset);
157 #define for_each_sec(file, sec) \
158 list_for_each_entry(sec, &file->elf->sections, list)
160 #endif /* _OBJTOOL_ELF_H */