This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
prekeys.go
213 lines (180 loc) · 5.32 KB
/
prekeys.go
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
// Copyright (c) 2014 Canonical Ltd.
// Copyright (c) 2021 Aaron Kimmig
// Licensed under the GPLv3, see the COPYING file for details.
package textsecure
import (
"fmt"
"os"
"path/filepath"
"strconv"
"time"
"github.com/signal-golang/textsecure/axolotl"
"github.com/signal-golang/textsecure/curve25519sign"
"github.com/signal-golang/textsecure/helpers"
log "github.com/sirupsen/logrus"
)
type preKeyEntity struct {
ID uint32 `json:"keyId"`
PublicKey string `json:"publicKey"`
}
type signedPreKeyEntity struct {
ID uint32 `json:"keyId"`
PublicKey string `json:"publicKey"`
Signature string `json:"signature"`
}
type preKeyState struct {
IdentityKey string `json:"identityKey"`
PreKeys []*preKeyEntity `json:"preKeys"`
LastResortKey *preKeyEntity `json:"lastResortKey"`
SignedPreKey *signedPreKeyEntity `json:"signedPreKey"`
}
type preKeyResponseItem struct {
DeviceID uint32 `json:"deviceId"`
RegistrationID uint32 `json:"registrationId"`
SignedPreKey *signedPreKeyEntity `json:"signedPreKey"`
PreKey *preKeyEntity `json:"preKey"`
}
type preKeyResponse struct {
IdentityKey string `json:"identityKey"`
Devices []preKeyResponseItem `json:"devices"`
}
var preKeys *preKeyState
func randID() uint32 {
return randUint32() & 0xffffff
}
func generatepreKeyEntity(record *axolotl.PreKeyRecord) *preKeyEntity {
entity := &preKeyEntity{}
entity.ID = record.Pkrs.Id
entity.PublicKey = encodeKey(record.Pkrs.PublicKey)
return entity
}
func generateSignedPreKeyEntity(record *axolotl.SignedPreKeyRecord) *signedPreKeyEntity {
entity := &signedPreKeyEntity{}
entity.ID = record.Spkrs.Id
entity.PublicKey = encodeKey(record.Spkrs.PublicKey)
entity.Signature = helpers.Base64EncWithoutPadding(record.Spkrs.Signature)
return entity
}
var preKeyRecords []*axolotl.PreKeyRecord
func generatePreKey(id uint32) error {
kp := axolotl.NewECKeyPair()
record := axolotl.NewPreKeyRecord(id, kp)
err := textSecureStore.StorePreKey(id, record)
return err
}
var signedKey *axolotl.SignedPreKeyRecord
var preKeyBatchSize = 100
func getNextPreKeyID() uint32 {
return randID()
}
func generatePreKeys() error {
if err := os.MkdirAll(textSecureStore.preKeysDir, 0700); err != nil {
return err
}
startID := getNextPreKeyID()
for i := 0; i < preKeyBatchSize; i++ {
err := generatePreKey(startID + uint32(i))
if err != nil {
return err
}
}
err := generatePreKey(lastResortPreKeyID)
if err != nil {
return err
}
signedKey = generateSignedPreKey()
return nil
}
func getNextSignedPreKeyID() uint32 {
return randID()
}
func generateSignedPreKey() *axolotl.SignedPreKeyRecord {
kp := axolotl.NewECKeyPair()
id := getNextSignedPreKeyID()
var random [64]byte
randBytes(random[:])
priv := identityKey.PrivateKey.Key()
signature := curve25519sign.Sign(priv, kp.PublicKey.Serialize(), random)
record := axolotl.NewSignedPreKeyRecord(id, uint64(time.Now().UnixNano()*1000), kp, signature[:])
textSecureStore.StoreSignedPreKey(id, record)
return record
}
func generatePreKeyState() error {
err := loadPreKeys()
if err != nil {
return err
}
preKeys = &preKeyState{}
npkr := len(preKeyRecords)
preKeys.PreKeys = make([]*preKeyEntity, npkr-1)
for i := range preKeys.PreKeys {
preKeys.PreKeys[i] = generatepreKeyEntity(preKeyRecords[i])
}
preKeys.LastResortKey = generatepreKeyEntity(preKeyRecords[npkr-1])
preKeys.IdentityKey = helpers.Base64EncWithoutPadding(identityKey.PublicKey.Serialize())
preKeys.SignedPreKey = generateSignedPreKeyEntity(signedKey)
return nil
}
func loadPreKeys() error {
preKeyRecords = []*axolotl.PreKeyRecord{}
count := 0
err := filepath.Walk(textSecureStore.preKeysDir, func(path string, fi os.FileInfo, err error) error {
if !fi.IsDir() {
preKeyRecords = append(preKeyRecords, &axolotl.PreKeyRecord{})
_, fname := filepath.Split(path)
id, err := filenameToID(fname)
if err != nil {
return err
}
preKeyRecords[count], _ = textSecureStore.LoadPreKey(uint32(id))
count++
}
return nil
})
return err
}
func makePreKeyBundle(UUID string, deviceID uint32) (*axolotl.PreKeyBundle, error) {
pkr, err := getPreKeys(UUID, strconv.Itoa(int(deviceID)))
if err != nil {
return nil, err
}
if len(pkr.Devices) != 1 {
return nil, fmt.Errorf("no prekeys for contact %s, device %d", UUID, deviceID)
}
d := pkr.Devices[0]
preKeyId := uint32(0)
var preKey *axolotl.ECPublicKey
if d.PreKey == nil {
log.Debugln("[textsecure] makePreKeyBundle", fmt.Errorf("no prekey for contact %s, device %d", UUID, deviceID))
} else {
preKeyId = d.PreKey.ID
decPK, err := decodeKey(d.PreKey.PublicKey)
preKey = axolotl.NewECPublicKey(decPK)
if err != nil {
return nil, err
}
}
if d.SignedPreKey == nil {
return nil, fmt.Errorf("no signed prekey for contact %s, device %d", UUID, deviceID)
}
decSPK, err := decodeKey(d.SignedPreKey.PublicKey)
if err != nil {
return nil, err
}
decSig, err := decodeSignature(d.SignedPreKey.Signature)
if err != nil {
return nil, err
}
decIK, err := decodeKey(pkr.IdentityKey)
if err != nil {
return nil, err
}
pkb, err := axolotl.NewPreKeyBundle(
d.RegistrationID, d.DeviceID, preKeyId,
preKey, int32(d.SignedPreKey.ID), axolotl.NewECPublicKey(decSPK),
decSig, axolotl.NewIdentityKey(decIK))
if err != nil {
return nil, err
}
return pkb, nil
}