2018-04-30 13:18:57 +00:00
|
|
|
#ifndef LLARP_EV_HPP
|
|
|
|
#define LLARP_EV_HPP
|
|
|
|
#include <llarp/ev.h>
|
|
|
|
|
2018-07-30 04:38:14 +00:00
|
|
|
#ifndef _MSC_VER
|
2018-04-30 13:18:57 +00:00
|
|
|
#include <unistd.h>
|
2018-07-30 04:38:14 +00:00
|
|
|
#endif
|
2018-08-15 15:36:34 +00:00
|
|
|
#include <llarp/buffer.h>
|
2018-06-27 13:14:07 +00:00
|
|
|
#include <list>
|
2018-08-15 15:36:34 +00:00
|
|
|
#include <llarp/codel.hpp>
|
|
|
|
#include <vector>
|
|
|
|
#ifndef MAX_WRITE_QUEUE_SIZE
|
|
|
|
#define MAX_WRITE_QUEUE_SIZE 1024
|
|
|
|
#endif
|
2018-04-30 13:18:57 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
struct ev_io
|
|
|
|
{
|
2018-07-30 04:38:14 +00:00
|
|
|
#ifndef _WIN32
|
2018-05-22 15:54:19 +00:00
|
|
|
int fd;
|
2018-08-15 15:36:34 +00:00
|
|
|
ev_io(int f) : fd(f), m_writeq("writequeue"){};
|
2018-07-30 04:38:14 +00:00
|
|
|
#else
|
|
|
|
SOCKET fd;
|
2018-08-15 16:21:51 +00:00
|
|
|
// the unique completion key that helps us to
|
|
|
|
// identify the object instance for which we receive data
|
|
|
|
// Here, we'll use the address of the udp_listener instance, converted to
|
|
|
|
// its literal int/int64 representation.
|
|
|
|
ULONG_PTR listener_id = 0;
|
2018-08-15 15:36:34 +00:00
|
|
|
ev_io(SOCKET f) : fd(f), m_writeq("writequeue"){};
|
2018-07-30 04:38:14 +00:00
|
|
|
#endif
|
2018-05-22 15:54:19 +00:00
|
|
|
virtual int
|
|
|
|
read(void* buf, size_t sz) = 0;
|
2018-06-27 13:14:07 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
virtual int
|
|
|
|
sendto(const sockaddr* dst, const void* data, size_t sz) = 0;
|
2018-08-03 06:03:34 +00:00
|
|
|
|
2018-08-15 15:36:34 +00:00
|
|
|
/// used for tun interface
|
|
|
|
bool
|
|
|
|
queue_write(const void* data, size_t sz)
|
|
|
|
{
|
2018-08-17 19:49:58 +00:00
|
|
|
std::unique_ptr< WriteBuffer > buf =
|
|
|
|
std::unique_ptr< WriteBuffer >(new WriteBuffer(data, sz));
|
|
|
|
m_writeq.Put(buf);
|
2018-08-15 15:36:34 +00:00
|
|
|
return m_writeq.Size() <= MAX_WRITE_QUEUE_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// called in event loop when fd is ready for writing
|
|
|
|
/// drops all buffers that cannot be written in this pump
|
|
|
|
/// this assumes fd is set to non blocking
|
2018-08-17 19:49:58 +00:00
|
|
|
virtual void
|
2018-08-15 15:36:34 +00:00
|
|
|
flush_write()
|
|
|
|
{
|
2018-08-17 19:49:58 +00:00
|
|
|
m_writeq.Process([this](const std::unique_ptr< WriteBuffer >& buffer) {
|
2018-08-18 03:19:00 +00:00
|
|
|
// todo: wtf???
|
|
|
|
#ifndef _WIN32
|
2018-08-17 19:49:58 +00:00
|
|
|
write(fd, buffer->buf, buffer->bufsz);
|
2018-08-18 03:19:00 +00:00
|
|
|
#else
|
|
|
|
// writefile
|
|
|
|
#endif
|
2018-08-17 19:49:58 +00:00
|
|
|
});
|
2018-08-15 15:36:34 +00:00
|
|
|
/// reset errno
|
|
|
|
errno = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct WriteBuffer
|
|
|
|
{
|
|
|
|
llarp_time_t timestamp = 0;
|
2018-08-17 19:49:58 +00:00
|
|
|
size_t bufsz;
|
|
|
|
byte_t buf[1500];
|
2018-08-15 15:36:34 +00:00
|
|
|
|
2018-08-17 19:49:58 +00:00
|
|
|
WriteBuffer(const void* ptr, size_t sz)
|
2018-08-15 15:36:34 +00:00
|
|
|
{
|
2018-08-17 19:49:58 +00:00
|
|
|
if(sz <= sizeof(buf))
|
|
|
|
{
|
|
|
|
bufsz = sz;
|
|
|
|
memcpy(buf, ptr, bufsz);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
bufsz = 0;
|
2018-08-15 15:36:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct GetTime
|
|
|
|
{
|
|
|
|
llarp_time_t
|
|
|
|
operator()(const WriteBuffer* w) const
|
|
|
|
{
|
|
|
|
return w->timestamp;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PutTime
|
|
|
|
{
|
|
|
|
void
|
2018-08-17 19:49:58 +00:00
|
|
|
operator()(WriteBuffer* w) const
|
2018-08-15 15:36:34 +00:00
|
|
|
{
|
|
|
|
w->timestamp = llarp_time_now_ms();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Compare
|
|
|
|
{
|
|
|
|
bool
|
2018-08-17 19:49:58 +00:00
|
|
|
operator()(const std::unique_ptr< WriteBuffer >& left,
|
|
|
|
const std::unique_ptr< WriteBuffer >& right) const
|
2018-08-15 15:36:34 +00:00
|
|
|
{
|
|
|
|
return left->timestamp < right->timestamp;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-08-17 19:49:58 +00:00
|
|
|
llarp::util::CoDelQueue< WriteBuffer, WriteBuffer::GetTime,
|
2018-08-15 15:36:34 +00:00
|
|
|
WriteBuffer::PutTime, WriteBuffer::Compare,
|
|
|
|
llarp::util::NullMutex, llarp::util::NullLock >
|
|
|
|
m_writeq;
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
virtual ~ev_io()
|
|
|
|
{
|
2018-07-30 04:38:14 +00:00
|
|
|
#ifndef _WIN32
|
2018-05-22 15:54:19 +00:00
|
|
|
::close(fd);
|
2018-07-30 04:38:14 +00:00
|
|
|
#else
|
|
|
|
closesocket(fd);
|
|
|
|
#endif
|
2018-05-22 15:54:19 +00:00
|
|
|
};
|
|
|
|
};
|
2018-08-15 15:36:34 +00:00
|
|
|
|
2018-04-30 16:14:20 +00:00
|
|
|
}; // namespace llarp
|
2018-04-30 13:18:57 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
struct llarp_ev_loop
|
|
|
|
{
|
|
|
|
virtual bool
|
|
|
|
init() = 0;
|
|
|
|
virtual int
|
|
|
|
run() = 0;
|
2018-06-06 12:46:26 +00:00
|
|
|
|
|
|
|
virtual int
|
2018-06-06 21:23:57 +00:00
|
|
|
tick(int ms) = 0;
|
2018-06-06 12:46:26 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
virtual void
|
|
|
|
stop() = 0;
|
2018-04-30 13:18:57 +00:00
|
|
|
|
2018-08-15 15:46:39 +00:00
|
|
|
bool
|
2018-08-15 15:36:34 +00:00
|
|
|
udp_listen(llarp_udp_io* l, const sockaddr* src)
|
|
|
|
{
|
|
|
|
auto ev = create_udp(l, src);
|
|
|
|
return ev && add_ev(ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual llarp::ev_io*
|
|
|
|
create_udp(llarp_udp_io* l, const sockaddr* src) = 0;
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
virtual bool
|
|
|
|
udp_close(llarp_udp_io* l) = 0;
|
|
|
|
virtual bool
|
|
|
|
close_ev(llarp::ev_io* ev) = 0;
|
2018-04-30 16:14:20 +00:00
|
|
|
|
2018-08-15 15:36:34 +00:00
|
|
|
virtual llarp::ev_io*
|
|
|
|
create_tun(llarp_tun_io* tun) = 0;
|
|
|
|
|
|
|
|
virtual bool
|
2018-08-17 19:49:58 +00:00
|
|
|
add_ev(llarp::ev_io* ev, bool write = true) = 0;
|
2018-08-15 15:36:34 +00:00
|
|
|
|
2018-08-10 03:51:38 +00:00
|
|
|
virtual bool
|
|
|
|
running() const = 0;
|
|
|
|
|
2018-04-30 16:14:20 +00:00
|
|
|
virtual ~llarp_ev_loop(){};
|
2018-06-27 13:14:07 +00:00
|
|
|
|
|
|
|
std::list< llarp_udp_io* > udp_listeners;
|
2018-08-15 15:36:34 +00:00
|
|
|
std::list< llarp_tun_io* > tun_listeners;
|
|
|
|
|
|
|
|
void
|
|
|
|
tick_listeners()
|
|
|
|
{
|
|
|
|
for(auto& l : udp_listeners)
|
|
|
|
if(l->tick)
|
|
|
|
l->tick(l);
|
|
|
|
for(auto& l : tun_listeners)
|
|
|
|
if(l->tick)
|
|
|
|
l->tick(l);
|
|
|
|
}
|
2018-04-30 13:18:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|