2018-02-03 18:22:01 -08:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
2018-01-13 18:03:04 -08:00
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
2018-02-03 18:22:01 -08:00
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
2018-01-13 18:03:04 -08:00
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
2018-02-03 18:22:01 -08:00
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2018-01-13 18:03:04 -08:00
|
|
|
|
|
|
|
#pragma once
|
2018-03-05 06:59:10 -08:00
|
|
|
#define HAVE_IRCD_SERVER_PEER_H
|
2018-01-13 18:03:04 -08:00
|
|
|
|
2018-03-13 16:58:58 -07:00
|
|
|
namespace ircd::server
|
|
|
|
{
|
|
|
|
extern std::map<string_view, std::unique_ptr<peer>> peers;
|
|
|
|
}
|
|
|
|
|
2018-01-13 18:03:04 -08:00
|
|
|
/// Remote entity.
|
|
|
|
///
|
2018-03-05 06:59:10 -08:00
|
|
|
struct ircd::server::peer
|
2018-01-13 18:03:04 -08:00
|
|
|
{
|
2018-03-08 08:24:19 -08:00
|
|
|
struct err;
|
|
|
|
|
2018-05-08 15:50:48 -07:00
|
|
|
static constexpr const size_t &LINK_MAX{16};
|
2019-03-25 14:55:05 -07:00
|
|
|
static conf::item<bool> enable_ipv6;
|
2018-03-03 21:54:42 -08:00
|
|
|
static conf::item<size_t> link_min_default;
|
|
|
|
static conf::item<size_t> link_max_default;
|
2018-03-09 07:42:28 -08:00
|
|
|
static conf::item<seconds> error_clear_default;
|
2020-11-05 01:20:20 -08:00
|
|
|
static conf::item<seconds> remote_ttl_min;
|
|
|
|
static conf::item<seconds> remote_ttl_max;
|
2019-04-11 22:18:47 -07:00
|
|
|
static uint64_t ids;
|
2018-03-03 21:54:42 -08:00
|
|
|
|
2019-04-11 22:18:47 -07:00
|
|
|
uint64_t id {++ids};
|
2020-03-05 16:34:13 -08:00
|
|
|
std::string hostcanon; // hostname:service[:port]
|
2020-11-05 01:20:20 -08:00
|
|
|
net::ipport remote;
|
|
|
|
system_point remote_expires;
|
2018-03-13 16:58:58 -07:00
|
|
|
net::open_opts open_opts;
|
2018-01-13 18:03:04 -08:00
|
|
|
std::list<link> links;
|
2018-03-08 08:24:19 -08:00
|
|
|
std::unique_ptr<err> e;
|
2019-04-15 13:10:41 -07:00
|
|
|
std::string server_version;
|
2018-03-26 17:21:24 -07:00
|
|
|
size_t write_bytes {0};
|
|
|
|
size_t read_bytes {0};
|
2020-06-07 07:31:16 -07:00
|
|
|
size_t tag_done {0};
|
2018-03-10 07:50:19 -08:00
|
|
|
bool op_resolve {false};
|
|
|
|
bool op_fini {false};
|
2018-01-15 18:04:23 -08:00
|
|
|
|
|
|
|
template<class F> size_t accumulate_links(F&&) const;
|
|
|
|
template<class F> size_t accumulate_tags(F&&) const;
|
2018-01-13 18:03:04 -08:00
|
|
|
|
2018-03-10 07:50:19 -08:00
|
|
|
void handle_finished();
|
2019-03-24 20:46:58 -07:00
|
|
|
void open_links();
|
2019-03-24 15:28:07 -07:00
|
|
|
void handle_resolve_A(const hostport &, const json::array &);
|
2019-03-25 14:37:01 -07:00
|
|
|
void handle_resolve_AAAA(const hostport &, const json::array &);
|
2019-03-24 15:28:07 -07:00
|
|
|
void handle_resolve_SRV(const hostport &, const json::array &);
|
|
|
|
void resolve(const hostport &, const net::dns::opts &);
|
2020-11-11 14:24:38 -08:00
|
|
|
void resolve();
|
2018-01-13 18:03:04 -08:00
|
|
|
|
2020-03-04 11:55:08 -08:00
|
|
|
void cleanup_canceled();
|
2018-01-16 04:01:26 -08:00
|
|
|
void disperse_uncommitted(link &);
|
|
|
|
void disperse(link &);
|
2018-01-13 21:16:49 -08:00
|
|
|
void del(link &);
|
2018-01-16 00:45:51 -08:00
|
|
|
|
2018-01-24 09:15:57 -08:00
|
|
|
void handle_head_recv(const link &, const tag &, const http::response::head &);
|
2018-01-15 21:13:48 -08:00
|
|
|
void handle_link_done(link &);
|
2018-01-15 20:04:45 -08:00
|
|
|
void handle_tag_done(link &, tag &) noexcept;
|
2018-01-23 11:38:38 -08:00
|
|
|
void handle_finished(link &);
|
2018-11-08 21:18:39 -08:00
|
|
|
void handle_error(link &, const std::system_error &);
|
2018-01-17 01:05:31 -08:00
|
|
|
void handle_error(link &, std::exception_ptr);
|
2018-01-13 21:16:49 -08:00
|
|
|
void handle_close(link &, std::exception_ptr);
|
|
|
|
void handle_open(link &, std::exception_ptr);
|
|
|
|
|
2018-01-13 18:03:04 -08:00
|
|
|
public:
|
2018-03-10 07:50:19 -08:00
|
|
|
// indicator lights
|
|
|
|
bool finished() const;
|
2020-11-05 01:20:20 -08:00
|
|
|
bool expired() const;
|
2018-03-10 07:50:19 -08:00
|
|
|
|
2018-01-15 18:04:23 -08:00
|
|
|
// config related
|
2018-01-15 21:13:48 -08:00
|
|
|
size_t link_min() const;
|
2018-03-03 21:54:42 -08:00
|
|
|
size_t link_max() const;
|
2018-01-15 18:04:23 -08:00
|
|
|
|
2018-03-05 06:59:10 -08:00
|
|
|
// stats for all links in peer
|
2018-01-15 20:04:45 -08:00
|
|
|
size_t link_count() const;
|
2018-01-15 18:04:23 -08:00
|
|
|
size_t link_busy() const;
|
|
|
|
size_t link_ready() const;
|
2020-06-07 07:31:16 -07:00
|
|
|
size_t link_tag_done() const;
|
2018-01-15 18:04:23 -08:00
|
|
|
|
2018-03-05 06:59:10 -08:00
|
|
|
// stats for all tags in all links in peer
|
2018-01-15 20:04:45 -08:00
|
|
|
size_t tag_count() const;
|
2018-01-15 18:04:23 -08:00
|
|
|
size_t tag_committed() const;
|
|
|
|
size_t tag_uncommitted() const;
|
|
|
|
|
|
|
|
// stats for all upload-side bytes in all tags in all links
|
2018-03-26 17:11:39 -07:00
|
|
|
size_t write_size() const;
|
2018-01-15 18:04:23 -08:00
|
|
|
size_t write_completed() const;
|
|
|
|
size_t write_remaining() const;
|
|
|
|
|
|
|
|
// stats for download-side bytes in all tags in all links (note:
|
|
|
|
// see notes in link.h/tag.h about inaccuracy here).
|
2018-03-26 17:11:39 -07:00
|
|
|
size_t read_size() const;
|
2018-01-15 18:04:23 -08:00
|
|
|
size_t read_completed() const;
|
|
|
|
size_t read_remaining() const;
|
2018-01-13 21:16:49 -08:00
|
|
|
|
2018-03-26 17:21:24 -07:00
|
|
|
// stats accumulated over time
|
|
|
|
size_t write_total() const;
|
|
|
|
size_t read_total() const;
|
|
|
|
|
2018-01-15 18:04:23 -08:00
|
|
|
// link control panel
|
2018-01-13 18:03:04 -08:00
|
|
|
link &link_add(const size_t &num = 1);
|
2018-01-16 04:01:26 -08:00
|
|
|
link *link_get(const request &);
|
2018-01-13 18:03:04 -08:00
|
|
|
|
2018-01-15 18:04:23 -08:00
|
|
|
// request panel
|
2018-01-13 18:03:04 -08:00
|
|
|
void submit(request &);
|
|
|
|
|
2018-03-02 22:37:52 -08:00
|
|
|
// Error related
|
|
|
|
bool err_has() const;
|
|
|
|
string_view err_msg() const;
|
2018-03-08 08:24:19 -08:00
|
|
|
template<class... A> void err_set(A&&...);
|
2018-03-12 14:06:12 -07:00
|
|
|
bool err_clear();
|
2018-03-09 07:42:28 -08:00
|
|
|
bool err_check();
|
2018-03-02 22:37:52 -08:00
|
|
|
|
2018-01-15 18:04:23 -08:00
|
|
|
// control panel
|
2018-05-29 11:53:37 -07:00
|
|
|
void cancel();
|
2018-03-04 01:22:05 -08:00
|
|
|
void close(const net::close_opts & = net::close_opts_default);
|
2018-01-15 00:11:32 -08:00
|
|
|
|
2018-12-05 19:38:40 -08:00
|
|
|
peer(const net::hostport &hostport,
|
|
|
|
const net::open_opts &open_opts = {});
|
2018-05-02 11:29:13 -07:00
|
|
|
peer(peer &&) = delete;
|
|
|
|
peer(const peer &) = delete;
|
2018-03-05 06:59:10 -08:00
|
|
|
~peer() noexcept;
|
2018-01-13 18:03:04 -08:00
|
|
|
};
|
2018-03-08 08:24:19 -08:00
|
|
|
|
|
|
|
struct ircd::server::peer::err
|
|
|
|
{
|
|
|
|
std::exception_ptr eptr;
|
2018-04-13 20:01:46 -07:00
|
|
|
system_point etime;
|
2018-03-08 08:24:19 -08:00
|
|
|
|
2019-04-16 19:04:23 -07:00
|
|
|
err(const std::exception_ptr &);
|
2018-10-21 05:33:45 -07:00
|
|
|
~err() noexcept;
|
2018-03-08 08:24:19 -08:00
|
|
|
};
|