2022-03-30 16:01:22 +02:00
|
|
|
// Copyright 2022 The Matrix.org Foundation C.I.C.
|
2021-05-06 13:00:42 +02:00
|
|
|
//
|
|
|
|
// 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/ed25519"
|
|
|
|
"crypto/tls"
|
|
|
|
"encoding/hex"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/gorilla/websocket"
|
|
|
|
"github.com/matrix-org/dendrite/appservice"
|
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-pinecone/conn"
|
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-pinecone/embed"
|
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-pinecone/rooms"
|
2022-03-28 17:25:26 +02:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-pinecone/users"
|
2021-05-06 13:00:42 +02:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/signing"
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationapi"
|
2021-05-06 13:00:42 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/keyserver"
|
|
|
|
"github.com/matrix-org/dendrite/roomserver"
|
|
|
|
"github.com/matrix-org/dendrite/setup"
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2021-05-06 13:00:42 +02:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
|
|
|
"github.com/matrix-org/dendrite/userapi"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
|
2022-04-08 14:55:46 +02:00
|
|
|
pineconeConnections "github.com/matrix-org/pinecone/connections"
|
2021-05-06 13:00:42 +02:00
|
|
|
pineconeMulticast "github.com/matrix-org/pinecone/multicast"
|
|
|
|
pineconeRouter "github.com/matrix-org/pinecone/router"
|
|
|
|
pineconeSessions "github.com/matrix-org/pinecone/sessions"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
2021-07-20 12:18:14 +02:00
|
|
|
|
|
|
|
_ "github.com/mattn/go-sqlite3"
|
2021-05-06 13:00:42 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
instanceName = flag.String("name", "dendrite-p2p-pinecone", "the name of this P2P demo instance")
|
|
|
|
instancePort = flag.Int("port", 8008, "the port that the client API will listen on")
|
2021-11-25 10:46:26 +01:00
|
|
|
instancePeer = flag.String("peer", "", "the static Pinecone peers to connect to, comma separated-list")
|
2021-05-06 13:00:42 +02:00
|
|
|
instanceListen = flag.String("listen", ":0", "the port Pinecone peers can connect to")
|
|
|
|
)
|
|
|
|
|
|
|
|
// nolint:gocyclo
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
internal.SetupPprof()
|
|
|
|
|
|
|
|
var pk ed25519.PublicKey
|
|
|
|
var sk ed25519.PrivateKey
|
|
|
|
|
|
|
|
keyfile := *instanceName + ".key"
|
|
|
|
if _, err := os.Stat(keyfile); os.IsNotExist(err) {
|
|
|
|
if pk, sk, err = ed25519.GenerateKey(nil); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if err = ioutil.WriteFile(keyfile, sk, 0644); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
} else if err == nil {
|
|
|
|
if sk, err = ioutil.ReadFile(keyfile); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if len(sk) != ed25519.PrivateKeySize {
|
|
|
|
panic("the private key is not long enough")
|
|
|
|
}
|
|
|
|
pk = sk.Public().(ed25519.PublicKey)
|
|
|
|
}
|
|
|
|
|
2022-04-04 16:16:02 +02:00
|
|
|
pRouter := pineconeRouter.NewRouter(logrus.WithField("pinecone", "router"), sk, false)
|
2022-04-08 14:55:46 +02:00
|
|
|
pQUIC := pineconeSessions.NewSessions(logrus.WithField("pinecone", "sessions"), pRouter, []string{"matrix"})
|
|
|
|
pMulticast := pineconeMulticast.NewMulticast(logrus.WithField("pinecone", "multicast"), pRouter)
|
|
|
|
pManager := pineconeConnections.NewConnectionManager(pRouter)
|
|
|
|
pMulticast.Start()
|
|
|
|
if instancePeer != nil && *instancePeer != "" {
|
|
|
|
pManager.AddPeer(*instancePeer)
|
|
|
|
}
|
2021-05-06 13:00:42 +02:00
|
|
|
|
|
|
|
go func() {
|
|
|
|
listener, err := net.Listen("tcp", *instanceListen)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("Listening on", listener.Addr())
|
|
|
|
|
|
|
|
for {
|
|
|
|
conn, err := listener.Accept()
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Error("listener.Accept failed")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-11-25 12:18:01 +01:00
|
|
|
port, err := pRouter.Connect(
|
|
|
|
conn,
|
|
|
|
pineconeRouter.ConnectionPeerType(pineconeRouter.PeerTypeRemote),
|
|
|
|
)
|
2021-05-06 13:00:42 +02:00
|
|
|
if err != nil {
|
2021-11-25 10:46:26 +01:00
|
|
|
logrus.WithError(err).Error("pSwitch.Connect failed")
|
2021-05-06 13:00:42 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("Inbound connection", conn.RemoteAddr(), "is connected to port", port)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
cfg := &config.Dendrite{}
|
2021-11-24 12:57:39 +01:00
|
|
|
cfg.Defaults(true)
|
2021-05-06 13:00:42 +02:00
|
|
|
cfg.Global.ServerName = gomatrixserverlib.ServerName(hex.EncodeToString(pk))
|
|
|
|
cfg.Global.PrivateKey = sk
|
|
|
|
cfg.Global.KeyID = gomatrixserverlib.KeyID(signing.KeyID)
|
2022-01-05 18:44:49 +01:00
|
|
|
cfg.Global.JetStream.StoragePath = config.Path(fmt.Sprintf("%s/", *instanceName))
|
2021-05-06 13:00:42 +02:00
|
|
|
cfg.UserAPI.AccountDatabase.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-account.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))
|
|
|
|
cfg.KeyServer.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-keyserver.db", *instanceName))
|
2021-11-24 11:45:23 +01:00
|
|
|
cfg.FederationAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-federationapi.db", *instanceName))
|
2021-05-06 13:00:42 +02:00
|
|
|
cfg.AppServiceAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-appservice.db", *instanceName))
|
2021-05-18 16:47:15 +02:00
|
|
|
cfg.MSCs.MSCs = []string{"msc2836", "msc2946"}
|
2022-04-29 09:31:11 +02:00
|
|
|
cfg.ClientAPI.RegistrationDisabled = false
|
|
|
|
cfg.ClientAPI.OpenRegistrationWithoutVerificationEnabled = true
|
2021-05-06 13:00:42 +02:00
|
|
|
if err := cfg.Derive(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
base := base.NewBaseDendrite(cfg, "Monolith")
|
2021-05-06 13:00:42 +02:00
|
|
|
defer base.Close() // nolint: errcheck
|
|
|
|
|
|
|
|
accountDB := base.CreateAccountsDB()
|
|
|
|
federation := conn.CreateFederationClient(base, pQUIC)
|
|
|
|
|
|
|
|
serverKeyAPI := &signing.YggdrasilKeys{}
|
|
|
|
keyRing := serverKeyAPI.KeyRing()
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
rsComponent := roomserver.NewInternalAPI(base)
|
2021-05-06 13:00:42 +02:00
|
|
|
rsAPI := rsComponent
|
2021-11-24 11:45:23 +01:00
|
|
|
fsAPI := federationapi.NewInternalAPI(
|
2021-12-13 14:24:49 +01:00
|
|
|
base, federation, rsAPI, base.Caches, keyRing, true,
|
2021-05-06 13:00:42 +02:00
|
|
|
)
|
|
|
|
|
2021-08-04 18:56:29 +02:00
|
|
|
keyAPI := keyserver.NewInternalAPI(base, &base.Cfg.KeyServer, fsAPI)
|
2022-03-03 12:40:53 +01:00
|
|
|
userAPI := userapi.NewInternalAPI(base, accountDB, &cfg.UserAPI, nil, keyAPI, rsAPI, base.PushGatewayHTTPClient())
|
2021-05-06 13:00:42 +02:00
|
|
|
keyAPI.SetUserAPI(userAPI)
|
|
|
|
|
|
|
|
asAPI := appservice.NewInternalAPI(base, userAPI, rsAPI)
|
|
|
|
|
2021-12-13 14:24:49 +01:00
|
|
|
rsComponent.SetFederationAPI(fsAPI, keyRing)
|
2021-05-06 13:00:42 +02:00
|
|
|
|
2022-03-28 17:25:26 +02:00
|
|
|
userProvider := users.NewPineconeUserProvider(pRouter, pQUIC, userAPI, federation)
|
|
|
|
roomProvider := rooms.NewPineconeRoomProvider(pRouter, pQUIC, fsAPI, federation)
|
|
|
|
|
2021-05-06 13:00:42 +02:00
|
|
|
monolith := setup.Monolith{
|
|
|
|
Config: base.Cfg,
|
|
|
|
AccountDB: accountDB,
|
|
|
|
Client: conn.CreateClient(base, pQUIC),
|
|
|
|
FedClient: federation,
|
|
|
|
KeyRing: keyRing,
|
|
|
|
|
2022-03-28 17:25:26 +02:00
|
|
|
AppserviceAPI: asAPI,
|
|
|
|
FederationAPI: fsAPI,
|
|
|
|
RoomserverAPI: rsAPI,
|
|
|
|
UserAPI: userAPI,
|
|
|
|
KeyAPI: keyAPI,
|
|
|
|
ExtPublicRoomsProvider: roomProvider,
|
|
|
|
ExtUserDirectoryProvider: userProvider,
|
2021-05-06 13:00:42 +02:00
|
|
|
}
|
|
|
|
monolith.AddAllPublicRoutes(
|
|
|
|
base.ProcessContext,
|
|
|
|
base.PublicClientAPIMux,
|
|
|
|
base.PublicFederationAPIMux,
|
|
|
|
base.PublicKeyAPIMux,
|
2021-09-10 11:05:31 +02:00
|
|
|
base.PublicWellKnownAPIMux,
|
2021-05-06 13:00:42 +02:00
|
|
|
base.PublicMediaAPIMux,
|
2021-07-09 17:52:31 +02:00
|
|
|
base.SynapseAdminMux,
|
2022-04-28 17:02:30 +02:00
|
|
|
base.DendriteAdminMux,
|
2021-05-06 13:00:42 +02:00
|
|
|
)
|
|
|
|
|
2021-06-22 16:39:29 +02:00
|
|
|
wsUpgrader := websocket.Upgrader{
|
|
|
|
CheckOrigin: func(_ *http.Request) bool {
|
|
|
|
return true
|
|
|
|
},
|
|
|
|
}
|
2021-05-06 13:00:42 +02:00
|
|
|
httpRouter := mux.NewRouter().SkipClean(true).UseEncodedPath()
|
|
|
|
httpRouter.PathPrefix(httputil.InternalPathPrefix).Handler(base.InternalAPIMux)
|
|
|
|
httpRouter.PathPrefix(httputil.PublicClientPathPrefix).Handler(base.PublicClientAPIMux)
|
|
|
|
httpRouter.PathPrefix(httputil.PublicMediaPathPrefix).Handler(base.PublicMediaAPIMux)
|
|
|
|
httpRouter.HandleFunc("/ws", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
c, err := wsUpgrader.Upgrade(w, r, nil)
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Error("Failed to upgrade WebSocket connection")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
conn := conn.WrapWebSocketConn(c)
|
2021-11-25 10:46:26 +01:00
|
|
|
if _, err = pRouter.Connect(
|
|
|
|
conn,
|
|
|
|
pineconeRouter.ConnectionZone("websocket"),
|
2021-11-25 12:18:01 +01:00
|
|
|
pineconeRouter.ConnectionPeerType(pineconeRouter.PeerTypeRemote),
|
2021-11-25 10:46:26 +01:00
|
|
|
); err != nil {
|
2021-05-06 13:00:42 +02:00
|
|
|
logrus.WithError(err).Error("Failed to connect WebSocket peer to Pinecone switch")
|
|
|
|
}
|
|
|
|
})
|
2022-03-30 16:01:22 +02:00
|
|
|
httpRouter.HandleFunc("/pinecone", pRouter.ManholeHandler)
|
2021-05-06 13:00:42 +02:00
|
|
|
embed.Embed(httpRouter, *instancePort, "Pinecone Demo")
|
|
|
|
|
|
|
|
pMux := mux.NewRouter().SkipClean(true).UseEncodedPath()
|
2022-03-28 17:25:26 +02:00
|
|
|
pMux.PathPrefix(users.PublicURL).HandlerFunc(userProvider.FederatedUserProfiles)
|
2021-05-06 13:00:42 +02:00
|
|
|
pMux.PathPrefix(httputil.PublicFederationPathPrefix).Handler(base.PublicFederationAPIMux)
|
|
|
|
pMux.PathPrefix(httputil.PublicMediaPathPrefix).Handler(base.PublicMediaAPIMux)
|
|
|
|
|
2022-04-04 16:16:02 +02:00
|
|
|
pHTTP := pQUIC.Protocol("matrix").HTTP()
|
2022-03-28 17:25:26 +02:00
|
|
|
pHTTP.Mux().Handle(users.PublicURL, pMux)
|
2021-05-06 13:00:42 +02:00
|
|
|
pHTTP.Mux().Handle(httputil.PublicFederationPathPrefix, pMux)
|
|
|
|
pHTTP.Mux().Handle(httputil.PublicMediaPathPrefix, pMux)
|
|
|
|
|
|
|
|
// Build both ends of a HTTP multiplex.
|
|
|
|
httpServer := &http.Server{
|
|
|
|
Addr: ":0",
|
|
|
|
TLSNextProto: map[string]func(*http.Server, *tls.Conn, http.Handler){},
|
|
|
|
ReadTimeout: 10 * time.Second,
|
|
|
|
WriteTimeout: 10 * time.Second,
|
|
|
|
IdleTimeout: 60 * time.Second,
|
|
|
|
BaseContext: func(_ net.Listener) context.Context {
|
|
|
|
return context.Background()
|
|
|
|
},
|
|
|
|
Handler: pMux,
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
pubkey := pRouter.PublicKey()
|
|
|
|
logrus.Info("Listening on ", hex.EncodeToString(pubkey[:]))
|
2022-04-04 16:16:02 +02:00
|
|
|
logrus.Fatal(httpServer.Serve(pQUIC.Protocol("matrix")))
|
2021-05-06 13:00:42 +02:00
|
|
|
}()
|
|
|
|
go func() {
|
|
|
|
httpBindAddr := fmt.Sprintf(":%d", *instancePort)
|
|
|
|
logrus.Info("Listening on ", httpBindAddr)
|
|
|
|
logrus.Fatal(http.ListenAndServe(httpBindAddr, httpRouter))
|
|
|
|
}()
|
|
|
|
|
|
|
|
base.WaitForShutdown()
|
|
|
|
}
|