mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-10 07:20:39 +03:00
WIP very simple insecure proof-of-concept for pathfinding and source routing
This commit is contained in:
parent
e2521de94d
commit
b5cd40b801
@ -50,6 +50,8 @@ type sessionInfo struct {
|
|||||||
conn *Conn // The associated Conn object
|
conn *Conn // The associated Conn object
|
||||||
callbacks []chan func() // Finished work from crypto workers
|
callbacks []chan func() // Finished work from crypto workers
|
||||||
table *lookupTable // table.self is a locator where we get our coords
|
table *lookupTable // table.self is a locator where we get our coords
|
||||||
|
path []byte // Path from self to destination
|
||||||
|
rpath []byte // Path from destination to self
|
||||||
}
|
}
|
||||||
|
|
||||||
// Represents a session ping/pong packet, and includes information like public keys, a session handle, coords, a timestamp to prevent replays, and the tun/tap MTU.
|
// Represents a session ping/pong packet, and includes information like public keys, a session handle, coords, a timestamp to prevent replays, and the tun/tap MTU.
|
||||||
@ -328,6 +330,10 @@ func (sinfo *sessionInfo) _sendPingPong(isPong bool) {
|
|||||||
if sinfo.pingTime.Before(sinfo.time) {
|
if sinfo.pingTime.Before(sinfo.time) {
|
||||||
sinfo.pingTime = time.Now()
|
sinfo.pingTime = time.Now()
|
||||||
}
|
}
|
||||||
|
// Sending a ping may happen when we don't know if our path info is good anymore...
|
||||||
|
// Reset paths just to be safe...
|
||||||
|
sinfo.path = nil
|
||||||
|
sinfo.rpath = nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sinfo *sessionInfo) setConn(from phony.Actor, conn *Conn) {
|
func (sinfo *sessionInfo) setConn(from phony.Actor, conn *Conn) {
|
||||||
@ -468,6 +474,8 @@ func (sinfo *sessionInfo) _recvPacket(p *wire_trafficPacket) {
|
|||||||
sinfo._updateNonce(&p.Nonce)
|
sinfo._updateNonce(&p.Nonce)
|
||||||
sinfo.bytesRecvd += uint64(len(bs))
|
sinfo.bytesRecvd += uint64(len(bs))
|
||||||
sinfo.conn.recvMsg(sinfo, bs)
|
sinfo.conn.recvMsg(sinfo, bs)
|
||||||
|
sinfo.path = append(sinfo.path[:0], p.RPath...)
|
||||||
|
sinfo.rpath = append(sinfo.rpath[:0], p.Path...)
|
||||||
}
|
}
|
||||||
ch <- callback
|
ch <- callback
|
||||||
sinfo.checkCallbacks()
|
sinfo.checkCallbacks()
|
||||||
@ -483,15 +491,24 @@ func (sinfo *sessionInfo) _send(msg FlowKeyMessage) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
sinfo.bytesSent += uint64(len(msg.Message))
|
sinfo.bytesSent += uint64(len(msg.Message))
|
||||||
coords := append([]byte(nil), sinfo.coords...)
|
var coords []byte
|
||||||
|
var offset uint64
|
||||||
|
if len(sinfo.path) > 0 && len(sinfo.path) <= len(sinfo.rpath) {
|
||||||
|
coords = append([]byte{0}, sinfo.path...)
|
||||||
|
offset += 1
|
||||||
|
} else {
|
||||||
|
coords = append([]byte(nil), sinfo.coords...)
|
||||||
|
}
|
||||||
if msg.FlowKey != 0 {
|
if msg.FlowKey != 0 {
|
||||||
coords = append(coords, 0)
|
coords = append(coords, 0)
|
||||||
coords = append(coords, wire_encode_uint64(msg.FlowKey)...)
|
coords = append(coords, wire_encode_uint64(msg.FlowKey)...)
|
||||||
}
|
}
|
||||||
p := wire_trafficPacket{
|
p := wire_trafficPacket{
|
||||||
|
Offset: offset,
|
||||||
Coords: coords,
|
Coords: coords,
|
||||||
Handle: sinfo.theirHandle,
|
Handle: sinfo.theirHandle,
|
||||||
Nonce: sinfo.myNonce,
|
Nonce: sinfo.myNonce,
|
||||||
|
RPath: sinfo.rpath,
|
||||||
}
|
}
|
||||||
sinfo.myNonce.Increment()
|
sinfo.myNonce.Increment()
|
||||||
k := sinfo.sharedSesKey
|
k := sinfo.sharedSesKey
|
||||||
|
@ -114,7 +114,7 @@ func (s *stream) readMsgFromBuffer() ([]byte, error) {
|
|||||||
return nil, errors.New("oversized message")
|
return nil, errors.New("oversized message")
|
||||||
}
|
}
|
||||||
msg := pool_getBytes(int(msgLen + 10)) // Extra padding for up to 1 more switchPort
|
msg := pool_getBytes(int(msgLen + 10)) // Extra padding for up to 1 more switchPort
|
||||||
msg = msg[msgLen:]
|
msg = msg[:msgLen]
|
||||||
_, err = io.ReadFull(s.inputBuffer, msg)
|
_, err = io.ReadFull(s.inputBuffer, msg)
|
||||||
return msg, err
|
return msg, err
|
||||||
}
|
}
|
||||||
|
@ -269,7 +269,7 @@ func (p *wire_trafficPacket) decode(bs []byte) bool {
|
|||||||
case !wire_chop_vslice(&p.RPath, &bs):
|
case !wire_chop_vslice(&p.RPath, &bs):
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
p.Path = bs
|
p.Path = append(p.Path[:0], bs...)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -322,7 +322,7 @@ func (p *wire_protoTrafficPacket) decode(bs []byte) bool {
|
|||||||
case !wire_chop_vslice(&p.RPath, &bs):
|
case !wire_chop_vslice(&p.RPath, &bs):
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
p.Path = bs
|
p.Path = append(p.Path[:0], bs...)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user