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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
|
/*
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 "DebuggerCore.h"
#include "edb.h"
#include "MemoryRegions.h"
#include "PlatformEvent.h"
#include "PlatformProcess.h"
#include "PlatformRegion.h"
#include "PlatformState.h"
#include "PlatformThread.h"
#include "State.h"
#include "string_hash.h"
#include <QDateTime>
#include <QDebug>
#include <QFileInfo>
#include <QStringList>
#include <Psapi.h>
#include <TlHelp32.h>
#include <Windows.h>
#include <algorithm>
#ifdef _MSC_VER
#pragma comment(lib, "Advapi32.lib")
#pragma comment(lib, "Psapi.lib")
#endif
/* NOTE(eteran): from the MSDN:
* Note that while reporting debug events, all threads within the reporting
* process are frozen. Debuggers are expected to use the SuspendThread and
* ResumeThread functions to limit the set of threads that can execute within a
* process. By suspending all threads in a process except for the one reporting
* a debug event, it is possible to "single step" a single thread. The other
* threads are not released by a continue operation if they are suspended.
*/
namespace DebuggerCorePlugin {
namespace {
/*
* Required to debug and adjust the memory of a process owned by another account.
* OpenProcess quote (MSDN):
* "If the caller has enabled the SeDebugPrivilege privilege, the requested access
* is granted regardless of the contents of the security descriptor."
* Needed to open system processes (user SYSTEM)
*
* NOTE: You need to be admin to enable this privilege
* NOTE: You need to have the 'Debug programs' privilege set for the current user,
* if the privilege is not present it can't be enabled!
* NOTE: Detectable by antidebug code (changes debuggee privileges too)
*/
bool set_debug_privilege(HANDLE process, bool set) {
HANDLE token;
bool ok = false;
//process must have PROCESS_QUERY_INFORMATION
if (OpenProcessToken(process, TOKEN_ADJUST_PRIVILEGES, &token)) {
LUID luid;
if (LookupPrivilegeValue(nullptr, SE_DEBUG_NAME, &luid)) {
TOKEN_PRIVILEGES tp;
tp.PrivilegeCount = 1;
tp.Privileges[0].Luid = luid;
tp.Privileges[0].Attributes = set ? SE_PRIVILEGE_ENABLED : 0;
ok = AdjustTokenPrivileges(token, false, &tp, NULL, nullptr, nullptr);
}
CloseHandle(token);
}
return ok;
}
}
/**
* @brief DebuggerCore::DebuggerCore
*/
DebuggerCore::DebuggerCore() {
DebugSetProcessKillOnExit(false);
SYSTEM_INFO sys_info;
GetSystemInfo(&sys_info);
pageSize_ = sys_info.dwPageSize;
set_debug_privilege(GetCurrentProcess(), true); // gogo magic powers
}
/**
* @brief DebuggerCore::~DebuggerCore
*/
DebuggerCore::~DebuggerCore() {
detach();
set_debug_privilege(GetCurrentProcess(), false);
}
/**
* @brief DebuggerCore::pageSize
* @return the size of a page on this system
*/
size_t DebuggerCore::pageSize() const {
return pageSize_;
}
/**
* @brief DebuggerCore::hasExtension
* @param ext
* @return
*/
bool DebuggerCore::hasExtension(uint64_t ext) const {
#if !defined(EDB_X86_64)
switch (ext) {
case edb::string_hash("MMX"):
return IsProcessorFeaturePresent(PF_MMX_INSTRUCTIONS_AVAILABLE);
case edb::string_hash("XMM"):
return IsProcessorFeaturePresent(PF_XMMI_INSTRUCTIONS_AVAILABLE);
default:
return false;
}
#else
switch (ext) {
case edb::string_hash("MMX"):
case edb::string_hash("XMM"):
return true;
default:
return false;
}
#endif
}
/**
* waits for a debug event, secs is a timeout (but is not yet respected)
*
* @brief DebuggerCore::waitDebugEvent
* @param msecs
* @return null if timeout occured
*/
std::shared_ptr<IDebugEvent> DebuggerCore::waitDebugEvent(std::chrono::milliseconds msecs) {
if (attached()) {
DEBUG_EVENT de;
while (WaitForDebugEvent(&de, msecs.count() == 0 ? INFINITE : msecs.count())) {
Q_ASSERT(process_->pid() == de.dwProcessId);
activeThread_ = de.dwThreadId;
bool propagate = false;
switch (de.dwDebugEventCode) {
case CREATE_THREAD_DEBUG_EVENT: {
auto newThread = std::make_shared<PlatformThread>(this, process_, &de.u.CreateThread);
threads_.insert(activeThread_, newThread);
break;
}
case EXIT_THREAD_DEBUG_EVENT:
threads_.remove(activeThread_);
break;
case CREATE_PROCESS_DEBUG_EVENT: {
CloseHandle(de.u.CreateProcessInfo.hFile);
process_ = std::make_shared<PlatformProcess>(this, de.u.CreateProcessInfo.hProcess);
// fake a thread create event for the main thread..
CREATE_THREAD_DEBUG_INFO thread_info;
thread_info.hThread = de.u.CreateProcessInfo.hThread;
thread_info.lpStartAddress = de.u.CreateProcessInfo.lpStartAddress;
thread_info.lpThreadLocalBase = de.u.CreateProcessInfo.lpThreadLocalBase;
auto newThread = std::make_shared<PlatformThread>(this, process_, &thread_info);
threads_.insert(activeThread_, newThread);
break;
}
case LOAD_DLL_DEBUG_EVENT:
CloseHandle(de.u.LoadDll.hFile);
break;
case EXIT_PROCESS_DEBUG_EVENT:
process_->resume(edb::DEBUG_CONTINUE);
process_ = nullptr;
// handle_event_exited returns DEBUG_STOP, which in turn keeps the debugger from resuming the process
// However, this is needed to close all internal handles etc. and finish the debugging session
// So we do it manually here
propagate = true;
break;
case EXCEPTION_DEBUG_EVENT:
propagate = true;
break;
case RIP_EVENT:
break;
default:
break;
}
if (auto p = static_cast<PlatformProcess *>(process_.get())) {
p->lastEvent_ = de;
}
if (propagate) {
// normal event
auto e = std::make_shared<PlatformEvent>();
e->event_ = de;
return e;
}
process_->resume(edb::DEBUG_EXCEPTION_NOT_HANDLED);
}
}
return nullptr;
}
/**
* @brief DebuggerCore::attach
* @param pid
* @return
*/
Status DebuggerCore::attach(edb::pid_t pid) {
detach();
if (DebugActiveProcess(pid)) {
process_ = std::make_shared<PlatformProcess>(this, pid);
return Status::Ok;
}
return Status("Error DebuggerCore::attach");
}
/**
* @brief DebuggerCore::detach
* @return
*/
Status DebuggerCore::detach() {
if (attached()) {
clearBreakpoints();
// Make sure exceptions etc. are passed
ContinueDebugEvent(process_->pid(), active_thread(), DBG_CONTINUE);
DebugActiveProcessStop(process_->pid());
process_ = nullptr;
threads_.clear();
}
return Status::Ok;
}
/**
* @brief DebuggerCore::kill
*/
void DebuggerCore::kill() {
if (auto p = static_cast<PlatformProcess *>(process_.get())) {
TerminateProcess(p->hProcess_, -1);
detach();
}
}
/**
* @brief DebuggerCore::open
* @param path
* @param cwd
* @param args
* @param tty
* @return
*/
Status DebuggerCore::open(const QString &path, const QString &cwd, const QList<QByteArray> &args, const QString &input, const QString &output) {
// TODO: Don't inherit security descriptors from this process (default values)
// Is this even possible?
Q_UNUSED(input)
Q_UNUSED(output)
Q_ASSERT(!path.isEmpty());
bool ok = false;
detach();
// default to process's directory
QString tcwd = cwd.isEmpty() ? QFileInfo(path).canonicalPath() : cwd;
STARTUPINFO startup_info = {};
PROCESS_INFORMATION process_info = {};
const DWORD CREATE_FLAGS = DEBUG_PROCESS | DEBUG_ONLY_THIS_PROCESS | CREATE_UNICODE_ENVIRONMENT | CREATE_NEW_CONSOLE;
wchar_t *const env_block = GetEnvironmentStringsW();
// Set up command line
QString command_str = '\"' + QFileInfo(path).canonicalPath() + '\"'; // argv[0] = full path (explorer style)
if (!args.isEmpty()) {
for (QByteArray arg : args) {
command_str += " ";
command_str += arg;
}
}
// CreateProcessW wants a writable copy of the command line :<
auto command_path = new wchar_t[command_str.length() + sizeof(wchar_t)];
wcscpy_s(command_path, command_str.length() + 1, reinterpret_cast<const wchar_t *>(command_str.utf16()));
if (CreateProcessW(
reinterpret_cast<const wchar_t *>(path.utf16()), // exe
command_path, // commandline
nullptr, // default security attributes
nullptr, // default thread security too
FALSE, // inherit handles
CREATE_FLAGS,
env_block, // environment data
reinterpret_cast<const wchar_t *>(tcwd.utf16()), // working directory
&startup_info,
&process_info)) {
activeThread_ = process_info.dwThreadId;
CloseHandle(process_info.hThread); // We don't need the thread handle
set_debug_privilege(process_info.hProcess, false);
//process_info.hProcess has PROCESS_ALL_ACCESS
process_ = std::make_shared<PlatformProcess>(this, process_info.hProcess);
ok = true;
}
delete[] command_path;
FreeEnvironmentStringsW(env_block);
if (ok) {
return Status::Ok;
} else {
return Status("Error DebuggerCore::open");
}
}
/**
* @brief DebuggerCore::createState
* @return
*/
std::unique_ptr<IState> DebuggerCore::createState() const {
return std::make_unique<PlatformState>();
}
/**
* @brief DebuggerCore::sys_pointer_size
* @return the size of a pointer on this arch
*/
int DebuggerCore::sys_pointer_size() const {
return sizeof(void *);
}
/**
* @brief DebuggerCore::enumerateProcesses
* @return
*/
QMap<edb::pid_t, std::shared_ptr<IProcess>> DebuggerCore::enumerateProcesses() const {
QMap<edb::pid_t, std::shared_ptr<IProcess>> ret;
HANDLE handle = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (handle != INVALID_HANDLE_VALUE) {
PROCESSENTRY32 lppe;
std::memset(&lppe, 0, sizeof(lppe));
lppe.dwSize = sizeof(lppe);
if (Process32First(handle, &lppe)) {
do {
// NOTE(eteran): the const_cast is reasonable here.
// While we don't want THIS function to mutate the DebuggerCore object
// we do want the associated PlatformProcess to be able to trigger
// non-const operations in the future, at least hypothetically.
auto pi = std::make_shared<PlatformProcess>(const_cast<DebuggerCore *>(this), lppe.th32ProcessID);
if (pi->hProcess_ == nullptr) {
continue;
}
ret.insert(pi->pid(), pi);
std::memset(&lppe, 0, sizeof(lppe));
lppe.dwSize = sizeof(lppe);
} while (Process32Next(handle, &lppe));
}
CloseHandle(handle);
}
return ret;
}
/**
* @brief DebuggerCore::parentPid
* @param pid
* @return
*/
edb::pid_t DebuggerCore::parentPid(edb::pid_t pid) const {
edb::pid_t parent = 1; // 1??
HANDLE hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, pid);
if (hProcessSnap != INVALID_HANDLE_VALUE) {
PROCESSENTRY32W pe32;
pe32.dwSize = sizeof(pe32);
if (Process32FirstW(hProcessSnap, &pe32)) {
do {
if (pid == pe32.th32ProcessID) {
parent = pe32.th32ParentProcessID;
break;
}
} while (Process32NextW(hProcessSnap, &pe32));
}
CloseHandle(hProcessSnap);
}
return parent;
}
/**
* @brief DebuggerCore::exceptions
* @return
*/
QMap<qlonglong, QString> DebuggerCore::exceptions() const {
QMap<qlonglong, QString> exceptions;
return exceptions;
}
/**
* @brief DebuggerCore::cpuType
* @return
*/
uint64_t DebuggerCore::cpuType() const {
#ifdef EDB_X86
return edb::string_hash("x86");
#elif defined(EDB_X86_64)
return edb::string_hash("x86-64");
#endif
}
/**
* @brief DebuggerCore::stackPointer
* @return
*/
QString DebuggerCore::stackPointer() const {
#ifdef EDB_X86
return "esp";
#elif defined(EDB_X86_64)
// TODO(eteran): WOW64 support
return "rsp";
#endif
}
/**
* @brief DebuggerCore::framePointer
* @return
*/
QString DebuggerCore::framePointer() const {
#ifdef EDB_X86
return "ebp";
#elif defined(EDB_X86_64)
// TODO(eteran): WOW64 support
return "rbp";
#endif
}
/**
* @brief DebuggerCore::instructionPointer
* @return
*/
QString DebuggerCore::instructionPointer() const {
#ifdef EDB_X86
return "eip";
#elif defined(EDB_X86_64)
// TODO(eteran): WOW64 support
return "rip";
#endif
}
/**
* @brief DebuggerCore::process
* @return
*/
IProcess *DebuggerCore::process() const {
return process_.get();
}
/**
* @brief DebuggerCore::nopFillByte
* @return
*/
uint8_t DebuggerCore::nopFillByte() const {
return 0x90;
}
}
|