mirror of
https://git.wownero.com/wownero/wownero-puddle.git
synced 2024-08-15 01:03:20 +00:00
add options to daemonize
This commit is contained in:
parent
9c6ef738f1
commit
ac275237c5
3 changed files with 220 additions and 13 deletions
128
src/forkoff.c
Normal file
128
src/forkoff.c
Normal file
|
@ -0,0 +1,128 @@
|
|||
/*
|
||||
Copyright (c) 2014-2019, The Monero Project
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
Parts of the project are originally copyright (c) 2012-2013 The Cryptonote
|
||||
developers.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <fcntl.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <signal.h>
|
||||
|
||||
void
|
||||
forkoff(const char *pidname)
|
||||
{
|
||||
FILE *pidfile = NULL;
|
||||
if (pidname)
|
||||
{
|
||||
pidfile = fopen(pidname, "r");
|
||||
unsigned pid;
|
||||
if (pidfile)
|
||||
{
|
||||
if (fscanf(pidfile, "%u", &pid) > 0 && pid > 1 && kill(pid, 0) == 0)
|
||||
{
|
||||
printf("Already running, no need to start again.\n");
|
||||
fclose(pidfile);
|
||||
exit(1);
|
||||
}
|
||||
fclose(pidfile);
|
||||
pidfile = 0;
|
||||
}
|
||||
pidfile = fopen(pidname, "w");
|
||||
if (!pidfile)
|
||||
{
|
||||
printf("Cannot open PID file for writing. Aborting.\n");
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
pid_t pid;
|
||||
if ((pid = fork()))
|
||||
{
|
||||
if (pid > 0)
|
||||
{
|
||||
if (pidfile) fclose(pidfile);
|
||||
exit(0);
|
||||
}
|
||||
else
|
||||
{
|
||||
printf("First fork failed. Aborting.\n");
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
setsid();
|
||||
|
||||
if ((pid = fork()))
|
||||
{
|
||||
if (pid > 0)
|
||||
{
|
||||
if (pidfile) fclose(pidfile);
|
||||
exit(0);
|
||||
}
|
||||
else
|
||||
{
|
||||
printf("Second fork failed. Aborting.\n");
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
if (pidfile)
|
||||
{
|
||||
fprintf(pidfile, "%u", getpid());
|
||||
fclose(pidfile);
|
||||
}
|
||||
|
||||
close(0);
|
||||
close(1);
|
||||
close(2);
|
||||
|
||||
/* no stdin */
|
||||
if (open("/dev/null", O_RDONLY) < 0)
|
||||
{
|
||||
printf("Failed to open /dev/null for input. Aborting.\n");
|
||||
exit(1);
|
||||
}
|
||||
/* no stdout */
|
||||
if (open("/dev/null", O_WRONLY) < 0)
|
||||
{
|
||||
printf("Failed to open /dev/null for output. Aborting.\n");
|
||||
exit(1);
|
||||
}
|
||||
/* stdout to stderror */
|
||||
if (dup(1) < 0)
|
||||
{
|
||||
printf("Unable to dup stdout to stderror\n");
|
||||
exit(1);
|
||||
}
|
||||
}
|
40
src/forkoff.h
Normal file
40
src/forkoff.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
Copyright (c) 2014-2019, The Monero Project
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
Parts of the project are originally copyright (c) 2012-2013 The Cryptonote
|
||||
developers.
|
||||
*/
|
||||
|
||||
#ifndef FORKOFF_H
|
||||
#define FORKOFF_H
|
||||
|
||||
void forkoff(const char *pidname);
|
||||
|
||||
#endif
|
65
src/pool.c
65
src/pool.c
|
@ -67,6 +67,7 @@ developers.
|
|||
#include "xmr.h"
|
||||
#include "log.h"
|
||||
#include "webui.h"
|
||||
#include "forkoff.h"
|
||||
|
||||
#define MAX_LINE 8192
|
||||
#define POOL_CLIENTS_GROW 1024
|
||||
|
@ -140,6 +141,8 @@ typedef struct config_t
|
|||
bool block_notified;
|
||||
bool disable_self_select;
|
||||
char data_dir[MAX_PATH];
|
||||
char pid_file[MAX_PATH];
|
||||
bool forked;
|
||||
} config_t;
|
||||
|
||||
typedef struct block_template_t
|
||||
|
@ -2602,7 +2605,7 @@ client_on_accept(evutil_socket_t listener, short event, void *arg)
|
|||
|
||||
static void
|
||||
read_config(const char *config_file, const char *log_file, bool block_notified,
|
||||
const char *data_dir)
|
||||
const char *data_dir, const char *pid_file, bool forked)
|
||||
{
|
||||
/* Start with some defaults for any missing... */
|
||||
strncpy(config.rpc_host, "127.0.0.1", 10);
|
||||
|
@ -2731,7 +2734,15 @@ read_config(const char *config_file, const char *log_file, bool block_notified,
|
|||
}
|
||||
else if (strcmp(key, "data-dir") == 0)
|
||||
{
|
||||
strncpy(config.data_dir, val, sizeof(config.data_dir));
|
||||
strncpy(config.data_dir, val, sizeof(config.data_dir));
|
||||
}
|
||||
else if (strcmp(key, "pid-file") == 0)
|
||||
{
|
||||
strncpy(config.pid_file, val, sizeof(config.pid_file));
|
||||
}
|
||||
else if (strcmp(key, "forked") == 0)
|
||||
{
|
||||
config.forked = atoi(val);
|
||||
}
|
||||
}
|
||||
fclose(fp);
|
||||
|
@ -2740,6 +2751,10 @@ read_config(const char *config_file, const char *log_file, bool block_notified,
|
|||
strncpy(config.log_file, log_file, sizeof(config.log_file));
|
||||
if (data_dir)
|
||||
strncpy(config.data_dir, data_dir, sizeof(config.data_dir));
|
||||
if (pid_file)
|
||||
strncpy(config.pid_file, pid_file, sizeof(config.pid_file));
|
||||
if (forked)
|
||||
config.forked = forked;
|
||||
|
||||
if (!config.pool_wallet[0])
|
||||
{
|
||||
|
@ -2761,14 +2776,14 @@ read_config(const char *config_file, const char *log_file, bool block_notified,
|
|||
"log_level = %u\n webui_port=%u\n "
|
||||
"log-file = %s\n block-notified = %u\n "
|
||||
"disable-self-select = %u\n "
|
||||
"data-dir = %s\n",
|
||||
"data-dir = %s\n pid-file = %s\n forked = %u\n",
|
||||
config.rpc_host, config.rpc_port, config.rpc_timeout,
|
||||
config.pool_wallet, config.pool_start_diff, config.share_mul,
|
||||
config.pool_fee, config.payment_threshold,
|
||||
config.wallet_rpc_host, config.wallet_rpc_port, config.pool_port,
|
||||
config.log_level, config.webui_port,
|
||||
config.log_file, config.block_notified, config.disable_self_select,
|
||||
config.data_dir);
|
||||
config.data_dir, config.pid_file, config.forked);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -2880,30 +2895,27 @@ cleanup(void)
|
|||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
setvbuf(stdout, NULL, _IONBF, 0);
|
||||
signal(SIGINT, sigint_handler);
|
||||
atexit(cleanup);
|
||||
|
||||
log_set_level(LOG_INFO);
|
||||
log_info("Starting pool");
|
||||
|
||||
static struct option options[] =
|
||||
{
|
||||
{"config-file", required_argument, 0, 'c'},
|
||||
{"log-file", required_argument, 0, 'l'},
|
||||
{"block-notified", optional_argument, 0, 'b'},
|
||||
{"data-dir", required_argument, 0, 'd'},
|
||||
{"pid-file", required_argument, 0, 'p'},
|
||||
{"forked", optional_argument, 0, 'f'},
|
||||
{0, 0, 0, 0}
|
||||
};
|
||||
char *config_file = NULL;
|
||||
char *log_file = NULL;
|
||||
bool block_notified = false;
|
||||
char *data_dir = NULL;
|
||||
char *pid_file = NULL;
|
||||
bool forked = false;
|
||||
int c;
|
||||
while (1)
|
||||
{
|
||||
int option_index = 0;
|
||||
c = getopt_long (argc, argv, "c:l:b:d:",
|
||||
c = getopt_long (argc, argv, "c:l:b::d:p:f::",
|
||||
options, &option_index);
|
||||
if (c == -1)
|
||||
break;
|
||||
|
@ -2923,9 +2935,22 @@ int main(int argc, char **argv)
|
|||
case 'd':
|
||||
data_dir = strdup(optarg);
|
||||
break;
|
||||
case 'p':
|
||||
pid_file = strdup(optarg);
|
||||
break;
|
||||
case 'f':
|
||||
forked = true;
|
||||
if (optarg)
|
||||
forked = atoi(optarg);
|
||||
break;
|
||||
}
|
||||
}
|
||||
read_config(config_file, log_file, block_notified, data_dir);
|
||||
setvbuf(stdout, NULL, _IONBF, 0);
|
||||
log_set_level(LOG_INFO);
|
||||
log_info("Starting pool");
|
||||
|
||||
read_config(config_file, log_file, block_notified, data_dir,
|
||||
pid_file, forked);
|
||||
|
||||
if (config_file)
|
||||
free(config_file);
|
||||
|
@ -2933,6 +2958,8 @@ int main(int argc, char **argv)
|
|||
free(log_file);
|
||||
if (data_dir)
|
||||
free(data_dir);
|
||||
if (pid_file)
|
||||
free(pid_file);
|
||||
|
||||
log_set_level(LOG_FATAL - config.log_level);
|
||||
if (config.log_file[0])
|
||||
|
@ -2944,6 +2971,18 @@ int main(int argc, char **argv)
|
|||
log_set_fp(fd_log);
|
||||
}
|
||||
|
||||
if (config.forked)
|
||||
{
|
||||
log_info("Daemonizing");
|
||||
char *pf = NULL;
|
||||
if (config.pid_file[0])
|
||||
pf = config.pid_file;
|
||||
forkoff(pf);
|
||||
}
|
||||
|
||||
signal(SIGINT, sigint_handler);
|
||||
atexit(cleanup);
|
||||
|
||||
int err = 0;
|
||||
if ((err = database_init(config.data_dir)) != 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue