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-06-24 13:34:17 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/cipher"
|
2017-06-26 11:14:02 +00:00
|
|
|
"sync"
|
2017-06-27 15:33:06 +00:00
|
|
|
"time"
|
2017-06-24 13:34:17 +00:00
|
|
|
)
|
|
|
|
|
2017-09-20 07:26:08 +00:00
|
|
|
/* Due to limitations in Go and /x/crypto there is currently
|
|
|
|
* no way to ensure that key material is securely ereased in memory.
|
|
|
|
*
|
|
|
|
* Since this may harm the forward secrecy property,
|
|
|
|
* we plan to resolve this issue; whenever Go allows us to do so.
|
|
|
|
*/
|
2017-09-01 12:21:53 +00:00
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
type Keypair struct {
|
2018-04-18 04:54:21 +00:00
|
|
|
sendNonce uint64
|
2017-09-20 07:26:08 +00:00
|
|
|
send cipher.AEAD
|
|
|
|
receive cipher.AEAD
|
2017-07-10 10:09:19 +00:00
|
|
|
replayFilter ReplayFilter
|
|
|
|
isInitiator bool
|
|
|
|
created time.Time
|
|
|
|
localIndex uint32
|
|
|
|
remoteIndex uint32
|
2017-06-26 11:14:02 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
type Keypairs struct {
|
2017-06-30 12:41:08 +00:00
|
|
|
mutex sync.RWMutex
|
2018-05-07 20:27:03 +00:00
|
|
|
current *Keypair
|
|
|
|
previous *Keypair
|
2018-05-13 17:33:41 +00:00
|
|
|
next *Keypair
|
2017-06-26 20:07:29 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
func (kp *Keypairs) Current() *Keypair {
|
2017-06-26 20:07:29 +00:00
|
|
|
kp.mutex.RLock()
|
|
|
|
defer kp.mutex.RUnlock()
|
|
|
|
return kp.current
|
2017-06-24 13:34:17 +00:00
|
|
|
}
|
2017-08-14 15:09:25 +00:00
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
func (device *Device) DeleteKeypair(key *Keypair) {
|
2018-02-02 16:24:29 +00:00
|
|
|
if key != nil {
|
2018-05-13 16:23:40 +00:00
|
|
|
device.indexTable.Delete(key.localIndex)
|
2018-02-02 16:24:29 +00:00
|
|
|
}
|
2017-08-14 15:09:25 +00:00
|
|
|
}
|