2018-05-03 13:04:00 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
|
2018-05-18 22:34:56 +00:00
|
|
|
* Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>.
|
2018-05-03 13:04:00 +00:00
|
|
|
*/
|
|
|
|
|
2017-05-30 20:36:49 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-07-13 12:32:40 +00:00
|
|
|
"encoding/base64"
|
2017-06-26 11:14:02 +00:00
|
|
|
"errors"
|
2017-07-13 12:32:40 +00:00
|
|
|
"fmt"
|
2017-05-30 20:36:49 +00:00
|
|
|
"sync"
|
2017-06-04 19:48:15 +00:00
|
|
|
"time"
|
2017-05-30 20:36:49 +00:00
|
|
|
)
|
|
|
|
|
2018-01-13 08:00:37 +00:00
|
|
|
const (
|
2018-05-07 20:27:03 +00:00
|
|
|
PeerRoutineNumber = 3
|
2018-01-13 08:00:37 +00:00
|
|
|
)
|
|
|
|
|
2017-05-30 20:36:49 +00:00
|
|
|
type Peer struct {
|
2018-01-26 21:52:32 +00:00
|
|
|
isRunning AtomicBool
|
2018-05-13 21:14:43 +00:00
|
|
|
mutex sync.RWMutex // Mostly protects endpoint, but is generally taken whenever we modify peer
|
2018-05-13 16:23:40 +00:00
|
|
|
keypairs Keypairs
|
2017-06-24 13:34:17 +00:00
|
|
|
handshake Handshake
|
|
|
|
device *Device
|
2017-11-18 22:34:02 +00:00
|
|
|
endpoint Endpoint
|
2018-04-18 05:24:33 +00:00
|
|
|
persistentKeepaliveInterval uint16
|
2018-02-02 15:40:14 +00:00
|
|
|
|
2018-05-14 02:36:20 +00:00
|
|
|
// This must be 64-bit aligned, so make sure the above members come out to even alignment and pad accordingly
|
2018-02-02 15:40:14 +00:00
|
|
|
stats struct {
|
2017-07-18 13:22:56 +00:00
|
|
|
txBytes uint64 // bytes send to peer (endpoint)
|
|
|
|
rxBytes uint64 // bytes received from peer
|
|
|
|
lastHandshakeNano int64 // nano seconds since epoch
|
|
|
|
}
|
2018-02-02 15:40:14 +00:00
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
timers struct {
|
|
|
|
retransmitHandshake *Timer
|
|
|
|
sendKeepalive *Timer
|
|
|
|
newHandshake *Timer
|
|
|
|
zeroKeyMaterial *Timer
|
|
|
|
persistentKeepalive *Timer
|
2018-05-20 04:50:07 +00:00
|
|
|
handshakeAttempts uint32
|
|
|
|
needAnotherKeepalive AtomicBool
|
|
|
|
sentLastMinuteHandshake AtomicBool
|
2017-06-28 21:45:45 +00:00
|
|
|
}
|
2018-02-02 15:40:14 +00:00
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
signals struct {
|
|
|
|
newKeypairArrived chan struct{}
|
|
|
|
flushNonceQueue chan struct{}
|
2017-06-28 21:45:45 +00:00
|
|
|
}
|
2018-02-02 15:40:14 +00:00
|
|
|
|
2017-06-28 21:45:45 +00:00
|
|
|
queue struct {
|
2018-05-07 20:27:03 +00:00
|
|
|
nonce chan *QueueOutboundElement // nonce / pre-handshake queue
|
|
|
|
outbound chan *QueueOutboundElement // sequential ordering of work
|
|
|
|
inbound chan *QueueInboundElement // sequential ordering of work
|
2018-05-20 01:24:14 +00:00
|
|
|
packetInNonceQueueIsAwaitingKey AtomicBool
|
2017-06-28 21:45:45 +00:00
|
|
|
}
|
2018-02-02 15:40:14 +00:00
|
|
|
|
2018-01-13 08:00:37 +00:00
|
|
|
routines struct {
|
2018-02-04 15:46:24 +00:00
|
|
|
mutex sync.Mutex // held when stopping / starting routines
|
2018-01-13 08:00:37 +00:00
|
|
|
starting sync.WaitGroup // routines pending start
|
|
|
|
stopping sync.WaitGroup // routines pending stop
|
2018-05-13 17:33:41 +00:00
|
|
|
stop chan struct{} // size 0, stop all go routines in peer
|
2018-01-13 08:00:37 +00:00
|
|
|
}
|
2018-02-02 15:40:14 +00:00
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
cookieGenerator CookieGenerator
|
2017-06-24 13:34:17 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
func (device *Device) NewPeer(pk NoisePublicKey) (*Peer, error) {
|
2018-01-26 21:52:32 +00:00
|
|
|
|
|
|
|
if device.isClosed.Get() {
|
2018-05-13 17:33:41 +00:00
|
|
|
return nil, errors.New("device closed")
|
2018-01-26 21:52:32 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 15:40:14 +00:00
|
|
|
// lock resources
|
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
device.staticIdentity.mutex.RLock()
|
|
|
|
defer device.staticIdentity.mutex.RUnlock()
|
2018-02-02 15:40:14 +00:00
|
|
|
|
|
|
|
device.peers.mutex.Lock()
|
|
|
|
defer device.peers.mutex.Unlock()
|
|
|
|
|
|
|
|
// check if over limit
|
|
|
|
|
|
|
|
if len(device.peers.keyMap) >= MaxPeers {
|
2018-05-13 17:33:41 +00:00
|
|
|
return nil, errors.New("too many peers")
|
2018-02-02 15:40:14 +00:00
|
|
|
}
|
2018-01-26 21:52:32 +00:00
|
|
|
|
2017-06-26 11:14:02 +00:00
|
|
|
// create peer
|
|
|
|
|
2017-06-30 12:41:08 +00:00
|
|
|
peer := new(Peer)
|
2017-06-26 11:14:02 +00:00
|
|
|
peer.mutex.Lock()
|
2017-06-30 12:41:08 +00:00
|
|
|
defer peer.mutex.Unlock()
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
peer.cookieGenerator.Init(pk)
|
2017-07-01 21:29:22 +00:00
|
|
|
peer.device = device
|
2018-01-26 21:52:32 +00:00
|
|
|
peer.isRunning.Set(false)
|
2017-07-08 21:51:26 +00:00
|
|
|
|
2017-06-30 12:41:08 +00:00
|
|
|
// map public key
|
|
|
|
|
2018-02-02 15:40:14 +00:00
|
|
|
_, ok := device.peers.keyMap[pk]
|
2017-06-26 11:14:02 +00:00
|
|
|
if ok {
|
2018-05-13 17:33:41 +00:00
|
|
|
return nil, errors.New("adding existing peer")
|
2017-06-26 11:14:02 +00:00
|
|
|
}
|
2018-02-02 15:40:14 +00:00
|
|
|
device.peers.keyMap[pk] = peer
|
2017-06-24 13:34:17 +00:00
|
|
|
|
2018-02-02 16:24:29 +00:00
|
|
|
// pre-compute DH
|
2017-06-24 13:34:17 +00:00
|
|
|
|
2017-06-26 11:14:02 +00:00
|
|
|
handshake := &peer.handshake
|
|
|
|
handshake.mutex.Lock()
|
|
|
|
handshake.remoteStatic = pk
|
2018-05-13 21:14:43 +00:00
|
|
|
handshake.precomputedStaticStatic = device.staticIdentity.privateKey.sharedSecret(pk)
|
2017-06-26 11:14:02 +00:00
|
|
|
handshake.mutex.Unlock()
|
2017-06-24 13:34:17 +00:00
|
|
|
|
2017-10-16 19:33:47 +00:00
|
|
|
// reset endpoint
|
|
|
|
|
2017-11-18 22:34:02 +00:00
|
|
|
peer.endpoint = nil
|
2017-10-16 19:33:47 +00:00
|
|
|
|
2018-01-26 21:52:32 +00:00
|
|
|
// start peer
|
|
|
|
|
|
|
|
if peer.device.isUp.Get() {
|
|
|
|
peer.Start()
|
|
|
|
}
|
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
return peer, nil
|
2017-05-30 20:36:49 +00:00
|
|
|
}
|
2017-06-28 21:45:45 +00:00
|
|
|
|
2017-10-27 08:43:37 +00:00
|
|
|
func (peer *Peer) SendBuffer(buffer []byte) error {
|
|
|
|
peer.device.net.mutex.RLock()
|
|
|
|
defer peer.device.net.mutex.RUnlock()
|
2017-12-29 16:42:09 +00:00
|
|
|
|
2018-02-02 19:45:25 +00:00
|
|
|
if peer.device.net.bind == nil {
|
2018-05-13 17:33:41 +00:00
|
|
|
return errors.New("no bind")
|
2018-02-02 19:45:25 +00:00
|
|
|
}
|
|
|
|
|
2017-10-27 08:43:37 +00:00
|
|
|
peer.mutex.RLock()
|
|
|
|
defer peer.mutex.RUnlock()
|
2017-12-29 16:42:09 +00:00
|
|
|
|
2017-11-18 22:34:02 +00:00
|
|
|
if peer.endpoint == nil {
|
2018-05-13 17:33:41 +00:00
|
|
|
return errors.New("no known endpoint for peer")
|
2017-10-27 08:43:37 +00:00
|
|
|
}
|
2017-12-29 16:42:09 +00:00
|
|
|
|
2017-11-18 22:34:02 +00:00
|
|
|
return peer.device.net.bind.Send(buffer, peer.endpoint)
|
2017-10-27 08:43:37 +00:00
|
|
|
}
|
|
|
|
|
2017-07-13 12:32:40 +00:00
|
|
|
func (peer *Peer) String() string {
|
2018-05-13 17:33:41 +00:00
|
|
|
base64Key := base64.StdEncoding.EncodeToString(peer.handshake.remoteStatic[:])
|
|
|
|
abbreviatedKey := "invalid"
|
|
|
|
if len(base64Key) == 44 {
|
2018-05-13 21:27:28 +00:00
|
|
|
abbreviatedKey = base64Key[0:4] + "…" + base64Key[39:43]
|
2018-05-13 17:33:41 +00:00
|
|
|
}
|
|
|
|
return fmt.Sprintf("peer(%s)", abbreviatedKey)
|
2017-07-13 12:32:40 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 08:00:37 +00:00
|
|
|
func (peer *Peer) Start() {
|
|
|
|
|
2018-02-02 16:24:29 +00:00
|
|
|
// should never start a peer on a closed device
|
|
|
|
|
2018-02-02 15:40:14 +00:00
|
|
|
if peer.device.isClosed.Get() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-02-02 16:24:29 +00:00
|
|
|
// prevent simultaneous start/stop operations
|
|
|
|
|
2018-01-13 08:00:37 +00:00
|
|
|
peer.routines.mutex.Lock()
|
2018-02-02 15:40:14 +00:00
|
|
|
defer peer.routines.mutex.Unlock()
|
2018-02-02 19:45:25 +00:00
|
|
|
|
|
|
|
if peer.isRunning.Get() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-02-04 18:18:44 +00:00
|
|
|
device := peer.device
|
2018-05-21 00:50:39 +00:00
|
|
|
device.log.Debug.Println(peer, "- Starting...")
|
2018-01-26 21:52:32 +00:00
|
|
|
|
2018-05-05 20:07:58 +00:00
|
|
|
// reset routine state
|
2018-01-13 08:00:37 +00:00
|
|
|
|
|
|
|
peer.routines.starting.Wait()
|
|
|
|
peer.routines.stopping.Wait()
|
2018-05-05 20:07:58 +00:00
|
|
|
peer.routines.stop = make(chan struct{})
|
2018-05-07 20:27:03 +00:00
|
|
|
peer.routines.starting.Add(PeerRoutineNumber)
|
|
|
|
peer.routines.stopping.Add(PeerRoutineNumber)
|
2017-12-29 16:42:09 +00:00
|
|
|
|
2018-05-05 20:07:58 +00:00
|
|
|
// prepare queues
|
2018-01-26 21:52:32 +00:00
|
|
|
|
|
|
|
peer.queue.nonce = make(chan *QueueOutboundElement, QueueOutboundSize)
|
|
|
|
peer.queue.outbound = make(chan *QueueOutboundElement, QueueOutboundSize)
|
|
|
|
peer.queue.inbound = make(chan *QueueInboundElement, QueueInboundSize)
|
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
peer.timersInit()
|
2018-05-13 21:14:43 +00:00
|
|
|
peer.handshake.lastSentHandshake = time.Now().Add(-(RekeyTimeout + time.Second))
|
2018-05-07 20:27:03 +00:00
|
|
|
peer.signals.newKeypairArrived = make(chan struct{}, 1)
|
|
|
|
peer.signals.flushNonceQueue = make(chan struct{}, 1)
|
2018-02-02 19:45:25 +00:00
|
|
|
|
|
|
|
// wait for routines to start
|
|
|
|
|
2017-12-29 16:42:09 +00:00
|
|
|
go peer.RoutineNonce()
|
|
|
|
go peer.RoutineSequentialSender()
|
|
|
|
go peer.RoutineSequentialReceiver()
|
|
|
|
|
2018-01-13 08:00:37 +00:00
|
|
|
peer.routines.starting.Wait()
|
2018-01-26 21:52:32 +00:00
|
|
|
peer.isRunning.Set(true)
|
2017-12-29 16:42:09 +00:00
|
|
|
}
|
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
func (peer *Peer) ZeroAndFlushAll() {
|
|
|
|
device := peer.device
|
|
|
|
|
|
|
|
// clear key pairs
|
|
|
|
|
|
|
|
keypairs := &peer.keypairs
|
|
|
|
keypairs.mutex.Lock()
|
|
|
|
device.DeleteKeypair(keypairs.previous)
|
|
|
|
device.DeleteKeypair(keypairs.current)
|
|
|
|
device.DeleteKeypair(keypairs.next)
|
|
|
|
keypairs.previous = nil
|
|
|
|
keypairs.current = nil
|
|
|
|
keypairs.next = nil
|
|
|
|
keypairs.mutex.Unlock()
|
|
|
|
|
|
|
|
// clear handshake state
|
|
|
|
|
|
|
|
handshake := &peer.handshake
|
|
|
|
handshake.mutex.Lock()
|
|
|
|
device.indexTable.Delete(handshake.localIndex)
|
|
|
|
handshake.Clear()
|
|
|
|
handshake.mutex.Unlock()
|
|
|
|
|
|
|
|
peer.FlushNonceQueue()
|
|
|
|
}
|
|
|
|
|
2017-12-29 16:42:09 +00:00
|
|
|
func (peer *Peer) Stop() {
|
2018-01-13 08:00:37 +00:00
|
|
|
|
2018-02-02 16:24:29 +00:00
|
|
|
// prevent simultaneous start/stop operations
|
|
|
|
|
2018-02-02 19:45:25 +00:00
|
|
|
if !peer.isRunning.Swap(false) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-05-16 20:20:15 +00:00
|
|
|
peer.routines.starting.Wait()
|
|
|
|
|
|
|
|
peer.routines.mutex.Lock()
|
|
|
|
defer peer.routines.mutex.Unlock()
|
|
|
|
|
2018-05-21 00:50:39 +00:00
|
|
|
peer.device.log.Debug.Println(peer, "- Stopping...")
|
2018-01-26 21:52:32 +00:00
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
peer.timersStop()
|
|
|
|
|
2018-02-02 19:45:25 +00:00
|
|
|
// stop & wait for ongoing peer routines
|
2018-01-13 08:00:37 +00:00
|
|
|
|
2018-05-05 20:07:58 +00:00
|
|
|
close(peer.routines.stop)
|
2018-01-13 08:00:37 +00:00
|
|
|
peer.routines.stopping.Wait()
|
|
|
|
|
2018-01-26 21:52:32 +00:00
|
|
|
// close queues
|
|
|
|
|
|
|
|
close(peer.queue.nonce)
|
|
|
|
close(peer.queue.outbound)
|
|
|
|
close(peer.queue.inbound)
|
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
peer.ZeroAndFlushAll()
|
2017-06-28 21:45:45 +00:00
|
|
|
}
|