1 /* $NetBSD: gelf_rela.c,v 1.7 2026/05/17 21:40:50 jkoshy Exp $ */ 2 3 /*- 4 * Copyright (c) 2006,2008 Joseph Koshy 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 */ 28 29 #if HAVE_NBTOOL_CONFIG_H 30 # include "nbtool_config.h" 31 #endif 32 33 #include <sys/cdefs.h> 34 35 #include <assert.h> 36 #include <gelf.h> 37 #include <limits.h> 38 #include <stdint.h> 39 40 #include "_libelf.h" 41 42 ELFTC_VCSID("Id: gelf_rela.c 4074 2025-01-07 15:34:21Z jkoshy"); 43 44 __RCSID("$NetBSD: gelf_rela.c,v 1.7 2026/05/17 21:40:50 jkoshy Exp $"); 45 46 GElf_Rela * 47 gelf_getrela(Elf_Data *ed, int ndx, GElf_Rela *dst) 48 { 49 Elf *e; 50 size_t msz; 51 Elf_Scn *scn; 52 unsigned int ec; 53 uint32_t sh_type; 54 Elf32_Rela *rela32; 55 Elf64_Rela *rela64; 56 struct _Libelf_Data *d; 57 58 d = (struct _Libelf_Data *) ed; 59 60 if (d == NULL || ndx < 0 || dst == NULL || 61 (scn = d->d_scn) == NULL || 62 (e = scn->s_elf) == NULL) { 63 LIBELF_SET_ERROR(ARGUMENT, 0); 64 return (NULL); 65 } 66 67 ec = e->e_class; 68 assert(ec == ELFCLASS32 || ec == ELFCLASS64); 69 70 if (ec == ELFCLASS32) 71 sh_type = scn->s_shdr.s_shdr32.sh_type; 72 else 73 sh_type = scn->s_shdr.s_shdr64.sh_type; 74 75 if (_libelf_xlate_shtype(sh_type) != ELF_T_RELA) { 76 LIBELF_SET_ERROR(ARGUMENT, 0); 77 return (NULL); 78 } 79 80 if ((msz = _libelf_msize(ELF_T_RELA, ec, e->e_version)) == 0) 81 return (NULL); 82 83 assert(ndx >= 0); 84 85 if (msz * (size_t) ndx >= d->d_data.d_size) { 86 LIBELF_SET_ERROR(ARGUMENT, 0); 87 return (NULL); 88 } 89 90 if (ec == ELFCLASS32) { 91 rela32 = (Elf32_Rela *) d->d_data.d_buf + ndx; 92 93 dst->r_offset = (Elf64_Addr) rela32->r_offset; 94 dst->r_info = ELF64_R_INFO( 95 (Elf64_Xword) ELF32_R_SYM(rela32->r_info), 96 ELF32_R_TYPE(rela32->r_info)); 97 dst->r_addend = (Elf64_Sxword) rela32->r_addend; 98 99 } else { 100 101 rela64 = (Elf64_Rela *) d->d_data.d_buf + ndx; 102 103 *dst = *rela64; 104 } 105 106 return (dst); 107 } 108 109 int 110 gelf_update_rela(Elf_Data *ed, int ndx, GElf_Rela *dr) 111 { 112 Elf *e; 113 size_t msz; 114 Elf_Scn *scn; 115 unsigned int ec; 116 uint32_t sh_type; 117 Elf32_Rela *rela32; 118 Elf64_Rela *rela64; 119 struct _Libelf_Data *d; 120 121 d = (struct _Libelf_Data *) ed; 122 123 if (d == NULL || ndx < 0 || dr == NULL || 124 (scn = d->d_scn) == NULL || 125 (e = scn->s_elf) == NULL) { 126 LIBELF_SET_ERROR(ARGUMENT, 0); 127 return (0); 128 } 129 130 ec = e->e_class; 131 assert(ec == ELFCLASS32 || ec == ELFCLASS64); 132 133 if (ec == ELFCLASS32) 134 sh_type = scn->s_shdr.s_shdr32.sh_type; 135 else 136 sh_type = scn->s_shdr.s_shdr64.sh_type; 137 138 if (_libelf_xlate_shtype(sh_type) != ELF_T_RELA) { 139 LIBELF_SET_ERROR(ARGUMENT, 0); 140 return (0); 141 } 142 143 if ((msz = _libelf_msize(ELF_T_RELA, ec, e->e_version)) == 0) 144 return (0); 145 146 assert(ndx >= 0); 147 148 if (msz * (size_t) ndx >= d->d_data.d_size) { 149 LIBELF_SET_ERROR(ARGUMENT, 0); 150 return (0); 151 } 152 153 if (ec == ELFCLASS32) { 154 rela32 = (Elf32_Rela *) d->d_data.d_buf + ndx; 155 156 LIBELF_COPY_U32(rela32, dr, r_offset); 157 158 if (ELF64_R_SYM(dr->r_info) > ELF32_R_SYM(~0U) || 159 ELF64_R_TYPE(dr->r_info) > ELF32_R_TYPE(~0U)) { 160 LIBELF_SET_ERROR(RANGE, 0); 161 return (0); 162 } 163 rela32->r_info = ELF32_R_INFO( 164 (Elf32_Word) ELF64_R_SYM(dr->r_info), 165 (Elf32_Word) ELF64_R_TYPE(dr->r_info)); 166 167 LIBELF_COPY_S32(rela32, dr, r_addend); 168 } else { 169 rela64 = (Elf64_Rela *) d->d_data.d_buf + ndx; 170 171 *rela64 = *dr; 172 } 173 174 return (1); 175 } 176