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
|
/* Copyright (C) 2021-2025 Free Software Foundation, Inc.
Contributed by Oracle.
This file is part of GNU Binutils.
This program 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, or (at your option)
any later version.
This program 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 this program; if not, write to the Free Software
Foundation, 51 Franklin Street - Fifth Floor, Boston,
MA 02110-1301, USA. */
#ifndef _Elf_h_
#define _Elf_h_
#include <string.h>
#include "ansidecl.h"
#include "bfd.h"
#include "elf/common.h"
#include "elf/internal.h"
#include "Data_window.h"
#include "Emsg.h"
class Symbol;
class DbeFile;
class DwrSec;
template <class ITEM> class Vector;
template <typename Key_t, typename Value_t> class Map;
#define GELF_ST_TYPE(info) ((info) & 0xf)
#define GELF_ST_BIND(info) ((info) >> 4)
#define SHF_SUNW_ABSENT 0x00200000 /* section data not present */
#define SEC_DECOMPRESSED 0x00400000 /* bfd allocated this memory */
// Ancillary values.
#define ANC_SUNW_NULL 0
#define ANC_SUNW_CHECKSUM 1 /* elf checksum */
#define ANC_SUNW_MEMBER 2 /* name of ancillary group object */
#define ANC_SUNW_NUM 3
typedef struct S_Elf64_Dyn Elf64_Dyn;
typedef struct S_Elf64_Ancillary Elf64_Ancillary;
typedef struct
{
void *d_buf;
uint64_t d_flags;
uint64_t d_size;
uint64_t d_off; // offset into section
uint64_t d_align; // alignment in section
} Elf_Data;
class Elf : public DbeMessages, public Data_window
{
public:
enum Elf_status
{
ELF_ERR_NONE,
ELF_ERR_CANT_OPEN_FILE,
ELF_ERR_CANT_MMAP,
ELF_ERR_BIG_FILE,
ELF_ERR_BAD_ELF_FORMAT,
ELF_ERR_READ_FILE
};
Elf (char *_fname);
~Elf ();
static void elf_init ();
static unsigned elf_version (unsigned ver);
static Elf *elf_begin (char *_fname, Elf_status *stp = NULL);
unsigned int elf_get_sec_num (const char *sec_name);
char *get_sec_name (unsigned int sec);
Elf_Internal_Ehdr *elf_getehdr ();
Elf_Internal_Phdr *get_phdr (unsigned int ndx);
Elf_Internal_Shdr *get_shdr (unsigned int ndx);
Elf64_Dyn *elf_getdyn (Elf_Internal_Phdr *phdr, unsigned int ndx, Elf64_Dyn *pdyn);
Elf_Data *elf_getdata (unsigned int sec);
int64_t elf_checksum ();
uint64_t get_baseAddr();
char *elf_strptr (unsigned int sec, uint64_t off);
long elf_getSymCount (bool is_dynamic);
asymbol *elf_getsym (unsigned int ndx, Elf_Internal_Sym *dst, bool is_dynamic);
Elf64_Ancillary *elf_getancillary (Elf_Data *edta, unsigned int ndx, Elf64_Ancillary *dst);
// read the .SUNW_ancillary section
void find_ancillary_files (const char *lo_name);
// read the .gnu_debuglink and .gnu_debugaltlink sections
void find_gnu_debug_files ();
DwrSec *get_dwr_section (const char *sec_name); // Used in Dwarf reader
const char *get_funcname_in_plt (uint64_t pc);
char *get_location ();
char *dump ();
void dump_elf_sec ();
static inline int64_t
normalize_checksum (int64_t chk)
{
return (chk == 0xffffffff || chk == -1) ? 0 : chk;
};
inline bool
is_Intel ()
{
return elf_datatype == ELFDATA2LSB;
};
inline int
elf_getclass ()
{
return elf_class;
};
inline int
elf_getdatatype ()
{
return elf_datatype;
};
Elf_status status;
Vector<Elf*> *ancillary_files;
Elf *gnu_debug_file;
Elf *gnu_debugalt_file; // if the .gun_debugaltlink section presents
DbeFile *dbeFile;
Map<const char*, Symbol*> *elfSymbols;
unsigned int analyzerInfo, stab, stabStr;
unsigned int stabIndex, stabIndexStr, stabExcl, stabExclStr, info, plt;
bool dwarf;
protected:
Elf *get_related_file (const char *lo_name, const char *nm);
void get_bfd_symbols();
int elf_class;
int elf_datatype;
Elf_Internal_Ehdr *ehdrp;
Elf_Data **data;
DwrSec **sections;
bfd *abfd;
static int bfd_status;
long bfd_symcnt;
long bfd_dynsymcnt;
long bfd_synthcnt;
asymbol **bfd_sym;
asymbol **bfd_dynsym;
asymbol *bfd_synthsym;
Vector <asymbol *> *synthsym;
};
#endif
|