summaryrefslogtreecommitdiff
path: root/tools/pe_bliss/pe_dotnet.h
blob: 96b0ac7d0ac08947f1b10147601552402e151767 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*************************************************************************/
/* Copyright (c) 2015 dx, http://kaimi.ru                                */
/*                                                                       */
/* Permission is hereby granted, free of charge, to any person           */
/* obtaining a copy of this software and associated documentation        */
/* files (the "Software"), to deal in the Software without               */
/* restriction, including without limitation the rights to use,          */
/* copy, modify, merge, publish, distribute, sublicense, and/or          */
/* sell copies of the Software, and to permit persons to whom the        */
/* Software is furnished to do so, subject to the following conditions:  */
/* The above copyright notice and this permission notice shall be        */
/* included in all copies or substantial portions of the Software.       */
/*                                                                       */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */
/*************************************************************************/
#pragma once
#include "pe_structures.h"
#include "pe_base.h"

namespace pe_bliss
{
//Class representing basic .NET header information
class basic_dotnet_info
{
public:
	//Default constructor
	basic_dotnet_info();
	//Constructor from data
	explicit basic_dotnet_info(const pe_win::image_cor20_header& header);

	//Returns major runtime version
	uint16_t get_major_runtime_version() const;
	//Returns minor runtime version
	uint16_t get_minor_runtime_version() const;

	//Returns RVA of metadata (symbol table and startup information)
	uint32_t get_rva_of_metadata() const;
	//Returns size of metadata (symbol table and startup information)
	uint32_t get_size_of_metadata() const;

	//Returns flags
	uint32_t get_flags() const;

	//Returns true if entry point is native
	bool is_native_entry_point() const;
	//Returns true if 32 bit required
	bool is_32bit_required() const;
	//Returns true if image is IL library
	bool is_il_library() const;
	//Returns true if image uses IL only
	bool is_il_only() const;

	//Returns entry point RVA (if entry point is native)
	//Returns entry point managed token (if entry point is managed)
	uint32_t get_entry_point_rva_or_token() const;

	//Returns RVA of managed resources
	uint32_t get_rva_of_resources() const;
	//Returns size of managed resources
	uint32_t get_size_of_resources() const;
	//Returns RVA of strong name signature
	uint32_t get_rva_of_strong_name_signature() const;
	//Returns size of strong name signature
	uint32_t get_size_of_strong_name_signature() const;
	//Returns RVA of code manager table
	uint32_t get_rva_of_code_manager_table() const;
	//Returns size of code manager table
	uint32_t get_size_of_code_manager_table() const;
	//Returns RVA of VTable fixups
	uint32_t get_rva_of_vtable_fixups() const;
	//Returns size of VTable fixups
	uint32_t get_size_of_vtable_fixups() const;
	//Returns RVA of export address table jumps
	uint32_t get_rva_of_export_address_table_jumps() const;
	//Returns size of export address table jumps
	uint32_t get_size_of_export_address_table_jumps() const;
	//Returns RVA of managed native header
	//(precompiled header info, usually set to zero, for internal use)
	uint32_t get_rva_of_managed_native_header() const;
	//Returns size of managed native header
	//(precompiled header info, usually set to zero, for internal use)
	uint32_t get_size_of_managed_native_header() const;

private:
	pe_win::image_cor20_header header_;
};

//Returns basic .NET information
//If image is not native, throws an exception
const basic_dotnet_info get_basic_dotnet_info(const pe_base& pe);
}