Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / libelf / dist / gelf_move.c
blob0697bbc43547b3a19103d437b1490c1f7e5dc55a
1 /* $NetBSD: gelf_move.c,v 1.3 2009/12/19 07:31:04 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_move.c,v 1.2.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 #if defined(__LIBELF_HAVE_ELF_MOVE)
40 GElf_Move *
41 gelf_getmove(Elf_Data *d, int ndx, GElf_Move *dst)
43 int ec;
44 Elf *e;
45 Elf_Scn *scn;
46 Elf32_Move *move32;
47 Elf64_Move *move64;
48 size_t msz;
49 uint32_t sh_type;
51 if (d == NULL || ndx < 0 || dst == NULL ||
52 (scn = d->d_scn) == NULL ||
53 (e = scn->s_elf) == NULL) {
54 LIBELF_SET_ERROR(ARGUMENT, 0);
55 return (NULL);
58 ec = e->e_class;
59 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
61 if (ec == ELFCLASS32)
62 sh_type = scn->s_shdr.s_shdr32.sh_type;
63 else
64 sh_type = scn->s_shdr.s_shdr64.sh_type;
66 if (_libelf_xlate_shtype(sh_type) != ELF_T_MOVE) {
67 LIBELF_SET_ERROR(ARGUMENT, 0);
68 return (NULL);
71 msz = _libelf_msize(ELF_T_MOVE, ec, e->e_version);
73 assert(msz > 0);
75 if (msz * ndx >= d->d_size) {
76 LIBELF_SET_ERROR(ARGUMENT, 0);
77 return (NULL);
80 if (ec == ELFCLASS32) {
82 move32 = (Elf32_Move *) d->d_buf + ndx;
84 dst->m_value = move32->m_value;
85 dst->m_info = (Elf64_Xword) move32->m_info;
86 dst->m_poffset = (Elf64_Xword) move32->m_poffset;
87 dst->m_repeat = move32->m_repeat;
88 dst->m_stride = move32->m_stride;
89 } else {
91 move64 = (Elf64_Move *) d->d_buf + ndx;
93 *dst = *move64;
96 return (dst);
99 int
100 gelf_update_move(Elf_Data *d, int ndx, GElf_Move *gm)
102 int ec;
103 Elf *e;
104 Elf_Scn *scn;
105 Elf32_Move *move32;
106 Elf64_Move *move64;
107 size_t msz;
108 uint32_t sh_type;
110 if (d == NULL || ndx < 0 || gm == NULL ||
111 (scn = d->d_scn) == NULL ||
112 (e = scn->s_elf) == NULL) {
113 LIBELF_SET_ERROR(ARGUMENT, 0);
114 return (0);
117 ec = e->e_class;
118 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
120 if (ec == ELFCLASS32)
121 sh_type = scn->s_shdr.s_shdr32.sh_type;
122 else
123 sh_type = scn->s_shdr.s_shdr64.sh_type;
125 if (_libelf_xlate_shtype(sh_type) != ELF_T_MOVE) {
126 LIBELF_SET_ERROR(ARGUMENT, 0);
127 return (0);
130 msz = _libelf_msize(ELF_T_MOVE, ec, e->e_version);
131 assert(msz > 0);
133 if (msz * ndx >= d->d_size) {
134 LIBELF_SET_ERROR(ARGUMENT, 0);
135 return (0);
138 if (ec == ELFCLASS32) {
139 move32 = (Elf32_Move *) d->d_buf + ndx;
141 move32->m_value = gm->m_value;
142 LIBELF_COPY_U32(move32, gm, m_info);
143 LIBELF_COPY_U32(move32, gm, m_poffset);
144 move32->m_repeat = gm->m_repeat;
145 move32->m_stride = gm->m_stride;
147 } else {
148 move64 = (Elf64_Move *) d->d_buf + ndx;
150 *move64 = *gm;
153 return (1);
156 #endif /* __LIBELF_HAVE_ELF_MOVE */