blob: fd77a5a1148607a32646dbe3e8e048bba7e6565a (
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
|
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
#include <psxtypes/psxtypes.h>
#include <pemagine/pe_consts.h>
#include <pemagine/pe_structs.h>
#include <pemagine/pemagine.h>
struct pe_raw_data_dirs * pe_get_image_data_dirs_addr(const void * base)
{
uint16_t * magic;
union pe_raw_opt_hdr * hdr;
if (!(hdr = pe_get_image_opt_hdr_addr(base)))
return 0;
magic = (uint16_t *)hdr;
switch (*magic) {
case PE_MAGIC_PE32:
return (struct pe_raw_data_dirs *)hdr->opt_hdr_32.coh_rva_and_sizes;
case PE_MAGIC_PE32_PLUS:
return (struct pe_raw_data_dirs *)hdr->opt_hdr_64.coh_rva_and_sizes;
default:
return 0;
}
}
|