|
|
|
@ -431,7 +431,8 @@ namespace garlic
@@ -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
@@ -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
@@ -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) |
|
|
|
|
{ |
|
|
|
|
// 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 |
|
|
|
|
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 ();) |
|
|
|
|
{ |
|
|
|
|
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
@@ -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)) |
|
|
|
|