summaryrefslogtreecommitdiff
path: root/src/format/elf/section.c
blob: c6192931fdba07a472cc94325c4a0ed3dad3baa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262

/* OpenIDA - Outil d'analyse de fichiers binaires
 * section.h - prototypes pour la gestion des sections d'un ELF
 *
 * Copyright (C) 2008 Cyrille Bagard
 *
 *  This file is part of OpenIDA.
 *
 *  OpenIDA is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  OpenIDA is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
 */


#include "section.h"


#include <malloc.h>
#include <string.h>


#include "elf-int.h"



/******************************************************************************
*                                                                             *
*  Paramètres  : format = description de l'exécutable à compléter.            *
*                                                                             *
*  Description : Charge en mémoire la liste humaine des sections.             *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool read_elf_section_names(elf_format *format)
{
    off_t offset;                           /* Position des données        */
    Elf32_Shdr section;                     /* Section visée               */

    offset = format->header.e_shoff + format->header.e_shentsize * format->header.e_shstrndx;

    if ((offset + sizeof(Elf32_Shdr)) > EXE_FORMAT(format)->length) return false;

    memcpy(&section, &EXE_FORMAT(format)->content[offset], sizeof(Elf32_Shdr));

    if ((section.sh_offset + section.sh_size) > EXE_FORMAT(format)->length) return false;

    format->sec_names = (char *)calloc(section.sh_size + 1, sizeof(char));
    format->sec_size = section.sh_size;

    memcpy(format->sec_names, &EXE_FORMAT(format)->content[section.sh_offset], section.sh_size);

    return true;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : format  = description de l'exécutable à consulter.           *
*                name    = nom de la section recherchée.                      *
*                section = ensemble d'informations à faire remonter. [OUT]    *
*                                                                             *
*  Description : Recherche une section donnée au sein de binaire par nom.     *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool find_elf_section_by_name(const elf_format *format, const char *name, Elf_Shdr *section)
{
    bool result;                            /* Bilan à retourner           */
    uint16_t i;                             /* Boucle de parcours          */

    /* Si on perd notre temps... */
    if (format->sec_size == 0) return false;

    result = false;

    for (i = 0; i < format->header.e_shnum && !result; i++)
    {
        find_elf_section_by_index(format, i, section);

        result = (strcmp(name, &format->sec_names[ELF_SHDR(format, section, sh_name)]) == 0);

    }

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : format   = description de l'exécutable à consulter.          *
*                type     = type de la section recherchée.                    *
*                sections = tableau d'informations à faire remonter. [OUT]    *
*                count    = nombre d'éléments présents dans le tableau. [OUT] *
*                                                                             *
*  Description : Recherche une section donnée au sein de binaire par type.    *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool find_elf_section_by_type(const elf_format *format, uint16_t type, Elf_Shdr **sections, size_t *count)
{
    uint16_t i;                             /* Boucle de parcours          */
    Elf_Shdr section;                       /* Section à analyser          */

    *sections = NULL;
    *count = 0;

    for (i = 0; i < format->header.e_shnum; i++)
    {
        find_elf_section_by_index(format, i, &section);

        if (type == ELF_SHDR(format, &section, sh_type))
        {
            *sections = (Elf_Shdr *)realloc(*sections, ++(*count) * sizeof(Elf_Shdr));
            (*sections)[*count - 1] = section;
        }

    }

    return (*count > 0);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : format  = description de l'exécutable à consulter.           *
*                index   = indice de la section recherchée.                   *
*                section = ensemble d'informations à faire remonter. [OUT]    *
*                                                                             *
*  Description : Recherche une section donnée au sein de binaire par indice.  *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool find_elf_section_by_index(const elf_format *format, uint16_t index, Elf_Shdr *section)
{
    off_t offset;                           /* Emplacement à venir lire    */

    if (index >= format->header.e_shnum) return false;

    offset = format->header.e_shoff + format->header.e_shentsize * index;

    memcpy(section, &EXE_FORMAT(format)->content[offset], ELF_SIZEOF_SHDR(format));

    return true;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : format  = description de l'exécutable à consulter.           *
*                section = section à consulter.                               *
*                offset  = position de la section trouvée. [OUT]              *
*                size    = taille de la section trouvée. [OUT]                *
*                voffset = adresse virtuelle de la section trouvée. [OUT]     *
*                                                                             *
*  Description : Fournit les adresses et taille contenues dans une section.   *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

void get_elf_section_content(const elf_format *format, const Elf_Shdr *section, off_t *offset, off_t *size, uint64_t *voffset)
{
    *offset = ELF_SHDR(format, section, sh_offset);
    *size = ELF_SHDR(format, section, sh_size);

    if (voffset != NULL)
        *voffset = ELF_SHDR(format, section, sh_addr);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : format  = description de l'exécutable à consulter.           *
*                name    = nom de la section recherchée.                      *
*                offset  = position de la section trouvée. [OUT]              *
*                size    = taille de la section trouvée. [OUT]                *
*                voffset = adresse virtuelle de la section trouvée. [OUT]     *
*                                                                             *
*  Description : Recherche une zone donnée au sein de binaire par nom.        *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool find_elf_section_content_by_name(const elf_format *format, const char *name, off_t *offset, off_t *size, uint64_t *voffset)
{
    bool result;                            /* Bilan à retourner           */
    Elf_Shdr section;                       /* Section trouvée ou non      */

    result = find_elf_section_by_name(format, name, &section);

    if (result)
        get_elf_section_content(format, &section, offset, size, voffset);

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : format  = description de l'exécutable à consulter.           *
*                index   = indice de la section recherchée.                   *
*                offset  = position de la section trouvée. [OUT]              *
*                size    = taille de la section trouvée. [OUT]                *
*                voffset = adresse virtuelle de la section trouvée. [OUT]     *
*                                                                             *
*  Description : Recherche une zone donnée au sein de binaire par indice.     *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool find_elf_section_content_by_index(const elf_format *format, uint16_t index, off_t *offset, off_t *size, uint64_t *voffset)
{
    bool result;                            /* Bilan à retourner           */
    Elf_Shdr section;                       /* Section trouvée ou non      */

    result = find_elf_section_by_index(format, index, &section);

    if (result)
        get_elf_section_content(format, &section, offset, size, voffset);

    return result;

}