Create only temporary keys for CDN.

This commit is contained in:
John Preston 2019-12-28 13:52:29 +03:00
parent f3d5f0c9de
commit a980fba3aa
5 changed files with 71 additions and 30 deletions

View File

@ -48,6 +48,13 @@ const char *NameOfType(CreatingKeyType type) {
} // namespace } // namespace
TemporaryKeyType TemporaryKeyTypeByDcType(DcType type) {
return (type == DcType::MediaCluster)
? TemporaryKeyType::MediaCluster
: TemporaryKeyType::Regular;
}
Dcenter::Dcenter(DcId dcId, AuthKeyPtr &&key) Dcenter::Dcenter(DcId dcId, AuthKeyPtr &&key)
: _id(dcId) : _id(dcId)
, _persistentKey(std::move(key)) { , _persistentKey(std::move(key)) {
@ -102,23 +109,24 @@ void Dcenter::setConnectionInited(bool connectionInited) {
_connectionInited = connectionInited; _connectionInited = connectionInited;
} }
CreatingKeyType Dcenter::acquireKeyCreation(TemporaryKeyType type) { CreatingKeyType Dcenter::acquireKeyCreation(DcType type) {
QReadLocker lock(&_mutex); QReadLocker lock(&_mutex);
const auto index = IndexByType(type); const auto keyType = TemporaryKeyTypeByDcType(type);
const auto index = IndexByType(keyType);
auto &key = _temporaryKeys[index]; auto &key = _temporaryKeys[index];
if (key != nullptr) { if (key != nullptr) {
return CreatingKeyType::None; return CreatingKeyType::None;
} }
auto expected = false; auto expected = false;
const auto regular = IndexByType(TemporaryKeyType::Regular); const auto regular = IndexByType(TemporaryKeyType::Regular);
if (type == TemporaryKeyType::MediaCluster && _temporaryKeys[regular]) { if (keyType == TemporaryKeyType::MediaCluster && _temporaryKeys[regular]) {
return !_creatingKeys[index].compare_exchange_strong(expected, true) return !_creatingKeys[index].compare_exchange_strong(expected, true)
? CreatingKeyType::None ? CreatingKeyType::None
: CreatingKeyType::TemporaryMediaCluster; : CreatingKeyType::TemporaryMediaCluster;
} }
return !_creatingKeys[regular].compare_exchange_strong(expected, true) return !_creatingKeys[regular].compare_exchange_strong(expected, true)
? CreatingKeyType::None ? CreatingKeyType::None
: !_persistentKey : (type != DcType::Cdn && !_persistentKey)
? CreatingKeyType::Persistent ? CreatingKeyType::Persistent
: CreatingKeyType::TemporaryRegular; : CreatingKeyType::TemporaryRegular;
} }
@ -132,10 +140,6 @@ bool Dcenter::releaseKeyCreationOnDone(
Expects(temporaryKey != nullptr); Expects(temporaryKey != nullptr);
QWriteLocker lock(&_mutex); QWriteLocker lock(&_mutex);
if (type != CreatingKeyType::Persistent
&& _persistentKey != persistentKeyUsedForBind) {
return false;
}
if (type == CreatingKeyType::Persistent) { if (type == CreatingKeyType::Persistent) {
_persistentKey = persistentKeyUsedForBind; _persistentKey = persistentKeyUsedForBind;
} else if (_persistentKey != persistentKeyUsedForBind) { } else if (_persistentKey != persistentKeyUsedForBind) {

View File

@ -14,6 +14,7 @@ namespace MTP {
class Instance; class Instance;
class AuthKey; class AuthKey;
using AuthKeyPtr = std::shared_ptr<AuthKey>; using AuthKeyPtr = std::shared_ptr<AuthKey>;
enum class DcType;
namespace details { namespace details {
@ -29,6 +30,8 @@ enum class CreatingKeyType {
TemporaryMediaCluster TemporaryMediaCluster
}; };
[[nodiscard]] TemporaryKeyType TemporaryKeyTypeByDcType(DcType type);
class Dcenter : public QObject { class Dcenter : public QObject {
public: public:
// Main thread. // Main thread.
@ -38,7 +41,7 @@ public:
[[nodiscard]] DcId id() const; [[nodiscard]] DcId id() const;
[[nodiscard]] AuthKeyPtr getPersistentKey() const; [[nodiscard]] AuthKeyPtr getPersistentKey() const;
[[nodiscard]] AuthKeyPtr getTemporaryKey(TemporaryKeyType type) const; [[nodiscard]] AuthKeyPtr getTemporaryKey(TemporaryKeyType type) const;
[[nodiscard]] CreatingKeyType acquireKeyCreation(TemporaryKeyType type); [[nodiscard]] CreatingKeyType acquireKeyCreation(DcType type);
bool releaseKeyCreationOnDone( bool releaseKeyCreationOnDone(
CreatingKeyType type, CreatingKeyType type,
const AuthKeyPtr &temporaryKey, const AuthKeyPtr &temporaryKey,

View File

@ -108,7 +108,7 @@ AuthKeyPtr SessionData::getPersistentKey() const {
return _owner ? _owner->getPersistentKey() : nullptr; return _owner ? _owner->getPersistentKey() : nullptr;
} }
CreatingKeyType SessionData::acquireKeyCreation(TemporaryKeyType type) { CreatingKeyType SessionData::acquireKeyCreation(DcType type) {
QMutexLocker lock(&_ownerMutex); QMutexLocker lock(&_ownerMutex);
return _owner ? _owner->acquireKeyCreation(type) : CreatingKeyType::None; return _owner ? _owner->acquireKeyCreation(type) : CreatingKeyType::None;
} }
@ -124,6 +124,14 @@ bool SessionData::releaseKeyCreationOnDone(
: false; : false;
} }
bool SessionData::releaseCdnKeyCreationOnDone(
const AuthKeyPtr &temporaryKey) {
QMutexLocker lock(&_ownerMutex);
return _owner
? _owner->releaseCdnKeyCreationOnDone(temporaryKey)
: false;
}
void SessionData::releaseKeyCreationOnFail() { void SessionData::releaseKeyCreationOnFail() {
QMutexLocker lock(&_ownerMutex); QMutexLocker lock(&_ownerMutex);
if (_owner) { if (_owner) {
@ -441,7 +449,7 @@ void Session::sendPrepared(
} }
} }
CreatingKeyType Session::acquireKeyCreation(TemporaryKeyType type) { CreatingKeyType Session::acquireKeyCreation(DcType type) {
Expects(_myKeyCreation == CreatingKeyType::None); Expects(_myKeyCreation == CreatingKeyType::None);
_myKeyCreation = _dc->acquireKeyCreation(type); _myKeyCreation = _dc->acquireKeyCreation(type);
@ -454,6 +462,21 @@ bool Session::releaseKeyCreationOnDone(
Expects(_myKeyCreation != CreatingKeyType::None); Expects(_myKeyCreation != CreatingKeyType::None);
Expects(persistentKeyUsedForBind != nullptr); Expects(persistentKeyUsedForBind != nullptr);
return releaseGenericKeyCreationOnDone(
temporaryKey,
persistentKeyUsedForBind);
}
bool Session::releaseCdnKeyCreationOnDone(
const AuthKeyPtr &temporaryKey) {
Expects(_myKeyCreation == CreatingKeyType::TemporaryRegular);
return releaseGenericKeyCreationOnDone(temporaryKey, nullptr);
}
bool Session::releaseGenericKeyCreationOnDone(
const AuthKeyPtr &temporaryKey,
const AuthKeyPtr &persistentKeyUsedForBind) {
const auto wasKeyCreation = std::exchange( const auto wasKeyCreation = std::exchange(
_myKeyCreation, _myKeyCreation,
CreatingKeyType::None); CreatingKeyType::None);

View File

@ -19,6 +19,7 @@ namespace MTP {
class Instance; class Instance;
class AuthKey; class AuthKey;
using AuthKeyPtr = std::shared_ptr<AuthKey>; using AuthKeyPtr = std::shared_ptr<AuthKey>;
enum class DcType;
namespace details { namespace details {
@ -100,10 +101,12 @@ public:
[[nodiscard]] bool connectionInited() const; [[nodiscard]] bool connectionInited() const;
[[nodiscard]] AuthKeyPtr getPersistentKey() const; [[nodiscard]] AuthKeyPtr getPersistentKey() const;
[[nodiscard]] AuthKeyPtr getTemporaryKey(TemporaryKeyType type) const; [[nodiscard]] AuthKeyPtr getTemporaryKey(TemporaryKeyType type) const;
[[nodiscard]] CreatingKeyType acquireKeyCreation(TemporaryKeyType type); [[nodiscard]] CreatingKeyType acquireKeyCreation(DcType type);
[[nodiscard]] bool releaseKeyCreationOnDone( [[nodiscard]] bool releaseKeyCreationOnDone(
const AuthKeyPtr &temporaryKey, const AuthKeyPtr &temporaryKey,
const AuthKeyPtr &persistentKeyUsedForBind); const AuthKeyPtr &persistentKeyUsedForBind);
[[nodiscard]] bool releaseCdnKeyCreationOnDone(
const AuthKeyPtr &temporaryKey);
void releaseKeyCreationOnFail(); void releaseKeyCreationOnFail();
void destroyTemporaryKey(uint64 keyId); void destroyTemporaryKey(uint64 keyId);
@ -161,10 +164,11 @@ public:
crl::time msCanWait = 0); crl::time msCanWait = 0);
// SessionPrivate thread. // SessionPrivate thread.
[[nodiscard]] CreatingKeyType acquireKeyCreation(TemporaryKeyType type); [[nodiscard]] CreatingKeyType acquireKeyCreation(DcType type);
[[nodiscard]] bool releaseKeyCreationOnDone( [[nodiscard]] bool releaseKeyCreationOnDone(
const AuthKeyPtr &temporaryKey, const AuthKeyPtr &temporaryKey,
const AuthKeyPtr &persistentKeyUsedForBind); const AuthKeyPtr &persistentKeyUsedForBind);
[[nodiscard]] bool releaseCdnKeyCreationOnDone(const AuthKeyPtr &temporaryKey);
void releaseKeyCreationOnFail(); void releaseKeyCreationOnFail();
void destroyTemporaryKey(uint64 keyId); void destroyTemporaryKey(uint64 keyId);
@ -193,6 +197,10 @@ private:
const RPCFailHandlerPtr &onFail, const RPCFailHandlerPtr &onFail,
const RPCError &err); const RPCError &err);
[[nodiscard]] bool releaseGenericKeyCreationOnDone(
const AuthKeyPtr &temporaryKey,
const AuthKeyPtr &persistentKeyUsedForBind);
const not_null<Instance*> _instance; const not_null<Instance*> _instance;
const ShiftedDcId _shiftedDcId = 0; const ShiftedDcId _shiftedDcId = 0;
const not_null<Dcenter*> _dc; const not_null<Dcenter*> _dc;

View File

@ -77,12 +77,6 @@ using namespace details;
return idsStr + "]"; return idsStr + "]";
} }
[[nodiscard]] TemporaryKeyType TemporaryKeyTypeByDcType(DcType type) {
return (type == DcType::MediaCluster)
? TemporaryKeyType::MediaCluster
: TemporaryKeyType::Regular;
}
void WrapInvokeAfter( void WrapInvokeAfter(
SerializedRequest &to, SerializedRequest &to,
const SerializedRequest &from, const SerializedRequest &from,
@ -2349,8 +2343,7 @@ DcType SessionPrivate::tryAcquireKeyCreation() {
return _realDcType; return _realDcType;
} }
const auto keyType = TemporaryKeyTypeByDcType(_realDcType); const auto acquired = _sessionData->acquireKeyCreation(_realDcType);
const auto acquired = _sessionData->acquireKeyCreation(keyType);
if (acquired == CreatingKeyType::None) { if (acquired == CreatingKeyType::None) {
return _realDcType; return _realDcType;
} }
@ -2384,19 +2377,29 @@ DcType SessionPrivate::tryAcquireKeyCreation() {
).arg(result->persistentServerSalt)); ).arg(result->persistentServerSalt));
_sessionSalt = result->temporaryServerSalt; _sessionSalt = result->temporaryServerSalt;
auto key = result->persistentKey
? std::move(result->persistentKey)
: _sessionData->getPersistentKey();
if (!key) {
releaseKeyCreationOnFail();
restart();
return;
}
result->temporaryKey->setExpiresAt(base::unixtime::now() result->temporaryKey->setExpiresAt(base::unixtime::now()
+ kTemporaryExpiresIn + kTemporaryExpiresIn
+ kBindKeyAdditionalExpiresTimeout); + kBindKeyAdditionalExpiresTimeout);
_keyCreator->bind(std::move(key)); if (_realDcType != DcType::Cdn) {
auto key = result->persistentKey
? std::move(result->persistentKey)
: _sessionData->getPersistentKey();
if (!key) {
releaseKeyCreationOnFail();
restart();
return;
}
_keyCreator->bind(std::move(key));
}
applyAuthKey(std::move(result->temporaryKey)); applyAuthKey(std::move(result->temporaryKey));
if (_realDcType == DcType::Cdn) {
_keyCreator = nullptr;
if (!_sessionData->releaseCdnKeyCreationOnDone(_encryptionKey)) {
restart();
} else {
_sessionData->queueNeedToResumeAndSend();
}
}
}; };
delegate.sentSome = [=](uint64 size) { delegate.sentSome = [=](uint64 size) {
onSentSome(size); onSentSome(size);