blob: a1ff6d40b7412bcbbc120c8cd218a44e02e9bdf3 [file] [log] [blame]
Ulrich Drepperef9c9c82005-08-03 00:54:16 +00001/* Get section at specific index.
Roland McGrath13b69602008-04-01 02:30:05 +00002 Copyright (C) 2005, 2008 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02003 This file is part of elfutils.
Ulrich Drepperef9c9c82005-08-03 00:54:16 +00004 Contributed by Ulrich Drepper <drepper@redhat.com>, 2005.
5
Mark Wielaardde2ed972012-06-05 17:15:16 +02006 This file is free software; you can redistribute it and/or modify
7 it under the terms of either
Ulrich Drepperef9c9c82005-08-03 00:54:16 +00008
Mark Wielaardde2ed972012-06-05 17:15:16 +02009 * 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
12
13 or
14
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
18
19 or both in parallel, as here.
20
21 elfutils is distributed in the hope that it will be useful, but
Ulrich Drepper361df7d2006-04-04 21:38:57 +000022 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.
Ulrich Drepperef9c9c82005-08-03 00:54:16 +000025
Mark Wielaardde2ed972012-06-05 17:15:16 +020026 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/>. */
Ulrich Drepperef9c9c82005-08-03 00:54:16 +000029
30#ifdef HAVE_CONFIG_H
31# include <config.h>
32#endif
33
34#include <assert.h>
35#include <stddef.h>
36#include <stdlib.h>
37
38#include "libelfP.h"
39
40#ifndef LIBELFBITS
41# define LIBELFBITS 32
42#endif
43
44
45Elf_Scn *
46elfw2(LIBELFBITS,offscn) (elf, offset)
47 Elf *elf;
48 ElfW2(LIBELFBITS,Off) offset;
49{
50 if (elf == NULL)
51 return NULL;
52
53 if (unlikely (elf->kind != ELF_K_ELF))
54 {
55 __libelf_seterrno (ELF_E_INVALID_HANDLE);
56 return NULL;
57 }
58
Roland McGrath13b69602008-04-01 02:30:05 +000059 Elf_ScnList *runp = &elf->state.ELFW(elf,LIBELFBITS).scns;
60
61 /* If we have not looked at section headers before,
62 we might need to read them in first. */
63 if (runp->cnt > 0
64 && unlikely (runp->data[0].shdr.ELFW(e,LIBELFBITS) == NULL)
65 && unlikely (elfw2(LIBELFBITS,getshdr) (&runp->data[0]) == NULL))
66 return NULL;
67
Roland McGrathb4d6f0f2008-08-25 22:55:17 +000068 rwlock_rdlock (elf->lock);
Ulrich Drepperef9c9c82005-08-03 00:54:16 +000069
70 Elf_Scn *result = NULL;
71
72 /* Find the section in the list. */
Ulrich Drepperef9c9c82005-08-03 00:54:16 +000073 while (1)
74 {
75 for (unsigned int i = 0; i < runp->cnt; ++i)
76 if (runp->data[i].shdr.ELFW(e,LIBELFBITS)->sh_offset == offset)
77 {
78 result = &runp->data[i];
Roland McGrathe9c4e8e2005-08-13 03:37:49 +000079
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. */
Mark Wielaard191d1f02012-04-02 17:11:25 +020083 if (runp->data[i].shdr.ELFW(e,LIBELFBITS)->sh_size != 0
84 && runp->data[i].shdr.ELFW(e,LIBELFBITS)->sh_type != SHT_NOBITS)
Roland McGrathe9c4e8e2005-08-13 03:37:49 +000085 goto out;
Ulrich Drepperef9c9c82005-08-03 00:54:16 +000086 }
87
88 runp = runp->next;
89 if (runp == NULL)
90 {
91 __libelf_seterrno (ELF_E_INVALID_OFFSET);
92 break;
93 }
94 }
95
96 out:
Roland McGrathb4d6f0f2008-08-25 22:55:17 +000097 rwlock_unlock (elf->lock);
Ulrich Drepperef9c9c82005-08-03 00:54:16 +000098
99 return result;
100}
101INTDEF(elfw2(LIBELFBITS,offscn))