/* $NetBSD: elf2bb.c,v 1.30 2022/04/29 07:12:42 rin Exp $ */
/*-
* Copyright (c) 1996,2006 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Ignatios Souvatzis.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
dprintf(("%04x sections, offset %08x\n", be16toh(eh->e_shnum),
be32toh(eh->e_shoff)));
if (be16toh(eh->e_type) != ET_REL)
errx(1, "%s isn't a relocatable file, type=%d",
argv[0], be16toh(eh->e_type));
if (be16toh(eh->e_machine) != EM_68K)
errx(1, "%s isn't M68K, machine=%d", argv[0],
be16toh(eh->e_machine));
/* Calculate sizes from section headers. */
tsz = dsz = bsz = trsz = 0;
sh = (Elf32_Shdr *)(image + be32toh(eh->e_shoff));
shstrtab = (char *)(image +
be32toh(sh[be16toh(eh->e_shstrndx)].sh_offset));
symtab = NULL; /* XXX */
strtab = NULL; /* XXX */
dprintf((" name type flags"
" addr offset size align\n"));
for (i = 0; i < be16toh(eh->e_shnum); ++i) {
uint32_t sh_size;
dprintf(("%2d: %08x %-16s %08x %08x %08x %08x %08x %08x\n", i,
be32toh(sh[i].sh_name), shstrtab + be32toh(sh[i].sh_name),
be32toh(sh[i].sh_type), be32toh(sh[i].sh_flags),
be32toh(sh[i].sh_addr), be32toh(sh[i].sh_offset),
be32toh(sh[i].sh_size), be32toh(sh[i].sh_addralign)));
sh_size = (be32toh(sh[i].sh_size) +
be32toh(sh[i].sh_addralign) - 1) &
(- be32toh(sh[i].sh_addralign));
/*
* If section allocates memory, add to text, data,
* or bss size.
*/
if (be32toh(sh[i].sh_flags) & SHF_ALLOC) {
if (be32toh(sh[i].sh_type) == SHT_PROGBITS) {
if (be32toh(sh[i].sh_flags) & SHF_WRITE)
dsz += sh_size;
else
tsz += sh_size;
} else
bsz += sh_size;
/* If it's relocations, add to relocation count */
} else if (be32toh(sh[i].sh_type) == SHT_RELA) {
trsz += be32toh(sh[i].sh_size);
}
/* Check for SHT_REL? */
/* Get symbol table location. */
else if (be32toh(sh[i].sh_type) == SHT_SYMTAB) {
symtab = (Elf32_Sym *)(image +
be32toh(sh[i].sh_offset));
} else if (strcmp(".strtab", shstrtab +
be32toh(sh[i].sh_name)) == 0) {
strtab = image + be32toh(sh[i].sh_offset);
}
}
dprintf(("tsz = 0x%x, dsz = 0x%x, bsz = 0x%x, total 0x%x\n",
tsz, dsz, bsz, tsz + dsz + bsz));
if (trsz == 0)
errx(1, "%s has no relocation records.", argv[0]);
dprintf(("%d relocs\n", trsz / 12));
if (Sflag) {
/*
* For second-stage boot, there's no limit for binary size,
* and we dynamically scale it. However, it should be small
* enough so that
*
* (1) all R_68K_PC16 symbols get relocated, and
*
* (2) all values in our relocation table for R_68K_32
* symbols fit within 16-bit integer.
*
* Both will be checked by codes below.
*
* At the moment, (2) is satisfied with sufficient margin.
* But if it is not the case in the future, format for
* relocation table should be modified.
*/
bbsize = roundup(tsz + dsz, 512);
sumsize = bbsize / 512;
} else {
/*
* We have one contiguous area allocated by the ROM to us.
*/
if (tsz + dsz + bsz > bbsize)
errx(1, "%s: resulting image too big %d+%d+%d=%d",
argv[0], tsz, dsz, bsz, tsz + dsz + bsz);
}
/* Allocate and load loadable sections */
sect_offset = malloc(be16toh(eh->e_shnum) * sizeof(uint32_t));
for (i = 0, l = 0; i < be16toh(eh->e_shnum); ++i) {
if (be32toh(sh[i].sh_flags) & SHF_ALLOC) {
dprintf(("vaddr 0x%04x size 0x%04x offset 0x%04x section %s\n",
l, be32toh(sh[i].sh_size), be32toh(sh[i].sh_offset),
shstrtab + be32toh(sh[i].sh_name)));
if (be32toh(sh[i].sh_type) == SHT_PROGBITS)
memcpy(buffer + l,
image + be32toh(sh[i].sh_offset),
be32toh(sh[i].sh_size));
sect_offset[i] = l;
l += (be32toh(sh[i].sh_size) +
be32toh(sh[i].sh_addralign) - 1) &
(- be32toh(sh[i].sh_addralign));
}
}
/*
* Hm. This tool REALLY should understand more than one
* relocator version. For now, check that the relocator at
* the image start does understand what we output.
*/
relver = be32toh(*(uint32_t *)(buffer + 4));
switch (relver) {
default:
errx(1, "%s: unrecognized relocator version %d",
argv[0], relver);
/* NOTREACHED */
if (symtab == NULL)
errx(1, "No symbol table found");
/*
* Link sections and generate relocation data
* Nasty: .text, .rodata, .data, .bss sections are not linked
* Symbol table values relative to start of sections.
* For each relocation entry:
* Symbol value needs to be calculated: value + section offset
* Image data adjusted to calculated value of symbol + addend
* Add relocation table entry for 32-bit relocatable values
* PC-relative entries will be absolute and don't need relocation
*/
undefsyms = 0;
for (i = 0; i < be16toh(eh->e_shnum); ++i) {
int n;
Elf32_Rela *ra;
uint8_t *base;
if (be32toh(sh[i].sh_type) != SHT_RELA)
continue;
base = NULL;
if (strncmp(shstrtab + be32toh(sh[i].sh_name), ".rela", 5) != 0)
err(1, "bad relocation section name %s",
shstrtab + be32toh(sh[i].sh_name));
for (n = 0; n < be16toh(eh->e_shnum); ++n) {
if (strcmp(shstrtab + be32toh(sh[i].sh_name) + 5,
shstrtab + be32toh(sh[n].sh_name)) != 0)
continue;
base = buffer + sect_offset[n];
break;
}
if (base == NULL)
errx(1, "Can't find section for reloc %s",
shstrtab + be32toh(sh[i].sh_name));
ra = (Elf32_Rela *)(image + be32toh(sh[i].sh_offset));
for (n = 0; n < be32toh(sh[i].sh_size);
n += sizeof(Elf32_Rela), ++ra) {
Elf32_Sym *s;
int value;
s = &symtab[ELF32_R_SYM(be32toh(ra->r_info))];
if (s->st_shndx == ELF_SYM_UNDEFINED) {
fprintf(stderr, "Undefined symbol: %s\n",
strtab + be32toh(s->st_name));
++undefsyms;
}
value = be32toh(ra->r_addend) + eval(s, sect_offset);
dprintf(("reloc %04x info %04x (type %d sym %d) add 0x%x val %x\n",
be32toh(ra->r_offset), be32toh(ra->r_info),
ELF32_R_TYPE(be32toh(ra->r_info)),
ELF32_R_SYM(be32toh(ra->r_info)),
be32toh(ra->r_addend), value));
switch (ELF32_R_TYPE(be32toh(ra->r_info))) {
case R_68K_32:
tmp32 = htobe32(value);
memcpy(base + be32toh(ra->r_offset), &tmp32,
sizeof(tmp32));
relbuf[r32sz++] = (base - buffer) +
be32toh(ra->r_offset);
break;
case R_68K_PC32:
++pcrelsz;
tmp32 = htobe32(value - be32toh(ra->r_offset));
memcpy(base + be32toh(ra->r_offset), &tmp32,
sizeof(tmp32));
break;
case R_68K_PC16:
++pcrelsz;
value -= be32toh(ra->r_offset);
if (value < -0x8000 || value > 0x7fff)
errx(1, "PC-relative offset out of range: %x\n",
value);
tmp16 = htobe16(value);
memcpy(base + be32toh(ra->r_offset), &tmp16,
sizeof(tmp16));
break;
default:
errx(1, "Relocation type %d not supported",
ELF32_R_TYPE(be32toh(ra->r_info)));
}
}
}
dprintf(("%d PC-relative relocations, %d 32-bit relocations\n",
pcrelsz, r32sz));
printf("%d absolute reloc%s found, ", r32sz, r32sz == 1 ? "" : "s");
i = r32sz;
if (i > 1)
heapsort(relbuf, r32sz, 4, intcmp);