blob: fa1c277acca799f2133798eae71aa0268d07c14a [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.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010015 * Foundation, Inc.
Aaron Durbin54ef3062014-03-05 12:12:09 -060016 */
17
18#ifndef ELFPARSING_H
19#define ELFPARSING_H
20
21#include "elf.h"
Aaron Durbinc3e6e142014-03-05 14:33:42 -060022#include "common.h"
Aaron Durbin54ef3062014-03-05 12:12:09 -060023
Aaron Durbind0f61652014-03-05 13:09:55 -060024struct parsed_elf {
25 Elf64_Ehdr ehdr;
26 Elf64_Phdr *phdr;
27 Elf64_Shdr *shdr;
Aaron Durbinccb5ad82014-03-05 13:57:30 -060028 /*
29 * The relocs array contains pointers to arrays of relocation
30 * structures. Each index into the relocs array corresponds to its
31 * corresponding section index. i.e. if a section i is of type SHT_REL
32 * or SHT_RELA then the corresponding index into the relocs array will
33 * contain the associated relocations. Otherwise thee entry will be
34 * NULL.
35 */
36 Elf64_Rela **relocs;
Aaron Durbinc3e6e142014-03-05 14:33:42 -060037 /*
38 * Similarly to the relocs array the strtabs array consists of an
39 * array of pointers where each entry represents a potential struct
40 * buffer pointer. Only setions of type SHT_STRTAB will have a non-NULL
41 * entry.
42 */
43 struct buffer **strtabs;
Aaron Durbinc0780942014-03-05 16:41:27 -060044 /* Parsed symbols. */
45 Elf64_Sym *syms;
Aaron Durbind0f61652014-03-05 13:09:55 -060046};
47
48#define ELF_PARSE_PHDR (1 << 0)
49#define ELF_PARSE_SHDR (1 << 1)
Aaron Durbinccb5ad82014-03-05 13:57:30 -060050#define ELF_PARSE_RELOC (1 << 2)
Aaron Durbinc3e6e142014-03-05 14:33:42 -060051#define ELF_PARSE_STRTAB (1 << 3)
Aaron Durbinc0780942014-03-05 16:41:27 -060052#define ELF_PARSE_SYMTAB (1 << 4)
Aaron Durbind0f61652014-03-05 13:09:55 -060053
54#define ELF_PARSE_ALL (-1)
55
56/*
57 * Parse an ELF file contained within provide struct buffer. The ELF header
58 * is always parsed while the flags value containing the ELF_PARSE_* values
59 * determine if other parts of the ELF file will be parsed as well.
60 * Returns 0 on success, < 0 error.
61 */
62int parse_elf(const struct buffer *pinput, struct parsed_elf *pelf, int flags);
63
64/*
65 * Clean up memory associated with parsed_elf.
66 */
67void parsed_elf_destroy(struct parsed_elf *pelf);
68
69
Aaron Durbin54ef3062014-03-05 12:12:09 -060070int
71elf_headers(const struct buffer *pinput,
Aaron Durbin54ef3062014-03-05 12:12:09 -060072 Elf64_Ehdr *ehdr,
73 Elf64_Phdr **pphdr,
74 Elf64_Shdr **pshdr);
75
Aaron Durbin36be8132014-03-11 11:48:56 -050076/* ELF writing support. */
77struct elf_writer;
78
79/*
Aaron Durbin4f930c92015-10-27 16:21:55 -050080 * Initialize a 64-bit ELF header provided the inputs. While the structure
81 * is a 64-bit header one can specify a 32-bit machine. The 64-bit version
82 * is just used as a common structure. If one wants to specify the entry
83 * point, for example, the caller can set it after filling in the common
84 * bits. The machine, nbits, and endian values should be from the ELF
85 * definitions (e.g. EM_386, ELFCLASS32, and ELFDATA2LSB) found in elf.h
86 * with no endian conversion required.
87 */
88void elf_init_eheader(Elf64_Ehdr *ehdr, int machine, int nbits, int endian);
89
90/*
Aaron Durbin36be8132014-03-11 11:48:56 -050091 * Initialize a new ELF writer. Deafult machine type, endianness, etc is
92 * copied from the passed in Elf64_Ehdr. Returns NULL on failure, valid
93 * pointer on success.
94 */
95struct elf_writer *elf_writer_init(const Elf64_Ehdr *ehdr);
96
97/*
98 * Clean up any internal state represented by ew. Aftewards the elf_writer
99 * is invalid.
100 */
101void elf_writer_destroy(struct elf_writer *ew);
102
103/*
104 * Add a section to the ELF file. Section type, flags, and memsize are
105 * maintained from the passed in Elf64_Shdr. The buffer represents the
106 * content of the section while the name is the name of section itself.
107 * Returns < 0 on error, 0 on success.
108 */
109int elf_writer_add_section(struct elf_writer *ew, const Elf64_Shdr *shdr,
110 struct buffer *contents, const char *name);
111
112/*
113 * Serialize the ELF file to the output buffer. Return < 0 on error,
114 * 0 on success.
115 */
116int elf_writer_serialize(struct elf_writer *ew, struct buffer *out);
117
Aaron Durbin54ef3062014-03-05 12:12:09 -0600118#endif /* ELFPARSING_H */