blob: 8b40ec430a6a95a1ca40a6d8eb4d2ac0a1629254 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Rick Chen42ac26f2017-12-26 13:55:56 +08002/*
3 * Copyright (C) 2017 Andes Technology
4 * Chih-Mao Chen <cmchen@andestech.com>
5 *
Rick Chen42ac26f2017-12-26 13:55:56 +08006 * Statically process runtime relocations on RISC-V ELF images
7 * so that it can be directly executed when loaded at LMA
8 * without fixup. Both RV32 and RV64 are supported.
9 */
10
11#define CONCAT_IMPL(x, y) x##y
12#define CONCAT(x, y) CONCAT_IMPL(x, y)
13#define CONCAT3(x, y, z) CONCAT(CONCAT(x, y), z)
14
Marcus Comstedt45399262019-08-02 19:45:16 +020015#define prelink_bonn CONCAT3(prelink_, PRELINK_BYTEORDER, PRELINK_INC_BITS)
Rick Chen42ac26f2017-12-26 13:55:56 +080016#define uintnn_t CONCAT3(uint, PRELINK_INC_BITS, _t)
Marcus Comstedt45399262019-08-02 19:45:16 +020017#define get_offset_bonn CONCAT3(get_offset_, PRELINK_BYTEORDER, PRELINK_INC_BITS)
Rick Chen42ac26f2017-12-26 13:55:56 +080018#define Elf_Ehdr CONCAT3(Elf, PRELINK_INC_BITS, _Ehdr)
19#define Elf_Phdr CONCAT3(Elf, PRELINK_INC_BITS, _Phdr)
20#define Elf_Rela CONCAT3(Elf, PRELINK_INC_BITS, _Rela)
21#define Elf_Sym CONCAT3(Elf, PRELINK_INC_BITS, _Sym)
22#define Elf_Dyn CONCAT3(Elf, PRELINK_INC_BITS, _Dyn)
23#define Elf_Addr CONCAT3(Elf, PRELINK_INC_BITS, _Addr)
24#define ELF_R_TYPE CONCAT3(ELF, PRELINK_INC_BITS, _R_TYPE)
25#define ELF_R_SYM CONCAT3(ELF, PRELINK_INC_BITS, _R_SYM)
Marcus Comstedt45399262019-08-02 19:45:16 +020026#define target16_to_cpu CONCAT(PRELINK_BYTEORDER, 16_to_cpu)
27#define target32_to_cpu CONCAT(PRELINK_BYTEORDER, 32_to_cpu)
28#define target64_to_cpu CONCAT(PRELINK_BYTEORDER, 64_to_cpu)
29#define targetnn_to_cpu CONCAT3(PRELINK_BYTEORDER, PRELINK_INC_BITS, _to_cpu)
Rick Chen42ac26f2017-12-26 13:55:56 +080030
Marcus Comstedt45399262019-08-02 19:45:16 +020031static void* get_offset_bonn (void* data, Elf_Phdr* phdrs, size_t phnum, Elf_Addr addr)
Rick Chen42ac26f2017-12-26 13:55:56 +080032{
33 Elf_Phdr *p;
34
35 for (p = phdrs; p < phdrs + phnum; ++p)
Marcus Comstedt45399262019-08-02 19:45:16 +020036 if (targetnn_to_cpu(p->p_vaddr) <= addr && targetnn_to_cpu(p->p_vaddr) + targetnn_to_cpu(p->p_memsz) > addr)
37 return data + targetnn_to_cpu(p->p_offset) + (addr - targetnn_to_cpu(p->p_vaddr));
Rick Chen42ac26f2017-12-26 13:55:56 +080038
39 return NULL;
40}
41
Marcus Comstedt45399262019-08-02 19:45:16 +020042static void prelink_bonn(void *data)
Rick Chen42ac26f2017-12-26 13:55:56 +080043{
44 Elf_Ehdr *ehdr = data;
45 Elf_Phdr *p;
46 Elf_Dyn *dyn;
47 Elf_Rela *r;
48
Marcus Comstedt45399262019-08-02 19:45:16 +020049 if (target16_to_cpu(ehdr->e_machine) != EM_RISCV)
Rick Chen42ac26f2017-12-26 13:55:56 +080050 die("Machine type is not RISC-V");
51
Marcus Comstedt45399262019-08-02 19:45:16 +020052 Elf_Phdr *phdrs = data + targetnn_to_cpu(ehdr->e_phoff);
Rick Chen42ac26f2017-12-26 13:55:56 +080053
54 Elf_Dyn *dyns = NULL;
Marcus Comstedt45399262019-08-02 19:45:16 +020055 for (p = phdrs; p < phdrs + target16_to_cpu(ehdr->e_phnum); ++p) {
56 if (target32_to_cpu(p->p_type) == PT_DYNAMIC) {
57 dyns = data + targetnn_to_cpu(p->p_offset);
Rick Chen42ac26f2017-12-26 13:55:56 +080058 break;
59 }
60 }
61
62 if (dyns == NULL)
63 die("No dynamic section found");
64
65 Elf_Rela *rela_dyn = NULL;
66 size_t rela_count = 0;
67 Elf_Sym *dynsym = NULL;
68 for (dyn = dyns;; ++dyn) {
Marcus Comstedt45399262019-08-02 19:45:16 +020069 if (targetnn_to_cpu(dyn->d_tag) == DT_NULL)
Rick Chen42ac26f2017-12-26 13:55:56 +080070 break;
Marcus Comstedt45399262019-08-02 19:45:16 +020071 else if (targetnn_to_cpu(dyn->d_tag) == DT_RELA)
72 rela_dyn = get_offset_bonn(data, phdrs, target16_to_cpu(ehdr->e_phnum), + targetnn_to_cpu(dyn->d_un.d_ptr));
73 else if (targetnn_to_cpu(dyn->d_tag) == DT_RELASZ)
74 rela_count = targetnn_to_cpu(dyn->d_un.d_val) / sizeof(Elf_Rela);
75 else if (targetnn_to_cpu(dyn->d_tag) == DT_SYMTAB)
76 dynsym = get_offset_bonn(data, phdrs, target16_to_cpu(ehdr->e_phnum), + targetnn_to_cpu(dyn->d_un.d_ptr));
Rick Chen42ac26f2017-12-26 13:55:56 +080077
78 }
79
80 if (rela_dyn == NULL)
81 die("No .rela.dyn found");
82
83 if (dynsym == NULL)
84 die("No .dynsym found");
85
86 for (r = rela_dyn; r < rela_dyn + rela_count; ++r) {
Marcus Comstedt45399262019-08-02 19:45:16 +020087 void* buf = get_offset_bonn(data, phdrs, target16_to_cpu(ehdr->e_phnum), targetnn_to_cpu(r->r_offset));
Rick Chen42ac26f2017-12-26 13:55:56 +080088
89 if (buf == NULL)
90 continue;
91
Marcus Comstedt45399262019-08-02 19:45:16 +020092 if (ELF_R_TYPE(targetnn_to_cpu(r->r_info)) == R_RISCV_RELATIVE)
Rick Chen42ac26f2017-12-26 13:55:56 +080093 *((uintnn_t*) buf) = r->r_addend;
Marcus Comstedt45399262019-08-02 19:45:16 +020094 else if (ELF_R_TYPE(targetnn_to_cpu(r->r_info)) == R_RISCV_32)
95 *((uint32_t*) buf) = dynsym[ELF_R_SYM(targetnn_to_cpu(r->r_info))].st_value;
96 else if (ELF_R_TYPE(targetnn_to_cpu(r->r_info)) == R_RISCV_64)
97 *((uint64_t*) buf) = dynsym[ELF_R_SYM(targetnn_to_cpu(r->r_info))].st_value;
Rick Chen42ac26f2017-12-26 13:55:56 +080098 }
99}
100
Marcus Comstedt45399262019-08-02 19:45:16 +0200101#undef prelink_bonn
Rick Chen42ac26f2017-12-26 13:55:56 +0800102#undef uintnn_t
Marcus Comstedt45399262019-08-02 19:45:16 +0200103#undef get_offset_bonn
Rick Chen42ac26f2017-12-26 13:55:56 +0800104#undef Elf_Ehdr
105#undef Elf_Phdr
106#undef Elf_Rela
107#undef Elf_Sym
108#undef Elf_Dyn
109#undef Elf_Addr
110#undef ELF_R_TYPE
111#undef ELF_R_SYM
Marcus Comstedt45399262019-08-02 19:45:16 +0200112#undef target16_to_cpu
113#undef target32_to_cpu
114#undef target64_to_cpu
115#undef targetnn_to_cpu
Rick Chen42ac26f2017-12-26 13:55:56 +0800116
117#undef CONCAT_IMPL
118#undef CONCAT
119#undef CONCAT3