Blame view

tools/objtool/elf.h 2.26 KB
442f04c34   Josh Poimboeuf   objtool: Add tool...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  /*
   * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License
   * as published by the Free Software Foundation; either version 2
   * of the License, or (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, see <http://www.gnu.org/licenses/>.
   */
  
  #ifndef _OBJTOOL_ELF_H
  #define _OBJTOOL_ELF_H
  
  #include <stdio.h>
  #include <gelf.h>
  #include <linux/list.h>
042ba73fe   Josh Poimboeuf   objtool: Add seve...
24
  #include <linux/hashtable.h>
442f04c34   Josh Poimboeuf   objtool: Add tool...
25

2e51f2624   Jan Beulich   objtool: Allow bu...
26
27
28
29
  #ifdef LIBELF_USE_DEPRECATED
  # define elf_getshdrnum    elf_getshnum
  # define elf_getshdrstrndx elf_getshstrndx
  #endif
442f04c34   Josh Poimboeuf   objtool: Add tool...
30
31
32
  struct section {
  	struct list_head list;
  	GElf_Shdr sh;
a196e1719   Josh Poimboeuf   objtool: Rename s...
33
  	struct list_head symbol_list;
042ba73fe   Josh Poimboeuf   objtool: Add seve...
34
  	DECLARE_HASHTABLE(symbol_hash, 8);
a196e1719   Josh Poimboeuf   objtool: Rename s...
35
  	struct list_head rela_list;
042ba73fe   Josh Poimboeuf   objtool: Add seve...
36
  	DECLARE_HASHTABLE(rela_hash, 16);
442f04c34   Josh Poimboeuf   objtool: Add tool...
37
38
39
40
41
42
43
44
45
46
47
  	struct section *base, *rela;
  	struct symbol *sym;
  	Elf_Data *elf_data;
  	char *name;
  	int idx;
  	unsigned long data;
  	unsigned int len;
  };
  
  struct symbol {
  	struct list_head list;
042ba73fe   Josh Poimboeuf   objtool: Add seve...
48
  	struct hlist_node hash;
442f04c34   Josh Poimboeuf   objtool: Add tool...
49
50
51
  	GElf_Sym sym;
  	struct section *sec;
  	char *name;
042ba73fe   Josh Poimboeuf   objtool: Add seve...
52
  	unsigned int idx;
442f04c34   Josh Poimboeuf   objtool: Add tool...
53
54
55
56
57
58
59
  	unsigned char bind, type;
  	unsigned long offset;
  	unsigned int len;
  };
  
  struct rela {
  	struct list_head list;
042ba73fe   Josh Poimboeuf   objtool: Add seve...
60
  	struct hlist_node hash;
442f04c34   Josh Poimboeuf   objtool: Add tool...
61
62
63
  	GElf_Rela rela;
  	struct symbol *sym;
  	unsigned int type;
042ba73fe   Josh Poimboeuf   objtool: Add seve...
64
  	unsigned long offset;
442f04c34   Josh Poimboeuf   objtool: Add tool...
65
66
67
68
69
70
71
72
73
  	int addend;
  };
  
  struct elf {
  	Elf *elf;
  	GElf_Ehdr ehdr;
  	int fd;
  	char *name;
  	struct list_head sections;
042ba73fe   Josh Poimboeuf   objtool: Add seve...
74
  	DECLARE_HASHTABLE(rela_hash, 16);
442f04c34   Josh Poimboeuf   objtool: Add tool...
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
  };
  
  
  struct elf *elf_open(const char *name);
  struct section *find_section_by_name(struct elf *elf, const char *name);
  struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset);
  struct rela *find_rela_by_dest(struct section *sec, unsigned long offset);
  struct rela *find_rela_by_dest_range(struct section *sec, unsigned long offset,
  				     unsigned int len);
  struct symbol *find_containing_func(struct section *sec, unsigned long offset);
  void elf_close(struct elf *elf);
  
  
  
  #endif /* _OBJTOOL_ELF_H */