Fix issue when small last chunk received out of order was discarded

dependabot/npm_and_yarn/Src/WebController/UI/elliptic-6.5.3
Pawel Kurowski 2020-05-21 14:20:01 +02:00
parent 53fbc61764
commit bad00afac5
3 changed files with 32 additions and 29 deletions

View File

@ -114,14 +114,12 @@ namespace FSecure::C3::Linter
std::this_thread::sleep_for(GetDevice()->GetUpdateDelay());
for (auto&& chunk : std::static_pointer_cast<C3::AbstractChannel>(GetDevice())->OnReceiveFromChannelInternal())
{
m_QoS.PushReceivedChunk(chunk);
noProgressCounter = 0;
m_QoS.PushReceivedChunk(chunk);
if (auto packet = m_QoS.GetNextPacket(); !packet.empty()) // this form will ensure that packets are returned in same order they are available.
packets.emplace_back(std::move(packet));
}
auto packet = ByteVector{};
while (packet = m_QoS.GetNextPacket(), !packet.empty())
packets.emplace_back(std::move(packet));
if (packets.size() >= minExpectedSize)
return packets;
}

View File

@ -34,40 +34,34 @@ void FSecure::C3::QualityOfService::PushReceivedChunk(ByteView chunkWithHeader)
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void FSecure::C3::QualityOfService::PushReceivedChunk(uint32_t packetId, uint32_t chunkId, uint32_t expectedSize, ByteView chunk)
{
if (chunk.size() < QualityOfService::s_MinBodySize && chunk.size() != expectedSize)
return;
auto it = m_ReciveQueue.find(packetId);
if (it == m_ReciveQueue.end())
m_ReciveQueue.emplace(packetId, Packet{ chunkId, expectedSize, ByteVector{ chunk } });
it = m_ReciveQueue.emplace(packetId, Packet{ chunkId, expectedSize, ByteVector{ chunk } }).first;
else
it->second.PushNextChunk(chunkId, expectedSize, ByteVector{ chunk });
if (chunkId == 0)
it->second.SetExpectedSize(expectedSize);
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
FSecure::C3::QualityOfService::Packet::Packet(uint32_t chunkId, uint32_t expectedSize, ByteVector chunk)
: m_ExpectedSize(expectedSize)
{
if (chunk.size() >= QualityOfService::s_MinBodySize || chunk.size() == expectedSize)
{
m_Size += static_cast<uint32_t>(chunk.size());
m_Chunks.emplace(chunkId, std::move(chunk));
}
m_Size += static_cast<uint32_t>(chunk.size());
m_Chunks.emplace(chunkId, std::move(chunk));
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void FSecure::C3::QualityOfService::Packet::PushNextChunk(uint32_t chunkId, uint32_t expectedSize, ByteVector chunk)
{
if (expectedSize != m_ExpectedSize)
throw std::runtime_error{ OBF("QoS error. Received chunk of packet has wrong expected size") };
auto it = m_Chunks.find(chunkId);
if (it != m_Chunks.end())
if (auto it = m_Chunks.find(chunkId); it != m_Chunks.end())
throw std::runtime_error{ OBF("QoS error. Received chunk of packet was already set") };
if (chunk.size() >= QualityOfService::s_MinBodySize || m_Size + chunk.size() == m_ExpectedSize)
{
m_Size += static_cast<uint32_t>(chunk.size());
m_Chunks.emplace(chunkId, std::move(chunk));
}
m_Size += static_cast<uint32_t>(chunk.size());
m_Chunks.emplace(chunkId, std::move(chunk));
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@ -91,12 +85,21 @@ FSecure::ByteVector FSecure::C3::QualityOfService::Packet::Read()
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool FSecure::C3::QualityOfService::Packet::IsReady()
{
if (m_Size > m_ExpectedSize)
if (m_ExpectedSize == 0) // packet nr 0 was not set.
return false;
if (m_Size > m_ExpectedSize) // sanity check
throw std::runtime_error{ OBF("QoS error. Packet size is longer than expected, wrong chunks must been set.") };
return m_Size == m_ExpectedSize;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void FSecure::C3::QualityOfService::Packet::SetExpectedSize(uint32_t size)
{
m_ExpectedSize = size;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
FSecure::C3::QualityOfService::PacketSplitter FSecure::C3::QualityOfService::GetPacketSplitter(ByteView data)
{
@ -105,7 +108,7 @@ FSecure::C3::QualityOfService::PacketSplitter FSecure::C3::QualityOfService::Get
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
FSecure::C3::QualityOfService::PacketSplitter::PacketSplitter(ByteView data, uint32_t id)
: m_Data{ data }, m_OryginalDataSize{ static_cast<uint32_t>(data.size()) }, m_PacketId{ id }, m_ChunkId{ 0 }
: m_Data{ data }, m_PacketId{ id }, m_ChunkId{ 0 }
{
}
@ -125,7 +128,7 @@ bool FSecure::C3::QualityOfService::PacketSplitter::Update(size_t sent)
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
FSecure::ByteVector FSecure::C3::QualityOfService::PacketSplitter::NextChunk() const
{
return ByteVector::Create(m_PacketId, m_ChunkId, m_OryginalDataSize).Concat(m_Data);
return ByteVector::Create(m_PacketId, m_ChunkId, static_cast<uint32_t>(m_Data.size())).Concat(m_Data);
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@ -32,13 +32,16 @@ namespace FSecure::C3
/// Informs that packet can be merged from chunks.
bool IsReady();
void SetExpectedSize(uint32_t size);
private:
/// Map of chunks
std::map<uint32_t, ByteVector> m_Chunks;
/// Expected size of packet.
const uint32_t m_ExpectedSize;
/// Size provided by chunk nr. 0. packet must be not empty, 0 means packet nr. 0 was not yet received.
uint32_t m_ExpectedSize = 0;
/// Sum of all chunk sizes.
uint32_t m_Size = 0;
};
@ -73,7 +76,6 @@ namespace FSecure::C3
private:
ByteView m_Data;
uint32_t m_OryginalDataSize;
uint32_t m_PacketId;
uint32_t m_ChunkId;
};