2020-06-10 11:54:06 +02: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 yggconn
|
|
|
|
|
|
|
|
import (
|
2020-06-16 15:29:11 +02:00
|
|
|
"context"
|
2020-06-10 11:54:06 +02:00
|
|
|
"crypto/ed25519"
|
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
2020-06-16 15:29:11 +02:00
|
|
|
"net"
|
|
|
|
"strings"
|
2020-06-10 11:54:06 +02:00
|
|
|
|
2020-07-03 15:28:43 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2021-07-15 13:16:44 +02:00
|
|
|
"github.com/neilalexander/utp"
|
2022-09-01 18:12:27 +02:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-06-10 17:29:02 +02:00
|
|
|
|
2021-07-15 13:16:44 +02:00
|
|
|
ironwoodtypes "github.com/Arceliar/ironwood/types"
|
2020-06-10 11:54:06 +02:00
|
|
|
yggdrasilconfig "github.com/yggdrasil-network/yggdrasil-go/src/config"
|
2021-07-15 13:16:44 +02:00
|
|
|
yggdrasilcore "github.com/yggdrasil-network/yggdrasil-go/src/core"
|
|
|
|
yggdrasildefaults "github.com/yggdrasil-network/yggdrasil-go/src/defaults"
|
2020-06-10 11:54:06 +02:00
|
|
|
yggdrasilmulticast "github.com/yggdrasil-network/yggdrasil-go/src/multicast"
|
|
|
|
|
|
|
|
gologme "github.com/gologme/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Node struct {
|
2021-07-15 13:16:44 +02:00
|
|
|
core *yggdrasilcore.Core
|
|
|
|
config *yggdrasilconfig.NodeConfig
|
|
|
|
multicast *yggdrasilmulticast.Multicast
|
|
|
|
log *gologme.Logger
|
|
|
|
utpSocket *utp.Socket
|
|
|
|
incoming chan net.Conn
|
2020-07-02 18:43:07 +02:00
|
|
|
}
|
|
|
|
|
2021-07-15 13:16:44 +02:00
|
|
|
func (n *Node) DialerContext(ctx context.Context, _, address string) (net.Conn, error) {
|
2020-06-16 15:29:11 +02:00
|
|
|
tokens := strings.Split(address, ":")
|
|
|
|
raw, err := hex.DecodeString(tokens[0])
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("hex.DecodeString: %w", err)
|
|
|
|
}
|
2021-07-15 13:16:44 +02:00
|
|
|
pk := make(ironwoodtypes.Addr, ed25519.PublicKeySize)
|
|
|
|
copy(pk, raw[:])
|
|
|
|
return n.utpSocket.DialAddrContext(ctx, pk)
|
2020-06-16 15:29:11 +02:00
|
|
|
}
|
|
|
|
|
2022-09-01 18:12:27 +02:00
|
|
|
func Setup(sk ed25519.PrivateKey, instanceName, storageDirectory, peerURI, listenURI string) (*Node, error) {
|
2020-06-10 11:54:06 +02:00
|
|
|
n := &Node{
|
2021-07-15 13:16:44 +02:00
|
|
|
core: &yggdrasilcore.Core{},
|
|
|
|
config: yggdrasildefaults.GenerateConfig(),
|
2020-06-10 11:54:06 +02:00
|
|
|
multicast: &yggdrasilmulticast.Multicast{},
|
2022-09-01 18:12:27 +02:00
|
|
|
log: gologme.New(logrus.StandardLogger().Writer(), "", 0),
|
2021-07-15 13:16:44 +02:00
|
|
|
incoming: make(chan net.Conn),
|
2020-06-10 11:54:06 +02:00
|
|
|
}
|
|
|
|
|
2022-09-01 18:12:27 +02:00
|
|
|
options := []yggdrasilcore.SetupOption{
|
|
|
|
yggdrasilcore.AdminListenAddress("none"),
|
|
|
|
}
|
|
|
|
if listenURI != "" {
|
|
|
|
options = append(options, yggdrasilcore.ListenAddress(listenURI))
|
2020-07-06 15:51:59 +02:00
|
|
|
}
|
2021-07-15 13:16:44 +02:00
|
|
|
if peerURI != "" {
|
2022-09-01 18:12:27 +02:00
|
|
|
for _, uri := range strings.Split(peerURI, ",") {
|
|
|
|
options = append(options, yggdrasilcore.Peer{
|
|
|
|
URI: uri,
|
|
|
|
})
|
|
|
|
}
|
2021-07-15 13:16:44 +02:00
|
|
|
}
|
2020-06-10 17:29:02 +02:00
|
|
|
|
2022-09-01 18:12:27 +02:00
|
|
|
var err error
|
|
|
|
if n.core, err = yggdrasilcore.New(sk, options...); err != nil {
|
2020-07-06 15:51:59 +02:00
|
|
|
panic(err)
|
|
|
|
}
|
2020-06-10 11:54:06 +02:00
|
|
|
n.log.EnableLevel("error")
|
|
|
|
n.log.EnableLevel("warn")
|
|
|
|
n.log.EnableLevel("info")
|
2022-09-01 18:12:27 +02:00
|
|
|
n.core.SetLogger(n.log)
|
|
|
|
if n.utpSocket, err = utp.NewSocketFromPacketConnNoClose(n.core); err != nil {
|
2020-06-10 11:54:06 +02:00
|
|
|
panic(err)
|
|
|
|
}
|
2021-07-15 13:16:44 +02:00
|
|
|
if err = n.multicast.Init(n.core, n.config, n.log, nil); err != nil {
|
2020-06-10 11:54:06 +02:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if err = n.multicast.Start(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-07-02 18:43:07 +02:00
|
|
|
|
2022-09-01 18:12:27 +02:00
|
|
|
n.log.Printf("Public key: %x", n.core.PublicKey())
|
2021-07-15 13:16:44 +02:00
|
|
|
go n.listenFromYgg()
|
2020-06-10 11:54:06 +02:00
|
|
|
|
|
|
|
return n, nil
|
|
|
|
}
|
|
|
|
|
2020-07-06 18:09:02 +02:00
|
|
|
func (n *Node) Stop() {
|
|
|
|
if err := n.multicast.Stop(); err != nil {
|
|
|
|
n.log.Println("Error stopping multicast:", err)
|
|
|
|
}
|
|
|
|
n.core.Stop()
|
|
|
|
}
|
|
|
|
|
2020-06-10 17:29:02 +02:00
|
|
|
func (n *Node) DerivedServerName() string {
|
2021-07-15 13:16:44 +02:00
|
|
|
return hex.EncodeToString(n.PublicKey())
|
2020-06-10 17:29:02 +02:00
|
|
|
}
|
|
|
|
|
2021-07-15 13:16:44 +02:00
|
|
|
func (n *Node) PrivateKey() ed25519.PrivateKey {
|
|
|
|
sk := make(ed25519.PrivateKey, ed25519.PrivateKeySize)
|
|
|
|
sb, err := hex.DecodeString(n.config.PrivateKey)
|
|
|
|
if err == nil {
|
|
|
|
copy(sk, sb[:])
|
|
|
|
} else {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return sk
|
2020-06-10 11:54:06 +02:00
|
|
|
}
|
2020-07-01 14:35:58 +02:00
|
|
|
|
2021-07-15 13:16:44 +02:00
|
|
|
func (n *Node) PublicKey() ed25519.PublicKey {
|
|
|
|
return n.core.PublicKey()
|
2020-08-06 17:00:42 +02:00
|
|
|
}
|
|
|
|
|
2020-07-01 14:35:58 +02:00
|
|
|
func (n *Node) PeerCount() int {
|
2021-07-15 13:16:44 +02:00
|
|
|
return len(n.core.GetPeers())
|
2020-08-06 17:00:42 +02:00
|
|
|
}
|
|
|
|
|
2020-07-03 15:28:43 +02:00
|
|
|
func (n *Node) KnownNodes() []gomatrixserverlib.ServerName {
|
2021-07-15 13:16:44 +02:00
|
|
|
nodemap := map[string]struct{}{}
|
|
|
|
for _, peer := range n.core.GetPeers() {
|
|
|
|
nodemap[hex.EncodeToString(peer.Key)] = struct{}{}
|
2020-10-06 11:37:52 +02:00
|
|
|
}
|
2020-07-03 15:28:43 +02:00
|
|
|
var nodes []gomatrixserverlib.ServerName
|
|
|
|
for node := range nodemap {
|
|
|
|
nodes = append(nodes, gomatrixserverlib.ServerName(node))
|
|
|
|
}
|
|
|
|
return nodes
|
|
|
|
}
|
2020-07-06 15:51:59 +02:00
|
|
|
|
|
|
|
func (n *Node) SetMulticastEnabled(enabled bool) {
|
2021-07-15 13:16:44 +02:00
|
|
|
// TODO: There's no dynamic reconfiguration in Yggdrasil v0.4
|
|
|
|
// so we need a solution for this.
|
2020-07-06 15:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) DisconnectMulticastPeers() {
|
2021-07-15 13:16:44 +02:00
|
|
|
// TODO: There's no dynamic reconfiguration in Yggdrasil v0.4
|
|
|
|
// so we need a solution for this.
|
2020-07-06 15:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) DisconnectNonMulticastPeers() {
|
2021-07-15 13:16:44 +02:00
|
|
|
// TODO: There's no dynamic reconfiguration in Yggdrasil v0.4
|
|
|
|
// so we need a solution for this.
|
2020-07-06 15:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) SetStaticPeer(uri string) error {
|
2021-07-15 13:16:44 +02:00
|
|
|
// TODO: There's no dynamic reconfiguration in Yggdrasil v0.4
|
|
|
|
// so we need a solution for this.
|
2020-07-06 15:51:59 +02:00
|
|
|
return nil
|
|
|
|
}
|