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
|
/* Chrysalide - Outil d'analyse de fichiers binaires
* dwarf-int.c - structures internes du format DWARF
*
* Copyright (C) 2015 Cyrille Bagard
*
* This file is part of Chrysalide.
*
* 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 "dwarf-int.h"
/******************************************************************************
* *
* Paramètres : format = informations chargées à consulter. *
* pos = position de début de lecture. [OUT] *
* endian = boutisme reconnu dans le format. *
* header = en-tête à déterminer. [OUT] *
* *
* Description : Procède à la lecture de l'en-tête d'un contenu binaire ELF. *
* *
* Retour : Bilan de l'opération. *
* *
* Remarques : - *
* *
******************************************************************************/
bool read_dwarf_section_header(GBinContent *content, vmpa2t *pos, SourceEndian endian, dw_section_header *header)
{
bool result; /* Bilan à retourner */
uint32_t first; /* Premier paquet d'octets */
bool status; /* Bilan d'opération */
result = false;
status = g_binary_content_read_u32(content, pos, endian, &first);
if (!status) goto rdsh_exit;
if (first >= 0xfffffff0 && first != 0xffffffff)
goto rdsh_exit;
if (first == 0xffffffff)
{
result = g_binary_content_read_u64(content, pos, endian, &header->unit_length);
header->is_32b = false;
}
else
{
result = true;
header->unit_length = first;
header->is_32b = true;
}
result &= g_binary_content_read_u16(content, pos, endian, &header->version);
rdsh_exit:
return result;
}
|