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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
/*
Copyright (C) 2006 - 2015 Evan Teran
evan.teran@gmail.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "PlatformRegion.h"
#include "IDebugEventHandler.h"
#include "IDebugger.h"
#include "IProcess.h"
#include "MemoryRegions.h"
#include "State.h"
#include "edb.h"
#include <QMessageBox>
namespace DebuggerCorePlugin {
namespace {
constexpr IRegion::permissions_t KnownPermissions = (PAGE_NOACCESS | PAGE_READONLY | PAGE_READWRITE | PAGE_WRITECOPY | PAGE_EXECUTE | PAGE_EXECUTE_READ | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_WRITECOPY);
}
/**
* @brief PlatformRegion::PlatformRegion
* @param start
* @param end
* @param base
* @param name
* @param permissions
*/
PlatformRegion::PlatformRegion(edb::address_t start, edb::address_t end, edb::address_t base, const QString &name, permissions_t permissions)
: start_(start), end_(end), base_(base), name_(name), permissions_(permissions) {
}
/**
* @brief PlatformRegion::clone
* @return
*/
IRegion *PlatformRegion::clone() const {
return new PlatformRegion(start_, end_, base_, name_, permissions_);
}
/**
* @brief PlatformRegion::accessible
* @return
*/
bool PlatformRegion::accessible() const {
return readable() || writable() || executable();
}
/**
* @brief PlatformRegion::readable
* @return
*/
bool PlatformRegion::readable() const {
switch (permissions_ & KnownPermissions) { // ignore modifiers
case PAGE_EXECUTE_READ:
case PAGE_EXECUTE_READWRITE:
case PAGE_READONLY:
case PAGE_READWRITE:
return true;
default:
return false;
}
}
/**
* @brief PlatformRegion::writable
* @return
*/
bool PlatformRegion::writable() const {
switch (permissions_ & KnownPermissions) { // ignore modifiers
case PAGE_EXECUTE_READWRITE:
case PAGE_EXECUTE_WRITECOPY:
case PAGE_READWRITE:
case PAGE_WRITECOPY:
return true;
default:
return false;
}
}
/**
* @brief PlatformRegion::executable
* @return
*/
bool PlatformRegion::executable() const {
switch (permissions_ & KnownPermissions) { // ignore modifiers
case PAGE_EXECUTE:
case PAGE_EXECUTE_READ:
case PAGE_EXECUTE_READWRITE:
case PAGE_EXECUTE_WRITECOPY:
return true;
default:
return false;
}
}
/**
* @brief PlatformRegion::size
* @return
*/
size_t PlatformRegion::size() const {
return end_ - start_;
}
/**
* @brief PlatformRegion::setPermissions
* @param read
* @param write
* @param execute
*/
void PlatformRegion::setPermissions(bool read, bool write, bool execute) {
if (HANDLE ph = OpenProcess(PROCESS_VM_OPERATION, FALSE, edb::v1::debugger_core->process()->pid())) {
DWORD prot = PAGE_NOACCESS;
switch ((static_cast<int>(read) << 2) | (static_cast<int>(write) << 1) | (static_cast<int>(execute) << 0)) {
case 0x0:
prot = PAGE_NOACCESS;
break;
case 0x1:
prot = PAGE_EXECUTE;
break;
case 0x2:
prot = PAGE_WRITECOPY;
break;
case 0x3:
prot = PAGE_EXECUTE_WRITECOPY;
break;
case 0x4:
prot = PAGE_READONLY;
break;
case 0x5:
prot = PAGE_EXECUTE_READ;
break;
case 0x6:
prot = PAGE_READWRITE;
break;
case 0x7:
prot = PAGE_EXECUTE_READWRITE;
break;
}
prot |= permissions_ & ~KnownPermissions; // keep modifiers
DWORD prev_prot;
if (VirtualProtectEx(ph, reinterpret_cast<LPVOID>(start().toUint()), size(), prot, &prev_prot)) {
permissions_ = prot;
}
CloseHandle(ph);
}
}
/**
* @brief PlatformRegion::start
* @return
*/
edb::address_t PlatformRegion::start() const {
return start_;
}
/**
* @brief PlatformRegion::end
* @return
*/
edb::address_t PlatformRegion::end() const {
return end_;
}
/**
* @brief PlatformRegion::base
* @return
*/
edb::address_t PlatformRegion::base() const {
return base_;
}
/**
* @brief PlatformRegion::name
* @return
*/
QString PlatformRegion::name() const {
return name_;
}
/**
* @brief PlatformRegion::permissions
* @return
*/
IRegion::permissions_t PlatformRegion::permissions() const {
return permissions_;
}
/**
* @brief PlatformRegion::setStart
* @param address
*/
void PlatformRegion::setStart(edb::address_t address) {
start_ = address;
}
/**
* @brief PlatformRegion::setEnd
* @param address
*/
void PlatformRegion::setEnd(edb::address_t address) {
end_ = address;
}
}
|