-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathap.go
559 lines (462 loc) · 15.3 KB
/
ap.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
package ap
import (
"bytes"
"context"
"crypto/aes"
"crypto/hmac"
"crypto/rand"
"crypto/sha1"
"encoding/base64"
"encoding/binary"
"fmt"
"io"
"net"
"sync"
"time"
"github.com/cenkalti/backoff/v4"
librespot "github.com/devgianlu/go-librespot"
"github.com/devgianlu/go-librespot/dh"
pb "github.com/devgianlu/go-librespot/proto/spotify"
"golang.org/x/crypto/pbkdf2"
"golang.org/x/exp/slices"
"golang.org/x/net/proxy"
"google.golang.org/protobuf/proto"
)
const pongAckInterval = 120 * time.Second
type AccesspointLoginError struct {
Message *pb.APLoginFailed
}
func (e *AccesspointLoginError) Error() string {
return fmt.Sprintf("accesspoint login failed: %s %v", e.Message.ErrorCode.String(), e.Message.ErrorDescription)
}
type Accesspoint struct {
log librespot.Logger
addr librespot.GetAddressFunc
nonce []byte
deviceId string
dh *dh.DiffieHellman
conn net.Conn
encConn *shannonConn
stop bool
pongAckTickerStop chan struct{}
recvLoopStop chan struct{}
recvLoopOnce sync.Once
recvChans map[PacketType][]chan Packet
recvChansLock sync.RWMutex
lastPongAck time.Time
lastPongAckLock sync.Mutex
// connMu is held for writing when performing reconnection and for reading mainly when accessing welcome
// or sending packets. If it's not held, a valid connection (and APWelcome) is available. Be careful not to deadlock
// anything with this.
connMu sync.RWMutex
welcome *pb.APWelcome
}
func NewAccesspoint(log librespot.Logger, addr librespot.GetAddressFunc, deviceId string) *Accesspoint {
return &Accesspoint{log: log, addr: addr, deviceId: deviceId, recvChans: make(map[PacketType][]chan Packet)}
}
func (ap *Accesspoint) init(ctx context.Context) (err error) {
// read 16 nonce bytes
ap.nonce = make([]byte, 16)
if _, err = rand.Read(ap.nonce); err != nil {
return fmt.Errorf("failed reading random nonce: %w", err)
}
// init diffiehellman parameters
if ap.dh, err = dh.NewDiffieHellman(); err != nil {
return fmt.Errorf("failed initializing diffiehellman: %w", err)
}
// open connection to accesspoint
attempts := 0
for {
attempts++
ctx_, cancel := context.WithTimeout(ctx, time.Second*30)
addr := ap.addr(ctx_)
conn, err := proxy.Dial(ctx_, "tcp", addr)
cancel()
if err == nil {
// we assign to ap.conn after because if Dial fails we'll have a nil ap.conn which we don't want
ap.conn = conn
// Successfully connected.
ap.log.Debugf("connected to %s", addr)
return nil
} else if attempts >= 6 {
// Only try a few times before giving up.
return fmt.Errorf("failed to connect to AP %v: %w", addr, err)
}
// Try again with a different AP.
ap.log.WithError(err).Warnf("failed to connect to AP %v, retrying with a different AP", addr)
}
}
func (ap *Accesspoint) ConnectSpotifyToken(ctx context.Context, username, token string) error {
return ap.Connect(ctx, &pb.LoginCredentials{
Typ: pb.AuthenticationType_AUTHENTICATION_SPOTIFY_TOKEN.Enum(),
Username: proto.String(username),
AuthData: []byte(token),
})
}
func (ap *Accesspoint) ConnectStored(ctx context.Context, username string, data []byte) error {
return ap.Connect(ctx, &pb.LoginCredentials{
Typ: pb.AuthenticationType_AUTHENTICATION_STORED_SPOTIFY_CREDENTIALS.Enum(),
Username: proto.String(username),
AuthData: data,
})
}
func (ap *Accesspoint) ConnectBlob(ctx context.Context, username string, encryptedBlob64 []byte) error {
encryptedBlob := make([]byte, base64.StdEncoding.DecodedLen(len(encryptedBlob64)))
if written, err := base64.StdEncoding.Decode(encryptedBlob, encryptedBlob64); err != nil {
return fmt.Errorf("failed decodeing encrypted blob: %w", err)
} else {
encryptedBlob = encryptedBlob[:written]
}
secret := sha1.Sum([]byte(ap.deviceId))
baseKey := pbkdf2.Key(secret[:], []byte(username), 256, 20, sha1.New)
key := make([]byte, 24)
copy(key, func() []byte { sum := sha1.Sum(baseKey); return sum[:] }())
binary.BigEndian.PutUint32(key[20:], 20)
bc, err := aes.NewCipher(key)
if err != nil {
return fmt.Errorf("failed initializing aes cihper: %w", err)
}
decryptedBlob := make([]byte, len(encryptedBlob))
for i := 0; i < len(encryptedBlob)-1; i += aes.BlockSize {
bc.Decrypt(decryptedBlob[i:], encryptedBlob[i:])
}
for i := 0; i < len(decryptedBlob)-16; i++ {
decryptedBlob[len(decryptedBlob)-i-1] ^= decryptedBlob[len(decryptedBlob)-i-17]
}
blob := bytes.NewReader(decryptedBlob)
// discard first byte
_, _ = blob.Seek(1, io.SeekCurrent)
// discard some more bytes
discardLen, _ := binary.ReadUvarint(blob)
_, _ = blob.Seek(int64(discardLen), io.SeekCurrent)
// discard another byte
_, _ = blob.Seek(1, io.SeekCurrent)
// read authentication type
authTyp, _ := binary.ReadUvarint(blob)
// discard another byte
_, _ = blob.Seek(1, io.SeekCurrent)
// read auth data
authDataLen, _ := binary.ReadUvarint(blob)
authData := make([]byte, authDataLen)
_, _ = blob.Read(authData)
return ap.Connect(ctx, &pb.LoginCredentials{
Typ: pb.AuthenticationType(authTyp).Enum(),
Username: proto.String(username),
AuthData: authData,
})
}
func (ap *Accesspoint) Connect(ctx context.Context, creds *pb.LoginCredentials) error {
ap.connMu.Lock()
defer ap.connMu.Unlock()
return ap.connect(ctx, creds)
}
func (ap *Accesspoint) connect(ctx context.Context, creds *pb.LoginCredentials) error {
ap.recvLoopStop = make(chan struct{}, 1)
ap.pongAckTickerStop = make(chan struct{}, 1)
if err := ap.init(ctx); err != nil {
return err
}
if deadline, ok := ctx.Deadline(); ok {
_ = ap.conn.SetDeadline(deadline)
defer func() { _ = ap.conn.SetDeadline(time.Time{}) }()
}
// perform key exchange with diffiehellman
exchangeData, err := ap.performKeyExchange()
if err != nil {
return fmt.Errorf("failed performing keyexchange: %w", err)
}
// solve challenge and complete connection
if err := ap.solveChallenge(exchangeData); err != nil {
return fmt.Errorf("failed solving challenge: %w", err)
}
// do authentication with credentials
if err := ap.authenticate(ctx, creds); err != nil {
return fmt.Errorf("failed authenticating: %w", err)
}
return nil
}
func (ap *Accesspoint) Close() {
ap.connMu.Lock()
defer ap.connMu.Unlock()
ap.stop = true
if ap.conn == nil {
return
}
ap.recvLoopStop <- struct{}{}
ap.pongAckTickerStop <- struct{}{}
_ = ap.conn.Close()
}
func (ap *Accesspoint) Send(ctx context.Context, pktType PacketType, payload []byte) error {
ap.connMu.RLock()
defer ap.connMu.RUnlock()
return ap.encConn.sendPacket(ctx, pktType, payload)
}
func (ap *Accesspoint) Receive(types ...PacketType) <-chan Packet {
ch := make(chan Packet)
ap.recvChansLock.Lock()
for _, type_ := range types {
ll, _ := ap.recvChans[type_]
ll = append(ll, ch)
ap.recvChans[type_] = ll
}
ap.recvChansLock.Unlock()
// start the recv loop if necessary
ap.startReceiving()
return ch
}
func (ap *Accesspoint) startReceiving() {
ap.recvLoopOnce.Do(func() {
ap.log.Tracef("starting accesspoint recv loop")
go ap.recvLoop()
// set last ping in the future
ap.lastPongAck = time.Now().Add(pongAckInterval)
go ap.pongAckTicker()
})
}
func (ap *Accesspoint) recvLoop() {
loop:
for {
select {
case <-ap.recvLoopStop:
break loop
default:
// no need to hold the connMu since reconnection happens in this routine
pkt, payload, err := ap.encConn.receivePacket(context.TODO())
if err != nil {
if !ap.stop {
ap.log.WithError(err).Errorf("failed receiving packet")
}
break loop
}
switch pkt {
case PacketTypePing:
ap.log.Tracef("received accesspoint ping")
if err := ap.encConn.sendPacket(context.TODO(), PacketTypePong, payload); err != nil {
ap.log.WithError(err).Errorf("failed sending Pong packet")
break loop
}
case PacketTypePongAck:
ap.log.Tracef("received accesspoint pong ack")
ap.lastPongAckLock.Lock()
ap.lastPongAck = time.Now()
ap.lastPongAckLock.Unlock()
continue
default:
ap.recvChansLock.RLock()
ll, _ := ap.recvChans[pkt]
ap.recvChansLock.RUnlock()
handled := false
for _, ch := range ll {
ch <- Packet{Type: pkt, Payload: payload}
handled = true
}
if !handled {
ap.log.Debugf("skipping packet %v, len: %d", pkt, len(payload))
}
}
}
}
// always close as we might end up here because of application errors
_ = ap.conn.Close()
// if we shouldn't stop, try to reconnect
if !ap.stop {
ap.connMu.Lock()
if err := backoff.Retry(ap.reconnect, backoff.NewExponentialBackOff()); err != nil {
ap.log.WithError(err).Errorf("failed reconnecting accesspoint")
ap.connMu.Unlock()
// something went very wrong, give up
ap.Close()
}
ap.connMu.Unlock()
// reconnection was successful, do not close receivers
return
}
ap.recvChansLock.RLock()
defer ap.recvChansLock.RUnlock()
var closedChannels []chan Packet
for _, ll := range ap.recvChans {
for _, ch := range ll {
// call close on each channel only once
if !slices.Contains(closedChannels, ch) {
closedChannels = append(closedChannels, ch)
close(ch)
}
}
}
}
func (ap *Accesspoint) pongAckTicker() {
ticker := time.NewTicker(pongAckInterval)
loop:
for {
select {
case <-ap.pongAckTickerStop:
break loop
case <-ticker.C:
ap.lastPongAckLock.Lock()
timePassed := time.Since(ap.lastPongAck)
ap.lastPongAckLock.Unlock()
if timePassed > pongAckInterval {
ap.log.Errorf("did not receive last pong ack from accesspoint, %.0fs passed", timePassed.Seconds())
// closing the connection should make the read on the "recvLoop" fail,
// continue hoping for a new connection
_ = ap.conn.Close()
continue
}
}
}
ticker.Stop()
}
func (ap *Accesspoint) reconnect() (err error) {
if ap.welcome == nil {
return backoff.Permanent(fmt.Errorf("cannot reconnect without APWelcome"))
}
if err = ap.connect(context.TODO(), &pb.LoginCredentials{
Typ: ap.welcome.ReusableAuthCredentialsType,
Username: ap.welcome.CanonicalUsername,
AuthData: ap.welcome.ReusableAuthCredentials,
}); err != nil {
return err
}
// if we are here the "recvLoop" has already died, restart it
go ap.recvLoop()
ap.log.Debugf("re-established accesspoint connection")
return nil
}
func (ap *Accesspoint) performKeyExchange() ([]byte, error) {
// accumulate transferred data for challenge
cc := &connAccumulator{Conn: ap.conn}
var productFlags []pb.ProductFlags
if librespot.VersionNumberString() == "dev" {
productFlags = []pb.ProductFlags{pb.ProductFlags_PRODUCT_FLAG_DEV_BUILD}
} else {
productFlags = []pb.ProductFlags{pb.ProductFlags_PRODUCT_FLAG_NONE}
}
// send ClientHello message
if err := writeMessage(cc, true, &pb.ClientHello{
BuildInfo: &pb.BuildInfo{
Product: pb.Product_PRODUCT_CLIENT.Enum(),
ProductFlags: productFlags,
Platform: librespot.GetPlatform().Enum(),
Version: proto.Uint64(librespot.SpotifyVersionCode),
},
CryptosuitesSupported: []pb.Cryptosuite{pb.Cryptosuite_CRYPTO_SUITE_SHANNON},
ClientNonce: ap.nonce,
Padding: []byte{0x1e},
LoginCryptoHello: &pb.LoginCryptoHelloUnion{
DiffieHellman: &pb.LoginCryptoDiffieHellmanHello{
Gc: ap.dh.PublicKeyBytes(),
ServerKeysKnown: proto.Uint32(1),
},
},
}); err != nil {
return nil, fmt.Errorf("failed writing ClientHello message: %w", err)
}
// receive APResponseMessage message
var apResponse pb.APResponseMessage
if err := readMessage(cc, -1, &apResponse); err != nil {
return nil, fmt.Errorf("failed reading APResponseMessage message: %w", err)
}
// verify signature
if !verifySignature(apResponse.Challenge.LoginCryptoChallenge.DiffieHellman.Gs, apResponse.Challenge.LoginCryptoChallenge.DiffieHellman.GsSignature) {
return nil, fmt.Errorf("failed verifying signature")
}
// exchange keys and compute shared secret
ap.dh.Exchange(apResponse.Challenge.LoginCryptoChallenge.DiffieHellman.Gs)
ap.log.Debugf("completed keyexchange")
return cc.Dump(), nil
}
func (ap *Accesspoint) solveChallenge(exchangeData []byte) error {
macData := make([]byte, 0, sha1.Size*5)
mac := hmac.New(sha1.New, ap.dh.SharedSecretBytes())
for i := byte(1); i < 6; i++ {
mac.Reset()
mac.Write(exchangeData)
mac.Write([]byte{i})
macData = mac.Sum(macData)
}
mac = hmac.New(sha1.New, macData[:20])
mac.Write(exchangeData)
if err := writeMessage(ap.conn, false, &pb.ClientResponsePlaintext{
PowResponse: &pb.PoWResponseUnion{},
CryptoResponse: &pb.CryptoResponseUnion{},
LoginCryptoResponse: &pb.LoginCryptoResponseUnion{
DiffieHellman: &pb.LoginCryptoDiffieHellmanResponse{
Hmac: mac.Sum(nil),
},
},
}); err != nil {
return fmt.Errorf("failed writing ClientResponsePlaintext message: %w", err)
}
// we are not sure if the challenge is actually completed, we check it in authenticate
ap.encConn = newShannonConn(ap.conn, macData[20:52], macData[52:84])
ap.log.Debug("completed challenge")
return nil
}
func (ap *Accesspoint) authenticate(ctx context.Context, credentials *pb.LoginCredentials) error {
if ap.encConn == nil {
panic("accesspoint not connected")
}
// assemble ClientResponseEncrypted message
payload, err := proto.Marshal(&pb.ClientResponseEncrypted{
LoginCredentials: credentials,
VersionString: proto.String(librespot.VersionString()),
SystemInfo: &pb.SystemInfo{
Os: librespot.GetOS().Enum(),
CpuFamily: librespot.GetCpuFamily().Enum(),
SystemInformationString: proto.String(librespot.SystemInfoString()),
DeviceId: proto.String(ap.deviceId),
},
})
if err != nil {
return fmt.Errorf("failed marshalling ClientResponseEncrypted message: %w", err)
}
// send Login packet
if err := ap.encConn.sendPacket(ctx, PacketTypeLogin, payload); err != nil {
return fmt.Errorf("failed sending Login packet: %w", err)
}
// check if we received an APResponseMessage from the challenge
var challengeResp pb.APResponseMessage
if peekBytes, err := ap.encConn.peekUnencrypted(9); err != nil {
return fmt.Errorf("failed peeking unencrypted bytes: %w", err)
} else if err = readMessage(bytes.NewReader(peekBytes), 9, &challengeResp); err == nil {
return &AccesspointLoginError{Message: challengeResp.LoginFailed}
}
// receive APWelcome or AuthFailure
recvPkt, recvPayload, err := ap.encConn.receivePacket(ctx)
if err != nil {
return fmt.Errorf("failed recevining Login response packet: %w", err)
}
if recvPkt == PacketTypeAPWelcome {
var welcome pb.APWelcome
if err := proto.Unmarshal(recvPayload, &welcome); err != nil {
return fmt.Errorf("failed unmarshalling APWelcome message: %w", err)
}
ap.welcome = &welcome
ap.log.Infof("authenticated AP as %s", *welcome.CanonicalUsername)
return nil
} else if recvPkt == PacketTypeAuthFailure {
var loginFailed pb.APLoginFailed
if err := proto.Unmarshal(recvPayload, &loginFailed); err != nil {
return fmt.Errorf("failed unmarshalling APLoginFailed message: %w", err)
}
return &AccesspointLoginError{Message: &loginFailed}
} else {
return fmt.Errorf("unexpected command after Login packet: %x", recvPkt)
}
}
func (ap *Accesspoint) Username() string {
ap.connMu.RLock()
defer ap.connMu.RUnlock()
if ap.welcome == nil {
panic("accesspoint not authenticated")
}
return *ap.welcome.CanonicalUsername
}
func (ap *Accesspoint) StoredCredentials() []byte {
ap.connMu.RLock()
defer ap.connMu.RUnlock()
if ap.welcome == nil {
panic("accesspoint not authenticated")
}
return ap.welcome.ReusableAuthCredentials
}