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
|
/***************************************************************/
/* perk: PE Resource Kit */
/* Copyright (C) 2015--2016 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PERK. */
/***************************************************************/
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <perk/perk.h>
#include <perk/perk_output.h>
#include "perk_errinfo_impl.h"
static int pretty_header(const struct pe_common_ctx * cctx, FILE * fout)
{
if (cctx->fmtflags & PERK_PRETTY_YAML)
return fputs("exports:\n",fout);
else if (cctx->fmtflags & PERK_PRETTY_DLLTOOL)
return fputs("EXPORTS\n",fout);
return 0;
}
static int pretty_export_item(const struct pe_common_ctx * cctx, const char * name, FILE * fout)
{
if (cctx->fmtflags & PERK_PRETTY_YAML)
return fprintf(fout,"- %s\n",name);
else
return fprintf(fout,"%s\n",name);
}
int pe_output_export_symbols(
const struct pe_driver_ctx * dctx,
const struct pe_image_meta * m,
FILE * fout)
{
char * mark;
uint32_t offset;
uint32_t * symrva;
unsigned i;
const struct pe_common_ctx * cctx = dctx->cctx;
if (!m->hedata)
return 0;
if (!fout)
fout = stdout;
if ((pretty_header(cctx,fout)) < 0)
return PERK_FILE_ERROR(dctx);
mark = m->image.addr;
offset = m->hedata->virtual_addr - m->hedata->ptr_to_raw_data;
symrva = (uint32_t *)(mark + m->edata.name_ptr_rva - offset);
for (i=0; i<m->edata.num_of_name_ptrs; i++)
if ((pretty_export_item(
cctx,
&mark[symrva[i] - offset],
fout)) < 0)
return PERK_FILE_ERROR(dctx);
return 0;
}
|