blob: 3da08365368ceda267cb3789334cf6dc01ffc1ff [file] [log] [blame]
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00001/*
Peter Stuge45ae92ff2009-04-14 19:48:32 +00002 * cbfs-mkstage
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00003 *
4 * Copyright (C) 2008 Jordan Crouse <jordan@cosmicpenguin.net>
Patrick Georgib7b56dd82009-09-14 13:29:27 +00005 * 2009 coresystems GmbH
6 * written by Patrick Georgi <patrick.georgi@coresystems.de>
David Hendricks90ca3b62012-11-16 14:48:22 -08007 * Copyright (C) 2012 Google, Inc.
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
21 */
22
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000026
Aaron Durbin54ef3062014-03-05 12:12:09 -060027#include "elfparsing.h"
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000028#include "common.h"
Patrick Georgib7b56dd82009-09-14 13:29:27 +000029#include "cbfs.h"
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000030
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080031/* returns size of result, or -1 if error.
32 * Note that, with the new code, this function
33 * works for all elf files, not just the restricted set.
34 */
35int parse_elf_to_stage(const struct buffer *input, struct buffer *output,
Alexandru Gagniuc35850ae2014-02-02 22:37:28 -060036 uint32_t arch, comp_algo algo, uint32_t *location)
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080037{
Furquan Shaikhcc6f84c2014-10-30 11:28:27 -070038 struct parsed_elf pelf;
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080039 Elf64_Phdr *phdr;
Furquan Shaikhcc6f84c2014-10-30 11:28:27 -070040 Elf64_Ehdr *ehdr;
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080041 char *buffer;
42 struct buffer outheader;
Furquan Shaikhcc6f84c2014-10-30 11:28:27 -070043 int ret = -1;
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080044
45 int headers;
46 int i, outlen;
47 uint32_t data_start, data_end, mem_end;
48
49 comp_func_ptr compress = compression_function(algo);
50 if (!compress)
51 return -1;
52
53 DEBUG("start: parse_elf_to_stage(location=0x%x)\n", *location);
54
Furquan Shaikhcc6f84c2014-10-30 11:28:27 -070055 int flags = ELF_PARSE_PHDR | ELF_PARSE_SHDR | ELF_PARSE_STRTAB;
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080056
Furquan Shaikhcc6f84c2014-10-30 11:28:27 -070057 if (parse_elf(input, &pelf, flags)) {
58 ERROR("Couldn't parse ELF\n");
59 return -1;
60 }
61
62 ehdr = &pelf.ehdr;
63 phdr = &pelf.phdr[0];
64
65 headers = ehdr->e_phnum;
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080066
67 data_start = ~0;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000068 data_end = 0;
69 mem_end = 0;
70
71 for (i = 0; i < headers; i++) {
72 unsigned int start, mend, rend;
73
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080074 if (phdr[i].p_type != PT_LOAD)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000075 continue;
76
77 /* Empty segments are never interesting */
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080078 if (phdr[i].p_memsz == 0)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000079 continue;
80
81 /* BSS */
82
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080083 start = phdr[i].p_paddr;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000084
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080085 mend = start + phdr[i].p_memsz;
86 rend = start + phdr[i].p_filesz;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000087
88 if (start < data_start)
89 data_start = start;
90
91 if (rend > data_end)
92 data_end = rend;
93
94 if (mend > mem_end)
95 mem_end = mend;
96 }
97
Patrick Georgi9341acd2009-12-23 12:52:56 +000098 if (data_start < *location) {
99 data_start = *location;
100 }
101
Patrick Georgia6c337d2010-02-03 17:56:37 +0000102 if (data_end <= data_start) {
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800103 ERROR("data ends (%08lx) before it starts (%08lx). Make sure "
104 "the ELF file is correct and resides in ROM space.\n",
105 (unsigned long)data_end, (unsigned long)data_start);
Patrick Georgia6c337d2010-02-03 17:56:37 +0000106 exit(1);
107 }
108
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000109 /* allocate an intermediate buffer for the data */
110 buffer = calloc(data_end - data_start, 1);
111
112 if (buffer == NULL) {
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +0800113 ERROR("Unable to allocate memory: %m\n");
Furquan Shaikhcc6f84c2014-10-30 11:28:27 -0700114 goto err;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000115 }
116
117 /* Copy the file data into the buffer */
118
119 for (i = 0; i < headers; i++) {
Patrick Georgi9341acd2009-12-23 12:52:56 +0000120 unsigned int l_start, l_offset = 0;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000121
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800122 if (phdr[i].p_type != PT_LOAD)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000123 continue;
124
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800125 if (phdr[i].p_memsz == 0)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000126 continue;
127
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800128 l_start = phdr[i].p_paddr;
Patrick Georgi9341acd2009-12-23 12:52:56 +0000129 if (l_start < *location) {
130 l_offset = *location - l_start;
131 l_start = *location;
132 }
133
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800134 /* A legal ELF file can have a program header with
135 * non-zero length but zero-length file size and a
136 * non-zero offset which, added together, are > than
137 * input->size (i.e. the total file size). So we need
138 * to not even test in the case that p_filesz is zero.
139 */
140 if (! phdr[i].p_filesz)
141 continue;
142 if (input->size < (phdr[i].p_offset + phdr[i].p_filesz)){
143 ERROR("Underflow copying out the segment."
Paul Menzel470c37c2014-03-16 00:15:57 +0100144 "File has %zu bytes left, segment end is %zu\n",
145 input->size, (size_t)(phdr[i].p_offset + phdr[i].p_filesz));
Daniele Forsi8e898472014-07-27 12:01:40 +0200146 free(buffer);
Furquan Shaikhcc6f84c2014-10-30 11:28:27 -0700147 goto err;
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800148 }
Patrick Georgi9341acd2009-12-23 12:52:56 +0000149 memcpy(buffer + (l_start - data_start),
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800150 &input->data[phdr[i].p_offset + l_offset],
151 phdr[i].p_filesz - l_offset);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000152 }
153
154 /* Now make the output buffer */
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800155 if (buffer_create(output, sizeof(struct cbfs_stage) + data_end - data_start,
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800156 input->name) != 0) {
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +0800157 ERROR("Unable to allocate memory: %m\n");
Paul Menzel2c8f81b2013-04-11 10:45:11 +0200158 free(buffer);
Furquan Shaikhcc6f84c2014-10-30 11:28:27 -0700159 goto err;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000160 }
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800161 memset(output->data, 0, output->size);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000162
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800163 /* Compress the data, at which point we'll know information
164 * to fill out the header. This seems backward but it works because
165 * - the output header is a known size (not always true in many xdr's)
166 * - we do need to know the compressed output size first
Gabe Black845aa142014-02-21 01:01:06 -0800167 * If compression fails or makes the data bigger, we'll warn about it
168 * and use the original data.
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800169 */
Gabe Blackdbd006b2014-02-20 23:38:49 -0800170 if (compress(buffer, data_end - data_start,
171 (output->data + sizeof(struct cbfs_stage)),
Gabe Black845aa142014-02-21 01:01:06 -0800172 &outlen) < 0 || outlen > data_end - data_start) {
173 WARN("Compression failed or would make the data bigger "
174 "- disabled.\n");
175 memcpy(output->data + sizeof(struct cbfs_stage),
176 buffer, data_end - data_start);
177 algo = CBFS_COMPRESS_NONE;
Gabe Blackdbd006b2014-02-20 23:38:49 -0800178 }
Stefan Reinauer63217582012-10-29 16:52:36 -0700179 free(buffer);
180
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800181 /* Set up for output marshaling. */
182 outheader.data = output->data;
183 outheader.size = 0;
184 /* N.B. The original plan was that SELF data was B.E.
185 * but: this is all L.E.
186 * Maybe we should just change the spec.
187 */
188 xdr_le.put32(&outheader, algo);
Furquan Shaikhcc6f84c2014-10-30 11:28:27 -0700189 xdr_le.put64(&outheader, ehdr->e_entry);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800190 xdr_le.put64(&outheader, data_start);
191 xdr_le.put32(&outheader, outlen);
192 xdr_le.put32(&outheader, mem_end - data_start);
193
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000194 if (*location)
195 *location -= sizeof(struct cbfs_stage);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800196 output->size = sizeof(struct cbfs_stage) + outlen;
Furquan Shaikhcc6f84c2014-10-30 11:28:27 -0700197 ret = 0;
198
199err:
200 parsed_elf_destroy(&pelf);
201 return ret;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000202}