2020-06-10 09:54:06 +00:00
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// 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 main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2020-08-13 11:16:37 +00:00
|
|
|
"github.com/gorilla/mux"
|
2020-06-10 09:54:06 +00:00
|
|
|
"github.com/matrix-org/dendrite/appservice"
|
2020-06-11 09:16:46 +00:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/embed"
|
2020-06-10 15:29:02 +00:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/signing"
|
2020-06-10 09:54:06 +00:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/yggconn"
|
2020-07-03 13:28:43 +00:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/yggrooms"
|
2020-06-10 09:54:06 +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-07-02 16:43:07 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
2020-06-12 13:55:57 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
2020-07-15 11:02:34 +00:00
|
|
|
"github.com/matrix-org/dendrite/keyserver"
|
2020-06-10 09:54:06 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup"
|
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-12-04 14:11:01 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/mscs"
|
2020-06-16 13:10:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi"
|
2020-06-10 09:54:06 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
instanceName = flag.String("name", "dendrite-p2p-ygg", "the name of this P2P demo instance")
|
|
|
|
instancePort = flag.Int("port", 8008, "the port that the client API will listen on")
|
|
|
|
instancePeer = flag.String("peer", "", "an internet Yggdrasil peer to connect to")
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
2020-07-02 16:43:07 +00:00
|
|
|
internal.SetupPprof()
|
2020-06-10 09:54:06 +00:00
|
|
|
|
2020-07-07 13:18:58 +00:00
|
|
|
ygg, err := yggconn.Setup(*instanceName, ".")
|
2020-06-10 09:54:06 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-07-07 13:18:58 +00:00
|
|
|
ygg.SetMulticastEnabled(true)
|
2020-07-07 13:38:59 +00:00
|
|
|
if instancePeer != nil && *instancePeer != "" {
|
2020-07-08 16:28:16 +00:00
|
|
|
if err = ygg.SetStaticPeer(*instancePeer); err != nil {
|
2020-07-08 14:48:10 +00:00
|
|
|
logrus.WithError(err).Error("Failed to set static peer")
|
|
|
|
}
|
2020-07-07 13:38:59 +00:00
|
|
|
}
|
2020-06-10 09:54:06 +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
|
|
|
|
cfg.UserAPI.AccountDatabase.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-account.db", *instanceName))
|
|
|
|
cfg.UserAPI.DeviceDatabase.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-device.db", *instanceName))
|
|
|
|
cfg.MediaAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-mediaapi.db", *instanceName))
|
|
|
|
cfg.SyncAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-syncapi.db", *instanceName))
|
|
|
|
cfg.RoomServer.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-roomserver.db", *instanceName))
|
2020-10-07 15:23:18 +00:00
|
|
|
cfg.SigningKeyServer.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-signingkeyserver.db", *instanceName))
|
2020-08-10 13:18:04 +00:00
|
|
|
cfg.KeyServer.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-keyserver.db", *instanceName))
|
|
|
|
cfg.FederationSender.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-federationsender.db", *instanceName))
|
|
|
|
cfg.AppServiceAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-appservice.db", *instanceName))
|
|
|
|
cfg.Global.Kafka.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-naffka.db", *instanceName))
|
2020-12-04 14:11:01 +00:00
|
|
|
cfg.MSCs.MSCs = []string{"msc2836"}
|
|
|
|
cfg.MSCs.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-mscs.db", *instanceName))
|
2020-06-10 09:54:06 +00:00
|
|
|
if err = cfg.Derive(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2020-06-12 13:55:57 +00:00
|
|
|
base := setup.NewBaseDendrite(cfg, "Monolith", false)
|
2020-06-10 09:54:06 +00:00
|
|
|
defer base.Close() // nolint: errcheck
|
|
|
|
|
|
|
|
accountDB := base.CreateAccountsDB()
|
2020-06-19 12:29:27 +00:00
|
|
|
federation := ygg.CreateFederationClient(base)
|
2020-06-10 09:54:06 +00:00
|
|
|
|
2020-06-10 15:29:02 +00:00
|
|
|
serverKeyAPI := &signing.YggdrasilKeys{}
|
2020-06-10 09:54:06 +00:00
|
|
|
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, nil, keyAPI)
|
2020-07-30 17:00:56 +00:00
|
|
|
keyAPI.SetUserAPI(userAPI)
|
2020-06-16 16:39:56 +00:00
|
|
|
|
2020-06-10 09:54:06 +00:00
|
|
|
rsComponent := roomserver.NewInternalAPI(
|
2020-09-02 14:26:30 +00:00
|
|
|
base, keyRing,
|
2020-06-10 09:54:06 +00:00
|
|
|
)
|
|
|
|
rsAPI := rsComponent
|
|
|
|
|
|
|
|
eduInputAPI := eduserver.NewInternalAPI(
|
2020-06-16 16:39:56 +00:00
|
|
|
base, cache.New(), userAPI,
|
2020-06-10 09:54:06 +00:00
|
|
|
)
|
|
|
|
|
2020-06-16 16:39:56 +00:00
|
|
|
asAPI := appservice.NewInternalAPI(base, userAPI, rsAPI)
|
2020-12-18 13:33:28 +00:00
|
|
|
rsAPI.SetAppserviceAPI(asAPI)
|
2020-06-10 09:54:06 +00:00
|
|
|
fsAPI := federationsender.NewInternalAPI(
|
2021-05-24 10:43:24 +00:00
|
|
|
base, federation, rsAPI, keyRing, true,
|
2020-06-10 09:54:06 +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-10 09:54:06 +00:00
|
|
|
rsComponent.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-10 09:54:06 +00:00
|
|
|
|
|
|
|
AppserviceAPI: asAPI,
|
|
|
|
EDUInternalAPI: eduInputAPI,
|
|
|
|
FederationSenderAPI: fsAPI,
|
|
|
|
RoomserverAPI: rsAPI,
|
2020-06-16 13:10:55 +00:00
|
|
|
UserAPI: userAPI,
|
2020-07-30 17:00:56 +00:00
|
|
|
KeyAPI: keyAPI,
|
2020-07-03 13:28:43 +00:00
|
|
|
ExtPublicRoomsProvider: yggrooms.NewYggdrasilRoomProvider(
|
|
|
|
ygg, fsAPI, federation,
|
|
|
|
),
|
2020-06-10 09:54:06 +00:00
|
|
|
}
|
2020-08-13 11:16:37 +00:00
|
|
|
monolith.AddAllPublicRoutes(
|
2021-01-26 12:56:20 +00:00
|
|
|
base.ProcessContext,
|
2020-08-13 11:16:37 +00:00
|
|
|
base.PublicClientAPIMux,
|
|
|
|
base.PublicFederationAPIMux,
|
|
|
|
base.PublicKeyAPIMux,
|
|
|
|
base.PublicMediaAPIMux,
|
2020-06-10 09:54:06 +00:00
|
|
|
)
|
2020-12-04 14:11:01 +00:00
|
|
|
if err := mscs.Enable(base, &monolith); err != nil {
|
|
|
|
logrus.WithError(err).Fatalf("Failed to enable MSCs")
|
|
|
|
}
|
2020-06-10 09:54:06 +00:00
|
|
|
|
2020-08-17 11:28:20 +00:00
|
|
|
httpRouter := mux.NewRouter().SkipClean(true).UseEncodedPath()
|
2020-08-13 11:16:37 +00:00
|
|
|
httpRouter.PathPrefix(httputil.InternalPathPrefix).Handler(base.InternalAPIMux)
|
|
|
|
httpRouter.PathPrefix(httputil.PublicClientPathPrefix).Handler(base.PublicClientAPIMux)
|
|
|
|
httpRouter.PathPrefix(httputil.PublicMediaPathPrefix).Handler(base.PublicMediaAPIMux)
|
2020-08-21 10:01:30 +00:00
|
|
|
embed.Embed(httpRouter, *instancePort, "Yggdrasil Demo")
|
2020-08-13 11:16:37 +00:00
|
|
|
|
2020-08-17 11:28:20 +00:00
|
|
|
yggRouter := mux.NewRouter().SkipClean(true).UseEncodedPath()
|
2020-08-13 11:16:37 +00:00
|
|
|
yggRouter.PathPrefix(httputil.PublicFederationPathPrefix).Handler(base.PublicFederationAPIMux)
|
|
|
|
yggRouter.PathPrefix(httputil.PublicMediaPathPrefix).Handler(base.PublicMediaAPIMux)
|
|
|
|
|
2020-06-15 15:57:59 +00:00
|
|
|
// Build both ends of a HTTP multiplex.
|
|
|
|
httpServer := &http.Server{
|
|
|
|
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-15 15:57:59 +00:00
|
|
|
BaseContext: func(_ net.Listener) context.Context {
|
|
|
|
return context.Background()
|
|
|
|
},
|
2020-08-13 11:16:37 +00:00
|
|
|
Handler: yggRouter,
|
2020-06-15 15:57:59 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 09:54:06 +00:00
|
|
|
go func() {
|
2020-06-10 15:29:02 +00:00
|
|
|
logrus.Info("Listening on ", ygg.DerivedServerName())
|
2020-06-10 09:54:06 +00:00
|
|
|
logrus.Fatal(httpServer.Serve(ygg))
|
|
|
|
}()
|
|
|
|
go func() {
|
2020-06-19 12:29:27 +00:00
|
|
|
httpBindAddr := fmt.Sprintf(":%d", *instancePort)
|
2020-06-10 09:54:06 +00:00
|
|
|
logrus.Info("Listening on ", httpBindAddr)
|
2020-08-13 11:16:37 +00:00
|
|
|
logrus.Fatal(http.ListenAndServe(httpBindAddr, httpRouter))
|
2020-06-10 09:54:06 +00:00
|
|
|
}()
|
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-10 09:54:06 +00:00
|
|
|
|
2021-01-26 12:56:20 +00:00
|
|
|
// We want to block forever to let the HTTP and HTTPS handler serve the APIs
|
|
|
|
base.WaitForShutdown()
|
2020-06-10 09:54:06 +00:00
|
|
|
}
|