forked from merces/libpe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pe.c
644 lines (548 loc) · 19.4 KB
/
pe.c
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
/*
libpe - the PE library
Copyright (C) 2010 - 2017 libpe authors
This file is part of libpe.
libpe is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
libpe 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with libpe. If not, see <http://www.gnu.org/licenses/>.
*/
#include "libpe/pe.h"
#include <errno.h>
#include <fcntl.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <openssl/evp.h>
#include <openssl/md5.h>
#include <assert.h>
bool pe_can_read(const pe_ctx_t *ctx, const void *ptr, size_t size) {
const uintptr_t start = (uintptr_t)ptr;
const uintptr_t end = start + size;
return start >= (uintptr_t)ctx->map_addr && end <= (uintptr_t)ctx->map_end;
}
pe_err_e pe_load_file(pe_ctx_t *ctx, const char *path) {
return pe_load_file_ext(ctx, path, 0);
}
pe_err_e pe_load_file_ext(pe_ctx_t *ctx, const char *path, pe_options_e options) {
// Cleanup the whole struct.
memset(ctx, 0, sizeof(pe_ctx_t));
ctx->path = strdup(path);
if (ctx->path == NULL) {
//perror("strdup");
return LIBPE_E_ALLOCATION_FAILURE;
}
// Open the file.
int oflag = options & LIBPE_OPT_OPEN_RW ? O_RDWR : O_RDONLY;
const int fd = open(ctx->path, oflag);
if (fd == -1) {
//perror("open");
return LIBPE_E_OPEN_FAILED;
}
int ret = 0;
// Stat the fd to retrieve the file informations.
// If file is a symlink, fstat will stat the pointed file, not the link.
struct stat stat;
ret = fstat(fd, &stat);
if (ret == -1) {
close(fd);
//perror("fstat");
return LIBPE_E_FSTAT_FAILED;
}
// Check if we're dealing with a regular file.
if (!S_ISREG(stat.st_mode)) {
close(fd);
//fprintf(stderr, "%s is not a file\n", ctx->path);
return LIBPE_E_NOT_A_FILE;
}
// Grab the file size.
ctx->map_size = stat.st_size;
// Create the virtual memory mapping.
int mprot = options & LIBPE_OPT_OPEN_RW ? PROT_READ|PROT_WRITE /* Pages may be written */ : PROT_READ;
// MAP_SHARED makes updates to the mapping visible to other processes that map this file.
// The file may not actually be updated until msync(2) or munmap() is called.
int mflags = options & LIBPE_OPT_OPEN_RW ? MAP_SHARED : MAP_PRIVATE;
ctx->map_addr = mmap(NULL, ctx->map_size, mprot, mflags, fd, 0);
if (ctx->map_addr == MAP_FAILED) {
close(fd);
//perror("mmap");
return LIBPE_E_MMAP_FAILED;
}
ctx->map_end = (uintptr_t)LIBPE_PTR_ADD(ctx->map_addr, ctx->map_size);
if (options & LIBPE_OPT_NOCLOSE_FD) {
// The file descriptor is not dup'ed, and will be closed when the stream created by fdopen() is closed.
FILE *fp = fdopen(fd, options & LIBPE_OPT_OPEN_RW ? "r+b" : "rb"); // NOTE: 'b' is ignored on all POSIX conforming systems.
if (fp == NULL) {
//perror("fdopen");
return LIBPE_E_FDOPEN_FAILED;
}
ctx->stream = fp;
} else {
// We can now close the fd.
ret = close(fd);
if (ret == -1) {
//perror("close");
return LIBPE_E_CLOSE_FAILED;
}
}
// Give advice about how we'll use our memory mapping.
ret = madvise(ctx->map_addr, ctx->map_size, MADV_SEQUENTIAL);
if (ret < 0) {
//perror("madvise");
// NOTE: This is a recoverable error. Do not abort.
}
OpenSSL_add_all_digests();
return LIBPE_E_OK;
}
static void cleanup_cached_data(pe_ctx_t *ctx) {
pe_imports_dealloc(ctx->cached_data.imports);
pe_exports_dealloc(ctx->cached_data.exports);
pe_hash_headers_dealloc(ctx->cached_data.hash_headers);
pe_hash_sections_dealloc(ctx->cached_data.hash_sections);
pe_hash_dealloc(ctx->cached_data.hash_file);
pe_resources_dealloc(ctx->cached_data.resources);
memset(&ctx->cached_data, 0, sizeof(pe_cached_data_t));
}
pe_err_e pe_unload(pe_ctx_t *ctx) {
if (ctx->stream != NULL) {
fclose(ctx->stream);
}
free(ctx->path);
// Dealloc internal pointers.
free(ctx->pe.directories);
free(ctx->pe.sections);
cleanup_cached_data(ctx);
// Dealloc the virtual mapping.
if (ctx->map_addr != NULL) {
int ret = munmap(ctx->map_addr, ctx->map_size);
if (ret != 0) {
//perror("munmap");
return LIBPE_E_MUNMAP_FAILED;
}
}
CRYPTO_cleanup_all_ex_data();
EVP_cleanup(); // Clean OpenSSL_add_all_digests.
// Cleanup the whole struct.
memset(ctx, 0, sizeof(pe_ctx_t));
return LIBPE_E_OK;
}
pe_err_e pe_parse(pe_ctx_t *ctx) {
ctx->pe.dos_hdr = ctx->map_addr;
if (ctx->pe.dos_hdr->e_magic != MAGIC_MZ)
return LIBPE_E_NOT_A_PE_FILE;
const uint32_t *signature_ptr = LIBPE_PTR_ADD(ctx->pe.dos_hdr,
ctx->pe.dos_hdr->e_lfanew);
if (!pe_can_read(ctx, signature_ptr, LIBPE_SIZEOF_MEMBER(pe_file_t, signature)))
return LIBPE_E_INVALID_LFANEW;
// NT signature (PE\0\0), or 16-bit Windows NE signature (NE\0\0).
ctx->pe.signature = *signature_ptr;
switch (ctx->pe.signature) {
default:
//fprintf(stderr, "Invalid signature: %x\n", ctx->pe.signature);
return LIBPE_E_INVALID_SIGNATURE;
case SIGNATURE_NE:
case SIGNATURE_PE:
break;
}
ctx->pe.coff_hdr = LIBPE_PTR_ADD(signature_ptr,
LIBPE_SIZEOF_MEMBER(pe_file_t, signature));
if (!pe_can_read(ctx, ctx->pe.coff_hdr, sizeof(IMAGE_COFF_HEADER)))
return LIBPE_E_MISSING_COFF_HEADER;
ctx->pe.num_sections = ctx->pe.coff_hdr->NumberOfSections;
// Optional header points right after the COFF header.
ctx->pe.optional_hdr_ptr = LIBPE_PTR_ADD(ctx->pe.coff_hdr,
sizeof(IMAGE_COFF_HEADER));
// Figure out whether it's a PE32 or PE32+.
uint16_t *opt_type_ptr = ctx->pe.optional_hdr_ptr;
if (!pe_can_read(ctx, opt_type_ptr,
LIBPE_SIZEOF_MEMBER(IMAGE_OPTIONAL_HEADER, type)))
return LIBPE_E_MISSING_OPTIONAL_HEADER;
ctx->pe.optional_hdr.type = *opt_type_ptr;
switch (ctx->pe.optional_hdr.type) {
default:
case MAGIC_ROM:
// Oh boy! We do not support ROM. Abort!
//fprintf(stderr, "ROM image is not supported\n");
return LIBPE_E_UNSUPPORTED_IMAGE;
case MAGIC_PE32:
if (!pe_can_read(ctx, ctx->pe.optional_hdr_ptr,
sizeof(IMAGE_OPTIONAL_HEADER_32)))
return LIBPE_E_MISSING_OPTIONAL_HEADER;
ctx->pe.optional_hdr._32 = ctx->pe.optional_hdr_ptr;
ctx->pe.optional_hdr.length = sizeof(IMAGE_OPTIONAL_HEADER_32);
ctx->pe.num_directories =
ctx->pe.optional_hdr._32->NumberOfRvaAndSizes;
ctx->pe.entrypoint = ctx->pe.optional_hdr._32->AddressOfEntryPoint;
ctx->pe.imagebase = ctx->pe.optional_hdr._32->ImageBase;
break;
case MAGIC_PE64:
if (!pe_can_read(ctx, ctx->pe.optional_hdr_ptr,
sizeof(IMAGE_OPTIONAL_HEADER_64)))
return LIBPE_E_MISSING_OPTIONAL_HEADER;
ctx->pe.optional_hdr._64 = ctx->pe.optional_hdr_ptr;
ctx->pe.optional_hdr.length = sizeof(IMAGE_OPTIONAL_HEADER_64);
ctx->pe.num_directories =
ctx->pe.optional_hdr._64->NumberOfRvaAndSizes;
ctx->pe.entrypoint = ctx->pe.optional_hdr._64->AddressOfEntryPoint;
ctx->pe.imagebase = ctx->pe.optional_hdr._64->ImageBase;
break;
}
if (ctx->pe.num_directories > MAX_DIRECTORIES) {
//fprintf(stderr, "Too many directories (%u)\n", ctx->pe.num_directories);
return LIBPE_E_TOO_MANY_DIRECTORIES;
}
if (ctx->pe.num_sections > MAX_SECTIONS) {
//fprintf(stderr, "Too many sections (%u)\n", ctx->pe.num_sections);
return LIBPE_E_TOO_MANY_SECTIONS;
}
ctx->pe.directories_ptr = LIBPE_PTR_ADD(ctx->pe.optional_hdr_ptr,
ctx->pe.optional_hdr.length);
uint32_t sections_offset = LIBPE_SIZEOF_MEMBER(pe_file_t, signature)
+ sizeof(IMAGE_FILE_HEADER)
+ (uint32_t)ctx->pe.coff_hdr->SizeOfOptionalHeader;
ctx->pe.sections_ptr = LIBPE_PTR_ADD(signature_ptr, sections_offset);
if (ctx->pe.num_directories > 0) {
ctx->pe.directories = malloc(ctx->pe.num_directories
* sizeof(IMAGE_DATA_DIRECTORY *));
if (ctx->pe.directories == NULL)
return LIBPE_E_ALLOCATION_FAILURE;
for (uint32_t i = 0; i < ctx->pe.num_directories; i++) {
ctx->pe.directories[i] = LIBPE_PTR_ADD(ctx->pe.directories_ptr,
i * sizeof(IMAGE_DATA_DIRECTORY));
}
} else {
ctx->pe.directories_ptr = NULL;
}
if (ctx->pe.num_sections > 0) {
ctx->pe.sections = malloc(ctx->pe.num_sections
* sizeof(IMAGE_SECTION_HEADER *));
if (ctx->pe.sections == NULL)
return LIBPE_E_ALLOCATION_FAILURE;
for (uint32_t i = 0; i < ctx->pe.num_sections; i++) {
ctx->pe.sections[i] = LIBPE_PTR_ADD(ctx->pe.sections_ptr,
i * sizeof(IMAGE_SECTION_HEADER));
}
} else {
ctx->pe.sections_ptr = NULL;
}
return LIBPE_E_OK;
}
bool pe_is_loaded(const pe_ctx_t *ctx) {
return ctx->map_addr != NULL && ctx->map_size > 0;
}
bool pe_is_pe(const pe_ctx_t *ctx) {
// Check MZ header
if (ctx->pe.dos_hdr == NULL || ctx->pe.dos_hdr->e_magic != MAGIC_MZ)
return false;
// Check PE signature
if (ctx->pe.signature != SIGNATURE_PE)
return false;
return true;
}
bool pe_is_dll(const pe_ctx_t *ctx) {
if (ctx->pe.coff_hdr == NULL)
return false;
return ctx->pe.coff_hdr->Characteristics & IMAGE_FILE_DLL ? true : false;
}
uint64_t pe_filesize(const pe_ctx_t *ctx) {
return ctx->map_size;
}
// return the section of given rva
IMAGE_SECTION_HEADER *pe_rva2section(pe_ctx_t *ctx, uint64_t rva) {
if (rva == 0 || ctx->pe.sections == NULL)
return NULL;
for (uint32_t i=0; i < ctx->pe.num_sections; i++) {
const uint64_t start = ctx->pe.sections[i]->VirtualAddress;
const uint64_t end = ctx->pe.sections[i]->VirtualAddress + ctx->pe.sections[i]->Misc.VirtualSize;
if (rva >= start && rva <= end)
return ctx->pe.sections[i];
}
return NULL;
}
// Converts a RVA (Relative Virtual Address) to a raw file offset
uint64_t pe_rva2ofs(const pe_ctx_t *ctx, uint64_t rva) {
if (rva == 0 || ctx->pe.sections == NULL)
return 0;
// Find out which section the given RVA belongs
for (uint32_t i=0; i < ctx->pe.num_sections; i++) {
if (ctx->pe.sections[i] == NULL)
return 0;
// Use SizeOfRawData if VirtualSize == 0
size_t section_size = ctx->pe.sections[i]->Misc.VirtualSize;
if (section_size == 0)
section_size = ctx->pe.sections[i]->SizeOfRawData;
if (ctx->pe.sections[i]->VirtualAddress <= rva) {
if ((ctx->pe.sections[i]->VirtualAddress + section_size) > rva) {
rva -= ctx->pe.sections[i]->VirtualAddress;
rva += ctx->pe.sections[i]->PointerToRawData;
return rva;
}
}
}
// Handle PE with a single section
if (ctx->pe.num_sections == 1) {
rva -= ctx->pe.sections[0]->VirtualAddress;
rva += ctx->pe.sections[0]->PointerToRawData;
return rva;
}
return rva; // PE with no sections, return RVA
}
// Returns the RVA for a given offset
uint64_t pe_ofs2rva(const pe_ctx_t *ctx, uint64_t ofs) {
if (ofs == 0 || ctx->pe.sections == NULL)
return 0;
for (uint32_t i=0; i < ctx->pe.num_sections; i++) {
if (ctx->pe.sections[i] == NULL)
return 0;
if (ctx->pe.sections[i]->PointerToRawData <= ofs) {
if ((ctx->pe.sections[i]->PointerToRawData +
ctx->pe.sections[i]->SizeOfRawData) > ofs) {
ofs -= ctx->pe.sections[i]->PointerToRawData;
ofs += ctx->pe.sections[i]->VirtualAddress;
return ofs;
}
}
}
return 0;
}
IMAGE_DOS_HEADER *pe_dos(pe_ctx_t *ctx) {
return ctx->pe.dos_hdr;
}
IMAGE_COFF_HEADER *pe_coff(pe_ctx_t *ctx) {
return ctx->pe.coff_hdr;
}
IMAGE_OPTIONAL_HEADER *pe_optional(pe_ctx_t *ctx) {
return &ctx->pe.optional_hdr;
}
uint32_t pe_directories_count(const pe_ctx_t *ctx) {
return ctx->pe.num_directories;
}
IMAGE_DATA_DIRECTORY **pe_directories(pe_ctx_t *ctx) {
return ctx->pe.directories;
}
IMAGE_DATA_DIRECTORY *pe_directory_by_entry(pe_ctx_t *ctx, ImageDirectoryEntry entry) {
if (ctx->pe.directories == NULL || entry > ctx->pe.num_directories - 1)
return NULL;
return ctx->pe.directories[entry];
}
uint16_t pe_sections_count(const pe_ctx_t *ctx) {
return ctx->pe.num_sections;
}
IMAGE_SECTION_HEADER **pe_sections(pe_ctx_t *ctx) {
return ctx->pe.sections;
}
IMAGE_SECTION_HEADER *pe_section_by_name(pe_ctx_t *ctx, const char *name) {
if (ctx->pe.sections == NULL || name == NULL)
return NULL;
for (uint32_t i=0; i < ctx->pe.num_sections; i++) {
if (strncmp((const char *)ctx->pe.sections[i]->Name, name, SECTION_NAME_SIZE) == 0)
return ctx->pe.sections[i];
}
return NULL;
}
const char *pe_section_name(const pe_ctx_t *ctx, const IMAGE_SECTION_HEADER *section_hdr, char *out_name, size_t out_name_size) {
assert(ctx != NULL); // TODO we don't actually need *ctx here
assert(out_name_size >= SECTION_NAME_SIZE+1);
strncpy(out_name, (const char *)section_hdr->Name, SECTION_NAME_SIZE);
out_name[SECTION_NAME_SIZE-1] = '\0';
return out_name;
}
#define LIBPE_ENTRY(v) { v, # v }
const char *pe_machine_type_name(MachineType type) {
typedef struct {
MachineType type;
const char * const name;
} MachineEntry;
static const MachineEntry names[] = {
LIBPE_ENTRY(IMAGE_FILE_MACHINE_UNKNOWN),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_AM33),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_AMD64),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_ARM),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_ARMV7),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_CEE),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_EBC),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_I386),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_IA64),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_M32R),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_MIPS16),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_MIPSFPU),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_MIPSFPU16),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_POWERPC),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_POWERPCFP),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_R4000),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_SH3),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_SH3DSP),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_SH4),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_SH5),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_THUMB),
LIBPE_ENTRY(IMAGE_FILE_MACHINE_WCEMIPSV2)
};
for (unsigned int i=0; i < LIBPE_SIZEOF_ARRAY(names); i++) {
if (type == names[i].type)
return names[i].name;
}
return NULL;
}
const char *pe_image_characteristic_name(ImageCharacteristics characteristic) {
typedef struct {
ImageCharacteristics characteristic;
const char * const name;
} ImageCharacteristicsName;
static const ImageCharacteristicsName names[] = {
LIBPE_ENTRY(IMAGE_FILE_RELOCS_STRIPPED),
LIBPE_ENTRY(IMAGE_FILE_EXECUTABLE_IMAGE),
LIBPE_ENTRY(IMAGE_FILE_LINE_NUMS_STRIPPED),
LIBPE_ENTRY(IMAGE_FILE_LOCAL_SYMS_STRIPPED),
LIBPE_ENTRY(IMAGE_FILE_AGGRESSIVE_WS_TRIM),
LIBPE_ENTRY(IMAGE_FILE_LARGE_ADDRESS_AWARE),
LIBPE_ENTRY(IMAGE_FILE_RESERVED),
LIBPE_ENTRY(IMAGE_FILE_BYTES_REVERSED_LO),
LIBPE_ENTRY(IMAGE_FILE_32BIT_MACHINE),
LIBPE_ENTRY(IMAGE_FILE_DEBUG_STRIPPED),
LIBPE_ENTRY(IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP),
LIBPE_ENTRY(IMAGE_FILE_NET_RUN_FROM_SWAP),
LIBPE_ENTRY(IMAGE_FILE_SYSTEM),
LIBPE_ENTRY(IMAGE_FILE_DLL),
LIBPE_ENTRY(IMAGE_FILE_UP_SYSTEM_ONLY),
LIBPE_ENTRY(IMAGE_FILE_BYTES_REVERSED_HI)
};
for (unsigned int i=0; i < LIBPE_SIZEOF_ARRAY(names); i++) {
if (characteristic == names[i].characteristic)
return names[i].name;
}
return NULL;
}
const char *pe_image_dllcharacteristic_name(ImageDllCharacteristics characteristic) {
typedef struct {
ImageDllCharacteristics characteristic;
const char * const name;
} ImageDllCharacteristicsName;
static const ImageDllCharacteristicsName names[] = {
LIBPE_ENTRY(IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE),
LIBPE_ENTRY(IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY),
LIBPE_ENTRY(IMAGE_DLLCHARACTERISTICS_NX_COMPAT),
LIBPE_ENTRY(IMAGE_DLLCHARACTERISTICS_NO_ISOLATION),
LIBPE_ENTRY(IMAGE_DLLCHARACTERISTICS_NO_SEH),
LIBPE_ENTRY(IMAGE_DLLCHARACTERISTICS_NO_BIND),
LIBPE_ENTRY(IMAGE_DLLCHARACTERISTICS_WDM_DRIVER),
LIBPE_ENTRY(IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE)
};
for (unsigned int i=0; i < LIBPE_SIZEOF_ARRAY(names); i++) {
if (characteristic == names[i].characteristic)
return names[i].name;
}
return NULL;
}
const char *pe_windows_subsystem_name(WindowsSubsystem subsystem) {
typedef struct {
WindowsSubsystem subsystem;
const char * const name;
} WindowsSubsystemName;
static const WindowsSubsystemName names[] = {
LIBPE_ENTRY(IMAGE_SUBSYSTEM_UNKNOWN),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_NATIVE),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_WINDOWS_GUI),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_WINDOWS_CUI),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_OS2_CUI),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_POSIX_CUI),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_WINDOWS_CE_GUI),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_EFI_APPLICATION),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_EFI_ROM),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_XBOX),
LIBPE_ENTRY(IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION)
};
for (unsigned int i=0; i < LIBPE_SIZEOF_ARRAY(names); i++) {
if (subsystem == names[i].subsystem)
return names[i].name;
}
return NULL;
}
const char *pe_directory_name(ImageDirectoryEntry entry) {
typedef struct {
ImageDirectoryEntry entry;
const char * const name;
} ImageDirectoryEntryName;
static const ImageDirectoryEntryName names[] = {
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_EXPORT),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_IMPORT),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_RESOURCE),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_EXCEPTION),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_SECURITY),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_BASERELOC),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_DEBUG),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_ARCHITECTURE),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_GLOBALPTR),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_TLS),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_IAT),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT),
LIBPE_ENTRY(IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR),
LIBPE_ENTRY(IMAGE_DIRECTORY_RESERVED)
};
for (unsigned int i=0; i < LIBPE_SIZEOF_ARRAY(names); i++) {
if (entry == names[i].entry)
return names[i].name;
}
return NULL;
}
const char *pe_section_characteristic_name(SectionCharacteristics characteristic) {
typedef struct {
SectionCharacteristics characteristic;
const char * const name;
} SectionCharacteristicsName;
static const SectionCharacteristicsName names[] = {
LIBPE_ENTRY(IMAGE_SCN_TYPE_NO_PAD),
LIBPE_ENTRY(IMAGE_SCN_CNT_CODE),
LIBPE_ENTRY(IMAGE_SCN_CNT_INITIALIZED_DATA),
LIBPE_ENTRY(IMAGE_SCN_CNT_UNINITIALIZED_DATA),
LIBPE_ENTRY(IMAGE_SCN_LNK_OTHER),
LIBPE_ENTRY(IMAGE_SCN_LNK_INFO),
LIBPE_ENTRY(IMAGE_SCN_LNK_REMOVE),
LIBPE_ENTRY(IMAGE_SCN_LNK_COMDAT),
LIBPE_ENTRY(IMAGE_SCN_NO_DEFER_SPEC_EXC),
LIBPE_ENTRY(IMAGE_SCN_GPREL),
LIBPE_ENTRY(IMAGE_SCN_MEM_PURGEABLE),
LIBPE_ENTRY(IMAGE_SCN_MEM_LOCKED),
LIBPE_ENTRY(IMAGE_SCN_MEM_PRELOAD),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_1BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_2BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_4BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_8BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_16BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_32BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_64BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_128BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_256BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_512BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_1024BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_2048BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_4096BYTES),
LIBPE_ENTRY(IMAGE_SCN_ALIGN_8192BYTES),
LIBPE_ENTRY(IMAGE_SCN_LNK_NRELOC_OVFL),
LIBPE_ENTRY(IMAGE_SCN_MEM_DISCARDABLE),
LIBPE_ENTRY(IMAGE_SCN_MEM_NOT_CACHED),
LIBPE_ENTRY(IMAGE_SCN_MEM_NOT_PAGED),
LIBPE_ENTRY(IMAGE_SCN_MEM_SHARED),
LIBPE_ENTRY(IMAGE_SCN_MEM_EXECUTE),
LIBPE_ENTRY(IMAGE_SCN_MEM_READ),
LIBPE_ENTRY(IMAGE_SCN_MEM_WRITE)
};
for (unsigned int i=0; i < LIBPE_SIZEOF_ARRAY(names); i++) {
if (characteristic == names[i].characteristic)
return names[i].name;
}
return NULL;
}