mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-01-22 10:24:31 +00:00
209 lines
5.4 KiB
C++
209 lines
5.4 KiB
C++
/*
|
|
* This file is part of the Monero P2Pool <https://github.com/SChernykh/p2pool>
|
|
* Copyright (c) 2021-2023 SChernykh <https://github.com/SChernykh>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "uv_util.h"
|
|
|
|
namespace p2pool {
|
|
|
|
template<size_t READ_BUF_SIZE, size_t WRITE_BUF_SIZE>
|
|
class TCPServer : public nocopy_nomove
|
|
{
|
|
public:
|
|
struct Client;
|
|
typedef Client* (*allocate_client_callback)();
|
|
|
|
explicit TCPServer(allocate_client_callback allocate_new_client);
|
|
virtual ~TCPServer();
|
|
|
|
template<typename T>
|
|
void parse_address_list(const std::string& address_list, T callback);
|
|
|
|
bool connect_to_peer(bool is_v6, const char* ip, int port);
|
|
|
|
void drop_connections_async() { if (m_finished.load() == 0) { uv_async_send(&m_dropConnectionsAsync); } }
|
|
void shutdown_tcp();
|
|
virtual void print_status();
|
|
|
|
uv_loop_t* get_loop() { return &m_loop; }
|
|
|
|
virtual int listen_port() const { return m_listenPort; }
|
|
|
|
bool connect_to_peer(bool is_v6, const raw_ip& ip, int port);
|
|
virtual void on_connect_failed(bool /*is_v6*/, const raw_ip& /*ip*/, int /*port*/) {}
|
|
|
|
void ban(const raw_ip& ip, uint64_t seconds);
|
|
virtual void print_bans();
|
|
|
|
struct Client
|
|
{
|
|
Client();
|
|
virtual ~Client() {}
|
|
|
|
virtual size_t size() const = 0;
|
|
|
|
virtual void reset();
|
|
virtual bool on_connect() = 0;
|
|
virtual bool on_read(char* data, uint32_t size) = 0;
|
|
bool on_proxy_handshake(char* data, uint32_t size);
|
|
virtual void on_read_failed(int /*err*/) {}
|
|
virtual void on_disconnected() {}
|
|
|
|
static void on_alloc(uv_handle_t* handle, size_t suggested_size, uv_buf_t* buf);
|
|
static void on_read(uv_stream_t* stream, ssize_t nread, const uv_buf_t* buf);
|
|
static void on_write(uv_write_t* req, int status);
|
|
|
|
void close();
|
|
void ban(uint64_t seconds);
|
|
|
|
void init_addr_string();
|
|
|
|
alignas(8) char m_readBuf[READ_BUF_SIZE];
|
|
|
|
TCPServer* m_owner;
|
|
|
|
// Used to maintain connected clients list
|
|
Client* m_prev;
|
|
Client* m_next;
|
|
|
|
uv_tcp_t m_socket;
|
|
|
|
bool m_isV6;
|
|
bool m_isIncoming;
|
|
bool m_readBufInUse;
|
|
bool m_isClosing;
|
|
uint32_t m_numRead;
|
|
|
|
raw_ip m_addr;
|
|
int m_port;
|
|
char m_addrString[72];
|
|
|
|
enum class Socks5ProxyState {
|
|
Default,
|
|
MethodSelectionSent,
|
|
ConnectRequestSent,
|
|
} m_socks5ProxyState;
|
|
|
|
std::atomic<uint32_t> m_resetCounter;
|
|
};
|
|
|
|
struct WriteBuf
|
|
{
|
|
uv_write_t m_write = {};
|
|
Client* m_client = nullptr;
|
|
void* m_data = nullptr;
|
|
size_t m_dataCapacity = 0;
|
|
};
|
|
|
|
std::vector<WriteBuf*> m_writeBuffers;
|
|
|
|
WriteBuf* get_write_buffer();
|
|
void return_write_buffer(WriteBuf* buf);
|
|
|
|
struct SendCallbackBase
|
|
{
|
|
virtual ~SendCallbackBase() {}
|
|
virtual size_t operator()(void*, size_t) = 0;
|
|
};
|
|
|
|
template<typename T>
|
|
struct SendCallback : public SendCallbackBase
|
|
{
|
|
explicit FORCEINLINE SendCallback(T&& callback) : m_callback(std::move(callback)) {}
|
|
size_t operator()(void* buf, size_t buf_size) override { return m_callback(buf, buf_size); }
|
|
|
|
private:
|
|
SendCallback& operator=(SendCallback&&) = delete;
|
|
|
|
T m_callback;
|
|
};
|
|
|
|
template<typename T>
|
|
FORCEINLINE bool send(Client* client, T&& callback) { return send_internal(client, SendCallback<T>(std::move(callback))); }
|
|
|
|
private:
|
|
static void loop(void* data);
|
|
static void on_new_connection(uv_stream_t* server, int status);
|
|
static void on_connection_close(uv_handle_t* handle);
|
|
static void on_connection_error(uv_handle_t* handle);
|
|
static void on_connect(uv_connect_t* req, int status);
|
|
void on_new_client(uv_stream_t* server);
|
|
void on_new_client(uv_stream_t* server, Client* client);
|
|
|
|
bool connect_to_peer(Client* client);
|
|
|
|
bool send_internal(Client* client, SendCallbackBase&& callback);
|
|
|
|
allocate_client_callback m_allocateNewClient;
|
|
|
|
void close_sockets(bool listen_sockets);
|
|
|
|
std::vector<uv_tcp_t*> m_listenSockets6;
|
|
std::vector<uv_tcp_t*> m_listenSockets;
|
|
uv_thread_t m_loopThread;
|
|
|
|
protected:
|
|
void start_listening(const std::string& listen_addresses);
|
|
|
|
std::string m_socks5Proxy;
|
|
bool m_socks5ProxyV6;
|
|
raw_ip m_socks5ProxyIP;
|
|
int m_socks5ProxyPort;
|
|
|
|
std::atomic<int> m_finished;
|
|
int m_listenPort;
|
|
|
|
uv_loop_t m_loop;
|
|
|
|
#ifdef P2POOL_DEBUGGING
|
|
static void check_event_loop_thread(const char *func);
|
|
#else
|
|
static FORCEINLINE void check_event_loop_thread(const char*) {}
|
|
#endif
|
|
|
|
std::vector<Client*> m_preallocatedClients;
|
|
|
|
Client* get_client();
|
|
void return_client(Client* c);
|
|
|
|
Client* m_connectedClientsList;
|
|
std::atomic<uint32_t> m_numConnections;
|
|
std::atomic<uint32_t> m_numIncomingConnections;
|
|
|
|
uv_mutex_t m_bansLock;
|
|
unordered_map<raw_ip, std::chrono::steady_clock::time_point> m_bans;
|
|
|
|
bool is_banned(const raw_ip& ip);
|
|
|
|
unordered_set<raw_ip> m_pendingConnections;
|
|
|
|
uv_async_t m_dropConnectionsAsync;
|
|
static void on_drop_connections(uv_async_t* async) { reinterpret_cast<TCPServer*>(async->data)->close_sockets(false); }
|
|
|
|
virtual void on_shutdown() = 0;
|
|
|
|
uv_async_t m_shutdownAsync;
|
|
uv_prepare_t m_shutdownPrepare;
|
|
uv_timer_t m_shutdownTimer;
|
|
uint32_t m_shutdownCountdown;
|
|
uint32_t m_numHandles;
|
|
|
|
static void on_shutdown(uv_async_t* async);
|
|
};
|
|
|
|
} // namespace p2pool
|