2022-06-30 16:32:56 +03:00
|
|
|
import Long from 'long'
|
2023-06-05 03:30:48 +03:00
|
|
|
|
2021-11-23 00:03:59 +03:00
|
|
|
import { mtp, tl } from '@mtcute/tl'
|
2022-06-30 16:32:56 +03:00
|
|
|
import {
|
|
|
|
TlBinaryWriter,
|
|
|
|
TlReaderMap,
|
|
|
|
TlSerializationCounter,
|
|
|
|
TlWriterMap,
|
|
|
|
} from '@mtcute/tl-runtime'
|
|
|
|
|
2023-06-10 00:37:26 +03:00
|
|
|
import { ControllablePromise,
|
|
|
|
Deque,
|
|
|
|
getRandomInt,
|
2022-11-05 03:03:21 +03:00
|
|
|
ICryptoProvider,
|
|
|
|
Logger,
|
2023-06-10 00:37:26 +03:00
|
|
|
LongMap,
|
2022-11-05 03:03:21 +03:00
|
|
|
LruSet,
|
2023-06-10 00:37:26 +03:00
|
|
|
randomLong,
|
2022-11-05 03:03:21 +03:00
|
|
|
SortedArray,
|
|
|
|
} from '../utils'
|
2022-11-06 02:27:46 +03:00
|
|
|
import { AuthKey } from './auth-key'
|
2021-04-08 12:19:38 +03:00
|
|
|
|
2022-11-05 03:03:21 +03:00
|
|
|
export interface PendingRpc {
|
|
|
|
method: string
|
|
|
|
data: Buffer
|
|
|
|
promise: ControllablePromise
|
|
|
|
stack?: string
|
|
|
|
gzipOverhead?: number
|
|
|
|
|
|
|
|
sent?: boolean
|
|
|
|
msgId?: Long
|
|
|
|
seqNo?: number
|
|
|
|
containerId?: Long
|
|
|
|
acked?: boolean
|
|
|
|
initConn?: boolean
|
|
|
|
getState?: number
|
|
|
|
cancelled?: boolean
|
2023-06-10 00:37:26 +03:00
|
|
|
timeout?: NodeJS.Timeout
|
2022-11-05 03:03:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
export type PendingMessage =
|
|
|
|
| {
|
|
|
|
_: 'rpc'
|
|
|
|
rpc: PendingRpc
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
_: 'container'
|
|
|
|
msgIds: Long[]
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
_: 'state'
|
|
|
|
msgIds: Long[]
|
|
|
|
containerId: Long
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
_: 'resend'
|
|
|
|
msgIds: Long[]
|
|
|
|
containerId: Long
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
_: 'ping'
|
|
|
|
pingId: Long
|
|
|
|
containerId: Long
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
_: 'destroy_session'
|
|
|
|
sessionId: Long
|
|
|
|
containerId: Long
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
_: 'cancel'
|
|
|
|
msgId: Long
|
|
|
|
containerId: Long
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
_: 'future_salts'
|
|
|
|
containerId: Long
|
|
|
|
}
|
2022-11-07 00:08:59 +03:00
|
|
|
| {
|
|
|
|
_: 'bind'
|
|
|
|
promise: ControllablePromise
|
|
|
|
}
|
2022-11-05 03:03:21 +03:00
|
|
|
|
2021-04-08 12:19:38 +03:00
|
|
|
/**
|
2022-11-06 02:27:46 +03:00
|
|
|
* Class encapsulating a single MTProto session and storing
|
|
|
|
* all the relevant state
|
2021-04-08 12:19:38 +03:00
|
|
|
*/
|
|
|
|
export class MtprotoSession {
|
2021-11-23 00:03:59 +03:00
|
|
|
_sessionId = randomLong()
|
2021-04-08 12:19:38 +03:00
|
|
|
|
2022-11-06 02:27:46 +03:00
|
|
|
_authKey = new AuthKey(this._crypto, this.log, this._readerMap)
|
2022-11-07 00:08:59 +03:00
|
|
|
_authKeyTemp = new AuthKey(this._crypto, this.log, this._readerMap)
|
|
|
|
_authKeyTempSecondary = new AuthKey(this._crypto, this.log, this._readerMap)
|
2021-04-08 12:19:38 +03:00
|
|
|
|
2021-11-23 00:03:59 +03:00
|
|
|
_timeOffset = 0
|
|
|
|
_lastMessageId = Long.ZERO
|
|
|
|
_seqNo = 0
|
|
|
|
|
|
|
|
serverSalt = Long.ZERO
|
2021-04-08 12:19:38 +03:00
|
|
|
|
2022-11-05 03:03:21 +03:00
|
|
|
/// state ///
|
|
|
|
// recent msg ids
|
|
|
|
recentOutgoingMsgIds = new LruSet<Long>(1000, false, true)
|
|
|
|
recentIncomingMsgIds = new LruSet<Long>(1000, false, true)
|
|
|
|
|
|
|
|
// queues
|
|
|
|
queuedRpc = new Deque<PendingRpc>()
|
|
|
|
queuedAcks: Long[] = []
|
|
|
|
queuedStateReq: Long[] = []
|
|
|
|
queuedResendReq: Long[] = []
|
|
|
|
queuedCancelReq: Long[] = []
|
|
|
|
getStateSchedule = new SortedArray<PendingRpc>(
|
|
|
|
[],
|
2023-06-10 00:37:26 +03:00
|
|
|
(a, b) => a.getState! - b.getState!,
|
2022-11-05 03:03:21 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// requests info
|
|
|
|
pendingMessages = new LongMap<PendingMessage>()
|
2022-11-07 00:08:59 +03:00
|
|
|
destroySessionIdToMsgId = new LongMap<Long>()
|
2022-11-05 03:03:21 +03:00
|
|
|
|
|
|
|
initConnectionCalled = false
|
2022-11-14 00:37:57 +03:00
|
|
|
authorizationPending = false
|
2022-11-05 03:03:21 +03:00
|
|
|
|
2021-11-23 00:03:59 +03:00
|
|
|
constructor(
|
2022-11-06 02:27:46 +03:00
|
|
|
readonly _crypto: ICryptoProvider,
|
2021-11-23 00:03:59 +03:00
|
|
|
readonly log: Logger,
|
|
|
|
readonly _readerMap: TlReaderMap,
|
2023-06-05 03:30:48 +03:00
|
|
|
readonly _writerMap: TlWriterMap,
|
2021-11-23 00:03:59 +03:00
|
|
|
) {
|
2022-11-05 03:03:21 +03:00
|
|
|
this.log.prefix = `[SESSION ${this._sessionId.toString(16)}] `
|
2021-04-08 12:19:38 +03:00
|
|
|
}
|
|
|
|
|
2022-11-05 03:03:21 +03:00
|
|
|
/**
|
2022-11-06 02:27:46 +03:00
|
|
|
* Reset session by resetting auth key(s) and session state
|
2022-11-05 03:03:21 +03:00
|
|
|
*/
|
2022-11-14 00:37:57 +03:00
|
|
|
reset(withAuthKey = false): void {
|
|
|
|
if (withAuthKey) {
|
|
|
|
this._authKey.reset()
|
|
|
|
this._authKeyTemp.reset()
|
|
|
|
this._authKeyTempSecondary.reset()
|
|
|
|
}
|
2022-11-05 03:03:21 +03:00
|
|
|
|
|
|
|
this.resetState()
|
2021-04-08 12:19:38 +03:00
|
|
|
}
|
|
|
|
|
2022-11-05 03:03:21 +03:00
|
|
|
/**
|
|
|
|
* Reset session state and generate a new session ID.
|
|
|
|
*
|
|
|
|
* By default, also cancels any pending RPC requests.
|
|
|
|
* If `keepPending` is set to `true`, pending requests will be kept
|
|
|
|
*/
|
|
|
|
resetState(keepPending = false): void {
|
|
|
|
this._lastMessageId = Long.ZERO
|
2021-11-23 00:03:59 +03:00
|
|
|
this._seqNo = 0
|
2022-11-05 03:03:21 +03:00
|
|
|
|
|
|
|
this._sessionId = randomLong()
|
2022-11-07 00:08:59 +03:00
|
|
|
this.log.debug('session reset, new sid = %h', this._sessionId)
|
2022-11-05 03:03:21 +03:00
|
|
|
this.log.prefix = `[SESSION ${this._sessionId.toString(16)}] `
|
|
|
|
|
|
|
|
// reset session state
|
|
|
|
|
|
|
|
if (!keepPending) {
|
|
|
|
for (const info of this.pendingMessages.values()) {
|
|
|
|
if (info._ === 'rpc') {
|
|
|
|
info.rpc.promise.reject(new Error('Session is reset'))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.pendingMessages.clear()
|
|
|
|
}
|
|
|
|
|
|
|
|
this.recentOutgoingMsgIds.clear()
|
|
|
|
this.recentIncomingMsgIds.clear()
|
|
|
|
|
|
|
|
if (!keepPending) {
|
|
|
|
while (this.queuedRpc.length) {
|
|
|
|
const rpc = this.queuedRpc.popFront()!
|
|
|
|
|
|
|
|
if (rpc.sent === false) {
|
|
|
|
rpc.promise.reject(new Error('Session is reset'))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.queuedAcks.length = 0
|
|
|
|
this.queuedStateReq.length = 0
|
|
|
|
this.queuedResendReq.length = 0
|
|
|
|
this.getStateSchedule.clear()
|
|
|
|
}
|
|
|
|
|
|
|
|
enqueueRpc(rpc: PendingRpc, force?: boolean): boolean {
|
|
|
|
// already queued or cancelled
|
|
|
|
if ((!force && !rpc.sent) || rpc.cancelled) return false
|
|
|
|
|
|
|
|
rpc.sent = false
|
|
|
|
rpc.containerId = undefined
|
|
|
|
this.log.debug(
|
|
|
|
'enqueued %s for sending (msg_id = %s)',
|
|
|
|
rpc.method,
|
2023-06-10 00:37:26 +03:00
|
|
|
rpc.msgId || 'n/a',
|
2022-11-05 03:03:21 +03:00
|
|
|
)
|
|
|
|
this.queuedRpc.pushBack(rpc)
|
2023-06-10 00:37:26 +03:00
|
|
|
|
2022-11-05 03:03:21 +03:00
|
|
|
return true
|
2021-11-23 00:03:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
getMessageId(): Long {
|
|
|
|
const timeTicks = Date.now()
|
|
|
|
const timeSec = Math.floor(timeTicks / 1000) + this._timeOffset
|
|
|
|
const timeMSec = timeTicks % 1000
|
|
|
|
const random = getRandomInt(0xffff)
|
|
|
|
|
|
|
|
let messageId = new Long((timeMSec << 21) | (random << 3) | 4, timeSec)
|
|
|
|
|
|
|
|
if (this._lastMessageId.gt(messageId)) {
|
|
|
|
messageId = this._lastMessageId.add(4)
|
|
|
|
}
|
|
|
|
|
|
|
|
this._lastMessageId = messageId
|
|
|
|
|
|
|
|
return messageId
|
|
|
|
}
|
|
|
|
|
|
|
|
getSeqNo(isContentRelated = true): number {
|
|
|
|
let seqNo = this._seqNo * 2
|
|
|
|
|
|
|
|
if (isContentRelated) {
|
|
|
|
seqNo += 1
|
|
|
|
this._seqNo += 1
|
2021-04-08 12:19:38 +03:00
|
|
|
}
|
2021-11-23 00:03:59 +03:00
|
|
|
|
|
|
|
return seqNo
|
|
|
|
}
|
|
|
|
|
2022-11-07 00:08:59 +03:00
|
|
|
/** Encrypt a single MTProto message using session's keys */
|
|
|
|
async encryptMessage(message: Buffer): Promise<Buffer> {
|
|
|
|
const key = this._authKeyTemp.ready ? this._authKeyTemp : this._authKey
|
2023-06-10 00:37:26 +03:00
|
|
|
|
2022-11-07 00:08:59 +03:00
|
|
|
return key.encryptMessage(message, this.serverSalt, this._sessionId)
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Decrypt a single MTProto message using session's keys */
|
|
|
|
async decryptMessage(
|
|
|
|
data: Buffer,
|
2023-06-10 00:37:26 +03:00
|
|
|
callback: Parameters<AuthKey['decryptMessage']>[2],
|
2022-11-07 00:08:59 +03:00
|
|
|
): Promise<void> {
|
|
|
|
if (!this._authKey.ready) throw new Error('Keys are not set up!')
|
|
|
|
|
|
|
|
const authKeyId = data.slice(0, 8)
|
|
|
|
|
|
|
|
let key: AuthKey
|
2023-06-10 00:37:26 +03:00
|
|
|
|
2022-11-07 00:08:59 +03:00
|
|
|
if (this._authKey.match(authKeyId)) {
|
|
|
|
key = this._authKey
|
|
|
|
} else if (this._authKeyTemp.match(authKeyId)) {
|
|
|
|
key = this._authKeyTemp
|
|
|
|
} else if (this._authKeyTempSecondary.match(authKeyId)) {
|
|
|
|
key = this._authKeyTempSecondary
|
|
|
|
} else {
|
|
|
|
this.log.warn(
|
|
|
|
'received message with unknown authKey = %h (expected %h or %h or %h)',
|
|
|
|
authKeyId,
|
|
|
|
this._authKey.id,
|
|
|
|
this._authKeyTemp.id,
|
|
|
|
this._authKeyTempSecondary.id,
|
|
|
|
)
|
2023-06-10 00:37:26 +03:00
|
|
|
|
2022-11-07 00:08:59 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return key.decryptMessage(data, this._sessionId, callback)
|
|
|
|
}
|
|
|
|
|
2021-11-23 00:03:59 +03:00
|
|
|
writeMessage(
|
|
|
|
writer: TlBinaryWriter,
|
|
|
|
content: tl.TlObject | mtp.TlObject | Buffer,
|
2023-06-05 03:30:48 +03:00
|
|
|
isContentRelated = true,
|
2021-11-23 00:03:59 +03:00
|
|
|
): Long {
|
|
|
|
const messageId = this.getMessageId()
|
|
|
|
const seqNo = this.getSeqNo(isContentRelated)
|
|
|
|
|
2023-06-05 03:30:48 +03:00
|
|
|
const length = Buffer.isBuffer(content) ?
|
|
|
|
content.length :
|
|
|
|
TlSerializationCounter.countNeededBytes(
|
2022-06-30 16:32:56 +03:00
|
|
|
writer.objectMap!,
|
2023-06-05 03:30:48 +03:00
|
|
|
content,
|
|
|
|
)
|
2021-11-23 00:03:59 +03:00
|
|
|
|
|
|
|
writer.long(messageId)
|
|
|
|
writer.int(seqNo)
|
|
|
|
writer.uint(length)
|
|
|
|
if (Buffer.isBuffer(content)) writer.raw(content)
|
|
|
|
else writer.object(content as tl.TlObject)
|
|
|
|
|
|
|
|
return messageId
|
2021-04-08 12:19:38 +03:00
|
|
|
}
|
|
|
|
}
|