Branch data Line data Source code
1 : : /* Get information from dynamic table at the given index.
2 : : Copyright (C) 2000, 2001, 2002, 2005, 2009, 2014, 2015 Red Hat, Inc.
3 : : This file is part of elfutils.
4 : : Written by Ulrich Drepper <drepper@redhat.com>, 2000.
5 : :
6 : : This file is free software; you can redistribute it and/or modify
7 : : it under the terms of either
8 : :
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
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
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.
25 : :
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/>. */
29 : :
30 : : #ifdef HAVE_CONFIG_H
31 : : # include <config.h>
32 : : #endif
33 : :
34 : : #include <gelf.h>
35 : : #include <string.h>
36 : :
37 : : #include "libelfP.h"
38 : :
39 : :
40 : : GElf_Dyn *
41 : 35316 : gelf_getdyn (Elf_Data *data, int ndx, GElf_Dyn *dst)
42 : : {
43 : 35316 : Elf_Data_Scn *data_scn = (Elf_Data_Scn *) data;
44 : 35316 : GElf_Dyn *result = NULL;
45 : 35316 : Elf *elf;
46 : :
47 [ - + ]: 35316 : if (data_scn == NULL)
48 : : return NULL;
49 : :
50 [ - + ]: 35316 : if (unlikely (data_scn->d.d_type != ELF_T_DYN))
51 : : {
52 : 0 : __libelf_seterrno (ELF_E_INVALID_HANDLE);
53 : 0 : return NULL;
54 : : }
55 : :
56 : 35316 : elf = data_scn->s->elf;
57 : :
58 : 35316 : rwlock_rdlock (elf->lock);
59 : :
60 : : /* This is the one place where we have to take advantage of the fact
61 : : that an `Elf_Data' pointer is also a pointer to `Elf_Data_Scn'.
62 : : The interface is broken so that it requires this hack. */
63 [ + + ]: 35316 : if (elf->class == ELFCLASS32)
64 : : {
65 : 9216 : Elf32_Dyn *src;
66 : :
67 : : /* Here it gets a bit more complicated. The format of the symbol
68 : : table entries has to be adopted. The user better has provided
69 : : a buffer where we can store the information. While copying the
70 : : data we are converting the format. */
71 [ + + ]: 9216 : if (INVALID_NDX (ndx, Elf32_Dyn, &data_scn->d))
72 : : {
73 : 56 : __libelf_seterrno (ELF_E_INVALID_INDEX);
74 : 56 : goto out;
75 : : }
76 : :
77 : 9160 : src = &((Elf32_Dyn *) data_scn->d.d_buf)[ndx];
78 : :
79 : : /* This might look like a simple copy operation but it's
80 : : not. There are zero- and sign-extensions going on. */
81 : 9160 : dst->d_tag = src->d_tag;
82 : : /* It OK to copy `d_val' since `d_ptr' has the same size. */
83 : 9160 : dst->d_un.d_val = src->d_un.d_val;
84 : : }
85 : : else
86 : : {
87 : : /* If this is a 64 bit object it's easy. */
88 : 26100 : eu_static_assert (sizeof (GElf_Dyn) == sizeof (Elf64_Dyn));
89 : :
90 : : /* The data is already in the correct form. Just make sure the
91 : : index is OK. */
92 [ + + ]: 26100 : if (INVALID_NDX (ndx, GElf_Dyn, &data_scn->d))
93 : : {
94 : 64 : __libelf_seterrno (ELF_E_INVALID_INDEX);
95 : 64 : goto out;
96 : : }
97 : :
98 : 26036 : *dst = ((GElf_Dyn *) data_scn->d.d_buf)[ndx];
99 : : }
100 : :
101 : : result = dst;
102 : :
103 : : out:
104 : : rwlock_unlock (elf->lock);
105 : :
106 : : return result;
107 : : }
|