#include <stdexcept>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <chrono>
|
|
#include <thread>
|
|
#include <cstdint>
|
|
#include <vector>
|
|
#include <pEp/webserver.hh>
|
|
|
|
#include <string>
|
|
#include <set>
|
|
#include <fcntl.h>
|
|
#include <functional>
|
|
#include <tuple>
|
|
|
|
#include "json-adapter.hh"
|
|
#include "daemonize.hh"
|
|
#include "pEp-types.hh"
|
|
#include "json_rpc.hh"
|
|
#include "security-token.hh"
|
|
#include "pEp-utils.hh"
|
|
#include "ev_server.hh"
|
|
#include "logger.hh"
|
|
#include "server_version.hh"
|
|
#include "session_registry.hh"
|
|
|
|
#include <pEp/keymanagement.h>
|
|
#include <pEp/call_with_lock.hh>
|
|
#include <pEp/status_to_string.hh> // from libpEpAdapter.
|
|
#include <pEp/locked_queue.hh>
|
|
|
|
#include <boost/filesystem.hpp>
|
|
#include "json_spirit/json_spirit_writer.h"
|
|
#include "json_spirit/json_spirit_reader.h"
|
|
#include "json_spirit/json_spirit_utils.h"
|
|
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
|
namespace {
|
|
using namespace pEp::utility;
|
|
|
|
|
|
std::string BaseUrl = "/ja/0.1/";
|
|
|
|
const std::string CreateSessionUrl = BaseUrl + "createSession";
|
|
const std::string GetAllSessionsUrl = BaseUrl + "getAllSessions";
|
|
const std::string ApiRequestUrl = BaseUrl + "callFunction";
|
|
|
|
const uint64_t Guard_0 = 123456789;
|
|
const uint64_t Guard_1 = 987654321;
|
|
|
|
|
|
typedef std::recursive_mutex Mutex;
|
|
typedef std::unique_lock<Mutex> Lock;
|
|
Mutex _mtx;
|
|
|
|
|
|
struct EventListenerValue
|
|
{
|
|
utility::locked_queue<std::string> Q;
|
|
};
|
|
|
|
static std::hash<std::thread::id> hash_tid;
|
|
|
|
} // end of anonymous namespace
|
|
|
|
|
|
// *sigh* necessary because messageToSend() has no obj pointer anymore. :-(
|
|
JsonAdapter* JsonAdapter::singleton = nullptr;
|
|
|
|
|
|
struct JsonAdapter::Internal
|
|
{
|
|
std::unique_ptr<SessionRegistry> session_registry{};
|
|
std::string address;
|
|
std::string token;
|
|
std::map<std::thread::id, EventListenerValue> eventListener;
|
|
|
|
Logger Log;
|
|
unsigned start_port = 0;
|
|
unsigned end_port = 0;
|
|
unsigned port = 0;
|
|
std::unique_ptr<pEp::Webserver> webserver;
|
|
inject_sync_event_t inject_sync_event = nullptr;
|
|
|
|
unsigned request_count = 0;
|
|
bool running = false;
|
|
bool silent = false;
|
|
bool ignore_session_error = false;
|
|
bool deliver_html = true;
|
|
|
|
explicit Internal()
|
|
: Log("JAI")
|
|
{}
|
|
|
|
Internal(const Internal&) = delete;
|
|
void operator=(const Internal&) = delete;
|
|
|
|
~Internal()
|
|
{
|
|
}
|
|
|
|
void makeAndDeliverRequest(const char* function_name, const js::Array& params)
|
|
{
|
|
const js::Object request = make_request( function_name, params);
|
|
const std::string request_r = js::write(request);
|
|
|
|
Lock L(_mtx);
|
|
Log << Logger::Debug << "makeAndDeliverRequest to " << eventListener.size() << " listener(s).";
|
|
for(auto& e : eventListener)
|
|
{
|
|
Log << Logger::Debug << " ~~~ [" << e.first << Logger::thread_id(hash_tid(e.first)) << "] has " << e.second.Q.size() << " old events waiting.";
|
|
e.second.Q.push_back(request_r);
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
PEP_SESSION JsonAdapter::getSessionForThread()
|
|
{
|
|
const auto id = std::this_thread::get_id();
|
|
return JsonAdapter::getInstance().i->session_registry->get(id);
|
|
}
|
|
|
|
|
|
In_Pep_Session::In_Pep_Session(const js::Value& v, Context*, unsigned)
|
|
: Base( JsonAdapter::getSessionForThread() )
|
|
{}
|
|
|
|
|
|
template<>
|
|
JsonAdapter* from_json(const js::Value& /* not used */)
|
|
{
|
|
return &JsonAdapter::getInstance();
|
|
}
|
|
|
|
|
|
In<JsonAdapter*, ParamFlag::NoInput>::In(const js::Value&, Context*, unsigned)
|
|
: Base{ &JsonAdapter::getInstance() }
|
|
{
|
|
// nothing to do here. :-D
|
|
}
|
|
|
|
template<>
|
|
js::Value Type2String<In_Pep_Session>::get() { throw "Make MSVC happy again. m("; }
|
|
|
|
|
|
ServerVersion JsonAdapter::version()
|
|
{
|
|
return server_version();
|
|
}
|
|
|
|
|
|
|
|
PEP_STATUS JsonAdapter::messageToSend(message* msg)
|
|
{
|
|
js::Value v{to_json(msg)};
|
|
getInstance().i->makeAndDeliverRequest("messageToSend", js::Array{ std::move(v) } );
|
|
return PEP_STATUS_OK;
|
|
}
|
|
|
|
|
|
PEP_STATUS JsonAdapter::notifyHandshake(pEp_identity* self, pEp_identity* partner, sync_handshake_signal sig)
|
|
{
|
|
js::Array param_array;
|
|
param_array.emplace_back( to_json(self) );
|
|
param_array.emplace_back( to_json(partner) );
|
|
param_array.emplace_back( to_json(sig) );
|
|
getInstance().i->makeAndDeliverRequest("notifyHandshake", param_array );
|
|
return PEP_STATUS_OK;
|
|
}
|
|
|
|
|
|
JsonAdapter::JsonAdapter()
|
|
: guard_0(Guard_0)
|
|
, i(new Internal{})
|
|
, guard_1(Guard_1)
|
|
{
|
|
// nothing to do here.
|
|
}
|
|
|
|
|
|
JsonAdapter::~JsonAdapter()
|
|
{
|
|
check_guard();
|
|
Log() << "~JsonAdapter(): " << i->session_registry->size() << " sessions registered.";
|
|
this->shutdown(nullptr);
|
|
Log() << "\t After stopSync() and shutdown() there are " << i->session_registry->size() << " sessions registered.";
|
|
delete i;
|
|
i=nullptr;
|
|
}
|
|
|
|
|
|
JsonAdapter& JsonAdapter::ignore_session_errors(bool _ig)
|
|
{
|
|
check_guard();
|
|
i->ignore_session_error = _ig;
|
|
return *this;
|
|
}
|
|
|
|
|
|
JsonAdapter& JsonAdapter::deliver_html(bool dh)
|
|
{
|
|
check_guard();
|
|
i->deliver_html = dh;
|
|
return *this;
|
|
}
|
|
|
|
|
|
void JsonAdapter::prepare_run(const std::string& address, unsigned start_port, unsigned end_port)
|
|
{
|
|
check_guard();
|
|
// delayed after constructor, so virtual functions are working:
|
|
i->session_registry.reset(new SessionRegistry(this->getMessageToSend(), this->getInjectSyncEvent()));
|
|
i->address = address;
|
|
i->start_port = start_port;
|
|
i->end_port = end_port;
|
|
|
|
// pEp::Webserver does not support port probing, yet.
|
|
i->webserver = std::make_unique<pEp::Webserver>(pEp::net::ip::address::from_string(address), start_port, "");
|
|
|
|
i->webserver->add_url_handler(ApiRequestUrl, ev_server::OnApiRequest);
|
|
if(i->deliver_html)
|
|
{
|
|
i->webserver->add_url_handler("/pEp_functions.js", ev_server::OnGetFunctions);
|
|
i->webserver->add_generic_url_handler(ev_server::OnOtherRequest);
|
|
}
|
|
|
|
i->port = i->start_port;
|
|
i->token = create_security_token(i->address, i->port, BaseUrl);
|
|
|
|
Log() << "Bound to port " << i->port << ", sec_token=\"" << i->token << "\".";
|
|
}
|
|
|
|
|
|
void JsonAdapter::run()
|
|
try
|
|
{
|
|
check_guard();
|
|
Logger L("JA:run");
|
|
|
|
L << Logger::Info << "This is " << (void*)this << ", thread id " << std::this_thread::get_id() << ".";
|
|
L << Logger::Debug << "Registry:\n" << i->session_registry->to_string();
|
|
|
|
i->running = true;
|
|
i->webserver->run();
|
|
}
|
|
catch (std::exception const &e)
|
|
{
|
|
Log(Logger::Error) << "Exception in JsonAdapter::run(): \"" << e.what() << "\"";
|
|
throw;
|
|
}
|
|
|
|
|
|
void JsonAdapter::connection_close_cb()
|
|
{
|
|
Lock L{_mtx};
|
|
auto q = i->eventListener.find( std::this_thread::get_id() );
|
|
Log() << "Connection Close Callback: " << (q==i->eventListener.end() ? "NO" : "1") << " entry in eventListener map";
|
|
if(q != i->eventListener.end())
|
|
{
|
|
i->eventListener.erase(q);
|
|
}
|
|
}
|
|
|
|
|
|
void JsonAdapter::shutdown(timeval* t)
|
|
{
|
|
exit(0); // HACK for JSON-41
|
|
check_guard();
|
|
Log() << "JS::shutdown() was called.";
|
|
i->running = false;
|
|
i->webserver->shutdown();
|
|
}
|
|
|
|
|
|
// returns 'true' if 's' is the security token created by the function above.
|
|
bool JsonAdapter::verify_security_token(const std::string& s) const
|
|
{
|
|
check_guard();
|
|
if(s!=i->token)
|
|
{
|
|
Log(Logger::Notice) << "sec_token=\"" << i->token << "\" (len=" << i->token.size() << ") is unequal to \"" << s << "\" (len=" << s.size() << ")!";
|
|
}
|
|
return s == i->token;
|
|
}
|
|
|
|
|
|
void JsonAdapter::augment(json_spirit::Object& returnObject)
|
|
{
|
|
check_guard();
|
|
// nothing to do anymore.
|
|
}
|
|
|
|
|
|
js::Array JsonAdapter::pollForEvents(unsigned timeout_seconds)
|
|
{
|
|
js::Array arr{};
|
|
|
|
Lock L{_mtx};
|
|
EventListenerValue& el = i->eventListener[ std::this_thread::get_id() ]; // adds an entry, if not already there. :-)
|
|
L.unlock();
|
|
|
|
const size_t size = el.Q.size();
|
|
if(size)
|
|
{
|
|
// fetch all elements from queue
|
|
for(size_t i=0; i<size; ++i)
|
|
{
|
|
arr.emplace_back( el.Q.pop_front() );
|
|
}
|
|
}else{
|
|
// block until there is at least one element or timeout
|
|
std::string event;
|
|
const bool success = el.Q.try_pop_front( event, std::chrono::seconds(timeout_seconds) );
|
|
if(success)
|
|
{
|
|
arr.emplace_back( std::move(event) );
|
|
}
|
|
}
|
|
return arr;
|
|
}
|
|
|
|
|
|
Logger::Stream JsonAdapter::Log(Logger::Severity sev) const
|
|
{
|
|
check_guard();
|
|
return std::move(i->Log << sev);
|
|
}
|
|
|
|
|
|
bool JsonAdapter::running() const
|
|
{
|
|
return i->running;
|
|
}
|
|
|
|
|
|
void JsonAdapter::check_guard() const
|
|
{
|
|
if(guard_0 != Guard_0 || guard_1 != Guard_1 || i==nullptr)
|
|
{
|
|
char buf[128];
|
|
snprintf(buf,127, "JS::check_guard failed: guard0=%llu, guard1=%llu this=%p i=%p.\n",
|
|
guard_0, guard_1, (void*)this, (void*)i
|
|
);
|
|
std::cerr << buf; // Log() might not work here, when memory is corrupted
|
|
throw std::logic_error( buf );
|
|
}
|
|
}
|
|
|
|
|
|
std::recursive_mutex get_instance_mutex;
|
|
|
|
JsonAdapter& JsonAdapter::createInstance(JsonAdapter* instance)
|
|
{
|
|
std::lock_guard<std::recursive_mutex> L(get_instance_mutex);
|
|
|
|
if(!singleton)
|
|
{
|
|
singleton = instance;
|
|
}
|
|
|
|
return *singleton;
|
|
}
|
|
|
|
|
|
JsonAdapter& JsonAdapter::getInstance()
|
|
{
|
|
if(!singleton)
|
|
{
|
|
throw std::logic_error("You forgot to call JsonAdapter::createInstance() before!");
|
|
}
|
|
|
|
return *singleton;
|
|
}
|
|
|
|
|
|
SessionRegistry& JsonAdapter::getSessionRegistry()
|
|
{
|
|
return *(singleton->i->session_registry.get());
|
|
}
|
|
|
|
|
|
JsonAdapter& JsonAdapter::startup()
|
|
{
|
|
JsonAdapter& ja = getInstance();
|
|
ja.prepare_run("127.0.0.1", 4223, 9999);
|
|
ja.run();
|
|
return ja;
|
|
}
|
|
|