2010-03-02 21:43:38 -07:00
|
|
|
/*
|
|
|
|
www.sourceforge.net/projects/dfhack
|
|
|
|
Copyright (c) 2009 Petr Mrázek (peterix)
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the source for the DF <-> dfhack shm bridge's core module.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2010-05-26 00:42:09 -06:00
|
|
|
#include "dfhack/DFIntegers.h"
|
2010-03-02 21:43:38 -07:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2010-03-04 16:05:01 -07:00
|
|
|
|
|
|
|
#define SHM_INTERNAL // for things only visible to the SHM
|
|
|
|
|
2010-03-02 21:43:38 -07:00
|
|
|
#include "shms.h"
|
2010-03-04 16:05:01 -07:00
|
|
|
#include "mod-core.h"
|
|
|
|
#include "mod-maps.h"
|
2010-03-28 09:22:15 -06:00
|
|
|
#include "mod-creature40d.h"
|
2010-03-02 21:43:38 -07:00
|
|
|
|
|
|
|
std::vector <DFPP_module> module_registry;
|
|
|
|
|
2010-03-11 16:13:50 -07:00
|
|
|
// shared by shms_OS
|
2010-03-02 21:43:38 -07:00
|
|
|
extern int errorstate;
|
|
|
|
extern char *shm;
|
|
|
|
extern int shmid;
|
2010-03-11 16:13:50 -07:00
|
|
|
|
|
|
|
// file-globals
|
2010-03-03 20:40:06 -07:00
|
|
|
bool useYield = 0;
|
2010-03-11 16:13:50 -07:00
|
|
|
int currentClient = -1;
|
2010-03-02 21:43:38 -07:00
|
|
|
|
2010-03-03 20:40:06 -07:00
|
|
|
#define SHMHDR ((shm_core_hdr *)shm)
|
2010-03-12 04:14:20 -07:00
|
|
|
#define SHMCMD ((uint32_t *)shm )[currentClient]
|
2010-03-07 21:15:11 -07:00
|
|
|
#define SHMDATA(type) ((type *)(shm + SHM_HEADER))
|
2010-03-02 21:43:38 -07:00
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void ReadRaw (void * data)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
2010-03-11 16:13:50 -07:00
|
|
|
memcpy(SHMDATA(void), (void *) SHMHDR->address,SHMHDR->length);
|
2010-03-02 21:43:38 -07:00
|
|
|
}
|
|
|
|
|
2010-04-26 16:12:22 -06:00
|
|
|
void ReadQuad (void * data)
|
|
|
|
{
|
|
|
|
SHMHDR->Qvalue = *((uint64_t*) SHMHDR->address);
|
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void ReadDWord (void * data)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
|
|
|
SHMHDR->value = *((uint32_t*) SHMHDR->address);
|
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void ReadWord (void * data)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
|
|
|
SHMHDR->value = *((uint16_t*) SHMHDR->address);
|
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void ReadByte (void * data)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
|
|
|
SHMHDR->value = *((uint8_t*) SHMHDR->address);
|
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void WriteRaw (void * data)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
2010-03-11 16:13:50 -07:00
|
|
|
memcpy((void *)SHMHDR->address, SHMDATA(void),SHMHDR->length);
|
2010-03-02 21:43:38 -07:00
|
|
|
}
|
|
|
|
|
2010-04-26 16:12:22 -06:00
|
|
|
void WriteQuad (void * data)
|
|
|
|
{
|
|
|
|
(*(uint64_t*)SHMHDR->address) = SHMHDR->Qvalue;
|
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void WriteDWord (void * data)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
|
|
|
(*(uint32_t*)SHMHDR->address) = SHMHDR->value;
|
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void WriteWord (void * data)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
|
|
|
(*(uint16_t*)SHMHDR->address) = SHMHDR->value;
|
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void WriteByte (void * data)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
|
|
|
(*(uint8_t*)SHMHDR->address) = SHMHDR->value;
|
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void ReadSTLString (void * data)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
|
|
|
std::string * myStringPtr = (std::string *) SHMHDR->address;
|
|
|
|
unsigned int l = myStringPtr->length();
|
|
|
|
SHMHDR->value = l;
|
2010-03-03 20:40:06 -07:00
|
|
|
// FIXME: there doesn't have to be a null terminator!
|
2010-03-11 16:13:50 -07:00
|
|
|
strncpy( SHMDATA(char),myStringPtr->c_str(),l+1);
|
2010-03-02 21:43:38 -07:00
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void WriteSTLString (void * data)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
|
|
|
std::string * myStringPtr = (std::string *) SHMHDR->address;
|
|
|
|
// here we DO expect a 0 terminator
|
2010-03-11 16:13:50 -07:00
|
|
|
myStringPtr->assign( SHMDATA(const char) );
|
2010-03-02 21:43:38 -07:00
|
|
|
}
|
|
|
|
|
2010-03-03 20:40:06 -07:00
|
|
|
// MIT HAKMEM bitcount
|
|
|
|
int bitcount(uint32_t n)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
2010-03-03 20:40:06 -07:00
|
|
|
register uint32_t tmp;
|
|
|
|
|
|
|
|
tmp = n - ((n >> 1) & 033333333333) - ((n >> 2) & 011111111111);
|
|
|
|
return ((tmp + (tmp >> 3)) & 030707070707) % 63;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get local and remote affinity, set up yield if required (single core available)
|
2010-03-07 21:15:11 -07:00
|
|
|
void CoreAttach (void * data)
|
2010-03-03 20:40:06 -07:00
|
|
|
{
|
2010-03-07 21:15:11 -07:00
|
|
|
// sync affinity
|
2010-03-03 20:40:06 -07:00
|
|
|
uint32_t local = OS_getAffinity();
|
2010-03-07 21:15:11 -07:00
|
|
|
uint32_t remote = SHMDATA(coreattach)->cl_affinity;
|
2010-03-03 20:40:06 -07:00
|
|
|
uint32_t pool = local | remote;
|
2010-03-07 21:15:11 -07:00
|
|
|
SHMDATA(coreattach)->sv_useYield = useYield = (bitcount(pool) == 1);
|
|
|
|
// return our PID
|
|
|
|
SHMDATA(coreattach)->sv_PID = OS_getPID();
|
|
|
|
// return core version
|
|
|
|
SHMDATA(coreattach)->sv_version = module_registry[0].version;
|
2010-03-02 21:43:38 -07:00
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void FindModule (void * data)
|
|
|
|
{
|
|
|
|
bool found = false;
|
2010-03-11 16:13:50 -07:00
|
|
|
modulelookup * payload = SHMDATA(modulelookup);
|
2010-03-04 16:05:01 -07:00
|
|
|
std::string test = payload->name;
|
|
|
|
uint32_t version = payload->version;
|
|
|
|
for(unsigned int i = 0; i < module_registry.size();i++)
|
|
|
|
{
|
|
|
|
if(module_registry[i].name == test && module_registry[i].version == version)
|
|
|
|
{
|
|
|
|
// gotcha
|
|
|
|
SHMHDR->value = i;
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-03-07 21:15:11 -07:00
|
|
|
SHMHDR->error = !found;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FindCommand (void * data)
|
|
|
|
{
|
|
|
|
bool found = false;
|
|
|
|
commandlookup * payload = SHMDATA(commandlookup);
|
|
|
|
std::string modname = payload->module;
|
|
|
|
std::string cmdname = payload->name;
|
|
|
|
uint32_t version = payload->version;
|
|
|
|
for(unsigned int i = 0; i < module_registry.size();i++)
|
2010-03-04 16:05:01 -07:00
|
|
|
{
|
2010-03-07 21:15:11 -07:00
|
|
|
if(module_registry[i].name == modname && module_registry[i].version == version)
|
|
|
|
{
|
|
|
|
for(unsigned int j = 0 ; j < module_registry[i].commands.size();j++)
|
|
|
|
{
|
|
|
|
if(module_registry[i].commands[j].name == cmdname)
|
|
|
|
{
|
|
|
|
// gotcha
|
|
|
|
SHMHDR->value = j + (i << 16);
|
|
|
|
SHMHDR->error = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-03-04 16:05:01 -07:00
|
|
|
}
|
2010-03-07 21:15:11 -07:00
|
|
|
SHMHDR->error = true;
|
2010-03-04 16:05:01 -07:00
|
|
|
}
|
|
|
|
|
2010-03-11 16:13:50 -07:00
|
|
|
void ReleaseSuspendLock( void * data )
|
|
|
|
{
|
|
|
|
OS_releaseSuspendLock(currentClient);
|
|
|
|
}
|
|
|
|
|
2010-03-13 09:44:36 -07:00
|
|
|
void AcquireSuspendLock( void * data )
|
|
|
|
{
|
|
|
|
OS_lockSuspendLock(currentClient);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
DFPP_module InitCore(void)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
|
|
|
DFPP_module core;
|
|
|
|
core.name = "Core";
|
|
|
|
core.version = CORE_VERSION;
|
|
|
|
core.modulestate = 0; // this one is dumb and has no real state
|
|
|
|
|
|
|
|
core.reserve(NUM_CORE_CMDS);
|
2010-03-09 05:41:55 -07:00
|
|
|
// basic states
|
2010-03-03 20:40:06 -07:00
|
|
|
core.set_command(CORE_RUNNING, CANCELLATION, "Running");
|
2010-03-13 09:44:36 -07:00
|
|
|
//core.set_command(CORE_RUN, FUNCTION, "Run!",AcquireSuspendLock,CORE_RUNNING);
|
|
|
|
core.set_command(CORE_RUN, CANCELLATION, "Run!",0,CORE_RUNNING);
|
2010-03-11 16:13:50 -07:00
|
|
|
core.set_command(CORE_STEP, CANCELLATION, "Suspend on next step",0,CORE_SUSPEND);// set command to CORE_SUSPEND, check next client
|
2010-03-18 12:55:01 -06:00
|
|
|
core.set_command(CORE_SUSPEND, FUNCTION, "Suspend", ReleaseSuspendLock , CORE_SUSPENDED, LOCKING_LOCKS);
|
2010-03-07 21:15:11 -07:00
|
|
|
core.set_command(CORE_SUSPENDED, CLIENT_WAIT, "Suspended");
|
2010-03-09 05:41:55 -07:00
|
|
|
core.set_command(CORE_ERROR, CANCELLATION, "Error");
|
2010-03-02 21:43:38 -07:00
|
|
|
|
2010-03-09 05:41:55 -07:00
|
|
|
// utility commands
|
2010-03-07 21:15:11 -07:00
|
|
|
core.set_command(CORE_ATTACH, FUNCTION,"Core attach",CoreAttach, CORE_SUSPENDED);
|
2010-03-09 05:41:55 -07:00
|
|
|
core.set_command(CORE_ACQUIRE_MODULE, FUNCTION, "Module lookup", FindModule, CORE_SUSPENDED);
|
|
|
|
core.set_command(CORE_ACQUIRE_COMMAND, FUNCTION, "Command lookup", FindCommand, CORE_SUSPENDED);
|
2010-03-02 21:43:38 -07:00
|
|
|
|
2010-03-09 05:41:55 -07:00
|
|
|
// raw reads
|
2010-03-11 16:13:50 -07:00
|
|
|
core.set_command(CORE_READ, FUNCTION,"Raw read",ReadRaw, CORE_SUSPENDED);
|
2010-04-26 16:12:22 -06:00
|
|
|
core.set_command(CORE_READ_QUAD, FUNCTION,"Read QUAD",ReadQuad, CORE_SUSPENDED);
|
2010-03-07 21:15:11 -07:00
|
|
|
core.set_command(CORE_READ_DWORD, FUNCTION,"Read DWORD",ReadDWord, CORE_SUSPENDED);
|
|
|
|
core.set_command(CORE_READ_WORD, FUNCTION,"Read WORD",ReadWord, CORE_SUSPENDED);
|
|
|
|
core.set_command(CORE_READ_BYTE, FUNCTION,"Read BYTE",ReadByte, CORE_SUSPENDED);
|
2010-03-02 21:43:38 -07:00
|
|
|
|
2010-03-09 05:41:55 -07:00
|
|
|
// raw writes
|
2010-03-03 20:40:06 -07:00
|
|
|
core.set_command(CORE_WRITE, FUNCTION, "Raw write", WriteRaw, CORE_SUSPENDED);
|
2010-04-26 16:12:22 -06:00
|
|
|
core.set_command(CORE_WRITE_QUAD, FUNCTION, "Write QUAD", WriteQuad, CORE_SUSPENDED);
|
2010-03-03 20:40:06 -07:00
|
|
|
core.set_command(CORE_WRITE_DWORD, FUNCTION, "Write DWORD", WriteDWord, CORE_SUSPENDED);
|
|
|
|
core.set_command(CORE_WRITE_WORD, FUNCTION, "Write WORD", WriteWord, CORE_SUSPENDED);
|
|
|
|
core.set_command(CORE_WRITE_BYTE, FUNCTION, "Write BYTE", WriteByte, CORE_SUSPENDED);
|
2010-03-02 21:43:38 -07:00
|
|
|
|
2010-03-09 05:41:55 -07:00
|
|
|
// stl string commands
|
2010-03-07 21:15:11 -07:00
|
|
|
core.set_command(CORE_READ_STL_STRING, FUNCTION, "Read STL string", ReadSTLString, CORE_SUSPENDED);
|
2010-03-03 20:40:06 -07:00
|
|
|
core.set_command(CORE_READ_C_STRING, CLIENT_WAIT, "RESERVED");
|
|
|
|
core.set_command(CORE_WRITE_STL_STRING, FUNCTION, "Write STL string", WriteSTLString, CORE_SUSPENDED);
|
2010-03-04 16:05:01 -07:00
|
|
|
return core;
|
2010-03-02 21:43:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void InitModules (void)
|
|
|
|
{
|
|
|
|
// create the core module
|
2010-03-04 16:05:01 -07:00
|
|
|
module_registry.push_back(InitCore());
|
2010-05-23 19:07:13 -06:00
|
|
|
module_registry.push_back(DFHack::Server::Maps::Init());
|
|
|
|
//module_registry.push_back(DFHack::Server::Creatures::Init());
|
2010-03-28 09:22:15 -06:00
|
|
|
for(int i = 0; i < module_registry.size();i++)
|
|
|
|
{
|
|
|
|
fprintf(stderr,"Initialized module %s, version %d\n",module_registry[i].name.c_str(),module_registry[i].version);
|
|
|
|
}
|
2010-03-03 20:40:06 -07:00
|
|
|
// TODO: dynamic module init
|
2010-03-02 21:43:38 -07:00
|
|
|
}
|
|
|
|
|
2010-03-04 16:05:01 -07:00
|
|
|
void KillModules (void)
|
|
|
|
{
|
|
|
|
for(unsigned int i = 0; i < module_registry.size();i++)
|
|
|
|
{
|
|
|
|
if(module_registry[i].modulestate)
|
|
|
|
free(module_registry[i].modulestate);
|
|
|
|
}
|
|
|
|
module_registry.clear();
|
|
|
|
}
|
|
|
|
|
2010-03-02 21:43:38 -07:00
|
|
|
void SHM_Act (void)
|
|
|
|
{
|
2010-03-11 16:13:50 -07:00
|
|
|
volatile uint32_t atomic = 0;
|
2010-03-02 21:43:38 -07:00
|
|
|
if(errorstate)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2010-03-11 16:13:50 -07:00
|
|
|
//static uint oldcl = 88;
|
|
|
|
for(currentClient = 0; currentClient < SHM_MAX_CLIENTS;currentClient++)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
2010-03-11 16:13:50 -07:00
|
|
|
// set the offset for the shared memory used for the client
|
|
|
|
uint32_t numwaits = 0;
|
|
|
|
check_again: // goto target!!!
|
|
|
|
if(numwaits == 10000)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
2010-03-11 16:13:50 -07:00
|
|
|
// this tests if there's a process on the other side
|
|
|
|
if(isValidSHM(currentClient))
|
|
|
|
{
|
|
|
|
numwaits = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
full_barrier
|
2010-03-12 04:14:20 -07:00
|
|
|
SHMCMD = CORE_RUNNING;
|
2010-03-11 16:13:50 -07:00
|
|
|
fprintf(stderr,"dfhack: Broke out of loop, other process disappeared.\n");
|
|
|
|
}
|
2010-03-02 21:43:38 -07:00
|
|
|
}
|
2010-03-11 16:13:50 -07:00
|
|
|
full_barrier // I don't want the compiler to reorder my code.
|
|
|
|
|
|
|
|
|
|
|
|
//fprintf(stderr,"%d: %x %x\n",currentClient, (uint) SHMHDR, (uint) &(SHMHDR->cmd[currentClient]));
|
|
|
|
|
|
|
|
// this is very important! copying two words separately from the command variable leads to inconsistency.
|
|
|
|
// Always copy the thing in one go.
|
|
|
|
// Also, this whole SHM thing probably only works on intel processors
|
2010-03-12 04:14:20 -07:00
|
|
|
atomic = SHMCMD;
|
2010-03-11 16:13:50 -07:00
|
|
|
full_barrier
|
|
|
|
|
|
|
|
DFPP_module & mod = module_registry[ ((shm_cmd)atomic).parts.module ];
|
|
|
|
DFPP_command & cmd = mod.commands[ ((shm_cmd)atomic).parts.command ];
|
|
|
|
/*
|
|
|
|
if(atomic == CORE_RUNNING)
|
2010-03-02 21:43:38 -07:00
|
|
|
{
|
2010-03-11 16:13:50 -07:00
|
|
|
// we are running again for this process
|
|
|
|
// reaquire the suspend lock
|
|
|
|
OS_lockSuspendLock(currentClient);
|
|
|
|
continue;
|
2010-03-02 21:43:38 -07:00
|
|
|
}
|
2010-03-07 21:15:11 -07:00
|
|
|
full_barrier
|
2010-03-11 16:13:50 -07:00
|
|
|
*/
|
2010-03-18 12:55:01 -06:00
|
|
|
// set next state BEFORE we act on the command - good for locks
|
|
|
|
if(cmd.locking == LOCKING_LOCKS)
|
|
|
|
{
|
|
|
|
if(cmd.nextState != -1) SHMCMD = cmd.nextState;
|
|
|
|
}
|
|
|
|
|
2010-03-11 16:13:50 -07:00
|
|
|
if(cmd._function)
|
|
|
|
{
|
|
|
|
cmd._function(mod.modulestate);
|
|
|
|
}
|
2010-03-07 21:15:11 -07:00
|
|
|
full_barrier
|
2010-03-11 16:13:50 -07:00
|
|
|
|
2010-03-18 12:55:01 -06:00
|
|
|
// set next state AFTER we act on the command - good for busy waits
|
|
|
|
if(cmd.locking == LOCKING_BUSY)
|
2010-03-03 20:40:06 -07:00
|
|
|
{
|
2010-03-12 10:29:11 -07:00
|
|
|
/*
|
2010-03-13 09:44:36 -07:00
|
|
|
char text [512];
|
|
|
|
char text2 [512];
|
|
|
|
sprintf (text,"Client %d invoked %d:%d = %x = %s\n",currentClient,((shm_cmd)atomic).parts.module,((shm_cmd)atomic).parts.command, cmd._function,cmd.name.c_str());
|
|
|
|
sprintf(text2, "Server set %d\n",cmd.nextState);
|
2010-03-12 10:29:11 -07:00
|
|
|
*/
|
2010-03-11 16:13:50 -07:00
|
|
|
// FIXME: WHAT HAPPENS WHEN A 'NEXTSTATE' IS FROM A DIFFERENT MODULE THAN 'CORE'? Yeah. It doesn't work.
|
2010-03-18 12:55:01 -06:00
|
|
|
if(cmd.nextState != -1) SHMCMD = cmd.nextState;
|
2010-03-13 09:44:36 -07:00
|
|
|
//MessageBox(0,text,text2, MB_OK);
|
|
|
|
|
|
|
|
//fflush(stderr); // make sure this finds its way to the terminal!
|
|
|
|
|
2010-03-03 20:40:06 -07:00
|
|
|
}
|
2010-03-11 16:13:50 -07:00
|
|
|
full_barrier
|
|
|
|
|
|
|
|
if(cmd.type != CANCELLATION)
|
|
|
|
{
|
|
|
|
if(useYield)
|
|
|
|
{
|
|
|
|
SCHED_YIELD
|
|
|
|
}
|
|
|
|
numwaits ++; // watchdog timeout
|
|
|
|
goto check_again;
|
|
|
|
}
|
|
|
|
full_barrier
|
|
|
|
|
|
|
|
// we are running again for this process
|
|
|
|
// reaquire the suspend lock
|
|
|
|
OS_lockSuspendLock(currentClient);
|
2010-03-02 21:43:38 -07:00
|
|
|
}
|
|
|
|
}
|