Skip to content

Commit

Permalink
engine:enhanced byte order handling for timestamps
Browse files Browse the repository at this point in the history
This change ensures correct byte order conversions for
timestamp fields within log event decoder and encoder.

Added FLB_TO_NATIVE_UINT32 in flb_endian.h. This function checks the
host machine's byte order and applies the necessary conversion for 32-bit
unsigned integers.

Co-authored-by: Bernhard Schmid <[email protected]>
Signed-off-by: Mirko Lazarevic <[email protected]>
  • Loading branch information
mirko-lazarevic and BernhardSchmid committed Aug 13, 2024
1 parent 7256406 commit 7c2ffce
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions include/fluent-bit/flb_byteswap.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#define FLB_BYTESWAP_H

#include <stdint.h>
#include <fluent-bit/flb_endian.h>

#if defined(FLB_HAVE_WIN32_BYTESWAP)
#include <stdlib.h>
Expand Down Expand Up @@ -102,4 +103,13 @@ static inline uint64_t FLB_BSWAP_64(uint64_t value)

#endif

static inline uint32_t FLB_TO_NATIVE_UINT32(uint32_t value)
{
#if __BYTE_ORDER == __ORDER_LITTLE_ENDIAN__
return FLB_BSWAP_32(value);
#else
return value;
#endif
}

#endif
4 changes: 2 additions & 2 deletions src/flb_log_event_decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ int flb_log_event_decoder_decode_timestamp(msgpack_object *input,
return FLB_EVENT_DECODER_ERROR_WRONG_TIMESTAMP_TYPE;
}

output->tm.tv_sec = (int32_t) FLB_BSWAP_32(*((uint32_t *) &input->via.ext.ptr[0]));
output->tm.tv_nsec = (int32_t) FLB_BSWAP_32(*((uint32_t *) &input->via.ext.ptr[4]));
output->tm.tv_sec = (int32_t) FLB_TO_NATIVE_UINT32(*((uint32_t *) &input->via.ext.ptr[0]));
output->tm.tv_nsec = (int32_t) FLB_TO_NATIVE_UINT32(*((uint32_t *) &input->via.ext.ptr[4]));
}
else {
return FLB_EVENT_DECODER_ERROR_WRONG_TIMESTAMP_TYPE;
Expand Down
4 changes: 2 additions & 2 deletions src/flb_log_event_encoder_primitives.c
Original file line number Diff line number Diff line change
Expand Up @@ -519,8 +519,8 @@ int flb_log_event_encoder_append_forward_v1_timestamp(
{
uint32_t value[2];

value[0] = FLB_BSWAP_32((uint32_t) timestamp->tm.tv_sec);
value[1] = FLB_BSWAP_32((uint32_t) timestamp->tm.tv_nsec);
value[0] = FLB_TO_NATIVE_UINT32((uint32_t) timestamp->tm.tv_sec);
value[1] = FLB_TO_NATIVE_UINT32((uint32_t) timestamp->tm.tv_nsec);

return flb_log_event_encoder_append_ext(context, target_field,
0, (char *) value, 8);
Expand Down

0 comments on commit 7c2ffce

Please sign in to comment.