2017-07-13 12:41:30 +02:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// 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 input contains the code processes new room events
|
2020-09-02 18:13:15 +02:00
|
|
|
package input
|
2017-07-13 12:41:30 +02:00
|
|
|
|
|
|
|
import (
|
2017-09-13 14:37:50 +02:00
|
|
|
"context"
|
2017-07-13 12:41:30 +02:00
|
|
|
"encoding/json"
|
2020-08-20 17:24:33 +02:00
|
|
|
"sync"
|
2017-07-13 12:41:30 +02:00
|
|
|
|
2022-01-05 18:44:49 +01:00
|
|
|
"github.com/Arceliar/phony"
|
2021-03-24 11:25:24 +01:00
|
|
|
"github.com/getsentry/sentry-go"
|
2020-11-19 12:34:59 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/hooks"
|
2020-09-04 11:40:58 +02:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/acls"
|
2017-07-13 12:41:30 +02:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2020-09-02 18:13:15 +02:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage"
|
2022-01-05 18:44:49 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
2020-09-02 18:13:15 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2022-01-05 18:44:49 +01:00
|
|
|
"github.com/nats-io/nats.go"
|
2021-07-02 10:48:55 +02:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2020-06-12 13:10:08 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
2021-07-13 12:19:21 +02:00
|
|
|
"github.com/tidwall/gjson"
|
2017-07-13 12:41:30 +02:00
|
|
|
)
|
|
|
|
|
2021-07-13 12:19:21 +02:00
|
|
|
var keyContentFields = map[string]string{
|
|
|
|
"m.room.join_rules": "join_rule",
|
|
|
|
"m.room.history_visibility": "history_visibility",
|
|
|
|
"m.room.member": "membership",
|
|
|
|
}
|
|
|
|
|
2020-09-02 18:13:15 +02:00
|
|
|
type Inputer struct {
|
|
|
|
DB storage.Database
|
2022-01-05 18:44:49 +01:00
|
|
|
JetStream nats.JetStreamContext
|
2020-09-02 18:13:15 +02:00
|
|
|
ServerName gomatrixserverlib.ServerName
|
2020-09-04 11:40:58 +02:00
|
|
|
ACLs *acls.ServerACLs
|
2022-01-05 18:44:49 +01:00
|
|
|
InputRoomEventTopic string
|
2020-09-02 18:13:15 +02:00
|
|
|
OutputRoomEventTopic string
|
2022-01-05 18:44:49 +01:00
|
|
|
workers sync.Map // room ID -> *phony.Inbox
|
2020-09-03 16:22:16 +02:00
|
|
|
}
|
|
|
|
|
2022-01-05 18:44:49 +01:00
|
|
|
// onMessage is called when a new event arrives in the roomserver input stream.
|
|
|
|
func (r *Inputer) Start() error {
|
|
|
|
_, err := r.JetStream.Subscribe(
|
|
|
|
r.InputRoomEventTopic,
|
|
|
|
// We specifically don't use jetstream.WithJetStreamMessage here because we
|
|
|
|
// queue the task off to a room-specific queue and the ACK needs to be sent
|
|
|
|
// later, possibly with an error response to the inputter if synchronous.
|
|
|
|
func(msg *nats.Msg) {
|
|
|
|
roomID := msg.Header.Get("room_id")
|
|
|
|
var inputRoomEvent api.InputRoomEvent
|
|
|
|
if err := json.Unmarshal(msg.Data, &inputRoomEvent); err != nil {
|
|
|
|
_ = msg.Term()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
inbox, _ := r.workers.LoadOrStore(roomID, &phony.Inbox{})
|
2022-01-07 14:41:53 +01:00
|
|
|
roomserverInputBackpressure.With(prometheus.Labels{"room_id": roomID}).Inc()
|
2022-01-05 18:44:49 +01:00
|
|
|
inbox.(*phony.Inbox).Act(nil, func() {
|
2022-01-07 14:41:53 +01:00
|
|
|
defer roomserverInputBackpressure.With(prometheus.Labels{"room_id": roomID}).Dec()
|
2022-01-05 18:44:49 +01:00
|
|
|
if err := r.processRoomEvent(context.TODO(), &inputRoomEvent); err != nil {
|
|
|
|
sentry.CaptureException(err)
|
|
|
|
} else {
|
|
|
|
hooks.Run(hooks.KindNewEventPersisted, inputRoomEvent.Event)
|
|
|
|
}
|
|
|
|
_ = msg.Ack()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// NATS wants to acknowledge automatically by default when the message is
|
|
|
|
// read from the stream, but we want to override that behaviour by making
|
|
|
|
// sure that we only acknowledge when we're happy we've done everything we
|
|
|
|
// can. This ensures we retry things when it makes sense to do so.
|
|
|
|
nats.ManualAck(),
|
|
|
|
// NATS will try to redeliver things to us automatically if we don't ack
|
|
|
|
// or nak them within a certain amount of time. This stops that from
|
|
|
|
// happening, so we don't end up doing a lot of unnecessary duplicate work.
|
|
|
|
nats.MaxDeliver(0),
|
|
|
|
)
|
|
|
|
return err
|
2020-09-03 16:22:16 +02:00
|
|
|
}
|
|
|
|
|
2022-01-05 18:44:49 +01:00
|
|
|
// InputRoomEvents implements api.RoomserverInternalAPI
|
|
|
|
func (r *Inputer) InputRoomEvents(
|
|
|
|
ctx context.Context,
|
|
|
|
request *api.InputRoomEventsRequest,
|
|
|
|
response *api.InputRoomEventsResponse,
|
|
|
|
) {
|
|
|
|
if request.Asynchronous {
|
|
|
|
var err error
|
|
|
|
for _, e := range request.InputRoomEvents {
|
|
|
|
msg := &nats.Msg{
|
|
|
|
Subject: r.InputRoomEventTopic,
|
|
|
|
Header: nats.Header{},
|
|
|
|
}
|
|
|
|
roomID := e.Event.RoomID()
|
|
|
|
msg.Header.Set("room_id", roomID)
|
|
|
|
msg.Data, err = json.Marshal(e)
|
|
|
|
if err != nil {
|
|
|
|
response.ErrMsg = err.Error()
|
|
|
|
return
|
2021-06-28 16:11:36 +02:00
|
|
|
}
|
2022-01-05 18:44:49 +01:00
|
|
|
if _, err = r.JetStream.PublishMsg(msg); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
responses := make(chan error, len(request.InputRoomEvents))
|
|
|
|
defer close(responses)
|
|
|
|
for _, e := range request.InputRoomEvents {
|
|
|
|
inputRoomEvent := e
|
2022-01-07 14:41:53 +01:00
|
|
|
roomID := inputRoomEvent.Event.RoomID()
|
|
|
|
inbox, _ := r.workers.LoadOrStore(roomID, &phony.Inbox{})
|
|
|
|
roomserverInputBackpressure.With(prometheus.Labels{"room_id": roomID}).Inc()
|
2022-01-05 18:44:49 +01:00
|
|
|
inbox.(*phony.Inbox).Act(nil, func() {
|
2022-01-07 14:41:53 +01:00
|
|
|
defer roomserverInputBackpressure.With(prometheus.Labels{"room_id": roomID}).Dec()
|
2022-01-05 18:44:49 +01:00
|
|
|
err := r.processRoomEvent(context.TODO(), &inputRoomEvent)
|
|
|
|
if err != nil {
|
|
|
|
sentry.CaptureException(err)
|
|
|
|
} else {
|
|
|
|
hooks.Run(hooks.KindNewEventPersisted, inputRoomEvent.Event)
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
default:
|
|
|
|
responses <- err
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
for i := 0; i < len(request.InputRoomEvents); i++ {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
case err := <-responses:
|
|
|
|
if err != nil {
|
|
|
|
response.ErrMsg = err.Error()
|
|
|
|
return
|
|
|
|
}
|
2020-11-19 12:34:59 +01:00
|
|
|
}
|
2020-09-03 16:22:16 +02:00
|
|
|
}
|
|
|
|
}
|
2020-09-02 18:13:15 +02:00
|
|
|
}
|
|
|
|
|
2017-08-08 17:38:03 +02:00
|
|
|
// WriteOutputEvents implements OutputRoomEventWriter
|
2020-09-02 18:13:15 +02:00
|
|
|
func (r *Inputer) WriteOutputEvents(roomID string, updates []api.OutputEvent) error {
|
2022-01-05 18:44:49 +01:00
|
|
|
var err error
|
|
|
|
for _, update := range updates {
|
|
|
|
msg := &nats.Msg{
|
|
|
|
Subject: r.OutputRoomEventTopic,
|
|
|
|
Header: nats.Header{},
|
|
|
|
}
|
|
|
|
msg.Header.Set(jetstream.RoomID, roomID)
|
|
|
|
msg.Data, err = json.Marshal(update)
|
2017-08-08 17:38:03 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-06-12 13:10:08 +02:00
|
|
|
logger := log.WithFields(log.Fields{
|
|
|
|
"room_id": roomID,
|
2022-01-05 18:44:49 +01:00
|
|
|
"type": update.Type,
|
2020-06-12 13:10:08 +02:00
|
|
|
})
|
2022-01-05 18:44:49 +01:00
|
|
|
if update.NewRoomEvent != nil {
|
|
|
|
eventType := update.NewRoomEvent.Event.Type()
|
2020-06-12 13:10:08 +02:00
|
|
|
logger = logger.WithFields(log.Fields{
|
2021-07-13 12:19:21 +02:00
|
|
|
"event_type": eventType,
|
2022-01-05 18:44:49 +01:00
|
|
|
"event_id": update.NewRoomEvent.Event.EventID(),
|
|
|
|
"adds_state": len(update.NewRoomEvent.AddsStateEventIDs),
|
|
|
|
"removes_state": len(update.NewRoomEvent.RemovesStateEventIDs),
|
|
|
|
"send_as_server": update.NewRoomEvent.SendAsServer,
|
|
|
|
"sender": update.NewRoomEvent.Event.Sender(),
|
2020-06-12 13:10:08 +02:00
|
|
|
})
|
2022-01-05 18:44:49 +01:00
|
|
|
if update.NewRoomEvent.Event.StateKey() != nil {
|
|
|
|
logger = logger.WithField("state_key", *update.NewRoomEvent.Event.StateKey())
|
2021-07-13 12:19:21 +02:00
|
|
|
}
|
|
|
|
contentKey := keyContentFields[eventType]
|
|
|
|
if contentKey != "" {
|
2022-01-05 18:44:49 +01:00
|
|
|
value := gjson.GetBytes(update.NewRoomEvent.Event.Content(), contentKey)
|
2021-07-13 12:19:21 +02:00
|
|
|
if value.Exists() {
|
|
|
|
logger = logger.WithField("content_value", value.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-05 18:44:49 +01:00
|
|
|
if eventType == "m.room.server_acl" && update.NewRoomEvent.Event.StateKeyEquals("") {
|
|
|
|
ev := update.NewRoomEvent.Event.Unwrap()
|
2020-11-16 16:44:53 +01:00
|
|
|
defer r.ACLs.OnServerACLUpdate(ev)
|
2020-09-04 11:40:58 +02:00
|
|
|
}
|
2020-06-12 13:10:08 +02:00
|
|
|
}
|
2022-01-05 18:44:49 +01:00
|
|
|
logger.Tracef("Producing to topic '%s'", r.OutputRoomEventTopic)
|
|
|
|
if _, err := r.JetStream.PublishMsg(msg); err != nil {
|
|
|
|
logger.WithError(err).Errorf("Failed to produce to topic '%s': %s", r.OutputRoomEventTopic, err)
|
|
|
|
return err
|
2020-10-27 15:11:37 +01:00
|
|
|
}
|
|
|
|
}
|
2022-01-05 18:44:49 +01:00
|
|
|
return nil
|
2017-07-13 12:41:30 +02:00
|
|
|
}
|
|
|
|
|
2021-07-02 10:48:55 +02:00
|
|
|
func init() {
|
|
|
|
prometheus.MustRegister(roomserverInputBackpressure)
|
|
|
|
}
|
|
|
|
|
|
|
|
var roomserverInputBackpressure = prometheus.NewGaugeVec(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "dendrite",
|
|
|
|
Subsystem: "roomserver",
|
|
|
|
Name: "input_backpressure",
|
|
|
|
Help: "How many events are queued for input for a given room",
|
|
|
|
},
|
|
|
|
[]string{"room_id"},
|
|
|
|
)
|