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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
// Copyright (c) 2021 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package whatsmeow
import (
"encoding/binary"
"fmt"
"time"
"go.mau.fi/libsignal/ecc"
"go.mau.fi/libsignal/keys/identity"
"go.mau.fi/libsignal/keys/prekey"
"go.mau.fi/libsignal/util/optional"
waBinary "go.mau.fi/whatsmeow/binary"
"go.mau.fi/whatsmeow/types"
"go.mau.fi/whatsmeow/util/keys"
)
const (
// WantedPreKeyCount is the number of prekeys that the client should upload to the WhatsApp servers in a single batch.
WantedPreKeyCount = 50
// MinPreKeyCount is the number of prekeys when the client will upload a new batch of prekeys to the WhatsApp servers.
MinPreKeyCount = 5
)
func (cli *Client) getServerPreKeyCount() (int, error) {
resp, err := cli.sendIQ(infoQuery{
Namespace: "encrypt",
Type: "get",
To: types.ServerJID,
Content: []waBinary.Node{
{Tag: "count"},
},
})
if err != nil {
return 0, fmt.Errorf("failed to get prekey count on server: %w", err)
}
count := resp.GetChildByTag("count")
ag := count.AttrGetter()
val := ag.Int("value")
return val, ag.Error()
}
func (cli *Client) uploadPreKeys() {
cli.uploadPreKeysLock.Lock()
defer cli.uploadPreKeysLock.Unlock()
if cli.lastPreKeyUpload.Add(10 * time.Minute).After(time.Now()) {
sc, _ := cli.getServerPreKeyCount()
if sc >= WantedPreKeyCount {
cli.Log.Debugf("Canceling prekey upload request due to likely race condition")
return
}
}
var registrationIDBytes [4]byte
binary.BigEndian.PutUint32(registrationIDBytes[:], cli.Store.RegistrationID)
preKeys, err := cli.Store.PreKeys.GetOrGenPreKeys(WantedPreKeyCount)
if err != nil {
cli.Log.Errorf("Failed to get prekeys to upload: %v", err)
return
}
cli.Log.Infof("Uploading %d new prekeys to server", len(preKeys))
_, err = cli.sendIQ(infoQuery{
Namespace: "encrypt",
Type: "set",
To: types.ServerJID,
Content: []waBinary.Node{
{Tag: "registration", Content: registrationIDBytes[:]},
{Tag: "type", Content: []byte{ecc.DjbType}},
{Tag: "identity", Content: cli.Store.IdentityKey.Pub[:]},
{Tag: "list", Content: preKeysToNodes(preKeys)},
preKeyToNode(cli.Store.SignedPreKey),
},
})
if err != nil {
cli.Log.Errorf("Failed to send request to upload prekeys: %v", err)
return
}
cli.Log.Debugf("Got response to uploading prekeys")
err = cli.Store.PreKeys.MarkPreKeysAsUploaded(preKeys[len(preKeys)-1].KeyID)
if err != nil {
cli.Log.Warnf("Failed to mark prekeys as uploaded: %v", err)
}
cli.lastPreKeyUpload = time.Now()
}
type preKeyResp struct {
bundle *prekey.Bundle
err error
}
func (cli *Client) fetchPreKeys(users []types.JID) (map[types.JID]preKeyResp, error) {
requests := make([]waBinary.Node, len(users))
for i, user := range users {
requests[i].Tag = "user"
requests[i].Attrs = waBinary.Attrs{
"jid": user,
"reason": "identity",
}
}
resp, err := cli.sendIQ(infoQuery{
Namespace: "encrypt",
Type: "get",
To: types.ServerJID,
Content: []waBinary.Node{{
Tag: "key",
Content: requests,
}},
})
if err != nil {
return nil, fmt.Errorf("failed to send prekey request: %w", err)
} else if len(resp.GetChildren()) == 0 {
return nil, fmt.Errorf("got empty response to prekey request")
}
list := resp.GetChildByTag("list")
respData := make(map[types.JID]preKeyResp)
for _, child := range list.GetChildren() {
if child.Tag != "user" {
continue
}
jid := child.AttrGetter().JID("jid")
jid.AD = true
bundle, err := nodeToPreKeyBundle(uint32(jid.Device), child)
respData[jid] = preKeyResp{bundle, err}
}
return respData, nil
}
func preKeyToNode(key *keys.PreKey) waBinary.Node {
var keyID [4]byte
binary.BigEndian.PutUint32(keyID[:], key.KeyID)
node := waBinary.Node{
Tag: "key",
Content: []waBinary.Node{
{Tag: "id", Content: keyID[1:]},
{Tag: "value", Content: key.Pub[:]},
},
}
if key.Signature != nil {
node.Tag = "skey"
node.Content = append(node.GetChildren(), waBinary.Node{
Tag: "signature",
Content: key.Signature[:],
})
}
return node
}
func nodeToPreKeyBundle(deviceID uint32, node waBinary.Node) (*prekey.Bundle, error) {
errorNode, ok := node.GetOptionalChildByTag("error")
if ok && errorNode.Tag == "error" {
return nil, fmt.Errorf("got error getting prekeys: %s", errorNode.XMLString())
}
registrationBytes, ok := node.GetChildByTag("registration").Content.([]byte)
if !ok || len(registrationBytes) != 4 {
return nil, fmt.Errorf("invalid registration ID in prekey response")
}
registrationID := binary.BigEndian.Uint32(registrationBytes)
keysNode, ok := node.GetOptionalChildByTag("keys")
if !ok {
keysNode = node
}
identityKeyRaw, ok := keysNode.GetChildByTag("identity").Content.([]byte)
if !ok || len(identityKeyRaw) != 32 {
return nil, fmt.Errorf("invalid identity key in prekey response")
}
identityKeyPub := *(*[32]byte)(identityKeyRaw)
preKey, err := nodeToPreKey(keysNode.GetChildByTag("key"))
if err != nil {
return nil, fmt.Errorf("invalid prekey in prekey response: %w", err)
}
signedPreKey, err := nodeToPreKey(keysNode.GetChildByTag("skey"))
if err != nil {
return nil, fmt.Errorf("invalid signed prekey in prekey response: %w", err)
}
return prekey.NewBundle(registrationID, deviceID,
optional.NewOptionalUint32(preKey.KeyID), signedPreKey.KeyID,
ecc.NewDjbECPublicKey(*preKey.Pub), ecc.NewDjbECPublicKey(*signedPreKey.Pub), *signedPreKey.Signature,
identity.NewKey(ecc.NewDjbECPublicKey(identityKeyPub))), nil
}
func nodeToPreKey(node waBinary.Node) (*keys.PreKey, error) {
key := keys.PreKey{
KeyPair: keys.KeyPair{},
KeyID: 0,
Signature: nil,
}
if id := node.GetChildByTag("id"); id.Tag != "id" {
return nil, fmt.Errorf("prekey node doesn't contain ID tag")
} else if idBytes, ok := id.Content.([]byte); !ok {
return nil, fmt.Errorf("prekey ID has unexpected content (%T)", id.Content)
} else if len(idBytes) != 3 {
return nil, fmt.Errorf("prekey ID has unexpected number of bytes (%d, expected 3)", len(idBytes))
} else {
key.KeyID = binary.BigEndian.Uint32(append([]byte{0}, idBytes...))
}
if pubkey := node.GetChildByTag("value"); pubkey.Tag != "value" {
return nil, fmt.Errorf("prekey node doesn't contain value tag")
} else if pubkeyBytes, ok := pubkey.Content.([]byte); !ok {
return nil, fmt.Errorf("prekey value has unexpected content (%T)", pubkey.Content)
} else if len(pubkeyBytes) != 32 {
return nil, fmt.Errorf("prekey value has unexpected number of bytes (%d, expected 32)", len(pubkeyBytes))
} else {
key.KeyPair.Pub = (*[32]byte)(pubkeyBytes)
}
if node.Tag == "skey" {
if sig := node.GetChildByTag("signature"); sig.Tag != "signature" {
return nil, fmt.Errorf("prekey node doesn't contain signature tag")
} else if sigBytes, ok := sig.Content.([]byte); !ok {
return nil, fmt.Errorf("prekey signature has unexpected content (%T)", sig.Content)
} else if len(sigBytes) != 64 {
return nil, fmt.Errorf("prekey signature has unexpected number of bytes (%d, expected 64)", len(sigBytes))
} else {
key.Signature = (*[64]byte)(sigBytes)
}
}
return &key, nil
}
func preKeysToNodes(prekeys []*keys.PreKey) []waBinary.Node {
nodes := make([]waBinary.Node, len(prekeys))
for i, key := range prekeys {
nodes[i] = preKeyToNode(key)
}
return nodes
}
|