Thomas Gleixner | 1ccea77 | 2019-05-19 15:51:43 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com> |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef _OBJTOOL_ELF_H |
| 7 | #define _OBJTOOL_ELF_H |
| 8 | |
| 9 | #include <stdio.h> |
| 10 | #include <gelf.h> |
| 11 | #include <linux/list.h> |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 12 | #include <linux/hashtable.h> |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 13 | |
Jan Beulich | 2e51f26 | 2016-05-16 15:31:07 -0500 | [diff] [blame] | 14 | #ifdef LIBELF_USE_DEPRECATED |
| 15 | # define elf_getshdrnum elf_getshnum |
| 16 | # define elf_getshdrstrndx elf_getshstrndx |
| 17 | #endif |
| 18 | |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 19 | /* |
| 20 | * Fallback for systems without this "read, mmaping if possible" cmd. |
| 21 | */ |
| 22 | #ifndef ELF_C_READ_MMAP |
| 23 | #define ELF_C_READ_MMAP ELF_C_READ |
| 24 | #endif |
| 25 | |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 26 | struct section { |
| 27 | struct list_head list; |
| 28 | GElf_Shdr sh; |
Josh Poimboeuf | a196e17 | 2016-03-09 00:06:57 -0600 | [diff] [blame] | 29 | struct list_head symbol_list; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 30 | DECLARE_HASHTABLE(symbol_hash, 8); |
Josh Poimboeuf | a196e17 | 2016-03-09 00:06:57 -0600 | [diff] [blame] | 31 | struct list_head rela_list; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 32 | DECLARE_HASHTABLE(rela_hash, 16); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 33 | struct section *base, *rela; |
| 34 | struct symbol *sym; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 35 | Elf_Data *data; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 36 | char *name; |
| 37 | int idx; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 38 | unsigned int len; |
Allan Xavier | 4a60aa0 | 2018-09-07 08:12:01 -0500 | [diff] [blame] | 39 | bool changed, text, rodata; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 40 | }; |
| 41 | |
| 42 | struct symbol { |
| 43 | struct list_head list; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 44 | struct hlist_node hash; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 45 | GElf_Sym sym; |
| 46 | struct section *sec; |
| 47 | char *name; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 48 | unsigned int idx; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 49 | unsigned char bind, type; |
| 50 | unsigned long offset; |
| 51 | unsigned int len; |
Peter Zijlstra | 09f30d8 | 2019-02-28 14:17:50 +0100 | [diff] [blame] | 52 | struct symbol *pfunc, *cfunc, *alias; |
Peter Zijlstra | ea24213 | 2019-02-25 12:50:09 +0100 | [diff] [blame] | 53 | bool uaccess_safe; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | struct rela { |
| 57 | struct list_head list; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 58 | struct hlist_node hash; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 59 | GElf_Rela rela; |
Josh Poimboeuf | e7c2bc3 | 2019-07-17 20:36:53 -0500 | [diff] [blame] | 60 | struct section *sec; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 61 | struct symbol *sym; |
| 62 | unsigned int type; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 63 | unsigned long offset; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 64 | int addend; |
Jann Horn | bd98c81 | 2019-07-17 20:36:54 -0500 | [diff] [blame] | 65 | bool jump_table_start; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 66 | }; |
| 67 | |
| 68 | struct elf { |
| 69 | Elf *elf; |
| 70 | GElf_Ehdr ehdr; |
| 71 | int fd; |
| 72 | char *name; |
| 73 | struct list_head sections; |
Josh Poimboeuf | 042ba73 | 2016-03-09 00:07:00 -0600 | [diff] [blame] | 74 | DECLARE_HASHTABLE(rela_hash, 16); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 75 | }; |
| 76 | |
| 77 | |
Michael Forney | 8e14479 | 2019-07-10 16:20:11 -0500 | [diff] [blame] | 78 | struct elf *elf_read(const char *name, int flags); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 79 | struct section *find_section_by_name(struct elf *elf, const char *name); |
| 80 | struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset); |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 81 | struct symbol *find_symbol_by_name(struct elf *elf, const char *name); |
Josh Poimboeuf | 5c51f4a | 2017-03-02 16:57:23 -0600 | [diff] [blame] | 82 | struct symbol *find_symbol_containing(struct section *sec, unsigned long offset); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 83 | struct rela *find_rela_by_dest(struct section *sec, unsigned long offset); |
| 84 | struct rela *find_rela_by_dest_range(struct section *sec, unsigned long offset, |
| 85 | unsigned int len); |
| 86 | struct symbol *find_containing_func(struct section *sec, unsigned long offset); |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 87 | struct section *elf_create_section(struct elf *elf, const char *name, size_t |
| 88 | entsize, int nr); |
| 89 | struct section *elf_create_rela_section(struct elf *elf, struct section *base); |
| 90 | int elf_rebuild_rela_section(struct section *sec); |
| 91 | int elf_write(struct elf *elf); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 92 | void elf_close(struct elf *elf); |
| 93 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 94 | #define for_each_sec(file, sec) \ |
| 95 | list_for_each_entry(sec, &file->elf->sections, list) |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 96 | |
| 97 | #endif /* _OBJTOOL_ELF_H */ |