Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 1 | /* |
| 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 Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 24 | #include <linux/hashtable.h> |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 25 | |
Jan Beulich | 2e51f26 | 2016-05-16 15:31:07 -0500 | [diff] [blame] | 26 | #ifdef LIBELF_USE_DEPRECATED |
| 27 | # define elf_getshdrnum elf_getshnum |
| 28 | # define elf_getshdrstrndx elf_getshstrndx |
| 29 | #endif |
| 30 | |
Greg Kroah-Hartman | b790b4f | 2018-06-03 12:35:15 +0200 | [diff] [blame] | 31 | /* |
| 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 Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 38 | struct section { |
| 39 | struct list_head list; |
| 40 | GElf_Shdr sh; |
Josh Poimboeuf | a196e17 | 2016-03-09 00:06:57 -0600 | [diff] [blame] | 41 | struct list_head symbol_list; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 42 | DECLARE_HASHTABLE(symbol_hash, 8); |
Josh Poimboeuf | a196e17 | 2016-03-09 00:06:57 -0600 | [diff] [blame] | 43 | struct list_head rela_list; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 44 | DECLARE_HASHTABLE(rela_hash, 16); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 45 | struct section *base, *rela; |
| 46 | struct symbol *sym; |
Greg Kroah-Hartman | b790b4f | 2018-06-03 12:35:15 +0200 | [diff] [blame] | 47 | Elf_Data *data; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 48 | char *name; |
| 49 | int idx; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 50 | unsigned int len; |
Greg Kroah-Hartman | b790b4f | 2018-06-03 12:35:15 +0200 | [diff] [blame] | 51 | bool changed, text; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | struct symbol { |
| 55 | struct list_head list; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 56 | struct hlist_node hash; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 57 | GElf_Sym sym; |
| 58 | struct section *sec; |
| 59 | char *name; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 60 | unsigned int idx; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 61 | unsigned char bind, type; |
| 62 | unsigned long offset; |
| 63 | unsigned int len; |
Josh Poimboeuf | 1f7f88a | 2018-05-09 22:39:15 -0500 | [diff] [blame^] | 64 | struct symbol *pfunc, *cfunc; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | struct rela { |
| 68 | struct list_head list; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 69 | struct hlist_node hash; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 70 | GElf_Rela rela; |
| 71 | struct symbol *sym; |
| 72 | unsigned int type; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 73 | unsigned long offset; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 74 | int addend; |
| 75 | }; |
| 76 | |
| 77 | struct elf { |
| 78 | Elf *elf; |
| 79 | GElf_Ehdr ehdr; |
| 80 | int fd; |
| 81 | char *name; |
| 82 | struct list_head sections; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 83 | DECLARE_HASHTABLE(rela_hash, 16); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | |
Greg Kroah-Hartman | b790b4f | 2018-06-03 12:35:15 +0200 | [diff] [blame] | 87 | struct elf *elf_open(const char *name, int flags); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 88 | struct section *find_section_by_name(struct elf *elf, const char *name); |
| 89 | struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset); |
Josh Poimboeuf | 1f7f88a | 2018-05-09 22:39:15 -0500 | [diff] [blame^] | 90 | struct symbol *find_symbol_by_name(struct elf *elf, const char *name); |
Josh Poimboeuf | 3e51ccb | 2017-03-02 16:57:23 -0600 | [diff] [blame] | 91 | struct symbol *find_symbol_containing(struct section *sec, unsigned long offset); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 92 | struct rela *find_rela_by_dest(struct section *sec, unsigned long offset); |
| 93 | struct rela *find_rela_by_dest_range(struct section *sec, unsigned long offset, |
| 94 | unsigned int len); |
| 95 | struct symbol *find_containing_func(struct section *sec, unsigned long offset); |
Greg Kroah-Hartman | b790b4f | 2018-06-03 12:35:15 +0200 | [diff] [blame] | 96 | struct section *elf_create_section(struct elf *elf, const char *name, size_t |
| 97 | entsize, int nr); |
| 98 | struct section *elf_create_rela_section(struct elf *elf, struct section *base); |
| 99 | int elf_rebuild_rela_section(struct section *sec); |
| 100 | int elf_write(struct elf *elf); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 101 | void elf_close(struct elf *elf); |
| 102 | |
Greg Kroah-Hartman | b790b4f | 2018-06-03 12:35:15 +0200 | [diff] [blame] | 103 | #define for_each_sec(file, sec) \ |
| 104 | list_for_each_entry(sec, &file->elf->sections, list) |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 105 | |
| 106 | #endif /* _OBJTOOL_ELF_H */ |