blob: dfc93c20e914cf42fb7b25bc0726378993fb98e8 [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
27#include "common.h"
Patrick Georgib7b56dd82009-09-14 13:29:27 +000028#include "cbfs.h"
Hung-Te Lin4505ceb2013-01-28 22:40:10 +080029#include "elf.h"
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000030
Stefan Reinauer63217582012-10-29 16:52:36 -070031static unsigned int idemp(unsigned int x)
Patrick Georgib203c2f2009-08-20 14:48:03 +000032{
33 return x;
34}
35
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070036/* This is a wrapper around the swab32() macro to make it
Stefan Reinauera1e48242011-10-21 14:24:57 -070037 * usable for the current implementation of parse_elf_to_stage()
38 */
39static unsigned int swap32(unsigned int x)
Patrick Georgib203c2f2009-08-20 14:48:03 +000040{
Stefan Reinauera1e48242011-10-21 14:24:57 -070041 return swab32(x);
Patrick Georgib203c2f2009-08-20 14:48:03 +000042}
43
Patrick Georgib7b56dd82009-09-14 13:29:27 +000044unsigned int (*elf32_to_native) (unsigned int) = idemp;
Patrick Georgib203c2f2009-08-20 14:48:03 +000045
Patrick Georgib7b56dd82009-09-14 13:29:27 +000046/* returns size of result, or -1 if error */
Hung-Te Linc13e4bf2013-01-29 15:22:11 +080047int parse_elf_to_stage(const struct buffer *input, struct buffer *output,
48 comp_algo algo, uint32_t *location)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000049{
50 Elf32_Phdr *phdr;
Hung-Te Linc13e4bf2013-01-29 15:22:11 +080051 Elf32_Ehdr *ehdr = (Elf32_Ehdr *)input->data;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000052 char *header, *buffer;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000053
54 int headers;
55 int i;
Peter Stuge1d862de2009-04-14 00:08:34 +000056 struct cbfs_stage *stage;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000057 unsigned int data_start, data_end, mem_end;
58
Patrick Georgib203c2f2009-08-20 14:48:03 +000059 int elf_bigendian = 0;
Patrick Georgib7b56dd82009-09-14 13:29:27 +000060
61 comp_func_ptr compress = compression_function(algo);
62 if (!compress)
63 return -1;
64
Hung-Te Linc13e4bf2013-01-29 15:22:11 +080065 DEBUG("start: parse_elf_to_stage(location=0x%x)\n", *location);
66 if (!iself((unsigned char *)input->data)) {
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +080067 ERROR("The stage file is not in ELF format!\n");
David Hendricks90ca3b62012-11-16 14:48:22 -080068 return -1;
69 }
70
Hung-Te Linc13e4bf2013-01-29 15:22:11 +080071 // The tool may work in architecture-independent way.
72 if (arch != CBFS_ARCHITECTURE_UNKNOWN &&
73 !((ehdr->e_machine == EM_ARM) && (arch == CBFS_ARCHITECTURE_ARMV7)) &&
David Hendricks90ca3b62012-11-16 14:48:22 -080074 !((ehdr->e_machine == EM_386) && (arch == CBFS_ARCHITECTURE_X86))) {
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +080075 ERROR("The stage file has the wrong architecture\n");
Patrick Georgib7b56dd82009-09-14 13:29:27 +000076 return -1;
77 }
78
79 if (ehdr->e_ident[EI_DATA] == ELFDATA2MSB) {
Patrick Georgib203c2f2009-08-20 14:48:03 +000080 elf_bigendian = 1;
81 }
Hung-Te Lin332795c2013-01-28 15:53:34 +080082 if (elf_bigendian != is_big_endian()) {
Patrick Georgib203c2f2009-08-20 14:48:03 +000083 elf32_to_native = swap32;
84 }
85
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000086 headers = ehdr->e_phnum;
87 header = (char *)ehdr;
88
Patrick Georgib203c2f2009-08-20 14:48:03 +000089 phdr = (Elf32_Phdr *) & header[elf32_to_native(ehdr->e_phoff)];
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000090
91 /* Now, regular headers - we only care about PT_LOAD headers,
92 * because thats what we're actually going to load
93 */
94
95 data_start = 0xFFFFFFFF;
96 data_end = 0;
97 mem_end = 0;
98
99 for (i = 0; i < headers; i++) {
100 unsigned int start, mend, rend;
101
Patrick Georgib203c2f2009-08-20 14:48:03 +0000102 if (elf32_to_native(phdr[i].p_type) != PT_LOAD)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000103 continue;
104
105 /* Empty segments are never interesting */
Patrick Georgib203c2f2009-08-20 14:48:03 +0000106 if (elf32_to_native(phdr[i].p_memsz) == 0)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000107 continue;
108
109 /* BSS */
110
Patrick Georgib203c2f2009-08-20 14:48:03 +0000111 start = elf32_to_native(phdr[i].p_paddr);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000112
Patrick Georgib203c2f2009-08-20 14:48:03 +0000113 mend = start + elf32_to_native(phdr[i].p_memsz);
114 rend = start + elf32_to_native(phdr[i].p_filesz);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000115
116 if (start < data_start)
117 data_start = start;
118
119 if (rend > data_end)
120 data_end = rend;
121
122 if (mend > mem_end)
123 mem_end = mend;
124 }
125
Patrick Georgi9341acd2009-12-23 12:52:56 +0000126 if (data_start < *location) {
127 data_start = *location;
128 }
129
Patrick Georgia6c337d2010-02-03 17:56:37 +0000130 if (data_end <= data_start) {
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +0800131 ERROR("data ends before it starts. Make sure the "
Stefan Reinauer63217582012-10-29 16:52:36 -0700132 "ELF file is correct and resides in ROM space.\n");
Patrick Georgia6c337d2010-02-03 17:56:37 +0000133 exit(1);
134 }
135
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000136 /* allocate an intermediate buffer for the data */
137 buffer = calloc(data_end - data_start, 1);
138
139 if (buffer == NULL) {
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +0800140 ERROR("Unable to allocate memory: %m\n");
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000141 return -1;
142 }
143
144 /* Copy the file data into the buffer */
145
146 for (i = 0; i < headers; i++) {
Patrick Georgi9341acd2009-12-23 12:52:56 +0000147 unsigned int l_start, l_offset = 0;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000148
Patrick Georgib203c2f2009-08-20 14:48:03 +0000149 if (elf32_to_native(phdr[i].p_type) != PT_LOAD)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000150 continue;
151
Patrick Georgib203c2f2009-08-20 14:48:03 +0000152 if (elf32_to_native(phdr[i].p_memsz) == 0)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000153 continue;
154
Patrick Georgi9341acd2009-12-23 12:52:56 +0000155 l_start = elf32_to_native(phdr[i].p_paddr);
156 if (l_start < *location) {
157 l_offset = *location - l_start;
158 l_start = *location;
159 }
160
161 memcpy(buffer + (l_start - data_start),
162 &header[elf32_to_native(phdr[i].p_offset)+l_offset],
163 elf32_to_native(phdr[i].p_filesz)-l_offset);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000164 }
165
166 /* Now make the output buffer */
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800167 if (buffer_create(output, sizeof(*stage) + data_end - data_start,
168 input->name) != 0) {
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +0800169 ERROR("Unable to allocate memory: %m\n");
Paul Menzel2c8f81b2013-04-11 10:45:11 +0200170 free(buffer);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000171 return -1;
172 }
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800173 memset(output->data, 0, output->size);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000174
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800175 stage = (struct cbfs_stage *)output->data;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000176
Stefan Reinauera1e48242011-10-21 14:24:57 -0700177 stage->load = data_start; /* FIXME: htonll */
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000178 stage->memlen = mem_end - data_start;
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000179 stage->compression = algo;
Stefan Reinauera1e48242011-10-21 14:24:57 -0700180 stage->entry = ehdr->e_entry; /* FIXME: htonll */
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000181
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800182 compress(buffer, data_end - data_start, (output->data + sizeof(*stage)),
183 (int *)&stage->len);
Stefan Reinauer63217582012-10-29 16:52:36 -0700184 free(buffer);
185
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000186 if (*location)
187 *location -= sizeof(struct cbfs_stage);
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800188 output->size = sizeof(*stage) + stage->len;
189 return 0;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000190}