<sys/ioccom.h>, <sys/ioctl.h>
[minix3.git] / lib / libelf / gelf_move.c
blobda99c10d92c2e651aa107e6ea83b15d8482678cf
1 /*-
2 * Copyright (c) 2006,2008 Joseph Koshy
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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
24 * SUCH DAMAGE.
27 #include <sys/cdefs.h>
29 #include <assert.h>
30 #include <gelf.h>
32 #include "_libelf.h"
34 LIBELF_VCSID("$Id$");
36 GElf_Move *
37 gelf_getmove(Elf_Data *d, int ndx, GElf_Move *dst)
39 int ec;
40 Elf *e;
41 Elf_Scn *scn;
42 Elf32_Move *move32;
43 Elf64_Move *move64;
44 size_t msz;
45 uint32_t sh_type;
47 if (d == NULL || ndx < 0 || dst == NULL ||
48 (scn = d->d_scn) == NULL ||
49 (e = scn->s_elf) == NULL) {
50 LIBELF_SET_ERROR(ARGUMENT, 0);
51 return (NULL);
54 ec = e->e_class;
55 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
57 if (ec == ELFCLASS32)
58 sh_type = scn->s_shdr.s_shdr32.sh_type;
59 else
60 sh_type = scn->s_shdr.s_shdr64.sh_type;
62 if (_libelf_xlate_shtype(sh_type) != ELF_T_MOVE) {
63 LIBELF_SET_ERROR(ARGUMENT, 0);
64 return (NULL);
67 msz = _libelf_msize(ELF_T_MOVE, ec, e->e_version);
69 assert(msz > 0);
71 if (msz * ndx >= d->d_size) {
72 LIBELF_SET_ERROR(ARGUMENT, 0);
73 return (NULL);
76 if (ec == ELFCLASS32) {
78 move32 = (Elf32_Move *) d->d_buf + ndx;
80 dst->m_value = move32->m_value;
81 dst->m_info = (Elf64_Xword) move32->m_info;
82 dst->m_poffset = (Elf64_Xword) move32->m_poffset;
83 dst->m_repeat = move32->m_repeat;
84 dst->m_stride = move32->m_stride;
85 } else {
87 move64 = (Elf64_Move *) d->d_buf + ndx;
89 *dst = *move64;
92 return (dst);
95 int
96 gelf_update_move(Elf_Data *d, int ndx, GElf_Move *gm)
98 int ec;
99 Elf *e;
100 Elf_Scn *scn;
101 Elf32_Move *move32;
102 Elf64_Move *move64;
103 size_t msz;
104 uint32_t sh_type;
106 if (d == NULL || ndx < 0 || gm == NULL ||
107 (scn = d->d_scn) == NULL ||
108 (e = scn->s_elf) == NULL) {
109 LIBELF_SET_ERROR(ARGUMENT, 0);
110 return (0);
113 ec = e->e_class;
114 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
116 if (ec == ELFCLASS32)
117 sh_type = scn->s_shdr.s_shdr32.sh_type;
118 else
119 sh_type = scn->s_shdr.s_shdr64.sh_type;
121 if (_libelf_xlate_shtype(sh_type) != ELF_T_MOVE) {
122 LIBELF_SET_ERROR(ARGUMENT, 0);
123 return (0);
126 msz = _libelf_msize(ELF_T_MOVE, ec, e->e_version);
127 assert(msz > 0);
129 if (msz * ndx >= d->d_size) {
130 LIBELF_SET_ERROR(ARGUMENT, 0);
131 return (0);
134 if (ec == ELFCLASS32) {
135 move32 = (Elf32_Move *) d->d_buf + ndx;
137 move32->m_value = gm->m_value;
138 LIBELF_COPY_U32(move32, gm, m_info);
139 LIBELF_COPY_U32(move32, gm, m_poffset);
140 move32->m_repeat = gm->m_repeat;
141 move32->m_stride = gm->m_stride;
143 } else {
144 move64 = (Elf64_Move *) d->d_buf + ndx;
146 *move64 = *gm;
149 return (1);