2020-06-19 12:29:27 +00:00
|
|
|
package gobind
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2020-08-13 11:16:37 +00:00
|
|
|
"github.com/gorilla/mux"
|
2020-06-19 12:29:27 +00:00
|
|
|
"github.com/matrix-org/dendrite/appservice"
|
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/signing"
|
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/yggconn"
|
2020-07-03 13:29:36 +00:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/yggrooms"
|
2020-06-19 12:29:27 +00:00
|
|
|
"github.com/matrix-org/dendrite/eduserver"
|
|
|
|
"github.com/matrix-org/dendrite/eduserver/cache"
|
|
|
|
"github.com/matrix-org/dendrite/federationsender"
|
2020-07-08 13:52:48 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/api"
|
2020-06-19 12:29:27 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/config"
|
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/internal/setup"
|
2020-07-22 16:01:29 +00:00
|
|
|
"github.com/matrix-org/dendrite/keyserver"
|
2020-06-19 12:29:27 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver"
|
|
|
|
"github.com/matrix-org/dendrite/userapi"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
type DendriteMonolith struct {
|
2020-07-10 15:28:18 +00:00
|
|
|
logger logrus.Logger
|
2020-07-01 12:35:58 +00:00
|
|
|
YggdrasilNode *yggconn.Node
|
2020-06-19 12:29:27 +00:00
|
|
|
StorageDirectory string
|
|
|
|
listener net.Listener
|
2020-07-10 15:28:18 +00:00
|
|
|
httpServer *http.Server
|
2020-06-19 12:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DendriteMonolith) BaseURL() string {
|
|
|
|
return fmt.Sprintf("http://%s", m.listener.Addr().String())
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:35:58 +00:00
|
|
|
func (m *DendriteMonolith) PeerCount() int {
|
|
|
|
return m.YggdrasilNode.PeerCount()
|
|
|
|
}
|
|
|
|
|
2020-08-06 15:00:42 +00:00
|
|
|
func (m *DendriteMonolith) SessionCount() int {
|
|
|
|
return m.YggdrasilNode.SessionCount()
|
|
|
|
}
|
|
|
|
|
2020-07-06 13:51:59 +00:00
|
|
|
func (m *DendriteMonolith) SetMulticastEnabled(enabled bool) {
|
|
|
|
m.YggdrasilNode.SetMulticastEnabled(enabled)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DendriteMonolith) SetStaticPeer(uri string) error {
|
|
|
|
return m.YggdrasilNode.SetStaticPeer(uri)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DendriteMonolith) DisconnectNonMulticastPeers() {
|
|
|
|
m.YggdrasilNode.DisconnectNonMulticastPeers()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DendriteMonolith) DisconnectMulticastPeers() {
|
|
|
|
m.YggdrasilNode.DisconnectMulticastPeers()
|
|
|
|
}
|
|
|
|
|
2020-07-07 13:18:58 +00:00
|
|
|
func (m *DendriteMonolith) Start() {
|
2020-07-10 15:28:18 +00:00
|
|
|
m.logger = logrus.Logger{
|
2020-06-19 12:29:27 +00:00
|
|
|
Out: BindLogger{},
|
|
|
|
}
|
2020-07-10 15:28:18 +00:00
|
|
|
m.logger.SetOutput(BindLogger{})
|
2020-06-19 12:29:27 +00:00
|
|
|
logrus.SetOutput(BindLogger{})
|
|
|
|
|
|
|
|
var err error
|
|
|
|
m.listener, err = net.Listen("tcp", "localhost:65432")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2020-07-07 13:18:58 +00:00
|
|
|
ygg, err := yggconn.Setup("dendrite", m.StorageDirectory)
|
2020-06-19 12:29:27 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-07-01 12:35:58 +00:00
|
|
|
m.YggdrasilNode = ygg
|
2020-06-19 12:29:27 +00:00
|
|
|
|
|
|
|
cfg := &config.Dendrite{}
|
2020-08-10 13:18:04 +00:00
|
|
|
cfg.Defaults()
|
|
|
|
cfg.Global.ServerName = gomatrixserverlib.ServerName(ygg.DerivedServerName())
|
|
|
|
cfg.Global.PrivateKey = ygg.SigningPrivateKey()
|
|
|
|
cfg.Global.KeyID = gomatrixserverlib.KeyID(signing.KeyID)
|
|
|
|
cfg.Global.Kafka.UseNaffka = true
|
2020-09-30 14:57:31 +00:00
|
|
|
cfg.Global.Kafka.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s/dendrite-p2p-naffka.db", m.StorageDirectory))
|
|
|
|
cfg.UserAPI.AccountDatabase.ConnectionString = config.DataSource(fmt.Sprintf("file:%s/dendrite-p2p-account.db", m.StorageDirectory))
|
|
|
|
cfg.UserAPI.DeviceDatabase.ConnectionString = config.DataSource(fmt.Sprintf("file:%s/dendrite-p2p-device.db", m.StorageDirectory))
|
|
|
|
cfg.MediaAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s/dendrite-p2p-mediaapi.db", m.StorageDirectory))
|
|
|
|
cfg.SyncAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s/dendrite-p2p-syncapi.db", m.StorageDirectory))
|
|
|
|
cfg.RoomServer.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s/dendrite-p2p-roomserver.db", m.StorageDirectory))
|
2020-10-07 15:23:18 +00:00
|
|
|
cfg.SigningKeyServer.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s/dendrite-p2p-signingkeyserver.db", m.StorageDirectory))
|
2020-09-30 14:57:31 +00:00
|
|
|
cfg.KeyServer.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s/dendrite-p2p-keyserver.db", m.StorageDirectory))
|
|
|
|
cfg.FederationSender.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s/dendrite-p2p-federationsender.db", m.StorageDirectory))
|
|
|
|
cfg.AppServiceAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s/dendrite-p2p-appservice.db", m.StorageDirectory))
|
2020-08-10 13:18:04 +00:00
|
|
|
cfg.MediaAPI.BasePath = config.Path(fmt.Sprintf("%s/tmp", m.StorageDirectory))
|
|
|
|
cfg.MediaAPI.AbsBasePath = config.Path(fmt.Sprintf("%s/tmp", m.StorageDirectory))
|
2020-06-19 12:29:27 +00:00
|
|
|
if err = cfg.Derive(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
base := setup.NewBaseDendrite(cfg, "Monolith", false)
|
|
|
|
defer base.Close() // nolint: errcheck
|
|
|
|
|
|
|
|
accountDB := base.CreateAccountsDB()
|
|
|
|
federation := ygg.CreateFederationClient(base)
|
|
|
|
|
|
|
|
serverKeyAPI := &signing.YggdrasilKeys{}
|
|
|
|
keyRing := serverKeyAPI.KeyRing()
|
2020-10-15 12:27:13 +00:00
|
|
|
keyAPI := keyserver.NewInternalAPI(&base.Cfg.KeyServer, federation)
|
2020-08-27 17:53:40 +00:00
|
|
|
userAPI := userapi.NewInternalAPI(accountDB, &cfg.UserAPI, cfg.Derived.ApplicationServices, keyAPI)
|
2020-07-30 17:00:56 +00:00
|
|
|
keyAPI.SetUserAPI(userAPI)
|
2020-06-19 12:29:27 +00:00
|
|
|
|
|
|
|
rsAPI := roomserver.NewInternalAPI(
|
2020-09-02 14:26:30 +00:00
|
|
|
base, keyRing,
|
2020-06-19 12:29:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
eduInputAPI := eduserver.NewInternalAPI(
|
|
|
|
base, cache.New(), userAPI,
|
|
|
|
)
|
|
|
|
|
|
|
|
asAPI := appservice.NewInternalAPI(base, userAPI, rsAPI)
|
|
|
|
fsAPI := federationsender.NewInternalAPI(
|
2020-09-04 14:58:30 +00:00
|
|
|
base, federation, rsAPI, keyRing,
|
2020-06-19 12:29:27 +00:00
|
|
|
)
|
|
|
|
|
2020-08-06 15:00:42 +00:00
|
|
|
ygg.SetSessionFunc(func(address string) {
|
|
|
|
req := &api.PerformServersAliveRequest{
|
|
|
|
Servers: []gomatrixserverlib.ServerName{
|
|
|
|
gomatrixserverlib.ServerName(address),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
res := &api.PerformServersAliveResponse{}
|
|
|
|
if err := fsAPI.PerformServersAlive(context.TODO(), req, res); err != nil {
|
|
|
|
logrus.WithError(err).Error("Failed to send wake-up message to newly connected node")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-06-19 12:29:27 +00:00
|
|
|
// The underlying roomserver implementation needs to be able to call the fedsender.
|
|
|
|
// This is different to rsAPI which can be the http client which doesn't need this dependency
|
|
|
|
rsAPI.SetFederationSenderAPI(fsAPI)
|
|
|
|
|
|
|
|
monolith := setup.Monolith{
|
2020-10-15 12:27:13 +00:00
|
|
|
Config: base.Cfg,
|
|
|
|
AccountDB: accountDB,
|
|
|
|
Client: ygg.CreateClient(base),
|
|
|
|
FedClient: federation,
|
|
|
|
KeyRing: keyRing,
|
2020-06-19 12:29:27 +00:00
|
|
|
|
|
|
|
AppserviceAPI: asAPI,
|
|
|
|
EDUInternalAPI: eduInputAPI,
|
|
|
|
FederationSenderAPI: fsAPI,
|
|
|
|
RoomserverAPI: rsAPI,
|
|
|
|
UserAPI: userAPI,
|
2020-07-30 17:00:56 +00:00
|
|
|
KeyAPI: keyAPI,
|
2020-07-03 13:29:36 +00:00
|
|
|
ExtPublicRoomsProvider: yggrooms.NewYggdrasilRoomProvider(
|
|
|
|
ygg, fsAPI, federation,
|
|
|
|
),
|
2020-06-19 12:29:27 +00:00
|
|
|
}
|
2020-08-13 11:16:37 +00:00
|
|
|
monolith.AddAllPublicRoutes(
|
|
|
|
base.PublicClientAPIMux,
|
|
|
|
base.PublicFederationAPIMux,
|
|
|
|
base.PublicKeyAPIMux,
|
|
|
|
base.PublicMediaAPIMux,
|
2020-06-19 12:29:27 +00:00
|
|
|
)
|
|
|
|
|
2020-08-13 11:16:37 +00:00
|
|
|
httpRouter := mux.NewRouter()
|
|
|
|
httpRouter.PathPrefix(httputil.InternalPathPrefix).Handler(base.InternalAPIMux)
|
|
|
|
httpRouter.PathPrefix(httputil.PublicClientPathPrefix).Handler(base.PublicClientAPIMux)
|
|
|
|
httpRouter.PathPrefix(httputil.PublicMediaPathPrefix).Handler(base.PublicMediaAPIMux)
|
|
|
|
|
|
|
|
yggRouter := mux.NewRouter()
|
|
|
|
yggRouter.PathPrefix(httputil.PublicFederationPathPrefix).Handler(base.PublicFederationAPIMux)
|
|
|
|
yggRouter.PathPrefix(httputil.PublicMediaPathPrefix).Handler(base.PublicMediaAPIMux)
|
|
|
|
|
2020-06-19 12:29:27 +00:00
|
|
|
// Build both ends of a HTTP multiplex.
|
2020-07-10 15:28:18 +00:00
|
|
|
m.httpServer = &http.Server{
|
2020-06-19 12:29:27 +00:00
|
|
|
Addr: ":0",
|
|
|
|
TLSNextProto: map[string]func(*http.Server, *tls.Conn, http.Handler){},
|
2020-08-06 15:00:42 +00:00
|
|
|
ReadTimeout: 10 * time.Second,
|
|
|
|
WriteTimeout: 10 * time.Second,
|
|
|
|
IdleTimeout: 30 * time.Second,
|
2020-06-19 12:29:27 +00:00
|
|
|
BaseContext: func(_ net.Listener) context.Context {
|
|
|
|
return context.Background()
|
|
|
|
},
|
2020-08-13 11:16:37 +00:00
|
|
|
Handler: yggRouter,
|
2020-06-19 12:29:27 +00:00
|
|
|
}
|
|
|
|
|
2020-07-16 12:52:08 +00:00
|
|
|
go func() {
|
2020-07-16 13:26:04 +00:00
|
|
|
m.logger.Info("Listening on ", ygg.DerivedServerName())
|
|
|
|
m.logger.Fatal(m.httpServer.Serve(ygg))
|
2020-07-16 12:52:08 +00:00
|
|
|
}()
|
|
|
|
go func() {
|
2020-08-13 11:16:37 +00:00
|
|
|
logrus.Info("Listening on ", m.listener.Addr())
|
|
|
|
logrus.Fatal(http.Serve(m.listener, httpRouter))
|
2020-07-16 12:52:08 +00:00
|
|
|
}()
|
|
|
|
go func() {
|
|
|
|
logrus.Info("Sending wake-up message to known nodes")
|
|
|
|
req := &api.PerformBroadcastEDURequest{}
|
|
|
|
res := &api.PerformBroadcastEDUResponse{}
|
|
|
|
if err := fsAPI.PerformBroadcastEDU(context.TODO(), req, res); err != nil {
|
|
|
|
logrus.WithError(err).Error("Failed to send wake-up message to known nodes")
|
|
|
|
}
|
|
|
|
}()
|
2020-06-19 12:29:27 +00:00
|
|
|
}
|
2020-07-06 16:09:02 +00:00
|
|
|
|
2020-07-10 15:28:18 +00:00
|
|
|
func (m *DendriteMonolith) Suspend() {
|
|
|
|
m.logger.Info("Suspending monolith")
|
|
|
|
if err := m.httpServer.Close(); err != nil {
|
|
|
|
m.logger.Warn("Error stopping HTTP server:", err)
|
2020-07-06 16:09:02 +00:00
|
|
|
}
|
|
|
|
}
|