blob: a2b16fab7b1d087ba2d6701f42496710643588e1 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/***************************************************************/
/* perk: PE Resource Kit */
/* Copyright (C) 2015--2016 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PERK. */
/***************************************************************/
#include <stdio.h>
#include <string.h>
#include <perk/perk.h>
#include <perk/perk_output.h>
#include "perk_reader_impl.h"
#include "perk_errinfo_impl.h"
int pe_output_image_strings(
const struct pe_driver_ctx * dctx,
const struct pe_image_meta * meta,
FILE * fout)
{
const char * ch;
const char * mark;
const char * cap;
const char * dash = "";
if (!fout)
fout = stdout;
if (dctx->cctx->fmtflags & PERK_PRETTY_YAML) {
if (fputs("strings:\n",fout) < 0)
return PERK_FILE_ERROR(dctx);
dash = "- ";
}
mark = (char *)meta->image.addr;
mark += meta->coff.ptr_to_string_tbl;
cap = mark + meta->coff.size_of_string_tbl;
mark += sizeof(uint32_t);
for (ch=mark; ch<cap; ) {
if (fprintf(fout,"%s%s\n",dash,ch) < 0)
return PERK_FILE_ERROR(dctx);
ch += strlen(ch);
for (; ch<cap && !*ch; )
ch++;
}
return 0;
}
|