29 #ifndef _NET_UTILS_BASE_H_ 30 #define _NET_UTILS_BASE_H_ 32 #include <boost/uuid/uuid.hpp> 33 #include <boost/asio/io_context.hpp> 34 #include <boost/asio/ip/address_v6.hpp> 36 #include <type_traits> 43 #undef MONERO_DEFAULT_LOG_CATEGORY 44 #define MONERO_DEFAULT_LOG_CATEGORY "net" 47 #define MAKE_IP( a1, a2, a3, a4 ) (a1|(a2<<8)|(a3<<16)|(((uint32_t)a4)<<24)) 52 #if BOOST_VERSION >= 107000 53 #define MONERO_GET_EXECUTOR(type) type . get_executor() 55 #define MONERO_GET_EXECUTOR(type) type . get_io_context() 84 {
return ip() == other.ip(); }
112 {
return lhs.equal(rhs); }
114 {
return !lhs.equal(rhs); }
116 {
return lhs.less(rhs); }
118 {
return !rhs.less(lhs); }
120 {
return rhs.less(lhs); }
122 {
return !lhs.less(rhs); }
140 {
return subnet() == other.subnet(); }
159 {
return lhs.equal(rhs); }
161 {
return !lhs.equal(rhs); }
163 {
return lhs.less(rhs); }
165 {
return !rhs.less(lhs); }
167 {
return rhs.less(lhs); }
169 {
return !lhs.less(rhs); }
183 : m_address(
ip), m_port(
port)
190 {
return m_address == other.m_address; }
192 boost::asio::ip::address_v6
ip()
const noexcept {
return m_address; }
204 boost::asio::
ip::address_v6::bytes_type bytes = this_ref.m_address.to_bytes();
206 const_cast<
boost::asio::
ip::address_v6&>(this_ref.m_address) =
boost::asio::
ip::address_v6(bytes);
212 {
return lhs.equal(rhs); }
214 {
return !lhs.equal(rhs); }
216 {
return lhs.less(rhs); }
218 {
return !rhs.less(lhs); }
220 {
return rhs.less(lhs); }
222 {
return !lhs.less(rhs); }
257 {
return value.equal(cast(other)); }
260 {
return value.less(cast(other)); }
263 {
return value.is_same_host(cast(other)); }
275 std::shared_ptr<interface>
self;
277 template<
typename Type>
284 throw std::bad_cast{};
288 template<
typename T,
typename t_storage>
298 template<
typename T,
typename t_storage>
314 bool is_loopback()
const {
return self ?
self->is_loopback() :
false; }
315 bool is_local()
const {
return self ?
self->is_local() :
false; }
318 bool is_blockable()
const {
return self ?
self->is_blockable() :
false; }
320 template<
typename Type>
const Type &
as()
const {
return as_mutable<const Type>(); }
324 static constexpr
std::integral_constant<
bool, is_store> is_store_{};
333 return this_ref.template serialize_addr<ipv4_network_address>(is_store_, stg, hparent_section);
335 return this_ref.template serialize_addr<ipv6_network_address>(is_store_, stg, hparent_section);
337 return this_ref.template serialize_addr<net::tor_address>(is_store_, stg, hparent_section);
339 return this_ref.template serialize_addr<net::i2p_address>(is_store_, stg, hparent_section);
345 MERROR(
"Unsupported network address type: " << (
unsigned)
type);
351 {
return lhs.
equal(rhs); }
353 {
return !lhs.
equal(rhs); }
355 {
return lhs.
less(rhs); }
357 {
return !rhs.
less(lhs); }
359 {
return rhs.
less(lhs); }
361 {
return !lhs.
less(rhs); }
384 time_t last_recv = 0, time_t last_send = 0,
386 m_connection_id(connection_id),
387 m_remote_address(remote_address),
388 m_is_income(is_income),
389 m_started(
time(NULL)),
391 m_last_recv(last_recv),
392 m_last_send(last_send),
393 m_recv_cnt(recv_cnt),
394 m_send_cnt(send_cnt),
395 m_current_speed_down(0),
396 m_current_speed_up(0),
404 m_started(
time(NULL)),
410 m_current_speed_down(0),
411 m_current_speed_up(0),
418 set_details(
a.m_connection_id,
a.m_remote_address,
a.m_is_income,
a.m_ssl);
423 set_details(
a.m_connection_id,
a.m_remote_address,
a.m_is_income,
a.m_ssl);
428 template<
class t_protocol_handler>
444 virtual bool close()=0;
445 virtual bool send_done()=0;
446 virtual bool call_run_once_service_io()=0;
447 virtual bool request_callback()=0;
448 virtual boost::asio::io_context& get_io_context()=0;
450 virtual bool add_ref()=0;
469 #define LOG_ERROR_CC(ct, message) MERROR(ct << message) 470 #define LOG_WARNING_CC(ct, message) MWARNING(ct << message) 471 #define LOG_INFO_CC(ct, message) MINFO(ct << message) 472 #define LOG_DEBUG_CC(ct, message) MDEBUG(ct << message) 473 #define LOG_TRACE_CC(ct, message) MTRACE(ct << message) 474 #define LOG_CC(level, ct, message) MLOG(level, ct << message) 476 #define LOG_PRINT_CC_L0(ct, message) LOG_PRINT_L0(ct << message) 477 #define LOG_PRINT_CC_L1(ct, message) LOG_PRINT_L1(ct << message) 478 #define LOG_PRINT_CC_L2(ct, message) LOG_PRINT_L2(ct << message) 479 #define LOG_PRINT_CC_L3(ct, message) LOG_PRINT_L3(ct << message) 480 #define LOG_PRINT_CC_L4(ct, message) LOG_PRINT_L4(ct << message) 482 #define LOG_PRINT_CCONTEXT_L0(message) LOG_PRINT_CC_L0(context, message) 483 #define LOG_PRINT_CCONTEXT_L1(message) LOG_PRINT_CC_L1(context, message) 484 #define LOG_PRINT_CCONTEXT_L2(message) LOG_PRINT_CC_L2(context, message) 485 #define LOG_PRINT_CCONTEXT_L3(message) LOG_PRINT_CC_L3(context, message) 486 #define LOG_ERROR_CCONTEXT(message) LOG_ERROR_CC(context, message) 488 #define CHECK_AND_ASSERT_MES_CC(condition, return_val, err_message) CHECK_AND_ASSERT_MES(condition, return_val, "[" << epee::net_utils::print_connection_context_short(context) << "]" << err_message) 493 #endif //_NET_UTILS_BASE_H_ double m_max_speed_down
Definition: net_utils_base.h:379
Definition: binary_utils.h:36
uint32_t m_ip
Definition: net_utils_base.h:70
uint64_t m_send_cnt
Definition: net_utils_base.h:376
const uint32_t T[512]
Definition: groestl_tables.h:36
uint16_t port() const noexcept
Definition: net_utils_base.h:193
virtual std::uint16_t port() const override
Definition: net_utils_base.h:272
static constexpr address_type get_type_id() noexcept
Definition: net_utils_base.h:148
constexpr ipv4_network_subnet(uint32_t ip, uint8_t mask) noexcept
Definition: net_utils_base.h:134
bool equal(const ipv4_network_address &other) const noexcept
Definition: net_utils_base.cpp:22
std::string print_connection_context_short(const connection_context_base &ctx)
Definition: net_utils_base.cpp:128
def release
Definition: support.py:307
uint64_t m_recv_cnt
Definition: net_utils_base.h:375
if(is_store)
Definition: net_utils_base.h:97
uint16_t m_port
Definition: net_utils_base.h:71
Definition: portable_binary_archive.hpp:29
constexpr uint16_t port() const noexcept
Definition: net_utils_base.h:87
bool operator!=(const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept
Definition: net_utils_base.h:113
b32 i2p address; internal format not condensed/decoded.
Definition: i2p_address.h:51
constexpr uint32_t subnet() const noexcept
Definition: net_utils_base.h:143
Definition: net_utils_base.h:245
std::string host_str() const
Definition: net_utils_base.cpp:58
::std::string string
Definition: gtest-port.h:1097
Definition: net_utils_base.h:224
bool operator==(const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept
Definition: net_utils_base.h:111
std::string host_str() const
Definition: net_utils_base.h:313
std::string str() const
Definition: net_utils_base.cpp:28
implementation(const T &src)
Definition: net_utils_base.h:249
bool is_same_host(const ipv6_network_address &other) const noexcept
Definition: net_utils_base.h:189
const time_t m_started
Definition: net_utils_base.h:371
Definition: net_utils_base.h:366
Definition: net_utils_base.h:68
int type
Definition: superscalar.cpp:50
Definition: net_utils_base.h:124
ipv6_network_address()
Definition: net_utils_base.h:178
unsigned short uint16_t
Definition: stdint.h:125
virtual ~i_service_endpoint() noexcept(false)
Definition: net_utils_base.h:453
static bool serialize_t_val_as_blob(const t_type &d, t_storage &stg, typename t_storage::hsection hparent_section, const char *pname)
Definition: keyvalue_serialization_overloads.h:53
static constexpr address_type get_type_id() noexcept
Definition: net_utils_base.h:198
std::string str() const
Definition: net_utils_base.h:312
Definition: keyvalue_serialization_overloads.h:324
std::string host_str() const
Definition: net_utils_base.cpp:31
T value
Definition: net_utils_base.h:247
static const T & cast(const interface &src) noexcept
Definition: net_utils_base.h:253
unsigned char uint8_t
Definition: stdint.h:124
#define KV_SERIALIZE(varialble)
Definition: keyvalue_serialization.h:120
zone get_zone() const
Definition: net_utils_base.h:317
section * hsection
Definition: portable_storage_base.h:174
double m_current_speed_up
Definition: net_utils_base.h:378
virtual ~interface()
Definition: net_utils_base.h:228
bool is_local() const
Definition: net_utils_base.h:315
static constexpr zone get_zone() noexcept
Definition: net_utils_base.h:149
std::uint16_t port() const
Definition: net_utils_base.h:319
address_type
Definition: enums.h:39
network_address(const T &src)
Definition: net_utils_base.h:307
virtual bool is_blockable() const override
Definition: net_utils_base.h:271
bool_constant< true > true_type
Definition: gtest-port.h:2210
constexpr bool is_same_host(const ipv4_network_subnet &other) const noexcept
Definition: net_utils_base.h:139
virtual bool is_same_host(const interface &other) const override
Definition: net_utils_base.h:262
static constexpr zone get_zone() noexcept
Definition: net_utils_base.h:199
const bool m_ssl
Definition: net_utils_base.h:372
double m_max_speed_up
Definition: net_utils_base.h:380
virtual std::string str() const override
Definition: net_utils_base.h:265
virtual bool less(const interface &other) const override
Definition: net_utils_base.h:259
bool serialize_addr(std::false_type, t_storage &stg, typename t_storage::hsection hparent)
Definition: net_utils_base.h:289
address_type get_type_id() const
Definition: net_utils_base.h:316
time_t m_last_recv
Definition: net_utils_base.h:373
static void close()
Definition: blockchain_blackball.cpp:279
virtual bool is_loopback() const override
Definition: net_utils_base.h:267
connection_context_base(boost::uuids::uuid connection_id, const network_address &remote_address, bool is_income, bool ssl, time_t last_recv=0, time_t last_send=0, uint64_t recv_cnt=0, uint64_t send_cnt=0)
Definition: net_utils_base.h:382
bool is_loopback() const
Definition: net_utils_base.h:314
constexpr uint32_t ip() const noexcept
Definition: net_utils_base.h:86
bool operator<=(const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept
Definition: net_utils_base.h:117
const char * uuid
Definition: minissdp.c:598
unsigned int uint32_t
Definition: stdint.h:126
ipv6_network_address(const boost::asio::ip::address_v6 &ip, uint16_t port)
Definition: net_utils_base.h:182
Definition: net_utils_base.h:58
void serialize(Archive &a, unsigned_tx_set &x, const boost::serialization::version_type ver)
Definition: serialization.cpp:898
Represents a single connection from a client.
Definition: abstract_tcp_server2.h:95
bool less(const network_address &other) const
Definition: net_utils_base.cpp:78
Type & as_mutable() const
Definition: net_utils_base.h:278
static constexpr address_type get_type_id() noexcept
Definition: net_utils_base.h:92
unsigned __int64 uint64_t
Definition: stdint.h:136
Definition: net_utils_base.h:226
connection_context_base()
Definition: net_utils_base.h:401
Definition: byte_slice.h:68
#define false
Definition: stdbool.h:37
static constexpr bool is_blockable() noexcept
Definition: net_utils_base.h:200
static constexpr bool is_blockable() noexcept
Definition: net_utils_base.h:94
virtual zone get_zone() const override
Definition: net_utils_base.h:270
constexpr ipv4_network_address(uint32_t ip, uint16_t port) noexcept
Definition: net_utils_base.h:78
const network_address m_remote_address
Definition: net_utils_base.h:369
bool is_loopback() const
Definition: net_utils_base.cpp:59
boost::endian::big_uint32_t ip
Definition: socks.cpp:62
boost::endian::big_uint16_t port
Definition: socks.cpp:61
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition: pointer.h:1124
MAKE_LOGGABLE(connection_context_base, ct, os)
Definition: net_utils_base.h:463
boost::asio::ip::address_v6 ip() const noexcept
Definition: net_utils_base.h:192
bool operator>(const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept
Definition: net_utils_base.h:119
uint32_t m_ip
Definition: net_utils_base.h:126
TODO: (mj-xmr) This will be reduced in an another PR.
Definition: byte_slice.h:39
uint32_t address
Definition: getifaddr.c:269
virtual address_type get_type_id() const override
Definition: net_utils_base.h:269
bool equal(const ipv4_network_subnet &other) const noexcept
Definition: net_utils_base.cpp:49
bool operator<(const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept
Definition: net_utils_base.h:115
const bool m_is_income
Definition: net_utils_base.h:370
Definition: net_utils_base.h:441
const T & move(const T &t)
Definition: gtest-port.h:1317
Tor onion address; internal format not condensed/decoded.
Definition: tor_address.h:52
connection_context_base(const connection_context_base &a)
Definition: net_utils_base.h:416
const Type & as() const
Definition: net_utils_base.h:320
constexpr bool is_same_host(const ipv4_network_address &other) const noexcept
Definition: net_utils_base.h:83
double m_current_speed_down
Definition: net_utils_base.h:377
bool is_blockable() const
Definition: net_utils_base.h:318
constexpr ipv4_network_address() noexcept
Definition: net_utils_base.h:74
const GenericPointer< typename T::ValueType > T2 value
Definition: pointer.h:1225
virtual bool is_local() const override
Definition: net_utils_base.h:268
virtual std::string host_str() const override
Definition: net_utils_base.h:266
static constexpr zone get_zone() noexcept
Definition: net_utils_base.h:93
time
Definition: gen_wide_data.py:40
uint8_t m_mask
Definition: net_utils_base.h:127
void set_details(boost::uuids::uuid connection_id, const network_address &remote_address, bool is_income, bool ssl)
Definition: net_utils_base.h:430
boost::asio::ip::address_v6 m_address
Definition: net_utils_base.h:174
bool_constant< false > false_type
Definition: gtest-port.h:2209
Definition: net_utils_base.h:171
virtual bool equal(const interface &other) const override
Definition: net_utils_base.h:256
zone
Definition: enums.h:49
std::string print_connection_context(const connection_context_base &ctx)
Definition: net_utils_base.cpp:121
time_t m_last_send
Definition: net_utils_base.h:374
connection_context_base & operator=(const connection_context_base &a)
Definition: net_utils_base.h:421
std::string str() const
Definition: net_utils_base.cpp:55
bool less(const ipv4_network_subnet &other) const noexcept
Definition: net_utils_base.cpp:52
bool operator>=(const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept
Definition: net_utils_base.h:121
bool is_local() const
Definition: net_utils_base.cpp:33
bool serialize_addr(std::true_type, t_storage &stg, typename t_storage::hsection hparent) const
Definition: net_utils_base.h:299
#define END_KV_SERIALIZE_MAP()
Definition: keyvalue_serialization.h:118
bool is_loopback() const
Definition: net_utils_base.cpp:32
bool is_local() const
Definition: net_utils_base.cpp:60
Type
Type of JSON value.
Definition: rapidjson.h:623
bool less(const ipv4_network_address &other) const noexcept
Definition: net_utils_base.cpp:25
tuple message
Definition: gtest_output_test.py:331
#define const
Definition: ipfrdr.c:80
network_address()
Definition: net_utils_base.h:305
#define SWAP32LE
Definition: int-util.h:305
bool equal(const network_address &other) const
Definition: net_utils_base.cpp:67
const boost::uuids::uuid m_connection_id
Definition: net_utils_base.h:368
#define BEGIN_KV_SERIALIZE_MAP()
Definition: keyvalue_serialization.h:43
static constexpr bool is_blockable() noexcept
Definition: net_utils_base.h:150
uint16_t m_port
Definition: net_utils_base.h:175
bool matches(const ipv4_network_address &address) const
Definition: net_utils_base.cpp:61
#define inline
Definition: inline_c.h:34
constexpr ipv4_network_subnet() noexcept
Definition: net_utils_base.h:130