2013-10-25 15:19:00 +00:00
|
|
|
/*
|
2013-12-20 19:25:49 +00:00
|
|
|
* This is the source code of Telegram for Android v. 1.3.2.
|
2013-10-25 15:19:00 +00:00
|
|
|
* It is licensed under GNU GPL v. 2 or later.
|
|
|
|
* You should have received a copy of the license in this archive (see LICENSE).
|
|
|
|
*
|
|
|
|
* Copyright Nikolai Kudashov, 2013.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package org.telegram.messenger;
|
|
|
|
|
|
|
|
import java.math.BigInteger;
|
|
|
|
import java.nio.ByteBuffer;
|
2014-02-28 22:28:25 +00:00
|
|
|
import java.nio.ByteOrder;
|
2013-10-25 15:19:00 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Locale;
|
|
|
|
|
|
|
|
public class HandshakeAction extends Action implements TcpConnection.TcpConnectionDelegate {
|
|
|
|
|
|
|
|
private ArrayList<Long> processedMessageIds;
|
|
|
|
|
|
|
|
private byte[] authNonce;
|
|
|
|
private byte[] authServerNonce;
|
|
|
|
private byte[] authNewNonce;
|
|
|
|
|
|
|
|
private byte[] authKey;
|
2014-02-28 22:28:25 +00:00
|
|
|
private long authKeyId;
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
private boolean processedPQRes;
|
|
|
|
|
|
|
|
private byte[] reqPQMsgData;
|
|
|
|
private byte[] reqDHMsgData;
|
|
|
|
private byte[] setClientDHParamsMsgData;
|
|
|
|
private boolean wasDisconnect = false;
|
|
|
|
|
|
|
|
private long lastOutgoingMessageId;
|
|
|
|
|
|
|
|
int timeDifference;
|
|
|
|
ServerSalt serverSalt;
|
|
|
|
public Datacenter datacenter;
|
|
|
|
|
|
|
|
public HandshakeAction(Datacenter datacenter) {
|
|
|
|
this.datacenter = datacenter;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void execute(HashMap params) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.d("tmessages", String.format(Locale.US, "Begin handshake with DC%d", datacenter.datacenterId));
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void beginHandshake(boolean dropConnection) {
|
|
|
|
if (datacenter.connection == null) {
|
2013-12-20 19:25:49 +00:00
|
|
|
datacenter.connection = new TcpConnection(datacenter.datacenterId);
|
2013-10-25 15:19:00 +00:00
|
|
|
datacenter.connection.delegate = this;
|
|
|
|
datacenter.connection.transportRequestClass = RPCRequest.RPCRequestClassGeneric;
|
|
|
|
}
|
|
|
|
|
|
|
|
processedMessageIds = new ArrayList<Long>();
|
|
|
|
authNonce = null;
|
|
|
|
authServerNonce = null;
|
|
|
|
authNewNonce = null;
|
|
|
|
authKey = null;
|
2014-02-28 22:28:25 +00:00
|
|
|
authKeyId = 0;
|
2013-10-25 15:19:00 +00:00
|
|
|
processedPQRes = false;
|
|
|
|
reqPQMsgData = null;
|
|
|
|
reqDHMsgData = null;
|
|
|
|
setClientDHParamsMsgData = null;
|
|
|
|
|
|
|
|
if (dropConnection) {
|
|
|
|
datacenter.connection.suspendConnection(true);
|
|
|
|
datacenter.connection.connect();
|
|
|
|
}
|
|
|
|
|
|
|
|
TLRPC.TL_req_pq reqPq = new TLRPC.TL_req_pq();
|
|
|
|
byte[] nonceBytes = new byte[16];
|
2014-05-16 23:05:49 +00:00
|
|
|
Utilities.random.nextBytes(nonceBytes);
|
2013-10-25 15:19:00 +00:00
|
|
|
authNonce = reqPq.nonce = nonceBytes;
|
|
|
|
reqPQMsgData = sendMessageData(reqPq, generateMessageId());
|
|
|
|
}
|
|
|
|
|
|
|
|
final Integer lock = 1;
|
|
|
|
static ArrayList<HashMap<String, Object>> serverPublicKeys = null;
|
|
|
|
HashMap<String, Object> selectPublicKey(ArrayList<Long> fingerprints) {
|
|
|
|
synchronized (lock) {
|
|
|
|
if (serverPublicKeys == null) {
|
|
|
|
serverPublicKeys = new ArrayList<HashMap<String, Object>>();
|
|
|
|
HashMap<String, Object> map;
|
|
|
|
|
|
|
|
map = new HashMap<String, Object>();
|
|
|
|
map.put("key", new BigInteger[]{
|
|
|
|
new BigInteger("c150023e2f70db7985ded064759cfecf0af328e69a41daf4d6f01b538135" +
|
|
|
|
"a6f91f8f8b2a0ec9ba9720ce352efcf6c5680ffc424bd634864902de0b4bd6d49f4e580230e" +
|
|
|
|
"3ae97d95c8b19442b3c0a10d8f5633fecedd6926a7f6dab0ddb7d457f9ea81b8465fcd6fffe" +
|
|
|
|
"ed114011df91c059caedaf97625f6c96ecc74725556934ef781d866b34f011fce4d835a0901" +
|
|
|
|
"96e9a5f0e4449af7eb697ddb9076494ca5f81104a305b6dd27665722c46b60e5df680fb16b2" +
|
|
|
|
"10607ef217652e60236c255f6a28315f4083a96791d7214bf64c1df4fd0db1944fb26a2a570" +
|
|
|
|
"31b32eee64ad15a8ba68885cde74a5bfc920f6abf59ba5c75506373e7130f9042da922179251f", 16),
|
|
|
|
new BigInteger("010001", 16)});
|
|
|
|
map.put("fingerprint", 0xc3b42b026ce86b21L);
|
|
|
|
serverPublicKeys.add(map);
|
2013-12-26 11:43:37 +00:00
|
|
|
|
|
|
|
map = new HashMap<String, Object>();
|
|
|
|
map.put("key", new BigInteger[]{
|
|
|
|
new BigInteger("c6aeda78b02a251db4b6441031f467fa871faed32526c436524b1fb3b5dc" +
|
|
|
|
"a28efb8c089dd1b46d92c895993d87108254951c5f001a0f055f3063dcd14d431a300eb9e29" +
|
|
|
|
"517e359a1c9537e5e87ab1b116faecf5d17546ebc21db234d9d336a693efcb2b6fbcca1e7d1" +
|
|
|
|
"a0be414dca408a11609b9c4269a920b09fed1f9a1597be02761430f09e4bc48fcafbe289054" +
|
|
|
|
"c99dba51b6b5eb7d9c3a2ab4e490545b4676bd620e93804bcac93bf94f73f92c729ca899477" +
|
|
|
|
"ff17625ef14a934d51dc11d5f8650a3364586b3a52fcff2fedec8a8406cac4e751705a472e5" +
|
|
|
|
"5707e3c8cd5594342b119c6c3293532d85dbe9271ed54a2fd18b4dc79c04a30951107d5639397", 16),
|
|
|
|
new BigInteger("010001", 16)});
|
|
|
|
map.put("fingerprint", 0x9a996a1db11c729bL);
|
|
|
|
serverPublicKeys.add(map);
|
|
|
|
|
|
|
|
map = new HashMap<String, Object>();
|
|
|
|
map.put("key", new BigInteger[]{
|
|
|
|
new BigInteger("b1066749655935f0a5936f517034c943bea7f3365a8931ae52c8bcb14856" +
|
|
|
|
"f004b83d26cf2839be0f22607470d67481771c1ce5ec31de16b20bbaa4ecd2f7d2ecf6b6356" +
|
|
|
|
"f27501c226984263edc046b89fb6d3981546b01d7bd34fedcfcc1058e2d494bda732ff813e5" +
|
|
|
|
"0e1c6ae249890b225f82b22b1e55fcb063dc3c0e18e91c28d0c4aa627dec8353eee6038a95a" +
|
|
|
|
"4fd1ca984eb09f94aeb7a2220635a8ceb450ea7e61d915cdb4eecedaa083aa3801daf071855" +
|
|
|
|
"ec1fb38516cb6c2996d2d60c0ecbcfa57e4cf1fb0ed39b2f37e94ab4202ecf595e167b3ca62" +
|
|
|
|
"669a6da520859fb6d6c6203dfdfc79c75ec3ee97da8774b2da903e3435f2cd294670a75a526c1", 16),
|
|
|
|
new BigInteger("010001", 16)});
|
|
|
|
map.put("fingerprint", 0xb05b2a6f70cdea78L);
|
|
|
|
serverPublicKeys.add(map);
|
|
|
|
|
|
|
|
map = new HashMap<String, Object>();
|
|
|
|
map.put("key", new BigInteger[]{
|
|
|
|
new BigInteger("c2a8c55b4a62e2b78a19b91cf692bcdc4ba7c23fe4d06f194e2a0c30f6d9" +
|
|
|
|
"996f7d1a2bcc89bc1ac4333d44359a6c433252d1a8402d9970378b5912b75bc8cc3fa76710a" +
|
|
|
|
"025bcb9032df0b87d7607cc53b928712a174ea2a80a8176623588119d42ffce40205c6d7216" +
|
|
|
|
"0860d8d80b22a8b8651907cf388effbef29cd7cf2b4eb8a872052da1351cfe7fec214ce4830" +
|
|
|
|
"4ea472bd66329d60115b3420d08f6894b0410b6ab9450249967617670c932f7cbdb5d6fbcce" +
|
|
|
|
"1e492c595f483109999b2661fcdeec31b196429b7834c7211a93c6789d9ee601c18c39e521f" +
|
|
|
|
"da9d7264e61e518add6f0712d2d5228204b851e13c4f322e5c5431c3b7f31089668486aadc59f", 16),
|
|
|
|
new BigInteger("010001", 16)});
|
|
|
|
map.put("fingerprint", 0x71e025b6c76033e3L);
|
|
|
|
serverPublicKeys.add(map);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (HashMap<String, Object> keyDesc : serverPublicKeys) {
|
|
|
|
long keyFingerprint = (Long)keyDesc.get("fingerprint");
|
|
|
|
for (long nFingerprint : fingerprints) {
|
|
|
|
if (nFingerprint == keyFingerprint) {
|
|
|
|
return keyDesc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
long generateMessageId() {
|
|
|
|
long messageId = (long)((((double)System.currentTimeMillis()) * 4294967296.0) / 1000.0);
|
|
|
|
if (messageId <= lastOutgoingMessageId) {
|
|
|
|
messageId = lastOutgoingMessageId + 1;
|
|
|
|
}
|
|
|
|
while (messageId % 4 != 0) {
|
|
|
|
messageId++;
|
|
|
|
}
|
|
|
|
|
|
|
|
lastOutgoingMessageId = messageId;
|
|
|
|
return messageId;
|
|
|
|
}
|
|
|
|
|
|
|
|
byte[] sendMessageData(TLObject message, long messageId) {
|
|
|
|
byte[] messageData;
|
|
|
|
SerializedData innerOs = new SerializedData();
|
|
|
|
message.serializeToStream(innerOs);
|
|
|
|
messageData = innerOs.toByteArray();
|
|
|
|
|
|
|
|
SerializedData messageOs = new SerializedData();
|
|
|
|
messageOs.writeInt64(0);
|
|
|
|
messageOs.writeInt64(messageId);
|
|
|
|
messageOs.writeInt32(messageData.length);
|
|
|
|
messageOs.writeRaw(messageData);
|
|
|
|
|
|
|
|
byte[] transportData = messageOs.toByteArray();
|
|
|
|
|
2014-04-03 21:18:54 +00:00
|
|
|
datacenter.connection.sendData(transportData, null, false, false);
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
return transportData;
|
|
|
|
}
|
|
|
|
|
|
|
|
void processMessage(TLObject message, long messageId) {
|
|
|
|
if (message instanceof TLRPC.TL_resPQ) {
|
|
|
|
if (processedPQRes) {
|
|
|
|
TLRPC.TL_msgs_ack msgsAck = new TLRPC.TL_msgs_ack();
|
|
|
|
msgsAck.msg_ids = new ArrayList<Long>();
|
|
|
|
msgsAck.msg_ids.add(messageId);
|
|
|
|
sendMessageData(msgsAck, generateMessageId());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
processedPQRes = true;
|
|
|
|
final TLRPC.TL_resPQ resPq = (TLRPC.TL_resPQ)message;
|
|
|
|
if (Arrays.equals(authNonce, resPq.nonce)) {
|
|
|
|
final HashMap<String, Object> publicKey = selectPublicKey(resPq.server_public_key_fingerprints);
|
|
|
|
if (publicKey == null) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Couldn't find valid server public key");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
authServerNonce = resPq.server_nonce;
|
|
|
|
|
|
|
|
ByteBuffer data = ByteBuffer.wrap(resPq.pq);
|
|
|
|
final long pqf = data.getLong();
|
|
|
|
final long messageIdf = messageId;
|
|
|
|
Utilities.globalQueue.postRunnable(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2013-12-22 23:47:35 +00:00
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
final Utilities.TPFactorizedValue factorizedPq = Utilities.getFactorizedValue(pqf);
|
|
|
|
|
|
|
|
Utilities.stageQueue.postRunnable(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
ByteBuffer pBytes = ByteBuffer.allocate(4);
|
|
|
|
pBytes.putInt((int)factorizedPq.p);
|
|
|
|
byte[] pData = pBytes.array();
|
|
|
|
|
|
|
|
ByteBuffer qBytes = ByteBuffer.allocate(4);
|
|
|
|
qBytes.putInt((int)factorizedPq.q);
|
|
|
|
byte[] qData = qBytes.array();
|
|
|
|
|
|
|
|
TLRPC.TL_req_DH_params reqDH = new TLRPC.TL_req_DH_params();
|
|
|
|
reqDH.nonce = authNonce;
|
|
|
|
reqDH.server_nonce = authServerNonce;
|
|
|
|
reqDH.p = pData;
|
|
|
|
reqDH.q = qData;
|
|
|
|
reqDH.public_key_fingerprint = (Long)publicKey.get("fingerprint");
|
|
|
|
|
|
|
|
SerializedData os = new SerializedData();
|
|
|
|
|
|
|
|
TLRPC.TL_p_q_inner_data innerData = new TLRPC.TL_p_q_inner_data();
|
|
|
|
innerData.nonce = authNonce;
|
|
|
|
innerData.server_nonce = authServerNonce;
|
|
|
|
innerData.pq = resPq.pq;
|
|
|
|
innerData.p = reqDH.p;
|
|
|
|
innerData.q = reqDH.q;
|
|
|
|
|
|
|
|
byte[] nonceBytes = new byte[32];
|
2014-05-16 23:05:49 +00:00
|
|
|
Utilities.random.nextBytes(nonceBytes);
|
2013-10-25 15:19:00 +00:00
|
|
|
innerData.new_nonce = authNewNonce = nonceBytes;
|
|
|
|
innerData.serializeToStream(os);
|
|
|
|
|
|
|
|
byte[] innerDataBytes = os.toByteArray();
|
|
|
|
|
|
|
|
SerializedData dataWithHash = new SerializedData();
|
|
|
|
dataWithHash.writeRaw(Utilities.computeSHA1(innerDataBytes));
|
|
|
|
dataWithHash.writeRaw(innerDataBytes);
|
2013-12-20 19:25:49 +00:00
|
|
|
byte[] b = new byte[1];
|
2013-10-25 15:19:00 +00:00
|
|
|
while (dataWithHash.length() < 255) {
|
2014-05-16 23:05:49 +00:00
|
|
|
Utilities.random.nextBytes(b);
|
2013-12-20 19:25:49 +00:00
|
|
|
dataWithHash.writeByte(b[0]);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
byte[] encryptedBytes = Utilities.encryptWithRSA((BigInteger[])publicKey.get("key"), dataWithHash.toByteArray());
|
|
|
|
SerializedData encryptedData = new SerializedData();
|
|
|
|
encryptedData.writeRaw(encryptedBytes);
|
|
|
|
if (encryptedData.length() < 256) {
|
|
|
|
SerializedData newEncryptedData = new SerializedData();
|
|
|
|
for (int i = 0; i < 256 - encryptedData.length(); i++) {
|
|
|
|
newEncryptedData.writeByte(0);
|
|
|
|
}
|
|
|
|
newEncryptedData.writeRaw(encryptedData.toByteArray());
|
|
|
|
encryptedData = newEncryptedData;
|
|
|
|
}
|
|
|
|
reqDH.encrypted_data = encryptedData.toByteArray();
|
|
|
|
|
|
|
|
TLRPC.TL_msgs_ack msgsAck = new TLRPC.TL_msgs_ack();
|
|
|
|
msgsAck.msg_ids = new ArrayList<Long>();
|
|
|
|
msgsAck.msg_ids.add(messageIdf);
|
|
|
|
sendMessageData(msgsAck, generateMessageId());
|
|
|
|
|
|
|
|
reqPQMsgData = null;
|
|
|
|
reqDHMsgData = sendMessageData(reqDH, generateMessageId());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Error: invalid handshake nonce");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
}
|
|
|
|
} else if (message instanceof TLRPC.Server_DH_Params) {
|
|
|
|
if (message instanceof TLRPC.TL_server_DH_params_ok) {
|
|
|
|
TLRPC.TL_server_DH_params_ok serverDhParams = (TLRPC.TL_server_DH_params_ok)message;
|
|
|
|
|
|
|
|
SerializedData tmpAesKey = new SerializedData();
|
|
|
|
|
|
|
|
SerializedData newNonceAndServerNonce = new SerializedData();
|
|
|
|
newNonceAndServerNonce.writeRaw(authNewNonce);
|
|
|
|
newNonceAndServerNonce.writeRaw(authServerNonce);
|
|
|
|
|
|
|
|
SerializedData serverNonceAndNewNonce = new SerializedData();
|
|
|
|
serverNonceAndNewNonce.writeRaw(authServerNonce);
|
|
|
|
serverNonceAndNewNonce.writeRaw(authNewNonce);
|
|
|
|
tmpAesKey.writeRaw(Utilities.computeSHA1(newNonceAndServerNonce.toByteArray()));
|
|
|
|
|
|
|
|
byte[] serverNonceAndNewNonceHash = Utilities.computeSHA1(serverNonceAndNewNonce.toByteArray());
|
|
|
|
byte[] serverNonceAndNewNonceHash0_12 = new byte[12];
|
|
|
|
System.arraycopy(serverNonceAndNewNonceHash, 0, serverNonceAndNewNonceHash0_12, 0, 12);
|
|
|
|
|
|
|
|
tmpAesKey.writeRaw(serverNonceAndNewNonceHash0_12);
|
|
|
|
|
|
|
|
SerializedData tmpAesIv = new SerializedData();
|
|
|
|
|
|
|
|
byte[] serverNonceAndNewNonceHash12_8 = new byte[8];
|
|
|
|
System.arraycopy(serverNonceAndNewNonceHash, 12, serverNonceAndNewNonceHash12_8, 0, 8);
|
|
|
|
tmpAesIv.writeRaw(serverNonceAndNewNonceHash12_8);
|
|
|
|
|
|
|
|
SerializedData newNonceAndNewNonce = new SerializedData();
|
|
|
|
newNonceAndNewNonce.writeRaw(authNewNonce);
|
|
|
|
newNonceAndNewNonce.writeRaw(authNewNonce);
|
|
|
|
tmpAesIv.writeRaw(Utilities.computeSHA1(newNonceAndNewNonce.toByteArray()));
|
|
|
|
|
|
|
|
byte[] newNonce0_4 = new byte[4];
|
|
|
|
System.arraycopy(authNewNonce, 0, newNonce0_4, 0, 4);
|
|
|
|
tmpAesIv.writeRaw(newNonce0_4);
|
|
|
|
|
2014-02-28 22:28:25 +00:00
|
|
|
byte[] answerWithHash = Utilities.aesIgeEncryption(serverDhParams.encrypted_answer, tmpAesKey.toByteArray(), tmpAesIv.toByteArray(), false, false, 0);
|
2013-10-25 15:19:00 +00:00
|
|
|
byte[] answerHash = new byte[20];
|
|
|
|
System.arraycopy(answerWithHash, 0, answerHash, 0, 20);
|
|
|
|
|
|
|
|
byte[] answerData = new byte[answerWithHash.length - 20];
|
|
|
|
System.arraycopy(answerWithHash, 20, answerData, 0, answerWithHash.length - 20);
|
|
|
|
boolean hashVerified = false;
|
|
|
|
for (int i = 0; i < 16; i++) {
|
|
|
|
byte[] computedAnswerHash = Utilities.computeSHA1(answerData);
|
|
|
|
if (Arrays.equals(computedAnswerHash, answerHash)) {
|
|
|
|
hashVerified = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
byte[] answerData2 = new byte[answerData.length - 1];
|
|
|
|
System.arraycopy(answerData, 0, answerData2, 0, answerData.length - 1);
|
|
|
|
answerData = answerData2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!hashVerified) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Couldn't decode DH params");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SerializedData answerIs = new SerializedData(answerData);
|
|
|
|
int constructor = answerIs.readInt32();
|
|
|
|
TLRPC.TL_server_DH_inner_data dhInnerData = (TLRPC.TL_server_DH_inner_data)TLClassStore.Instance().TLdeserialize(answerIs, constructor);
|
|
|
|
|
|
|
|
if (!(dhInnerData instanceof TLRPC.TL_server_DH_inner_data)) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Couldn't parse decoded DH params");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-23 11:05:57 +00:00
|
|
|
if (!Utilities.isGoodPrime(dhInnerData.dh_prime, dhInnerData.g)) {
|
2013-12-22 23:47:35 +00:00
|
|
|
throw new RuntimeException("bad prime");
|
|
|
|
}
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
if (!Arrays.equals(authNonce, dhInnerData.nonce)) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Invalid DH nonce");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!Arrays.equals(authServerNonce, dhInnerData.server_nonce)) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Invalid DH server nonce");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
byte[] b = new byte[256];
|
2014-05-16 23:05:49 +00:00
|
|
|
Utilities.random.nextBytes(b);
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2013-12-23 11:05:57 +00:00
|
|
|
BigInteger p = new BigInteger(1, dhInnerData.dh_prime);
|
|
|
|
BigInteger g_a = new BigInteger(1, dhInnerData.g_a);
|
2013-12-23 11:54:31 +00:00
|
|
|
if (!Utilities.isGoodGaAndGb(g_a, p)) {
|
2013-12-23 11:05:57 +00:00
|
|
|
throw new RuntimeException("bad prime");
|
|
|
|
}
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2013-12-23 11:54:31 +00:00
|
|
|
BigInteger g_b = BigInteger.valueOf(dhInnerData.g);
|
2013-12-23 11:05:57 +00:00
|
|
|
g_b = g_b.modPow(new BigInteger(1, b), p);
|
|
|
|
g_a = g_a.modPow(new BigInteger(1, b), p);
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2013-12-23 11:05:57 +00:00
|
|
|
authKey = g_a.toByteArray();
|
2013-10-25 15:19:00 +00:00
|
|
|
if (authKey.length > 256) {
|
|
|
|
byte[] correctedAuth = new byte[256];
|
|
|
|
System.arraycopy(authKey, 1, correctedAuth, 0, 256);
|
|
|
|
authKey = correctedAuth;
|
|
|
|
} else if (authKey.length < 256) {
|
|
|
|
byte[] correctedAuth = new byte[256];
|
|
|
|
System.arraycopy(authKey, 0, correctedAuth, 256 - authKey.length, authKey.length);
|
|
|
|
for (int a = 0; a < 256 - authKey.length; a++) {
|
|
|
|
authKey[a] = 0;
|
|
|
|
}
|
|
|
|
authKey = correctedAuth;
|
|
|
|
}
|
|
|
|
byte[] authKeyHash = Utilities.computeSHA1(authKey);
|
2014-02-28 22:28:25 +00:00
|
|
|
byte[] authKeyArr = new byte[8];
|
|
|
|
System.arraycopy(authKeyHash, authKeyHash.length - 8, authKeyArr, 0, 8);
|
|
|
|
ByteBuffer buffer = ByteBuffer.wrap(authKeyArr);
|
|
|
|
buffer.order(ByteOrder.LITTLE_ENDIAN);
|
|
|
|
authKeyId = buffer.getLong();
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
SerializedData serverSaltData = new SerializedData();
|
|
|
|
for (int i = 7; i >= 0; i--) {
|
|
|
|
byte a_ = authNewNonce[i];
|
|
|
|
byte b_ = authServerNonce[i];
|
|
|
|
byte x = (byte)(a_ ^ b_);
|
|
|
|
serverSaltData.writeByte(x);
|
|
|
|
}
|
|
|
|
ByteBuffer saltBuffer = ByteBuffer.wrap(serverSaltData.toByteArray());
|
|
|
|
|
|
|
|
timeDifference = dhInnerData.server_time - (int)(System.currentTimeMillis() / 1000);
|
|
|
|
|
|
|
|
serverSalt = new ServerSalt();
|
|
|
|
serverSalt.validSince = (int)(System.currentTimeMillis() / 1000) + timeDifference;
|
|
|
|
serverSalt.validUntil = (int)(System.currentTimeMillis() / 1000) + timeDifference + 30 * 60;
|
|
|
|
serverSalt.value = saltBuffer.getLong();
|
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.d("tmessages", String.format(Locale.US, "===== Time difference: %d", timeDifference));
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
TLRPC.TL_client_DH_inner_data clientInnerData = new TLRPC.TL_client_DH_inner_data();
|
|
|
|
clientInnerData.nonce = authNonce;
|
|
|
|
clientInnerData.server_nonce = authServerNonce;
|
2013-12-23 11:05:57 +00:00
|
|
|
clientInnerData.g_b = g_b.toByteArray();
|
2013-10-25 15:19:00 +00:00
|
|
|
clientInnerData.retry_id = 0;
|
|
|
|
SerializedData os = new SerializedData();
|
|
|
|
clientInnerData.serializeToStream(os);
|
|
|
|
byte[] clientInnerDataBytes = os.toByteArray();
|
|
|
|
|
|
|
|
SerializedData clientDataWithHash = new SerializedData();
|
|
|
|
clientDataWithHash.writeRaw(Utilities.computeSHA1(clientInnerDataBytes));
|
|
|
|
clientDataWithHash.writeRaw(clientInnerDataBytes);
|
2013-12-20 19:25:49 +00:00
|
|
|
byte[] bb = new byte[1];
|
2013-10-25 15:19:00 +00:00
|
|
|
while (clientDataWithHash.length() % 16 != 0) {
|
2014-05-16 23:05:49 +00:00
|
|
|
Utilities.random.nextBytes(bb);
|
2013-12-20 19:25:49 +00:00
|
|
|
clientDataWithHash.writeByte(bb[0]);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TLRPC.TL_set_client_DH_params setClientDhParams = new TLRPC.TL_set_client_DH_params();
|
|
|
|
setClientDhParams.nonce = authNonce;
|
|
|
|
setClientDhParams.server_nonce = authServerNonce;
|
2014-02-28 22:28:25 +00:00
|
|
|
setClientDhParams.encrypted_data = Utilities.aesIgeEncryption(clientDataWithHash.toByteArray(), tmpAesKey.toByteArray(), tmpAesIv.toByteArray(), true, false, 0);
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
TLRPC.TL_msgs_ack msgsAck = new TLRPC.TL_msgs_ack();
|
|
|
|
msgsAck.msg_ids = new ArrayList<Long>();
|
|
|
|
msgsAck.msg_ids.add(messageId);
|
|
|
|
sendMessageData(msgsAck, generateMessageId());
|
|
|
|
|
|
|
|
reqDHMsgData = null;
|
|
|
|
setClientDHParamsMsgData = sendMessageData(setClientDhParams, generateMessageId());
|
|
|
|
} else {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Couldn't set DH params");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
}
|
|
|
|
} else if (message instanceof TLRPC.Set_client_DH_params_answer) {
|
|
|
|
TLRPC.Set_client_DH_params_answer dhAnswer = (TLRPC.Set_client_DH_params_answer)message;
|
|
|
|
|
|
|
|
if (!Arrays.equals(authNonce, dhAnswer.nonce)) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Invalid DH answer nonce");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!Arrays.equals(authServerNonce, dhAnswer.server_nonce)) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Invalid DH answer server nonce");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reqDHMsgData = null;
|
|
|
|
|
|
|
|
TLRPC.TL_msgs_ack msgsAck = new TLRPC.TL_msgs_ack();
|
|
|
|
msgsAck.msg_ids = new ArrayList<Long>();
|
|
|
|
msgsAck.msg_ids.add(messageId);
|
|
|
|
sendMessageData(msgsAck, generateMessageId());
|
|
|
|
|
|
|
|
byte[] authKeyAuxHashFull = Utilities.computeSHA1(authKey);
|
|
|
|
byte[] authKeyAuxHash = new byte[8];
|
|
|
|
System.arraycopy(authKeyAuxHashFull, 0, authKeyAuxHash, 0, 8);
|
|
|
|
|
|
|
|
SerializedData newNonce1 = new SerializedData();
|
|
|
|
newNonce1.writeRaw(authNewNonce);
|
|
|
|
newNonce1.writeByte(1);
|
|
|
|
newNonce1.writeRaw(authKeyAuxHash);
|
|
|
|
byte[] newNonceHash1Full = Utilities.computeSHA1(newNonce1.toByteArray());
|
|
|
|
byte[] newNonceHash1 = new byte[16];
|
|
|
|
System.arraycopy(newNonceHash1Full, newNonceHash1Full.length - 16, newNonceHash1, 0, 16);
|
|
|
|
|
|
|
|
SerializedData newNonce2 = new SerializedData();
|
|
|
|
newNonce2.writeRaw(authNewNonce);
|
|
|
|
newNonce2.writeByte(2);
|
|
|
|
newNonce2.writeRaw(authKeyAuxHash);
|
|
|
|
byte[] newNonceHash2Full = Utilities.computeSHA1(newNonce2.toByteArray());
|
|
|
|
byte[] newNonceHash2 = new byte[16];
|
|
|
|
System.arraycopy(newNonceHash2Full, newNonceHash2Full.length - 16, newNonceHash2, 0, 16);
|
|
|
|
|
|
|
|
SerializedData newNonce3 = new SerializedData();
|
|
|
|
newNonce3.writeRaw(authNewNonce);
|
|
|
|
newNonce3.writeByte(3);
|
|
|
|
newNonce3.writeRaw(authKeyAuxHash);
|
|
|
|
byte[] newNonceHash3Full = Utilities.computeSHA1(newNonce3.toByteArray());
|
|
|
|
byte[] newNonceHash3 = new byte[16];
|
|
|
|
System.arraycopy(newNonceHash3Full, newNonceHash3Full.length - 16, newNonceHash3, 0, 16);
|
|
|
|
|
|
|
|
if (message instanceof TLRPC.TL_dh_gen_ok) {
|
|
|
|
TLRPC.TL_dh_gen_ok dhGenOk = (TLRPC.TL_dh_gen_ok)message;
|
|
|
|
if (!Arrays.equals(newNonceHash1, dhGenOk.new_nonce_hash1)) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Invalid DH answer nonce hash 1");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.d("tmessages", String.format("Handshake with DC%d completed", datacenter.datacenterId));
|
2013-10-25 15:19:00 +00:00
|
|
|
datacenter.connection.delegate = null;
|
|
|
|
|
|
|
|
final Action parent = this;
|
|
|
|
Utilities.stageQueue.postRunnable(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
datacenter.authKey = authKey;
|
|
|
|
datacenter.authKeyId = authKeyId;
|
|
|
|
datacenter.addServerSalt(serverSalt);
|
|
|
|
HashMap<String, Object> resultDict = new HashMap<String, Object>();
|
|
|
|
resultDict.put("timeDifference", timeDifference);
|
|
|
|
if (delegate != null) {
|
|
|
|
delegate.ActionDidFinishExecution(parent, resultDict);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else if (message instanceof TLRPC.TL_dh_gen_retry) {
|
|
|
|
TLRPC.TL_dh_gen_retry dhRetry = (TLRPC.TL_dh_gen_retry)message;
|
|
|
|
if (!Arrays.equals(newNonceHash2, dhRetry.new_nonce_hash2)) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Invalid DH answer nonce hash 2");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
return;
|
|
|
|
}
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.d("tmessages", "***** Retry DH");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
} else if (message instanceof TLRPC.TL_dh_gen_fail) {
|
|
|
|
TLRPC.TL_dh_gen_fail dhFail = (TLRPC.TL_dh_gen_fail)message;
|
|
|
|
if (!Arrays.equals(newNonceHash3, dhFail.new_nonce_hash3)) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Invalid DH answer nonce hash 3");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
return;
|
|
|
|
}
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.d("tmessages", "***** Server declined DH params");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
} else {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", "***** Unknown DH params response");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(false);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
TLRPC.TL_msgs_ack msgsAck = new TLRPC.TL_msgs_ack();
|
|
|
|
msgsAck.msg_ids = new ArrayList<Long>();
|
|
|
|
msgsAck.msg_ids.add(messageId);
|
|
|
|
sendMessageData(msgsAck, generateMessageId());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
@Override
|
|
|
|
public void tcpConnectionProgressChanged(TcpConnection connection, long messageId, int currentSize, int length) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
@Override
|
|
|
|
public void tcpConnectionClosed(TcpConnection connection) {
|
|
|
|
wasDisconnect = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void tcpConnectionConnected(TcpConnection connection) {
|
|
|
|
if (!wasDisconnect) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (reqPQMsgData != null) {
|
2014-04-03 21:18:54 +00:00
|
|
|
datacenter.connection.sendData(reqPQMsgData, null, false, false);
|
2013-10-25 15:19:00 +00:00
|
|
|
} else if (reqDHMsgData != null) {
|
2014-04-03 21:18:54 +00:00
|
|
|
datacenter.connection.sendData(reqDHMsgData, null, false, false);
|
2013-10-25 15:19:00 +00:00
|
|
|
} else if (setClientDHParamsMsgData != null) {
|
2014-04-03 21:18:54 +00:00
|
|
|
datacenter.connection.sendData(setClientDHParamsMsgData, null, false, false);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void tcpConnectionQuiackAckReceived(TcpConnection connection, int ack) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-28 22:28:25 +00:00
|
|
|
public void tcpConnectionReceivedData(TcpConnection connection, ByteBufferDesc data, int length) {
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2014-02-28 22:28:25 +00:00
|
|
|
long keyId = data.readInt64();
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
if (keyId == 0) {
|
2014-02-28 22:28:25 +00:00
|
|
|
long messageId = data.readInt64();
|
2013-10-25 15:19:00 +00:00
|
|
|
if (processedMessageIds.contains(messageId)) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.d("tmessages", String.format("===== Duplicate message id %d received, ignoring", messageId));
|
2013-10-25 15:19:00 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-02-28 22:28:25 +00:00
|
|
|
int messageLength = data.readInt32();
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2014-02-28 22:28:25 +00:00
|
|
|
int constructor = data.readInt32();
|
|
|
|
TLObject object = TLClassStore.Instance().TLdeserialize(data, constructor);
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
if (object != null) {
|
|
|
|
processedMessageIds.add(messageId);
|
|
|
|
}
|
|
|
|
processMessage(object, messageId);
|
|
|
|
} else {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.d("tmessages", "***** Received encrypted message while in handshake, restarting");
|
2013-10-25 15:19:00 +00:00
|
|
|
beginHandshake(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|