2009-12-22 14:19:39 -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
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/shm.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ipc.h>
|
2010-03-09 13:25:17 -07:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2009-12-22 14:19:39 -07:00
|
|
|
#include <unistd.h>
|
2010-03-02 21:43:38 -07:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2010-01-03 22:20:28 -07:00
|
|
|
#include "shms.h"
|
2010-03-04 16:05:01 -07:00
|
|
|
#include "mod-core.h"
|
2010-03-03 20:40:06 -07:00
|
|
|
#include <sched.h>
|
2009-12-26 20:51:54 -07:00
|
|
|
|
2010-02-25 15:43:37 -07:00
|
|
|
#define DFhackCExport extern "C" __attribute__ ((visibility("default")))
|
|
|
|
|
2009-12-22 14:19:39 -07:00
|
|
|
// various crud
|
|
|
|
int counter = 0;
|
|
|
|
int errorstate = 0;
|
2010-01-05 13:51:58 -07:00
|
|
|
char *shm = 0;
|
|
|
|
int shmid = 0;
|
2010-01-07 22:52:37 -07:00
|
|
|
bool inited = 0;
|
2009-12-22 14:19:39 -07:00
|
|
|
|
2010-03-09 13:25:17 -07:00
|
|
|
int fd_svlock = 0;
|
|
|
|
int fd_cllock = 0;
|
|
|
|
|
|
|
|
|
2010-02-23 11:26:15 -07:00
|
|
|
/*******************************************************************************
|
|
|
|
* SHM part starts here *
|
|
|
|
*******************************************************************************/
|
2010-03-09 13:25:17 -07:00
|
|
|
/*
|
2010-02-23 11:26:15 -07:00
|
|
|
// FIXME: add error checking?
|
|
|
|
bool isValidSHM()
|
|
|
|
{
|
|
|
|
shmid_ds descriptor;
|
|
|
|
shmctl(shmid, IPC_STAT, &descriptor);
|
|
|
|
//fprintf(stderr,"ID %d, attached: %d\n",shmid, descriptor.shm_nattch);
|
|
|
|
return (descriptor.shm_nattch == 2);
|
|
|
|
}
|
2010-03-09 13:25:17 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
// is the other side still there?
|
|
|
|
bool isValidSHM()
|
|
|
|
{
|
|
|
|
// try if CL lock file is free
|
|
|
|
int result = lockf(fd_cllock,F_TEST,0);
|
|
|
|
/*
|
|
|
|
F_TEST: Test the lock:
|
|
|
|
return 0 if the specified section is unlocked or locked by this process;
|
|
|
|
return -1, set errno to EAGAIN (EACCES on some other systems), if another process holds a lock.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// if nobody holds the lock, the SHM isn't valid. file locks are unlocked when the owner closes or crashes.
|
|
|
|
if(result == 0) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-03-02 21:43:38 -07:00
|
|
|
uint32_t OS_getPID()
|
2010-02-23 11:26:15 -07:00
|
|
|
{
|
|
|
|
return getpid();
|
|
|
|
}
|
|
|
|
|
2010-03-03 20:40:06 -07:00
|
|
|
uint32_t OS_getAffinity()
|
|
|
|
{
|
|
|
|
cpu_set_t mask;
|
|
|
|
sched_getaffinity(0,sizeof(cpu_set_t),&mask);
|
|
|
|
// FIXME: truncation
|
|
|
|
uint32_t affinity = *(uint32_t *) &mask;
|
|
|
|
return affinity;
|
|
|
|
}
|
|
|
|
|
2009-12-22 14:19:39 -07:00
|
|
|
void SHM_Init ( void )
|
|
|
|
{
|
2010-01-07 22:52:37 -07:00
|
|
|
// check that we do this only once per process
|
|
|
|
if(inited)
|
|
|
|
{
|
2010-01-10 23:27:59 -07:00
|
|
|
fprintf(stderr, "SDL_Init was called twice or more!\n");
|
2010-01-07 22:52:37 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
inited = true;
|
2010-03-09 13:25:17 -07:00
|
|
|
char name[256];
|
|
|
|
char name2[256];
|
|
|
|
|
|
|
|
// make folder structure for our lock files
|
|
|
|
sprintf(name, "/tmp/DFHack/%d",OS_getPID());
|
|
|
|
mode_t createmode = S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH;
|
|
|
|
mkdir("/tmp/DFHack", createmode);
|
|
|
|
mkdir(name, createmode);
|
|
|
|
|
|
|
|
// create and lock the server lock file
|
|
|
|
sprintf(name2, "%s/SVlock",name);
|
|
|
|
fd_svlock = open(name2,O_WRONLY | O_CREAT, createmode);
|
|
|
|
lockf( fd_svlock, F_LOCK, 0 );
|
|
|
|
|
|
|
|
// create the client lock file
|
|
|
|
sprintf(name2, "%s/CLlock",name);
|
|
|
|
fd_cllock = open(name2,O_WRONLY | O_CREAT, createmode);
|
2010-01-07 22:52:37 -07:00
|
|
|
|
2010-03-07 17:54:46 -07:00
|
|
|
// name for the segment, an accident waiting to happen
|
|
|
|
key_t key = SHM_KEY + OS_getPID();
|
2009-12-22 14:19:39 -07:00
|
|
|
|
2010-02-23 11:26:15 -07:00
|
|
|
// find previous segment, check if it's used by some processes.
|
|
|
|
// if it isn't, kill it with fire
|
2009-12-26 20:51:54 -07:00
|
|
|
if ((shmid = shmget(key, SHM_SIZE, 0600)) != -1)
|
|
|
|
{
|
|
|
|
shmid_ds descriptor;
|
|
|
|
shmctl(shmid, IPC_STAT, &descriptor);
|
|
|
|
if(descriptor.shm_nattch == 0)
|
|
|
|
{
|
|
|
|
shmctl(shmid,IPC_RMID,NULL);
|
|
|
|
fprintf(stderr,"dfhack: killed dangling resources from crashed DF.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// create the segment, make sure only ww are really creating it
|
|
|
|
if ((shmid = shmget(key, SHM_SIZE, IPC_CREAT | IPC_EXCL | 0600)) < 0)
|
2009-12-22 14:19:39 -07:00
|
|
|
{
|
|
|
|
perror("shmget");
|
|
|
|
errorstate = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// attach the segment
|
|
|
|
if ((shm = (char *) shmat(shmid, 0, 0)) == (char *) -1)
|
|
|
|
{
|
|
|
|
perror("shmat");
|
|
|
|
errorstate = 1;
|
|
|
|
return;
|
|
|
|
}
|
2010-01-03 22:41:53 -07:00
|
|
|
full_barrier
|
2010-02-23 11:26:15 -07:00
|
|
|
// make sure we don't stall or do crazy stuff
|
2010-03-02 21:43:38 -07:00
|
|
|
((shm_cmd *)shm)->pingpong = CORE_RUNNING;
|
|
|
|
InitModules();
|
2009-12-22 14:19:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void SHM_Destroy ( void )
|
|
|
|
{
|
2010-02-23 11:26:15 -07:00
|
|
|
if(inited && !errorstate)
|
2009-12-26 20:51:54 -07:00
|
|
|
{
|
2010-03-04 16:05:01 -07:00
|
|
|
KillModules();
|
2010-02-23 11:26:15 -07:00
|
|
|
shmid_ds descriptor;
|
2009-12-26 20:51:54 -07:00
|
|
|
shmctl(shmid, IPC_STAT, &descriptor);
|
2010-02-23 11:26:15 -07:00
|
|
|
shmdt(shm);
|
|
|
|
while(descriptor.shm_nattch != 0)
|
|
|
|
{
|
|
|
|
shmctl(shmid, IPC_STAT, &descriptor);
|
|
|
|
}
|
|
|
|
shmctl(shmid,IPC_RMID,NULL);
|
2010-03-09 13:25:17 -07:00
|
|
|
|
|
|
|
// unlock and close server lock, close client lock
|
|
|
|
lockf(fd_svlock,F_ULOCK,0);
|
|
|
|
close(fd_svlock);
|
|
|
|
close(fd_cllock);
|
|
|
|
fd_svlock = 0;
|
|
|
|
fd_cllock = 0;
|
|
|
|
|
2010-02-23 11:26:15 -07:00
|
|
|
fprintf(stderr,"dfhack: destroyed shared segment.\n");
|
|
|
|
inited = false;
|
2009-12-26 20:51:54 -07:00
|
|
|
}
|
2009-12-22 14:19:39 -07:00
|
|
|
}
|
|
|
|
|
2010-02-23 11:26:15 -07:00
|
|
|
/*******************************************************************************
|
|
|
|
* SDL part starts here *
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
// ptr to the real functions
|
|
|
|
static void (*_SDL_GL_SwapBuffers)(void) = 0;
|
|
|
|
static void (*_SDL_Quit)(void) = 0;
|
|
|
|
static int (*_SDL_Init)(uint32_t flags) = 0;
|
|
|
|
static int (*_SDL_Flip)(void * some_ptr) = 0;
|
|
|
|
|
2009-12-26 20:51:54 -07:00
|
|
|
// hook - called every tick in OpenGL mode of DF
|
2010-02-25 15:43:37 -07:00
|
|
|
DFhackCExport void SDL_GL_SwapBuffers(void)
|
2009-12-22 14:19:39 -07:00
|
|
|
{
|
|
|
|
if(_SDL_GL_SwapBuffers)
|
|
|
|
{
|
2010-03-02 21:43:38 -07:00
|
|
|
if(!errorstate && ((shm_cmd *)shm)->pingpong != CORE_RUNNING)
|
2009-12-22 14:19:39 -07:00
|
|
|
{
|
|
|
|
SHM_Act();
|
|
|
|
}
|
|
|
|
counter ++;
|
|
|
|
_SDL_GL_SwapBuffers();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-26 20:51:54 -07:00
|
|
|
// hook - called every tick in the 2D mode of DF
|
2010-02-25 15:43:37 -07:00
|
|
|
DFhackCExport int SDL_Flip(void * some_ptr)
|
2009-12-26 20:51:54 -07:00
|
|
|
{
|
|
|
|
if(_SDL_Flip)
|
|
|
|
{
|
2010-03-02 21:43:38 -07:00
|
|
|
if(!errorstate && ((shm_cmd *)shm)->pingpong != CORE_RUNNING)
|
2009-12-26 20:51:54 -07:00
|
|
|
{
|
|
|
|
SHM_Act();
|
|
|
|
}
|
|
|
|
counter ++;
|
|
|
|
return _SDL_Flip(some_ptr);
|
|
|
|
}
|
2010-02-23 11:26:15 -07:00
|
|
|
return 0;
|
2009-12-26 20:51:54 -07:00
|
|
|
}
|
|
|
|
|
2009-12-22 14:19:39 -07:00
|
|
|
// hook - called at program exit
|
2010-02-25 15:43:37 -07:00
|
|
|
DFhackCExport void SDL_Quit(void)
|
2009-12-22 14:19:39 -07:00
|
|
|
{
|
2010-01-05 13:51:58 -07:00
|
|
|
if(!errorstate)
|
|
|
|
{
|
|
|
|
SHM_Destroy();
|
|
|
|
}
|
2010-02-23 11:26:15 -07:00
|
|
|
if(_SDL_Quit)
|
|
|
|
{
|
|
|
|
_SDL_Quit();
|
|
|
|
}
|
2009-12-22 14:19:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// hook - called at program start, initialize some stuffs we'll use later
|
2010-02-25 15:43:37 -07:00
|
|
|
DFhackCExport int SDL_Init(uint32_t flags)
|
2009-12-22 14:19:39 -07:00
|
|
|
{
|
|
|
|
// find real functions
|
|
|
|
_SDL_GL_SwapBuffers = (void (*)( void )) dlsym(RTLD_NEXT, "SDL_GL_SwapBuffers");
|
|
|
|
_SDL_Init = (int (*)( uint32_t )) dlsym(RTLD_NEXT, "SDL_Init");
|
2009-12-26 20:51:54 -07:00
|
|
|
_SDL_Flip = (int (*)( void * )) dlsym(RTLD_NEXT, "SDL_Flip");
|
2009-12-22 14:19:39 -07:00
|
|
|
_SDL_Quit = (void (*)( void )) dlsym(RTLD_NEXT, "SDL_Quit");
|
|
|
|
|
|
|
|
// check if we got them
|
|
|
|
if(_SDL_GL_SwapBuffers && _SDL_Init && _SDL_Quit)
|
|
|
|
{
|
|
|
|
fprintf(stderr,"dfhack: hooking successful\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// bail, this would be a disaster otherwise
|
|
|
|
fprintf(stderr,"dfhack: something went horribly wrong\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
SHM_Init();
|
|
|
|
|
|
|
|
return _SDL_Init(flags);
|
|
|
|
}
|
|
|
|
|
2010-02-23 11:26:15 -07:00
|
|
|
/*******************************************************************************
|
|
|
|
* NCURSES part starts here *
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
static int (*_refresh)(void) = 0;
|
|
|
|
//extern NCURSES_EXPORT(int) refresh (void);
|
2010-02-25 15:43:37 -07:00
|
|
|
DFhackCExport int refresh (void)
|
2010-01-03 22:20:28 -07:00
|
|
|
{
|
2010-02-23 11:26:15 -07:00
|
|
|
if(_refresh)
|
|
|
|
{
|
2010-03-02 21:43:38 -07:00
|
|
|
if(!errorstate && ((shm_cmd *)shm)->pingpong != CORE_RUNNING)
|
2010-02-23 11:26:15 -07:00
|
|
|
{
|
|
|
|
SHM_Act();
|
|
|
|
}
|
|
|
|
counter ++;
|
|
|
|
return _refresh();
|
|
|
|
}
|
|
|
|
return 0;
|
2010-01-04 15:20:17 -07:00
|
|
|
}
|
2010-02-23 11:26:15 -07:00
|
|
|
|
|
|
|
static int (*_endwin)(void) = 0;
|
|
|
|
//extern NCURSES_EXPORT(int) endwin (void);
|
2010-02-25 15:43:37 -07:00
|
|
|
DFhackCExport int endwin (void)
|
2010-01-04 15:20:17 -07:00
|
|
|
{
|
2010-02-23 11:26:15 -07:00
|
|
|
if(!errorstate)
|
|
|
|
{
|
|
|
|
SHM_Destroy();
|
|
|
|
}
|
|
|
|
if(_endwin)
|
|
|
|
{
|
|
|
|
return _endwin();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef void WINDOW;
|
|
|
|
//extern NCURSES_EXPORT(WINDOW *) initscr (void);
|
|
|
|
static WINDOW * (*_initscr)(void) = 0;
|
2010-02-25 15:43:37 -07:00
|
|
|
DFhackCExport WINDOW * initscr (void)
|
2010-02-23 11:26:15 -07:00
|
|
|
{
|
|
|
|
// find real functions
|
|
|
|
_refresh = (int (*)( void )) dlsym(RTLD_NEXT, "refresh");
|
|
|
|
_endwin = (int (*)( void )) dlsym(RTLD_NEXT, "endwin");
|
|
|
|
_initscr = (WINDOW * (*)( void )) dlsym(RTLD_NEXT, "initscr");
|
|
|
|
// check if we got them
|
|
|
|
if(_refresh && _endwin && _initscr)
|
|
|
|
{
|
|
|
|
fprintf(stderr,"dfhack: hooking successful\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// bail, this would be a disaster otherwise
|
|
|
|
fprintf(stderr,"dfhack: something went horribly wrong\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
SHM_Init();
|
|
|
|
return _initscr();
|
2010-01-03 22:20:28 -07:00
|
|
|
}
|