blob: 23eb25f58effa8ca403df6388fd5561325466ffc [file] [log] [blame]
Aaron Durbin4fde5a62014-03-07 15:11:53 -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
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
16 */
17
18#include <stdio.h>
19#include <stdlib.h>
20#include <string.h>
21
22#include "elfparsing.h"
23#include "rmodule.h"
24#include "../../src/include/rmodule-defs.h"
25
26struct rmod_context;
27
28struct arch_ops {
29 int arch;
30 /* Determine if relocation is a valid type for the architecture. */
31 int (*valid_type)(struct rmod_context *ctx, Elf64_Rela *rel);
32 /* Determine if relocation should be emitted. */
33 int (*should_emit)(struct rmod_context *ctx, Elf64_Rela *rel);
34};
35
36struct rmod_context {
37 /* Ops to process relocations. */
38 struct arch_ops *ops;
39
40 /* endian conversion ops */
41 struct xdr *xdr;
42
43 /* Parsed ELF sturcture. */
44 struct parsed_elf pelf;
45 /* Program segment. */
46 Elf64_Phdr *phdr;
47
48 /* Collection of relocation addresses fixup in the module. */
49 Elf64_Xword nrelocs;
50 Elf64_Addr *emitted_relocs;
51
52 /* The following fields are addresses within the linked program. */
53 Elf64_Addr link_addr;
54 Elf64_Addr entry;
55 Elf64_Addr parameters_begin;
56 Elf64_Addr parameters_end;
57 Elf64_Addr bss_begin;
58 Elf64_Addr bss_end;
59 Elf64_Xword size;
60};
61
62/*
63 * Architecture specific support operations.
64 */
65static int valid_reloc_386(struct rmod_context *ctx, Elf64_Rela *rel)
66{
67 int type;
68
69 type = ELF64_R_TYPE(rel->r_info);
70
71 /* Only these 2 relocations are expected to be found. */
72 return (type == R_386_32 || type == R_386_PC32);
73}
74
75static int should_emit_386(struct rmod_context *ctx, Elf64_Rela *rel)
76{
77 int type;
78
79 type = ELF64_R_TYPE(rel->r_info);
80
81 /* R_386_32 relocations are absolute. Must emit these. */
82 return (type == R_386_32);
83}
84
Aaron Durbin785e47b2014-03-20 11:08:02 -050085static int valid_reloc_arm(struct rmod_context *ctx, Elf64_Rela *rel)
86{
87 int type;
88
89 type = ELF64_R_TYPE(rel->r_info);
90
Furquan Shaikhc4f08f72014-07-23 13:42:22 -070091 /* Only these 6 relocations are expected to be found. */
Aaron Durbin785e47b2014-03-20 11:08:02 -050092 return (type == R_ARM_ABS32 || type == R_ARM_THM_PC22 ||
Furquan Shaikhc4f08f72014-07-23 13:42:22 -070093 type == R_ARM_THM_JUMP24 || type == R_ARM_V4BX ||
94 type == R_ARM_CALL || type == R_ARM_JUMP24);
Aaron Durbin785e47b2014-03-20 11:08:02 -050095}
96
97static int should_emit_arm(struct rmod_context *ctx, Elf64_Rela *rel)
98{
99 int type;
100
101 type = ELF64_R_TYPE(rel->r_info);
102
103 /* R_ARM_ABS32 relocations are absolute. Must emit these. */
104 return (type == R_ARM_ABS32);
105}
106
Furquan Shaikhd2338ba2014-08-26 15:21:15 -0700107static int valid_reloc_aarch64(struct rmod_context *ctx, Elf64_Rela *rel)
108{
109 int type;
110
111 type = ELF64_R_TYPE(rel->r_info);
112
113 return (type == R_AARCH64_ADR_PREL_PG_HI21 ||
114 type == R_AARCH64_ADD_ABS_LO12_NC ||
Furquan Shaikhde77e6a2014-11-21 15:41:10 -0800115 type == R_AARCH64_LDST8_ABS_LO12_NC ||
Furquan Shaikhd2338ba2014-08-26 15:21:15 -0700116 type == R_AARCH64_JUMP26 ||
117 type == R_AARCH64_LDST32_ABS_LO12_NC ||
Aaron Durbina47898e2014-09-18 13:39:16 -0500118 type == R_AARCH64_LDST64_ABS_LO12_NC ||
Furquan Shaikhd2338ba2014-08-26 15:21:15 -0700119 type == R_AARCH64_CALL26 ||
120 type == R_AARCH64_ABS64 ||
121 type == R_AARCH64_LD_PREL_LO19 ||
122 type == R_AARCH64_ADR_PREL_LO21);
123}
124
125static int should_emit_aarch64(struct rmod_context *ctx, Elf64_Rela *rel)
126{
127 int type;
128
129 type = ELF64_R_TYPE(rel->r_info);
130
131 return (type == R_AARCH64_ABS64);
132}
133
Aaron Durbin4fde5a62014-03-07 15:11:53 -0600134static struct arch_ops reloc_ops[] = {
135 {
136 .arch = EM_386,
137 .valid_type = valid_reloc_386,
138 .should_emit = should_emit_386,
139 },
Aaron Durbin785e47b2014-03-20 11:08:02 -0500140 {
141 .arch = EM_ARM,
142 .valid_type = valid_reloc_arm,
143 .should_emit = should_emit_arm,
144 },
Furquan Shaikhd2338ba2014-08-26 15:21:15 -0700145 {
146 .arch = EM_AARCH64,
147 .valid_type = valid_reloc_aarch64,
148 .should_emit = should_emit_aarch64,
149 },
Aaron Durbin4fde5a62014-03-07 15:11:53 -0600150};
151
152/*
153 * Relocation processing loops.
154 */
155
156static int for_each_reloc(struct rmod_context *ctx, int do_emit)
157{
158 Elf64_Half i;
159 struct parsed_elf *pelf = &ctx->pelf;
160
161 for (i = 0; i < pelf->ehdr.e_shnum; i++) {
162 Elf64_Shdr *shdr;
163 Elf64_Rela *relocs;
164 Elf64_Xword nrelocs;
165 Elf64_Xword j;
166
167 relocs = pelf->relocs[i];
168
169 /* No relocations in this section. */
170 if (relocs == NULL)
171 continue;
172
173 shdr = &pelf->shdr[i];
174 nrelocs = shdr->sh_size / shdr->sh_entsize;
175
176 for (j = 0; j < nrelocs; j++) {
177 Elf64_Rela *r = &relocs[j];
178
179 if (!ctx->ops->valid_type(ctx, r)) {
180 ERROR("Invalid reloc type: %u\n",
181 (unsigned int)ELF64_R_TYPE(r->r_info));
182 return -1;
183 }
184
185 if (ctx->ops->should_emit(ctx, r)) {
186 int n = ctx->nrelocs;
187 if (do_emit)
188 ctx->emitted_relocs[n] = r->r_offset;
189 ctx->nrelocs++;
190 }
191 }
192 }
193
194 return 0;
195}
196
197static int find_program_segment(struct rmod_context *ctx)
198{
199 int i;
200 int nsegments;
201 struct parsed_elf *pelf;
202 Elf64_Phdr *phdr;
203
204 pelf = &ctx->pelf;
205
206 /* There should only be a single loadable segment. */
207 nsegments = 0;
208 for (i = 0; i < pelf->ehdr.e_phnum; i++) {
209 if (pelf->phdr[i].p_type != PT_LOAD)
210 continue;
211 phdr = &pelf->phdr[i];
212 nsegments++;
213 }
214
215 if (nsegments != 1) {
216 ERROR("Unexepcted number of loadable segments: %d.\n",
217 nsegments);
218 return -1;
219 }
220
221 INFO("Segment at 0x%0llx, file size 0x%0llx, mem size 0x%0llx.\n",
222 (long long)phdr->p_vaddr, (long long)phdr->p_filesz,
223 (long long)phdr->p_memsz);
224
225 ctx->phdr = phdr;
226
227 return 0;
228}
229
230static int
231filter_relocation_sections(struct rmod_context *ctx)
232{
233 int i;
234 const char *shstrtab;
235 struct parsed_elf *pelf;
236 const Elf64_Phdr *phdr;
237
238 pelf = &ctx->pelf;
239 phdr = ctx->phdr;
240 shstrtab = buffer_get(pelf->strtabs[pelf->ehdr.e_shstrndx]);
241
242 /*
243 * Find all relocation sections that contain relocation entries
244 * for sections that fall within the bounds of the segment. For
245 * easier processing the pointer to the relocation array for the
246 * sections that don't fall within the loadable program are NULL'd
247 * out.
248 */
249 for (i = 0; i < pelf->ehdr.e_shnum; i++) {
250 Elf64_Shdr *shdr;
251 Elf64_Word sh_info;
252 const char *section_name;
253
254 shdr = &pelf->shdr[i];
255
256 /* Ignore non-relocation sections. */
257 if (shdr->sh_type != SHT_RELA && shdr->sh_type != SHT_REL)
258 continue;
259
260 /* Obtain section which relocations apply. */
261 sh_info = shdr->sh_info;
262 shdr = &pelf->shdr[sh_info];
263
264 section_name = &shstrtab[shdr->sh_name];
265 DEBUG("Relocation section found for '%s' section.\n",
266 section_name);
267
268 /* Do not process relocations for debug sections. */
269 if (strstr(section_name, ".debug") != NULL) {
270 pelf->relocs[i] = NULL;
271 continue;
272 }
273
274 /*
275 * If relocations apply to a non program section ignore the
276 * relocations for future processing.
277 */
278 if (shdr->sh_type != SHT_PROGBITS) {
279 pelf->relocs[i] = NULL;
280 continue;
281 }
282
283 if (shdr->sh_addr < phdr->p_vaddr ||
284 ((shdr->sh_addr + shdr->sh_size) >
285 (phdr->p_vaddr + phdr->p_memsz))) {
286 ERROR("Relocations being applied to section %d not "
287 "within segment region.\n", sh_info);
288 return -1;
289 }
290 }
291
292 return 0;
293}
294
295static int vaddr_cmp(const void *a, const void *b)
296{
297 const Elf64_Addr *pa = a;
298 const Elf64_Addr *pb = b;
299
300 if (*pa < *pb)
301 return -1;
302 if (*pa > *pb)
303 return 1;
304 return 0;
305}
306
307static int collect_relocations(struct rmod_context *ctx)
308{
309 int nrelocs;
310
311 /*
312 * The relocs array in the pelf should only contain relocations that
313 * apply to the program. Count the number relocations. Then collect
314 * them into the allocated buffer.
315 */
316 if (for_each_reloc(ctx, 0))
317 return -1;
318
319 nrelocs = ctx->nrelocs;
320 INFO("%d relocations to be emitted.\n", nrelocs);
Furquan Shaikhb237c102014-08-26 14:59:36 -0700321 if (!nrelocs)
322 return 0;
Aaron Durbin4fde5a62014-03-07 15:11:53 -0600323
324 /* Reset the counter for indexing into the array. */
325 ctx->nrelocs = 0;
326 ctx->emitted_relocs = calloc(nrelocs, sizeof(Elf64_Addr));
327 /* Write out the relocations into the emitted_relocs array. */
328 if (for_each_reloc(ctx, 1))
329 return -1;
330
331 if (ctx->nrelocs != nrelocs) {
332 ERROR("Mismatch counted and emitted relocations: %zu vs %zu.\n",
333 (size_t)nrelocs, (size_t)ctx->nrelocs);
334 return -1;
335 }
336
337 /* Sort the relocations by their address. */
338 qsort(ctx->emitted_relocs, nrelocs, sizeof(Elf64_Addr), vaddr_cmp);
339
340 return 0;
341}
342
343static int
344populate_sym(struct rmod_context *ctx, const char *sym_name, Elf64_Addr *addr,
345 int nsyms, const char *strtab)
346{
347 int i;
348 Elf64_Sym *syms;
349
350 syms = ctx->pelf.syms;
351
352 for (i = 0; i < nsyms; i++) {
353 if (syms[i].st_name == 0)
354 continue;
355 if (strcmp(sym_name, &strtab[syms[i].st_name]))
356 continue;
357 DEBUG("%s -> 0x%llx\n", sym_name, (long long)syms[i].st_value);
358 *addr = syms[i].st_value;
359 return 0;
360 }
361 ERROR("symbol '%s' not found.\n", sym_name);
362 return -1;
363}
364
365static int populate_program_info(struct rmod_context *ctx)
366{
367 int i;
368 const char *strtab;
369 struct parsed_elf *pelf;
370 Elf64_Ehdr *ehdr;
371 int nsyms;
372
373 pelf = &ctx->pelf;
374 ehdr = &pelf->ehdr;
375
376 /* Obtain the string table. */
377 strtab = NULL;
378 for (i = 0; i < ehdr->e_shnum; i++) {
379 if (ctx->pelf.strtabs[i] == NULL)
380 continue;
381 /* Don't use the section headers' string table. */
382 if (i == ehdr->e_shstrndx)
383 continue;
384 strtab = buffer_get(ctx->pelf.strtabs[i]);
385 break;
386 }
387
388 if (strtab == NULL) {
389 ERROR("No string table found.\n");
390 return -1;
391 }
392
393 /* Determine number of symbols. */
394 nsyms = 0;
395 for (i = 0; i < ehdr->e_shnum; i++) {
396 if (pelf->shdr[i].sh_type != SHT_SYMTAB)
397 continue;
398
399 nsyms = pelf->shdr[i].sh_size / pelf->shdr[i].sh_entsize;
400 break;
401 }
402
403 if (populate_sym(ctx, "_module_params_begin", &ctx->parameters_begin,
404 nsyms, strtab))
405 return -1;
406
407 if (populate_sym(ctx, "_module_params_end", &ctx->parameters_end,
408 nsyms, strtab))
409 return -1;
410
411 if (populate_sym(ctx, "_bss", &ctx->bss_begin, nsyms, strtab))
412 return -1;
413
414 if (populate_sym(ctx, "_ebss", &ctx->bss_end, nsyms, strtab))
415 return -1;
416
417 if (populate_sym(ctx, "__rmodule_entry", &ctx->entry, nsyms, strtab))
418 return -1;
419
420 /* Link address is the virtual address of the program segment. */
421 ctx->link_addr = ctx->phdr->p_vaddr;
422
423 /* The program size is the memsz of the program segment. */
424 ctx->size = ctx->phdr->p_memsz;
425
426 return 0;
427}
428
429static int
430add_section(struct elf_writer *ew, struct buffer *data, const char *name,
431 Elf64_Addr addr, Elf64_Word size)
432{
433 Elf64_Shdr shdr;
434 int ret;
435
436 memset(&shdr, 0, sizeof(shdr));
437 if (data != NULL) {
438 shdr.sh_type = SHT_PROGBITS;
439 shdr.sh_flags = SHF_ALLOC | SHF_WRITE | SHF_EXECINSTR;
440 } else {
441 shdr.sh_type = SHT_NOBITS;
442 shdr.sh_flags = SHF_ALLOC;
443 }
444 shdr.sh_addr = addr;
445 shdr.sh_offset = addr;
446 shdr.sh_size = size;
447
448 ret = elf_writer_add_section(ew, &shdr, data, name);
449
450 if (ret)
451 ERROR("Could not add '%s' section.\n", name);
452
453 return ret;
454}
455
456static int
457write_elf(const struct rmod_context *ctx, const struct buffer *in,
458 struct buffer *out)
459{
460 int i;
461 int ret;
462 int bit64;
463 size_t loc;
464 size_t rmod_data_size;
465 struct elf_writer *ew;
466 struct buffer rmod_data;
467 struct buffer rmod_header;
468 struct buffer program;
469 struct buffer relocs;
470 Elf64_Xword total_size;
471 Elf64_Addr addr;
472 Elf64_Ehdr ehdr;
473
474 bit64 = ctx->pelf.ehdr.e_ident[EI_CLASS] == ELFCLASS64;
475
476 /*
477 * 3 sections will be added to the ELF file.
478 * +------------------+
479 * | rmodule header |
480 * +------------------+
481 * | program |
482 * +------------------+
483 * | relocations |
484 * +------------------+
485 */
486
487 /* Create buffer for header and relocations. */
488 rmod_data_size = sizeof(struct rmodule_header);
489 if (bit64)
490 rmod_data_size += ctx->nrelocs * sizeof(Elf64_Addr);
491 else
492 rmod_data_size += ctx->nrelocs * sizeof(Elf32_Addr);
493
494 if (buffer_create(&rmod_data, rmod_data_size, "rmod"))
495 return -1;
496
497 buffer_splice(&rmod_header, &rmod_data,
498 0, sizeof(struct rmodule_header));
499 buffer_clone(&relocs, &rmod_data);
500 buffer_seek(&relocs, sizeof(struct rmodule_header));
501
502 /* Reset current location. */
503 buffer_set_size(&rmod_header, 0);
504 buffer_set_size(&relocs, 0);
505
506 /* Program contents. */
507 buffer_splice(&program, in, ctx->phdr->p_offset, ctx->phdr->p_filesz);
508
509 /* Create ELF writer with modified entry point. */
510 memcpy(&ehdr, &ctx->pelf.ehdr, sizeof(ehdr));
511 ehdr.e_entry = ctx->entry;
512 ew = elf_writer_init(&ehdr);
513
514 if (ew == NULL) {
515 ERROR("Failed to create ELF writer.\n");
516 buffer_delete(&rmod_data);
517 return -1;
518 }
519
520 /* Write out rmodule_header. */
521 ctx->xdr->put16(&rmod_header, RMODULE_MAGIC);
522 ctx->xdr->put8(&rmod_header, RMODULE_VERSION_1);
523 ctx->xdr->put8(&rmod_header, 0);
524 /* payload_begin_offset */
525 loc = sizeof(struct rmodule_header);
526 ctx->xdr->put32(&rmod_header, loc);
527 /* payload_end_offset */
528 loc += ctx->phdr->p_filesz;
529 ctx->xdr->put32(&rmod_header, loc);
530 /* relocations_begin_offset */
531 ctx->xdr->put32(&rmod_header, loc);
532 /* relocations_end_offset */
533 if (bit64)
534 loc += ctx->nrelocs * sizeof(Elf64_Addr);
535 else
536 loc += ctx->nrelocs * sizeof(Elf32_Addr);
537 ctx->xdr->put32(&rmod_header, loc);
538 /* module_link_start_address */
539 ctx->xdr->put32(&rmod_header, ctx->link_addr);
540 /* module_program_size */
541 ctx->xdr->put32(&rmod_header, ctx->size);
542 /* module_entry_point */
543 ctx->xdr->put32(&rmod_header, ctx->entry);
544 /* parameters_begin */
545 ctx->xdr->put32(&rmod_header, ctx->parameters_begin);
546 /* parameters_end */
547 ctx->xdr->put32(&rmod_header, ctx->parameters_end);
548 /* bss_begin */
549 ctx->xdr->put32(&rmod_header, ctx->bss_begin);
550 /* bss_end */
551 ctx->xdr->put32(&rmod_header, ctx->bss_end);
552 /* padding[4] */
553 ctx->xdr->put32(&rmod_header, 0);
554 ctx->xdr->put32(&rmod_header, 0);
555 ctx->xdr->put32(&rmod_header, 0);
556 ctx->xdr->put32(&rmod_header, 0);
557
558 /* Write the relocations. */
559 for (i = 0; i < ctx->nrelocs; i++) {
560 if (bit64)
561 ctx->xdr->put64(&relocs, ctx->emitted_relocs[i]);
562 else
563 ctx->xdr->put32(&relocs, ctx->emitted_relocs[i]);
564 }
565
566 total_size = 0;
567 addr = 0;
568
569 /*
570 * There are 2 cases to deal with. The program has a large NOBITS
571 * section and the relocations can fit entirely within occupied memory
572 * region for the program. The other is that the relocations increase
573 * the memory footprint of the program if it was loaded directly into
574 * the region it would run. The rmdoule header is a fixed cost that
575 * is considered a part of the program.
576 */
577 total_size += buffer_size(&rmod_header);
Aaron Durbin518a3222014-08-26 13:52:30 -0500578 if (buffer_size(&relocs) + ctx->phdr->p_filesz > ctx->phdr->p_memsz) {
Aaron Durbin4fde5a62014-03-07 15:11:53 -0600579 total_size += buffer_size(&relocs);
580 total_size += ctx->phdr->p_filesz;
Aaron Durbin518a3222014-08-26 13:52:30 -0500581 } else {
582 total_size += ctx->phdr->p_memsz;
Aaron Durbin4fde5a62014-03-07 15:11:53 -0600583 }
584
585 ret = add_section(ew, &rmod_header, ".header", addr,
586 buffer_size(&rmod_header));
587 if (ret < 0)
588 goto out;
589 addr += buffer_size(&rmod_header);
590
591 ret = add_section(ew, &program, ".program", addr, ctx->phdr->p_filesz);
592 if (ret < 0)
593 goto out;
594 addr += ctx->phdr->p_filesz;
595
Furquan Shaikhb237c102014-08-26 14:59:36 -0700596 if (ctx->nrelocs) {
597 ret = add_section(ew, &relocs, ".relocs", addr,
598 buffer_size(&relocs));
599 if (ret < 0)
600 goto out;
601 addr += buffer_size(&relocs);
602 }
Aaron Durbin4fde5a62014-03-07 15:11:53 -0600603
604 if (total_size != addr) {
605 ret = add_section(ew, NULL, ".empty", addr, total_size - addr);
606 if (ret < 0)
607 goto out;
608 }
609
610 /*
611 * Ensure last section has a memory usage that meets the required
612 * total size of the program in memory.
613 */
614
615 ret = elf_writer_serialize(ew, out);
616 if (ret < 0)
617 ERROR("Failed to serialize ELF to buffer.\n");
618
619out:
620 buffer_delete(&rmod_data);
621 elf_writer_destroy(ew);
622
623 return ret;
624}
625
626int rmodule_create(const struct buffer *elfin, struct buffer *elfout)
627{
628 struct rmod_context ctx;
629 struct parsed_elf *pelf;
630 int i;
631 int ret;
632
633 ret = -1;
634 memset(&ctx, 0, sizeof(ctx));
635 pelf = &ctx.pelf;
636
637 if (parse_elf(elfin, pelf, ELF_PARSE_ALL)) {
638 ERROR("Couldn't parse ELF!\n");
639 return -1;
640 }
641
642 /* Only allow executables to be turned into rmodules. */
643 if (pelf->ehdr.e_type != ET_EXEC) {
644 ERROR("ELF is not an executable: %u.\n", pelf->ehdr.e_type);
645 goto out;
646 }
647
648 /* Determine if architecture is supported. */
649 for (i = 0; i < ARRAY_SIZE(reloc_ops); i++) {
650 if (reloc_ops[i].arch == pelf->ehdr.e_machine) {
651 ctx.ops = &reloc_ops[i];
652 break;
653 }
654 }
655
656 if (ctx.ops == NULL) {
657 ERROR("ELF is unsupported arch: %u.\n", pelf->ehdr.e_machine);
658 goto out;
659 }
660
661 /* Set the endian ops. */
662 if (ctx.pelf.ehdr.e_ident[EI_DATA] == ELFDATA2MSB)
663 ctx.xdr = &xdr_be;
664 else
665 ctx.xdr = &xdr_le;
666
667 if (find_program_segment(&ctx))
668 goto out;
669
670 if (filter_relocation_sections(&ctx))
671 goto out;
672
673 if (collect_relocations(&ctx))
674 goto out;
675
676 if (populate_program_info(&ctx))
677 goto out;
678
679 if (write_elf(&ctx, elfin, elfout))
680 goto out;
681
682 ret = 0;
683
684out:
685 free(ctx.emitted_relocs);
686 parsed_elf_destroy(pelf);
687 return ret;
688}