0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-26 05:48:20 +02:00

ircd:Ⓜ️:vm: Add inner lock around write commitment.

This commit is contained in:
Jason Volk 2019-09-08 18:11:45 -07:00
parent c01a816582
commit a35328f384
3 changed files with 22 additions and 8 deletions

View file

@ -37,6 +37,7 @@ namespace ircd::m::vm
namespace ircd::m::vm::sequence
{
extern ctx::dock dock;
extern ctx::mutex mutex;
extern uint64_t retired; // already written; always monotonic
extern uint64_t committed; // pending write; usually monotonic
extern uint64_t uncommitted; // evaluating; not monotonic

View file

@ -1536,6 +1536,9 @@ ircd::m::vm::eval::operator()(const event &event)
// sequence
//
decltype(ircd::m::vm::sequence::mutex)
ircd::m::vm::sequence::mutex;
decltype(ircd::m::vm::sequence::dock)
ircd::m::vm::sequence::dock;

View file

@ -868,13 +868,7 @@ ircd::m::vm::execute_pdu(eval &eval,
at<"type"_>(event)
};
const bool already_exists
{
exists(event_id)
};
//TODO: ABA
if(already_exists && !opts.replays)
if(m::exists(event_id) && !opts.replays)
throw error
{
fault::EXISTS, "Event has already been evaluated."
@ -954,7 +948,20 @@ ircd::m::vm::execute_pdu(eval &eval,
// Commit the transaction to database iff this eval is at the stack base.
if(opts.write && !eval.sequence_shared[0])
{
const std::lock_guard lock
{
sequence::mutex
};
if(m::exists(event_id) && !opts.replays)
throw error
{
fault::EXISTS, "Write commit rejected :Event has already been evaluated."
};
write_commit(eval);
}
// Wait for sequencing only if this is the stack base, otherwise we'll
// never return back to that stack base.
@ -1106,7 +1113,10 @@ ircd::m::vm::write_commit(eval &eval)
assert(eval.txn);
assert(eval.txn.use_count() == 1);
assert(eval.sequence_shared[0] == 0);
auto &txn(*eval.txn);
auto &txn
{
*eval.txn
};
#ifdef RB_DEBUG
const auto db_seq_before(db::sequence(*m::dbs::events));