blob: 343968b778cba656d5d11d12c6141c1ef9675c82 [file] [log] [blame]
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06001/*
2 * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef _OBJTOOL_ELF_H
19#define _OBJTOOL_ELF_H
20
21#include <stdio.h>
22#include <gelf.h>
23#include <linux/list.h>
Josh Poimboeuf042ba732016-03-09 00:07:00 -060024#include <linux/hashtable.h>
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060025
Jan Beulich2e51f262016-05-16 15:31:07 -050026#ifdef LIBELF_USE_DEPRECATED
27# define elf_getshdrnum elf_getshnum
28# define elf_getshdrstrndx elf_getshstrndx
29#endif
30
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060031struct section {
32 struct list_head list;
33 GElf_Shdr sh;
Josh Poimboeufa196e172016-03-09 00:06:57 -060034 struct list_head symbol_list;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060035 DECLARE_HASHTABLE(symbol_hash, 8);
Josh Poimboeufa196e172016-03-09 00:06:57 -060036 struct list_head rela_list;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060037 DECLARE_HASHTABLE(rela_hash, 16);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060038 struct section *base, *rela;
39 struct symbol *sym;
Josh Poimboeufbaa41462017-06-28 10:11:07 -050040 Elf_Data *data;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060041 char *name;
42 int idx;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060043 unsigned int len;
44};
45
46struct symbol {
47 struct list_head list;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060048 struct hlist_node hash;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060049 GElf_Sym sym;
50 struct section *sec;
51 char *name;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060052 unsigned int idx;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060053 unsigned char bind, type;
54 unsigned long offset;
55 unsigned int len;
56};
57
58struct rela {
59 struct list_head list;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060060 struct hlist_node hash;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060061 GElf_Rela rela;
62 struct symbol *sym;
63 unsigned int type;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060064 unsigned long offset;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060065 int addend;
66};
67
68struct elf {
69 Elf *elf;
70 GElf_Ehdr ehdr;
71 int fd;
72 char *name;
73 struct list_head sections;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060074 DECLARE_HASHTABLE(rela_hash, 16);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060075};
76
77
78struct elf *elf_open(const char *name);
79struct section *find_section_by_name(struct elf *elf, const char *name);
80struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset);
Josh Poimboeuf5c51f4a2017-03-02 16:57:23 -060081struct symbol *find_symbol_containing(struct section *sec, unsigned long offset);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060082struct rela *find_rela_by_dest(struct section *sec, unsigned long offset);
83struct rela *find_rela_by_dest_range(struct section *sec, unsigned long offset,
84 unsigned int len);
85struct symbol *find_containing_func(struct section *sec, unsigned long offset);
86void elf_close(struct elf *elf);
87
Josh Poimboeufbaa41462017-06-28 10:11:07 -050088#define for_each_sec(file, sec) \
89 list_for_each_entry(sec, &file->elf->sections, list)
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060090
91#endif /* _OBJTOOL_ELF_H */