2 * Copyright (c) 2006,2008 Joseph Koshy
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 ELFTC_VCSID("$Id: gelf_rela.c 3177 2015-03-30 18:19:41Z emaste $");
37 gelf_getrela(Elf_Data
*ed
, int ndx
, GElf_Rela
*dst
)
46 struct _Libelf_Data
*d
;
48 d
= (struct _Libelf_Data
*) ed
;
50 if (d
== NULL
|| ndx
< 0 || dst
== NULL
||
51 (scn
= d
->d_scn
) == NULL
||
52 (e
= scn
->s_elf
) == NULL
) {
53 LIBELF_SET_ERROR(ARGUMENT
, 0);
58 assert(ec
== ELFCLASS32
|| ec
== ELFCLASS64
);
61 sh_type
= scn
->s_shdr
.s_shdr32
.sh_type
;
63 sh_type
= scn
->s_shdr
.s_shdr64
.sh_type
;
65 if (_libelf_xlate_shtype(sh_type
) != ELF_T_RELA
) {
66 LIBELF_SET_ERROR(ARGUMENT
, 0);
70 msz
= _libelf_msize(ELF_T_RELA
, ec
, e
->e_version
);
75 if (msz
* (size_t) ndx
>= d
->d_data
.d_size
) {
76 LIBELF_SET_ERROR(ARGUMENT
, 0);
80 if (ec
== ELFCLASS32
) {
81 rela32
= (Elf32_Rela
*) d
->d_data
.d_buf
+ ndx
;
83 dst
->r_offset
= (Elf64_Addr
) rela32
->r_offset
;
84 dst
->r_info
= ELF64_R_INFO(
85 (Elf64_Xword
) ELF32_R_SYM(rela32
->r_info
),
86 ELF32_R_TYPE(rela32
->r_info
));
87 dst
->r_addend
= (Elf64_Sxword
) rela32
->r_addend
;
91 rela64
= (Elf64_Rela
*) d
->d_data
.d_buf
+ ndx
;
100 gelf_update_rela(Elf_Data
*ed
, int ndx
, GElf_Rela
*dr
)
109 struct _Libelf_Data
*d
;
111 d
= (struct _Libelf_Data
*) ed
;
113 if (d
== NULL
|| ndx
< 0 || dr
== NULL
||
114 (scn
= d
->d_scn
) == NULL
||
115 (e
= scn
->s_elf
) == NULL
) {
116 LIBELF_SET_ERROR(ARGUMENT
, 0);
121 assert(ec
== ELFCLASS32
|| ec
== ELFCLASS64
);
123 if (ec
== ELFCLASS32
)
124 sh_type
= scn
->s_shdr
.s_shdr32
.sh_type
;
126 sh_type
= scn
->s_shdr
.s_shdr64
.sh_type
;
128 if (_libelf_xlate_shtype(sh_type
) != ELF_T_RELA
) {
129 LIBELF_SET_ERROR(ARGUMENT
, 0);
133 msz
= _libelf_msize(ELF_T_RELA
, ec
, e
->e_version
);
138 if (msz
* (size_t) ndx
>= d
->d_data
.d_size
) {
139 LIBELF_SET_ERROR(ARGUMENT
, 0);
143 if (ec
== ELFCLASS32
) {
144 rela32
= (Elf32_Rela
*) d
->d_data
.d_buf
+ ndx
;
146 LIBELF_COPY_U32(rela32
, dr
, r_offset
);
148 if (ELF64_R_SYM(dr
->r_info
) > ELF32_R_SYM(~0UL) ||
149 ELF64_R_TYPE(dr
->r_info
) > ELF32_R_TYPE(~0U)) {
150 LIBELF_SET_ERROR(RANGE
, 0);
153 rela32
->r_info
= ELF32_R_INFO(
154 (Elf32_Word
) ELF64_R_SYM(dr
->r_info
),
155 (Elf32_Word
) ELF64_R_TYPE(dr
->r_info
));
157 LIBELF_COPY_S32(rela32
, dr
, r_addend
);
159 rela64
= (Elf64_Rela
*) d
->d_data
.d_buf
+ ndx
;