blob: bc97ed86b9cd8ebd3fc8e9e1512d8d06b3e96d14 [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 Poimboeuf627fce12017-07-11 10:33:42 -050031/*
32 * Fallback for systems without this "read, mmaping if possible" cmd.
33 */
34#ifndef ELF_C_READ_MMAP
35#define ELF_C_READ_MMAP ELF_C_READ
36#endif
37
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060038struct section {
39 struct list_head list;
40 GElf_Shdr sh;
Josh Poimboeufa196e172016-03-09 00:06:57 -060041 struct list_head symbol_list;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060042 DECLARE_HASHTABLE(symbol_hash, 8);
Josh Poimboeufa196e172016-03-09 00:06:57 -060043 struct list_head rela_list;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060044 DECLARE_HASHTABLE(rela_hash, 16);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060045 struct section *base, *rela;
46 struct symbol *sym;
Josh Poimboeufbaa41462017-06-28 10:11:07 -050047 Elf_Data *data;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060048 char *name;
49 int idx;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060050 unsigned int len;
Allan Xavier6a997c32018-09-07 08:12:01 -050051 bool changed, text, rodata;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060052};
53
54struct symbol {
55 struct list_head list;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060056 struct hlist_node hash;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060057 GElf_Sym sym;
58 struct section *sec;
59 char *name;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060060 unsigned int idx;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060061 unsigned char bind, type;
62 unsigned long offset;
63 unsigned int len;
Josh Poimboeuf13810432018-05-09 22:39:15 -050064 struct symbol *pfunc, *cfunc;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060065};
66
67struct rela {
68 struct list_head list;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060069 struct hlist_node hash;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060070 GElf_Rela rela;
Allan Xavier6a997c32018-09-07 08:12:01 -050071 struct section *rela_sec;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060072 struct symbol *sym;
73 unsigned int type;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060074 unsigned long offset;
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060075 int addend;
76};
77
78struct elf {
79 Elf *elf;
80 GElf_Ehdr ehdr;
81 int fd;
82 char *name;
83 struct list_head sections;
Josh Poimboeuf042ba732016-03-09 00:07:00 -060084 DECLARE_HASHTABLE(rela_hash, 16);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060085};
86
87
Josh Poimboeuf627fce12017-07-11 10:33:42 -050088struct elf *elf_open(const char *name, int flags);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060089struct section *find_section_by_name(struct elf *elf, const char *name);
90struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset);
Josh Poimboeuf13810432018-05-09 22:39:15 -050091struct symbol *find_symbol_by_name(struct elf *elf, const char *name);
Josh Poimboeuf5c51f4a2017-03-02 16:57:23 -060092struct symbol *find_symbol_containing(struct section *sec, unsigned long offset);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060093struct rela *find_rela_by_dest(struct section *sec, unsigned long offset);
94struct rela *find_rela_by_dest_range(struct section *sec, unsigned long offset,
95 unsigned int len);
96struct symbol *find_containing_func(struct section *sec, unsigned long offset);
Josh Poimboeuf627fce12017-07-11 10:33:42 -050097struct section *elf_create_section(struct elf *elf, const char *name, size_t
98 entsize, int nr);
99struct section *elf_create_rela_section(struct elf *elf, struct section *base);
100int elf_rebuild_rela_section(struct section *sec);
101int elf_write(struct elf *elf);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -0600102void elf_close(struct elf *elf);
103
Josh Poimboeufbaa41462017-06-28 10:11:07 -0500104#define for_each_sec(file, sec) \
105 list_for_each_entry(sec, &file->elf->sections, list)
Josh Poimboeuf442f04c2016-02-28 22:22:41 -0600106
107#endif /* _OBJTOOL_ELF_H */