mirror of
				https://github.com/yggdrasil-network/yggdrasil-go.git
				synced 2025-11-04 03:05:07 +03:00 
			
		
		
		
	Remove friendlyname traces, preserve endpoints
This commit is contained in:
		
							parent
							
								
									b809adf981
								
							
						
					
					
						commit
						aab0502a4a
					
				
					 8 changed files with 30 additions and 52 deletions
				
			
		| 
						 | 
					@ -470,7 +470,6 @@ func (a *admin) getData_getSelf() *admin_nodeInfo {
 | 
				
			||||||
		{"ip", a.core.GetAddress().String()},
 | 
							{"ip", a.core.GetAddress().String()},
 | 
				
			||||||
		{"subnet", a.core.GetSubnet().String()},
 | 
							{"subnet", a.core.GetSubnet().String()},
 | 
				
			||||||
		{"coords", fmt.Sprint(coords)},
 | 
							{"coords", fmt.Sprint(coords)},
 | 
				
			||||||
		{"friendly_name", a.core.friendlyName},
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	return &self
 | 
						return &self
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -494,7 +493,6 @@ func (a *admin) getData_getPeers() []admin_nodeInfo {
 | 
				
			||||||
			{"bytes_sent", atomic.LoadUint64(&p.bytesSent)},
 | 
								{"bytes_sent", atomic.LoadUint64(&p.bytesSent)},
 | 
				
			||||||
			{"bytes_recvd", atomic.LoadUint64(&p.bytesRecvd)},
 | 
								{"bytes_recvd", atomic.LoadUint64(&p.bytesRecvd)},
 | 
				
			||||||
			{"endpoint", p.endpoint},
 | 
								{"endpoint", p.endpoint},
 | 
				
			||||||
			{"friendly_name", p.friendlyName},
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		peerInfos = append(peerInfos, info)
 | 
							peerInfos = append(peerInfos, info)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					@ -520,7 +518,6 @@ func (a *admin) getData_getSwitchPeers() []admin_nodeInfo {
 | 
				
			||||||
			{"bytes_sent", atomic.LoadUint64(&peer.bytesSent)},
 | 
								{"bytes_sent", atomic.LoadUint64(&peer.bytesSent)},
 | 
				
			||||||
			{"bytes_recvd", atomic.LoadUint64(&peer.bytesRecvd)},
 | 
								{"bytes_recvd", atomic.LoadUint64(&peer.bytesRecvd)},
 | 
				
			||||||
			{"endpoint", peer.endpoint},
 | 
								{"endpoint", peer.endpoint},
 | 
				
			||||||
			{"friendly_name", peer.friendlyName},
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		peerInfos = append(peerInfos, info)
 | 
							peerInfos = append(peerInfos, info)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,6 @@ package config
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// NodeConfig defines all configuration values needed to run a signle yggdrasil node
 | 
					// NodeConfig defines all configuration values needed to run a signle yggdrasil node
 | 
				
			||||||
type NodeConfig struct {
 | 
					type NodeConfig struct {
 | 
				
			||||||
	FriendlyName                string              `comment:"Friendly name for this node. It is visible to direct peers."`
 | 
					 | 
				
			||||||
	Listen                      string              `comment:"Listen address for peer connections. Default is to listen for all\nTCP connections over IPv4 and IPv6 with a random port."`
 | 
						Listen                      string              `comment:"Listen address for peer connections. Default is to listen for all\nTCP connections over IPv4 and IPv6 with a random port."`
 | 
				
			||||||
	AdminListen                 string              `comment:"Listen address for admin connections Default is to listen for local\nconnections either on TCP/9001 or a UNIX socket depending on your\nplatform. Use this value for yggdrasilctl -endpoint=X."`
 | 
						AdminListen                 string              `comment:"Listen address for admin connections Default is to listen for local\nconnections either on TCP/9001 or a UNIX socket depending on your\nplatform. Use this value for yggdrasilctl -endpoint=X."`
 | 
				
			||||||
	Peers                       []string            `comment:"List of connection strings for static peers in URI format, i.e.\ntcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j."`
 | 
						Peers                       []string            `comment:"List of connection strings for static peers in URI format, i.e.\ntcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j."`
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,7 +20,6 @@ type Core struct {
 | 
				
			||||||
	boxPriv     boxPrivKey
 | 
						boxPriv     boxPrivKey
 | 
				
			||||||
	sigPub      sigPubKey
 | 
						sigPub      sigPubKey
 | 
				
			||||||
	sigPriv     sigPrivKey
 | 
						sigPriv     sigPrivKey
 | 
				
			||||||
	friendlyName string
 | 
					 | 
				
			||||||
	switchTable switchTable
 | 
						switchTable switchTable
 | 
				
			||||||
	peers       peers
 | 
						peers       peers
 | 
				
			||||||
	sigs        sigManager
 | 
						sigs        sigManager
 | 
				
			||||||
| 
						 | 
					@ -39,8 +38,7 @@ type Core struct {
 | 
				
			||||||
func (c *Core) init(bpub *boxPubKey,
 | 
					func (c *Core) init(bpub *boxPubKey,
 | 
				
			||||||
	bpriv *boxPrivKey,
 | 
						bpriv *boxPrivKey,
 | 
				
			||||||
	spub *sigPubKey,
 | 
						spub *sigPubKey,
 | 
				
			||||||
	spriv *sigPrivKey,
 | 
						spriv *sigPrivKey) {
 | 
				
			||||||
	friendlyname string) {
 | 
					 | 
				
			||||||
	// TODO separate init and start functions
 | 
						// TODO separate init and start functions
 | 
				
			||||||
	//  Init sets up structs
 | 
						//  Init sets up structs
 | 
				
			||||||
	//  Start launches goroutines that depend on structs being set up
 | 
						//  Start launches goroutines that depend on structs being set up
 | 
				
			||||||
| 
						 | 
					@ -51,7 +49,6 @@ func (c *Core) init(bpub *boxPubKey,
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	c.boxPub, c.boxPriv = *bpub, *bpriv
 | 
						c.boxPub, c.boxPriv = *bpub, *bpriv
 | 
				
			||||||
	c.sigPub, c.sigPriv = *spub, *spriv
 | 
						c.sigPub, c.sigPriv = *spub, *spriv
 | 
				
			||||||
	c.friendlyName = friendlyname
 | 
					 | 
				
			||||||
	c.admin.core = c
 | 
						c.admin.core = c
 | 
				
			||||||
	c.sigs.init()
 | 
						c.sigs.init()
 | 
				
			||||||
	c.searches.init(c)
 | 
						c.searches.init(c)
 | 
				
			||||||
| 
						 | 
					@ -64,14 +61,6 @@ func (c *Core) init(bpub *boxPubKey,
 | 
				
			||||||
	c.tun.init(c)
 | 
						c.tun.init(c)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Gets the friendly name of this node, as specified in the NodeConfig.
 | 
					 | 
				
			||||||
func (c *Core) GetFriendlyName() string {
 | 
					 | 
				
			||||||
	if c.friendlyName == "" {
 | 
					 | 
				
			||||||
		return "(none)"
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	return c.friendlyName
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// Starts up Yggdrasil using the provided NodeConfig, and outputs debug logging
 | 
					// Starts up Yggdrasil using the provided NodeConfig, and outputs debug logging
 | 
				
			||||||
// through the provided log.Logger. The started stack will include TCP and UDP
 | 
					// through the provided log.Logger. The started stack will include TCP and UDP
 | 
				
			||||||
// sockets, a multicast discovery socket, an admin socket, router, switch and
 | 
					// sockets, a multicast discovery socket, an admin socket, router, switch and
 | 
				
			||||||
| 
						 | 
					@ -105,7 +94,7 @@ func (c *Core) Start(nc *config.NodeConfig, log *log.Logger) error {
 | 
				
			||||||
	copy(sigPub[:], sigPubHex)
 | 
						copy(sigPub[:], sigPubHex)
 | 
				
			||||||
	copy(sigPriv[:], sigPrivHex)
 | 
						copy(sigPriv[:], sigPrivHex)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	c.init(&boxPub, &boxPriv, &sigPub, &sigPriv, nc.FriendlyName)
 | 
						c.init(&boxPub, &boxPriv, &sigPub, &sigPriv)
 | 
				
			||||||
	c.admin.init(c, nc.AdminListen)
 | 
						c.admin.init(c, nc.AdminListen)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if err := c.tcp.init(c, nc.Listen, nc.ReadTimeout); err != nil {
 | 
						if err := c.tcp.init(c, nc.Listen, nc.ReadTimeout); err != nil {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -84,7 +84,7 @@ func (c *Core) DEBUG_getPeers() *peers {
 | 
				
			||||||
func (ps *peers) DEBUG_newPeer(box boxPubKey, sig sigPubKey, link boxSharedKey) *peer {
 | 
					func (ps *peers) DEBUG_newPeer(box boxPubKey, sig sigPubKey, link boxSharedKey) *peer {
 | 
				
			||||||
	//in <-chan []byte,
 | 
						//in <-chan []byte,
 | 
				
			||||||
	//out chan<- []byte) *peer {
 | 
						//out chan<- []byte) *peer {
 | 
				
			||||||
	return ps.newPeer(&box, &sig, &link) //, in, out)
 | 
						return ps.newPeer(&box, &sig, &link, "(simulator)") //, in, out)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -96,14 +96,13 @@ type peer struct {
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Creates a new peer with the specified box, sig, and linkShared keys, using the lowest unocupied port number.
 | 
					// Creates a new peer with the specified box, sig, and linkShared keys, using the lowest unocupied port number.
 | 
				
			||||||
func (ps *peers) newPeer(box *boxPubKey, sig *sigPubKey, linkShared *boxSharedKey, endpoint string, friendlyname string) *peer {
 | 
					func (ps *peers) newPeer(box *boxPubKey, sig *sigPubKey, linkShared *boxSharedKey, endpoint string) *peer {
 | 
				
			||||||
	now := time.Now()
 | 
						now := time.Now()
 | 
				
			||||||
	p := peer{box: *box,
 | 
						p := peer{box: *box,
 | 
				
			||||||
		sig:        *sig,
 | 
							sig:        *sig,
 | 
				
			||||||
		shared:     *getSharedKey(&ps.core.boxPriv, box),
 | 
							shared:     *getSharedKey(&ps.core.boxPriv, box),
 | 
				
			||||||
		linkShared: *linkShared,
 | 
							linkShared: *linkShared,
 | 
				
			||||||
		endpoint:   endpoint,
 | 
							endpoint:   endpoint,
 | 
				
			||||||
		friendlyName: friendlyname,
 | 
					 | 
				
			||||||
		firstSeen:  now,
 | 
							firstSeen:  now,
 | 
				
			||||||
		doSend:     make(chan struct{}, 1),
 | 
							doSend:     make(chan struct{}, 1),
 | 
				
			||||||
		core:       ps.core}
 | 
							core:       ps.core}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -47,7 +47,7 @@ func (r *router) init(core *Core) {
 | 
				
			||||||
	r.core = core
 | 
						r.core = core
 | 
				
			||||||
	r.addr = *address_addrForNodeID(&r.core.dht.nodeID)
 | 
						r.addr = *address_addrForNodeID(&r.core.dht.nodeID)
 | 
				
			||||||
	in := make(chan []byte, 32) // TODO something better than this...
 | 
						in := make(chan []byte, 32) // TODO something better than this...
 | 
				
			||||||
	p := r.core.peers.newPeer(&r.core.boxPub, &r.core.sigPub, &boxSharedKey{}, "(self)", r.core.GetFriendlyName())
 | 
						p := r.core.peers.newPeer(&r.core.boxPub, &r.core.sigPub, &boxSharedKey{}, "(self)")
 | 
				
			||||||
	p.out = func(packet []byte) {
 | 
						p.out = func(packet []byte) {
 | 
				
			||||||
		// This is to make very sure it never blocks
 | 
							// This is to make very sure it never blocks
 | 
				
			||||||
		select {
 | 
							select {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -287,7 +287,7 @@ func (iface *tcpInterface) handler(sock net.Conn, incoming bool) {
 | 
				
			||||||
	}()
 | 
						}()
 | 
				
			||||||
	// Note that multiple connections to the same node are allowed
 | 
						// Note that multiple connections to the same node are allowed
 | 
				
			||||||
	//  E.g. over different interfaces
 | 
						//  E.g. over different interfaces
 | 
				
			||||||
	p := iface.core.peers.newPeer(&info.box, &info.sig, getSharedKey(myLinkPriv, &meta.link), sock.RemoteAddr().String(), "(none)")
 | 
						p := iface.core.peers.newPeer(&info.box, &info.sig, getSharedKey(myLinkPriv, &meta.link), sock.RemoteAddr().String())
 | 
				
			||||||
	p.linkOut = make(chan []byte, 1)
 | 
						p.linkOut = make(chan []byte, 1)
 | 
				
			||||||
	in := func(bs []byte) {
 | 
						in := func(bs []byte) {
 | 
				
			||||||
		p.handlePacket(bs)
 | 
							p.handlePacket(bs)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -155,12 +155,6 @@ func main() {
 | 
				
			||||||
							minutes := uint(preformatted.(float64)/60) % 60
 | 
												minutes := uint(preformatted.(float64)/60) % 60
 | 
				
			||||||
							hours := uint(preformatted.(float64) / 60 / 60)
 | 
												hours := uint(preformatted.(float64) / 60 / 60)
 | 
				
			||||||
							formatted = fmt.Sprintf("%02d:%02d:%02d", hours, minutes, seconds)
 | 
												formatted = fmt.Sprintf("%02d:%02d:%02d", hours, minutes, seconds)
 | 
				
			||||||
						case "friendly_name":
 | 
					 | 
				
			||||||
							if len(preformatted.(string)) > 32 {
 | 
					 | 
				
			||||||
								formatted = fmt.Sprintf("%s...", preformatted.(string)[:32])
 | 
					 | 
				
			||||||
							} else {
 | 
					 | 
				
			||||||
								formatted = preformatted.(string)
 | 
					 | 
				
			||||||
							}
 | 
					 | 
				
			||||||
						default:
 | 
											default:
 | 
				
			||||||
							formatted = fmt.Sprint(preformatted)
 | 
												formatted = fmt.Sprint(preformatted)
 | 
				
			||||||
						}
 | 
											}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue