2017-06-28 15:10:17 +00: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 queue
|
|
|
|
|
|
|
|
import (
|
2020-07-01 10:46:38 +00:00
|
|
|
"context"
|
2020-06-10 15:54:43 +00:00
|
|
|
"crypto/ed25519"
|
2020-07-01 10:46:38 +00:00
|
|
|
"encoding/json"
|
2017-06-28 15:10:17 +00:00
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
|
2020-07-01 10:46:38 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/storage"
|
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 11:42:06 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/types"
|
2020-06-10 15:54:43 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2017-06-28 15:10:17 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
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 11:42:06 +00:00
|
|
|
"github.com/matrix-org/util"
|
2017-11-16 10:12:02 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2017-06-28 15:10:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// OutgoingQueues is a collection of queues for sending transactions to other
|
|
|
|
// matrix servers
|
|
|
|
type OutgoingQueues struct {
|
2020-07-01 10:46:38 +00:00
|
|
|
db storage.Database
|
2020-06-10 15:54:43 +00:00
|
|
|
rsAPI api.RoomserverInternalAPI
|
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 11:42:06 +00:00
|
|
|
origin gomatrixserverlib.ServerName
|
|
|
|
client *gomatrixserverlib.FederationClient
|
|
|
|
statistics *types.Statistics
|
2020-06-10 15:54:43 +00:00
|
|
|
signing *SigningInfo
|
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 11:42:06 +00:00
|
|
|
queuesMutex sync.Mutex // protects the below
|
2017-06-28 15:10:17 +00:00
|
|
|
queues map[gomatrixserverlib.ServerName]*destinationQueue
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewOutgoingQueues makes a new OutgoingQueues
|
2020-04-28 09:53:07 +00:00
|
|
|
func NewOutgoingQueues(
|
2020-07-01 10:46:38 +00:00
|
|
|
db storage.Database,
|
2020-04-28 09:53:07 +00:00
|
|
|
origin gomatrixserverlib.ServerName,
|
|
|
|
client *gomatrixserverlib.FederationClient,
|
2020-06-10 15:54:43 +00:00
|
|
|
rsAPI api.RoomserverInternalAPI,
|
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 11:42:06 +00:00
|
|
|
statistics *types.Statistics,
|
2020-06-10 15:54:43 +00:00
|
|
|
signing *SigningInfo,
|
2020-04-28 09:53:07 +00:00
|
|
|
) *OutgoingQueues {
|
2020-07-03 10:49:49 +00:00
|
|
|
queues := &OutgoingQueues{
|
2020-07-01 10:46:38 +00:00
|
|
|
db: db,
|
2020-06-10 15:54:43 +00:00
|
|
|
rsAPI: rsAPI,
|
2020-04-28 09:53:07 +00:00
|
|
|
origin: origin,
|
|
|
|
client: client,
|
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 11:42:06 +00:00
|
|
|
statistics: statistics,
|
2020-06-10 15:54:43 +00:00
|
|
|
signing: signing,
|
2020-04-28 09:53:07 +00:00
|
|
|
queues: map[gomatrixserverlib.ServerName]*destinationQueue{},
|
2017-06-28 15:10:17 +00:00
|
|
|
}
|
2020-07-03 10:49:49 +00:00
|
|
|
// Look up which servers we have pending items for and then rehydrate those queues.
|
|
|
|
if serverNames, err := db.GetPendingServerNames(context.Background()); err == nil {
|
|
|
|
for _, serverName := range serverNames {
|
|
|
|
queues.getQueue(serverName).wakeQueueIfNeeded()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.WithError(err).Error("Failed to get server names for destination queue hydration")
|
|
|
|
}
|
|
|
|
return queues
|
2017-06-28 15:10:17 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 15:54:43 +00:00
|
|
|
// TODO: Move this somewhere useful for other components as we often need to ferry these 3 variables
|
|
|
|
// around together
|
|
|
|
type SigningInfo struct {
|
|
|
|
ServerName gomatrixserverlib.ServerName
|
|
|
|
KeyID gomatrixserverlib.KeyID
|
|
|
|
PrivateKey ed25519.PrivateKey
|
|
|
|
}
|
|
|
|
|
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 11:42:06 +00:00
|
|
|
func (oqs *OutgoingQueues) getQueue(destination gomatrixserverlib.ServerName) *destinationQueue {
|
|
|
|
oqs.queuesMutex.Lock()
|
|
|
|
defer oqs.queuesMutex.Unlock()
|
|
|
|
oq := oqs.queues[destination]
|
|
|
|
if oq == nil {
|
|
|
|
oq = &destinationQueue{
|
2020-07-03 15:31:56 +00:00
|
|
|
db: oqs.db,
|
|
|
|
rsAPI: oqs.rsAPI,
|
|
|
|
origin: oqs.origin,
|
|
|
|
destination: destination,
|
|
|
|
client: oqs.client,
|
|
|
|
statistics: oqs.statistics.ForServer(destination),
|
|
|
|
incomingEDUs: make(chan *gomatrixserverlib.EDU, 128),
|
|
|
|
incomingInvites: make(chan *gomatrixserverlib.InviteV2Request, 128),
|
2020-07-07 15:36:10 +00:00
|
|
|
notifyPDUs: make(chan bool, 1),
|
2020-07-03 15:31:56 +00:00
|
|
|
interruptBackoff: make(chan bool),
|
|
|
|
signing: oqs.signing,
|
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 11:42:06 +00:00
|
|
|
}
|
|
|
|
oqs.queues[destination] = oq
|
|
|
|
}
|
|
|
|
return oq
|
|
|
|
}
|
|
|
|
|
2017-06-28 15:10:17 +00:00
|
|
|
// SendEvent sends an event to the destinations
|
|
|
|
func (oqs *OutgoingQueues) SendEvent(
|
2020-03-27 16:28:22 +00:00
|
|
|
ev *gomatrixserverlib.HeaderedEvent, origin gomatrixserverlib.ServerName,
|
2017-06-28 15:10:17 +00:00
|
|
|
destinations []gomatrixserverlib.ServerName,
|
|
|
|
) error {
|
|
|
|
if origin != oqs.origin {
|
2018-08-10 15:26:57 +00:00
|
|
|
// TODO: Support virtual hosting; gh issue #577.
|
2017-06-28 15:10:17 +00:00
|
|
|
return fmt.Errorf(
|
|
|
|
"sendevent: unexpected server to send as: got %q expected %q",
|
|
|
|
origin, oqs.origin,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove our own server from the list of destinations.
|
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 11:42:06 +00:00
|
|
|
destinations = filterAndDedupeDests(oqs.origin, destinations)
|
2020-06-12 14:11:33 +00:00
|
|
|
if len(destinations) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2017-06-28 15:10:17 +00:00
|
|
|
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"destinations": destinations, "event": ev.EventID(),
|
|
|
|
}).Info("Sending event")
|
|
|
|
|
2020-07-01 10:46:38 +00:00
|
|
|
headeredJSON, err := json.Marshal(ev)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("json.Marshal: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
nid, err := oqs.db.StoreJSON(context.TODO(), string(headeredJSON))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("sendevent: oqs.db.StoreJSON: %w", err)
|
|
|
|
}
|
|
|
|
|
2017-06-28 15:10:17 +00:00
|
|
|
for _, destination := range destinations {
|
2020-07-01 10:46:38 +00:00
|
|
|
oqs.getQueue(destination).sendEvent(nid)
|
2017-06-28 15:10:17 +00:00
|
|
|
}
|
2018-08-10 15:26:57 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-04-03 13:29:06 +00:00
|
|
|
// SendEvent sends an event to the destinations
|
|
|
|
func (oqs *OutgoingQueues) SendInvite(
|
|
|
|
inviteReq *gomatrixserverlib.InviteV2Request,
|
|
|
|
) error {
|
|
|
|
ev := inviteReq.Event()
|
|
|
|
stateKey := ev.StateKey()
|
|
|
|
if stateKey == nil {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"event_id": ev.EventID(),
|
|
|
|
}).Info("invite had no state key, dropping")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
_, destination, err := gomatrixserverlib.SplitID('@', *stateKey)
|
|
|
|
if err != nil {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"event_id": ev.EventID(),
|
|
|
|
"state_key": stateKey,
|
|
|
|
}).Info("failed to split destination from state key")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
log.WithFields(log.Fields{
|
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 11:42:06 +00:00
|
|
|
"event_id": ev.EventID(),
|
|
|
|
"server_name": destination,
|
2020-04-03 13:29:06 +00:00
|
|
|
}).Info("Sending invite")
|
|
|
|
|
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 11:42:06 +00:00
|
|
|
oqs.getQueue(destination).sendInvite(inviteReq)
|
2020-04-03 13:29:06 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-14 11:33:37 +00:00
|
|
|
// SendEDU sends an EDU event to the destinations.
|
2018-08-10 15:26:57 +00:00
|
|
|
func (oqs *OutgoingQueues) SendEDU(
|
|
|
|
e *gomatrixserverlib.EDU, origin gomatrixserverlib.ServerName,
|
|
|
|
destinations []gomatrixserverlib.ServerName,
|
|
|
|
) error {
|
|
|
|
if origin != oqs.origin {
|
|
|
|
// TODO: Support virtual hosting; gh issue #577.
|
|
|
|
return fmt.Errorf(
|
|
|
|
"sendevent: unexpected server to send as: got %q expected %q",
|
|
|
|
origin, oqs.origin,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove our own server from the list of destinations.
|
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 11:42:06 +00:00
|
|
|
destinations = filterAndDedupeDests(oqs.origin, destinations)
|
2018-08-10 15:26:57 +00:00
|
|
|
|
2019-07-01 15:04:49 +00:00
|
|
|
if len(destinations) > 0 {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"destinations": destinations, "edu_type": e.Type,
|
|
|
|
}).Info("Sending EDU event")
|
|
|
|
}
|
2018-08-10 15:26:57 +00:00
|
|
|
|
|
|
|
for _, destination := range destinations {
|
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 11:42:06 +00:00
|
|
|
oqs.getQueue(destination).sendEDU(e)
|
2018-08-10 15:26:57 +00:00
|
|
|
}
|
|
|
|
|
2017-06-28 15:10:17 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-01 17:34:08 +00:00
|
|
|
// RetryServer attempts to resend events to the given server if we had given up.
|
|
|
|
func (oqs *OutgoingQueues) RetryServer(srv gomatrixserverlib.ServerName) {
|
2020-07-03 15:31:56 +00:00
|
|
|
q := oqs.getQueue(srv)
|
2020-06-01 17:34:08 +00:00
|
|
|
if q == nil {
|
|
|
|
return
|
|
|
|
}
|
2020-07-03 15:31:56 +00:00
|
|
|
q.wakeQueueIfNeeded()
|
2020-06-01 17:34:08 +00:00
|
|
|
}
|
|
|
|
|
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 11:42:06 +00:00
|
|
|
// filterAndDedupeDests removes our own server from the list of destinations
|
|
|
|
// and deduplicates any servers in the list that may appear more than once.
|
|
|
|
func filterAndDedupeDests(origin gomatrixserverlib.ServerName, destinations []gomatrixserverlib.ServerName) (
|
|
|
|
result []gomatrixserverlib.ServerName,
|
|
|
|
) {
|
|
|
|
strs := make([]string, len(destinations))
|
|
|
|
for i, d := range destinations {
|
|
|
|
strs[i] = string(d)
|
|
|
|
}
|
|
|
|
for _, destination := range util.UniqueStrings(strs) {
|
|
|
|
if gomatrixserverlib.ServerName(destination) == origin {
|
2017-06-28 15:10:17 +00:00
|
|
|
continue
|
|
|
|
}
|
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 11:42:06 +00:00
|
|
|
result = append(result, gomatrixserverlib.ServerName(destination))
|
2017-06-28 15:10:17 +00:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|