lokinet/llarp/threadpool.cpp

324 lines
6.8 KiB
C++
Raw Normal View History

2018-01-29 15:19:00 +01:00
#include "threadpool.hpp"
#ifndef _MSC_VER
2018-05-20 20:56:34 +02:00
#include <pthread.h>
#endif
2018-05-20 20:56:34 +02:00
#include <cstring>
2018-06-06 14:46:26 +02:00
#include <llarp/time.h>
#include <functional>
2018-06-06 14:46:26 +02:00
#include <queue>
2018-05-28 22:51:15 +02:00
#include "logger.hpp"
2018-01-29 15:19:00 +01:00
#if(__FreeBSD__) || (__OpenBSD__) || (__NetBSD__)
#include <pthread_np.h>
#endif
2018-08-09 17:55:37 +02:00
#ifdef __linux__
2018-08-26 14:51:22 +02:00
#include <llarp/linux/netns.hpp>
2018-08-09 17:55:37 +02:00
#endif
#ifdef _MSC_VER
#include <windows.h>
extern "C" void
SetThreadName(DWORD dwThreadID, LPCSTR szThreadName);
#endif
namespace llarp
{
namespace thread
{
void
Pool::Spawn(size_t workers, const char *name)
{
stop = false;
while(workers--)
{
threads.emplace_back([this, name] {
if(name)
{
#if(__APPLE__ && __MACH__)
pthread_setname_np(name);
#elif(__FreeBSD__) || (__OpenBSD__) || (__NetBSD__)
pthread_set_name_np(pthread_self(), name);
2018-08-20 12:52:47 +02:00
#elif(__linux__) || (__MINGW32__)
pthread_setname_np(pthread_self(), name);
#elif defined(_MSC_VER)
SetThreadName(GetCurrentThreadId(), name);
#endif
}
for(;;)
{
2018-08-29 22:40:26 +02:00
llarp_thread_job job;
{
lock_t lock(this->queue_mutex);
2018-08-12 19:22:29 +02:00
this->condition.WaitUntil(
lock, [this] { return this->stop || !this->jobs.empty(); });
2018-08-12 19:22:29 +02:00
if(this->stop)
{
// discard pending jobs
while(this->jobs.size())
{
delete this->jobs.top().job;
this->jobs.pop();
}
return;
2018-08-12 19:22:29 +02:00
}
2018-08-29 22:40:26 +02:00
job.user = this->jobs.top().job->user;
job.work = this->jobs.top().job->work;
delete this->jobs.top().job;
this->jobs.pop();
}
// do work
2018-08-29 22:40:26 +02:00
job.work(job.user);
}
});
}
}
void
Pool::Stop()
{
{
lock_t lock(queue_mutex);
stop = true;
}
2018-08-12 19:22:29 +02:00
condition.NotifyAll();
}
void
Pool::Join()
{
for(auto &t : threads)
t.join();
threads.clear();
2018-08-12 19:22:29 +02:00
done.NotifyAll();
}
void
Pool::QueueJob(const llarp_thread_job &job)
{
{
lock_t lock(queue_mutex);
// don't allow enqueueing after stopping the pool
if(stop)
return;
jobs.emplace(ids++, new llarp_thread_job(job.user, job.work));
}
2018-08-12 19:22:29 +02:00
condition.NotifyOne();
}
2018-01-29 15:19:00 +01:00
void
IsolatedPool::Spawn(size_t workers, const char *name)
{
IsolatedPool *self = this;
2018-08-26 14:51:22 +02:00
self->IsolatedName = name;
self->m_IsolatedWorkers = workers;
m_isolated = new std::thread([self] {
2018-08-26 14:51:22 +02:00
if(!self->IsolateCurrentProcess())
2018-08-18 16:01:21 +02:00
{
2018-08-26 14:51:22 +02:00
llarp::LogError("isolation failed: ", strerror(errno));
2018-08-18 16:01:21 +02:00
self->Fail();
2018-08-26 14:51:22 +02:00
return;
2018-08-18 16:01:21 +02:00
}
2018-08-26 14:51:22 +02:00
llarp::LogInfo("spawning isolated environment");
self->Pool::Spawn(self->m_IsolatedWorkers, self->IsolatedName);
if(self->Isolated())
{
2018-08-26 14:51:22 +02:00
self->MainLoop();
}
});
}
2018-08-08 19:47:13 +02:00
void
IsolatedPool::Join()
{
Pool::Join();
if(m_isolated)
{
m_isolated->join();
delete m_isolated;
m_isolated = nullptr;
}
}
2018-08-26 14:51:22 +02:00
_NetIsolatedPool::_NetIsolatedPool(
2018-08-18 16:01:21 +02:00
std::function< bool(void *, bool) > setupNet,
std::function< void(void *) > runMain, void *user)
2018-08-26 14:51:22 +02:00
: IsolatedPool(0)
{
m_NetSetup = setupNet;
m_RunMain = runMain;
2018-08-09 21:02:17 +02:00
m_user = user;
}
2018-08-26 14:51:22 +02:00
#ifdef __linux__
struct LinuxNetNSIsolatedPool : public _NetIsolatedPool
{
2018-08-26 14:51:22 +02:00
LinuxNetNSIsolatedPool(std::function< bool(void *, bool) > setup,
std::function< void(void *) > run, void *user)
: _NetIsolatedPool(setup, run, user)
{
}
bool
IsolateNetwork()
{
return llarp::linux::NetNSSwitch(IsolatedName);
}
};
typedef LinuxNetNSIsolatedPool NetIsolatedPool;
#define NET_ISOLATION_SUPPORTED
#endif
2018-08-26 14:51:22 +02:00
#if defined(__FreeBSD__)
struct FreeBSDJailedThreadPool : public _NetIsolatedPool
{
bool
IsolateNetwork()
{
// TODO: implement me
return false;
}
};
typedef FreeBSDJailedThreadPool NetIsolatedPool;
#define NET_ISOLATION_SUPPORTED
#endif
} // namespace thread
2018-02-01 14:21:00 +01:00
} // namespace llarp
2018-01-29 15:27:24 +01:00
struct llarp_threadpool
{
2018-06-06 14:46:26 +02:00
llarp::thread::Pool *impl;
2018-08-12 19:22:29 +02:00
llarp::util::Mutex m_access;
std::queue< llarp_thread_job * > jobs;
2018-01-29 15:19:00 +01:00
llarp_threadpool(int workers, const char *name, bool isolate,
setup_net_func setup = nullptr,
run_main_func runmain = nullptr, void *user = nullptr)
2018-06-06 14:46:26 +02:00
{
2018-08-26 14:51:22 +02:00
#ifdef NET_ISOLATION_SUPPORTED
if(isolate)
impl = new llarp::thread::NetIsolatedPool(setup, runmain, user);
else
2018-08-26 14:51:22 +02:00
#else
if(isolate)
{
llarp::LogError("network isolation not supported");
return nullptr;
}
#endif
impl = new llarp::thread::Pool();
impl->Spawn(workers, name);
2018-06-06 14:46:26 +02:00
}
llarp_threadpool() : impl(nullptr)
{
}
2018-01-29 15:19:00 +01:00
};
struct llarp_threadpool *
llarp_init_threadpool(int workers, const char *name)
{
if(workers > 0)
return new llarp_threadpool(workers, name, false);
2018-01-29 15:27:24 +01:00
else
return nullptr;
}
2018-01-29 15:19:00 +01:00
2018-06-06 14:46:26 +02:00
struct llarp_threadpool *
llarp_init_same_process_threadpool()
{
return new llarp_threadpool();
}
struct llarp_threadpool *
2018-08-09 21:02:17 +02:00
llarp_init_isolated_net_threadpool(const char *name, setup_net_func setup,
run_main_func runmain, void *context)
{
return new llarp_threadpool(1, name, true, setup, runmain, context);
}
void
llarp_threadpool_join(struct llarp_threadpool *pool)
{
llarp::LogDebug("threadpool join");
2018-06-06 14:46:26 +02:00
if(pool->impl)
pool->impl->Join();
}
2018-01-29 15:19:00 +01:00
void
llarp_threadpool_start(struct llarp_threadpool *pool)
{ /** no op */
2018-02-01 14:21:00 +01:00
}
void
llarp_threadpool_stop(struct llarp_threadpool *pool)
{
llarp::LogDebug("threadpool stop");
2018-06-06 14:46:26 +02:00
if(pool->impl)
pool->impl->Stop();
}
2018-04-30 16:57:13 +02:00
void
llarp_threadpool_wait(struct llarp_threadpool *pool)
{
2018-08-12 19:22:29 +02:00
llarp::util::Mutex mtx;
llarp::LogDebug("threadpool wait");
2018-06-06 14:46:26 +02:00
if(pool->impl)
2018-04-30 16:57:13 +02:00
{
2018-08-12 19:22:29 +02:00
llarp::util::Lock lock(mtx);
pool->impl->done.Wait(lock);
2018-04-30 16:57:13 +02:00
}
}
void
llarp_threadpool_queue_job(struct llarp_threadpool *pool,
struct llarp_thread_job job)
{
2018-06-06 14:46:26 +02:00
if(pool->impl)
pool->impl->QueueJob(job);
else if(job.user && job.work)
{
auto j = new llarp_thread_job;
j->work = job.work;
j->user = job.user;
{
2018-08-12 19:22:29 +02:00
llarp::util::Lock lock(pool->m_access);
pool->jobs.push(j);
}
}
2018-06-06 14:46:26 +02:00
}
void
llarp_threadpool_tick(struct llarp_threadpool *pool)
{
while(pool->jobs.size())
{
llarp_thread_job *job;
{
2018-08-12 19:22:29 +02:00
llarp::util::Lock lock(pool->m_access);
job = pool->jobs.front();
pool->jobs.pop();
}
job->work(job->user);
delete job;
2018-06-06 14:46:26 +02:00
}
2018-01-31 20:59:26 +01:00
}
void
llarp_free_threadpool(struct llarp_threadpool **pool)
{
if(*pool)
{
delete *pool;
}
2018-01-29 15:27:24 +01:00
*pool = nullptr;
}