mirror of
				https://github.com/yggdrasil-network/yggdrasil-go.git
				synced 2025-11-04 11:15:07 +03:00 
			
		
		
		
	remove TTL from traffic packets
This commit is contained in:
		
							parent
							
								
									84c13fac90
								
							
						
					
					
						commit
						bced15b138
					
				
					 7 changed files with 13 additions and 38 deletions
				
			
		| 
						 | 
				
			
			@ -126,8 +126,8 @@ func (l *switchLocator) DEBUG_getCoords() []byte {
 | 
			
		|||
	return l.getCoords()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (c *Core) DEBUG_switchLookup(dest []byte, ttl uint64) (switchPort, uint64) {
 | 
			
		||||
	return c.switchTable.lookup(dest, ttl)
 | 
			
		||||
func (c *Core) DEBUG_switchLookup(dest []byte) switchPort {
 | 
			
		||||
	return c.switchTable.lookup(dest)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -326,7 +326,6 @@ func (t *dht) sendReq(req *dhtReq, dest *dhtInfo) {
 | 
			
		|||
	shared := t.core.sessions.getSharedKey(&t.core.boxPriv, &dest.key)
 | 
			
		||||
	payload, nonce := boxSeal(shared, bs, nil)
 | 
			
		||||
	p := wire_protoTrafficPacket{
 | 
			
		||||
		TTL:     ^uint64(0),
 | 
			
		||||
		Coords:  dest.coords,
 | 
			
		||||
		ToKey:   dest.key,
 | 
			
		||||
		FromKey: t.core.boxPub,
 | 
			
		||||
| 
						 | 
				
			
			@ -352,7 +351,6 @@ func (t *dht) sendRes(res *dhtRes, req *dhtReq) {
 | 
			
		|||
	shared := t.core.sessions.getSharedKey(&t.core.boxPriv, &req.Key)
 | 
			
		||||
	payload, nonce := boxSeal(shared, bs, nil)
 | 
			
		||||
	p := wire_protoTrafficPacket{
 | 
			
		||||
		TTL:     ^uint64(0),
 | 
			
		||||
		Coords:  req.Coords,
 | 
			
		||||
		ToKey:   req.Key,
 | 
			
		||||
		FromKey: t.core.boxPub,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -204,14 +204,11 @@ func (p *peer) handleTraffic(packet []byte, pTypeLen int) {
 | 
			
		|||
		// Drop traffic until the peer manages to send us at least one good switchMsg
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, ttlLen := wire_decode_uint64(packet[pTypeLen:])
 | 
			
		||||
	ttlEnd := pTypeLen + ttlLen
 | 
			
		||||
	coords, coordLen := wire_decode_coords(packet[ttlEnd:])
 | 
			
		||||
	coordEnd := ttlEnd + coordLen
 | 
			
		||||
	if coordEnd == len(packet) {
 | 
			
		||||
	coords, coordLen := wire_decode_coords(packet[pTypeLen:])
 | 
			
		||||
	if coordLen >= len(packet) {
 | 
			
		||||
		return
 | 
			
		||||
	} // No payload
 | 
			
		||||
	toPort, _ := p.core.switchTable.lookup(coords, 0)
 | 
			
		||||
	toPort := p.core.switchTable.lookup(coords)
 | 
			
		||||
	if toPort == p.port {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -255,7 +255,6 @@ func (ss *sessions) sendPingPong(sinfo *sessionInfo, isPong bool) {
 | 
			
		|||
	shared := ss.getSharedKey(&ss.core.boxPriv, &sinfo.theirPermPub)
 | 
			
		||||
	payload, nonce := boxSeal(shared, bs, nil)
 | 
			
		||||
	p := wire_protoTrafficPacket{
 | 
			
		||||
		TTL:     ^uint64(0),
 | 
			
		||||
		Coords:  sinfo.coords,
 | 
			
		||||
		ToKey:   sinfo.theirPermPub,
 | 
			
		||||
		FromKey: ss.core.boxPub,
 | 
			
		||||
| 
						 | 
				
			
			@ -383,7 +382,6 @@ func (sinfo *sessionInfo) doSend(bs []byte) {
 | 
			
		|||
	payload, nonce := boxSeal(&sinfo.sharedSesKey, bs, &sinfo.myNonce)
 | 
			
		||||
	defer util_putBytes(payload)
 | 
			
		||||
	p := wire_trafficPacket{
 | 
			
		||||
		TTL:     ^uint64(0),
 | 
			
		||||
		Coords:  sinfo.coords,
 | 
			
		||||
		Handle:  sinfo.theirHandle,
 | 
			
		||||
		Nonce:   *nonce,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -413,22 +413,19 @@ func (t *switchTable) updateTable() {
 | 
			
		|||
	t.table.Store(newTable)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (t *switchTable) lookup(dest []byte, ttl uint64) (switchPort, uint64) {
 | 
			
		||||
func (t *switchTable) lookup(dest []byte) switchPort {
 | 
			
		||||
	t.updater.Load().(*sync.Once).Do(t.updateTable)
 | 
			
		||||
	table := t.table.Load().(lookupTable)
 | 
			
		||||
	myDist := table.self.dist(dest) //getDist(table.self.coords)
 | 
			
		||||
	if !(uint64(myDist) < ttl) {
 | 
			
		||||
		//return 0, 0
 | 
			
		||||
	}
 | 
			
		||||
	myDist := table.self.dist(dest)
 | 
			
		||||
	if myDist == 0 {
 | 
			
		||||
		return 0, 0
 | 
			
		||||
		return 0
 | 
			
		||||
	}
 | 
			
		||||
	// cost is in units of (expected distance) + (expected queue size), where expected distance is used as an approximation of the minimum backpressure gradient needed for packets to flow
 | 
			
		||||
	ports := t.core.peers.getPorts()
 | 
			
		||||
	var best switchPort
 | 
			
		||||
	bestCost := int64(^uint64(0) >> 1)
 | 
			
		||||
	for _, info := range table.elems {
 | 
			
		||||
		dist := info.locator.dist(dest) //getDist(info.locator.coords)
 | 
			
		||||
		dist := info.locator.dist(dest)
 | 
			
		||||
		if !(dist < myDist) {
 | 
			
		||||
			continue
 | 
			
		||||
		}
 | 
			
		||||
| 
						 | 
				
			
			@ -442,9 +439,8 @@ func (t *switchTable) lookup(dest []byte, ttl uint64) (switchPort, uint64) {
 | 
			
		|||
			bestCost = cost
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	//t.core.log.Println("DEBUG: sending to", best, "bandwidth", getBandwidth(best))
 | 
			
		||||
	//t.core.log.Println("DEBUG: sending to", best, "cost", bestCost)
 | 
			
		||||
	return best, ttl //uint64(myDist)
 | 
			
		||||
	return best
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
////////////////////////////////////////////////////////////////////////////////
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -192,7 +192,6 @@ func wire_chop_uint64(toUInt64 *uint64, fromSlice *[]byte) bool {
 | 
			
		|||
// Wire traffic packets
 | 
			
		||||
 | 
			
		||||
type wire_trafficPacket struct {
 | 
			
		||||
	TTL     uint64
 | 
			
		||||
	Coords  []byte
 | 
			
		||||
	Handle  handle
 | 
			
		||||
	Nonce   boxNonce
 | 
			
		||||
| 
						 | 
				
			
			@ -203,7 +202,6 @@ type wire_trafficPacket struct {
 | 
			
		|||
func (p *wire_trafficPacket) encode() []byte {
 | 
			
		||||
	bs := util_getBytes()
 | 
			
		||||
	bs = wire_put_uint64(wire_Traffic, bs)
 | 
			
		||||
	bs = wire_put_uint64(p.TTL, bs)
 | 
			
		||||
	bs = wire_put_coords(p.Coords, bs)
 | 
			
		||||
	bs = append(bs, p.Handle[:]...)
 | 
			
		||||
	bs = append(bs, p.Nonce[:]...)
 | 
			
		||||
| 
						 | 
				
			
			@ -219,8 +217,6 @@ func (p *wire_trafficPacket) decode(bs []byte) bool {
 | 
			
		|||
		return false
 | 
			
		||||
	case pType != wire_Traffic:
 | 
			
		||||
		return false
 | 
			
		||||
	case !wire_chop_uint64(&p.TTL, &bs):
 | 
			
		||||
		return false
 | 
			
		||||
	case !wire_chop_coords(&p.Coords, &bs):
 | 
			
		||||
		return false
 | 
			
		||||
	case !wire_chop_slice(p.Handle[:], &bs):
 | 
			
		||||
| 
						 | 
				
			
			@ -233,7 +229,6 @@ func (p *wire_trafficPacket) decode(bs []byte) bool {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
type wire_protoTrafficPacket struct {
 | 
			
		||||
	TTL     uint64
 | 
			
		||||
	Coords  []byte
 | 
			
		||||
	ToKey   boxPubKey
 | 
			
		||||
	FromKey boxPubKey
 | 
			
		||||
| 
						 | 
				
			
			@ -244,7 +239,6 @@ type wire_protoTrafficPacket struct {
 | 
			
		|||
func (p *wire_protoTrafficPacket) encode() []byte {
 | 
			
		||||
	coords := wire_encode_coords(p.Coords)
 | 
			
		||||
	bs := wire_encode_uint64(wire_ProtocolTraffic)
 | 
			
		||||
	bs = append(bs, wire_encode_uint64(p.TTL)...)
 | 
			
		||||
	bs = append(bs, coords...)
 | 
			
		||||
	bs = append(bs, p.ToKey[:]...)
 | 
			
		||||
	bs = append(bs, p.FromKey[:]...)
 | 
			
		||||
| 
						 | 
				
			
			@ -260,8 +254,6 @@ func (p *wire_protoTrafficPacket) decode(bs []byte) bool {
 | 
			
		|||
		return false
 | 
			
		||||
	case pType != wire_ProtocolTraffic:
 | 
			
		||||
		return false
 | 
			
		||||
	case !wire_chop_uint64(&p.TTL, &bs):
 | 
			
		||||
		return false
 | 
			
		||||
	case !wire_chop_coords(&p.Coords, &bs):
 | 
			
		||||
		return false
 | 
			
		||||
	case !wire_chop_slice(p.ToKey[:], &bs):
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue