Make "Inbound federation rejects receipts from wrong remote" pass
This commit is contained in:
parent
dee77b638a
commit
b4ba0be6ba
|
@ -30,6 +30,7 @@ import (
|
||||||
"github.com/matrix-org/dendrite/roomserver/api"
|
"github.com/matrix-org/dendrite/roomserver/api"
|
||||||
"github.com/matrix-org/gomatrixserverlib"
|
"github.com/matrix-org/gomatrixserverlib"
|
||||||
"github.com/matrix-org/util"
|
"github.com/matrix-org/util"
|
||||||
|
"github.com/pkg/errors"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -322,12 +323,83 @@ func (t *txnReq) processEDUs(ctx context.Context) {
|
||||||
}
|
}
|
||||||
case gomatrixserverlib.MDeviceListUpdate:
|
case gomatrixserverlib.MDeviceListUpdate:
|
||||||
t.processDeviceListUpdate(ctx, e)
|
t.processDeviceListUpdate(ctx, e)
|
||||||
|
case "m.receipt": // to be replaced by gomatrixserverlib.MReceipt
|
||||||
|
// https://matrix.org/docs/spec/server_server/r0.1.4#receipts
|
||||||
|
payload := receiptPayload{}
|
||||||
|
|
||||||
|
if err := json.Unmarshal(e.Content, &payload.Data); err != nil {
|
||||||
|
util.GetLogger(ctx).WithError(err).Error("Failed to unmarshal receipt event")
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
for roomID, receipt := range payload.Data {
|
||||||
|
for userID := range receipt.MRead {
|
||||||
|
_, domain, err := gomatrixserverlib.SplitID('@', userID)
|
||||||
|
if err != nil {
|
||||||
|
util.GetLogger(ctx).WithError(err).Error("Failed to split domain from receipt event sender")
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if t.Origin != domain {
|
||||||
|
util.GetLogger(ctx).Warnf("Dropping receipt event where sender domain (%q) doesn't match origin (%q)", domain, t.Origin)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
ts := receipt.MRead[userID].Data.TS
|
||||||
|
events := receipt.MRead[userID].EventIDs
|
||||||
|
if err := t.processReceiptEvent(ctx, userID, roomID, "m.read", ts, events); err != nil {
|
||||||
|
util.GetLogger(ctx).WithError(err).WithFields(logrus.Fields{
|
||||||
|
"sender": t.Origin,
|
||||||
|
"user_id": userID,
|
||||||
|
"room_id": roomID,
|
||||||
|
"events": receipt.MRead[userID].EventIDs,
|
||||||
|
}).Error("Failed to send receipt event to edu server")
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
util.GetLogger(ctx).WithField("type", e.Type).Debug("Unhandled EDU")
|
util.GetLogger(ctx).WithField("type", e.Type).Debug("Unhandled EDU")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ReceiptPayload is the receipt payload passed between servers
|
||||||
|
type receiptPayload struct {
|
||||||
|
Data map[string]struct {
|
||||||
|
MRead map[string]struct {
|
||||||
|
Data struct {
|
||||||
|
TS gomatrixserverlib.Timestamp `json:"ts"`
|
||||||
|
} `json:"data"`
|
||||||
|
EventIDs []string `json:"event_ids"`
|
||||||
|
} `json:"m.read"`
|
||||||
|
} `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// processReceiptEvent sends receipt events to the edu server
|
||||||
|
func (t *txnReq) processReceiptEvent(ctx context.Context,
|
||||||
|
userID, roomID, receiptType string,
|
||||||
|
timestamp gomatrixserverlib.Timestamp,
|
||||||
|
eventIDs []string,
|
||||||
|
) error {
|
||||||
|
// store every event
|
||||||
|
for _, eventID := range eventIDs {
|
||||||
|
req := eduserverAPI.InputReceiptEventRequest{
|
||||||
|
InputReceiptEvent: eduserverAPI.InputReceiptEvent{
|
||||||
|
UserID: userID,
|
||||||
|
RoomID: roomID,
|
||||||
|
EventID: eventID,
|
||||||
|
Type: receiptType,
|
||||||
|
Timestamp: timestamp,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
resp := eduserverAPI.InputReceiptEventResponse{}
|
||||||
|
if err := t.eduAPI.InputReceiptEvent(ctx, &req, &resp); err != nil {
|
||||||
|
return errors.Wrap(err, "unable to set receipt event")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (t *txnReq) processDeviceListUpdate(ctx context.Context, e gomatrixserverlib.EDU) {
|
func (t *txnReq) processDeviceListUpdate(ctx context.Context, e gomatrixserverlib.EDU) {
|
||||||
var payload gomatrixserverlib.DeviceListUpdateEvent
|
var payload gomatrixserverlib.DeviceListUpdateEvent
|
||||||
if err := json.Unmarshal(e.Content, &payload); err != nil {
|
if err := json.Unmarshal(e.Content, &payload); err != nil {
|
||||||
|
|
|
@ -489,3 +489,4 @@ Receipts must be m.read
|
||||||
Read receipts appear in initial v2 /sync
|
Read receipts appear in initial v2 /sync
|
||||||
New read receipts appear in incremental v2 /sync
|
New read receipts appear in incremental v2 /sync
|
||||||
Outbound federation sends receipts
|
Outbound federation sends receipts
|
||||||
|
Inbound federation rejects receipts from wrong remote
|
Loading…
Reference in a new issue