i2pd/DaemonLinux.cpp

155 lines
3.4 KiB
C++
Raw Normal View History

2014-04-20 05:54:34 +04:00
#include "Daemon.h"
#ifndef _WIN32
#include <signal.h>
#include <stdlib.h>
2016-03-08 23:02:32 +03:00
#include <thread>
2014-04-20 05:54:34 +04:00
#include <unistd.h>
2014-04-23 02:37:24 +04:00
#include <fcntl.h>
#include <sys/stat.h>
2014-04-20 05:54:34 +04:00
2016-01-20 03:00:00 +03:00
#include "Config.h"
#include "FS.h"
2014-04-23 02:37:24 +04:00
#include "Log.h"
2016-03-29 19:50:34 +03:00
#include "RouterContext.h"
#include "ClientContext.h"
2014-04-22 08:15:07 +04:00
2014-04-20 05:54:34 +04:00
void handle_signal(int sig)
{
switch (sig)
{
2016-03-29 19:34:53 +03:00
case SIGHUP:
LogPrint(eLogInfo, "Daemon: Got SIGHUP, reopening logs and tunnel configuration...");
2016-03-29 19:34:53 +03:00
i2p::log::Logger().Reopen ();
i2p::client::context.ReloadConfig();
2016-03-29 19:34:53 +03:00
break;
case SIGINT:
2016-10-31 13:27:27 +03:00
if (i2p::context.AcceptsTunnels () && !Daemon.gracefulShutdownInterval)
2016-03-30 04:37:30 +03:00
{
i2p::context.SetAcceptsTunnels (false);
2016-10-31 13:27:27 +03:00
Daemon.gracefulShutdownInterval = 10*60; // 10 minutes
LogPrint(eLogInfo, "Graceful shutdown after ", Daemon.gracefulShutdownInterval, " seconds");
2016-03-30 04:37:30 +03:00
}
else
Daemon.running = 0;
2016-03-29 19:34:53 +03:00
break;
case SIGABRT:
case SIGTERM:
Daemon.running = 0; // Exit loop
2014-04-20 05:54:34 +04:00
break;
}
}
namespace i2p
{
namespace util
{
bool DaemonLinux::start()
{
2016-06-01 03:00:00 +03:00
if (isDaemon)
2014-04-20 05:54:34 +04:00
{
pid_t pid;
pid = fork();
2014-07-02 21:48:45 +04:00
if (pid > 0) // parent
::exit (EXIT_SUCCESS);
2014-04-20 05:54:34 +04:00
2014-07-02 21:48:45 +04:00
if (pid < 0) // error
2016-01-11 13:55:18 +03:00
{
LogPrint(eLogError, "Daemon: could not fork: ", strerror(errno));
2014-07-02 21:48:45 +04:00
return false;
2016-01-11 13:55:18 +03:00
}
2014-07-02 21:48:45 +04:00
// child
umask(S_IWGRP | S_IRWXO); // 0027
2014-04-20 05:54:34 +04:00
int sid = setsid();
if (sid < 0)
{
2015-12-18 15:25:48 +03:00
LogPrint(eLogError, "Daemon: could not create process group.");
2014-07-02 21:48:45 +04:00
return false;
2014-04-20 05:54:34 +04:00
}
std::string d = i2p::fs::GetDataDir();
2016-01-11 14:30:19 +03:00
if (chdir(d.c_str()) != 0)
{
LogPrint(eLogError, "Daemon: could not chdir: ", strerror(errno));
return false;
}
2014-07-02 21:48:45 +04:00
2016-10-22 23:38:45 +03:00
#if !defined(__OpenBSD__)
2016-06-01 03:00:00 +03:00
// point std{in,out,err} descriptors to /dev/null
2016-06-14 03:52:17 +03:00
stdin = freopen("/dev/null", "r", stdin);
2016-06-01 03:00:00 +03:00
stdout = freopen("/dev/null", "w", stdout);
stderr = freopen("/dev/null", "w", stderr);
2016-10-22 23:38:45 +03:00
#endif
2014-04-20 05:54:34 +04:00
}
// Pidfile
2016-01-11 13:58:39 +03:00
// this code is c-styled and a bit ugly, but we need fd for locking pidfile
2016-01-20 03:00:00 +03:00
std::string pidfile; i2p::config::GetOption("pidfile", pidfile);
if (pidfile == "") {
pidfile = i2p::fs::DataDirPath("i2pd.pid");
}
2016-01-11 13:58:39 +03:00
if (pidfile != "") {
pidFH = open(pidfile.c_str(), O_RDWR | O_CREAT, 0600);
if (pidFH < 0)
{
LogPrint(eLogError, "Daemon: could not create pid file ", pidfile, ": ", strerror(errno));
return false;
}
if (lockf(pidFH, F_TLOCK, 0) != 0)
{
LogPrint(eLogError, "Daemon: could not lock pid file ", pidfile, ": ", strerror(errno));
return false;
}
char pid[10];
sprintf(pid, "%d\n", getpid());
ftruncate(pidFH, 0);
2016-01-11 14:30:19 +03:00
if (write(pidFH, pid, strlen(pid)) < 0)
{
LogPrint(eLogError, "Daemon: could not write pidfile: ", strerror(errno));
return false;
}
2014-04-20 05:54:34 +04:00
}
2016-10-31 13:27:27 +03:00
gracefulShutdownInterval = 0; // not specified
2014-04-20 05:54:34 +04:00
// 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);
2014-04-22 08:15:07 +04:00
return Daemon_Singleton::start();
2014-04-20 05:54:34 +04:00
}
bool DaemonLinux::stop()
{
i2p::fs::Remove(pidfile);
2014-04-20 05:54:34 +04:00
2014-07-02 21:48:45 +04:00
return Daemon_Singleton::stop();
2014-04-20 05:54:34 +04:00
}
2016-03-08 23:02:32 +03:00
void DaemonLinux::run ()
{
while (running)
{
std::this_thread::sleep_for (std::chrono::seconds(1));
2016-10-31 13:27:27 +03:00
if (gracefulShutdownInterval)
2016-03-29 19:34:53 +03:00
{
2016-10-31 13:27:27 +03:00
gracefulShutdownInterval--; // - 1 second
if (gracefulShutdownInterval <= 0)
2016-03-29 19:34:53 +03:00
{
LogPrint(eLogInfo, "Graceful shutdown");
return;
}
}
2016-03-08 23:02:32 +03:00
}
}
2014-04-20 05:54:34 +04:00
}
}
2014-04-22 08:15:07 +04:00
#endif