0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-10 05:58:56 +02:00
construct/modules/s_fetch.cc

364 lines
6.6 KiB
C++
Raw Normal View History

// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
2018-10-23 18:13:48 +02:00
#include "s_fetch.h"
2018-10-23 18:13:48 +02:00
ircd::mapi::header
IRCD_MODULE
{
"Event Fetch Unit", ircd::m::fetch::init, ircd::m::fetch::fini
};
//
// init
//
void
2018-10-23 18:13:48 +02:00
ircd::m::fetch::init()
{
}
void
2018-10-23 18:13:48 +02:00
ircd::m::fetch::fini()
{
}
//
// fetch_phase
//
2018-10-23 18:13:48 +02:00
decltype(ircd::m::fetch::hook)
ircd::m::fetch::hook
{
2018-11-30 21:59:44 +01:00
hook_handler,
{
{ "_site", "vm.fetch" }
}
};
void
2018-11-30 21:59:44 +01:00
ircd::m::fetch::hook_handler(const event &event,
vm::eval &eval)
{
assert(eval.opts);
const auto &opts{*eval.opts};
2018-11-30 21:59:44 +01:00
const auto &type
{
at<"type"_>(event)
};
if(type == "m.room.create")
return;
2018-11-30 21:59:44 +01:00
const m::room::id &room_id
{
2018-11-30 21:59:44 +01:00
at<"room_id"_>(event)
};
if(opts.head_must_exist || opts.history)
if(!exists(room_id))
2018-10-23 18:13:48 +02:00
throw vm::error
{
2018-11-30 21:59:44 +01:00
vm::fault::STATE, "Missing state for room %s",
2018-10-23 18:13:48 +02:00
string_view{room_id}
};
const event::prev prev
{
*eval.event_
};
2018-11-30 21:59:44 +01:00
const size_t prev_count
{
2018-11-30 21:59:44 +01:00
size(json::get<"prev_events"_>(prev))
};
for(size_t i(0); i < prev_count; ++i)
{
2018-11-30 21:59:44 +01:00
const auto &prev_id
2018-10-23 18:13:48 +02:00
{
2018-11-30 21:59:44 +01:00
prev.prev_event(i)
2018-10-23 18:13:48 +02:00
};
2018-11-30 21:59:44 +01:00
if(!eval.opts->prev_check_exists)
continue;
2018-10-23 18:13:48 +02:00
2018-11-30 21:59:44 +01:00
if(exists(prev_id))
continue;
2018-10-23 18:13:48 +02:00
2018-11-30 21:59:44 +01:00
throw vm::error
{
vm::fault::EVENT, "Missing prev %s in %s in %s",
string_view{prev_id},
json::get<"event_id"_>(*eval.event_),
json::get<"room_id"_>(*eval.event_)
};
}
}
//
2018-11-30 21:59:44 +01:00
// util
//
2018-11-30 21:59:44 +01:00
namespace ircd::m::fetch
{
2018-11-30 21:59:44 +01:00
extern "C" void
auth_chain_fetch(const m::room::id &room_id,
const m::event::id &event_id,
const net::hostport &remote,
const milliseconds &timeout,
const std::function<bool (const m::event &)> &);
extern "C" void
auth_chain_eval(const m::room::id &room_id,
const m::event::id &event_id,
const net::hostport &remote);
}
2018-11-30 21:59:44 +01:00
extern "C" void
ircd::m::fetch::auth_chain_fetch(const m::room::id &room_id,
const m::event::id &event_id,
const net::hostport &remote,
const milliseconds &timeout,
const std::function<bool (const m::event &)> &closure)
{
2018-11-30 21:59:44 +01:00
m::v1::event_auth::opts opts;
opts.remote = remote;
opts.dynamic = true;
const unique_buffer<mutable_buffer> buf
{
2018-11-30 21:59:44 +01:00
16_KiB
};
2018-11-30 21:59:44 +01:00
m::v1::event_auth request
{
2018-11-30 21:59:44 +01:00
room_id, event_id, buf, std::move(opts)
};
2018-11-30 21:59:44 +01:00
request.wait(timeout);
request.get();
2018-10-23 18:13:48 +02:00
2018-11-30 21:59:44 +01:00
const json::array &auth_chain
{
request
};
2018-11-30 21:59:44 +01:00
std::vector<m::event> events{auth_chain.count()};
std::transform(begin(auth_chain), end(auth_chain), begin(events), []
(const json::object &pdu)
{
2018-11-30 21:59:44 +01:00
return m::event{pdu};
});
2018-11-30 21:59:44 +01:00
std::sort(begin(events), end(events));
for(const auto &event : events)
if(!closure(event))
return;
}
2018-11-30 21:59:44 +01:00
extern "C" void
ircd::m::fetch::auth_chain_eval(const m::room::id &room_id,
const m::event::id &event_id,
const net::hostport &remote)
{
2018-11-30 21:59:44 +01:00
m::vm::opts opts;
opts.non_conform.set(m::event::conforms::MISSING_PREV_STATE);
opts.infolog_accept = true;
opts.warnlog |= m::vm::fault::STATE;
opts.warnlog &= ~m::vm::fault::EXISTS;
opts.errorlog &= ~m::vm::fault::STATE;
auth_chain_fetch(room_id, event_id, remote, seconds(30), [&opts]
(const auto &event)
{
2018-11-30 21:59:44 +01:00
m::vm::eval
{
event, opts
};
return true;
});
}
//
// fetch::request
//
2018-10-23 18:13:48 +02:00
ircd::m::fetch::request::request(const m::room::id &room_id,
const m::event::id &event_id,
const mutable_buffer &buf)
:room_id{room_id}
,event_id{event_id}
,_buf
{
!buf?
unique_buffer<mutable_buffer>{96_KiB}:
unique_buffer<mutable_buffer>{}
}
,buf
{
empty(buf)? _buf: buf
}
{
// Ensure buffer has enough room for a worst-case event, request
// headers and response headers.
assert(size(this->buf) >= 64_KiB + 8_KiB + 8_KiB);
}
void
2018-10-23 18:13:48 +02:00
ircd::m::fetch::request::start()
{
m::v1::event::opts opts;
opts.dynamic = false;
opts.remote = origin?: select_random_origin();
start(std::move(opts));
}
void
2018-10-23 18:13:48 +02:00
ircd::m::fetch::request::start(m::v1::event::opts &&opts)
{
if(!started)
started = ircd::time();
last = ircd::time();
static_cast<m::v1::event &>(*this) =
{
this->event_id, this->buf, std::move(opts)
};
}
ircd::string_view
2018-10-23 18:13:48 +02:00
ircd::m::fetch::request::select_random_origin()
{
const m::room::origins origins
{
room_id
};
// copies randomly selected origin into the attempted set.
const auto closure{[this]
(const string_view &origin)
{
this->select_origin(origin);
}};
// Tests if origin is potentially viable
const auto proffer{[this]
(const string_view &origin)
{
// Don't want to request from myself.
if(my_host(origin))
return false;
// Don't want to use a peer we already tried and failed with.
if(attempted.count(origin))
return false;
// Don't want to use a peer marked with an error by ircd::server
if(ircd::server::errmsg(origin))
return false;
return true;
}};
if(!origins.random(closure, proffer))
throw m::NOT_FOUND
{
"Cannot find any server to fetch %s in %s",
string_view{event_id},
string_view{room_id},
};
return this->origin;
}
ircd::string_view
2018-10-23 18:13:48 +02:00
ircd::m::fetch::request::select_origin(const string_view &origin)
{
const auto iit
{
attempted.emplace(std::string{origin})
};
this->origin = *iit.first;
return this->origin;
}
2018-10-23 18:13:48 +02:00
bool
ircd::m::fetch::request::handle()
{
auto &future
{
static_cast<m::v1::event &>(*this)
};
future.wait(); try
{
future.get();
}
catch(...)
{
eptr = std::current_exception();
}
if(!eptr)
finish();
else
retry();
2018-10-23 18:13:48 +02:00
return finished;
}
void
2018-10-23 18:13:48 +02:00
ircd::m::fetch::request::retry()
try
{
eptr = std::exception_ptr{};
origin = {};
start();
}
catch(...)
{
eptr = std::current_exception();
finish();
}
void
2018-10-23 18:13:48 +02:00
ircd::m::fetch::request::finish()
{
finished = ircd::time();
}
bool
2018-10-23 18:13:48 +02:00
ircd::m::fetch::request::operator()(const request &a,
const request &b)
const
{
return a.event_id < b.event_id;
}
bool
2018-10-23 18:13:48 +02:00
ircd::m::fetch::request::operator()(const request &a,
const string_view &b)
const
{
return a.event_id < b;
}
bool
2018-10-23 18:13:48 +02:00
ircd::m::fetch::request::operator()(const string_view &a,
const request &b)
const
{
return a < b.event_id;
}