2012-10-25 18:37:31 +02:00
|
|
|
/****************************************************************************
|
2021-03-08 22:39:04 +01:00
|
|
|
* libs/libc/machine/x86/arch_elf.c
|
2012-10-25 18:37:31 +02:00
|
|
|
*
|
2021-04-02 09:22:52 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2012-10-25 18:37:31 +02:00
|
|
|
*
|
2021-04-02 09:22:52 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-10-25 18:37:31 +02:00
|
|
|
*
|
2021-04-02 09:22:52 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2012-10-25 18:37:31 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
2012-10-26 00:10:56 +02:00
|
|
|
#include <debug.h>
|
2012-10-25 18:37:31 +02:00
|
|
|
|
2019-01-26 18:18:45 +01:00
|
|
|
#include <nuttx/elf.h>
|
2012-10-25 18:37:31 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#define R_386_32 1
|
|
|
|
#define R_386_PC32 2
|
|
|
|
|
|
|
|
#define ELF_BITS 32
|
|
|
|
#define ELF_ARCH EM_386
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2014-08-25 14:47:14 +02:00
|
|
|
* Name: up_checkarch
|
2012-10-25 18:37:31 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Given the ELF header in 'hdr', verify that the ELF file is appropriate
|
|
|
|
* for the current, configured architecture. Every architecture that uses
|
|
|
|
* the ELF loader must provide this function.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* hdr - The ELF header read from the ELF file.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* True if the architecture supports this ELF file.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-05-14 10:01:52 +02:00
|
|
|
bool up_checkarch(const Elf32_Ehdr *hdr)
|
2012-10-25 18:37:31 +02:00
|
|
|
{
|
|
|
|
return hdr->e_machine == EM_386 || hdr->e_machine == EM_486;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2014-08-25 14:47:14 +02:00
|
|
|
* Name: up_relocate and up_relocateadd
|
2012-10-25 18:37:31 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2021-03-10 21:13:31 +01:00
|
|
|
* Perform an architecture-specific ELF relocation. Every architecture
|
2012-10-25 18:37:31 +02:00
|
|
|
* that uses the ELF loader must provide this function.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* rel - The relocation type
|
|
|
|
* sym - The ELF symbol structure containing the fully resolved value.
|
2014-09-10 00:52:51 +02:00
|
|
|
* There are a few relocation types for a few architectures that do
|
|
|
|
* not require symbol information. For those, this value will be
|
|
|
|
* NULL. Implementations of these functions must be able to handle
|
|
|
|
* that case.
|
2012-10-25 18:37:31 +02:00
|
|
|
* addr - The address that requires the relocation.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) if the relocation was successful. Otherwise, a negated errno
|
|
|
|
* value indicating the cause of the relocation failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
riscv/arch_elf.c: Handle PCREL_HI20/LO12_I/S relocations correctly
There is a problem with the current elf loader for risc-v: when a pair of
PCREL_HI20 / LO12 relocations are encountered, it is assumed that these
will follow each other immediately, as follows:
label:
auipc a0, %pcrel_hi(symbol) // R_RISCV_PCREL_HI20
load/store a0, %pcrel_lo(label)(a0) // R_RISCV_PCREL_LO12_I/S
With this assumption, the hi/lo relocations are both done when a hi20
relocation entry is encountered, first to the current instruction (addr)
and to the next instruction (addr + 4).
However, this assumption is wrong. There is nothing in the elf relocation
specification[1] that mandates this. Thus, the hi/lo relocation always
needs to first fixup the hi-part, and when the lo-part is encountered, it
needs to find the corresponding hi relocation entry, via the given "label".
This necessitates (re-)visiting the relocation entries for the current
section as well as looking for "label" in the symbol table.
The NuttX elf loader does not allow such operations to be done in the
machine specific part, so this patch fixes the relocation issue by
introducing an architecture specific cache for the hi20 relocation and
symbol table entries. When a lo12 relocation is encountered, the cache
can be consulted to find the hi20 part.
[1] https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/master/riscv-elf.adoc
2023-12-05 11:30:46 +01:00
|
|
|
int up_relocate(const Elf32_Rel *rel, const Elf32_Sym *sym, uintptr_t addr,
|
|
|
|
void *arch_data)
|
2012-10-25 18:37:31 +02:00
|
|
|
{
|
2022-05-14 10:01:52 +02:00
|
|
|
uint32_t *ptr = (uint32_t *)addr;
|
2012-10-25 18:37:31 +02:00
|
|
|
|
2014-09-10 00:52:51 +02:00
|
|
|
/* All relocations depend upon having valid symbol information. */
|
|
|
|
|
|
|
|
if (sym == NULL)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle the relocation by relocation type */
|
|
|
|
|
2012-10-26 00:10:56 +02:00
|
|
|
switch (ELF32_R_TYPE(rel->r_info))
|
2012-10-25 18:37:31 +02:00
|
|
|
{
|
|
|
|
case R_386_32:
|
|
|
|
*ptr += sym->st_value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_386_PC32:
|
|
|
|
*ptr += sym->st_value - (uint32_t)ptr;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2014-09-10 00:52:51 +02:00
|
|
|
return -EINVAL;
|
2012-10-25 18:37:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2022-05-14 10:01:52 +02:00
|
|
|
int up_relocateadd(const Elf32_Rela *rel, const Elf32_Sym *sym,
|
riscv/arch_elf.c: Handle PCREL_HI20/LO12_I/S relocations correctly
There is a problem with the current elf loader for risc-v: when a pair of
PCREL_HI20 / LO12 relocations are encountered, it is assumed that these
will follow each other immediately, as follows:
label:
auipc a0, %pcrel_hi(symbol) // R_RISCV_PCREL_HI20
load/store a0, %pcrel_lo(label)(a0) // R_RISCV_PCREL_LO12_I/S
With this assumption, the hi/lo relocations are both done when a hi20
relocation entry is encountered, first to the current instruction (addr)
and to the next instruction (addr + 4).
However, this assumption is wrong. There is nothing in the elf relocation
specification[1] that mandates this. Thus, the hi/lo relocation always
needs to first fixup the hi-part, and when the lo-part is encountered, it
needs to find the corresponding hi relocation entry, via the given "label".
This necessitates (re-)visiting the relocation entries for the current
section as well as looking for "label" in the symbol table.
The NuttX elf loader does not allow such operations to be done in the
machine specific part, so this patch fixes the relocation issue by
introducing an architecture specific cache for the hi20 relocation and
symbol table entries. When a lo12 relocation is encountered, the cache
can be consulted to find the hi20 part.
[1] https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/master/riscv-elf.adoc
2023-12-05 11:30:46 +01:00
|
|
|
uintptr_t addr, void *arch_data)
|
2012-10-25 18:37:31 +02:00
|
|
|
{
|
2016-06-14 17:16:34 +02:00
|
|
|
bwarn("WARNING: Not supported\n");
|
2012-10-25 18:37:31 +02:00
|
|
|
return -ENOSYS;
|
|
|
|
}
|