arm: protect state after signal handler
[minix.git] / lib / libelf / gelf_cap.c
blob8ed864eaad3f4de6ebe2f5ca9b5093a3e9cf650f
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_Cap *
37 gelf_getcap(Elf_Data *d, int ndx, GElf_Cap *dst)
39 int ec;
40 Elf *e;
41 Elf_Scn *scn;
42 Elf32_Cap *cap32;
43 Elf64_Cap *cap64;
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_CAP) {
63 LIBELF_SET_ERROR(ARGUMENT, 0);
64 return (NULL);
67 msz = _libelf_msize(ELF_T_CAP, 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 cap32 = (Elf32_Cap *) d->d_buf + ndx;
80 dst->c_tag = cap32->c_tag;
81 dst->c_un.c_val = (Elf64_Xword) cap32->c_un.c_val;
83 } else {
85 cap64 = (Elf64_Cap *) d->d_buf + ndx;
87 *dst = *cap64;
90 return (dst);
93 int
94 gelf_update_cap(Elf_Data *d, int ndx, GElf_Cap *gc)
96 int ec;
97 Elf *e;
98 Elf_Scn *scn;
99 Elf32_Cap *cap32;
100 Elf64_Cap *cap64;
101 size_t msz;
102 uint32_t sh_type;
104 if (d == NULL || ndx < 0 || gc == NULL ||
105 (scn = d->d_scn) == NULL ||
106 (e = scn->s_elf) == NULL) {
107 LIBELF_SET_ERROR(ARGUMENT, 0);
108 return (0);
111 ec = e->e_class;
112 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
114 if (ec == ELFCLASS32)
115 sh_type = scn->s_shdr.s_shdr32.sh_type;
116 else
117 sh_type = scn->s_shdr.s_shdr64.sh_type;
119 if (_libelf_xlate_shtype(sh_type) != ELF_T_CAP) {
120 LIBELF_SET_ERROR(ARGUMENT, 0);
121 return (0);
124 msz = _libelf_msize(ELF_T_CAP, ec, e->e_version);
125 assert(msz > 0);
127 if (msz * ndx >= d->d_size) {
128 LIBELF_SET_ERROR(ARGUMENT, 0);
129 return (0);
132 if (ec == ELFCLASS32) {
133 cap32 = (Elf32_Cap *) d->d_buf + ndx;
135 LIBELF_COPY_U32(cap32, gc, c_tag);
136 LIBELF_COPY_U32(cap32, gc, c_un.c_val);
137 } else {
138 cap64 = (Elf64_Cap *) d->d_buf + ndx;
140 *cap64 = *gc;
143 return (1);