|
|
e2e2c2 |
/***************************************************************/
|
|
|
e2e2c2 |
/* perk: PE Resource Kit */
|
|
|
ced38a |
/* Copyright (C) 2015--2017 Z. Gilboa */
|
|
|
e2e2c2 |
/* Released under GPLv2 and GPLv3; see COPYING.PERK. */
|
|
|
e2e2c2 |
/***************************************************************/
|
|
|
e2e2c2 |
|
|
|
c0fbae |
#include <stdint.h>
|
|
|
c0fbae |
#include <stdlib.h>
|
|
|
c0fbae |
#include <stdio.h>
|
|
|
c0fbae |
#include <string.h>
|
|
|
c0fbae |
#include <errno.h>
|
|
|
c0fbae |
|
|
|
c0fbae |
#include <perk/perk.h>
|
|
|
e343a6 |
#include <perk/perk_output.h>
|
|
|
f64a5b |
#include "perk_errinfo_impl.h"
|
|
|
c0fbae |
|
|
|
6025fb |
static int pretty_header(const struct pe_common_ctx * cctx, FILE * fout)
|
|
|
e343a6 |
{
|
|
|
08a894 |
if (cctx->fmtflags & PERK_PRETTY_YAML)
|
|
|
08a894 |
return fputs("exports:\n",fout);
|
|
|
08a894 |
else if (cctx->fmtflags & PERK_PRETTY_DLLTOOL)
|
|
|
08a894 |
return fputs("EXPORTS\n",fout);
|
|
|
08a894 |
return 0;
|
|
|
e343a6 |
}
|
|
|
e343a6 |
|
|
|
6025fb |
static int pretty_export_item(const struct pe_common_ctx * cctx, const char * name, FILE * fout)
|
|
|
e343a6 |
{
|
|
|
e343a6 |
if (cctx->fmtflags & PERK_PRETTY_YAML)
|
|
|
6025fb |
return fprintf(fout,"- %s\n",name);
|
|
|
e343a6 |
else
|
|
|
6025fb |
return fprintf(fout,"%s\n",name);
|
|
|
e343a6 |
}
|
|
|
e343a6 |
|
|
|
2b7f36 |
int pe_output_export_symbols(
|
|
|
f64a5b |
const struct pe_driver_ctx * dctx,
|
|
|
2b7f36 |
const struct pe_image_meta * m,
|
|
|
2b7f36 |
FILE * fout)
|
|
|
c0fbae |
{
|
|
|
c3af45 |
char * mark;
|
|
|
f64a5b |
uint32_t offset;
|
|
|
f64a5b |
uint32_t * symrva;
|
|
|
f64a5b |
unsigned i;
|
|
|
f64a5b |
const struct pe_common_ctx * cctx = dctx->cctx;
|
|
|
c0fbae |
|
|
|
25e3c0 |
if (!m->h_edata)
|
|
|
ab024a |
return 0;
|
|
|
7cd8bc |
|
|
|
f11c1f |
if (!fout)
|
|
|
f11c1f |
fout = stdout;
|
|
|
c0fbae |
|
|
|
6025fb |
if ((pretty_header(cctx,fout)) < 0)
|
|
|
f11c1f |
return PERK_FILE_ERROR(dctx);
|
|
|
e343a6 |
|
|
|
ed06fb |
mark = m->r_image.map_addr;
|
|
|
25e3c0 |
offset = m->h_edata->sh_virtual_addr - m->h_edata->sh_ptr_to_raw_data;
|
|
|
58ced9 |
symrva = (uint32_t *)(mark + m->m_edata.eh_name_ptr_rva - offset);
|
|
|
c0fbae |
|
|
|
58ced9 |
for (i=0; i<m->m_edata.eh_num_of_name_ptrs; i++)
|
|
|
6025fb |
if ((pretty_export_item(
|
|
|
6025fb |
cctx,
|
|
|
c3af45 |
&mark[symrva[i] - offset],
|
|
|
6025fb |
fout)) < 0)
|
|
|
f11c1f |
return PERK_FILE_ERROR(dctx);
|
|
|
ab024a |
|
|
|
f11c1f |
return 0;
|
|
|
c0fbae |
}
|