-
Notifications
You must be signed in to change notification settings - Fork 48
/
pairing.ts
207 lines (184 loc) · 6.76 KB
/
pairing.ts
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
import * as srp from 'fast-srp-hap';
import { v4 as uuid } from 'uuid';
import { load } from 'protobufjs';
import * as path from 'path';
import * as crypto from 'crypto';
import * as ed25519 from 'ed25519';
import { AppleTV } from './appletv';
import { Credentials } from './credentials';
import { Message } from './message';
import tlv from './util/tlv';
import enc from './util/encryption';
export class Pairing {
private srp: srp.Client;
private key: Buffer = crypto.randomBytes(32);
private publicKey: Buffer;
private proof: Buffer;
private deviceSalt: Buffer;
private devicePublicKey: Buffer;
private deviceProof: Buffer;
constructor(public device: AppleTV) {
}
/**
* Initiates the pairing process
* @returns A promise that resolves to a callback which takes in the pairing pin from the Apple TV.
*/
initiatePair(): Promise<(pin: string) => Promise<AppleTV>> {
let that = this;
let tlvData = tlv.encode(
tlv.Tag.PairingMethod, 0x00,
tlv.Tag.Sequence, 0x01,
);
let message = {
status: 0,
isUsingSystemPairing: true,
isRetrying: true,
state: 2,
pairingData: tlvData
};
return this.device
.sendMessage('CryptoPairingMessage', 'CryptoPairingMessage', message, false)
.then(() => {
return that.waitForSequence(0x02);
})
.then(message => {
let pairingData = message.payload.pairingData;
let tlvData = tlv.decode(pairingData);
if (tlvData[tlv.Tag.BackOff]) {
let backOff: Buffer = tlvData[tlv.Tag.BackOff];
let seconds = backOff.readIntBE(0, backOff.byteLength);
if (seconds > 0) {
throw new Error("You've attempt to pair too recently. Try again in " + seconds + " seconds.");
}
}
if (tlvData[tlv.Tag.ErrorCode]) {
let buffer: Buffer = tlvData[tlv.Tag.ErrorCode];
throw new Error(that.device.name + " responded with error code " + buffer.readIntBE(0, buffer.byteLength) + ". Try rebooting your Apple TV.");
}
that.deviceSalt = tlvData[tlv.Tag.Salt];
that.devicePublicKey = tlvData[tlv.Tag.PublicKey];
if (that.deviceSalt.byteLength != 16) {
throw new Error(`salt must be 16 bytes (but was ${that.deviceSalt.byteLength})`);
}
if (that.devicePublicKey.byteLength !== 384) {
throw new Error(`serverPublicKey must be 384 bytes (but was ${that.devicePublicKey.byteLength})`);
}
return Promise.resolve((pin: string) => {
return that.completePairing(pin);
});
});
}
private completePairing(pin: string): Promise<AppleTV> {
this.srp = srp.Client(
srp.params['3072'],
this.deviceSalt,
Buffer.from('Pair-Setup'),
Buffer.from(pin),
this.key
);
this.srp.setB(this.devicePublicKey);
this.publicKey = this.srp.computeA();
this.proof = this.srp.computeM1();
// console.log("DEBUG: Client Public Key=" + this.publicKey.toString('hex') + "\nProof=" + this.proof.toString('hex'));
let that = this;
let tlvData = tlv.encode(
tlv.Tag.Sequence, 0x03,
tlv.Tag.PublicKey, that.publicKey,
tlv.Tag.Proof, that.proof
);
let message = {
status: 0,
pairingData: tlvData
};
return this.device
.sendMessage('CryptoPairingMessage', 'CryptoPairingMessage', message, false)
.then(() => {
return that.waitForSequence(0x04);
})
.then(message => {
let pairingData = message.payload.pairingData;
that.deviceProof = tlv.decode(pairingData)[tlv.Tag.Proof];
// console.log("DEBUG: Device Proof=" + that.deviceProof.toString('hex'));
that.srp.checkM2(that.deviceProof);
let seed = crypto.randomBytes(32);
let keyPair = ed25519.MakeKeypair(seed);
let privateKey = keyPair.privateKey;
let publicKey = keyPair.publicKey;
let sharedSecret = that.srp.computeK();
let deviceHash = enc.HKDF(
"sha512",
Buffer.from("Pair-Setup-Controller-Sign-Salt"),
sharedSecret,
Buffer.from("Pair-Setup-Controller-Sign-Info"),
32
);
let deviceInfo = Buffer.concat([deviceHash, Buffer.from(that.device.pairingId), publicKey]);
let deviceSignature = ed25519.Sign(deviceInfo, privateKey);
let encryptionKey = enc.HKDF(
"sha512",
Buffer.from("Pair-Setup-Encrypt-Salt"),
sharedSecret,
Buffer.from("Pair-Setup-Encrypt-Info"),
32
);
let tlvData = tlv.encode(
tlv.Tag.Username, Buffer.from(that.device.pairingId),
tlv.Tag.PublicKey, publicKey,
tlv.Tag.Signature, deviceSignature
);
let encryptedTLV = Buffer.concat(enc.encryptAndSeal(tlvData, null, Buffer.from('PS-Msg05'), encryptionKey));
// console.log("DEBUG: Encrypted Data=" + encryptedTLV.toString('hex'));
let outerTLV = tlv.encode(
tlv.Tag.Sequence, 0x05,
tlv.Tag.EncryptedData, encryptedTLV
);
let nextMessage = {
status: 0,
pairingData: outerTLV
};
return that.device
.sendMessage('CryptoPairingMessage', 'CryptoPairingMessage', nextMessage, false)
.then(() => {
return that.waitForSequence(0x06);
})
.then(message => {
let encryptedData = tlv.decode(message.payload.pairingData)[tlv.Tag.EncryptedData];
let cipherText = encryptedData.slice(0, -16);
let hmac = encryptedData.slice(-16);
let decrpytedData = enc.verifyAndDecrypt(cipherText, hmac, null, Buffer.from('PS-Msg06'), encryptionKey);
let tlvData = tlv.decode(decrpytedData);
that.device.credentials = new Credentials(
that.device.uid,
tlvData[tlv.Tag.Username],
that.device.pairingId,
tlvData[tlv.Tag.PublicKey],
seed
);
return that.device;
});
});
}
private waitForSequence(sequence: number, timeout: number = 3): Promise<Message> {
let that = this;
let handler = (message: Message, resolve: any) => {
let tlvData = tlv.decode(message.payload.pairingData);
if (Buffer.from([sequence]).equals(tlvData[tlv.Tag.Sequence])) {
resolve(message);
}
};
return new Promise<Message>((resolve, reject) => {
that.device.on('message', (message: Message) => {
if (message.type == Message.Type.CryptoPairingMessage) {
handler(message, resolve);
}
});
setTimeout(() => {
reject(new Error("Timed out waiting for crypto sequence " + sequence));
}, timeout * 1000);
})
.then(value => {
that.device.removeListener('message', handler);
return value;
});
}
}