aboutsummaryrefslogtreecommitdiffstats
path: root/src/peer.go
blob: 21cad9d81ea271ad6ab31657417885069da246c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package main

import (
	"errors"
	"net"
	"sync"
	"time"
)

const ()

type Peer struct {
	mutex                       sync.RWMutex
	endpoint                    *net.UDPAddr
	persistentKeepaliveInterval time.Duration // 0 = disabled
	keyPairs                    KeyPairs
	handshake                   Handshake
	device                      *Device
	tx_bytes                    uint64
	rx_bytes                    uint64
	time                        struct {
		lastSend time.Time // last send message
	}
	signal struct {
		newHandshake    chan bool
		flushNonceQueue chan bool // empty queued packets
		stopSending     chan bool // stop sending pipeline
		stopInitiator   chan bool // stop initiator timer
	}
	timer struct {
		sendKeepalive    time.Timer
		handshakeTimeout time.Timer
	}
	queue struct {
		nonce    chan []byte                // nonce / pre-handshake queue
		outbound chan *QueueOutboundElement // sequential ordering of work
	}
	mac MacStatePeer
}

func (device *Device) NewPeer(pk NoisePublicKey) *Peer {
	var peer Peer

	// create peer

	peer.mutex.Lock()
	peer.device = device
	peer.keyPairs.Init()
	peer.mac.Init(pk)
	peer.queue.outbound = make(chan *QueueOutboundElement, QueueOutboundSize)
	peer.queue.nonce = make(chan []byte, QueueOutboundSize)

	// map public key

	device.mutex.Lock()
	_, ok := device.peers[pk]
	if ok {
		panic(errors.New("bug: adding existing peer"))
	}
	device.peers[pk] = &peer
	device.mutex.Unlock()

	// precompute DH

	handshake := &peer.handshake
	handshake.mutex.Lock()
	handshake.remoteStatic = pk
	handshake.precomputedStaticStatic = device.privateKey.sharedSecret(handshake.remoteStatic)
	handshake.mutex.Unlock()
	peer.mutex.Unlock()

	// start workers

	peer.signal.stopSending = make(chan bool, 1)
	peer.signal.stopInitiator = make(chan bool, 1)
	peer.signal.newHandshake = make(chan bool, 1)
	peer.signal.flushNonceQueue = make(chan bool, 1)

	go peer.RoutineNonce()
	go peer.RoutineHandshakeInitiator()

	return &peer
}

func (peer *Peer) Close() {
	peer.signal.stopSending <- true
	peer.signal.stopInitiator <- true
}