2020-02-13 17:27:33 +00:00
|
|
|
// Copyright 2017-2018 New Vector Ltd
|
|
|
|
// Copyright 2019-2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package sqlite3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
2021-04-26 12:25:57 +00:00
|
|
|
"encoding/json"
|
2020-02-13 17:27:33 +00:00
|
|
|
"fmt"
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
|
2020-05-21 13:40:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
2020-06-12 13:55:57 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2020-05-27 10:03:47 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage/shared"
|
2020-05-27 08:36:09 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage/tables"
|
2020-02-13 17:27:33 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/types"
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
const stateDataSchema = `
|
|
|
|
CREATE TABLE IF NOT EXISTS roomserver_state_block (
|
2021-04-26 12:25:57 +00:00
|
|
|
-- The state snapshot NID that identifies this snapshot.
|
|
|
|
state_block_nid INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
|
|
-- The hash of the state block, which is used to enforce uniqueness. The hash is
|
|
|
|
-- generated in Dendrite and passed through to the database, as a btree index over
|
|
|
|
-- this column is cheap and fits within the maximum index size.
|
|
|
|
state_block_hash BLOB UNIQUE,
|
|
|
|
-- The event NIDs contained within the state block, encoded as JSON.
|
|
|
|
event_nids TEXT NOT NULL DEFAULT '[]'
|
2020-02-13 17:27:33 +00:00
|
|
|
);
|
|
|
|
`
|
|
|
|
|
2021-04-26 12:25:57 +00:00
|
|
|
// Insert a new state block. If we conflict on the hash column then
|
|
|
|
// we must perform an update so that the RETURNING statement returns the
|
|
|
|
// ID of the row that we conflicted with, so that we can then refer to
|
|
|
|
// the original block.
|
|
|
|
const insertStateDataSQL = `
|
|
|
|
INSERT INTO roomserver_state_block (state_block_hash, event_nids)
|
|
|
|
VALUES ($1, $2)
|
|
|
|
ON CONFLICT (state_block_hash) DO UPDATE SET event_nids=$2
|
|
|
|
RETURNING state_block_nid
|
2020-02-13 17:27:33 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
const bulkSelectStateBlockEntriesSQL = "" +
|
2021-04-26 12:25:57 +00:00
|
|
|
"SELECT state_block_nid, event_nids" +
|
2021-07-09 09:49:49 +00:00
|
|
|
" FROM roomserver_state_block WHERE state_block_nid IN ($1) ORDER BY state_block_nid ASC"
|
2020-02-13 17:27:33 +00:00
|
|
|
|
|
|
|
type stateBlockStatements struct {
|
2021-04-26 12:25:57 +00:00
|
|
|
db *sql.DB
|
|
|
|
insertStateDataStmt *sql.Stmt
|
|
|
|
bulkSelectStateBlockEntriesStmt *sql.Stmt
|
|
|
|
}
|
|
|
|
|
|
|
|
func createStateBlockTable(db *sql.DB) error {
|
|
|
|
_, err := db.Exec(stateDataSchema)
|
|
|
|
return err
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
2021-04-26 12:25:57 +00:00
|
|
|
func prepareStateBlockTable(db *sql.DB) (tables.StateBlock, error) {
|
2020-07-21 09:48:49 +00:00
|
|
|
s := &stateBlockStatements{
|
2020-08-19 14:38:27 +00:00
|
|
|
db: db,
|
2020-07-21 09:48:49 +00:00
|
|
|
}
|
2020-02-13 17:27:33 +00:00
|
|
|
|
2020-05-27 10:03:47 +00:00
|
|
|
return s, shared.StatementList{
|
2020-02-13 17:27:33 +00:00
|
|
|
{&s.insertStateDataStmt, insertStateDataSQL},
|
|
|
|
{&s.bulkSelectStateBlockEntriesStmt, bulkSelectStateBlockEntriesSQL},
|
2020-05-27 10:03:47 +00:00
|
|
|
}.Prepare(db)
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
2020-05-27 08:36:09 +00:00
|
|
|
func (s *stateBlockStatements) BulkInsertStateData(
|
2021-04-26 12:25:57 +00:00
|
|
|
ctx context.Context,
|
|
|
|
txn *sql.Tx,
|
|
|
|
entries types.StateEntries,
|
|
|
|
) (id types.StateBlockNID, err error) {
|
|
|
|
entries = entries[:util.SortAndUnique(entries)]
|
|
|
|
var nids types.EventNIDs
|
|
|
|
for _, e := range entries {
|
|
|
|
nids = append(nids, e.EventNID)
|
|
|
|
}
|
|
|
|
js, err := json.Marshal(nids)
|
2020-08-19 14:38:27 +00:00
|
|
|
if err != nil {
|
2021-04-26 12:25:57 +00:00
|
|
|
return 0, fmt.Errorf("json.Marshal: %w", err)
|
2020-08-19 14:38:27 +00:00
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
err = s.insertStateDataStmt.QueryRowContext(
|
|
|
|
ctx, nids.Hash(), js,
|
|
|
|
).Scan(&id)
|
|
|
|
return
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
2020-05-27 08:36:09 +00:00
|
|
|
func (s *stateBlockStatements) BulkSelectStateBlockEntries(
|
2021-04-26 12:25:57 +00:00
|
|
|
ctx context.Context, stateBlockNIDs types.StateBlockNIDs,
|
|
|
|
) ([][]types.EventNID, error) {
|
|
|
|
intfs := make([]interface{}, len(stateBlockNIDs))
|
|
|
|
for i := range stateBlockNIDs {
|
|
|
|
intfs[i] = int64(stateBlockNIDs[i])
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
selectOrig := strings.Replace(bulkSelectStateBlockEntriesSQL, "($1)", sqlutil.QueryVariadic(len(intfs)), 1)
|
2020-05-27 08:36:09 +00:00
|
|
|
selectStmt, err := s.db.Prepare(selectOrig)
|
2020-02-13 17:27:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
rows, err := selectStmt.QueryContext(ctx, intfs...)
|
2020-02-13 17:27:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-21 13:40:13 +00:00
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "bulkSelectStateBlockEntries: rows.close() failed")
|
2020-02-13 17:27:33 +00:00
|
|
|
|
2021-04-26 12:25:57 +00:00
|
|
|
results := make([][]types.EventNID, len(stateBlockNIDs))
|
2020-02-13 17:27:33 +00:00
|
|
|
i := 0
|
2021-04-26 12:25:57 +00:00
|
|
|
for ; rows.Next(); i++ {
|
|
|
|
var stateBlockNID types.StateBlockNID
|
|
|
|
var result json.RawMessage
|
|
|
|
if err = rows.Scan(&stateBlockNID, &result); err != nil {
|
2020-02-13 17:27:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
r := []types.EventNID{}
|
|
|
|
if err = json.Unmarshal(result, &r); err != nil {
|
|
|
|
return nil, fmt.Errorf("json.Unmarshal: %w", err)
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
results[i] = r
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
if err = rows.Err(); err != nil {
|
2020-02-13 17:27:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
if i != len(stateBlockNIDs) {
|
|
|
|
return nil, fmt.Errorf("storage: state data NIDs missing from the database (%d != %d)", len(results), len(stateBlockNIDs))
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
return results, err
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type stateKeyTupleSorter []types.StateKeyTuple
|
|
|
|
|
|
|
|
func (s stateKeyTupleSorter) Len() int { return len(s) }
|
|
|
|
func (s stateKeyTupleSorter) Less(i, j int) bool { return s[i].LessThan(s[j]) }
|
|
|
|
func (s stateKeyTupleSorter) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|
|
|
|
|
|
|
|
// Check whether a tuple is in the list. Assumes that the list is sorted.
|
|
|
|
func (s stateKeyTupleSorter) contains(value types.StateKeyTuple) bool {
|
|
|
|
i := sort.Search(len(s), func(i int) bool { return !s[i].LessThan(value) })
|
|
|
|
return i < len(s) && s[i] == value
|
|
|
|
}
|
|
|
|
|
|
|
|
// List the unique eventTypeNIDs and eventStateKeyNIDs.
|
|
|
|
// Assumes that the list is sorted.
|
Add peer-to-peer support into Dendrite via libp2p and fetch (#880)
* Use a fork of pq which supports userCurrent on wasm
* Use sqlite3_js driver when running in JS
* Add cmd/dendritejs to pull in sqlite3_js driver for wasm only
* Update to latest go-sqlite-js version
* Replace prometheus with a stub. sigh
* Hard-code a config and don't use opentracing
* Latest go-sqlite3-js version
* Generate a key for now
* Listen for fetch traffic rather than HTTP
* Latest hacks for js
* libp2p support
* More libp2p
* Fork gjson to allow us to enforce auth checks as before
Previously, all events would come down redacted because the hash
checks would fail. They would fail because sjson.DeleteBytes didn't
remove keys not used for hashing. This didn't work because of a build
tag which included a file which no-oped the index returned.
See https://github.com/tidwall/gjson/issues/157
When it's resolved, let's go back to mainline.
* Use gjson@1.6.0 as it fixes https://github.com/tidwall/gjson/issues/157
* Use latest gomatrixserverlib for sig checks
* Fix a bug which could cause exclude_from_sync to not be set
Caused when sending events over federation.
* Use query variadic to make lookups actually work!
* Latest gomatrixserverlib
* Add notes on getting p2p up and running
Partly so I don't forget myself!
* refactor: Move p2p specific stuff to cmd/dendritejs
This is important or else the normal build of dendrite will fail
because the p2p libraries depend on syscall/js which doesn't work
on normal builds.
Also, clean up main.go to read a bit better.
* Update ho-http-js-libp2p to return errors from RoundTrip
* Add an LRU cache around the key DB
We actually need this for P2P because otherwise we can *segfault*
with things like: "runtime: unexpected return pc for runtime.handleEvent"
where the event is a `syscall/js` event, caused by spamming sql.js
caused by "Checking event signatures for 14 events of room state" which
hammers the key DB repeatedly in quick succession.
Using a cache fixes this, though the underlying cause is probably a bug
in the version of Go I'm on (1.13.7)
* breaking: Add Tracing.Enabled to toggle whether we do opentracing
Defaults to false, which is why this is a breaking change. We need
this flag because WASM builds cannot do opentracing.
* Start adding conditional builds for wasm to handle lib/pq
The general idea here is to have the wasm build have a `NewXXXDatabase`
that doesn't import any postgres package and hence we never import
`lib/pq`, which doesn't work under WASM (undefined `userCurrent`).
* Remove lib/pq for wasm for syncapi
* Add conditional building to remaining storage APIs
* Update build script to set env vars correctly for dendritejs
* sqlite bug fixes
* Docs
* Add a no-op main for dendritejs when not building under wasm
* Use the real prometheus, even for WASM
Instead, the dendrite-sw.js must mock out `process.pid` and
`fs.stat` - which must invoke the callback with an error (e.g `EINVAL`)
in order for it to work:
```
global.process = {
pid: 1,
};
global.fs.stat = function(path, cb) {
cb({
code: "EINVAL",
});
}
```
* Linting
2020-03-06 10:23:55 +00:00
|
|
|
func (s stateKeyTupleSorter) typesAndStateKeysAsArrays() (eventTypeNIDs []int64, eventStateKeyNIDs []int64) {
|
|
|
|
eventTypeNIDs = make([]int64, len(s))
|
|
|
|
eventStateKeyNIDs = make([]int64, len(s))
|
2020-02-13 17:27:33 +00:00
|
|
|
for i := range s {
|
|
|
|
eventTypeNIDs[i] = int64(s[i].EventTypeNID)
|
|
|
|
eventStateKeyNIDs[i] = int64(s[i].EventStateKeyNID)
|
|
|
|
}
|
|
|
|
eventTypeNIDs = eventTypeNIDs[:util.SortAndUnique(int64Sorter(eventTypeNIDs))]
|
|
|
|
eventStateKeyNIDs = eventStateKeyNIDs[:util.SortAndUnique(int64Sorter(eventStateKeyNIDs))]
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type int64Sorter []int64
|
|
|
|
|
|
|
|
func (s int64Sorter) Len() int { return len(s) }
|
|
|
|
func (s int64Sorter) Less(i, j int) bool { return s[i] < s[j] }
|
|
|
|
func (s int64Sorter) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|