2018-12-02 00:05:50 +01:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_M_EVENT_H
|
|
|
|
|
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
struct event;
|
|
|
|
|
|
|
|
// General util
|
|
|
|
bool my(const id::event &);
|
|
|
|
bool my(const event &);
|
|
|
|
bool exists(const id::event &);
|
|
|
|
bool exists(const id::event &, const bool &good);
|
2018-12-27 03:25:59 +01:00
|
|
|
bool cached(const id::event &);
|
2018-12-02 00:05:50 +01:00
|
|
|
bool good(const id::event &);
|
|
|
|
bool bad(const id::event &);
|
2019-02-20 19:32:36 +01:00
|
|
|
|
2020-06-09 08:11:05 +02:00
|
|
|
// parallel util; returns bitset
|
|
|
|
uint64_t exists(const vector_view<const id::event> &);
|
|
|
|
|
2019-02-20 19:32:36 +01:00
|
|
|
// Equality tests the event_id only! know this.
|
|
|
|
bool operator==(const event &a, const event &b);
|
|
|
|
|
|
|
|
// Depth comparison; expect unstable sorting.
|
|
|
|
bool operator<(const event &, const event &);
|
|
|
|
bool operator>(const event &, const event &);
|
|
|
|
bool operator<=(const event &, const event &);
|
|
|
|
bool operator>=(const event &, const event &);
|
|
|
|
|
|
|
|
// Topological comparison
|
2019-09-18 19:30:23 +02:00
|
|
|
size_t degree(const event &);
|
2019-02-20 19:32:36 +01:00
|
|
|
bool before(const event &a, const event &b);
|
|
|
|
|
|
|
|
json::object hashes(const mutable_buffer &, const event &);
|
2020-02-24 07:44:14 +01:00
|
|
|
event signatures(const mutable_buffer &, const m::event &, const string_view &origin);
|
2019-02-20 19:32:36 +01:00
|
|
|
event signatures(const mutable_buffer &, const m::event &);
|
2020-12-21 19:23:41 +01:00
|
|
|
event essential(event, const mutable_buffer &content, const bool &sigs = false);
|
2019-02-20 19:32:36 +01:00
|
|
|
|
|
|
|
bool verify_hash(const event &, const sha256::buf &);
|
|
|
|
bool verify_hash(const event &);
|
|
|
|
|
|
|
|
bool verify(const event &, const ed25519::pk &, const ed25519::sig &sig);
|
|
|
|
bool verify(const event &, const ed25519::pk &, const string_view &origin, const string_view &pkid);
|
|
|
|
bool verify(const event &, const string_view &origin, const string_view &pkid); // io/yield
|
|
|
|
bool verify(const event &, const string_view &origin); // io/yield
|
|
|
|
bool verify(const event &); // io/yield
|
|
|
|
|
|
|
|
sha256::buf hash(const event &);
|
|
|
|
ed25519::sig sign(const event &, const ed25519::sk &);
|
2020-02-24 07:44:14 +01:00
|
|
|
ed25519::sig sign(const event &, const string_view &origin);
|
2019-02-20 19:32:36 +01:00
|
|
|
ed25519::sig sign(const event &);
|
2020-06-19 07:10:24 +02:00
|
|
|
|
|
|
|
id::event make_id(const event &, const string_view &version, id::event::buf &buf, const const_buffer &hash);
|
|
|
|
id::event make_id(const event &, const string_view &version, id::event::buf &buf);
|
|
|
|
bool check_id(const event &, const string_view &room_version) noexcept;
|
|
|
|
bool check_id(const event &) noexcept;
|
2018-12-02 00:05:50 +01:00
|
|
|
}
|
|
|
|
|
2019-04-23 06:38:27 +02:00
|
|
|
///
|
|
|
|
/// This json::tuple provides at least all of the legal members of the matrix
|
|
|
|
/// standard event. This is the fundamental building block of the matrix
|
|
|
|
/// system. Rooms are collections of events. Messages between servers are
|
|
|
|
/// passed as bundles of events (or directly).
|
|
|
|
///
|
|
|
|
/// It is better to have 100 functions operate on one data structure than
|
|
|
|
/// to have 10 functions operate on 10 data structures.
|
|
|
|
/// -Alan Perlis
|
|
|
|
///
|
|
|
|
struct ircd::m::event
|
|
|
|
:json::tuple
|
|
|
|
<
|
|
|
|
json::property<name::auth_events, json::array>,
|
|
|
|
json::property<name::content, json::object>,
|
|
|
|
json::property<name::depth, int64_t>,
|
|
|
|
json::property<name::event_id, json::string>,
|
|
|
|
json::property<name::hashes, json::object>,
|
2019-07-26 09:08:51 +02:00
|
|
|
json::property<name::membership, json::string>,
|
2019-04-23 06:38:27 +02:00
|
|
|
json::property<name::origin, json::string>,
|
|
|
|
json::property<name::origin_server_ts, time_t>,
|
|
|
|
json::property<name::prev_events, json::array>,
|
|
|
|
json::property<name::prev_state, json::array>,
|
|
|
|
json::property<name::redacts, json::string>,
|
|
|
|
json::property<name::room_id, json::string>,
|
|
|
|
json::property<name::sender, json::string>,
|
|
|
|
json::property<name::signatures, json::object>,
|
|
|
|
json::property<name::state_key, json::string>,
|
|
|
|
json::property<name::type, json::string>
|
|
|
|
>
|
|
|
|
{
|
2020-12-17 00:55:12 +01:00
|
|
|
struct auth;
|
2019-04-23 06:38:27 +02:00
|
|
|
struct prev;
|
|
|
|
struct refs;
|
2019-05-17 08:57:51 +02:00
|
|
|
struct horizon;
|
2019-04-23 06:38:27 +02:00
|
|
|
struct fetch;
|
|
|
|
struct conforms;
|
2019-08-03 01:56:18 +02:00
|
|
|
struct append;
|
2019-04-23 06:38:27 +02:00
|
|
|
|
|
|
|
using keys = json::keys<event>;
|
|
|
|
using id = m::id::event;
|
|
|
|
using idx = uint64_t;
|
|
|
|
using idx_range = std::pair<idx, idx>;
|
|
|
|
using closure = std::function<void (const event &)>;
|
|
|
|
using closure_bool = std::function<bool (const event &)>;
|
|
|
|
using closure_idx = std::function<void (const idx &)>;
|
|
|
|
using closure_idx_bool = std::function<bool (const idx &)>;
|
|
|
|
using closure_iov_mutable = std::function<void (json::iov &)>;
|
|
|
|
|
2019-05-02 11:24:49 +02:00
|
|
|
static constexpr const size_t &MAX_SIZE {64_KiB};
|
|
|
|
static constexpr const size_t &TYPE_MAX_SIZE {256};
|
|
|
|
static constexpr const size_t &ORIGIN_MAX_SIZE {256};
|
2020-03-22 04:39:22 +01:00
|
|
|
static constexpr const size_t &STATE_KEY_MAX_SIZE {512};
|
2019-04-23 06:38:27 +02:00
|
|
|
static conf::item<size_t> max_size;
|
2020-11-30 00:15:54 +01:00
|
|
|
static thread_local char buf[4][MAX_SIZE]; // general-use scratch
|
2019-04-23 06:38:27 +02:00
|
|
|
|
2019-12-10 20:05:33 +01:00
|
|
|
static bool my(const idx &);
|
2020-06-20 07:22:54 +02:00
|
|
|
static json::object preimage(const mutable_buffer &, const json::object &);
|
2019-04-23 06:38:27 +02:00
|
|
|
static void essential(json::iov &event, const json::iov &content, const closure_iov_mutable &);
|
2020-12-16 03:31:02 +01:00
|
|
|
static bool verify(const json::object &, const ed25519::pk &, const ed25519::sig &sig, const bool &canonical = false);
|
2019-04-23 06:38:27 +02:00
|
|
|
static ed25519::sig sign(const string_view &, const ed25519::sk &);
|
|
|
|
static ed25519::sig sign(const string_view &);
|
|
|
|
static ed25519::sig sign(const json::object &, const ed25519::sk &);
|
|
|
|
static ed25519::sig sign(const json::object &);
|
|
|
|
static ed25519::sig sign(json::iov &event, const json::iov &content, const ed25519::sk &);
|
|
|
|
static ed25519::sig sign(json::iov &event, const json::iov &content);
|
|
|
|
static json::object signatures(const mutable_buffer &, json::iov &event, const json::iov &content);
|
|
|
|
static sha256::buf hash(json::iov &event, const string_view &content);
|
|
|
|
static sha256::buf hash(const json::object &);
|
|
|
|
static json::object hashes(const mutable_buffer &, json::iov &event, const string_view &content);
|
|
|
|
|
2019-07-25 22:59:12 +02:00
|
|
|
/// Always set for PDU's, not set for EDU's. The reference to the event_id
|
|
|
|
/// for this event. For v1 events, this may point to somewhere inside the
|
|
|
|
/// source; otherwise the event source may have been hashed into a buffer
|
|
|
|
/// near the construction site, or retrieved from db, etc.
|
|
|
|
id event_id;
|
|
|
|
|
|
|
|
/// Convenience morphism
|
|
|
|
explicit operator const id &() const;
|
2019-06-02 03:30:53 +02:00
|
|
|
|
2019-07-06 04:45:02 +02:00
|
|
|
event(const json::object &, const id &, const keys &);
|
|
|
|
event(const json::object &, const id &);
|
2019-07-12 03:50:52 +02:00
|
|
|
event(id::buf &, const json::object &, const string_view &version = {});
|
2019-04-23 06:38:27 +02:00
|
|
|
event(const json::object &, const keys &);
|
2019-07-06 04:45:02 +02:00
|
|
|
event(const json::object &);
|
|
|
|
explicit event(const json::members &);
|
|
|
|
explicit event(const json::iov &, const id &);
|
|
|
|
explicit event(const json::iov &);
|
2019-04-23 06:38:27 +02:00
|
|
|
event() = default;
|
|
|
|
};
|
|
|
|
|
2020-12-17 02:06:10 +01:00
|
|
|
#include "index.h"
|
2020-12-17 00:55:12 +01:00
|
|
|
#include "auth.h"
|
2019-05-03 05:36:15 +02:00
|
|
|
#include "prev.h"
|
|
|
|
#include "refs.h"
|
2019-05-17 08:57:51 +02:00
|
|
|
#include "horizon.h"
|
2019-05-03 05:36:15 +02:00
|
|
|
#include "event_id.h"
|
|
|
|
#include "fetch.h"
|
|
|
|
#include "cached.h"
|
|
|
|
#include "prefetch.h"
|
|
|
|
#include "conforms.h"
|
|
|
|
#include "pretty.h"
|
2019-08-03 01:56:18 +02:00
|
|
|
#include "append.h"
|
2019-06-02 03:30:53 +02:00
|
|
|
|
|
|
|
inline ircd::m::event::operator
|
2019-07-25 22:59:12 +02:00
|
|
|
const id &()
|
2019-06-02 03:30:53 +02:00
|
|
|
const
|
|
|
|
{
|
2019-07-10 09:26:25 +02:00
|
|
|
return event_id;
|
2019-06-02 03:30:53 +02:00
|
|
|
}
|