Remove building with NOCRYPTO option
[minix.git] / external / bsd / elftoolchain / dist / libelf / gelf_move.c
blob44f095a378894396e00bb64ee8b75fd656163360
1 /* $NetBSD: gelf_move.c,v 1.2 2014/03/09 16:58:04 christos Exp $ */
3 /*-
4 * Copyright (c) 2006,2008 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 #if HAVE_NBTOOL_CONFIG_H
30 # include "nbtool_config.h"
31 #endif
33 #include <sys/cdefs.h>
35 #include <assert.h>
36 #include <gelf.h>
37 #include <limits.h>
39 #include "_libelf.h"
41 __RCSID("$NetBSD: gelf_move.c,v 1.2 2014/03/09 16:58:04 christos Exp $");
42 ELFTC_VCSID("Id: gelf_move.c 2272 2011-12-03 17:07:31Z jkoshy ");
44 GElf_Move *
45 gelf_getmove(Elf_Data *ed, int ndx, GElf_Move *dst)
47 int ec;
48 Elf *e;
49 size_t msz;
50 Elf_Scn *scn;
51 uint32_t sh_type;
52 Elf32_Move *move32;
53 Elf64_Move *move64;
54 struct _Libelf_Data *d;
56 d = (struct _Libelf_Data *) ed;
58 if (d == NULL || ndx < 0 || dst == NULL ||
59 (scn = d->d_scn) == NULL ||
60 (e = scn->s_elf) == NULL) {
61 LIBELF_SET_ERROR(ARGUMENT, 0);
62 return (NULL);
65 ec = e->e_class;
66 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
68 if (ec == ELFCLASS32)
69 sh_type = scn->s_shdr.s_shdr32.sh_type;
70 else
71 sh_type = scn->s_shdr.s_shdr64.sh_type;
73 if (_libelf_xlate_shtype(sh_type) != ELF_T_MOVE) {
74 LIBELF_SET_ERROR(ARGUMENT, 0);
75 return (NULL);
78 msz = _libelf_msize(ELF_T_MOVE, ec, e->e_version);
80 assert(msz > 0);
82 if (msz * ndx >= d->d_data.d_size) {
83 LIBELF_SET_ERROR(ARGUMENT, 0);
84 return (NULL);
87 if (ec == ELFCLASS32) {
89 move32 = (Elf32_Move *) d->d_data.d_buf + ndx;
91 dst->m_value = move32->m_value;
92 dst->m_info = (Elf64_Xword) move32->m_info;
93 dst->m_poffset = (Elf64_Xword) move32->m_poffset;
94 dst->m_repeat = move32->m_repeat;
95 dst->m_stride = move32->m_stride;
96 } else {
98 move64 = (Elf64_Move *) d->d_data.d_buf + ndx;
100 *dst = *move64;
103 return (dst);
107 gelf_update_move(Elf_Data *ed, int ndx, GElf_Move *gm)
109 int ec;
110 Elf *e;
111 size_t msz;
112 Elf_Scn *scn;
113 uint32_t sh_type;
114 Elf32_Move *move32;
115 Elf64_Move *move64;
116 struct _Libelf_Data *d;
118 d = (struct _Libelf_Data *) ed;
120 if (d == NULL || ndx < 0 || gm == NULL ||
121 (scn = d->d_scn) == NULL ||
122 (e = scn->s_elf) == NULL) {
123 LIBELF_SET_ERROR(ARGUMENT, 0);
124 return (0);
127 ec = e->e_class;
128 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
130 if (ec == ELFCLASS32)
131 sh_type = scn->s_shdr.s_shdr32.sh_type;
132 else
133 sh_type = scn->s_shdr.s_shdr64.sh_type;
135 if (_libelf_xlate_shtype(sh_type) != ELF_T_MOVE) {
136 LIBELF_SET_ERROR(ARGUMENT, 0);
137 return (0);
140 msz = _libelf_msize(ELF_T_MOVE, ec, e->e_version);
141 assert(msz > 0);
143 if (msz * ndx >= d->d_data.d_size) {
144 LIBELF_SET_ERROR(ARGUMENT, 0);
145 return (0);
148 if (ec == ELFCLASS32) {
149 move32 = (Elf32_Move *) d->d_data.d_buf + ndx;
151 move32->m_value = gm->m_value;
152 LIBELF_COPY_U32(move32, gm, m_info);
153 LIBELF_COPY_U32(move32, gm, m_poffset);
154 move32->m_repeat = gm->m_repeat;
155 move32->m_stride = gm->m_stride;
157 } else {
158 move64 = (Elf64_Move *) d->d_data.d_buf + ndx;
160 *move64 = *gm;
163 return (1);