summaryrefslogtreecommitdiffhomepage
path: root/src/reader/pe_read_coff_symbol.c
blob: 2cd63ccaa1b1beb7a86388f3d211e95f2ff227d0 (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
53
54
55
/***************************************************************/
/*  perk: PE Resource Kit                                      */
/*  Copyright (C) 2015--2016  Z. Gilboa                        */
/*  Released under GPLv2 and GPLv3; see COPYING.PERK.          */
/***************************************************************/

#include <string.h>

#include <perk/perk.h>
#include "perk_endian_impl.h"
#include "perk_reader_impl.h"

int pe_read_coff_symbol(
	const struct pe_coff_symbol *		p,
	struct pe_meta_coff_symbol *		m,
	const struct pe_meta_coff_file_hdr *	coff,
	void *					base)
{
	uint32_t	roffset;
	char *		mark;
	unsigned	bias = 0;

	m->long_name		= 0;
	m->value		= pe_read_long(p->value);
	m->section_number	= pe_read_short(p->section_number);
	m->type			= pe_read_short(p->type);
	m->storage_class	= p->storage_class[0];
	m->num_of_aux_symbols	= p->num_of_aux_symbols[0];

	memset(m->name,0,sizeof(m->name));

	if (p->storage_class[0] == PE_IMAGE_SYM_CLASS_FILE)
		if (p->num_of_aux_symbols[0])
			if (!p[1].value[0])
				bias = 1;

	p += bias;

	if (!bias && (p->storage_class[0] == PE_IMAGE_SYM_CLASS_FILE)
			&& p->num_of_aux_symbols[0]) {
		memcpy(m->name,p[1].name,sizeof(*p));

	} else if (p->name[0]) {
		memcpy(m->name,p->name,sizeof(p->name));

	} else if (!p->name[1] && !p->name[2] && !p->name[3]) {
		mark	= (char *)base;
		roffset	= pe_read_long(&p->name[4]);

		if (roffset < coff->size_of_string_tbl)
			m->long_name = mark + coff->ptr_to_string_tbl + roffset;
	}

	return 0;
}