Skip to content

Commit 0bb6ada

Browse files
bpetermannS11edsiper
authored andcommitted
in_systemd: fix buffer over-read
Fix buffer over-reads in systemd input plugin (#9788). In systemd_enumerate_data_store: when copying the item value the input string may not be 0-terminated, so relying on strlen may lead to reads beyond the end of the buffer. Use the known string length instead of strlen. Signed-off-by: Bodo Petermann <[email protected]>
1 parent c98ed65 commit 0bb6ada

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plugins/in_systemd/systemd.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -218,16 +218,16 @@ static int systemd_enumerate_data_store(struct flb_config *config,
218218

219219
cfl_array_append_string_s(array,
220220
tmp_val->data.as_string,
221-
strlen(tmp_val->data.as_string),
221+
tmp_val->size,
222222
CFL_FALSE);
223-
cfl_array_append_string_s(array, (char *)val, strlen(val), CFL_FALSE);
223+
cfl_array_append_string_s(array, (char *)val, len, CFL_FALSE);
224224
cfl_kvlist_insert_array_s(kvlist, list_key, key_len, array);
225225
cfl_variant_destroy(tmp_val);
226226
break;
227227
case CFL_VARIANT_ARRAY:
228228
/* Just appending the newly arrived field(s) */
229229
array = tmp_val->data.as_array;
230-
cfl_array_append_string_s(array, (char *)val, strlen(val), CFL_FALSE);
230+
cfl_array_append_string_s(array, (char *)val, len, CFL_FALSE);
231231
break;
232232
default:
233233
/* nop */
@@ -236,7 +236,7 @@ static int systemd_enumerate_data_store(struct flb_config *config,
236236
}
237237
else {
238238
cfl_kvlist_insert_string_s(kvlist, list_key, key_len,
239-
(char *)val, strlen(val), CFL_FALSE);
239+
(char *)val, len, CFL_FALSE);
240240
}
241241

242242
flb_sds_destroy(list_key);

0 commit comments

Comments
 (0)