blob: bb5a7a5343cbf2d7c6e106b6357b9baf15ddb4ae (
plain) (
blame)
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
|
// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "winapi-debug" project.
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
#include <winapi/debug.hpp>
#include <winapi/utf8.hpp>
#include <cstring>
#include <limits>
#include <sstream>
#include <stdexcept>
#include <string>
namespace pdb {
ModuleInfo::ModuleInfo() : ModuleInfo{create_impl()} {}
ModuleInfo::ModuleInfo(const Impl& impl) : impl{impl} {
if (impl.SizeOfStruct != sizeof(impl))
throw std::runtime_error{"invalid IMAGEHLP_MODULE64.SizeOfStruct"};
}
ModuleInfo::Impl ModuleInfo::create_impl() {
Impl impl;
std::memset(&impl, 0, sizeof(impl));
impl.SizeOfStruct = sizeof(impl);
return impl;
}
std::string ModuleInfo::get_name() const {
return winapi::narrow(impl.ModuleName);
}
Address Module::translate_offline_address(Address offline) const {
if (offline < get_offline_base())
throw std::range_error{invalid_offline_address(offline)};
const auto offset = offline - get_offline_base();
auto online = offset;
// Check that it fits the address space.
const auto max_addr = std::numeric_limits<decltype(online)>::max();
if (online > max_addr - get_online_base())
throw std::range_error{invalid_offline_address(offline)};
online += get_online_base();
return online;
}
Address Module::translate_online_address(Address online) const {
if (online < get_online_base())
throw std::range_error{invalid_online_address(online)};
const auto offset = online - get_online_base();
auto offline = offset;
// Check that it fits the address space.
const auto max_addr = std::numeric_limits<decltype(offline)>::max();
if (offline > max_addr - get_offline_base())
throw std::range_error{invalid_online_address(offline)};
offline += get_offline_base();
return offline;
}
std::string Module::invalid_offline_address(Address offline) const {
std::ostringstream oss;
oss << "offline address " << format_address(offline) << " doesn't belong to module "
<< get_name() << " (base offline address " << format_address(get_offline_base()) << ')';
return oss.str();
}
std::string Module::invalid_online_address(Address online) const {
std::ostringstream oss;
oss << "online address " << format_address(online) << " doesn't belong to module " << get_name()
<< " (base online address " << format_address(get_online_base()) << ')';
return oss.str();
}
} // namespace pdb
|