Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / bsd / libelf / dist / gelf_dyn.c
blob4de9d476dbe2947dc6d66667186c1f8519c9026a
1 /* $NetBSD: gelf_dyn.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_dyn.c,v 1.1.10.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_Dyn *
39 gelf_getdyn(Elf_Data *d, int ndx, GElf_Dyn *dst)
41 int ec;
42 Elf *e;
43 Elf_Scn *scn;
44 Elf32_Dyn *dyn32;
45 Elf64_Dyn *dyn64;
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_DYN) {
65 LIBELF_SET_ERROR(ARGUMENT, 0);
66 return (NULL);
69 msz = _libelf_msize(ELF_T_DYN, 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 dyn32 = (Elf32_Dyn *) d->d_buf + ndx;
81 dst->d_tag = dyn32->d_tag;
82 dst->d_un.d_val = (Elf64_Xword) dyn32->d_un.d_val;
84 } else {
86 dyn64 = (Elf64_Dyn *) d->d_buf + ndx;
88 *dst = *dyn64;
91 return (dst);
94 int
95 gelf_update_dyn(Elf_Data *d, int ndx, GElf_Dyn *ds)
97 int ec;
98 Elf *e;
99 Elf_Scn *scn;
100 Elf32_Dyn *dyn32;
101 Elf64_Dyn *dyn64;
102 size_t msz;
103 uint32_t sh_type;
105 if (d == NULL || ndx < 0 || ds == NULL ||
106 (scn = d->d_scn) == NULL ||
107 (e = scn->s_elf) == NULL) {
108 LIBELF_SET_ERROR(ARGUMENT, 0);
109 return (0);
112 ec = e->e_class;
113 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
115 if (ec == ELFCLASS32)
116 sh_type = scn->s_shdr.s_shdr32.sh_type;
117 else
118 sh_type = scn->s_shdr.s_shdr64.sh_type;
120 if (_libelf_xlate_shtype(sh_type) != ELF_T_DYN) {
121 LIBELF_SET_ERROR(ARGUMENT, 0);
122 return (0);
125 msz = _libelf_msize(ELF_T_DYN, ec, e->e_version);
126 assert(msz > 0);
128 if (msz * ndx >= d->d_size) {
129 LIBELF_SET_ERROR(ARGUMENT, 0);
130 return (0);
133 if (ec == ELFCLASS32) {
134 dyn32 = (Elf32_Dyn *) d->d_buf + ndx;
136 LIBELF_COPY_S32(dyn32, ds, d_tag);
137 LIBELF_COPY_U32(dyn32, ds, d_un.d_val);
138 } else {
139 dyn64 = (Elf64_Dyn *) d->d_buf + ndx;
141 *dyn64 = *ds;
144 return (1);