blob: e4ef5c835110f6a3823263e0cf971459fde41586 [file] [log] [blame]
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00001/*
Peter Stuge45ae92ff2009-04-14 19:48:32 +00002 * cbfs-mkpayload
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>
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
20 */
21
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <unistd.h>
26#include "elf.h"
27#include <fcntl.h>
28#include <getopt.h>
29#include <sys/stat.h>
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000030
31#include "common.h"
Patrick Georgib7b56dd82009-09-14 13:29:27 +000032#include "cbfs.h"
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000033
Patrick Georgib7b56dd82009-09-14 13:29:27 +000034int parse_elf_to_payload(unsigned char *input, unsigned char **output,
35 comp_algo algo)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000036{
37 Elf32_Phdr *phdr;
38 Elf32_Ehdr *ehdr;
39 Elf32_Shdr *shdr;
40 char *header;
41 char *strtab;
42 unsigned char *sptr;
43 int headers;
44 int segments = 1;
45 int isize = 0, osize = 0;
46 int doffset = 0;
Peter Stuge1d862de2009-04-14 00:08:34 +000047 struct cbfs_payload_segment *segs;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000048 int i;
49
Cristi Magherusan19a99c62009-09-25 22:21:47 +000050 if(!iself(input)){
51 printf("Fatal error: the payload file is not in ELF format!\n");
52 exit(1);
53 }
54
55
Patrick Georgib7b56dd82009-09-14 13:29:27 +000056 comp_func_ptr compress = compression_function(algo);
57 if (!compress)
58 return -1;
59
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000060 ehdr = (Elf32_Ehdr *) input;
61 headers = ehdr->e_phnum;
62 header = (char *)ehdr;
63
64 phdr = (Elf32_Phdr *) & (header[ehdr->e_phoff]);
65 shdr = (Elf32_Shdr *) & (header[ehdr->e_shoff]);
66
67 strtab = &header[shdr[ehdr->e_shstrndx].sh_offset];
68
69 /* Count the number of headers - look for the .notes.pinfo
70 * section */
71
72 for (i = 0; i < ehdr->e_shnum; i++) {
73 char *name;
74
75 if (i == ehdr->e_shstrndx)
76 continue;
77
78 if (shdr[i].sh_size == 0)
79 continue;
80
81 name = (char *)(strtab + shdr[i].sh_name);
82
Ronald G. Minnich5a1af7b2009-09-17 15:35:08 +000083 if (!strcmp(name, ".note.pinfo")) {
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000084 segments++;
Ronald G. Minnich5a1af7b2009-09-17 15:35:08 +000085 isize += (unsigned int)shdr[i].sh_size;
86 }
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000087 }
88
89 /* Now, regular headers - we only care about PT_LOAD headers,
90 * because thats what we're actually going to load
91 */
92
93 for (i = 0; i < headers; i++) {
94 if (phdr[i].p_type != PT_LOAD)
95 continue;
96
97 /* Empty segments are never interesting */
98 if (phdr[i].p_memsz == 0)
99 continue;
100
101 isize += phdr[i].p_filesz;
102
103 segments++;
104 }
105
106 /* Allocate a block of memory to store the data in */
107
108 sptr =
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000109 calloc((segments * sizeof(struct cbfs_payload_segment)) + isize, 1);
Peter Stuge1d862de2009-04-14 00:08:34 +0000110 doffset = (segments * sizeof(struct cbfs_payload_segment));
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000111
112 if (sptr == NULL)
113 goto err;
114
Peter Stuge1d862de2009-04-14 00:08:34 +0000115 segs = (struct cbfs_payload_segment *)sptr;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000116 segments = 0;
117
118 for (i = 0; i < ehdr->e_shnum; i++) {
119 char *name;
120
121 if (i == ehdr->e_shstrndx)
122 continue;
123
124 if (shdr[i].sh_size == 0)
125 continue;
126
127 name = (char *)(strtab + shdr[i].sh_name);
128
129 if (!strcmp(name, ".note.pinfo")) {
130 segs[segments].type = PAYLOAD_SEGMENT_PARAMS;
131 segs[segments].load_addr = 0;
132 segs[segments].len = (unsigned int)shdr[i].sh_size;
133 segs[segments].offset = doffset;
134
135 memcpy((unsigned long *)(sptr + doffset),
136 &header[shdr[i].sh_offset], shdr[i].sh_size);
137
138 doffset += segs[segments].len;
139 osize += segs[segments].len;
140
141 segments++;
142 }
143 }
144
145 for (i = 0; i < headers; i++) {
146 if (phdr[i].p_type != PT_LOAD)
147 continue;
148
149 if (phdr[i].p_memsz == 0)
150 continue;
151
152 if (phdr[i].p_filesz == 0) {
153 segs[segments].type = PAYLOAD_SEGMENT_BSS;
154 segs[segments].load_addr =
Stefan Reinauera1e48242011-10-21 14:24:57 -0700155 (uint64_t)htonll(phdr[i].p_paddr);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000156 segs[segments].mem_len =
Stefan Reinauera1e48242011-10-21 14:24:57 -0700157 (uint32_t)htonl(phdr[i].p_memsz);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000158 segs[segments].offset = htonl(doffset);
159
160 segments++;
161 continue;
162 }
163
Stefan Reinauer51f6a202012-01-11 12:40:14 -0800164 if (phdr[i].p_flags & PF_X)
165 segs[segments].type = PAYLOAD_SEGMENT_CODE;
166 else
167 segs[segments].type = PAYLOAD_SEGMENT_DATA;
Stefan Reinauera1e48242011-10-21 14:24:57 -0700168 segs[segments].load_addr = (uint64_t)htonll(phdr[i].p_paddr);
169 segs[segments].mem_len = (uint32_t)htonl(phdr[i].p_memsz);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000170 segs[segments].compression = htonl(algo);
171 segs[segments].offset = htonl(doffset);
172
173 int len;
174 compress((char *)&header[phdr[i].p_offset],
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000175 phdr[i].p_filesz, (char *)(sptr + doffset), &len);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000176 segs[segments].len = htonl(len);
177
178 /* If the compressed section is larger, then use the
179 original stuff */
180
Stefan Reinauer14ad50e2009-04-04 22:18:26 +0000181 if ((unsigned int)len > phdr[i].p_filesz) {
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000182 segs[segments].compression = 0;
183 segs[segments].len = htonl(phdr[i].p_filesz);
184
185 memcpy((char *)(sptr + doffset),
186 &header[phdr[i].p_offset], phdr[i].p_filesz);
187 }
188
189 doffset += ntohl(segs[segments].len);
190 osize += ntohl(segs[segments].len);
191
192 segments++;
193 }
194
195 segs[segments].type = PAYLOAD_SEGMENT_ENTRY;
Stefan Reinauera1e48242011-10-21 14:24:57 -0700196 segs[segments++].load_addr = (uint64_t)htonll(ehdr->e_entry);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000197
198 *output = sptr;
199
Peter Stuge1d862de2009-04-14 00:08:34 +0000200 return (segments * sizeof(struct cbfs_payload_segment)) + osize;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000201
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000202 err:
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000203 return -1;
204}