Skip to content

tests: internal: fuzzers: split cmetrics decoding #10249

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/internal/fuzzers/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ set(UNIT_TESTS_FILES
base64_fuzzer.c
engine_fuzzer.c
cmetrics_decode_fuzz.c
cmetrics_decode_prometheus.c
config_fuzzer.c
config_random_fuzzer.c
ctrace_fuzzer.c
16 changes: 3 additions & 13 deletions tests/internal/fuzzers/cmetrics_decode_fuzz.c
Original file line number Diff line number Diff line change
@@ -19,7 +19,6 @@

#include <cmetrics/cmt_decode_msgpack.h>
#include <cmetrics/cmt_decode_opentelemetry.h>
#include <cmetrics/cmt_decode_prometheus.h>


int
@@ -36,7 +35,7 @@ LLVMFuzzerTestOneInput(const uint8_t * data, size_t size)
return 0;
}

decider = data[0] % 3;
decider = data[0] % 2;

/* Adjust data pointer since the first byte is used */
data += 1;
@@ -50,21 +49,12 @@ LLVMFuzzerTestOneInput(const uint8_t * data, size_t size)
cmt_decode_opentelemetry_destroy (&decoded_contexts);
}
}
else if (decider == 1) {
else {
result = cmt_decode_msgpack_create(&cmt, (char *) data, size, &off);
if (result == 0) {
cmt_destroy(cmt);
}
}
else if (decider == 2) {
if (size == 0) {
return 0;
}
struct cmt_decode_prometheus_parse_opts opts;
result = cmt_decode_prometheus_create(&cmt, data, size, &opts);
if (result == CMT_DECODE_PROMETHEUS_SUCCESS) {
cmt_decode_prometheus_destroy(cmt);
}
}

return 0;
}
41 changes: 41 additions & 0 deletions tests/internal/fuzzers/cmetrics_decode_prometheus.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */

/* Fluent Bit
* ==========
* Copyright (C) 2015-2023 The Fluent Bit Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#include <cmetrics/cmt_decode_prometheus.h>


int
LLVMFuzzerTestOneInput(const uint8_t * data, size_t size)
{
struct cmt *cmt = NULL;
int result;

/* At least one byte is needed for deciding which decoder to use */
if (size < 1) {
return 0;
}

struct cmt_decode_prometheus_parse_opts opts;
result = cmt_decode_prometheus_create(&cmt, data, size, &opts);
if (result == CMT_DECODE_PROMETHEUS_SUCCESS) {
cmt_decode_prometheus_destroy(cmt);
}

return 0;
}