i2pd/libi2pd/api.cpp

154 lines
4.2 KiB
C++
Raw Normal View History

/*
2024-01-12 18:13:07 +03:00
* Copyright (c) 2013-2024, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/
2014-11-17 22:42:45 +03:00
#include <string>
#include <map>
2016-01-20 03:00:00 +03:00
#include "Config.h"
2014-11-17 22:42:45 +03:00
#include "Log.h"
#include "NetDb.hpp"
2014-11-17 22:42:45 +03:00
#include "Transports.h"
#include "Tunnel.h"
#include "RouterContext.h"
#include "Identity.h"
#include "Destination.h"
2016-01-01 00:02:10 +03:00
#include "Crypto.h"
#include "FS.h"
2014-11-17 20:37:40 +03:00
#include "api.h"
namespace i2p
{
namespace api
{
2014-11-18 17:33:58 +03:00
void InitI2P (int argc, char* argv[], const char * appName)
2014-11-17 22:42:45 +03:00
{
2016-01-20 03:00:00 +03:00
i2p::config::Init ();
2017-03-29 17:51:32 +03:00
i2p::config::ParseCmdline (argc, argv, true); // ignore unknown options and help
2016-01-20 03:00:00 +03:00
i2p::config::Finalize ();
std::string datadir; i2p::config::GetOption("datadir", datadir);
i2p::fs::SetAppName (appName);
i2p::fs::DetectDataDir(datadir, false);
i2p::fs::Init();
bool precomputation; i2p::config::GetOption("precomputation.elgamal", precomputation);
bool aesni; i2p::config::GetOption("cpuext.aesni", aesni);
bool forceCpuExt; i2p::config::GetOption("cpuext.force", forceCpuExt);
i2p::crypto::InitCrypto (precomputation, aesni, forceCpuExt);
int netID; i2p::config::GetOption("netid", netID);
i2p::context.SetNetID (netID);
2024-01-12 18:13:07 +03:00
bool checkReserved; i2p::config::GetOption("reservedrange", checkReserved);
i2p::transport::transports.SetCheckReserved(checkReserved);
2018-01-06 06:48:51 +03:00
i2p::context.Init ();
2014-11-17 22:42:45 +03:00
}
2016-01-01 00:02:10 +03:00
void TerminateI2P ()
{
i2p::crypto::TerminateCrypto ();
2018-01-06 06:48:51 +03:00
}
2016-02-04 20:36:58 +03:00
void StartI2P (std::shared_ptr<std::ostream> logStream)
2014-11-17 22:42:45 +03:00
{
if (logStream)
2016-03-27 03:17:29 +03:00
i2p::log::Logger().SendTo (logStream);
else
2016-03-27 03:17:29 +03:00
i2p::log::Logger().SendTo (i2p::fs::DataDirPath (i2p::fs::GetAppName () + ".log"));
i2p::log::Logger().Start ();
i2p::transport::InitTransports ();
LogPrint(eLogInfo, "API: Starting NetDB");
2014-11-17 22:42:45 +03:00
i2p::data::netdb.Start();
LogPrint(eLogInfo, "API: Starting Transports");
2014-11-17 22:42:45 +03:00
i2p::transport::transports.Start();
LogPrint(eLogInfo, "API: Starting Tunnels");
2014-11-17 22:42:45 +03:00
i2p::tunnel::tunnels.Start();
LogPrint(eLogInfo, "API: Starting Router context");
i2p::context.Start();
2014-11-17 22:42:45 +03:00
}
void StopI2P ()
{
LogPrint(eLogInfo, "API: Shutting down");
LogPrint(eLogInfo, "API: Stopping Router context");
i2p::context.Stop();
LogPrint(eLogInfo, "API: Stopping Tunnels");
2014-11-17 22:42:45 +03:00
i2p::tunnel::tunnels.Stop();
LogPrint(eLogInfo, "API: Stopping Transports");
2014-11-17 22:42:45 +03:00
i2p::transport::transports.Stop();
LogPrint(eLogInfo, "API: Stopping NetDB");
2014-11-17 22:42:45 +03:00
i2p::data::netdb.Stop();
i2p::log::Logger().Stop ();
2014-11-17 22:42:45 +03:00
}
2014-11-18 01:00:30 +03:00
2015-11-03 17:15:49 +03:00
void RunPeerTest ()
{
i2p::transport::transports.PeerTest ();
2018-01-06 06:48:51 +03:00
}
2015-11-03 17:15:49 +03:00
std::shared_ptr<i2p::client::ClientDestination> CreateLocalDestination (const i2p::data::PrivateKeys& keys, bool isPublic,
2014-12-11 21:28:37 +03:00
const std::map<std::string, std::string> * params)
2014-11-18 01:00:30 +03:00
{
auto localDestination = std::make_shared<i2p::client::RunnableClientDestination> (keys, isPublic, params);
2014-11-18 01:00:30 +03:00
localDestination->Start ();
return localDestination;
}
2015-11-03 17:15:49 +03:00
std::shared_ptr<i2p::client::ClientDestination> CreateLocalDestination (bool isPublic, i2p::data::SigningKeyType sigType,
2014-12-11 21:28:37 +03:00
const std::map<std::string, std::string> * params)
2014-11-18 01:00:30 +03:00
{
2014-11-29 00:46:26 +03:00
i2p::data::PrivateKeys keys = i2p::data::PrivateKeys::CreateRandomKeys (sigType);
auto localDestination = std::make_shared<i2p::client::RunnableClientDestination> (keys, isPublic, params);
2014-11-18 01:00:30 +03:00
localDestination->Start ();
return localDestination;
}
2015-11-03 17:15:49 +03:00
void DestroyLocalDestination (std::shared_ptr<i2p::client::ClientDestination> dest)
2014-11-18 01:00:30 +03:00
{
if (dest)
dest->Stop ();
}
2014-11-18 17:33:58 +03:00
2015-11-03 17:15:49 +03:00
void RequestLeaseSet (std::shared_ptr<i2p::client::ClientDestination> dest, const i2p::data::IdentHash& remote)
2014-11-18 17:33:58 +03:00
{
if (dest)
dest->RequestDestination (remote);
2014-11-18 17:33:58 +03:00
}
2015-11-03 17:15:49 +03:00
std::shared_ptr<i2p::stream::Stream> CreateStream (std::shared_ptr<i2p::client::ClientDestination> dest, const i2p::data::IdentHash& remote)
2014-11-18 17:33:58 +03:00
{
2014-12-09 22:59:19 +03:00
if (!dest) return nullptr;
auto leaseSet = dest->FindLeaseSet (remote);
2014-11-18 17:33:58 +03:00
if (leaseSet)
{
2015-01-27 19:27:58 +03:00
auto stream = dest->CreateStream (leaseSet);
2014-11-18 17:33:58 +03:00
stream->Send (nullptr, 0); // connect
return stream;
}
else
{
RequestLeaseSet (dest, remote);
2018-01-06 06:48:51 +03:00
return nullptr;
}
2014-11-18 17:33:58 +03:00
}
2015-11-03 17:15:49 +03:00
void AcceptStream (std::shared_ptr<i2p::client::ClientDestination> dest, const i2p::stream::StreamingDestination::Acceptor& acceptor)
2014-11-18 17:33:58 +03:00
{
if (dest)
dest->AcceptStreams (acceptor);
}
2014-11-23 19:33:58 +03:00
void DestroyStream (std::shared_ptr<i2p::stream::Stream> stream)
2014-11-18 17:33:58 +03:00
{
if (stream)
stream->Close ();
}
2014-11-17 20:37:40 +03:00
}
}