i2pd/i2p.cpp

194 lines
4.3 KiB
C++
Raw Normal View History

#ifdef _WIN32
#define _CRT_SECURE_NO_WARNINGS // to use freopen
#endif
2013-12-10 17:05:42 +04:00
#include <iostream>
2014-01-12 23:35:51 +04:00
#include <thread>
2013-12-10 17:05:42 +04:00
#include <cryptopp/integer.h>
#include <boost/filesystem.hpp>
2014-02-05 03:50:13 +04:00
#ifndef _WIN32
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#else
#include "./Win32/Win32Service.h"
2014-02-05 03:50:13 +04:00
#endif
2013-12-10 17:05:42 +04:00
#include "Log.h"
#include "base64.h"
#include "Transports.h"
#include "NTCPSession.h"
#include "RouterInfo.h"
#include "RouterContext.h"
#include "Tunnel.h"
#include "NetDb.h"
#include "HTTPServer.h"
2014-03-18 02:31:29 +04:00
#include "HTTPProxy.h"
#include "Garlic.h"
2014-01-30 04:56:48 +04:00
#include "util.h"
2014-03-15 17:16:55 +04:00
#include "Streaming.h"
2013-12-10 17:05:42 +04:00
2014-02-05 04:28:18 +04:00
// Global
2014-02-09 01:06:01 +04:00
volatile int running = 1;
volatile int isDaemon;
2014-02-05 04:28:18 +04:00
2014-02-05 03:50:13 +04:00
#ifndef _WIN32
void handle_signal(int sig)
{
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:
running = 0; // Exit loop
break;
}
2014-02-05 04:28:18 +04:00
}
2014-02-05 03:50:13 +04:00
#endif
2014-02-05 04:28:18 +04:00
2014-01-30 04:56:48 +04:00
int main( int argc, char* argv[] )
2013-12-10 17:05:42 +04:00
{
i2p::util::config::OptionParser(argc,argv);
2014-02-09 01:06:01 +04:00
volatile int isDaemon = i2p::util::config::GetArg("-daemon", 0);
#ifdef _WIN32
setlocale(LC_CTYPE, "");
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
setlocale(LC_ALL, "Russian");
#endif
#ifdef _WIN32
service_control(isDaemon);
#endif
LogPrint("\n\n\n\ni2pd starting\n");
2014-02-01 07:51:58 +04:00
LogPrint("data directory: ", i2p::util::filesystem::GetDataDir().string());
i2p::util::filesystem::ReadConfigFile(i2p::util::config::mapArgs, i2p::util::config::mapMultiArgs);
2014-02-09 01:06:01 +04:00
volatile int isLogging = i2p::util::config::GetArg("-log", 0);
if (isLogging == 1)
{
std::string logfile = i2p::util::filesystem::GetDataDir().string();
#ifndef _WIN32
logfile.append("/debug.log");
#else
logfile.append("\\debug.log");
#endif
freopen(logfile.c_str(),"a",stdout);
LogPrint("Logging to file enabled.");
}
2014-02-05 03:50:13 +04:00
#ifndef _WIN32
if (isDaemon == 1)
{
pid_t pid;
pid = fork();
if (pid > 0)
{
g_Log.Stop();
return 0;
}
if (pid < 0)
{
return -1;
}
umask(0);
int sid = setsid();
if (sid < 0)
{
LogPrint("Error, could not create process group.");
return -1;
}
chdir(i2p::util::filesystem::GetDataDir().string().c_str());
}
2014-02-05 04:28:18 +04:00
// Pidfile
std::string pidfile = i2p::util::filesystem::GetDataDir().string();
pidfile.append("/i2pd.pid");
int 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 -1;
}
if (lockf(pidFilehandle,F_TLOCK,0) == -1)
{
2014-02-05 16:47:00 +04:00
LogPrint("Error, could not lock pid file (", pidfile, ")\nIs an instance already running?");
return -1;
}
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);
2014-02-05 03:50:13 +04:00
#endif
//TODO: This is an ugly workaround. fix it.
//TODO: Autodetect public IP.
i2p::context.OverrideNTCPAddress(i2p::util::config::GetCharArg("-host", "127.0.0.1"),
i2p::util::config::GetArg("-port", 17070));
2014-01-30 04:56:48 +04:00
2014-02-05 04:28:18 +04:00
i2p::util::HTTPServer httpServer (i2p::util::config::GetArg("-httpport", 7070));
2013-12-10 17:05:42 +04:00
httpServer.Start ();
2013-12-10 17:05:42 +04:00
i2p::data::netdb.Start ();
i2p::transports.Start ();
i2p::tunnel::tunnels.Start ();
i2p::garlic::routing.Start ();
2014-03-15 17:16:55 +04:00
i2p::stream::StartStreaming ();
2014-03-18 02:31:29 +04:00
i2p::proxy::HTTPProxy httpProxy (i2p::util::config::GetArg("-httpproxyport", 4446));
httpProxy.Start();
while (running)
{
2014-02-05 03:50:13 +04:00
//TODO Meeh: Find something better to do here.
2014-02-05 04:28:18 +04:00
std::this_thread::sleep_for (std::chrono::seconds(1));
}
2014-02-05 04:28:18 +04:00
LogPrint("Shutdown started.");
httpProxy.Stop ();
2014-03-15 17:16:55 +04:00
i2p::stream::StopStreaming ();
i2p::garlic::routing.Stop ();
i2p::tunnel::tunnels.Stop ();
i2p::transports.Stop ();
i2p::data::netdb.Stop ();
httpServer.Stop ();
2014-02-05 03:50:13 +04:00
if (isLogging == 1)
{
fclose (stdout);
}
#ifndef _WIN32
close(pidFilehandle);
unlink(pidfile.c_str());
#endif
2013-12-10 17:05:42 +04:00
return 0;
}