MTPyroger/pyrogram/session/session.py

392 lines
12 KiB
Python
Raw Normal View History

2017-12-05 11:41:07 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2018-01-01 12:21:23 +00:00
# Copyright (C) 2017-2018 Dan Tès <https://github.com/delivrance>
2017-12-05 11:41:07 +00:00
#
# This file is part of Pyrogram.
#
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pyrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
import logging
import platform
import threading
from datetime import timedelta, datetime
2017-12-09 01:21:23 +00:00
from hashlib import sha1, sha256
2017-12-05 11:41:07 +00:00
from io import BytesIO
from os import urandom
from queue import Queue
from threading import Event, Thread
import pyrogram
2017-12-05 11:41:07 +00:00
from pyrogram import __copyright__, __license__, __version__
from pyrogram.api import functions, types, core
from pyrogram.api.all import layer
2017-12-18 08:50:41 +00:00
from pyrogram.api.core import Message, Object, MsgContainer, Long, FutureSalt, Int
2017-12-05 11:41:07 +00:00
from pyrogram.api.errors import Error
from pyrogram.connection import Connection
2017-12-18 14:16:21 +00:00
from pyrogram.crypto import IGE, KDF
2017-12-05 11:41:07 +00:00
from .internals import MsgId, MsgFactory, DataCenter
log = logging.getLogger(__name__)
class Result:
def __init__(self):
self.value = None
self.event = Event()
class Session:
VERSION = __version__
APP_VERSION = "Pyrogram \U0001f525 {}".format(VERSION)
DEVICE_MODEL = "{} {}".format(
platform.python_implementation(),
platform.python_version()
)
SYSTEM_VERSION = "{} {}".format(
platform.system(),
platform.release()
)
INITIAL_SALT = 0x616e67656c696361
2018-02-08 18:48:01 +00:00
NET_WORKERS = 4
2017-12-11 11:55:31 +00:00
WAIT_TIMEOUT = 10
2017-12-05 11:41:07 +00:00
MAX_RETRIES = 5
ACKS_THRESHOLD = 8
PING_INTERVAL = 5
2017-12-09 16:09:39 +00:00
notice_displayed = False
def __init__(self,
dc_id: int,
test_mode: bool,
proxy: type,
auth_key: bytes,
api_id: str,
2018-02-08 18:48:01 +00:00
is_cdn: bool = False):
2017-12-09 16:09:39 +00:00
if not Session.notice_displayed:
print("Pyrogram v{}, {}".format(__version__, __copyright__))
print("Licensed under the terms of the " + __license__, end="\n\n")
Session.notice_displayed = True
2017-12-05 11:41:07 +00:00
2018-01-16 21:05:19 +00:00
self.connection = Connection(DataCenter(dc_id, test_mode), proxy)
2017-12-05 11:41:07 +00:00
self.api_id = api_id
2018-02-08 18:48:01 +00:00
self.is_cdn = is_cdn
2017-12-05 11:41:07 +00:00
self.auth_key = auth_key
self.auth_key_id = sha1(auth_key).digest()[-8:]
self.msg_id = MsgId()
self.session_id = Long(self.msg_id())
self.msg_factory = MsgFactory(self.msg_id)
self.current_salt = None
self.pending_acks = set()
self.recv_queue = Queue()
self.results = {}
self.ping_thread = None
self.ping_thread_event = Event()
self.next_salt_thread = None
self.next_salt_thread_event = Event()
self.is_connected = Event()
self.client = None
2017-12-08 22:40:29 +00:00
self.update_handler = None
2017-12-05 11:41:07 +00:00
def start(self):
2017-12-19 10:38:15 +00:00
terms = None
2017-12-05 11:41:07 +00:00
while True:
try:
self.connection.connect()
2018-02-08 18:48:01 +00:00
for i in range(self.NET_WORKERS):
2018-02-08 17:56:40 +00:00
Thread(target=self.net_worker, name="NetWorker#{}".format(i + 1)).start()
2017-12-05 11:41:07 +00:00
Thread(target=self.recv, name="RecvThread").start()
self.current_salt = FutureSalt(0, 0, self.INITIAL_SALT)
self.current_salt = FutureSalt(0, 0, self._send(functions.Ping(0)).new_server_salt)
self.current_salt = self._send(functions.GetFutureSalts(1)).salts[0]
self.next_salt_thread = Thread(target=self.next_salt, name="NextSaltThread")
self.next_salt_thread.start()
2017-12-19 10:38:15 +00:00
if not self.is_cdn:
terms = self._send(
functions.InvokeWithLayer(
layer,
functions.InitConnection(
self.api_id,
self.DEVICE_MODEL,
self.SYSTEM_VERSION,
self.APP_VERSION,
"en", "", "en",
functions.help.GetTermsOfService(),
)
2017-12-05 11:41:07 +00:00
)
2017-12-19 10:38:15 +00:00
).text
2017-12-05 11:41:07 +00:00
self.ping_thread = Thread(target=self.ping, name="PingThread")
self.ping_thread.start()
log.info("Connection inited: Layer {}".format(layer))
except (OSError, TimeoutError):
self.stop()
else:
break
self.is_connected.set()
log.debug("Session started")
2017-12-19 10:38:15 +00:00
return terms
2017-12-05 11:41:07 +00:00
def stop(self):
self.is_connected.clear()
2017-12-05 11:41:07 +00:00
self.ping_thread_event.set()
self.next_salt_thread_event.set()
if self.ping_thread is not None:
self.ping_thread.join()
if self.next_salt_thread is not None:
self.next_salt_thread.join()
self.ping_thread_event.clear()
self.next_salt_thread_event.clear()
2017-12-05 11:41:07 +00:00
self.connection.close()
2018-02-08 18:48:01 +00:00
for i in range(self.NET_WORKERS):
2017-12-05 11:41:07 +00:00
self.recv_queue.put(None)
log.debug("Session stopped")
def restart(self):
self.stop()
self.start()
2017-12-18 14:16:21 +00:00
def pack(self, message: Message):
2017-12-09 01:21:23 +00:00
data = Long(self.current_salt.salt) + self.session_id + message.write()
padding = urandom(-(len(data) + 12) % 16 + 12)
# 88 = 88 + 0 (outgoing message)
msg_key_large = sha256(self.auth_key[88: 88 + 32] + data + padding).digest()
msg_key = msg_key_large[8:24]
2017-12-18 14:16:21 +00:00
aes_key, aes_iv = KDF(self.auth_key, msg_key, True)
2017-12-09 01:21:23 +00:00
return self.auth_key_id + msg_key + IGE.encrypt(data + padding, aes_key, aes_iv)
2017-12-18 14:16:21 +00:00
def unpack(self, b: BytesIO) -> Message:
2017-12-09 01:21:23 +00:00
assert b.read(8) == self.auth_key_id, b.getvalue()
msg_key = b.read(16)
2017-12-18 14:16:21 +00:00
aes_key, aes_iv = KDF(self.auth_key, msg_key, False)
2017-12-09 01:21:23 +00:00
data = BytesIO(IGE.decrypt(b.read(), aes_key, aes_iv))
data.read(8)
# https://core.telegram.org/mtproto/security_guidelines#checking-session-id
assert data.read(8) == self.session_id
message = Message.read(data)
# https://core.telegram.org/mtproto/security_guidelines#checking-sha256-hash-value-of-msg-key
# https://core.telegram.org/mtproto/security_guidelines#checking-message-length
# 96 = 88 + 8 (incoming message)
assert msg_key == sha256(self.auth_key[96:96 + 32] + data.getvalue()).digest()[8:24]
# https://core.telegram.org/mtproto/security_guidelines#checking-msg-id
# TODO: check for lower msg_ids
assert message.msg_id % 2 != 0
return message
2018-02-08 17:56:40 +00:00
def net_worker(self):
2017-12-05 11:41:07 +00:00
name = threading.current_thread().name
log.debug("{} started".format(name))
while True:
packet = self.recv_queue.get()
if packet is None:
break
try:
self.unpack_dispatch_and_ack(packet)
except Exception as e:
log.error(e, exc_info=True)
log.debug("{} stopped".format(name))
def set_update_handler(self, client: pyrogram, update_handler: callable):
self.client = client
self.update_handler = update_handler
2017-12-05 11:41:07 +00:00
def unpack_dispatch_and_ack(self, packet: bytes):
2017-12-18 14:16:21 +00:00
data = self.unpack(BytesIO(packet))
2017-12-05 11:41:07 +00:00
messages = (
data.body.messages
if isinstance(data.body, MsgContainer)
else [data]
)
log.debug(data)
2018-02-08 16:34:00 +00:00
for msg in messages:
if msg.seq_no % 2 != 0:
if msg.msg_id in self.pending_acks:
2017-12-28 12:06:26 +00:00
continue
else:
2018-02-08 16:34:00 +00:00
self.pending_acks.add(msg.msg_id)
2017-12-05 11:41:07 +00:00
2018-02-08 16:34:00 +00:00
if isinstance(msg.body, (types.MsgDetailedInfo, types.MsgNewDetailedInfo)):
self.pending_acks.add(msg.body.answer_msg_id)
2017-12-05 11:41:07 +00:00
continue
2018-02-08 16:34:00 +00:00
if isinstance(msg.body, types.NewSessionCreated):
2017-12-08 22:40:29 +00:00
continue
2017-12-05 11:41:07 +00:00
msg_id = None
2018-02-08 16:34:00 +00:00
if isinstance(msg.body, (types.BadMsgNotification, types.BadServerSalt)):
msg_id = msg.body.bad_msg_id
elif isinstance(msg.body, (core.FutureSalts, types.RpcResult)):
msg_id = msg.body.req_msg_id
elif isinstance(msg.body, types.Pong):
msg_id = msg.body.msg_id
2017-12-08 22:40:29 +00:00
else:
if self.update_handler:
2018-02-08 16:34:00 +00:00
self.update_handler(self.client, msg.body)
2017-12-05 11:41:07 +00:00
if msg_id in self.results:
2018-02-08 16:34:00 +00:00
self.results[msg_id].value = getattr(msg.body, "result", msg.body)
2017-12-05 11:41:07 +00:00
self.results[msg_id].event.set()
if len(self.pending_acks) >= self.ACKS_THRESHOLD:
2017-12-12 07:38:05 +00:00
log.info("Send {} acks".format(len(self.pending_acks)))
2017-12-05 11:41:07 +00:00
try:
self._send(types.MsgsAck(list(self.pending_acks)), False)
except (OSError, TimeoutError):
pass
else:
self.pending_acks.clear()
def ping(self):
log.debug("PingThread started")
while True:
self.ping_thread_event.wait(self.PING_INTERVAL)
if self.ping_thread_event.is_set():
break
try:
self._send(functions.Ping(0), False)
except (OSError, TimeoutError):
pass
log.debug("PingThread stopped")
def next_salt(self):
log.debug("NextSaltThread started")
while True:
now = datetime.now()
# Seconds to wait until middle-overlap, which is
# 15 minutes before/after the current/next salt end/start time
dt = (self.current_salt.valid_until - now).total_seconds() - 900
log.debug("Current salt: {} | Next salt in {:.0f}m {:.0f}s ({})".format(
self.current_salt.salt,
dt // 60,
dt % 60,
now + timedelta(seconds=dt)
))
self.next_salt_thread_event.wait(dt)
if self.next_salt_thread_event.is_set():
break
try:
self.current_salt = self._send(functions.GetFutureSalts(1)).salts[0]
except (OSError, TimeoutError):
self.connection.close()
break
log.debug("NextSaltThread stopped")
def recv(self):
log.debug("RecvThread started")
while True:
packet = self.connection.recv()
2017-12-18 08:50:41 +00:00
if packet is None or (len(packet) == 4 and Int.read(BytesIO(packet)) == -404):
2017-12-05 11:41:07 +00:00
if self.is_connected.is_set():
Thread(target=self.restart, name="RestartThread").start()
break
self.recv_queue.put(packet)
log.debug("RecvThread stopped")
def _send(self, data: Object, wait_response: bool = True):
message = self.msg_factory(data)
msg_id = message.msg_id
if wait_response:
self.results[msg_id] = Result()
2017-12-18 14:16:21 +00:00
payload = self.pack(message)
2017-12-05 11:41:07 +00:00
try:
self.connection.send(payload)
except OSError as e:
self.results.pop(msg_id, None)
raise e
if wait_response:
self.results[msg_id].event.wait(self.WAIT_TIMEOUT)
result = self.results.pop(msg_id).value
if result is None:
raise TimeoutError
elif isinstance(result, types.RpcError):
Error.raise_it(result, type(data))
else:
return result
def send(self, data: Object):
for i in range(self.MAX_RETRIES):
self.is_connected.wait()
try:
return self._send(data)
except (OSError, TimeoutError):
2017-12-11 09:34:14 +00:00
log.warning("Retrying {}".format(type(data)))
2017-12-05 11:41:07 +00:00
continue
else:
return None