dfhack/library/DFProcess-linux-SHM.cpp

656 lines
17 KiB
C++

2009-12-22 14:19:39 -07:00
/*
www.sourceforge.net/projects/dfhack
Copyright (c) 2009 Petr Mrázek (peterix), Kenneth Ferland (Impaler[WrG]), dorf
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product documentation
would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#include "DFCommonInternal.h"
#include <errno.h>
#include <sys/shm.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <time.h>
#include "../shmserver/shms.h"
#include <sys/time.h>
#include <time.h>
#include <sched.h>
2009-12-22 14:19:39 -07:00
using namespace DFHack;
// a full memory barrier! better be safe than sorry.
#define gcc_barrier asm volatile("" ::: "memory"); __sync_synchronize();
class Process::Private
2009-12-22 14:19:39 -07:00
{
public:
Private()
{
my_descriptor = NULL;
my_pid = 0;
my_shm = 0;
my_shmid = -1;
2009-12-22 14:19:39 -07:00
my_window = NULL;
attached = false;
suspended = false;
identified = false;
};
~Private(){};
memory_info * my_descriptor;
DFWindow * my_window;
pid_t my_pid;
2009-12-22 14:19:39 -07:00
char *my_shm;
int my_shmid;
bool attached;
bool suspended;
bool identified;
bool validate(char* exe_file, uint32_t pid, std::vector< memory_info* >& known_versions);
2009-12-22 14:19:39 -07:00
bool waitWhile (DF_PINGPONG state);
bool DF_TestBridgeVersion(bool & ret);
bool DF_GetPID(pid_t & ret);
2009-12-22 14:19:39 -07:00
};
bool Process::Private::waitWhile (DF_PINGPONG state)
2009-12-22 14:19:39 -07:00
{
uint32_t cnt = 0;
struct shmid_ds descriptor;
while (((shm_cmd *)my_shm)->pingpong == state)
{
if(cnt == 10000)
{
2009-12-22 14:19:39 -07:00
shmctl(my_shmid, IPC_STAT, &descriptor);
if(descriptor.shm_nattch == 1)// DF crashed?
{
gcc_barrier
2009-12-22 14:19:39 -07:00
((shm_cmd *)my_shm)->pingpong = DFPP_RUNNING;
attached = suspended = false;
return false;
}
else
{
cnt = 0;
}
}
SCHED_YIELD
2009-12-22 14:19:39 -07:00
cnt++;
}
if(((shm_cmd *)my_shm)->pingpong == DFPP_SV_ERROR)
{
((shm_cmd *)my_shm)->pingpong = DFPP_RUNNING;
attached = suspended = false;
cerr << "shm server error!" << endl;
assert (false);
return false;
}
return true;
}
bool Process::Private::DF_TestBridgeVersion(bool & ret)
{
((shm_cmd *)my_shm)->pingpong = DFPP_VERSION;
gcc_barrier
if(!waitWhile(DFPP_VERSION))
return false;
gcc_barrier
((shm_cmd *)my_shm)->pingpong = DFPP_SUSPENDED;
ret =( ((shm_retval *)my_shm)->value == PINGPONG_VERSION );
return true;
}
bool Process::Private::DF_GetPID(pid_t & ret)
{
((shm_cmd *)my_shm)->pingpong = DFPP_PID;
gcc_barrier
if(!waitWhile(DFPP_PID))
return false;
gcc_barrier
((shm_cmd *)my_shm)->pingpong = DFPP_SUSPENDED;
ret = ((shm_retval *)my_shm)->value;
return true;
}
Process::Process(vector <memory_info *> & known_versions)
2009-12-22 14:19:39 -07:00
: d(new Private())
{
char exe_link_name [256];
char target_name[1024];
int target_result;
2009-12-25 09:55:10 -07:00
/*
* Locate the segment.
*/
if ((d->my_shmid = shmget(SHM_KEY, SHM_SIZE, 0666)) < 0)
2009-12-22 14:19:39 -07:00
{
2009-12-25 09:55:10 -07:00
return;
}
2009-12-25 09:55:10 -07:00
/*
* Attach the segment
*/
if ((d->my_shm = (char *) shmat(d->my_shmid, NULL, 0)) == (char *) -1)
{
2009-12-25 09:55:10 -07:00
return;
}
/*
* Check if there are two processes connected to the segment
*/
shmid_ds descriptor;
2009-12-25 09:55:10 -07:00
shmctl(d->my_shmid, IPC_STAT, &descriptor);
if(descriptor.shm_nattch != 2)// badness
{
2010-01-05 13:51:58 -07:00
fprintf(stderr,"dfhack: %d : invalid no. of processes connected\n", (int) descriptor.shm_nattch);
fprintf(stderr,"detach: %d",shmdt(d->my_shm));
2009-12-25 09:55:10 -07:00
return;
}
/*
* Test bridge version, will also detect when we connect to something that doesn't respond
*/
bool bridgeOK;
if(!d->DF_TestBridgeVersion(bridgeOK))
{
fprintf(stderr,"DF terminated during reading\n");
return;
}
if(!bridgeOK)
{
fprintf(stderr,"SHM bridge version mismatch\n");
return;
}
/*
* get the PID from DF
*/
if(d->DF_GetPID(d->my_pid))
{
// find its binary
sprintf(exe_link_name,"/proc/%d/exe", d->my_pid);
target_result = readlink(exe_link_name, target_name, sizeof(target_name)-1);
if (target_result == -1)
{
2009-12-25 09:55:10 -07:00
perror("readlink");
return;
}
2009-12-25 09:55:10 -07:00
// make sure we have a null terminated string...
// see http://www.opengroup.org/onlinepubs/000095399/functions/readlink.html
target_name[target_result] = 0;
// try to identify the DF version
d->validate(target_name, d->my_pid, known_versions);
d->my_window = new DFWindow(this);
2009-12-22 14:19:39 -07:00
}
gcc_barrier
2009-12-25 09:55:10 -07:00
// at this point, DF is stopped and waiting for commands. make it run again
((shm_cmd *)d->my_shm)->pingpong = DFPP_RUNNING;
2010-01-05 13:51:58 -07:00
shmdt(d->my_shm); // detach so we don't attach twice when attach() is called
2009-12-22 14:19:39 -07:00
}
bool Process::isSuspended()
2009-12-22 14:19:39 -07:00
{
return d->suspended;
}
bool Process::isAttached()
2009-12-22 14:19:39 -07:00
{
return d->attached;
}
bool Process::isIdentified()
2009-12-22 14:19:39 -07:00
{
return d->identified;
}
bool Process::Private::validate(char * exe_file, uint32_t pid, vector <memory_info *> & known_versions)
2009-12-22 14:19:39 -07:00
{
md5wrapper md5;
// get hash of the running DF process
string hash = md5.getHashFromFile(exe_file);
vector<memory_info *>::iterator it;
2009-12-22 14:19:39 -07:00
cerr << exe_file << " " << hash << endl;
// iterate over the list of memory locations
for ( it=known_versions.begin() ; it < known_versions.end(); it++ )
{
try{
if(hash == (*it)->getString("md5")) // are the md5 hashes the same?
{
memory_info * m = *it;
my_descriptor = m;
my_pid = pid;
identified = true;
cerr << "identified " << m->getVersion() << endl;
return true;
}
}
catch (Error::MissingMemoryDefinition&)
2009-12-22 14:19:39 -07:00
{
continue;
2009-12-22 14:19:39 -07:00
}
}
return false;
}
Process::~Process()
2009-12-22 14:19:39 -07:00
{
if(d->attached)
{
detach();
}
// destroy data model. this is assigned by processmanager
if(d->my_window)
2009-12-25 09:55:10 -07:00
{
2009-12-22 14:19:39 -07:00
delete d->my_window;
2009-12-25 09:55:10 -07:00
}
2009-12-22 14:19:39 -07:00
delete d;
}
memory_info * Process::getDescriptor()
2009-12-22 14:19:39 -07:00
{
return d->my_descriptor;
}
DFWindow * Process::getWindow()
2009-12-22 14:19:39 -07:00
{
return d->my_window;
}
int Process::getPID()
2009-12-22 14:19:39 -07:00
{
return d->my_pid;
}
//FIXME: implement
bool Process::getThreadIDs(vector<uint32_t> & threads )
2009-12-22 14:19:39 -07:00
{
return false;
}
//FIXME: cross-reference with ELF segment entries?
void Process::getMemRanges( vector<t_memrange> & ranges )
2009-12-22 14:19:39 -07:00
{
char buffer[1024];
char permissions[5]; // r/-, w/-, x/-, p/s, 0
sprintf(buffer, "/proc/%lu/maps", d->my_pid);
FILE *mapFile = ::fopen(buffer, "r");
uint64_t offset, device1, device2, node;
while (fgets(buffer, 1024, mapFile))
{
t_memrange temp;
temp.name[0] = 0;
sscanf(buffer, "%llx-%llx %s %llx %2llu:%2llu %llu %s",
&temp.start,
&temp.end,
(char*)&permissions,
&offset, &device1, &device2, &node,
(char*)&temp.name);
temp.read = permissions[0] == 'r';
temp.write = permissions[1] == 'w';
temp.execute = permissions[2] == 'x';
ranges.push_back(temp);
}
}
bool Process::suspend()
2009-12-22 14:19:39 -07:00
{
if(!d->attached)
2009-12-25 09:55:10 -07:00
{
2009-12-22 14:19:39 -07:00
return false;
2009-12-25 09:55:10 -07:00
}
2009-12-22 14:19:39 -07:00
if(d->suspended)
2009-12-25 09:55:10 -07:00
{
2009-12-22 14:19:39 -07:00
return true;
2009-12-25 09:55:10 -07:00
}
2009-12-22 14:19:39 -07:00
((shm_cmd *)d->my_shm)->pingpong = DFPP_SUSPEND;
if(!d->waitWhile(DFPP_SUSPEND))
2009-12-25 09:55:10 -07:00
{
2009-12-22 14:19:39 -07:00
return false;
2009-12-25 09:55:10 -07:00
}
2009-12-22 14:19:39 -07:00
d->suspended = true;
return true;
}
bool Process::asyncSuspend()
{
if(!d->attached)
{
return false;
}
if(d->suspended)
{
return true;
}
if(((shm_cmd *)d->my_shm)->pingpong == DFPP_SUSPENDED)
{
d->suspended = true;
return true;
}
else
{
((shm_cmd *)d->my_shm)->pingpong = DFPP_SUSPEND;
return false;
}
}
bool Process::forceresume()
2009-12-22 14:19:39 -07:00
{
return resume();
}
bool Process::resume()
2009-12-22 14:19:39 -07:00
{
if(!d->attached)
return false;
if(!d->suspended)
return true;
((shm_cmd *)d->my_shm)->pingpong = DFPP_RUNNING;
d->suspended = false;
return true;
}
bool Process::attach()
2009-12-22 14:19:39 -07:00
{
int status;
2010-01-01 15:19:09 -07:00
if(g_pProcess != 0)
2009-12-22 14:19:39 -07:00
{
cerr << "there's already a different process attached" << endl;
return false;
}
/*
* Attach the segment
*/
if ((d->my_shm = (char *) shmat(d->my_shmid, NULL, 0)) != (char *) -1)
2009-12-22 14:19:39 -07:00
{
d->attached = true;
if(suspend())
{
d->suspended = true;
g_pProcess = this;
return true;
}
d->attached = false;
cerr << "unable to suspend" << endl;
2010-01-01 15:19:09 -07:00
// FIXME: detach sehment here
return false;
2009-12-22 14:19:39 -07:00
}
cerr << "unable to attach" << endl;
2009-12-22 14:19:39 -07:00
return false;
}
bool Process::detach()
2009-12-22 14:19:39 -07:00
{
2009-12-25 09:55:10 -07:00
if(!d->attached)
{
return false;
}
if(d->suspended)
{
resume();
}
2010-01-01 15:19:09 -07:00
// detach segment
if(shmdt(d->my_shm) != -1)
{
d->attached = false;
d->suspended = false;
d->my_shm = 0;
2010-01-01 15:19:09 -07:00
g_pProcess = 0;
return true;
}
// fail if we can't detach
perror("failed to detach shared segment");
return false;
2009-12-22 14:19:39 -07:00
}
void Process::read (uint32_t src_address, uint32_t size, uint8_t *target_buffer)
2009-12-22 14:19:39 -07:00
{
// normal read under 1MB
if(size <= SHM_BODY)
{
((shm_read *)d->my_shm)->address = src_address;
((shm_read *)d->my_shm)->length = size;
gcc_barrier
((shm_read *)d->my_shm)->pingpong = DFPP_READ;
d->waitWhile(DFPP_READ);
memcpy (target_buffer, d->my_shm + SHM_HEADER,size);
}
// a big read, we pull data over the shm in iterations
else
{
// first read equals the size of the SHM window
uint32_t to_read = SHM_BODY;
while (size)
{
// read to_read bytes from src_cursor
((shm_read *)d->my_shm)->address = src_address;
((shm_read *)d->my_shm)->length = to_read;
gcc_barrier
((shm_read *)d->my_shm)->pingpong = DFPP_READ;
d->waitWhile(DFPP_READ);
memcpy (target_buffer, d->my_shm + SHM_HEADER,size);
// decrease size by bytes read
size -= to_read;
// move the cursors
src_address += to_read;
target_buffer += to_read;
// check how much to write in the next iteration
to_read = min(size, (uint32_t) SHM_BODY);
}
}
2009-12-22 14:19:39 -07:00
}
uint8_t Process::readByte (const uint32_t offset)
2009-12-22 14:19:39 -07:00
{
((shm_read_small *)d->my_shm)->address = offset;
gcc_barrier
2009-12-22 14:19:39 -07:00
((shm_read_small *)d->my_shm)->pingpong = DFPP_READ_BYTE;
d->waitWhile(DFPP_READ_BYTE);
return ((shm_retval *)d->my_shm)->value;
}
void Process::readByte (const uint32_t offset, uint8_t &val )
2009-12-22 14:19:39 -07:00
{
((shm_read_small *)d->my_shm)->address = offset;
gcc_barrier
2009-12-22 14:19:39 -07:00
((shm_read_small *)d->my_shm)->pingpong = DFPP_READ_BYTE;
d->waitWhile(DFPP_READ_BYTE);
val = ((shm_retval *)d->my_shm)->value;
}
uint16_t Process::readWord (const uint32_t offset)
2009-12-22 14:19:39 -07:00
{
((shm_read_small *)d->my_shm)->address = offset;
gcc_barrier
2009-12-22 14:19:39 -07:00
((shm_read_small *)d->my_shm)->pingpong = DFPP_READ_WORD;
d->waitWhile(DFPP_READ_WORD);
return ((shm_retval *)d->my_shm)->value;
}
void Process::readWord (const uint32_t offset, uint16_t &val)
2009-12-22 14:19:39 -07:00
{
((shm_read_small *)d->my_shm)->address = offset;
gcc_barrier
2009-12-22 14:19:39 -07:00
((shm_read_small *)d->my_shm)->pingpong = DFPP_READ_WORD;
d->waitWhile(DFPP_READ_WORD);
val = ((shm_retval *)d->my_shm)->value;
}
uint32_t Process::readDWord (const uint32_t offset)
2009-12-22 14:19:39 -07:00
{
((shm_read_small *)d->my_shm)->address = offset;
gcc_barrier
2009-12-22 14:19:39 -07:00
((shm_read_small *)d->my_shm)->pingpong = DFPP_READ_DWORD;
d->waitWhile(DFPP_READ_DWORD);
return ((shm_retval *)d->my_shm)->value;
}
void Process::readDWord (const uint32_t offset, uint32_t &val)
2009-12-22 14:19:39 -07:00
{
((shm_read_small *)d->my_shm)->address = offset;
gcc_barrier
2009-12-22 14:19:39 -07:00
((shm_read_small *)d->my_shm)->pingpong = DFPP_READ_DWORD;
d->waitWhile(DFPP_READ_DWORD);
val = ((shm_retval *)d->my_shm)->value;
}
/*
* WRITING
*/
void Process::writeDWord (uint32_t offset, uint32_t data)
2009-12-22 14:19:39 -07:00
{
((shm_write_small *)d->my_shm)->address = offset;
((shm_write_small *)d->my_shm)->value = data;
gcc_barrier
2009-12-22 14:19:39 -07:00
((shm_write_small *)d->my_shm)->pingpong = DFPP_WRITE_DWORD;
d->waitWhile(DFPP_WRITE_DWORD);
}
// using these is expensive.
void Process::writeWord (uint32_t offset, uint16_t data)
2009-12-22 14:19:39 -07:00
{
((shm_write_small *)d->my_shm)->address = offset;
((shm_write_small *)d->my_shm)->value = data;
gcc_barrier
2009-12-22 14:19:39 -07:00
((shm_write_small *)d->my_shm)->pingpong = DFPP_WRITE_WORD;
d->waitWhile(DFPP_WRITE_WORD);
}
void Process::writeByte (uint32_t offset, uint8_t data)
2009-12-22 14:19:39 -07:00
{
((shm_write_small *)d->my_shm)->address = offset;
((shm_write_small *)d->my_shm)->value = data;
gcc_barrier
2009-12-22 14:19:39 -07:00
((shm_write_small *)d->my_shm)->pingpong = DFPP_WRITE_BYTE;
d->waitWhile(DFPP_WRITE_BYTE);
}
void Process::write (uint32_t dst_address, uint32_t size, uint8_t *source_buffer)
2009-12-22 14:19:39 -07:00
{
// normal write under 1MB
if(size <= SHM_BODY)
{
((shm_write *)d->my_shm)->address = dst_address;
((shm_write *)d->my_shm)->length = size;
memcpy(d->my_shm+SHM_HEADER,source_buffer, size);
gcc_barrier
((shm_write *)d->my_shm)->pingpong = DFPP_WRITE;
d->waitWhile(DFPP_WRITE);
}
// a big write, we push this over the shm in iterations
else
{
// first write equals the size of the SHM window
uint32_t to_write = SHM_BODY;
while (size)
{
// write to_write bytes to dst_cursor
((shm_write *)d->my_shm)->address = dst_address;
((shm_write *)d->my_shm)->length = to_write;
memcpy(d->my_shm+SHM_HEADER,source_buffer, to_write);
gcc_barrier
((shm_write *)d->my_shm)->pingpong = DFPP_WRITE;
d->waitWhile(DFPP_WRITE);
// decrease size by bytes written
size -= to_write;
// move the cursors
source_buffer += to_write;
dst_address += to_write;
// check how much to write in the next iteration
to_write = min(size, (uint32_t) SHM_BODY);
}
}
2009-12-22 14:19:39 -07:00
}
// FIXME: butt-fugly
const std::string Process::readCString (uint32_t offset)
2009-12-22 14:19:39 -07:00
{
std::string temp;
char temp_c[256];
int counter = 0;
char r;
do
{
r = readByte(offset+counter);
temp_c[counter] = r;
counter++;
} while (r && counter < 255);
temp_c[counter] = 0;
temp = temp_c;
return temp;
}
DfVector Process::readVector (uint32_t offset, uint32_t item_size)
{
/*
GNU libstdc++ vector is three pointers long
ptr start
ptr end
ptr alloc_end
we don't care about alloc_end because we don't try to add stuff
*/
uint32_t start = g_pProcess->readDWord(offset);
uint32_t end = g_pProcess->readDWord(offset+4);
uint32_t size = (end - start) /4;
return DfVector(start,size,item_size);
}
const std::string Process::readSTLString(uint32_t offset)
{
((shm_read_small *)d->my_shm)->address = offset;
full_barrier
((shm_read_small *)d->my_shm)->pingpong = DFPP_READ_STL_STRING;
d->waitWhile(DFPP_READ_STL_STRING);
//int length = ((shm_retval *)d->my_shm)->value;
return(string( (char *)d->my_shm+SHM_HEADER));
}
size_t Process::readSTLString (uint32_t offset, char * buffer, size_t bufcapacity)
{
((shm_read_small *)d->my_shm)->address = offset;
full_barrier
((shm_read_small *)d->my_shm)->pingpong = DFPP_READ_STL_STRING;
d->waitWhile(DFPP_READ_STL_STRING);
size_t length = ((shm_retval *)d->my_shm)->value;
size_t fit = min(bufcapacity - 1, length);
strncpy(buffer,(char *)d->my_shm+SHM_HEADER,fit);
buffer[fit] = 0;
return fit;
}
void Process::writeSTLString(const uint32_t address, const std::string writeString)
{
((shm_write_small *)d->my_shm)->address = address;
strncpy(d->my_shm+SHM_HEADER,writeString.c_str(),writeString.length()+1); // length + 1 for the null terminator
full_barrier
((shm_write_small *)d->my_shm)->pingpong = DFPP_WRITE_STL_STRING;
d->waitWhile(DFPP_WRITE_STL_STRING);
2010-02-18 18:48:03 -07:00
}
string Process::readClassName (uint32_t vptr)
2010-02-18 18:48:03 -07:00
{
int typeinfo = readDWord(vptr - 0x4);
int typestring = readDWord(typeinfo + 0x4);
string raw = readCString(typestring);
size_t start = raw.find_first_of("abcdefghijklmnopqrstuvwxyz");// trim numbers
size_t end = raw.length();
return raw.substr(start,end-start - 2); // trim the 'st' from the end
}