From 3aefc983b5d73b2c822807b23be9f76a95b11139 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Thu, 30 Mar 2023 12:38:05 +0000 Subject: sms-part-3gpp|cdma: new fuzzer tests --- src/tests/meson.build | 15 ++++++++++++ src/tests/test-sms-part-3gpp-fuzzer.c | 39 ++++++++++++++++++++++++++++++++ src/tests/test-sms-part-3gpp-tr-fuzzer.c | 39 ++++++++++++++++++++++++++++++++ src/tests/test-sms-part-cdma-fuzzer.c | 39 ++++++++++++++++++++++++++++++++ 4 files changed, 132 insertions(+) create mode 100644 src/tests/test-sms-part-3gpp-fuzzer.c create mode 100644 src/tests/test-sms-part-3gpp-tr-fuzzer.c create mode 100644 src/tests/test-sms-part-cdma-fuzzer.c (limited to 'src') diff --git a/src/tests/meson.build b/src/tests/meson.build index ff4392d1..dc6ee3fb 100644 --- a/src/tests/meson.build +++ b/src/tests/meson.build @@ -37,3 +37,18 @@ foreach test_unit, test_deps: test_units test(test_name, exe) endforeach + +if get_option('fuzzer') + fuzzer_tests = ['test-sms-part-3gpp-fuzzer', + 'test-sms-part-3gpp-tr-fuzzer', + 'test-sms-part-cdma-fuzzer'] + foreach fuzzer_test: fuzzer_tests + exe = executable( + fuzzer_test, + sources: fuzzer_test + '.c', + include_directories: top_inc, + dependencies: libhelpers_dep, + link_args : '-fsanitize=fuzzer', + ) + endforeach +endif \ No newline at end of file diff --git a/src/tests/test-sms-part-3gpp-fuzzer.c b/src/tests/test-sms-part-3gpp-fuzzer.c new file mode 100644 index 00000000..07e6aa47 --- /dev/null +++ b/src/tests/test-sms-part-3gpp-fuzzer.c @@ -0,0 +1,39 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details: + * + * Copyright (C) 2023 Google, Inc. + */ + +#include +#include +#include +#include + +#define _LIBMM_INSIDE_MM +#include + +#include "mm-sms-part-3gpp.h" + +int +LLVMFuzzerTestOneInput (const uint8_t *data, + size_t size) +{ + g_autoptr(MMSmsPart) part = NULL; + g_autoptr(GError) error = NULL; + + if (!size) + return 0; + + part = mm_sms_part_3gpp_new_from_binary_pdu (0, data, size, NULL, FALSE, &error); + g_assert (part || error); + return 0; +} diff --git a/src/tests/test-sms-part-3gpp-tr-fuzzer.c b/src/tests/test-sms-part-3gpp-tr-fuzzer.c new file mode 100644 index 00000000..2f1964c5 --- /dev/null +++ b/src/tests/test-sms-part-3gpp-tr-fuzzer.c @@ -0,0 +1,39 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details: + * + * Copyright (C) 2023 Google, Inc. + */ + +#include +#include +#include +#include + +#define _LIBMM_INSIDE_MM +#include + +#include "mm-sms-part-3gpp.h" + +int +LLVMFuzzerTestOneInput (const uint8_t *data, + size_t size) +{ + g_autoptr(MMSmsPart) part = NULL; + g_autoptr(GError) error = NULL; + + if (!size) + return 0; + + part = mm_sms_part_3gpp_new_from_binary_pdu (0, data, size, NULL, TRUE, &error); + g_assert (part || error); + return 0; +} diff --git a/src/tests/test-sms-part-cdma-fuzzer.c b/src/tests/test-sms-part-cdma-fuzzer.c new file mode 100644 index 00000000..86d48767 --- /dev/null +++ b/src/tests/test-sms-part-cdma-fuzzer.c @@ -0,0 +1,39 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details: + * + * Copyright (C) 2023 Google, Inc. + */ + +#include +#include +#include +#include + +#define _LIBMM_INSIDE_MM +#include + +#include "mm-sms-part-cdma.h" + +int +LLVMFuzzerTestOneInput (const uint8_t *data, + size_t size) +{ + g_autoptr(MMSmsPart) part = NULL; + g_autoptr(GError) error = NULL; + + if (!size) + return 0; + + part = mm_sms_part_cdma_new_from_binary_pdu (0, data, size, NULL, &error); + g_assert (part || error); + return 0; +} -- cgit v1.2.3-70-g09d2