1 /* Return program header table entry.
2 Copyright (C) 1998-2010 Red Hat, Inc.
3 This file is part of elfutils.
4 Written by Ulrich Drepper <drepper@redhat.com>, 1998.
6 This file is free software; you can redistribute it and/or modify
7 it under the terms of either
9 * the GNU Lesser General Public License as published by the Free
10 Software Foundation; either version 3 of the License, or (at
11 your option) any later version
15 * the GNU General Public License as published by the Free
16 Software Foundation; either version 2 of the License, or (at
17 your option) any later version
19 or both in parallel, as here.
21 elfutils is distributed in the hope that it will be useful, but
22 WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 General Public License for more details.
26 You should have received copies of the GNU General Public License and
27 the GNU Lesser General Public License along with this program. If
28 not, see <http://www.gnu.org/licenses/>. */
43 gelf_getphdr (elf
, ndx
, dst
)
48 GElf_Phdr
*result
= NULL
;
53 if (unlikely (elf
->kind
!= ELF_K_ELF
))
55 __libelf_seterrno (ELF_E_INVALID_HANDLE
);
61 __libelf_seterrno (ELF_E_INVALID_OPERAND
);
65 rwlock_rdlock (elf
->lock
);
67 if (elf
->class == ELFCLASS32
)
69 /* Copy the elements one-by-one. */
70 Elf32_Phdr
*phdr
= elf
->state
.elf32
.phdr
;
74 rwlock_unlock (elf
->lock
);
75 phdr
= INTUSE(elf32_getphdr
) (elf
);
77 /* The error number is already set. */
79 rwlock_rdlock (elf
->lock
);
82 /* Test whether the index is ok. */
84 if (ndx
>= elf
->state
.elf32
.ehdr
->e_phnum
85 && (elf
->state
.elf32
.ehdr
->e_phnum
!= PN_XNUM
86 || __elf_getphdrnum_rdlock (elf
, &phnum
) != 0
87 || (size_t) ndx
>= phnum
))
89 __libelf_seterrno (ELF_E_INVALID_INDEX
);
93 /* We know the result now. */
96 /* Now correct the pointer to point to the correct element. */
99 #define COPY(Name) result->Name = phdr->Name
111 /* Copy the elements one-by-one. */
112 Elf64_Phdr
*phdr
= elf
->state
.elf64
.phdr
;
116 rwlock_unlock (elf
->lock
);
117 phdr
= INTUSE(elf64_getphdr
) (elf
);
119 /* The error number is already set. */
121 rwlock_rdlock (elf
->lock
);
124 /* Test whether the index is ok. */
126 if (ndx
>= elf
->state
.elf64
.ehdr
->e_phnum
127 && (elf
->state
.elf64
.ehdr
->e_phnum
!= PN_XNUM
128 || __elf_getphdrnum_rdlock (elf
, &phnum
) != 0
129 || (size_t) ndx
>= phnum
))
131 __libelf_seterrno (ELF_E_INVALID_INDEX
);
135 /* We only have to copy the data. */
136 result
= memcpy (dst
, phdr
+ ndx
, sizeof (GElf_Phdr
));
140 rwlock_unlock (elf
->lock
);