mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
don't check session for symmetric key tagset. re-create tags hash if too many used tags
This commit is contained in:
parent
900153765a
commit
2b6a95cbee
4 changed files with 52 additions and 23 deletions
|
@ -431,7 +431,8 @@ namespace garlic
|
|||
}
|
||||
|
||||
GarlicDestination::GarlicDestination (): m_NumTags (32), // 32 tags by default
|
||||
m_PayloadBuffer (nullptr), m_NumRatchetInboundTags (0) // 0 means standard
|
||||
m_PayloadBuffer (nullptr), m_NumRatchetInboundTags (0), // 0 means standard
|
||||
m_NumUsedECIESx25519Tags (0)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -599,6 +600,7 @@ namespace garlic
|
|||
LogPrint (eLogError, "Garlic: Can't handle ECIES-X25519-AEAD-Ratchet message");
|
||||
m_ECIESx25519Tags.erase (it);
|
||||
}
|
||||
m_NumUsedECIESx25519Tags++;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
@ -883,24 +885,41 @@ namespace garlic
|
|||
}
|
||||
|
||||
numExpiredTags = 0;
|
||||
for (auto it = m_ECIESx25519Tags.begin (); it != m_ECIESx25519Tags.end ();)
|
||||
if (m_NumUsedECIESx25519Tags > ECIESX25519_TAGSET_MAX_NUM_TAGS) // too many used tags
|
||||
{
|
||||
if (!it->second.tagset)
|
||||
std::unordered_map<uint64_t, ECIESX25519AEADRatchetIndexTagset> oldTags;
|
||||
std::swap (m_ECIESx25519Tags, oldTags); // re-create
|
||||
for (auto& it: oldTags)
|
||||
if (it.second.tagset)
|
||||
{
|
||||
if (it.second.tagset->IsExpired (ts) || it.second.tagset->IsIndexExpired (it.second.index))
|
||||
{
|
||||
it.second.tagset->DeleteSymmKey (it.second.index);
|
||||
numExpiredTags++;
|
||||
}
|
||||
else if (it.second.tagset->IsSessionTerminated())
|
||||
numExpiredTags++;
|
||||
else
|
||||
m_ECIESx25519Tags.emplace (it);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
for (auto it = m_ECIESx25519Tags.begin (); it != m_ECIESx25519Tags.end ();)
|
||||
{
|
||||
// delete used tag
|
||||
it = m_ECIESx25519Tags.erase (it);
|
||||
continue;
|
||||
}
|
||||
if (it->second.tagset->IsExpired (ts) || it->second.tagset->IsIndexExpired (it->second.index))
|
||||
{
|
||||
it->second.tagset->DeleteSymmKey (it->second.index);
|
||||
it = m_ECIESx25519Tags.erase (it);
|
||||
numExpiredTags++;
|
||||
}
|
||||
else
|
||||
{
|
||||
auto session = it->second.tagset->GetSession ();
|
||||
if (!session || session->IsTerminated())
|
||||
if (!it->second.tagset)
|
||||
{
|
||||
// delete used tag
|
||||
it = m_ECIESx25519Tags.erase (it);
|
||||
continue;
|
||||
}
|
||||
if (it->second.tagset->IsExpired (ts) || it->second.tagset->IsIndexExpired (it->second.index))
|
||||
{
|
||||
it->second.tagset->DeleteSymmKey (it->second.index);
|
||||
it = m_ECIESx25519Tags.erase (it);
|
||||
numExpiredTags++;
|
||||
}
|
||||
else if (it->second.tagset->IsSessionTerminated())
|
||||
{
|
||||
it = m_ECIESx25519Tags.erase (it);
|
||||
numExpiredTags++;
|
||||
|
@ -908,7 +927,8 @@ namespace garlic
|
|||
else
|
||||
++it;
|
||||
}
|
||||
}
|
||||
}
|
||||
m_NumUsedECIESx25519Tags = 0;
|
||||
if (numExpiredTags > 0)
|
||||
LogPrint (eLogDebug, "Garlic: ", numExpiredTags, " ECIESx25519 tags expired for ", GetIdentHash().ToBase64 ());
|
||||
if (m_LastTagset && m_LastTagset->IsExpired (ts))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue