blob: 8b08c135afc0bbf4b2021255a3c4842ce0d5fe66 [file] [log] [blame]
Aaron Durbin54ef3062014-03-05 12:12:09 -06001/*
2 * Copyright (C) 2014 Google, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
Aaron Durbin54ef3062014-03-05 12:12:09 -060012 */
13
14#ifndef ELFPARSING_H
15#define ELFPARSING_H
16
17#include "elf.h"
Aaron Durbinc3e6e142014-03-05 14:33:42 -060018#include "common.h"
Aaron Durbin54ef3062014-03-05 12:12:09 -060019
Aaron Durbind0f61652014-03-05 13:09:55 -060020struct parsed_elf {
21 Elf64_Ehdr ehdr;
22 Elf64_Phdr *phdr;
23 Elf64_Shdr *shdr;
Aaron Durbinccb5ad82014-03-05 13:57:30 -060024 /*
25 * The relocs array contains pointers to arrays of relocation
26 * structures. Each index into the relocs array corresponds to its
27 * corresponding section index. i.e. if a section i is of type SHT_REL
28 * or SHT_RELA then the corresponding index into the relocs array will
29 * contain the associated relocations. Otherwise thee entry will be
30 * NULL.
31 */
32 Elf64_Rela **relocs;
Aaron Durbinc3e6e142014-03-05 14:33:42 -060033 /*
34 * Similarly to the relocs array the strtabs array consists of an
35 * array of pointers where each entry represents a potential struct
36 * buffer pointer. Only setions of type SHT_STRTAB will have a non-NULL
37 * entry.
38 */
39 struct buffer **strtabs;
Aaron Durbinc0780942014-03-05 16:41:27 -060040 /* Parsed symbols. */
41 Elf64_Sym *syms;
Aaron Durbind0f61652014-03-05 13:09:55 -060042};
43
44#define ELF_PARSE_PHDR (1 << 0)
45#define ELF_PARSE_SHDR (1 << 1)
Aaron Durbinccb5ad82014-03-05 13:57:30 -060046#define ELF_PARSE_RELOC (1 << 2)
Aaron Durbinc3e6e142014-03-05 14:33:42 -060047#define ELF_PARSE_STRTAB (1 << 3)
Aaron Durbinc0780942014-03-05 16:41:27 -060048#define ELF_PARSE_SYMTAB (1 << 4)
Aaron Durbind0f61652014-03-05 13:09:55 -060049
50#define ELF_PARSE_ALL (-1)
51
52/*
53 * Parse an ELF file contained within provide struct buffer. The ELF header
54 * is always parsed while the flags value containing the ELF_PARSE_* values
55 * determine if other parts of the ELF file will be parsed as well.
56 * Returns 0 on success, < 0 error.
57 */
58int parse_elf(const struct buffer *pinput, struct parsed_elf *pelf, int flags);
59
60/*
61 * Clean up memory associated with parsed_elf.
62 */
63void parsed_elf_destroy(struct parsed_elf *pelf);
64
65
Aaron Durbin54ef3062014-03-05 12:12:09 -060066int
67elf_headers(const struct buffer *pinput,
Aaron Durbin54ef3062014-03-05 12:12:09 -060068 Elf64_Ehdr *ehdr,
69 Elf64_Phdr **pphdr,
70 Elf64_Shdr **pshdr);
71
Aaron Durbin36be8132014-03-11 11:48:56 -050072/* ELF writing support. */
73struct elf_writer;
74
75/*
Aaron Durbin4f930c92015-10-27 16:21:55 -050076 * Initialize a 64-bit ELF header provided the inputs. While the structure
77 * is a 64-bit header one can specify a 32-bit machine. The 64-bit version
78 * is just used as a common structure. If one wants to specify the entry
79 * point, for example, the caller can set it after filling in the common
80 * bits. The machine, nbits, and endian values should be from the ELF
81 * definitions (e.g. EM_386, ELFCLASS32, and ELFDATA2LSB) found in elf.h
82 * with no endian conversion required.
83 */
84void elf_init_eheader(Elf64_Ehdr *ehdr, int machine, int nbits, int endian);
85
86/*
Elyes HAOUAS3db01982018-08-23 18:08:20 +020087 * Initialize a new ELF writer. Default machine type, endianness, etc is
Aaron Durbin36be8132014-03-11 11:48:56 -050088 * copied from the passed in Elf64_Ehdr. Returns NULL on failure, valid
89 * pointer on success.
90 */
91struct elf_writer *elf_writer_init(const Elf64_Ehdr *ehdr);
92
93/*
94 * Clean up any internal state represented by ew. Aftewards the elf_writer
95 * is invalid.
Furquan Shaikhb927bec2016-08-05 12:04:55 -070096 * It is safe to call elf_writer_destroy with ew as NULL. It returns without
97 * performing any action.
Aaron Durbin36be8132014-03-11 11:48:56 -050098 */
99void elf_writer_destroy(struct elf_writer *ew);
100
101/*
102 * Add a section to the ELF file. Section type, flags, and memsize are
103 * maintained from the passed in Elf64_Shdr. The buffer represents the
104 * content of the section while the name is the name of section itself.
105 * Returns < 0 on error, 0 on success.
106 */
107int elf_writer_add_section(struct elf_writer *ew, const Elf64_Shdr *shdr,
108 struct buffer *contents, const char *name);
109
Aaron Durbincedcb882015-10-28 11:26:40 -0500110/* Add an absolute symbol to the ELF file returning < 0 on error, index of
111 * symbol otherwise. */
112int elf_writer_add_symbol(struct elf_writer *ew, const char *name,
113 const char *section_name,
114 Elf64_Addr value, Elf64_Word size,
115 int binding, int type);
116
117/* Add an absolute relocation referencing the provided symbol name. Returns < 0
118 * on error, 0 on success. */
119int elf_writer_add_rel(struct elf_writer *ew, const char *sym, Elf64_Addr addr);
120
Aaron Durbin36be8132014-03-11 11:48:56 -0500121/*
122 * Serialize the ELF file to the output buffer. Return < 0 on error,
123 * 0 on success.
124 */
125int elf_writer_serialize(struct elf_writer *ew, struct buffer *out);
126
Aaron Durbinfacf1492017-12-18 14:50:22 -0700127/*
128 * Calculate the loadable program's file size footprint. Returns < 0 on error,
129 * 0 on success.
130 */
131int elf_program_file_size(const struct buffer *input, size_t *file_size);
132
Aaron Durbin54ef3062014-03-05 12:12:09 -0600133#endif /* ELFPARSING_H */