Skip to content

Commit 3415978

Browse files
author
esp
committed
esp32_diagnostic_trace: add extra tlv closing bytes check before copying diagnostic
1 parent e58bee7 commit 3415978

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/tracing/esp32_diagnostic_trace/DiagnosticStorageManager.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
#include <lib/support/CHIPMem.h>
2323
#include <tracing/esp32_diagnostic_trace/Diagnostics.h>
2424

25+
#define TLV_CLOSING_BYTES 4
26+
2527
namespace chip {
2628
namespace Tracing {
2729
namespace Diagnostics {
@@ -89,7 +91,8 @@ class CircularDiagnosticBuffer : public chip::TLV::TLVCircularBuffer, public Dia
8991
reader.GetTag() == chip::TLV::ContextTag(DIAGNOSTICS_TAG::TRACE) ||
9092
reader.GetTag() == chip::TLV::ContextTag(DIAGNOSTICS_TAG::COUNTER)))
9193
{
92-
if ((reader.GetLengthRead() - writer.GetLengthWritten()) < (writer.GetRemainingFreeLength()))
94+
if ((reader.GetLengthRead() - writer.GetLengthWritten()) <
95+
((writer.GetRemainingFreeLength() + TLV_CLOSING_BYTES)))
9396
{
9497
err = writer.CopyElement(reader);
9598
if (err == CHIP_ERROR_BUFFER_TOO_SMALL)

0 commit comments

Comments
 (0)