1 /* Get section at specific index.
2 Copyright (C) 2005, 2008 Red Hat, Inc.
3 This file is part of elfutils.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 2005.
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/>. */
41 # define LIBELFBITS 32
46 elfw2(LIBELFBITS
,offscn
) (elf
, offset
)
48 ElfW2(LIBELFBITS
,Off
) offset
;
53 if (unlikely (elf
->kind
!= ELF_K_ELF
))
55 __libelf_seterrno (ELF_E_INVALID_HANDLE
);
59 Elf_ScnList
*runp
= &elf
->state
.ELFW(elf
,LIBELFBITS
).scns
;
61 /* If we have not looked at section headers before,
62 we might need to read them in first. */
64 && unlikely (runp
->data
[0].shdr
.ELFW(e
,LIBELFBITS
) == NULL
)
65 && unlikely (elfw2(LIBELFBITS
,getshdr
) (&runp
->data
[0]) == NULL
))
68 rwlock_rdlock (elf
->lock
);
70 Elf_Scn
*result
= NULL
;
72 /* Find the section in the list. */
75 for (unsigned int i
= 0; i
< runp
->cnt
; ++i
)
76 if (runp
->data
[i
].shdr
.ELFW(e
,LIBELFBITS
)->sh_offset
== offset
)
78 result
= &runp
->data
[i
];
80 /* If this section is empty, the following one has the same
81 sh_offset. We presume the caller is looking for a nonempty
82 section, so keep looking if this one is empty. */
83 if (runp
->data
[i
].shdr
.ELFW(e
,LIBELFBITS
)->sh_size
!= 0
84 && runp
->data
[i
].shdr
.ELFW(e
,LIBELFBITS
)->sh_type
!= SHT_NOBITS
)
91 __libelf_seterrno (ELF_E_INVALID_OFFSET
);
97 rwlock_unlock (elf
->lock
);
101 INTDEF(elfw2(LIBELFBITS
,offscn
))