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
|
/*
Copyright (C) 2016 - 2016 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 "FeatureDetect.h"
#include "version.h"
#include <cstdint>
#include <fcntl.h>
#include <iomanip>
#include <iostream>
#include <string>
#include <sys/ptrace.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
namespace DebuggerCorePlugin {
namespace feature {
namespace {
// Custom class to work with files, since various wrappers
// appear to be unreliable to check whether writes succeeded
class File {
public:
explicit File(const std::string &filename) {
fd_ = ::open(filename.c_str(), O_RDWR);
success_ = fd_ != -1;
}
ssize_t write(const void *buf, size_t count) {
const ssize_t result = ::write(fd_, buf, count);
success_ = result != -1;
return result;
}
ssize_t read(void *buf, size_t count) {
const ssize_t result = ::read(fd_, buf, count);
success_ = result != -1;
return result;
}
off_t seekp(size_t offset) {
const off_t result = ::lseek(fd_, offset, SEEK_SET);
success_ = result != -1;
return result;
}
~File() {
close(fd_);
}
explicit operator bool() {
return success_;
}
private:
int fd_ = -1;
bool success_ = false;
};
/**
* @brief kill_child
* @param pid
*/
void kill_child(int pid) {
if (kill(pid, SIGKILL) == -1) {
perror("failed to kill child");
}
}
}
/**
* detects whether or not reads/writes through /proc/<pid>/mem work correctly
*
* @brief detect_proc_access
* @param read_broken
* @param write_broken
* @return
*/
bool detect_proc_access(bool *read_broken, bool *write_broken) {
switch (pid_t pid = fork()) {
case 0:
if (ptrace(PTRACE_TRACEME, 0, 0, 0) < 0) {
perror("child: PTRACE_TRACEME failed");
abort();
}
// force a signal
raise(SIGCONT);
for (;;) {
sleep(10);
}
abort();
case -1:
perror("fork");
return false;
default: {
int status;
if (waitpid(pid, &status, __WALL) == -1) {
perror("parent: waitpid failed");
kill_child(pid);
return false;
}
if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGCONT) {
std::cerr << "unexpected status returned by waitpid: 0x" << std::hex << status << "\n";
kill_child(pid);
return false;
}
File file("/proc/" + std::to_string(pid) + "/mem");
if (!file) {
perror("failed to open memory file");
kill_child(pid);
return false;
}
const auto pageAlignMask = ~(sysconf(_SC_PAGESIZE) - 1);
const auto addr = reinterpret_cast<uintptr_t>(&edb::version) & pageAlignMask;
file.seekp(addr);
if (!file) {
perror("failed to seek to address to read");
kill_child(pid);
return false;
}
int buf = 0x12345678;
{
file.read(&buf, sizeof(buf));
if (!file) {
*read_broken = true;
*write_broken = true;
kill_child(pid);
return false;
}
}
file.seekp(addr);
if (!file) {
perror("failed to seek to address to write");
kill_child(pid);
return false;
}
{
file.write(&buf, sizeof(buf));
if (!file) {
*read_broken = false;
*write_broken = true;
} else {
*read_broken = false;
*write_broken = false;
}
}
kill_child(pid);
return true;
}
}
}
}
}
|