mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
02dd9d2568
Generally, glibc dynamic linker should have two ways to deal with ifunc - one is to handle the IRELATIVE relocations for the non-preemtive ifunc symbols, the other is to handle the R_RISCV_32/64 and R_RISCV_JUMP_SLOT relocations with the STT_IFUNC preemtive symbols. No matter which method is used, both of them should get the resolved ifunc symbols at runtime. Therefore, linker needs to generate the correct dynamic relocations for ifunc to make sure the the dynamic linker works well. For now, there are thirteen relocations are supported for ifunc in GNU ld, * R_RISCV_CALL and R_RISCV_CALL_PLT: The RISC-V compiler won't generate R_RISCV_JAL directly to jump to an ifunc. Besides, we disable the relaxations for the relocation referenced to ifunc, so just handling the R_RISCV_CALL and R_RISCV_CALL_PLT should be enough. Linker should generate a .plt entry and a .got.plt entry for it, and also needs to insert a dynamic IRELATIVE in the .got.plt enrty, or insert a R_RISCV_JUMP_SLOT when generating shared library. * R_RISCV_PCREL_HI20 and R_RISCV_PCREL_LO12_I/S: LA/LLA pattern with local fPIC ifunc symbol, or any non-PIC ifunc symbol. The PC-relative relocation. The current linker will deal with them in the same way as R_RISCV_CALL_PLT. * R_RISCV_GOT_HI20 and R_RISCV_PCREL_LO12_I/S: LA pattern with global PIC ifunc symbol. Linker should insert a dynamic IRELATIVE in the .got entry, or insert a R_RISCV_32/64 when generating shared library. * R_RISCV_32 and R_RISCV_64: Store the ifunc symbol into the data section. Linker should insert a dynamic IRELATIVE in the data section, or insert a R_RISCV_32/64 when generating shared library. * R_RISCV_HI20 and R_RISCV_LO12_I/S: The LUI + ADDI/LW/SW patterns. The absolute access relocation. The medlow model without the -fPIC compiler option should generate them. The ld ifunc testsuites "Build pr23169a" and "Build pr23169d" need the relocations, they are in the ld/testsuite/ld-ifunc/, and need compiler support. However, we also made some optimizations with reference to x86, * If GOT and PLT relocations refer to the same ifunc symbol when generating pie, then they can actually share a .got entry without creating two entries to store the same value and relocation. * If GOT, PLT and DATA relocations refer to the same ifunc symbol when generating position dependency executable, then linker will fill the address of .plt entry into the corresponding .got entry and data section, without insert any dynamic relocations for the GOT and DATA relocations. For the ifunc testcases, there are three types of them, 1. ifunc-reloc-*: Only check the single type of relocation refers to ifunc symbol. * ifunc-reloc-call: R_RISCV_CALL and R_RISCV_CALL_PLT. * ifunc-reloc-data: R_RISCV_32 and R_RISCV_64. * ifunc-reloc-got: R_RISCV_GOT_HI20 and R_RISCV_PCREL_LO_I/S. * ifunc-reloc-pcrel: R_RISCV_PCREL_HI20 and R_RISCV_PCREL_LO_I/S. 2. ifunc-[nonplt|plt]-*: If we don't have PLT relocs, then don't need to create the PLT and it's .plt entries. * ifunc-nonplt: Combine R_RISCV_GOT_HI20 and R_RISCV_32/64. * ifunc-plt: Combine all ifunc relocations. 3. ifunc-seperate-*: If we link the ifunc caller and resolver into the same module (link the objects), then the results are the same as the ifunc-reloc-* and ifunc-[noplt|plt]-* testcases. Consider the cases that the ifunc callers and resolver are in the different modules, that is, we compile the ifunc resolver to the shared library first, and then link it with the ifunc callers. The output of ifunc callers should be the same as the normal STT_FUNC cases, and the shared ifunc resolver should define the symbols as STT_IFUNC. The R_RISCV_PCREL_HI20 reloc is special. It should be linked and resolved locally, so if the ifunc resolver is defined in other modules (other shared libraries), then the R_RISCV_PCREL_HI20 is unresolvable, and linker should issue an unresolvable reloc error. bfd/ * elfnn-riscv.c: Include "objalloc.h" since we need objalloc_alloc. (riscv_elf_link_hash_table): Add loc_hash_table and loc_hash_memory for local STT_GNU_IFUNC symbols. (riscv_elf_got_plt_val): Removed. (riscv_elf_local_htab_hash, riscv_elf_local_htab_eq): New functions. Use to compare local hash entries. (riscv_elf_get_local_sym_hash): New function. Find a hash entry for local symbol, and create a new one if needed. (riscv_elf_link_hash_table_free): New function. Destroy an riscv elf linker hash table. (riscv_elf_link_hash_table_create): Create hash table for local ifunc. (riscv_elf_check_relocs): Create a fake global symbol to track the local ifunc symbol. Add support to check and handle the relocations reference to ifunc symbols. (allocate_dynrelocs): Let allocate_ifunc_dynrelocs and allocate_local_ifunc_dynrelocs to handle the ifunc symbols if they are defined and referenced in a non-shared object. (allocate_ifunc_dynrelocs): New function. Allocate space in .plt, .got and associated reloc sections for ifunc dynamic relocs. (allocate_local_ifunc_dynrelocs): Likewise, but for local ifunc dynamic relocs. (riscv_elf_relocate_section): Add support to handle the relocation referenced to ifunc symbols. (riscv_elf_size_dynamic_sections): Updated. (riscv_elf_adjust_dynamic_symbol): Updated. (riscv_elf_finish_dynamic_symbol): Finish up the ifunc handling, including fill the PLT and GOT entries for ifunc symbols. (riscv_elf_finish_local_dynamic_symbol): New function. Called by riscv_elf_finish_dynamic_symbol to handle the local ifunc symbols. (_bfd_riscv_relax_section): Don't do the relaxation for ifunc. * elfxx-riscv.c: Add R_RISCV_IRELATIVE. * configure.ac: Link elf-ifunc.lo to use the generic ifunc support. * configure: Regenerated. include/ * elf/riscv.h: Add R_RISCV_IRELATIVE to 58. ld/ * emulparams/elf32lriscv-defs.sh: Add IREL_IN_PLT. * testsuite/ld-ifunc/ifunc.exp: Enable ifunc tests for RISC-V. * testsuite/ld-riscv-elf/ld-riscv-elf.exp (run_dump_test_ifunc): New dump test for ifunc. There are two arguments, 'target` and `output`. The `target` is rv32 or rv64, and the `output` is used to choose which output you want to test (exe, pie or .so). * testsuite/ld-riscv-elf/ifunc-reloc-call-01.s: New testcase. * testsuite/ld-riscv-elf/ifunc-reloc-call-01.d: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-call-01-exe.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-call-01-pic.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-call-01-pie.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-call-02.s: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-call-02.d: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-call-02-exe.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-call-02-pic.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-call-02-pie.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-data.s: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-data.d: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-data-exe.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-data-pic.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-data-pie.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-got.s: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-got.d: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-got-exe.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-got-pic.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-got-pie.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-pcrel.s: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-pcrel.d: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-pcrel-exe.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-pcrel-pic.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-reloc-pcrel-pie.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-nonplt.s: Likewise. * testsuite/ld-riscv-elf/ifunc-nonplt.d: Likewise. * testsuite/ld-riscv-elf/ifunc-nonplt-exe.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-nonplt-pic.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-nonplt-pie.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-plt-01.s: Likewise. * testsuite/ld-riscv-elf/ifunc-plt-01.d: Likewise. * testsuite/ld-riscv-elf/ifunc-plt-01-exe.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-plt-01-pic.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-plt-01-pie.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-plt-02.s: Likewise. * testsuite/ld-riscv-elf/ifunc-plt-02.d: Likewise. * testsuite/ld-riscv-elf/ifunc-plt-02-exe.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-plt-02-pic.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-plt-02-pie.rd: Likewise. * testsuite/ld-riscv-elf/ifunc-seperate-resolver.s: Likewise. * testsuite/ld-riscv-elf/ifunc-seperate-caller.s: Likewise. * testsuite/ld-riscv-elf/ifunc-seperate-exe.d: Likewise. * testsuite/ld-riscv-elf/ifunc-seperate-pic.d: Likewise. * testsuite/ld-riscv-elf/ifunc-seperate-pie.d: Likewise. * testsuite/ld-riscv-elf/ifunc-seperate-caller-pcrel.s: Likewise. * testsuite/ld-riscv-elf/ifunc-seperate-pcrel-pic.d: Likewise. * testsuite/ld-riscv-elf/ifunc-seperate-pcrel-pie.d: Likewise.
137 lines
4.4 KiB
C
137 lines
4.4 KiB
C
/* RISC-V ELF support for BFD.
|
|
Copyright (C) 2011-2020 Free Software Foundation, Inc.
|
|
|
|
Contributed by Andrew Waterman (andrew@sifive.com).
|
|
Based on MIPS ELF support for BFD, by Ian Lance Taylor.
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; see the file COPYING3. If not,
|
|
see <http://www.gnu.org/licenses/>. */
|
|
|
|
/* This file holds definitions specific to the RISCV ELF ABI. Note
|
|
that most of this is not actually implemented by BFD. */
|
|
|
|
#ifndef _ELF_RISCV_H
|
|
#define _ELF_RISCV_H
|
|
|
|
#include "elf/reloc-macros.h"
|
|
#include "libiberty.h"
|
|
|
|
/* Relocation types. */
|
|
START_RELOC_NUMBERS (elf_riscv_reloc_type)
|
|
/* Relocation types used by the dynamic linker. */
|
|
RELOC_NUMBER (R_RISCV_NONE, 0)
|
|
RELOC_NUMBER (R_RISCV_32, 1)
|
|
RELOC_NUMBER (R_RISCV_64, 2)
|
|
RELOC_NUMBER (R_RISCV_RELATIVE, 3)
|
|
RELOC_NUMBER (R_RISCV_COPY, 4)
|
|
RELOC_NUMBER (R_RISCV_JUMP_SLOT, 5)
|
|
RELOC_NUMBER (R_RISCV_TLS_DTPMOD32, 6)
|
|
RELOC_NUMBER (R_RISCV_TLS_DTPMOD64, 7)
|
|
RELOC_NUMBER (R_RISCV_TLS_DTPREL32, 8)
|
|
RELOC_NUMBER (R_RISCV_TLS_DTPREL64, 9)
|
|
RELOC_NUMBER (R_RISCV_TLS_TPREL32, 10)
|
|
RELOC_NUMBER (R_RISCV_TLS_TPREL64, 11)
|
|
|
|
/* Relocation types not used by the dynamic linker. */
|
|
RELOC_NUMBER (R_RISCV_BRANCH, 16)
|
|
RELOC_NUMBER (R_RISCV_JAL, 17)
|
|
RELOC_NUMBER (R_RISCV_CALL, 18)
|
|
RELOC_NUMBER (R_RISCV_CALL_PLT, 19)
|
|
RELOC_NUMBER (R_RISCV_GOT_HI20, 20)
|
|
RELOC_NUMBER (R_RISCV_TLS_GOT_HI20, 21)
|
|
RELOC_NUMBER (R_RISCV_TLS_GD_HI20, 22)
|
|
RELOC_NUMBER (R_RISCV_PCREL_HI20, 23)
|
|
RELOC_NUMBER (R_RISCV_PCREL_LO12_I, 24)
|
|
RELOC_NUMBER (R_RISCV_PCREL_LO12_S, 25)
|
|
RELOC_NUMBER (R_RISCV_HI20, 26)
|
|
RELOC_NUMBER (R_RISCV_LO12_I, 27)
|
|
RELOC_NUMBER (R_RISCV_LO12_S, 28)
|
|
RELOC_NUMBER (R_RISCV_TPREL_HI20, 29)
|
|
RELOC_NUMBER (R_RISCV_TPREL_LO12_I, 30)
|
|
RELOC_NUMBER (R_RISCV_TPREL_LO12_S, 31)
|
|
RELOC_NUMBER (R_RISCV_TPREL_ADD, 32)
|
|
RELOC_NUMBER (R_RISCV_ADD8, 33)
|
|
RELOC_NUMBER (R_RISCV_ADD16, 34)
|
|
RELOC_NUMBER (R_RISCV_ADD32, 35)
|
|
RELOC_NUMBER (R_RISCV_ADD64, 36)
|
|
RELOC_NUMBER (R_RISCV_SUB8, 37)
|
|
RELOC_NUMBER (R_RISCV_SUB16, 38)
|
|
RELOC_NUMBER (R_RISCV_SUB32, 39)
|
|
RELOC_NUMBER (R_RISCV_SUB64, 40)
|
|
RELOC_NUMBER (R_RISCV_GNU_VTINHERIT, 41)
|
|
RELOC_NUMBER (R_RISCV_GNU_VTENTRY, 42)
|
|
RELOC_NUMBER (R_RISCV_ALIGN, 43)
|
|
RELOC_NUMBER (R_RISCV_RVC_BRANCH, 44)
|
|
RELOC_NUMBER (R_RISCV_RVC_JUMP, 45)
|
|
RELOC_NUMBER (R_RISCV_RVC_LUI, 46)
|
|
RELOC_NUMBER (R_RISCV_GPREL_I, 47)
|
|
RELOC_NUMBER (R_RISCV_GPREL_S, 48)
|
|
RELOC_NUMBER (R_RISCV_TPREL_I, 49)
|
|
RELOC_NUMBER (R_RISCV_TPREL_S, 50)
|
|
RELOC_NUMBER (R_RISCV_RELAX, 51)
|
|
RELOC_NUMBER (R_RISCV_SUB6, 52)
|
|
RELOC_NUMBER (R_RISCV_SET6, 53)
|
|
RELOC_NUMBER (R_RISCV_SET8, 54)
|
|
RELOC_NUMBER (R_RISCV_SET16, 55)
|
|
RELOC_NUMBER (R_RISCV_SET32, 56)
|
|
RELOC_NUMBER (R_RISCV_32_PCREL, 57)
|
|
RELOC_NUMBER (R_RISCV_IRELATIVE, 58)
|
|
END_RELOC_NUMBERS (R_RISCV_max)
|
|
|
|
/* Processor specific flags for the ELF header e_flags field. */
|
|
|
|
/* File may contain compressed instructions. */
|
|
#define EF_RISCV_RVC 0x0001
|
|
|
|
/* Which floating-point ABI a file uses. */
|
|
#define EF_RISCV_FLOAT_ABI 0x0006
|
|
|
|
/* File uses the soft-float ABI. */
|
|
#define EF_RISCV_FLOAT_ABI_SOFT 0x0000
|
|
|
|
/* File uses the single-float ABI. */
|
|
#define EF_RISCV_FLOAT_ABI_SINGLE 0x0002
|
|
|
|
/* File uses the double-float ABI. */
|
|
#define EF_RISCV_FLOAT_ABI_DOUBLE 0x0004
|
|
|
|
/* File uses the quad-float ABI. */
|
|
#define EF_RISCV_FLOAT_ABI_QUAD 0x0006
|
|
|
|
/* File uses the 32E base integer instruction. */
|
|
#define EF_RISCV_RVE 0x0008
|
|
|
|
/* The name of the global pointer symbol. */
|
|
#define RISCV_GP_SYMBOL "__global_pointer$"
|
|
|
|
/* Additional section types. */
|
|
#define SHT_RISCV_ATTRIBUTES 0x70000003 /* Section holds attributes. */
|
|
|
|
/* Object attributes. */
|
|
|
|
enum
|
|
{
|
|
/* 0-3 are generic. */
|
|
Tag_RISCV_stack_align = 4,
|
|
Tag_RISCV_arch = 5,
|
|
Tag_RISCV_unaligned_access = 6,
|
|
Tag_RISCV_priv_spec = 8,
|
|
Tag_RISCV_priv_spec_minor = 10,
|
|
Tag_RISCV_priv_spec_revision = 12
|
|
};
|
|
|
|
#endif /* _ELF_RISCV_H */
|