Files
core/Command Traverse.go
Akilan Selvacoumar ae5f1d2fd7 New features (#110)
* added upload status

* added changes for progress bar with more logs and bug fixes, Documentation yet to be added

* huge changes that need more doucmenting

* added possibility to get profile using NodeID

* added fix profile listing user profile information

* removed profile image from the explore reult struct

* saving current changes

* added filter to search based on NodeID

* Monday bug fixing

* updates to the profile

* changes for tracing the blockchain profile image not shown

* added condition to ensure TAG is not sent and removed debug prints

* updated webapi docs
2023-06-28 00:38:17 +01:00

135 lines
4.4 KiB
Go

/*
File Username: Command Traverse.go
Copyright: 2021 Peernet s.r.o.
Author: Peter Kleissner
*/
package core
import (
"math/rand"
"net"
"time"
"github.com/PeernetOfficial/core/protocol"
)
// cmdTraverseForward handles an incoming traverse message that should be forwarded to another peer
func (peer *PeerInfo) cmdTraverseForward(msg *protocol.MessageTraverse) {
// Verify the signature. This makes sure that a fowarded message cannot be replayed by others.
if !msg.SignerPublicKey.IsEqual(peer.PublicKey) || !msg.SignerPublicKey.IsEqual(msg.SenderPublicKey) {
return
}
// Check expiration
if msg.Expires.Before(time.Now()) {
return
}
// Check if the target peer is known in the peer list. If not, nothing will be done.
// The original sender should only send the Traverse message as answer to a Response that contains a reported peer that is behind a NAT.
// In that case the target peer should be still in this peers' peer list.
peerTarget := peer.Backend.PeerlistLookup(msg.TargetPeer)
if peerTarget == nil {
return
}
// Get the right IP:Port of the original sender to share to the target peer.
allowIPv4 := peerTarget.Features&(1<<protocol.FeatureIPv4Listen) > 0
allowIPv6 := peerTarget.Features&(1<<protocol.FeatureIPv6Listen) > 0
connectionIPv4 := peer.GetConnection2Share(false, allowIPv4, false)
connectionIPv6 := peer.GetConnection2Share(false, false, allowIPv6)
if connectionIPv4 == nil && connectionIPv6 == nil {
return
}
// get the individual fields
var IPv4, IPv6 net.IP
var PortIPv4, PortIPv4ReportedExternal, PortIPv6, PortIPv6ReportedExternal uint16
if connectionIPv4 != nil {
IPv4 = connectionIPv4.Address.IP
PortIPv4 = uint16(connectionIPv4.Address.Port)
PortIPv4ReportedExternal = connectionIPv4.PortExternal
}
if connectionIPv6 != nil {
IPv6 = connectionIPv6.Address.IP
PortIPv6 = uint16(connectionIPv6.Address.Port)
PortIPv6ReportedExternal = connectionIPv6.PortExternal
}
if err := protocol.EncodeTraverseSetAddress(msg.Payload, IPv4, PortIPv4, PortIPv4ReportedExternal, IPv6, PortIPv6, PortIPv6ReportedExternal); err != nil {
return
}
peerTarget.send(&protocol.PacketRaw{Command: protocol.CommandTraverse, Payload: msg.Payload})
}
func (peer *PeerInfo) cmdTraverseReceive(msg *protocol.MessageTraverse) {
if msg.Expires.Before(time.Now()) {
return
}
// Already an active connection established? The relayed message should not be needed in this case.
// This could be changed in the future if it turns out that there are 1-way connection issues.
if peerTarget := peer.Backend.PeerlistLookup(msg.SignerPublicKey); peerTarget != nil {
return
}
// parse IP addresses of the original sender
var addresses []*peerAddress
if !msg.IPv4.IsUnspecified() {
port := msg.PortIPv4
if msg.PortIPv4ReportedExternal > 0 {
port = msg.PortIPv4ReportedExternal
}
addresses = append(addresses, &peerAddress{IP: msg.IPv4, Port: port, PortInternal: 0})
}
if !msg.IPv6.IsUnspecified() {
port := msg.PortIPv6
if msg.PortIPv6ReportedExternal > 0 {
port = msg.PortIPv6ReportedExternal
}
addresses = append(addresses, &peerAddress{IP: msg.IPv6, Port: port, PortInternal: 0})
}
if len(addresses) == 0 {
return
}
// ---- fork packetWorker to decode and validate embedded packet ---
// Due to missing connection and other embedded details in the message (such as ports), the packet is not just simply queued to rawPacketsIncoming.
decoded, senderPublicKey, err := protocol.PacketDecrypt(msg.EmbeddedPacketRaw, peer.Backend.PeerPublicKey)
if err != nil {
return
}
if !senderPublicKey.IsEqual(msg.SignerPublicKey) {
return
} else if senderPublicKey.IsEqual(peer.Backend.PeerPublicKey) {
return
} else if decoded.Protocol != 0 {
return
} else if decoded.Command != protocol.CommandAnnouncement {
return
}
// process the packet and create a virtual peer
raw := &protocol.MessageRaw{SenderPublicKey: senderPublicKey, PacketRaw: *decoded}
peerV := &PeerInfo{Backend: peer.Backend, PublicKey: senderPublicKey, connectionActive: nil, connectionLatest: nil, NodeID: protocol.PublicKey2NodeID(senderPublicKey), messageSequence: rand.Uint32(), isVirtual: true, targetAddresses: addresses}
// process it!
switch decoded.Command {
case protocol.CommandAnnouncement: // Announce
if announce, _ := protocol.DecodeAnnouncement(raw); announce != nil {
if len(announce.UserAgent) > 0 {
peerV.UserAgent = announce.UserAgent
}
peerV.Features = announce.Features
peerV.cmdAnouncement(announce, nil)
}
default:
}
}