Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / bsd / libelf / dist / gelf_rela.c
blobf80d4521a1e0dd471fec5a6f0f5ee3f1330986e6
1 /* $NetBSD: gelf_rela.c,v 1.2 2009/12/19 06:39:29 thorpej Exp $ */
3 /*-
4 * Copyright (c) 2006 Joseph Koshy
5 * All rights reserved.
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.
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.
29 #include <sys/cdefs.h>
30 /* __FBSDID("$FreeBSD: src/lib/libelf/gelf_rela.c,v 1.2.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $"); */
32 #include <assert.h>
33 #include <limits.h>
34 #include <gelf.h>
36 #include "_libelf.h"
38 GElf_Rela *
39 gelf_getrela(Elf_Data *d, int ndx, GElf_Rela *dst)
41 int ec;
42 Elf *e;
43 Elf_Scn *scn;
44 Elf32_Rela *rela32;
45 Elf64_Rela *rela64;
46 size_t msz;
47 uint32_t sh_type;
49 if (d == NULL || ndx < 0 || dst == NULL ||
50 (scn = d->d_scn) == NULL ||
51 (e = scn->s_elf) == NULL) {
52 LIBELF_SET_ERROR(ARGUMENT, 0);
53 return (NULL);
56 ec = e->e_class;
57 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
59 if (ec == ELFCLASS32)
60 sh_type = scn->s_shdr.s_shdr32.sh_type;
61 else
62 sh_type = scn->s_shdr.s_shdr64.sh_type;
64 if (_libelf_xlate_shtype(sh_type) != ELF_T_RELA) {
65 LIBELF_SET_ERROR(ARGUMENT, 0);
66 return (NULL);
69 msz = _libelf_msize(ELF_T_RELA, ec, e->e_version);
71 assert(msz > 0);
73 if (msz * ndx >= d->d_size) {
74 LIBELF_SET_ERROR(ARGUMENT, 0);
75 return (NULL);
78 if (ec == ELFCLASS32) {
79 rela32 = (Elf32_Rela *) d->d_buf + ndx;
81 dst->r_offset = (Elf64_Addr) rela32->r_offset;
82 dst->r_info = ELF64_R_INFO(
83 (Elf64_Xword) ELF32_R_SYM(rela32->r_info),
84 ELF32_R_TYPE(rela32->r_info));
85 dst->r_addend = (Elf64_Sxword) rela32->r_addend;
87 } else {
89 rela64 = (Elf64_Rela *) d->d_buf + ndx;
91 *dst = *rela64;
94 return (dst);
97 int
98 gelf_update_rela(Elf_Data *d, int ndx, GElf_Rela *dr)
100 int ec;
101 Elf *e;
102 Elf_Scn *scn;
103 Elf32_Rela *rela32;
104 Elf64_Rela *rela64;
105 size_t msz;
106 uint32_t sh_type;
108 if (d == NULL || ndx < 0 || dr == NULL ||
109 (scn = d->d_scn) == NULL ||
110 (e = scn->s_elf) == NULL) {
111 LIBELF_SET_ERROR(ARGUMENT, 0);
112 return (0);
115 ec = e->e_class;
116 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
118 if (ec == ELFCLASS32)
119 sh_type = scn->s_shdr.s_shdr32.sh_type;
120 else
121 sh_type = scn->s_shdr.s_shdr64.sh_type;
123 if (_libelf_xlate_shtype(sh_type) != ELF_T_RELA) {
124 LIBELF_SET_ERROR(ARGUMENT, 0);
125 return (0);
128 msz = _libelf_msize(ELF_T_RELA, ec, e->e_version);
129 assert(msz > 0);
131 if (msz * ndx >= d->d_size) {
132 LIBELF_SET_ERROR(ARGUMENT, 0);
133 return (0);
136 if (ec == ELFCLASS32) {
137 rela32 = (Elf32_Rela *) d->d_buf + ndx;
139 LIBELF_COPY_U32(rela32, dr, r_offset);
141 if (ELF64_R_SYM(dr->r_info) > ELF32_R_SYM(~0UL) ||
142 ELF64_R_TYPE(dr->r_info) > ELF32_R_TYPE(~0U)) {
143 LIBELF_SET_ERROR(RANGE, 0);
144 return (0);
146 rela32->r_info = ELF32_R_INFO(ELF64_R_SYM(dr->r_info),
147 ELF64_R_TYPE(dr->r_info));
149 LIBELF_COPY_S32(rela32, dr, r_addend);
150 } else {
151 rela64 = (Elf64_Rela *) d->d_buf + ndx;
153 *rela64 = *dr;
156 return (1);