blob: 4b9ba8d4342e51a0112aacf9260d8828f9bfb7c0 [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/*
Aaron Durbin36be8132014-03-11 11:48:56 -050087 * Initialize a new ELF writer. Deafult machine type, endianness, etc is
88 * 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.
96 */
97void elf_writer_destroy(struct elf_writer *ew);
98
99/*
100 * Add a section to the ELF file. Section type, flags, and memsize are
101 * maintained from the passed in Elf64_Shdr. The buffer represents the
102 * content of the section while the name is the name of section itself.
103 * Returns < 0 on error, 0 on success.
104 */
105int elf_writer_add_section(struct elf_writer *ew, const Elf64_Shdr *shdr,
106 struct buffer *contents, const char *name);
107
Aaron Durbincedcb882015-10-28 11:26:40 -0500108/* Add an absolute symbol to the ELF file returning < 0 on error, index of
109 * symbol otherwise. */
110int elf_writer_add_symbol(struct elf_writer *ew, const char *name,
111 const char *section_name,
112 Elf64_Addr value, Elf64_Word size,
113 int binding, int type);
114
115/* Add an absolute relocation referencing the provided symbol name. Returns < 0
116 * on error, 0 on success. */
117int elf_writer_add_rel(struct elf_writer *ew, const char *sym, Elf64_Addr addr);
118
Aaron Durbin36be8132014-03-11 11:48:56 -0500119/*
120 * Serialize the ELF file to the output buffer. Return < 0 on error,
121 * 0 on success.
122 */
123int elf_writer_serialize(struct elf_writer *ew, struct buffer *out);
124
Aaron Durbin54ef3062014-03-05 12:12:09 -0600125#endif /* ELFPARSING_H */