blob: 57e4653f8383b269f21599f5106092c7d7aa0f0e [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>
24
25struct section {
26 struct list_head list;
27 GElf_Shdr sh;
Josh Poimboeufa196e172016-03-09 00:06:57 -060028 struct list_head symbol_list;
29 struct list_head rela_list;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060030 struct section *base, *rela;
31 struct symbol *sym;
32 Elf_Data *elf_data;
33 char *name;
34 int idx;
35 unsigned long data;
36 unsigned int len;
37};
38
39struct symbol {
40 struct list_head list;
41 GElf_Sym sym;
42 struct section *sec;
43 char *name;
44 int idx;
45 unsigned char bind, type;
46 unsigned long offset;
47 unsigned int len;
48};
49
50struct rela {
51 struct list_head list;
52 GElf_Rela rela;
53 struct symbol *sym;
54 unsigned int type;
55 int offset;
56 int addend;
57};
58
59struct elf {
60 Elf *elf;
61 GElf_Ehdr ehdr;
62 int fd;
63 char *name;
64 struct list_head sections;
65};
66
67
68struct elf *elf_open(const char *name);
69struct section *find_section_by_name(struct elf *elf, const char *name);
70struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset);
71struct rela *find_rela_by_dest(struct section *sec, unsigned long offset);
72struct rela *find_rela_by_dest_range(struct section *sec, unsigned long offset,
73 unsigned int len);
74struct symbol *find_containing_func(struct section *sec, unsigned long offset);
75void elf_close(struct elf *elf);
76
77
78
79#endif /* _OBJTOOL_ELF_H */