mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
3.1 KiB
120 lines
3.1 KiB
11 years ago
|
#include "Daemon.h"
|
||
|
|
||
|
#ifndef _WIN32
|
||
|
|
||
|
#include <signal.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <unistd.h>
|
||
11 years ago
|
#include <fcntl.h>
|
||
|
#include <sys/stat.h>
|
||
11 years ago
|
|
||
9 years ago
|
#include "util/Log.h"
|
||
9 years ago
|
#include "util/util.h"
|
||
11 years ago
|
|
||
|
|
||
11 years ago
|
void handle_signal(int sig)
|
||
|
{
|
||
9 years ago
|
switch (sig)
|
||
|
{
|
||
|
case SIGHUP:
|
||
|
if (i2p::util::config::GetArg("daemon", 0) == 1)
|
||
|
{
|
||
|
static bool first=true;
|
||
|
if (first)
|
||
|
{
|
||
|
first=false;
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
LogPrint("Reloading config.");
|
||
|
i2p::util::filesystem::ReadConfigFile(i2p::util::config::mapArgs, i2p::util::config::mapMultiArgs);
|
||
|
break;
|
||
|
case SIGABRT:
|
||
|
case SIGTERM:
|
||
|
case SIGINT:
|
||
|
Daemon.running = 0; // Exit loop
|
||
|
break;
|
||
|
}
|
||
11 years ago
|
}
|
||
|
|
||
|
|
||
|
namespace i2p
|
||
|
{
|
||
9 years ago
|
namespace util
|
||
|
{
|
||
|
bool DaemonLinux::start()
|
||
|
{
|
||
|
if (isDaemon == 1)
|
||
|
{
|
||
|
pid_t pid;
|
||
|
pid = fork();
|
||
|
if (pid > 0) // parent
|
||
|
::exit (EXIT_SUCCESS);
|
||
|
|
||
|
if (pid < 0) // error
|
||
|
return false;
|
||
|
|
||
|
// child
|
||
|
umask(0);
|
||
|
int sid = setsid();
|
||
|
if (sid < 0)
|
||
|
{
|
||
|
LogPrint("Error, could not create process group.");
|
||
|
return false;
|
||
|
}
|
||
|
std::string d(i2p::util::filesystem::GetDataDir().string ()); // make a copy
|
||
|
chdir(d.c_str());
|
||
|
|
||
|
// close stdin/stdout/stderr descriptors
|
||
|
::close (0);
|
||
|
::open ("/dev/null", O_RDWR);
|
||
|
::close (1);
|
||
|
::open ("/dev/null", O_RDWR);
|
||
|
::close (2);
|
||
|
::open ("/dev/null", O_RDWR);
|
||
|
}
|
||
|
|
||
|
// Pidfile
|
||
|
pidfile = IsService () ? "/var/run" : i2p::util::filesystem::GetDataDir().string();
|
||
|
pidfile.append("/i2pd.pid");
|
||
|
pidFilehandle = open(pidfile.c_str(), O_RDWR | O_CREAT, 0600);
|
||
|
if (pidFilehandle == -1)
|
||
|
{
|
||
|
LogPrint("Error, could not create pid file (", pidfile, ")\nIs an instance already running?");
|
||
|
return false;
|
||
|
}
|
||
|
if (lockf(pidFilehandle, F_TLOCK, 0) == -1)
|
||
|
{
|
||
|
LogPrint("Error, could not lock pid file (", pidfile, ")\nIs an instance already running?");
|
||
|
return false;
|
||
|
}
|
||
|
char pid[10];
|
||
|
sprintf(pid, "%d\n", getpid());
|
||
|
write(pidFilehandle, pid, strlen(pid));
|
||
|
|
||
|
// Signal handler
|
||
|
struct sigaction sa;
|
||
|
sa.sa_handler = handle_signal;
|
||
|
sigemptyset(&sa.sa_mask);
|
||
|
sa.sa_flags = SA_RESTART;
|
||
|
sigaction(SIGHUP, &sa, 0);
|
||
|
sigaction(SIGABRT, &sa, 0);
|
||
|
sigaction(SIGTERM, &sa, 0);
|
||
|
sigaction(SIGINT, &sa, 0);
|
||
|
|
||
|
return Daemon_Singleton::start();
|
||
|
}
|
||
|
|
||
|
bool DaemonLinux::stop()
|
||
|
{
|
||
|
close(pidFilehandle);
|
||
|
unlink(pidfile.c_str());
|
||
|
|
||
|
return Daemon_Singleton::stop();
|
||
|
}
|
||
|
|
||
|
}
|
||
11 years ago
|
}
|
||
|
|
||
11 years ago
|
#endif
|