Skip to content

Commit 6530fe7

Browse files
votrungchissugiura
authored andcommitted
Avoided Seg fault in dlt_message_payload (COVESA#179) (COVESA#181)
* Avoided Seg fault in dlt_message_payload (COVESA#179) Avoided Seg fault by adding boundary check before buffer access. Signed-off-by: Ravi Sankar P <[email protected]> Signed-off-by: Vo Trung Chi <[email protected]>
1 parent f773961 commit 6530fe7

File tree

4 files changed

+113
-113
lines changed

4 files changed

+113
-113
lines changed

include/dlt/dlt_common.h

+14-7
Original file line numberDiff line numberDiff line change
@@ -313,14 +313,21 @@ enum {
313313
{ memcpy(dst, src, DLT_ID_SIZE); src += DLT_ID_SIZE; length -= DLT_ID_SIZE; } \
314314
}
315315

316-
# define DLT_MSG_READ_STRING(dst, src, maxlength, length) \
316+
#define DLT_MSG_READ_STRING(dst, src, maxlength, dstlength, length) \
317+
{ \
318+
if ((maxlength < 0) || (length <= 0) || (dstlength < length) || (maxlength < length)) \
317319
{ \
318-
if (((maxlength) < 0) || ((length) < 0) || ((maxlength) < (length))) \
319-
{ maxlength = -1; } \
320-
else \
321-
{ memcpy(dst, src, length); dlt_clean_string(dst, length); dst[length] = 0; \
322-
src += length; maxlength -= length; } \
323-
}
320+
maxlength = -1; \
321+
} \
322+
else \
323+
{ \
324+
memcpy(dst, src, length); \
325+
dlt_clean_string(dst, length); \
326+
dst[length] = 0; \
327+
src += length; \
328+
maxlength -= length; \
329+
} \
330+
}
324331

325332
# define DLT_MSG_READ_NULL(src, maxlength, length) \
326333
{ \

0 commit comments

Comments
 (0)