ReactOS 0.4.15-dev-7928-g68a8619
image_private.h
Go to the documentation of this file.
1/*
2 * File elf_private.h - definitions for processing of ELF files
3 *
4 * Copyright (C) 1996, Eric Youngdale.
5 * 1999-2007 Eric Pouech
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22#pragma once
23
24#define IMAGE_NO_MAP ((void*)-1)
25
27{
28 UINT8 e_ident[16]; /* Magic number and other info */
29 UINT16 e_type; /* Object file type */
30 UINT16 e_machine; /* Architecture */
31 UINT32 e_version; /* Object file version */
32 UINT64 e_entry; /* Entry point virtual address */
33 UINT64 e_phoff; /* Program header table file offset */
34 UINT64 e_shoff; /* Section header table file offset */
35 UINT32 e_flags; /* Processor-specific flags */
36 UINT16 e_ehsize; /* ELF header size in bytes */
37 UINT16 e_phentsize; /* Program header table entry size */
38 UINT16 e_phnum; /* Program header table entry count */
39 UINT16 e_shentsize; /* Section header table entry size */
40 UINT16 e_shnum; /* Section header table entry count */
41 UINT16 e_shstrndx; /* Section header string table index */
42};
43
45{
46 UINT32 sh_name; /* Section name (string tbl index) */
47 UINT32 sh_type; /* Section type */
48 UINT64 sh_flags; /* Section flags */
49 UINT64 sh_addr; /* Section virtual addr at execution */
50 UINT64 sh_offset; /* Section file offset */
51 UINT64 sh_size; /* Section size in bytes */
52 UINT32 sh_link; /* Link to another section */
53 UINT32 sh_info; /* Additional section information */
54 UINT64 sh_addralign; /* Section alignment */
55 UINT64 sh_entsize; /* Entry size if section holds table */
56};
57
59{
60 UINT32 cmd; /* type of load command */
61 UINT32 cmdsize; /* total size of command in bytes */
62};
63
65{
66 UINT32 cmd; /* LC_UUID */
69};
70
72{
73 char sectname[16]; /* name of this section */
74 char segname[16]; /* segment this section goes in */
75 UINT64 addr; /* memory address of this section */
76 UINT64 size; /* size in bytes of this section */
77 UINT32 offset; /* file offset of this section */
78 UINT32 align; /* section alignment (power of 2) */
79 UINT32 reloff; /* file offset of relocation entries */
80 UINT32 nreloc; /* number of relocation entries */
81 UINT32 flags; /* flags (section type and attributes)*/
82 UINT32 reserved1; /* reserved (for offset or index) */
83 UINT32 reserved2; /* reserved (for count or sizeof) */
84 UINT32 reserved3; /* reserved */
85};
86
88{
89 char sectname[16]; /* name of this section */
90 char segname[16]; /* segment this section goes in */
91 UINT32 addr; /* memory address of this section */
92 UINT32 size; /* size in bytes of this section */
93 UINT32 offset; /* file offset of this section */
94 UINT32 align; /* section alignment (power of 2) */
95 UINT32 reloff; /* file offset of relocation entries */
96 UINT32 nreloc; /* number of relocation entries */
97 UINT32 flags; /* flags (section type and attributes)*/
98 UINT32 reserved1; /* reserved (for offset or index) */
99 UINT32 reserved2; /* reserved (for count or sizeof) */
100};
101
102/* structure holding information while handling an ELF image
103 * allows one by one section mapping for memory savings
104 */
106{
108 const struct image_file_map_ops *ops;
109 unsigned addr_size; /* either 16 (not used), 32 or 64 */
110 struct image_file_map* alternate; /* another file linked to this one */
111 union
112 {
113 struct elf_file_map
114 {
115 size_t elf_size;
116 size_t elf_start;
118 const char* shstrtab;
120 struct elf_header elfhdr;
121 struct
122 {
124 const char* mapped;
125 }* sect;
127 struct macho_file_map
128 {
129 size_t segs_size;
132 struct image_file_map* dsym; /* the debug symbols file associated with this one */
133 size_t header_size; /* size of real header in file */
135 unsigned int commands_count;
136
139
140 /* The offset in the file which is this architecture. mach_header was
141 * read from arch_offset. */
142 unsigned arch_offset;
143
145 struct
146 {
148 const char* mapped;
149 unsigned int ignored : 1;
150 }* sect;
152 struct pe_file_map
153 {
157 unsigned full_count;
158 void* full_map;
159 struct
160 {
162 const char* mapped;
163 }* sect;
164 const char* strtable;
165 } pe;
166 } u;
167};
168
170{
173};
174
176{
177 unsigned n_strx;
178 unsigned char n_type;
180 short n_desc;
181 unsigned n_value;
182};
183
185{
186 unsigned n_strx;
187 unsigned char n_type;
189 short n_desc;
191};
192
194
197
199{
200 const char* (*map_section)(struct image_section_map* ism);
202 BOOL (*find_section)(struct image_file_map* fmap, const char* name, struct image_section_map* ism);
206};
207
208static inline BOOL image_find_section(struct image_file_map* fmap, const char* name,
209 struct image_section_map* ism)
210{
211 while (fmap)
212 {
213 if (fmap->ops->find_section(fmap, name, ism)) return TRUE;
214 fmap = fmap->alternate;
215 }
216 ism->fmap = NULL;
217 ism->sidx = -1;
218 return FALSE;
219}
220
221static inline void image_unmap_file(struct image_file_map* fmap)
222{
223 while (fmap)
224 {
225 fmap->ops->unmap_file(fmap);
226 fmap = fmap->alternate;
227 }
228}
229
230static inline const char* image_map_section(struct image_section_map* ism)
231{
232 return ism->fmap ? ism->fmap->ops->map_section(ism) : NULL;
233}
234
235static inline void image_unmap_section(struct image_section_map* ism)
236{
237 if (ism->fmap) ism->fmap->ops->unmap_section(ism);
238}
239
240static inline DWORD_PTR image_get_map_rva(const struct image_section_map* ism)
241{
242 return ism->fmap ? ism->fmap->ops->get_map_rva(ism) : 0;
243}
244
245static inline unsigned image_get_map_size(const struct image_section_map* ism)
246{
247 return ism->fmap ? ism->fmap->ops->get_map_size(ism) : 0;
248}
unsigned short UINT16
unsigned long long UINT64
unsigned char UINT8
unsigned int UINT32
module_type
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define DECLSPEC_HIDDEN
Definition: precomp.h:8
unsigned int BOOL
Definition: ntddk_ex.h:94
BOOL pe_map_file(HANDLE file, struct image_file_map *fmap, enum module_type mt) DECLSPEC_HIDDEN
Definition: pe_module.c:245
BOOL elf_map_handle(HANDLE handle, struct image_file_map *fmap) DECLSPEC_HIDDEN
Definition: elf_module.c:582
static void image_unmap_section(struct image_section_map *ism)
static BOOL image_find_section(struct image_file_map *fmap, const char *name, struct image_section_map *ism)
static const char * image_map_section(struct image_section_map *ism)
static DWORD_PTR image_get_map_rva(const struct image_section_map *ism)
BOOL image_check_alternate(struct image_file_map *fmap, const struct module *module) DECLSPEC_HIDDEN
Definition: module.c:701
static void image_unmap_file(struct image_file_map *fmap)
static unsigned image_get_map_size(const struct image_section_map *ism)
Definition: msctf.idl:550
static unsigned(__cdecl *hash_bstr)(bstr_t s)
__int3264 LONG_PTR
Definition: mstsclib_h.h:276
#define BOOL
Definition: nt_native.h:43
UINT64 e_shoff
Definition: image_private.h:34
UINT64 e_entry
Definition: image_private.h:32
UINT16 e_ehsize
Definition: image_private.h:36
UINT32 e_flags
Definition: image_private.h:35
UINT16 e_shentsize
Definition: image_private.h:39
UINT16 e_shstrndx
Definition: image_private.h:41
UINT32 e_version
Definition: image_private.h:31
UINT16 e_phentsize
Definition: image_private.h:37
UINT16 e_phnum
Definition: image_private.h:38
UINT64 e_phoff
Definition: image_private.h:33
UINT16 e_type
Definition: image_private.h:29
UINT8 e_ident[16]
Definition: image_private.h:28
UINT16 e_shnum
Definition: image_private.h:40
UINT16 e_machine
Definition: image_private.h:30
Definition: fci.c:127
unsigned(* get_map_size)(const struct image_section_map *ism)
void(* unmap_file)(struct image_file_map *fmap)
DWORD_PTR(* get_map_rva)(const struct image_section_map *ism)
BOOL(* find_section)(struct image_file_map *fmap, const char *name, struct image_section_map *ism)
void(* unmap_section)(struct image_section_map *ism)
unsigned full_count
const char * shstrtab
unsigned arch_offset
struct image_file_map::@385::macho_file_map macho
enum module_type modtype
const char * mapped
union image_file_map::@385 u
struct image_file_map::@385::elf_file_map elf
struct image_file_map::@385::pe_file_map pe
const struct macho_load_command * load_commands
const char * strtable
const struct macho_uuid_command * uuid
unsigned addr_size
unsigned int ignored
IMAGE_NT_HEADERS ntheader
struct image_file_map * alternate
IMAGE_SECTION_HEADER shdr
unsigned int commands_count
struct image_file_map * dsym
const struct image_file_map_ops * ops
size_t commands_size
struct image_file_map * fmap
unsigned n_strx
unsigned char n_type
char sectname[16]
Definition: image_private.h:89
char segname[16]
Definition: image_private.h:90
char sectname[16]
Definition: image_private.h:73
UINT32 reserved2
Definition: image_private.h:83
char segname[16]
Definition: image_private.h:74
UINT32 reserved1
Definition: image_private.h:82
UINT32 reserved3
Definition: image_private.h:84
Definition: name.c:39
Definition: parser.c:56
unsigned n_strx
unsigned char n_type
unsigned n_value
#define DWORD_PTR
Definition: treelist.c:76
uint32_t DWORD_PTR
Definition: typedefs.h:65