2020-05-01 14:01:50 +02:00
|
|
|
package internal
|
2020-04-29 12:34:31 +02:00
|
|
|
|
|
|
|
import (
|
2020-08-20 18:03:07 +02:00
|
|
|
"context"
|
2021-11-24 11:45:23 +01:00
|
|
|
"crypto/ed25519"
|
|
|
|
"encoding/base64"
|
2020-09-22 12:05:45 +02:00
|
|
|
"sync"
|
2020-08-20 18:03:07 +02:00
|
|
|
"time"
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/api"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/queue"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/statistics"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/storage"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/storage/cache"
|
|
|
|
"github.com/matrix-org/dendrite/internal/caching"
|
2020-08-20 18:03:07 +02:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2020-12-02 18:41:00 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-08-20 18:03:07 +02:00
|
|
|
"github.com/matrix-org/gomatrix"
|
2020-04-29 16:29:39 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-04-29 12:34:31 +02:00
|
|
|
)
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
// FederationInternalAPI is an implementation of api.FederationInternalAPI
|
|
|
|
type FederationInternalAPI struct {
|
2020-04-29 16:29:39 +02:00
|
|
|
db storage.Database
|
2021-11-24 11:45:23 +01:00
|
|
|
cfg *config.FederationAPI
|
2020-07-22 18:01:29 +02:00
|
|
|
statistics *statistics.Statistics
|
2020-08-20 18:03:07 +02:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI
|
2020-04-29 16:29:39 +02:00
|
|
|
federation *gomatrixserverlib.FederationClient
|
|
|
|
keyRing *gomatrixserverlib.KeyRing
|
2020-06-01 19:34:08 +02:00
|
|
|
queues *queue.OutgoingQueues
|
2020-09-22 12:05:45 +02:00
|
|
|
joins sync.Map // joins currently in progress
|
2020-04-29 16:29:39 +02:00
|
|
|
}
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func NewFederationInternalAPI(
|
|
|
|
db storage.Database, cfg *config.FederationAPI,
|
2020-08-20 18:03:07 +02:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2020-04-29 16:29:39 +02:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2020-07-22 18:01:29 +02:00
|
|
|
statistics *statistics.Statistics,
|
2021-11-24 11:45:23 +01:00
|
|
|
caches *caching.Caches,
|
2020-06-01 19:34:08 +02:00
|
|
|
queues *queue.OutgoingQueues,
|
2021-11-24 11:45:23 +01:00
|
|
|
) *FederationInternalAPI {
|
|
|
|
serverKeyDB, err := cache.NewKeyDatabase(db, caches)
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to set up caching wrapper for server key database")
|
|
|
|
}
|
|
|
|
|
|
|
|
keyRing := &gomatrixserverlib.KeyRing{
|
|
|
|
KeyFetchers: []gomatrixserverlib.KeyFetcher{},
|
|
|
|
KeyDatabase: serverKeyDB,
|
|
|
|
}
|
|
|
|
|
|
|
|
addDirectFetcher := func() {
|
|
|
|
keyRing.KeyFetchers = append(
|
|
|
|
keyRing.KeyFetchers,
|
|
|
|
&gomatrixserverlib.DirectKeyFetcher{
|
|
|
|
Client: federation,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
if cfg.PreferDirectFetch {
|
|
|
|
addDirectFetcher()
|
|
|
|
} else {
|
|
|
|
defer addDirectFetcher()
|
|
|
|
}
|
|
|
|
|
|
|
|
var b64e = base64.StdEncoding.WithPadding(base64.NoPadding)
|
|
|
|
for _, ps := range cfg.KeyPerspectives {
|
|
|
|
perspective := &gomatrixserverlib.PerspectiveKeyFetcher{
|
|
|
|
PerspectiveServerName: ps.ServerName,
|
|
|
|
PerspectiveServerKeys: map[gomatrixserverlib.KeyID]ed25519.PublicKey{},
|
|
|
|
Client: federation,
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, key := range ps.Keys {
|
|
|
|
rawkey, err := b64e.DecodeString(key.PublicKey)
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).WithFields(logrus.Fields{
|
|
|
|
"server_name": ps.ServerName,
|
|
|
|
"public_key": key.PublicKey,
|
|
|
|
}).Warn("Couldn't parse perspective key")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
perspective.PerspectiveServerKeys[key.KeyID] = rawkey
|
|
|
|
}
|
|
|
|
|
|
|
|
keyRing.KeyFetchers = append(keyRing.KeyFetchers, perspective)
|
|
|
|
|
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"server_name": ps.ServerName,
|
|
|
|
"num_public_keys": len(ps.Keys),
|
|
|
|
}).Info("Enabled perspective key fetcher")
|
|
|
|
}
|
|
|
|
|
|
|
|
return &FederationInternalAPI{
|
2020-04-29 16:29:39 +02:00
|
|
|
db: db,
|
|
|
|
cfg: cfg,
|
2020-06-10 17:54:43 +02:00
|
|
|
rsAPI: rsAPI,
|
2020-04-29 16:29:39 +02:00
|
|
|
keyRing: keyRing,
|
2021-11-24 11:45:23 +01:00
|
|
|
federation: federation,
|
Improve federation sender performance, implement backoff and blacklisting, fix up invites a bit (#1007)
* Improve federation sender performance and behaviour, add backoff
* Tweaks
* Tweaks
* Tweaks
* Take copies of events before passing to destination queues
* Don't accidentally drop queued messages
* Don't take copies again
* Tidy up a bit
* Break out statistics (tracked component-wide), report success and failures from Perform actions
* Fix comment, use atomic add
* Improve logic a bit, don't block on wakeup, move idle check
* Don't retry sucessful invites, don't dispatch sendEvent, sendInvite etc
* Dedupe destinations, fix other bug hopefully
* Dispatch sends again
* Federation sender to ignore invites that are destined locally
* Loopback invite events
* Remodel a bit with channels
* Linter
* Only loopback invite event if we know the room
* We should tell other resident servers about the invite if we know about the room
* Correct invite signing
* Fix invite loopback
* Check HTTP response codes, push new invites to front of queue
* Review comments
2020-05-07 13:42:06 +02:00
|
|
|
statistics: statistics,
|
2020-06-01 19:34:08 +02:00
|
|
|
queues: queues,
|
2020-04-29 16:29:39 +02:00
|
|
|
}
|
2020-04-29 12:34:31 +02:00
|
|
|
}
|
2020-08-20 18:03:07 +02:00
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) isBlacklistedOrBackingOff(s gomatrixserverlib.ServerName) (*statistics.ServerStatistics, error) {
|
2020-08-20 18:03:07 +02:00
|
|
|
stats := a.statistics.ForServer(s)
|
|
|
|
until, blacklisted := stats.BackoffInfo()
|
|
|
|
if blacklisted {
|
|
|
|
return stats, &api.FederationClientError{
|
|
|
|
Blacklisted: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
now := time.Now()
|
|
|
|
if until != nil && now.Before(*until) {
|
|
|
|
return stats, &api.FederationClientError{
|
|
|
|
RetryAfter: time.Until(*until),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return stats, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func failBlacklistableError(err error, stats *statistics.ServerStatistics) (until time.Time, blacklisted bool) {
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
mxerr, ok := err.(gomatrix.HTTPError)
|
|
|
|
if !ok {
|
|
|
|
return stats.Failure()
|
|
|
|
}
|
2020-09-08 14:41:08 +02:00
|
|
|
if mxerr.Code == 401 { // invalid signature in X-Matrix header
|
|
|
|
return stats.Failure()
|
|
|
|
}
|
|
|
|
if mxerr.Code >= 500 && mxerr.Code < 600 { // internal server errors
|
2020-08-20 18:03:07 +02:00
|
|
|
return stats.Failure()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) doRequest(
|
2020-08-20 18:03:07 +02:00
|
|
|
s gomatrixserverlib.ServerName, request func() (interface{}, error),
|
|
|
|
) (interface{}, error) {
|
|
|
|
stats, err := a.isBlacklistedOrBackingOff(s)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
res, err := request()
|
|
|
|
if err != nil {
|
|
|
|
until, blacklisted := failBlacklistableError(err, stats)
|
|
|
|
now := time.Now()
|
|
|
|
var retryAfter time.Duration
|
|
|
|
if until.After(now) {
|
|
|
|
retryAfter = time.Until(until)
|
|
|
|
}
|
|
|
|
return res, &api.FederationClientError{
|
|
|
|
Err: err.Error(),
|
|
|
|
Blacklisted: blacklisted,
|
|
|
|
RetryAfter: retryAfter,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stats.Success()
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) GetUserDevices(
|
2020-08-20 18:03:07 +02:00
|
|
|
ctx context.Context, s gomatrixserverlib.ServerName, userID string,
|
|
|
|
) (gomatrixserverlib.RespUserDevices, error) {
|
2020-10-09 18:08:32 +02:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second*30)
|
|
|
|
defer cancel()
|
2020-08-20 18:03:07 +02:00
|
|
|
ires, err := a.doRequest(s, func() (interface{}, error) {
|
|
|
|
return a.federation.GetUserDevices(ctx, s, userID)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return gomatrixserverlib.RespUserDevices{}, err
|
|
|
|
}
|
|
|
|
return ires.(gomatrixserverlib.RespUserDevices), nil
|
|
|
|
}
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) ClaimKeys(
|
2020-08-20 18:03:07 +02:00
|
|
|
ctx context.Context, s gomatrixserverlib.ServerName, oneTimeKeys map[string]map[string]string,
|
|
|
|
) (gomatrixserverlib.RespClaimKeys, error) {
|
2020-10-09 18:08:32 +02:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second*30)
|
|
|
|
defer cancel()
|
2020-08-20 18:03:07 +02:00
|
|
|
ires, err := a.doRequest(s, func() (interface{}, error) {
|
|
|
|
return a.federation.ClaimKeys(ctx, s, oneTimeKeys)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return gomatrixserverlib.RespClaimKeys{}, err
|
|
|
|
}
|
|
|
|
return ires.(gomatrixserverlib.RespClaimKeys), nil
|
|
|
|
}
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) QueryKeys(
|
2020-08-20 18:03:07 +02:00
|
|
|
ctx context.Context, s gomatrixserverlib.ServerName, keys map[string][]string,
|
|
|
|
) (gomatrixserverlib.RespQueryKeys, error) {
|
|
|
|
ires, err := a.doRequest(s, func() (interface{}, error) {
|
|
|
|
return a.federation.QueryKeys(ctx, s, keys)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return gomatrixserverlib.RespQueryKeys{}, err
|
|
|
|
}
|
|
|
|
return ires.(gomatrixserverlib.RespQueryKeys), nil
|
|
|
|
}
|
2020-09-02 16:26:30 +02:00
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) Backfill(
|
2020-09-02 16:26:30 +02:00
|
|
|
ctx context.Context, s gomatrixserverlib.ServerName, roomID string, limit int, eventIDs []string,
|
|
|
|
) (res gomatrixserverlib.Transaction, err error) {
|
2020-10-09 18:08:32 +02:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second*30)
|
|
|
|
defer cancel()
|
2020-09-02 16:26:30 +02:00
|
|
|
ires, err := a.doRequest(s, func() (interface{}, error) {
|
|
|
|
return a.federation.Backfill(ctx, s, roomID, limit, eventIDs)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return gomatrixserverlib.Transaction{}, err
|
|
|
|
}
|
|
|
|
return ires.(gomatrixserverlib.Transaction), nil
|
|
|
|
}
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) LookupState(
|
2020-09-02 16:26:30 +02:00
|
|
|
ctx context.Context, s gomatrixserverlib.ServerName, roomID, eventID string, roomVersion gomatrixserverlib.RoomVersion,
|
|
|
|
) (res gomatrixserverlib.RespState, err error) {
|
2020-10-09 18:08:32 +02:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second*30)
|
|
|
|
defer cancel()
|
2020-09-02 16:26:30 +02:00
|
|
|
ires, err := a.doRequest(s, func() (interface{}, error) {
|
|
|
|
return a.federation.LookupState(ctx, s, roomID, eventID, roomVersion)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return gomatrixserverlib.RespState{}, err
|
|
|
|
}
|
|
|
|
return ires.(gomatrixserverlib.RespState), nil
|
|
|
|
}
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) LookupStateIDs(
|
2020-09-02 16:26:30 +02:00
|
|
|
ctx context.Context, s gomatrixserverlib.ServerName, roomID, eventID string,
|
|
|
|
) (res gomatrixserverlib.RespStateIDs, err error) {
|
2020-10-09 18:08:32 +02:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second*30)
|
|
|
|
defer cancel()
|
2020-09-02 16:26:30 +02:00
|
|
|
ires, err := a.doRequest(s, func() (interface{}, error) {
|
|
|
|
return a.federation.LookupStateIDs(ctx, s, roomID, eventID)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return gomatrixserverlib.RespStateIDs{}, err
|
|
|
|
}
|
|
|
|
return ires.(gomatrixserverlib.RespStateIDs), nil
|
|
|
|
}
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) GetEvent(
|
2020-09-02 16:26:30 +02:00
|
|
|
ctx context.Context, s gomatrixserverlib.ServerName, eventID string,
|
|
|
|
) (res gomatrixserverlib.Transaction, err error) {
|
2020-10-09 18:08:32 +02:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second*30)
|
|
|
|
defer cancel()
|
2020-09-02 16:26:30 +02:00
|
|
|
ires, err := a.doRequest(s, func() (interface{}, error) {
|
|
|
|
return a.federation.GetEvent(ctx, s, eventID)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return gomatrixserverlib.Transaction{}, err
|
|
|
|
}
|
|
|
|
return ires.(gomatrixserverlib.Transaction), nil
|
|
|
|
}
|
2020-09-22 15:40:54 +02:00
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) LookupServerKeys(
|
2020-09-22 15:40:54 +02:00
|
|
|
ctx context.Context, s gomatrixserverlib.ServerName, keyRequests map[gomatrixserverlib.PublicKeyLookupRequest]gomatrixserverlib.Timestamp,
|
|
|
|
) ([]gomatrixserverlib.ServerKeys, error) {
|
2020-10-09 18:08:32 +02:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Minute)
|
|
|
|
defer cancel()
|
2020-09-22 15:40:54 +02:00
|
|
|
ires, err := a.doRequest(s, func() (interface{}, error) {
|
|
|
|
return a.federation.LookupServerKeys(ctx, s, keyRequests)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return []gomatrixserverlib.ServerKeys{}, err
|
|
|
|
}
|
|
|
|
return ires.([]gomatrixserverlib.ServerKeys), nil
|
|
|
|
}
|
2020-12-04 15:11:01 +01:00
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) MSC2836EventRelationships(
|
2020-12-04 15:11:01 +01:00
|
|
|
ctx context.Context, s gomatrixserverlib.ServerName, r gomatrixserverlib.MSC2836EventRelationshipsRequest,
|
|
|
|
roomVersion gomatrixserverlib.RoomVersion,
|
|
|
|
) (res gomatrixserverlib.MSC2836EventRelationshipsResponse, err error) {
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Minute)
|
|
|
|
defer cancel()
|
|
|
|
ires, err := a.doRequest(s, func() (interface{}, error) {
|
|
|
|
return a.federation.MSC2836EventRelationships(ctx, s, r, roomVersion)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return res, err
|
|
|
|
}
|
|
|
|
return ires.(gomatrixserverlib.MSC2836EventRelationshipsResponse), nil
|
|
|
|
}
|
2021-01-19 18:14:25 +01:00
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
func (a *FederationInternalAPI) MSC2946Spaces(
|
2021-01-19 18:14:25 +01:00
|
|
|
ctx context.Context, s gomatrixserverlib.ServerName, roomID string, r gomatrixserverlib.MSC2946SpacesRequest,
|
|
|
|
) (res gomatrixserverlib.MSC2946SpacesResponse, err error) {
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Minute)
|
|
|
|
defer cancel()
|
|
|
|
ires, err := a.doRequest(s, func() (interface{}, error) {
|
|
|
|
return a.federation.MSC2946Spaces(ctx, s, roomID, r)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return res, err
|
|
|
|
}
|
|
|
|
return ires.(gomatrixserverlib.MSC2946SpacesResponse), nil
|
|
|
|
}
|