X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=common%2Fcommon.c;h=1b8cd980b681040703db3717f756e676870d1b5b;hb=d622febc1fb702194f7ac3f95bfa6cba448dcc5b;hp=3688c9d9e758422864c2fcd4f0387e5faf53dde9;hpb=8977d252fc44ae953df4bde4a2f1c5895beea4e0;p=apps%2Fpfixtools.git diff --git a/common/common.c b/common/common.c index 3688c9d..1b8cd98 100644 --- a/common/common.c +++ b/common/common.c @@ -41,29 +41,23 @@ #include "common.h" -sig_atomic_t sigint = false; -sig_atomic_t sighup = false; +bool daemon_process = true; +int log_level = LOG_INFO; +bool log_syslog = false; +const char *log_state = ""; static FILE *pidfile = NULL; void common_sighandler(int sig) { switch (sig) { - case SIGINT: - sigint = true; - return; - - case SIGHUP: - sighup = true; - return; - default: - syslog(LOG_ERR, "Killed (got signal %d)...", sig); + err("Killed (got signal %d)...", sig); exit(-1); } } -static int setnonblock(int sock) +int setnonblock(int sock) { int res = fcntl(sock, F_GETFL); @@ -193,10 +187,13 @@ int daemon_detach(void) open("/dev/null", O_RDWR); pid = fork(); - if (pid < 0) + if (pid < 0) { return -1; - if (pid) + } + if (pid) { + daemon_process = false; exit(0); + } setsid(); return 0; @@ -253,8 +250,10 @@ int pidfile_refresh(void) static void pidfile_close(void) { if (pidfile) { - rewind(pidfile); - ftruncate(fileno(pidfile), 0); + if (daemon_process) { + rewind(pidfile); + ftruncate(fileno(pidfile), 0); + } fclose(pidfile); pidfile = NULL; } @@ -264,17 +263,17 @@ int common_setup(const char* pidfilename, bool unsafe, const char* runas_user, const char* runas_group, bool daemonize) { if (pidfile_open(pidfilename) < 0) { - syslog(LOG_CRIT, "unable to write pidfile %s", pidfilename); + crit("unable to write pidfile %s", pidfilename); return EXIT_FAILURE; } if (!unsafe && drop_privileges(runas_user, runas_group) < 0) { - syslog(LOG_CRIT, "unable to drop privileges"); + crit("unable to drop privileges"); return EXIT_FAILURE; } if (daemonize && daemon_detach() < 0) { - syslog(LOG_CRIT, "unable to fork"); + crit("unable to fork"); return EXIT_FAILURE; } @@ -282,31 +281,41 @@ int common_setup(const char* pidfilename, bool unsafe, const char* runas_user, return EXIT_SUCCESS; } -extern initcall_t __madinit[]; -extern exitcall_t __madexit[]; +#include "array.h" + +ARRAY(exitcall_t) + +static A(exitcall_t) __exit = ARRAY_INIT; + +void common_register_exit(exitcall_t exitcall) +{ + array_add(__exit, exitcall); +} static void common_shutdown(void) { - syslog(LOG_INFO, "Stopping..."); + log_state = "stopping "; + if (daemon_process && log_syslog) { + info(""); + } pidfile_close(); - - for (int i = -1; __madexit[i]; i--) { - (*__madexit[i])(); + for (int i = array_len(__exit) - 1 ; i >= 0 ; --i) { + array_elt(__exit, i)(); } + array_wipe(__exit); } -static void __attribute__((__constructor__,__used__)) -common_initialize(void) +void common_init(void) { + static bool __ran = false; + if (__ran) { + return; + } + log_state = "starting "; if (atexit(common_shutdown)) { fputs("Cannot hook my atexit function, quitting !\n", stderr); abort(); } - - for (int i = 0; __madinit[i]; i++) { - if ((*__madinit[i])()) { - exit(EXIT_FAILURE); - } - } + __ran = true; }