2020-05-01 14:01:50 +02:00
|
|
|
package internal
|
2020-04-29 12:34:31 +02:00
|
|
|
|
|
|
|
import (
|
2021-11-24 11:45:23 +01:00
|
|
|
"crypto/ed25519"
|
|
|
|
"encoding/base64"
|
2022-01-27 15:29:14 +01:00
|
|
|
"fmt"
|
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-12-13 14:24:49 +01:00
|
|
|
keyRing *gomatrixserverlib.KeyRing,
|
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")
|
|
|
|
}
|
|
|
|
|
2021-12-13 14:24:49 +01:00
|
|
|
if keyRing == nil {
|
|
|
|
keyRing = &gomatrixserverlib.KeyRing{
|
|
|
|
KeyFetchers: []gomatrixserverlib.KeyFetcher{},
|
|
|
|
KeyDatabase: serverKeyDB,
|
|
|
|
}
|
2021-11-24 11:45:23 +01:00
|
|
|
|
2021-12-13 14:24:49 +01:00
|
|
|
addDirectFetcher := func() {
|
|
|
|
keyRing.KeyFetchers = append(
|
|
|
|
keyRing.KeyFetchers,
|
|
|
|
&gomatrixserverlib.DirectKeyFetcher{
|
|
|
|
Client: federation,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2021-11-24 11:45:23 +01:00
|
|
|
|
2021-12-13 14:24:49 +01:00
|
|
|
if cfg.PreferDirectFetch {
|
|
|
|
addDirectFetcher()
|
|
|
|
} else {
|
|
|
|
defer addDirectFetcher()
|
2021-11-24 11:45:23 +01:00
|
|
|
}
|
|
|
|
|
2021-12-13 14:24:49 +01:00
|
|
|
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,
|
2021-11-24 11:45:23 +01:00
|
|
|
}
|
|
|
|
|
2021-12-13 14:24:49 +01:00
|
|
|
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
|
|
|
|
}
|
2021-11-24 11:45:23 +01:00
|
|
|
|
2021-12-13 14:24:49 +01:00
|
|
|
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")
|
|
|
|
}
|
2021-11-24 11:45:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2022-01-27 15:29:14 +01:00
|
|
|
func (a *FederationInternalAPI) doRequestIfNotBackingOffOrBlacklisted(
|
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
|
|
|
|
}
|
|
|
|
|
2022-01-27 15:29:14 +01:00
|
|
|
func (a *FederationInternalAPI) doRequestIfNotBlacklisted(
|
|
|
|
s gomatrixserverlib.ServerName, request func() (interface{}, error),
|
|
|
|
) (interface{}, error) {
|
|
|
|
stats := a.statistics.ForServer(s)
|
|
|
|
if _, blacklisted := stats.BackoffInfo(); blacklisted {
|
|
|
|
return stats, &api.FederationClientError{
|
|
|
|
Err: fmt.Sprintf("server %q is blacklisted", s),
|
|
|
|
Blacklisted: true,
|
|
|
|
}
|
2021-01-19 18:14:25 +01:00
|
|
|
}
|
2022-01-27 15:29:14 +01:00
|
|
|
return request()
|
2021-01-19 18:14:25 +01:00
|
|
|
}
|