]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Reloc howto access broken for BPF
authorCupertino Miranda <cupertino.miranda@oracle.com>
Fri, 17 Mar 2023 15:27:02 +0000 (15:27 +0000)
committerCupertino Miranda <cupertino.miranda@oracle.com>
Mon, 20 Mar 2023 15:35:21 +0000 (15:35 +0000)
Forgot to change the logic to access the reloc howto from
bpf_elf_relocate_section.
Problem was introduced in previous BPF commit.

bfd/elf64-bpf.c

index ef34d62df0198eb07d47d955d911fa6b045b3203..65418d1d740181b5b0ed4e3f40046aa39cde8915 100644 (file)
@@ -190,6 +190,7 @@ bpf_elf_relocate_section (bfd *output_bfd ATTRIBUTE_UNUSED,
   for (rel = relocs; rel < relend; rel ++)
     {
       reloc_howto_type *          howto;
+      unsigned int                howto_index;
       unsigned long               r_symndx;
       Elf_Internal_Sym *          sym;
       asection *                  sec;
@@ -203,7 +204,9 @@ bpf_elf_relocate_section (bfd *output_bfd ATTRIBUTE_UNUSED,
 
       r_type = ELF64_R_TYPE (rel->r_info);
       r_symndx = ELF64_R_SYM (rel->r_info);
-      howto  = bpf_elf_howto_table + ELF64_R_TYPE (rel->r_info);
+
+      howto_index = bpf_index_for_rtype (ELF64_R_TYPE (rel->r_info));
+      howto  = &bpf_elf_howto_table[howto_index];
       h      = NULL;
       sym    = NULL;
       sec    = NULL;