wyebadblock/wyebrun.c

623 lines
12 KiB
C
Raw Normal View History

2018-05-19 15:51:50 +00:00
/*
Copyright 2018 jun7@hush.mail
This file is part of wyebrun.
wyebrun 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 3 of the License, or
(at your option) any later version.
wyebrun 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 wyebrun. If not, see <http://www.gnu.org/licenses/>.
*/
//getpid
#include <sys/types.h>
#include <unistd.h>
//flock
#include <sys/file.h>
//monitor
#include <gio/gio.h>
2018-05-19 15:51:50 +00:00
#include "wyebrun.h"
#define ROOTNAME "wyebrun"
#define PREFIX WYEBPREFIX
#define INPUT "wyebinput"
#define PING "wyebping"
#define DUNTIL WYEBDUNTIL
#define DPINGTIME 1000
#define P(f, ...) g_print(#f"\n", __VA_ARGS__);
#if DEBUG
static gint64 start;
2018-05-20 04:17:11 +00:00
# define D(f, ...) g_print("#"#f"\n", __VA_ARGS__);
# define DD(a) g_print("#"#a"\n");
2018-05-19 15:51:50 +00:00
#else
# define D(...) ;
# define DD(a) ;
#endif
typedef enum {
//to svr
CSuntil = 'u',
CSdata = 'd',
CSping = 'p',
//to client
CCwoke = 'w',
CCret = 'r', //retrun data
CClost = 'l', //we lost the req
} Com;
//shared
static void fatal(int i)
{
P(\n!!! fatal %d !!!\n, i)
exit(1);
}
static void mkdirif(char *path)
{
char *dir = g_path_get_dirname(path);
if (!g_file_test(dir, G_FILE_TEST_EXISTS))
g_mkdir_with_parents(dir, 0700);
g_free(dir);
}
static char *ipcpath(char *exe, char *name)
{
return g_build_filename(g_get_user_runtime_dir(),
ROOTNAME,exe, name, NULL);
}
static char *preparepp(char *exe, char *name)
{
char *path = ipcpath(exe, name);
if (!g_file_test(path, G_FILE_TEST_EXISTS))
{
mkdirif(path);
mkfifo(path, 0600);
}
return path;
}
static bool ipcsend(char *exe, char *name,
Com type, char *caller, char *data)
{
2018-06-04 20:54:27 +00:00
static GMutex sendm;
g_mutex_lock(&sendm);
2018-05-19 15:51:50 +00:00
//D(ipcsend exe:%s name:%s, exe, name)
char *path = preparepp(exe, name);
char *esc = g_strescape(data ?: "", "");
char *line = g_strdup_printf("%c%s:%s\n", type, caller ?: "", esc);
g_free(esc);
int pp = open(path, O_WRONLY | O_NONBLOCK);
bool ret = write(pp, line, strlen(line)) != -1;
g_free(line);
close(pp);
g_free(path);
2018-06-04 20:54:27 +00:00
g_mutex_unlock(&sendm);
2018-05-19 15:51:50 +00:00
return ret;
}
static gboolean ipccb(GIOChannel *ch, GIOCondition c, gpointer p);
static GSource *ipcwatch(char *exe, char *name, GMainContext *ctx) {
char *path = preparepp(exe, name);
GIOChannel *io = g_io_channel_new_file(path, "r+", NULL);
GSource *watch = g_io_create_watch(io, G_IO_IN);
g_io_channel_unref(io);
g_source_set_callback(watch, (GSourceFunc)ipccb, NULL, NULL);
g_source_attach(watch, ctx);
g_free(path);
return watch;
}
//@server
static char *svrexe = NULL;
static GMainLoop *sloop = NULL;
static wyebdataf dataf = NULL;
static GHashTable *orders = NULL;
2018-06-04 20:54:27 +00:00
static GMutex ordersm;
2018-06-04 20:54:27 +00:00
static gboolean quitif(gpointer p)
2018-05-19 15:51:50 +00:00
{
2018-06-04 20:54:27 +00:00
g_mutex_lock(&ordersm);
if (!g_hash_table_size(orders))
{
DD(SVR QUITS\n)
g_main_loop_quit(sloop);
}
g_mutex_unlock(&ordersm);
return true;
2018-05-19 15:51:50 +00:00
}
static void until(int sec)
{
if (!sloop) return;
static guint last = 0;
2018-06-04 20:54:27 +00:00
static GMutex lastm;
g_mutex_lock(&lastm);
2018-05-19 15:51:50 +00:00
if (last)
g_source_remove(last);
2018-06-04 20:54:27 +00:00
last = g_timeout_add_full(G_PRIORITY_LOW * 2, sec * 1000, quitif, NULL, NULL);
g_mutex_unlock(&lastm);
2018-05-19 15:51:50 +00:00
}
static gpointer pingt(gpointer p)
{
GMainContext *ctx = g_main_context_new();
ipcwatch(svrexe, PING, ctx);
g_main_loop_run(g_main_loop_new(ctx, true));
return NULL;
}
void wyebwatch(char *exe, char *caller, wyebdataf func)
{
svrexe = exe;
dataf = func;
2018-06-04 03:32:27 +00:00
orders = g_hash_table_new(g_str_hash, g_str_equal);
2018-05-19 15:51:50 +00:00
until(DUNTIL);
g_thread_new("ping", pingt, NULL);
ipcwatch(exe, INPUT, g_main_context_default());
if (!ipcsend(exe, caller, CCwoke, "", NULL))
fatal(1);
}
2018-06-04 03:32:27 +00:00
static void monitorcb(GFileMonitor *m, GFile *f, GFile *o, GFileMonitorEvent e,
gpointer p)
{
if (e == G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT)
g_timeout_add(100, quitif, NULL);
}
2018-05-19 15:51:50 +00:00
static gboolean svrinit(char *caller)
{
wyebwatch(svrexe, caller, dataf);
char path[PATH_MAX];
readlink("/proc/self/exe", path, PATH_MAX);
D(exepath %s, path)
GFile *gf = g_file_new_for_path(path);
GFileMonitor *gm = g_file_monitor_file(
gf, G_FILE_MONITOR_NONE, NULL, NULL);
g_signal_connect(gm, "changed", G_CALLBACK(monitorcb), NULL);
g_object_unref(gf);
2018-05-19 15:51:50 +00:00
return false;
}
bool wyebsvr(int argc, char **argv, wyebdataf func)
{
if (argc < 2 || !g_str_has_prefix(argv[1], PREFIX)) return false;
svrexe = argv[0];
dataf = func;
sloop = g_main_loop_new(NULL, false);
g_idle_add((GSourceFunc)svrinit, argv[1]);
g_main_loop_run(sloop);
return true;
}
2018-06-04 20:54:27 +00:00
typedef struct {
char *caller;
char *req;
int until;
} Dataargs;
static gpointer getdata(gpointer p)
2018-05-19 15:51:50 +00:00
{
2018-06-04 20:54:27 +00:00
Dataargs *args = p;
2018-05-19 15:51:50 +00:00
2018-06-04 20:54:27 +00:00
g_mutex_lock(&ordersm);
g_hash_table_add(orders, args->caller);
g_mutex_unlock(&ordersm);
char *data = dataf(args->req);
if (*args->caller && !ipcsend(svrexe, args->caller, CCret, "", data)) fatal(2);
2018-05-19 15:51:50 +00:00
g_free(data);
2018-06-04 20:54:27 +00:00
until(args->until);
g_mutex_lock(&ordersm);
g_hash_table_remove(orders, args->caller);
g_mutex_unlock(&ordersm);
g_free(args->caller);
g_free(args->req);
g_free(args);
return NULL;
2018-05-19 15:51:50 +00:00
}
//@client
static GMutex retm;
static GMainLoop *cloop;
static GMainContext *wctx = NULL;
static char *retdata = NULL;
static char *pid()
{
static char *pid = NULL;
if (!pid) pid = g_strdup_printf(PREFIX"%d", getpid());
return pid;
}
static void spawnsvr(char *exe)
{
char **argv = g_new0(char*, 2);
argv[0] = exe;
argv[1] = pid();
GError *err = NULL;
if (!g_spawn_async(NULL, argv, NULL, G_SPAWN_SEARCH_PATH,
NULL, NULL, NULL, &err))
{
g_print("err %s", err->message);
g_error_free(err);
}
g_free(argv);
}
static gboolean pingloop(gpointer p)
{
if (!ipcsend((char *)p, PING, CSping, pid(), NULL))
g_mutex_unlock(&retm);
return true;
}
static char *pppath = NULL;
static void removepp()
{
remove(pppath);
}
static gpointer watcht(char *exe)
{
wctx = g_main_context_new();
cloop = g_main_loop_new(wctx, true);
GSource *watch = ipcwatch(exe, pid(), wctx);
if (!pppath)
{
pppath = ipcpath(exe, pid());
atexit(removepp);
}
g_mutex_unlock(&retm);
g_main_loop_run(cloop);
g_source_unref(watch);
g_main_context_unref(wctx);
g_main_loop_unref(cloop);
cloop = NULL;
return NULL;
}
static void watchstart(char *exe)
{
g_mutex_lock(&retm);
g_thread_new("watch", (GThreadFunc)watcht, exe);
g_mutex_lock(&retm);
g_mutex_unlock(&retm);
}
static gboolean timeout(gpointer p)
{
g_mutex_unlock(&retm);
return false;
}
static GHashTable *lastsec = NULL;
static void reuntil(char *exe)
{
if (!lastsec) return;
int sec = GPOINTER_TO_INT(
g_hash_table_lookup(lastsec, exe));
2018-06-04 20:54:27 +00:00
2018-05-19 15:51:50 +00:00
if (sec)
wyebuntil(exe, sec);
}
//don't free
static char *request(char *exe, Com type, char *caller, char *req)
{
g_free(retdata);
retdata = NULL;
if (!cloop) watchstart(exe);
if (caller)
g_mutex_lock(&retm);
if (!ipcsend(exe, INPUT, type, caller, req))
{ //svr is not running
char *path = ipcpath(exe, "lock");
if (!g_file_test(path, G_FILE_TEST_EXISTS))
mkdirif(path);
int lock = open(path, O_RDONLY | O_CREAT, S_IRUSR);
g_free(path);
2018-05-29 16:00:21 +00:00
flock(lock, LOCK_EX);
2018-05-19 15:51:50 +00:00
//retry in single proc
if (!ipcsend(exe, INPUT, type, caller, req))
{
if (!caller)
g_mutex_lock(&retm);
GSource *tout = g_timeout_source_new(DUNTIL * 1000);
g_source_set_callback(tout, timeout, NULL, NULL);
g_source_attach(tout, wctx);
spawnsvr(exe);
g_mutex_lock(&retm);
g_mutex_unlock(&retm);
g_source_destroy(tout);
g_source_unref(tout);
//wyebloop doesn't know svr quits
reuntil(exe);
if (caller)
g_mutex_lock(&retm);
if (!ipcsend(exe, INPUT, type, caller, req))
fatal(3); //spawning svr failse is fatal
}
close(lock);
}
if (caller)
{
GSource *ping = g_timeout_source_new(DPINGTIME);
g_source_set_callback(ping, (GSourceFunc)pingloop, exe, NULL);
g_source_attach(ping, wctx); //attach to ping thread
g_mutex_lock(&retm);
g_mutex_unlock(&retm);
g_source_destroy(ping);
g_source_unref(ping);
}
return retdata;
}
char *wyebreq(char *exe, char *req)
{
return request(exe, CSdata, pid(), req);
}
2018-05-20 01:19:51 +00:00
void wyebsend(char *exe, char *req)
{
request(exe, CSdata, NULL, req);
}
2018-05-22 05:24:54 +00:00
typedef struct {
char *exe;
int sec;
} wyebsst;
static void wsfree(wyebsst *ss)
{
g_free(ss->exe);
g_free(ss);
}
static gboolean untilcb(wyebsst *ss)
2018-05-19 15:51:50 +00:00
{
if (!lastsec)
lastsec = g_hash_table_new(g_str_hash, g_str_equal);
2018-05-22 05:24:54 +00:00
g_hash_table_replace(lastsec, ss->exe, GINT_TO_POINTER(ss->sec));
2018-05-19 15:51:50 +00:00
2018-05-22 05:24:54 +00:00
char *str = g_strdup_printf("%d", ss->sec);
request(ss->exe, CSuntil, NULL, str);
2018-05-19 15:51:50 +00:00
g_free(str);
2018-05-22 05:24:54 +00:00
return false;
}
void wyebuntil(char *exe, int sec)
2018-05-19 15:51:50 +00:00
{
2018-05-22 05:24:54 +00:00
wyebsst *ss = g_new(wyebsst, 1);
ss->exe = g_strdup(exe);
ss->sec = sec;
g_idle_add_full(G_PRIORITY_DEFAULT, (GSourceFunc)untilcb,
ss, (GDestroyNotify)wsfree);
2018-05-19 15:51:50 +00:00
}
2018-05-22 05:24:54 +00:00
static gboolean loopcb(wyebsst *ss)
2018-05-19 15:51:50 +00:00
{
2018-05-22 05:24:54 +00:00
untilcb(ss);
2018-05-19 15:51:50 +00:00
return true;
}
guint wyebloop(char *exe, int sec, int loopsec)
{
2018-05-22 05:24:54 +00:00
wyebsst *ss = g_new(wyebsst, 1);
ss->exe = g_strdup(exe);
ss->sec = sec;
2018-05-19 15:51:50 +00:00
2018-05-22 05:24:54 +00:00
loopcb(ss);
2018-05-19 15:51:50 +00:00
return g_timeout_add_full(G_PRIORITY_DEFAULT,
loopsec * 1000,
(GSourceFunc)loopcb,
2018-05-22 05:24:54 +00:00
ss, (GDestroyNotify)wsfree);
2018-05-19 15:51:50 +00:00
}
static gboolean tcinputcb(GIOChannel *ch, GIOCondition c, char *exe)
{
char *line;
2018-05-29 06:06:35 +00:00
if (c == G_IO_HUP || G_IO_STATUS_EOF ==
g_io_channel_read_line(ch, &line, NULL, NULL, NULL))
2018-05-29 05:57:19 +00:00
exit(0);
2018-05-19 15:51:50 +00:00
if (!line) return true;
g_strstrip(line);
if (!strlen(line))
exit(0);
#if DEBUG
2018-05-22 03:02:56 +00:00
if (g_str_has_prefix(line, "l"))
2018-05-19 15:51:50 +00:00
{
start = g_get_monotonic_time();
2018-06-04 20:54:27 +00:00
for (int i = 0; i < 10000; i++)
2018-05-19 15:51:50 +00:00
{
char *is = g_strdup_printf("l%d", i);
//g_print("loop %d ret %s\n", i, wyebreq(exe, is));
2018-05-22 03:02:56 +00:00
if (*(line + 1) == 's')
wyebsend(exe, is);
else if (*(line + 1) == 'p')
D(pint %s, is)
else
wyebreq(exe, is);
2018-05-19 15:51:50 +00:00
g_free(is);
}
gint64 now = g_get_monotonic_time();
2018-05-22 03:02:56 +00:00
char *time = g_strdup_printf("time %f", (now - start) / 1000000.0);
wyebsend(exe, time);
g_free(time);
2018-05-19 15:51:50 +00:00
}
else
g_print("RET is %s\n", wyebreq(exe, line));
#else
g_print("%s\n", wyebreq(exe, line)); //don't free
#endif
g_free(line);
return true;
}
static gboolean tcinit(char *exe)
{
//wyebuntil(exe, 1);
2018-06-04 20:54:27 +00:00
//wyebloop(exe, 2, 1);
#if DEBUG
wyebloop(exe, 300, 200);
#else
2018-05-19 15:51:50 +00:00
wyebloop(exe, 2, 1);
2018-06-04 20:54:27 +00:00
#endif
2018-05-19 15:51:50 +00:00
GIOChannel *io = g_io_channel_unix_new(fileno(stdin));
2018-05-29 06:06:35 +00:00
g_io_add_watch(io, G_IO_IN | G_IO_HUP, (GIOFunc)tcinputcb, exe);
2018-05-19 15:51:50 +00:00
return false;
}
void wyebclient(char *exe)
{
//pid_t getpid(void);
sloop = g_main_loop_new(NULL, false);
g_idle_add((GSourceFunc)tcinit, exe);
g_main_loop_run(sloop);
}
//@ipccb
gboolean ipccb(GIOChannel *ch, GIOCondition c, gpointer p)
{
char *line;
g_io_channel_read_line(ch, &line, NULL, NULL, NULL);
if (!line) return true;
g_strchomp(line);
char *unesc = g_strcompress(line);
g_free(line);
Com type = *unesc;
char *id = unesc + 1;
2018-05-22 20:14:29 +00:00
char *arg = strchr(unesc, ':');
2018-05-19 15:51:50 +00:00
*arg++ = '\0';
#if DEBUG
static int i = 0;
D(%c ipccb%d %c/%s/%s;, svrexe ? 'S':'C', i++, type ,id ,arg)
2018-05-19 15:51:50 +00:00
#endif
static int lastuntil = DUNTIL;
switch (type) {
//server
case CSuntil:
until(lastuntil = atoi(arg));
break;
case CSdata:
2018-06-04 20:54:27 +00:00
{
Dataargs *args = g_new(Dataargs, 1);
args->caller = g_strdup(id);
args->req = g_strdup(arg);
args->until = lastuntil;
g_thread_unref(g_thread_new("getdata", getdata, args));
2018-05-19 15:51:50 +00:00
break;
2018-06-04 20:54:27 +00:00
}
2018-05-19 15:51:50 +00:00
case CSping:
2018-06-04 20:54:27 +00:00
g_mutex_lock(&ordersm);
2018-05-19 15:51:50 +00:00
if (!g_hash_table_lookup(orders, id))
ipcsend(svrexe, id, CClost, NULL, NULL);
2018-06-04 20:54:27 +00:00
g_mutex_unlock(&ordersm);
2018-05-19 15:51:50 +00:00
break;
//client
case CCret:
retdata = g_strdup(arg);
case CClost:
case CCwoke:
2018-06-04 20:54:27 +00:00
//for the case pinging at same time of ret
g_mutex_trylock(&retm);
2018-05-19 15:51:50 +00:00
g_mutex_unlock(&retm);
break;
}
g_free(unesc);
return true;
}
//test
#if DEBUG
static char *testdata(char *req)
{
//sleep(9);
//g_free(req); //makes crash
static int i = 0;
2018-06-04 20:54:27 +00:00
return g_strdup_printf("%d th test data. req is %s", ++i, req);
2018-05-19 15:51:50 +00:00
}
int main(int argc, char **argv)
{
start = g_get_monotonic_time();
// gint64 now = g_get_monotonic_time();
// D(time %ld %ld, now - start, now)
if (!wyebsvr(argc, argv, testdata))
wyebclient(argv[0]);
exit(0);
}
#endif